Cerber Security & Antispam - Version 9.0

Version Description

  • New: Different alerts can be sent through different channels. You can select delivering notifications through Pushbullet and email simultaneously, Pushbullet only, or email only. The settings are configured on a per-alert basis in the alert creation form.
  • New: Implemented a new "Message format" feature and setting. You can reduce the number of links in WP Cerbers messages or disable them completely to prevent sending sensitive data.
  • New: Implemented separate rate limiting settings for email and Pushbullet notifications.
  • New: Lockout notifications and appropriate threshold can be enabled for Pushbullet and emails separately.
  • New: Email reports and alerts can be sent via a separate SMTP server configured in the WP Cerber settings.
  • New: Implemented masking IP addresses and usernames (logins) in emails and mobile alerts.
  • New: Disabling login language switcher. If enabled, removes language switcher on the standard WordPress login page introduced in WordPress 5.9.
  • Improved: If WP Cerber is unable to load its saved settings from the website database, it uses hard-coded default values.
  • Improved: If you have configured the list of prohibited usernames (logins) and the username of an existing user is among prohibited ones, the user is now shown as BLOCKED on the "Users" admin page, user edit page, Activity tab, and Live Traffic tab.
  • Improved: When multiple email addresses are specified for notifications, each email will be sent separately. No multiply recipients in a single email are used anymore.
  • Improved: The subjects of alerts now contain corresponding event labels.
  • Improved: The subject of WP Cerbers emails have been unified. It begins with website name in square brackets plus the "WP Cerber" string.
  • Improved: All test alerts and messages manually sent from the WP Cerber admin dashboard now contain *** TEST MESSAGE *** in the subject.
  • Improved: Displaying detailed information about PHP generated by phpinfo(). A new link is on the Diagnostic tab in the System Info section.
  • Fixed: An issue with multiple "IP blocked" in the log if the reason for a lockout is changing.
  • Fixed: An issue with "Site title" containing apostrophes.
Download this release

Release Info

Developer Gioni
Plugin Icon 128x128 Cerber Security & Antispam
Version 9.0
Comparing to
See all releases

Code changes from version 8.9.6 to 9.0

admin/cerber-admin-settings.php CHANGED
@@ -37,6 +37,7 @@ if ( ! defined( 'WPINC' ) || ! defined( 'CERBER_VER' ) ) {
37
  // Cerber's settings form in the WP dashboard
38
  // @since 8.5.9.1
39
  const CRB_SETTINGS_GROUP = 'cerber_settings_group';
 
40
 
41
  function cerber_admin_init() {
42
 
@@ -114,24 +115,28 @@ function cerber_wp_settings_setup( $screen_id, $sections = array() ) {
114
 
115
  foreach ( $section_config['fields'] as $field => $config ) {
116
 
117
- if ( isset( $config['requires_wp'] ) && ! crb_wp_version_compare( (string) $config['requires_wp'] ) ) {
 
118
  continue;
119
  }
120
 
121
- if ( isset( $config['pro'] ) && ! lab_lab() ) {
 
 
 
 
 
 
122
  continue;
123
  }
124
 
125
  $config['setting'] = $field;
126
  $config['group'] = $screen_id;
127
 
128
- if ( ! isset( $config['class'] ) ) {
129
- $config['class'] = '';
130
- }
131
 
132
- if ( ! isset( $config['type'] ) ) {
133
- $config['type'] = 'text';
134
- }
135
 
136
  if ( $config['type'] == 'hidden' ) {
137
  $config['class'] .= ' crb-display-none';
@@ -250,41 +255,54 @@ function cerber_field_show( $config ) {
250
  $settings = crb_get_settings();
251
 
252
  $pre = '';
253
- $value = '';
254
  $atts = '';
255
 
256
- $label = crb_array_get( $config, 'label', '' );
257
 
258
  if ( ! empty( $config['doclink'] ) ) {
259
  $label .= '<span class="crb-insetting-link">[ <a class="crb-no-wrap" target="_blank" href="' . $config['doclink'] . '">' . __( 'Know more', 'wp-cerber' ) . '</a> ]</span>';
260
  }
261
 
262
- $placeholder = esc_attr( crb_array_get( $config, 'placeholder', '' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
  if ( $placeholder ) {
264
- $atts .= ' placeholder="' . $placeholder . '" ';
265
  }
266
 
267
  if ( isset( $config['disabled'] ) ) {
268
  $atts .= ' disabled="disabled" ';
269
  }
270
 
271
- if ( isset( $config['required'] ) ) {
272
- $atts .= ' required="required" ';
273
- }
274
 
275
- if ( isset( $config['value'] ) ) {
276
- $value = $config['value'];
277
- }
278
 
279
- if ( isset( $config['setting'] ) ) {
280
- if ( ! $value && isset( $settings[ $config['setting'] ] ) ) {
281
- $value = $settings[ $config['setting'] ];
282
  }
283
-
284
- if ( ( $config['setting'] == 'loginnowp' || $config['setting'] == 'loginpath' ) && ! cerber_is_permalink_enabled() ) {
285
  $atts .= ' disabled="disabled" ';
286
  }
287
- if ( $config['setting'] == 'loginpath' ) {
288
  $pre = cerber_get_home_url() . '/';
289
  $value = urldecode( $value );
290
  }
@@ -293,33 +311,26 @@ function cerber_field_show( $config ) {
293
  $value = crb_attr_escape( $value );
294
 
295
  if ( isset( $config['list'] ) ) {
296
- $dlt = crb_array_get( $config, 'delimiter_show', $config['delimiter'] );
297
  $value = cerber_array2text( $value, $dlt );
298
  }
299
 
300
  $name_prefix = 'cerber-' . $config['group'];
301
- $name = $name_prefix . '[' . $config['setting'] . ']';
302
 
303
- if ( isset( $config['id'] ) ) {
304
- $id = $config['id'];
305
- }
306
- else {
307
- $id = 'crb-input-' . $config['setting'];
308
- }
309
 
310
- $class = crb_array_get( $config, 'class', '' );
311
 
312
- $data = '';
313
- $ena = array();
314
  if ( isset( $config['enabler'] ) ) {
315
- $ena['enabler'] = 'crb-input-' . $config['enabler'][0];
316
  if ( isset( $config['enabler'][1] ) ) {
317
- $ena['enabler_value'] = $config['enabler'][1];
318
  }
319
- }
320
- if ( $ena ) {
321
- foreach ( $ena as $att => $val ) {
322
- $data .= ' data-' . $att . '="' . $val . '"';
323
  }
324
  }
325
 
@@ -356,41 +367,38 @@ function cerber_field_show( $config ) {
356
  break;
357
 
358
  case 'notify':
359
- $html = '<label class="crb-switch"><input class="screen-reader-text" type="checkbox" id="' . $config['setting'] . '" name="cerber-' . $config['group'] . '[' . $config['setting'] . ']" value="1" ' . checked( 1, $value, false ) . $atts . ' /><span class="crb-slider round"></span></label>'
360
- . __( 'Notify admin if the number of active lockouts above', 'wp-cerber' ) . ' ' .
361
  cerber_digi_field( $name_prefix . '[above]', $settings['above'] ) .
362
- '<span class="crb-insetting-link">[ <a href="' . cerber_admin_link_add( array(
363
- 'cerber_admin_do' => 'testnotify',
364
- 'type' => 'lockout',
365
- ) ) . '">' . __( 'Click to send test', 'wp-cerber' ) . '</a> ]</span>';
366
  break;
367
 
368
  case 'citadel':
369
  $html = sprintf( __( 'Enable after %s failed login attempts in the last %s minutes', 'wp-cerber' ),
370
  cerber_digi_field( $name_prefix . '[cilimit]', $settings['cilimit'] ),
371
- cerber_digi_field( $name_prefix . '[ciperiod]', $settings['ciperiod'] ) . '<i ' . $data . '></i>' );
372
  break;
373
 
374
  case 'checkbox':
375
  $html = '<div style="display: table-cell;"><label class="crb-switch"><input class="screen-reader-text" type="checkbox" id="' . $id . '" name="' . $name . '" value="1" ' . checked( 1, $value, false ) . $atts . ' /><span class="crb-slider round"></span></label></div>';
376
  //$html .= '<div style="display: table-cell;"><label for="' . $args['setting'] . '">' . $label . '</label></div><i ' . $data . '></i>';
377
  if ( $label ) {
378
- $html .= '<div style="display: table-cell;"><label for="' . $config['setting'] . '">' . $label . '</label></div>';
379
  }
380
- if ( $data ) {
381
- $html .= '<i ' . $data . '></i>';
382
  }
383
  break;
384
 
385
  case 'textarea':
386
- $html = '<textarea class="large-text crb-monospace" id="' . $id . '" name="' . $name . '" ' . $atts . $data . '>' . $value . '</textarea>';
387
  if ( $label ) {
388
- $html .= '<br/><label class="crb-below" for="' . $config['setting'] . '">' . $label . '</label>';
389
  }
390
  break;
391
 
392
  case 'select':
393
- $html = cerber_select( $name, $config['set'], $value, $class, $id, '', $placeholder, $ena );
394
  if ( $label ) {
395
  $html .= '<br/><label class="crb-below">' . $label . '</label>';
396
  }
@@ -400,13 +408,13 @@ function cerber_field_show( $config ) {
400
  if ( $label ) {
401
  $label = '<p class="crb-label-above"><label for="' . $name . '">' . $label . '</label></p>';
402
  }
403
- $html = $label . '<div class="crb-select2-multi">' . cerber_role_select( $name . '[]', $value, '', true, '' ) . '<i ' . $data . '></i></div>';
404
  break;
405
  case 'checkbox_set':
406
  if ( $label ) {
407
  $label = '<p class="crb-label-above"><label for="' . $name . '">' . $label . '</label></p>';
408
  }
409
- $html = '<div class="crb-checkbox_set" style="line-height: 2em;" ' . $data . '>' . $label;
410
  foreach ( $config['set'] as $key => $item ) {
411
  $v = ( ! empty( $value[ $key ] ) ) ? $value[ $key ] : 0;
412
  $html .= '<input type="checkbox" value="1" name="' . $name . '[' . $key . ']" ' . checked( 1, $v, false ) . $atts . '/>' . $item . '<br />';
@@ -414,19 +422,20 @@ function cerber_field_show( $config ) {
414
  $html .= '</div>';
415
  break;
416
  case 'reptime':
417
- $html = cerber_time_select( $config, $settings ) . '<i ' . $data . '></i>';
418
  break;
419
  case 'timepicker':
420
- $html = '<input class="crb-tpicker" type="text" size="7" id="' . $config['setting'] . '" name="' . $name . '" value="' . $value . '"' . $atts . '/>';
421
- $html .= ' <label for="' . $config['setting'] . '">' . $label . '</label>';
422
  break;
423
  case 'hidden':
424
- $html = '<input type="hidden" id="' . $config['setting'] . '" class="crb-hidden-field" name="' . $name . '" value="' . $value . '" />';
425
  break;
426
  case 'text':
427
  default:
428
 
429
- $type = crb_array_get( $config, 'type', 'text' );
 
430
  if ( in_array( $type, array( 'url', 'number', 'email' ) ) ) {
431
  $input_type = $type;
432
  }
@@ -442,15 +451,12 @@ function cerber_field_show( $config ) {
442
  $class = 'crb-digits';
443
  }
444
 
445
- $size = crb_array_get( $config, 'size', $size );
446
- $maxlength = crb_array_get( $config, 'maxlength', $size );
447
 
448
  if ( $maxlength ) {
449
  $maxlength = ' maxlength="' . $maxlength . '" ';
450
  }
451
- elseif ( $size ) {
452
- $maxlength = ' maxlength="' . $size . '" ';
453
- }
454
 
455
  if ( $size ) {
456
  $size = ' size="' . $size . '"';
@@ -475,14 +481,14 @@ function cerber_field_show( $config ) {
475
  }
476
  }
477
 
478
- $html = $pre . '<input type="' . $input_type . '" id="' . $config['setting'] . '" name="' . $name . '" value="' . $value . '"' . $atts . ' class="' . $class . '" ' . $size . $maxlength . $atts . $data . ' />';
479
 
480
  if ( $label ) {
481
  if ( ! $size || crb_array_get( $config, 'label_pos' ) == 'below' ) {
482
- $label = '<br/><label class="crb-below" for="' . $config['setting'] . '">' . $label . '</label>';
483
  }
484
  else {
485
- $label = ' <label for="' . $config['setting'] . '">' . $label . '</label>';
486
  }
487
  }
488
 
@@ -500,12 +506,9 @@ function cerber_field_show( $config ) {
500
  }
501
 
502
  if ( ! empty( $config['field_switcher'] ) ) {
503
- $name = 'cerber-' . $config['group'] . '[' . $config['setting'] . '-enabled]';
504
- $value = 0;
505
- if ( isset( $settings[ $config['setting'] . '-enabled' ] ) ) {
506
- $value = $settings[ $config['setting'] . '-enabled' ];
507
- }
508
- $checkbox = '<label class="crb-switch"><input class="screen-reader-text" type="checkbox" id="' . $config['setting'] . '-enabled" name="' . $name . '" value="1" ' . checked( 1, $value, false ) . ' /><span class="crb-slider round"></span></label><span>' . $config['field_switcher'] . '</span>';
509
  $html = $checkbox . ' ' . $html;
510
  }
511
 
@@ -561,12 +564,7 @@ function cerber_time_select($args, $settings){
561
  __( 'Saturday' ),
562
  );
563
  $field = $args['setting'].'-day';
564
- if (isset($settings[ $field ])) {
565
- $selected = $settings[ $field ];
566
- }
567
- else {
568
- $selected = '';
569
- }
570
  $ret = cerber_select( 'cerber-' . $args['group'] . '[' . $field . ']', $php_week, $selected );
571
  $ret .= ' &nbsp; ' . _x( 'at', 'preposition of time like: at 11:00', 'wp-cerber' ) . ' &nbsp; ';
572
 
@@ -576,23 +574,15 @@ function cerber_time_select($args, $settings){
576
  $hours[] = str_pad( $i, 2, '0', STR_PAD_LEFT ) . ':00';
577
  }
578
  $field = $args['setting'] . '-time';
579
- if ( isset( $settings[ $field ] ) ) {
580
- $selected = $settings[ $field ];
581
- }
582
- else {
583
- $selected = '';
584
- }
585
  $ret .= cerber_select( 'cerber-' . $args['group'] . '[' . $field . ']', $hours, $selected );
586
 
587
- return $ret . '<span class="crb-insetting-link">[ <a href="' . cerber_admin_link_add( array(
588
- 'cerber_admin_do' => 'testnotify',
589
- 'type' => 'report',
590
- ) ) . '">' . __( 'Click to send now', 'wp-cerber' ) . '</a> ]</span>';
591
  }
592
 
593
  function cerber_checkbox( $name, $value, $label = '', $id = '', $atts = '' ) {
594
  if ( ! $id ) {
595
- $id = 'crb-input-' . $name;
596
  }
597
 
598
  return '<div style="display: table-cell;"><label class="crb-switch"><input class="screen-reader-text" type="checkbox" id="' . $id . '" name="' . $name . '" value="1" ' . checked( 1, $value, false ) . $atts . ' /><span class="crb-slider round"></span></label></div>
@@ -697,7 +687,7 @@ add_filter( 'pre_update_option_'.CERBER_OPT, function ($new, $old, $option) {
697
  $msg[] = __( 'If you use a caching plugin, you have to add your new login URL to the list of pages not to cache.', 'wp-cerber' );
698
  $msg_e[] = __( 'If you use a caching plugin, you have to add your new login URL to the list of pages not to cache.', 'wp-cerber' );
699
  cerber_admin_notice( $msg );
700
- cerber_send_email( 'newlurl', $msg_e );
701
  }
702
  }
703
  }
@@ -830,7 +820,6 @@ add_filter( 'pre_update_option_'.CERBER_OPT_N, function ($new, $old, $option) {
830
  }
831
  }
832
 
833
-
834
  $new['emailrate'] = absint( $new['emailrate'] );
835
 
836
  // When we install a new token, we set proper default value for the device setting
@@ -1000,53 +989,88 @@ add_filter( 'pre_update_option_' . CERBER_OPT_P, function ( $new, $old, $option
1000
  add_filter( 'pre_update_option', 'cerber_o_o_sanitizer', 10, 3 );
1001
  function cerber_o_o_sanitizer( $value, $option, $old_value ) {
1002
 
1003
- if ( in_array( $option, cerber_get_setting_list() ) ) {
 
 
 
 
1004
 
1005
- if ( is_array( $value ) ) {
1006
 
1007
- // Parsing settings, applying formatting, etc.
 
 
 
1008
 
1009
- foreach ( $value as $setting => &$setting_val ) {
1010
- if ( ! $conf = cerber_settings_config( array( 'setting' => $setting ) ) ) {
1011
  continue;
1012
  }
 
1013
 
1014
- $callback = crb_array_get( $conf, 'apply' );
 
 
1015
 
1016
- if ( isset( $conf['list'] ) ) {
1017
- //$filter = crb_array_get( $conf, 'filter' ); // is_email();
1018
- $regex = crb_array_get( $conf, 'regex_filter' );
1019
- $setting_val = cerber_text2array( $setting_val, $conf['delimiter'], $callback, $regex );
1020
 
1021
- global $_deny;
1022
- if ( $_deny = crb_array_get( $conf, 'deny_filter' ) ) {
1023
- $setting_val = array_filter( $setting_val, function ( $e ) {
1024
- global $_deny;
 
1025
 
1026
- return ! in_array( $e, $_deny );
1027
- } );
1028
- }
1029
  }
1030
- else {
1031
- if ( $callback && is_callable( $callback ) ) {
1032
- $setting_val = call_user_func( $callback, $setting_val );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1033
  }
1034
  }
1035
  }
1036
  }
 
1037
 
1038
- if ( is_array( $value ) ) {
1039
- array_walk_recursive( $value, function ( &$element, $key ) {
1040
- if ( ! is_array( $element ) ) {
1041
- $element = sanitize_text_field( (string) $element );
1042
- }
1043
- } );
1044
- }
1045
- else {
1046
- $value = sanitize_text_field( (string) $value );
1047
- }
1048
- $value = cerber_normalize( $value, $option );
1049
  }
 
 
 
 
 
1050
 
1051
  return $value;
1052
  }
@@ -1107,7 +1131,7 @@ function cerber_ms_update() {
1107
  }
1108
 
1109
  /**
1110
- * A an intermediate level for update_site_option() for Cerber's settings.
1111
  * Goal: have a more granular control over processing settings.
1112
  *
1113
  * @since 8.5.9.1
37
  // Cerber's settings form in the WP dashboard
38
  // @since 8.5.9.1
39
  const CRB_SETTINGS_GROUP = 'cerber_settings_group';
40
+ const CRB_FIELD_PREFIX = 'crb-input-';
41
 
42
  function cerber_admin_init() {
43
 
115
 
116
  foreach ( $section_config['fields'] as $field => $config ) {
117
 
118
+ if ( ( $req_wp = $config['requires_wp'] ?? false )
119
+ && ! crb_wp_version_compare( (string) $req_wp ) ) {
120
  continue;
121
  }
122
 
123
+ if ( ( $cb = $config['requires_true'] ?? false )
124
+ && is_callable( $cb )
125
+ && ! $cb() ) {
126
+ continue;
127
+ }
128
+
129
+ if ( in_array( $field, CRB_PRO_SETTINGS ) && ! lab_lab() ) {
130
  continue;
131
  }
132
 
133
  $config['setting'] = $field;
134
  $config['group'] = $screen_id;
135
 
136
+ $config['type'] = $config['type'] ?? 'text';
 
 
137
 
138
+ // Setting row (tr) class, to specify the input class use 'input_class'
139
+ $config['class'] = '';
 
140
 
141
  if ( $config['type'] == 'hidden' ) {
142
  $config['class'] .= ' crb-display-none';
255
  $settings = crb_get_settings();
256
 
257
  $pre = '';
 
258
  $atts = '';
259
 
260
+ $label = $config['label'] ?? '';
261
 
262
  if ( ! empty( $config['doclink'] ) ) {
263
  $label .= '<span class="crb-insetting-link">[ <a class="crb-no-wrap" target="_blank" href="' . $config['doclink'] . '">' . __( 'Know more', 'wp-cerber' ) . '</a> ]</span>';
264
  }
265
 
266
+ // Unconditionally required
267
+ $req = $config['required'] ?? false;
268
+
269
+ if ( $req ) {
270
+ $atts .= ' required="required" ';
271
+ }
272
+
273
+ // Conditionally (when enabled) required
274
+ $required = $config['validate']['required'] ?? false;
275
+
276
+ if ( $required ) {
277
+ $atts .= ' data-input_required="1" ';
278
+ }
279
+
280
+ $placeholder = $config['placeholder'] ?? '';
281
+
282
+ if ( ! $placeholder && ( $required || $req ) ) {
283
+ $placeholder = __( 'Required', 'wp-cerber' );
284
+ }
285
+
286
  if ( $placeholder ) {
287
+ $atts .= ' placeholder="' . crb_attr_escape( $placeholder ) . '" ';
288
  }
289
 
290
  if ( isset( $config['disabled'] ) ) {
291
  $atts .= ' disabled="disabled" ';
292
  }
293
 
294
+ $value = $config['value'] ?? '';
 
 
295
 
296
+ $setting = $config['setting'] ?? '';
 
 
297
 
298
+ if ( $setting ) {
299
+ if ( ! $value && isset( $settings[ $setting ] ) ) {
300
+ $value = $settings[ $setting ];
301
  }
302
+ if ( ( $setting == 'loginnowp' || $setting == 'loginpath' ) && ! cerber_is_permalink_enabled() ) {
 
303
  $atts .= ' disabled="disabled" ';
304
  }
305
+ if ( $setting == 'loginpath' ) {
306
  $pre = cerber_get_home_url() . '/';
307
  $value = urldecode( $value );
308
  }
311
  $value = crb_attr_escape( $value );
312
 
313
  if ( isset( $config['list'] ) ) {
314
+ $dlt = $config['delimiter_show'] ?? $config['delimiter'];
315
  $value = cerber_array2text( $value, $dlt );
316
  }
317
 
318
  $name_prefix = 'cerber-' . $config['group'];
319
+ $name = $name_prefix . '[' . $setting . ']';
320
 
321
+ $id = $config['id'] ?? CRB_FIELD_PREFIX . $setting;
 
 
 
 
 
322
 
323
+ $class = $config['input_class'] ?? '';
324
 
325
+ $data_atts = '';
326
+ $ena_atts = array();
327
  if ( isset( $config['enabler'] ) ) {
328
+ $ena_atts['input_enabler'] = CRB_FIELD_PREFIX . $config['enabler'][0];
329
  if ( isset( $config['enabler'][1] ) ) {
330
+ $ena_atts['input_enabler_value'] = $config['enabler'][1];
331
  }
332
+ foreach ( $ena_atts as $att => $val ) {
333
+ $data_atts .= ' data-' . $att . '="' . $val . '"';
 
 
334
  }
335
  }
336
 
367
  break;
368
 
369
  case 'notify':
370
+ $html = '<label class="crb-switch"><input class="screen-reader-text" type="checkbox" id="' . $setting . '" name="cerber-' . $config['group'] . '[' . $setting . ']" value="1" ' . checked( 1, $value, false ) . $atts . ' /><span class="crb-slider round"></span></label>'
371
+ . __( 'Send notification if the number of active lockouts above', 'wp-cerber' ) . ' ' .
372
  cerber_digi_field( $name_prefix . '[above]', $settings['above'] ) .
373
+ crb_test_notify_link( array( 'channel' => 'email' ) );
 
 
 
374
  break;
375
 
376
  case 'citadel':
377
  $html = sprintf( __( 'Enable after %s failed login attempts in the last %s minutes', 'wp-cerber' ),
378
  cerber_digi_field( $name_prefix . '[cilimit]', $settings['cilimit'] ),
379
+ cerber_digi_field( $name_prefix . '[ciperiod]', $settings['ciperiod'] ) . '<i ' . $data_atts . '></i>' );
380
  break;
381
 
382
  case 'checkbox':
383
  $html = '<div style="display: table-cell;"><label class="crb-switch"><input class="screen-reader-text" type="checkbox" id="' . $id . '" name="' . $name . '" value="1" ' . checked( 1, $value, false ) . $atts . ' /><span class="crb-slider round"></span></label></div>';
384
  //$html .= '<div style="display: table-cell;"><label for="' . $args['setting'] . '">' . $label . '</label></div><i ' . $data . '></i>';
385
  if ( $label ) {
386
+ $html .= '<div style="display: table-cell;"><label for="' . $setting . '">' . $label . '</label></div>';
387
  }
388
+ if ( $data_atts ) {
389
+ $html .= '<i ' . $data_atts . '></i>';
390
  }
391
  break;
392
 
393
  case 'textarea':
394
+ $html = '<textarea class="large-text crb-monospace" id="' . $id . '" name="' . $name . '" ' . $atts . $data_atts . '>' . $value . '</textarea>';
395
  if ( $label ) {
396
+ $html .= '<br/><label class="crb-below" for="' . $setting . '">' . $label . '</label>';
397
  }
398
  break;
399
 
400
  case 'select':
401
+ $html = cerber_select( $name, $config['set'], $value, $class, $id, '', $placeholder, $ena_atts );
402
  if ( $label ) {
403
  $html .= '<br/><label class="crb-below">' . $label . '</label>';
404
  }
408
  if ( $label ) {
409
  $label = '<p class="crb-label-above"><label for="' . $name . '">' . $label . '</label></p>';
410
  }
411
+ $html = $label . '<div class="crb-select2-multi">' . cerber_role_select( $name . '[]', $value, '', true, '' ) . '<i ' . $data_atts . '></i></div>';
412
  break;
413
  case 'checkbox_set':
414
  if ( $label ) {
415
  $label = '<p class="crb-label-above"><label for="' . $name . '">' . $label . '</label></p>';
416
  }
417
+ $html = '<div class="crb-checkbox_set" style="line-height: 2em;" ' . $data_atts . '>' . $label;
418
  foreach ( $config['set'] as $key => $item ) {
419
  $v = ( ! empty( $value[ $key ] ) ) ? $value[ $key ] : 0;
420
  $html .= '<input type="checkbox" value="1" name="' . $name . '[' . $key . ']" ' . checked( 1, $v, false ) . $atts . '/>' . $item . '<br />';
422
  $html .= '</div>';
423
  break;
424
  case 'reptime':
425
+ $html = cerber_time_select( $config, $settings ) . '<i ' . $data_atts . '></i>';
426
  break;
427
  case 'timepicker':
428
+ $html = '<input class="crb-tpicker" type="text" size="7" id="' . $setting . '" name="' . $name . '" value="' . $value . '"' . $atts . '/>';
429
+ $html .= ' <label for="' . $setting . '">' . $label . '</label>';
430
  break;
431
  case 'hidden':
432
+ $html = '<input type="hidden" id="' . $setting . '" class="crb-hidden-field" name="' . $name . '" value="' . $value . '" />';
433
  break;
434
  case 'text':
435
  default:
436
 
437
+ $type = $config['type'] ?? 'text';
438
+
439
  if ( in_array( $type, array( 'url', 'number', 'email' ) ) ) {
440
  $input_type = $type;
441
  }
451
  $class = 'crb-digits';
452
  }
453
 
454
+ $size = $config['size'] ?? $size;
455
+ $maxlength = $config['maxlength'] ?? $size;
456
 
457
  if ( $maxlength ) {
458
  $maxlength = ' maxlength="' . $maxlength . '" ';
459
  }
 
 
 
460
 
461
  if ( $size ) {
462
  $size = ' size="' . $size . '"';
481
  }
482
  }
483
 
484
+ $html = $pre . '<input type="' . $input_type . '" id="' . $setting . '" name="' . $name . '" value="' . $value . '"' . $atts . ' class="' . $class . '" ' . $size . $maxlength . $atts . $data_atts . ' />';
485
 
486
  if ( $label ) {
487
  if ( ! $size || crb_array_get( $config, 'label_pos' ) == 'below' ) {
488
+ $label = '<br/><label class="crb-below" for="' . $setting . '">' . $label . '</label>';
489
  }
490
  else {
491
+ $label = ' <label for="' . $setting . '">' . $label . '</label>';
492
  }
493
  }
494
 
506
  }
507
 
508
  if ( ! empty( $config['field_switcher'] ) ) {
509
+ $name = 'cerber-' . $config['group'] . '[' . $setting . '-enabled]';
510
+ $value = $settings[ $setting . '-enabled' ] ?? 0;
511
+ $checkbox = '<label class="crb-switch"><input class="screen-reader-text" type="checkbox" id="' . $setting . '-enabled" name="' . $name . '" value="1" ' . checked( 1, $value, false ) . ' /><span class="crb-slider round"></span></label><span>' . $config['field_switcher'] . '</span>';
 
 
 
512
  $html = $checkbox . ' ' . $html;
513
  }
514
 
564
  __( 'Saturday' ),
565
  );
566
  $field = $args['setting'].'-day';
567
+ $selected = $settings[ $field ] ?? '';
 
 
 
 
 
568
  $ret = cerber_select( 'cerber-' . $args['group'] . '[' . $field . ']', $php_week, $selected );
569
  $ret .= ' &nbsp; ' . _x( 'at', 'preposition of time like: at 11:00', 'wp-cerber' ) . ' &nbsp; ';
570
 
574
  $hours[] = str_pad( $i, 2, '0', STR_PAD_LEFT ) . ':00';
575
  }
576
  $field = $args['setting'] . '-time';
577
+ $selected = $settings[ $field ] ?? '';
 
 
 
 
 
578
  $ret .= cerber_select( 'cerber-' . $args['group'] . '[' . $field . ']', $hours, $selected );
579
 
580
+ return $ret . crb_test_notify_link( array( 'type' => 'report' ), __( 'Click to send now', 'wp-cerber' ) );
 
 
 
581
  }
582
 
583
  function cerber_checkbox( $name, $value, $label = '', $id = '', $atts = '' ) {
584
  if ( ! $id ) {
585
+ $id = CRB_FIELD_PREFIX . $name;
586
  }
587
 
588
  return '<div style="display: table-cell;"><label class="crb-switch"><input class="screen-reader-text" type="checkbox" id="' . $id . '" name="' . $name . '" value="1" ' . checked( 1, $value, false ) . $atts . ' /><span class="crb-slider round"></span></label></div>
687
  $msg[] = __( 'If you use a caching plugin, you have to add your new login URL to the list of pages not to cache.', 'wp-cerber' );
688
  $msg_e[] = __( 'If you use a caching plugin, you have to add your new login URL to the list of pages not to cache.', 'wp-cerber' );
689
  cerber_admin_notice( $msg );
690
+ cerber_send_notification( 'newlurl', array( 'text' => $msg_e ) );
691
  }
692
  }
693
  }
820
  }
821
  }
822
 
 
823
  $new['emailrate'] = absint( $new['emailrate'] );
824
 
825
  // When we install a new token, we set proper default value for the device setting
989
  add_filter( 'pre_update_option', 'cerber_o_o_sanitizer', 10, 3 );
990
  function cerber_o_o_sanitizer( $value, $option, $old_value ) {
991
 
992
+ if ( ! in_array( $option, cerber_get_setting_list() ) ) {
993
+ return $value;
994
+ }
995
+
996
+ if ( is_array( $value ) ) {
997
 
998
+ // Parsing settings, applying formatting, etc.
999
 
1000
+ foreach ( $value as $setting => &$setting_val ) {
1001
+ if ( ! $conf = cerber_settings_config( array( 'setting' => $setting ) ) ) {
1002
+ continue;
1003
+ }
1004
 
1005
+ if ( $enabler = $conf['enabler'] ?? '' ) {
1006
+ if ( crb_check_enabler( $conf, $value[ $enabler[0] ] ) ) {
1007
  continue;
1008
  }
1009
+ }
1010
 
1011
+ $callback = crb_array_get( $conf, 'apply' );
1012
+ $regex = crb_array_get( $conf, 'regex_filter' ); // Filtering out not allowed chars
1013
+ $validate = crb_array_get( $conf, 'validate' );
1014
 
1015
+ if ( isset( $conf['list'] ) ) {
1016
+ // Process the values
1017
+ $setting_val = cerber_text2array( $setting_val, $conf['delimiter'], $callback, $regex );
 
1018
 
1019
+ // Remove not allowed values
1020
+ global $_deny;
1021
+ if ( $_deny = crb_array_get( $conf, 'deny_filter' ) ) {
1022
+ $setting_val = array_filter( $setting_val, function ( $e ) {
1023
+ global $_deny;
1024
 
1025
+ return ! in_array( $e, $_deny );
1026
+ } );
 
1027
  }
1028
+ }
1029
+ else {
1030
+ // Process the value
1031
+ if ( $callback && is_callable( $callback ) ) {
1032
+ $setting_val = call_user_func( $callback, $setting_val );
1033
+ }
1034
+ if ( $regex ) {
1035
+ $setting_val = mb_ereg_replace( $regex, '', $setting_val );
1036
+ }
1037
+ // Validating the value
1038
+ if ( $validate ) {
1039
+
1040
+ $field_name = $conf['title'] ?? $conf['label'] ?? 'Unknown field';
1041
+ $error_msg = '';
1042
+
1043
+ if ( ! empty( $validate['required'] )
1044
+ && ! $setting_val ) {
1045
+ $error_msg = sprintf( __( 'Field %s may not be empty', 'wp-cerber' ), '<b>' . $field_name . '</b>' );
1046
+ }
1047
+ elseif ( $setting_val
1048
+ && ( $sat = $validate['satisfy'] ?? false )
1049
+ && is_callable( $sat )
1050
+ && ! call_user_func( $sat, $setting_val ) ) {
1051
+ $error_msg = sprintf( __( 'Field %s contains an invalid value', 'wp-cerber' ), '<b>' . $field_name . '</b>' );
1052
+ }
1053
+
1054
+ if ( $error_msg ) {
1055
+ cerber_admin_notice( '<b>' . __( 'ERROR:' ) . '</b> ' . $error_msg );
1056
  }
1057
  }
1058
  }
1059
  }
1060
+ }
1061
 
1062
+ if ( is_array( $value ) ) {
1063
+ array_walk_recursive( $value, function ( &$element, $key ) {
1064
+ if ( ! is_array( $element ) ) {
1065
+ $element = sanitize_text_field( (string) $element );
1066
+ }
1067
+ } );
 
 
 
 
 
1068
  }
1069
+ else {
1070
+ $value = sanitize_text_field( (string) $value );
1071
+ }
1072
+
1073
+ $value = cerber_normalize( $value, $option );
1074
 
1075
  return $value;
1076
  }
1131
  }
1132
 
1133
  /**
1134
+ * An intermediate level for update_site_option() for Cerber's settings.
1135
  * Goal: have a more granular control over processing settings.
1136
  *
1137
  * @since 8.5.9.1
admin/cerber-admin.php CHANGED
@@ -42,6 +42,7 @@ add_action( 'admin_init', function () {
42
  return;
43
  }
44
 
 
45
  cerber_admin_init();
46
  cerber_export();
47
  cerber_import();
42
  return;
43
  }
44
 
45
+ cerber_phpinfo();
46
  cerber_admin_init();
47
  cerber_export();
48
  cerber_import();
admin/cerber-dashboard.php CHANGED
@@ -266,28 +266,29 @@ function cerber_block_delete( $ip ) {
266
  }
267
 
268
 
269
- /*
270
- ACL management form in dashboard
271
- */
 
 
272
  function cerber_acl_form(){
273
 
274
- //echo '<h2>'.__('White IP Access List','wp-cerber').'</h2><p><span style="color:green;" class="dashicons-before dashicons-thumbs-up"></span> '.__('These IPs will never be locked out','wp-cerber').' - <a target="_blank" href="https://wpcerber.com/using-ip-access-lists-to-protect-wordpress/">Know more</a></p>'.
275
- echo '<h2>' . __( 'White IP Access List', 'wp-cerber' ) . '</h2><p><a target="_blank" href="https://wpcerber.com/using-ip-access-lists-to-protect-wordpress/">How Access Lists work</a> &nbsp;|&nbsp; <a href="' . cerber_admin_link( 'imex' ) . '">Import entries</a></p>' .
276
- cerber_acl_get_table('W');
277
- //echo '<h2>'.__('Black IP Access List','wp-cerber').'</h2><p><span style="color:red;" class="dashicons-before dashicons-thumbs-down"></span> '.__('Nobody can log in or register from these IPs','wp-cerber').' - <a target="_blank" href="https://wpcerber.com/using-ip-access-lists-to-protect-wordpress/">Know more</a></p>'.
278
- echo '<h2>'.__('Black IP Access List','wp-cerber').'</h2>'.
279
- cerber_acl_get_table('B');
 
280
 
281
  $user_ip = cerber_get_remote_ip();
282
  $link = cerber_admin_link( 'activity' ) . '&filter_ip=' . $user_ip;
283
- $name = crb_country_html(null, $user_ip);
284
 
285
- echo '<p style="margin-bottom: 30px;"><b><span class="dashicons-before dashicons-star-filled"></span> '.__('Your IP','wp-cerber').': </b><a href="'.$link.'">'.$user_ip.'</a> '.$name.'</p>';
286
 
287
  ?>
288
 
289
-
290
-
291
  <table class="crb-acl-hints">
292
  <tr><td colspan="3">Use the following formats to add entries to the access lists</td></tr>
293
  <tr><td>IPv4</td><td>Single IPv4 address</td><td>192.168.5.22</td></tr>
@@ -665,15 +666,29 @@ function cerber_admin_request( $is_post = false ) {
665
  }
666
  break;
667
  case 'testnotify':
668
- $t = crb_array_get( $get, 'type', '', '\w+' );
669
- $to = cerber_get_email( $t );
670
- if ( cerber_send_email( $t ) ) {
671
- cerber_admin_message( __( 'Email has been sent to', 'wp-cerber' ) . ' ' . $to );
 
 
 
 
 
 
 
 
 
 
 
 
672
  }
673
  else {
674
- cerber_admin_notice( __( 'Unable to send email to', 'wp-cerber' ) . ' ' . $to );
675
  }
 
676
  $remove_args[] = 'type';
 
677
  break;
678
  case 'subscribe':
679
  $m = crb_array_get( $get, 'mode' );
@@ -1863,7 +1878,9 @@ function cerber_user_extra_view( $user_id, $context = 'activity' ) {
1863
  $name = $u->display_name;
1864
  }
1865
 
1866
- $name = '<span class="crb-user-name"><b>' . $name . '</b></span><p>' . $roles . '</p>';
 
 
1867
 
1868
  if ( $context == 'activity' ) {
1869
  $link = cerber_traffic_link( array( 'filter_user' => $user_id ) , 2 );
@@ -1878,19 +1895,22 @@ function cerber_user_extra_view( $user_id, $context = 'activity' ) {
1878
  $avatar = '<div>' . $avatar . '</div>';
1879
  }
1880
 
1881
- // Registered
1882
- $reg = false;
1883
- $time = strtotime( cerber_db_get_var( "SELECT user_registered FROM {$wpdb->users} WHERE id = " . $user_id ) );
1884
- if ( $time ) {
1885
- $reg = cerber_auto_date( $time, false );
1886
  $country = '';
1887
- if ( $rm = get_user_meta( $user_id, '_crb_reg_', true ) ) {
1888
- if ( $rm['IP'] ) {
1889
- $country = crb_country_html( null, $rm['IP'] );
 
 
 
 
1890
  }
1891
  }
1892
 
1893
- $user_info[] = array( __( 'Registered', 'wp-cerber' ), $reg, $country );
1894
  }
1895
 
1896
 
@@ -1905,20 +1925,24 @@ function cerber_user_extra_view( $user_id, $context = 'activity' ) {
1905
 
1906
 
1907
  // Last seen
1908
- $seen = '';
1909
- $s1 = $wpdb->get_row( 'SELECT stamp,ip FROM ' . CERBER_TRAF_TABLE . ' WHERE user_id = ' . $user_id . ' ORDER BY stamp DESC LIMIT 1' );
1910
- $s2 = $wpdb->get_row( 'SELECT stamp,ip FROM ' . CERBER_LOG_TABLE . ' WHERE user_id = ' . $user_id . ' ORDER BY stamp DESC LIMIT 1' );
1911
 
1912
- $time1 = ( $s1 ) ? $s1->stamp : 0;
1913
- $time2 = ( $s2 ) ? $s2->stamp : 0;
 
 
1914
 
1915
- $sn = ( $time1 < $time2 ) ? $s2 : $s1;
 
 
 
1916
 
1917
- if ( $sn ) {
1918
- //$seen = cerber_auto_date( $sn->stamp );
1919
- $seen = cerber_ago_time( $sn->stamp );
1920
- $country = crb_country_html( null, $sn->ip );
1921
- $user_info[] = array( __( 'Last seen', 'wp-cerber' ), $seen, $country );
 
 
1922
  }
1923
 
1924
  if ( $usn = crb_sessions_get_num( $user_id ) ) {
@@ -2876,7 +2900,7 @@ function cerber_show_admin_notice() {
2876
  '</p></div>';
2877
  }
2878
 
2879
- if ( ! nexus_is_valid_request() && ! cerber_is_admin_page( true ) ) {
2880
  return;
2881
  }
2882
 
@@ -2968,6 +2992,8 @@ function crb_admin_alert_exists( $params = null ) {
2968
  * Generates a link/button to display a dialog for creating an alert on the currently displaying Activity page
2969
  *
2970
  * @return string HTML code for using in the Dashboard HTML
 
 
2971
  */
2972
  function crb_admin_alert_dialog( $button = true, $create_txt = null, $delete_txt = null ) {
2973
  $params = crb_get_alert_params();
@@ -2983,6 +3009,7 @@ function crb_admin_alert_dialog( $button = true, $create_txt = null, $delete_txt
2983
  $alerts = cerber_get_site_option( CRB_ALERTZ );
2984
 
2985
  // Limit to the number of subscriptions
 
2986
  if ( $alerts && count( $alerts ) > 50 ) {
2987
  return '';
2988
  }
@@ -3005,31 +3032,58 @@ function crb_admin_alert_dialog( $button = true, $create_txt = null, $delete_txt
3005
  return '<a href="' . $link . '">' . $label . '</a>';
3006
  }
3007
 
3008
- $visible = array(
3009
- 'al_limit' => array(
3010
- 'label' => __( 'Maximum number of alerts to send', 'wp-cerber' ),
3011
- 'value' => '',
3012
- 'atts' => array(
3013
- 'type' => 'text',
3014
- 'pattern' => '\d+',
3015
- 'placeholder' => __( 'No limit', 'wp-cerber' ),
3016
- ),
3017
- ),
3018
- 'al_expires' => array(
3019
- 'label' => __( 'Do not send alerts after this date', 'wp-cerber' ),
3020
- 'value' => '',
3021
- 'atts' => array( 'type' => 'date', 'min' => date( 'Y-m-d' ) ),
3022
- ),
3023
- 'al_ignore_rate' => array(
3024
- 'label' => __( 'Ignore global rate limits', 'wp-cerber' ),
3025
- 'value' => '1',
3026
- 'atts' => array( 'type' => 'checkbox' ),
3027
- ),
3028
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3029
 
3030
  $query_params = array_intersect_key( $params, $_GET );
3031
 
3032
- $fields = array(
 
3033
  'hidden' => array_merge( $query_params, array(
3034
  'page' => crb_admin_get_page(),
3035
  'tab' => crb_admin_get_tab(),
@@ -3037,30 +3091,30 @@ function crb_admin_alert_dialog( $button = true, $create_txt = null, $delete_txt
3037
  'cerber_admin_do' => 'subscribe',
3038
  'mode' => $mode
3039
  ) ),
3040
- 'visible' => $visible
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3041
  );
3042
 
3043
- // Recipients
3044
-
3045
- $list = cerber_get_email( 'send_alert', true );
3046
- $recipients = ( 1 < count( $list ) ) ? __( 'Email alerts will be sent to these emails:', 'wp-cerber' ) : __( 'Email alerts will be sent to this email:', 'wp-cerber' );
3047
- $recipients .= ' ' . implode( ', ', $list );
3048
-
3049
- if ( $mob_name = cerber_pb_get_active() ) {
3050
- /* translators: %s is the name of a mobile device. */
3051
- $mobile = sprintf( __( 'Mobile alerts will be sent to %s', 'wp-cerber' ), $mob_name );
3052
- }
3053
- else {
3054
- $mobile = __( 'Mobile alerts are not configured', 'wp-cerber' );
3055
- }
3056
-
3057
- $recipients .= '<p>' . $mobile . '</p>';
3058
- $aside = '<p>' . $recipients . '</p>';
3059
- $aside .= '<p><a href="https://wpcerber.com/wordpress-notifications-made-easy/" target="_blank">' . __( 'Documentation', 'wp-cerber' ) . '</a></p>';
3060
-
3061
- $before = '<h3>' . __( 'Optional alert limits', 'wp-cerber' ) . '</h3>';
3062
-
3063
- return crb_create_popup_dialog( $fields, $before, $aside, $label, $icon );
3064
  }
3065
 
3066
  /**
@@ -3252,13 +3306,16 @@ function cerber_admin_assets() {
3252
  wp_enqueue_style( 'ui_stack_css' );
3253
 
3254
  add_thickbox();
 
 
 
3255
  }
3256
 
3257
  if ( ! defined( 'CERBER_BETA' ) ) {
3258
  wp_enqueue_script( 'cerber_js', $crb_assets_url . 'admin.js', array( 'jquery' ), CERBER_VER, true );
3259
  wp_enqueue_script( 'the-ui-stack', $crb_assets_url . 'ui-stack.js', array( 'jquery' ), CERBER_VER, true );
3260
 
3261
- if ( cerber_is_admin_page( false, array( 'page' => 'cerber-integrity' ) ) ) {
3262
  wp_enqueue_script( 'cerber_scan', $crb_assets_url . 'scanner.js', array( 'jquery' ), CERBER_VER, true );
3263
  }
3264
  }
@@ -3320,7 +3377,7 @@ function cerber_admin_head() {
3320
  echo 'crb_admin_tab = "' . crb_admin_get_tab() . '";';
3321
  echo 'crb_user_locale = "' . substr( get_user_locale(), 0, 6 ) . '";';
3322
 
3323
- if ( cerber_is_admin_page( false, array( 'page' => 'cerber-integrity' ) ) ) {
3324
  //echo 'crb_scan_msg_stats = ' . json_encode( cerber_get_stat_labels() ) . ';';
3325
  echo 'crb_scan_msg_steps = ' . json_encode( cerber_get_step_description() ) . ';';
3326
  echo 'crb_scan_msg_issues = ' . json_encode( cerber_get_issue_label() ) . ';';
@@ -3394,12 +3451,20 @@ function cerber_admin_footer() {
3394
  if ( defined( 'IS_PROFILE_PAGE' ) && IS_PROFILE_PAGE ) {
3395
  $uid = get_current_user_id();
3396
  }
3397
- //elseif ( ! empty( $_GET['user_id'] ) && strpos( $_SERVER['SCRIPT_NAME'], 'user-edit.php' ) ) {
3398
  elseif ( ! empty( $_GET['user_id'] ) && is_admin_user_edit() ) {
3399
  $uid = absint( $_GET['user_id'] );
3400
  }
3401
 
3402
  if ( $uid ) {
 
 
 
 
 
 
 
 
 
3403
  $user_links = '<a href="' . cerber_admin_link( 'activity', array( 'filter_user' => $uid ) ) . '" class="page-title-action">' . __( 'View Activity', 'wp-cerber' ) . '</a>';
3404
  if ( $uss = crb_sessions_get_num( $uid ) ) {
3405
  $user_links .= '<a href="' . cerber_admin_link( 'sessions', array( 'filter_user' => $uid ) ) . '" class="page-title-action">' . __( 'Sessions', 'wp-cerber' ) . ' ' . $uss . '</a>';
@@ -3411,18 +3476,21 @@ function cerber_admin_footer() {
3411
  <?php
3412
  }
3413
 
3414
- // User blocking admin JS
3415
  $blocked = array();
3416
- if ( $uids = crb_user_id_list() ) {
3417
- foreach ( $uids as $uid ) {
3418
- if ( crb_is_user_blocked( $uid ) ) {
 
 
 
3419
  $blocked[] = $uid;
3420
  }
3421
  }
3422
  }
3423
  ?>
3424
  <script>
3425
- // Blocked users
3426
  let crb_blocked_users = <?php echo '[' . implode( ',', $blocked ) . ']'; ?>;
3427
  if (crb_blocked_users.length) {
3428
  crb_blocked_users.forEach(function (uid) {
@@ -3506,7 +3574,7 @@ function cerber_admin_footer() {
3506
  </script>
3507
  <?php
3508
 
3509
- if ( ! lab_lab() && cerber_is_admin_page( false, array( 'tab' => array( 'scan_schedule', 'scan_policy' ) ) ) ) :
3510
  ?>
3511
  <script type="text/javascript">
3512
  jQuery(document).ready(function ($) {
@@ -5253,7 +5321,7 @@ function cerber_render_admin_page( $page_id = '', $active_tab = '' ) {
5253
  $error = '';
5254
 
5255
  if ( $page = cerber_get_admin_page_config( $page_id ) ) {
5256
- if ( ! empty( $page['pro'] ) && ! lab_lab() ) {
5257
  $error = 'This feature requires the PRO version of the plugin.';
5258
  }
5259
  else {
@@ -5404,8 +5472,8 @@ function cerber_get_admin_page_config( $page = '' ) {
5404
  }
5405
  }
5406
  ),
5407
- 'cerber-rules' => array(
5408
- 'pro' => 1,
5409
  'title' => __( 'Security Rules', 'wp-cerber' ),
5410
  'tabs' => array(
5411
  'geo' => array( 'bxs-world', __( 'Countries', 'wp-cerber' ) ),
@@ -5787,14 +5855,30 @@ function crb_confirmation_link( $url, $ancor, $msg = '' ) {
5787
  return '<a href="' . $url . '" onclick="return confirm(\'' . $msg . '\');">' . $ancor . '</a>';
5788
  }
5789
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5790
  // Pop-up dialogs -------------------------------------------------------------
5791
 
5792
  /**
5793
  * Creates a pop-up dialog window with a button that opens the dialog.
5794
  *
5795
- * @param array $fields Form fields
5796
- * @param string $before HTML before the form
5797
- * @param string $aside HTML after the form
5798
  * @param string $label Button label
5799
  * @param string $button_icon Button icon
5800
  * @param string $method Form method
@@ -5804,7 +5888,7 @@ function crb_confirmation_link( $url, $ancor, $msg = '' ) {
5804
  *
5805
  * @since 8.9.5.3
5806
  */
5807
- function crb_create_popup_dialog( $fields, $before = '', $aside = '', $label = '', $button_icon = '', $method = 'get', $action = null ) {
5808
  static $counter = 0;
5809
 
5810
  $counter ++; // In case of multiple dialogs on a page
@@ -5817,29 +5901,29 @@ function crb_create_popup_dialog( $fields, $before = '', $aside = '', $label = '
5817
  }
5818
 
5819
  if ( $aside ) {
5820
- $td_aside = '<td rowspan="2" style="vertical-align: top;"><div class="crb-popup-dialog-aside">' . $aside . '</div></td>';
5821
  $class = 'crb-table-2cols';
 
 
5822
  }
5823
  else {
5824
- $td_aside = '';
5825
  $class = 'crb-table-1col';
 
 
5826
  }
5827
 
5828
  $dialog = $control;
5829
 
5830
  $dialog .= '<div id="crb-popup-dialog-' . $counter . '" class="mfp-hide crb-popup-dialog">';
5831
  $dialog .= '<form action="' . ( $action ?? crb_get_admin_base() ) . '" method="' . $method . '">';
5832
- $dialog .= '<table class="' . $class . '"><tr><td><div class="crb-dialog-top">' . $before . '</div></td>' . $td_aside . '</tr>';
5833
- $dialog .= '<tr><td>
5834
- <div class="crb-popup-dialog-form">' . crb_create_dialog_form( $fields, $method, $action ) . '</div>
5835
- </td></tr>';
5836
 
5837
- $dialog .= '<tr><td></td><td style="text-align: center">
5838
  <input type="submit" class="button button-primary" value="' . __( 'OK', 'wp-cerber' ) . '" style="min-width: 6rem;">
5839
  &nbsp; <input type="button" class="button button-secondary crb-popup-dialog-close" value="' . __( 'Cancel', 'wp-cerber' ) . '" style="min-width: 6rem;">
5840
  </td></tr>';
5841
 
5842
- $dialog .= '</table></form></div>';
5843
 
5844
  return $dialog;
5845
  }
@@ -5847,19 +5931,25 @@ function crb_create_popup_dialog( $fields, $before = '', $aside = '', $label = '
5847
  /**
5848
  * Creates a basic HTML form for pop-up dialogs
5849
  *
5850
- * @param array $fields List of form fields
5851
- * @param string $method The form method: get|post
5852
- * @param string $action The form action URL
5853
  *
5854
- * @return string
5855
  *
5856
  * @since 8.9.5.3
5857
  */
5858
- function crb_create_dialog_form( $fields, $method = 'get', $action = null ) {
5859
 
5860
  $form = '';
5861
 
5862
- foreach ( $fields['hidden'] as $field => $value ) {
 
 
 
 
 
 
 
 
5863
  if ( is_array( $value ) ) {
5864
  foreach ( $value as $val ) {
5865
  $form .= '<input type="hidden" name="' . $field . '[]" value="' . htmlspecialchars( $val ) . '">' . "\n";
@@ -5870,9 +5960,11 @@ function crb_create_dialog_form( $fields, $method = 'get', $action = null ) {
5870
  }
5871
  }
5872
 
5873
- $form .= '<table style="width:100%;">';
 
 
5874
 
5875
- foreach ( $fields['visible'] as $field => $config ) {
5876
 
5877
  $atts = '';
5878
 
@@ -5881,55 +5973,32 @@ function crb_create_dialog_form( $fields, $method = 'get', $action = null ) {
5881
  }
5882
 
5883
  $input = '<input id="' . $field . '" name="' . $field . '" value="' . htmlspecialchars( $config['value'] ) . '" ' . $atts . '>';
5884
- $label = '<label for="' . $field . '">' . $config['label'] . '</label>';
 
 
5885
 
5886
  $form .= '<tr><td>';
5887
 
5888
- if ( $config['atts']['type'] == 'checkbox' ) {
5889
- $form .= '<p>' . $input . $label . '</p>';
5890
  }
5891
  else {
5892
- $form .= $label . '<p>' . $input . '</p>';
5893
  }
5894
 
5895
  $form .= '</td></tr>';
5896
- }
5897
-
5898
- $form .= '</table>';
5899
-
5900
- return $form;
5901
-
5902
- }
5903
-
5904
- /**
5905
- * Returns the name of the selected Pushbullet device
5906
- *
5907
- * @return string Sanitized name of the device retrieved from Pushbullet
5908
- *
5909
- * @since 8.9.5.3
5910
- */
5911
- function cerber_pb_get_active() {
5912
-
5913
- if ( false !== $name = cerber_get_set( 'pushbullet_name', null, false ) ) {
5914
- return $name;
5915
  }
5916
 
5917
- // Updating the cache
5918
-
5919
- $device = crb_get_settings( 'pbdevice' );
5920
 
5921
- $name = '';
5922
 
5923
- if ( $device == 'all' ) {
5924
- $name = 'all connected devices';
5925
- }
5926
- elseif ( $device && $list = cerber_pb_get_devices() ) {
5927
- $name = htmlspecialchars( $list[ $device ] ) ?? '';
5928
  }
5929
 
5930
- cerber_update_set( 'pushbullet_name', $name, null, false, time() + 3600 );
5931
 
5932
- return $name;
5933
  }
5934
 
5935
  // Setting up menu editor -----------------------------------------------------
266
  }
267
 
268
 
269
+ /**
270
+ * ACL management forms
271
+ *
272
+ * @return void
273
+ */
274
  function cerber_acl_form(){
275
 
276
+ echo '<div class="crb-title-plus"><div><h2>' . __( 'White IP Access List', 'wp-cerber' ) . '</h2></div>';
277
+ echo '<div><span style="opacity: 0.6;">&#x2500;&#x2500; &nbsp; </span><a href="' . cerber_activity_link() . '&amp;filter_status=500">View Activity</a> &nbsp;|&nbsp; <a href="' . cerber_admin_link( 'imex' ) . '">Import Entries</a> &nbsp;|&nbsp; <a target="_blank" href="https://wpcerber.com/using-ip-access-lists-to-protect-wordpress/">How Access Lists work</a></div></div>';
278
+ echo cerber_acl_get_table( 'W' );
279
+
280
+ echo '<div class="crb-title-plus"><div><h2>' . __( 'Black IP Access List', 'wp-cerber' ) . '</h2></div>';
281
+ echo '<div><span style="opacity: 0.6;">&#x2500;&#x2500; &nbsp; </span><a href="' . cerber_activity_link() . '&amp;filter_status=14">View Activity</a> &nbsp;|&nbsp; <a href="' . cerber_admin_link( 'imex' ) . '">Import Entries</a> &nbsp;|&nbsp; <a target="_blank" href="https://wpcerber.com/using-ip-access-lists-to-protect-wordpress/">How Access Lists work</a></div></div>';
282
+ echo cerber_acl_get_table( 'B' );
283
 
284
  $user_ip = cerber_get_remote_ip();
285
  $link = cerber_admin_link( 'activity' ) . '&filter_ip=' . $user_ip;
286
+ $name = crb_country_html( null, $user_ip );
287
 
288
+ echo '<p style="margin-bottom: 30px;"><b><span class="dashicons-before dashicons-star-filled"></span> ' . __( 'Your IP', 'wp-cerber' ) . ': </b><a href="' . $link . '">' . $user_ip . '</a> ' . $name . '</p>';
289
 
290
  ?>
291
 
 
 
292
  <table class="crb-acl-hints">
293
  <tr><td colspan="3">Use the following formats to add entries to the access lists</td></tr>
294
  <tr><td>IPv4</td><td>Single IPv4 address</td><td>192.168.5.22</td></tr>
666
  }
667
  break;
668
  case 'testnotify':
669
+ $test_type = crb_array_get( $get, 'type', '', '\w+' );
670
+ $test_chan = crb_array_get( $get, 'channel', '', '\w+' );
671
+
672
+ $channels = array();
673
+
674
+ if ( $test_chan && ( $test_chan != 'email' || lab_lab() ) ) {
675
+ $channels = array_fill_keys( array_keys( CRB_CHANNELS ), 0 );
676
+ $channels = array_merge( $channels, array( $test_chan => 1 ) );
677
+ }
678
+
679
+ $sent = cerber_send_notification( $test_type, array( 'subj' => ' *** ' . __( 'TEST MESSAGE', 'wp-cerber' ) . ' *** ' ), '', $channels, true );
680
+
681
+ if ( $sent !== false ) {
682
+ $to = ' ' . implode( ', ', $sent);
683
+ /* translators: %s is the name of a mobile device or/and email addresses. */
684
+ cerber_admin_message( sprintf( __( 'A test message has been sent to %s', 'wp-cerber' ), $to ) );
685
  }
686
  else {
687
+ cerber_admin_notice( __( 'Unable to send a test message', 'wp-cerber' ) );
688
  }
689
+
690
  $remove_args[] = 'type';
691
+ $remove_args[] = 'channel';
692
  break;
693
  case 'subscribe':
694
  $m = crb_array_get( $get, 'mode' );
1878
  $name = $u->display_name;
1879
  }
1880
 
1881
+ $prohibited = crb_is_username_prohibited( $u->user_login ) ? '<p style="color: red;">' . __( 'Username is prohibited', 'wp-cerber' ) . '</p>' : '';
1882
+
1883
+ $name = '<span class="crb-user-name"><b>' . $name . '</b></span>'.$prohibited.'<p>' . $roles . '</p>';
1884
 
1885
  if ( $context == 'activity' ) {
1886
  $link = cerber_traffic_link( array( 'filter_user' => $user_id ) , 2 );
1895
  $avatar = '<div>' . $avatar . '</div>';
1896
  }
1897
 
1898
+ // Registered (created)
1899
+ if ( $time = strtotime( cerber_db_get_var( "SELECT user_registered FROM {$wpdb->users} WHERE id = " . $user_id ) ) ) {
1900
+ $reg_date = cerber_auto_date( $time, false );
1901
+ $reg_event = __( 'Registered', 'wp-cerber' );
 
1902
  $country = '';
1903
+
1904
+ if ( $reg_meta = get_user_meta( $user_id, '_crb_reg_', true ) ) {
1905
+ if ( $reg_meta['IP'] ?? false ) {
1906
+ $country = crb_country_html( null, $reg_meta['IP'] );
1907
+ }
1908
+ if ( $reg_meta['user'] ?? false ) {
1909
+ $reg_event = crb_get_label( 1, $user_id, $reg_meta['user'] );
1910
  }
1911
  }
1912
 
1913
+ $user_info[] = array( $reg_event, $reg_date, $country );
1914
  }
1915
 
1916
 
1925
 
1926
 
1927
  // Last seen
 
 
 
1928
 
1929
+ $seen = array();
1930
+ $seen[0] = $wpdb->get_row( 'SELECT stamp,ip FROM ' . CERBER_TRAF_TABLE . ' WHERE user_id = ' . $user_id . ' ORDER BY stamp DESC LIMIT 1' );
1931
+ $seen[1] = $wpdb->get_row( 'SELECT stamp,ip FROM ' . CERBER_LOG_TABLE . ' WHERE user_id = ' . $user_id . ' AND ac_by_user = 0 ORDER BY stamp DESC LIMIT 1' );
1932
+ $seen[2] = $wpdb->get_row( 'SELECT stamp,ip FROM ' . CERBER_LOG_TABLE . ' WHERE ac_by_user = ' . $user_id . ' ORDER BY stamp DESC LIMIT 1' );
1933
 
1934
+ $tmp = array();
1935
+ foreach ( $seen as $key => $log_row ) {
1936
+ $tmp[ $key ] = ( $log_row ) ? $log_row->stamp : 0;
1937
+ }
1938
 
1939
+ if ( $max = max( $tmp ) ) {
1940
+ $max_keys = array_keys( $tmp, $max );
1941
+ $last_log = $seen[ $max_keys[0] ];
1942
+
1943
+ $last_seen = '<span title="' . cerber_date( $last_log->stamp, false ) . '">' . cerber_ago_time( $last_log->stamp ) . '</span>';
1944
+ $country = crb_country_html( null, $last_log->ip );
1945
+ $user_info[] = array( __( 'Last seen', 'wp-cerber' ), $last_seen, $country );
1946
  }
1947
 
1948
  if ( $usn = crb_sessions_get_num( $user_id ) ) {
2900
  '</p></div>';
2901
  }
2902
 
2903
+ if ( ! nexus_is_valid_request() && ! cerber_is_admin_page( null, true ) ) {
2904
  return;
2905
  }
2906
 
2992
  * Generates a link/button to display a dialog for creating an alert on the currently displaying Activity page
2993
  *
2994
  * @return string HTML code for using in the Dashboard HTML
2995
+ *
2996
+ * @since 8.9.6
2997
  */
2998
  function crb_admin_alert_dialog( $button = true, $create_txt = null, $delete_txt = null ) {
2999
  $params = crb_get_alert_params();
3009
  $alerts = cerber_get_site_option( CRB_ALERTZ );
3010
 
3011
  // Limit to the number of subscriptions
3012
+
3013
  if ( $alerts && count( $alerts ) > 50 ) {
3014
  return '';
3015
  }
3032
  return '<a href="' . $link . '">' . $label . '</a>';
3033
  }
3034
 
3035
+ // Create the alert dialog
3036
+
3037
+ $em_list = cerber_get_email( 'send_alert' );
3038
+ $mob_name = cerber_pb_get_active();
3039
+
3040
+ if ( $mob_name && lab_lab() ) {
3041
+
3042
+ $channels = array(
3043
+ 'title' => __( 'Channels to send alerts', 'wp-cerber' ),
3044
+ 'visible' =>
3045
+ array(
3046
+ 'al_send_emails' => array(
3047
+ /* translators: %s is the email address(es). */
3048
+ 'label' => sprintf( __( 'Send email alerts to %s', 'wp-cerber' ), implode( ', ', $em_list ) ),
3049
+ 'value' => '1',
3050
+ 'atts' => array( 'type' => 'checkbox', 'data-validation_group' => 'required_min_one', 'checked' => true ),
3051
+ ),
3052
+ 'al_send_pushbullet' => array(
3053
+ /* translators: %s is the name of a mobile device. */
3054
+ 'label' => sprintf( __( 'Send mobile alerts to %s', 'wp-cerber' ), $mob_name ),
3055
+ 'value' => '1',
3056
+ 'atts' => array( 'type' => 'checkbox', 'data-validation_group' => 'required_min_one', 'checked' => true ),
3057
+ ),
3058
+ ),
3059
+ 'error_messages' => array( 'required_min_one' => __( 'Please select at least one channel', 'wp-cerber' ) )
3060
+ );
3061
+
3062
+ }
3063
+ else {
3064
+
3065
+ if ( $mob_name ) {
3066
+ /* translators: %s is the name of a mobile device. */
3067
+ $mobile = sprintf( __( 'Mobile alerts will be sent to %s', 'wp-cerber' ), $mob_name );
3068
+ }
3069
+ else {
3070
+ $mobile = __( 'Mobile alerts are not configured', 'wp-cerber' );
3071
+ }
3072
+
3073
+ $recipients = ( 1 < count( $em_list ) ) ? __( 'Email alerts will be sent to these emails:', 'wp-cerber' ) : __( 'Email alerts will be sent to this email:', 'wp-cerber' );
3074
+ $recipients .= ' ' . implode( ', ', $em_list );
3075
+ $recipients = '<p>' . $recipients . '</p><p>' . $mobile . '</p>';
3076
+ $recipients .= '<p><a href="https://wpcerber.com/wordpress-notifications-made-easy/" target="_blank">' . __( 'Documentation', 'wp-cerber' ) . '</a></p>';
3077
+
3078
+ $channels = array(
3079
+ 'html' => $recipients,
3080
+ );
3081
+ }
3082
 
3083
  $query_params = array_intersect_key( $params, $_GET );
3084
 
3085
+ $limits = array(
3086
+ 'title' => __( 'Optional alert limits', 'wp-cerber' ),
3087
  'hidden' => array_merge( $query_params, array(
3088
  'page' => crb_admin_get_page(),
3089
  'tab' => crb_admin_get_tab(),
3091
  'cerber_admin_do' => 'subscribe',
3092
  'mode' => $mode
3093
  ) ),
3094
+ 'visible' => array(
3095
+ 'al_limit' => array(
3096
+ 'label' => __( 'Maximum number of alerts to send', 'wp-cerber' ),
3097
+ 'value' => '',
3098
+ 'atts' => array(
3099
+ 'type' => 'text',
3100
+ 'pattern' => '\d+',
3101
+ 'placeholder' => __( 'No limit', 'wp-cerber' ),
3102
+ ),
3103
+ ),
3104
+ 'al_expires' => array(
3105
+ 'label' => __( 'Do not send alerts after this date', 'wp-cerber' ),
3106
+ 'value' => '',
3107
+ 'atts' => array( 'type' => 'date', 'min' => date( 'Y-m-d' ) ),
3108
+ ),
3109
+ 'al_ignore_rate' => array(
3110
+ 'label' => __( 'Ignore global rate limits', 'wp-cerber' ),
3111
+ 'value' => '1',
3112
+ 'atts' => array( 'type' => 'checkbox' ),
3113
+ ),
3114
+ ),
3115
  );
3116
 
3117
+ return crb_create_popup_dialog( $limits, $channels, $label, $icon );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3118
  }
3119
 
3120
  /**
3306
  wp_enqueue_style( 'ui_stack_css' );
3307
 
3308
  add_thickbox();
3309
+
3310
+ wp_enqueue_script( 'jquery-ui-core' );
3311
+ wp_enqueue_script( 'jquery-effects-bounce' );
3312
  }
3313
 
3314
  if ( ! defined( 'CERBER_BETA' ) ) {
3315
  wp_enqueue_script( 'cerber_js', $crb_assets_url . 'admin.js', array( 'jquery' ), CERBER_VER, true );
3316
  wp_enqueue_script( 'the-ui-stack', $crb_assets_url . 'ui-stack.js', array( 'jquery' ), CERBER_VER, true );
3317
 
3318
+ if ( cerber_is_admin_page( array( 'page' => 'cerber-integrity' ) ) ) {
3319
  wp_enqueue_script( 'cerber_scan', $crb_assets_url . 'scanner.js', array( 'jquery' ), CERBER_VER, true );
3320
  }
3321
  }
3377
  echo 'crb_admin_tab = "' . crb_admin_get_tab() . '";';
3378
  echo 'crb_user_locale = "' . substr( get_user_locale(), 0, 6 ) . '";';
3379
 
3380
+ if ( cerber_is_admin_page( array( 'page' => 'cerber-integrity' ) ) ) {
3381
  //echo 'crb_scan_msg_stats = ' . json_encode( cerber_get_stat_labels() ) . ';';
3382
  echo 'crb_scan_msg_steps = ' . json_encode( cerber_get_step_description() ) . ';';
3383
  echo 'crb_scan_msg_issues = ' . json_encode( cerber_get_issue_label() ) . ';';
3451
  if ( defined( 'IS_PROFILE_PAGE' ) && IS_PROFILE_PAGE ) {
3452
  $uid = get_current_user_id();
3453
  }
 
3454
  elseif ( ! empty( $_GET['user_id'] ) && is_admin_user_edit() ) {
3455
  $uid = absint( $_GET['user_id'] );
3456
  }
3457
 
3458
  if ( $uid ) {
3459
+ global $profileuser;
3460
+ if ( crb_is_username_prohibited( $profileuser->user_login ) ) {
3461
+ ?>
3462
+ <script>
3463
+ document.querySelector('#profile-page #user_login').insertAdjacentHTML('afterend', '<span style="color:red;"><?php echo __( 'Username is prohibited', 'wp-cerber' ); ?></span>');
3464
+ </script>
3465
+ <?php
3466
+ }
3467
+
3468
  $user_links = '<a href="' . cerber_admin_link( 'activity', array( 'filter_user' => $uid ) ) . '" class="page-title-action">' . __( 'View Activity', 'wp-cerber' ) . '</a>';
3469
  if ( $uss = crb_sessions_get_num( $uid ) ) {
3470
  $user_links .= '<a href="' . cerber_admin_link( 'sessions', array( 'filter_user' => $uid ) ) . '" class="page-title-action">' . __( 'Sessions', 'wp-cerber' ) . ' ' . $uss . '</a>';
3476
  <?php
3477
  }
3478
 
3479
+ // Check for blocked users
3480
  $blocked = array();
3481
+ if ( $uids = crb_users_on_the_page() ) {
3482
+ foreach ( $uids as $uid => $login ) {
3483
+ if ( crb_is_username_prohibited( $login ) ) {
3484
+ $blocked[] = $uid;
3485
+ }
3486
+ elseif ( crb_is_user_blocked( $uid ) ) {
3487
  $blocked[] = $uid;
3488
  }
3489
  }
3490
  }
3491
  ?>
3492
  <script>
3493
+ // Highlight blocked users
3494
  let crb_blocked_users = <?php echo '[' . implode( ',', $blocked ) . ']'; ?>;
3495
  if (crb_blocked_users.length) {
3496
  crb_blocked_users.forEach(function (uid) {
3574
  </script>
3575
  <?php
3576
 
3577
+ if ( ! lab_lab() && cerber_is_admin_page( array( 'tab' => array( 'scan_schedule', 'scan_policy' ) ) ) ) :
3578
  ?>
3579
  <script type="text/javascript">
3580
  jQuery(document).ready(function ($) {
5321
  $error = '';
5322
 
5323
  if ( $page = cerber_get_admin_page_config( $page_id ) ) {
5324
+ if ( ! empty( $page['pro_page'] ) && ! lab_lab() ) {
5325
  $error = 'This feature requires the PRO version of the plugin.';
5326
  }
5327
  else {
5472
  }
5473
  }
5474
  ),
5475
+ 'cerber-rules' => array(
5476
+ 'pro_page' => 1,
5477
  'title' => __( 'Security Rules', 'wp-cerber' ),
5478
  'tabs' => array(
5479
  'geo' => array( 'bxs-world', __( 'Countries', 'wp-cerber' ) ),
5855
  return '<a href="' . $url . '" onclick="return confirm(\'' . $msg . '\');">' . $ancor . '</a>';
5856
  }
5857
 
5858
+ /**
5859
+ * @param array $args
5860
+ * @param string $title
5861
+ *
5862
+ * @return string
5863
+ *
5864
+ * @since 8.9.6.1
5865
+ */
5866
+ function crb_test_notify_link( $args = array(), $title = null ) {
5867
+ return '<span class="crb-insetting-link">[ <a href="' .
5868
+ cerber_admin_link_add( array_merge(
5869
+ array(
5870
+ 'cerber_admin_do' => 'testnotify',
5871
+ 'type' => 'lockout',
5872
+ ), $args ) ) . '">' . ( $title ?? __( 'Click to send test', 'wp-cerber' ) ) . '</a> ]</span>';
5873
+ }
5874
+
5875
  // Pop-up dialogs -------------------------------------------------------------
5876
 
5877
  /**
5878
  * Creates a pop-up dialog window with a button that opens the dialog.
5879
  *
5880
+ * @param array $fields Form fields - left side
5881
+ * @param array $aside Form fields - right side, optional
 
5882
  * @param string $label Button label
5883
  * @param string $button_icon Button icon
5884
  * @param string $method Form method
5888
  *
5889
  * @since 8.9.5.3
5890
  */
5891
+ function crb_create_popup_dialog( $fields, $aside = array(), $label = '', $button_icon = '', $method = 'get', $action = null ) {
5892
  static $counter = 0;
5893
 
5894
  $counter ++; // In case of multiple dialogs on a page
5901
  }
5902
 
5903
  if ( $aside ) {
 
5904
  $class = 'crb-table-2cols';
5905
+ $td_aside = '<td><div class="crb-popup-dialog-aside">' . crb_create_dialog_form( $aside ) . '</div></td>';
5906
+ $last_row = '<td></td>';
5907
  }
5908
  else {
 
5909
  $class = 'crb-table-1col';
5910
+ $td_aside = '';
5911
+ $last_row = '';
5912
  }
5913
 
5914
  $dialog = $control;
5915
 
5916
  $dialog .= '<div id="crb-popup-dialog-' . $counter . '" class="mfp-hide crb-popup-dialog">';
5917
  $dialog .= '<form action="' . ( $action ?? crb_get_admin_base() ) . '" method="' . $method . '">';
5918
+ $dialog .= '<table class="' . $class . '">';
5919
+ $dialog .= '<tr><td>' . crb_create_dialog_form( $fields ) . '</td>' . $td_aside . '</tr>';
 
 
5920
 
5921
+ $dialog .= '<tr>' . $last_row . '<td style="text-align: center">
5922
  <input type="submit" class="button button-primary" value="' . __( 'OK', 'wp-cerber' ) . '" style="min-width: 6rem;">
5923
  &nbsp; <input type="button" class="button button-secondary crb-popup-dialog-close" value="' . __( 'Cancel', 'wp-cerber' ) . '" style="min-width: 6rem;">
5924
  </td></tr>';
5925
 
5926
+ $dialog .= '</table></form></div>';
5927
 
5928
  return $dialog;
5929
  }
5931
  /**
5932
  * Creates a basic HTML form for pop-up dialogs
5933
  *
5934
+ * @param array $form_data List of form fields
 
 
5935
  *
5936
+ * @return string HTML code
5937
  *
5938
  * @since 8.9.5.3
5939
  */
5940
+ function crb_create_dialog_form( $form_data ) {
5941
 
5942
  $form = '';
5943
 
5944
+ if ( $title = $form_data['title'] ?? '' ) {
5945
+ $form .= '<h3>' . $title . '</h3>';
5946
+ }
5947
+
5948
+ $form .= $form_data['html'] ?? '';
5949
+
5950
+ $hidden = $form_data['hidden'] ?? array();
5951
+
5952
+ foreach ( $hidden as $field => $value ) {
5953
  if ( is_array( $value ) ) {
5954
  foreach ( $value as $val ) {
5955
  $form .= '<input type="hidden" name="' . $field . '[]" value="' . htmlspecialchars( $val ) . '">' . "\n";
5960
  }
5961
  }
5962
 
5963
+ $form .= '<table class="crb-form-fields">';
5964
+
5965
+ $visible = $form_data['visible'] ?? array();
5966
 
5967
+ foreach ( $visible as $field => $config ) {
5968
 
5969
  $atts = '';
5970
 
5973
  }
5974
 
5975
  $input = '<input id="' . $field . '" name="' . $field . '" value="' . htmlspecialchars( $config['value'] ) . '" ' . $atts . '>';
5976
+ $label = '<label for="' . $field . '">' . $config['label'] . '</label>';
5977
+
5978
+ $type = $config['atts']['type'] ?? '';
5979
 
5980
  $form .= '<tr><td>';
5981
 
5982
+ if ( $type == 'checkbox' ) {
5983
+ $form .= '<div class="crb-wrap-' . $type . '"><div>' . $input .'</div><div>'. $label . '</div></div>';
5984
  }
5985
  else {
5986
+ $form .= $label . '<div>' . $input . '</div>';
5987
  }
5988
 
5989
  $form .= '</td></tr>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5990
  }
5991
 
5992
+ $form .= '</table>';
 
 
5993
 
5994
+ $mess = $form_data['error_messages'] ?? array();
5995
 
5996
+ foreach ( $mess as $id => $msg ) {
5997
+ $form .= '<p id="crb-message-' . $id . '" class="crb-error-text" style="display:none;">' . $msg . '</p>';
 
 
 
5998
  }
5999
 
6000
+ return '<div class="crb-popup-dialog-form">' . $form . '</div>';
6001
 
 
6002
  }
6003
 
6004
  // Setting up menu editor -----------------------------------------------------
admin/cerber-tools.php CHANGED
@@ -244,6 +244,21 @@ function cerber_import() {
244
  }
245
  }
246
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  /**
248
  * Displays admin diagnostic page
249
  */
@@ -348,6 +363,14 @@ function cerber_show_diag(){
348
  $al_info [] = 'Ignore rate limiting';
349
  }
350
 
 
 
 
 
 
 
 
 
351
  if ( $al_info = implode( ' | ', $al_info ) ) {
352
  $al_info = ' | ' . $al_info;
353
  }
@@ -469,6 +492,8 @@ function cerber_show_wp_diag(){
469
  array( 'PHP allow_url_fopen', ( ini_get( 'allow_url_fopen' ) ) ? '<span style="color: red;">Enabled</span>' : '<span style="color: green;">Disabled</span>' ),
470
  array( 'PHP allow_url_include', ( ini_get( 'allow_url_include' ) ) ? '<span style="color: red;">Enabled</span>' : '<span style="color: green;">Disabled</span>' ),
471
  array( 'Persistent object cache', $c ),
 
 
472
  );
473
 
474
  if ( 2 < substr_count( cerber_get_site_url(), '/' ) ) {
@@ -818,12 +843,14 @@ function cerber_cron_diag() {
818
 
819
  function cerber_show_diag_log() {
820
  $file = cerber_get_diag_log();
821
- if ( ! is_file( $file ) ) {
 
822
  echo '<p>The log file has not been created yet.</p>';
823
 
824
  return;
825
  }
826
- if ( ! filesize( $file ) ) {
 
827
  echo '<p>The diagnostic log file is empty.</p>';
828
 
829
  return;
@@ -845,7 +872,32 @@ function cerber_show_diag_log() {
845
  'reverse_log' => ( $reverse_log ) ? 0 : 1,
846
  ), false ) . '">Reverse the order</a>';
847
 
848
- $nav = '<div style="text-align: right; padding-bottom: 1em;">' . $reverse . ' | ' . $dnl . ' | ' . $clear . '</div>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
849
 
850
  if ( empty( $reverse_log ) ) {
851
  $log = @fopen( $file, 'r' );
@@ -856,7 +908,7 @@ function cerber_show_diag_log() {
856
  fclose( $log );
857
  /*$p = strpos( $text, PHP_EOL );
858
  $text = substr( $text, $p + 1 );*/
859
- echo $nav;
860
  echo '<div id="crb-log-viewer"><pre>' . nl2br( htmlspecialchars( $text, ENT_SUBSTITUTE ) ) . '</pre></div>';
861
  }
862
  else {
@@ -864,7 +916,7 @@ function cerber_show_diag_log() {
864
  if ( ! $lines ) {
865
  return;
866
  }
867
- echo $nav;
868
  echo '<div id="crb-log-viewer"><pre>';
869
  for ( $i = count( $lines ) - 1; $i >= 0; $i -- ) {
870
  echo htmlspecialchars( $lines[ $i ], ENT_SUBSTITUTE ) . '<br/>';
244
  }
245
  }
246
 
247
+ /**
248
+ * @return void
249
+ *
250
+ * @since 8.9.6.3
251
+ */
252
+ function cerber_phpinfo() {
253
+ if ( ! cerber_is_admin_page( array( 'tab' => 'diagnostic', 'cerber-show' => 'php_info' ) )
254
+ || ! is_super_admin() ) {
255
+ return;
256
+ }
257
+
258
+ phpinfo();
259
+ exit();
260
+ }
261
+
262
  /**
263
  * Displays admin diagnostic page
264
  */
363
  $al_info [] = 'Ignore rate limiting';
364
  }
365
 
366
+ if ( ! empty( $alert[15] ) ) {
367
+ $al_info [] = 'Email';
368
+ }
369
+
370
+ if ( ! empty( $alert[16] ) ) {
371
+ $al_info [] = 'Mobile';
372
+ }
373
+
374
  if ( $al_info = implode( ' | ', $al_info ) ) {
375
  $al_info = ' | ' . $al_info;
376
  }
492
  array( 'PHP allow_url_fopen', ( ini_get( 'allow_url_fopen' ) ) ? '<span style="color: red;">Enabled</span>' : '<span style="color: green;">Disabled</span>' ),
493
  array( 'PHP allow_url_include', ( ini_get( 'allow_url_include' ) ) ? '<span style="color: red;">Enabled</span>' : '<span style="color: green;">Disabled</span>' ),
494
  array( 'Persistent object cache', $c ),
495
+ array( 'Loaded php.ini file', php_ini_loaded_file() ?: 'Unknown' ),
496
+ array( 'Detailed PHP information', '<a href="' . cerber_admin_link_add( array( 'cerber-show' => 'php_info' ) ) . '" target="_blank">View phpinfo()</a>' ),
497
  );
498
 
499
  if ( 2 < substr_count( cerber_get_site_url(), '/' ) ) {
843
 
844
  function cerber_show_diag_log() {
845
  $file = cerber_get_diag_log();
846
+
847
+ if ( ! is_file( $file ) ) {
848
  echo '<p>The log file has not been created yet.</p>';
849
 
850
  return;
851
  }
852
+
853
+ if ( ! $fs = filesize( $file ) ) {
854
  echo '<p>The diagnostic log file is empty.</p>';
855
 
856
  return;
872
  'reverse_log' => ( $reverse_log ) ? 0 : 1,
873
  ), false ) . '">Reverse the order</a>';
874
 
875
+ // Log file changes
876
+
877
+ $mtime = cerber_get_date( $file );
878
+
879
+ $meta = get_user_meta( get_current_user_id(), 'clast_log_view', true );
880
+
881
+ if ( ! is_array( $meta ) ) {
882
+ $meta = array();
883
+ }
884
+
885
+ $change = $meta['last_change'][ $mtime ] ?? '';
886
+
887
+ if ( ! $change ) {
888
+ $bytes = (int) ( $fs - ( $meta['size'] ?? $fs ) );
889
+ $change = ( 0 != $bytes ) ? '( ' . sprintf( "%+d", $bytes ) . ' bytes)' : '';
890
+ }
891
+
892
+ $lupd = cerber_auto_date( $mtime ) . ' ' . $change;
893
+
894
+ unset( $meta['last_change'] ); // Delete outdated entries
895
+ $meta['last_change'][ $mtime ] = $change;
896
+ $meta['size'] = $fs;
897
+
898
+ update_user_meta( get_current_user_id(), 'clast_log_view', $meta );
899
+
900
+ echo '<div id="crb-log-nav"><div>Size: <b>' . number_format( $fs, 0, ' ', ' ' ) . ' bytes</b> &nbsp;|&nbsp; Last update: <b>' . $lupd . '</b></div><div>[ ' . $reverse . ' &nbsp;|&nbsp; ' . $dnl . ' &nbsp;|&nbsp; ' . $clear . ' ]</div></div>';
901
 
902
  if ( empty( $reverse_log ) ) {
903
  $log = @fopen( $file, 'r' );
908
  fclose( $log );
909
  /*$p = strpos( $text, PHP_EOL );
910
  $text = substr( $text, $p + 1 );*/
911
+
912
  echo '<div id="crb-log-viewer"><pre>' . nl2br( htmlspecialchars( $text, ENT_SUBSTITUTE ) ) . '</pre></div>';
913
  }
914
  else {
916
  if ( ! $lines ) {
917
  return;
918
  }
919
+
920
  echo '<div id="crb-log-viewer"><pre>';
921
  for ( $i = count( $lines ) - 1; $i >= 0; $i -- ) {
922
  echo htmlspecialchars( $lines[ $i ], ENT_SUBSTITUTE ) . '<br/>';
admin/cerber-users.php CHANGED
@@ -25,11 +25,27 @@ add_action( 'personal_options', function ( $profileuser ) {
25
 
26
  <?php
27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  endif;
29
 
30
  if ( defined( 'IS_PROFILE_PAGE' ) && IS_PROFILE_PAGE ) {
31
  return;
32
  }
 
33
  $b = crb_is_user_blocked( $profileuser->ID );
34
  $b_msg = ( ! empty( $b['blocked_msg'] ) ) ? $b['blocked_msg'] : '';
35
  $b_note = ( ! empty( $b['blocked_note'] ) ) ? $b['blocked_note'] : '';
@@ -79,19 +95,6 @@ add_action( 'personal_options', function ( $profileuser ) {
79
  </td>
80
  </tr>
81
  <?php
82
- $pin = CRB_2FA::get_user_pin_info( $profileuser->ID );
83
- if ( $pin ) :
84
- ?>
85
- <tr>
86
- <th scope="row"><?php _e( '2FA PIN Code', 'wp-cerber' ); ?></th>
87
- <td>
88
- <?php
89
- echo $pin;
90
- ?>
91
- </td>
92
- </tr>
93
- <?php
94
- endif;
95
 
96
  }, 1000 );
97
 
@@ -160,15 +163,15 @@ function crb_admin_user2fa( $user_id ) {
160
  add_filter( 'user_row_actions', 'crb_collect_uids', 10, 2 );
161
  add_filter( 'ms_user_row_actions', 'crb_collect_uids', 10, 2 );
162
  function crb_collect_uids( $actions, $user_object ) {
163
- crb_user_id_list( $user_object->ID );
164
 
165
  return $actions;
166
  }
167
 
168
- function crb_user_id_list( $uid = 0 ) {
169
  static $list = array();
170
- if ( $uid ) {
171
- $list[ $uid ] = $uid;
172
  }
173
  else {
174
  return $list;
@@ -300,11 +303,12 @@ function crb_admin_show_role_policies() {
300
  function crb_admin_role_form( $role_id, $values ) {
301
 
302
  $html = '<table class="form-table">';
 
303
  foreach ( crb_admin_role_config() as $section_id => $config ) {
304
 
305
  foreach ( $config['fields'] as $field_id => $field ) {
306
- $pro = ( isset( $field['pro'] ) && ! lab_lab() );
307
- $hide = ( $pro && $field['pro'] == 2 ) ? 'display:none;' : '';
308
 
309
  $title = crb_array_get( $field, 'title', '' );
310
 
@@ -318,10 +322,10 @@ function crb_admin_role_form( $role_id, $values ) {
318
 
319
  $enabler = '';
320
  if ( isset( $field['enabler'] ) ) {
321
- $enabler .= ' data-enabler="crb-input-' . $role_id . '[' . $field['enabler'][0] . ']" ';
322
 
323
  if ( isset( $field['enabler'][1] ) ) {
324
- $enabler .= ' data-enabler_value="' . $field['enabler'][1] . '" ';
325
  }
326
  }
327
 
@@ -338,8 +342,11 @@ function crb_admin_role_form( $role_id, $values ) {
338
  }
339
 
340
  if ( $field['type'] != 'html' ) {
341
- $value = ( ! $pro ) ? crb_array_get( $values, $field_id, '' ) : '';
342
- $html .= '<tr style="' . $hide . '" class="' . $tr_class . '"><th scope="row" style="' . $s . '">' . $title . '</th><td>' . crb_admin_form_field( $field, $role_id . '[' . $field_id . ']', $value ) . '<i ' . $enabler . '></i></td></tr>';
 
 
 
343
  }
344
  else {
345
  $t = ( $pro && $field_id == '2fasmart' ) ? crb_admin_cool_features() : '';
@@ -356,24 +363,32 @@ function crb_admin_role_form( $role_id, $values ) {
356
  function crb_admin_form_field( $field, $name, $value, $id = '' ) {
357
  $value = crb_attr_escape( $value );
358
  $label = crb_array_get( $field, 'label' );
359
- if ( ! $id ) {
360
- $id = 'crb-input-' . $name;
 
361
  }
362
- $atts = '';
363
- if ( $field['disabled']
364
- || ( isset( $field['pro'] ) && ! lab_lab() ) ) {
 
 
365
  $atts = ' disabled ';
366
  }
 
367
  if ( $field['disabled'] ) {
368
  $value = '';
369
  }
370
- if ( isset( $field['placeholder'] ) ) {
 
371
  $atts .= ' placeholder="' . $field['placeholder'] . '"';
372
  }
373
- $style = '';
374
- if ( isset( $field['width'] ) ) {
 
 
375
  $style .= ' width:' . $field['width'];
376
  }
 
377
  switch ( $field['type'] ) {
378
  case 'checkbox':
379
  return cerber_checkbox( $name, $value, $label, $id, $atts );
25
 
26
  <?php
27
 
28
+ endif;
29
+
30
+ $pin = CRB_2FA::get_user_pin_info( $profileuser->ID );
31
+ if ( $pin ) :
32
+ ?>
33
+ <tr>
34
+ <th scope="row"><?php _e( '2FA PIN Code', 'wp-cerber' ); ?></th>
35
+ <td>
36
+ <?php
37
+ echo $pin;
38
+ ?>
39
+ </td>
40
+ </tr>
41
+ <?php
42
+
43
  endif;
44
 
45
  if ( defined( 'IS_PROFILE_PAGE' ) && IS_PROFILE_PAGE ) {
46
  return;
47
  }
48
+
49
  $b = crb_is_user_blocked( $profileuser->ID );
50
  $b_msg = ( ! empty( $b['blocked_msg'] ) ) ? $b['blocked_msg'] : '';
51
  $b_note = ( ! empty( $b['blocked_note'] ) ) ? $b['blocked_note'] : '';
95
  </td>
96
  </tr>
97
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
98
 
99
  }, 1000 );
100
 
163
  add_filter( 'user_row_actions', 'crb_collect_uids', 10, 2 );
164
  add_filter( 'ms_user_row_actions', 'crb_collect_uids', 10, 2 );
165
  function crb_collect_uids( $actions, $user_object ) {
166
+ crb_users_on_the_page( $user_object );
167
 
168
  return $actions;
169
  }
170
 
171
+ function crb_users_on_the_page( $user_object = null ) {
172
  static $list = array();
173
+ if ( $user_object ) {
174
+ $list[ $user_object->ID ] = $user_object->user_login;
175
  }
176
  else {
177
  return $list;
303
  function crb_admin_role_form( $role_id, $values ) {
304
 
305
  $html = '<table class="form-table">';
306
+
307
  foreach ( crb_admin_role_config() as $section_id => $config ) {
308
 
309
  foreach ( $config['fields'] as $field_id => $field ) {
310
+ $pro = ( isset( CRB_PRO_POLICIES[ $field_id ] ) && ! lab_lab() );
311
+ $hide = ( $pro && CRB_PRO_POLICIES[ $field_id ][0] == 2 ) ? 'display:none;' : '';
312
 
313
  $title = crb_array_get( $field, 'title', '' );
314
 
322
 
323
  $enabler = '';
324
  if ( isset( $field['enabler'] ) ) {
325
+ $enabler .= ' data-input_enabler="' . CRB_FIELD_PREFIX . $role_id . '[' . $field['enabler'][0] . ']" ';
326
 
327
  if ( isset( $field['enabler'][1] ) ) {
328
+ $enabler .= ' data-input_enabler_value="' . $field['enabler'][1] . '" ';
329
  }
330
  }
331
 
342
  }
343
 
344
  if ( $field['type'] != 'html' ) {
345
+ //$value = ( ! $pro ) ? crb_array_get( $values, $field_id, '' ) : '';
346
+ $value = crb_array_get( $values, $field_id, '' );
347
+ $field['pro'] = isset( CRB_PRO_POLICIES[ $field_id ] );
348
+ $field_html = crb_admin_form_field( $field, $role_id . '[' . $field_id . ']', $value );
349
+ $html .= '<tr style="' . $hide . '" class="' . $tr_class . '"><th scope="row" style="' . $s . '">' . $title . '</th><td>' . $field_html . '<i ' . $enabler . '></i></td></tr>';
350
  }
351
  else {
352
  $t = ( $pro && $field_id == '2fasmart' ) ? crb_admin_cool_features() : '';
363
  function crb_admin_form_field( $field, $name, $value, $id = '' ) {
364
  $value = crb_attr_escape( $value );
365
  $label = crb_array_get( $field, 'label' );
366
+
367
+ if ( ! $id ) {
368
+ $id = CRB_FIELD_PREFIX . $name;
369
  }
370
+
371
+ $atts = '';
372
+
373
+ if ( $field['disabled'] ) {
374
+ // || ( ! empty( $field['pro'] ) && ! lab_lab() ) ) {
375
  $atts = ' disabled ';
376
  }
377
+
378
  if ( $field['disabled'] ) {
379
  $value = '';
380
  }
381
+
382
+ if ( isset( $field['placeholder'] ) ) {
383
  $atts .= ' placeholder="' . $field['placeholder'] . '"';
384
  }
385
+
386
+ $style = '';
387
+
388
+ if ( isset( $field['width'] ) ) {
389
  $style .= ' width:' . $field['width'];
390
  }
391
+
392
  switch ( $field['type'] ) {
393
  case 'checkbox':
394
  return cerber_checkbox( $name, $value, $label, $id, $atts );
assets/admin.css CHANGED
@@ -41,18 +41,21 @@
41
  white-space: nowrap;
42
  }
43
 
44
- #crb-admin {
 
45
  font-family: 'Roboto', sans-serif;
46
  color: #333;
47
  }
48
 
49
  #crb-admin b,
 
50
  #crb-admin strong {
51
  font-weight: 500;
52
  }
53
 
54
  #crb-admin h2,
55
- #crb-admin h3 {
 
56
  font-weight: 500;
57
  }
58
 
@@ -143,6 +146,24 @@
143
  opacity: 0.4;
144
  }
145
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
146
  /* Settings' forms */
147
 
148
  .crb-admin-form {
@@ -388,68 +409,7 @@
388
  z-index: 2;
389
  }
390
 
391
- #crb-subscribe {
392
- position: relative;
393
- }
394
- #crb-subscribe:after {
395
- font-family: "dashicons";
396
- content: "\f507";
397
- position: absolute;
398
- font-size: 150px;
399
- color: lightblue;
400
- opacity: 0.5;
401
- top: 55%;
402
- left: 22%;
403
- z-index: 1;
404
- }
405
- #crb-jetflow {
406
- position: relative;
407
- }
408
- #crb-jetflow:after {
409
- font-family: "dashicons";
410
- content: "\f311";
411
- position: absolute;
412
- font-size: 150px;
413
- color: darkred;
414
- opacity: 0.2;
415
- top: 55%;
416
- left: 22%;
417
- z-index: 1;
418
- }
419
-
420
- #crb-blog {
421
- /*position: relative;*/
422
- }
423
-
424
- #crb-blog:after {
425
- /*font-family: "dashicons";
426
- content: "\f331";*/
427
-
428
- /*font-family: "cerber-icon" !important;
429
- content: '\10ffff';
430
- font-size: 200px;
431
- color: #01735e;
432
- opacity: 0.2;
433
- z-index: 1;
434
- position: absolute;
435
- top: 45%;
436
- left: 0;*/
437
- }
438
-
439
- #crb-donate {
440
- position: relative;
441
- }
442
- #crb-donate:after {
443
- font-family: "dashicons";
444
- content: "\f487";
445
- position: absolute;
446
- font-size: 150px;
447
- color: red;
448
- opacity: 0.25;
449
- top: 35%;
450
- left: 22%;
451
- z-index: 1;
452
- }
453
 
454
  .crb-button-one {
455
  display: block;
@@ -635,6 +595,13 @@ div.crb-announcement p {
635
  color: white;
636
  }
637
 
 
 
 
 
 
 
 
638
  #crb-admin .tablenav.top .pagination-links {
639
  display: none;
640
  }
@@ -1781,19 +1748,66 @@ div.mfp-wrap.crb-popup-dialog-wrap {
1781
  padding: 2em;
1782
  }
1783
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1784
  .crb-popup-dialog-form input[type="text"],
1785
  .crb-popup-dialog-form input[type="date"] {
1786
- min-width: 14em;
 
 
1787
  }
1788
 
1789
- .crb-popup-dialog-aside {
1790
- padding-left: 1em;
1791
  }
1792
 
1793
- .crb-popup-dialog .crb-table-2cols td {
1794
- width: 50%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1795
  }
1796
 
 
1797
  /* Widgets */
1798
 
1799
  #cerber_quick .inside {
@@ -2407,6 +2421,16 @@ table.vtable > tbody > tr > td {
2407
 
2408
  /* Diagnostic Log */
2409
 
 
 
 
 
 
 
 
 
 
 
2410
  #crb-log-viewer pre {
2411
  font-family: 'Roboto Mono', Menlo, Consolas, Monaco, monospace;
2412
  font-size: 12px;
41
  white-space: nowrap;
42
  }
43
 
44
+ #crb-admin,
45
+ .crb-admin-core {
46
  font-family: 'Roboto', sans-serif;
47
  color: #333;
48
  }
49
 
50
  #crb-admin b,
51
+ .crb-admin-core b,
52
  #crb-admin strong {
53
  font-weight: 500;
54
  }
55
 
56
  #crb-admin h2,
57
+ #crb-admin h3,
58
+ .crb-admin-core h3 {
59
  font-weight: 500;
60
  }
61
 
146
  opacity: 0.4;
147
  }
148
 
149
+ .crb-title-plus {
150
+ display: flex;
151
+ justify-content: flex-start;
152
+ padding: 1em 2em 1.5em 0;
153
+ }
154
+
155
+ .crb-title-plus div:first-of-type{
156
+ padding-right: 1em;
157
+ }
158
+
159
+ .crb-title-plus h2 {
160
+ margin: 0;
161
+ }
162
+
163
+ .crb-title-plus a {
164
+ text-decoration: none;
165
+ }
166
+
167
  /* Settings' forms */
168
 
169
  .crb-admin-form {
409
  z-index: 2;
410
  }
411
 
412
+ /* Buttons */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
413
 
414
  .crb-button-one {
415
  display: block;
595
  color: white;
596
  }
597
 
598
+ /* Primarily for IPv6 */
599
+ .crb-tab-sessions td.column-ses_ip *,
600
+ .crb-tab-sessions td.column-ses_host {
601
+ overflow-wrap: anywhere;
602
+ word-break: break-all;
603
+ }
604
+
605
  #crb-admin .tablenav.top .pagination-links {
606
  display: none;
607
  }
1748
  padding: 2em;
1749
  }
1750
 
1751
+ .crb-popup-dialog-aside {
1752
+ padding-left: 0.5em;
1753
+ }
1754
+
1755
+ .crb-popup-dialog table {
1756
+ width: 100%;
1757
+ border-collapse: collapse;
1758
+ }
1759
+
1760
+ .crb-popup-dialog table td {
1761
+ vertical-align: top;
1762
+ }
1763
+
1764
+ .crb-popup-dialog table.crb-table-1col > tbody > tr > td {
1765
+ text-align: center;
1766
+ }
1767
+
1768
+ .crb-popup-dialog table.crb-table-2cols > tbody > tr > td {
1769
+ width: 50%;
1770
+ }
1771
+
1772
+ .crb-popup-dialog-form table.crb-form-fields {
1773
+ margin-top: 2em;
1774
+ }
1775
+
1776
+ .crb-popup-dialog-form table.crb-form-fields tbody tr:not(:last-of-type) td {
1777
+ padding-bottom: 2em;
1778
+ }
1779
+
1780
  .crb-popup-dialog-form input[type="text"],
1781
  .crb-popup-dialog-form input[type="date"] {
1782
+ min-width: 15em;
1783
+ text-align: center;
1784
+ margin-top: 1em;
1785
  }
1786
 
1787
+ .crb-popup-dialog-form input[type="checkbox"] {
1788
+ margin-top: 0;
1789
  }
1790
 
1791
+ .crb-popup-dialog-form .crb-wrap-checkbox {
1792
+ display: table-row;
1793
+ }
1794
+
1795
+ .crb-popup-dialog-form .crb-wrap-checkbox > div {
1796
+ display: table-cell;
1797
+ }
1798
+
1799
+ .crb-popup-dialog-form .crb-wrap-checkbox > div:last-of-type {
1800
+ padding-left: 0.5em;
1801
+ }
1802
+
1803
+ .crb-popup-dialog-form .crb-error-text {
1804
+ position: absolute;
1805
+ color: red;
1806
+ margin-top: 2em;
1807
+ font-weight: 500;
1808
  }
1809
 
1810
+
1811
  /* Widgets */
1812
 
1813
  #cerber_quick .inside {
2421
 
2422
  /* Diagnostic Log */
2423
 
2424
+ #crb-log-nav {
2425
+ display: flex;
2426
+ justify-content: space-between;
2427
+ padding: 1.5em 0;
2428
+ }
2429
+
2430
+ #crb-log-nav a {
2431
+ text-decoration: none;
2432
+ }
2433
+
2434
  #crb-log-viewer pre {
2435
  font-family: 'Roboto Mono', Menlo, Consolas, Monaco, monospace;
2436
  font-size: 12px;
assets/admin.js CHANGED
@@ -212,6 +212,7 @@ jQuery(document).ready(function ($) {
212
  /* Enabling conditional input setting fields */
213
 
214
  let setting_form = $('.crb-settings');
 
215
  setting_form.find('input,select').on('change', function () {
216
  let enabler_id = $(this).attr('id');
217
  let enabler_val;
@@ -223,12 +224,12 @@ jQuery(document).ready(function ($) {
223
  enabler_val = $(this).val();
224
  }
225
 
226
- setting_form.find('[data-enabler="' + enabler_id + '"]').each(function () {
227
  let input_data = $(this).data();
228
  let method = 'hide';
229
 
230
- if (typeof input_data['enabler_value'] !== "undefined") {
231
- let target = input_data['enabler_value'];
232
  if (Array.isArray(target)) {
233
  for (let i = 0; i < target.length; i++) {
234
  if (String(enabler_val) === String(target[i])) {
@@ -238,7 +239,7 @@ jQuery(document).ready(function ($) {
238
  }
239
  }
240
  else {
241
- if (String(enabler_val) === String(input_data['enabler_value'])) {
242
  method = 'show';
243
  }
244
  }
@@ -249,13 +250,15 @@ jQuery(document).ready(function ($) {
249
  }
250
  }
251
 
252
- let element = $(this).closest('tr');
253
 
254
  if (method === 'show') {
255
- element.fadeIn(500);
 
256
  }
257
  else if (method === 'hide') {
258
- element.fadeOut();
 
259
  }
260
 
261
  });
212
  /* Enabling conditional input setting fields */
213
 
214
  let setting_form = $('.crb-settings');
215
+
216
  setting_form.find('input,select').on('change', function () {
217
  let enabler_id = $(this).attr('id');
218
  let enabler_val;
224
  enabler_val = $(this).val();
225
  }
226
 
227
+ setting_form.find('[data-input_enabler="' + enabler_id + '"]').each(function () {
228
  let input_data = $(this).data();
229
  let method = 'hide';
230
 
231
+ if (typeof input_data['input_enabler_value'] !== "undefined") {
232
+ let target = input_data['input_enabler_value'];
233
  if (Array.isArray(target)) {
234
  for (let i = 0; i < target.length; i++) {
235
  if (String(enabler_val) === String(target[i])) {
239
  }
240
  }
241
  else {
242
+ if (String(enabler_val) === String(input_data['input_enabler_value'])) {
243
  method = 'show';
244
  }
245
  }
250
  }
251
  }
252
 
253
+ let input_wrapper = $(this).closest('tr');
254
 
255
  if (method === 'show') {
256
+ input_wrapper.fadeIn(500);
257
+ input_wrapper.find('input[data-input_required]').prop('required', true);
258
  }
259
  else if (method === 'hide') {
260
+ input_wrapper.fadeOut();
261
+ input_wrapper.find('input[data-input_required]').prop('required', false);
262
  }
263
 
264
  });
assets/bn4ra.png CHANGED
Binary file
assets/bn5ra.png CHANGED
Binary file
assets/ui-stack.js CHANGED
@@ -132,13 +132,32 @@ jQuery(document).ready(function ($) {
132
  items: {
133
  src: popup_element
134
  },
135
- mainClass: 'crb-popup-dialog-wrap',
136
  closeOnContentClick: false,
137
  preloader: false,
138
  });
139
 
140
  event.preventDefault();
141
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  });
143
 
144
  function __is_empty(thing) {
132
  items: {
133
  src: popup_element
134
  },
135
+ mainClass: 'crb-popup-dialog-wrap crb-admin-core',
136
  closeOnContentClick: false,
137
  preloader: false,
138
  });
139
 
140
  event.preventDefault();
141
  });
142
+
143
+ $('.crb-popup-dialog form').on('submit', function (event) {
144
+
145
+ // This group requires at least one element has to be checked
146
+ let group_id = 'required_min_one';
147
+ let elements = $(this).find(':checkbox[data-validation_group="' + group_id + '"]');
148
+ if (elements.length) {
149
+ let error_msg = $(this).find('#crb-message-' + group_id);
150
+ if (!elements.filter(':checked').length) {
151
+ //elements.filter(':last').parent().after( '<p></p>' );
152
+ error_msg.show().effect('bounce');
153
+ event.preventDefault();
154
+ }
155
+ else {
156
+ error_msg.hide();
157
+ }
158
+ }
159
+
160
+ });
161
  });
162
 
163
  function __is_empty(thing) {
cerber-2fa.php CHANGED
@@ -116,9 +116,11 @@ final class CRB_2FA {
116
  private static function check_role_policies( $user_id, $cus, $roles ) {
117
 
118
  foreach ( $roles as $role ) {
 
119
  $policies = cerber_get_role_policies( $role );
120
 
121
- if ( empty( $policies['2famode'] ) ) {
 
122
  continue;
123
  }
124
  elseif ( $policies['2famode'] == 1 ) {
@@ -510,14 +512,14 @@ final class CRB_2FA {
510
  $data = get_userdata( $user_id );
511
 
512
  if ( $details ) {
513
- $ds = array();
514
- $ds[] = 'Login: ' . $data->user_login;
515
- $ds[] = 'IP: ' . cerber_get_remote_ip();
516
  if ( $c = lab_get_country( cerber_get_remote_ip(), false ) ) {
517
- $ds[] = 'Location: ' . cerber_country_name( $c ) . ' (' . $c . ')';
518
  }
519
- $ds[] = 'Browser: ' . substr( strip_tags( crb_array_get( $_SERVER, 'HTTP_USER_AGENT', 'Not set' ) ), 0, 1000 );
520
- $ds[] = 'Date: ' . cerber_date( time(), false );
521
 
522
  $body[] = '';
523
  $body[] = __( 'Here are the details of the sign-in attempt', 'wp-cerber' );
116
  private static function check_role_policies( $user_id, $cus, $roles ) {
117
 
118
  foreach ( $roles as $role ) {
119
+
120
  $policies = cerber_get_role_policies( $role );
121
 
122
+ if ( empty( $policies['2famode'] )
123
+ || ( $policies['2famode'] == 2 && ! lab_lab() ) ) {
124
  continue;
125
  }
126
  elseif ( $policies['2famode'] == 1 ) {
512
  $data = get_userdata( $user_id );
513
 
514
  if ( $details ) {
515
+ $ds = array();
516
+ $ds[] = __( 'Login:', 'wp-cerber' ) . ' ' . $data->user_login;
517
+ $ds[] = __( 'IP address:', 'wp-cerber' ) . ' ' . cerber_get_remote_ip();
518
  if ( $c = lab_get_country( cerber_get_remote_ip(), false ) ) {
519
+ $ds[] = __( 'Location:', 'wp-cerber' ) . '' . cerber_country_name( $c ) . ' (' . $c . ')';
520
  }
521
+ $ds[] = __( 'Browser:', 'wp-cerber' ) . ' ' . substr( strip_tags( crb_array_get( $_SERVER, 'HTTP_USER_AGENT', 'Not set' ) ), 0, 1000 );
522
+ $ds[] = __( 'Date:', 'wp-cerber' ) . ' ' . cerber_date( time(), false );
523
 
524
  $body[] = '';
525
  $body[] = __( 'Here are the details of the sign-in attempt', 'wp-cerber' );
cerber-common.php CHANGED
@@ -42,14 +42,54 @@ const CRB_SANITIZE_ID = '[a-z\d\_\-\.\:\*\/]+';
42
  const CRB_SANITIZE_KEY = '/[^a-z_\-\d.:\/]/i';
43
  const CRB_GROOVE = 'cerber_groove';
44
 
45
- const CRB_NON_ALERT_PARAMS = array( 'al_limit', 'al_count', 'al_expires', 'al_ignore_rate');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  const CRB_ALERTZ = '_cerber_subs';
47
 
 
 
 
48
  const CRB_EV_LFL = 7;
49
  const CRB_EV_PUR = 50;
50
  const CRB_EV_LDN = 53;
51
 
52
  const CRB_EV_PRS = 21;
 
53
  const CRB_EV_PRD = 25;
54
 
55
  const CRB_STS_25 = 25;
@@ -91,6 +131,7 @@ function crb_create_nonce( $action = 'control' ) {
91
 
92
  if ( ! isset( $cache[ $action ] ) ) {
93
  if ( ! function_exists( 'wp_create_nonce' ) ) {
 
94
  require_once( ABSPATH . WPINC . '/pluggable.php' );
95
  }
96
 
@@ -210,7 +251,7 @@ function cerber_admin_link( $tab = '', $args = array(), $add_nonce = false, $enc
210
  * Return modified link to the currently displaying page
211
  *
212
  * @param array $args Arguments to add to the link to the currently displayed page
213
- * @param bool $preserve Save GET paramaters of the current request
214
  * @param bool $add_nonce Add Cerber's nonce
215
  *
216
  * @return string
@@ -368,7 +409,7 @@ function cerber_get_home_url() {
368
  * @return string
369
  */
370
  function crb_get_blogname_decoded() {
371
- return wp_specialchars_decode( get_option( 'blogname' ) );
372
  }
373
 
374
  function cerber_calculate_kpi( $period = 1 ) {
@@ -461,24 +502,38 @@ function cerber_pb_get_devices( $token = '' ) {
461
  /**
462
  * Send push message via Pushbullet
463
  *
464
- * @param $title
465
- * @param $body
 
 
466
  *
467
- * @return bool
468
  */
469
- function cerber_pb_send( $title, $body ) {
470
 
471
- if ( ! $body ) {
472
  return false;
473
  }
 
474
  if ( ! $token = crb_get_settings( 'pbtoken' ) ) {
475
  return false;
476
  }
477
 
 
 
 
 
 
 
 
 
 
 
 
478
  $params = array( 'type' => 'note', 'title' => $title, 'body' => $body, 'sender_name' => 'WP Cerber' );
479
 
480
  if ( $device = crb_get_settings( 'pbdevice' ) ) {
481
- if ( $device && $device != 'all' && $device != 'N' ) {
482
  $params['device_iden'] = $device;
483
  }
484
  }
@@ -502,12 +557,49 @@ function cerber_pb_send( $title, $body ) {
502
  ) );
503
 
504
  $result = @curl_exec( $curl );
505
- $curl_error = curl_error( $curl );
 
 
 
 
 
 
 
506
  curl_close( $curl );
507
 
508
- return $curl_error;
509
  }
510
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
511
  /**
512
  * Informs admin if something wrong with the website or its configuration
513
  *
@@ -543,7 +635,7 @@ function cerber_check_environment() {
543
  cerber_admin_notice( 'Warning: Traffic Inspector is disabled' );
544
  }
545
 
546
- if ( cerber_is_admin_page( false, array( 'page' => 'cerber-shield' ) ) ) {
547
  if ( CRB_DS::check_errors( $msg ) ) {
548
  cerber_admin_notice( $msg );
549
  }
@@ -1067,7 +1159,7 @@ function cerber_is_api_request() {
1067
  }
1068
 
1069
  /**
1070
- * Check if the current query is HTTP and GET method is being
1071
  *
1072
  * @return bool true if request method is GET
1073
  */
@@ -1083,9 +1175,9 @@ function cerber_is_http_get() {
1083
  }
1084
 
1085
  /**
1086
- * Check if the current query is HTTP and POST method is being
1087
  *
1088
- * @return bool true if request method is GET
1089
  */
1090
  function cerber_is_http_post() {
1091
  if ( nexus_is_valid_request() ) {
@@ -1691,9 +1783,9 @@ function cerber_get_labels( $type = 'activity', $id = 0 ) {
1691
  /* translators: %s is the name of a website administrator who changed the password. */
1692
  $act_by[20] = __( 'Password changed by %s', 'wp-cerber' );
1693
  $act[ CRB_EV_PRS ] = __( 'Password reset requested', 'wp-cerber' );
1694
- $act[22] = __( 'User session terminated', 'wp-cerber' );
1695
  /* translators: %s is the name of a website administrator who terminated the session. */
1696
- $act_by[22] = __( 'User session terminated by %s', 'wp-cerber' );
1697
 
1698
  $act[ CRB_EV_PRD ] = __( 'Password reset request denied', 'wp-cerber' );
1699
 
@@ -1804,6 +1896,8 @@ function cerber_get_labels( $type = 'activity', $id = 0 ) {
1804
  $sts[533] = __( 'reCAPTCHA settings are incorrect', 'wp-cerber' );
1805
  $sts[534] = __( 'Request to the Google reCAPTCHA service failed', 'wp-cerber' );
1806
 
 
 
1807
  cerber_cache_set( 'labels', $labels );
1808
  }
1809
 
@@ -1880,7 +1974,7 @@ function crb_get_activity_set( $slice = 'malicious', $implode = false ) {
1880
  $ret = array( 10, 11, 16, 17, CRB_EV_PRD, 40, 50, 51, 52, CRB_EV_LDN, 54, 55, 56, 57, 100, 70, 71, 72, 73, 74, 75, 76, 300 );
1881
  break;
1882
  case 'dashboard': // Important events for the plugin dashboard
1883
- $ret = array( 1, 2, 3, 5, 12, 16, 17, 18, 19, 22, 40, 41, 42, 50, 51, 52, CRB_EV_LDN, 54, 55, 56, 57, 72, 73, 74, 75, 76, 100, 149, 150, 200, 300, 400 );
1884
  break;
1885
  case 'login_issues':
1886
  $ret = array( CRB_EV_LFL, CRB_EV_PRS, CRB_EV_PRD, 51, 52, CRB_EV_LDN, 152 );
@@ -2005,7 +2099,7 @@ function crb_clear_admin_msg() {
2005
  /*
2006
  Check if currently displayed page is a Cerber admin dashboard page with optional checking a set of GET params
2007
  */
2008
- function cerber_is_admin_page( $force = false, $params = array() ) {
2009
 
2010
  if ( ! is_admin()
2011
  && ! nexus_is_valid_request() ) {
@@ -3736,6 +3830,13 @@ function crb_raise_limits( $mem = null ) {
3736
  }
3737
  }
3738
 
 
 
 
 
 
 
 
3739
  function cerber_mask_email( $email ) {
3740
  list( $box, $host ) = explode( '@', $email );
3741
  $box = str_pad( $box[0], strlen( $box ), '*' );
@@ -3744,6 +3845,57 @@ function cerber_mask_email( $email ) {
3744
  return str_replace( '*', '&#8727;', $box . '@' . $host );
3745
  }
3746
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3747
  /**
3748
  * A modified clone of insert_with_markers() from wp-admin/includes/misc.php
3749
  * Removed switch_to_locale() and related stuff that were introduced in WP 5.3. and cause problem if calling ite before 'init' hook.
@@ -3891,28 +4043,7 @@ function crb_get_alert_params() {
3891
  // A set of alert parameters
3892
  // A strictly particular order due to further using numeric array indexes.
3893
 
3894
- $params = array(
3895
- 'filter_activity' => 0, // 0
3896
- 'filter_user' => 0, // 1
3897
- 'begin' => 0, // 2 - IP
3898
- 'end' => 0, // 3 - IP
3899
- 'filter_ip' => 0, // 4 - IP
3900
- 'filter_login' => 0, // 5
3901
- 'search_activity' => 0, // 6
3902
- 'filter_role' => 0, // 7
3903
- 'user_ids' => 0, // 8
3904
-
3905
- // @since 8.9.5.4
3906
- 'search_url' => 0, // 9
3907
- 'filter_status' => 0, // 10
3908
-
3909
- // Non-query alert settings, see CRB_NON_ALERT_PARAMS
3910
- 'al_limit' => 0, // 11
3911
- 'al_count' => 0, // 12
3912
- 'al_expires' => 0, // 13
3913
- 'al_ignore_rate' => 0 // 14
3914
- );
3915
-
3916
  $get = crb_get_query_params();
3917
 
3918
  if ( ! array_intersect_key( $params, $get ) ) {
@@ -3940,12 +4071,12 @@ function crb_get_alert_params() {
3940
  $params['filter_ip'] = $ip;
3941
  }
3942
 
3943
- // Request fields are used as alert parameters
3944
 
3945
- $q_list = $params;
3946
- unset( $q_list['begin'], $q_list['end'], $q_list['filter_ip'] );
3947
 
3948
- foreach ( array_keys( $q_list ) as $key ) {
3949
  if ( ! empty( $get[ $key ] ) ) {
3950
  if ( is_array( $get[ $key ] ) ) {
3951
  $params[ $key ] = array_map( 'trim', $get[ $key ] );
@@ -3959,28 +4090,42 @@ function crb_get_alert_params() {
3959
  }
3960
  }
3961
 
 
 
3962
  if ( ! empty( $params['al_expires'] ) ) {
3963
  $time = 24 * 3600 + strtotime( 'midnight ' . $params['al_expires'] );
3964
  $params['al_expires'] = $time - get_option( 'gmt_offset' ) * 3600;
3965
  }
3966
 
3967
- $params['al_limit'] = absint( $params['al_limit'] );
3968
- $params['al_ignore_rate'] = absint( $params['al_ignore_rate'] );
 
 
 
3969
 
3970
  if ( ! is_array( $params['filter_activity'] ) ) {
3971
  $params['filter_activity'] = array( $params['filter_activity'] );
3972
  }
3973
  $params['filter_activity'] = array_filter( $params['filter_activity'] );
3974
 
 
 
 
 
 
 
3975
  return $params;
3976
  }
3977
 
 
 
 
 
 
 
 
3978
  function crb_get_alert_id( $params ) {
3979
- foreach ( CRB_NON_ALERT_PARAMS as $key ) {
3980
- unset( $params[ $key ] );
3981
- }
3982
-
3983
- return sha1( json_encode( array_values( $params ) ) );
3984
  }
3985
 
3986
  function crb_random_string( $length_min, $length_max = null, $inc_num = true, $upper_case = true, $extra = '' ) {
@@ -4395,8 +4540,24 @@ class CRB_Globals {
4395
 
4396
  static $doing_upgrade;
4397
 
 
 
 
 
 
4398
  static function set_bot_status( $val ) {
4399
  self::$bot_status = $val;
4400
  self::$act_status = $val; // For backward compatibility
4401
  }
 
 
 
 
 
 
 
 
 
 
 
4402
  }
42
  const CRB_SANITIZE_KEY = '/[^a-z_\-\d.:\/]/i';
43
  const CRB_GROOVE = 'cerber_groove';
44
 
45
+ // Critical: the order of these fields MUST NOT be changed
46
+
47
+ const CRB_ALERT_PARAMS = array(
48
+ 'filter_activity' => 0, // 0
49
+ 'filter_user' => 0, // 1
50
+ 'begin' => 0, // 2 - IP
51
+ 'end' => 0, // 3 - IP
52
+ 'filter_ip' => 0, // 4 - IP
53
+ 'filter_login' => 0, // 5
54
+ 'search_activity' => 0, // 6
55
+ 'filter_role' => 0, // 7
56
+ 'user_ids' => 0, // 8
57
+
58
+ // @since 8.9.6
59
+ 'search_url' => 0, // 9
60
+ 'filter_status' => 0, // 10
61
+
62
+ // Non-query alert settings, see CRB_NON_ALERT_PARAMS
63
+ 'al_limit' => 0, // 11
64
+ 'al_count' => 0, // 12
65
+ 'al_expires' => 0, // 13
66
+ 'al_ignore_rate' => 0, // 14
67
+
68
+ // @since 8.9.7
69
+ 'al_send_emails' => 0, // 15
70
+ 'al_send_pushbullet' => 0, // 16
71
+ );
72
+
73
+ const CRB_NON_ALERT_PARAMS = array(
74
+ 'al_limit',
75
+ 'al_count',
76
+ 'al_expires',
77
+ 'al_ignore_rate',
78
+ 'al_send_emails',
79
+ 'al_send_pushbullet'
80
+ );
81
+
82
  const CRB_ALERTZ = '_cerber_subs';
83
 
84
+ // Known alert channels
85
+ const CRB_CHANNELS = array( 'email' => 1, 'pushbullet' => 1 );
86
+
87
  const CRB_EV_LFL = 7;
88
  const CRB_EV_PUR = 50;
89
  const CRB_EV_LDN = 53;
90
 
91
  const CRB_EV_PRS = 21;
92
+ const CRB_EV_UST = 22;
93
  const CRB_EV_PRD = 25;
94
 
95
  const CRB_STS_25 = 25;
131
 
132
  if ( ! isset( $cache[ $action ] ) ) {
133
  if ( ! function_exists( 'wp_create_nonce' ) ) {
134
+ cerber_load_wp_constants();
135
  require_once( ABSPATH . WPINC . '/pluggable.php' );
136
  }
137
 
251
  * Return modified link to the currently displaying page
252
  *
253
  * @param array $args Arguments to add to the link to the currently displayed page
254
+ * @param bool $preserve Save GET parameters of the current request other than 'page' and 'tab'
255
  * @param bool $add_nonce Add Cerber's nonce
256
  *
257
  * @return string
409
  * @return string
410
  */
411
  function crb_get_blogname_decoded() {
412
+ return wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
413
  }
414
 
415
  function cerber_calculate_kpi( $period = 1 ) {
502
  /**
503
  * Send push message via Pushbullet
504
  *
505
+ * @param string $title
506
+ * @param string $text
507
+ * @param string $more Additional text (links)
508
+ * @param string $footer
509
  *
510
+ * @return bool|WP_Error True on success
511
  */
512
+ function cerber_pb_send( $title, $text, $more = '', $footer = '' ) {
513
 
514
+ if ( ! $text ) {
515
  return false;
516
  }
517
+
518
  if ( ! $token = crb_get_settings( 'pbtoken' ) ) {
519
  return false;
520
  }
521
 
522
+ $body = $text;
523
+
524
+ if ( $format = crb_get_settings( 'pb_format' ) ) {
525
+ if ( $format == 1 ) {
526
+ $body .= $more;
527
+ }
528
+ }
529
+ else {
530
+ $body .= $more . $footer;
531
+ }
532
+
533
  $params = array( 'type' => 'note', 'title' => $title, 'body' => $body, 'sender_name' => 'WP Cerber' );
534
 
535
  if ( $device = crb_get_settings( 'pbdevice' ) ) {
536
+ if ( $device != 'all' && $device != 'N' ) {
537
  $params['device_iden'] = $device;
538
  }
539
  }
557
  ) );
558
 
559
  $result = @curl_exec( $curl );
560
+
561
+ if ( $curl_error = curl_error( $curl ) ) {
562
+ $ret = new WP_Error( 'cerber_pb_error', $curl_error );
563
+ }
564
+ else {
565
+ $ret = true;
566
+ }
567
+
568
  curl_close( $curl );
569
 
570
+ return $ret;
571
  }
572
 
573
+ /**
574
+ * Returns the name of the selected Pushbullet device
575
+ *
576
+ * @return string Sanitized name of the device retrieved from Pushbullet
577
+ *
578
+ * @since 8.9.5.3
579
+ */
580
+ function cerber_pb_get_active() {
581
+
582
+ if ( false !== $name = cerber_get_set( 'pushbullet_name', null, false ) ) {
583
+ return $name;
584
+ }
585
+
586
+ // Updating the cache
587
+
588
+ $device = crb_get_settings( 'pbdevice' );
589
+
590
+ $name = '';
591
+
592
+ if ( $device == 'all' ) {
593
+ $name = 'all connected devices';
594
+ }
595
+ elseif ( $device && $list = cerber_pb_get_devices() ) {
596
+ $name = htmlspecialchars( $list[ $device ] ) ?? '';
597
+ }
598
+
599
+ cerber_update_set( 'pushbullet_name', $name, null, false, time() + 3600 );
600
+
601
+ return $name;
602
+ }
603
  /**
604
  * Informs admin if something wrong with the website or its configuration
605
  *
635
  cerber_admin_notice( 'Warning: Traffic Inspector is disabled' );
636
  }
637
 
638
+ if ( cerber_is_admin_page( array( 'page' => 'cerber-shield' ) ) ) {
639
  if ( CRB_DS::check_errors( $msg ) ) {
640
  cerber_admin_notice( $msg );
641
  }
1159
  }
1160
 
1161
  /**
1162
+ * Check if the current query is HTTP GET
1163
  *
1164
  * @return bool true if request method is GET
1165
  */
1175
  }
1176
 
1177
  /**
1178
+ * Check if the current query is HTTP POST
1179
  *
1180
+ * @return bool true if request method is POST
1181
  */
1182
  function cerber_is_http_post() {
1183
  if ( nexus_is_valid_request() ) {
1783
  /* translators: %s is the name of a website administrator who changed the password. */
1784
  $act_by[20] = __( 'Password changed by %s', 'wp-cerber' );
1785
  $act[ CRB_EV_PRS ] = __( 'Password reset requested', 'wp-cerber' );
1786
+ $act[ CRB_EV_UST ] = __( 'User session terminated', 'wp-cerber' );
1787
  /* translators: %s is the name of a website administrator who terminated the session. */
1788
+ $act_by[ CRB_EV_UST ] = __( 'User session terminated by %s', 'wp-cerber' );
1789
 
1790
  $act[ CRB_EV_PRD ] = __( 'Password reset request denied', 'wp-cerber' );
1791
 
1896
  $sts[533] = __( 'reCAPTCHA settings are incorrect', 'wp-cerber' );
1897
  $sts[534] = __( 'Request to the Google reCAPTCHA service failed', 'wp-cerber' );
1898
 
1899
+ // Note: 7xx is in use in cerber_get_reason()
1900
+
1901
  cerber_cache_set( 'labels', $labels );
1902
  }
1903
 
1974
  $ret = array( 10, 11, 16, 17, CRB_EV_PRD, 40, 50, 51, 52, CRB_EV_LDN, 54, 55, 56, 57, 100, 70, 71, 72, 73, 74, 75, 76, 300 );
1975
  break;
1976
  case 'dashboard': // Important events for the plugin dashboard
1977
+ $ret = array( 1, 2, 3, 5, 12, 16, 17, 18, 19, CRB_EV_UST, 40, 41, 42, 50, 51, 52, CRB_EV_LDN, 54, 55, 56, 57, 72, 73, 74, 75, 76, 100, 149, 150, 200, 300, 400 );
1978
  break;
1979
  case 'login_issues':
1980
  $ret = array( CRB_EV_LFL, CRB_EV_PRS, CRB_EV_PRD, 51, 52, CRB_EV_LDN, 152 );
2099
  /*
2100
  Check if currently displayed page is a Cerber admin dashboard page with optional checking a set of GET params
2101
  */
2102
+ function cerber_is_admin_page( $params = array(), $force = false ) {
2103
 
2104
  if ( ! is_admin()
2105
  && ! nexus_is_valid_request() ) {
3830
  }
3831
  }
3832
 
3833
+ /**
3834
+ * Masks email address
3835
+ *
3836
+ * @param string $email
3837
+ *
3838
+ * @return string
3839
+ */
3840
  function cerber_mask_email( $email ) {
3841
  list( $box, $host ) = explode( '@', $email );
3842
  $box = str_pad( $box[0], strlen( $box ), '*' );
3845
  return str_replace( '*', '&#8727;', $box . '@' . $host );
3846
  }
3847
 
3848
+ /**
3849
+ * Masks username (login)
3850
+ *
3851
+ * @param string $login
3852
+ *
3853
+ * @return string
3854
+ *
3855
+ * @since 8.9.6.4
3856
+ */
3857
+ function crb_mask_login( $login ) {
3858
+ if ( is_email( $login ) ) {
3859
+ return cerber_mask_email( $login );
3860
+ }
3861
+
3862
+ $strlen = mb_strlen( $login );
3863
+
3864
+ return str_pad( mb_substr( $login, 0, intdiv( $strlen, 2 ) ), $strlen, '*' );
3865
+ }
3866
+
3867
+ /**
3868
+ * Masks IP address
3869
+ *
3870
+ * @param string $ip
3871
+ *
3872
+ * @return string
3873
+ *
3874
+ * @since 8.9.6.4
3875
+ */
3876
+ function crb_mask_ip( $ip = '' ) {
3877
+ if ( cerber_is_ipv6( $ip ) ) {
3878
+ // Look for the third colon
3879
+ $pos = strpos( $ip, ':', strpos( $ip, ':', strpos( $ip, ':' ) + 1 ) + 1 );
3880
+ $delimiter = ':';
3881
+ }
3882
+ else {
3883
+ // Look for the second dot
3884
+ $pos = strpos( $ip, '.', strpos( $ip, '.' ) + 1 );
3885
+ $delimiter = '.';
3886
+ }
3887
+
3888
+ if ( ! $pos ) {
3889
+ return $ip;
3890
+ }
3891
+
3892
+ $net = substr( $ip, 0, $pos );
3893
+ $sub = substr( $ip, $pos );
3894
+
3895
+ return $net . preg_replace( '/[^' . $delimiter . ']/', '*', $sub );
3896
+ }
3897
+
3898
+
3899
  /**
3900
  * A modified clone of insert_with_markers() from wp-admin/includes/misc.php
3901
  * Removed switch_to_locale() and related stuff that were introduced in WP 5.3. and cause problem if calling ite before 'init' hook.
4043
  // A set of alert parameters
4044
  // A strictly particular order due to further using numeric array indexes.
4045
 
4046
+ $params = CRB_ALERT_PARAMS;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4047
  $get = crb_get_query_params();
4048
 
4049
  if ( ! array_intersect_key( $params, $get ) ) {
4071
  $params['filter_ip'] = $ip;
4072
  }
4073
 
4074
+ // Getting values of the request fields (used as alert parameters)
4075
 
4076
+ $temp = $params;
4077
+ unset( $temp['begin'], $temp['end'], $temp['filter_ip'] );
4078
 
4079
+ foreach ( array_keys( $temp ) as $key ) {
4080
  if ( ! empty( $get[ $key ] ) ) {
4081
  if ( is_array( $get[ $key ] ) ) {
4082
  $params[ $key ] = array_map( 'trim', $get[ $key ] );
4090
  }
4091
  }
4092
 
4093
+ // Preparing/sanitizing values of the alert parameters
4094
+
4095
  if ( ! empty( $params['al_expires'] ) ) {
4096
  $time = 24 * 3600 + strtotime( 'midnight ' . $params['al_expires'] );
4097
  $params['al_expires'] = $time - get_option( 'gmt_offset' ) * 3600;
4098
  }
4099
 
4100
+ $int_fields = array( 'al_limit', 'al_ignore_rate', 'al_send_emails', 'al_send_pushbullet' );
4101
+
4102
+ foreach ( $int_fields as $f ) {
4103
+ $params[ $f ] = absint( $params[ $f ] );
4104
+ }
4105
 
4106
  if ( ! is_array( $params['filter_activity'] ) ) {
4107
  $params['filter_activity'] = array( $params['filter_activity'] );
4108
  }
4109
  $params['filter_activity'] = array_filter( $params['filter_activity'] );
4110
 
4111
+ // Basic XSS sanitization
4112
+
4113
+ array_walk_recursive( $params, function ( &$item ) {
4114
+ $item = str_replace( array( '<', '>', '[', ']', '"', "'" ), '', $item );
4115
+ } );
4116
+
4117
  return $params;
4118
  }
4119
 
4120
+ /**
4121
+ * @param array $params
4122
+ *
4123
+ * @return string
4124
+ *
4125
+ * @since 8.9.6
4126
+ */
4127
  function crb_get_alert_id( $params ) {
4128
+ return sha1( json_encode( array_values( array_diff_key( $params, array_flip( CRB_NON_ALERT_PARAMS ) ) ) ) );
 
 
 
 
4129
  }
4130
 
4131
  function crb_random_string( $length_min, $length_max = null, $inc_num = true, $upper_case = true, $extra = '' ) {
4540
 
4541
  static $doing_upgrade;
4542
 
4543
+ /**
4544
+ * @param integer $val
4545
+ *
4546
+ * @return void
4547
+ */
4548
  static function set_bot_status( $val ) {
4549
  self::$bot_status = $val;
4550
  self::$act_status = $val; // For backward compatibility
4551
  }
4552
+
4553
+ /**
4554
+ * @param integer $val
4555
+ *
4556
+ * @return void
4557
+ */
4558
+ static function set_act_status( $val ) {
4559
+ if ( ! self::$act_status ) {
4560
+ self::$act_status = $val;
4561
+ }
4562
+ }
4563
  }
cerber-lab.php CHANGED
@@ -1005,7 +1005,7 @@ function lab_get_country( $ip, $cache_only = true ) {
1005
  //$ip_data = $lab_data['response']['payload'][ $ip_id ];
1006
  lab_geo_update( $ip_data['ip'], $ip_data );
1007
  lab_reputation_update( $ip_data['ip'], $ip_data );
1008
- $ret[ $ip_id ] = $ip_data['network']['geo']['country_iso'];
1009
  //}
1010
  }
1011
  }
1005
  //$ip_data = $lab_data['response']['payload'][ $ip_id ];
1006
  lab_geo_update( $ip_data['ip'], $ip_data );
1007
  lab_reputation_update( $ip_data['ip'], $ip_data );
1008
+ $ret[ $ip_id ] = crb_array_get( $ip_data, array( 'network', 'geo', 'country_iso' ), '' );
1009
  //}
1010
  }
1011
  }
cerber-load.php CHANGED
@@ -150,7 +150,6 @@ class WP_Cerber {
150
  private $session_id;
151
  private $status = null;
152
  private $options;
153
- private $locked = null; // IP has been locked out
154
 
155
  private $recaptcha = null; // Can recaptcha be verified with current request
156
  private $recaptcha_verified = null; // Is recaptcha successfully verified with current request
@@ -781,19 +780,6 @@ class WP_Cerber {
781
  return apply_filters( 'cerber_msg_recaptcha', $msg, $context );
782
  }
783
 
784
- final public function setLocked() {
785
- if ( ! isset( $this->locked ) ) {
786
- $this->locked = 1;
787
- }
788
- }
789
-
790
- final public function wasLocked() {
791
- if ( ! empty( $this->locked ) ) {
792
- return 1;
793
- }
794
- return 0;
795
- }
796
-
797
  final public function deleteGarbage() {
798
  if ( $this->garbage ) {
799
  return;
@@ -937,6 +923,7 @@ function cerber_load_admin_code() {
937
  * @since 8.8
938
  */
939
  function cerber_load_wp_constants() {
 
940
  require_once( ABSPATH . WPINC . '/default-constants.php' );
941
 
942
  if ( is_multisite() ) {
@@ -1525,7 +1512,7 @@ add_action( 'updated_user_meta', function ( $meta_id, $user_id, $meta_key, $_met
1525
  if ( $meta_key === 'session_tokens' ) {
1526
  crb_sessions_update_user_data( $user_id, $_meta_value );
1527
  if ( CRB_Globals::$session_status !== null ) {
1528
- cerber_log( 22, '', $user_id, CRB_Globals::$session_status );
1529
  CRB_Globals::$session_status = null;
1530
  }
1531
  }
@@ -1538,8 +1525,8 @@ add_action( 'deleted_user_meta', function ( $meta_ids, $user_id, $meta_key, $_me
1538
  $query = 'DELETE FROM ' . cerber_get_db_prefix() . CERBER_USS_TABLE;
1539
  if ( $user_id ) {
1540
  $query .= ' WHERE user_id = ' . $user_id;
1541
- cerber_log( 22, '', $user_id, 530 ); // By admin
1542
- CRB_Globals::$act_status = 530;
1543
  }
1544
  cerber_db_query( $query );
1545
  }
@@ -1878,6 +1865,7 @@ function cerber_parse_redir( $url, $user ) {
1878
  }
1879
 
1880
  function crb_redirect_by_policy( $user, $policy ) {
 
1881
  if ( $user
1882
  && ! is_wp_error( $user )
1883
  && ( $to = cerber_get_user_policy( $policy, $user ) ) ) {
@@ -2433,6 +2421,10 @@ add_action( 'init', function () {
2433
  cerber_wp_login_page();
2434
  }
2435
 
 
 
 
 
2436
  }, 0 );
2437
 
2438
  if ( ( defined( 'CERBER_OLD_LP' ) && CERBER_OLD_LP )
@@ -3539,7 +3531,7 @@ function cerber_soft_block_add( $ip, $reason_id, $details = '', $duration = null
3539
  * @param string $details Reason of blocking
3540
  * @param int $duration Duration of blocking
3541
  *
3542
- * @return bool|false|int
3543
  */
3544
  function cerber_block_add( $ip_address = '', $reason_id = 1, $details = '', $duration = null ) {
3545
 
@@ -3604,8 +3596,11 @@ function cerber_block_add( $ip_address = '', $reason_id = 1, $details = '', $dur
3604
  if ( $result ) {
3605
  $result = true;
3606
  CRB_Globals::$blocked = $reason_id;
3607
- cerber_log( $activity, null, null, 0, $ip_address );
3608
- $wp_cerber->setLocked();
 
 
 
3609
  crb_event_handler( 'ip_event', array(
3610
  'e_type' => 'locked',
3611
  'ip' => $ip_address,
@@ -3614,19 +3609,16 @@ function cerber_block_add( $ip_address = '', $reason_id = 1, $details = '', $dur
3614
  'update' => $update
3615
  ) );
3616
 
3617
- do_action( 'cerber_ip_locked', array( 'IP' => $ip_address, 'reason' => $reason ) );
 
 
3618
  }
3619
  else {
3620
  $result = false;
3621
  cerber_db_error_log();
3622
  }
3623
 
3624
- if ( crb_get_settings( 'notify' ) ) {
3625
- $count = cerber_blocked_num();
3626
- if ( $count > crb_get_settings( 'above' ) ) {
3627
- cerber_send_email( 'lockout', '', $ip_address );
3628
- }
3629
- }
3630
 
3631
  return $result;
3632
  }
@@ -3861,9 +3853,10 @@ function crb_is_username_prohibited( $username ) {
3861
  return false;
3862
  }
3863
 
3864
- $username_lower = strtolower( $username ); // since 'prohibited' gets lower case when settings are saved
3865
-
3866
  if ( $list = (array) crb_get_settings( 'prohibited' ) ) {
 
 
 
3867
  foreach ( $list as $item ) {
3868
  if ( mb_substr( $item, 0, 1 ) == '/' && mb_substr( $item, - 1 ) == '/' ) {
3869
  $pattern = trim( $item, '/' );
@@ -4001,7 +3994,7 @@ function cerber_acl_check( $ip = null, $tag = '', $acl_slice = 0, &$row = null )
4001
  if ( $tag !== 'W' && $tag !== 'B' ) {
4002
  $ret = false;
4003
  }
4004
- elseif ( $row = cerber_db_get_row( 'SELECT * FROM ' . CERBER_ACL_TABLE . ' WHERE acl_slice = ' . $acl_slice . ' AND ver6 = 0 AND ip_long_begin <= ' . $long . ' AND ' . $long . ' <= ip_long_end AND tag = "' . $tag . '" LIMIT 1' ) ) {
4005
  $ret = true;
4006
  }
4007
  else {
@@ -4164,7 +4157,7 @@ function crb_ipv6_get_tag( $d1, $d2, &$v6rows, &$key = null ) {
4164
  }
4165
 
4166
  /**
4167
- * Return true if the number $a1.$a2 is bigger or equal the number $b1.$b2
4168
  *
4169
  * @param $a1 integer
4170
  * @param $a2 integer
@@ -4177,16 +4170,16 @@ function crb_compare_numbers( $a1, $a2, $b1, $b2 ) {
4177
  if ( $a1 > $b1 ) {
4178
  return true;
4179
  }
 
4180
  if ( $a1 < $b1 ) {
4181
  return false;
4182
  }
4183
- if ( $a1 == $b1 ) {
4184
- if ( $a2 >= $b2 ) {
4185
- return true;
4186
- }
4187
 
4188
- return false;
 
4189
  }
 
 
4190
  }
4191
 
4192
  /**
@@ -4719,7 +4712,7 @@ function cerber_enable_citadel() {
4719
 
4720
  // Notify admin
4721
  if ( crb_get_settings( 'cinotify' ) ) {
4722
- cerber_send_email( 'citadel' );
4723
  }
4724
  }
4725
 
@@ -4735,74 +4728,63 @@ function cerber_is_citadel() {
4735
  return false;
4736
  }
4737
 
4738
- // Hardening -------------------------------------------------------------------------------------
4739
-
4740
- //if (!cerber_acl_check(cerber_get_ip(),'W') && false) {
4741
-
4742
- /*
4743
- if ($hardening['ping']) {
4744
- add_filter( 'xmlrpc_methods', 'remove_xmlrpc_pingback' );
4745
- function remove_xmlrpc_pingback( $methods ) {
4746
- unset($methods['pingback.ping']);
4747
- unset($methods['pingback.extensions.getPingbacks']);
4748
- return $methods;
4749
- }
4750
- add_filter( 'wp_headers', 'remove_pingback_header' );
4751
- function remove_pingback_header( $headers ) {
4752
- unset( $headers['X-Pingback'] );
4753
- return $headers;
4754
- }
4755
- }
4756
- */
4757
- //pingback_ping();
4758
-
4759
-
4760
- /*
4761
- // Remove shortlink from HEAD <link rel='shortlink' href='http://адрес-сайта/?p=45' />
4762
- remove_action('wp_head', 'wp_shortlink_wp_head', 10, 0 );
4763
- */
4764
-
4765
  /**
4766
  *
4767
  * Send notification letter
4768
  *
4769
  * @param string $type Notification type
4770
- * @param string|array $msg Additional message
4771
  * @param string $ip Remote IP address, if applicable
 
 
4772
  *
4773
- * @return bool
 
 
4774
  */
4775
- function cerber_send_email( $type = '', $msg = '', $ip = '', $ignore = false ) {
4776
  if ( ! $type ) {
4777
  return false;
4778
  }
4779
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4780
  if ( ! $ignore
4781
  && ! is_admin()
4782
  && in_array( $type, array( 'lockout', 'send_alert' ) ) ) {
4783
 
4784
- if ( $rate = absint( crb_get_settings( 'emailrate' ) ) ) {
4785
- $period = 3600; // per hour
4786
-
4787
- if ( $last_em = cerber_get_set( '_cerber_last', 1, false ) ) {
4788
- if ( $last_em > ( time() - $period / $rate ) ) {
4789
- return false;
4790
- }
4791
- }
4792
 
4793
- cerber_update_set( '_cerber_last', time(), 1, false, time() + $period );
 
4794
  }
4795
  }
4796
 
4797
  $html_mode = false;
4798
-
4799
- $subj = '[' . crb_get_blogname_decoded() . '] ' . __( 'WP Cerber notify', 'wp-cerber' ) . ': ';
4800
  $body = '';
 
4801
 
4802
  if ( is_array( $msg ) ) {
4803
  $msg = implode( "\n\n", $msg );
4804
  }
4805
 
 
 
 
 
4806
  $last = null;
4807
 
4808
  switch ( $type ) {
@@ -4815,17 +4797,17 @@ function cerber_send_email( $type = '', $msg = '', $ip = '', $ignore = false ) {
4815
  }
4816
 
4817
  if ( ! $last ) { // workaround for the empty log table
4818
- $last = new stdClass();
4819
- $last->ip = CERBER_NO_REMOTE_IP;
4820
  $last->user_login = 'test';
4821
  }
4822
 
4823
- $subj .= __( 'Citadel mode is activated', 'wp-cerber' );
4824
 
4825
- $body = sprintf( __( 'Citadel mode is activated after %d failed login attempts in %d minutes.', 'wp-cerber' ), crb_get_settings( 'cilimit' ), crb_get_settings( 'ciperiod' ) ) . "\n\n";
4826
- $body .= sprintf( __( 'Last failed attempt was at %s from IP %s with user login: %s.', 'wp-cerber' ), $last_date, $last->ip, $last->user_login ) . "\n\n";
4827
- $body .= __( 'View activity in the Dashboard', 'wp-cerber' ) . ': ' . cerber_admin_link( 'activity', array(), false, false ) . "\n\n";
4828
- //$body .= __('Change notification settings','wp-cerber').': '.cerber_admin_link();
4829
  break;
4830
  case 'lockout':
4831
  $max = cerber_db_get_var( 'SELECT MAX(stamp) FROM ' . CERBER_LOG_TABLE . ' WHERE activity IN (10,11)' );
@@ -4834,14 +4816,14 @@ function cerber_send_email( $type = '', $msg = '', $ip = '', $ignore = false ) {
4834
  $last_date = cerber_date( $max, false );
4835
  $last = cerber_db_get_row( 'SELECT * FROM ' . CERBER_LOG_TABLE . ' WHERE stamp = ' . $max . ' AND activity IN (10,11)', MYSQL_FETCH_OBJECT );
4836
  }
4837
- else {
4838
- $last_date = '';
4839
 
4840
- // workaround for the empty log table
4841
- $last = new stdClass();
4842
- $last->ip = CERBER_NO_REMOTE_IP;
4843
- $last->user_login = 'test';
4844
- }
4845
 
4846
  $active = cerber_blocked_num();
4847
 
@@ -4861,37 +4843,40 @@ function cerber_send_email( $type = '', $msg = '', $ip = '', $ignore = false ) {
4861
  $body .= __( 'Reason', 'wp-cerber' ) . ': ' . strip_tags( $reason ) . "\n\n";
4862
  }
4863
 
4864
- $body .= __( 'View activity for this IP', 'wp-cerber' ) . ': ' . cerber_admin_link( 'activity', array(), false, false ) . '&filter_ip=' . $last->ip . "\n\n";
4865
- $body .= __( 'View lockouts in the Dashboard', 'wp-cerber' ) . ': ' . cerber_admin_link( 'lockouts', array(), false, false ) . "\n\n";
4866
  break;
4867
  case 'new_version':
4868
  $subj = __( 'A new version of WP Cerber is available to install', 'wp-cerber' );
4869
  $body = __( 'Hi!', 'wp-cerber' ) . "\n\n";
4870
  $body .= __( 'A new version of WP Cerber is available to install', 'wp-cerber' ) . "\n\n";
4871
  $body .= $msg . "\n\n";
4872
- $body .= __( 'Website', 'wp-cerber' ) . ': ' . crb_get_bloginfo( 'name' );
 
4873
  break;
4874
  case 'shutdown':
4875
- $subj = '[' . crb_get_blogname_decoded() . '] ' . __( 'The WP Cerber security plugin has been deactivated', 'wp-cerber' );
4876
- $body .= "\n" . __( 'The WP Cerber security plugin has been deactivated', 'wp-cerber' ) . "\n\n";
 
4877
  if ( ! is_user_logged_in() ) {
4878
- $u = __( 'Not logged in', 'wp-cerber' );
4879
- } else {
 
4880
  $user = wp_get_current_user();
4881
- $u = $user->display_name;
4882
  }
4883
- $body .= __( 'Website', 'wp-cerber' ) . ': ' . crb_get_bloginfo( 'name' ) . "\n";
4884
- $body .= __( 'By user', 'wp-cerber' ) . ': ' . $u . "\n";
4885
- $body .= __( 'From IP address', 'wp-cerber' ) . ': ' . cerber_get_remote_ip() . "\n";
 
4886
  $whois = cerber_ip_whois_info( cerber_get_remote_ip() );
4887
  if ( ! empty( $whois['data']['country'] ) ) {
4888
- $body .= __( 'From country', 'wp-cerber' ) . ': ' . cerber_country_name( $whois['data']['country'] );
4889
  }
4890
  break;
4891
  case 'activated':
4892
- $subj = '[' . crb_get_blogname_decoded() . '] ' . __( 'The WP Cerber security plugin is now active', 'wp-cerber' );
4893
  $body = "\n" . __( 'WP Cerber is now active and has started protecting your site', 'wp-cerber' ) . "\n\n";
4894
- //$body .= __( 'Change notification settings', 'wp-cerber' ) . ': ' . cerber_admin_link('notifications') . "\n\n";
4895
  $body .= __( 'Getting Started Guide', 'wp-cerber' ) . "\n\n";
4896
  $body .= 'https://wpcerber.com/getting-started/' . "\n\n";
4897
  $body .= 'Is your website under Cloudflare? You have to enable a crucial WP Cerber setting.' . "\n\n";
@@ -4905,13 +4890,14 @@ function cerber_send_email( $type = '', $msg = '', $ip = '', $ignore = false ) {
4905
  $body .= $msg;
4906
  break;
4907
  case 'send_alert':
4908
- $subj .= __( 'A new activity has occurred', 'wp-cerber' );
4909
- $body = __( 'A new activity has occurred', 'wp-cerber' ) . "\n\n";
4910
  $body .= $msg;
 
4911
  break;
4912
  case 'report':
4913
  $html_mode = true;
4914
- $subj = '[' . crb_get_blogname_decoded() . '] WP Cerber Security: ' . __( 'Weekly report', 'wp-cerber' );
4915
  $body = cerber_generate_email_report();
4916
  $link = cerber_admin_link( 'notifications', array(), false, false );
4917
  $body .= '<br/>' . __( 'To change reporting settings visit', 'wp-cerber' ) . ' <a href="' . $link . '">' . $link . '</a>';
@@ -4919,20 +4905,26 @@ function cerber_send_email( $type = '', $msg = '', $ip = '', $ignore = false ) {
4919
  break;
4920
  case 'scan':
4921
  $html_mode = true;
4922
- $subj = '[' . crb_get_blogname_decoded() . '] WP Cerber Security: ' . __( 'Scanner Report', 'wp-cerber' );
4923
  $body = $msg;
4924
  $link = cerber_admin_link( 'scan_schedule', array(), false, false );
4925
  $body .= '<br/>' . __( 'To change reporting settings visit', 'wp-cerber' ) . ' <a href="' . $link . '">' . $link . '</a>';
4926
  break;
4927
  }
4928
 
4929
- $to_list = cerber_get_email( $type, true );
4930
- $to = implode( ', ', $to_list );
 
 
 
 
 
4931
 
4932
- $body_filtered = apply_filters( 'cerber_notify_body', $body, array( 'type' => $type,
4933
- 'IP' => $ip,
4934
- 'to' => $to,
4935
- 'subject' => $subj
 
4936
  ) );
4937
 
4938
  if ( $body_filtered && is_string( $body_filtered ) ) {
@@ -4959,24 +4951,185 @@ function cerber_send_email( $type = '', $msg = '', $ip = '', $ignore = false ) {
4959
  $footer .= "\n\n\n" . __( 'This message was sent by', 'wp-cerber' ) . ' WP Cerber Security ' . ( lab_lab() ? 'PRO ' : '' ) . CERBER_VER . "\n";
4960
  $footer .= 'https://wpcerber.com';
4961
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4962
  if ( $html_mode ) {
4963
  add_filter( 'wp_mail_content_type', 'cerber_enable_html' );
4964
  $footer = str_replace( "\n", '<br/>', $footer );
4965
  }
4966
 
4967
- // Everything is prepared, let's send it out
 
4968
 
4969
- $result = null;
4970
- if ( $to && $subj && $body ) {
4971
- if ( ! $html_mode ) {
4972
- cerber_pb_send( $subj, $body.$footer );
 
4973
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4974
 
4975
  if ( $type == 'report') {
4976
- $result = true;
4977
- foreach ( $to_list as $email ) {
4978
- $lastus = '';
4979
- if ( $rec = cerber_get_last_login( null, $email ) ) {
 
 
 
 
4980
  $lastus = sprintf( __( 'Your last sign-in was %s from %s', 'wp-cerber' ), cerber_date( $rec->stamp, false ), $rec->ip . ' (' . cerber_country_name( $rec->country ) . ')' );
4981
  if ( $html_mode ) {
4982
  $lastus = '<br/><br/>' . $lastus;
@@ -4986,18 +5139,53 @@ function cerber_send_email( $type = '', $msg = '', $ip = '', $ignore = false ) {
4986
  }
4987
  }
4988
 
4989
- if ( ! wp_mail( $email, $subj, '<html>' . $body . $lastus . $footer . '</html>' ) ) {
4990
- $result = false;
4991
- }
4992
- }
 
 
4993
  }
4994
  else {
4995
  if ( function_exists( 'wp_mail' ) ) {
 
 
 
4996
  $body = $body . $footer;
 
4997
  if ( $html_mode ) {
4998
- $body = '<html>' . $body . '</html>';
4999
  }
5000
- $result = wp_mail( $to, $subj, $body );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5001
  }
5002
  }
5003
  }
@@ -5005,7 +5193,8 @@ function cerber_send_email( $type = '', $msg = '', $ip = '', $ignore = false ) {
5005
  remove_filter('wp_mail_content_type', 'cerber_enable_html');
5006
 
5007
  $params = array( 'type' => $type, 'IP' => $ip, 'to' => $to, 'subject' => $subj );
5008
- if ( $result ) {
 
5009
  do_action( 'cerber_notify_sent', $body, $params );
5010
  }
5011
  else {
@@ -5019,6 +5208,62 @@ function cerber_enable_html() {
5019
  return 'text/html';
5020
  }
5021
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5022
  /**
5023
  * Generates a performance report
5024
  *
@@ -5209,7 +5454,7 @@ function cerber_do_hourly_2() {
5209
  && date( 'G', time() + $gmt_offset ) == crb_get_settings( 'wreports-time' )
5210
  //&& ! get_site_transient( 'cerber_wreport' )
5211
  ) {
5212
- $result = cerber_send_email( 'report' );
5213
  //set_site_transient( 'cerber_wreport', 'sent', 7200 );
5214
  update_site_option( '_cerber_report', array( time(), $result ) );
5215
  }
@@ -5287,7 +5532,7 @@ function cerber_daily_run() {
5287
  }
5288
  if ( ! in_array( $new['ver'], $history ) ) {
5289
  if ( crb_get_settings( 'notify-new-ver' ) ) {
5290
- cerber_send_email( 'new_version', 'Read more: https://wpcerber.com/?plugin_version=' . $new['ver'] );
5291
  }
5292
  cerber_admin_message( $new['msg'] );
5293
  $history[] = $new['ver'];
@@ -5619,7 +5864,8 @@ function cerber_log( $activity, $login = '', $user_id = 0, $status = 0, $ip = nu
5619
  }
5620
 
5621
  if ( ! empty( $alert[1] )
5622
- && $alert[1] != $user_id ) {
 
5623
  continue;
5624
  }
5625
 
@@ -5695,28 +5941,39 @@ function cerber_log( $activity, $login = '', $user_id = 0, $status = 0, $ip = nu
5695
 
5696
  // Alert parameters match, prepare and send an alert email
5697
 
5698
- $msg = __( 'Activity', 'wp-cerber' ) . ': ' . crb_get_label( $activity, $user_id, $ac_by_user, false ) . "\n\n";
5699
 
5700
- if ( $country ) {
5701
- $coname = ' (' . cerber_country_name( $country ) . ')';
5702
- }
5703
- else {
5704
- $coname = '';
 
 
5705
  }
5706
 
5707
- $msg .= __( 'IP', 'wp-cerber' ) . ': ' . $ip . $coname . "\n\n";
 
 
 
 
 
 
5708
 
5709
  if ( $user_id && function_exists( 'get_userdata' ) ) {
5710
  $u = get_userdata( $user_id );
5711
  $msg .= __( 'User', 'wp-cerber' ) . ': ' . $u->display_name . "\n\n";
 
5712
  }
5713
 
5714
  if ( $login ) {
5715
  $msg .= __( 'Username used', 'wp-cerber' ) . ': ' . $login . "\n\n";
 
5716
  }
5717
 
5718
  if ( ! empty( $alert['6'] ) ) {
5719
  $msg .= __( 'Search string', 'wp-cerber' ) . ': ' . $alert['6'] . "\n\n";
 
5720
  }
5721
 
5722
  // Make a link to the Activity log page
@@ -5739,12 +5996,25 @@ function cerber_log( $activity, $login = '', $user_id = 0, $status = 0, $ip = nu
5739
  $i ++;
5740
  }
5741
 
5742
- $msg .= __( 'View activity in the Dashboard', 'wp-cerber' ) . ': ' . $base_url . $link_params;
5743
- $msg .= "\n\n" . __( 'To delete the alert, click here', 'wp-cerber' ) . ': ' . $base_url . '&unsubscribeme=' . $hash;
5744
 
5745
  $ignore = $alert[14] ?? false;
5746
 
5747
- $sent = cerber_send_email( 'send_alert', $msg, $ip, $ignore );
 
 
 
 
 
 
 
 
 
 
 
 
 
5748
 
5749
  if ( $sent && $updated ) {
5750
  $update_alerts = true;
@@ -6002,7 +6272,7 @@ register_activation_hook( cerber_plugin_file(), function () {
6002
  return;
6003
  }
6004
 
6005
- cerber_send_email( 'activated' );
6006
 
6007
  $p = get_file_data( cerber_plugin_file(), array( 'Version' => 'Version' ), 'plugin' );
6008
  $p['time'] = time();
@@ -6606,11 +6876,11 @@ add_action( 'deac' . 'tivate_' . CERBER_PLUGIN_ID, function ( $ip ) {
6606
  cerber_delete_set( 'plugins_done' );
6607
  cerber_delete_set( '_background_tasks' );
6608
 
6609
- $pi = get_file_data( cerber_plugin_file(), array( 'Version' => 'Version' ), 'plugin' );
6610
  $pi ['v'] = time();
6611
  $pi ['u'] = get_current_user_id();
6612
  cerber_update_set( '_cerber_o' . 'ff', $pi );
6613
- $f = 'cerb' . 'er_se' . 'nd_em' . 'ail';
6614
  $f( 'sh' . 'utd' . 'own' );
6615
 
6616
  CRB_Cache::reset();
150
  private $session_id;
151
  private $status = null;
152
  private $options;
 
153
 
154
  private $recaptcha = null; // Can recaptcha be verified with current request
155
  private $recaptcha_verified = null; // Is recaptcha successfully verified with current request
780
  return apply_filters( 'cerber_msg_recaptcha', $msg, $context );
781
  }
782
 
 
 
 
 
 
 
 
 
 
 
 
 
 
783
  final public function deleteGarbage() {
784
  if ( $this->garbage ) {
785
  return;
923
  * @since 8.8
924
  */
925
  function cerber_load_wp_constants() {
926
+
927
  require_once( ABSPATH . WPINC . '/default-constants.php' );
928
 
929
  if ( is_multisite() ) {
1512
  if ( $meta_key === 'session_tokens' ) {
1513
  crb_sessions_update_user_data( $user_id, $_meta_value );
1514
  if ( CRB_Globals::$session_status !== null ) {
1515
+ cerber_log( CRB_EV_UST, '', $user_id, CRB_Globals::$session_status );
1516
  CRB_Globals::$session_status = null;
1517
  }
1518
  }
1525
  $query = 'DELETE FROM ' . cerber_get_db_prefix() . CERBER_USS_TABLE;
1526
  if ( $user_id ) {
1527
  $query .= ' WHERE user_id = ' . $user_id;
1528
+ cerber_log( CRB_EV_UST, '', $user_id, 530 ); // Terminated by admin
1529
+ CRB_Globals::set_act_status( 530 );
1530
  }
1531
  cerber_db_query( $query );
1532
  }
1865
  }
1866
 
1867
  function crb_redirect_by_policy( $user, $policy ) {
1868
+
1869
  if ( $user
1870
  && ! is_wp_error( $user )
1871
  && ( $to = cerber_get_user_policy( $policy, $user ) ) ) {
2421
  cerber_wp_login_page();
2422
  }
2423
 
2424
+ if ( crb_get_settings( 'nologinlang' ) ) {
2425
+ add_filter( 'login_display_language_dropdown', '__return_false' );
2426
+ }
2427
+
2428
  }, 0 );
2429
 
2430
  if ( ( defined( 'CERBER_OLD_LP' ) && CERBER_OLD_LP )
3531
  * @param string $details Reason of blocking
3532
  * @param int $duration Duration of blocking
3533
  *
3534
+ * @return bool
3535
  */
3536
  function cerber_block_add( $ip_address = '', $reason_id = 1, $details = '', $duration = null ) {
3537
 
3596
  if ( $result ) {
3597
  $result = true;
3598
  CRB_Globals::$blocked = $reason_id;
3599
+
3600
+ if ( ! $update ) {
3601
+ cerber_log( $activity, null, null, 0, $ip_address );
3602
+ }
3603
+
3604
  crb_event_handler( 'ip_event', array(
3605
  'e_type' => 'locked',
3606
  'ip' => $ip_address,
3609
  'update' => $update
3610
  ) );
3611
 
3612
+ if ( ! $update ) {
3613
+ do_action( 'cerber_ip_locked', array( 'IP' => $ip_address, 'reason' => $reason ) );
3614
+ }
3615
  }
3616
  else {
3617
  $result = false;
3618
  cerber_db_error_log();
3619
  }
3620
 
3621
+ crb_send_lockout( $ip_address );
 
 
 
 
 
3622
 
3623
  return $result;
3624
  }
3853
  return false;
3854
  }
3855
 
 
 
3856
  if ( $list = (array) crb_get_settings( 'prohibited' ) ) {
3857
+
3858
+ $username_lower = strtolower( $username ); // since 'prohibited' gets lower case when settings are saved
3859
+
3860
  foreach ( $list as $item ) {
3861
  if ( mb_substr( $item, 0, 1 ) == '/' && mb_substr( $item, - 1 ) == '/' ) {
3862
  $pattern = trim( $item, '/' );
3994
  if ( $tag !== 'W' && $tag !== 'B' ) {
3995
  $ret = false;
3996
  }
3997
+ elseif ( $row = cerber_db_get_row( 'SELECT * FROM ' . CERBER_ACL_TABLE . ' WHERE acl_slice = ' . $acl_slice . ' AND ver6 = 0 AND ip_long_begin <= ' . $long . ' AND ' . $long . ' <= ip_long_end AND tag = "' . $tag . '" LIMIT 1', MYSQL_FETCH_OBJECT ) ) {
3998
  $ret = true;
3999
  }
4000
  else {
4157
  }
4158
 
4159
  /**
4160
+ * Returns true if the number $a1.$a2 is bigger than or equal the number $b1.$b2
4161
  *
4162
  * @param $a1 integer
4163
  * @param $a2 integer
4170
  if ( $a1 > $b1 ) {
4171
  return true;
4172
  }
4173
+
4174
  if ( $a1 < $b1 ) {
4175
  return false;
4176
  }
 
 
 
 
4177
 
4178
+ if ( $a2 >= $b2 ) {
4179
+ return true;
4180
  }
4181
+
4182
+ return false;
4183
  }
4184
 
4185
  /**
4712
 
4713
  // Notify admin
4714
  if ( crb_get_settings( 'cinotify' ) ) {
4715
+ cerber_send_notification( 'citadel' );
4716
  }
4717
  }
4718
 
4728
  return false;
4729
  }
4730
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4731
  /**
4732
  *
4733
  * Send notification letter
4734
  *
4735
  * @param string $type Notification type
4736
+ * @param array $msg_parts Additional message
4737
  * @param string $ip Remote IP address, if applicable
4738
+ * @param array $channels
4739
+ * @param bool $ignore Ignore global limits
4740
  *
4741
+ * @return array|false The list of recipients on success
4742
+ *
4743
+ * @since 8.9.6.1
4744
  */
4745
+ function cerber_send_notification( $type, $msg_parts = array(), $ip = '', $channels = array(), $ignore = false ) {
4746
  if ( ! $type ) {
4747
  return false;
4748
  }
4749
 
4750
+ $sb = $msg_parts['subj'] ?? '';
4751
+ $msg = $msg_parts['text'] ?? '';
4752
+ $msg_masked = $msg_parts['text_masked'] ?? '';
4753
+ $more = $msg_parts['more'] ?? '';
4754
+
4755
+ $channels = array_merge( CRB_CHANNELS, $channels );
4756
+
4757
+ if ( ! array_filter( $channels ) ) {
4758
+ return false;
4759
+ }
4760
+
4761
+ //cerber_diag_log( 'VARS ' . var_export( func_get_args(), 1 ) );
4762
+
4763
  if ( ! $ignore
4764
  && ! is_admin()
4765
  && in_array( $type, array( 'lockout', 'send_alert' ) ) ) {
4766
 
4767
+ $channels = crb_check_sending_limits( $channels );
 
 
 
 
 
 
 
4768
 
4769
+ if ( ! array_filter( $channels ) ) {
4770
+ return false;
4771
  }
4772
  }
4773
 
4774
  $html_mode = false;
4775
+ $blogname = crb_get_blogname_decoded();
4776
+ $subj = '[' . $blogname . '] WP Cerber: ' . $sb;
4777
  $body = '';
4778
+ $body_masked = '';
4779
 
4780
  if ( is_array( $msg ) ) {
4781
  $msg = implode( "\n\n", $msg );
4782
  }
4783
 
4784
+ if ( is_array( $msg_masked ) ) {
4785
+ $msg_masked = implode( "\n\n", $msg_masked );
4786
+ }
4787
+
4788
  $last = null;
4789
 
4790
  switch ( $type ) {
4797
  }
4798
 
4799
  if ( ! $last ) { // workaround for the empty log table
4800
+ $last = new stdClass();
4801
+ $last->ip = CERBER_NO_REMOTE_IP;
4802
  $last->user_login = 'test';
4803
  }
4804
 
4805
+ $subj .= __( 'Citadel mode is active', 'wp-cerber' );
4806
 
4807
+ $body = sprintf( __( 'Citadel mode has been activated after %d failed login attempts in %d minutes.', 'wp-cerber' ), crb_get_settings( 'cilimit' ), crb_get_settings( 'ciperiod' ) ) . "\n\n";
4808
+ $body .= sprintf( __( 'Last failed attempt was at %s from IP %s using username: %s.', 'wp-cerber' ), $last_date, $last->ip, $last->user_login ) . "\n\n";
4809
+
4810
+ $more = __( 'View activity in the Dashboard', 'wp-cerber' ) . ': ' . cerber_admin_link( 'activity', array(), false, false ) . "\n\n";
4811
  break;
4812
  case 'lockout':
4813
  $max = cerber_db_get_var( 'SELECT MAX(stamp) FROM ' . CERBER_LOG_TABLE . ' WHERE activity IN (10,11)' );
4816
  $last_date = cerber_date( $max, false );
4817
  $last = cerber_db_get_row( 'SELECT * FROM ' . CERBER_LOG_TABLE . ' WHERE stamp = ' . $max . ' AND activity IN (10,11)', MYSQL_FETCH_OBJECT );
4818
  }
4819
+ else {
4820
+ $last_date = '';
4821
 
4822
+ // workaround for the empty log table
4823
+ $last = new stdClass();
4824
+ $last->ip = CERBER_NO_REMOTE_IP;
4825
+ $last->user_login = 'test';
4826
+ }
4827
 
4828
  $active = cerber_blocked_num();
4829
 
4843
  $body .= __( 'Reason', 'wp-cerber' ) . ': ' . strip_tags( $reason ) . "\n\n";
4844
  }
4845
 
4846
+ $more = __( 'View activity for this IP', 'wp-cerber' ) . ': ' . cerber_admin_link( 'activity', array(), false, false ) . '&filter_ip=' . $last->ip . "\n\n";
4847
+ $more .= __( 'View lockouts in the Dashboard', 'wp-cerber' ) . ': ' . cerber_admin_link( 'lockouts', array(), false, false ) . "\n\n";
4848
  break;
4849
  case 'new_version':
4850
  $subj = __( 'A new version of WP Cerber is available to install', 'wp-cerber' );
4851
  $body = __( 'Hi!', 'wp-cerber' ) . "\n\n";
4852
  $body .= __( 'A new version of WP Cerber is available to install', 'wp-cerber' ) . "\n\n";
4853
  $body .= $msg . "\n\n";
4854
+
4855
+ $more = __( 'Website', 'wp-cerber' ) . ': ' . crb_get_bloginfo( 'name' );
4856
  break;
4857
  case 'shutdown':
4858
+ $d = __( 'The WP Cerber Security plugin has been deactivated', 'wp-cerber' );
4859
+ $subj = '[' . $blogname . '] ' . $d;
4860
+ $body .= "\n" . $d . "\n\n";
4861
  if ( ! is_user_logged_in() ) {
4862
+ $u = __( 'Unknown', 'wp-cerber' );
4863
+ }
4864
+ else {
4865
  $user = wp_get_current_user();
4866
+ $u = $user->display_name;
4867
  }
4868
+ $body .= __( 'Website', 'wp-cerber' ) . ': ' . $blogname . "\n";
4869
+
4870
+ $more = __( 'By the user', 'wp-cerber' ) . ': ' . $u . "\n";
4871
+ $more .= __( 'From the IP address', 'wp-cerber' ) . ': ' . cerber_get_remote_ip() . "\n";
4872
  $whois = cerber_ip_whois_info( cerber_get_remote_ip() );
4873
  if ( ! empty( $whois['data']['country'] ) ) {
4874
+ $more .= __( 'From the country', 'wp-cerber' ) . ': ' . cerber_country_name( $whois['data']['country'] );
4875
  }
4876
  break;
4877
  case 'activated':
4878
+ $subj = '[' . $blogname . '] ' . __( 'The WP Cerber Security plugin is now active', 'wp-cerber' );
4879
  $body = "\n" . __( 'WP Cerber is now active and has started protecting your site', 'wp-cerber' ) . "\n\n";
 
4880
  $body .= __( 'Getting Started Guide', 'wp-cerber' ) . "\n\n";
4881
  $body .= 'https://wpcerber.com/getting-started/' . "\n\n";
4882
  $body .= 'Is your website under Cloudflare? You have to enable a crucial WP Cerber setting.' . "\n\n";
4890
  $body .= $msg;
4891
  break;
4892
  case 'send_alert':
4893
+ $body = __( 'A new activity has occurred', 'wp-cerber' ) . "\n\n";
4894
+ $body_masked = $body;
4895
  $body .= $msg;
4896
+ $body_masked .= $msg_masked;
4897
  break;
4898
  case 'report':
4899
  $html_mode = true;
4900
+ $subj .= __( 'Weekly report', 'wp-cerber' );
4901
  $body = cerber_generate_email_report();
4902
  $link = cerber_admin_link( 'notifications', array(), false, false );
4903
  $body .= '<br/>' . __( 'To change reporting settings visit', 'wp-cerber' ) . ' <a href="' . $link . '">' . $link . '</a>';
4905
  break;
4906
  case 'scan':
4907
  $html_mode = true;
4908
+ $subj .= __( 'Scanner Report', 'wp-cerber' );
4909
  $body = $msg;
4910
  $link = cerber_admin_link( 'scan_schedule', array(), false, false );
4911
  $body .= '<br/>' . __( 'To change reporting settings visit', 'wp-cerber' ) . ' <a href="' . $link . '">' . $link . '</a>';
4912
  break;
4913
  }
4914
 
4915
+ $to_list = array();
4916
+ $to = '';
4917
+
4918
+ if ( $channels['email'] ) {
4919
+ $to_list = cerber_get_email( $type );
4920
+ $to = implode( ', ', $to_list );
4921
+ }
4922
 
4923
+ $body_filtered = apply_filters( 'cerber_notify_body', $body, array(
4924
+ 'type' => $type,
4925
+ 'IP' => $ip,
4926
+ 'to' => $to,
4927
+ 'subject' => $subj
4928
  ) );
4929
 
4930
  if ( $body_filtered && is_string( $body_filtered ) ) {
4951
  $footer .= "\n\n\n" . __( 'This message was sent by', 'wp-cerber' ) . ' WP Cerber Security ' . ( lab_lab() ? 'PRO ' : '' ) . CERBER_VER . "\n";
4952
  $footer .= 'https://wpcerber.com';
4953
 
4954
+ // Everything is prepared, let's send it out
4955
+
4956
+ $results = array();
4957
+ $recipients = array();
4958
+ $success = false;
4959
+
4960
+ $go = 'pushbullet';
4961
+ if ( $channels[ $go ] && ! $html_mode ) {
4962
+ $body_go = ( $type == 'send_alert' && crb_get_settings( 'pb_mask' ) ) ? $body_masked : $body;
4963
+ $res = cerber_pb_send( $subj, $body_go, $more, $footer );
4964
+ if ( $res && ! is_wp_error( $res ) ) {
4965
+ $results[ $go ] = true;
4966
+ $recipients[ $go ] = cerber_pb_get_active();
4967
+ $success = true;
4968
+ }
4969
+ }
4970
+
4971
+ $go = 'email';
4972
+ if ( $channels[ $go ] ) {
4973
+ $body_go = ( $type == 'send_alert' && crb_get_settings( 'email_mask' ) ) ? $body_masked : $body;
4974
+ if ( $results[ $go ] = crb_send_email( $type, $html_mode, $to_list, $subj, $body_go, $more, $footer, $ip ) ) {
4975
+ $recipients[ $go ] = $to;
4976
+ $success = true;
4977
+ }
4978
+ }
4979
+
4980
+ if ( ! $success ) {
4981
+
4982
+ return false;
4983
+ }
4984
+
4985
+ $sent = cerber_get_set( '_cerber_last_send' );
4986
+
4987
+ if ( ! is_array( $sent ) ) {
4988
+ $sent = array();
4989
+ }
4990
+
4991
+ foreach ( $results as $channel_id => $result ) {
4992
+ $sent[ $channel_id ] = ( $result ) ? time() : 0;
4993
+ }
4994
+
4995
+ cerber_update_set( '_cerber_last_send', $sent );
4996
+
4997
+ return $recipients;
4998
+ }
4999
+
5000
+ /**
5001
+ * @param string $ip_address
5002
+ *
5003
+ * @return array|bool
5004
+ *
5005
+ * @since 8.9.6.1
5006
+ */
5007
+ function crb_send_lockout( $ip_address = '' ) {
5008
+ $em = crb_get_settings( 'notify' );
5009
+ $pb = crb_get_settings( 'pbnotify-enabled' );
5010
+
5011
+ if ( ! $em && ! $pb ) {
5012
+ return false;
5013
+ }
5014
+
5015
+ $count = cerber_blocked_num();
5016
+ $send_email = ( $em && ( $count > crb_get_settings( 'above' ) ) );
5017
+
5018
+ $channels = array(
5019
+ 'email' => $send_email,
5020
+ );
5021
+
5022
+ if ( lab_lab() ) {
5023
+ $channels['pushbullet'] = ( $pb && ( $count > crb_get_settings( 'pbnotify' ) ) );
5024
+ }
5025
+ else {
5026
+ $channels['pushbullet'] = $send_email;
5027
+ }
5028
+
5029
+ if ( array_filter( $channels ) ) {
5030
+ return cerber_send_notification( 'lockout', null, $ip_address, $channels );
5031
+ }
5032
+
5033
+ return false;
5034
+ }
5035
+
5036
+ /**
5037
+ * Check sending limits and disable channels if it's needed
5038
+ *
5039
+ * @param array $channels
5040
+ *
5041
+ * @return array
5042
+ *
5043
+ * @since 8.9.6.1
5044
+ *
5045
+ */
5046
+ function crb_check_sending_limits( $channels ) {
5047
+ static $ref = array( 'email' => 'emailrate', 'pushbullet' => 'pbrate' );
5048
+
5049
+ if ( ! lab_lab() ) {
5050
+ $ref ['pushbullet'] = 'emailrate';
5051
+ }
5052
+
5053
+ $limits = array_filter( array_intersect_key( crb_get_settings(), array_flip( $ref ) ) );
5054
+
5055
+ if ( ! $limits ) {
5056
+ return $channels;
5057
+ }
5058
+
5059
+ $sent = cerber_get_set( '_cerber_last_send' );
5060
+
5061
+ if ( empty( $sent ) ) {
5062
+ return $channels;
5063
+ }
5064
+
5065
+ foreach ( $ref as $channel_id => $key ) {
5066
+ $rate = absint( $limits[ $key ] ?? 0 );
5067
+ if ( $rate && ( $sent[ $channel_id ] ?? 0 ) > ( time() - 3600 / $rate ) ) {
5068
+ $channels[ $channel_id ] = 0; // Do not send
5069
+ }
5070
+ }
5071
+
5072
+ return $channels;
5073
+ }
5074
+
5075
+ /**
5076
+ * @param string $type
5077
+ * @param bool $html_mode
5078
+ * @param array $to_list
5079
+ * @param string $subj
5080
+ * @param string $body
5081
+ * @param string $more
5082
+ * @param string $footer
5083
+ * @param string $ip
5084
+ *
5085
+ * @return bool
5086
+ *
5087
+ * @since 8.9.6.1
5088
+ */
5089
+ function crb_send_email( $type, $html_mode, $to_list, $subj, $body, $more, $footer, $ip ) {
5090
+
5091
  if ( $html_mode ) {
5092
  add_filter( 'wp_mail_content_type', 'cerber_enable_html' );
5093
  $footer = str_replace( "\n", '<br/>', $footer );
5094
  }
5095
 
5096
+ if ( $use_smpt = crb_get_settings( 'use_smtp' ) ) {
5097
+ add_action( 'phpmailer_init', 'cerber_set_smtp_credentials' );
5098
 
5099
+ // Help admin to detect issues with sending
5100
+ if ( is_admin() && crb_get_query_params( 'cerber_admin_do' ) ) {
5101
+ add_action( 'wp_mail_failed', function ( $error ) {
5102
+ cerber_admin_notice( $error->get_error_message() );
5103
+ } );
5104
  }
5105
+ }
5106
+
5107
+ $format = crb_get_settings( 'email_format' );
5108
+
5109
+ if ( $format < 2 ) {
5110
+ $body .= $more;
5111
+ }
5112
+
5113
+ if ( $format ) {
5114
+ $footer = '';
5115
+ }
5116
+
5117
+ $result = false;
5118
+ $to = implode( ', ', $to_list );
5119
+
5120
+ if ( $to_list && $subj && $body ) {
5121
+
5122
+ $lang = crb_get_bloginfo( 'language' );
5123
 
5124
  if ( $type == 'report') {
5125
+
5126
+ $result = true;
5127
+
5128
+ foreach ( $to_list as $email ) {
5129
+
5130
+ $lastus = '';
5131
+
5132
+ if ( $rec = cerber_get_last_login( null, $email ) ) {
5133
  $lastus = sprintf( __( 'Your last sign-in was %s from %s', 'wp-cerber' ), cerber_date( $rec->stamp, false ), $rec->ip . ' (' . cerber_country_name( $rec->country ) . ')' );
5134
  if ( $html_mode ) {
5135
  $lastus = '<br/><br/>' . $lastus;
5139
  }
5140
  }
5141
 
5142
+ $body = '<html lang="' . $lang . '">' . $body . $lastus . $footer . '</html>';
5143
+
5144
+ if ( ! wp_mail( $email, $subj, $body ) ) {
5145
+ $result = false;
5146
+ }
5147
+ }
5148
  }
5149
  else {
5150
  if ( function_exists( 'wp_mail' ) ) {
5151
+
5152
+ $result = true;
5153
+
5154
  $body = $body . $footer;
5155
+
5156
  if ( $html_mode ) {
5157
+ $body = '<html lang="' . $lang . '">' . $body . '</html>';
5158
  }
5159
+
5160
+ foreach ( $to_list as $email ) {
5161
+ if ( ! wp_mail( $email, $subj, $body ) ) {
5162
+ $result = false;
5163
+ }
5164
+ }
5165
+ }
5166
+ }
5167
+ }
5168
+
5169
+ if ( $use_smpt ) {
5170
+ remove_action( 'phpmailer_init', 'cerber_set_smtp_credentials' );
5171
+
5172
+ // Warn the website admin if the wp_mail() function is redefined somewhere or/and our SMTP settings were not used
5173
+
5174
+ if ( is_admin() && crb_get_query_params( 'cerber_admin_do' ) ) {
5175
+ $mailer = crb_save_mailer();
5176
+ if ( ! is_object( $mailer )
5177
+ || $mailer->Host != crb_get_settings( 'smtp_host' )
5178
+ || $mailer->Port != crb_get_settings( 'smtp_port' )
5179
+ || $mailer->Username != crb_get_settings( 'smtp_user' ) ) {
5180
+ cerber_admin_notice( "Warning: The SMTP settings were not used while sending email. They can be altered by another plugin." );
5181
+ $alien = true;
5182
+ }
5183
+ else {
5184
+ $alien = false;
5185
+ }
5186
+
5187
+ if ( $alien && $mailer->Host ) {
5188
+ cerber_admin_notice( 'Warning: The email was sent using the host ' . $mailer->Host . ' and the user ' . $mailer->Username );
5189
  }
5190
  }
5191
  }
5193
  remove_filter('wp_mail_content_type', 'cerber_enable_html');
5194
 
5195
  $params = array( 'type' => $type, 'IP' => $ip, 'to' => $to, 'subject' => $subj );
5196
+
5197
+ if ( $result ) {
5198
  do_action( 'cerber_notify_sent', $body, $params );
5199
  }
5200
  else {
5208
  return 'text/html';
5209
  }
5210
 
5211
+ /**
5212
+ * @param PHPMailer $pm
5213
+ *
5214
+ * @return void
5215
+ *
5216
+ * @since 8.9.6.3
5217
+ */
5218
+ function cerber_set_smtp_credentials( $pm ) {
5219
+ if ( ! lab_lab() ) {
5220
+ return;
5221
+ }
5222
+
5223
+ $config = crb_get_settings();
5224
+
5225
+ $pm->isSMTP();
5226
+ $pm->SMTPAuth = true;
5227
+ $pm->Timeout = 5;
5228
+ $pm->Host = $config['smtp_host'];
5229
+ $pm->Port = $config['smtp_port'];
5230
+ $pm->Username = $config['smtp_user'];
5231
+ $pm->Password = $config['smtp_pwd'];
5232
+
5233
+ // For better deliverability we use "smtp_user"
5234
+ $pm->From = ( $config['smtp_from'] ) ?: $config['smtp_user'];
5235
+
5236
+ if ( $config['smtp_from_name'] ) {
5237
+ $pm->FromName = $config['smtp_from_name'];
5238
+ }
5239
+
5240
+ if ( $config['smtp_encr'] ) {
5241
+ $pm->SMTPSecure = $config['smtp_encr'];
5242
+ }
5243
+
5244
+ crb_save_mailer( array( &$pm ) );
5245
+
5246
+ }
5247
+
5248
+ /**
5249
+ * Saves and provides access to last used PHPMailer configuration
5250
+ *
5251
+ * @param PHPMailer $pm
5252
+ *
5253
+ * @return null|PHPMailer
5254
+ *
5255
+ * @since 8.9.6.4
5256
+ */
5257
+ function crb_save_mailer( $pm = null ) {
5258
+ static $mailer;
5259
+
5260
+ if ( isset( $pm[0] ) ) {
5261
+ $mailer = $pm[0];
5262
+ }
5263
+
5264
+ return $mailer;
5265
+ }
5266
+
5267
  /**
5268
  * Generates a performance report
5269
  *
5454
  && date( 'G', time() + $gmt_offset ) == crb_get_settings( 'wreports-time' )
5455
  //&& ! get_site_transient( 'cerber_wreport' )
5456
  ) {
5457
+ $result = cerber_send_notification( 'report' );
5458
  //set_site_transient( 'cerber_wreport', 'sent', 7200 );
5459
  update_site_option( '_cerber_report', array( time(), $result ) );
5460
  }
5532
  }
5533
  if ( ! in_array( $new['ver'], $history ) ) {
5534
  if ( crb_get_settings( 'notify-new-ver' ) ) {
5535
+ cerber_send_notification( 'new_version', array( 'text' => 'Read more: https://wpcerber.com/?plugin_version=' . $new['ver'] ) );
5536
  }
5537
  cerber_admin_message( $new['msg'] );
5538
  $history[] = $new['ver'];
5864
  }
5865
 
5866
  if ( ! empty( $alert[1] )
5867
+ && $alert[1] != $user_id
5868
+ && $alert[1] != $ac_by_user ) {
5869
  continue;
5870
  }
5871
 
5941
 
5942
  // Alert parameters match, prepare and send an alert email
5943
 
5944
+ $ac_lbl = crb_get_label( $activity, $user_id, $ac_by_user, false );
5945
 
5946
+ $status_lbl = '';
5947
+
5948
+ if ( $status ) {
5949
+ $status_list = cerber_get_labels( 'status' ) + cerber_get_reason();
5950
+ if ( $status_lbl = $status_list[ $status ] ?? '' ) {
5951
+ $status_lbl = ' (' . $status_lbl . ')';
5952
+ }
5953
  }
5954
 
5955
+ $msg = __( 'Activity', 'wp-cerber' ) . ': ' . $ac_lbl . $status_lbl . "\n\n";
5956
+ $msg_masked = $msg;
5957
+
5958
+ $coname = $country ? ' (' . cerber_country_name( $country ) . ')' : '';
5959
+
5960
+ $msg = __( 'IP address', 'wp-cerber' ) . ': ' . $ip . $coname . "\n\n";
5961
+ $msg_masked .= __( 'IP address', 'wp-cerber' ) . ': ' . crb_mask_ip( $ip ) . $coname . "\n\n";
5962
 
5963
  if ( $user_id && function_exists( 'get_userdata' ) ) {
5964
  $u = get_userdata( $user_id );
5965
  $msg .= __( 'User', 'wp-cerber' ) . ': ' . $u->display_name . "\n\n";
5966
+ $msg_masked .= __( 'User', 'wp-cerber' ) . ': ' . $u->display_name . "\n\n";
5967
  }
5968
 
5969
  if ( $login ) {
5970
  $msg .= __( 'Username used', 'wp-cerber' ) . ': ' . $login . "\n\n";
5971
+ $msg_masked .= __( 'Username used', 'wp-cerber' ) . ': ' . crb_mask_login( $login ) . "\n\n";
5972
  }
5973
 
5974
  if ( ! empty( $alert['6'] ) ) {
5975
  $msg .= __( 'Search string', 'wp-cerber' ) . ': ' . $alert['6'] . "\n\n";
5976
+ $msg_masked .= __( 'Search string', 'wp-cerber' ) . ': ' . $alert['6'] . "\n\n";
5977
  }
5978
 
5979
  // Make a link to the Activity log page
5996
  $i ++;
5997
  }
5998
 
5999
+ $more = __( 'View activity in the Dashboard', 'wp-cerber' ) . ': ' . $base_url . $link_params;
6000
+ $more .= "\n\n" . __( 'To delete the alert, click here', 'wp-cerber' ) . ': ' . $base_url . '&unsubscribeme=' . $hash;
6001
 
6002
  $ignore = $alert[14] ?? false;
6003
 
6004
+ $channels = array( 'email' => ! empty( $alert[15] ), 'pushbullet' => ! empty( $alert[16] ) );
6005
+
6006
+ // Crucial for old alerts (no channels at all)
6007
+
6008
+ if ( ! array_filter( $channels ) ) {
6009
+ $channels = array(); // All channels are in use
6010
+ }
6011
+
6012
+ $sent = cerber_send_notification( 'send_alert', array(
6013
+ 'subj' => $ac_lbl,
6014
+ 'text' => $msg,
6015
+ 'text_masked' => $msg_masked,
6016
+ 'more' => $more
6017
+ ), $ip, $channels, $ignore );
6018
 
6019
  if ( $sent && $updated ) {
6020
  $update_alerts = true;
6272
  return;
6273
  }
6274
 
6275
+ cerber_send_notification( 'activated' );
6276
 
6277
  $p = get_file_data( cerber_plugin_file(), array( 'Version' => 'Version' ), 'plugin' );
6278
  $p['time'] = time();
6876
  cerber_delete_set( 'plugins_done' );
6877
  cerber_delete_set( '_background_tasks' );
6878
 
6879
+ $pi = get_file_data( cerber_plugin_file(), array( 'Version' => 'Version' ), 'plugin' );
6880
  $pi ['v'] = time();
6881
  $pi ['u'] = get_current_user_id();
6882
  cerber_update_set( '_cerber_o' . 'ff', $pi );
6883
+ $f = 'cerb' . 'er_se' . 'nd_notif' . 'ication';
6884
  $f( 'sh' . 'utd' . 'own' );
6885
 
6886
  CRB_Cache::reset();
cerber-pluggable.php CHANGED
@@ -71,7 +71,7 @@ if ( ! function_exists( 'wp_logout' ) ) :
71
  function wp_logout() {
72
  $user_id = get_current_user_id();
73
 
74
- CRB_Globals::$do_not_log[22] = true;
75
 
76
  wp_destroy_current_session();
77
  wp_clear_auth_cookie();
71
  function wp_logout() {
72
  $user_id = get_current_user_id();
73
 
74
+ CRB_Globals::$do_not_log[ CRB_EV_UST ] = true;
75
 
76
  wp_destroy_current_session();
77
  wp_clear_auth_cookie();
cerber-scanner.php CHANGED
@@ -621,7 +621,7 @@ function cerber_scan_completed() {
621
  return;
622
  }
623
 
624
- if ( ! cerber_send_email( 'scan', $report ) ) {
625
  // Send alert via cloud?
626
  }
627
  else {
621
  return;
622
  }
623
 
624
+ if ( ! cerber_send_notification( 'scan', array( 'text' => $report ) ) ) {
625
  // Send alert via cloud?
626
  }
627
  else {
cerber-settings.php CHANGED
@@ -56,13 +56,32 @@ const CERBER_OPT_MA = 'cerber-nexus_master';
56
  // Processed by Cerber
57
  const CERBER_SETTINGS = 'cerber_settings';
58
  const CERBER_GEO_RULES = 'geo_rule_set';
59
- // A new, united settings entry
60
- // @since 8.5.9.1
61
  const CERBER_CONFIG = 'cerber_configuration';
62
 
63
  // Processed (parsed) WP Cerber settings
64
  const CERBER_COMPILED = 'cerber_compiled';
65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  /**
67
  * A set of Cerber settings (WP options)
68
  *
@@ -111,7 +130,7 @@ function cerber_settings_config( $args = array() ) {
111
 
112
  // Pushbullet devices
113
  $pb_set = array();
114
- if ( cerber_is_admin_page( false, array( 'tab' => 'notifications' ) ) ) {
115
  $pb_set = cerber_pb_get_devices();
116
  if ( is_array( $pb_set ) ) {
117
  if ( ! empty( $pb_set ) ) {
@@ -212,6 +231,14 @@ function cerber_settings_config( $args = array() ) {
212
  'type' => 'textarea',
213
  'enabler' => array( 'nopasshint' ),
214
  ),*/
 
 
 
 
 
 
 
 
215
  ),
216
  ),
217
  'custom' => array(
@@ -296,24 +323,20 @@ function cerber_settings_config( $args = array() ) {
296
  'default' => 0,
297
  ),
298
  'citadel' => array(
299
- 'title' => __( 'Threshold', 'wp-cerber' ),
300
  'type' => 'citadel',
301
  'enabler' => array( 'citadel_on' ),
302
  ),
303
  'ciduration' => array(
304
- 'title' => __( 'Duration', 'wp-cerber' ),
305
  'label' => __( 'minutes', 'wp-cerber' ),
306
  'type' => 'digits',
307
  'enabler' => array( 'citadel_on' ),
308
  ),
309
- 'cinotify' => array(
310
  'title' => __( 'Notifications', 'wp-cerber' ),
311
  'type' => 'checkbox',
312
- 'label' => __( 'Send notification to admin email', 'wp-cerber' ) .
313
- '<span class="crb-insetting-link">[ <a href="' . cerber_admin_link_add( array(
314
- 'cerber_admin_do' => 'testnotify',
315
- 'type' => 'citadel',
316
- ) ) . '">' . __( 'Click to send test', 'wp-cerber' ) . '</a> ]</span>',
317
  'enabler' => array( 'citadel_on' ),
318
  ),
319
  ),
@@ -492,7 +515,6 @@ function cerber_settings_config( $args = array() ) {
492
  'label' => __( 'Restrict user account creation and user management with the following policies', 'wp-cerber' ),
493
  //'doclink' => 'https://wpcerber.com/only-logged-in-wordpress-users/',
494
  'type' => 'checkbox',
495
- //'pro' => 1
496
  ),
497
  'ds_regs_roles' => array(
498
  'label' => __( 'User registrations are limited to these roles', 'wp-cerber' ),
@@ -584,7 +606,6 @@ function cerber_settings_config( $args = array() ) {
584
  'title' => __( 'Registration limit', 'wp-cerber' ),
585
  'type' => 'reglimit',
586
  'default' => array( 3, 60 ),
587
- 'pro' => 1
588
  ),
589
  'emrule' => array(
590
  'title' => __( 'Restrict email addresses', 'wp-cerber' ),
@@ -610,14 +631,12 @@ function cerber_settings_config( $args = array() ) {
610
  'title' => __( 'Use White IP Access List', 'wp-cerber' ),
611
  'label' => __( 'Only users from IP addresses in the White IP Access List may register on the website', 'wp-cerber' ),
612
  'type' => 'checkbox',
613
- 'pro' => 1
614
  ),
615
  'regwhite_msg' => array(
616
  'title' => __( 'User message', 'wp-cerber' ),
617
- 'placeholder' => 'This optional message will be displayed to a user if their IP address is not whitelisted',
618
  'type' => 'textarea',
619
  'enabler' => array( 'regwhite' ),
620
- 'pro' => 1
621
  ),
622
  )
623
  ),
@@ -642,12 +661,10 @@ function cerber_settings_config( $args = array() ) {
642
  ),
643
  'authonlymsg' => array(
644
  'title' => __( 'User Message', 'wp-cerber' ),
645
- 'placeholder' => 'An optional login form message',
646
  'type' => 'textarea',
647
  'apply' => 'strip_tags',
648
- 'default' => __( 'Only registered and logged in users are allowed to view this website', 'wp-cerber' ),
649
  'enabler' => array( 'authonly' ),
650
- 'class' => ''
651
  ),
652
  'authonlyredir' => array(
653
  'title' => __( 'Redirect to URL', 'wp-cerber' ),
@@ -745,15 +762,11 @@ function cerber_settings_config( $args = array() ) {
745
  ),
746
  ),
747
 
748
- 'notify' => array(
749
  'name' => __( 'Email notifications', 'wp-cerber' ),
750
- 'desc' => 'Configure email notifications, reports, and alerts, your way',
751
  'doclink' => 'https://wpcerber.com/wordpress-notifications-made-easy/',
752
  'fields' => array(
753
- 'notify' => array(
754
- 'title' => __( 'Lockout notifications', 'wp-cerber' ),
755
- 'type' => 'notify',
756
- ),
757
  'email' => array(
758
  'title' => __( 'Email Address', 'wp-cerber' ),
759
  'placeholder' => __( 'Use comma to specify multiple values', 'wp-cerber' ),
@@ -767,13 +780,97 @@ function cerber_settings_config( $args = array() ) {
767
  'label' => __( 'notifications are allowed per hour (0 means unlimited)', 'wp-cerber' ),
768
  'type' => 'digits',
769
  ),
 
 
 
 
770
  'notify-new-ver' => array(
771
  'title' => __( 'New version is available', 'wp-cerber' ),
 
772
  'type' => 'checkbox'
773
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
774
  ),
775
  ),
776
- 'pushit' => array(
777
  'name' => __( 'Push notifications', 'wp-cerber' ),
778
  'desc' => __( 'Get notified instantly with mobile and desktop notifications', 'wp-cerber' ),
779
  'doclink' => 'https://wpcerber.com/wordpress-mobile-and-browser-notifications-pushbullet/',
@@ -782,9 +879,39 @@ function cerber_settings_config( $args = array() ) {
782
  'title' => __( 'Pushbullet access token', 'wp-cerber' ),
783
  ),
784
  'pbdevice' => array(
785
- 'title' => __( 'Pushbullet device', 'wp-cerber' ),
786
- 'type' => 'select',
787
- 'set' => $pb_set
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
788
  ),
789
  ),
790
  ),
@@ -1142,13 +1269,12 @@ function cerber_settings_config( $args = array() ) {
1142
  'name' => __( 'WordPress uploads analysis', 'wp-cerber' ),
1143
  'desc' => __( 'Keep the WordPress uploads directory clean and secure. Detect injected files with public web access, report them, and remove malicious ones.', 'wp-cerber' ),
1144
  //'doclink' => 'https://wpcerber.com/wordpress-security-scanner/',
1145
- 'pro' => 1,
1146
  'fields' => array(
1147
  'scan_media' => array(
1148
  'title' => __( 'Analyze the uploads directory', 'wp-cerber' ),
1149
  'label' => __( 'Analyze the WordPress uploads directory to detect injected files', 'wp-cerber' ),
1150
  'type' => 'checkbox',
1151
- 'pro' => 1
1152
  ),
1153
  'scan_skip_media' => array(
1154
  'title' => __( 'Skip files with these extensions', 'wp-cerber' ),
@@ -1161,7 +1287,6 @@ function cerber_settings_config( $args = array() ) {
1161
  'apply' => 'strtolower',
1162
  'maxlength' => 1000,
1163
  'enabler' => array( 'scan_media' ),
1164
- 'pro' => 1
1165
  ),
1166
  'scan_del_media' => array(
1167
  'title' => __( 'Prohibited extensions', 'wp-cerber' ),
@@ -1174,7 +1299,6 @@ function cerber_settings_config( $args = array() ) {
1174
  'apply' => 'strtolower',
1175
  'maxlength' => 1000,
1176
  'enabler' => array( 'scan_media' ),
1177
- 'pro' => 1
1178
  ),
1179
  ),
1180
  ),
@@ -1248,7 +1372,6 @@ function cerber_settings_config( $args = array() ) {
1248
  'title' => __( 'Custom comment URL', 'wp-cerber' ),
1249
  'label' => __( 'Use custom URL for the WordPress comment form', 'wp-cerber' ),
1250
  'type' => 'checkbox',
1251
- 'pro' => 2
1252
  ),
1253
  'botsany' => array(
1254
  'title' => __( 'Other forms', 'wp-cerber' ),
@@ -1455,7 +1578,6 @@ function cerber_settings_config( $args = array() ) {
1455
  'title' => __( 'Limit access by IP address', 'wp-cerber' ),
1456
  //'placeholder' => 'The IP address of the master',
1457
  'type' => 'text',
1458
- //'pro' => 1
1459
  ),
1460
  'slave_access' => array(
1461
  'title' => __( 'Access to this website', 'wp-cerber' ),
@@ -1670,10 +1792,10 @@ function cerber_text2array( $text = '', $delimiter = '', $callback = '', $regex
1670
 
1671
  /*
1672
  * Default settings.
1673
- * Each setting field must have a default value!
1674
  *
1675
  */
1676
- function cerber_get_defaults( $setting = null ) {
1677
  $all_defaults = array(
1678
  CERBER_OPT => array(
1679
  'boot-mode' => 0,
@@ -1688,6 +1810,7 @@ function cerber_get_defaults( $setting = null ) {
1688
  'nologinhint_msg' => '',
1689
  'nopasshint' => 0,
1690
  'nopasshint_msg' => '',
 
1691
 
1692
  'proxy' => 0,
1693
  'cookiepref' => '',
@@ -1741,7 +1864,7 @@ function cerber_get_defaults( $setting = null ) {
1741
  CERBER_OPT_U => array(
1742
  'authonly' => 0,
1743
  'authonlyacl' => 0,
1744
- 'authonlymsg' => __( 'Only registered and logged in users are allowed to view this website', 'wp-cerber' ),
1745
  'authonlyredir' => '',
1746
  'regwhite' => 0,
1747
  'regwhite_msg' => '',
@@ -1767,13 +1890,13 @@ function cerber_get_defaults( $setting = null ) {
1767
  'botsnoauth' => 1,
1768
  'botsipwhite' => '1',
1769
  'customcomm' => 0,
1770
- 'botswhite' => '',
1771
 
1772
  'spamcomm' => 0,
1773
  'trashafter' => 7,
1774
  'trashafter-enabled' => 0,
1775
  ),
1776
- CERBER_OPT_C => array(
1777
  'sitekey' => '',
1778
  'secretkey' => '',
1779
  'invirecap' => 0,
@@ -1790,23 +1913,40 @@ function cerber_get_defaults( $setting = null ) {
1790
  'recaptcha-number' => 3,
1791
  'recaptcha-within' => 30,
1792
  ),
1793
- CERBER_OPT_N => array(
1794
  'notify' => 1,
1795
- 'above' => 3,
1796
- 'email' => '',
1797
  'emailrate' => 12,
1798
  'notify-new-ver' => '1',
1799
- 'pbtoken' => '',
1800
- 'pbdevice' => '',
1801
- 'wreports-day' => '1', // workaround, see cerber_upgrade_settings()
1802
- 'wreports-time' => 9,
1803
- 'email-report' => '',
1804
- 'enable-report' => '1', // workaround, see cerber_upgrade_settings()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1805
  ),
1806
- CERBER_OPT_T => array(
1807
  'tienabled' => '1',
1808
  'tiipwhite' => 0,
1809
- 'tiwhite' => '',
1810
  'tierrmon' => '1',
1811
  'tierrnoauth' => 1,
1812
  'timode' => '3',
@@ -1816,7 +1956,7 @@ function cerber_get_defaults( $setting = null ) {
1816
  'tinolocs' => array(),
1817
  'tinoua' => array(),
1818
  'tifields' => 0,
1819
- 'timask' => '',
1820
  'tihdrs' => 0,
1821
  'tihdrs_sent' => 0,
1822
  'tisenv' => 0,
@@ -1841,7 +1981,7 @@ function cerber_get_defaults( $setting = null ) {
1841
  CERBER_OPT_OS => array(
1842
  'ds_4opts' => 0,
1843
  'ds_4opts_roles' => array( 'administrator' ),
1844
- 'ds_4opts_list' => CRB_DS::get_settings_list( false ),
1845
  'ds_4opts_acl' => 0,
1846
  ),
1847
  CERBER_OPT_S => array(
@@ -1864,7 +2004,7 @@ function cerber_get_defaults( $setting = null ) {
1864
  'scan_relimit' => 3,
1865
  'scan_isize' => 0,
1866
  'scan_ierrors' => 0,
1867
- 'email-scan' => ''
1868
  ),
1869
  CERBER_OPT_P => array(
1870
  'scan_delunatt' => 0,
@@ -1898,6 +2038,11 @@ function cerber_get_defaults( $setting = null ) {
1898
  ),
1899
  );
1900
 
 
 
 
 
 
1901
  if ( $setting ) {
1902
  foreach ( $all_defaults as $section ) {
1903
  if ( isset( $section[ $setting ] ) ) {
@@ -1911,6 +2056,52 @@ function cerber_get_defaults( $setting = null ) {
1911
  return $all_defaults;
1912
  }
1913
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1914
  /**
1915
  * Upgrade plugin options
1916
  *
@@ -2012,9 +2203,9 @@ function crb_move_fields( $from, $to, $fields ) {
2012
  return true;
2013
  }
2014
 
2015
- /*
 
2016
  *
2017
- * Right way to save Cerber settings outside of wp-admin settings page
2018
  * @since 2.0
2019
  *
2020
  */
@@ -2066,18 +2257,6 @@ function cerber_get_options( $option = '' ) {
2066
  return $options;
2067
  }
2068
 
2069
- /**
2070
- * @since 8.5.9.1
2071
- *
2072
- * @param string $option
2073
- * @param bool $purge_cache purge static cache
2074
- *
2075
- * @return array|bool|mixed
2076
- */
2077
- function cerber_get_settings( $option = '', $purge_cache = false ) {
2078
- return crb_get_settings( $option, $purge_cache );
2079
- }
2080
-
2081
  /**
2082
  * The replacement for cerber_get_options()
2083
  *
@@ -2105,6 +2284,8 @@ function crb_get_settings( $option = '', $purge_cache = false ) {
2105
 
2106
  if ( ! isset( $united ) || $purge_cache ) {
2107
 
 
 
2108
  $options = cerber_get_setting_list();
2109
  $in = '("' . implode( '","', $options ) . '")';
2110
  $united = array();
@@ -2121,7 +2302,9 @@ function crb_get_settings( $option = '', $purge_cache = false ) {
2121
  $set = cerber_db_get_col( $sql );
2122
 
2123
  if ( ! $set || ! is_array( $set ) ) {
2124
- return false;
 
 
2125
  }
2126
 
2127
  $set_new = cerber_db_get_var( $sql_new );
@@ -2144,15 +2327,14 @@ function crb_get_settings( $option = '', $purge_cache = false ) {
2144
  $united = array_merge( $united, $value );
2145
  }
2146
 
 
 
 
 
2147
  }
2148
 
2149
  if ( ! empty( $option ) ) {
2150
- if ( isset( $united[ $option ] ) ) {
2151
- return $united[ $option ];
2152
- }
2153
- else {
2154
- return false;
2155
- }
2156
  }
2157
 
2158
  return $united;
@@ -2169,8 +2351,8 @@ function crb_purge_settings_cache() {
2169
  * @return null|array|string
2170
  * @since 5.8.7
2171
  */
2172
- function cerber_get_site_option($option = '', $unserialize = true){
2173
- global $wpdb;
2174
  static $values = array();
2175
 
2176
  if ( ! $option ) {
@@ -2188,13 +2370,15 @@ function cerber_get_site_option($option = '', $unserialize = true){
2188
  return $values[ $option ];
2189
  }
2190
 
2191
- if ( is_multisite() ) {
2192
- $value = cerber_db_get_var( 'SELECT meta_value FROM ' . $wpdb->sitemeta . ' WHERE meta_key = "' . $option . '"' );
2193
  }
2194
  else {
2195
- $value = cerber_db_get_var( 'SELECT option_value FROM ' . $wpdb->options . ' WHERE option_name = "' . $option . '"' );
2196
  }
2197
 
 
 
2198
  if ( $value ) {
2199
  if ( $unserialize ) {
2200
  $value = crb_unserialize( $value );
@@ -2207,7 +2391,8 @@ function cerber_get_site_option($option = '', $unserialize = true){
2207
  $value = null;
2208
  }
2209
 
2210
- $values[$option] = $value;
 
2211
  return $value;
2212
  }
2213
 
@@ -2287,33 +2472,33 @@ function crb_update_compiled( $setting, $value ) {
2287
 
2288
  /**
2289
  * @param string $type Type of notification email
2290
- * @param bool $array Return as an array
2291
  *
2292
- * @return array|string Email address(es) for notifications
2293
  */
2294
- function cerber_get_email( $type = '', $array = false ) {
2295
- $email = '';
2296
 
2297
  if ( in_array( $type, array( 'report', 'scan' ) ) ) {
2298
- $email = crb_get_settings( 'email-' . $type );
2299
  }
2300
 
2301
- if ( ! $email ) {
2302
- $email = crb_get_settings( 'email' );
2303
  }
2304
 
2305
- if ( ! $array && is_array( $email ) ) {
2306
- $email = implode( ', ', $email );
 
2307
  }
2308
 
2309
- if ( empty( $email ) ) {
2310
- $email = get_site_option( 'admin_email' );
2311
- if ( $array ) {
2312
- $email = array( $email );
2313
  }
2314
  }
2315
 
2316
- return $email;
2317
  }
2318
 
2319
  /**
@@ -2340,7 +2525,7 @@ function cerber_cloud_sync( $data = array() ) {
2340
  $quick,
2341
  $full,
2342
  cerber_sec_from_time( $data['scan_afull'] ),
2343
- cerber_get_email( 'scan', true )
2344
  );
2345
  $scan_scheduling = array( // Is used for scheduled scans
2346
  'client' => $set,
@@ -2390,11 +2575,21 @@ function cerber_is_cloud_enabled( $what = '' ) {
2390
  }
2391
 
2392
  function cerber_get_role_policies( $role ) {
2393
- if ( $conf = crb_get_settings( 'crb_role_policies' ) ) {
2394
- return crb_array_get( $conf, $role );
2395
  }
2396
 
2397
- return true;
 
 
 
 
 
 
 
 
 
 
2398
  }
2399
 
2400
  /**
@@ -2438,3 +2633,22 @@ function cerber_get_user_policy( $policy, $user = null, $global = '' ) {
2438
 
2439
  return $ret;
2440
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  // Processed by Cerber
57
  const CERBER_SETTINGS = 'cerber_settings';
58
  const CERBER_GEO_RULES = 'geo_rule_set';
59
+
60
+ // @since 8.5.9.1 - a new, united settings entry
61
  const CERBER_CONFIG = 'cerber_configuration';
62
 
63
  // Processed (parsed) WP Cerber settings
64
  const CERBER_COMPILED = 'cerber_compiled';
65
 
66
+ // PRO settings
67
+ const CRB_PRO_SETS = array( CERBER_OPT_E, CERBER_OPT_P );
68
+ const CRB_PRO_SETTINGS = array( 'reglimit', 'reglimit_num', 'reglimit_min', 'regwhite', 'regwhite_msg', 'email_mask', 'email_format', 'use_smtp', 'pbrate', 'pbnotify', 'pb_mask', 'pb_format', 'scan_media', 'customcomm' );
69
+ const CRB_PRO_POLICIES = array(
70
+ 'sess_limit' => array( 2, 0 ),
71
+ 'sess_limit_policy' => array( 2, 0 ),
72
+ 'sess_limit_msg' => array( 2, '' ),
73
+ 'app_pwd' => array( 2, 0 ),
74
+ '2fasmart' => array( 1, 0 ),
75
+ '2fanewcountry' => array( 1, 0 ),
76
+ '2fanewnet4' => array( 1, 0 ),
77
+ '2fanewip' => array( 1, 0 ),
78
+ '2fanewua' => array( 1, 0 ),
79
+ '2fasessions' => array( 1, 0 ),
80
+ 'note2' => array( 1, 0 ),
81
+ '2fadays' => array( 1, 0 ),
82
+ '2falogins' => array( 1, 0 )
83
+ );
84
+
85
  /**
86
  * A set of Cerber settings (WP options)
87
  *
130
 
131
  // Pushbullet devices
132
  $pb_set = array();
133
+ if ( cerber_is_admin_page( array( 'tab' => 'notifications' ) ) ) {
134
  $pb_set = cerber_pb_get_devices();
135
  if ( is_array( $pb_set ) ) {
136
  if ( ! empty( $pb_set ) ) {
231
  'type' => 'textarea',
232
  'enabler' => array( 'nopasshint' ),
233
  ),*/
234
+ 'nologinlang' => array(
235
+ 'title' => __( 'Disable login language switcher', 'wp-cerber' ),
236
+ 'type' => 'checkbox',
237
+ 'requires_wp' => '5.9',
238
+ 'requires_true' => function () {
239
+ return (bool) get_available_languages();
240
+ },
241
+ ),
242
  ),
243
  ),
244
  'custom' => array(
323
  'default' => 0,
324
  ),
325
  'citadel' => array(
326
+ 'title' => __( 'Citadel mode threshold', 'wp-cerber' ),
327
  'type' => 'citadel',
328
  'enabler' => array( 'citadel_on' ),
329
  ),
330
  'ciduration' => array(
331
+ 'title' => __( 'Citadel mode duration', 'wp-cerber' ),
332
  'label' => __( 'minutes', 'wp-cerber' ),
333
  'type' => 'digits',
334
  'enabler' => array( 'citadel_on' ),
335
  ),
336
+ 'cinotify' => array(
337
  'title' => __( 'Notifications', 'wp-cerber' ),
338
  'type' => 'checkbox',
339
+ 'label' => __( 'Send notification to admin email', 'wp-cerber' ) . crb_test_notify_link( array( 'type' => 'citadel' ) ),
 
 
 
 
340
  'enabler' => array( 'citadel_on' ),
341
  ),
342
  ),
515
  'label' => __( 'Restrict user account creation and user management with the following policies', 'wp-cerber' ),
516
  //'doclink' => 'https://wpcerber.com/only-logged-in-wordpress-users/',
517
  'type' => 'checkbox',
 
518
  ),
519
  'ds_regs_roles' => array(
520
  'label' => __( 'User registrations are limited to these roles', 'wp-cerber' ),
606
  'title' => __( 'Registration limit', 'wp-cerber' ),
607
  'type' => 'reglimit',
608
  'default' => array( 3, 60 ),
 
609
  ),
610
  'emrule' => array(
611
  'title' => __( 'Restrict email addresses', 'wp-cerber' ),
631
  'title' => __( 'Use White IP Access List', 'wp-cerber' ),
632
  'label' => __( 'Only users from IP addresses in the White IP Access List may register on the website', 'wp-cerber' ),
633
  'type' => 'checkbox',
 
634
  ),
635
  'regwhite_msg' => array(
636
  'title' => __( 'User message', 'wp-cerber' ),
637
+ 'placeholder' => __( "This message is displayed to a user if the IP address of the user's computer is not whitelisted", 'wp-cerber' ),
638
  'type' => 'textarea',
639
  'enabler' => array( 'regwhite' ),
 
640
  ),
641
  )
642
  ),
661
  ),
662
  'authonlymsg' => array(
663
  'title' => __( 'User Message', 'wp-cerber' ),
664
+ 'placeholder' => __( 'An optional login form message', 'wp-cerber' ),
665
  'type' => 'textarea',
666
  'apply' => 'strip_tags',
 
667
  'enabler' => array( 'authonly' ),
 
668
  ),
669
  'authonlyredir' => array(
670
  'title' => __( 'Redirect to URL', 'wp-cerber' ),
762
  ),
763
  ),
764
 
765
+ 'notify' => array(
766
  'name' => __( 'Email notifications', 'wp-cerber' ),
767
+ 'desc' => __( 'Configure email parameters for notifications, reports, and alerts', 'wp-cerber' ),
768
  'doclink' => 'https://wpcerber.com/wordpress-notifications-made-easy/',
769
  'fields' => array(
 
 
 
 
770
  'email' => array(
771
  'title' => __( 'Email Address', 'wp-cerber' ),
772
  'placeholder' => __( 'Use comma to specify multiple values', 'wp-cerber' ),
780
  'label' => __( 'notifications are allowed per hour (0 means unlimited)', 'wp-cerber' ),
781
  'type' => 'digits',
782
  ),
783
+ 'notify' => array(
784
+ 'title' => __( 'Lockout notification', 'wp-cerber' ),
785
+ 'type' => 'notify',
786
+ ),
787
  'notify-new-ver' => array(
788
  'title' => __( 'New version is available', 'wp-cerber' ),
789
+ 'label' => __( 'Send notification when a new version of WP Cerber is available', 'wp-cerber' ),
790
  'type' => 'checkbox'
791
  ),
792
+ 'email_mask' => array(
793
+ 'title' => __( 'Mask sensitive data', 'wp-cerber' ),
794
+ 'label' => __( 'Mask usernames and IP addresses in notifications and alerts', 'wp-cerber' ),
795
+ 'type' => 'checkbox',
796
+ ),
797
+ 'email_format' => array(
798
+ 'title' => __( 'Message format', 'wp-cerber' ),
799
+ 'type' => 'select',
800
+ 'set' => array(
801
+ 2 => __( 'Plain', 'wp-cerber' ),
802
+ 1 => __( 'Brief', 'wp-cerber' ),
803
+ 0 => __( 'Verbose', 'wp-cerber' )
804
+ ),
805
+ ),
806
+ 'use_smtp' => array(
807
+ 'title' => __( 'Use SMTP', 'wp-cerber' ),
808
+ 'label' => __( 'Use SMTP server to send emails', 'wp-cerber' ),
809
+ 'type' => 'checkbox',
810
+ ),
811
+ 'smtp_host' => array(
812
+ 'title' => __( 'SMTP host', 'wp-cerber' ),
813
+ 'size' => 28,
814
+ 'enabler' => array( 'use_smtp' ),
815
+ 'pattern' => '[\d\.\w\-\_]+',
816
+ 'attr' => array( 'title' => 'Valid hostname or IP address' ),
817
+ 'validate' => array( 'required' => 1 )
818
+ ),
819
+ 'smtp_port' => array(
820
+ 'title' => __( 'SMTP port', 'wp-cerber' ),
821
+ 'size' => 28,
822
+ 'enabler' => array( 'use_smtp' ),
823
+ 'pattern' => '\d+',
824
+ 'attr' => array( 'title' => 'Number' ),
825
+ 'validate' => array( 'required' => 1 )
826
+ ),
827
+ 'smtp_encr' => array(
828
+ 'title' => __( 'SMTP encryption', 'wp-cerber' ),
829
+ 'type' => 'select',
830
+ 'set' => array(
831
+ 0 => __( 'None', 'wp-cerber' ),
832
+ 'tls' => 'TLS',
833
+ 'ssl' => 'SSL',
834
+ ),
835
+ 'enabler' => array( 'use_smtp' ),
836
+ ),
837
+ 'smtp_pwd' => array(
838
+ 'title' => __( 'SMTP password', 'wp-cerber' ),
839
+ 'size' => 28,
840
+ 'enabler' => array( 'use_smtp' ),
841
+ 'validate' => array( 'required' => 1 )
842
+ ),
843
+ 'smtp_user' => array(
844
+ 'title' => __( 'SMTP username', 'wp-cerber' ),
845
+ 'size' => 28,
846
+ 'enabler' => array( 'use_smtp' ),
847
+ 'validate' => array( 'required' => 1 )
848
+ ),
849
+ 'smtp_from' => array(
850
+ 'title' => __( 'SMTP From email', 'wp-cerber' ),
851
+ 'placeholder' => __( 'If empty, the SMTP username is used', 'wp-cerber' ),
852
+ 'size' => 28,
853
+ 'enabler' => array( 'use_smtp' ),
854
+ 'validate' => array( 'satisfy' => 'is_email' )
855
+ ),
856
+ 'smtp_from_name' => array(
857
+ 'title' => __( 'SMTP From name', 'wp-cerber' ),
858
+ 'size' => 28,
859
+ 'enabler' => array( 'use_smtp' ),
860
+ ),
861
+ /*'smtp_backup' => array(
862
+ 'title' => __( 'Backup transport', 'wp-cerber' ),
863
+ 'type' => 'select',
864
+ 'set' => array(
865
+ __( 'Do not use', 'wp-cerber' ),
866
+ __( 'Default WordPress mailer', 'wp-cerber' ),
867
+ __( 'Mobile messaging', 'wp-cerber' ),
868
+ ),
869
+ 'enabler' => array( 'use_smtp' ),
870
+ ),*/
871
  ),
872
  ),
873
+ 'pushit' => array(
874
  'name' => __( 'Push notifications', 'wp-cerber' ),
875
  'desc' => __( 'Get notified instantly with mobile and desktop notifications', 'wp-cerber' ),
876
  'doclink' => 'https://wpcerber.com/wordpress-mobile-and-browser-notifications-pushbullet/',
879
  'title' => __( 'Pushbullet access token', 'wp-cerber' ),
880
  ),
881
  'pbdevice' => array(
882
+ 'title' => __( 'Pushbullet device', 'wp-cerber' ),
883
+ 'type' => 'select',
884
+ 'set' => $pb_set,
885
+ 'enabler' => array( 'pbtoken' ),
886
+ ),
887
+ 'pbrate' => array(
888
+ 'title' => __( 'Notification limit', 'wp-cerber' ),
889
+ 'label' => __( 'notifications are allowed per hour (0 means unlimited)', 'wp-cerber' ),
890
+ 'type' => 'digits',
891
+ 'enabler' => array( 'pbtoken' ),
892
+ ),
893
+ 'pbnotify' => array(
894
+ 'title' => __( 'Lockout notification', 'wp-cerber' ),
895
+ 'field_switcher' => __( 'Send notification if the number of active lockouts above', 'wp-cerber' ),
896
+ 'label' => crb_test_notify_link( array( 'channel' => 'pushbullet' ) ),
897
+ 'enabler' => array( 'pbtoken' ),
898
+ 'type' => 'digits',
899
+ ),
900
+ 'pb_mask' => array(
901
+ 'title' => __( 'Mask sensitive data', 'wp-cerber' ),
902
+ 'label' => __( 'Mask usernames and IP addresses in notifications and alerts', 'wp-cerber' ),
903
+ 'type' => 'checkbox',
904
+ 'enabler' => array( 'pbtoken' ),
905
+ ),
906
+ 'pb_format' => array(
907
+ 'title' => __( 'Message format', 'wp-cerber' ),
908
+ 'type' => 'select',
909
+ 'enabler' => array( 'pbtoken' ),
910
+ 'set' => array(
911
+ 2 => __( 'Plain', 'wp-cerber' ),
912
+ 1 => __( 'Brief', 'wp-cerber' ),
913
+ 0 => __( 'Verbose', 'wp-cerber' )
914
+ ),
915
  ),
916
  ),
917
  ),
1269
  'name' => __( 'WordPress uploads analysis', 'wp-cerber' ),
1270
  'desc' => __( 'Keep the WordPress uploads directory clean and secure. Detect injected files with public web access, report them, and remove malicious ones.', 'wp-cerber' ),
1271
  //'doclink' => 'https://wpcerber.com/wordpress-security-scanner/',
1272
+ //'pro_section' => 1,
1273
  'fields' => array(
1274
  'scan_media' => array(
1275
  'title' => __( 'Analyze the uploads directory', 'wp-cerber' ),
1276
  'label' => __( 'Analyze the WordPress uploads directory to detect injected files', 'wp-cerber' ),
1277
  'type' => 'checkbox',
 
1278
  ),
1279
  'scan_skip_media' => array(
1280
  'title' => __( 'Skip files with these extensions', 'wp-cerber' ),
1287
  'apply' => 'strtolower',
1288
  'maxlength' => 1000,
1289
  'enabler' => array( 'scan_media' ),
 
1290
  ),
1291
  'scan_del_media' => array(
1292
  'title' => __( 'Prohibited extensions', 'wp-cerber' ),
1299
  'apply' => 'strtolower',
1300
  'maxlength' => 1000,
1301
  'enabler' => array( 'scan_media' ),
 
1302
  ),
1303
  ),
1304
  ),
1372
  'title' => __( 'Custom comment URL', 'wp-cerber' ),
1373
  'label' => __( 'Use custom URL for the WordPress comment form', 'wp-cerber' ),
1374
  'type' => 'checkbox',
 
1375
  ),
1376
  'botsany' => array(
1377
  'title' => __( 'Other forms', 'wp-cerber' ),
1578
  'title' => __( 'Limit access by IP address', 'wp-cerber' ),
1579
  //'placeholder' => 'The IP address of the master',
1580
  'type' => 'text',
 
1581
  ),
1582
  'slave_access' => array(
1583
  'title' => __( 'Access to this website', 'wp-cerber' ),
1792
 
1793
  /*
1794
  * Default settings.
1795
+ * Returns a list split into setting pages.
1796
  *
1797
  */
1798
+ function cerber_get_defaults( $setting = null, $dynamic = true ) {
1799
  $all_defaults = array(
1800
  CERBER_OPT => array(
1801
  'boot-mode' => 0,
1810
  'nologinhint_msg' => '',
1811
  'nopasshint' => 0,
1812
  'nopasshint_msg' => '',
1813
+ 'nologinlang' => 0,
1814
 
1815
  'proxy' => 0,
1816
  'cookiepref' => '',
1864
  CERBER_OPT_U => array(
1865
  'authonly' => 0,
1866
  'authonlyacl' => 0,
1867
+ 'authonlymsg' => '',
1868
  'authonlyredir' => '',
1869
  'regwhite' => 0,
1870
  'regwhite_msg' => '',
1890
  'botsnoauth' => 1,
1891
  'botsipwhite' => '1',
1892
  'customcomm' => 0,
1893
+ 'botswhite' => array(),
1894
 
1895
  'spamcomm' => 0,
1896
  'trashafter' => 7,
1897
  'trashafter-enabled' => 0,
1898
  ),
1899
+ CERBER_OPT_C => array(
1900
  'sitekey' => '',
1901
  'secretkey' => '',
1902
  'invirecap' => 0,
1913
  'recaptcha-number' => 3,
1914
  'recaptcha-within' => 30,
1915
  ),
1916
+ CERBER_OPT_N => array(
1917
  'notify' => 1,
1918
+ 'above' => 5,
1919
+ 'email' => array(),
1920
  'emailrate' => 12,
1921
  'notify-new-ver' => '1',
1922
+ 'email_mask' => 0,
1923
+ 'email_format' => 0,
1924
+
1925
+ 'use_smtp' => 0,
1926
+ 'smtp_host' => '',
1927
+ 'smtp_port' => '587',
1928
+ 'smtp_encr' => 'tls',
1929
+ 'smtp_pwd' => '',
1930
+ 'smtp_user' => '',
1931
+ 'smtp_from' => '',
1932
+ 'smtp_from_name' => 'WP Cerber',
1933
+
1934
+ 'pbtoken' => '',
1935
+ 'pbdevice' => '',
1936
+ 'pbrate' => '',
1937
+ 'pbnotify' => 10,
1938
+ 'pbnotify-enabled' => 1,
1939
+ 'pb_mask' => 0,
1940
+ 'pb_format' => 0,
1941
+ 'wreports-day' => '1', // workaround, see cerber_upgrade_settings()
1942
+ 'wreports-time' => 9,
1943
+ 'email-report' => array(),
1944
+ 'enable-report' => '1', // workaround, see cerber_upgrade_settings()
1945
  ),
1946
+ CERBER_OPT_T => array(
1947
  'tienabled' => '1',
1948
  'tiipwhite' => 0,
1949
+ 'tiwhite' => array(),
1950
  'tierrmon' => '1',
1951
  'tierrnoauth' => 1,
1952
  'timode' => '3',
1956
  'tinolocs' => array(),
1957
  'tinoua' => array(),
1958
  'tifields' => 0,
1959
+ 'timask' => array(),
1960
  'tihdrs' => 0,
1961
  'tihdrs_sent' => 0,
1962
  'tisenv' => 0,
1981
  CERBER_OPT_OS => array(
1982
  'ds_4opts' => 0,
1983
  'ds_4opts_roles' => array( 'administrator' ),
1984
+ 'ds_4opts_list' => array(),
1985
  'ds_4opts_acl' => 0,
1986
  ),
1987
  CERBER_OPT_S => array(
2004
  'scan_relimit' => 3,
2005
  'scan_isize' => 0,
2006
  'scan_ierrors' => 0,
2007
+ 'email-scan' => array()
2008
  ),
2009
  CERBER_OPT_P => array(
2010
  'scan_delunatt' => 0,
2038
  ),
2039
  );
2040
 
2041
+ if ( $dynamic ) {
2042
+ $all_defaults[ CERBER_OPT_U ]['authonlymsg'] = __( 'Only registered and logged in users are allowed to view this website', 'wp-cerber' );
2043
+ $all_defaults[ CERBER_OPT_OS ]['ds_4opts_list'] = CRB_DS::get_settings_list( false );
2044
+ }
2045
+
2046
  if ( $setting ) {
2047
  foreach ( $all_defaults as $section ) {
2048
  if ( isset( $section[ $setting ] ) ) {
2056
  return $all_defaults;
2057
  }
2058
 
2059
+ /**
2060
+ * Returns all default settings as a single-level associative array
2061
+ *
2062
+ * @return array
2063
+ *
2064
+ * @since 8.9.6.6
2065
+ */
2066
+ function crb_get_default_values() {
2067
+ static $defs;
2068
+
2069
+ if ( ! $defs ) {
2070
+ $defs = array();
2071
+ foreach ( cerber_get_defaults() as $fields ) {
2072
+ $defs = array_merge( $defs, $fields );
2073
+ }
2074
+ }
2075
+
2076
+ return $defs;
2077
+ }
2078
+
2079
+ /**
2080
+ * Returns default settings for PRO features only as a single-level associative array
2081
+ *
2082
+ * @return array
2083
+ *
2084
+ * @since 8.9.6.6
2085
+ */
2086
+ function crb_get_default_pro() {
2087
+ static $pro;
2088
+
2089
+ if ( ! $pro ) {
2090
+ $pro = array();
2091
+
2092
+ // 1. Get page-level PRO settings
2093
+ $list = array_intersect_key( cerber_get_defaults(), array_flip( CRB_PRO_SETS ) );
2094
+ foreach ( $list as $fields ) {
2095
+ $pro = array_merge( $pro, $fields );
2096
+ }
2097
+
2098
+ // 2. Get setting-level PRO settings
2099
+ $pro = array_merge( $pro, array_intersect_key( crb_get_default_values(), array_flip( CRB_PRO_SETTINGS ) ) );
2100
+ }
2101
+
2102
+ return $pro;
2103
+ }
2104
+
2105
  /**
2106
  * Upgrade plugin options
2107
  *
2203
  return true;
2204
  }
2205
 
2206
+ /**
2207
+ * The right way to save WP Cerber settings outside of wp-admin settings page
2208
  *
 
2209
  * @since 2.0
2210
  *
2211
  */
2257
  return $options;
2258
  }
2259
 
 
 
 
 
 
 
 
 
 
 
 
 
2260
  /**
2261
  * The replacement for cerber_get_options()
2262
  *
2284
 
2285
  if ( ! isset( $united ) || $purge_cache ) {
2286
 
2287
+ // TODO: Use single SQL query with CERBER_CONFIG instead of cerber_get_setting_list() - note CERBER_CONFIG is not created automatically.
2288
+
2289
  $options = cerber_get_setting_list();
2290
  $in = '("' . implode( '","', $options ) . '")';
2291
  $united = array();
2302
  $set = cerber_db_get_col( $sql );
2303
 
2304
  if ( ! $set || ! is_array( $set ) ) {
2305
+ // @since 8.9.6.6
2306
+ $united = crb_get_default_values();
2307
+ $set = array();
2308
  }
2309
 
2310
  $set_new = cerber_db_get_var( $sql_new );
2327
  $united = array_merge( $united, $value );
2328
  }
2329
 
2330
+ if ( ! lab_lab() ) {
2331
+ $united = array_merge( $united, crb_get_default_pro() );
2332
+ }
2333
+
2334
  }
2335
 
2336
  if ( ! empty( $option ) ) {
2337
+ return $united[ $option ] ?? false;
 
 
 
 
 
2338
  }
2339
 
2340
  return $united;
2351
  * @return null|array|string
2352
  * @since 5.8.7
2353
  */
2354
+ function cerber_get_site_option( $option = '', $unserialize = true ) {
2355
+ global $wpdb;
2356
  static $values = array();
2357
 
2358
  if ( ! $option ) {
2370
  return $values[ $option ];
2371
  }
2372
 
2373
+ if ( is_multisite() ) {
2374
+ $sql = 'SELECT meta_value FROM ' . $wpdb->sitemeta . ' WHERE meta_key = "' . $option . '"';
2375
  }
2376
  else {
2377
+ $sql = 'SELECT option_value FROM ' . $wpdb->options . ' WHERE option_name = "' . $option . '"';
2378
  }
2379
 
2380
+ $value = cerber_db_get_var( $sql );
2381
+
2382
  if ( $value ) {
2383
  if ( $unserialize ) {
2384
  $value = crb_unserialize( $value );
2391
  $value = null;
2392
  }
2393
 
2394
+ $values[ $option ] = $value;
2395
+
2396
  return $value;
2397
  }
2398
 
2472
 
2473
  /**
2474
  * @param string $type Type of notification email
 
2475
  *
2476
+ * @return array Email address(es) for notifications
2477
  */
2478
+ function cerber_get_email( $type = '' ) {
2479
+ $emails = array();
2480
 
2481
  if ( in_array( $type, array( 'report', 'scan' ) ) ) {
2482
+ $emails = crb_get_settings( 'email-' . $type );
2483
  }
2484
 
2485
+ if ( ! $emails ) {
2486
+ $emails = crb_get_settings( 'email' );
2487
  }
2488
 
2489
+ if ( ! $emails ) {
2490
+ $emails = get_site_option( 'admin_email' );
2491
+ $emails = array( $emails );
2492
  }
2493
 
2494
+ if ( $type == 'activated' ) {
2495
+ if ( is_super_admin() ) {
2496
+ $user = wp_get_current_user();
2497
+ $emails[] = $user->user_email;
2498
  }
2499
  }
2500
 
2501
+ return array_unique( $emails );
2502
  }
2503
 
2504
  /**
2525
  $quick,
2526
  $full,
2527
  cerber_sec_from_time( $data['scan_afull'] ),
2528
+ cerber_get_email( 'scan' )
2529
  );
2530
  $scan_scheduling = array( // Is used for scheduled scans
2531
  'client' => $set,
2575
  }
2576
 
2577
  function cerber_get_role_policies( $role ) {
2578
+ if ( ! $conf = crb_get_settings( 'crb_role_policies' ) ) {
2579
+ return array();
2580
  }
2581
 
2582
+ $ret = crb_array_get( $conf, $role );
2583
+
2584
+ if ( ! is_array( $ret ) ) {
2585
+ $ret = array();
2586
+ }
2587
+
2588
+ if ( ! lab_lab() ) {
2589
+ $ret = array_merge( $ret, crb_get_default_pol_pro() );
2590
+ }
2591
+
2592
+ return $ret;
2593
  }
2594
 
2595
  /**
2633
 
2634
  return $ret;
2635
  }
2636
+
2637
+ /**
2638
+ * Returns default values of PRO role-based policies
2639
+ *
2640
+ * @return array
2641
+ *
2642
+ * @since 8.9.6.6
2643
+ */
2644
+ function crb_get_default_pol_pro() {
2645
+ static $pol;
2646
+
2647
+ if ( ! $pol ) {
2648
+ foreach ( CRB_PRO_POLICIES as $id => $conf ) {
2649
+ $pol[ $id ] = $conf[1];
2650
+ }
2651
+ }
2652
+
2653
+ return $pol;
2654
+ }
changelog.txt CHANGED
@@ -1,3 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  = 8.9.6 =
2
  * New: A new [alert creation dialog with a set of new alert settings](https://wpcerber.com/wordpress-notifications-made-easy/) enables you to create alerts with new limits: an expiration time, the maximum number of alerts allowed to send, and optional rate-limiting. The alert conditions can include the URL of a request now.
3
  * New: Deleting of [WordPress application passwords](https://wpcerber.com/wordpress-application-passwords-how-to/) is logged now.
1
+ = 9.0 =
2
+ * New: Different [alerts](https://wpcerber.com/wordpress-notifications-made-easy/) can be sent through different channels. You can select delivering notifications through Pushbullet and email simultaneously, Pushbullet only, or email only. The settings are configured on a per-alert basis in the alert creation form.
3
+ * New: Implemented a new "Message format" feature and setting. You can reduce the number of links in WP Cerber’s messages or disable them completely to prevent sending sensitive data.
4
+ * New: Implemented separate rate limiting settings for email and [Pushbullet notifications](https://wpcerber.com/wordpress-mobile-and-browser-notifications-pushbullet/).
5
+ * New: Lockout notifications and appropriate threshold can be enabled for Pushbullet and emails separately.
6
+ * New: Email reports and alerts can be sent via a separate SMTP server configured in the WP Cerber settings.
7
+ * New: Implemented masking IP addresses and usernames (logins) in emails and mobile alerts.
8
+ * New: Disabling login language switcher. If enabled, removes language switcher on the standard WordPress login page introduced in WordPress 5.9.
9
+ * Improved: If WP Cerber is unable to load its saved settings from the website database, it uses hard-coded default values.
10
+ * Improved: If you have configured the [list of prohibited usernames](https://wpcerber.com/using-list-of-prohibited-logins-to-catch-stupid-bots/) (logins) and the username of an existing user is among prohibited ones, the user is now shown as BLOCKED on the "Users" admin page, user edit page, Activity tab, and Live Traffic tab.
11
+ * Improved: When multiple email addresses are specified for notifications, each email will be sent separately. No multiply recipients in a single email are used anymore.
12
+ * Improved: The subjects of alerts now contain corresponding event labels.
13
+ * Improved: The subject of WP Cerber’s emails have been unified. It begins with website name in square brackets plus the "WP Cerber" string.
14
+ * Improved: All test alerts and messages manually sent from the WP Cerber admin dashboard now contain *** TEST MESSAGE *** in the subject.
15
+ * Improved: Displaying detailed information about PHP generated by phpinfo(). A new link is on the Diagnostic tab in the System Info section.
16
+ * Fixed: An issue with multiple "IP blocked" in the log if the reason for a lockout is changing.
17
+ * Fixed: An issue with "Site title" containing apostrophes.
18
+
19
  = 8.9.6 =
20
  * New: A new [alert creation dialog with a set of new alert settings](https://wpcerber.com/wordpress-notifications-made-easy/) enables you to create alerts with new limits: an expiration time, the maximum number of alerts allowed to send, and optional rate-limiting. The alert conditions can include the URL of a request now.
21
  * New: Deleting of [WordPress application passwords](https://wpcerber.com/wordpress-application-passwords-how-to/) is logged now.
languages/wp-cerber-de_DE.mo CHANGED
Binary file
languages/wp-cerber-de_DE.po CHANGED
@@ -44,7 +44,7 @@ msgstr "Benutzerdefinierte Login-Seite"
44
  msgid "Custom login URL"
45
  msgstr "Benutzerdefinierte Login-URL"
46
 
47
- #: cerber-settings.php:289 admin/cerber-dashboard.php:2064
48
  msgid "Citadel mode"
49
  msgstr "Citadel Modus"
50
 
@@ -56,7 +56,7 @@ msgstr "Schwelle"
56
  msgid "Duration"
57
  msgstr "Dauer"
58
 
59
- #: cerber-settings.php:310 admin/cerber-dashboard.php:5199
60
  msgid "Notifications"
61
  msgstr "Benachrichtigungen"
62
 
@@ -64,129 +64,129 @@ msgstr "Benachrichtigungen"
64
  msgid "Send notification to admin email"
65
  msgstr "Sende eine Benachrichtigung an die Emailadresse des Admins"
66
 
67
- #: admin/cerber-dashboard.php:5196 admin/cerber-tools.php:38
68
  #: admin/cerber-tools.php:49
69
  msgid "Access Lists"
70
  msgstr "Zugriffslisten"
71
 
72
- #: cerber-load.php:5674 cerber-settings.php:322
73
- #: admin/cerber-dashboard.php:2105 admin/cerber-dashboard.php:5192
74
- #: admin/cerber-users.php:1114
75
  msgid "Activity"
76
  msgstr "Aktivität"
77
 
78
- #: admin/cerber-dashboard.php:5194
79
  msgid "Lockouts"
80
  msgstr "Sperren"
81
 
82
- #: cerber-load.php:5683
83
  msgid "IP"
84
  msgstr "IP"
85
 
86
- #: admin/cerber-dashboard.php:950 admin/cerber-dashboard.php:1328
87
- #: admin/cerber-dashboard.php:3980 admin/cerber-dashboard.php:4462
88
  msgid "Date"
89
  msgstr "Datum"
90
 
91
- #: admin/cerber-dashboard.php:953 admin/cerber-dashboard.php:1330
92
- #: admin/cerber-dashboard.php:4467
93
  msgid "Local User"
94
  msgstr "Lokaler Benutzer"
95
 
96
- #: cerber-load.php:5691
97
  msgid "Username used"
98
  msgstr "Benutzername wird bereits verwendet"
99
 
100
- #: cerber-common.php:1663
101
  msgid "Logged in"
102
  msgstr "Eingeloggt"
103
 
104
- #: cerber-common.php:1664
105
  msgid "Logged out"
106
  msgstr "Ausgeloggt"
107
 
108
- #: cerber-common.php:1665
109
  msgid "Login failed"
110
  msgstr "Login fehlgeschlagen"
111
 
112
- #: cerber-common.php:1668 admin/cerber-dashboard.php:1094
113
  msgid "IP blocked"
114
  msgstr "IP geblockt"
115
 
116
- #: cerber-common.php:1672
117
  msgid "Citadel activated!"
118
  msgstr "Citadel-Modus aktiviert!"
119
 
120
- #: cerber-common.php:1748 admin/cerber-dashboard.php:1667
121
  msgid "Locked out"
122
  msgstr "Ausgesperrt"
123
 
124
  #. Only correct if "IP blacklisted" is used as indicative. Otherwise it would not translate "IP auf der schwarzen Liste" but "IP auf die schwarze Liste gesetzt" (if it states that the IP was just blacklisted).
125
- #: cerber-common.php:1750
126
  #, fuzzy
127
  msgid "IP blacklisted"
128
  msgstr "IP blockiert"
129
 
130
- #: cerber-common.php:1685
131
  msgid "Password changed"
132
  msgstr "Passwort geändert"
133
 
134
- #: admin/cerber-dashboard.php:206 admin/cerber-dashboard.php:331
135
  msgid "Remove"
136
  msgstr "Entfernen"
137
 
138
- #: admin/cerber-dashboard.php:665
139
  msgid "Lockout for %s was removed"
140
  msgstr "Die Sperre für %s wurde entfernt"
141
 
142
- #: admin/cerber-dashboard.php:277 admin/cerber-dashboard.php:1574
143
- #: admin/cerber-dashboard.php:1658 admin/cerber-dashboard.php:2062
144
  #: admin/cerber-tools.php:69
145
  #, fuzzy
146
  msgid "White IP Access List"
147
  msgstr "Weiße Liste (erlaubten IPs)"
148
 
149
- #: admin/cerber-dashboard.php:280 admin/cerber-dashboard.php:1577
150
- #: admin/cerber-dashboard.php:1661 admin/cerber-dashboard.php:2063
151
  #: admin/cerber-tools.php:70
152
  #, fuzzy
153
  msgid "Black IP Access List"
154
  msgstr "Schwarze Liste (verbotenen IPs)"
155
 
156
- #: admin/cerber-dashboard.php:337
157
  msgid "List is empty"
158
  msgstr "Liste ist leer"
159
 
160
- #: cerber-load.php:4805
161
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
162
  msgstr "Citadel-Modus ist aktiviert nach %d fehlgeschlagenen Logins in %d Minuten."
163
 
164
- #: admin/cerber-dashboard.php:2830 admin/cerber-dashboard.php:3341
165
  msgid "View Activity"
166
  msgstr "Aktivitäten anzeigen"
167
 
168
- #: nexus/cerber-nexus.php:95 admin/cerber-dashboard.php:5265
169
- #: admin/cerber-dashboard.php:5326 admin/cerber-tools.php:37
170
  #: admin/cerber-tools.php:48
171
  msgid "Settings"
172
  msgstr "Einstellungen"
173
 
174
- #: admin/cerber-dashboard.php:1931
175
  msgid "Last login"
176
  msgstr "Letzte Anmeldung"
177
 
178
- #: cerber-common.php:2077 nexus/cerber-slave-list.php:347
179
- #: admin/cerber-dashboard.php:478 admin/cerber-dashboard.php:2036
180
- #: admin/cerber-dashboard.php:2085
181
  msgid "Never"
182
  msgstr "Niemals"
183
 
184
- #: admin/cerber-dashboard.php:5683 admin/cerber-tools.php:59
185
  #: admin/cerber-admin.php:738 admin/cerber-admin.php:905
186
  msgid "Are you sure?"
187
  msgstr "Sind Sie sicher?"
188
 
189
- #: cerber-settings.php:268 admin/cerber-dashboard.php:2469
190
  msgid "My site is behind a reverse proxy"
191
  msgstr "Meine Website ist hinter einem Reverse-Proxy"
192
 
@@ -199,11 +199,11 @@ msgstr "Machen Sie Ihren Schutz schlauer!"
199
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
200
  msgstr "Bitte aktivieren Sie Permalinks um dieses Merkmal zu verwenden. Setzen Sie die Permalink-Einstellungen auf etwas anderes als Standard."
201
 
202
- #: admin/cerber-dashboard.php:5195
203
  msgid "Main Settings"
204
  msgstr "Haupteinstellungen"
205
 
206
- #: admin/cerber-dashboard.php:5480
207
  msgid "Help"
208
  msgstr "Hilfe"
209
 
@@ -213,27 +213,27 @@ msgstr "Hilfe"
213
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
214
  msgstr "Erhöhe die Sperrdauer um %s Stunden nach %s Aussperrungen in den letzten %s Stunden"
215
 
216
- #: cerber-load.php:369 admin/cerber-users.php:463
217
  msgid "You are not allowed to log in. Ask your administrator for assistance."
218
  msgstr "Sie sind nicht berechtigt, sich anzumelden. Fragen Sie Ihren Administrator nach Unterstützung."
219
 
220
- #: admin/cerber-dashboard.php:216 admin/cerber-users.php:925
221
  msgid "Expires"
222
  msgstr "Gültig bis"
223
 
224
- #: admin/cerber-dashboard.php:244 admin/cerber-dashboard.php:2702
225
  msgid "No lockouts at the moment. The sky is clear."
226
  msgstr "Keine Sperrung im Moment. Der Himmel ist klar."
227
 
228
- #: admin/cerber-dashboard.php:287
229
  msgid "Your IP"
230
  msgstr "Ihre IP"
231
 
232
- #: cerber-load.php:4806
233
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
234
  msgstr "Der letzte gescheiterte Versuch war um %s von der IP %s mit der Benutzeranmeldung: %s."
235
 
236
- #: cerber-load.php:6015
237
  msgid "Can't activate WP Cerber due to a database error."
238
  msgstr "Kann WP Cerber aufgrund eines Datenbankfehlers nicht aktivieren."
239
 
@@ -246,7 +246,7 @@ msgstr "Benachrichtige den Admin, wenn die Anzahl von aktiven Aussperrungen grö
246
  msgid "days"
247
  msgstr "Tage"
248
 
249
- #: admin/cerber-dashboard.php:2002
250
  msgid "Cerber Quick View"
251
  msgstr "Cerber Schnellansicht"
252
 
@@ -262,28 +262,20 @@ msgstr "Klicken für Sendungstest"
262
  msgid "Attention! You have changed the login URL! The new login URL is"
263
  msgstr "Achtung! Sie haben die Anmelde-URL geändert! Die neue Login-URL ist"
264
 
265
- #: admin/cerber-dashboard.php:1930
266
  msgid "Comments"
267
  msgstr "Kommentare"
268
 
269
- #: cerber-load.php:4807 cerber-load.php:5720
270
- msgid "View activity in dashboard"
271
- msgstr "Zeige Aktivität im Dashboard"
272
-
273
- #: cerber-load.php:4836
274
  msgid "Number of active lockouts"
275
  msgstr "Anzahl der aktiven Sperren"
276
 
277
- #: cerber-load.php:4840
278
- msgid "View lockouts in dashboard"
279
- msgstr "Zeige Sperren im Dashboard"
280
-
281
- #: cerber-load.php:4934
282
  msgid "This message was sent by"
283
  msgstr "Diese Nachricht wurde gesendet von"
284
 
285
  #. Used to be "Import/Export" but this is a fuzzy translation. Exact translation that WordPress also uses is "Werkzeuge".
286
- #: admin/cerber-dashboard.php:90 admin/cerber-dashboard.php:5377
287
  msgid "Tools"
288
  msgstr "Werkzeuge"
289
 
@@ -339,58 +331,58 @@ msgstr "Einstellungen erfolgreich importiert von"
339
  msgid "Error while parsing file"
340
  msgstr "Fehler beim Parsen der Datei"
341
 
342
- #: admin/cerber-dashboard.php:214 admin/cerber-dashboard.php:1326
343
  msgid "Hostname"
344
  msgstr "Hostname"
345
 
346
- #: admin/cerber-dashboard.php:599
347
  #, fuzzy
348
  msgid "unknown"
349
  msgstr "unbekannt"
350
 
351
- #: admin/cerber-dashboard.php:2041 admin/cerber-dashboard.php:2071
352
  msgid "active"
353
  msgstr "aktiv"
354
 
355
- #: admin/cerber-dashboard.php:2041
356
  msgid "deactivate"
357
  msgstr "deaktiviert"
358
 
359
- #: admin/cerber-dashboard.php:2045
360
  msgid "not active"
361
  msgstr "nicht aktiv"
362
 
363
  #. "deactive" and "disabled" mean exactly the same in German.
364
- #: admin/cerber-dashboard.php:2048 admin/cerber-dashboard.php:2066
365
  msgid "disabled"
366
  msgstr "deaktiviert"
367
 
368
- #: admin/cerber-dashboard.php:2054
369
  msgid "failed attempts"
370
  msgstr "Fehlversuche"
371
 
372
- #: admin/cerber-dashboard.php:2054 admin/cerber-dashboard.php:2055
373
  msgid "in 24 hours"
374
  msgstr "in 24 Stunden"
375
 
376
- #: admin/cerber-dashboard.php:2054 admin/cerber-dashboard.php:2055
377
  msgid "view all"
378
  msgstr "Zeige alle"
379
 
380
- #: admin/cerber-dashboard.php:2055
381
  msgid "lockouts"
382
  msgstr "Sperren"
383
 
384
- #: admin/cerber-dashboard.php:2057
385
  msgid "Lockouts at the moment"
386
  msgstr "Momentane Sperren"
387
 
388
- #: admin/cerber-dashboard.php:2058
389
  msgid "Last lockout"
390
  msgstr "Letzte Sperre"
391
 
392
- #: admin/cerber-dashboard.php:2062 admin/cerber-dashboard.php:2063
393
- #: admin/cerber-dashboard.php:3100
394
  msgid "entry"
395
  msgid_plural "entries"
396
  msgstr[0] "Eintrag"
@@ -404,15 +396,15 @@ msgstr "Standardeinstellung laden"
404
  msgid "New version is available"
405
  msgstr "Eine neue Version ist verfügbar"
406
 
407
- #: cerber-load.php:4779
408
  msgid "WP Cerber notify"
409
  msgstr "WP Cerber benachrichtigen"
410
 
411
- #: cerber-load.php:4803
412
  msgid "Citadel mode is activated"
413
  msgstr "Citadel-Modus ist aktiviert"
414
 
415
- #: cerber-load.php:4879
416
  msgid "New Custom login URL"
417
  msgstr "Neue benutzerdefinierte Login-URL"
418
 
@@ -426,36 +418,36 @@ msgstr "Verwende Logdatei"
426
  msgid "Write failed login attempts to the file"
427
  msgstr "Schreibe fehlgeschlagene Anmeldungen in die Datei."
428
 
429
- #: admin/cerber-dashboard.php:2829
430
  msgid "Deactivate"
431
  msgstr "Deaktivieren"
432
 
433
- #: cerber-load.php:4838 admin/cerber-dashboard.php:217
434
  msgid "Reason"
435
  msgstr "Grund"
436
 
437
- #: admin/cerber-dashboard.php:1725
438
  msgid "Add IP to the Black List"
439
  msgstr "Füge IP zur Schwarzen Liste hinzu"
440
 
441
- #: cerber-common.php:1900
442
  msgid "Attempt to access"
443
  msgstr "Zugriffsversuch"
444
 
445
- #: cerber-common.php:1899
446
  msgid "Limit on login attempts is reached"
447
  msgstr "Limit für Anmeldeversuche ist erreicht"
448
 
449
- #: cerber-load.php:4837
450
  msgid "Last lockout was added: %s for IP %s"
451
  msgstr "Letzte Sperre wurde hinzugefügt: %s für IP %s"
452
 
453
  #. "Abhärtung" is the medical translation for "hardening" which fits best in this case.
454
- #: admin/cerber-dashboard.php:5197
455
  msgid "Hardening"
456
  msgstr "Abhärtung"
457
 
458
- #: admin/cerber-dashboard.php:1697
459
  msgid "Abuse email:"
460
  msgstr "Missbrauch Email:"
461
 
@@ -493,113 +485,113 @@ msgstr "Zugriff auf den RSS-, den Atom- und den RDF-Feed blockieren"
493
  msgid "Disable REST API"
494
  msgstr "REST API deaktivieren"
495
 
496
- #: cerber-load.php:4868 cerber-load.php:6057
497
  #, fuzzy
498
  msgid "WP Cerber is now active and has started protecting your site"
499
  msgstr "WP Cerber ist nun aktiv und schützt ihre Website"
500
 
501
- #: admin/cerber-dashboard.php:218 admin/cerber-users.php:928
502
  #: admin/cerber-admin.php:774 admin/cerber-admin.php:929
503
  msgid "Action"
504
  msgstr "Aktion"
505
 
506
- #: admin/cerber-dashboard.php:5529
507
  msgid "Incorrect IP address or IP range"
508
  msgstr "Falsche IP-Adresse oder falscher IP-Bereich"
509
 
510
- #: admin/cerber-dashboard.php:2845
511
  msgid "Settings saved"
512
  msgstr "Einstellungen gespeichert"
513
 
514
- #: admin/cerber-dashboard.php:1703
515
  msgid "Network:"
516
  msgstr "Netzwerk:"
517
 
518
- #: admin/cerber-dashboard.php:1719
519
  msgid "Add network to the Black List"
520
  msgstr "Netzwerk zur schwarzen Liste hinzufügen"
521
 
522
- #: admin/cerber-dashboard.php:2828
523
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
524
  msgstr "Achtung! Citadel-Modus ist nun aktiv. Niemand kann sich anmelden."
525
 
526
- #: cerber-whois.php:241 cerber-whois.php:272 cerber-common.php:1924
527
- #: nexus/cerber-slave-list.php:333 admin/cerber-dashboard.php:459
528
- #: admin/cerber-dashboard.php:4133 admin/cerber-dashboard.php:4699
529
  msgid "Unknown"
530
  msgstr "Unbekannt"
531
 
532
- #: cerber-load.php:724 cerber-load.php:737 cerber-load.php:745
533
- #: cerber-load.php:1093 cerber-load.php:1954 cerber-load.php:2277
534
- #: cerber-load.php:3388 cerber-common.php:451 cerber-common.php:550
535
- #: cerber-common.php:555 cerber-common.php:561 cerber-common.php:565
536
  #: nexus/cerber-nexus-slave.php:203 nexus/cerber-nexus-slave.php:214
537
  #: admin/cerber-admin-settings.php:667 admin/cerber-admin-settings.php:687
538
  #: admin/cerber-admin-settings.php:794 admin/cerber-admin.php:875
539
  msgid "ERROR:"
540
  msgstr "FEHLER:"
541
 
542
- #: cerber-load.php:759
543
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
544
  msgstr "Menschlichkeitsnachweis gescheitert. Bitte klicken Sie das quadratische Kästchen im reCAPTCHA-Block unten."
545
 
546
- #: cerber-load.php:1934
547
  msgid "Username is not allowed. Please choose another one."
548
  msgstr "Benutzername ist nicht erlaubt. Bitte einen anderen wählen."
549
 
550
- #: cerber-load.php:4831
551
  msgid "unspecified"
552
  msgstr "nicht spezifiziert"
553
 
554
- #: cerber-load.php:4834
555
  msgid "Number of lockouts is increasing"
556
  msgstr "Anzahl an Sperren steigt an"
557
 
558
- #: cerber-load.php:4839
559
  msgid "View activity for this IP"
560
  msgstr "Zeige Aktivität für diese IP"
561
 
562
- #: cerber-load.php:4843 cerber-load.php:4845
563
  msgid "A new version of WP Cerber is available to install"
564
  msgstr "Eine neue Version von WP Cerber ist zur Installation verfügbar"
565
 
566
- #: cerber-load.php:4844
567
  msgid "Hi!"
568
  msgstr "Hallo!"
569
 
570
  #. Original translation is "Internetseite" but this translation is not up to time.
571
- #: cerber-load.php:4847 cerber-load.php:4858 nexus/cerber-slave-list.php:44
572
  msgid "Website"
573
  msgstr "Website"
574
 
575
- #: cerber-load.php:4850 cerber-load.php:4851
576
  msgid "The WP Cerber security plugin has been deactivated"
577
  msgstr "Das WP Cerber Sicherheits-Plugin wurde deaktiviert"
578
 
579
- #: cerber-load.php:4853
580
  msgid "Not logged in"
581
  msgstr "Nicht angemeldet"
582
 
583
- #: cerber-load.php:4859
584
  #, fuzzy
585
  msgid "By user"
586
  msgstr "Von Nutzer"
587
 
588
- #: cerber-load.php:4860
589
  #, fuzzy
590
  msgid "From IP address"
591
  msgstr "Von IP-Adresse"
592
 
593
- #: cerber-load.php:4863
594
  #, fuzzy
595
  msgid "From country"
596
  msgstr "Vom Land"
597
 
598
- #: cerber-load.php:4867
599
  msgid "The WP Cerber security plugin is now active"
600
  msgstr "Das WP Cerber Sicherheits-Plugin ist nun aktiv"
601
 
602
- #: cerber-load.php:6070
603
  msgid "Import settings"
604
  msgstr "Import-Einstellungen"
605
 
@@ -654,27 +646,27 @@ msgstr "Bevor Sie reCAPTCHA nutzen können, müssen Sie einen Site key und einen
654
  msgid "Know more"
655
  msgstr "Mehr erfahren"
656
 
657
- #: cerber-common.php:1656
658
  msgid "User created"
659
  msgstr "Benutzer erstellt"
660
 
661
- #: cerber-common.php:1659
662
  msgid "User registered"
663
  msgstr "Benutzer registriert"
664
 
665
- #: cerber-common.php:1696 cerber-common.php:1797
666
  msgid "reCAPTCHA verification failed"
667
  msgstr "reCAPTCHA-Bestätigung gescheitert"
668
 
669
- #: cerber-common.php:1697 cerber-common.php:1798
670
  msgid "reCAPTCHA settings are incorrect"
671
  msgstr "reCAPTCHA-Einstellungen sind falsch"
672
 
673
- #: cerber-common.php:1701 cerber-common.php:1901
674
  msgid "Attempt to access prohibited URL"
675
  msgstr "Zugriffsversuch auf verbotene URL"
676
 
677
- #: cerber-common.php:1703 cerber-common.php:1903
678
  msgid "Attempt to log in with prohibited username"
679
  msgstr "Anmeldeversuch mit verbotenem Benutzernamen"
680
 
@@ -710,17 +702,17 @@ msgstr "Aktiviere reCAPTCHA für das WooCommerce Passwort-Vergessen-Formular"
710
  msgid "Enable reCAPTCHA for WooCommerce login form"
711
  msgstr "Aktiviere reCAPTCHA für das WooCommerce Anmeldeformular"
712
 
713
- #: cerber-common.php:1698 cerber-common.php:1799
714
  msgid "Request to the Google reCAPTCHA service failed"
715
  msgstr "Anfrage an den Google reCAPTCHA Dienst gescheitert"
716
 
717
- #: admin/cerber-dashboard.php:1063 admin/cerber-dashboard.php:1074
718
- #: admin/cerber-dashboard.php:1087 admin/cerber-dashboard.php:2705
719
- #: admin/cerber-dashboard.php:4495
720
  msgid "View all"
721
  msgstr "Zeige alle"
722
 
723
- #: admin/cerber-dashboard.php:2713
724
  msgid "Recently locked out IP addresses"
725
  msgstr "Kürzlich ausgesperrte IP-Adressen"
726
 
@@ -735,8 +727,8 @@ msgid "NO, maybe later"
735
  msgstr "NEIN, vielleicht später"
736
 
737
  #. Dashboard is in German more common in this context as the actual translation "Amaturenbrett" which is only used for non-digital things like in cars!
738
- #: admin/cerber-dashboard.php:62 admin/cerber-dashboard.php:2104
739
- #: admin/cerber-dashboard.php:3122 admin/cerber-dashboard.php:5191
740
  #, fuzzy
741
  msgid "Dashboard"
742
  msgstr "Dashboard"
@@ -749,43 +741,43 @@ msgstr "Wollen Sie WP Cerber noch stärker machen?"
749
  msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
750
  msgstr "Erlaube WP Cerber ausgesperrte bösartige IP-Adressen an das Cerber Lab zu senden. Dies hilft dem Plugin-Team neue Algorithmen für WP Cerber zu entwickeln, die WordPress gegen täglich auftretende neue Bedrohungen und Botnets verteidigen. Sie können das Senden jederzeit in den Plugin-Einstellungen deaktivieren."
751
 
752
- #: admin/cerber-dashboard.php:3979
753
  msgid "IP address"
754
  msgstr "IP-Adresse"
755
 
756
- #: admin/cerber-dashboard.php:954
757
  msgid "User login"
758
  msgstr "Benutzer-Anmeldung"
759
 
760
- #: admin/cerber-dashboard.php:955 admin/cerber-dashboard.php:3985
761
  msgid "User ID"
762
  msgstr "Benutzer-ID"
763
 
764
- #: admin/cerber-dashboard.php:1360 admin/cerber-dashboard.php:4521
765
  msgid "Export"
766
  msgstr "Export"
767
 
768
- #: admin/cerber-dashboard.php:1385
769
  msgid "Search for IP or username"
770
  msgstr "Suche nach IP oder Nutzernamen"
771
 
772
- #: admin/cerber-dashboard.php:1396
773
  msgid "Filter"
774
  msgstr "Filter"
775
 
776
- #: admin/cerber-dashboard.php:62
777
  msgid "Cerber Dashboard"
778
  msgstr "Cerber Dashboard"
779
 
780
- #: admin/cerber-dashboard.php:90
781
  msgid "Cerber tools"
782
  msgstr "Cerber Werkzeuge"
783
 
784
- #: cerber-load.php:5687 admin/cerber-users.php:922
785
  msgid "User"
786
  msgstr "Benutzer"
787
 
788
- #: cerber-load.php:5695
789
  msgid "Search string"
790
  msgstr "Such-String"
791
 
@@ -822,11 +814,11 @@ msgstr "Kein Gerät gefunden"
822
  msgid "Not available"
823
  msgstr "Nicht verfügbar"
824
 
825
- #: cerber-common.php:1688
826
  msgid "Password reset requested"
827
  msgstr "Passwort Zurücksetzung angefordert"
828
 
829
- #: cerber-common.php:1904
830
  msgid "Limit on failed reCAPTCHA verifications is reached"
831
  msgstr "Grenze an fehlgeschlagenen reCAPTCHA ist erreicht"
832
 
@@ -866,40 +858,40 @@ msgstr "IP Adresse für %s Minuten nach %s fehlgeschlagenen Versuchen innerhalb
866
  msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
867
  msgstr "Im Citadel Modus kann sich niemand einloggen, außer IPs auf der White IP Zugangsliste. Laufende Sitzungen werden nicht beeinflusst."
868
 
869
- #: admin/cerber-dashboard.php:951 admin/cerber-dashboard.php:1329
870
  msgid "Event"
871
  msgstr "Ereignis"
872
 
873
- #: cerber-common.php:384
874
  msgid "Spam comments denied"
875
  msgstr "Spam Kommentare verweigert"
876
 
877
- #: cerber-common.php:386
878
  msgid "Malicious IP addresses detected"
879
  msgstr "Schadhafte IP Adresse gefunden"
880
 
881
- #: cerber-common.php:387
882
  msgid "Lockouts occurred"
883
  msgstr "Sperre aufgetreten"
884
 
885
- #: cerber-load.php:1913 cerber-load.php:1919 cerber-load.php:1924
886
- #: cerber-load.php:1944 cerber-load.php:1949
887
  msgid "You are not allowed to register."
888
  msgstr "Registrierung nicht erlaubt."
889
 
890
- #: cerber-common.php:1673
891
  msgid "Spam comment denied"
892
  msgstr "Spam Kommentar verweigert"
893
 
894
- #: cerber-common.php:1706
895
  msgid "Attempt to log in denied"
896
  msgstr "Loginversuch verweigert"
897
 
898
- #: cerber-common.php:1707
899
  msgid "Attempt to register denied"
900
  msgstr "Registrierungsversuch verweigert"
901
 
902
- #: cerber-common.php:381
903
  msgid "Malicious activities mitigated"
904
  msgstr "Schadhafte Aktivitäten gemildert"
905
 
@@ -915,20 +907,20 @@ msgstr "Schützen Sie das Kommentarformular mit der Bot-Erkennung"
915
  msgid "Protect registration form with bot detection engine"
916
  msgstr "Schützen Sie das Registrierungsformular mit Bot-Erkennung"
917
 
918
- #: admin/cerber-dashboard.php:5381
919
  msgid "Diagnostic"
920
  msgstr "Diagnose"
921
 
922
- #: admin/cerber-dashboard.php:5384
923
  msgid "License"
924
  msgstr "Lizenz"
925
 
926
- #: cerber-load.php:2277
927
  msgid "Sorry, human verification failed."
928
  msgstr "Entschuldigung, der Menschlichkeitsnachweis ist fehlgeschlagen.\n"
929
  ""
930
 
931
- #: cerber-common.php:1905
932
  msgid "Bot activity is detected"
933
  msgstr "Bot-Aktivität wurde erkannt"
934
 
@@ -948,7 +940,7 @@ msgstr "Spam-Kommentar in den Papierkorb legen"
948
  msgid "Move spam comments to trash after"
949
  msgstr "Verschieben Sie die Spam-Kommentare anschließend in den Papierkorb"
950
 
951
- #: cerber-common.php:1674
952
  msgid "Spam form submission denied"
953
  msgstr "Spam in Formular geblockt"
954
 
@@ -968,55 +960,55 @@ msgstr "Abgesicherter Modus"
968
  msgid "Use less restrictive policies (allow AJAX)"
969
  msgstr "Weniger restriktive Richtlinien verwenden (AJAX zulassen)"
970
 
971
- #: admin/cerber-dashboard.php:215 admin/cerber-dashboard.php:1327
972
  msgid "Country"
973
  msgstr "Land"
974
 
975
- #: admin/cerber-dashboard.php:69
976
  msgid "Cerber Security Rules"
977
  msgstr "Cerber Sicherheitsregeln"
978
 
979
- #: admin/cerber-dashboard.php:69 admin/cerber-dashboard.php:5308
980
  msgid "Security Rules"
981
  msgstr "Sicherheitsregeln"
982
 
983
- #: admin/cerber-dashboard.php:1932
984
  msgid "Failed login attempts"
985
  msgstr "Fehlgeschlagene Anmeldeversuche"
986
 
987
- #: admin/cerber-dashboard.php:1856 admin/cerber-dashboard.php:1933
988
  msgid "Registered"
989
  msgstr "Registriert"
990
 
991
- #: admin/cerber-dashboard.php:1980 admin/cerber-users.php:52
992
- #: admin/cerber-users.php:1081
993
  msgid "You"
994
  msgstr "Du"
995
 
996
- #: cerber-common.php:385
997
  msgid "Spam form submissions denied"
998
  msgstr "Spam Formular-Übermittlungen verweigert\n"
999
  ""
1000
 
1001
- #: cerber-load.php:4870 cerber-load.php:6061
1002
  msgid "Getting Started Guide"
1003
  msgstr "Leitfaden für den Einstieg"
1004
 
1005
- #: admin/cerber-dashboard.php:5310
1006
  msgid "Countries"
1007
  msgstr "Länder"
1008
 
1009
- #: admin/cerber-dashboard.php:3708
1010
  msgid "Permitted for one country"
1011
  msgid_plural "Permitted for %d countries"
1012
  msgstr[0] "Erlaubt für ein Land"
1013
  msgstr[1] "Erlaubt für %d Länder"
1014
 
1015
- #: admin/cerber-dashboard.php:3719
1016
  msgid "No rule"
1017
  msgstr "Keine Regel"
1018
 
1019
- #: admin/cerber-dashboard.php:3880
1020
  msgid "Security rules have been updated"
1021
  msgstr "Sicherheitsregeln wurden aktualisiert"
1022
 
@@ -1025,43 +1017,43 @@ msgstr "Sicherheitsregeln wurden aktualisiert"
1025
  msgid "https://wpcerber.com"
1026
  msgstr "https://wpcerber.com"
1027
 
1028
- #: cerber-common.php:1675
1029
  msgid "Form submission denied"
1030
  msgstr "Formular-Übermittlung verweigert"
1031
 
1032
- #: cerber-common.php:1676
1033
  msgid "Comment denied"
1034
  msgstr "Kommentar verweigert"
1035
 
1036
- #: cerber-common.php:1712
1037
  msgid "Request to REST API denied"
1038
  msgstr "Anfrage an REST API verweigert"
1039
 
1040
- #: cerber-common.php:1746
1041
  msgid "Bot detected"
1042
  msgstr "Bot erkannt"
1043
 
1044
- #: cerber-common.php:1747
1045
  msgid "Citadel mode is active"
1046
  msgstr "Citadel-Modus ist aktiv"
1047
 
1048
- #: cerber-common.php:1751
1049
  msgid "Malicious activity detected"
1050
  msgstr "Bösartige Aktivität entdeckt"
1051
 
1052
- #: cerber-common.php:1752
1053
  msgid "Blocked by country rule"
1054
  msgstr "Gesperrt durch Länderregel"
1055
 
1056
- #: cerber-common.php:1753
1057
  msgid "Limit reached"
1058
  msgstr "Limit erreicht"
1059
 
1060
- #: cerber-common.php:1754
1061
  msgid "Multiple suspicious activities"
1062
  msgstr "Mehrere verdächtige Aktivitäten"
1063
 
1064
- #: cerber-common.php:1906
1065
  msgid "Multiple suspicious activities were detected"
1066
  msgstr "Mehrere verdächtige Aktivitäten erkannt"
1067
 
@@ -1073,10 +1065,6 @@ msgstr "Geben Sie die REST API Namespaces an, die zugelassen werden sollen, fall
1073
  msgid "Registration limit"
1074
  msgstr "Registrierungs-Beschränkung"
1075
 
1076
- #: cerber-settings.php:694
1077
- msgid "Sort users in dashboard"
1078
- msgstr "Benutzer im Dashboard sortieren"
1079
-
1080
  #: cerber-settings.php:695
1081
  msgid "by date of registration"
1082
  msgstr "nach Registrierungsdatum"
@@ -1085,31 +1073,31 @@ msgstr "nach Registrierungsdatum"
1085
  msgid "Query whitelist"
1086
  msgstr "IP Whitelist abfragen"
1087
 
1088
- #: admin/cerber-dashboard.php:3688
1089
  msgid "Start typing here to find a country"
1090
  msgstr "Beginnen Sie hier mit der Eingabe, um ein Land zu finden"
1091
 
1092
- #: admin/cerber-dashboard.php:3803
1093
  msgid "Click on a country name to add it to the list of selected countries"
1094
  msgstr "Klicken Sie auf einen Ländernamen, um ihn zur Liste der ausgewählten Länder hinzuzufügen"
1095
 
1096
- #: admin/cerber-dashboard.php:3835
1097
  msgid "Submit forms"
1098
  msgstr "Formulare absenden"
1099
 
1100
- #: admin/cerber-dashboard.php:3836
1101
  msgid "Post comments"
1102
  msgstr "Kommentare veröffentlichen"
1103
 
1104
- #: admin/cerber-dashboard.php:3834
1105
  msgid "Register on the website"
1106
  msgstr "Auf der Website registrieren"
1107
 
1108
- #: admin/cerber-dashboard.php:3837
1109
  msgid "Use XML-RPC"
1110
  msgstr "XML-RPC benutzen"
1111
 
1112
- #: admin/cerber-dashboard.php:3838
1113
  msgid "Use REST API"
1114
  msgstr "REST API benutzen"
1115
 
@@ -1121,7 +1109,7 @@ msgstr "Alles verbieten"
1121
  msgid "Mark it as spam"
1122
  msgstr "Als Spam markieren"
1123
 
1124
- #: admin/cerber-dashboard.php:3123
1125
  msgid "Main settings"
1126
  msgstr "Haupteinstellungen"
1127
 
@@ -1133,23 +1121,23 @@ msgstr "Wöchentliche Berichte"
1133
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1134
  msgstr "Wenn Sie ein Caching-Plugin verwenden, müssen Sie Ihre neue Anmelde-URL zur Liste der Seiten hinzufügen, die nicht gecached werden sollen."
1135
 
1136
- #: cerber-load.php:4889
1137
  msgid "Weekly report"
1138
  msgstr "Wöchentlicher Bericht"
1139
 
1140
- #: cerber-load.php:4892 cerber-load.php:4900
1141
  msgid "To change reporting settings visit"
1142
  msgstr "Um die Einstellungen für die Berichte zu ändern besuchen Sie"
1143
 
1144
- #: cerber-load.php:4926
1145
  msgid "Your login page:"
1146
  msgstr "Ihre Anmeldeseite:"
1147
 
1148
- #: cerber-load.php:4931
1149
  msgid "Your license is valid until"
1150
  msgstr "Ihre Lizenz ist gültig bis"
1151
 
1152
- #: cerber-load.php:5037
1153
  msgid "Activity details"
1154
  msgstr "Aktivitätsdetails"
1155
 
@@ -1157,31 +1145,31 @@ msgstr "Aktivitätsdetails"
1157
  msgid "Click to send now"
1158
  msgstr "Klicken Sie, um jetzt zu senden"
1159
 
1160
- #: admin/cerber-dashboard.php:673
1161
  msgid "Email has been sent to"
1162
  msgstr "E-Mail wurde gesendet an"
1163
 
1164
- #: admin/cerber-dashboard.php:676
1165
  msgid "Unable to send email to"
1166
  msgstr "E-Mail kann nicht gesendet werden an"
1167
 
1168
- #: admin/cerber-dashboard.php:3711
1169
  msgid "Not permitted for one country"
1170
  msgid_plural "Not permitted for %d countries"
1171
  msgstr[0] "Nicht erlaubt für 1 Land"
1172
  msgstr[1] "Nicht erlaubt für %d Länder"
1173
 
1174
- #: admin/cerber-dashboard.php:3807
1175
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1176
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1177
  msgstr "Ausgewählte Länder dürfen %s, anderen Ländern ist es nicht erlaubt"
1178
 
1179
- #: admin/cerber-dashboard.php:3810
1180
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1181
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1182
  msgstr "Ausgewählte Länder dürfen nicht %s, anderen Ländern ist es erlaubt"
1183
 
1184
- #: cerber-load.php:5025
1185
  msgid "Weekly Report"
1186
  msgstr "Wöchentlicher Bericht"
1187
 
@@ -1201,15 +1189,15 @@ msgstr "Geben Sie einen Teil eines Query Strings oder eines Query Paths ein, um
1201
  msgid "Enable reporting"
1202
  msgstr "Berichte aktivieren"
1203
 
1204
- #: cerber-load.php:4955
1205
  msgid "Your last sign-in was %s from %s"
1206
  msgstr "Ihre letzte Anmeldung war am %s von %s aus"
1207
 
1208
- #: admin/cerber-dashboard.php:345
1209
  msgid "Optional comment for this entry"
1210
  msgstr "Optionaler Kommentar zu diesem Eintrag"
1211
 
1212
- #: admin/cerber-dashboard.php:367
1213
  msgid "You cannot add your IP address or network"
1214
  msgstr "Sie können Ihre IP-Adresse oder Ihr Netzwerk nicht hinzufügen."
1215
 
@@ -1217,52 +1205,52 @@ msgstr "Sie können Ihre IP-Adresse oder Ihr Netzwerk nicht hinzufügen."
1217
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1218
  msgstr "Um einen REGEX-Ausdruck zu definieren umschliessen Sie diesen mit zwei Vorwärts-Schrägstrichen"
1219
 
1220
- #: admin/cerber-dashboard.php:64
1221
  msgid "Cerber Traffic Inspector"
1222
  msgstr "Cerber Traffic Inspektor"
1223
 
1224
- #: admin/cerber-dashboard.php:64 admin/cerber-dashboard.php:2067
1225
- #: admin/cerber-dashboard.php:5262
1226
  msgid "Traffic Inspector"
1227
  msgstr "Traffic Inspektor"
1228
 
1229
- #: admin/cerber-dashboard.php:2106 admin/cerber-users.php:1115
1230
  msgid "Traffic"
1231
  msgstr "Traffic"
1232
 
1233
- #: admin/cerber-dashboard.php:4463
1234
  msgid "Request"
1235
  msgstr "Anfrage"
1236
 
1237
- #: admin/cerber-dashboard.php:4465 admin/cerber-users.php:927
1238
  msgid "Host Info"
1239
  msgstr "Host-Informationen"
1240
 
1241
- #: admin/cerber-dashboard.php:4466
1242
  msgid "User Agent"
1243
  msgstr "User Agent"
1244
 
1245
- #: admin/cerber-dashboard.php:4500
1246
  msgid "Form submissions"
1247
  msgstr "Formularübermittlungen"
1248
 
1249
- #: admin/cerber-dashboard.php:4501
1250
  msgid "Page Not Found"
1251
  msgstr "Seite nicht gefunden"
1252
 
1253
- #: admin/cerber-dashboard.php:4508
1254
  msgid "Longer than"
1255
  msgstr "Länger als"
1256
 
1257
- #: admin/cerber-dashboard.php:4527
1258
  msgid "Refresh"
1259
  msgstr "Aktualisieren"
1260
 
1261
- #: cerber-common.php:288 admin/cerber-dashboard.php:1373
1262
  msgid "Check for requests"
1263
  msgstr "Auf Anfragen prüfen"
1264
 
1265
- #: admin/cerber-dashboard.php:4562
1266
  msgid "Not specified"
1267
  msgstr "Nicht spezifiziert"
1268
 
@@ -1302,23 +1290,19 @@ msgstr "Anforderungsfeld speichern"
1302
  msgid "Page generation time threshold"
1303
  msgstr "Seitengenerierung Zeitschwelle"
1304
 
1305
- #: admin/cerber-dashboard.php:4488
1306
- msgid "No requests have been logged."
1307
- msgstr "Es wurden keine Anforderungen aufgezeichnet"
1308
-
1309
- #: admin/cerber-dashboard.php:2066
1310
  msgid "enabled"
1311
  msgstr "aktiviert"
1312
 
1313
- #: admin/cerber-dashboard.php:2071
1314
  msgid "no connection"
1315
  msgstr "keine Verbindung"
1316
 
1317
- #: admin/cerber-dashboard.php:1884
1318
  msgid "Last seen"
1319
  msgstr "Zuletzt gesehen"
1320
 
1321
- #: cerber-load.php:4668
1322
  msgid "We're sorry, you are not allowed to proceed"
1323
  msgstr "Es tut uns leid, aber Sie dürfen nicht fortfahren"
1324
 
@@ -1350,23 +1334,23 @@ msgstr "Admin-Skripte schützen"
1350
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1351
  msgstr "Nicht autorisierten Zugang zu load.scripts.php und load-styles.php blockieren"
1352
 
1353
- #: cerber-common.php:3272
1354
  msgid "Unable to create the directory"
1355
  msgstr "Kann Verzeichnis nicht erstellen"
1356
 
1357
- #: cerber-common.php:3277
1358
  msgid "Destination folder access denied"
1359
  msgstr "Zugang zum Zielordner verweigert"
1360
 
1361
- #: cerber-common.php:3280
1362
  msgid "File not found"
1363
  msgstr "Datei nicht gefunden"
1364
 
1365
- #: cerber-common.php:3283
1366
  msgid "Unable to copy the file"
1367
  msgstr "Konnte Datei nicht kopieren"
1368
 
1369
- #: cerber-common.php:3289
1370
  msgid "Unable to delete the file"
1371
  msgstr "Konnte Datei nicht löschen"
1372
 
@@ -1386,7 +1370,7 @@ msgstr "Standard-Modus"
1386
  msgid "Plugin initialization mode has not been changed"
1387
  msgstr "Plugin-Initialisierungsmodus wurde nicht geändert"
1388
 
1389
- #: cerber-common.php:1710
1390
  msgid "File upload denied"
1391
  msgstr "Datei-Upload abgelehnt"
1392
 
@@ -1402,27 +1386,27 @@ msgstr "Seien Sie vorsichtig mit der Aktivierung dieser Optionen."
1402
  msgid "If you forget your Custom login URL, you will be unable to log in."
1403
  msgstr "Falls Sie Ihre individuelle Login-URL vergessen, können Sie sich nicht einloggen."
1404
 
1405
- #: admin/cerber-dashboard.php:75 admin/cerber-dashboard.php:5323
1406
  msgid "Site Integrity"
1407
  msgstr "Integrität der Seite"
1408
 
1409
  #: cerber-scanner.php:1717 cerber-settings.php:683 cerber-settings.php:825
1410
  #: cerber-settings.php:856 cerber-settings.php:990 cerber-settings.php:999
1411
- #: cerber-settings.php:1466 admin/cerber-dashboard.php:2091
1412
- #: admin/cerber-dashboard.php:2093 admin/cerber-users.php:20
1413
  #: admin/cerber-users.php:474 admin/cerber-users.php:488
1414
  msgid "Disabled"
1415
  msgstr "Deaktiviert"
1416
 
1417
- #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2092
1418
  msgid "Quick Scan"
1419
  msgstr "Quick Scan"
1420
 
1421
- #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2094
1422
  msgid "Full Scan"
1423
  msgstr "Komplettscan"
1424
 
1425
- #: cerber-common.php:1755
1426
  msgid "Denied"
1427
  msgstr "Verweigert"
1428
 
@@ -1523,11 +1507,11 @@ msgstr "Dateigrößen einschließen"
1523
  msgid "Include scan errors"
1524
  msgstr "Scan-Fehler einschließen"
1525
 
1526
- #: admin/cerber-dashboard.php:5325
1527
  msgid "Security Scanner"
1528
  msgstr "Sicherheits-Scanner"
1529
 
1530
- #: admin/cerber-dashboard.php:5327
1531
  msgid "Scheduling"
1532
  msgstr "Planung"
1533
 
@@ -1559,7 +1543,8 @@ msgstr "Scan unterbrechen"
1559
  msgid "Continue Scanning"
1560
  msgstr "Scan fortsetzen"
1561
 
1562
- #: admin/cerber-tools.php:350 admin/cerber-admin.php:227
 
1563
  msgid "Delete"
1564
  msgstr "Löschen"
1565
 
@@ -1671,7 +1656,7 @@ msgstr "Dateizugangsfehler. Mögliche Scan-Ergebnisse sind veraltet. Bitte start
1671
  msgid "To view full report visit"
1672
  msgstr "Um den gesamten Bericht einzusehen, besuchen Sie"
1673
 
1674
- #: cerber-load.php:4897
1675
  msgid "Scanner Report"
1676
  msgstr "Scanner Bericht"
1677
 
@@ -1735,40 +1720,40 @@ msgstr "Quick-Scan Bericht"
1735
  msgid "Files scanned"
1736
  msgstr "Dateien gescannt"
1737
 
1738
- #: admin/cerber-dashboard.php:327 admin/cerber-dashboard.php:1647
1739
- #: admin/cerber-dashboard.php:1704 admin/cerber-dashboard.php:1835
1740
  msgid "Check for activities"
1741
  msgstr "Auf Aktivitäten prüfen"
1742
 
1743
- #: admin/cerber-dashboard.php:1866
1744
  msgid "Activated"
1745
  msgstr "Aktiviert"
1746
 
1747
- #: cerber-common.php:1721
1748
  msgid "Malicious request denied"
1749
  msgstr "Schädliche Anforderung verweigert"
1750
 
1751
- #: cerber-common.php:1735
1752
  msgid "User activated"
1753
  msgstr "Nutzer aktiviert"
1754
 
1755
- #: cerber-common.php:1757
1756
  msgid "Suspicious number of fields"
1757
  msgstr "Verdächtige Anzahl an Feldern"
1758
 
1759
- #: cerber-common.php:1758
1760
  msgid "Suspicious number of nested values"
1761
  msgstr "Verdächtige Anzahl an verschachtelten Werten"
1762
 
1763
- #: cerber-common.php:1759 cerber-common.php:1908
1764
  msgid "Malicious code detected"
1765
  msgstr "Schädlicher Code entdeckt"
1766
 
1767
- #: cerber-common.php:1909
1768
  msgid "Attempt to upload a file with malicious code"
1769
  msgstr "Versuch eine Datei mit schädlichem Code hochzuladen"
1770
 
1771
- #: cerber-common.php:2192
1772
  msgid "Bytes"
1773
  msgstr "Bytes"
1774
 
@@ -1788,11 +1773,11 @@ msgstr "Automatisierter wiederkehrender Scan-Zeitplan"
1788
  msgid "Scan results reporting"
1789
  msgstr "Scan Ergebnisberichte"
1790
 
1791
- #: admin/cerber-dashboard.php:1084
1792
  msgid "Suspicious activity"
1793
  msgstr "Verdächtige Aktivität"
1794
 
1795
- #: admin/cerber-dashboard.php:4497
1796
  msgid "Errors"
1797
  msgstr "Fehler"
1798
 
@@ -1801,11 +1786,11 @@ msgstr "Fehler"
1801
  msgid "Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications."
1802
  msgstr "Schützt WordPress vor Hackerangriffen, Spam, Trojanern und Viren. Malware-Scanner und Integritätsüberprüfer. Verstärkt WordPress mit einer Reihe umfassender Sicherheitsalgorithmen. Spam-Schutz mit fortschrittlicher Bot-Erkennungs-Engine und reCAPTCHA. Trackt Nutzer- und Eindringlingsaktivität mit leistungsstarken E-Mail-, Mobil- und Desktopbenachrichtigungen."
1803
 
1804
- #: cerber-load.php:375
1805
  msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
1806
  msgstr "Sie haben die Anzahl erlaubter Login-Versuche überschritten. Bitte versuchen Sie es in %d Minuten erneut."
1807
 
1808
- #: cerber-common.php:2072
1809
  msgctxt "preposition of a period of time like: in 6 hours"
1810
  msgid "in %s"
1811
  msgstr "in %s"
@@ -1815,7 +1800,7 @@ msgctxt "preposition of time like: at 11:00"
1815
  msgid "at"
1816
  msgstr "um"
1817
 
1818
- #: admin/cerber-dashboard.php:5330
1819
  msgid "Quarantine"
1820
  msgstr "Quarantäne"
1821
 
@@ -1888,15 +1873,15 @@ msgstr "Die Datei wurde dauerhaft gelöscht."
1888
  msgid "The file has been restored to its original location."
1889
  msgstr "Die Datei wurde an ihrem ursprünglichen Speicherort wiederhergestellt."
1890
 
1891
- #: admin/cerber-dashboard.php:2107
1892
  msgid "Integrity"
1893
  msgstr "Integrität"
1894
 
1895
- #: cerber-common.php:1709
1896
  msgid "Attempt to upload malicious file denied"
1897
  msgstr "Versuch schädliche Datei hochzuladen verweigert"
1898
 
1899
- #: cerber-load.php:8120
1900
  msgid "Awesome!"
1901
  msgstr "Super!"
1902
 
@@ -1924,7 +1909,7 @@ msgstr "Dateien mit diesen Erweiterungen"
1924
  msgid "Use comma to separate items."
1925
  msgstr "Separate Elemente mit Komma trennen"
1926
 
1927
- #: admin/cerber-dashboard.php:5328
1928
  msgid "Cleaning up"
1929
  msgstr "Bereinigen"
1930
 
@@ -1956,16 +1941,16 @@ msgstr "Gelöscht"
1956
  msgid "Automatically moved to quarantine"
1957
  msgstr "Automatisch in Quarantäne verschoben"
1958
 
1959
- #: cerber-common.php:1760
1960
  msgid "Suspicious SQL code detected"
1961
  msgstr "Verdächtiger SQL-Code entdeckt"
1962
 
1963
- #: admin/cerber-dashboard.php:2088
1964
  msgctxt "Example: Last malware scan: 23 Jan 2018"
1965
  msgid "Last malware scan"
1966
  msgstr "Letzer Malware-Scan"
1967
 
1968
- #: admin/cerber-dashboard.php:5264
1969
  msgid "Live Traffic"
1970
  msgstr "Live-Traffic"
1971
 
@@ -1977,7 +1962,7 @@ msgstr "PHP in Uploads deaktivieren"
1977
  msgid "Disable PHP error displaying"
1978
  msgstr "PHP-Fehleranzeige deaktivieren"
1979
 
1980
- #: admin/cerber-dashboard.php:5329
1981
  msgid "Ignore List"
1982
  msgstr "Liste ignorieren"
1983
 
@@ -2010,35 +1995,35 @@ msgstr "Trafficeinblicke"
2010
  msgid "Activity Insights"
2011
  msgstr "Aktivitäteneinblicke"
2012
 
2013
- #: admin/cerber-dashboard.php:3268
2014
  msgid "Are you sure you want to delete selected files?"
2015
  msgstr "Sind Sie sicher, dass Sie die ausgewählten Dateien löschen möchten?"
2016
 
2017
- #: admin/cerber-dashboard.php:3269
2018
  msgid "These files have been moved to the quarantine"
2019
  msgstr "Diese Dateien wurden in die Quarantäne verschoben"
2020
 
2021
- #: admin/cerber-dashboard.php:3272
2022
  msgid "Do you want to add selected files to the ignore list?"
2023
  msgstr "Möchten Sie die ausgewählten Dateien der Ignore-List hinzufügen?"
2024
 
2025
- #: admin/cerber-dashboard.php:3273
2026
  msgid "These files have been added to the ignore list"
2027
  msgstr "Diese Dateien wurden der Ignore-List hinzugefügt"
2028
 
2029
- #: admin/cerber-dashboard.php:3275
2030
  msgid "Some errors occurred"
2031
  msgstr "Es sind einige Fehler aufgetreten"
2032
 
2033
- #: admin/cerber-dashboard.php:3276
2034
  msgid "All files have been processed"
2035
  msgstr "Alle Dateien wurden verarbeitet"
2036
 
2037
- #: admin/cerber-dashboard.php:5669
2038
  msgid "Know more about all advantages at"
2039
  msgstr "Erfahren Sie mehr über alle Vorteile bei"
2040
 
2041
- #: cerber-common.php:1761
2042
  msgid "Suspicious JavaScript code detected"
2043
  msgstr "Verdächtiger JavaScript-Code entdeckt"
2044
 
@@ -2062,39 +2047,39 @@ msgstr "Es stimmen keine Dateien mit dem eingestellten Filter überein."
2062
  msgid "Click here to see the full list of files"
2063
  msgstr "Klicken Sie hier, um die vollständige Dateienliste zu sehen"
2064
 
2065
- #: admin/cerber-dashboard.php:952
2066
  msgid "Additional Details"
2067
  msgstr "Weitere Details"
2068
 
2069
- #: admin/cerber-dashboard.php:3986
2070
  msgid "Page generation time"
2071
  msgstr "Seitengenerierungszeit"
2072
 
2073
- #: admin/cerber-dashboard.php:5844
2074
  msgid "Log In"
2075
  msgstr "Einloggen"
2076
 
2077
- #: admin/cerber-dashboard.php:5845
2078
  msgid "Log Out"
2079
  msgstr "Ausloggen"
2080
 
2081
- #: admin/cerber-dashboard.php:5846
2082
  msgid "Register"
2083
  msgstr "Registrieren"
2084
 
2085
- #: admin/cerber-dashboard.php:5849
2086
  msgid "WooCommerce Log In"
2087
  msgstr "WooCommerce Login"
2088
 
2089
- #: admin/cerber-dashboard.php:5850
2090
  msgid "WooCommerce Log Out"
2091
  msgstr "WooCommerce Logout"
2092
 
2093
- #: cerber-common.php:1749
2094
  msgid "IP address is locked out"
2095
  msgstr "IP-Adresse ist ausgesperrt"
2096
 
2097
- #: cerber-common.php:1912
2098
  msgid "Multiple suspicious requests"
2099
  msgstr "Mehrere Verdächtige Anfragen"
2100
 
@@ -2126,11 +2111,11 @@ msgstr "Software-Fehler speichern"
2126
  msgid "Preparing for the scan"
2127
  msgstr "Für den Scan vorbereiten"
2128
 
2129
- #: cerber-common.php:1762
2130
  msgid "Blocked by administrator"
2131
  msgstr "Vom Administrator blockiert"
2132
 
2133
- #: cerber-load.php:379
2134
  msgid "You are not allowed to log in"
2135
  msgstr "Sie dürfen sich nicht einloggen"
2136
 
@@ -2182,7 +2167,7 @@ msgstr "Diese Einschränkungen gelten nicht für IP-Adressen auf der White IP Zu
2182
  msgid "Select one or more roles"
2183
  msgstr "Eine oder mehrere Rollen auswählen"
2184
 
2185
- #: admin/cerber-dashboard.php:1384 admin/cerber-users.php:970
2186
  msgid "Filter by registered user"
2187
  msgstr "Nach registriertem Nutzer filtern"
2188
 
@@ -2202,19 +2187,19 @@ msgstr "Nur registrierte und eingeloggte Nutzer dürfen sich diese Website anseh
2202
  msgid "Redirect to URL"
2203
  msgstr "An URL weiterleiten"
2204
 
2205
- #: admin/cerber-dashboard.php:5383
2206
  msgid "Changelog"
2207
  msgstr "Änderungsprotokoll"
2208
 
2209
- #: admin/cerber-dashboard.php:743
2210
  msgid "Default settings have been loaded"
2211
  msgstr "Standardeinstellungen wurden geladen"
2212
 
2213
- #: admin/cerber-dashboard.php:3695
2214
  msgid "Save all rules"
2215
  msgstr "Alle Regeln speichern"
2216
 
2217
- #: cerber-common.php:1738
2218
  msgid "Invalid master credentials"
2219
  msgstr "Ungültige Master-Anmeldedaten"
2220
 
@@ -2266,7 +2251,7 @@ msgstr "WordPress"
2266
  msgid "Malware Scan"
2267
  msgstr "Malware-Scan"
2268
 
2269
- #: nexus/cerber-nexus-master.php:141 nexus/cerber-slave-list.php:56
2270
  msgid "Notes"
2271
  msgstr "Notizen"
2272
 
@@ -2274,7 +2259,7 @@ msgstr "Notizen"
2274
  msgid "Add a slave website"
2275
  msgstr "Eine Slave-Website hinzufügen"
2276
 
2277
- #: nexus/cerber-slave-list.php:247 admin/cerber-users.php:1036
2278
  msgid "Search results for:"
2279
  msgstr "Ergebnisse suchen für:"
2280
 
@@ -2294,69 +2279,69 @@ msgstr "Keine Websites konfiguriert."
2294
  msgid "Add a new one"
2295
  msgstr "Eine neue hinzufügen"
2296
 
2297
- #: nexus/cerber-nexus-master.php:104
2298
  msgid "Website Properties"
2299
  msgstr "Website-Eigenschaften"
2300
 
2301
- #: nexus/cerber-nexus-master.php:114
2302
  msgid "Website URL"
2303
  msgstr "Website URL"
2304
 
2305
- #: nexus/cerber-nexus-master.php:119
2306
  msgid "Display as"
2307
  msgstr "Anzeigen als"
2308
 
2309
- #: nexus/cerber-nexus-master.php:149
2310
  msgid "Website Owner"
2311
  msgstr "Website-Eigentümer"
2312
 
2313
- #: nexus/cerber-nexus-master.php:165
2314
  msgid "Phone"
2315
  msgstr "Telefon"
2316
 
2317
- #: nexus/cerber-nexus-master.php:173
2318
  msgid "Address"
2319
  msgstr "Adresse"
2320
 
2321
- #: nexus/cerber-nexus-master.php:316
2322
  msgid "The website you are trying to add is already in the list"
2323
  msgstr "Die Website, die Sie hinzufügen möchten, ist bereits auf der Liste"
2324
 
2325
- #: nexus/cerber-nexus-master.php:325
2326
  msgid "The website has been added successfully"
2327
  msgstr "Die Website wurde erfolgreich hinzugefügt"
2328
 
2329
- #: nexus/cerber-nexus-master.php:326
2330
  msgid "Click to edit"
2331
  msgstr "Zum Bearbeiten klicken"
2332
 
2333
- #: nexus/cerber-nexus-master.php:327
2334
  msgid "Switch to the Dashboard"
2335
  msgstr "Auf das Dashboard wechseln"
2336
 
2337
- #: nexus/cerber-nexus-master.php:330
2338
  msgid "Keep in mind: You have added the website that does not support SSL encryption. This may lead to data leakage."
2339
  msgstr "Bitte beachten Sie: Sie haben eine Website hinzugefügt, die keine SSL-Verschlüsselung unterstützt. Diese könnte zu Datenverlust fühlen."
2340
 
2341
- #: nexus/cerber-nexus-master.php:449
2342
  msgid "Website has been deleted"
2343
  msgid_plural "%s websites have been deleted"
2344
  msgstr[0] "Website wurde gelöscht"
2345
  msgstr[1] "Plural: %s Websites wurden gelöscht"
2346
 
2347
- #: nexus/cerber-nexus-master.php:1042
2348
  msgid "You have switched to %s"
2349
  msgstr "Sie sind gewechselt auf %s"
2350
 
2351
- #: nexus/cerber-nexus-master.php:1052
2352
  msgid "You have switched back to the master website"
2353
  msgstr "Sie sind auf die Master-Website gewechselt"
2354
 
2355
- #: nexus/cerber-nexus-master.php:1268
2356
  msgid "You are here:"
2357
  msgstr "Sie sind hier:"
2358
 
2359
- #: nexus/cerber-nexus-master.php:1271 nexus/cerber-nexus.php:94
2360
  #: nexus/cerber-nexus.php:104
2361
  msgid "My Websites"
2362
  msgstr "Meine Websites"
@@ -2418,7 +2403,7 @@ msgid "Install the access token on the master website."
2418
  msgstr "Den Zugriffs-Token auf der Master-Website installieren."
2419
 
2420
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
2421
- #: cerber-common.php:2065
2422
  msgid "%s sec"
2423
  msgid_plural "%s secs"
2424
  msgstr[0] "%s Sek"
@@ -2432,7 +2417,7 @@ msgstr "Berichte senden an"
2432
  msgid "Updates"
2433
  msgstr "Updates"
2434
 
2435
- #: nexus/cerber-nexus-master.php:127 nexus/cerber-slave-list.php:54
2436
  msgid "Group"
2437
  msgstr "Gruppe"
2438
 
@@ -2452,7 +2437,7 @@ msgstr "Website löschen"
2452
  msgid "All groups"
2453
  msgstr "Alle Gruppen"
2454
 
2455
- #: nexus/cerber-nexus-master.php:1352
2456
  msgid "Are you sure you want to delete selected websites?"
2457
  msgstr "Sind Sie sicher, dass Sie die ausgewählten Websites löschen möchten?"
2458
 
@@ -2460,23 +2445,23 @@ msgstr "Sind Sie sicher, dass Sie die ausgewählten Websites löschen möchten?"
2460
  msgid "Block"
2461
  msgstr "Blockieren"
2462
 
2463
- #: nexus/cerber-nexus-master.php:96
2464
  msgid "Select an existing group or enter a new one to add it"
2465
  msgstr "Wählen Sie eine bestehende Gruppe aus oder tragen Sie eine neue ein, um sie hinzuzufügen"
2466
 
2467
- #: nexus/cerber-nexus-master.php:169
2468
  msgid "Company"
2469
  msgstr "Unternehmen"
2470
 
2471
- #: nexus/cerber-nexus-master.php:694
2472
  msgid "Invalid response from the slave website"
2473
  msgstr "Ungültige Antwort von der Slave-Website"
2474
 
2475
- #: cerber-common.php:1702 cerber-common.php:1902
2476
  msgid "Attempt to log in with non-existing username"
2477
  msgstr "Login-Versuch mit nicht existierendem Nutzernamen"
2478
 
2479
- #: cerber-load.php:5051
2480
  msgid "Attempts to log in with non-existing usernames"
2481
  msgstr "Login-Versuche mit nicht existierenden Nutzernamen"
2482
 
@@ -2508,39 +2493,39 @@ msgstr "Um den Token aufzuheben und die Fernverwaltung zu deaktivieren, klicken
2508
  msgid "Block execution of PHP scripts in the WordPress media folder"
2509
  msgstr "Blockieren der Ausführung von PHP-Skripten im WordPress-Medienordner"
2510
 
2511
- #: nexus/cerber-nexus-master.php:1419 nexus/cerber-nexus-master.php:1427
2512
  msgid "Active plugins and updates on"
2513
  msgstr "Aktive Plugins und Updates auf"
2514
 
2515
- #: nexus/cerber-nexus-master.php:1397
2516
  msgid "A newer version is available"
2517
  msgstr "Es ist eine neuere Version verfügbar"
2518
 
2519
- #: admin/cerber-dashboard.php:1078
2520
  msgid "New users"
2521
  msgstr "Neue Benutzer"
2522
 
2523
- #: admin/cerber-dashboard.php:1097
2524
  msgid "My activity"
2525
  msgstr "Meine Aktivitäten"
2526
 
2527
- #: admin/cerber-dashboard.php:2933
2528
  msgid "Create Alert"
2529
  msgstr "Warnung erstellen"
2530
 
2531
- #: admin/cerber-dashboard.php:2937
2532
  msgid "Delete Alert"
2533
  msgstr "Warnung löschen"
2534
 
2535
- #: admin/cerber-dashboard.php:3033
2536
  msgid "The alert has been created"
2537
  msgstr "Die Warnung wurde erstellt"
2538
 
2539
- #: admin/cerber-dashboard.php:3042
2540
  msgid "The alert has been deleted"
2541
  msgstr "Die Warnung wurde gelöscht"
2542
 
2543
- #: admin/cerber-dashboard.php:4514
2544
  msgid "Advanced Search"
2545
  msgstr "Erweiterte Suche"
2546
 
@@ -2549,7 +2534,7 @@ msgstr "Erweiterte Suche"
2549
  msgid "Cerber Tech Inc."
2550
  msgstr "Cerber Tech Inc."
2551
 
2552
- #: cerber-load.php:5721
2553
  msgid "To delete the alert, click here"
2554
  msgstr "Zum Löschen des Alarms hier klicken."
2555
 
@@ -2621,43 +2606,43 @@ msgstr "Automatisch gelöscht"
2621
  msgid "Automatically recovered"
2622
  msgstr "Automatisch wiederhergestellt"
2623
 
2624
- #: admin/cerber-dashboard.php:72
2625
  msgid "Cerber User Security"
2626
  msgstr "Cerber Benutzersicherheit"
2627
 
2628
- #: admin/cerber-dashboard.php:72 admin/cerber-dashboard.php:5288
2629
  msgid "User Policies"
2630
  msgstr "Benutzerrichtlinien"
2631
 
2632
- #: admin/cerber-dashboard.php:2110
2633
  msgid "A new version is available"
2634
  msgstr "Eine neue Version ist verfügbar"
2635
 
2636
- #: admin/cerber-dashboard.php:5291
2637
  msgid "Global"
2638
  msgstr "Global"
2639
 
2640
- #: cerber-common.php:1763
2641
  msgid "Site policy enforcement"
2642
  msgstr "Durchsetzung der Website-Policy"
2643
 
2644
- #: cerber-common.php:1764
2645
  msgid "2FA code verified"
2646
  msgstr "2FA-Code verifiziert"
2647
 
2648
- #: cerber-common.php:1765
2649
  msgid "Initiated by the user"
2650
  msgstr "Durch den Benutzer eingeleitet"
2651
 
2652
- #: cerber-common.php:2315
2653
  msgid "A new version of %s is available. Please install it."
2654
  msgstr "Eine neue Version von %s ist verfügbar. Bitte installieren Sie sie."
2655
 
2656
- #: cerber-load.php:1939
2657
  msgid "Email address is not permitted."
2658
  msgstr "E-Mail-Adresse ist nicht zulässig."
2659
 
2660
- #: cerber-load.php:1939
2661
  msgid "Please choose another one."
2662
  msgstr "Bitte wählen Sie eine andere."
2663
 
@@ -2809,7 +2794,7 @@ msgstr "Geben Sie den Code aus der E-Mail in das Feld unten ein."
2809
  msgid "Try again"
2810
  msgstr "Erneut versuchen"
2811
 
2812
- #: cerber-2fa.php:661 admin/cerber-dashboard.php:5733
2813
  msgid "Cancel"
2814
  msgstr "Abbrechen"
2815
 
@@ -2829,7 +2814,7 @@ msgstr "Bestätigen"
2829
  msgid "Two-Factor Authentication Email"
2830
  msgstr "Zwei-Faktor-Authentifizierung E-Mail"
2831
 
2832
- #: admin/cerber-dashboard.php:3638
2833
  msgid "Role-based rules are configured"
2834
  msgstr "Rollenbasierte Regeln werden konfiguriert"
2835
 
@@ -2842,67 +2827,67 @@ msgstr "blockiert von %s um %s"
2842
  msgid "The code is valid for %s minutes."
2843
  msgstr "Der Code ist für %s Minuten gültig."
2844
 
2845
- #: admin/cerber-dashboard.php:374
2846
  msgid "IP address %s has been added to White IP Access List"
2847
  msgstr "Die IP-Adresse %s wurde zur weißen Liste IP Zugang hinzugefügt"
2848
 
2849
- #: admin/cerber-dashboard.php:371
2850
  msgid "IP address %s has been added to Black IP Access List"
2851
  msgstr "Die IP-Adresse %s wurde zur schwarzen Liste IP Zugang hinzugefügt"
2852
 
2853
- #: admin/cerber-dashboard.php:213 admin/cerber-dashboard.php:949
2854
- #: admin/cerber-dashboard.php:1325 admin/cerber-dashboard.php:4464
2855
- #: admin/cerber-users.php:926
2856
  msgid "IP Address"
2857
  msgstr "IP-Adresse"
2858
 
2859
- #: admin/cerber-dashboard.php:956 admin/cerber-dashboard.php:1331
2860
  msgid "Username"
2861
  msgstr "Benutzername"
2862
 
2863
- #: admin/cerber-dashboard.php:3720
2864
  msgid "Any country is permitted"
2865
  msgstr "Jedes Land ist erlaubt"
2866
 
2867
- #: admin/cerber-dashboard.php:3343 admin/cerber-dashboard.php:5193
2868
  msgid "Sessions"
2869
  msgstr "Sitzungen"
2870
 
2871
- #: cerber-load.php:1698
2872
  msgid "Session has been terminated"
2873
  msgid_plural "%s sessions have been terminated"
2874
  msgstr[0] "Die Sitzung wurde beendet"
2875
  msgstr[1] "Sitzungen wurden beendet"
2876
 
2877
- #: admin/cerber-users.php:924
2878
  msgid "Created"
2879
  msgstr "Erstellt"
2880
 
2881
- #: admin/cerber-users.php:945
2882
  msgid "Terminate session"
2883
  msgstr "Sitzung beenden"
2884
 
2885
- #: admin/cerber-users.php:946
2886
  msgid "Block user"
2887
  msgstr "Benutzer sperren"
2888
 
2889
- #: admin/cerber-users.php:1078
2890
  msgid "Profile"
2891
  msgstr "Profil"
2892
 
2893
- #: admin/cerber-users.php:1091
2894
  msgid "All Logins"
2895
  msgstr "Alle Logins"
2896
 
2897
- #: admin/cerber-users.php:1092
2898
  msgid "User Activity"
2899
  msgstr "Benutzeraktivität"
2900
 
2901
- #: admin/cerber-users.php:1138
2902
  msgid "Terminate"
2903
  msgstr "Beenden"
2904
 
2905
- #: admin/cerber-dashboard.php:2060
2906
  msgid "user"
2907
  msgid_plural "users"
2908
  msgstr[0] "Benutzer"
@@ -2916,47 +2901,47 @@ msgstr "Zugriff auf Nutzerdaten per REST API blockieren"
2916
  msgid "Unable to delete"
2917
  msgstr "Löschen nicht möglich"
2918
 
2919
- #: admin/cerber-dashboard.php:68
2920
  msgid "Cerber Data Shield Policies"
2921
  msgstr "Cerber Data Shield Richtlinien"
2922
 
2923
- #: admin/cerber-dashboard.php:68
2924
  msgid "Data Shield"
2925
  msgstr "Data Shield"
2926
 
2927
- #: admin/cerber-dashboard.php:5278
2928
  msgid "Data Shield Policies"
2929
  msgstr "Data Shield Richtlinien"
2930
 
2931
- #: admin/cerber-dashboard.php:5280
2932
  msgid "Accounts & Roles"
2933
  msgstr "Konten & Rollen"
2934
 
2935
- #: admin/cerber-dashboard.php:5281
2936
  msgid "Site Settings"
2937
  msgstr "Website-Einstellungen"
2938
 
2939
- #: cerber-common.php:1715
2940
  msgid "User creation denied"
2941
  msgstr "Benutzererstellung verweigert"
2942
 
2943
- #: cerber-common.php:1717
2944
  msgid "Role update denied"
2945
  msgstr "Rollenupdate verweigert"
2946
 
2947
- #: cerber-common.php:1718
2948
  msgid "Setting update denied"
2949
  msgstr "Einstellungsupdate verweigert"
2950
 
2951
- #: cerber-common.php:1770
2952
  msgid "Permission denied"
2953
  msgstr "Berechtigung verweigert"
2954
 
2955
- #: cerber-common.php:1772
2956
  msgid "Invalid user"
2957
  msgstr "Ungültiger Benutzer"
2958
 
2959
- #: cerber-common.php:1773
2960
  msgid "Incorrect password"
2961
  msgstr "Falsches Passwort"
2962
 
@@ -3036,35 +3021,35 @@ msgstr "Alle Server"
3036
  msgid "All countries"
3037
  msgstr "Alle Länder"
3038
 
3039
- #: nexus/cerber-nexus-master.php:67
3040
  msgid "Show homepage in the Website column"
3041
  msgstr "Homepage in der Spalte Website anzeigen"
3042
 
3043
- #: nexus/cerber-nexus-master.php:69
3044
  msgid "Hide server IP address"
3045
  msgstr "IP-Adresse des Servers verbergen"
3046
 
3047
- #: admin/cerber-dashboard.php:343
3048
  msgid "IP address, range, wildcard, or CIDR"
3049
  msgstr "IP-Adresse, Bereich, Wildcard oder CIDR"
3050
 
3051
- #: admin/cerber-dashboard.php:344
3052
  msgid "Add Entry"
3053
  msgstr "Eintrag zufügen"
3054
 
3055
- #: admin/cerber-dashboard.php:5533
3056
  msgid "The IP address you are trying to add is already in the list"
3057
  msgstr "Die IP-Adresse, die Sie hinzufügen möchten, ist bereits in der Liste enthalten"
3058
 
3059
- #: cerber-common.php:1669
3060
  msgid "IP subnet blocked"
3061
  msgstr "IP-Subnetz blockiert"
3062
 
3063
- #: cerber-common.php:1716
3064
  msgid "User row update denied"
3065
  msgstr "Update der Benutzerzeile verweigert"
3066
 
3067
- #: cerber-common.php:1719
3068
  msgid "User metadata update denied"
3069
  msgstr "Update der Benutzer-Metadaten verweigert"
3070
 
@@ -3132,28 +3117,28 @@ msgstr "Daten der Formularfelder"
3132
  msgid "Cookies"
3133
  msgstr "Cookies"
3134
 
3135
- #: admin/cerber-dashboard.php:79
3136
  msgid "Cerber anti-spam settings"
3137
  msgstr "Cerber Antispam-Einstellungen"
3138
 
3139
- #: admin/cerber-dashboard.php:79
3140
  msgid "Anti-spam"
3141
  msgstr "Antispam"
3142
 
3143
- #: cerber-addons.php:289 admin/cerber-dashboard.php:87
3144
- #: admin/cerber-dashboard.php:87
3145
  msgid "Add-ons"
3146
  msgstr "Add-ons"
3147
 
3148
- #: admin/cerber-dashboard.php:5242
3149
  msgid "Anti-spam and bot detection settings"
3150
  msgstr "Einstellungen für Anti-Spam und Bot-Erkennung"
3151
 
3152
- #: admin/cerber-dashboard.php:5244
3153
  msgid "Anti-spam engine"
3154
  msgstr "Anti-spam engine"
3155
 
3156
- #: cerber-common.php:1911
3157
  msgid "Multiple erroneous requests"
3158
  msgstr "Mehrere fehlerhafte Anfragen"
3159
 
@@ -3249,11 +3234,11 @@ msgstr "Wie das Plugin Kommentare verarbeitet, die über das Standard-Kommentarf
3249
  msgid "Settings updated"
3250
  msgstr "Einstellungen aktualisiert"
3251
 
3252
- #: admin/cerber-dashboard.php:1388
3253
  msgid "Request ID"
3254
  msgstr "Anfrage-ID"
3255
 
3256
- #: admin/cerber-dashboard.php:1389
3257
  msgid "Search in URL"
3258
  msgstr "In URL suchen"
3259
 
@@ -3265,7 +3250,7 @@ msgstr "Ausführbare Dateien"
3265
  msgid "All files"
3266
  msgstr "Alle Dateien"
3267
 
3268
- #: admin/cerber-dashboard.php:1889
3269
  msgid "Active sessions"
3270
  msgstr "Aktive Sitzungen"
3271
 
@@ -3277,28 +3262,28 @@ msgstr "Minuten (leer lassen, um den Standardwert von WordPress zu nutzen)"
3277
  msgid "Load entries"
3278
  msgstr "Einträge laden"
3279
 
3280
- #: admin/cerber-dashboard.php:1098 admin/cerber-dashboard.php:4505
3281
  msgid "My IP"
3282
  msgstr "Meine IP"
3283
 
3284
- #: admin/cerber-dashboard.php:5331
3285
  msgid "Analytics"
3286
  msgstr "Analytik"
3287
 
3288
- #: admin/cerber-dashboard.php:5380
3289
  msgid "Manage Settings"
3290
  msgstr "Einstellungen verwalten"
3291
 
3292
  #: cerber-settings.php:1047 cerber-settings.php:1445 cerber-settings.php:1473
3293
- #: admin/cerber-dashboard.php:5382
3294
  msgid "Diagnostic Log"
3295
  msgstr "Diagnose-Log"
3296
 
3297
- #: cerber-common.php:1660
3298
  msgid "User deleted"
3299
  msgstr "Benutzer gelöscht"
3300
 
3301
- #: cerber-common.php:1768
3302
  msgid "Email address is prohibited"
3303
  msgstr "E-Mail-Adresse ist verboten"
3304
 
@@ -3406,15 +3391,15 @@ msgstr "Wenn Sie auf die Schaltfläche unten klicken, werden die Standardeinstel
3406
  msgid "To get the most out of WP Cerber, follow these steps:"
3407
  msgstr "Um WP Cerber optimal zu nutzen, folgen Sie diesen Schritten:"
3408
 
3409
- #: cerber-common.php:1783
3410
  msgid "IP whitelisted"
3411
  msgstr "IP auf der weißen Liste"
3412
 
3413
- #: admin/cerber-dashboard.php:4504
3414
  msgid "My requests"
3415
  msgstr "Meine Anfragen"
3416
 
3417
- #: admin/cerber-dashboard.php:3830
3418
  msgid "Log into the website"
3419
  msgstr "Auf der Website anmelden"
3420
 
@@ -3423,15 +3408,15 @@ msgstr "Auf der Website anmelden"
3423
  msgid "WP Cerber Security, Anti-spam & Malware Scan"
3424
  msgstr "WP Cerber Sicherheit, Antispam & Malware Scan"
3425
 
3426
- #: cerber-common.php:1708 cerber-common.php:1907
3427
  msgid "Probing for vulnerable code"
3428
  msgstr "Suche nach angreifbarem Code"
3429
 
3430
- #: cerber-load.php:6043
3431
  msgid "Your IP address %s has been added to the White IP Access List"
3432
  msgstr "Ihre IP-Adresse %s wurde in die weiße Liste IP Access aufgenommen"
3433
 
3434
- #: admin/cerber-users.php:973
3435
  msgid "Search for IP address"
3436
  msgstr "Nach IP-Adresse suchen"
3437
 
@@ -3459,11 +3444,11 @@ msgstr "Diese Benutzer-Agenten nicht protokollieren"
3459
  msgid "Specify User-Agents to exclude requests from logging. One item per line."
3460
  msgstr "Geben Sie Benutzer-Agenten an, um Anfragen von der Protokollierung auszuschließen. Ein Element pro Zeile."
3461
 
3462
- #: admin/cerber-dashboard.php:4622
3463
  msgid "Unknown Google's bot"
3464
  msgstr "Unbekannter Google Bot"
3465
 
3466
- #: cerber-common.php:1774
3467
  msgid "IP address is not allowed"
3468
  msgstr "IP-Adresse ist nicht zulässig"
3469
 
@@ -3500,7 +3485,7 @@ msgstr "Verzögertes Rendern"
3500
  msgid "Defer rendering the custom login page"
3501
  msgstr "Rendering der angepassten Anmeldeseite verzögern"
3502
 
3503
- #: cerber-load.php:395
3504
  msgid "You have only one login attempt remaining."
3505
  msgstr "Sie haben nur noch einen Anmeldeversuch."
3506
 
@@ -3528,15 +3513,15 @@ msgstr "Login von einem anderen Browser oder Gerät"
3528
  msgid "If the number of concurrent user sessions is greater"
3529
  msgstr "Wenn die Anzahl der gleichzeitigen Benutzersitzungen größer ist"
3530
 
3531
- #: admin/cerber-dashboard.php:5668
3532
  msgid "These features are available in the professional version of WP Cerber."
3533
  msgstr "Diese Funktionen sind in der professionellen Version von WP Cerber verfügbar"
3534
 
3535
- #: cerber-common.php:1689
3536
  msgid "User session terminated"
3537
  msgstr "Benutzersitzung beendet"
3538
 
3539
- #: cerber-common.php:1775
3540
  msgid "Limit on concurrent user sessions"
3541
  msgstr "Limit für gleichzeitige Benutzersitzungen"
3542
 
@@ -3560,19 +3545,19 @@ msgstr "Wichtiger Hinweis, wenn Sie ein Caching-Plugin installiert haben"
3560
  msgid "To avoid false positives and get better anti-spam performance, please clear the plugin cache."
3561
  msgstr "Um Fehlalarme zu vermeiden und eine bessere Anti-Spam-Leistung zu erhalten, löschen Sie bitte den Plugin-Cache."
3562
 
3563
- #: cerber-common.php:1728
3564
  msgid "API request authorized"
3565
  msgstr "API-Anforderung genehmigt"
3566
 
3567
- #: cerber-common.php:1729
3568
  msgid "API request authorization failed"
3569
  msgstr "Autorisierung Anforderung der API fehlgeschlagen"
3570
 
3571
- #: cerber-common.php:1713
3572
  msgid "Request to XML-RPC API denied"
3573
  msgstr "Anfrage an XML-RPC API verweigert"
3574
 
3575
- #: cerber-common.php:1776
3576
  msgid "Invalid cookies"
3577
  msgstr "Ungültige Cookies"
3578
 
@@ -3605,7 +3590,7 @@ msgid "Use custom URL for the WordPress comment form"
3605
  msgstr "Eigene URL für das WordPress-Kommentarformular verwenden"
3606
 
3607
  #: cerber-settings.php:461 cerber-settings.php:1295
3608
- #: admin/cerber-dashboard.php:2060
3609
  msgid "Logged-in users"
3610
  msgstr "Angemeldete Benutzer"
3611
 
@@ -3665,7 +3650,7 @@ msgstr "reCAPTCHA für eingeloggte Benutzer deaktivieren"
3665
  msgid "Use global policies"
3666
  msgstr "Globale Richtlinien verwenden"
3667
 
3668
- #: cerber-load.php:398
3669
  msgid "You have %d login attempt remaining."
3670
  msgid_plural "You have %d login attempts remaining."
3671
  msgstr[0] "Sie haben noch %d Anmeldeversuch übrig."
@@ -3675,11 +3660,11 @@ msgstr[1] "Sie haben noch %d Anmeldeversuche übrig."
3675
  msgid "Display this message if an attempt to log in is denied because the limit on concurrent user sessions has been reached"
3676
  msgstr "Diese Meldung anzeigen, wenn ein Anmeldeversuch abgelehnt wird, weil das Limit für gleichzeitige Benutzersitzungen erreicht wurde"
3677
 
3678
- #: admin/cerber-dashboard.php:5290
3679
  msgid "Role-Based"
3680
  msgstr "Rollenbasiert"
3681
 
3682
- #: cerber-common.php:1725
3683
  msgid "User application password created"
3684
  msgstr "Benutzer Anwendungspasswort erstellt"
3685
 
@@ -3695,52 +3680,52 @@ msgstr "Antwort-Header speichern"
3695
  msgid "Save response cookies"
3696
  msgstr "Antwort-Cookies speichern"
3697
 
3698
- #: cerber-load.php:8098
3699
  msgid "We need your support to keep moving forward"
3700
  msgstr "Um weiterzukommen, brauchen wir Ihre Unterstützung"
3701
 
3702
- #: cerber-load.php:8100
3703
  msgid "By sharing your unique opinion on WP Cerber, you help the engineers behind the plugin make greater progress and help other professionals find the right software. You can leave your review on one of the following websites. Feel free to use your native language. Thanks!"
3704
  msgstr "Indem Sie Ihre persönliche Meinung zu WP Cerber teilen, helfen Sie den Ingenieuren des Plugins, größere Fortschritte zu machen, und helfen anderen Profis, die richtige Software zu finden. Sie können Ihre Bewertung auf einer der folgenden Websites hinterlassen. Fühlen Sie sich frei, Ihre Muttersprache zu verwenden. Vielen Dank!"
3705
 
3706
- #: nexus/cerber-nexus-master.php:286
3707
  msgid "Secret Access Token is invalid"
3708
  msgstr "Geheimes Zugriffstoken ist ungültig"
3709
 
3710
- #: admin/cerber-dashboard.php:227
3711
  msgid "Click the IP address to see its activity"
3712
  msgstr "Klicken Sie auf die IP-Adresse, um ihre Aktivität zu sehen"
3713
 
3714
- #: admin/cerber-dashboard.php:1079
3715
  msgid "Login issues"
3716
  msgstr "Anmeldeprobleme"
3717
 
3718
- #: admin/cerber-dashboard.php:1096 admin/cerber-dashboard.php:4499
3719
  msgid "Non-authenticated"
3720
  msgstr "Nicht authentifiziert"
3721
 
3722
- #: admin/cerber-dashboard.php:1366 admin/cerber-dashboard.php:1789
3723
- #: admin/cerber-dashboard.php:2646 admin/cerber-admin.php:1333
3724
  msgid "No activity has been logged yet."
3725
  msgstr "Es wurde noch keine Aktivität protokolliert."
3726
 
3727
- #: admin/cerber-dashboard.php:2662
3728
  msgid "Users' Activity"
3729
  msgstr "Benutzeraktivität"
3730
 
3731
- #: admin/cerber-dashboard.php:2682
3732
  msgid "Malicious Activity"
3733
  msgstr "Bösartige Aktivität"
3734
 
3735
- #: admin/cerber-dashboard.php:4496
3736
  msgid "Suspicious requests"
3737
  msgstr "Verdächtige Anfragen"
3738
 
3739
- #: admin/cerber-dashboard.php:1095 admin/cerber-dashboard.php:4498
3740
  msgid "Users"
3741
  msgstr "Benutzer"
3742
 
3743
- #: cerber-common.php:1778
3744
  msgid "Forbidden URL"
3745
  msgstr "Verbotene URL"
3746
 
@@ -3804,19 +3789,19 @@ msgstr "Nicht existierende Benutzernamen und E-Mails in der Meldung über fehlge
3804
  msgid "Deny authentication through wp-login.php"
3805
  msgstr "Authentifizierung über wp-login.php verweigern"
3806
 
3807
- #: cerber-common.php:1777
3808
  msgid "Invalid cookies cleared"
3809
  msgstr "Ungültige Cookies entfernt"
3810
 
3811
- #: cerber-load.php:1843
3812
  msgid "If we have found your account, we have sent the confirmation link to the email address on the account."
3813
  msgstr "Haben wir Ihr Konto gefunden, haben wir den Bestätigungslink an die im Konto angegebene E-Mail-Adresse geschickt."
3814
 
3815
- #: cerber-load.php:6001 cerber-common.php:520
3816
  msgid "WP Cerber requires PHP %s or higher. You are running %s."
3817
  msgstr "WP Cerber benötigt PHP Version %s oder höher."
3818
 
3819
- #: cerber-load.php:6005 cerber-common.php:524
3820
  msgid "WP Cerber requires WordPress %s or higher. You are running %s."
3821
  msgstr "WP Cerber benötigt Wordpress Version %s oder höher."
3822
 
@@ -3896,11 +3881,11 @@ msgstr "Öffentlich zugängliche Dateien mit diesen Erweiterungen löschen"
3896
  msgid "Detecting injected files in the WordPress uploads directory"
3897
  msgstr "Erkennung von injizierten Dateien im WordPress-Uploads-Verzeichnis"
3898
 
3899
- #: cerber-common.php:1779
3900
  msgid "Executable file extension detected"
3901
  msgstr "Ausführbare Dateierweiterung erkannt"
3902
 
3903
- #: cerber-common.php:1780
3904
  msgid "Filename is prohibited"
3905
  msgstr "Dateiname ist nicht zulässig"
3906
 
@@ -3980,7 +3965,7 @@ msgstr "Dateien mit diesen Erweiterungen überspringen"
3980
  msgid "These policies are automatically enforced at the end of every scan based on its results. All affected files are moved to the quarantine."
3981
  msgstr "Diese Richtlinien werden am Ende eines jeden Scans auf der Grundlage der Ergebnisse automatisch durchgesetzt. Sämtliche betroffenen Dateien werden in die Quarantäne verschoben."
3982
 
3983
- #: admin/cerber-dashboard.php:3277
3984
  msgid "This scan report was generated by the previous version of WP Cerber. Please run a new scan to get consistent and accurate results."
3985
  msgstr "Dieser Scan-Bericht wurde von der früheren Version von WP Cerber erstellt. Bitte führen Sie einen neuen Scan durch, um einheitliche und genaue Ergebnisse zu erhalten."
3986
 
@@ -4010,11 +3995,11 @@ msgctxt "This is a risk level."
4010
  msgid "Medium"
4011
  msgstr "Mittel"
4012
 
4013
- #: cerber-load.php:4670
4014
  msgid "If you believe you should be able to perform this request, please let us know."
4015
  msgstr "Wenn Sie der Meinung sind, diese Anfrage durchführen zu dürfen, teilen Sie uns dies bitte mit."
4016
 
4017
- #: cerber-load.php:4669
4018
  msgid "Your request looks suspiciously similar to automated requests from spam posting software or it has been denied by a security policy configured by the website administrator."
4019
  msgstr "Ihre Anfrage sieht einer automatisierten Anfrage einer Spam-Software verdächtig ähnlich, oder sie wurde durch eine vom Website-Administrator konfigurierte Sicherheitsrichtlinie abgelehnt."
4020
 
@@ -4030,23 +4015,23 @@ msgstr "reCAPTCHA für IP-Adressen in der weißen IP-Zugangsliste deaktivieren"
4030
  msgid "Executable files are not supported. Please upload a ZIP archive."
4031
  msgstr "Ausführbare Dateien werden nicht unterstützt. Bitte laden Sie ein ZIP-Archiv hoch."
4032
 
4033
- #: cerber-load.php:756
4034
  msgid "Human verification failed."
4035
  msgstr "Menschliche Überprüfung fehlgeschlagen."
4036
 
4037
- #: cerber-common.php:1794
4038
  msgid "Logged out everywhere"
4039
  msgstr "Überall abgemeldet"
4040
 
4041
- #: cerber-common.php:1693
4042
  msgid "Password reset request denied"
4043
  msgstr "Anfrage zum Zurücksetzen des Passworts abgelehnt"
4044
 
4045
- #: cerber-common.php:1796
4046
  msgid "reCAPTCHA verified"
4047
  msgstr "reCAPTCHA verifiziert"
4048
 
4049
- #: cerber-load.php:3340
4050
  msgid "Sorry, password reset is not allowed for this user."
4051
  msgstr "Leider ist das Zurücksetzen des Passworts dieses Benutzers nicht erlaubt."
4052
 
@@ -4058,20 +4043,20 @@ msgstr "Dieser Dateityp wird nicht unterstützt. Bitte laden Sie ein ZIP-Archiv
4058
  msgid "Use less restrictive security filters for IP addresses in the White IP Access List"
4059
  msgstr "Für IP-Adressen in der weißen IP-Zugangsliste weniger restriktive Sicherheitsfilter verwenden"
4060
 
4061
- #: cerber-common.php:1724
4062
  msgid "User application password updated"
4063
  msgstr "Passwort der Benutzeranwendung aktualisiert"
4064
 
4065
- #: cerber-common.php:1766
4066
  msgid "User blocked by administrator"
4067
  msgstr "Von Administrator gesperrter Benutzer"
4068
 
4069
  #. %s is the name of a website administrator who terminated the session.
4070
- #: cerber-common.php:1691
4071
  msgid "User session terminated by %s"
4072
  msgstr "Benutzersitzung durch %s beendet"
4073
 
4074
- #: cerber-common.php:1767
4075
  msgid "Username is prohibited"
4076
  msgstr "Benutzername ist untersagt"
4077
 
@@ -4083,57 +4068,57 @@ msgstr "Alle REST-API-Anfragen anzeigen"
4083
  msgid "View denied REST API requests"
4084
  msgstr "Abgelehnte REST-API-Anfragen anzeigen"
4085
 
4086
- #: cerber-load.php:4883 cerber-load.php:4884
4087
  msgid "A new activity has occurred"
4088
  msgstr "Es ist eine neue Aktivität aufgetreten"
4089
 
4090
- #: admin/cerber-dashboard.php:2955
4091
  msgid "Do not send alerts after this date"
4092
  msgstr "Nach diesem Datum keine Warnmeldungen mehr senden"
4093
 
4094
- #: admin/cerber-dashboard.php:2995
4095
  msgid "Documentation"
4096
  msgstr "Dokumentation"
4097
 
4098
- #: admin/cerber-dashboard.php:2982
4099
  msgid "Email alerts will be sent to these emails:"
4100
  msgstr "Benachrichtigungen per E-Mail werden an diese E-Mail-Adressen gesendet:"
4101
 
4102
- #: admin/cerber-dashboard.php:2982
4103
  msgid "Email alerts will be sent to this email:"
4104
  msgstr "Benachrichtigungen per E-Mail werden an diese E-Mail-Adresse gesendet:"
4105
 
4106
- #: admin/cerber-dashboard.php:2960
4107
  msgid "Ignore global rate limits"
4108
  msgstr "Globale Ratenbeschränkungen ignorieren"
4109
 
4110
- #: admin/cerber-dashboard.php:2946
4111
  msgid "Maximum number of alerts to send"
4112
  msgstr "Höchstzahl der zu sendenden Warnmeldungen"
4113
 
4114
- #: admin/cerber-dashboard.php:2990
4115
  msgid "Mobile alerts are not configured"
4116
  msgstr "Handy-Benachrichtigungen sind nicht konfiguriert"
4117
 
4118
  #. %s is the name of a mobile device.
4119
- #: admin/cerber-dashboard.php:2987
4120
  msgid "Mobile alerts will be sent to %s"
4121
  msgstr "Handy-Benachrichtigungen werden an %s gesendet"
4122
 
4123
- #: admin/cerber-dashboard.php:2951
4124
  msgid "No limit"
4125
  msgstr "Leine Limite"
4126
 
4127
- #: admin/cerber-dashboard.php:5732
4128
  msgid "OK"
4129
  msgstr "OK"
4130
 
4131
- #: admin/cerber-dashboard.php:2997
4132
  msgid "Optional alert limits"
4133
  msgstr "Optionale Warngrenzen"
4134
 
4135
  #. %s is the name of a website administrator who changed the password.
4136
- #: cerber-common.php:1687
4137
  msgid "Password changed by %s"
4138
  msgstr "Passwort durch %s geändert"
4139
 
@@ -4142,31 +4127,31 @@ msgid "Spam protection for registration, comment, and other forms on the website
4142
  msgstr "Spamschutz für Registrierungs-, Kommentar- und andere Formulare auf der Website\n"
4143
  ""
4144
 
4145
- #: cerber-common.php:1810
4146
  msgid "Unknown label"
4147
  msgstr "Unbekanntes Label"
4148
 
4149
  #. %s is the name of a website administrator who created the password.
4150
- #: cerber-common.php:1727
4151
  msgid "User application password created by %s"
4152
  msgstr "Passwort Benutzeranwendung durch %s erstellt"
4153
 
4154
- #: cerber-common.php:1730
4155
  msgid "User application password deleted"
4156
  msgstr "Passwort Benutzeranwendung gelöscht"
4157
 
4158
  #. %s is the name of a website administrator who deleted the password.
4159
- #: cerber-common.php:1732
4160
  msgid "User application password deleted by %s"
4161
  msgstr "Passwort Benutzeranwendung durch %s gelöscht"
4162
 
4163
  #. %s is the name of a website administrator who created the user.
4164
- #: cerber-common.php:1658
4165
  msgid "User created by %s"
4166
  msgstr "Anwender durch %s erstellt"
4167
 
4168
  #. %s is the name of a website administrator who deleted the user.
4169
- #: cerber-common.php:1662
4170
  msgid "User deleted by %s"
4171
  msgstr "Anwender durch %s gelöscht"
4172
 
@@ -4178,3 +4163,55 @@ msgstr "Bot-Ereignisse anzeigen"
4178
  msgid "View reCAPTCHA events"
4179
  msgstr "reCAPTCHA-Ereignisse anzeigen"
4180
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  msgid "Custom login URL"
45
  msgstr "Benutzerdefinierte Login-URL"
46
 
47
+ #: cerber-settings.php:289 admin/cerber-dashboard.php:2101
48
  msgid "Citadel mode"
49
  msgstr "Citadel Modus"
50
 
56
  msgid "Duration"
57
  msgstr "Dauer"
58
 
59
+ #: cerber-settings.php:310 admin/cerber-dashboard.php:5300
60
  msgid "Notifications"
61
  msgstr "Benachrichtigungen"
62
 
64
  msgid "Send notification to admin email"
65
  msgstr "Sende eine Benachrichtigung an die Emailadresse des Admins"
66
 
67
+ #: admin/cerber-dashboard.php:5297 admin/cerber-tools.php:38
68
  #: admin/cerber-tools.php:49
69
  msgid "Access Lists"
70
  msgstr "Zugriffslisten"
71
 
72
+ #: cerber-load.php:5698 cerber-settings.php:322
73
+ #: admin/cerber-dashboard.php:2142 admin/cerber-dashboard.php:5293
74
+ #: admin/cerber-users.php:1115
75
  msgid "Activity"
76
  msgstr "Aktivität"
77
 
78
+ #: admin/cerber-dashboard.php:5295
79
  msgid "Lockouts"
80
  msgstr "Sperren"
81
 
82
+ #: cerber-load.php:5707
83
  msgid "IP"
84
  msgstr "IP"
85
 
86
+ #: admin/cerber-dashboard.php:948 admin/cerber-dashboard.php:1330
87
+ #: admin/cerber-dashboard.php:4060 admin/cerber-dashboard.php:4543
88
  msgid "Date"
89
  msgstr "Datum"
90
 
91
+ #: admin/cerber-dashboard.php:951 admin/cerber-dashboard.php:1332
92
+ #: admin/cerber-dashboard.php:4548
93
  msgid "Local User"
94
  msgstr "Lokaler Benutzer"
95
 
96
+ #: cerber-load.php:5715
97
  msgid "Username used"
98
  msgstr "Benutzername wird bereits verwendet"
99
 
100
+ #: cerber-common.php:1668
101
  msgid "Logged in"
102
  msgstr "Eingeloggt"
103
 
104
+ #: cerber-common.php:1669
105
  msgid "Logged out"
106
  msgstr "Ausgeloggt"
107
 
108
+ #: cerber-common.php:1670
109
  msgid "Login failed"
110
  msgstr "Login fehlgeschlagen"
111
 
112
+ #: cerber-common.php:1673 admin/cerber-dashboard.php:1092
113
  msgid "IP blocked"
114
  msgstr "IP geblockt"
115
 
116
+ #: cerber-common.php:1677
117
  msgid "Citadel activated!"
118
  msgstr "Citadel-Modus aktiviert!"
119
 
120
+ #: cerber-common.php:1754 admin/cerber-dashboard.php:1704
121
  msgid "Locked out"
122
  msgstr "Ausgesperrt"
123
 
124
  #. Only correct if "IP blacklisted" is used as indicative. Otherwise it would not translate "IP auf der schwarzen Liste" but "IP auf die schwarze Liste gesetzt" (if it states that the IP was just blacklisted).
125
+ #: cerber-common.php:1756
126
  #, fuzzy
127
  msgid "IP blacklisted"
128
  msgstr "IP blockiert"
129
 
130
+ #: cerber-common.php:1690
131
  msgid "Password changed"
132
  msgstr "Passwort geändert"
133
 
134
+ #: admin/cerber-dashboard.php:204 admin/cerber-dashboard.php:329
135
  msgid "Remove"
136
  msgstr "Entfernen"
137
 
138
+ #: admin/cerber-dashboard.php:663
139
  msgid "Lockout for %s was removed"
140
  msgstr "Die Sperre für %s wurde entfernt"
141
 
142
+ #: admin/cerber-dashboard.php:275 admin/cerber-dashboard.php:1611
143
+ #: admin/cerber-dashboard.php:1695 admin/cerber-dashboard.php:2099
144
  #: admin/cerber-tools.php:69
145
  #, fuzzy
146
  msgid "White IP Access List"
147
  msgstr "Weiße Liste (erlaubten IPs)"
148
 
149
+ #: admin/cerber-dashboard.php:278 admin/cerber-dashboard.php:1614
150
+ #: admin/cerber-dashboard.php:1698 admin/cerber-dashboard.php:2100
151
  #: admin/cerber-tools.php:70
152
  #, fuzzy
153
  msgid "Black IP Access List"
154
  msgstr "Schwarze Liste (verbotenen IPs)"
155
 
156
+ #: admin/cerber-dashboard.php:335
157
  msgid "List is empty"
158
  msgstr "Liste ist leer"
159
 
160
+ #: cerber-load.php:4825
161
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
162
  msgstr "Citadel-Modus ist aktiviert nach %d fehlgeschlagenen Logins in %d Minuten."
163
 
164
+ #: admin/cerber-dashboard.php:2875 admin/cerber-dashboard.php:3403
165
  msgid "View Activity"
166
  msgstr "Aktivitäten anzeigen"
167
 
168
+ #: nexus/cerber-nexus.php:95 admin/cerber-dashboard.php:5366
169
+ #: admin/cerber-dashboard.php:5427 admin/cerber-tools.php:37
170
  #: admin/cerber-tools.php:48
171
  msgid "Settings"
172
  msgstr "Einstellungen"
173
 
174
+ #: admin/cerber-dashboard.php:1968
175
  msgid "Last login"
176
  msgstr "Letzte Anmeldung"
177
 
178
+ #: cerber-common.php:2083 nexus/cerber-slave-list.php:347
179
+ #: admin/cerber-dashboard.php:476 admin/cerber-dashboard.php:2073
180
+ #: admin/cerber-dashboard.php:2122
181
  msgid "Never"
182
  msgstr "Niemals"
183
 
184
+ #: admin/cerber-dashboard.php:5784 admin/cerber-tools.php:59
185
  #: admin/cerber-admin.php:738 admin/cerber-admin.php:905
186
  msgid "Are you sure?"
187
  msgstr "Sind Sie sicher?"
188
 
189
+ #: cerber-settings.php:268 admin/cerber-dashboard.php:2506
190
  msgid "My site is behind a reverse proxy"
191
  msgstr "Meine Website ist hinter einem Reverse-Proxy"
192
 
199
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
200
  msgstr "Bitte aktivieren Sie Permalinks um dieses Merkmal zu verwenden. Setzen Sie die Permalink-Einstellungen auf etwas anderes als Standard."
201
 
202
+ #: admin/cerber-dashboard.php:5296
203
  msgid "Main Settings"
204
  msgstr "Haupteinstellungen"
205
 
206
+ #: admin/cerber-dashboard.php:5581
207
  msgid "Help"
208
  msgstr "Hilfe"
209
 
213
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
214
  msgstr "Erhöhe die Sperrdauer um %s Stunden nach %s Aussperrungen in den letzten %s Stunden"
215
 
216
+ #: cerber-load.php:388 admin/cerber-users.php:463
217
  msgid "You are not allowed to log in. Ask your administrator for assistance."
218
  msgstr "Sie sind nicht berechtigt, sich anzumelden. Fragen Sie Ihren Administrator nach Unterstützung."
219
 
220
+ #: admin/cerber-dashboard.php:214 admin/cerber-users.php:926
221
  msgid "Expires"
222
  msgstr "Gültig bis"
223
 
224
+ #: admin/cerber-dashboard.php:242 admin/cerber-dashboard.php:2741
225
  msgid "No lockouts at the moment. The sky is clear."
226
  msgstr "Keine Sperrung im Moment. Der Himmel ist klar."
227
 
228
+ #: admin/cerber-dashboard.php:285
229
  msgid "Your IP"
230
  msgstr "Ihre IP"
231
 
232
+ #: cerber-load.php:4826
233
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
234
  msgstr "Der letzte gescheiterte Versuch war um %s von der IP %s mit der Benutzeranmeldung: %s."
235
 
236
+ #: cerber-load.php:5939
237
  msgid "Can't activate WP Cerber due to a database error."
238
  msgstr "Kann WP Cerber aufgrund eines Datenbankfehlers nicht aktivieren."
239
 
246
  msgid "days"
247
  msgstr "Tage"
248
 
249
+ #: admin/cerber-dashboard.php:2039
250
  msgid "Cerber Quick View"
251
  msgstr "Cerber Schnellansicht"
252
 
262
  msgid "Attention! You have changed the login URL! The new login URL is"
263
  msgstr "Achtung! Sie haben die Anmelde-URL geändert! Die neue Login-URL ist"
264
 
265
+ #: admin/cerber-dashboard.php:1967
266
  msgid "Comments"
267
  msgstr "Kommentare"
268
 
269
+ #: cerber-load.php:4857
 
 
 
 
270
  msgid "Number of active lockouts"
271
  msgstr "Anzahl der aktiven Sperren"
272
 
273
+ #: cerber-load.php:4959
 
 
 
 
274
  msgid "This message was sent by"
275
  msgstr "Diese Nachricht wurde gesendet von"
276
 
277
  #. Used to be "Import/Export" but this is a fuzzy translation. Exact translation that WordPress also uses is "Werkzeuge".
278
+ #: admin/cerber-dashboard.php:88 admin/cerber-dashboard.php:5478
279
  msgid "Tools"
280
  msgstr "Werkzeuge"
281
 
331
  msgid "Error while parsing file"
332
  msgstr "Fehler beim Parsen der Datei"
333
 
334
+ #: admin/cerber-dashboard.php:212 admin/cerber-dashboard.php:1328
335
  msgid "Hostname"
336
  msgstr "Hostname"
337
 
338
+ #: admin/cerber-dashboard.php:597
339
  #, fuzzy
340
  msgid "unknown"
341
  msgstr "unbekannt"
342
 
343
+ #: admin/cerber-dashboard.php:2078 admin/cerber-dashboard.php:2108
344
  msgid "active"
345
  msgstr "aktiv"
346
 
347
+ #: admin/cerber-dashboard.php:2078
348
  msgid "deactivate"
349
  msgstr "deaktiviert"
350
 
351
+ #: admin/cerber-dashboard.php:2082
352
  msgid "not active"
353
  msgstr "nicht aktiv"
354
 
355
  #. "deactive" and "disabled" mean exactly the same in German.
356
+ #: admin/cerber-dashboard.php:2085 admin/cerber-dashboard.php:2103
357
  msgid "disabled"
358
  msgstr "deaktiviert"
359
 
360
+ #: admin/cerber-dashboard.php:2091
361
  msgid "failed attempts"
362
  msgstr "Fehlversuche"
363
 
364
+ #: admin/cerber-dashboard.php:2091 admin/cerber-dashboard.php:2092
365
  msgid "in 24 hours"
366
  msgstr "in 24 Stunden"
367
 
368
+ #: admin/cerber-dashboard.php:2091 admin/cerber-dashboard.php:2092
369
  msgid "view all"
370
  msgstr "Zeige alle"
371
 
372
+ #: admin/cerber-dashboard.php:2092
373
  msgid "lockouts"
374
  msgstr "Sperren"
375
 
376
+ #: admin/cerber-dashboard.php:2094
377
  msgid "Lockouts at the moment"
378
  msgstr "Momentane Sperren"
379
 
380
+ #: admin/cerber-dashboard.php:2095
381
  msgid "Last lockout"
382
  msgstr "Letzte Sperre"
383
 
384
+ #: admin/cerber-dashboard.php:2099 admin/cerber-dashboard.php:2100
385
+ #: admin/cerber-dashboard.php:3162
386
  msgid "entry"
387
  msgid_plural "entries"
388
  msgstr[0] "Eintrag"
396
  msgid "New version is available"
397
  msgstr "Eine neue Version ist verfügbar"
398
 
399
+ #: cerber-load.php:4799
400
  msgid "WP Cerber notify"
401
  msgstr "WP Cerber benachrichtigen"
402
 
403
+ #: cerber-load.php:4823
404
  msgid "Citadel mode is activated"
405
  msgstr "Citadel-Modus ist aktiviert"
406
 
407
+ #: cerber-load.php:4904
408
  msgid "New Custom login URL"
409
  msgstr "Neue benutzerdefinierte Login-URL"
410
 
418
  msgid "Write failed login attempts to the file"
419
  msgstr "Schreibe fehlgeschlagene Anmeldungen in die Datei."
420
 
421
+ #: admin/cerber-dashboard.php:2874
422
  msgid "Deactivate"
423
  msgstr "Deaktivieren"
424
 
425
+ #: cerber-load.php:4861 admin/cerber-dashboard.php:215
426
  msgid "Reason"
427
  msgstr "Grund"
428
 
429
+ #: admin/cerber-dashboard.php:1762
430
  msgid "Add IP to the Black List"
431
  msgstr "Füge IP zur Schwarzen Liste hinzu"
432
 
433
+ #: cerber-common.php:1906
434
  msgid "Attempt to access"
435
  msgstr "Zugriffsversuch"
436
 
437
+ #: cerber-common.php:1905
438
  msgid "Limit on login attempts is reached"
439
  msgstr "Limit für Anmeldeversuche ist erreicht"
440
 
441
+ #: cerber-load.php:4860
442
  msgid "Last lockout was added: %s for IP %s"
443
  msgstr "Letzte Sperre wurde hinzugefügt: %s für IP %s"
444
 
445
  #. "Abhärtung" is the medical translation for "hardening" which fits best in this case.
446
+ #: admin/cerber-dashboard.php:5298
447
  msgid "Hardening"
448
  msgstr "Abhärtung"
449
 
450
+ #: admin/cerber-dashboard.php:1734
451
  msgid "Abuse email:"
452
  msgstr "Missbrauch Email:"
453
 
485
  msgid "Disable REST API"
486
  msgstr "REST API deaktivieren"
487
 
488
+ #: cerber-load.php:4893 cerber-load.php:5981
489
  #, fuzzy
490
  msgid "WP Cerber is now active and has started protecting your site"
491
  msgstr "WP Cerber ist nun aktiv und schützt ihre Website"
492
 
493
+ #: admin/cerber-dashboard.php:216 admin/cerber-users.php:929
494
  #: admin/cerber-admin.php:774 admin/cerber-admin.php:929
495
  msgid "Action"
496
  msgstr "Aktion"
497
 
498
+ #: admin/cerber-dashboard.php:5630
499
  msgid "Incorrect IP address or IP range"
500
  msgstr "Falsche IP-Adresse oder falscher IP-Bereich"
501
 
502
+ #: admin/cerber-dashboard.php:2890
503
  msgid "Settings saved"
504
  msgstr "Einstellungen gespeichert"
505
 
506
+ #: admin/cerber-dashboard.php:1740
507
  msgid "Network:"
508
  msgstr "Netzwerk:"
509
 
510
+ #: admin/cerber-dashboard.php:1756
511
  msgid "Add network to the Black List"
512
  msgstr "Netzwerk zur schwarzen Liste hinzufügen"
513
 
514
+ #: admin/cerber-dashboard.php:2873
515
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
516
  msgstr "Achtung! Citadel-Modus ist nun aktiv. Niemand kann sich anmelden."
517
 
518
+ #: cerber-whois.php:241 cerber-whois.php:272 cerber-common.php:1930
519
+ #: nexus/cerber-slave-list.php:333 admin/cerber-dashboard.php:457
520
+ #: admin/cerber-dashboard.php:4213 admin/cerber-dashboard.php:4816
521
  msgid "Unknown"
522
  msgstr "Unbekannt"
523
 
524
+ #: cerber-load.php:743 cerber-load.php:756 cerber-load.php:764
525
+ #: cerber-load.php:1112 cerber-load.php:1973 cerber-load.php:2296
526
+ #: cerber-load.php:3407 cerber-common.php:455 cerber-common.php:555
527
+ #: cerber-common.php:560 cerber-common.php:566 cerber-common.php:570
528
  #: nexus/cerber-nexus-slave.php:203 nexus/cerber-nexus-slave.php:214
529
  #: admin/cerber-admin-settings.php:667 admin/cerber-admin-settings.php:687
530
  #: admin/cerber-admin-settings.php:794 admin/cerber-admin.php:875
531
  msgid "ERROR:"
532
  msgstr "FEHLER:"
533
 
534
+ #: cerber-load.php:778
535
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
536
  msgstr "Menschlichkeitsnachweis gescheitert. Bitte klicken Sie das quadratische Kästchen im reCAPTCHA-Block unten."
537
 
538
+ #: cerber-load.php:1953
539
  msgid "Username is not allowed. Please choose another one."
540
  msgstr "Benutzername ist nicht erlaubt. Bitte einen anderen wählen."
541
 
542
+ #: cerber-load.php:4852
543
  msgid "unspecified"
544
  msgstr "nicht spezifiziert"
545
 
546
+ #: cerber-load.php:4855
547
  msgid "Number of lockouts is increasing"
548
  msgstr "Anzahl an Sperren steigt an"
549
 
550
+ #: cerber-load.php:4864
551
  msgid "View activity for this IP"
552
  msgstr "Zeige Aktivität für diese IP"
553
 
554
+ #: cerber-load.php:4868 cerber-load.php:4870
555
  msgid "A new version of WP Cerber is available to install"
556
  msgstr "Eine neue Version von WP Cerber ist zur Installation verfügbar"
557
 
558
+ #: cerber-load.php:4869
559
  msgid "Hi!"
560
  msgstr "Hallo!"
561
 
562
  #. Original translation is "Internetseite" but this translation is not up to time.
563
+ #: cerber-load.php:4872 cerber-load.php:4883 nexus/cerber-slave-list.php:44
564
  msgid "Website"
565
  msgstr "Website"
566
 
567
+ #: cerber-load.php:4875 cerber-load.php:4876
568
  msgid "The WP Cerber security plugin has been deactivated"
569
  msgstr "Das WP Cerber Sicherheits-Plugin wurde deaktiviert"
570
 
571
+ #: cerber-load.php:4878
572
  msgid "Not logged in"
573
  msgstr "Nicht angemeldet"
574
 
575
+ #: cerber-load.php:4884
576
  #, fuzzy
577
  msgid "By user"
578
  msgstr "Von Nutzer"
579
 
580
+ #: cerber-load.php:4885
581
  #, fuzzy
582
  msgid "From IP address"
583
  msgstr "Von IP-Adresse"
584
 
585
+ #: cerber-load.php:4888
586
  #, fuzzy
587
  msgid "From country"
588
  msgstr "Vom Land"
589
 
590
+ #: cerber-load.php:4892
591
  msgid "The WP Cerber security plugin is now active"
592
  msgstr "Das WP Cerber Sicherheits-Plugin ist nun aktiv"
593
 
594
+ #: cerber-load.php:5994
595
  msgid "Import settings"
596
  msgstr "Import-Einstellungen"
597
 
646
  msgid "Know more"
647
  msgstr "Mehr erfahren"
648
 
649
+ #: cerber-common.php:1661
650
  msgid "User created"
651
  msgstr "Benutzer erstellt"
652
 
653
+ #: cerber-common.php:1664
654
  msgid "User registered"
655
  msgstr "Benutzer registriert"
656
 
657
+ #: cerber-common.php:1701 cerber-common.php:1803
658
  msgid "reCAPTCHA verification failed"
659
  msgstr "reCAPTCHA-Bestätigung gescheitert"
660
 
661
+ #: cerber-common.php:1702 cerber-common.php:1804
662
  msgid "reCAPTCHA settings are incorrect"
663
  msgstr "reCAPTCHA-Einstellungen sind falsch"
664
 
665
+ #: cerber-common.php:1706 cerber-common.php:1907
666
  msgid "Attempt to access prohibited URL"
667
  msgstr "Zugriffsversuch auf verbotene URL"
668
 
669
+ #: cerber-common.php:1708 cerber-common.php:1909
670
  msgid "Attempt to log in with prohibited username"
671
  msgstr "Anmeldeversuch mit verbotenem Benutzernamen"
672
 
702
  msgid "Enable reCAPTCHA for WooCommerce login form"
703
  msgstr "Aktiviere reCAPTCHA für das WooCommerce Anmeldeformular"
704
 
705
+ #: cerber-common.php:1703 cerber-common.php:1805
706
  msgid "Request to the Google reCAPTCHA service failed"
707
  msgstr "Anfrage an den Google reCAPTCHA Dienst gescheitert"
708
 
709
+ #: admin/cerber-dashboard.php:1061 admin/cerber-dashboard.php:1072
710
+ #: admin/cerber-dashboard.php:1085 admin/cerber-dashboard.php:2744
711
+ #: admin/cerber-dashboard.php:4608
712
  msgid "View all"
713
  msgstr "Zeige alle"
714
 
715
+ #: admin/cerber-dashboard.php:2752
716
  msgid "Recently locked out IP addresses"
717
  msgstr "Kürzlich ausgesperrte IP-Adressen"
718
 
727
  msgstr "NEIN, vielleicht später"
728
 
729
  #. Dashboard is in German more common in this context as the actual translation "Amaturenbrett" which is only used for non-digital things like in cars!
730
+ #: admin/cerber-dashboard.php:60 admin/cerber-dashboard.php:2141
731
+ #: admin/cerber-dashboard.php:3184 admin/cerber-dashboard.php:5292
732
  #, fuzzy
733
  msgid "Dashboard"
734
  msgstr "Dashboard"
741
  msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
742
  msgstr "Erlaube WP Cerber ausgesperrte bösartige IP-Adressen an das Cerber Lab zu senden. Dies hilft dem Plugin-Team neue Algorithmen für WP Cerber zu entwickeln, die WordPress gegen täglich auftretende neue Bedrohungen und Botnets verteidigen. Sie können das Senden jederzeit in den Plugin-Einstellungen deaktivieren."
743
 
744
+ #: admin/cerber-dashboard.php:4059
745
  msgid "IP address"
746
  msgstr "IP-Adresse"
747
 
748
+ #: admin/cerber-dashboard.php:952
749
  msgid "User login"
750
  msgstr "Benutzer-Anmeldung"
751
 
752
+ #: admin/cerber-dashboard.php:953 admin/cerber-dashboard.php:4065
753
  msgid "User ID"
754
  msgstr "Benutzer-ID"
755
 
756
+ #: admin/cerber-dashboard.php:1362 admin/cerber-dashboard.php:4636
757
  msgid "Export"
758
  msgstr "Export"
759
 
760
+ #: admin/cerber-dashboard.php:1415
761
  msgid "Search for IP or username"
762
  msgstr "Suche nach IP oder Nutzernamen"
763
 
764
+ #: admin/cerber-dashboard.php:1426
765
  msgid "Filter"
766
  msgstr "Filter"
767
 
768
+ #: admin/cerber-dashboard.php:60
769
  msgid "Cerber Dashboard"
770
  msgstr "Cerber Dashboard"
771
 
772
+ #: admin/cerber-dashboard.php:88
773
  msgid "Cerber tools"
774
  msgstr "Cerber Werkzeuge"
775
 
776
+ #: cerber-load.php:5711 admin/cerber-users.php:923
777
  msgid "User"
778
  msgstr "Benutzer"
779
 
780
+ #: cerber-load.php:5719
781
  msgid "Search string"
782
  msgstr "Such-String"
783
 
814
  msgid "Not available"
815
  msgstr "Nicht verfügbar"
816
 
817
+ #: cerber-common.php:1693
818
  msgid "Password reset requested"
819
  msgstr "Passwort Zurücksetzung angefordert"
820
 
821
+ #: cerber-common.php:1910
822
  msgid "Limit on failed reCAPTCHA verifications is reached"
823
  msgstr "Grenze an fehlgeschlagenen reCAPTCHA ist erreicht"
824
 
858
  msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
859
  msgstr "Im Citadel Modus kann sich niemand einloggen, außer IPs auf der White IP Zugangsliste. Laufende Sitzungen werden nicht beeinflusst."
860
 
861
+ #: admin/cerber-dashboard.php:949 admin/cerber-dashboard.php:1331
862
  msgid "Event"
863
  msgstr "Ereignis"
864
 
865
+ #: cerber-common.php:388
866
  msgid "Spam comments denied"
867
  msgstr "Spam Kommentare verweigert"
868
 
869
+ #: cerber-common.php:390
870
  msgid "Malicious IP addresses detected"
871
  msgstr "Schadhafte IP Adresse gefunden"
872
 
873
+ #: cerber-common.php:391
874
  msgid "Lockouts occurred"
875
  msgstr "Sperre aufgetreten"
876
 
877
+ #: cerber-load.php:1932 cerber-load.php:1938 cerber-load.php:1943
878
+ #: cerber-load.php:1963 cerber-load.php:1968
879
  msgid "You are not allowed to register."
880
  msgstr "Registrierung nicht erlaubt."
881
 
882
+ #: cerber-common.php:1678
883
  msgid "Spam comment denied"
884
  msgstr "Spam Kommentar verweigert"
885
 
886
+ #: cerber-common.php:1711
887
  msgid "Attempt to log in denied"
888
  msgstr "Loginversuch verweigert"
889
 
890
+ #: cerber-common.php:1712
891
  msgid "Attempt to register denied"
892
  msgstr "Registrierungsversuch verweigert"
893
 
894
+ #: cerber-common.php:385
895
  msgid "Malicious activities mitigated"
896
  msgstr "Schadhafte Aktivitäten gemildert"
897
 
907
  msgid "Protect registration form with bot detection engine"
908
  msgstr "Schützen Sie das Registrierungsformular mit Bot-Erkennung"
909
 
910
+ #: admin/cerber-dashboard.php:5482
911
  msgid "Diagnostic"
912
  msgstr "Diagnose"
913
 
914
+ #: admin/cerber-dashboard.php:5485
915
  msgid "License"
916
  msgstr "Lizenz"
917
 
918
+ #: cerber-load.php:2296
919
  msgid "Sorry, human verification failed."
920
  msgstr "Entschuldigung, der Menschlichkeitsnachweis ist fehlgeschlagen.\n"
921
  ""
922
 
923
+ #: cerber-common.php:1911
924
  msgid "Bot activity is detected"
925
  msgstr "Bot-Aktivität wurde erkannt"
926
 
940
  msgid "Move spam comments to trash after"
941
  msgstr "Verschieben Sie die Spam-Kommentare anschließend in den Papierkorb"
942
 
943
+ #: cerber-common.php:1679
944
  msgid "Spam form submission denied"
945
  msgstr "Spam in Formular geblockt"
946
 
960
  msgid "Use less restrictive policies (allow AJAX)"
961
  msgstr "Weniger restriktive Richtlinien verwenden (AJAX zulassen)"
962
 
963
+ #: admin/cerber-dashboard.php:213 admin/cerber-dashboard.php:1329
964
  msgid "Country"
965
  msgstr "Land"
966
 
967
+ #: admin/cerber-dashboard.php:67
968
  msgid "Cerber Security Rules"
969
  msgstr "Cerber Sicherheitsregeln"
970
 
971
+ #: admin/cerber-dashboard.php:67 admin/cerber-dashboard.php:5409
972
  msgid "Security Rules"
973
  msgstr "Sicherheitsregeln"
974
 
975
+ #: admin/cerber-dashboard.php:1969
976
  msgid "Failed login attempts"
977
  msgstr "Fehlgeschlagene Anmeldeversuche"
978
 
979
+ #: admin/cerber-dashboard.php:1893 admin/cerber-dashboard.php:1970
980
  msgid "Registered"
981
  msgstr "Registriert"
982
 
983
+ #: admin/cerber-dashboard.php:2017 admin/cerber-users.php:52
984
+ #: admin/cerber-users.php:1082
985
  msgid "You"
986
  msgstr "Du"
987
 
988
+ #: cerber-common.php:389
989
  msgid "Spam form submissions denied"
990
  msgstr "Spam Formular-Übermittlungen verweigert\n"
991
  ""
992
 
993
+ #: cerber-load.php:4895 cerber-load.php:5985
994
  msgid "Getting Started Guide"
995
  msgstr "Leitfaden für den Einstieg"
996
 
997
+ #: admin/cerber-dashboard.php:5411
998
  msgid "Countries"
999
  msgstr "Länder"
1000
 
1001
+ #: admin/cerber-dashboard.php:3788
1002
  msgid "Permitted for one country"
1003
  msgid_plural "Permitted for %d countries"
1004
  msgstr[0] "Erlaubt für ein Land"
1005
  msgstr[1] "Erlaubt für %d Länder"
1006
 
1007
+ #: admin/cerber-dashboard.php:3799
1008
  msgid "No rule"
1009
  msgstr "Keine Regel"
1010
 
1011
+ #: admin/cerber-dashboard.php:3960
1012
  msgid "Security rules have been updated"
1013
  msgstr "Sicherheitsregeln wurden aktualisiert"
1014
 
1017
  msgid "https://wpcerber.com"
1018
  msgstr "https://wpcerber.com"
1019
 
1020
+ #: cerber-common.php:1680
1021
  msgid "Form submission denied"
1022
  msgstr "Formular-Übermittlung verweigert"
1023
 
1024
+ #: cerber-common.php:1681
1025
  msgid "Comment denied"
1026
  msgstr "Kommentar verweigert"
1027
 
1028
+ #: cerber-common.php:1717
1029
  msgid "Request to REST API denied"
1030
  msgstr "Anfrage an REST API verweigert"
1031
 
1032
+ #: cerber-common.php:1752
1033
  msgid "Bot detected"
1034
  msgstr "Bot erkannt"
1035
 
1036
+ #: cerber-common.php:1753
1037
  msgid "Citadel mode is active"
1038
  msgstr "Citadel-Modus ist aktiv"
1039
 
1040
+ #: cerber-common.php:1757
1041
  msgid "Malicious activity detected"
1042
  msgstr "Bösartige Aktivität entdeckt"
1043
 
1044
+ #: cerber-common.php:1758
1045
  msgid "Blocked by country rule"
1046
  msgstr "Gesperrt durch Länderregel"
1047
 
1048
+ #: cerber-common.php:1759
1049
  msgid "Limit reached"
1050
  msgstr "Limit erreicht"
1051
 
1052
+ #: cerber-common.php:1760
1053
  msgid "Multiple suspicious activities"
1054
  msgstr "Mehrere verdächtige Aktivitäten"
1055
 
1056
+ #: cerber-common.php:1912
1057
  msgid "Multiple suspicious activities were detected"
1058
  msgstr "Mehrere verdächtige Aktivitäten erkannt"
1059
 
1065
  msgid "Registration limit"
1066
  msgstr "Registrierungs-Beschränkung"
1067
 
 
 
 
 
1068
  #: cerber-settings.php:695
1069
  msgid "by date of registration"
1070
  msgstr "nach Registrierungsdatum"
1073
  msgid "Query whitelist"
1074
  msgstr "IP Whitelist abfragen"
1075
 
1076
+ #: admin/cerber-dashboard.php:3768
1077
  msgid "Start typing here to find a country"
1078
  msgstr "Beginnen Sie hier mit der Eingabe, um ein Land zu finden"
1079
 
1080
+ #: admin/cerber-dashboard.php:3883
1081
  msgid "Click on a country name to add it to the list of selected countries"
1082
  msgstr "Klicken Sie auf einen Ländernamen, um ihn zur Liste der ausgewählten Länder hinzuzufügen"
1083
 
1084
+ #: admin/cerber-dashboard.php:3915
1085
  msgid "Submit forms"
1086
  msgstr "Formulare absenden"
1087
 
1088
+ #: admin/cerber-dashboard.php:3916
1089
  msgid "Post comments"
1090
  msgstr "Kommentare veröffentlichen"
1091
 
1092
+ #: admin/cerber-dashboard.php:3914
1093
  msgid "Register on the website"
1094
  msgstr "Auf der Website registrieren"
1095
 
1096
+ #: admin/cerber-dashboard.php:3917
1097
  msgid "Use XML-RPC"
1098
  msgstr "XML-RPC benutzen"
1099
 
1100
+ #: admin/cerber-dashboard.php:3918
1101
  msgid "Use REST API"
1102
  msgstr "REST API benutzen"
1103
 
1109
  msgid "Mark it as spam"
1110
  msgstr "Als Spam markieren"
1111
 
1112
+ #: admin/cerber-dashboard.php:3185
1113
  msgid "Main settings"
1114
  msgstr "Haupteinstellungen"
1115
 
1121
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1122
  msgstr "Wenn Sie ein Caching-Plugin verwenden, müssen Sie Ihre neue Anmelde-URL zur Liste der Seiten hinzufügen, die nicht gecached werden sollen."
1123
 
1124
+ #: cerber-load.php:4914
1125
  msgid "Weekly report"
1126
  msgstr "Wöchentlicher Bericht"
1127
 
1128
+ #: cerber-load.php:4917 cerber-load.php:4925
1129
  msgid "To change reporting settings visit"
1130
  msgstr "Um die Einstellungen für die Berichte zu ändern besuchen Sie"
1131
 
1132
+ #: cerber-load.php:4951
1133
  msgid "Your login page:"
1134
  msgstr "Ihre Anmeldeseite:"
1135
 
1136
+ #: cerber-load.php:4956
1137
  msgid "Your license is valid until"
1138
  msgstr "Ihre Lizenz ist gültig bis"
1139
 
1140
+ #: cerber-load.php:5062
1141
  msgid "Activity details"
1142
  msgstr "Aktivitätsdetails"
1143
 
1145
  msgid "Click to send now"
1146
  msgstr "Klicken Sie, um jetzt zu senden"
1147
 
1148
+ #: admin/cerber-dashboard.php:671
1149
  msgid "Email has been sent to"
1150
  msgstr "E-Mail wurde gesendet an"
1151
 
1152
+ #: admin/cerber-dashboard.php:674
1153
  msgid "Unable to send email to"
1154
  msgstr "E-Mail kann nicht gesendet werden an"
1155
 
1156
+ #: admin/cerber-dashboard.php:3791
1157
  msgid "Not permitted for one country"
1158
  msgid_plural "Not permitted for %d countries"
1159
  msgstr[0] "Nicht erlaubt für 1 Land"
1160
  msgstr[1] "Nicht erlaubt für %d Länder"
1161
 
1162
+ #: admin/cerber-dashboard.php:3887
1163
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1164
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1165
  msgstr "Ausgewählte Länder dürfen %s, anderen Ländern ist es nicht erlaubt"
1166
 
1167
+ #: admin/cerber-dashboard.php:3890
1168
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1169
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1170
  msgstr "Ausgewählte Länder dürfen nicht %s, anderen Ländern ist es erlaubt"
1171
 
1172
+ #: cerber-load.php:5050
1173
  msgid "Weekly Report"
1174
  msgstr "Wöchentlicher Bericht"
1175
 
1189
  msgid "Enable reporting"
1190
  msgstr "Berichte aktivieren"
1191
 
1192
+ #: cerber-load.php:4980
1193
  msgid "Your last sign-in was %s from %s"
1194
  msgstr "Ihre letzte Anmeldung war am %s von %s aus"
1195
 
1196
+ #: admin/cerber-dashboard.php:343
1197
  msgid "Optional comment for this entry"
1198
  msgstr "Optionaler Kommentar zu diesem Eintrag"
1199
 
1200
+ #: admin/cerber-dashboard.php:365
1201
  msgid "You cannot add your IP address or network"
1202
  msgstr "Sie können Ihre IP-Adresse oder Ihr Netzwerk nicht hinzufügen."
1203
 
1205
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1206
  msgstr "Um einen REGEX-Ausdruck zu definieren umschliessen Sie diesen mit zwei Vorwärts-Schrägstrichen"
1207
 
1208
+ #: admin/cerber-dashboard.php:62
1209
  msgid "Cerber Traffic Inspector"
1210
  msgstr "Cerber Traffic Inspektor"
1211
 
1212
+ #: admin/cerber-dashboard.php:62 admin/cerber-dashboard.php:2104
1213
+ #: admin/cerber-dashboard.php:5363
1214
  msgid "Traffic Inspector"
1215
  msgstr "Traffic Inspektor"
1216
 
1217
+ #: admin/cerber-dashboard.php:2143 admin/cerber-users.php:1116
1218
  msgid "Traffic"
1219
  msgstr "Traffic"
1220
 
1221
+ #: admin/cerber-dashboard.php:4544
1222
  msgid "Request"
1223
  msgstr "Anfrage"
1224
 
1225
+ #: admin/cerber-dashboard.php:4546 admin/cerber-users.php:928
1226
  msgid "Host Info"
1227
  msgstr "Host-Informationen"
1228
 
1229
+ #: admin/cerber-dashboard.php:4547
1230
  msgid "User Agent"
1231
  msgstr "User Agent"
1232
 
1233
+ #: admin/cerber-dashboard.php:4613
1234
  msgid "Form submissions"
1235
  msgstr "Formularübermittlungen"
1236
 
1237
+ #: admin/cerber-dashboard.php:4614
1238
  msgid "Page Not Found"
1239
  msgstr "Seite nicht gefunden"
1240
 
1241
+ #: admin/cerber-dashboard.php:4621
1242
  msgid "Longer than"
1243
  msgstr "Länger als"
1244
 
1245
+ #: admin/cerber-dashboard.php:4644
1246
  msgid "Refresh"
1247
  msgstr "Aktualisieren"
1248
 
1249
+ #: cerber-common.php:283
1250
  msgid "Check for requests"
1251
  msgstr "Auf Anfragen prüfen"
1252
 
1253
+ #: admin/cerber-dashboard.php:4679
1254
  msgid "Not specified"
1255
  msgstr "Nicht spezifiziert"
1256
 
1290
  msgid "Page generation time threshold"
1291
  msgstr "Seitengenerierung Zeitschwelle"
1292
 
1293
+ #: admin/cerber-dashboard.php:2103
 
 
 
 
1294
  msgid "enabled"
1295
  msgstr "aktiviert"
1296
 
1297
+ #: admin/cerber-dashboard.php:2108
1298
  msgid "no connection"
1299
  msgstr "keine Verbindung"
1300
 
1301
+ #: admin/cerber-dashboard.php:1921
1302
  msgid "Last seen"
1303
  msgstr "Zuletzt gesehen"
1304
 
1305
+ #: cerber-load.php:4688
1306
  msgid "We're sorry, you are not allowed to proceed"
1307
  msgstr "Es tut uns leid, aber Sie dürfen nicht fortfahren"
1308
 
1334
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1335
  msgstr "Nicht autorisierten Zugang zu load.scripts.php und load-styles.php blockieren"
1336
 
1337
+ #: cerber-common.php:3281
1338
  msgid "Unable to create the directory"
1339
  msgstr "Kann Verzeichnis nicht erstellen"
1340
 
1341
+ #: cerber-common.php:3286
1342
  msgid "Destination folder access denied"
1343
  msgstr "Zugang zum Zielordner verweigert"
1344
 
1345
+ #: cerber-common.php:3289
1346
  msgid "File not found"
1347
  msgstr "Datei nicht gefunden"
1348
 
1349
+ #: cerber-common.php:3292
1350
  msgid "Unable to copy the file"
1351
  msgstr "Konnte Datei nicht kopieren"
1352
 
1353
+ #: cerber-common.php:3298
1354
  msgid "Unable to delete the file"
1355
  msgstr "Konnte Datei nicht löschen"
1356
 
1370
  msgid "Plugin initialization mode has not been changed"
1371
  msgstr "Plugin-Initialisierungsmodus wurde nicht geändert"
1372
 
1373
+ #: cerber-common.php:1715
1374
  msgid "File upload denied"
1375
  msgstr "Datei-Upload abgelehnt"
1376
 
1386
  msgid "If you forget your Custom login URL, you will be unable to log in."
1387
  msgstr "Falls Sie Ihre individuelle Login-URL vergessen, können Sie sich nicht einloggen."
1388
 
1389
+ #: admin/cerber-dashboard.php:73 admin/cerber-dashboard.php:5424
1390
  msgid "Site Integrity"
1391
  msgstr "Integrität der Seite"
1392
 
1393
  #: cerber-scanner.php:1717 cerber-settings.php:683 cerber-settings.php:825
1394
  #: cerber-settings.php:856 cerber-settings.php:990 cerber-settings.php:999
1395
+ #: cerber-settings.php:1466 admin/cerber-dashboard.php:2128
1396
+ #: admin/cerber-dashboard.php:2130 admin/cerber-users.php:20
1397
  #: admin/cerber-users.php:474 admin/cerber-users.php:488
1398
  msgid "Disabled"
1399
  msgstr "Deaktiviert"
1400
 
1401
+ #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2129
1402
  msgid "Quick Scan"
1403
  msgstr "Quick Scan"
1404
 
1405
+ #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2131
1406
  msgid "Full Scan"
1407
  msgstr "Komplettscan"
1408
 
1409
+ #: cerber-common.php:1751 cerber-common.php:1761
1410
  msgid "Denied"
1411
  msgstr "Verweigert"
1412
 
1507
  msgid "Include scan errors"
1508
  msgstr "Scan-Fehler einschließen"
1509
 
1510
+ #: admin/cerber-dashboard.php:5426
1511
  msgid "Security Scanner"
1512
  msgstr "Sicherheits-Scanner"
1513
 
1514
+ #: admin/cerber-dashboard.php:5428
1515
  msgid "Scheduling"
1516
  msgstr "Planung"
1517
 
1543
  msgid "Continue Scanning"
1544
  msgstr "Scan fortsetzen"
1545
 
1546
+ #: admin/cerber-dashboard.php:1385 admin/cerber-tools.php:355
1547
+ #: admin/cerber-admin.php:227
1548
  msgid "Delete"
1549
  msgstr "Löschen"
1550
 
1656
  msgid "To view full report visit"
1657
  msgstr "Um den gesamten Bericht einzusehen, besuchen Sie"
1658
 
1659
+ #: cerber-load.php:4922
1660
  msgid "Scanner Report"
1661
  msgstr "Scanner Bericht"
1662
 
1720
  msgid "Files scanned"
1721
  msgstr "Dateien gescannt"
1722
 
1723
+ #: admin/cerber-dashboard.php:325 admin/cerber-dashboard.php:1684
1724
+ #: admin/cerber-dashboard.php:1741 admin/cerber-dashboard.php:1872
1725
  msgid "Check for activities"
1726
  msgstr "Auf Aktivitäten prüfen"
1727
 
1728
+ #: admin/cerber-dashboard.php:1903
1729
  msgid "Activated"
1730
  msgstr "Aktiviert"
1731
 
1732
+ #: cerber-common.php:1726
1733
  msgid "Malicious request denied"
1734
  msgstr "Schädliche Anforderung verweigert"
1735
 
1736
+ #: cerber-common.php:1740
1737
  msgid "User activated"
1738
  msgstr "Nutzer aktiviert"
1739
 
1740
+ #: cerber-common.php:1763
1741
  msgid "Suspicious number of fields"
1742
  msgstr "Verdächtige Anzahl an Feldern"
1743
 
1744
+ #: cerber-common.php:1764
1745
  msgid "Suspicious number of nested values"
1746
  msgstr "Verdächtige Anzahl an verschachtelten Werten"
1747
 
1748
+ #: cerber-common.php:1765 cerber-common.php:1914
1749
  msgid "Malicious code detected"
1750
  msgstr "Schädlicher Code entdeckt"
1751
 
1752
+ #: cerber-common.php:1915
1753
  msgid "Attempt to upload a file with malicious code"
1754
  msgstr "Versuch eine Datei mit schädlichem Code hochzuladen"
1755
 
1756
+ #: cerber-common.php:2198
1757
  msgid "Bytes"
1758
  msgstr "Bytes"
1759
 
1773
  msgid "Scan results reporting"
1774
  msgstr "Scan Ergebnisberichte"
1775
 
1776
+ #: admin/cerber-dashboard.php:1082
1777
  msgid "Suspicious activity"
1778
  msgstr "Verdächtige Aktivität"
1779
 
1780
+ #: admin/cerber-dashboard.php:4610
1781
  msgid "Errors"
1782
  msgstr "Fehler"
1783
 
1786
  msgid "Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications."
1787
  msgstr "Schützt WordPress vor Hackerangriffen, Spam, Trojanern und Viren. Malware-Scanner und Integritätsüberprüfer. Verstärkt WordPress mit einer Reihe umfassender Sicherheitsalgorithmen. Spam-Schutz mit fortschrittlicher Bot-Erkennungs-Engine und reCAPTCHA. Trackt Nutzer- und Eindringlingsaktivität mit leistungsstarken E-Mail-, Mobil- und Desktopbenachrichtigungen."
1788
 
1789
+ #: cerber-load.php:394
1790
  msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
1791
  msgstr "Sie haben die Anzahl erlaubter Login-Versuche überschritten. Bitte versuchen Sie es in %d Minuten erneut."
1792
 
1793
+ #: cerber-common.php:2078
1794
  msgctxt "preposition of a period of time like: in 6 hours"
1795
  msgid "in %s"
1796
  msgstr "in %s"
1800
  msgid "at"
1801
  msgstr "um"
1802
 
1803
+ #: admin/cerber-dashboard.php:5431
1804
  msgid "Quarantine"
1805
  msgstr "Quarantäne"
1806
 
1873
  msgid "The file has been restored to its original location."
1874
  msgstr "Die Datei wurde an ihrem ursprünglichen Speicherort wiederhergestellt."
1875
 
1876
+ #: admin/cerber-dashboard.php:2144
1877
  msgid "Integrity"
1878
  msgstr "Integrität"
1879
 
1880
+ #: cerber-common.php:1714
1881
  msgid "Attempt to upload malicious file denied"
1882
  msgstr "Versuch schädliche Datei hochzuladen verweigert"
1883
 
1884
+ #: cerber-load.php:8063
1885
  msgid "Awesome!"
1886
  msgstr "Super!"
1887
 
1909
  msgid "Use comma to separate items."
1910
  msgstr "Separate Elemente mit Komma trennen"
1911
 
1912
+ #: admin/cerber-dashboard.php:5429
1913
  msgid "Cleaning up"
1914
  msgstr "Bereinigen"
1915
 
1941
  msgid "Automatically moved to quarantine"
1942
  msgstr "Automatisch in Quarantäne verschoben"
1943
 
1944
+ #: cerber-common.php:1766
1945
  msgid "Suspicious SQL code detected"
1946
  msgstr "Verdächtiger SQL-Code entdeckt"
1947
 
1948
+ #: admin/cerber-dashboard.php:2125
1949
  msgctxt "Example: Last malware scan: 23 Jan 2018"
1950
  msgid "Last malware scan"
1951
  msgstr "Letzer Malware-Scan"
1952
 
1953
+ #: admin/cerber-dashboard.php:5365
1954
  msgid "Live Traffic"
1955
  msgstr "Live-Traffic"
1956
 
1962
  msgid "Disable PHP error displaying"
1963
  msgstr "PHP-Fehleranzeige deaktivieren"
1964
 
1965
+ #: admin/cerber-dashboard.php:5430
1966
  msgid "Ignore List"
1967
  msgstr "Liste ignorieren"
1968
 
1995
  msgid "Activity Insights"
1996
  msgstr "Aktivitäteneinblicke"
1997
 
1998
+ #: admin/cerber-dashboard.php:3330
1999
  msgid "Are you sure you want to delete selected files?"
2000
  msgstr "Sind Sie sicher, dass Sie die ausgewählten Dateien löschen möchten?"
2001
 
2002
+ #: admin/cerber-dashboard.php:3331
2003
  msgid "These files have been moved to the quarantine"
2004
  msgstr "Diese Dateien wurden in die Quarantäne verschoben"
2005
 
2006
+ #: admin/cerber-dashboard.php:3334
2007
  msgid "Do you want to add selected files to the ignore list?"
2008
  msgstr "Möchten Sie die ausgewählten Dateien der Ignore-List hinzufügen?"
2009
 
2010
+ #: admin/cerber-dashboard.php:3335
2011
  msgid "These files have been added to the ignore list"
2012
  msgstr "Diese Dateien wurden der Ignore-List hinzugefügt"
2013
 
2014
+ #: admin/cerber-dashboard.php:3337
2015
  msgid "Some errors occurred"
2016
  msgstr "Es sind einige Fehler aufgetreten"
2017
 
2018
+ #: admin/cerber-dashboard.php:3338
2019
  msgid "All files have been processed"
2020
  msgstr "Alle Dateien wurden verarbeitet"
2021
 
2022
+ #: admin/cerber-dashboard.php:5770
2023
  msgid "Know more about all advantages at"
2024
  msgstr "Erfahren Sie mehr über alle Vorteile bei"
2025
 
2026
+ #: cerber-common.php:1767
2027
  msgid "Suspicious JavaScript code detected"
2028
  msgstr "Verdächtiger JavaScript-Code entdeckt"
2029
 
2047
  msgid "Click here to see the full list of files"
2048
  msgstr "Klicken Sie hier, um die vollständige Dateienliste zu sehen"
2049
 
2050
+ #: admin/cerber-dashboard.php:950
2051
  msgid "Additional Details"
2052
  msgstr "Weitere Details"
2053
 
2054
+ #: admin/cerber-dashboard.php:4066
2055
  msgid "Page generation time"
2056
  msgstr "Seitengenerierungszeit"
2057
 
2058
+ #: admin/cerber-dashboard.php:5950
2059
  msgid "Log In"
2060
  msgstr "Einloggen"
2061
 
2062
+ #: admin/cerber-dashboard.php:5951
2063
  msgid "Log Out"
2064
  msgstr "Ausloggen"
2065
 
2066
+ #: admin/cerber-dashboard.php:5952
2067
  msgid "Register"
2068
  msgstr "Registrieren"
2069
 
2070
+ #: admin/cerber-dashboard.php:5955
2071
  msgid "WooCommerce Log In"
2072
  msgstr "WooCommerce Login"
2073
 
2074
+ #: admin/cerber-dashboard.php:5956
2075
  msgid "WooCommerce Log Out"
2076
  msgstr "WooCommerce Logout"
2077
 
2078
+ #: cerber-common.php:1755
2079
  msgid "IP address is locked out"
2080
  msgstr "IP-Adresse ist ausgesperrt"
2081
 
2082
+ #: cerber-common.php:1918
2083
  msgid "Multiple suspicious requests"
2084
  msgstr "Mehrere Verdächtige Anfragen"
2085
 
2111
  msgid "Preparing for the scan"
2112
  msgstr "Für den Scan vorbereiten"
2113
 
2114
+ #: cerber-common.php:1768
2115
  msgid "Blocked by administrator"
2116
  msgstr "Vom Administrator blockiert"
2117
 
2118
+ #: cerber-load.php:398
2119
  msgid "You are not allowed to log in"
2120
  msgstr "Sie dürfen sich nicht einloggen"
2121
 
2167
  msgid "Select one or more roles"
2168
  msgstr "Eine oder mehrere Rollen auswählen"
2169
 
2170
+ #: admin/cerber-dashboard.php:1414 admin/cerber-users.php:971
2171
  msgid "Filter by registered user"
2172
  msgstr "Nach registriertem Nutzer filtern"
2173
 
2187
  msgid "Redirect to URL"
2188
  msgstr "An URL weiterleiten"
2189
 
2190
+ #: admin/cerber-dashboard.php:5484
2191
  msgid "Changelog"
2192
  msgstr "Änderungsprotokoll"
2193
 
2194
+ #: admin/cerber-dashboard.php:741
2195
  msgid "Default settings have been loaded"
2196
  msgstr "Standardeinstellungen wurden geladen"
2197
 
2198
+ #: admin/cerber-dashboard.php:3775
2199
  msgid "Save all rules"
2200
  msgstr "Alle Regeln speichern"
2201
 
2202
+ #: cerber-common.php:1743
2203
  msgid "Invalid master credentials"
2204
  msgstr "Ungültige Master-Anmeldedaten"
2205
 
2251
  msgid "Malware Scan"
2252
  msgstr "Malware-Scan"
2253
 
2254
+ #: nexus/cerber-nexus-master.php:516 nexus/cerber-slave-list.php:56
2255
  msgid "Notes"
2256
  msgstr "Notizen"
2257
 
2259
  msgid "Add a slave website"
2260
  msgstr "Eine Slave-Website hinzufügen"
2261
 
2262
+ #: nexus/cerber-slave-list.php:247 admin/cerber-users.php:1037
2263
  msgid "Search results for:"
2264
  msgstr "Ergebnisse suchen für:"
2265
 
2279
  msgid "Add a new one"
2280
  msgstr "Eine neue hinzufügen"
2281
 
2282
+ #: nexus/cerber-nexus-master.php:479
2283
  msgid "Website Properties"
2284
  msgstr "Website-Eigenschaften"
2285
 
2286
+ #: nexus/cerber-nexus-master.php:489
2287
  msgid "Website URL"
2288
  msgstr "Website URL"
2289
 
2290
+ #: nexus/cerber-nexus-master.php:494
2291
  msgid "Display as"
2292
  msgstr "Anzeigen als"
2293
 
2294
+ #: nexus/cerber-nexus-master.php:524
2295
  msgid "Website Owner"
2296
  msgstr "Website-Eigentümer"
2297
 
2298
+ #: nexus/cerber-nexus-master.php:540
2299
  msgid "Phone"
2300
  msgstr "Telefon"
2301
 
2302
+ #: nexus/cerber-nexus-master.php:548
2303
  msgid "Address"
2304
  msgstr "Adresse"
2305
 
2306
+ #: nexus/cerber-nexus-master.php:691
2307
  msgid "The website you are trying to add is already in the list"
2308
  msgstr "Die Website, die Sie hinzufügen möchten, ist bereits auf der Liste"
2309
 
2310
+ #: nexus/cerber-nexus-master.php:700
2311
  msgid "The website has been added successfully"
2312
  msgstr "Die Website wurde erfolgreich hinzugefügt"
2313
 
2314
+ #: nexus/cerber-nexus-master.php:701
2315
  msgid "Click to edit"
2316
  msgstr "Zum Bearbeiten klicken"
2317
 
2318
+ #: nexus/cerber-nexus-master.php:702
2319
  msgid "Switch to the Dashboard"
2320
  msgstr "Auf das Dashboard wechseln"
2321
 
2322
+ #: nexus/cerber-nexus-master.php:705
2323
  msgid "Keep in mind: You have added the website that does not support SSL encryption. This may lead to data leakage."
2324
  msgstr "Bitte beachten Sie: Sie haben eine Website hinzugefügt, die keine SSL-Verschlüsselung unterstützt. Diese könnte zu Datenverlust fühlen."
2325
 
2326
+ #: nexus/cerber-nexus-master.php:824
2327
  msgid "Website has been deleted"
2328
  msgid_plural "%s websites have been deleted"
2329
  msgstr[0] "Website wurde gelöscht"
2330
  msgstr[1] "Plural: %s Websites wurden gelöscht"
2331
 
2332
+ #: nexus/cerber-nexus-master.php:1074
2333
  msgid "You have switched to %s"
2334
  msgstr "Sie sind gewechselt auf %s"
2335
 
2336
+ #: nexus/cerber-nexus-master.php:1084
2337
  msgid "You have switched back to the master website"
2338
  msgstr "Sie sind auf die Master-Website gewechselt"
2339
 
2340
+ #: nexus/cerber-nexus-master.php:1300
2341
  msgid "You are here:"
2342
  msgstr "Sie sind hier:"
2343
 
2344
+ #: nexus/cerber-nexus-master.php:1303 nexus/cerber-nexus.php:94
2345
  #: nexus/cerber-nexus.php:104
2346
  msgid "My Websites"
2347
  msgstr "Meine Websites"
2403
  msgstr "Den Zugriffs-Token auf der Master-Website installieren."
2404
 
2405
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
2406
+ #: cerber-common.php:2071
2407
  msgid "%s sec"
2408
  msgid_plural "%s secs"
2409
  msgstr[0] "%s Sek"
2417
  msgid "Updates"
2418
  msgstr "Updates"
2419
 
2420
+ #: nexus/cerber-nexus-master.php:502 nexus/cerber-slave-list.php:54
2421
  msgid "Group"
2422
  msgstr "Gruppe"
2423
 
2437
  msgid "All groups"
2438
  msgstr "Alle Gruppen"
2439
 
2440
+ #: nexus/cerber-nexus-master.php:1384
2441
  msgid "Are you sure you want to delete selected websites?"
2442
  msgstr "Sind Sie sicher, dass Sie die ausgewählten Websites löschen möchten?"
2443
 
2445
  msgid "Block"
2446
  msgstr "Blockieren"
2447
 
2448
+ #: nexus/cerber-nexus-master.php:471
2449
  msgid "Select an existing group or enter a new one to add it"
2450
  msgstr "Wählen Sie eine bestehende Gruppe aus oder tragen Sie eine neue ein, um sie hinzuzufügen"
2451
 
2452
+ #: nexus/cerber-nexus-master.php:544
2453
  msgid "Company"
2454
  msgstr "Unternehmen"
2455
 
2456
+ #: nexus/cerber-nexus-master.php:178
2457
  msgid "Invalid response from the slave website"
2458
  msgstr "Ungültige Antwort von der Slave-Website"
2459
 
2460
+ #: cerber-common.php:1707 cerber-common.php:1908
2461
  msgid "Attempt to log in with non-existing username"
2462
  msgstr "Login-Versuch mit nicht existierendem Nutzernamen"
2463
 
2464
+ #: cerber-load.php:5076
2465
  msgid "Attempts to log in with non-existing usernames"
2466
  msgstr "Login-Versuche mit nicht existierenden Nutzernamen"
2467
 
2493
  msgid "Block execution of PHP scripts in the WordPress media folder"
2494
  msgstr "Blockieren der Ausführung von PHP-Skripten im WordPress-Medienordner"
2495
 
2496
+ #: nexus/cerber-nexus-master.php:1451 nexus/cerber-nexus-master.php:1459
2497
  msgid "Active plugins and updates on"
2498
  msgstr "Aktive Plugins und Updates auf"
2499
 
2500
+ #: nexus/cerber-nexus-master.php:1429
2501
  msgid "A newer version is available"
2502
  msgstr "Es ist eine neuere Version verfügbar"
2503
 
2504
+ #: admin/cerber-dashboard.php:1076
2505
  msgid "New users"
2506
  msgstr "Neue Benutzer"
2507
 
2508
+ #: admin/cerber-dashboard.php:1096
2509
  msgid "My activity"
2510
  msgstr "Meine Aktivitäten"
2511
 
2512
+ #: admin/cerber-dashboard.php:2993
2513
  msgid "Create Alert"
2514
  msgstr "Warnung erstellen"
2515
 
2516
+ #: admin/cerber-dashboard.php:2997
2517
  msgid "Delete Alert"
2518
  msgstr "Warnung löschen"
2519
 
2520
+ #: admin/cerber-dashboard.php:3095
2521
  msgid "The alert has been created"
2522
  msgstr "Die Warnung wurde erstellt"
2523
 
2524
+ #: admin/cerber-dashboard.php:3104
2525
  msgid "The alert has been deleted"
2526
  msgstr "Die Warnung wurde gelöscht"
2527
 
2528
+ #: admin/cerber-dashboard.php:4626
2529
  msgid "Advanced Search"
2530
  msgstr "Erweiterte Suche"
2531
 
2534
  msgid "Cerber Tech Inc."
2535
  msgstr "Cerber Tech Inc."
2536
 
2537
+ #: cerber-load.php:5743
2538
  msgid "To delete the alert, click here"
2539
  msgstr "Zum Löschen des Alarms hier klicken."
2540
 
2606
  msgid "Automatically recovered"
2607
  msgstr "Automatisch wiederhergestellt"
2608
 
2609
+ #: admin/cerber-dashboard.php:70
2610
  msgid "Cerber User Security"
2611
  msgstr "Cerber Benutzersicherheit"
2612
 
2613
+ #: admin/cerber-dashboard.php:70 admin/cerber-dashboard.php:5389
2614
  msgid "User Policies"
2615
  msgstr "Benutzerrichtlinien"
2616
 
2617
+ #: admin/cerber-dashboard.php:2147
2618
  msgid "A new version is available"
2619
  msgstr "Eine neue Version ist verfügbar"
2620
 
2621
+ #: admin/cerber-dashboard.php:5392
2622
  msgid "Global"
2623
  msgstr "Global"
2624
 
2625
+ #: cerber-common.php:1769
2626
  msgid "Site policy enforcement"
2627
  msgstr "Durchsetzung der Website-Policy"
2628
 
2629
+ #: cerber-common.php:1770
2630
  msgid "2FA code verified"
2631
  msgstr "2FA-Code verifiziert"
2632
 
2633
+ #: cerber-common.php:1771
2634
  msgid "Initiated by the user"
2635
  msgstr "Durch den Benutzer eingeleitet"
2636
 
2637
+ #: cerber-common.php:2321
2638
  msgid "A new version of %s is available. Please install it."
2639
  msgstr "Eine neue Version von %s ist verfügbar. Bitte installieren Sie sie."
2640
 
2641
+ #: cerber-load.php:1958
2642
  msgid "Email address is not permitted."
2643
  msgstr "E-Mail-Adresse ist nicht zulässig."
2644
 
2645
+ #: cerber-load.php:1958
2646
  msgid "Please choose another one."
2647
  msgstr "Bitte wählen Sie eine andere."
2648
 
2794
  msgid "Try again"
2795
  msgstr "Erneut versuchen"
2796
 
2797
+ #: cerber-2fa.php:661 admin/cerber-dashboard.php:5839
2798
  msgid "Cancel"
2799
  msgstr "Abbrechen"
2800
 
2814
  msgid "Two-Factor Authentication Email"
2815
  msgstr "Zwei-Faktor-Authentifizierung E-Mail"
2816
 
2817
+ #: admin/cerber-dashboard.php:3718
2818
  msgid "Role-based rules are configured"
2819
  msgstr "Rollenbasierte Regeln werden konfiguriert"
2820
 
2827
  msgid "The code is valid for %s minutes."
2828
  msgstr "Der Code ist für %s Minuten gültig."
2829
 
2830
+ #: admin/cerber-dashboard.php:372
2831
  msgid "IP address %s has been added to White IP Access List"
2832
  msgstr "Die IP-Adresse %s wurde zur weißen Liste IP Zugang hinzugefügt"
2833
 
2834
+ #: admin/cerber-dashboard.php:369
2835
  msgid "IP address %s has been added to Black IP Access List"
2836
  msgstr "Die IP-Adresse %s wurde zur schwarzen Liste IP Zugang hinzugefügt"
2837
 
2838
+ #: admin/cerber-dashboard.php:211 admin/cerber-dashboard.php:947
2839
+ #: admin/cerber-dashboard.php:1327 admin/cerber-dashboard.php:4545
2840
+ #: admin/cerber-users.php:927
2841
  msgid "IP Address"
2842
  msgstr "IP-Adresse"
2843
 
2844
+ #: admin/cerber-dashboard.php:954 admin/cerber-dashboard.php:1333
2845
  msgid "Username"
2846
  msgstr "Benutzername"
2847
 
2848
+ #: admin/cerber-dashboard.php:3800
2849
  msgid "Any country is permitted"
2850
  msgstr "Jedes Land ist erlaubt"
2851
 
2852
+ #: admin/cerber-dashboard.php:3405 admin/cerber-dashboard.php:5294
2853
  msgid "Sessions"
2854
  msgstr "Sitzungen"
2855
 
2856
+ #: cerber-load.php:1717
2857
  msgid "Session has been terminated"
2858
  msgid_plural "%s sessions have been terminated"
2859
  msgstr[0] "Die Sitzung wurde beendet"
2860
  msgstr[1] "Sitzungen wurden beendet"
2861
 
2862
+ #: admin/cerber-users.php:925
2863
  msgid "Created"
2864
  msgstr "Erstellt"
2865
 
2866
+ #: admin/cerber-users.php:946
2867
  msgid "Terminate session"
2868
  msgstr "Sitzung beenden"
2869
 
2870
+ #: admin/cerber-users.php:947
2871
  msgid "Block user"
2872
  msgstr "Benutzer sperren"
2873
 
2874
+ #: admin/cerber-users.php:1079
2875
  msgid "Profile"
2876
  msgstr "Profil"
2877
 
2878
+ #: admin/cerber-users.php:1092
2879
  msgid "All Logins"
2880
  msgstr "Alle Logins"
2881
 
2882
+ #: admin/cerber-users.php:1093
2883
  msgid "User Activity"
2884
  msgstr "Benutzeraktivität"
2885
 
2886
+ #: admin/cerber-users.php:1139
2887
  msgid "Terminate"
2888
  msgstr "Beenden"
2889
 
2890
+ #: admin/cerber-dashboard.php:2097
2891
  msgid "user"
2892
  msgid_plural "users"
2893
  msgstr[0] "Benutzer"
2901
  msgid "Unable to delete"
2902
  msgstr "Löschen nicht möglich"
2903
 
2904
+ #: admin/cerber-dashboard.php:66
2905
  msgid "Cerber Data Shield Policies"
2906
  msgstr "Cerber Data Shield Richtlinien"
2907
 
2908
+ #: admin/cerber-dashboard.php:66
2909
  msgid "Data Shield"
2910
  msgstr "Data Shield"
2911
 
2912
+ #: admin/cerber-dashboard.php:5379
2913
  msgid "Data Shield Policies"
2914
  msgstr "Data Shield Richtlinien"
2915
 
2916
+ #: admin/cerber-dashboard.php:5381
2917
  msgid "Accounts & Roles"
2918
  msgstr "Konten & Rollen"
2919
 
2920
+ #: admin/cerber-dashboard.php:5382
2921
  msgid "Site Settings"
2922
  msgstr "Website-Einstellungen"
2923
 
2924
+ #: cerber-common.php:1720
2925
  msgid "User creation denied"
2926
  msgstr "Benutzererstellung verweigert"
2927
 
2928
+ #: cerber-common.php:1722
2929
  msgid "Role update denied"
2930
  msgstr "Rollenupdate verweigert"
2931
 
2932
+ #: cerber-common.php:1723
2933
  msgid "Setting update denied"
2934
  msgstr "Einstellungsupdate verweigert"
2935
 
2936
+ #: cerber-common.php:1776
2937
  msgid "Permission denied"
2938
  msgstr "Berechtigung verweigert"
2939
 
2940
+ #: cerber-common.php:1778
2941
  msgid "Invalid user"
2942
  msgstr "Ungültiger Benutzer"
2943
 
2944
+ #: cerber-common.php:1779
2945
  msgid "Incorrect password"
2946
  msgstr "Falsches Passwort"
2947
 
3021
  msgid "All countries"
3022
  msgstr "Alle Länder"
3023
 
3024
+ #: nexus/cerber-nexus-master.php:442
3025
  msgid "Show homepage in the Website column"
3026
  msgstr "Homepage in der Spalte Website anzeigen"
3027
 
3028
+ #: nexus/cerber-nexus-master.php:444
3029
  msgid "Hide server IP address"
3030
  msgstr "IP-Adresse des Servers verbergen"
3031
 
3032
+ #: admin/cerber-dashboard.php:341
3033
  msgid "IP address, range, wildcard, or CIDR"
3034
  msgstr "IP-Adresse, Bereich, Wildcard oder CIDR"
3035
 
3036
+ #: admin/cerber-dashboard.php:342
3037
  msgid "Add Entry"
3038
  msgstr "Eintrag zufügen"
3039
 
3040
+ #: admin/cerber-dashboard.php:5634
3041
  msgid "The IP address you are trying to add is already in the list"
3042
  msgstr "Die IP-Adresse, die Sie hinzufügen möchten, ist bereits in der Liste enthalten"
3043
 
3044
+ #: cerber-common.php:1674
3045
  msgid "IP subnet blocked"
3046
  msgstr "IP-Subnetz blockiert"
3047
 
3048
+ #: cerber-common.php:1721
3049
  msgid "User row update denied"
3050
  msgstr "Update der Benutzerzeile verweigert"
3051
 
3052
+ #: cerber-common.php:1724
3053
  msgid "User metadata update denied"
3054
  msgstr "Update der Benutzer-Metadaten verweigert"
3055
 
3117
  msgid "Cookies"
3118
  msgstr "Cookies"
3119
 
3120
+ #: admin/cerber-dashboard.php:77
3121
  msgid "Cerber anti-spam settings"
3122
  msgstr "Cerber Antispam-Einstellungen"
3123
 
3124
+ #: admin/cerber-dashboard.php:77
3125
  msgid "Anti-spam"
3126
  msgstr "Antispam"
3127
 
3128
+ #: cerber-addons.php:289 admin/cerber-dashboard.php:85
3129
+ #: admin/cerber-dashboard.php:85
3130
  msgid "Add-ons"
3131
  msgstr "Add-ons"
3132
 
3133
+ #: admin/cerber-dashboard.php:5343
3134
  msgid "Anti-spam and bot detection settings"
3135
  msgstr "Einstellungen für Anti-Spam und Bot-Erkennung"
3136
 
3137
+ #: admin/cerber-dashboard.php:5345
3138
  msgid "Anti-spam engine"
3139
  msgstr "Anti-spam engine"
3140
 
3141
+ #: cerber-common.php:1917
3142
  msgid "Multiple erroneous requests"
3143
  msgstr "Mehrere fehlerhafte Anfragen"
3144
 
3234
  msgid "Settings updated"
3235
  msgstr "Einstellungen aktualisiert"
3236
 
3237
+ #: admin/cerber-dashboard.php:1418
3238
  msgid "Request ID"
3239
  msgstr "Anfrage-ID"
3240
 
3241
+ #: admin/cerber-dashboard.php:1419
3242
  msgid "Search in URL"
3243
  msgstr "In URL suchen"
3244
 
3250
  msgid "All files"
3251
  msgstr "Alle Dateien"
3252
 
3253
+ #: admin/cerber-dashboard.php:1926
3254
  msgid "Active sessions"
3255
  msgstr "Aktive Sitzungen"
3256
 
3262
  msgid "Load entries"
3263
  msgstr "Einträge laden"
3264
 
3265
+ #: admin/cerber-dashboard.php:1097 admin/cerber-dashboard.php:4618
3266
  msgid "My IP"
3267
  msgstr "Meine IP"
3268
 
3269
+ #: admin/cerber-dashboard.php:5432
3270
  msgid "Analytics"
3271
  msgstr "Analytik"
3272
 
3273
+ #: admin/cerber-dashboard.php:5481
3274
  msgid "Manage Settings"
3275
  msgstr "Einstellungen verwalten"
3276
 
3277
  #: cerber-settings.php:1047 cerber-settings.php:1445 cerber-settings.php:1473
3278
+ #: admin/cerber-dashboard.php:5483
3279
  msgid "Diagnostic Log"
3280
  msgstr "Diagnose-Log"
3281
 
3282
+ #: cerber-common.php:1665
3283
  msgid "User deleted"
3284
  msgstr "Benutzer gelöscht"
3285
 
3286
+ #: cerber-common.php:1774
3287
  msgid "Email address is prohibited"
3288
  msgstr "E-Mail-Adresse ist verboten"
3289
 
3391
  msgid "To get the most out of WP Cerber, follow these steps:"
3392
  msgstr "Um WP Cerber optimal zu nutzen, folgen Sie diesen Schritten:"
3393
 
3394
+ #: cerber-common.php:1789
3395
  msgid "IP whitelisted"
3396
  msgstr "IP auf der weißen Liste"
3397
 
3398
+ #: admin/cerber-dashboard.php:4617
3399
  msgid "My requests"
3400
  msgstr "Meine Anfragen"
3401
 
3402
+ #: admin/cerber-dashboard.php:3910
3403
  msgid "Log into the website"
3404
  msgstr "Auf der Website anmelden"
3405
 
3408
  msgid "WP Cerber Security, Anti-spam & Malware Scan"
3409
  msgstr "WP Cerber Sicherheit, Antispam & Malware Scan"
3410
 
3411
+ #: cerber-common.php:1713 cerber-common.php:1913
3412
  msgid "Probing for vulnerable code"
3413
  msgstr "Suche nach angreifbarem Code"
3414
 
3415
+ #: cerber-load.php:5967
3416
  msgid "Your IP address %s has been added to the White IP Access List"
3417
  msgstr "Ihre IP-Adresse %s wurde in die weiße Liste IP Access aufgenommen"
3418
 
3419
+ #: admin/cerber-users.php:974
3420
  msgid "Search for IP address"
3421
  msgstr "Nach IP-Adresse suchen"
3422
 
3444
  msgid "Specify User-Agents to exclude requests from logging. One item per line."
3445
  msgstr "Geben Sie Benutzer-Agenten an, um Anfragen von der Protokollierung auszuschließen. Ein Element pro Zeile."
3446
 
3447
+ #: admin/cerber-dashboard.php:4739
3448
  msgid "Unknown Google's bot"
3449
  msgstr "Unbekannter Google Bot"
3450
 
3451
+ #: cerber-common.php:1780
3452
  msgid "IP address is not allowed"
3453
  msgstr "IP-Adresse ist nicht zulässig"
3454
 
3485
  msgid "Defer rendering the custom login page"
3486
  msgstr "Rendering der angepassten Anmeldeseite verzögern"
3487
 
3488
+ #: cerber-load.php:414
3489
  msgid "You have only one login attempt remaining."
3490
  msgstr "Sie haben nur noch einen Anmeldeversuch."
3491
 
3513
  msgid "If the number of concurrent user sessions is greater"
3514
  msgstr "Wenn die Anzahl der gleichzeitigen Benutzersitzungen größer ist"
3515
 
3516
+ #: admin/cerber-dashboard.php:5769
3517
  msgid "These features are available in the professional version of WP Cerber."
3518
  msgstr "Diese Funktionen sind in der professionellen Version von WP Cerber verfügbar"
3519
 
3520
+ #: cerber-common.php:1694
3521
  msgid "User session terminated"
3522
  msgstr "Benutzersitzung beendet"
3523
 
3524
+ #: cerber-common.php:1781
3525
  msgid "Limit on concurrent user sessions"
3526
  msgstr "Limit für gleichzeitige Benutzersitzungen"
3527
 
3545
  msgid "To avoid false positives and get better anti-spam performance, please clear the plugin cache."
3546
  msgstr "Um Fehlalarme zu vermeiden und eine bessere Anti-Spam-Leistung zu erhalten, löschen Sie bitte den Plugin-Cache."
3547
 
3548
+ #: cerber-common.php:1733
3549
  msgid "API request authorized"
3550
  msgstr "API-Anforderung genehmigt"
3551
 
3552
+ #: cerber-common.php:1734
3553
  msgid "API request authorization failed"
3554
  msgstr "Autorisierung Anforderung der API fehlgeschlagen"
3555
 
3556
+ #: cerber-common.php:1718
3557
  msgid "Request to XML-RPC API denied"
3558
  msgstr "Anfrage an XML-RPC API verweigert"
3559
 
3560
+ #: cerber-common.php:1782
3561
  msgid "Invalid cookies"
3562
  msgstr "Ungültige Cookies"
3563
 
3590
  msgstr "Eigene URL für das WordPress-Kommentarformular verwenden"
3591
 
3592
  #: cerber-settings.php:461 cerber-settings.php:1295
3593
+ #: admin/cerber-dashboard.php:2097
3594
  msgid "Logged-in users"
3595
  msgstr "Angemeldete Benutzer"
3596
 
3650
  msgid "Use global policies"
3651
  msgstr "Globale Richtlinien verwenden"
3652
 
3653
+ #: cerber-load.php:417
3654
  msgid "You have %d login attempt remaining."
3655
  msgid_plural "You have %d login attempts remaining."
3656
  msgstr[0] "Sie haben noch %d Anmeldeversuch übrig."
3660
  msgid "Display this message if an attempt to log in is denied because the limit on concurrent user sessions has been reached"
3661
  msgstr "Diese Meldung anzeigen, wenn ein Anmeldeversuch abgelehnt wird, weil das Limit für gleichzeitige Benutzersitzungen erreicht wurde"
3662
 
3663
+ #: admin/cerber-dashboard.php:5391
3664
  msgid "Role-Based"
3665
  msgstr "Rollenbasiert"
3666
 
3667
+ #: cerber-common.php:1730
3668
  msgid "User application password created"
3669
  msgstr "Benutzer Anwendungspasswort erstellt"
3670
 
3680
  msgid "Save response cookies"
3681
  msgstr "Antwort-Cookies speichern"
3682
 
3683
+ #: cerber-load.php:8041
3684
  msgid "We need your support to keep moving forward"
3685
  msgstr "Um weiterzukommen, brauchen wir Ihre Unterstützung"
3686
 
3687
+ #: cerber-load.php:8043
3688
  msgid "By sharing your unique opinion on WP Cerber, you help the engineers behind the plugin make greater progress and help other professionals find the right software. You can leave your review on one of the following websites. Feel free to use your native language. Thanks!"
3689
  msgstr "Indem Sie Ihre persönliche Meinung zu WP Cerber teilen, helfen Sie den Ingenieuren des Plugins, größere Fortschritte zu machen, und helfen anderen Profis, die richtige Software zu finden. Sie können Ihre Bewertung auf einer der folgenden Websites hinterlassen. Fühlen Sie sich frei, Ihre Muttersprache zu verwenden. Vielen Dank!"
3690
 
3691
+ #: nexus/cerber-nexus-master.php:661
3692
  msgid "Secret Access Token is invalid"
3693
  msgstr "Geheimes Zugriffstoken ist ungültig"
3694
 
3695
+ #: admin/cerber-dashboard.php:225
3696
  msgid "Click the IP address to see its activity"
3697
  msgstr "Klicken Sie auf die IP-Adresse, um ihre Aktivität zu sehen"
3698
 
3699
+ #: admin/cerber-dashboard.php:1077
3700
  msgid "Login issues"
3701
  msgstr "Anmeldeprobleme"
3702
 
3703
+ #: admin/cerber-dashboard.php:1094 admin/cerber-dashboard.php:4612
3704
  msgid "Non-authenticated"
3705
  msgstr "Nicht authentifiziert"
3706
 
3707
+ #: admin/cerber-dashboard.php:1379 admin/cerber-dashboard.php:1826
3708
+ #: admin/cerber-dashboard.php:2681 admin/cerber-admin.php:1333
3709
  msgid "No activity has been logged yet."
3710
  msgstr "Es wurde noch keine Aktivität protokolliert."
3711
 
3712
+ #: admin/cerber-dashboard.php:2701
3713
  msgid "Users' Activity"
3714
  msgstr "Benutzeraktivität"
3715
 
3716
+ #: admin/cerber-dashboard.php:2721
3717
  msgid "Malicious Activity"
3718
  msgstr "Bösartige Aktivität"
3719
 
3720
+ #: admin/cerber-dashboard.php:4609
3721
  msgid "Suspicious requests"
3722
  msgstr "Verdächtige Anfragen"
3723
 
3724
+ #: admin/cerber-dashboard.php:1093 admin/cerber-dashboard.php:4611
3725
  msgid "Users"
3726
  msgstr "Benutzer"
3727
 
3728
+ #: cerber-common.php:1784
3729
  msgid "Forbidden URL"
3730
  msgstr "Verbotene URL"
3731
 
3789
  msgid "Deny authentication through wp-login.php"
3790
  msgstr "Authentifizierung über wp-login.php verweigern"
3791
 
3792
+ #: cerber-common.php:1783
3793
  msgid "Invalid cookies cleared"
3794
  msgstr "Ungültige Cookies entfernt"
3795
 
3796
+ #: cerber-load.php:1862
3797
  msgid "If we have found your account, we have sent the confirmation link to the email address on the account."
3798
  msgstr "Haben wir Ihr Konto gefunden, haben wir den Bestätigungslink an die im Konto angegebene E-Mail-Adresse geschickt."
3799
 
3800
+ #: cerber-load.php:5925 cerber-common.php:525
3801
  msgid "WP Cerber requires PHP %s or higher. You are running %s."
3802
  msgstr "WP Cerber benötigt PHP Version %s oder höher."
3803
 
3804
+ #: cerber-load.php:5929 cerber-common.php:529
3805
  msgid "WP Cerber requires WordPress %s or higher. You are running %s."
3806
  msgstr "WP Cerber benötigt Wordpress Version %s oder höher."
3807
 
3881
  msgid "Detecting injected files in the WordPress uploads directory"
3882
  msgstr "Erkennung von injizierten Dateien im WordPress-Uploads-Verzeichnis"
3883
 
3884
+ #: cerber-common.php:1785
3885
  msgid "Executable file extension detected"
3886
  msgstr "Ausführbare Dateierweiterung erkannt"
3887
 
3888
+ #: cerber-common.php:1786
3889
  msgid "Filename is prohibited"
3890
  msgstr "Dateiname ist nicht zulässig"
3891
 
3965
  msgid "These policies are automatically enforced at the end of every scan based on its results. All affected files are moved to the quarantine."
3966
  msgstr "Diese Richtlinien werden am Ende eines jeden Scans auf der Grundlage der Ergebnisse automatisch durchgesetzt. Sämtliche betroffenen Dateien werden in die Quarantäne verschoben."
3967
 
3968
+ #: admin/cerber-dashboard.php:3339
3969
  msgid "This scan report was generated by the previous version of WP Cerber. Please run a new scan to get consistent and accurate results."
3970
  msgstr "Dieser Scan-Bericht wurde von der früheren Version von WP Cerber erstellt. Bitte führen Sie einen neuen Scan durch, um einheitliche und genaue Ergebnisse zu erhalten."
3971
 
3995
  msgid "Medium"
3996
  msgstr "Mittel"
3997
 
3998
+ #: cerber-load.php:4690
3999
  msgid "If you believe you should be able to perform this request, please let us know."
4000
  msgstr "Wenn Sie der Meinung sind, diese Anfrage durchführen zu dürfen, teilen Sie uns dies bitte mit."
4001
 
4002
+ #: cerber-load.php:4689
4003
  msgid "Your request looks suspiciously similar to automated requests from spam posting software or it has been denied by a security policy configured by the website administrator."
4004
  msgstr "Ihre Anfrage sieht einer automatisierten Anfrage einer Spam-Software verdächtig ähnlich, oder sie wurde durch eine vom Website-Administrator konfigurierte Sicherheitsrichtlinie abgelehnt."
4005
 
4015
  msgid "Executable files are not supported. Please upload a ZIP archive."
4016
  msgstr "Ausführbare Dateien werden nicht unterstützt. Bitte laden Sie ein ZIP-Archiv hoch."
4017
 
4018
+ #: cerber-load.php:775
4019
  msgid "Human verification failed."
4020
  msgstr "Menschliche Überprüfung fehlgeschlagen."
4021
 
4022
+ #: cerber-common.php:1800
4023
  msgid "Logged out everywhere"
4024
  msgstr "Überall abgemeldet"
4025
 
4026
+ #: cerber-common.php:1698
4027
  msgid "Password reset request denied"
4028
  msgstr "Anfrage zum Zurücksetzen des Passworts abgelehnt"
4029
 
4030
+ #: cerber-common.php:1802
4031
  msgid "reCAPTCHA verified"
4032
  msgstr "reCAPTCHA verifiziert"
4033
 
4034
+ #: cerber-load.php:3359
4035
  msgid "Sorry, password reset is not allowed for this user."
4036
  msgstr "Leider ist das Zurücksetzen des Passworts dieses Benutzers nicht erlaubt."
4037
 
4043
  msgid "Use less restrictive security filters for IP addresses in the White IP Access List"
4044
  msgstr "Für IP-Adressen in der weißen IP-Zugangsliste weniger restriktive Sicherheitsfilter verwenden"
4045
 
4046
+ #: cerber-common.php:1729
4047
  msgid "User application password updated"
4048
  msgstr "Passwort der Benutzeranwendung aktualisiert"
4049
 
4050
+ #: cerber-common.php:1772
4051
  msgid "User blocked by administrator"
4052
  msgstr "Von Administrator gesperrter Benutzer"
4053
 
4054
  #. %s is the name of a website administrator who terminated the session.
4055
+ #: cerber-common.php:1696
4056
  msgid "User session terminated by %s"
4057
  msgstr "Benutzersitzung durch %s beendet"
4058
 
4059
+ #: cerber-common.php:1773
4060
  msgid "Username is prohibited"
4061
  msgstr "Benutzername ist untersagt"
4062
 
4068
  msgid "View denied REST API requests"
4069
  msgstr "Abgelehnte REST-API-Anfragen anzeigen"
4070
 
4071
+ #: cerber-load.php:4908 cerber-load.php:4909
4072
  msgid "A new activity has occurred"
4073
  msgstr "Es ist eine neue Aktivität aufgetreten"
4074
 
4075
+ #: admin/cerber-dashboard.php:3019
4076
  msgid "Do not send alerts after this date"
4077
  msgstr "Nach diesem Datum keine Warnmeldungen mehr senden"
4078
 
4079
+ #: admin/cerber-dashboard.php:3059 admin/cerber-dashboard.php:4589
4080
  msgid "Documentation"
4081
  msgstr "Dokumentation"
4082
 
4083
+ #: admin/cerber-dashboard.php:3046
4084
  msgid "Email alerts will be sent to these emails:"
4085
  msgstr "Benachrichtigungen per E-Mail werden an diese E-Mail-Adressen gesendet:"
4086
 
4087
+ #: admin/cerber-dashboard.php:3046
4088
  msgid "Email alerts will be sent to this email:"
4089
  msgstr "Benachrichtigungen per E-Mail werden an diese E-Mail-Adresse gesendet:"
4090
 
4091
+ #: admin/cerber-dashboard.php:3024
4092
  msgid "Ignore global rate limits"
4093
  msgstr "Globale Ratenbeschränkungen ignorieren"
4094
 
4095
+ #: admin/cerber-dashboard.php:3010
4096
  msgid "Maximum number of alerts to send"
4097
  msgstr "Höchstzahl der zu sendenden Warnmeldungen"
4098
 
4099
+ #: admin/cerber-dashboard.php:3054
4100
  msgid "Mobile alerts are not configured"
4101
  msgstr "Handy-Benachrichtigungen sind nicht konfiguriert"
4102
 
4103
  #. %s is the name of a mobile device.
4104
+ #: admin/cerber-dashboard.php:3051
4105
  msgid "Mobile alerts will be sent to %s"
4106
  msgstr "Handy-Benachrichtigungen werden an %s gesendet"
4107
 
4108
+ #: admin/cerber-dashboard.php:3015
4109
  msgid "No limit"
4110
  msgstr "Leine Limite"
4111
 
4112
+ #: admin/cerber-dashboard.php:5838
4113
  msgid "OK"
4114
  msgstr "OK"
4115
 
4116
+ #: admin/cerber-dashboard.php:3061
4117
  msgid "Optional alert limits"
4118
  msgstr "Optionale Warngrenzen"
4119
 
4120
  #. %s is the name of a website administrator who changed the password.
4121
+ #: cerber-common.php:1692
4122
  msgid "Password changed by %s"
4123
  msgstr "Passwort durch %s geändert"
4124
 
4127
  msgstr "Spamschutz für Registrierungs-, Kommentar- und andere Formulare auf der Website\n"
4128
  ""
4129
 
4130
+ #: cerber-common.php:1816
4131
  msgid "Unknown label"
4132
  msgstr "Unbekanntes Label"
4133
 
4134
  #. %s is the name of a website administrator who created the password.
4135
+ #: cerber-common.php:1732
4136
  msgid "User application password created by %s"
4137
  msgstr "Passwort Benutzeranwendung durch %s erstellt"
4138
 
4139
+ #: cerber-common.php:1735
4140
  msgid "User application password deleted"
4141
  msgstr "Passwort Benutzeranwendung gelöscht"
4142
 
4143
  #. %s is the name of a website administrator who deleted the password.
4144
+ #: cerber-common.php:1737
4145
  msgid "User application password deleted by %s"
4146
  msgstr "Passwort Benutzeranwendung durch %s gelöscht"
4147
 
4148
  #. %s is the name of a website administrator who created the user.
4149
+ #: cerber-common.php:1663
4150
  msgid "User created by %s"
4151
  msgstr "Anwender durch %s erstellt"
4152
 
4153
  #. %s is the name of a website administrator who deleted the user.
4154
+ #: cerber-common.php:1667
4155
  msgid "User deleted by %s"
4156
  msgstr "Anwender durch %s gelöscht"
4157
 
4163
  msgid "View reCAPTCHA events"
4164
  msgstr "reCAPTCHA-Ereignisse anzeigen"
4165
 
4166
+ #: admin/cerber-dashboard.php:1400
4167
+ msgid "Check for requests from the IP address"
4168
+ msgstr ""
4169
+
4170
+ #: admin/cerber-dashboard.php:1387
4171
+ msgid "Get me notified when such an event occurs"
4172
+ msgstr ""
4173
+
4174
+ #: admin/cerber-dashboard.php:1382
4175
+ msgid "No events found using the given search criteria"
4176
+ msgstr ""
4177
+
4178
+ #: admin/cerber-dashboard.php:4580
4179
+ msgid "No requests found using the given search criteria"
4180
+ msgstr ""
4181
+
4182
+ #: admin/cerber-dashboard.php:4577
4183
+ msgid "No requests have been logged yet."
4184
+ msgstr ""
4185
+
4186
+ #: admin/cerber-dashboard.php:4587
4187
+ msgid "Note: Logging is currently disabled"
4188
+ msgstr ""
4189
+
4190
+ #: cerber-settings.php:694
4191
+ msgid "Sort users in the Dashboard"
4192
+ msgstr ""
4193
+
4194
+ #: cerber-load.php:4827 cerber-load.php:5742
4195
+ msgid "View activity in the Dashboard"
4196
+ msgstr ""
4197
+
4198
+ #: admin/cerber-dashboard.php:1392
4199
+ msgid "View all logged events"
4200
+ msgstr ""
4201
+
4202
+ #: admin/cerber-dashboard.php:4582
4203
+ msgid "View all logged requests"
4204
+ msgstr ""
4205
+
4206
+ #: cerber-load.php:4865
4207
+ msgid "View lockouts in the Dashboard"
4208
+ msgstr ""
4209
+
4210
+ #: cerber-settings.php:188 cerber-settings.php:189
4211
+ msgid "View violations in the log"
4212
+ msgstr ""
4213
+
4214
+ #: admin/cerber-dashboard.php:1385
4215
+ msgid "You will be notified when such an event occurs"
4216
+ msgstr ""
4217
+
languages/wp-cerber-fr_FR.mo CHANGED
Binary file
languages/wp-cerber-fr_FR.po CHANGED
@@ -44,7 +44,7 @@ msgstr "Page de connexion personnalisée"
44
  msgid "Custom login URL"
45
  msgstr "URL de connexion personnalisée"
46
 
47
- #: cerber-settings.php:289 admin/cerber-dashboard.php:2064
48
  msgid "Citadel mode"
49
  msgstr "Mode Citadelle"
50
 
@@ -56,7 +56,7 @@ msgstr "Seuil"
56
  msgid "Duration"
57
  msgstr "Durée"
58
 
59
- #: cerber-settings.php:310 admin/cerber-dashboard.php:5199
60
  msgid "Notifications"
61
  msgstr "Notifications"
62
 
@@ -64,125 +64,125 @@ msgstr "Notifications"
64
  msgid "Send notification to admin email"
65
  msgstr "Envoyer des notifications à l’administrateur"
66
 
67
- #: admin/cerber-dashboard.php:5196 admin/cerber-tools.php:38
68
  #: admin/cerber-tools.php:49
69
  msgid "Access Lists"
70
  msgstr "Listes d’accès"
71
 
72
- #: cerber-load.php:5674 cerber-settings.php:322
73
- #: admin/cerber-dashboard.php:2105 admin/cerber-dashboard.php:5192
74
- #: admin/cerber-users.php:1114
75
  msgid "Activity"
76
  msgstr "Activité"
77
 
78
- #: admin/cerber-dashboard.php:5194
79
  msgid "Lockouts"
80
  msgstr "Blocages"
81
 
82
- #: cerber-load.php:5683
83
  msgid "IP"
84
  msgstr "IP"
85
 
86
- #: admin/cerber-dashboard.php:950 admin/cerber-dashboard.php:1328
87
- #: admin/cerber-dashboard.php:3980 admin/cerber-dashboard.php:4462
88
  msgid "Date"
89
  msgstr "Date"
90
 
91
- #: admin/cerber-dashboard.php:953 admin/cerber-dashboard.php:1330
92
- #: admin/cerber-dashboard.php:4467
93
  msgid "Local User"
94
  msgstr "Utilisateur local"
95
 
96
- #: cerber-load.php:5691
97
  msgid "Username used"
98
  msgstr "Identifiant utilisé"
99
 
100
- #: cerber-common.php:1663
101
  msgid "Logged in"
102
  msgstr "Connexion réussie"
103
 
104
- #: cerber-common.php:1664
105
  msgid "Logged out"
106
  msgstr "Déconnexion"
107
 
108
- #: cerber-common.php:1665
109
  msgid "Login failed"
110
  msgstr "Connexion échouée"
111
 
112
- #: cerber-common.php:1668 admin/cerber-dashboard.php:1094
113
  msgid "IP blocked"
114
  msgstr "IP bloquée"
115
 
116
- #: cerber-common.php:1672
117
  msgid "Citadel activated!"
118
  msgstr "Citadelle activée !"
119
 
120
- #: cerber-common.php:1748 admin/cerber-dashboard.php:1667
121
  msgid "Locked out"
122
  msgstr "Bloqué"
123
 
124
- #: cerber-common.php:1750
125
  msgid "IP blacklisted"
126
  msgstr "IP blacklistées"
127
 
128
- #: cerber-common.php:1685
129
  msgid "Password changed"
130
  msgstr "Changement de mot de passe"
131
 
132
- #: admin/cerber-dashboard.php:206 admin/cerber-dashboard.php:331
133
  msgid "Remove"
134
  msgstr "Supprimer"
135
 
136
- #: admin/cerber-dashboard.php:665
137
  msgid "Lockout for %s was removed"
138
  msgstr "Le blocage de %s a été levé"
139
 
140
- #: admin/cerber-dashboard.php:277 admin/cerber-dashboard.php:1574
141
- #: admin/cerber-dashboard.php:1658 admin/cerber-dashboard.php:2062
142
  #: admin/cerber-tools.php:69
143
  msgid "White IP Access List"
144
  msgstr "Liste d'accès IP blanche"
145
 
146
- #: admin/cerber-dashboard.php:280 admin/cerber-dashboard.php:1577
147
- #: admin/cerber-dashboard.php:1661 admin/cerber-dashboard.php:2063
148
  #: admin/cerber-tools.php:70
149
  msgid "Black IP Access List"
150
  msgstr "Liste d'accès IP noire"
151
 
152
- #: admin/cerber-dashboard.php:337
153
  msgid "List is empty"
154
  msgstr "La liste est vide"
155
 
156
- #: cerber-load.php:4805
157
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
158
  msgstr "Le mode Citadelle est activé après %d tentatives de connexion échouées en %d minutes."
159
 
160
- #: admin/cerber-dashboard.php:2830 admin/cerber-dashboard.php:3341
161
  msgid "View Activity"
162
  msgstr "Voir l’activité"
163
 
164
- #: nexus/cerber-nexus.php:95 admin/cerber-dashboard.php:5265
165
- #: admin/cerber-dashboard.php:5326 admin/cerber-tools.php:37
166
  #: admin/cerber-tools.php:48
167
  msgid "Settings"
168
  msgstr "Réglages"
169
 
170
- #: admin/cerber-dashboard.php:1931
171
  msgid "Last login"
172
  msgstr "Dernière connexion"
173
 
174
- #: cerber-common.php:2077 nexus/cerber-slave-list.php:347
175
- #: admin/cerber-dashboard.php:478 admin/cerber-dashboard.php:2036
176
- #: admin/cerber-dashboard.php:2085
177
  msgid "Never"
178
  msgstr "Jamais"
179
 
180
- #: admin/cerber-dashboard.php:5683 admin/cerber-tools.php:59
181
  #: admin/cerber-admin.php:738 admin/cerber-admin.php:905
182
  msgid "Are you sure?"
183
  msgstr "Êtes-vous sûr ?"
184
 
185
- #: cerber-settings.php:268 admin/cerber-dashboard.php:2469
186
  msgid "My site is behind a reverse proxy"
187
  msgstr "Mon site se trouve derrière un reverse proxy"
188
 
@@ -194,11 +194,11 @@ msgstr "Rendez votre protection plus intelligente !"
194
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
195
  msgstr "Veuillez activer les Permaliens pour utiliser cette fonctionnalité. Le réglage des Permaliens ne doit pas être “par défaut”."
196
 
197
- #: admin/cerber-dashboard.php:5195
198
  msgid "Main Settings"
199
  msgstr "Réglages généraux"
200
 
201
- #: admin/cerber-dashboard.php:5480
202
  msgid "Help"
203
  msgstr "Aide"
204
 
@@ -206,27 +206,27 @@ msgstr "Aide"
206
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
207
  msgstr "Allonger la durée du blocage à %s heures après %s blocages dans les %s dernières heures"
208
 
209
- #: cerber-load.php:369 admin/cerber-users.php:463
210
  msgid "You are not allowed to log in. Ask your administrator for assistance."
211
  msgstr "Vous n’êtes pas autorisé à vous connecté. Contactez l’administrateur si vous avez besoin d’assistance."
212
 
213
- #: admin/cerber-dashboard.php:216 admin/cerber-users.php:925
214
  msgid "Expires"
215
  msgstr "Expire le"
216
 
217
- #: admin/cerber-dashboard.php:244 admin/cerber-dashboard.php:2702
218
  msgid "No lockouts at the moment. The sky is clear."
219
  msgstr "Il n'y a pas de blocage pour le moment. Tout est dégagé."
220
 
221
- #: admin/cerber-dashboard.php:287
222
  msgid "Your IP"
223
  msgstr "Votre IP"
224
 
225
- #: cerber-load.php:4806
226
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
227
  msgstr "La dernière tentative échouée s'est produite à %s à partir de l'IP %s avec un utilisateur ayant comme identifiants : %s."
228
 
229
- #: cerber-load.php:6015
230
  msgid "Can't activate WP Cerber due to a database error."
231
  msgstr "Le WP Cerber ne peut pas être activé à cause d'une erreur dans la base de données."
232
 
@@ -239,7 +239,7 @@ msgstr "Avertissez l'administrateur si le nombre de blocages actifs ci-dessus"
239
  msgid "days"
240
  msgstr "jours"
241
 
242
- #: admin/cerber-dashboard.php:2002
243
  msgid "Cerber Quick View"
244
  msgstr "Cerber aperçu"
245
 
@@ -255,27 +255,19 @@ msgstr "Cliquez pour tester"
255
  msgid "Attention! You have changed the login URL! The new login URL is"
256
  msgstr "Attention ! Vous avez changé l'URL de connexion ! La nouvelle URL de connexion est"
257
 
258
- #: admin/cerber-dashboard.php:1930
259
  msgid "Comments"
260
  msgstr "Commentaires"
261
 
262
- #: cerber-load.php:4807 cerber-load.php:5720
263
- msgid "View activity in dashboard"
264
- msgstr "Voir l’activité dans le tableau de bord"
265
-
266
- #: cerber-load.php:4836
267
  msgid "Number of active lockouts"
268
  msgstr "Nombre de blocages actifs"
269
 
270
- #: cerber-load.php:4840
271
- msgid "View lockouts in dashboard"
272
- msgstr "Voir les blocages dans le tableau de bord"
273
-
274
- #: cerber-load.php:4934
275
  msgid "This message was sent by"
276
  msgstr "Ce message a été envoyé par"
277
 
278
- #: admin/cerber-dashboard.php:90 admin/cerber-dashboard.php:5377
279
  msgid "Tools"
280
  msgstr "Outils"
281
 
@@ -327,56 +319,56 @@ msgstr "Les paramètres ont été importées avec succès depuis"
327
  msgid "Error while parsing file"
328
  msgstr "Une erreur s'est produite lors de l'analyse du fichier"
329
 
330
- #: admin/cerber-dashboard.php:214 admin/cerber-dashboard.php:1326
331
  msgid "Hostname"
332
  msgstr "Nom d'hôte"
333
 
334
- #: admin/cerber-dashboard.php:599
335
  msgid "unknown"
336
  msgstr "inconnu"
337
 
338
- #: admin/cerber-dashboard.php:2041 admin/cerber-dashboard.php:2071
339
  msgid "active"
340
  msgstr "actif"
341
 
342
- #: admin/cerber-dashboard.php:2041
343
  msgid "deactivate"
344
  msgstr "désactiver"
345
 
346
- #: admin/cerber-dashboard.php:2045
347
  msgid "not active"
348
  msgstr "inactif"
349
 
350
- #: admin/cerber-dashboard.php:2048 admin/cerber-dashboard.php:2066
351
  msgid "disabled"
352
  msgstr "désactivé"
353
 
354
- #: admin/cerber-dashboard.php:2054
355
  msgid "failed attempts"
356
  msgstr "tentatives non réussies"
357
 
358
- #: admin/cerber-dashboard.php:2054 admin/cerber-dashboard.php:2055
359
  msgid "in 24 hours"
360
  msgstr "en 24 heures"
361
 
362
- #: admin/cerber-dashboard.php:2054 admin/cerber-dashboard.php:2055
363
  msgid "view all"
364
  msgstr "voir tout"
365
 
366
- #: admin/cerber-dashboard.php:2055
367
  msgid "lockouts"
368
  msgstr "blocages"
369
 
370
- #: admin/cerber-dashboard.php:2057
371
  msgid "Lockouts at the moment"
372
  msgstr "Blocages en ce moment"
373
 
374
- #: admin/cerber-dashboard.php:2058
375
  msgid "Last lockout"
376
  msgstr "Dernier blocage"
377
 
378
- #: admin/cerber-dashboard.php:2062 admin/cerber-dashboard.php:2063
379
- #: admin/cerber-dashboard.php:3100
380
  msgid "entry"
381
  msgid_plural "entries"
382
  msgstr[0] "entrée"
@@ -390,15 +382,15 @@ msgstr "Télécharger les paramètres par défaut"
390
  msgid "New version is available"
391
  msgstr "Nouvelle version disponible"
392
 
393
- #: cerber-load.php:4779
394
  msgid "WP Cerber notify"
395
  msgstr "Aviser WP Cerber"
396
 
397
- #: cerber-load.php:4803
398
  msgid "Citadel mode is activated"
399
  msgstr "Le mode Citadelle est activé"
400
 
401
- #: cerber-load.php:4879
402
  msgid "New Custom login URL"
403
  msgstr "Nouvelle URL de connexion personnalisée"
404
 
@@ -410,35 +402,35 @@ msgstr "Utiliser le fichier"
410
  msgid "Write failed login attempts to the file"
411
  msgstr "Ecrire les tentatives de connexion non réussies dans le fichier"
412
 
413
- #: admin/cerber-dashboard.php:2829
414
  msgid "Deactivate"
415
  msgstr "Désactiver"
416
 
417
- #: cerber-load.php:4838 admin/cerber-dashboard.php:217
418
  msgid "Reason"
419
  msgstr "Raison"
420
 
421
- #: admin/cerber-dashboard.php:1725
422
  msgid "Add IP to the Black List"
423
  msgstr "Ajouter l’IP à la liste noire"
424
 
425
- #: cerber-common.php:1900
426
  msgid "Attempt to access"
427
  msgstr "Tentative d’accès"
428
 
429
- #: cerber-common.php:1899
430
  msgid "Limit on login attempts is reached"
431
  msgstr "La limite définie pour les tentatives de connexion a été atteinte"
432
 
433
- #: cerber-load.php:4837
434
  msgid "Last lockout was added: %s for IP %s"
435
  msgstr "Le dernier blocage a été ajouté le %s pour l’IP %s"
436
 
437
- #: admin/cerber-dashboard.php:5197
438
  msgid "Hardening"
439
  msgstr "Renforcer"
440
 
441
- #: admin/cerber-dashboard.php:1697
442
  msgid "Abuse email:"
443
  msgstr "Courriels abusifs :"
444
 
@@ -474,108 +466,108 @@ msgstr "Bloquer l’accès aux flux RSS, Atom et RDF"
474
  msgid "Disable REST API"
475
  msgstr "Désactiver REST API"
476
 
477
- #: cerber-load.php:4868 cerber-load.php:6057
478
  msgid "WP Cerber is now active and has started protecting your site"
479
  msgstr "WP Cerber est maintenant actif et protège votre site"
480
 
481
- #: admin/cerber-dashboard.php:218 admin/cerber-users.php:928
482
  #: admin/cerber-admin.php:774 admin/cerber-admin.php:929
483
  msgid "Action"
484
  msgstr "Action"
485
 
486
- #: admin/cerber-dashboard.php:5529
487
  msgid "Incorrect IP address or IP range"
488
  msgstr "IP ou plage d’IP incorrecte"
489
 
490
- #: admin/cerber-dashboard.php:2845
491
  msgid "Settings saved"
492
  msgstr "Paramètres sauvegardés"
493
 
494
- #: admin/cerber-dashboard.php:1703
495
  msgid "Network:"
496
  msgstr "Réseau :"
497
 
498
- #: admin/cerber-dashboard.php:1719
499
  msgid "Add network to the Black List"
500
  msgstr "Ajouter un réseau à la liste noire"
501
 
502
- #: admin/cerber-dashboard.php:2828
503
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
504
  msgstr "Attention ! Le mode Citadel est maintenant activé. Plus personne ne peut se connecter."
505
 
506
- #: cerber-whois.php:241 cerber-whois.php:272 cerber-common.php:1924
507
- #: nexus/cerber-slave-list.php:333 admin/cerber-dashboard.php:459
508
- #: admin/cerber-dashboard.php:4133 admin/cerber-dashboard.php:4699
509
  msgid "Unknown"
510
  msgstr "Inconnu"
511
 
512
- #: cerber-load.php:724 cerber-load.php:737 cerber-load.php:745
513
- #: cerber-load.php:1093 cerber-load.php:1954 cerber-load.php:2277
514
- #: cerber-load.php:3388 cerber-common.php:451 cerber-common.php:550
515
- #: cerber-common.php:555 cerber-common.php:561 cerber-common.php:565
516
  #: nexus/cerber-nexus-slave.php:203 nexus/cerber-nexus-slave.php:214
517
  #: admin/cerber-admin-settings.php:667 admin/cerber-admin-settings.php:687
518
  #: admin/cerber-admin-settings.php:794 admin/cerber-admin.php:875
519
  msgid "ERROR:"
520
  msgstr "ERREUR :"
521
 
522
- #: cerber-load.php:759
523
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
524
  msgstr "La vérification humaine a échoué. Veuillez cliquer sur la case carrée dans le bloc reCAPTCHA ci-dessous."
525
 
526
- #: cerber-load.php:1934
527
  msgid "Username is not allowed. Please choose another one."
528
  msgstr "Ce nom d’utilisateur n’est pas autorisé. Veuillez en choisir un autre."
529
 
530
- #: cerber-load.php:4831
531
  msgid "unspecified"
532
  msgstr "non spécifié"
533
 
534
- #: cerber-load.php:4834
535
  msgid "Number of lockouts is increasing"
536
  msgstr "Le nombre de blocage augmente"
537
 
538
- #: cerber-load.php:4839
539
  msgid "View activity for this IP"
540
  msgstr "Voir l’activité pour cette IP"
541
 
542
- #: cerber-load.php:4843 cerber-load.php:4845
543
  msgid "A new version of WP Cerber is available to install"
544
  msgstr "Il est possible d'installer une nouvelle version de WP Cerber"
545
 
546
- #: cerber-load.php:4844
547
  msgid "Hi!"
548
  msgstr "Salut !"
549
 
550
- #: cerber-load.php:4847 cerber-load.php:4858 nexus/cerber-slave-list.php:44
551
  msgid "Website"
552
  msgstr "Site web"
553
 
554
- #: cerber-load.php:4850 cerber-load.php:4851
555
  msgid "The WP Cerber security plugin has been deactivated"
556
  msgstr "Le plugin WP Cerber a été désactivé"
557
 
558
- #: cerber-load.php:4853
559
  msgid "Not logged in"
560
  msgstr "Non connecté"
561
 
562
- #: cerber-load.php:4859
563
  msgid "By user"
564
  msgstr "Par utilisateur"
565
 
566
- #: cerber-load.php:4860
567
  msgid "From IP address"
568
  msgstr "De l’adresse IP"
569
 
570
- #: cerber-load.php:4863
571
  msgid "From country"
572
  msgstr "Du pays"
573
 
574
- #: cerber-load.php:4867
575
  msgid "The WP Cerber security plugin is now active"
576
  msgstr "Le plugin WP Cerber est maintenant actif"
577
 
578
- #: cerber-load.php:6070
579
  msgid "Import settings"
580
  msgstr "Importer les paramètres"
581
 
@@ -628,27 +620,27 @@ msgstr "Avant d’utiliser reCAPTCHA, il vous faut obtenir une Clef de Site et u
628
  msgid "Know more"
629
  msgstr "En savoir plus"
630
 
631
- #: cerber-common.php:1656
632
  msgid "User created"
633
  msgstr "Utilisateur créé"
634
 
635
- #: cerber-common.php:1659
636
  msgid "User registered"
637
  msgstr "Inscription utilisateur"
638
 
639
- #: cerber-common.php:1696 cerber-common.php:1797
640
  msgid "reCAPTCHA verification failed"
641
  msgstr "la vérification du reCAPTCHA a échoué"
642
 
643
- #: cerber-common.php:1697 cerber-common.php:1798
644
  msgid "reCAPTCHA settings are incorrect"
645
  msgstr "les paramètres du reCAPTCHA sont incorrects"
646
 
647
- #: cerber-common.php:1701 cerber-common.php:1901
648
  msgid "Attempt to access prohibited URL"
649
  msgstr "Tentative d’accès à une URL interdite"
650
 
651
- #: cerber-common.php:1703 cerber-common.php:1903
652
  msgid "Attempt to log in with prohibited username"
653
  msgstr "Tentative de connexion avec un identifiant interdit"
654
 
@@ -684,17 +676,17 @@ msgstr "Activer reCAPTCHA pour le formulaire de récupération de mot de passe W
684
  msgid "Enable reCAPTCHA for WooCommerce login form"
685
  msgstr "Activer reCAPTCHA pour le formulaire de connexion WooCommerce"
686
 
687
- #: cerber-common.php:1698 cerber-common.php:1799
688
  msgid "Request to the Google reCAPTCHA service failed"
689
  msgstr "La requête au service Google reCAPTCHA a échouée"
690
 
691
- #: admin/cerber-dashboard.php:1063 admin/cerber-dashboard.php:1074
692
- #: admin/cerber-dashboard.php:1087 admin/cerber-dashboard.php:2705
693
- #: admin/cerber-dashboard.php:4495
694
  msgid "View all"
695
  msgstr "Voir tout"
696
 
697
- #: admin/cerber-dashboard.php:2713
698
  msgid "Recently locked out IP addresses"
699
  msgstr "IPs récemment bloquées"
700
 
@@ -706,8 +698,8 @@ msgstr "D'accord, tout va bien"
706
  msgid "NO, maybe later"
707
  msgstr "NON, peut-être plus tard"
708
 
709
- #: admin/cerber-dashboard.php:62 admin/cerber-dashboard.php:2104
710
- #: admin/cerber-dashboard.php:3122 admin/cerber-dashboard.php:5191
711
  msgid "Dashboard"
712
  msgstr "Tableau de bord"
713
 
@@ -719,43 +711,43 @@ msgstr "Voulez-vous rendre WP Cerber encore plus puissant ?"
719
  msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
720
  msgstr "Permettre à WP Cerber d’envoyer les adresses IP qui ont été bloqués au Cerber Lab. Cela aidera l’équipe à créer de nouveau algorithmes pour que WP Cerber puisse défendre WordPress contre les nouvelles attaques et réseaux de robots qui apparaissent chaque jour. Vous pouvez désactiver l’envoi des données à tout moment dans les réglages du plugin."
721
 
722
- #: admin/cerber-dashboard.php:3979
723
  msgid "IP address"
724
  msgstr "Adresse IP"
725
 
726
- #: admin/cerber-dashboard.php:954
727
  msgid "User login"
728
  msgstr "Connexion de l'utilisateur"
729
 
730
- #: admin/cerber-dashboard.php:955 admin/cerber-dashboard.php:3985
731
  msgid "User ID"
732
  msgstr "ID utilisateur"
733
 
734
- #: admin/cerber-dashboard.php:1360 admin/cerber-dashboard.php:4521
735
  msgid "Export"
736
  msgstr "Exporter"
737
 
738
- #: admin/cerber-dashboard.php:1385
739
  msgid "Search for IP or username"
740
  msgstr "Rechercher une adresse IP ou un nom d'utilisateur"
741
 
742
- #: admin/cerber-dashboard.php:1396
743
  msgid "Filter"
744
  msgstr "Filtre"
745
 
746
- #: admin/cerber-dashboard.php:62
747
  msgid "Cerber Dashboard"
748
  msgstr "Tableau de bord Cerber"
749
 
750
- #: admin/cerber-dashboard.php:90
751
  msgid "Cerber tools"
752
  msgstr "Outils Cerber"
753
 
754
- #: cerber-load.php:5687 admin/cerber-users.php:922
755
  msgid "User"
756
  msgstr "Utilisateur"
757
 
758
- #: cerber-load.php:5695
759
  msgid "Search string"
760
  msgstr "Chaîne de recherche"
761
 
@@ -792,11 +784,11 @@ msgstr "Aucun appareil trouvé"
792
  msgid "Not available"
793
  msgstr "Non disponible"
794
 
795
- #: cerber-common.php:1688
796
  msgid "Password reset requested"
797
  msgstr "Réinitialisation du mot de passe demandée"
798
 
799
- #: cerber-common.php:1904
800
  msgid "Limit on failed reCAPTCHA verifications is reached"
801
  msgstr "La limite sur les vérifications reCAPTCHA échouées est atteinte"
802
 
@@ -836,40 +828,40 @@ msgstr "Verrouiller l'adresse IP pendant %s minutes après %s tentatives échou
836
  msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
837
  msgstr "En mode Citadel, il est impossible de se connecter, à l'exception des adresses IP de la liste d'accès IP blanche. Les sessions utilisateur actives ne seront pas affectées."
838
 
839
- #: admin/cerber-dashboard.php:951 admin/cerber-dashboard.php:1329
840
  msgid "Event"
841
  msgstr "Événement"
842
 
843
- #: cerber-common.php:384
844
  msgid "Spam comments denied"
845
  msgstr "Les commentaires de spam sont refusés"
846
 
847
- #: cerber-common.php:386
848
  msgid "Malicious IP addresses detected"
849
  msgstr "Adresses IP malveillantes détectées"
850
 
851
- #: cerber-common.php:387
852
  msgid "Lockouts occurred"
853
  msgstr "Il y a eu des blocages"
854
 
855
- #: cerber-load.php:1913 cerber-load.php:1919 cerber-load.php:1924
856
- #: cerber-load.php:1944 cerber-load.php:1949
857
  msgid "You are not allowed to register."
858
  msgstr "Vous n'êtes pas autorisé à vous inscrire."
859
 
860
- #: cerber-common.php:1673
861
  msgid "Spam comment denied"
862
  msgstr "Commentaire anti-spam refusé"
863
 
864
- #: cerber-common.php:1706
865
  msgid "Attempt to log in denied"
866
  msgstr "La tentative d'ouverture de session a été refusée"
867
 
868
- #: cerber-common.php:1707
869
  msgid "Attempt to register denied"
870
  msgstr "La tentative d'enregistrement a été refusée"
871
 
872
- #: cerber-common.php:381
873
  msgid "Malicious activities mitigated"
874
  msgstr "atténuations d'activités malveillantes"
875
 
@@ -885,19 +877,19 @@ msgstr "Protéger le formulaire de commentaires avec le moteur de détection de
885
  msgid "Protect registration form with bot detection engine"
886
  msgstr "Protéger le formulaire d'inscription avec le moteur de détection de bot"
887
 
888
- #: admin/cerber-dashboard.php:5381
889
  msgid "Diagnostic"
890
  msgstr "Diagnostic"
891
 
892
- #: admin/cerber-dashboard.php:5384
893
  msgid "License"
894
  msgstr "Licence"
895
 
896
- #: cerber-load.php:2277
897
  msgid "Sorry, human verification failed."
898
  msgstr "Désolé, la vérification humaine a échoué."
899
 
900
- #: cerber-common.php:1905
901
  msgid "Bot activity is detected"
902
  msgstr "L'activité du robot est détectée"
903
 
@@ -917,7 +909,7 @@ msgstr "Commentaires sur les spam"
917
  msgid "Move spam comments to trash after"
918
  msgstr "Déplacer les commentaires indésirables à la corbeille"
919
 
920
- #: cerber-common.php:1674
921
  msgid "Spam form submission denied"
922
  msgstr "Soumission du formulaire anti-spam refusée"
923
 
@@ -937,54 +929,54 @@ msgstr "Mode sans échec"
937
  msgid "Use less restrictive policies (allow AJAX)"
938
  msgstr "Utiliser des politiques moins restrictives (autoriser AJAX)"
939
 
940
- #: admin/cerber-dashboard.php:215 admin/cerber-dashboard.php:1327
941
  msgid "Country"
942
  msgstr "Pays"
943
 
944
- #: admin/cerber-dashboard.php:69
945
  msgid "Cerber Security Rules"
946
  msgstr "Règles de sécurité Cerber"
947
 
948
- #: admin/cerber-dashboard.php:69 admin/cerber-dashboard.php:5308
949
  msgid "Security Rules"
950
  msgstr "Règles de sécurité"
951
 
952
- #: admin/cerber-dashboard.php:1932
953
  msgid "Failed login attempts"
954
  msgstr "Echec des tentatives de connexion"
955
 
956
- #: admin/cerber-dashboard.php:1856 admin/cerber-dashboard.php:1933
957
  msgid "Registered"
958
  msgstr "Enregistré"
959
 
960
- #: admin/cerber-dashboard.php:1980 admin/cerber-users.php:52
961
- #: admin/cerber-users.php:1081
962
  msgid "You"
963
  msgstr "Vous"
964
 
965
- #: cerber-common.php:385
966
  msgid "Spam form submissions denied"
967
  msgstr "Refus d'envoi du formulaire anti-spam"
968
 
969
- #: cerber-load.php:4870 cerber-load.php:6061
970
  msgid "Getting Started Guide"
971
  msgstr "Guide de démarrage"
972
 
973
- #: admin/cerber-dashboard.php:5310
974
  msgid "Countries"
975
  msgstr "Pays"
976
 
977
- #: admin/cerber-dashboard.php:3708
978
  msgid "Permitted for one country"
979
  msgid_plural "Permitted for %d countries"
980
  msgstr[0] "Autorisé pour un pays"
981
  msgstr[1] "Autorisé pour %d pays"
982
 
983
- #: admin/cerber-dashboard.php:3719
984
  msgid "No rule"
985
  msgstr "Aucune règle"
986
 
987
- #: admin/cerber-dashboard.php:3880
988
  msgid "Security rules have been updated"
989
  msgstr "Les règles de sécurité ont été mises à jour"
990
 
@@ -993,43 +985,43 @@ msgstr "Les règles de sécurité ont été mises à jour"
993
  msgid "https://wpcerber.com"
994
  msgstr "https://wpcerber.com"
995
 
996
- #: cerber-common.php:1675
997
  msgid "Form submission denied"
998
  msgstr "Refus d'envoi du formulaire"
999
 
1000
- #: cerber-common.php:1676
1001
  msgid "Comment denied"
1002
  msgstr "Commentaire refusé"
1003
 
1004
- #: cerber-common.php:1712
1005
  msgid "Request to REST API denied"
1006
  msgstr "Demande d'REST API refusée"
1007
 
1008
- #: cerber-common.php:1746
1009
  msgid "Bot detected"
1010
  msgstr "Robot détecté"
1011
 
1012
- #: cerber-common.php:1747
1013
  msgid "Citadel mode is active"
1014
  msgstr "Le mode Citadel est actif"
1015
 
1016
- #: cerber-common.php:1751
1017
  msgid "Malicious activity detected"
1018
  msgstr "Activité malveillante détectée"
1019
 
1020
- #: cerber-common.php:1752
1021
  msgid "Blocked by country rule"
1022
  msgstr "Bloqué par la règle du pays"
1023
 
1024
- #: cerber-common.php:1753
1025
  msgid "Limit reached"
1026
  msgstr "Limite atteinte"
1027
 
1028
- #: cerber-common.php:1754
1029
  msgid "Multiple suspicious activities"
1030
  msgstr "Plusieurs activités suspectes"
1031
 
1032
- #: cerber-common.php:1906
1033
  msgid "Multiple suspicious activities were detected"
1034
  msgstr "Plusieurs activités suspectes ont été détectées"
1035
 
@@ -1041,10 +1033,6 @@ msgstr "Spécifiez les espaces de noms de l'REST API à autoriser si l'REST API
1041
  msgid "Registration limit"
1042
  msgstr "Limite d'enregistrement"
1043
 
1044
- #: cerber-settings.php:694
1045
- msgid "Sort users in dashboard"
1046
- msgstr "Trier les utilisateurs dans le tableau de bord"
1047
-
1048
  #: cerber-settings.php:695
1049
  msgid "by date of registration"
1050
  msgstr "par date d'enregistrement"
@@ -1053,31 +1041,31 @@ msgstr "par date d'enregistrement"
1053
  msgid "Query whitelist"
1054
  msgstr "Liste blanche des requêtes"
1055
 
1056
- #: admin/cerber-dashboard.php:3688
1057
  msgid "Start typing here to find a country"
1058
  msgstr "Commencez à taper ici pour trouver un pays"
1059
 
1060
- #: admin/cerber-dashboard.php:3803
1061
  msgid "Click on a country name to add it to the list of selected countries"
1062
  msgstr "Cliquez sur le nom d'un pays pour l'ajouter à la liste des pays sélectionnés"
1063
 
1064
- #: admin/cerber-dashboard.php:3835
1065
  msgid "Submit forms"
1066
  msgstr "Soumettre les formulaires"
1067
 
1068
- #: admin/cerber-dashboard.php:3836
1069
  msgid "Post comments"
1070
  msgstr "Poster des commentaires"
1071
 
1072
- #: admin/cerber-dashboard.php:3834
1073
  msgid "Register on the website"
1074
  msgstr "S'inscrire sur le site"
1075
 
1076
- #: admin/cerber-dashboard.php:3837
1077
  msgid "Use XML-RPC"
1078
  msgstr "Utiliser XML-RPC"
1079
 
1080
- #: admin/cerber-dashboard.php:3838
1081
  msgid "Use REST API"
1082
  msgstr "Utiliser REST API"
1083
 
@@ -1089,7 +1077,7 @@ msgstr "Le nier complètement"
1089
  msgid "Mark it as spam"
1090
  msgstr "Marquez-le comme spam"
1091
 
1092
- #: admin/cerber-dashboard.php:3123
1093
  msgid "Main settings"
1094
  msgstr "Réglages principaux"
1095
 
@@ -1101,23 +1089,23 @@ msgstr "Rapports hebdomadaires"
1101
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1102
  msgstr "Si vous utilisez un plugin de mise en cache, vous devez ajouter votre nouvelle URL de connexion à la liste des pages à ne pas mettre en cache."
1103
 
1104
- #: cerber-load.php:4889
1105
  msgid "Weekly report"
1106
  msgstr "Rapport hebdomadaire"
1107
 
1108
- #: cerber-load.php:4892 cerber-load.php:4900
1109
  msgid "To change reporting settings visit"
1110
  msgstr "Pour modifier les paramètres de reporting, visitez"
1111
 
1112
- #: cerber-load.php:4926
1113
  msgid "Your login page:"
1114
  msgstr "Votre page de connexion :"
1115
 
1116
- #: cerber-load.php:4931
1117
  msgid "Your license is valid until"
1118
  msgstr "Votre licence est valable jusqu'au"
1119
 
1120
- #: cerber-load.php:5037
1121
  msgid "Activity details"
1122
  msgstr "Détails de l'activité"
1123
 
@@ -1125,31 +1113,31 @@ msgstr "Détails de l'activité"
1125
  msgid "Click to send now"
1126
  msgstr "Cliquez pour envoyer maintenant"
1127
 
1128
- #: admin/cerber-dashboard.php:673
1129
  msgid "Email has been sent to"
1130
  msgstr "Un courriel a été envoyé à"
1131
 
1132
- #: admin/cerber-dashboard.php:676
1133
  msgid "Unable to send email to"
1134
  msgstr "Impossible d'envoyer un courriel à"
1135
 
1136
- #: admin/cerber-dashboard.php:3711
1137
  msgid "Not permitted for one country"
1138
  msgid_plural "Not permitted for %d countries"
1139
  msgstr[0] "Interdit pour un pays"
1140
  msgstr[1] "Interdit pour %d pays"
1141
 
1142
- #: admin/cerber-dashboard.php:3807
1143
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1144
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1145
  msgstr "Les pays sélectionnés sont autorisés à %s, les autres pays ne sont pas autorisés à"
1146
 
1147
- #: admin/cerber-dashboard.php:3810
1148
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1149
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1150
  msgstr "Les pays sélectionnés ne sont pas autorisés à %s, les autres pays sont autorisés à"
1151
 
1152
- #: cerber-load.php:5025
1153
  msgid "Weekly Report"
1154
  msgstr "Rapport hebdomadaire"
1155
 
@@ -1169,15 +1157,15 @@ msgstr "Entrer une partie de la chaîne ou du chemin de requête pour exclure un
1169
  msgid "Enable reporting"
1170
  msgstr "Activer le signalement"
1171
 
1172
- #: cerber-load.php:4955
1173
  msgid "Your last sign-in was %s from %s"
1174
  msgstr "Votre dernière connexion était %s de %s"
1175
 
1176
- #: admin/cerber-dashboard.php:345
1177
  msgid "Optional comment for this entry"
1178
  msgstr "Commentaire facultatif pour cette entrée"
1179
 
1180
- #: admin/cerber-dashboard.php:367
1181
  msgid "You cannot add your IP address or network"
1182
  msgstr "Vous ne pouvez pas ajouter votre adresse IP ou votre réseau"
1183
 
@@ -1185,52 +1173,52 @@ msgstr "Vous ne pouvez pas ajouter votre adresse IP ou votre réseau"
1185
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1186
  msgstr "Pour spécifier un motif REGEX, enroulez un motif en deux barres obliques vers l'avant."
1187
 
1188
- #: admin/cerber-dashboard.php:64
1189
  msgid "Cerber Traffic Inspector"
1190
  msgstr "Inspecteur du trafic du Cerber"
1191
 
1192
- #: admin/cerber-dashboard.php:64 admin/cerber-dashboard.php:2067
1193
- #: admin/cerber-dashboard.php:5262
1194
  msgid "Traffic Inspector"
1195
  msgstr "Inspecteur du trafic"
1196
 
1197
- #: admin/cerber-dashboard.php:2106 admin/cerber-users.php:1115
1198
  msgid "Traffic"
1199
  msgstr "Trafic"
1200
 
1201
- #: admin/cerber-dashboard.php:4463
1202
  msgid "Request"
1203
  msgstr "Demande"
1204
 
1205
- #: admin/cerber-dashboard.php:4465 admin/cerber-users.php:927
1206
  msgid "Host Info"
1207
  msgstr "Informations sur l'hôte"
1208
 
1209
- #: admin/cerber-dashboard.php:4466
1210
  msgid "User Agent"
1211
  msgstr "Agent utilisateur"
1212
 
1213
- #: admin/cerber-dashboard.php:4500
1214
  msgid "Form submissions"
1215
  msgstr "Soumission des formulaires"
1216
 
1217
- #: admin/cerber-dashboard.php:4501
1218
  msgid "Page Not Found"
1219
  msgstr "La page n'a pas été trouvée"
1220
 
1221
- #: admin/cerber-dashboard.php:4508
1222
  msgid "Longer than"
1223
  msgstr "Plus long que"
1224
 
1225
- #: admin/cerber-dashboard.php:4527
1226
  msgid "Refresh"
1227
  msgstr "Actualiser"
1228
 
1229
- #: cerber-common.php:288 admin/cerber-dashboard.php:1373
1230
  msgid "Check for requests"
1231
  msgstr "Vérifier les demandes"
1232
 
1233
- #: admin/cerber-dashboard.php:4562
1234
  msgid "Not specified"
1235
  msgstr "Non spécifié(e)(s)"
1236
 
@@ -1270,23 +1258,19 @@ msgstr "Sauvegarder les champs de demande"
1270
  msgid "Page generation time threshold"
1271
  msgstr "Temps limite de génération des pages"
1272
 
1273
- #: admin/cerber-dashboard.php:4488
1274
- msgid "No requests have been logged."
1275
- msgstr "Aucune demande n'a été enregistrée."
1276
-
1277
- #: admin/cerber-dashboard.php:2066
1278
  msgid "enabled"
1279
  msgstr "activé(s)"
1280
 
1281
- #: admin/cerber-dashboard.php:2071
1282
  msgid "no connection"
1283
  msgstr "aucune connexion"
1284
 
1285
- #: admin/cerber-dashboard.php:1884
1286
  msgid "Last seen"
1287
  msgstr "Vu pour la dernière fois"
1288
 
1289
- #: cerber-load.php:4668
1290
  msgid "We're sorry, you are not allowed to proceed"
1291
  msgstr "Nous nous excusons, mais vous n'avez pas le droit de continuer"
1292
 
@@ -1318,23 +1302,23 @@ msgstr "Protéger les scripts d'administration"
1318
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1319
  msgstr "Bloquer l'accès non autorisé à load-scripts.php et load-styles.php"
1320
 
1321
- #: cerber-common.php:3272
1322
  msgid "Unable to create the directory"
1323
  msgstr "Impossible de créer le répertoire"
1324
 
1325
- #: cerber-common.php:3277
1326
  msgid "Destination folder access denied"
1327
  msgstr "Accès au dossier de destination refusé"
1328
 
1329
- #: cerber-common.php:3280
1330
  msgid "File not found"
1331
  msgstr "Fichier non trouvé"
1332
 
1333
- #: cerber-common.php:3283
1334
  msgid "Unable to copy the file"
1335
  msgstr "Impossible de copier le fichier"
1336
 
1337
- #: cerber-common.php:3289
1338
  msgid "Unable to delete the file"
1339
  msgstr "Impossible de supprimer le fichier"
1340
 
@@ -1354,7 +1338,7 @@ msgstr "Mode standard"
1354
  msgid "Plugin initialization mode has not been changed"
1355
  msgstr "Le mode d'initialisation du plugin n'a pas été modifié"
1356
 
1357
- #: cerber-common.php:1710
1358
  msgid "File upload denied"
1359
  msgstr "Envoi de fichier refusé"
1360
 
@@ -1370,27 +1354,27 @@ msgstr "Soyez prudent lorsque vous activez ces options."
1370
  msgid "If you forget your Custom login URL, you will be unable to log in."
1371
  msgstr "Si vous oubliez votre URL de connexion personnalisée, vous ne pourrez pas vous connecter."
1372
 
1373
- #: admin/cerber-dashboard.php:75 admin/cerber-dashboard.php:5323
1374
  msgid "Site Integrity"
1375
  msgstr "Intégrité du site"
1376
 
1377
  #: cerber-scanner.php:1717 cerber-settings.php:683 cerber-settings.php:825
1378
  #: cerber-settings.php:856 cerber-settings.php:990 cerber-settings.php:999
1379
- #: cerber-settings.php:1466 admin/cerber-dashboard.php:2091
1380
- #: admin/cerber-dashboard.php:2093 admin/cerber-users.php:20
1381
  #: admin/cerber-users.php:474 admin/cerber-users.php:488
1382
  msgid "Disabled"
1383
  msgstr "Désactivé"
1384
 
1385
- #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2092
1386
  msgid "Quick Scan"
1387
  msgstr "Balayage rapide"
1388
 
1389
- #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2094
1390
  msgid "Full Scan"
1391
  msgstr "Balayage complet"
1392
 
1393
- #: cerber-common.php:1755
1394
  msgid "Denied"
1395
  msgstr "Refusé"
1396
 
@@ -1491,11 +1475,11 @@ msgstr "Inclure la taille des fichiers"
1491
  msgid "Include scan errors"
1492
  msgstr "Inclure les erreurs de l'analyse"
1493
 
1494
- #: admin/cerber-dashboard.php:5325
1495
  msgid "Security Scanner"
1496
  msgstr "Balayeur de sécurité"
1497
 
1498
- #: admin/cerber-dashboard.php:5327
1499
  msgid "Scheduling"
1500
  msgstr "Planification"
1501
 
@@ -1527,7 +1511,8 @@ msgstr "Arrêter le balayage"
1527
  msgid "Continue Scanning"
1528
  msgstr "Poursuivre le balayage"
1529
 
1530
- #: admin/cerber-tools.php:350 admin/cerber-admin.php:227
 
1531
  msgid "Delete"
1532
  msgstr "Supprimer"
1533
 
@@ -1639,7 +1624,7 @@ msgstr "Erreur d'accès aux fichiers. Les résultats des balayages ne sont peut-
1639
  msgid "To view full report visit"
1640
  msgstr "Pour consulter le rapport complet, visitez"
1641
 
1642
- #: cerber-load.php:4897
1643
  msgid "Scanner Report"
1644
  msgstr "Rapport du balayeur"
1645
 
@@ -1703,40 +1688,40 @@ msgstr "Rapport de balayage rapide"
1703
  msgid "Files scanned"
1704
  msgstr "Fichiers balayés"
1705
 
1706
- #: admin/cerber-dashboard.php:327 admin/cerber-dashboard.php:1647
1707
- #: admin/cerber-dashboard.php:1704 admin/cerber-dashboard.php:1835
1708
  msgid "Check for activities"
1709
  msgstr "Vérifier les activités"
1710
 
1711
- #: admin/cerber-dashboard.php:1866
1712
  msgid "Activated"
1713
  msgstr "Activé"
1714
 
1715
- #: cerber-common.php:1721
1716
  msgid "Malicious request denied"
1717
  msgstr "Demande malveillante refusée"
1718
 
1719
- #: cerber-common.php:1735
1720
  msgid "User activated"
1721
  msgstr "Activé par l'utilisateur"
1722
 
1723
- #: cerber-common.php:1757
1724
  msgid "Suspicious number of fields"
1725
  msgstr "Nombre de champs suspects"
1726
 
1727
- #: cerber-common.php:1758
1728
  msgid "Suspicious number of nested values"
1729
  msgstr "Nombre suspect de valeurs intégrées dans le fichier"
1730
 
1731
- #: cerber-common.php:1759 cerber-common.php:1908
1732
  msgid "Malicious code detected"
1733
  msgstr "Code malveillant détecté"
1734
 
1735
- #: cerber-common.php:1909
1736
  msgid "Attempt to upload a file with malicious code"
1737
  msgstr "Tentative de téléchargement d'un fichier contenant un code malveillant"
1738
 
1739
- #: cerber-common.php:2192
1740
  msgid "Bytes"
1741
  msgstr "Octets"
1742
 
@@ -1756,11 +1741,11 @@ msgstr "Planification automatisée du balayage périodique"
1756
  msgid "Scan results reporting"
1757
  msgstr "Rapports sur les résultats du balayage"
1758
 
1759
- #: admin/cerber-dashboard.php:1084
1760
  msgid "Suspicious activity"
1761
  msgstr "Activité suspecte"
1762
 
1763
- #: admin/cerber-dashboard.php:4497
1764
  msgid "Errors"
1765
  msgstr "Erreurs"
1766
 
@@ -1769,11 +1754,11 @@ msgstr "Erreurs"
1769
  msgid "Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications."
1770
  msgstr "Défend WordPress contre les attaques de pirates, le spam, les chevaux de Troie et les virus. Balayeur de logiciels malveillants et vérificateur d'intégrité. Renforcement de WordPress avec un ensemble complet d'algorithmes de sécurité. Protection anti-spam avec un moteur de détection de robot sophistiqué et reCAPTCHA. Suivi de l'activité des utilisateurs et des intrus grâce à de puissantes notifications par courriel, par téléphone mobile et par ordinateur."
1771
 
1772
- #: cerber-load.php:375
1773
  msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
1774
  msgstr "Vous avez dépassé le nombre de tentatives de connexion autorisées. Veuillez réessayer en %d minutes."
1775
 
1776
- #: cerber-common.php:2072
1777
  msgctxt "preposition of a period of time like: in 6 hours"
1778
  msgid "in %s"
1779
  msgstr "en %s"
@@ -1783,7 +1768,7 @@ msgctxt "preposition of time like: at 11:00"
1783
  msgid "at"
1784
  msgstr "à"
1785
 
1786
- #: admin/cerber-dashboard.php:5330
1787
  msgid "Quarantine"
1788
  msgstr "Quarantaine"
1789
 
@@ -1856,15 +1841,15 @@ msgstr "Le fichier a été supprimé définitivement."
1856
  msgid "The file has been restored to its original location."
1857
  msgstr "Le fichier a été restauré à son emplacement d'origine."
1858
 
1859
- #: admin/cerber-dashboard.php:2107
1860
  msgid "Integrity"
1861
  msgstr "Intégrité"
1862
 
1863
- #: cerber-common.php:1709
1864
  msgid "Attempt to upload malicious file denied"
1865
  msgstr "Tentative de téléchargement d'un fichier malveillant refusée"
1866
 
1867
- #: cerber-load.php:8120
1868
  msgid "Awesome!"
1869
  msgstr "Génial !"
1870
 
@@ -1892,7 +1877,7 @@ msgstr "Fichiers avec ces extensions"
1892
  msgid "Use comma to separate items."
1893
  msgstr "Utilisez la virgule pour séparer les éléments."
1894
 
1895
- #: admin/cerber-dashboard.php:5328
1896
  msgid "Cleaning up"
1897
  msgstr "Nettoyage"
1898
 
@@ -1924,16 +1909,16 @@ msgstr "Supprimé"
1924
  msgid "Automatically moved to quarantine"
1925
  msgstr "Passage automatique en quarantaine"
1926
 
1927
- #: cerber-common.php:1760
1928
  msgid "Suspicious SQL code detected"
1929
  msgstr "Code SQL suspect détecté"
1930
 
1931
- #: admin/cerber-dashboard.php:2088
1932
  msgctxt "Example: Last malware scan: 23 Jan 2018"
1933
  msgid "Last malware scan"
1934
  msgstr "Dernière recherche de programmes malveillants"
1935
 
1936
- #: admin/cerber-dashboard.php:5264
1937
  msgid "Live Traffic"
1938
  msgstr "Trafic en direct"
1939
 
@@ -1945,7 +1930,7 @@ msgstr "Désactiver PHP dans les téléchargements"
1945
  msgid "Disable PHP error displaying"
1946
  msgstr "Désactiver l'affichage des erreurs PHP"
1947
 
1948
- #: admin/cerber-dashboard.php:5329
1949
  msgid "Ignore List"
1950
  msgstr "Ignorer la liste"
1951
 
@@ -1978,35 +1963,35 @@ msgstr "Aperçu du trafic"
1978
  msgid "Activity Insights"
1979
  msgstr "Aperçu de l'activité"
1980
 
1981
- #: admin/cerber-dashboard.php:3268
1982
  msgid "Are you sure you want to delete selected files?"
1983
  msgstr "Êtes-vous sûr de vouloir supprimer les fichiers sélectionnés ?"
1984
 
1985
- #: admin/cerber-dashboard.php:3269
1986
  msgid "These files have been moved to the quarantine"
1987
  msgstr "Ces fichiers sont placés en quarantaine"
1988
 
1989
- #: admin/cerber-dashboard.php:3272
1990
  msgid "Do you want to add selected files to the ignore list?"
1991
  msgstr "Voudriez vous ajouter des fichiers sélectionnés à la liste des fichiers ignorés ?"
1992
 
1993
- #: admin/cerber-dashboard.php:3273
1994
  msgid "These files have been added to the ignore list"
1995
  msgstr "Ces fichiers ont été ajoutés à la liste des fichiers ignorés"
1996
 
1997
- #: admin/cerber-dashboard.php:3275
1998
  msgid "Some errors occurred"
1999
  msgstr "Des erreurs se sont produites"
2000
 
2001
- #: admin/cerber-dashboard.php:3276
2002
  msgid "All files have been processed"
2003
  msgstr "Tous les fichiers ont été traités"
2004
 
2005
- #: admin/cerber-dashboard.php:5669
2006
  msgid "Know more about all advantages at"
2007
  msgstr "En savoir plus sur tous les avantages à"
2008
 
2009
- #: cerber-common.php:1761
2010
  msgid "Suspicious JavaScript code detected"
2011
  msgstr "Il a été détecté un code JavaScript suspect"
2012
 
@@ -2030,39 +2015,39 @@ msgstr "Il n'y a pas de fichier qui correspond au filtre spécifié."
2030
  msgid "Click here to see the full list of files"
2031
  msgstr "Pour voir la liste complète des fichiers, cliquez ici"
2032
 
2033
- #: admin/cerber-dashboard.php:952
2034
  msgid "Additional Details"
2035
  msgstr "Autres détails"
2036
 
2037
- #: admin/cerber-dashboard.php:3986
2038
  msgid "Page generation time"
2039
  msgstr "Le temps pour générer une page"
2040
 
2041
- #: admin/cerber-dashboard.php:5844
2042
  msgid "Log In"
2043
  msgstr "Se connecter"
2044
 
2045
- #: admin/cerber-dashboard.php:5845
2046
  msgid "Log Out"
2047
  msgstr "Se déconnecter"
2048
 
2049
- #: admin/cerber-dashboard.php:5846
2050
  msgid "Register"
2051
  msgstr "Inscrivez-vous"
2052
 
2053
- #: admin/cerber-dashboard.php:5849
2054
  msgid "WooCommerce Log In"
2055
  msgstr "Se connecter à WooCommerce"
2056
 
2057
- #: admin/cerber-dashboard.php:5850
2058
  msgid "WooCommerce Log Out"
2059
  msgstr "Se déconnecter à WooCommerce"
2060
 
2061
- #: cerber-common.php:1749
2062
  msgid "IP address is locked out"
2063
  msgstr "L'adresse IP est bloquée"
2064
 
2065
- #: cerber-common.php:1912
2066
  msgid "Multiple suspicious requests"
2067
  msgstr "De nombreuses demandes suspectes"
2068
 
@@ -2094,11 +2079,11 @@ msgstr "Sauvegarder les erreurs du logiciel"
2094
  msgid "Preparing for the scan"
2095
  msgstr "Préparation du balayage"
2096
 
2097
- #: cerber-common.php:1762
2098
  msgid "Blocked by administrator"
2099
  msgstr "Bloqué par l'administrateur"
2100
 
2101
- #: cerber-load.php:379
2102
  msgid "You are not allowed to log in"
2103
  msgstr "Vous n'êtes pas autorisé à vous connecter"
2104
 
@@ -2150,7 +2135,7 @@ msgstr "Ces limitations ne s'appliquent pas aux adresses IP de la liste d'accès
2150
  msgid "Select one or more roles"
2151
  msgstr "Sélectionnez un ou plusieurs rôles"
2152
 
2153
- #: admin/cerber-dashboard.php:1384 admin/cerber-users.php:970
2154
  msgid "Filter by registered user"
2155
  msgstr "Filtrer par utilisateur enregistré"
2156
 
@@ -2170,19 +2155,19 @@ msgstr "Le siteWeb ne peut être consulté que par les utilisateurs enregistré
2170
  msgid "Redirect to URL"
2171
  msgstr "Rediriger vers l'URL"
2172
 
2173
- #: admin/cerber-dashboard.php:5383
2174
  msgid "Changelog"
2175
  msgstr "Journal des modifications"
2176
 
2177
- #: admin/cerber-dashboard.php:743
2178
  msgid "Default settings have been loaded"
2179
  msgstr "Les paramètres par défaut ont été téléchargés"
2180
 
2181
- #: admin/cerber-dashboard.php:3695
2182
  msgid "Save all rules"
2183
  msgstr "Sauvegarder toutes les règles"
2184
 
2185
- #: cerber-common.php:1738
2186
  msgid "Invalid master credentials"
2187
  msgstr "Les informations d'identification de base sont incorrectes"
2188
 
@@ -2234,7 +2219,7 @@ msgstr "WordPress"
2234
  msgid "Malware Scan"
2235
  msgstr "Balayage de logiciels malveillants"
2236
 
2237
- #: nexus/cerber-nexus-master.php:141 nexus/cerber-slave-list.php:56
2238
  msgid "Notes"
2239
  msgstr "Notes"
2240
 
@@ -2242,7 +2227,7 @@ msgstr "Notes"
2242
  msgid "Add a slave website"
2243
  msgstr "Ajouter un site esclave"
2244
 
2245
- #: nexus/cerber-slave-list.php:247 admin/cerber-users.php:1036
2246
  msgid "Search results for:"
2247
  msgstr "Résultats de recherche pour :"
2248
 
@@ -2262,69 +2247,69 @@ msgstr "Il n'y a pas de sites Web configurés."
2262
  msgid "Add a new one"
2263
  msgstr "Ajouter un(e) nouvel(le)"
2264
 
2265
- #: nexus/cerber-nexus-master.php:104
2266
  msgid "Website Properties"
2267
  msgstr "Propriétés du site Web"
2268
 
2269
- #: nexus/cerber-nexus-master.php:114
2270
  msgid "Website URL"
2271
  msgstr "URL du site Web"
2272
 
2273
- #: nexus/cerber-nexus-master.php:119
2274
  msgid "Display as"
2275
  msgstr "Afficher comme"
2276
 
2277
- #: nexus/cerber-nexus-master.php:149
2278
  msgid "Website Owner"
2279
  msgstr "Propriétaire du site Web"
2280
 
2281
- #: nexus/cerber-nexus-master.php:165
2282
  msgid "Phone"
2283
  msgstr "Téléphone"
2284
 
2285
- #: nexus/cerber-nexus-master.php:173
2286
  msgid "Address"
2287
  msgstr "Adresse"
2288
 
2289
- #: nexus/cerber-nexus-master.php:316
2290
  msgid "The website you are trying to add is already in the list"
2291
  msgstr "Le site web que vous voulez ajouter est déjà ajouté dans la liste"
2292
 
2293
- #: nexus/cerber-nexus-master.php:325
2294
  msgid "The website has been added successfully"
2295
  msgstr "Le site Web a été ajouté correctement"
2296
 
2297
- #: nexus/cerber-nexus-master.php:326
2298
  msgid "Click to edit"
2299
  msgstr "Cliquez pour faire une modification"
2300
 
2301
- #: nexus/cerber-nexus-master.php:327
2302
  msgid "Switch to the Dashboard"
2303
  msgstr "Aller au tableau de bord"
2304
 
2305
- #: nexus/cerber-nexus-master.php:330
2306
  msgid "Keep in mind: You have added the website that does not support SSL encryption. This may lead to data leakage."
2307
  msgstr "Il ne faut pas l'oublier : Vous avez ajouté un site Web qui ne prend pas en charge le cryptage SSL. Cela peut entraîner des risques de fuite de données."
2308
 
2309
- #: nexus/cerber-nexus-master.php:449
2310
  msgid "Website has been deleted"
2311
  msgid_plural "%s websites have been deleted"
2312
  msgstr[0] "Le site Web a été supprimé"
2313
  msgstr[1] "%s sites web ont été supprimés"
2314
 
2315
- #: nexus/cerber-nexus-master.php:1042
2316
  msgid "You have switched to %s"
2317
  msgstr "Vous êtes passé à %s"
2318
 
2319
- #: nexus/cerber-nexus-master.php:1052
2320
  msgid "You have switched back to the master website"
2321
  msgstr "Vous êtes retourné sur le site Web de base"
2322
 
2323
- #: nexus/cerber-nexus-master.php:1268
2324
  msgid "You are here:"
2325
  msgstr "Vous êtes ici :"
2326
 
2327
- #: nexus/cerber-nexus-master.php:1271 nexus/cerber-nexus.php:94
2328
  #: nexus/cerber-nexus.php:104
2329
  msgid "My Websites"
2330
  msgstr "Mes sites Web"
@@ -2386,7 +2371,7 @@ msgid "Install the access token on the master website."
2386
  msgstr "Installez le jeton d'accès sur le site Web de base."
2387
 
2388
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
2389
- #: cerber-common.php:2065
2390
  msgid "%s sec"
2391
  msgid_plural "%s secs"
2392
  msgstr[0] "%s sec"
@@ -2400,7 +2385,7 @@ msgstr "Envoyer des rapports sur"
2400
  msgid "Updates"
2401
  msgstr "Mises à jour"
2402
 
2403
- #: nexus/cerber-nexus-master.php:127 nexus/cerber-slave-list.php:54
2404
  msgid "Group"
2405
  msgstr "Groupe"
2406
 
@@ -2420,7 +2405,7 @@ msgstr "Supprimer le site Web"
2420
  msgid "All groups"
2421
  msgstr "Tous les groupes"
2422
 
2423
- #: nexus/cerber-nexus-master.php:1352
2424
  msgid "Are you sure you want to delete selected websites?"
2425
  msgstr "Êtes-vous sûr que vous voulez supprimer les sites Web sélectionnés ?"
2426
 
@@ -2428,23 +2413,23 @@ msgstr "Êtes-vous sûr que vous voulez supprimer les sites Web sélectionnés ?
2428
  msgid "Block"
2429
  msgstr "Bloquer"
2430
 
2431
- #: nexus/cerber-nexus-master.php:96
2432
  msgid "Select an existing group or enter a new one to add it"
2433
  msgstr "Sélectionner un groupe existant ou en saisir un nouveau pour l'ajouter"
2434
 
2435
- #: nexus/cerber-nexus-master.php:169
2436
  msgid "Company"
2437
  msgstr "Entreprise"
2438
 
2439
- #: nexus/cerber-nexus-master.php:694
2440
  msgid "Invalid response from the slave website"
2441
  msgstr "Réponse invalide du site Web esclave"
2442
 
2443
- #: cerber-common.php:1702 cerber-common.php:1902
2444
  msgid "Attempt to log in with non-existing username"
2445
  msgstr "Tentative de connexion avec un identifiant inexistant"
2446
 
2447
- #: cerber-load.php:5051
2448
  msgid "Attempts to log in with non-existing usernames"
2449
  msgstr "Tentatives d'ouverture de session avec un nom d'utilisateur inexistant"
2450
 
@@ -2476,39 +2461,39 @@ msgstr "Pour suspendre le jeton et désactiver la gestion à distance, cliquez i
2476
  msgid "Block execution of PHP scripts in the WordPress media folder"
2477
  msgstr "Bloquer l'exécution des scripts PHP dans le dossier média de WordPress"
2478
 
2479
- #: nexus/cerber-nexus-master.php:1419 nexus/cerber-nexus-master.php:1427
2480
  msgid "Active plugins and updates on"
2481
  msgstr "Plugins actifs et mises à jour sur"
2482
 
2483
- #: nexus/cerber-nexus-master.php:1397
2484
  msgid "A newer version is available"
2485
  msgstr "Il y a une version plus récente disponible"
2486
 
2487
- #: admin/cerber-dashboard.php:1078
2488
  msgid "New users"
2489
  msgstr "Nouvel utilisateur"
2490
 
2491
- #: admin/cerber-dashboard.php:1097
2492
  msgid "My activity"
2493
  msgstr "Mon Activité"
2494
 
2495
- #: admin/cerber-dashboard.php:2933
2496
  msgid "Create Alert"
2497
  msgstr "Créer une alerte"
2498
 
2499
- #: admin/cerber-dashboard.php:2937
2500
  msgid "Delete Alert"
2501
  msgstr "Supprimer l'alerte"
2502
 
2503
- #: admin/cerber-dashboard.php:3033
2504
  msgid "The alert has been created"
2505
  msgstr "L'alerte a été créée"
2506
 
2507
- #: admin/cerber-dashboard.php:3042
2508
  msgid "The alert has been deleted"
2509
  msgstr "L’alerte a été supprimée"
2510
 
2511
- #: admin/cerber-dashboard.php:4514
2512
  msgid "Advanced Search"
2513
  msgstr "Recherche avancée"
2514
 
@@ -2517,7 +2502,7 @@ msgstr "Recherche avancée"
2517
  msgid "Cerber Tech Inc."
2518
  msgstr "Cerber Tech Inc."
2519
 
2520
- #: cerber-load.php:5721
2521
  msgid "To delete the alert, click here"
2522
  msgstr "Pour supprimer l'alerte, cliquez ici"
2523
 
@@ -2589,43 +2574,43 @@ msgstr "Automatiquement supprimé"
2589
  msgid "Automatically recovered"
2590
  msgstr "Automatiquement récupéré"
2591
 
2592
- #: admin/cerber-dashboard.php:72
2593
  msgid "Cerber User Security"
2594
  msgstr "Sécurité Utilisateur Cerber"
2595
 
2596
- #: admin/cerber-dashboard.php:72 admin/cerber-dashboard.php:5288
2597
  msgid "User Policies"
2598
  msgstr "Stratégies Utilisateur"
2599
 
2600
- #: admin/cerber-dashboard.php:2110
2601
  msgid "A new version is available"
2602
  msgstr "Une nouvelle version est disponible"
2603
 
2604
- #: admin/cerber-dashboard.php:5291
2605
  msgid "Global"
2606
  msgstr "Global"
2607
 
2608
- #: cerber-common.php:1763
2609
  msgid "Site policy enforcement"
2610
  msgstr "Mise en application de la politique du site"
2611
 
2612
- #: cerber-common.php:1764
2613
  msgid "2FA code verified"
2614
  msgstr "Code 2FA vérifié"
2615
 
2616
- #: cerber-common.php:1765
2617
  msgid "Initiated by the user"
2618
  msgstr "Initié par l'utilisateur"
2619
 
2620
- #: cerber-common.php:2315
2621
  msgid "A new version of %s is available. Please install it."
2622
  msgstr "Une nouvelle version de %s est disponible. Veuillez l’installer s’il vous plaît."
2623
 
2624
- #: cerber-load.php:1939
2625
  msgid "Email address is not permitted."
2626
  msgstr "L'adresse e-mail n'est pas permise."
2627
 
2628
- #: cerber-load.php:1939
2629
  msgid "Please choose another one."
2630
  msgstr "Veuillez en choisir un autre."
2631
 
@@ -2777,7 +2762,7 @@ msgstr "Saisissez le code reçu par mail dans le champ ci-dessous."
2777
  msgid "Try again"
2778
  msgstr "Réessayer"
2779
 
2780
- #: cerber-2fa.php:661 admin/cerber-dashboard.php:5733
2781
  msgid "Cancel"
2782
  msgstr "Annuler"
2783
 
@@ -2797,7 +2782,7 @@ msgstr "Vérifier"
2797
  msgid "Two-Factor Authentication Email"
2798
  msgstr "E-mail d'authentification à deux facteurs"
2799
 
2800
- #: admin/cerber-dashboard.php:3638
2801
  msgid "Role-based rules are configured"
2802
  msgstr "Les règles basées sur les rôles sont configurées"
2803
 
@@ -2810,67 +2795,67 @@ msgstr "bloqué par %s à %s"
2810
  msgid "The code is valid for %s minutes."
2811
  msgstr "Le code est valide pour %s minutes."
2812
 
2813
- #: admin/cerber-dashboard.php:374
2814
  msgid "IP address %s has been added to White IP Access List"
2815
  msgstr "L'adresse IP %s a été ajoutée à la liste blanche d'accès"
2816
 
2817
- #: admin/cerber-dashboard.php:371
2818
  msgid "IP address %s has been added to Black IP Access List"
2819
  msgstr "L'adresse IP %s a été ajoutée à la liste noire d'accès"
2820
 
2821
- #: admin/cerber-dashboard.php:213 admin/cerber-dashboard.php:949
2822
- #: admin/cerber-dashboard.php:1325 admin/cerber-dashboard.php:4464
2823
- #: admin/cerber-users.php:926
2824
  msgid "IP Address"
2825
  msgstr "Adresse IP"
2826
 
2827
- #: admin/cerber-dashboard.php:956 admin/cerber-dashboard.php:1331
2828
  msgid "Username"
2829
  msgstr "Nom d'utilisateur"
2830
 
2831
- #: admin/cerber-dashboard.php:3720
2832
  msgid "Any country is permitted"
2833
  msgstr "Tous les pays sont autorisés"
2834
 
2835
- #: admin/cerber-dashboard.php:3343 admin/cerber-dashboard.php:5193
2836
  msgid "Sessions"
2837
  msgstr "Sessions"
2838
 
2839
- #: cerber-load.php:1698
2840
  msgid "Session has been terminated"
2841
  msgid_plural "%s sessions have been terminated"
2842
  msgstr[0] "La session est terminée"
2843
  msgstr[1] "%s sessions sont terminées"
2844
 
2845
- #: admin/cerber-users.php:924
2846
  msgid "Created"
2847
  msgstr "Créé"
2848
 
2849
- #: admin/cerber-users.php:945
2850
  msgid "Terminate session"
2851
  msgstr "Session terminée"
2852
 
2853
- #: admin/cerber-users.php:946
2854
  msgid "Block user"
2855
  msgstr "Bloquer l'utilisateur"
2856
 
2857
- #: admin/cerber-users.php:1078
2858
  msgid "Profile"
2859
  msgstr "Profil"
2860
 
2861
- #: admin/cerber-users.php:1091
2862
  msgid "All Logins"
2863
  msgstr "Toutes les connexions"
2864
 
2865
- #: admin/cerber-users.php:1092
2866
  msgid "User Activity"
2867
  msgstr "Activité de l'utilisateur"
2868
 
2869
- #: admin/cerber-users.php:1138
2870
  msgid "Terminate"
2871
  msgstr "Terminer"
2872
 
2873
- #: admin/cerber-dashboard.php:2060
2874
  msgid "user"
2875
  msgid_plural "users"
2876
  msgstr[0] "utilisateur"
@@ -2884,47 +2869,47 @@ msgstr "Bloquer l'accès aux données des utilisateurs via l'API REST"
2884
  msgid "Unable to delete"
2885
  msgstr "Impossible de supprimer"
2886
 
2887
- #: admin/cerber-dashboard.php:68
2888
  msgid "Cerber Data Shield Policies"
2889
  msgstr "Stratégies du Bouclier de données Cerber"
2890
 
2891
- #: admin/cerber-dashboard.php:68
2892
  msgid "Data Shield"
2893
  msgstr "Bouclier de données"
2894
 
2895
- #: admin/cerber-dashboard.php:5278
2896
  msgid "Data Shield Policies"
2897
  msgstr "Stratégies du Bouclier de données"
2898
 
2899
- #: admin/cerber-dashboard.php:5280
2900
  msgid "Accounts & Roles"
2901
  msgstr "Comptes & Rôles"
2902
 
2903
- #: admin/cerber-dashboard.php:5281
2904
  msgid "Site Settings"
2905
  msgstr "Paramètres du site"
2906
 
2907
- #: cerber-common.php:1715
2908
  msgid "User creation denied"
2909
  msgstr "La création de l'utilisateur a été refusée"
2910
 
2911
- #: cerber-common.php:1717
2912
  msgid "Role update denied"
2913
  msgstr "La mise à jour du rôle a été refusée"
2914
 
2915
- #: cerber-common.php:1718
2916
  msgid "Setting update denied"
2917
  msgstr "La mise à jour des paramètres a été refusée"
2918
 
2919
- #: cerber-common.php:1770
2920
  msgid "Permission denied"
2921
  msgstr "Permission refusée"
2922
 
2923
- #: cerber-common.php:1772
2924
  msgid "Invalid user"
2925
  msgstr "Utilisateur Invalide"
2926
 
2927
- #: cerber-common.php:1773
2928
  msgid "Incorrect password"
2929
  msgstr "Mot de passe incorrect"
2930
 
@@ -3004,35 +2989,35 @@ msgstr "Tous les serveurs"
3004
  msgid "All countries"
3005
  msgstr "Tous les pays"
3006
 
3007
- #: nexus/cerber-nexus-master.php:67
3008
  msgid "Show homepage in the Website column"
3009
  msgstr "Afficher la page d'accueil dans la colonne Site"
3010
 
3011
- #: nexus/cerber-nexus-master.php:69
3012
  msgid "Hide server IP address"
3013
  msgstr "Cacher l'adresse IP du serveur"
3014
 
3015
- #: admin/cerber-dashboard.php:343
3016
  msgid "IP address, range, wildcard, or CIDR"
3017
  msgstr "Adresse IP, intervalle, joker ou CIDR"
3018
 
3019
- #: admin/cerber-dashboard.php:344
3020
  msgid "Add Entry"
3021
  msgstr "Nouvelle entrée"
3022
 
3023
- #: admin/cerber-dashboard.php:5533
3024
  msgid "The IP address you are trying to add is already in the list"
3025
  msgstr "L'adresse IP que vous essayez ajouter est déjà dans la liste"
3026
 
3027
- #: cerber-common.php:1669
3028
  msgid "IP subnet blocked"
3029
  msgstr "Sous-réseau IP bloqué"
3030
 
3031
- #: cerber-common.php:1716
3032
  msgid "User row update denied"
3033
  msgstr "La mise à jour de la ligne utilisateur a été refusée"
3034
 
3035
- #: cerber-common.php:1719
3036
  msgid "User metadata update denied"
3037
  msgstr "La mise a jour des métadonnées utilisateur a été refusée"
3038
 
@@ -3100,28 +3085,28 @@ msgstr "Données de formulaire"
3100
  msgid "Cookies"
3101
  msgstr "Cookies"
3102
 
3103
- #: admin/cerber-dashboard.php:79
3104
  msgid "Cerber anti-spam settings"
3105
  msgstr "Réglages de l'antispam Cerber"
3106
 
3107
- #: admin/cerber-dashboard.php:79
3108
  msgid "Anti-spam"
3109
  msgstr "Anti-spam"
3110
 
3111
- #: cerber-addons.php:289 admin/cerber-dashboard.php:87
3112
- #: admin/cerber-dashboard.php:87
3113
  msgid "Add-ons"
3114
  msgstr "Modules"
3115
 
3116
- #: admin/cerber-dashboard.php:5242
3117
  msgid "Anti-spam and bot detection settings"
3118
  msgstr "Réglages de la détéction de bot et de l'antispam"
3119
 
3120
- #: admin/cerber-dashboard.php:5244
3121
  msgid "Anti-spam engine"
3122
  msgstr "Moteur anti-spam"
3123
 
3124
- #: cerber-common.php:1911
3125
  msgid "Multiple erroneous requests"
3126
  msgstr "Multiple requêtes erronées"
3127
 
@@ -3217,11 +3202,11 @@ msgstr "Manière dont l'extension traite les commentaires envoyés à l'aide du
3217
  msgid "Settings updated"
3218
  msgstr "Réglages mis à jour"
3219
 
3220
- #: admin/cerber-dashboard.php:1388
3221
  msgid "Request ID"
3222
  msgstr "ID de requête"
3223
 
3224
- #: admin/cerber-dashboard.php:1389
3225
  msgid "Search in URL"
3226
  msgstr "Rechercher dans l’URL"
3227
 
@@ -3233,7 +3218,7 @@ msgstr "Fichiers exécutables"
3233
  msgid "All files"
3234
  msgstr "Tous les fichiers"
3235
 
3236
- #: admin/cerber-dashboard.php:1889
3237
  msgid "Active sessions"
3238
  msgstr "Sessions actives"
3239
 
@@ -3245,28 +3230,28 @@ msgstr "minutes (laisser vide pour utiliser la valeur par défaut de WordPress)"
3245
  msgid "Load entries"
3246
  msgstr "Charger les entrées"
3247
 
3248
- #: admin/cerber-dashboard.php:1098 admin/cerber-dashboard.php:4505
3249
  msgid "My IP"
3250
  msgstr "Mon IP"
3251
 
3252
- #: admin/cerber-dashboard.php:5331
3253
  msgid "Analytics"
3254
  msgstr "Statistiques"
3255
 
3256
- #: admin/cerber-dashboard.php:5380
3257
  msgid "Manage Settings"
3258
  msgstr "Gérer les paramètres"
3259
 
3260
  #: cerber-settings.php:1047 cerber-settings.php:1445 cerber-settings.php:1473
3261
- #: admin/cerber-dashboard.php:5382
3262
  msgid "Diagnostic Log"
3263
  msgstr "Journal de diagnostic"
3264
 
3265
- #: cerber-common.php:1660
3266
  msgid "User deleted"
3267
  msgstr "Utilisateur supprimé"
3268
 
3269
- #: cerber-common.php:1768
3270
  msgid "Email address is prohibited"
3271
  msgstr "L’adresse e-mail est interdite."
3272
 
@@ -3374,15 +3359,15 @@ msgstr "Lorsque vous cliquez sur le bouton ci-dessous, les paramètres par défa
3374
  msgid "To get the most out of WP Cerber, follow these steps:"
3375
  msgstr "Pour tirer parti de WP Cerber, suivez les étapes suivantes :"
3376
 
3377
- #: cerber-common.php:1783
3378
  msgid "IP whitelisted"
3379
  msgstr "IP mise en liste blanche"
3380
 
3381
- #: admin/cerber-dashboard.php:4504
3382
  msgid "My requests"
3383
  msgstr "Mes requêtes"
3384
 
3385
- #: admin/cerber-dashboard.php:3830
3386
  msgid "Log into the website"
3387
  msgstr "Se connecter sur le site"
3388
 
@@ -3391,15 +3376,15 @@ msgstr "Se connecter sur le site"
3391
  msgid "WP Cerber Security, Anti-spam & Malware Scan"
3392
  msgstr "WP Cerber Security, Antispam & Malware Scan"
3393
 
3394
- #: cerber-common.php:1708 cerber-common.php:1907
3395
  msgid "Probing for vulnerable code"
3396
  msgstr "Recherche de code PHP vulnérable"
3397
 
3398
- #: cerber-load.php:6043
3399
  msgid "Your IP address %s has been added to the White IP Access List"
3400
  msgstr "Votre adresse IP %s a été ajoutée à la liste blanche d'accès"
3401
 
3402
- #: admin/cerber-users.php:973
3403
  msgid "Search for IP address"
3404
  msgstr "Rechercher l’adresse IP"
3405
 
@@ -3427,11 +3412,11 @@ msgstr "Ne pas consigner ces User-Agents"
3427
  msgid "Specify User-Agents to exclude requests from logging. One item per line."
3428
  msgstr "Spécifier les User-Agents pour lesquels il ne faut pas consigner les requêtes. Un élément par ligne."
3429
 
3430
- #: admin/cerber-dashboard.php:4622
3431
  msgid "Unknown Google's bot"
3432
  msgstr "Robot Google inconnu"
3433
 
3434
- #: cerber-common.php:1774
3435
  msgid "IP address is not allowed"
3436
  msgstr "L'adresse IP n'est pas autorisée"
3437
 
@@ -3468,7 +3453,7 @@ msgstr "Rendu différé"
3468
  msgid "Defer rendering the custom login page"
3469
  msgstr "Différer le rendu de la page de connexion personnalisée"
3470
 
3471
- #: cerber-load.php:395
3472
  msgid "You have only one login attempt remaining."
3473
  msgstr "Il ne vous reste plus qu’une seule tentative de connexion."
3474
 
@@ -3496,15 +3481,15 @@ msgstr "Connexion depuis un navigateur/appareil différent"
3496
  msgid "If the number of concurrent user sessions is greater"
3497
  msgstr "Si le nombre de sessions utilisateur concurrents est supérieur"
3498
 
3499
- #: admin/cerber-dashboard.php:5668
3500
  msgid "These features are available in the professional version of WP Cerber."
3501
  msgstr "Ces fonctionnalités sont disponibles dans la version professionnelle de WP Cerber."
3502
 
3503
- #: cerber-common.php:1689
3504
  msgid "User session terminated"
3505
  msgstr "Session utilisateur terminée"
3506
 
3507
- #: cerber-common.php:1775
3508
  msgid "Limit on concurrent user sessions"
3509
  msgstr "Limiter les sessions utilisateur concurrentes"
3510
 
@@ -3528,19 +3513,19 @@ msgstr "Note importante si vous utilisez une extension de mise en cache"
3528
  msgid "To avoid false positives and get better anti-spam performance, please clear the plugin cache."
3529
  msgstr "Pour éviter les faux-positifs et obtenir de meilleures performances pour l'anti-spam, veuillez effacer le cache de l'extension."
3530
 
3531
- #: cerber-common.php:1728
3532
  msgid "API request authorized"
3533
  msgstr "Requête API autorisée"
3534
 
3535
- #: cerber-common.php:1729
3536
  msgid "API request authorization failed"
3537
  msgstr "Échec de l'autorisation de la demande d'API"
3538
 
3539
- #: cerber-common.php:1713
3540
  msgid "Request to XML-RPC API denied"
3541
  msgstr "Requête au serveur XML-RPC refusée"
3542
 
3543
- #: cerber-common.php:1776
3544
  msgid "Invalid cookies"
3545
  msgstr "Cookies invalides"
3546
 
@@ -3573,7 +3558,7 @@ msgid "Use custom URL for the WordPress comment form"
3573
  msgstr "Utiliser une URL personnalisée pour le formulaire de commentaire WordPress"
3574
 
3575
  #: cerber-settings.php:461 cerber-settings.php:1295
3576
- #: admin/cerber-dashboard.php:2060
3577
  msgid "Logged-in users"
3578
  msgstr "Utilisateurs connectés"
3579
 
@@ -3633,7 +3618,7 @@ msgstr "Désactiver reCAPTCHA pour les utilisateurs connectés"
3633
  msgid "Use global policies"
3634
  msgstr "Utiliser les stratégies globales"
3635
 
3636
- #: cerber-load.php:398
3637
  msgid "You have %d login attempt remaining."
3638
  msgid_plural "You have %d login attempts remaining."
3639
  msgstr[0] "Il vous reste %d tentative de connexion."
@@ -3643,11 +3628,11 @@ msgstr[1] "Il vous reste %d tentatives de connexion."
3643
  msgid "Display this message if an attempt to log in is denied because the limit on concurrent user sessions has been reached"
3644
  msgstr "Afficher ce message si un essai de connexion est refusé car la limite de sessions utilisateur concurrentes a été atteinte"
3645
 
3646
- #: admin/cerber-dashboard.php:5290
3647
  msgid "Role-Based"
3648
  msgstr "Basé sur le Rôle"
3649
 
3650
- #: cerber-common.php:1725
3651
  msgid "User application password created"
3652
  msgstr "Mot de passe de l'application utilisateur créé"
3653
 
@@ -3663,52 +3648,52 @@ msgstr "Sauver les en-têtes de réponse"
3663
  msgid "Save response cookies"
3664
  msgstr "Sauver les cookies de réponse"
3665
 
3666
- #: cerber-load.php:8098
3667
  msgid "We need your support to keep moving forward"
3668
  msgstr "Nous avons besoin de votre soutien pour continuer à avancer"
3669
 
3670
- #: cerber-load.php:8100
3671
  msgid "By sharing your unique opinion on WP Cerber, you help the engineers behind the plugin make greater progress and help other professionals find the right software. You can leave your review on one of the following websites. Feel free to use your native language. Thanks!"
3672
  msgstr "En partageant votre opinion unique sur WP Cerber, vous aidez les ingénieurs derrière le plugin à progresser davantage et vous aidez les autres professionnels à trouver le bon logiciel. Vous pouvez laisser votre avis sur l'un des sites web suivants. N'hésitez pas à utiliser votre langue maternelle. Merci !"
3673
 
3674
- #: nexus/cerber-nexus-master.php:286
3675
  msgid "Secret Access Token is invalid"
3676
  msgstr "Le jeton d'accès secret n'est pas valable"
3677
 
3678
- #: admin/cerber-dashboard.php:227
3679
  msgid "Click the IP address to see its activity"
3680
  msgstr "Cliquez sur l'adresse IP pour voir son activité"
3681
 
3682
- #: admin/cerber-dashboard.php:1079
3683
  msgid "Login issues"
3684
  msgstr "Problèmes d'accès"
3685
 
3686
- #: admin/cerber-dashboard.php:1096 admin/cerber-dashboard.php:4499
3687
  msgid "Non-authenticated"
3688
  msgstr "Non-authentifié"
3689
 
3690
- #: admin/cerber-dashboard.php:1366 admin/cerber-dashboard.php:1789
3691
- #: admin/cerber-dashboard.php:2646 admin/cerber-admin.php:1333
3692
  msgid "No activity has been logged yet."
3693
  msgstr "Aucune activité n'a encore été enregistrée."
3694
 
3695
- #: admin/cerber-dashboard.php:2662
3696
  msgid "Users' Activity"
3697
  msgstr "Activité des Utilisateurs"
3698
 
3699
- #: admin/cerber-dashboard.php:2682
3700
  msgid "Malicious Activity"
3701
  msgstr "Activités Malveillantes"
3702
 
3703
- #: admin/cerber-dashboard.php:4496
3704
  msgid "Suspicious requests"
3705
  msgstr "Requêtes suspectes"
3706
 
3707
- #: admin/cerber-dashboard.php:1095 admin/cerber-dashboard.php:4498
3708
  msgid "Users"
3709
  msgstr "Utilisateurs"
3710
 
3711
- #: cerber-common.php:1778
3712
  msgid "Forbidden URL"
3713
  msgstr "URL interdite"
3714
 
@@ -3772,19 +3757,19 @@ msgstr "Ne pas révéler les noms d'utilisateur et les courriels non existants d
3772
  msgid "Deny authentication through wp-login.php"
3773
  msgstr "Refuser l'authentification via wp-login.php"
3774
 
3775
- #: cerber-common.php:1777
3776
  msgid "Invalid cookies cleared"
3777
  msgstr "Cookies invalides supprimés"
3778
 
3779
- #: cerber-load.php:1843
3780
  msgid "If we have found your account, we have sent the confirmation link to the email address on the account."
3781
  msgstr "Si nous avons trouvé votre compte, nous avons envoyé le lien de confirmation à l’adresse e-mail figurant sur le compte."
3782
 
3783
- #: cerber-load.php:6001 cerber-common.php:520
3784
  msgid "WP Cerber requires PHP %s or higher. You are running %s."
3785
  msgstr "WP Cerber nécessite PHP %s ou supérieur. Vous avez actuellement %s."
3786
 
3787
- #: cerber-load.php:6005 cerber-common.php:524
3788
  msgid "WP Cerber requires WordPress %s or higher. You are running %s."
3789
  msgstr "WP Cerber nécessite WordPress %s ou supérieur. Vous avez actuellement %s."
3790
 
@@ -3864,11 +3849,11 @@ msgstr "Supprimer les fichiers avec ces extensions accessibles publiquement"
3864
  msgid "Detecting injected files in the WordPress uploads directory"
3865
  msgstr "Détection des fichiers injectés dans le répertoire des téléversements de WordPress"
3866
 
3867
- #: cerber-common.php:1779
3868
  msgid "Executable file extension detected"
3869
  msgstr "Extension de fichier exécutable détecté"
3870
 
3871
- #: cerber-common.php:1780
3872
  msgid "Filename is prohibited"
3873
  msgstr "Le nom de fichier est interdit"
3874
 
@@ -3948,7 +3933,7 @@ msgstr "Passer les fichiers avec ces extensions"
3948
  msgid "These policies are automatically enforced at the end of every scan based on its results. All affected files are moved to the quarantine."
3949
  msgstr "Ces politiques sont automatiquement appliquées à la fin de chaque analyse en fonction de ses résultats. Tous les fichiers affectés sont mis en quarantaine."
3950
 
3951
- #: admin/cerber-dashboard.php:3277
3952
  msgid "This scan report was generated by the previous version of WP Cerber. Please run a new scan to get consistent and accurate results."
3953
  msgstr "Ce rapport de scan a été généré par la version précédente de WP Cerber. Veuillez exécuter un nouveau scan pour obtenir des résultats cohérents et précis."
3954
 
@@ -3978,11 +3963,11 @@ msgctxt "This is a risk level."
3978
  msgid "Medium"
3979
  msgstr "Moyen"
3980
 
3981
- #: cerber-load.php:4670
3982
  msgid "If you believe you should be able to perform this request, please let us know."
3983
  msgstr "Si vous pensez que vous devriez être autorisé à effectuer cette requête, veuillez nous le faire savoir."
3984
 
3985
- #: cerber-load.php:4669
3986
  msgid "Your request looks suspiciously similar to automated requests from spam posting software or it has been denied by a security policy configured by the website administrator."
3987
  msgstr "Votre requête semble suspicieusement similaire à des requêtes automatisées de logiciel d’envoi de message indésirable ou elle a été refusée par la politique de sécurité configurée par l’administrateur/administratrice du site."
3988
 
@@ -3998,23 +3983,23 @@ msgstr "Désactiver reCAPTCHA pour les adresses IP de la liste d'accès IP blanc
3998
  msgid "Executable files are not supported. Please upload a ZIP archive."
3999
  msgstr "Les fichiers exécutables ne sont pas pris en charge. Veuillez téléverser une archive ZIP."
4000
 
4001
- #: cerber-load.php:756
4002
  msgid "Human verification failed."
4003
  msgstr "Vérification humaine échouée."
4004
 
4005
- #: cerber-common.php:1794
4006
  msgid "Logged out everywhere"
4007
  msgstr "Déconnecté partout"
4008
 
4009
- #: cerber-common.php:1693
4010
  msgid "Password reset request denied"
4011
  msgstr "Demande de réinitialisation du mot de passe refusée"
4012
 
4013
- #: cerber-common.php:1796
4014
  msgid "reCAPTCHA verified"
4015
  msgstr "reCAPTCHA vérifié"
4016
 
4017
- #: cerber-load.php:3340
4018
  msgid "Sorry, password reset is not allowed for this user."
4019
  msgstr "Désolé, la réinitialisation du mot de passe n'est pas autorisée pour cet utilisateur."
4020
 
@@ -4026,20 +4011,20 @@ msgstr "Ce type de fichier n’est pas pris en charge. Veuillez téléverser une
4026
  msgid "Use less restrictive security filters for IP addresses in the White IP Access List"
4027
  msgstr "Utiliser des filtres de sécurité moins restrictifs pour les adresses IP de la liste d'accès IP blanche"
4028
 
4029
- #: cerber-common.php:1724
4030
  msgid "User application password updated"
4031
  msgstr "Mot de passe application utilisateur mis à jour"
4032
 
4033
- #: cerber-common.php:1766
4034
  msgid "User blocked by administrator"
4035
  msgstr "Utilisateur bloqué par l'administrateur"
4036
 
4037
  #. %s is the name of a website administrator who terminated the session.
4038
- #: cerber-common.php:1691
4039
  msgid "User session terminated by %s"
4040
  msgstr "Session utilisateur terminée par %s"
4041
 
4042
- #: cerber-common.php:1767
4043
  msgid "Username is prohibited"
4044
  msgstr "Nom d'utilisateur interdit"
4045
 
@@ -4051,57 +4036,57 @@ msgstr "Voir toutes les requêtes API REST"
4051
  msgid "View denied REST API requests"
4052
  msgstr "Voir les requêtes API REST refusée"
4053
 
4054
- #: cerber-load.php:4883 cerber-load.php:4884
4055
  msgid "A new activity has occurred"
4056
  msgstr "Une nouvelle activité a eu lieu"
4057
 
4058
- #: admin/cerber-dashboard.php:2955
4059
  msgid "Do not send alerts after this date"
4060
  msgstr "Ne pas envoyer d'alertes après cette date"
4061
 
4062
- #: admin/cerber-dashboard.php:2995
4063
  msgid "Documentation"
4064
  msgstr "Documentation"
4065
 
4066
- #: admin/cerber-dashboard.php:2982
4067
  msgid "Email alerts will be sent to these emails:"
4068
  msgstr "Les alertes e-mail seront envoyées à ces adresses :"
4069
 
4070
- #: admin/cerber-dashboard.php:2982
4071
  msgid "Email alerts will be sent to this email:"
4072
  msgstr "Les alertes e-mail seront envoyées à cette adresse :"
4073
 
4074
- #: admin/cerber-dashboard.php:2960
4075
  msgid "Ignore global rate limits"
4076
  msgstr "Ignorer les limites de taux globales"
4077
 
4078
- #: admin/cerber-dashboard.php:2946
4079
  msgid "Maximum number of alerts to send"
4080
  msgstr "Nombre maximal d'alertes à envoyer"
4081
 
4082
- #: admin/cerber-dashboard.php:2990
4083
  msgid "Mobile alerts are not configured"
4084
  msgstr "Les alertes mobiles ne sont pas configurées"
4085
 
4086
  #. %s is the name of a mobile device.
4087
- #: admin/cerber-dashboard.php:2987
4088
  msgid "Mobile alerts will be sent to %s"
4089
  msgstr "Les alertes mobiles seront envoyées à %s"
4090
 
4091
- #: admin/cerber-dashboard.php:2951
4092
  msgid "No limit"
4093
  msgstr "Aucune limite"
4094
 
4095
- #: admin/cerber-dashboard.php:5732
4096
  msgid "OK"
4097
  msgstr "OK"
4098
 
4099
- #: admin/cerber-dashboard.php:2997
4100
  msgid "Optional alert limits"
4101
  msgstr "Limites d'alerte facultatives"
4102
 
4103
  #. %s is the name of a website administrator who changed the password.
4104
- #: cerber-common.php:1687
4105
  msgid "Password changed by %s"
4106
  msgstr "Mot de passe modifié par %s"
4107
 
@@ -4109,31 +4094,31 @@ msgstr "Mot de passe modifié par %s"
4109
  msgid "Spam protection for registration, comment, and other forms on the website"
4110
  msgstr "Protection anti-spam pour les formulaires d'inscription, de commentaires et autres du site Web."
4111
 
4112
- #: cerber-common.php:1810
4113
  msgid "Unknown label"
4114
  msgstr "Étiquette inconnue"
4115
 
4116
  #. %s is the name of a website administrator who created the password.
4117
- #: cerber-common.php:1727
4118
  msgid "User application password created by %s"
4119
  msgstr "Mot de passe de l'application utilisateur créé par %s"
4120
 
4121
- #: cerber-common.php:1730
4122
  msgid "User application password deleted"
4123
  msgstr "Mot de passe de l'application utilisateur supprimé"
4124
 
4125
  #. %s is the name of a website administrator who deleted the password.
4126
- #: cerber-common.php:1732
4127
  msgid "User application password deleted by %s"
4128
  msgstr "Mot de passe de l'application utilisateur supprimé par %s"
4129
 
4130
  #. %s is the name of a website administrator who created the user.
4131
- #: cerber-common.php:1658
4132
  msgid "User created by %s"
4133
  msgstr "Utilisateur créé par %s"
4134
 
4135
  #. %s is the name of a website administrator who deleted the user.
4136
- #: cerber-common.php:1662
4137
  msgid "User deleted by %s"
4138
  msgstr "Utilisateur supprimé par %s"
4139
 
@@ -4145,3 +4130,55 @@ msgstr "Afficher événements bots"
4145
  msgid "View reCAPTCHA events"
4146
  msgstr "Afficher événements reCAPTCHA"
4147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  msgid "Custom login URL"
45
  msgstr "URL de connexion personnalisée"
46
 
47
+ #: cerber-settings.php:289 admin/cerber-dashboard.php:2101
48
  msgid "Citadel mode"
49
  msgstr "Mode Citadelle"
50
 
56
  msgid "Duration"
57
  msgstr "Durée"
58
 
59
+ #: cerber-settings.php:310 admin/cerber-dashboard.php:5300
60
  msgid "Notifications"
61
  msgstr "Notifications"
62
 
64
  msgid "Send notification to admin email"
65
  msgstr "Envoyer des notifications à l’administrateur"
66
 
67
+ #: admin/cerber-dashboard.php:5297 admin/cerber-tools.php:38
68
  #: admin/cerber-tools.php:49
69
  msgid "Access Lists"
70
  msgstr "Listes d’accès"
71
 
72
+ #: cerber-load.php:5698 cerber-settings.php:322
73
+ #: admin/cerber-dashboard.php:2142 admin/cerber-dashboard.php:5293
74
+ #: admin/cerber-users.php:1115
75
  msgid "Activity"
76
  msgstr "Activité"
77
 
78
+ #: admin/cerber-dashboard.php:5295
79
  msgid "Lockouts"
80
  msgstr "Blocages"
81
 
82
+ #: cerber-load.php:5707
83
  msgid "IP"
84
  msgstr "IP"
85
 
86
+ #: admin/cerber-dashboard.php:948 admin/cerber-dashboard.php:1330
87
+ #: admin/cerber-dashboard.php:4060 admin/cerber-dashboard.php:4543
88
  msgid "Date"
89
  msgstr "Date"
90
 
91
+ #: admin/cerber-dashboard.php:951 admin/cerber-dashboard.php:1332
92
+ #: admin/cerber-dashboard.php:4548
93
  msgid "Local User"
94
  msgstr "Utilisateur local"
95
 
96
+ #: cerber-load.php:5715
97
  msgid "Username used"
98
  msgstr "Identifiant utilisé"
99
 
100
+ #: cerber-common.php:1668
101
  msgid "Logged in"
102
  msgstr "Connexion réussie"
103
 
104
+ #: cerber-common.php:1669
105
  msgid "Logged out"
106
  msgstr "Déconnexion"
107
 
108
+ #: cerber-common.php:1670
109
  msgid "Login failed"
110
  msgstr "Connexion échouée"
111
 
112
+ #: cerber-common.php:1673 admin/cerber-dashboard.php:1092
113
  msgid "IP blocked"
114
  msgstr "IP bloquée"
115
 
116
+ #: cerber-common.php:1677
117
  msgid "Citadel activated!"
118
  msgstr "Citadelle activée !"
119
 
120
+ #: cerber-common.php:1754 admin/cerber-dashboard.php:1704
121
  msgid "Locked out"
122
  msgstr "Bloqué"
123
 
124
+ #: cerber-common.php:1756
125
  msgid "IP blacklisted"
126
  msgstr "IP blacklistées"
127
 
128
+ #: cerber-common.php:1690
129
  msgid "Password changed"
130
  msgstr "Changement de mot de passe"
131
 
132
+ #: admin/cerber-dashboard.php:204 admin/cerber-dashboard.php:329
133
  msgid "Remove"
134
  msgstr "Supprimer"
135
 
136
+ #: admin/cerber-dashboard.php:663
137
  msgid "Lockout for %s was removed"
138
  msgstr "Le blocage de %s a été levé"
139
 
140
+ #: admin/cerber-dashboard.php:275 admin/cerber-dashboard.php:1611
141
+ #: admin/cerber-dashboard.php:1695 admin/cerber-dashboard.php:2099
142
  #: admin/cerber-tools.php:69
143
  msgid "White IP Access List"
144
  msgstr "Liste d'accès IP blanche"
145
 
146
+ #: admin/cerber-dashboard.php:278 admin/cerber-dashboard.php:1614
147
+ #: admin/cerber-dashboard.php:1698 admin/cerber-dashboard.php:2100
148
  #: admin/cerber-tools.php:70
149
  msgid "Black IP Access List"
150
  msgstr "Liste d'accès IP noire"
151
 
152
+ #: admin/cerber-dashboard.php:335
153
  msgid "List is empty"
154
  msgstr "La liste est vide"
155
 
156
+ #: cerber-load.php:4825
157
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
158
  msgstr "Le mode Citadelle est activé après %d tentatives de connexion échouées en %d minutes."
159
 
160
+ #: admin/cerber-dashboard.php:2875 admin/cerber-dashboard.php:3403
161
  msgid "View Activity"
162
  msgstr "Voir l’activité"
163
 
164
+ #: nexus/cerber-nexus.php:95 admin/cerber-dashboard.php:5366
165
+ #: admin/cerber-dashboard.php:5427 admin/cerber-tools.php:37
166
  #: admin/cerber-tools.php:48
167
  msgid "Settings"
168
  msgstr "Réglages"
169
 
170
+ #: admin/cerber-dashboard.php:1968
171
  msgid "Last login"
172
  msgstr "Dernière connexion"
173
 
174
+ #: cerber-common.php:2083 nexus/cerber-slave-list.php:347
175
+ #: admin/cerber-dashboard.php:476 admin/cerber-dashboard.php:2073
176
+ #: admin/cerber-dashboard.php:2122
177
  msgid "Never"
178
  msgstr "Jamais"
179
 
180
+ #: admin/cerber-dashboard.php:5784 admin/cerber-tools.php:59
181
  #: admin/cerber-admin.php:738 admin/cerber-admin.php:905
182
  msgid "Are you sure?"
183
  msgstr "Êtes-vous sûr ?"
184
 
185
+ #: cerber-settings.php:268 admin/cerber-dashboard.php:2506
186
  msgid "My site is behind a reverse proxy"
187
  msgstr "Mon site se trouve derrière un reverse proxy"
188
 
194
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
195
  msgstr "Veuillez activer les Permaliens pour utiliser cette fonctionnalité. Le réglage des Permaliens ne doit pas être “par défaut”."
196
 
197
+ #: admin/cerber-dashboard.php:5296
198
  msgid "Main Settings"
199
  msgstr "Réglages généraux"
200
 
201
+ #: admin/cerber-dashboard.php:5581
202
  msgid "Help"
203
  msgstr "Aide"
204
 
206
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
207
  msgstr "Allonger la durée du blocage à %s heures après %s blocages dans les %s dernières heures"
208
 
209
+ #: cerber-load.php:388 admin/cerber-users.php:463
210
  msgid "You are not allowed to log in. Ask your administrator for assistance."
211
  msgstr "Vous n’êtes pas autorisé à vous connecté. Contactez l’administrateur si vous avez besoin d’assistance."
212
 
213
+ #: admin/cerber-dashboard.php:214 admin/cerber-users.php:926
214
  msgid "Expires"
215
  msgstr "Expire le"
216
 
217
+ #: admin/cerber-dashboard.php:242 admin/cerber-dashboard.php:2741
218
  msgid "No lockouts at the moment. The sky is clear."
219
  msgstr "Il n'y a pas de blocage pour le moment. Tout est dégagé."
220
 
221
+ #: admin/cerber-dashboard.php:285
222
  msgid "Your IP"
223
  msgstr "Votre IP"
224
 
225
+ #: cerber-load.php:4826
226
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
227
  msgstr "La dernière tentative échouée s'est produite à %s à partir de l'IP %s avec un utilisateur ayant comme identifiants : %s."
228
 
229
+ #: cerber-load.php:5939
230
  msgid "Can't activate WP Cerber due to a database error."
231
  msgstr "Le WP Cerber ne peut pas être activé à cause d'une erreur dans la base de données."
232
 
239
  msgid "days"
240
  msgstr "jours"
241
 
242
+ #: admin/cerber-dashboard.php:2039
243
  msgid "Cerber Quick View"
244
  msgstr "Cerber aperçu"
245
 
255
  msgid "Attention! You have changed the login URL! The new login URL is"
256
  msgstr "Attention ! Vous avez changé l'URL de connexion ! La nouvelle URL de connexion est"
257
 
258
+ #: admin/cerber-dashboard.php:1967
259
  msgid "Comments"
260
  msgstr "Commentaires"
261
 
262
+ #: cerber-load.php:4857
 
 
 
 
263
  msgid "Number of active lockouts"
264
  msgstr "Nombre de blocages actifs"
265
 
266
+ #: cerber-load.php:4959
 
 
 
 
267
  msgid "This message was sent by"
268
  msgstr "Ce message a été envoyé par"
269
 
270
+ #: admin/cerber-dashboard.php:88 admin/cerber-dashboard.php:5478
271
  msgid "Tools"
272
  msgstr "Outils"
273
 
319
  msgid "Error while parsing file"
320
  msgstr "Une erreur s'est produite lors de l'analyse du fichier"
321
 
322
+ #: admin/cerber-dashboard.php:212 admin/cerber-dashboard.php:1328
323
  msgid "Hostname"
324
  msgstr "Nom d'hôte"
325
 
326
+ #: admin/cerber-dashboard.php:597
327
  msgid "unknown"
328
  msgstr "inconnu"
329
 
330
+ #: admin/cerber-dashboard.php:2078 admin/cerber-dashboard.php:2108
331
  msgid "active"
332
  msgstr "actif"
333
 
334
+ #: admin/cerber-dashboard.php:2078
335
  msgid "deactivate"
336
  msgstr "désactiver"
337
 
338
+ #: admin/cerber-dashboard.php:2082
339
  msgid "not active"
340
  msgstr "inactif"
341
 
342
+ #: admin/cerber-dashboard.php:2085 admin/cerber-dashboard.php:2103
343
  msgid "disabled"
344
  msgstr "désactivé"
345
 
346
+ #: admin/cerber-dashboard.php:2091
347
  msgid "failed attempts"
348
  msgstr "tentatives non réussies"
349
 
350
+ #: admin/cerber-dashboard.php:2091 admin/cerber-dashboard.php:2092
351
  msgid "in 24 hours"
352
  msgstr "en 24 heures"
353
 
354
+ #: admin/cerber-dashboard.php:2091 admin/cerber-dashboard.php:2092
355
  msgid "view all"
356
  msgstr "voir tout"
357
 
358
+ #: admin/cerber-dashboard.php:2092
359
  msgid "lockouts"
360
  msgstr "blocages"
361
 
362
+ #: admin/cerber-dashboard.php:2094
363
  msgid "Lockouts at the moment"
364
  msgstr "Blocages en ce moment"
365
 
366
+ #: admin/cerber-dashboard.php:2095
367
  msgid "Last lockout"
368
  msgstr "Dernier blocage"
369
 
370
+ #: admin/cerber-dashboard.php:2099 admin/cerber-dashboard.php:2100
371
+ #: admin/cerber-dashboard.php:3162
372
  msgid "entry"
373
  msgid_plural "entries"
374
  msgstr[0] "entrée"
382
  msgid "New version is available"
383
  msgstr "Nouvelle version disponible"
384
 
385
+ #: cerber-load.php:4799
386
  msgid "WP Cerber notify"
387
  msgstr "Aviser WP Cerber"
388
 
389
+ #: cerber-load.php:4823
390
  msgid "Citadel mode is activated"
391
  msgstr "Le mode Citadelle est activé"
392
 
393
+ #: cerber-load.php:4904
394
  msgid "New Custom login URL"
395
  msgstr "Nouvelle URL de connexion personnalisée"
396
 
402
  msgid "Write failed login attempts to the file"
403
  msgstr "Ecrire les tentatives de connexion non réussies dans le fichier"
404
 
405
+ #: admin/cerber-dashboard.php:2874
406
  msgid "Deactivate"
407
  msgstr "Désactiver"
408
 
409
+ #: cerber-load.php:4861 admin/cerber-dashboard.php:215
410
  msgid "Reason"
411
  msgstr "Raison"
412
 
413
+ #: admin/cerber-dashboard.php:1762
414
  msgid "Add IP to the Black List"
415
  msgstr "Ajouter l’IP à la liste noire"
416
 
417
+ #: cerber-common.php:1906
418
  msgid "Attempt to access"
419
  msgstr "Tentative d’accès"
420
 
421
+ #: cerber-common.php:1905
422
  msgid "Limit on login attempts is reached"
423
  msgstr "La limite définie pour les tentatives de connexion a été atteinte"
424
 
425
+ #: cerber-load.php:4860
426
  msgid "Last lockout was added: %s for IP %s"
427
  msgstr "Le dernier blocage a été ajouté le %s pour l’IP %s"
428
 
429
+ #: admin/cerber-dashboard.php:5298
430
  msgid "Hardening"
431
  msgstr "Renforcer"
432
 
433
+ #: admin/cerber-dashboard.php:1734
434
  msgid "Abuse email:"
435
  msgstr "Courriels abusifs :"
436
 
466
  msgid "Disable REST API"
467
  msgstr "Désactiver REST API"
468
 
469
+ #: cerber-load.php:4893 cerber-load.php:5981
470
  msgid "WP Cerber is now active and has started protecting your site"
471
  msgstr "WP Cerber est maintenant actif et protège votre site"
472
 
473
+ #: admin/cerber-dashboard.php:216 admin/cerber-users.php:929
474
  #: admin/cerber-admin.php:774 admin/cerber-admin.php:929
475
  msgid "Action"
476
  msgstr "Action"
477
 
478
+ #: admin/cerber-dashboard.php:5630
479
  msgid "Incorrect IP address or IP range"
480
  msgstr "IP ou plage d’IP incorrecte"
481
 
482
+ #: admin/cerber-dashboard.php:2890
483
  msgid "Settings saved"
484
  msgstr "Paramètres sauvegardés"
485
 
486
+ #: admin/cerber-dashboard.php:1740
487
  msgid "Network:"
488
  msgstr "Réseau :"
489
 
490
+ #: admin/cerber-dashboard.php:1756
491
  msgid "Add network to the Black List"
492
  msgstr "Ajouter un réseau à la liste noire"
493
 
494
+ #: admin/cerber-dashboard.php:2873
495
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
496
  msgstr "Attention ! Le mode Citadel est maintenant activé. Plus personne ne peut se connecter."
497
 
498
+ #: cerber-whois.php:241 cerber-whois.php:272 cerber-common.php:1930
499
+ #: nexus/cerber-slave-list.php:333 admin/cerber-dashboard.php:457
500
+ #: admin/cerber-dashboard.php:4213 admin/cerber-dashboard.php:4816
501
  msgid "Unknown"
502
  msgstr "Inconnu"
503
 
504
+ #: cerber-load.php:743 cerber-load.php:756 cerber-load.php:764
505
+ #: cerber-load.php:1112 cerber-load.php:1973 cerber-load.php:2296
506
+ #: cerber-load.php:3407 cerber-common.php:455 cerber-common.php:555
507
+ #: cerber-common.php:560 cerber-common.php:566 cerber-common.php:570
508
  #: nexus/cerber-nexus-slave.php:203 nexus/cerber-nexus-slave.php:214
509
  #: admin/cerber-admin-settings.php:667 admin/cerber-admin-settings.php:687
510
  #: admin/cerber-admin-settings.php:794 admin/cerber-admin.php:875
511
  msgid "ERROR:"
512
  msgstr "ERREUR :"
513
 
514
+ #: cerber-load.php:778
515
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
516
  msgstr "La vérification humaine a échoué. Veuillez cliquer sur la case carrée dans le bloc reCAPTCHA ci-dessous."
517
 
518
+ #: cerber-load.php:1953
519
  msgid "Username is not allowed. Please choose another one."
520
  msgstr "Ce nom d’utilisateur n’est pas autorisé. Veuillez en choisir un autre."
521
 
522
+ #: cerber-load.php:4852
523
  msgid "unspecified"
524
  msgstr "non spécifié"
525
 
526
+ #: cerber-load.php:4855
527
  msgid "Number of lockouts is increasing"
528
  msgstr "Le nombre de blocage augmente"
529
 
530
+ #: cerber-load.php:4864
531
  msgid "View activity for this IP"
532
  msgstr "Voir l’activité pour cette IP"
533
 
534
+ #: cerber-load.php:4868 cerber-load.php:4870
535
  msgid "A new version of WP Cerber is available to install"
536
  msgstr "Il est possible d'installer une nouvelle version de WP Cerber"
537
 
538
+ #: cerber-load.php:4869
539
  msgid "Hi!"
540
  msgstr "Salut !"
541
 
542
+ #: cerber-load.php:4872 cerber-load.php:4883 nexus/cerber-slave-list.php:44
543
  msgid "Website"
544
  msgstr "Site web"
545
 
546
+ #: cerber-load.php:4875 cerber-load.php:4876
547
  msgid "The WP Cerber security plugin has been deactivated"
548
  msgstr "Le plugin WP Cerber a été désactivé"
549
 
550
+ #: cerber-load.php:4878
551
  msgid "Not logged in"
552
  msgstr "Non connecté"
553
 
554
+ #: cerber-load.php:4884
555
  msgid "By user"
556
  msgstr "Par utilisateur"
557
 
558
+ #: cerber-load.php:4885
559
  msgid "From IP address"
560
  msgstr "De l’adresse IP"
561
 
562
+ #: cerber-load.php:4888
563
  msgid "From country"
564
  msgstr "Du pays"
565
 
566
+ #: cerber-load.php:4892
567
  msgid "The WP Cerber security plugin is now active"
568
  msgstr "Le plugin WP Cerber est maintenant actif"
569
 
570
+ #: cerber-load.php:5994
571
  msgid "Import settings"
572
  msgstr "Importer les paramètres"
573
 
620
  msgid "Know more"
621
  msgstr "En savoir plus"
622
 
623
+ #: cerber-common.php:1661
624
  msgid "User created"
625
  msgstr "Utilisateur créé"
626
 
627
+ #: cerber-common.php:1664
628
  msgid "User registered"
629
  msgstr "Inscription utilisateur"
630
 
631
+ #: cerber-common.php:1701 cerber-common.php:1803
632
  msgid "reCAPTCHA verification failed"
633
  msgstr "la vérification du reCAPTCHA a échoué"
634
 
635
+ #: cerber-common.php:1702 cerber-common.php:1804
636
  msgid "reCAPTCHA settings are incorrect"
637
  msgstr "les paramètres du reCAPTCHA sont incorrects"
638
 
639
+ #: cerber-common.php:1706 cerber-common.php:1907
640
  msgid "Attempt to access prohibited URL"
641
  msgstr "Tentative d’accès à une URL interdite"
642
 
643
+ #: cerber-common.php:1708 cerber-common.php:1909
644
  msgid "Attempt to log in with prohibited username"
645
  msgstr "Tentative de connexion avec un identifiant interdit"
646
 
676
  msgid "Enable reCAPTCHA for WooCommerce login form"
677
  msgstr "Activer reCAPTCHA pour le formulaire de connexion WooCommerce"
678
 
679
+ #: cerber-common.php:1703 cerber-common.php:1805
680
  msgid "Request to the Google reCAPTCHA service failed"
681
  msgstr "La requête au service Google reCAPTCHA a échouée"
682
 
683
+ #: admin/cerber-dashboard.php:1061 admin/cerber-dashboard.php:1072
684
+ #: admin/cerber-dashboard.php:1085 admin/cerber-dashboard.php:2744
685
+ #: admin/cerber-dashboard.php:4608
686
  msgid "View all"
687
  msgstr "Voir tout"
688
 
689
+ #: admin/cerber-dashboard.php:2752
690
  msgid "Recently locked out IP addresses"
691
  msgstr "IPs récemment bloquées"
692
 
698
  msgid "NO, maybe later"
699
  msgstr "NON, peut-être plus tard"
700
 
701
+ #: admin/cerber-dashboard.php:60 admin/cerber-dashboard.php:2141
702
+ #: admin/cerber-dashboard.php:3184 admin/cerber-dashboard.php:5292
703
  msgid "Dashboard"
704
  msgstr "Tableau de bord"
705
 
711
  msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
712
  msgstr "Permettre à WP Cerber d’envoyer les adresses IP qui ont été bloqués au Cerber Lab. Cela aidera l’équipe à créer de nouveau algorithmes pour que WP Cerber puisse défendre WordPress contre les nouvelles attaques et réseaux de robots qui apparaissent chaque jour. Vous pouvez désactiver l’envoi des données à tout moment dans les réglages du plugin."
713
 
714
+ #: admin/cerber-dashboard.php:4059
715
  msgid "IP address"
716
  msgstr "Adresse IP"
717
 
718
+ #: admin/cerber-dashboard.php:952
719
  msgid "User login"
720
  msgstr "Connexion de l'utilisateur"
721
 
722
+ #: admin/cerber-dashboard.php:953 admin/cerber-dashboard.php:4065
723
  msgid "User ID"
724
  msgstr "ID utilisateur"
725
 
726
+ #: admin/cerber-dashboard.php:1362 admin/cerber-dashboard.php:4636
727
  msgid "Export"
728
  msgstr "Exporter"
729
 
730
+ #: admin/cerber-dashboard.php:1415
731
  msgid "Search for IP or username"
732
  msgstr "Rechercher une adresse IP ou un nom d'utilisateur"
733
 
734
+ #: admin/cerber-dashboard.php:1426
735
  msgid "Filter"
736
  msgstr "Filtre"
737
 
738
+ #: admin/cerber-dashboard.php:60
739
  msgid "Cerber Dashboard"
740
  msgstr "Tableau de bord Cerber"
741
 
742
+ #: admin/cerber-dashboard.php:88
743
  msgid "Cerber tools"
744
  msgstr "Outils Cerber"
745
 
746
+ #: cerber-load.php:5711 admin/cerber-users.php:923
747
  msgid "User"
748
  msgstr "Utilisateur"
749
 
750
+ #: cerber-load.php:5719
751
  msgid "Search string"
752
  msgstr "Chaîne de recherche"
753
 
784
  msgid "Not available"
785
  msgstr "Non disponible"
786
 
787
+ #: cerber-common.php:1693
788
  msgid "Password reset requested"
789
  msgstr "Réinitialisation du mot de passe demandée"
790
 
791
+ #: cerber-common.php:1910
792
  msgid "Limit on failed reCAPTCHA verifications is reached"
793
  msgstr "La limite sur les vérifications reCAPTCHA échouées est atteinte"
794
 
828
  msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
829
  msgstr "En mode Citadel, il est impossible de se connecter, à l'exception des adresses IP de la liste d'accès IP blanche. Les sessions utilisateur actives ne seront pas affectées."
830
 
831
+ #: admin/cerber-dashboard.php:949 admin/cerber-dashboard.php:1331
832
  msgid "Event"
833
  msgstr "Événement"
834
 
835
+ #: cerber-common.php:388
836
  msgid "Spam comments denied"
837
  msgstr "Les commentaires de spam sont refusés"
838
 
839
+ #: cerber-common.php:390
840
  msgid "Malicious IP addresses detected"
841
  msgstr "Adresses IP malveillantes détectées"
842
 
843
+ #: cerber-common.php:391
844
  msgid "Lockouts occurred"
845
  msgstr "Il y a eu des blocages"
846
 
847
+ #: cerber-load.php:1932 cerber-load.php:1938 cerber-load.php:1943
848
+ #: cerber-load.php:1963 cerber-load.php:1968
849
  msgid "You are not allowed to register."
850
  msgstr "Vous n'êtes pas autorisé à vous inscrire."
851
 
852
+ #: cerber-common.php:1678
853
  msgid "Spam comment denied"
854
  msgstr "Commentaire anti-spam refusé"
855
 
856
+ #: cerber-common.php:1711
857
  msgid "Attempt to log in denied"
858
  msgstr "La tentative d'ouverture de session a été refusée"
859
 
860
+ #: cerber-common.php:1712
861
  msgid "Attempt to register denied"
862
  msgstr "La tentative d'enregistrement a été refusée"
863
 
864
+ #: cerber-common.php:385
865
  msgid "Malicious activities mitigated"
866
  msgstr "atténuations d'activités malveillantes"
867
 
877
  msgid "Protect registration form with bot detection engine"
878
  msgstr "Protéger le formulaire d'inscription avec le moteur de détection de bot"
879
 
880
+ #: admin/cerber-dashboard.php:5482
881
  msgid "Diagnostic"
882
  msgstr "Diagnostic"
883
 
884
+ #: admin/cerber-dashboard.php:5485
885
  msgid "License"
886
  msgstr "Licence"
887
 
888
+ #: cerber-load.php:2296
889
  msgid "Sorry, human verification failed."
890
  msgstr "Désolé, la vérification humaine a échoué."
891
 
892
+ #: cerber-common.php:1911
893
  msgid "Bot activity is detected"
894
  msgstr "L'activité du robot est détectée"
895
 
909
  msgid "Move spam comments to trash after"
910
  msgstr "Déplacer les commentaires indésirables à la corbeille"
911
 
912
+ #: cerber-common.php:1679
913
  msgid "Spam form submission denied"
914
  msgstr "Soumission du formulaire anti-spam refusée"
915
 
929
  msgid "Use less restrictive policies (allow AJAX)"
930
  msgstr "Utiliser des politiques moins restrictives (autoriser AJAX)"
931
 
932
+ #: admin/cerber-dashboard.php:213 admin/cerber-dashboard.php:1329
933
  msgid "Country"
934
  msgstr "Pays"
935
 
936
+ #: admin/cerber-dashboard.php:67
937
  msgid "Cerber Security Rules"
938
  msgstr "Règles de sécurité Cerber"
939
 
940
+ #: admin/cerber-dashboard.php:67 admin/cerber-dashboard.php:5409
941
  msgid "Security Rules"
942
  msgstr "Règles de sécurité"
943
 
944
+ #: admin/cerber-dashboard.php:1969
945
  msgid "Failed login attempts"
946
  msgstr "Echec des tentatives de connexion"
947
 
948
+ #: admin/cerber-dashboard.php:1893 admin/cerber-dashboard.php:1970
949
  msgid "Registered"
950
  msgstr "Enregistré"
951
 
952
+ #: admin/cerber-dashboard.php:2017 admin/cerber-users.php:52
953
+ #: admin/cerber-users.php:1082
954
  msgid "You"
955
  msgstr "Vous"
956
 
957
+ #: cerber-common.php:389
958
  msgid "Spam form submissions denied"
959
  msgstr "Refus d'envoi du formulaire anti-spam"
960
 
961
+ #: cerber-load.php:4895 cerber-load.php:5985
962
  msgid "Getting Started Guide"
963
  msgstr "Guide de démarrage"
964
 
965
+ #: admin/cerber-dashboard.php:5411
966
  msgid "Countries"
967
  msgstr "Pays"
968
 
969
+ #: admin/cerber-dashboard.php:3788
970
  msgid "Permitted for one country"
971
  msgid_plural "Permitted for %d countries"
972
  msgstr[0] "Autorisé pour un pays"
973
  msgstr[1] "Autorisé pour %d pays"
974
 
975
+ #: admin/cerber-dashboard.php:3799
976
  msgid "No rule"
977
  msgstr "Aucune règle"
978
 
979
+ #: admin/cerber-dashboard.php:3960
980
  msgid "Security rules have been updated"
981
  msgstr "Les règles de sécurité ont été mises à jour"
982
 
985
  msgid "https://wpcerber.com"
986
  msgstr "https://wpcerber.com"
987
 
988
+ #: cerber-common.php:1680
989
  msgid "Form submission denied"
990
  msgstr "Refus d'envoi du formulaire"
991
 
992
+ #: cerber-common.php:1681
993
  msgid "Comment denied"
994
  msgstr "Commentaire refusé"
995
 
996
+ #: cerber-common.php:1717
997
  msgid "Request to REST API denied"
998
  msgstr "Demande d'REST API refusée"
999
 
1000
+ #: cerber-common.php:1752
1001
  msgid "Bot detected"
1002
  msgstr "Robot détecté"
1003
 
1004
+ #: cerber-common.php:1753
1005
  msgid "Citadel mode is active"
1006
  msgstr "Le mode Citadel est actif"
1007
 
1008
+ #: cerber-common.php:1757
1009
  msgid "Malicious activity detected"
1010
  msgstr "Activité malveillante détectée"
1011
 
1012
+ #: cerber-common.php:1758
1013
  msgid "Blocked by country rule"
1014
  msgstr "Bloqué par la règle du pays"
1015
 
1016
+ #: cerber-common.php:1759
1017
  msgid "Limit reached"
1018
  msgstr "Limite atteinte"
1019
 
1020
+ #: cerber-common.php:1760
1021
  msgid "Multiple suspicious activities"
1022
  msgstr "Plusieurs activités suspectes"
1023
 
1024
+ #: cerber-common.php:1912
1025
  msgid "Multiple suspicious activities were detected"
1026
  msgstr "Plusieurs activités suspectes ont été détectées"
1027
 
1033
  msgid "Registration limit"
1034
  msgstr "Limite d'enregistrement"
1035
 
 
 
 
 
1036
  #: cerber-settings.php:695
1037
  msgid "by date of registration"
1038
  msgstr "par date d'enregistrement"
1041
  msgid "Query whitelist"
1042
  msgstr "Liste blanche des requêtes"
1043
 
1044
+ #: admin/cerber-dashboard.php:3768
1045
  msgid "Start typing here to find a country"
1046
  msgstr "Commencez à taper ici pour trouver un pays"
1047
 
1048
+ #: admin/cerber-dashboard.php:3883
1049
  msgid "Click on a country name to add it to the list of selected countries"
1050
  msgstr "Cliquez sur le nom d'un pays pour l'ajouter à la liste des pays sélectionnés"
1051
 
1052
+ #: admin/cerber-dashboard.php:3915
1053
  msgid "Submit forms"
1054
  msgstr "Soumettre les formulaires"
1055
 
1056
+ #: admin/cerber-dashboard.php:3916
1057
  msgid "Post comments"
1058
  msgstr "Poster des commentaires"
1059
 
1060
+ #: admin/cerber-dashboard.php:3914
1061
  msgid "Register on the website"
1062
  msgstr "S'inscrire sur le site"
1063
 
1064
+ #: admin/cerber-dashboard.php:3917
1065
  msgid "Use XML-RPC"
1066
  msgstr "Utiliser XML-RPC"
1067
 
1068
+ #: admin/cerber-dashboard.php:3918
1069
  msgid "Use REST API"
1070
  msgstr "Utiliser REST API"
1071
 
1077
  msgid "Mark it as spam"
1078
  msgstr "Marquez-le comme spam"
1079
 
1080
+ #: admin/cerber-dashboard.php:3185
1081
  msgid "Main settings"
1082
  msgstr "Réglages principaux"
1083
 
1089
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1090
  msgstr "Si vous utilisez un plugin de mise en cache, vous devez ajouter votre nouvelle URL de connexion à la liste des pages à ne pas mettre en cache."
1091
 
1092
+ #: cerber-load.php:4914
1093
  msgid "Weekly report"
1094
  msgstr "Rapport hebdomadaire"
1095
 
1096
+ #: cerber-load.php:4917 cerber-load.php:4925
1097
  msgid "To change reporting settings visit"
1098
  msgstr "Pour modifier les paramètres de reporting, visitez"
1099
 
1100
+ #: cerber-load.php:4951
1101
  msgid "Your login page:"
1102
  msgstr "Votre page de connexion :"
1103
 
1104
+ #: cerber-load.php:4956
1105
  msgid "Your license is valid until"
1106
  msgstr "Votre licence est valable jusqu'au"
1107
 
1108
+ #: cerber-load.php:5062
1109
  msgid "Activity details"
1110
  msgstr "Détails de l'activité"
1111
 
1113
  msgid "Click to send now"
1114
  msgstr "Cliquez pour envoyer maintenant"
1115
 
1116
+ #: admin/cerber-dashboard.php:671
1117
  msgid "Email has been sent to"
1118
  msgstr "Un courriel a été envoyé à"
1119
 
1120
+ #: admin/cerber-dashboard.php:674
1121
  msgid "Unable to send email to"
1122
  msgstr "Impossible d'envoyer un courriel à"
1123
 
1124
+ #: admin/cerber-dashboard.php:3791
1125
  msgid "Not permitted for one country"
1126
  msgid_plural "Not permitted for %d countries"
1127
  msgstr[0] "Interdit pour un pays"
1128
  msgstr[1] "Interdit pour %d pays"
1129
 
1130
+ #: admin/cerber-dashboard.php:3887
1131
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1132
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1133
  msgstr "Les pays sélectionnés sont autorisés à %s, les autres pays ne sont pas autorisés à"
1134
 
1135
+ #: admin/cerber-dashboard.php:3890
1136
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1137
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1138
  msgstr "Les pays sélectionnés ne sont pas autorisés à %s, les autres pays sont autorisés à"
1139
 
1140
+ #: cerber-load.php:5050
1141
  msgid "Weekly Report"
1142
  msgstr "Rapport hebdomadaire"
1143
 
1157
  msgid "Enable reporting"
1158
  msgstr "Activer le signalement"
1159
 
1160
+ #: cerber-load.php:4980
1161
  msgid "Your last sign-in was %s from %s"
1162
  msgstr "Votre dernière connexion était %s de %s"
1163
 
1164
+ #: admin/cerber-dashboard.php:343
1165
  msgid "Optional comment for this entry"
1166
  msgstr "Commentaire facultatif pour cette entrée"
1167
 
1168
+ #: admin/cerber-dashboard.php:365
1169
  msgid "You cannot add your IP address or network"
1170
  msgstr "Vous ne pouvez pas ajouter votre adresse IP ou votre réseau"
1171
 
1173
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1174
  msgstr "Pour spécifier un motif REGEX, enroulez un motif en deux barres obliques vers l'avant."
1175
 
1176
+ #: admin/cerber-dashboard.php:62
1177
  msgid "Cerber Traffic Inspector"
1178
  msgstr "Inspecteur du trafic du Cerber"
1179
 
1180
+ #: admin/cerber-dashboard.php:62 admin/cerber-dashboard.php:2104
1181
+ #: admin/cerber-dashboard.php:5363
1182
  msgid "Traffic Inspector"
1183
  msgstr "Inspecteur du trafic"
1184
 
1185
+ #: admin/cerber-dashboard.php:2143 admin/cerber-users.php:1116
1186
  msgid "Traffic"
1187
  msgstr "Trafic"
1188
 
1189
+ #: admin/cerber-dashboard.php:4544
1190
  msgid "Request"
1191
  msgstr "Demande"
1192
 
1193
+ #: admin/cerber-dashboard.php:4546 admin/cerber-users.php:928
1194
  msgid "Host Info"
1195
  msgstr "Informations sur l'hôte"
1196
 
1197
+ #: admin/cerber-dashboard.php:4547
1198
  msgid "User Agent"
1199
  msgstr "Agent utilisateur"
1200
 
1201
+ #: admin/cerber-dashboard.php:4613
1202
  msgid "Form submissions"
1203
  msgstr "Soumission des formulaires"
1204
 
1205
+ #: admin/cerber-dashboard.php:4614
1206
  msgid "Page Not Found"
1207
  msgstr "La page n'a pas été trouvée"
1208
 
1209
+ #: admin/cerber-dashboard.php:4621
1210
  msgid "Longer than"
1211
  msgstr "Plus long que"
1212
 
1213
+ #: admin/cerber-dashboard.php:4644
1214
  msgid "Refresh"
1215
  msgstr "Actualiser"
1216
 
1217
+ #: cerber-common.php:283
1218
  msgid "Check for requests"
1219
  msgstr "Vérifier les demandes"
1220
 
1221
+ #: admin/cerber-dashboard.php:4679
1222
  msgid "Not specified"
1223
  msgstr "Non spécifié(e)(s)"
1224
 
1258
  msgid "Page generation time threshold"
1259
  msgstr "Temps limite de génération des pages"
1260
 
1261
+ #: admin/cerber-dashboard.php:2103
 
 
 
 
1262
  msgid "enabled"
1263
  msgstr "activé(s)"
1264
 
1265
+ #: admin/cerber-dashboard.php:2108
1266
  msgid "no connection"
1267
  msgstr "aucune connexion"
1268
 
1269
+ #: admin/cerber-dashboard.php:1921
1270
  msgid "Last seen"
1271
  msgstr "Vu pour la dernière fois"
1272
 
1273
+ #: cerber-load.php:4688
1274
  msgid "We're sorry, you are not allowed to proceed"
1275
  msgstr "Nous nous excusons, mais vous n'avez pas le droit de continuer"
1276
 
1302
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1303
  msgstr "Bloquer l'accès non autorisé à load-scripts.php et load-styles.php"
1304
 
1305
+ #: cerber-common.php:3281
1306
  msgid "Unable to create the directory"
1307
  msgstr "Impossible de créer le répertoire"
1308
 
1309
+ #: cerber-common.php:3286
1310
  msgid "Destination folder access denied"
1311
  msgstr "Accès au dossier de destination refusé"
1312
 
1313
+ #: cerber-common.php:3289
1314
  msgid "File not found"
1315
  msgstr "Fichier non trouvé"
1316
 
1317
+ #: cerber-common.php:3292
1318
  msgid "Unable to copy the file"
1319
  msgstr "Impossible de copier le fichier"
1320
 
1321
+ #: cerber-common.php:3298
1322
  msgid "Unable to delete the file"
1323
  msgstr "Impossible de supprimer le fichier"
1324
 
1338
  msgid "Plugin initialization mode has not been changed"
1339
  msgstr "Le mode d'initialisation du plugin n'a pas été modifié"
1340
 
1341
+ #: cerber-common.php:1715
1342
  msgid "File upload denied"
1343
  msgstr "Envoi de fichier refusé"
1344
 
1354
  msgid "If you forget your Custom login URL, you will be unable to log in."
1355
  msgstr "Si vous oubliez votre URL de connexion personnalisée, vous ne pourrez pas vous connecter."
1356
 
1357
+ #: admin/cerber-dashboard.php:73 admin/cerber-dashboard.php:5424
1358
  msgid "Site Integrity"
1359
  msgstr "Intégrité du site"
1360
 
1361
  #: cerber-scanner.php:1717 cerber-settings.php:683 cerber-settings.php:825
1362
  #: cerber-settings.php:856 cerber-settings.php:990 cerber-settings.php:999
1363
+ #: cerber-settings.php:1466 admin/cerber-dashboard.php:2128
1364
+ #: admin/cerber-dashboard.php:2130 admin/cerber-users.php:20
1365
  #: admin/cerber-users.php:474 admin/cerber-users.php:488
1366
  msgid "Disabled"
1367
  msgstr "Désactivé"
1368
 
1369
+ #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2129
1370
  msgid "Quick Scan"
1371
  msgstr "Balayage rapide"
1372
 
1373
+ #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2131
1374
  msgid "Full Scan"
1375
  msgstr "Balayage complet"
1376
 
1377
+ #: cerber-common.php:1751 cerber-common.php:1761
1378
  msgid "Denied"
1379
  msgstr "Refusé"
1380
 
1475
  msgid "Include scan errors"
1476
  msgstr "Inclure les erreurs de l'analyse"
1477
 
1478
+ #: admin/cerber-dashboard.php:5426
1479
  msgid "Security Scanner"
1480
  msgstr "Balayeur de sécurité"
1481
 
1482
+ #: admin/cerber-dashboard.php:5428
1483
  msgid "Scheduling"
1484
  msgstr "Planification"
1485
 
1511
  msgid "Continue Scanning"
1512
  msgstr "Poursuivre le balayage"
1513
 
1514
+ #: admin/cerber-dashboard.php:1385 admin/cerber-tools.php:355
1515
+ #: admin/cerber-admin.php:227
1516
  msgid "Delete"
1517
  msgstr "Supprimer"
1518
 
1624
  msgid "To view full report visit"
1625
  msgstr "Pour consulter le rapport complet, visitez"
1626
 
1627
+ #: cerber-load.php:4922
1628
  msgid "Scanner Report"
1629
  msgstr "Rapport du balayeur"
1630
 
1688
  msgid "Files scanned"
1689
  msgstr "Fichiers balayés"
1690
 
1691
+ #: admin/cerber-dashboard.php:325 admin/cerber-dashboard.php:1684
1692
+ #: admin/cerber-dashboard.php:1741 admin/cerber-dashboard.php:1872
1693
  msgid "Check for activities"
1694
  msgstr "Vérifier les activités"
1695
 
1696
+ #: admin/cerber-dashboard.php:1903
1697
  msgid "Activated"
1698
  msgstr "Activé"
1699
 
1700
+ #: cerber-common.php:1726
1701
  msgid "Malicious request denied"
1702
  msgstr "Demande malveillante refusée"
1703
 
1704
+ #: cerber-common.php:1740
1705
  msgid "User activated"
1706
  msgstr "Activé par l'utilisateur"
1707
 
1708
+ #: cerber-common.php:1763
1709
  msgid "Suspicious number of fields"
1710
  msgstr "Nombre de champs suspects"
1711
 
1712
+ #: cerber-common.php:1764
1713
  msgid "Suspicious number of nested values"
1714
  msgstr "Nombre suspect de valeurs intégrées dans le fichier"
1715
 
1716
+ #: cerber-common.php:1765 cerber-common.php:1914
1717
  msgid "Malicious code detected"
1718
  msgstr "Code malveillant détecté"
1719
 
1720
+ #: cerber-common.php:1915
1721
  msgid "Attempt to upload a file with malicious code"
1722
  msgstr "Tentative de téléchargement d'un fichier contenant un code malveillant"
1723
 
1724
+ #: cerber-common.php:2198
1725
  msgid "Bytes"
1726
  msgstr "Octets"
1727
 
1741
  msgid "Scan results reporting"
1742
  msgstr "Rapports sur les résultats du balayage"
1743
 
1744
+ #: admin/cerber-dashboard.php:1082
1745
  msgid "Suspicious activity"
1746
  msgstr "Activité suspecte"
1747
 
1748
+ #: admin/cerber-dashboard.php:4610
1749
  msgid "Errors"
1750
  msgstr "Erreurs"
1751
 
1754
  msgid "Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications."
1755
  msgstr "Défend WordPress contre les attaques de pirates, le spam, les chevaux de Troie et les virus. Balayeur de logiciels malveillants et vérificateur d'intégrité. Renforcement de WordPress avec un ensemble complet d'algorithmes de sécurité. Protection anti-spam avec un moteur de détection de robot sophistiqué et reCAPTCHA. Suivi de l'activité des utilisateurs et des intrus grâce à de puissantes notifications par courriel, par téléphone mobile et par ordinateur."
1756
 
1757
+ #: cerber-load.php:394
1758
  msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
1759
  msgstr "Vous avez dépassé le nombre de tentatives de connexion autorisées. Veuillez réessayer en %d minutes."
1760
 
1761
+ #: cerber-common.php:2078
1762
  msgctxt "preposition of a period of time like: in 6 hours"
1763
  msgid "in %s"
1764
  msgstr "en %s"
1768
  msgid "at"
1769
  msgstr "à"
1770
 
1771
+ #: admin/cerber-dashboard.php:5431
1772
  msgid "Quarantine"
1773
  msgstr "Quarantaine"
1774
 
1841
  msgid "The file has been restored to its original location."
1842
  msgstr "Le fichier a été restauré à son emplacement d'origine."
1843
 
1844
+ #: admin/cerber-dashboard.php:2144
1845
  msgid "Integrity"
1846
  msgstr "Intégrité"
1847
 
1848
+ #: cerber-common.php:1714
1849
  msgid "Attempt to upload malicious file denied"
1850
  msgstr "Tentative de téléchargement d'un fichier malveillant refusée"
1851
 
1852
+ #: cerber-load.php:8063
1853
  msgid "Awesome!"
1854
  msgstr "Génial !"
1855
 
1877
  msgid "Use comma to separate items."
1878
  msgstr "Utilisez la virgule pour séparer les éléments."
1879
 
1880
+ #: admin/cerber-dashboard.php:5429
1881
  msgid "Cleaning up"
1882
  msgstr "Nettoyage"
1883
 
1909
  msgid "Automatically moved to quarantine"
1910
  msgstr "Passage automatique en quarantaine"
1911
 
1912
+ #: cerber-common.php:1766
1913
  msgid "Suspicious SQL code detected"
1914
  msgstr "Code SQL suspect détecté"
1915
 
1916
+ #: admin/cerber-dashboard.php:2125
1917
  msgctxt "Example: Last malware scan: 23 Jan 2018"
1918
  msgid "Last malware scan"
1919
  msgstr "Dernière recherche de programmes malveillants"
1920
 
1921
+ #: admin/cerber-dashboard.php:5365
1922
  msgid "Live Traffic"
1923
  msgstr "Trafic en direct"
1924
 
1930
  msgid "Disable PHP error displaying"
1931
  msgstr "Désactiver l'affichage des erreurs PHP"
1932
 
1933
+ #: admin/cerber-dashboard.php:5430
1934
  msgid "Ignore List"
1935
  msgstr "Ignorer la liste"
1936
 
1963
  msgid "Activity Insights"
1964
  msgstr "Aperçu de l'activité"
1965
 
1966
+ #: admin/cerber-dashboard.php:3330
1967
  msgid "Are you sure you want to delete selected files?"
1968
  msgstr "Êtes-vous sûr de vouloir supprimer les fichiers sélectionnés ?"
1969
 
1970
+ #: admin/cerber-dashboard.php:3331
1971
  msgid "These files have been moved to the quarantine"
1972
  msgstr "Ces fichiers sont placés en quarantaine"
1973
 
1974
+ #: admin/cerber-dashboard.php:3334
1975
  msgid "Do you want to add selected files to the ignore list?"
1976
  msgstr "Voudriez vous ajouter des fichiers sélectionnés à la liste des fichiers ignorés ?"
1977
 
1978
+ #: admin/cerber-dashboard.php:3335
1979
  msgid "These files have been added to the ignore list"
1980
  msgstr "Ces fichiers ont été ajoutés à la liste des fichiers ignorés"
1981
 
1982
+ #: admin/cerber-dashboard.php:3337
1983
  msgid "Some errors occurred"
1984
  msgstr "Des erreurs se sont produites"
1985
 
1986
+ #: admin/cerber-dashboard.php:3338
1987
  msgid "All files have been processed"
1988
  msgstr "Tous les fichiers ont été traités"
1989
 
1990
+ #: admin/cerber-dashboard.php:5770
1991
  msgid "Know more about all advantages at"
1992
  msgstr "En savoir plus sur tous les avantages à"
1993
 
1994
+ #: cerber-common.php:1767
1995
  msgid "Suspicious JavaScript code detected"
1996
  msgstr "Il a été détecté un code JavaScript suspect"
1997
 
2015
  msgid "Click here to see the full list of files"
2016
  msgstr "Pour voir la liste complète des fichiers, cliquez ici"
2017
 
2018
+ #: admin/cerber-dashboard.php:950
2019
  msgid "Additional Details"
2020
  msgstr "Autres détails"
2021
 
2022
+ #: admin/cerber-dashboard.php:4066
2023
  msgid "Page generation time"
2024
  msgstr "Le temps pour générer une page"
2025
 
2026
+ #: admin/cerber-dashboard.php:5950
2027
  msgid "Log In"
2028
  msgstr "Se connecter"
2029
 
2030
+ #: admin/cerber-dashboard.php:5951
2031
  msgid "Log Out"
2032
  msgstr "Se déconnecter"
2033
 
2034
+ #: admin/cerber-dashboard.php:5952
2035
  msgid "Register"
2036
  msgstr "Inscrivez-vous"
2037
 
2038
+ #: admin/cerber-dashboard.php:5955
2039
  msgid "WooCommerce Log In"
2040
  msgstr "Se connecter à WooCommerce"
2041
 
2042
+ #: admin/cerber-dashboard.php:5956
2043
  msgid "WooCommerce Log Out"
2044
  msgstr "Se déconnecter à WooCommerce"
2045
 
2046
+ #: cerber-common.php:1755
2047
  msgid "IP address is locked out"
2048
  msgstr "L'adresse IP est bloquée"
2049
 
2050
+ #: cerber-common.php:1918
2051
  msgid "Multiple suspicious requests"
2052
  msgstr "De nombreuses demandes suspectes"
2053
 
2079
  msgid "Preparing for the scan"
2080
  msgstr "Préparation du balayage"
2081
 
2082
+ #: cerber-common.php:1768
2083
  msgid "Blocked by administrator"
2084
  msgstr "Bloqué par l'administrateur"
2085
 
2086
+ #: cerber-load.php:398
2087
  msgid "You are not allowed to log in"
2088
  msgstr "Vous n'êtes pas autorisé à vous connecter"
2089
 
2135
  msgid "Select one or more roles"
2136
  msgstr "Sélectionnez un ou plusieurs rôles"
2137
 
2138
+ #: admin/cerber-dashboard.php:1414 admin/cerber-users.php:971
2139
  msgid "Filter by registered user"
2140
  msgstr "Filtrer par utilisateur enregistré"
2141
 
2155
  msgid "Redirect to URL"
2156
  msgstr "Rediriger vers l'URL"
2157
 
2158
+ #: admin/cerber-dashboard.php:5484
2159
  msgid "Changelog"
2160
  msgstr "Journal des modifications"
2161
 
2162
+ #: admin/cerber-dashboard.php:741
2163
  msgid "Default settings have been loaded"
2164
  msgstr "Les paramètres par défaut ont été téléchargés"
2165
 
2166
+ #: admin/cerber-dashboard.php:3775
2167
  msgid "Save all rules"
2168
  msgstr "Sauvegarder toutes les règles"
2169
 
2170
+ #: cerber-common.php:1743
2171
  msgid "Invalid master credentials"
2172
  msgstr "Les informations d'identification de base sont incorrectes"
2173
 
2219
  msgid "Malware Scan"
2220
  msgstr "Balayage de logiciels malveillants"
2221
 
2222
+ #: nexus/cerber-nexus-master.php:516 nexus/cerber-slave-list.php:56
2223
  msgid "Notes"
2224
  msgstr "Notes"
2225
 
2227
  msgid "Add a slave website"
2228
  msgstr "Ajouter un site esclave"
2229
 
2230
+ #: nexus/cerber-slave-list.php:247 admin/cerber-users.php:1037
2231
  msgid "Search results for:"
2232
  msgstr "Résultats de recherche pour :"
2233
 
2247
  msgid "Add a new one"
2248
  msgstr "Ajouter un(e) nouvel(le)"
2249
 
2250
+ #: nexus/cerber-nexus-master.php:479
2251
  msgid "Website Properties"
2252
  msgstr "Propriétés du site Web"
2253
 
2254
+ #: nexus/cerber-nexus-master.php:489
2255
  msgid "Website URL"
2256
  msgstr "URL du site Web"
2257
 
2258
+ #: nexus/cerber-nexus-master.php:494
2259
  msgid "Display as"
2260
  msgstr "Afficher comme"
2261
 
2262
+ #: nexus/cerber-nexus-master.php:524
2263
  msgid "Website Owner"
2264
  msgstr "Propriétaire du site Web"
2265
 
2266
+ #: nexus/cerber-nexus-master.php:540
2267
  msgid "Phone"
2268
  msgstr "Téléphone"
2269
 
2270
+ #: nexus/cerber-nexus-master.php:548
2271
  msgid "Address"
2272
  msgstr "Adresse"
2273
 
2274
+ #: nexus/cerber-nexus-master.php:691
2275
  msgid "The website you are trying to add is already in the list"
2276
  msgstr "Le site web que vous voulez ajouter est déjà ajouté dans la liste"
2277
 
2278
+ #: nexus/cerber-nexus-master.php:700
2279
  msgid "The website has been added successfully"
2280
  msgstr "Le site Web a été ajouté correctement"
2281
 
2282
+ #: nexus/cerber-nexus-master.php:701
2283
  msgid "Click to edit"
2284
  msgstr "Cliquez pour faire une modification"
2285
 
2286
+ #: nexus/cerber-nexus-master.php:702
2287
  msgid "Switch to the Dashboard"
2288
  msgstr "Aller au tableau de bord"
2289
 
2290
+ #: nexus/cerber-nexus-master.php:705
2291
  msgid "Keep in mind: You have added the website that does not support SSL encryption. This may lead to data leakage."
2292
  msgstr "Il ne faut pas l'oublier : Vous avez ajouté un site Web qui ne prend pas en charge le cryptage SSL. Cela peut entraîner des risques de fuite de données."
2293
 
2294
+ #: nexus/cerber-nexus-master.php:824
2295
  msgid "Website has been deleted"
2296
  msgid_plural "%s websites have been deleted"
2297
  msgstr[0] "Le site Web a été supprimé"
2298
  msgstr[1] "%s sites web ont été supprimés"
2299
 
2300
+ #: nexus/cerber-nexus-master.php:1074
2301
  msgid "You have switched to %s"
2302
  msgstr "Vous êtes passé à %s"
2303
 
2304
+ #: nexus/cerber-nexus-master.php:1084
2305
  msgid "You have switched back to the master website"
2306
  msgstr "Vous êtes retourné sur le site Web de base"
2307
 
2308
+ #: nexus/cerber-nexus-master.php:1300
2309
  msgid "You are here:"
2310
  msgstr "Vous êtes ici :"
2311
 
2312
+ #: nexus/cerber-nexus-master.php:1303 nexus/cerber-nexus.php:94
2313
  #: nexus/cerber-nexus.php:104
2314
  msgid "My Websites"
2315
  msgstr "Mes sites Web"
2371
  msgstr "Installez le jeton d'accès sur le site Web de base."
2372
 
2373
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
2374
+ #: cerber-common.php:2071
2375
  msgid "%s sec"
2376
  msgid_plural "%s secs"
2377
  msgstr[0] "%s sec"
2385
  msgid "Updates"
2386
  msgstr "Mises à jour"
2387
 
2388
+ #: nexus/cerber-nexus-master.php:502 nexus/cerber-slave-list.php:54
2389
  msgid "Group"
2390
  msgstr "Groupe"
2391
 
2405
  msgid "All groups"
2406
  msgstr "Tous les groupes"
2407
 
2408
+ #: nexus/cerber-nexus-master.php:1384
2409
  msgid "Are you sure you want to delete selected websites?"
2410
  msgstr "Êtes-vous sûr que vous voulez supprimer les sites Web sélectionnés ?"
2411
 
2413
  msgid "Block"
2414
  msgstr "Bloquer"
2415
 
2416
+ #: nexus/cerber-nexus-master.php:471
2417
  msgid "Select an existing group or enter a new one to add it"
2418
  msgstr "Sélectionner un groupe existant ou en saisir un nouveau pour l'ajouter"
2419
 
2420
+ #: nexus/cerber-nexus-master.php:544
2421
  msgid "Company"
2422
  msgstr "Entreprise"
2423
 
2424
+ #: nexus/cerber-nexus-master.php:178
2425
  msgid "Invalid response from the slave website"
2426
  msgstr "Réponse invalide du site Web esclave"
2427
 
2428
+ #: cerber-common.php:1707 cerber-common.php:1908
2429
  msgid "Attempt to log in with non-existing username"
2430
  msgstr "Tentative de connexion avec un identifiant inexistant"
2431
 
2432
+ #: cerber-load.php:5076
2433
  msgid "Attempts to log in with non-existing usernames"
2434
  msgstr "Tentatives d'ouverture de session avec un nom d'utilisateur inexistant"
2435
 
2461
  msgid "Block execution of PHP scripts in the WordPress media folder"
2462
  msgstr "Bloquer l'exécution des scripts PHP dans le dossier média de WordPress"
2463
 
2464
+ #: nexus/cerber-nexus-master.php:1451 nexus/cerber-nexus-master.php:1459
2465
  msgid "Active plugins and updates on"
2466
  msgstr "Plugins actifs et mises à jour sur"
2467
 
2468
+ #: nexus/cerber-nexus-master.php:1429
2469
  msgid "A newer version is available"
2470
  msgstr "Il y a une version plus récente disponible"
2471
 
2472
+ #: admin/cerber-dashboard.php:1076
2473
  msgid "New users"
2474
  msgstr "Nouvel utilisateur"
2475
 
2476
+ #: admin/cerber-dashboard.php:1096
2477
  msgid "My activity"
2478
  msgstr "Mon Activité"
2479
 
2480
+ #: admin/cerber-dashboard.php:2993
2481
  msgid "Create Alert"
2482
  msgstr "Créer une alerte"
2483
 
2484
+ #: admin/cerber-dashboard.php:2997
2485
  msgid "Delete Alert"
2486
  msgstr "Supprimer l'alerte"
2487
 
2488
+ #: admin/cerber-dashboard.php:3095
2489
  msgid "The alert has been created"
2490
  msgstr "L'alerte a été créée"
2491
 
2492
+ #: admin/cerber-dashboard.php:3104
2493
  msgid "The alert has been deleted"
2494
  msgstr "L’alerte a été supprimée"
2495
 
2496
+ #: admin/cerber-dashboard.php:4626
2497
  msgid "Advanced Search"
2498
  msgstr "Recherche avancée"
2499
 
2502
  msgid "Cerber Tech Inc."
2503
  msgstr "Cerber Tech Inc."
2504
 
2505
+ #: cerber-load.php:5743
2506
  msgid "To delete the alert, click here"
2507
  msgstr "Pour supprimer l'alerte, cliquez ici"
2508
 
2574
  msgid "Automatically recovered"
2575
  msgstr "Automatiquement récupéré"
2576
 
2577
+ #: admin/cerber-dashboard.php:70
2578
  msgid "Cerber User Security"
2579
  msgstr "Sécurité Utilisateur Cerber"
2580
 
2581
+ #: admin/cerber-dashboard.php:70 admin/cerber-dashboard.php:5389
2582
  msgid "User Policies"
2583
  msgstr "Stratégies Utilisateur"
2584
 
2585
+ #: admin/cerber-dashboard.php:2147
2586
  msgid "A new version is available"
2587
  msgstr "Une nouvelle version est disponible"
2588
 
2589
+ #: admin/cerber-dashboard.php:5392
2590
  msgid "Global"
2591
  msgstr "Global"
2592
 
2593
+ #: cerber-common.php:1769
2594
  msgid "Site policy enforcement"
2595
  msgstr "Mise en application de la politique du site"
2596
 
2597
+ #: cerber-common.php:1770
2598
  msgid "2FA code verified"
2599
  msgstr "Code 2FA vérifié"
2600
 
2601
+ #: cerber-common.php:1771
2602
  msgid "Initiated by the user"
2603
  msgstr "Initié par l'utilisateur"
2604
 
2605
+ #: cerber-common.php:2321
2606
  msgid "A new version of %s is available. Please install it."
2607
  msgstr "Une nouvelle version de %s est disponible. Veuillez l’installer s’il vous plaît."
2608
 
2609
+ #: cerber-load.php:1958
2610
  msgid "Email address is not permitted."
2611
  msgstr "L'adresse e-mail n'est pas permise."
2612
 
2613
+ #: cerber-load.php:1958
2614
  msgid "Please choose another one."
2615
  msgstr "Veuillez en choisir un autre."
2616
 
2762
  msgid "Try again"
2763
  msgstr "Réessayer"
2764
 
2765
+ #: cerber-2fa.php:661 admin/cerber-dashboard.php:5839
2766
  msgid "Cancel"
2767
  msgstr "Annuler"
2768
 
2782
  msgid "Two-Factor Authentication Email"
2783
  msgstr "E-mail d'authentification à deux facteurs"
2784
 
2785
+ #: admin/cerber-dashboard.php:3718
2786
  msgid "Role-based rules are configured"
2787
  msgstr "Les règles basées sur les rôles sont configurées"
2788
 
2795
  msgid "The code is valid for %s minutes."
2796
  msgstr "Le code est valide pour %s minutes."
2797
 
2798
+ #: admin/cerber-dashboard.php:372
2799
  msgid "IP address %s has been added to White IP Access List"
2800
  msgstr "L'adresse IP %s a été ajoutée à la liste blanche d'accès"
2801
 
2802
+ #: admin/cerber-dashboard.php:369
2803
  msgid "IP address %s has been added to Black IP Access List"
2804
  msgstr "L'adresse IP %s a été ajoutée à la liste noire d'accès"
2805
 
2806
+ #: admin/cerber-dashboard.php:211 admin/cerber-dashboard.php:947
2807
+ #: admin/cerber-dashboard.php:1327 admin/cerber-dashboard.php:4545
2808
+ #: admin/cerber-users.php:927
2809
  msgid "IP Address"
2810
  msgstr "Adresse IP"
2811
 
2812
+ #: admin/cerber-dashboard.php:954 admin/cerber-dashboard.php:1333
2813
  msgid "Username"
2814
  msgstr "Nom d'utilisateur"
2815
 
2816
+ #: admin/cerber-dashboard.php:3800
2817
  msgid "Any country is permitted"
2818
  msgstr "Tous les pays sont autorisés"
2819
 
2820
+ #: admin/cerber-dashboard.php:3405 admin/cerber-dashboard.php:5294
2821
  msgid "Sessions"
2822
  msgstr "Sessions"
2823
 
2824
+ #: cerber-load.php:1717
2825
  msgid "Session has been terminated"
2826
  msgid_plural "%s sessions have been terminated"
2827
  msgstr[0] "La session est terminée"
2828
  msgstr[1] "%s sessions sont terminées"
2829
 
2830
+ #: admin/cerber-users.php:925
2831
  msgid "Created"
2832
  msgstr "Créé"
2833
 
2834
+ #: admin/cerber-users.php:946
2835
  msgid "Terminate session"
2836
  msgstr "Session terminée"
2837
 
2838
+ #: admin/cerber-users.php:947
2839
  msgid "Block user"
2840
  msgstr "Bloquer l'utilisateur"
2841
 
2842
+ #: admin/cerber-users.php:1079
2843
  msgid "Profile"
2844
  msgstr "Profil"
2845
 
2846
+ #: admin/cerber-users.php:1092
2847
  msgid "All Logins"
2848
  msgstr "Toutes les connexions"
2849
 
2850
+ #: admin/cerber-users.php:1093
2851
  msgid "User Activity"
2852
  msgstr "Activité de l'utilisateur"
2853
 
2854
+ #: admin/cerber-users.php:1139
2855
  msgid "Terminate"
2856
  msgstr "Terminer"
2857
 
2858
+ #: admin/cerber-dashboard.php:2097
2859
  msgid "user"
2860
  msgid_plural "users"
2861
  msgstr[0] "utilisateur"
2869
  msgid "Unable to delete"
2870
  msgstr "Impossible de supprimer"
2871
 
2872
+ #: admin/cerber-dashboard.php:66
2873
  msgid "Cerber Data Shield Policies"
2874
  msgstr "Stratégies du Bouclier de données Cerber"
2875
 
2876
+ #: admin/cerber-dashboard.php:66
2877
  msgid "Data Shield"
2878
  msgstr "Bouclier de données"
2879
 
2880
+ #: admin/cerber-dashboard.php:5379
2881
  msgid "Data Shield Policies"
2882
  msgstr "Stratégies du Bouclier de données"
2883
 
2884
+ #: admin/cerber-dashboard.php:5381
2885
  msgid "Accounts & Roles"
2886
  msgstr "Comptes & Rôles"
2887
 
2888
+ #: admin/cerber-dashboard.php:5382
2889
  msgid "Site Settings"
2890
  msgstr "Paramètres du site"
2891
 
2892
+ #: cerber-common.php:1720
2893
  msgid "User creation denied"
2894
  msgstr "La création de l'utilisateur a été refusée"
2895
 
2896
+ #: cerber-common.php:1722
2897
  msgid "Role update denied"
2898
  msgstr "La mise à jour du rôle a été refusée"
2899
 
2900
+ #: cerber-common.php:1723
2901
  msgid "Setting update denied"
2902
  msgstr "La mise à jour des paramètres a été refusée"
2903
 
2904
+ #: cerber-common.php:1776
2905
  msgid "Permission denied"
2906
  msgstr "Permission refusée"
2907
 
2908
+ #: cerber-common.php:1778
2909
  msgid "Invalid user"
2910
  msgstr "Utilisateur Invalide"
2911
 
2912
+ #: cerber-common.php:1779
2913
  msgid "Incorrect password"
2914
  msgstr "Mot de passe incorrect"
2915
 
2989
  msgid "All countries"
2990
  msgstr "Tous les pays"
2991
 
2992
+ #: nexus/cerber-nexus-master.php:442
2993
  msgid "Show homepage in the Website column"
2994
  msgstr "Afficher la page d'accueil dans la colonne Site"
2995
 
2996
+ #: nexus/cerber-nexus-master.php:444
2997
  msgid "Hide server IP address"
2998
  msgstr "Cacher l'adresse IP du serveur"
2999
 
3000
+ #: admin/cerber-dashboard.php:341
3001
  msgid "IP address, range, wildcard, or CIDR"
3002
  msgstr "Adresse IP, intervalle, joker ou CIDR"
3003
 
3004
+ #: admin/cerber-dashboard.php:342
3005
  msgid "Add Entry"
3006
  msgstr "Nouvelle entrée"
3007
 
3008
+ #: admin/cerber-dashboard.php:5634
3009
  msgid "The IP address you are trying to add is already in the list"
3010
  msgstr "L'adresse IP que vous essayez ajouter est déjà dans la liste"
3011
 
3012
+ #: cerber-common.php:1674
3013
  msgid "IP subnet blocked"
3014
  msgstr "Sous-réseau IP bloqué"
3015
 
3016
+ #: cerber-common.php:1721
3017
  msgid "User row update denied"
3018
  msgstr "La mise à jour de la ligne utilisateur a été refusée"
3019
 
3020
+ #: cerber-common.php:1724
3021
  msgid "User metadata update denied"
3022
  msgstr "La mise a jour des métadonnées utilisateur a été refusée"
3023
 
3085
  msgid "Cookies"
3086
  msgstr "Cookies"
3087
 
3088
+ #: admin/cerber-dashboard.php:77
3089
  msgid "Cerber anti-spam settings"
3090
  msgstr "Réglages de l'antispam Cerber"
3091
 
3092
+ #: admin/cerber-dashboard.php:77
3093
  msgid "Anti-spam"
3094
  msgstr "Anti-spam"
3095
 
3096
+ #: cerber-addons.php:289 admin/cerber-dashboard.php:85
3097
+ #: admin/cerber-dashboard.php:85
3098
  msgid "Add-ons"
3099
  msgstr "Modules"
3100
 
3101
+ #: admin/cerber-dashboard.php:5343
3102
  msgid "Anti-spam and bot detection settings"
3103
  msgstr "Réglages de la détéction de bot et de l'antispam"
3104
 
3105
+ #: admin/cerber-dashboard.php:5345
3106
  msgid "Anti-spam engine"
3107
  msgstr "Moteur anti-spam"
3108
 
3109
+ #: cerber-common.php:1917
3110
  msgid "Multiple erroneous requests"
3111
  msgstr "Multiple requêtes erronées"
3112
 
3202
  msgid "Settings updated"
3203
  msgstr "Réglages mis à jour"
3204
 
3205
+ #: admin/cerber-dashboard.php:1418
3206
  msgid "Request ID"
3207
  msgstr "ID de requête"
3208
 
3209
+ #: admin/cerber-dashboard.php:1419
3210
  msgid "Search in URL"
3211
  msgstr "Rechercher dans l’URL"
3212
 
3218
  msgid "All files"
3219
  msgstr "Tous les fichiers"
3220
 
3221
+ #: admin/cerber-dashboard.php:1926
3222
  msgid "Active sessions"
3223
  msgstr "Sessions actives"
3224
 
3230
  msgid "Load entries"
3231
  msgstr "Charger les entrées"
3232
 
3233
+ #: admin/cerber-dashboard.php:1097 admin/cerber-dashboard.php:4618
3234
  msgid "My IP"
3235
  msgstr "Mon IP"
3236
 
3237
+ #: admin/cerber-dashboard.php:5432
3238
  msgid "Analytics"
3239
  msgstr "Statistiques"
3240
 
3241
+ #: admin/cerber-dashboard.php:5481
3242
  msgid "Manage Settings"
3243
  msgstr "Gérer les paramètres"
3244
 
3245
  #: cerber-settings.php:1047 cerber-settings.php:1445 cerber-settings.php:1473
3246
+ #: admin/cerber-dashboard.php:5483
3247
  msgid "Diagnostic Log"
3248
  msgstr "Journal de diagnostic"
3249
 
3250
+ #: cerber-common.php:1665
3251
  msgid "User deleted"
3252
  msgstr "Utilisateur supprimé"
3253
 
3254
+ #: cerber-common.php:1774
3255
  msgid "Email address is prohibited"
3256
  msgstr "L’adresse e-mail est interdite."
3257
 
3359
  msgid "To get the most out of WP Cerber, follow these steps:"
3360
  msgstr "Pour tirer parti de WP Cerber, suivez les étapes suivantes :"
3361
 
3362
+ #: cerber-common.php:1789
3363
  msgid "IP whitelisted"
3364
  msgstr "IP mise en liste blanche"
3365
 
3366
+ #: admin/cerber-dashboard.php:4617
3367
  msgid "My requests"
3368
  msgstr "Mes requêtes"
3369
 
3370
+ #: admin/cerber-dashboard.php:3910
3371
  msgid "Log into the website"
3372
  msgstr "Se connecter sur le site"
3373
 
3376
  msgid "WP Cerber Security, Anti-spam & Malware Scan"
3377
  msgstr "WP Cerber Security, Antispam & Malware Scan"
3378
 
3379
+ #: cerber-common.php:1713 cerber-common.php:1913
3380
  msgid "Probing for vulnerable code"
3381
  msgstr "Recherche de code PHP vulnérable"
3382
 
3383
+ #: cerber-load.php:5967
3384
  msgid "Your IP address %s has been added to the White IP Access List"
3385
  msgstr "Votre adresse IP %s a été ajoutée à la liste blanche d'accès"
3386
 
3387
+ #: admin/cerber-users.php:974
3388
  msgid "Search for IP address"
3389
  msgstr "Rechercher l’adresse IP"
3390
 
3412
  msgid "Specify User-Agents to exclude requests from logging. One item per line."
3413
  msgstr "Spécifier les User-Agents pour lesquels il ne faut pas consigner les requêtes. Un élément par ligne."
3414
 
3415
+ #: admin/cerber-dashboard.php:4739
3416
  msgid "Unknown Google's bot"
3417
  msgstr "Robot Google inconnu"
3418
 
3419
+ #: cerber-common.php:1780
3420
  msgid "IP address is not allowed"
3421
  msgstr "L'adresse IP n'est pas autorisée"
3422
 
3453
  msgid "Defer rendering the custom login page"
3454
  msgstr "Différer le rendu de la page de connexion personnalisée"
3455
 
3456
+ #: cerber-load.php:414
3457
  msgid "You have only one login attempt remaining."
3458
  msgstr "Il ne vous reste plus qu’une seule tentative de connexion."
3459
 
3481
  msgid "If the number of concurrent user sessions is greater"
3482
  msgstr "Si le nombre de sessions utilisateur concurrents est supérieur"
3483
 
3484
+ #: admin/cerber-dashboard.php:5769
3485
  msgid "These features are available in the professional version of WP Cerber."
3486
  msgstr "Ces fonctionnalités sont disponibles dans la version professionnelle de WP Cerber."
3487
 
3488
+ #: cerber-common.php:1694
3489
  msgid "User session terminated"
3490
  msgstr "Session utilisateur terminée"
3491
 
3492
+ #: cerber-common.php:1781
3493
  msgid "Limit on concurrent user sessions"
3494
  msgstr "Limiter les sessions utilisateur concurrentes"
3495
 
3513
  msgid "To avoid false positives and get better anti-spam performance, please clear the plugin cache."
3514
  msgstr "Pour éviter les faux-positifs et obtenir de meilleures performances pour l'anti-spam, veuillez effacer le cache de l'extension."
3515
 
3516
+ #: cerber-common.php:1733
3517
  msgid "API request authorized"
3518
  msgstr "Requête API autorisée"
3519
 
3520
+ #: cerber-common.php:1734
3521
  msgid "API request authorization failed"
3522
  msgstr "Échec de l'autorisation de la demande d'API"
3523
 
3524
+ #: cerber-common.php:1718
3525
  msgid "Request to XML-RPC API denied"
3526
  msgstr "Requête au serveur XML-RPC refusée"
3527
 
3528
+ #: cerber-common.php:1782
3529
  msgid "Invalid cookies"
3530
  msgstr "Cookies invalides"
3531
 
3558
  msgstr "Utiliser une URL personnalisée pour le formulaire de commentaire WordPress"
3559
 
3560
  #: cerber-settings.php:461 cerber-settings.php:1295
3561
+ #: admin/cerber-dashboard.php:2097
3562
  msgid "Logged-in users"
3563
  msgstr "Utilisateurs connectés"
3564
 
3618
  msgid "Use global policies"
3619
  msgstr "Utiliser les stratégies globales"
3620
 
3621
+ #: cerber-load.php:417
3622
  msgid "You have %d login attempt remaining."
3623
  msgid_plural "You have %d login attempts remaining."
3624
  msgstr[0] "Il vous reste %d tentative de connexion."
3628
  msgid "Display this message if an attempt to log in is denied because the limit on concurrent user sessions has been reached"
3629
  msgstr "Afficher ce message si un essai de connexion est refusé car la limite de sessions utilisateur concurrentes a été atteinte"
3630
 
3631
+ #: admin/cerber-dashboard.php:5391
3632
  msgid "Role-Based"
3633
  msgstr "Basé sur le Rôle"
3634
 
3635
+ #: cerber-common.php:1730
3636
  msgid "User application password created"
3637
  msgstr "Mot de passe de l'application utilisateur créé"
3638
 
3648
  msgid "Save response cookies"
3649
  msgstr "Sauver les cookies de réponse"
3650
 
3651
+ #: cerber-load.php:8041
3652
  msgid "We need your support to keep moving forward"
3653
  msgstr "Nous avons besoin de votre soutien pour continuer à avancer"
3654
 
3655
+ #: cerber-load.php:8043
3656
  msgid "By sharing your unique opinion on WP Cerber, you help the engineers behind the plugin make greater progress and help other professionals find the right software. You can leave your review on one of the following websites. Feel free to use your native language. Thanks!"
3657
  msgstr "En partageant votre opinion unique sur WP Cerber, vous aidez les ingénieurs derrière le plugin à progresser davantage et vous aidez les autres professionnels à trouver le bon logiciel. Vous pouvez laisser votre avis sur l'un des sites web suivants. N'hésitez pas à utiliser votre langue maternelle. Merci !"
3658
 
3659
+ #: nexus/cerber-nexus-master.php:661
3660
  msgid "Secret Access Token is invalid"
3661
  msgstr "Le jeton d'accès secret n'est pas valable"
3662
 
3663
+ #: admin/cerber-dashboard.php:225
3664
  msgid "Click the IP address to see its activity"
3665
  msgstr "Cliquez sur l'adresse IP pour voir son activité"
3666
 
3667
+ #: admin/cerber-dashboard.php:1077
3668
  msgid "Login issues"
3669
  msgstr "Problèmes d'accès"
3670
 
3671
+ #: admin/cerber-dashboard.php:1094 admin/cerber-dashboard.php:4612
3672
  msgid "Non-authenticated"
3673
  msgstr "Non-authentifié"
3674
 
3675
+ #: admin/cerber-dashboard.php:1379 admin/cerber-dashboard.php:1826
3676
+ #: admin/cerber-dashboard.php:2681 admin/cerber-admin.php:1333
3677
  msgid "No activity has been logged yet."
3678
  msgstr "Aucune activité n'a encore été enregistrée."
3679
 
3680
+ #: admin/cerber-dashboard.php:2701
3681
  msgid "Users' Activity"
3682
  msgstr "Activité des Utilisateurs"
3683
 
3684
+ #: admin/cerber-dashboard.php:2721
3685
  msgid "Malicious Activity"
3686
  msgstr "Activités Malveillantes"
3687
 
3688
+ #: admin/cerber-dashboard.php:4609
3689
  msgid "Suspicious requests"
3690
  msgstr "Requêtes suspectes"
3691
 
3692
+ #: admin/cerber-dashboard.php:1093 admin/cerber-dashboard.php:4611
3693
  msgid "Users"
3694
  msgstr "Utilisateurs"
3695
 
3696
+ #: cerber-common.php:1784
3697
  msgid "Forbidden URL"
3698
  msgstr "URL interdite"
3699
 
3757
  msgid "Deny authentication through wp-login.php"
3758
  msgstr "Refuser l'authentification via wp-login.php"
3759
 
3760
+ #: cerber-common.php:1783
3761
  msgid "Invalid cookies cleared"
3762
  msgstr "Cookies invalides supprimés"
3763
 
3764
+ #: cerber-load.php:1862
3765
  msgid "If we have found your account, we have sent the confirmation link to the email address on the account."
3766
  msgstr "Si nous avons trouvé votre compte, nous avons envoyé le lien de confirmation à l’adresse e-mail figurant sur le compte."
3767
 
3768
+ #: cerber-load.php:5925 cerber-common.php:525
3769
  msgid "WP Cerber requires PHP %s or higher. You are running %s."
3770
  msgstr "WP Cerber nécessite PHP %s ou supérieur. Vous avez actuellement %s."
3771
 
3772
+ #: cerber-load.php:5929 cerber-common.php:529
3773
  msgid "WP Cerber requires WordPress %s or higher. You are running %s."
3774
  msgstr "WP Cerber nécessite WordPress %s ou supérieur. Vous avez actuellement %s."
3775
 
3849
  msgid "Detecting injected files in the WordPress uploads directory"
3850
  msgstr "Détection des fichiers injectés dans le répertoire des téléversements de WordPress"
3851
 
3852
+ #: cerber-common.php:1785
3853
  msgid "Executable file extension detected"
3854
  msgstr "Extension de fichier exécutable détecté"
3855
 
3856
+ #: cerber-common.php:1786
3857
  msgid "Filename is prohibited"
3858
  msgstr "Le nom de fichier est interdit"
3859
 
3933
  msgid "These policies are automatically enforced at the end of every scan based on its results. All affected files are moved to the quarantine."
3934
  msgstr "Ces politiques sont automatiquement appliquées à la fin de chaque analyse en fonction de ses résultats. Tous les fichiers affectés sont mis en quarantaine."
3935
 
3936
+ #: admin/cerber-dashboard.php:3339
3937
  msgid "This scan report was generated by the previous version of WP Cerber. Please run a new scan to get consistent and accurate results."
3938
  msgstr "Ce rapport de scan a été généré par la version précédente de WP Cerber. Veuillez exécuter un nouveau scan pour obtenir des résultats cohérents et précis."
3939
 
3963
  msgid "Medium"
3964
  msgstr "Moyen"
3965
 
3966
+ #: cerber-load.php:4690
3967
  msgid "If you believe you should be able to perform this request, please let us know."
3968
  msgstr "Si vous pensez que vous devriez être autorisé à effectuer cette requête, veuillez nous le faire savoir."
3969
 
3970
+ #: cerber-load.php:4689
3971
  msgid "Your request looks suspiciously similar to automated requests from spam posting software or it has been denied by a security policy configured by the website administrator."
3972
  msgstr "Votre requête semble suspicieusement similaire à des requêtes automatisées de logiciel d’envoi de message indésirable ou elle a été refusée par la politique de sécurité configurée par l’administrateur/administratrice du site."
3973
 
3983
  msgid "Executable files are not supported. Please upload a ZIP archive."
3984
  msgstr "Les fichiers exécutables ne sont pas pris en charge. Veuillez téléverser une archive ZIP."
3985
 
3986
+ #: cerber-load.php:775
3987
  msgid "Human verification failed."
3988
  msgstr "Vérification humaine échouée."
3989
 
3990
+ #: cerber-common.php:1800
3991
  msgid "Logged out everywhere"
3992
  msgstr "Déconnecté partout"
3993
 
3994
+ #: cerber-common.php:1698
3995
  msgid "Password reset request denied"
3996
  msgstr "Demande de réinitialisation du mot de passe refusée"
3997
 
3998
+ #: cerber-common.php:1802
3999
  msgid "reCAPTCHA verified"
4000
  msgstr "reCAPTCHA vérifié"
4001
 
4002
+ #: cerber-load.php:3359
4003
  msgid "Sorry, password reset is not allowed for this user."
4004
  msgstr "Désolé, la réinitialisation du mot de passe n'est pas autorisée pour cet utilisateur."
4005
 
4011
  msgid "Use less restrictive security filters for IP addresses in the White IP Access List"
4012
  msgstr "Utiliser des filtres de sécurité moins restrictifs pour les adresses IP de la liste d'accès IP blanche"
4013
 
4014
+ #: cerber-common.php:1729
4015
  msgid "User application password updated"
4016
  msgstr "Mot de passe application utilisateur mis à jour"
4017
 
4018
+ #: cerber-common.php:1772
4019
  msgid "User blocked by administrator"
4020
  msgstr "Utilisateur bloqué par l'administrateur"
4021
 
4022
  #. %s is the name of a website administrator who terminated the session.
4023
+ #: cerber-common.php:1696
4024
  msgid "User session terminated by %s"
4025
  msgstr "Session utilisateur terminée par %s"
4026
 
4027
+ #: cerber-common.php:1773
4028
  msgid "Username is prohibited"
4029
  msgstr "Nom d'utilisateur interdit"
4030
 
4036
  msgid "View denied REST API requests"
4037
  msgstr "Voir les requêtes API REST refusée"
4038
 
4039
+ #: cerber-load.php:4908 cerber-load.php:4909
4040
  msgid "A new activity has occurred"
4041
  msgstr "Une nouvelle activité a eu lieu"
4042
 
4043
+ #: admin/cerber-dashboard.php:3019
4044
  msgid "Do not send alerts after this date"
4045
  msgstr "Ne pas envoyer d'alertes après cette date"
4046
 
4047
+ #: admin/cerber-dashboard.php:3059 admin/cerber-dashboard.php:4589
4048
  msgid "Documentation"
4049
  msgstr "Documentation"
4050
 
4051
+ #: admin/cerber-dashboard.php:3046
4052
  msgid "Email alerts will be sent to these emails:"
4053
  msgstr "Les alertes e-mail seront envoyées à ces adresses :"
4054
 
4055
+ #: admin/cerber-dashboard.php:3046
4056
  msgid "Email alerts will be sent to this email:"
4057
  msgstr "Les alertes e-mail seront envoyées à cette adresse :"
4058
 
4059
+ #: admin/cerber-dashboard.php:3024
4060
  msgid "Ignore global rate limits"
4061
  msgstr "Ignorer les limites de taux globales"
4062
 
4063
+ #: admin/cerber-dashboard.php:3010
4064
  msgid "Maximum number of alerts to send"
4065
  msgstr "Nombre maximal d'alertes à envoyer"
4066
 
4067
+ #: admin/cerber-dashboard.php:3054
4068
  msgid "Mobile alerts are not configured"
4069
  msgstr "Les alertes mobiles ne sont pas configurées"
4070
 
4071
  #. %s is the name of a mobile device.
4072
+ #: admin/cerber-dashboard.php:3051
4073
  msgid "Mobile alerts will be sent to %s"
4074
  msgstr "Les alertes mobiles seront envoyées à %s"
4075
 
4076
+ #: admin/cerber-dashboard.php:3015
4077
  msgid "No limit"
4078
  msgstr "Aucune limite"
4079
 
4080
+ #: admin/cerber-dashboard.php:5838
4081
  msgid "OK"
4082
  msgstr "OK"
4083
 
4084
+ #: admin/cerber-dashboard.php:3061
4085
  msgid "Optional alert limits"
4086
  msgstr "Limites d'alerte facultatives"
4087
 
4088
  #. %s is the name of a website administrator who changed the password.
4089
+ #: cerber-common.php:1692
4090
  msgid "Password changed by %s"
4091
  msgstr "Mot de passe modifié par %s"
4092
 
4094
  msgid "Spam protection for registration, comment, and other forms on the website"
4095
  msgstr "Protection anti-spam pour les formulaires d'inscription, de commentaires et autres du site Web."
4096
 
4097
+ #: cerber-common.php:1816
4098
  msgid "Unknown label"
4099
  msgstr "Étiquette inconnue"
4100
 
4101
  #. %s is the name of a website administrator who created the password.
4102
+ #: cerber-common.php:1732
4103
  msgid "User application password created by %s"
4104
  msgstr "Mot de passe de l'application utilisateur créé par %s"
4105
 
4106
+ #: cerber-common.php:1735
4107
  msgid "User application password deleted"
4108
  msgstr "Mot de passe de l'application utilisateur supprimé"
4109
 
4110
  #. %s is the name of a website administrator who deleted the password.
4111
+ #: cerber-common.php:1737
4112
  msgid "User application password deleted by %s"
4113
  msgstr "Mot de passe de l'application utilisateur supprimé par %s"
4114
 
4115
  #. %s is the name of a website administrator who created the user.
4116
+ #: cerber-common.php:1663
4117
  msgid "User created by %s"
4118
  msgstr "Utilisateur créé par %s"
4119
 
4120
  #. %s is the name of a website administrator who deleted the user.
4121
+ #: cerber-common.php:1667
4122
  msgid "User deleted by %s"
4123
  msgstr "Utilisateur supprimé par %s"
4124
 
4130
  msgid "View reCAPTCHA events"
4131
  msgstr "Afficher événements reCAPTCHA"
4132
 
4133
+ #: admin/cerber-dashboard.php:1400
4134
+ msgid "Check for requests from the IP address"
4135
+ msgstr ""
4136
+
4137
+ #: admin/cerber-dashboard.php:1387
4138
+ msgid "Get me notified when such an event occurs"
4139
+ msgstr ""
4140
+
4141
+ #: admin/cerber-dashboard.php:1382
4142
+ msgid "No events found using the given search criteria"
4143
+ msgstr ""
4144
+
4145
+ #: admin/cerber-dashboard.php:4580
4146
+ msgid "No requests found using the given search criteria"
4147
+ msgstr ""
4148
+
4149
+ #: admin/cerber-dashboard.php:4577
4150
+ msgid "No requests have been logged yet."
4151
+ msgstr ""
4152
+
4153
+ #: admin/cerber-dashboard.php:4587
4154
+ msgid "Note: Logging is currently disabled"
4155
+ msgstr ""
4156
+
4157
+ #: cerber-settings.php:694
4158
+ msgid "Sort users in the Dashboard"
4159
+ msgstr ""
4160
+
4161
+ #: cerber-load.php:4827 cerber-load.php:5742
4162
+ msgid "View activity in the Dashboard"
4163
+ msgstr ""
4164
+
4165
+ #: admin/cerber-dashboard.php:1392
4166
+ msgid "View all logged events"
4167
+ msgstr ""
4168
+
4169
+ #: admin/cerber-dashboard.php:4582
4170
+ msgid "View all logged requests"
4171
+ msgstr ""
4172
+
4173
+ #: cerber-load.php:4865
4174
+ msgid "View lockouts in the Dashboard"
4175
+ msgstr ""
4176
+
4177
+ #: cerber-settings.php:188 cerber-settings.php:189
4178
+ msgid "View violations in the log"
4179
+ msgstr ""
4180
+
4181
+ #: admin/cerber-dashboard.php:1385
4182
+ msgid "You will be notified when such an event occurs"
4183
+ msgstr ""
4184
+
languages/wp-cerber-it_IT.mo CHANGED
Binary file
languages/wp-cerber-it_IT.po CHANGED
@@ -44,7 +44,7 @@ msgstr "Pagina di login personalizzata"
44
  msgid "Custom login URL"
45
  msgstr "URL di accesso personalizzato"
46
 
47
- #: cerber-settings.php:289 admin/cerber-dashboard.php:2064
48
  msgid "Citadel mode"
49
  msgstr "Modalità Citadel"
50
 
@@ -56,7 +56,7 @@ msgstr "Soglia"
56
  msgid "Duration"
57
  msgstr "Durata"
58
 
59
- #: cerber-settings.php:310 admin/cerber-dashboard.php:5199
60
  msgid "Notifications"
61
  msgstr "Notifiche"
62
 
@@ -64,125 +64,125 @@ msgstr "Notifiche"
64
  msgid "Send notification to admin email"
65
  msgstr "Invia notifica all'email dell'amministratore"
66
 
67
- #: admin/cerber-dashboard.php:5196 admin/cerber-tools.php:38
68
  #: admin/cerber-tools.php:49
69
  msgid "Access Lists"
70
  msgstr "Liste di accesso"
71
 
72
- #: cerber-load.php:5674 cerber-settings.php:322
73
- #: admin/cerber-dashboard.php:2105 admin/cerber-dashboard.php:5192
74
- #: admin/cerber-users.php:1114
75
  msgid "Activity"
76
  msgstr "Attività"
77
 
78
- #: admin/cerber-dashboard.php:5194
79
  msgid "Lockouts"
80
  msgstr "Bloccati"
81
 
82
- #: cerber-load.php:5683
83
  msgid "IP"
84
  msgstr "IP"
85
 
86
- #: admin/cerber-dashboard.php:950 admin/cerber-dashboard.php:1328
87
- #: admin/cerber-dashboard.php:3980 admin/cerber-dashboard.php:4462
88
  msgid "Date"
89
  msgstr "Data"
90
 
91
- #: admin/cerber-dashboard.php:953 admin/cerber-dashboard.php:1330
92
- #: admin/cerber-dashboard.php:4467
93
  msgid "Local User"
94
  msgstr "Utente locale"
95
 
96
- #: cerber-load.php:5691
97
  msgid "Username used"
98
  msgstr "Nome utente utilizzato"
99
 
100
- #: cerber-common.php:1663
101
  msgid "Logged in"
102
  msgstr "Loggato"
103
 
104
- #: cerber-common.php:1664
105
  msgid "Logged out"
106
  msgstr "Disconnesso"
107
 
108
- #: cerber-common.php:1665
109
  msgid "Login failed"
110
  msgstr "Accesso fallito"
111
 
112
- #: cerber-common.php:1668 admin/cerber-dashboard.php:1094
113
  msgid "IP blocked"
114
  msgstr "IP Bloccato"
115
 
116
- #: cerber-common.php:1672
117
  msgid "Citadel activated!"
118
  msgstr "Citadel attivata!"
119
 
120
- #: cerber-common.php:1748 admin/cerber-dashboard.php:1667
121
  msgid "Locked out"
122
  msgstr "Bloccato"
123
 
124
- #: cerber-common.php:1750
125
  msgid "IP blacklisted"
126
  msgstr "IP blacklisted"
127
 
128
- #: cerber-common.php:1685
129
  msgid "Password changed"
130
  msgstr "Password cambiata"
131
 
132
- #: admin/cerber-dashboard.php:206 admin/cerber-dashboard.php:331
133
  msgid "Remove"
134
  msgstr "Rimuovi"
135
 
136
- #: admin/cerber-dashboard.php:665
137
  msgid "Lockout for %s was removed"
138
  msgstr "Il blocco per %s è stato rimosso"
139
 
140
- #: admin/cerber-dashboard.php:277 admin/cerber-dashboard.php:1574
141
- #: admin/cerber-dashboard.php:1658 admin/cerber-dashboard.php:2062
142
  #: admin/cerber-tools.php:69
143
  msgid "White IP Access List"
144
  msgstr "White List degli indirizzi IP"
145
 
146
- #: admin/cerber-dashboard.php:280 admin/cerber-dashboard.php:1577
147
- #: admin/cerber-dashboard.php:1661 admin/cerber-dashboard.php:2063
148
  #: admin/cerber-tools.php:70
149
  msgid "Black IP Access List"
150
  msgstr "Black List degli indirizzi IP"
151
 
152
- #: admin/cerber-dashboard.php:337
153
  msgid "List is empty"
154
  msgstr "La lista è vuota"
155
 
156
- #: cerber-load.php:4805
157
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
158
  msgstr "La modalità Citadel viene attivata dopo %d tentativi di accesso non riusciti in %d minuti."
159
 
160
- #: admin/cerber-dashboard.php:2830 admin/cerber-dashboard.php:3341
161
  msgid "View Activity"
162
  msgstr "Vedi attività"
163
 
164
- #: nexus/cerber-nexus.php:95 admin/cerber-dashboard.php:5265
165
- #: admin/cerber-dashboard.php:5326 admin/cerber-tools.php:37
166
  #: admin/cerber-tools.php:48
167
  msgid "Settings"
168
  msgstr "Impostazioni"
169
 
170
- #: admin/cerber-dashboard.php:1931
171
  msgid "Last login"
172
  msgstr "Ultimo login"
173
 
174
- #: cerber-common.php:2077 nexus/cerber-slave-list.php:347
175
- #: admin/cerber-dashboard.php:478 admin/cerber-dashboard.php:2036
176
- #: admin/cerber-dashboard.php:2085
177
  msgid "Never"
178
  msgstr "Mai"
179
 
180
- #: admin/cerber-dashboard.php:5683 admin/cerber-tools.php:59
181
  #: admin/cerber-admin.php:738 admin/cerber-admin.php:905
182
  msgid "Are you sure?"
183
  msgstr "Sei sicuro?"
184
 
185
- #: cerber-settings.php:268 admin/cerber-dashboard.php:2469
186
  msgid "My site is behind a reverse proxy"
187
  msgstr "l mio sito è dietro un proxy inverso"
188
 
@@ -194,11 +194,11 @@ msgstr "Rendi la tua protezione più intelligente!"
194
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
195
  msgstr "Per favore abilita Permalinks per utilizzare questa funzionalità. Configura le Impostazioni del Permalink diversamente dal Predefinito."
196
 
197
- #: admin/cerber-dashboard.php:5195
198
  msgid "Main Settings"
199
  msgstr "Impostazioni Principali"
200
 
201
- #: admin/cerber-dashboard.php:5480
202
  msgid "Help"
203
  msgstr "Aiuto"
204
 
@@ -206,27 +206,27 @@ msgstr "Aiuto"
206
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
207
  msgstr "Aumenta la durata del blocco a %s ore dopo %s blocchi nelle ultime %s ore"
208
 
209
- #: cerber-load.php:369 admin/cerber-users.php:463
210
  msgid "You are not allowed to log in. Ask your administrator for assistance."
211
  msgstr "Non è consentito l'accesso. Chiedere assistenza all'amministratore."
212
 
213
- #: admin/cerber-dashboard.php:216 admin/cerber-users.php:925
214
  msgid "Expires"
215
  msgstr "Scade"
216
 
217
- #: admin/cerber-dashboard.php:244 admin/cerber-dashboard.php:2702
218
  msgid "No lockouts at the moment. The sky is clear."
219
  msgstr "Nessun blocco al momento. Il cielo è limpido."
220
 
221
- #: admin/cerber-dashboard.php:287
222
  msgid "Your IP"
223
  msgstr "Il tuo IP"
224
 
225
- #: cerber-load.php:4806
226
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
227
  msgstr "L'ultimo tentativo non riuscito è stato a %s dall'IP %s con accesso utente: %s."
228
 
229
- #: cerber-load.php:6015
230
  msgid "Can't activate WP Cerber due to a database error."
231
  msgstr "Non è possibile attivare WP Cerber a causa di un errore nel database."
232
 
@@ -239,7 +239,7 @@ msgstr "Notifica all'amministratore se il numero di blocchi attivi supera"
239
  msgid "days"
240
  msgstr "giorni"
241
 
242
- #: admin/cerber-dashboard.php:2002
243
  msgid "Cerber Quick View"
244
  msgstr "Cerber Quick View"
245
 
@@ -255,27 +255,19 @@ msgstr "Clicca per inviare il test"
255
  msgid "Attention! You have changed the login URL! The new login URL is"
256
  msgstr "Attenzione! Hai cambiato l'URL di accesso! Il nuovo URL di accesso è"
257
 
258
- #: admin/cerber-dashboard.php:1930
259
  msgid "Comments"
260
  msgstr "Commenti"
261
 
262
- #: cerber-load.php:4807 cerber-load.php:5720
263
- msgid "View activity in dashboard"
264
- msgstr "Vedi attività nel pannello"
265
-
266
- #: cerber-load.php:4836
267
  msgid "Number of active lockouts"
268
  msgstr "Numero di blocchi attivi"
269
 
270
- #: cerber-load.php:4840
271
- msgid "View lockouts in dashboard"
272
- msgstr "Vedi blocchi nel pannello"
273
-
274
- #: cerber-load.php:4934
275
  msgid "This message was sent by"
276
  msgstr "Questo messaggio è stato inviato da"
277
 
278
- #: admin/cerber-dashboard.php:90 admin/cerber-dashboard.php:5377
279
  msgid "Tools"
280
  msgstr "Strumenti"
281
 
@@ -327,56 +319,56 @@ msgstr "Le impostazioni sono state importate con successo da"
327
  msgid "Error while parsing file"
328
  msgstr "Errore nell'interpretazione del file "
329
 
330
- #: admin/cerber-dashboard.php:214 admin/cerber-dashboard.php:1326
331
  msgid "Hostname"
332
  msgstr "Nome Host"
333
 
334
- #: admin/cerber-dashboard.php:599
335
  msgid "unknown"
336
  msgstr "sconosciuto"
337
 
338
- #: admin/cerber-dashboard.php:2041 admin/cerber-dashboard.php:2071
339
  msgid "active"
340
  msgstr "attiva"
341
 
342
- #: admin/cerber-dashboard.php:2041
343
  msgid "deactivate"
344
  msgstr "disattiva"
345
 
346
- #: admin/cerber-dashboard.php:2045
347
  msgid "not active"
348
  msgstr "Non Attivo"
349
 
350
- #: admin/cerber-dashboard.php:2048 admin/cerber-dashboard.php:2066
351
  msgid "disabled"
352
  msgstr "Disabilitato"
353
 
354
- #: admin/cerber-dashboard.php:2054
355
  msgid "failed attempts"
356
  msgstr "Tentativi falliti"
357
 
358
- #: admin/cerber-dashboard.php:2054 admin/cerber-dashboard.php:2055
359
  msgid "in 24 hours"
360
  msgstr "in 24 ore"
361
 
362
- #: admin/cerber-dashboard.php:2054 admin/cerber-dashboard.php:2055
363
  msgid "view all"
364
  msgstr "guarda tutto"
365
 
366
- #: admin/cerber-dashboard.php:2055
367
  msgid "lockouts"
368
  msgstr "Bloccati"
369
 
370
- #: admin/cerber-dashboard.php:2057
371
  msgid "Lockouts at the moment"
372
  msgstr "Bloccati al momento"
373
 
374
- #: admin/cerber-dashboard.php:2058
375
  msgid "Last lockout"
376
  msgstr "Ultimo bloccato"
377
 
378
- #: admin/cerber-dashboard.php:2062 admin/cerber-dashboard.php:2063
379
- #: admin/cerber-dashboard.php:3100
380
  msgid "entry"
381
  msgid_plural "entries"
382
  msgstr[0] "accesso"
@@ -390,15 +382,15 @@ msgstr "Caricare le impostazioni di default"
390
  msgid "New version is available"
391
  msgstr "Nuova versione disponibile"
392
 
393
- #: cerber-load.php:4779
394
  msgid "WP Cerber notify"
395
  msgstr "Notifica di WP Cerber"
396
 
397
- #: cerber-load.php:4803
398
  msgid "Citadel mode is activated"
399
  msgstr "Citadel mode attivata"
400
 
401
- #: cerber-load.php:4879
402
  msgid "New Custom login URL"
403
  msgstr "Nuovo URL di accesso personalizzato"
404
 
@@ -410,35 +402,35 @@ msgstr "Usa file"
410
  msgid "Write failed login attempts to the file"
411
  msgstr "Scrivi i tentativi di accesso non riusciti nel file"
412
 
413
- #: admin/cerber-dashboard.php:2829
414
  msgid "Deactivate"
415
  msgstr "Disattivato"
416
 
417
- #: cerber-load.php:4838 admin/cerber-dashboard.php:217
418
  msgid "Reason"
419
  msgstr "Ragione"
420
 
421
- #: admin/cerber-dashboard.php:1725
422
  msgid "Add IP to the Black List"
423
  msgstr "Aggiungi IP alla Black List"
424
 
425
- #: cerber-common.php:1900
426
  msgid "Attempt to access"
427
  msgstr "Tentativi di accesso"
428
 
429
- #: cerber-common.php:1899
430
  msgid "Limit on login attempts is reached"
431
  msgstr "È stato raggiunto il limite dei tentativi di accesso"
432
 
433
- #: cerber-load.php:4837
434
  msgid "Last lockout was added: %s for IP %s"
435
  msgstr "L'ultimo blocco è stato aggiunto: %s per IP %s"
436
 
437
- #: admin/cerber-dashboard.php:5197
438
  msgid "Hardening"
439
  msgstr "Rendi sicuro"
440
 
441
- #: admin/cerber-dashboard.php:1697
442
  msgid "Abuse email:"
443
  msgstr "Email di abuso:"
444
 
@@ -474,108 +466,108 @@ msgstr "Blocca accesso agli RSS, Atom e RDF feeds"
474
  msgid "Disable REST API"
475
  msgstr "Disabilita REST API"
476
 
477
- #: cerber-load.php:4868 cerber-load.php:6057
478
  msgid "WP Cerber is now active and has started protecting your site"
479
  msgstr "WP Cerber è attivo e ha iniziato a proteggere il tuo sito"
480
 
481
- #: admin/cerber-dashboard.php:218 admin/cerber-users.php:928
482
  #: admin/cerber-admin.php:774 admin/cerber-admin.php:929
483
  msgid "Action"
484
  msgstr "Azione"
485
 
486
- #: admin/cerber-dashboard.php:5529
487
  msgid "Incorrect IP address or IP range"
488
  msgstr "Indirizzo IP o Range IP non corretto "
489
 
490
- #: admin/cerber-dashboard.php:2845
491
  msgid "Settings saved"
492
  msgstr "Impostazioni salvate"
493
 
494
- #: admin/cerber-dashboard.php:1703
495
  msgid "Network:"
496
  msgstr "Rete"
497
 
498
- #: admin/cerber-dashboard.php:1719
499
  msgid "Add network to the Black List"
500
  msgstr "Aggiungi rete alla Black List"
501
 
502
- #: admin/cerber-dashboard.php:2828
503
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
504
  msgstr "Attenzione! La modalità Citadel è attiva. Nessuno è in grado di effettuare il login."
505
 
506
- #: cerber-whois.php:241 cerber-whois.php:272 cerber-common.php:1924
507
- #: nexus/cerber-slave-list.php:333 admin/cerber-dashboard.php:459
508
- #: admin/cerber-dashboard.php:4133 admin/cerber-dashboard.php:4699
509
  msgid "Unknown"
510
  msgstr "Sconosciuto"
511
 
512
- #: cerber-load.php:724 cerber-load.php:737 cerber-load.php:745
513
- #: cerber-load.php:1093 cerber-load.php:1954 cerber-load.php:2277
514
- #: cerber-load.php:3388 cerber-common.php:451 cerber-common.php:550
515
- #: cerber-common.php:555 cerber-common.php:561 cerber-common.php:565
516
  #: nexus/cerber-nexus-slave.php:203 nexus/cerber-nexus-slave.php:214
517
  #: admin/cerber-admin-settings.php:667 admin/cerber-admin-settings.php:687
518
  #: admin/cerber-admin-settings.php:794 admin/cerber-admin.php:875
519
  msgid "ERROR:"
520
  msgstr "ERRORE:"
521
 
522
- #: cerber-load.php:759
523
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
524
  msgstr "Verifica fallita. Fai clic sulla casella quadrata nel blocco reCAPTCHA di seguito."
525
 
526
- #: cerber-load.php:1934
527
  msgid "Username is not allowed. Please choose another one."
528
  msgstr "Non è consentito utilizzare questo nome utente. Sceglierne un altro."
529
 
530
- #: cerber-load.php:4831
531
  msgid "unspecified"
532
  msgstr "non specificato"
533
 
534
- #: cerber-load.php:4834
535
  msgid "Number of lockouts is increasing"
536
  msgstr "Numero di blocchi in aumento"
537
 
538
- #: cerber-load.php:4839
539
  msgid "View activity for this IP"
540
  msgstr "Vedi attività per questo IP"
541
 
542
- #: cerber-load.php:4843 cerber-load.php:4845
543
  msgid "A new version of WP Cerber is available to install"
544
  msgstr "È disponibile una nuova versione di WP Cerber"
545
 
546
- #: cerber-load.php:4844
547
  msgid "Hi!"
548
  msgstr "Ciao!"
549
 
550
- #: cerber-load.php:4847 cerber-load.php:4858 nexus/cerber-slave-list.php:44
551
  msgid "Website"
552
  msgstr "Sito web"
553
 
554
- #: cerber-load.php:4850 cerber-load.php:4851
555
  msgid "The WP Cerber security plugin has been deactivated"
556
  msgstr "Il plugin di sicurezza WP Cerber è stato disattivato"
557
 
558
- #: cerber-load.php:4853
559
  msgid "Not logged in"
560
  msgstr "Non loggato"
561
 
562
- #: cerber-load.php:4859
563
  msgid "By user"
564
  msgstr "Dall'Utente "
565
 
566
- #: cerber-load.php:4860
567
  msgid "From IP address"
568
  msgstr "Dall'indirizzo IP"
569
 
570
- #: cerber-load.php:4863
571
  msgid "From country"
572
  msgstr "Dalla Nazione"
573
 
574
- #: cerber-load.php:4867
575
  msgid "The WP Cerber security plugin is now active"
576
  msgstr "Il plugin di protezione WP Cerber è attivo"
577
 
578
- #: cerber-load.php:6070
579
  msgid "Import settings"
580
  msgstr "Importa impostazioni"
581
 
@@ -628,27 +620,27 @@ msgstr "Prima di iniziare a utilizzare reCAPTCHA, è necessario ottenere la Chia
628
  msgid "Know more"
629
  msgstr "Per saperne di più"
630
 
631
- #: cerber-common.php:1656
632
  msgid "User created"
633
  msgstr "Utente creato"
634
 
635
- #: cerber-common.php:1659
636
  msgid "User registered"
637
  msgstr "Utente registrato"
638
 
639
- #: cerber-common.php:1696 cerber-common.php:1797
640
  msgid "reCAPTCHA verification failed"
641
  msgstr "Verifica reCAPTCHA fallita"
642
 
643
- #: cerber-common.php:1697 cerber-common.php:1798
644
  msgid "reCAPTCHA settings are incorrect"
645
  msgstr "le impostazioni reCAPTCHA non sono corrette"
646
 
647
- #: cerber-common.php:1701 cerber-common.php:1901
648
  msgid "Attempt to access prohibited URL"
649
  msgstr "Tentativo di accesso ad URL proibita"
650
 
651
- #: cerber-common.php:1703 cerber-common.php:1903
652
  msgid "Attempt to log in with prohibited username"
653
  msgstr "Tentativo di accesso con username proibito"
654
 
@@ -684,17 +676,17 @@ msgstr "Abilita reCAPTCHA per il form del recupero della password di WooCommerce
684
  msgid "Enable reCAPTCHA for WooCommerce login form"
685
  msgstr "Attiva reCAPTCHA per il modulo di accesso WooCommerce"
686
 
687
- #: cerber-common.php:1698 cerber-common.php:1799
688
  msgid "Request to the Google reCAPTCHA service failed"
689
  msgstr "Richiesta al servizio Google reCAPTCHA non riuscita"
690
 
691
- #: admin/cerber-dashboard.php:1063 admin/cerber-dashboard.php:1074
692
- #: admin/cerber-dashboard.php:1087 admin/cerber-dashboard.php:2705
693
- #: admin/cerber-dashboard.php:4495
694
  msgid "View all"
695
  msgstr "Vedi tutto"
696
 
697
- #: admin/cerber-dashboard.php:2713
698
  msgid "Recently locked out IP addresses"
699
  msgstr "Indirizzi IP bloccati di recente"
700
 
@@ -706,8 +698,8 @@ msgstr "OK, chiudili tutti"
706
  msgid "NO, maybe later"
707
  msgstr "NO, forse più tardi"
708
 
709
- #: admin/cerber-dashboard.php:62 admin/cerber-dashboard.php:2104
710
- #: admin/cerber-dashboard.php:3122 admin/cerber-dashboard.php:5191
711
  msgid "Dashboard"
712
  msgstr "Bacheca"
713
 
@@ -719,43 +711,43 @@ msgstr "Vuoi rendere WP Cerber ancora più potente?"
719
  msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
720
  msgstr "Consenti a WP Cerber di inviare indirizzi IP dannosi al Cerber Lab. Questo aiuta il team a sviluppare nuovi algoritmi per WP Cerber che difenderanno WordPress da nuove minacce e botnet che nascono ogni giorno. Puoi disattivare l'invio delle impostazioni del plugin in qualsiasi momento."
721
 
722
- #: admin/cerber-dashboard.php:3979
723
  msgid "IP address"
724
  msgstr "Indirizzo IP"
725
 
726
- #: admin/cerber-dashboard.php:954
727
  msgid "User login"
728
  msgstr "Login utente"
729
 
730
- #: admin/cerber-dashboard.php:955 admin/cerber-dashboard.php:3985
731
  msgid "User ID"
732
  msgstr "ID Utente"
733
 
734
- #: admin/cerber-dashboard.php:1360 admin/cerber-dashboard.php:4521
735
  msgid "Export"
736
  msgstr "Esporta"
737
 
738
- #: admin/cerber-dashboard.php:1385
739
  msgid "Search for IP or username"
740
  msgstr "Ricerca per IP o Nome Utente"
741
 
742
- #: admin/cerber-dashboard.php:1396
743
  msgid "Filter"
744
  msgstr "Filtro"
745
 
746
- #: admin/cerber-dashboard.php:62
747
  msgid "Cerber Dashboard"
748
  msgstr "Pannello di Cerber"
749
 
750
- #: admin/cerber-dashboard.php:90
751
  msgid "Cerber tools"
752
  msgstr "Strumenti di Cerber"
753
 
754
- #: cerber-load.php:5687 admin/cerber-users.php:922
755
  msgid "User"
756
  msgstr "Utente"
757
 
758
- #: cerber-load.php:5695
759
  msgid "Search string"
760
  msgstr "Stringa di ricerca"
761
 
@@ -792,11 +784,11 @@ msgstr "Nessuna periferica trovata."
792
  msgid "Not available"
793
  msgstr "Non disponibile"
794
 
795
- #: cerber-common.php:1688
796
  msgid "Password reset requested"
797
  msgstr "Richiesto reset della password"
798
 
799
- #: cerber-common.php:1904
800
  msgid "Limit on failed reCAPTCHA verifications is reached"
801
  msgstr "È stato raggiunto il limite delle verifiche reCAPTCHA fallite"
802
 
@@ -836,40 +828,40 @@ msgstr "Blocca l'indirizzo IP per %s minuti dopo %s tentativi non riusciti entro
836
  msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
837
  msgstr "Nella modalità Citadel nessuno è in grado di accedere, tranne i gli indirizzi IP presenti nell'elenco della White List. Le sessioni utente attive non saranno interessate."
838
 
839
- #: admin/cerber-dashboard.php:951 admin/cerber-dashboard.php:1329
840
  msgid "Event"
841
  msgstr "Evento"
842
 
843
- #: cerber-common.php:384
844
  msgid "Spam comments denied"
845
  msgstr "Commenti spam negati"
846
 
847
- #: cerber-common.php:386
848
  msgid "Malicious IP addresses detected"
849
  msgstr "Rilevati indirizzi IP malevoli"
850
 
851
- #: cerber-common.php:387
852
  msgid "Lockouts occurred"
853
  msgstr "Blocchi avvenuti"
854
 
855
- #: cerber-load.php:1913 cerber-load.php:1919 cerber-load.php:1924
856
- #: cerber-load.php:1944 cerber-load.php:1949
857
  msgid "You are not allowed to register."
858
  msgstr "Non è consentito registrarsi."
859
 
860
- #: cerber-common.php:1673
861
  msgid "Spam comment denied"
862
  msgstr "Il commento spam è stato negato"
863
 
864
- #: cerber-common.php:1706
865
  msgid "Attempt to log in denied"
866
  msgstr "Tentativo di accesso negato"
867
 
868
- #: cerber-common.php:1707
869
  msgid "Attempt to register denied"
870
  msgstr "Tentativo di registrazione negato"
871
 
872
- #: cerber-common.php:381
873
  msgid "Malicious activities mitigated"
874
  msgstr "Attività dannose attenuate"
875
 
@@ -885,19 +877,19 @@ msgstr "Proteggi il modulo dei commenti con il motore di rilevazione dei bot"
885
  msgid "Protect registration form with bot detection engine"
886
  msgstr "Proteggi il modulo di registrazione con il motore di rilevazione dei bot"
887
 
888
- #: admin/cerber-dashboard.php:5381
889
  msgid "Diagnostic"
890
  msgstr "Diagnostica"
891
 
892
- #: admin/cerber-dashboard.php:5384
893
  msgid "License"
894
  msgstr "Licenza"
895
 
896
- #: cerber-load.php:2277
897
  msgid "Sorry, human verification failed."
898
  msgstr "Spiacenti, la verifica umana è fallita."
899
 
900
- #: cerber-common.php:1905
901
  msgid "Bot activity is detected"
902
  msgstr "Attività Bot rilevata"
903
 
@@ -917,7 +909,7 @@ msgstr "Cestina i commenti spam"
917
  msgid "Move spam comments to trash after"
918
  msgstr "Sposta i commenti spam nel cestino dopo"
919
 
920
- #: cerber-common.php:1674
921
  msgid "Spam form submission denied"
922
  msgstr "L'invio del form contenente spam è stato negato"
923
 
@@ -937,54 +929,54 @@ msgstr "Modalità sicura"
937
  msgid "Use less restrictive policies (allow AJAX)"
938
  msgstr "Usa regole meno restrittive (Permetti AJAX)"
939
 
940
- #: admin/cerber-dashboard.php:215 admin/cerber-dashboard.php:1327
941
  msgid "Country"
942
  msgstr "Nazione"
943
 
944
- #: admin/cerber-dashboard.php:69
945
  msgid "Cerber Security Rules"
946
  msgstr "Regole di Sicurezza di Cerber"
947
 
948
- #: admin/cerber-dashboard.php:69 admin/cerber-dashboard.php:5308
949
  msgid "Security Rules"
950
  msgstr "Regole di Sicurezza"
951
 
952
- #: admin/cerber-dashboard.php:1932
953
  msgid "Failed login attempts"
954
  msgstr "Tentivi di accesso falliti"
955
 
956
- #: admin/cerber-dashboard.php:1856 admin/cerber-dashboard.php:1933
957
  msgid "Registered"
958
  msgstr "Registrato"
959
 
960
- #: admin/cerber-dashboard.php:1980 admin/cerber-users.php:52
961
- #: admin/cerber-users.php:1081
962
  msgid "You"
963
  msgstr "Tu"
964
 
965
- #: cerber-common.php:385
966
  msgid "Spam form submissions denied"
967
  msgstr "Tentativi di immissione spam negati "
968
 
969
- #: cerber-load.php:4870 cerber-load.php:6061
970
  msgid "Getting Started Guide"
971
  msgstr "Guida introduttiva"
972
 
973
- #: admin/cerber-dashboard.php:5310
974
  msgid "Countries"
975
  msgstr "Paesi"
976
 
977
- #: admin/cerber-dashboard.php:3708
978
  msgid "Permitted for one country"
979
  msgid_plural "Permitted for %d countries"
980
  msgstr[0] "Permesso per un paese "
981
  msgstr[1] "Permesso per %d paesi"
982
 
983
- #: admin/cerber-dashboard.php:3719
984
  msgid "No rule"
985
  msgstr "Nessuna regola"
986
 
987
- #: admin/cerber-dashboard.php:3880
988
  msgid "Security rules have been updated"
989
  msgstr "Le regole di sicurezza sono state aggiornate"
990
 
@@ -993,43 +985,43 @@ msgstr "Le regole di sicurezza sono state aggiornate"
993
  msgid "https://wpcerber.com"
994
  msgstr "https://wpcerber.com"
995
 
996
- #: cerber-common.php:1675
997
  msgid "Form submission denied"
998
  msgstr "Invio form bloccato"
999
 
1000
- #: cerber-common.php:1676
1001
  msgid "Comment denied"
1002
  msgstr "Commento bloccato"
1003
 
1004
- #: cerber-common.php:1712
1005
  msgid "Request to REST API denied"
1006
  msgstr "Richiesta di REST API bloccata"
1007
 
1008
- #: cerber-common.php:1746
1009
  msgid "Bot detected"
1010
  msgstr "Bot rilevato"
1011
 
1012
- #: cerber-common.php:1747
1013
  msgid "Citadel mode is active"
1014
  msgstr "Modalità Citadel attiva"
1015
 
1016
- #: cerber-common.php:1751
1017
  msgid "Malicious activity detected"
1018
  msgstr "Rilevata attività malevola"
1019
 
1020
- #: cerber-common.php:1752
1021
  msgid "Blocked by country rule"
1022
  msgstr "Bloccata dalle regole del Paese"
1023
 
1024
- #: cerber-common.php:1753
1025
  msgid "Limit reached"
1026
  msgstr "Limite raggiunto"
1027
 
1028
- #: cerber-common.php:1754
1029
  msgid "Multiple suspicious activities"
1030
  msgstr "Attività sospette multiple"
1031
 
1032
- #: cerber-common.php:1906
1033
  msgid "Multiple suspicious activities were detected"
1034
  msgstr "Attività sospette multiple sono state rilevate"
1035
 
@@ -1041,10 +1033,6 @@ msgstr "Specifica gli spazi dei nomi REST API consentiti se l'API REST è disatt
1041
  msgid "Registration limit"
1042
  msgstr "Limite di Registrazione"
1043
 
1044
- #: cerber-settings.php:694
1045
- msgid "Sort users in dashboard"
1046
- msgstr "Ordina gli utenti nel pannello"
1047
-
1048
  #: cerber-settings.php:695
1049
  msgid "by date of registration"
1050
  msgstr "per data di registrazione"
@@ -1054,31 +1042,31 @@ msgid "Query whitelist"
1054
  msgstr "Whitelist Query\n"
1055
  ""
1056
 
1057
- #: admin/cerber-dashboard.php:3688
1058
  msgid "Start typing here to find a country"
1059
  msgstr "Inizia a digitare qui per trovare un paese"
1060
 
1061
- #: admin/cerber-dashboard.php:3803
1062
  msgid "Click on a country name to add it to the list of selected countries"
1063
  msgstr "Clicca sul nome del paese per aggiungerlo nella lista dei paesi selezionati"
1064
 
1065
- #: admin/cerber-dashboard.php:3835
1066
  msgid "Submit forms"
1067
  msgstr "Trasmetti forms"
1068
 
1069
- #: admin/cerber-dashboard.php:3836
1070
  msgid "Post comments"
1071
  msgstr "Inserisci commenti"
1072
 
1073
- #: admin/cerber-dashboard.php:3834
1074
  msgid "Register on the website"
1075
  msgstr "Registrati al sito web"
1076
 
1077
- #: admin/cerber-dashboard.php:3837
1078
  msgid "Use XML-RPC"
1079
  msgstr "Usa XML-RPC"
1080
 
1081
- #: admin/cerber-dashboard.php:3838
1082
  msgid "Use REST API"
1083
  msgstr "Usa REST API\n"
1084
  ""
@@ -1091,7 +1079,7 @@ msgstr "Negarlo completamente"
1091
  msgid "Mark it as spam"
1092
  msgstr "Segna come spam"
1093
 
1094
- #: admin/cerber-dashboard.php:3123
1095
  msgid "Main settings"
1096
  msgstr "Impostazioni Principali"
1097
 
@@ -1103,23 +1091,23 @@ msgstr "Report settimanali"
1103
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1104
  msgstr "Se si utilizza un plug-in di memorizzazione nella cache, è necessario aggiungere il nuovo URL di accesso all'elenco delle pagine da non memorizzare in cache."
1105
 
1106
- #: cerber-load.php:4889
1107
  msgid "Weekly report"
1108
  msgstr "Report Settimanale"
1109
 
1110
- #: cerber-load.php:4892 cerber-load.php:4900
1111
  msgid "To change reporting settings visit"
1112
  msgstr "Per cambiare le impostazioni del report visita"
1113
 
1114
- #: cerber-load.php:4926
1115
  msgid "Your login page:"
1116
  msgstr "La tua pagina di login:"
1117
 
1118
- #: cerber-load.php:4931
1119
  msgid "Your license is valid until"
1120
  msgstr "La tua licenza è valida sino al"
1121
 
1122
- #: cerber-load.php:5037
1123
  msgid "Activity details"
1124
  msgstr "Dettaglio Attività"
1125
 
@@ -1127,31 +1115,31 @@ msgstr "Dettaglio Attività"
1127
  msgid "Click to send now"
1128
  msgstr "Clicca per spedire ora"
1129
 
1130
- #: admin/cerber-dashboard.php:673
1131
  msgid "Email has been sent to"
1132
  msgstr "Una e-mail è stata spedita a"
1133
 
1134
- #: admin/cerber-dashboard.php:676
1135
  msgid "Unable to send email to"
1136
  msgstr "Non riesco ad inviare l'email a"
1137
 
1138
- #: admin/cerber-dashboard.php:3711
1139
  msgid "Not permitted for one country"
1140
  msgid_plural "Not permitted for %d countries"
1141
  msgstr[0] "Non permesso per un paese"
1142
  msgstr[1] "non permesso per %d paesi"
1143
 
1144
- #: admin/cerber-dashboard.php:3807
1145
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1146
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1147
  msgstr "I paesi selezionati sono autorizzati ad %s, altri paesi non sono autorizzati ad"
1148
 
1149
- #: admin/cerber-dashboard.php:3810
1150
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1151
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1152
  msgstr "I paesi selezionati non sono autorizzati ad %s, altri paesi sono autorizzati ad"
1153
 
1154
- #: cerber-load.php:5025
1155
  msgid "Weekly Report"
1156
  msgstr "Report settimanale"
1157
 
@@ -1171,15 +1159,15 @@ msgstr "Immettere una parte della stringa di query o del percorso di query per e
1171
  msgid "Enable reporting"
1172
  msgstr "Abilita reporting"
1173
 
1174
- #: cerber-load.php:4955
1175
  msgid "Your last sign-in was %s from %s"
1176
  msgstr "Il tuo ultimo accesso è stato %s da %s"
1177
 
1178
- #: admin/cerber-dashboard.php:345
1179
  msgid "Optional comment for this entry"
1180
  msgstr "Commento opzionale per questa voce"
1181
 
1182
- #: admin/cerber-dashboard.php:367
1183
  msgid "You cannot add your IP address or network"
1184
  msgstr "Non è possibile aggiungere il tuo indirizzo IP o rete"
1185
 
@@ -1187,52 +1175,52 @@ msgstr "Non è possibile aggiungere il tuo indirizzo IP o rete"
1187
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1188
  msgstr "Per specificare un pattern REGEX inserisci un pattern in mezzo a due barre (//) "
1189
 
1190
- #: admin/cerber-dashboard.php:64
1191
  msgid "Cerber Traffic Inspector"
1192
  msgstr "Ispettore del traffico di Cerber"
1193
 
1194
- #: admin/cerber-dashboard.php:64 admin/cerber-dashboard.php:2067
1195
- #: admin/cerber-dashboard.php:5262
1196
  msgid "Traffic Inspector"
1197
  msgstr "Ispettore del traffico"
1198
 
1199
- #: admin/cerber-dashboard.php:2106 admin/cerber-users.php:1115
1200
  msgid "Traffic"
1201
  msgstr "Traffico"
1202
 
1203
- #: admin/cerber-dashboard.php:4463
1204
  msgid "Request"
1205
  msgstr "Richieste"
1206
 
1207
- #: admin/cerber-dashboard.php:4465 admin/cerber-users.php:927
1208
  msgid "Host Info"
1209
  msgstr "Info Host"
1210
 
1211
- #: admin/cerber-dashboard.php:4466
1212
  msgid "User Agent"
1213
  msgstr "Agente Utente"
1214
 
1215
- #: admin/cerber-dashboard.php:4500
1216
  msgid "Form submissions"
1217
  msgstr "Modulo di invio"
1218
 
1219
- #: admin/cerber-dashboard.php:4501
1220
  msgid "Page Not Found"
1221
  msgstr "Pagina non trovata"
1222
 
1223
- #: admin/cerber-dashboard.php:4508
1224
  msgid "Longer than"
1225
  msgstr "Più lungo di"
1226
 
1227
- #: admin/cerber-dashboard.php:4527
1228
  msgid "Refresh"
1229
  msgstr "Ricaricare"
1230
 
1231
- #: cerber-common.php:288 admin/cerber-dashboard.php:1373
1232
  msgid "Check for requests"
1233
  msgstr "Controlla richieste"
1234
 
1235
- #: admin/cerber-dashboard.php:4562
1236
  msgid "Not specified"
1237
  msgstr "Non Specificato"
1238
 
@@ -1272,23 +1260,19 @@ msgstr "Salva i campi richiesti"
1272
  msgid "Page generation time threshold"
1273
  msgstr "Soglia del tempo di generazione della pagina"
1274
 
1275
- #: admin/cerber-dashboard.php:4488
1276
- msgid "No requests have been logged."
1277
- msgstr "Nessuna richiesta è stata registrata."
1278
-
1279
- #: admin/cerber-dashboard.php:2066
1280
  msgid "enabled"
1281
  msgstr "Abilitato"
1282
 
1283
- #: admin/cerber-dashboard.php:2071
1284
  msgid "no connection"
1285
  msgstr "Nessuna connessione"
1286
 
1287
- #: admin/cerber-dashboard.php:1884
1288
  msgid "Last seen"
1289
  msgstr "Visto per l'ultima volta"
1290
 
1291
- #: cerber-load.php:4668
1292
  msgid "We're sorry, you are not allowed to proceed"
1293
  msgstr "Siamo spiacenti, non ti è permesso procedere"
1294
 
@@ -1320,23 +1304,23 @@ msgstr "Proteggi gli script di amministrazione"
1320
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1321
  msgstr "Blocca l'accesso non autorizzato a load-scripts.php e load-styles.php"
1322
 
1323
- #: cerber-common.php:3272
1324
  msgid "Unable to create the directory"
1325
  msgstr "Impossibile creare la directory"
1326
 
1327
- #: cerber-common.php:3277
1328
  msgid "Destination folder access denied"
1329
  msgstr "Accesso alla cartella di destinazione negato"
1330
 
1331
- #: cerber-common.php:3280
1332
  msgid "File not found"
1333
  msgstr "File non trovato"
1334
 
1335
- #: cerber-common.php:3283
1336
  msgid "Unable to copy the file"
1337
  msgstr "Impossibile copiare il file"
1338
 
1339
- #: cerber-common.php:3289
1340
  msgid "Unable to delete the file"
1341
  msgstr "Impossibile cancellare il file"
1342
 
@@ -1356,7 +1340,7 @@ msgstr "Modalità standard"
1356
  msgid "Plugin initialization mode has not been changed"
1357
  msgstr "La modalità di inizializzazione del plugin non è stata modificata"
1358
 
1359
- #: cerber-common.php:1710
1360
  msgid "File upload denied"
1361
  msgstr "Caricamento file negato"
1362
 
@@ -1372,27 +1356,27 @@ msgstr "Fai attenzione nell'abilitazione di queste opzioni."
1372
  msgid "If you forget your Custom login URL, you will be unable to log in."
1373
  msgstr "Se si dimentica l'URL di accesso personalizzato, non sarà possibile accedere."
1374
 
1375
- #: admin/cerber-dashboard.php:75 admin/cerber-dashboard.php:5323
1376
  msgid "Site Integrity"
1377
  msgstr "Integrità del sito"
1378
 
1379
  #: cerber-scanner.php:1717 cerber-settings.php:683 cerber-settings.php:825
1380
  #: cerber-settings.php:856 cerber-settings.php:990 cerber-settings.php:999
1381
- #: cerber-settings.php:1466 admin/cerber-dashboard.php:2091
1382
- #: admin/cerber-dashboard.php:2093 admin/cerber-users.php:20
1383
  #: admin/cerber-users.php:474 admin/cerber-users.php:488
1384
  msgid "Disabled"
1385
  msgstr "Disabilitato"
1386
 
1387
- #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2092
1388
  msgid "Quick Scan"
1389
  msgstr "Scansione veloce"
1390
 
1391
- #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2094
1392
  msgid "Full Scan"
1393
  msgstr "Scansione completa"
1394
 
1395
- #: cerber-common.php:1755
1396
  msgid "Denied"
1397
  msgstr "Negato"
1398
 
@@ -1494,11 +1478,11 @@ msgstr "Includi dimensioni del file"
1494
  msgid "Include scan errors"
1495
  msgstr "Includi errori di scansione"
1496
 
1497
- #: admin/cerber-dashboard.php:5325
1498
  msgid "Security Scanner"
1499
  msgstr "Scanner di Sicurezza"
1500
 
1501
- #: admin/cerber-dashboard.php:5327
1502
  msgid "Scheduling"
1503
  msgstr "Programmazione\n"
1504
  ""
@@ -1531,7 +1515,8 @@ msgstr "Ferma la scansione."
1531
  msgid "Continue Scanning"
1532
  msgstr "Continua la scansione"
1533
 
1534
- #: admin/cerber-tools.php:350 admin/cerber-admin.php:227
 
1535
  msgid "Delete"
1536
  msgstr "Elimina"
1537
 
@@ -1643,7 +1628,7 @@ msgstr "Errore di accesso al file. Probabilmente i risultati della scansione son
1643
  msgid "To view full report visit"
1644
  msgstr "Per visualizzare il report completo visita"
1645
 
1646
- #: cerber-load.php:4897
1647
  msgid "Scanner Report"
1648
  msgstr "Scanner Report\n"
1649
  ""
@@ -1708,40 +1693,40 @@ msgstr "Rapporto di scansione veloce"
1708
  msgid "Files scanned"
1709
  msgstr "File scansionati"
1710
 
1711
- #: admin/cerber-dashboard.php:327 admin/cerber-dashboard.php:1647
1712
- #: admin/cerber-dashboard.php:1704 admin/cerber-dashboard.php:1835
1713
  msgid "Check for activities"
1714
  msgstr "Controllo per attività"
1715
 
1716
- #: admin/cerber-dashboard.php:1866
1717
  msgid "Activated"
1718
  msgstr "Attivato"
1719
 
1720
- #: cerber-common.php:1721
1721
  msgid "Malicious request denied"
1722
  msgstr "Richieste dannose negate"
1723
 
1724
- #: cerber-common.php:1735
1725
  msgid "User activated"
1726
  msgstr "Utente Attivato"
1727
 
1728
- #: cerber-common.php:1757
1729
  msgid "Suspicious number of fields"
1730
  msgstr "Numero di file sospetti"
1731
 
1732
- #: cerber-common.php:1758
1733
  msgid "Suspicious number of nested values"
1734
  msgstr "Numero sospetto di valori annidati"
1735
 
1736
- #: cerber-common.php:1759 cerber-common.php:1908
1737
  msgid "Malicious code detected"
1738
  msgstr "Codice dannoso rilevato"
1739
 
1740
- #: cerber-common.php:1909
1741
  msgid "Attempt to upload a file with malicious code"
1742
  msgstr "Tentativi di caricamento di file con codice dannoso"
1743
 
1744
- #: cerber-common.php:2192
1745
  msgid "Bytes"
1746
  msgstr "Bytes"
1747
 
@@ -1761,11 +1746,11 @@ msgstr "Pianificazione di scansioni ricorrenti automatizzate"
1761
  msgid "Scan results reporting"
1762
  msgstr "Controlla i risultati dei rapporti"
1763
 
1764
- #: admin/cerber-dashboard.php:1084
1765
  msgid "Suspicious activity"
1766
  msgstr "Attività sospette"
1767
 
1768
- #: admin/cerber-dashboard.php:4497
1769
  msgid "Errors"
1770
  msgstr "Errore"
1771
 
@@ -1774,11 +1759,11 @@ msgstr "Errore"
1774
  msgid "Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications."
1775
  msgstr "Difende WordPress da attacchi di hacker, spam, trojan e virus. Malware scanner e controllo di integrità. Rafforza WordPress con una serie di algoritmi di sicurezza completi. Protezione antispam con un sofisticato motore di rilevamento dei bot e reCAPTCHA. Tiene traccia delle attività degli utenti e degli intrusi con potenti notifiche email, mobili e desktop."
1776
 
1777
- #: cerber-load.php:375
1778
  msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
1779
  msgstr "Hai superato il numero di tentativi di accesso consentiti. Si prega di riprovare tra %d minuti."
1780
 
1781
- #: cerber-common.php:2072
1782
  msgctxt "preposition of a period of time like: in 6 hours"
1783
  msgid "in %s"
1784
  msgstr "in %s"
@@ -1788,7 +1773,7 @@ msgctxt "preposition of time like: at 11:00"
1788
  msgid "at"
1789
  msgstr "alle"
1790
 
1791
- #: admin/cerber-dashboard.php:5330
1792
  msgid "Quarantine"
1793
  msgstr "Quarantena"
1794
 
@@ -1861,15 +1846,15 @@ msgstr "Il file è stato eliminato permenentemente."
1861
  msgid "The file has been restored to its original location."
1862
  msgstr "Il file è stato ripristinato nella sua posizione originale"
1863
 
1864
- #: admin/cerber-dashboard.php:2107
1865
  msgid "Integrity"
1866
  msgstr "Integrità"
1867
 
1868
- #: cerber-common.php:1709
1869
  msgid "Attempt to upload malicious file denied"
1870
  msgstr "Tentativo di caricare un file dannoso negato"
1871
 
1872
- #: cerber-load.php:8120
1873
  msgid "Awesome!"
1874
  msgstr "Eccezionale!"
1875
 
@@ -1897,7 +1882,7 @@ msgstr "File con queste estensioni"
1897
  msgid "Use comma to separate items."
1898
  msgstr "Usa la virgola per separare gli elementi."
1899
 
1900
- #: admin/cerber-dashboard.php:5328
1901
  msgid "Cleaning up"
1902
  msgstr "Pulire"
1903
 
@@ -1929,16 +1914,16 @@ msgstr "Eliminato"
1929
  msgid "Automatically moved to quarantine"
1930
  msgstr "Spostato automaticamente in quarantena"
1931
 
1932
- #: cerber-common.php:1760
1933
  msgid "Suspicious SQL code detected"
1934
  msgstr "Rilevato codice SQL sospetto"
1935
 
1936
- #: admin/cerber-dashboard.php:2088
1937
  msgctxt "Example: Last malware scan: 23 Jan 2018"
1938
  msgid "Last malware scan"
1939
  msgstr "Ultima scansione da malware"
1940
 
1941
- #: admin/cerber-dashboard.php:5264
1942
  msgid "Live Traffic"
1943
  msgstr "Traffico in tempo reale"
1944
 
@@ -1950,7 +1935,7 @@ msgstr "Disabilita PHP in upload"
1950
  msgid "Disable PHP error displaying"
1951
  msgstr "Disabilita la visualizzazione degli errori PHP"
1952
 
1953
- #: admin/cerber-dashboard.php:5329
1954
  msgid "Ignore List"
1955
  msgstr "Ignora elenco"
1956
 
@@ -1983,35 +1968,35 @@ msgstr "Approfondimenti Traffico"
1983
  msgid "Activity Insights"
1984
  msgstr "Approfondimenti Attività"
1985
 
1986
- #: admin/cerber-dashboard.php:3268
1987
  msgid "Are you sure you want to delete selected files?"
1988
  msgstr "Sei dicuro di voler cancellare questi file?"
1989
 
1990
- #: admin/cerber-dashboard.php:3269
1991
  msgid "These files have been moved to the quarantine"
1992
  msgstr "Questi file sono stati spostati in quarantena"
1993
 
1994
- #: admin/cerber-dashboard.php:3272
1995
  msgid "Do you want to add selected files to the ignore list?"
1996
  msgstr "Vuoi aggiungere i file selezionati alla lista dei file da ignorare?"
1997
 
1998
- #: admin/cerber-dashboard.php:3273
1999
  msgid "These files have been added to the ignore list"
2000
  msgstr "Questi file sono stati aggiunti alla lista dei file da ignorare."
2001
 
2002
- #: admin/cerber-dashboard.php:3275
2003
  msgid "Some errors occurred"
2004
  msgstr "Si sono verificati alcuni errori"
2005
 
2006
- #: admin/cerber-dashboard.php:3276
2007
  msgid "All files have been processed"
2008
  msgstr "Tutti i file sono stati processati"
2009
 
2010
- #: admin/cerber-dashboard.php:5669
2011
  msgid "Know more about all advantages at"
2012
  msgstr "Scopri di più su tutti i vantaggi a"
2013
 
2014
- #: cerber-common.php:1761
2015
  msgid "Suspicious JavaScript code detected"
2016
  msgstr "Rilevato codice JavaScript sospetto"
2017
 
@@ -2035,41 +2020,41 @@ msgstr "Nessun file corrisponde al filtro specificato."
2035
  msgid "Click here to see the full list of files"
2036
  msgstr "Clicca qui per vedere l'elenco completo dei file"
2037
 
2038
- #: admin/cerber-dashboard.php:952
2039
  msgid "Additional Details"
2040
  msgstr "Dettagli aggiuntivi"
2041
 
2042
- #: admin/cerber-dashboard.php:3986
2043
  msgid "Page generation time"
2044
  msgstr "Tempo di generazione della pagina"
2045
 
2046
- #: admin/cerber-dashboard.php:5844
2047
  msgid "Log In"
2048
  msgstr "Login"
2049
 
2050
- #: admin/cerber-dashboard.php:5845
2051
  msgid "Log Out"
2052
  msgstr "Log Out"
2053
 
2054
- #: admin/cerber-dashboard.php:5846
2055
  msgid "Register"
2056
  msgstr "Registrati"
2057
 
2058
- #: admin/cerber-dashboard.php:5849
2059
  msgid "WooCommerce Log In"
2060
  msgstr "WooCommerce Log In"
2061
 
2062
- #: admin/cerber-dashboard.php:5850
2063
  msgid "WooCommerce Log Out"
2064
  msgstr "\n"
2065
  "WooCommerce Log Out\n"
2066
  ""
2067
 
2068
- #: cerber-common.php:1749
2069
  msgid "IP address is locked out"
2070
  msgstr "L'indirizzo IP è bloccato"
2071
 
2072
- #: cerber-common.php:1912
2073
  msgid "Multiple suspicious requests"
2074
  msgstr "Richieste Multiple sospette"
2075
 
@@ -2101,11 +2086,11 @@ msgstr "Salva errori software"
2101
  msgid "Preparing for the scan"
2102
  msgstr "Preparazione per la scansione"
2103
 
2104
- #: cerber-common.php:1762
2105
  msgid "Blocked by administrator"
2106
  msgstr "Bloccato dall'amministratore"
2107
 
2108
- #: cerber-load.php:379
2109
  msgid "You are not allowed to log in"
2110
  msgstr "Non ti è permesso effettuare l'accesso"
2111
 
@@ -2157,7 +2142,7 @@ msgstr "Queste restrizioni non si applicano agli indirizzi IP nella White List d
2157
  msgid "Select one or more roles"
2158
  msgstr "Seleziona una o più funzioni"
2159
 
2160
- #: admin/cerber-dashboard.php:1384 admin/cerber-users.php:970
2161
  msgid "Filter by registered user"
2162
  msgstr "Filtra per utenti registrati"
2163
 
@@ -2177,19 +2162,19 @@ msgstr "Solo agli utenti registrati e connessi è consentito visualizzare questo
2177
  msgid "Redirect to URL"
2178
  msgstr "Reindirizzamento all' URL"
2179
 
2180
- #: admin/cerber-dashboard.php:5383
2181
  msgid "Changelog"
2182
  msgstr "Changelog"
2183
 
2184
- #: admin/cerber-dashboard.php:743
2185
  msgid "Default settings have been loaded"
2186
  msgstr "Le impostazioni predefinite sono state caricate"
2187
 
2188
- #: admin/cerber-dashboard.php:3695
2189
  msgid "Save all rules"
2190
  msgstr "Salva tutte le regole"
2191
 
2192
- #: cerber-common.php:1738
2193
  msgid "Invalid master credentials"
2194
  msgstr "Credenziali master non valide"
2195
 
@@ -2241,7 +2226,7 @@ msgstr "WordPress"
2241
  msgid "Malware Scan"
2242
  msgstr "Scansione malware"
2243
 
2244
- #: nexus/cerber-nexus-master.php:141 nexus/cerber-slave-list.php:56
2245
  msgid "Notes"
2246
  msgstr "Note"
2247
 
@@ -2249,7 +2234,7 @@ msgstr "Note"
2249
  msgid "Add a slave website"
2250
  msgstr "Aggiungi un sito web slave"
2251
 
2252
- #: nexus/cerber-slave-list.php:247 admin/cerber-users.php:1036
2253
  msgid "Search results for:"
2254
  msgstr "Cerca risultati per:"
2255
 
@@ -2269,70 +2254,70 @@ msgstr "Nessun sito web configurato"
2269
  msgid "Add a new one"
2270
  msgstr "Aggiungine uno nuovo"
2271
 
2272
- #: nexus/cerber-nexus-master.php:104
2273
  msgid "Website Properties"
2274
  msgstr "Proprietà sito web"
2275
 
2276
- #: nexus/cerber-nexus-master.php:114
2277
  msgid "Website URL"
2278
  msgstr "URL sito web"
2279
 
2280
- #: nexus/cerber-nexus-master.php:119
2281
  msgid "Display as"
2282
  msgstr "Visualizza come"
2283
 
2284
- #: nexus/cerber-nexus-master.php:149
2285
  msgid "Website Owner"
2286
  msgstr "Proprietario del sito web"
2287
 
2288
- #: nexus/cerber-nexus-master.php:165
2289
  msgid "Phone"
2290
  msgstr "Telefono"
2291
 
2292
- #: nexus/cerber-nexus-master.php:173
2293
  msgid "Address"
2294
  msgstr "Indirizzo"
2295
 
2296
- #: nexus/cerber-nexus-master.php:316
2297
  msgid "The website you are trying to add is already in the list"
2298
  msgstr "Il sito web che stai cercando di aggiungere è già presente nella lista"
2299
 
2300
- #: nexus/cerber-nexus-master.php:325
2301
  msgid "The website has been added successfully"
2302
  msgstr "Il sito web è stato aggiunto con successo"
2303
 
2304
- #: nexus/cerber-nexus-master.php:326
2305
  msgid "Click to edit"
2306
  msgstr "Clicca per modificare"
2307
 
2308
- #: nexus/cerber-nexus-master.php:327
2309
  msgid "Switch to the Dashboard"
2310
  msgstr "Passa alla Dashboard"
2311
 
2312
- #: nexus/cerber-nexus-master.php:330
2313
  msgid "Keep in mind: You have added the website that does not support SSL encryption. This may lead to data leakage."
2314
  msgstr "Tieni presente che: il sito web che hai aggiunto non supporta la crittografia SSL.\n"
2315
  "Ciò potrebbe comportare la perdita di dati."
2316
 
2317
- #: nexus/cerber-nexus-master.php:449
2318
  msgid "Website has been deleted"
2319
  msgid_plural "%s websites have been deleted"
2320
  msgstr[0] "Il sito web è stato cancellato"
2321
  msgstr[1] "%s i siti web sono stati cancellati"
2322
 
2323
- #: nexus/cerber-nexus-master.php:1042
2324
  msgid "You have switched to %s"
2325
  msgstr "Sei passato a %s"
2326
 
2327
- #: nexus/cerber-nexus-master.php:1052
2328
  msgid "You have switched back to the master website"
2329
  msgstr "Sei passato di nuovo al sito web master"
2330
 
2331
- #: nexus/cerber-nexus-master.php:1268
2332
  msgid "You are here:"
2333
  msgstr "Ti trovi qui:"
2334
 
2335
- #: nexus/cerber-nexus-master.php:1271 nexus/cerber-nexus.php:94
2336
  #: nexus/cerber-nexus.php:104
2337
  msgid "My Websites"
2338
  msgstr "I Miei Siti Web"
@@ -2394,7 +2379,7 @@ msgid "Install the access token on the master website."
2394
  msgstr "Installa il token di accesso sul ito web master."
2395
 
2396
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
2397
- #: cerber-common.php:2065
2398
  msgid "%s sec"
2399
  msgid_plural "%s secs"
2400
  msgstr[0] "%s sec"
@@ -2408,7 +2393,7 @@ msgstr "Invia segnalazioni su"
2408
  msgid "Updates"
2409
  msgstr "Aggiornamenti"
2410
 
2411
- #: nexus/cerber-nexus-master.php:127 nexus/cerber-slave-list.php:54
2412
  msgid "Group"
2413
  msgstr "Gruppo"
2414
 
@@ -2428,7 +2413,7 @@ msgstr "Cancella sito web"
2428
  msgid "All groups"
2429
  msgstr "Tutti i gruppi"
2430
 
2431
- #: nexus/cerber-nexus-master.php:1352
2432
  msgid "Are you sure you want to delete selected websites?"
2433
  msgstr "Sei sicuro di voler cancellare tutti i siti web selezionati?"
2434
 
@@ -2436,23 +2421,23 @@ msgstr "Sei sicuro di voler cancellare tutti i siti web selezionati?"
2436
  msgid "Block"
2437
  msgstr "Blocca"
2438
 
2439
- #: nexus/cerber-nexus-master.php:96
2440
  msgid "Select an existing group or enter a new one to add it"
2441
  msgstr "Seleziona un gruppo esistente o inseriscine uno nuovo per aggiungerlo"
2442
 
2443
- #: nexus/cerber-nexus-master.php:169
2444
  msgid "Company"
2445
  msgstr "Azienda"
2446
 
2447
- #: nexus/cerber-nexus-master.php:694
2448
  msgid "Invalid response from the slave website"
2449
  msgstr "Risposta non valida dal sito web slave"
2450
 
2451
- #: cerber-common.php:1702 cerber-common.php:1902
2452
  msgid "Attempt to log in with non-existing username"
2453
  msgstr "Tentativo di accesso con un nome utente inesistente"
2454
 
2455
- #: cerber-load.php:5051
2456
  msgid "Attempts to log in with non-existing usernames"
2457
  msgstr "Tentativi di accesso con con un nome utente inesistente"
2458
 
@@ -2484,39 +2469,39 @@ msgstr "Per revocare il token e disabilitare la gestione remota, clicca qui:"
2484
  msgid "Block execution of PHP scripts in the WordPress media folder"
2485
  msgstr "Blocca l'esecuzione degli script PHP nella cartella multimediale WordPress"
2486
 
2487
- #: nexus/cerber-nexus-master.php:1419 nexus/cerber-nexus-master.php:1427
2488
  msgid "Active plugins and updates on"
2489
  msgstr "Attiva i plugin e gli aggiornamenti il"
2490
 
2491
- #: nexus/cerber-nexus-master.php:1397
2492
  msgid "A newer version is available"
2493
  msgstr "E' disponibile una versione più recente"
2494
 
2495
- #: admin/cerber-dashboard.php:1078
2496
  msgid "New users"
2497
  msgstr "Nuovi utenti"
2498
 
2499
- #: admin/cerber-dashboard.php:1097
2500
  msgid "My activity"
2501
  msgstr "La mia attività"
2502
 
2503
- #: admin/cerber-dashboard.php:2933
2504
  msgid "Create Alert"
2505
  msgstr "Crea un avviso"
2506
 
2507
- #: admin/cerber-dashboard.php:2937
2508
  msgid "Delete Alert"
2509
  msgstr "Cancella avviso"
2510
 
2511
- #: admin/cerber-dashboard.php:3033
2512
  msgid "The alert has been created"
2513
  msgstr "L'avviso è stato creato"
2514
 
2515
- #: admin/cerber-dashboard.php:3042
2516
  msgid "The alert has been deleted"
2517
  msgstr "L'avviso è stato cancellato"
2518
 
2519
- #: admin/cerber-dashboard.php:4514
2520
  msgid "Advanced Search"
2521
  msgstr "Ricerca Avanzata"
2522
 
@@ -2525,7 +2510,7 @@ msgstr "Ricerca Avanzata"
2525
  msgid "Cerber Tech Inc."
2526
  msgstr "Cerber Tech Inc."
2527
 
2528
- #: cerber-load.php:5721
2529
  msgid "To delete the alert, click here"
2530
  msgstr "Per cancellare l'avviso, clicca qui"
2531
 
@@ -2597,43 +2582,43 @@ msgstr "Cancellato automaticamente"
2597
  msgid "Automatically recovered"
2598
  msgstr "Recuperato automaticamente"
2599
 
2600
- #: admin/cerber-dashboard.php:72
2601
  msgid "Cerber User Security"
2602
  msgstr "Sicurezza Utente Cerber"
2603
 
2604
- #: admin/cerber-dashboard.php:72 admin/cerber-dashboard.php:5288
2605
  msgid "User Policies"
2606
  msgstr "Politiche degli Utenti"
2607
 
2608
- #: admin/cerber-dashboard.php:2110
2609
  msgid "A new version is available"
2610
  msgstr "E' disponibile una nuova versione"
2611
 
2612
- #: admin/cerber-dashboard.php:5291
2613
  msgid "Global"
2614
  msgstr "Globale"
2615
 
2616
- #: cerber-common.php:1763
2617
  msgid "Site policy enforcement"
2618
  msgstr "Applicazione politica del sito"
2619
 
2620
- #: cerber-common.php:1764
2621
  msgid "2FA code verified"
2622
  msgstr "Codice 2FA verificato"
2623
 
2624
- #: cerber-common.php:1765
2625
  msgid "Initiated by the user"
2626
  msgstr "Avviato dall'utente"
2627
 
2628
- #: cerber-common.php:2315
2629
  msgid "A new version of %s is available. Please install it."
2630
  msgstr "Una nuova versione di %s è disponibile. Per favore, installala."
2631
 
2632
- #: cerber-load.php:1939
2633
  msgid "Email address is not permitted."
2634
  msgstr "L'indirizzo e-mail non è ammesso."
2635
 
2636
- #: cerber-load.php:1939
2637
  msgid "Please choose another one."
2638
  msgstr "Scegline un altro."
2639
 
@@ -2785,7 +2770,7 @@ msgstr "Inserisci il codice ricevuto via e-mail nello spazio in basso. "
2785
  msgid "Try again"
2786
  msgstr "Prova di nuovo"
2787
 
2788
- #: cerber-2fa.php:661 admin/cerber-dashboard.php:5733
2789
  msgid "Cancel"
2790
  msgstr "Cancella"
2791
 
@@ -2805,7 +2790,7 @@ msgstr "Verifica"
2805
  msgid "Two-Factor Authentication Email"
2806
  msgstr "E-mail di autenticazione a due fattori"
2807
 
2808
- #: admin/cerber-dashboard.php:3638
2809
  msgid "Role-based rules are configured"
2810
  msgstr "Le regole basate sulle funzioni sono state configurate"
2811
 
@@ -2818,67 +2803,67 @@ msgstr "Bloccato da %s a %s"
2818
  msgid "The code is valid for %s minutes."
2819
  msgstr "Il codice è valido per %s minuti"
2820
 
2821
- #: admin/cerber-dashboard.php:374
2822
  msgid "IP address %s has been added to White IP Access List"
2823
  msgstr "L'indirizzo IP %s è stato aggiunto alla lista di controllo degli accessi bianca"
2824
 
2825
- #: admin/cerber-dashboard.php:371
2826
  msgid "IP address %s has been added to Black IP Access List"
2827
  msgstr "L'indirizzo IP %s è stato aggiunto alla lista di controllo degli accessi nera"
2828
 
2829
- #: admin/cerber-dashboard.php:213 admin/cerber-dashboard.php:949
2830
- #: admin/cerber-dashboard.php:1325 admin/cerber-dashboard.php:4464
2831
- #: admin/cerber-users.php:926
2832
  msgid "IP Address"
2833
  msgstr "Indirizzo IP"
2834
 
2835
- #: admin/cerber-dashboard.php:956 admin/cerber-dashboard.php:1331
2836
  msgid "Username"
2837
  msgstr "Nome utente"
2838
 
2839
- #: admin/cerber-dashboard.php:3720
2840
  msgid "Any country is permitted"
2841
  msgstr "Qualunque paese è autorizzato"
2842
 
2843
- #: admin/cerber-dashboard.php:3343 admin/cerber-dashboard.php:5193
2844
  msgid "Sessions"
2845
  msgstr "Sessioni"
2846
 
2847
- #: cerber-load.php:1698
2848
  msgid "Session has been terminated"
2849
  msgid_plural "%s sessions have been terminated"
2850
  msgstr[0] "La sessione è stata chiusa"
2851
  msgstr[1] "%s sessioni sono state chiuse"
2852
 
2853
- #: admin/cerber-users.php:924
2854
  msgid "Created"
2855
  msgstr "Creato"
2856
 
2857
- #: admin/cerber-users.php:945
2858
  msgid "Terminate session"
2859
  msgstr "Terminare la sessione"
2860
 
2861
- #: admin/cerber-users.php:946
2862
  msgid "Block user"
2863
  msgstr "Bloccare l'utente"
2864
 
2865
- #: admin/cerber-users.php:1078
2866
  msgid "Profile"
2867
  msgstr "Profilo"
2868
 
2869
- #: admin/cerber-users.php:1091
2870
  msgid "All Logins"
2871
  msgstr "Tutti Gli Accessi"
2872
 
2873
- #: admin/cerber-users.php:1092
2874
  msgid "User Activity"
2875
  msgstr "Attività Utente"
2876
 
2877
- #: admin/cerber-users.php:1138
2878
  msgid "Terminate"
2879
  msgstr "Terminare"
2880
 
2881
- #: admin/cerber-dashboard.php:2060
2882
  msgid "user"
2883
  msgid_plural "users"
2884
  msgstr[0] "utente"
@@ -2892,47 +2877,47 @@ msgstr "Blocca l'accesso ai dati utente tramite REST API"
2892
  msgid "Unable to delete"
2893
  msgstr "Impossibile eliminare"
2894
 
2895
- #: admin/cerber-dashboard.php:68
2896
  msgid "Cerber Data Shield Policies"
2897
  msgstr "Politiche Cerber Dello Scudo Dati"
2898
 
2899
- #: admin/cerber-dashboard.php:68
2900
  msgid "Data Shield"
2901
  msgstr "Scudo Dati"
2902
 
2903
- #: admin/cerber-dashboard.php:5278
2904
  msgid "Data Shield Policies"
2905
  msgstr "Politiche Scudo Dati"
2906
 
2907
- #: admin/cerber-dashboard.php:5280
2908
  msgid "Accounts & Roles"
2909
  msgstr "Conti e Ruoli"
2910
 
2911
- #: admin/cerber-dashboard.php:5281
2912
  msgid "Site Settings"
2913
  msgstr "Impostazioni Sito"
2914
 
2915
- #: cerber-common.php:1715
2916
  msgid "User creation denied"
2917
  msgstr "Creazione utente negata"
2918
 
2919
- #: cerber-common.php:1717
2920
  msgid "Role update denied"
2921
  msgstr "Aggiornamento ruolo negato"
2922
 
2923
- #: cerber-common.php:1718
2924
  msgid "Setting update denied"
2925
  msgstr "Aggiornamento impostazioni negato"
2926
 
2927
- #: cerber-common.php:1770
2928
  msgid "Permission denied"
2929
  msgstr "Autorizzazione negata"
2930
 
2931
- #: cerber-common.php:1772
2932
  msgid "Invalid user"
2933
  msgstr "Utente invalido"
2934
 
2935
- #: cerber-common.php:1773
2936
  msgid "Incorrect password"
2937
  msgstr "Password sbagliata"
2938
 
@@ -3012,35 +2997,35 @@ msgstr "Tutti i server"
3012
  msgid "All countries"
3013
  msgstr "Tutti i paesi"
3014
 
3015
- #: nexus/cerber-nexus-master.php:67
3016
  msgid "Show homepage in the Website column"
3017
  msgstr "Mostrare la homepage nella colonna del sito"
3018
 
3019
- #: nexus/cerber-nexus-master.php:69
3020
  msgid "Hide server IP address"
3021
  msgstr "Nascondere Indirizzo IP del server"
3022
 
3023
- #: admin/cerber-dashboard.php:343
3024
  msgid "IP address, range, wildcard, or CIDR"
3025
  msgstr "Indirizzo IP, gamma, carattere jolly o CIDR"
3026
 
3027
- #: admin/cerber-dashboard.php:344
3028
  msgid "Add Entry"
3029
  msgstr "Aggiungere Voce"
3030
 
3031
- #: admin/cerber-dashboard.php:5533
3032
  msgid "The IP address you are trying to add is already in the list"
3033
  msgstr "L'indirizzo IP che stai cercando di aggiungere è già nella lista"
3034
 
3035
- #: cerber-common.php:1669
3036
  msgid "IP subnet blocked"
3037
  msgstr "IP sottorete bloccata"
3038
 
3039
- #: cerber-common.php:1716
3040
  msgid "User row update denied"
3041
  msgstr "Mise à jour ligne utilisateur refusée"
3042
 
3043
- #: cerber-common.php:1719
3044
  msgid "User metadata update denied"
3045
  msgstr "Mise à jour métadonnées utilisateur refusée"
3046
 
@@ -3108,28 +3093,28 @@ msgstr "Données champs formulaire"
3108
  msgid "Cookies"
3109
  msgstr "Cookie"
3110
 
3111
- #: admin/cerber-dashboard.php:79
3112
  msgid "Cerber anti-spam settings"
3113
  msgstr "Impostazioni dell'Antispam di Cerber"
3114
 
3115
- #: admin/cerber-dashboard.php:79
3116
  msgid "Anti-spam"
3117
  msgstr "Anti-spam"
3118
 
3119
- #: cerber-addons.php:289 admin/cerber-dashboard.php:87
3120
- #: admin/cerber-dashboard.php:87
3121
  msgid "Add-ons"
3122
  msgstr "Add-ons"
3123
 
3124
- #: admin/cerber-dashboard.php:5242
3125
  msgid "Anti-spam and bot detection settings"
3126
  msgstr "Impostazioni rilevamento di antispam e bot"
3127
 
3128
- #: admin/cerber-dashboard.php:5244
3129
  msgid "Anti-spam engine"
3130
  msgstr "Motore Antispam"
3131
 
3132
- #: cerber-common.php:1911
3133
  msgid "Multiple erroneous requests"
3134
  msgstr "Molteplici richieste errate"
3135
 
@@ -3225,11 +3210,11 @@ msgstr "Il modo in cui il plugin elabora i commenti inviati attraverso il modulo
3225
  msgid "Settings updated"
3226
  msgstr "Impostazioni aggiornate"
3227
 
3228
- #: admin/cerber-dashboard.php:1388
3229
  msgid "Request ID"
3230
  msgstr "ID richiesta"
3231
 
3232
- #: admin/cerber-dashboard.php:1389
3233
  msgid "Search in URL"
3234
  msgstr "Ricerca in URL"
3235
 
@@ -3241,7 +3226,7 @@ msgstr "File eseguibili"
3241
  msgid "All files"
3242
  msgstr "Tutti i file"
3243
 
3244
- #: admin/cerber-dashboard.php:1889
3245
  msgid "Active sessions"
3246
  msgstr "Sessioni attive"
3247
 
@@ -3253,28 +3238,28 @@ msgstr "minuti (lasciare vuoto per usare il valore predefinito di WordPress)"
3253
  msgid "Load entries"
3254
  msgstr "Caricare voci"
3255
 
3256
- #: admin/cerber-dashboard.php:1098 admin/cerber-dashboard.php:4505
3257
  msgid "My IP"
3258
  msgstr "Il mio IP"
3259
 
3260
- #: admin/cerber-dashboard.php:5331
3261
  msgid "Analytics"
3262
  msgstr "Analitica"
3263
 
3264
- #: admin/cerber-dashboard.php:5380
3265
  msgid "Manage Settings"
3266
  msgstr "Gestire Impostazioni"
3267
 
3268
  #: cerber-settings.php:1047 cerber-settings.php:1445 cerber-settings.php:1473
3269
- #: admin/cerber-dashboard.php:5382
3270
  msgid "Diagnostic Log"
3271
  msgstr "Log diagnostico"
3272
 
3273
- #: cerber-common.php:1660
3274
  msgid "User deleted"
3275
  msgstr "Utente eliminato"
3276
 
3277
- #: cerber-common.php:1768
3278
  msgid "Email address is prohibited"
3279
  msgstr "L'indirizzo e-mail è vietato"
3280
 
@@ -3382,15 +3367,15 @@ msgstr "Facendo clic sul pulsante qui sotto, verranno caricate le impostazioni p
3382
  msgid "To get the most out of WP Cerber, follow these steps:"
3383
  msgstr "Per ottenere il massimo da WP Cerber, segui questi passi:"
3384
 
3385
- #: cerber-common.php:1783
3386
  msgid "IP whitelisted"
3387
  msgstr "IP inserito in lista bianca"
3388
 
3389
- #: admin/cerber-dashboard.php:4504
3390
  msgid "My requests"
3391
  msgstr "Le mie richieste"
3392
 
3393
- #: admin/cerber-dashboard.php:3830
3394
  msgid "Log into the website"
3395
  msgstr "Accedi al sito web"
3396
 
@@ -3399,15 +3384,15 @@ msgstr "Accedi al sito web"
3399
  msgid "WP Cerber Security, Anti-spam & Malware Scan"
3400
  msgstr "WP Cerber Security, Antispam & Malware Scansione"
3401
 
3402
- #: cerber-common.php:1708 cerber-common.php:1907
3403
  msgid "Probing for vulnerable code"
3404
  msgstr "Sondo per codice PHP vulnerabile"
3405
 
3406
- #: cerber-load.php:6043
3407
  msgid "Your IP address %s has been added to the White IP Access List"
3408
  msgstr "Il tuo indirizzo IP %s è stato aggiunto alla lista di accesso IP bianca"
3409
 
3410
- #: admin/cerber-users.php:973
3411
  msgid "Search for IP address"
3412
  msgstr "Cerca l'indirizzo IP"
3413
 
@@ -3435,11 +3420,11 @@ msgstr "Non registrare questi Agenti-Utenti"
3435
  msgid "Specify User-Agents to exclude requests from logging. One item per line."
3436
  msgstr "Specificare gli Agenti-Utenti da escludere dalla registrazione delle richieste. Una voce per riga."
3437
 
3438
- #: admin/cerber-dashboard.php:4622
3439
  msgid "Unknown Google's bot"
3440
  msgstr "Bot de Google inconnu"
3441
 
3442
- #: cerber-common.php:1774
3443
  msgid "IP address is not allowed"
3444
  msgstr "L'indirizzo IP non è consentito"
3445
 
@@ -3476,7 +3461,7 @@ msgstr "Rendu différé"
3476
  msgid "Defer rendering the custom login page"
3477
  msgstr "Différer le rendu de la page de connexion personnalisée"
3478
 
3479
- #: cerber-load.php:395
3480
  msgid "You have only one login attempt remaining."
3481
  msgstr "Hai un solo tentativo rimanente."
3482
 
@@ -3504,15 +3489,15 @@ msgstr "Accedi da un altro browser o dispositivo"
3504
  msgid "If the number of concurrent user sessions is greater"
3505
  msgstr "Se il numero di sessioni utente contemporanee è maggiore"
3506
 
3507
- #: admin/cerber-dashboard.php:5668
3508
  msgid "These features are available in the professional version of WP Cerber."
3509
  msgstr "Queste funzionalità sono disponibili in una versione professionale del plug-in."
3510
 
3511
- #: cerber-common.php:1689
3512
  msgid "User session terminated"
3513
  msgstr "Sessione utente terminata"
3514
 
3515
- #: cerber-common.php:1775
3516
  msgid "Limit on concurrent user sessions"
3517
  msgstr "Limite di sessioni utente contemporanee"
3518
 
@@ -3536,19 +3521,19 @@ msgstr "Nota importante se hai un plugin di caching in atto"
3536
  msgid "To avoid false positives and get better anti-spam performance, please clear the plugin cache."
3537
  msgstr "Per evitare falsi positivi e ottenere migliori prestazioni anti-spam, cancella la cache del plugin."
3538
 
3539
- #: cerber-common.php:1728
3540
  msgid "API request authorized"
3541
  msgstr "Richiesta API autorizzata"
3542
 
3543
- #: cerber-common.php:1729
3544
  msgid "API request authorization failed"
3545
  msgstr "Autorizzazione richiesta API fallita"
3546
 
3547
- #: cerber-common.php:1713
3548
  msgid "Request to XML-RPC API denied"
3549
  msgstr "Richiesta a XML-RPC API negata"
3550
 
3551
- #: cerber-common.php:1776
3552
  msgid "Invalid cookies"
3553
  msgstr "Cookie non validi"
3554
 
@@ -3581,7 +3566,7 @@ msgid "Use custom URL for the WordPress comment form"
3581
  msgstr "Utilizzare l'URL personalizzato per il modulo di commento di WordPress"
3582
 
3583
  #: cerber-settings.php:461 cerber-settings.php:1295
3584
- #: admin/cerber-dashboard.php:2060
3585
  msgid "Logged-in users"
3586
  msgstr "Utenti connessi"
3587
 
@@ -3641,7 +3626,7 @@ msgstr "Disabilita reCAPTCHA per gli utenti connessi"
3641
  msgid "Use global policies"
3642
  msgstr "Usare politiche globali"
3643
 
3644
- #: cerber-load.php:398
3645
  msgid "You have %d login attempt remaining."
3646
  msgid_plural "You have %d login attempts remaining."
3647
  msgstr[0] "Hai %d tentativo di login rimanente."
@@ -3651,11 +3636,11 @@ msgstr[1] "Hai %d tentativi di login rimanenti."
3651
  msgid "Display this message if an attempt to log in is denied because the limit on concurrent user sessions has been reached"
3652
  msgstr "Visualizza questo messaggio se un tentativo di accesso è negato perché è stato raggiunto il limite delle sessioni utente concorrenti"
3653
 
3654
- #: admin/cerber-dashboard.php:5290
3655
  msgid "Role-Based"
3656
  msgstr "Basato sui Ruoli"
3657
 
3658
- #: cerber-common.php:1725
3659
  msgid "User application password created"
3660
  msgstr "Création mot de passe pour l'application utilisateur"
3661
 
@@ -3671,52 +3656,52 @@ msgstr "Salvare le intestazioni di risposta"
3671
  msgid "Save response cookies"
3672
  msgstr "Salvare i cookie di risposta"
3673
 
3674
- #: cerber-load.php:8098
3675
  msgid "We need your support to keep moving forward"
3676
  msgstr "Per andare avanti abbiamo bisogno del tuo sostegno"
3677
 
3678
- #: cerber-load.php:8100
3679
  msgid "By sharing your unique opinion on WP Cerber, you help the engineers behind the plugin make greater progress and help other professionals find the right software. You can leave your review on one of the following websites. Feel free to use your native language. Thanks!"
3680
  msgstr "Condividendo la tua opinione unica su WP Cerber, aiuti gli ingegneri dietro il plugin a fare maggiori progressi e aiuti altri professionisti a trovare il software giusto. Puoi lasciare la tua recensione su uno dei seguenti siti web. Sentiti libero di usare la tua lingua madre. Grazie!"
3681
 
3682
- #: nexus/cerber-nexus-master.php:286
3683
  msgid "Secret Access Token is invalid"
3684
  msgstr "Il token di accesso segreto non è valido"
3685
 
3686
- #: admin/cerber-dashboard.php:227
3687
  msgid "Click the IP address to see its activity"
3688
  msgstr "Clicca sull'indirizzo IP per vedere la sua attività"
3689
 
3690
- #: admin/cerber-dashboard.php:1079
3691
  msgid "Login issues"
3692
  msgstr "Problemi di accesso"
3693
 
3694
- #: admin/cerber-dashboard.php:1096 admin/cerber-dashboard.php:4499
3695
  msgid "Non-authenticated"
3696
  msgstr "Non autenticato"
3697
 
3698
- #: admin/cerber-dashboard.php:1366 admin/cerber-dashboard.php:1789
3699
- #: admin/cerber-dashboard.php:2646 admin/cerber-admin.php:1333
3700
  msgid "No activity has been logged yet."
3701
  msgstr "Nessuna attività è stata ancora registrata."
3702
 
3703
- #: admin/cerber-dashboard.php:2662
3704
  msgid "Users' Activity"
3705
  msgstr "Attività degli Utenti"
3706
 
3707
- #: admin/cerber-dashboard.php:2682
3708
  msgid "Malicious Activity"
3709
  msgstr "Attività Dannosa"
3710
 
3711
- #: admin/cerber-dashboard.php:4496
3712
  msgid "Suspicious requests"
3713
  msgstr "Richieste sospette"
3714
 
3715
- #: admin/cerber-dashboard.php:1095 admin/cerber-dashboard.php:4498
3716
  msgid "Users"
3717
  msgstr "Utenti"
3718
 
3719
- #: cerber-common.php:1778
3720
  msgid "Forbidden URL"
3721
  msgstr "URL proibito"
3722
 
@@ -3780,19 +3765,19 @@ msgstr "Non rivelare nomi utente ed e-mail inesistenti nel messaggio di tentativ
3780
  msgid "Deny authentication through wp-login.php"
3781
  msgstr "Negare l'autenticazione attraverso wp-login.php"
3782
 
3783
- #: cerber-common.php:1777
3784
  msgid "Invalid cookies cleared"
3785
  msgstr "Cookie non validi eliminati"
3786
 
3787
- #: cerber-load.php:1843
3788
  msgid "If we have found your account, we have sent the confirmation link to the email address on the account."
3789
  msgstr "In caso abbiamo trovato il tuo account, abbiamo inviato il link di conferma all'indirizzo e-mail presente nell'account."
3790
 
3791
- #: cerber-load.php:6001 cerber-common.php:520
3792
  msgid "WP Cerber requires PHP %s or higher. You are running %s."
3793
  msgstr "Il Cerber WP richiede PHP %s o superiore. Stai utilizzando"
3794
 
3795
- #: cerber-load.php:6005 cerber-common.php:524
3796
  msgid "WP Cerber requires WordPress %s or higher. You are running %s."
3797
  msgstr "Il Cerber WP richiede WordPress %s o superiore. Stai utilizzando"
3798
 
@@ -3872,11 +3857,11 @@ msgstr "Eliminare i file accessibili pubblicamente con le seguenti estensioni"
3872
  msgid "Detecting injected files in the WordPress uploads directory"
3873
  msgstr "Rileva i files infettati nella directory uploads di WordPress"
3874
 
3875
- #: cerber-common.php:1779
3876
  msgid "Executable file extension detected"
3877
  msgstr "È stata rilevata l'estensione di un file eseguibile"
3878
 
3879
- #: cerber-common.php:1780
3880
  msgid "Filename is prohibited"
3881
  msgstr "Nome file non consentito"
3882
 
@@ -3956,7 +3941,7 @@ msgstr "Saltare i file con le seguenti estensioni"
3956
  msgid "These policies are automatically enforced at the end of every scan based on its results. All affected files are moved to the quarantine."
3957
  msgstr "Queste politiche sono automaticamente applicate alla fine di ogni scansione in base ai risultati. Tutti i file interessati vengono spostati in quarantena."
3958
 
3959
- #: admin/cerber-dashboard.php:3277
3960
  msgid "This scan report was generated by the previous version of WP Cerber. Please run a new scan to get consistent and accurate results."
3961
  msgstr "Questo repord di scansione è stato generato da una versione precedente di WP Cerber. Esegui una nuova scansione per ottenere risultati più attendibili ed accurati."
3962
 
@@ -3986,11 +3971,11 @@ msgctxt "This is a risk level."
3986
  msgid "Medium"
3987
  msgstr "Medio"
3988
 
3989
- #: cerber-load.php:4670
3990
  msgid "If you believe you should be able to perform this request, please let us know."
3991
  msgstr "Se credi di essere in grado soddisfare questa richiesta ti preghiamo di farcelo sapere."
3992
 
3993
- #: cerber-load.php:4669
3994
  msgid "Your request looks suspiciously similar to automated requests from spam posting software or it has been denied by a security policy configured by the website administrator."
3995
  msgstr "La tua richiesta e sospettosamente simile a richieste automatiche originate da software che genera spam o è stata bloccata da una regola configurata dall'amministratore del sito web "
3996
 
@@ -4006,23 +3991,23 @@ msgstr "Disattivare reCAPTCHA per gli indirizzi IP nell'elenco di accesso IP bia
4006
  msgid "Executable files are not supported. Please upload a ZIP archive."
4007
  msgstr "Non vengono supportati i file eseguibili. Per favore caricare un archivio ZIP."
4008
 
4009
- #: cerber-load.php:756
4010
  msgid "Human verification failed."
4011
  msgstr "La verifica umana è fallita."
4012
 
4013
- #: cerber-common.php:1794
4014
  msgid "Logged out everywhere"
4015
  msgstr "Disconnesso ovunque"
4016
 
4017
- #: cerber-common.php:1693
4018
  msgid "Password reset request denied"
4019
  msgstr "Richiesta reimpostazione password negata"
4020
 
4021
- #: cerber-common.php:1796
4022
  msgid "reCAPTCHA verified"
4023
  msgstr "reCAPTCHA verificato"
4024
 
4025
- #: cerber-load.php:3340
4026
  msgid "Sorry, password reset is not allowed for this user."
4027
  msgstr "Spiacente, la reimpostazione della password non è consentita per questo utente."
4028
 
@@ -4034,20 +4019,20 @@ msgstr "Questo tipo di file non viene supportato. Si prega di caricare un archiv
4034
  msgid "Use less restrictive security filters for IP addresses in the White IP Access List"
4035
  msgstr "Utilizzare filtri di sicurezza meno restrittivi per gli indirizzi IP nella lista di accesso IP bianco"
4036
 
4037
- #: cerber-common.php:1724
4038
  msgid "User application password updated"
4039
  msgstr "Password dell'applicazione utente aggiornata"
4040
 
4041
- #: cerber-common.php:1766
4042
  msgid "User blocked by administrator"
4043
  msgstr "Utente bloccato dall'amministratore"
4044
 
4045
  #. %s is the name of a website administrator who terminated the session.
4046
- #: cerber-common.php:1691
4047
  msgid "User session terminated by %s"
4048
  msgstr "Sessione utente chiusa da %s"
4049
 
4050
- #: cerber-common.php:1767
4051
  msgid "Username is prohibited"
4052
  msgstr "Il nome utente è vietato"
4053
 
@@ -4059,57 +4044,57 @@ msgstr "Visualizzare tutte le richieste REST API"
4059
  msgid "View denied REST API requests"
4060
  msgstr "Visualizzare le richieste REST API negate"
4061
 
4062
- #: cerber-load.php:4883 cerber-load.php:4884
4063
  msgid "A new activity has occurred"
4064
  msgstr "Si è verificata una nuova attività"
4065
 
4066
- #: admin/cerber-dashboard.php:2955
4067
  msgid "Do not send alerts after this date"
4068
  msgstr "Non inviare avvisi dopo questa data"
4069
 
4070
- #: admin/cerber-dashboard.php:2995
4071
  msgid "Documentation"
4072
  msgstr "Documentazion"
4073
 
4074
- #: admin/cerber-dashboard.php:2982
4075
  msgid "Email alerts will be sent to these emails:"
4076
  msgstr "Gli avvisi e-mail saranno inviati a questi indirizzi:"
4077
 
4078
- #: admin/cerber-dashboard.php:2982
4079
  msgid "Email alerts will be sent to this email:"
4080
  msgstr "Gli avvisi e-mail saranno inviati a questo indirizzo:"
4081
 
4082
- #: admin/cerber-dashboard.php:2960
4083
  msgid "Ignore global rate limits"
4084
  msgstr "Ignorare i limiti di quota globali"
4085
 
4086
- #: admin/cerber-dashboard.php:2946
4087
  msgid "Maximum number of alerts to send"
4088
  msgstr "Numero massimo di avvisi da inviare"
4089
 
4090
- #: admin/cerber-dashboard.php:2990
4091
  msgid "Mobile alerts are not configured"
4092
  msgstr "Gli avvisi mobile non sono configurati"
4093
 
4094
  #. %s is the name of a mobile device.
4095
- #: admin/cerber-dashboard.php:2987
4096
  msgid "Mobile alerts will be sent to %s"
4097
  msgstr "Gli avvisi mobile saranno inviati a %s"
4098
 
4099
- #: admin/cerber-dashboard.php:2951
4100
  msgid "No limit"
4101
  msgstr "Nessun limite"
4102
 
4103
- #: admin/cerber-dashboard.php:5732
4104
  msgid "OK"
4105
  msgstr "OK"
4106
 
4107
- #: admin/cerber-dashboard.php:2997
4108
  msgid "Optional alert limits"
4109
  msgstr "Limiti di avvisi opzionali"
4110
 
4111
  #. %s is the name of a website administrator who changed the password.
4112
- #: cerber-common.php:1687
4113
  msgid "Password changed by %s"
4114
  msgstr "Password modificata da %s"
4115
 
@@ -4117,31 +4102,31 @@ msgstr "Password modificata da %s"
4117
  msgid "Spam protection for registration, comment, and other forms on the website"
4118
  msgstr "Protezione antispam per la registrazione, i commenti e altri moduli sul sito web"
4119
 
4120
- #: cerber-common.php:1810
4121
  msgid "Unknown label"
4122
  msgstr "Etichetta sconosciuta"
4123
 
4124
  #. %s is the name of a website administrator who created the password.
4125
- #: cerber-common.php:1727
4126
  msgid "User application password created by %s"
4127
  msgstr "Password applicazione utente creata da %s"
4128
 
4129
- #: cerber-common.php:1730
4130
  msgid "User application password deleted"
4131
  msgstr "Password applicazione utente cancellata"
4132
 
4133
  #. %s is the name of a website administrator who deleted the password.
4134
- #: cerber-common.php:1732
4135
  msgid "User application password deleted by %s"
4136
  msgstr "Password applicazione utente eliminate da %s"
4137
 
4138
  #. %s is the name of a website administrator who created the user.
4139
- #: cerber-common.php:1658
4140
  msgid "User created by %s"
4141
  msgstr "Utente creato da %s"
4142
 
4143
  #. %s is the name of a website administrator who deleted the user.
4144
- #: cerber-common.php:1662
4145
  msgid "User deleted by %s"
4146
  msgstr "Utente eliminato da %s"
4147
 
@@ -4153,3 +4138,55 @@ msgstr "Visualizzare eventi bot"
4153
  msgid "View reCAPTCHA events"
4154
  msgstr "Visualizzare eventi reCAPTCHA"
4155
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  msgid "Custom login URL"
45
  msgstr "URL di accesso personalizzato"
46
 
47
+ #: cerber-settings.php:289 admin/cerber-dashboard.php:2101
48
  msgid "Citadel mode"
49
  msgstr "Modalità Citadel"
50
 
56
  msgid "Duration"
57
  msgstr "Durata"
58
 
59
+ #: cerber-settings.php:310 admin/cerber-dashboard.php:5300
60
  msgid "Notifications"
61
  msgstr "Notifiche"
62
 
64
  msgid "Send notification to admin email"
65
  msgstr "Invia notifica all'email dell'amministratore"
66
 
67
+ #: admin/cerber-dashboard.php:5297 admin/cerber-tools.php:38
68
  #: admin/cerber-tools.php:49
69
  msgid "Access Lists"
70
  msgstr "Liste di accesso"
71
 
72
+ #: cerber-load.php:5698 cerber-settings.php:322
73
+ #: admin/cerber-dashboard.php:2142 admin/cerber-dashboard.php:5293
74
+ #: admin/cerber-users.php:1115
75
  msgid "Activity"
76
  msgstr "Attività"
77
 
78
+ #: admin/cerber-dashboard.php:5295
79
  msgid "Lockouts"
80
  msgstr "Bloccati"
81
 
82
+ #: cerber-load.php:5707
83
  msgid "IP"
84
  msgstr "IP"
85
 
86
+ #: admin/cerber-dashboard.php:948 admin/cerber-dashboard.php:1330
87
+ #: admin/cerber-dashboard.php:4060 admin/cerber-dashboard.php:4543
88
  msgid "Date"
89
  msgstr "Data"
90
 
91
+ #: admin/cerber-dashboard.php:951 admin/cerber-dashboard.php:1332
92
+ #: admin/cerber-dashboard.php:4548
93
  msgid "Local User"
94
  msgstr "Utente locale"
95
 
96
+ #: cerber-load.php:5715
97
  msgid "Username used"
98
  msgstr "Nome utente utilizzato"
99
 
100
+ #: cerber-common.php:1668
101
  msgid "Logged in"
102
  msgstr "Loggato"
103
 
104
+ #: cerber-common.php:1669
105
  msgid "Logged out"
106
  msgstr "Disconnesso"
107
 
108
+ #: cerber-common.php:1670
109
  msgid "Login failed"
110
  msgstr "Accesso fallito"
111
 
112
+ #: cerber-common.php:1673 admin/cerber-dashboard.php:1092
113
  msgid "IP blocked"
114
  msgstr "IP Bloccato"
115
 
116
+ #: cerber-common.php:1677
117
  msgid "Citadel activated!"
118
  msgstr "Citadel attivata!"
119
 
120
+ #: cerber-common.php:1754 admin/cerber-dashboard.php:1704
121
  msgid "Locked out"
122
  msgstr "Bloccato"
123
 
124
+ #: cerber-common.php:1756
125
  msgid "IP blacklisted"
126
  msgstr "IP blacklisted"
127
 
128
+ #: cerber-common.php:1690
129
  msgid "Password changed"
130
  msgstr "Password cambiata"
131
 
132
+ #: admin/cerber-dashboard.php:204 admin/cerber-dashboard.php:329
133
  msgid "Remove"
134
  msgstr "Rimuovi"
135
 
136
+ #: admin/cerber-dashboard.php:663
137
  msgid "Lockout for %s was removed"
138
  msgstr "Il blocco per %s è stato rimosso"
139
 
140
+ #: admin/cerber-dashboard.php:275 admin/cerber-dashboard.php:1611
141
+ #: admin/cerber-dashboard.php:1695 admin/cerber-dashboard.php:2099
142
  #: admin/cerber-tools.php:69
143
  msgid "White IP Access List"
144
  msgstr "White List degli indirizzi IP"
145
 
146
+ #: admin/cerber-dashboard.php:278 admin/cerber-dashboard.php:1614
147
+ #: admin/cerber-dashboard.php:1698 admin/cerber-dashboard.php:2100
148
  #: admin/cerber-tools.php:70
149
  msgid "Black IP Access List"
150
  msgstr "Black List degli indirizzi IP"
151
 
152
+ #: admin/cerber-dashboard.php:335
153
  msgid "List is empty"
154
  msgstr "La lista è vuota"
155
 
156
+ #: cerber-load.php:4825
157
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
158
  msgstr "La modalità Citadel viene attivata dopo %d tentativi di accesso non riusciti in %d minuti."
159
 
160
+ #: admin/cerber-dashboard.php:2875 admin/cerber-dashboard.php:3403
161
  msgid "View Activity"
162
  msgstr "Vedi attività"
163
 
164
+ #: nexus/cerber-nexus.php:95 admin/cerber-dashboard.php:5366
165
+ #: admin/cerber-dashboard.php:5427 admin/cerber-tools.php:37
166
  #: admin/cerber-tools.php:48
167
  msgid "Settings"
168
  msgstr "Impostazioni"
169
 
170
+ #: admin/cerber-dashboard.php:1968
171
  msgid "Last login"
172
  msgstr "Ultimo login"
173
 
174
+ #: cerber-common.php:2083 nexus/cerber-slave-list.php:347
175
+ #: admin/cerber-dashboard.php:476 admin/cerber-dashboard.php:2073
176
+ #: admin/cerber-dashboard.php:2122
177
  msgid "Never"
178
  msgstr "Mai"
179
 
180
+ #: admin/cerber-dashboard.php:5784 admin/cerber-tools.php:59
181
  #: admin/cerber-admin.php:738 admin/cerber-admin.php:905
182
  msgid "Are you sure?"
183
  msgstr "Sei sicuro?"
184
 
185
+ #: cerber-settings.php:268 admin/cerber-dashboard.php:2506
186
  msgid "My site is behind a reverse proxy"
187
  msgstr "l mio sito è dietro un proxy inverso"
188
 
194
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
195
  msgstr "Per favore abilita Permalinks per utilizzare questa funzionalità. Configura le Impostazioni del Permalink diversamente dal Predefinito."
196
 
197
+ #: admin/cerber-dashboard.php:5296
198
  msgid "Main Settings"
199
  msgstr "Impostazioni Principali"
200
 
201
+ #: admin/cerber-dashboard.php:5581
202
  msgid "Help"
203
  msgstr "Aiuto"
204
 
206
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
207
  msgstr "Aumenta la durata del blocco a %s ore dopo %s blocchi nelle ultime %s ore"
208
 
209
+ #: cerber-load.php:388 admin/cerber-users.php:463
210
  msgid "You are not allowed to log in. Ask your administrator for assistance."
211
  msgstr "Non è consentito l'accesso. Chiedere assistenza all'amministratore."
212
 
213
+ #: admin/cerber-dashboard.php:214 admin/cerber-users.php:926
214
  msgid "Expires"
215
  msgstr "Scade"
216
 
217
+ #: admin/cerber-dashboard.php:242 admin/cerber-dashboard.php:2741
218
  msgid "No lockouts at the moment. The sky is clear."
219
  msgstr "Nessun blocco al momento. Il cielo è limpido."
220
 
221
+ #: admin/cerber-dashboard.php:285
222
  msgid "Your IP"
223
  msgstr "Il tuo IP"
224
 
225
+ #: cerber-load.php:4826
226
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
227
  msgstr "L'ultimo tentativo non riuscito è stato a %s dall'IP %s con accesso utente: %s."
228
 
229
+ #: cerber-load.php:5939
230
  msgid "Can't activate WP Cerber due to a database error."
231
  msgstr "Non è possibile attivare WP Cerber a causa di un errore nel database."
232
 
239
  msgid "days"
240
  msgstr "giorni"
241
 
242
+ #: admin/cerber-dashboard.php:2039
243
  msgid "Cerber Quick View"
244
  msgstr "Cerber Quick View"
245
 
255
  msgid "Attention! You have changed the login URL! The new login URL is"
256
  msgstr "Attenzione! Hai cambiato l'URL di accesso! Il nuovo URL di accesso è"
257
 
258
+ #: admin/cerber-dashboard.php:1967
259
  msgid "Comments"
260
  msgstr "Commenti"
261
 
262
+ #: cerber-load.php:4857
 
 
 
 
263
  msgid "Number of active lockouts"
264
  msgstr "Numero di blocchi attivi"
265
 
266
+ #: cerber-load.php:4959
 
 
 
 
267
  msgid "This message was sent by"
268
  msgstr "Questo messaggio è stato inviato da"
269
 
270
+ #: admin/cerber-dashboard.php:88 admin/cerber-dashboard.php:5478
271
  msgid "Tools"
272
  msgstr "Strumenti"
273
 
319
  msgid "Error while parsing file"
320
  msgstr "Errore nell'interpretazione del file "
321
 
322
+ #: admin/cerber-dashboard.php:212 admin/cerber-dashboard.php:1328
323
  msgid "Hostname"
324
  msgstr "Nome Host"
325
 
326
+ #: admin/cerber-dashboard.php:597
327
  msgid "unknown"
328
  msgstr "sconosciuto"
329
 
330
+ #: admin/cerber-dashboard.php:2078 admin/cerber-dashboard.php:2108
331
  msgid "active"
332
  msgstr "attiva"
333
 
334
+ #: admin/cerber-dashboard.php:2078
335
  msgid "deactivate"
336
  msgstr "disattiva"
337
 
338
+ #: admin/cerber-dashboard.php:2082
339
  msgid "not active"
340
  msgstr "Non Attivo"
341
 
342
+ #: admin/cerber-dashboard.php:2085 admin/cerber-dashboard.php:2103
343
  msgid "disabled"
344
  msgstr "Disabilitato"
345
 
346
+ #: admin/cerber-dashboard.php:2091
347
  msgid "failed attempts"
348
  msgstr "Tentativi falliti"
349
 
350
+ #: admin/cerber-dashboard.php:2091 admin/cerber-dashboard.php:2092
351
  msgid "in 24 hours"
352
  msgstr "in 24 ore"
353
 
354
+ #: admin/cerber-dashboard.php:2091 admin/cerber-dashboard.php:2092
355
  msgid "view all"
356
  msgstr "guarda tutto"
357
 
358
+ #: admin/cerber-dashboard.php:2092
359
  msgid "lockouts"
360
  msgstr "Bloccati"
361
 
362
+ #: admin/cerber-dashboard.php:2094
363
  msgid "Lockouts at the moment"
364
  msgstr "Bloccati al momento"
365
 
366
+ #: admin/cerber-dashboard.php:2095
367
  msgid "Last lockout"
368
  msgstr "Ultimo bloccato"
369
 
370
+ #: admin/cerber-dashboard.php:2099 admin/cerber-dashboard.php:2100
371
+ #: admin/cerber-dashboard.php:3162
372
  msgid "entry"
373
  msgid_plural "entries"
374
  msgstr[0] "accesso"
382
  msgid "New version is available"
383
  msgstr "Nuova versione disponibile"
384
 
385
+ #: cerber-load.php:4799
386
  msgid "WP Cerber notify"
387
  msgstr "Notifica di WP Cerber"
388
 
389
+ #: cerber-load.php:4823
390
  msgid "Citadel mode is activated"
391
  msgstr "Citadel mode attivata"
392
 
393
+ #: cerber-load.php:4904
394
  msgid "New Custom login URL"
395
  msgstr "Nuovo URL di accesso personalizzato"
396
 
402
  msgid "Write failed login attempts to the file"
403
  msgstr "Scrivi i tentativi di accesso non riusciti nel file"
404
 
405
+ #: admin/cerber-dashboard.php:2874
406
  msgid "Deactivate"
407
  msgstr "Disattivato"
408
 
409
+ #: cerber-load.php:4861 admin/cerber-dashboard.php:215
410
  msgid "Reason"
411
  msgstr "Ragione"
412
 
413
+ #: admin/cerber-dashboard.php:1762
414
  msgid "Add IP to the Black List"
415
  msgstr "Aggiungi IP alla Black List"
416
 
417
+ #: cerber-common.php:1906
418
  msgid "Attempt to access"
419
  msgstr "Tentativi di accesso"
420
 
421
+ #: cerber-common.php:1905
422
  msgid "Limit on login attempts is reached"
423
  msgstr "È stato raggiunto il limite dei tentativi di accesso"
424
 
425
+ #: cerber-load.php:4860
426
  msgid "Last lockout was added: %s for IP %s"
427
  msgstr "L'ultimo blocco è stato aggiunto: %s per IP %s"
428
 
429
+ #: admin/cerber-dashboard.php:5298
430
  msgid "Hardening"
431
  msgstr "Rendi sicuro"
432
 
433
+ #: admin/cerber-dashboard.php:1734
434
  msgid "Abuse email:"
435
  msgstr "Email di abuso:"
436
 
466
  msgid "Disable REST API"
467
  msgstr "Disabilita REST API"
468
 
469
+ #: cerber-load.php:4893 cerber-load.php:5981
470
  msgid "WP Cerber is now active and has started protecting your site"
471
  msgstr "WP Cerber è attivo e ha iniziato a proteggere il tuo sito"
472
 
473
+ #: admin/cerber-dashboard.php:216 admin/cerber-users.php:929
474
  #: admin/cerber-admin.php:774 admin/cerber-admin.php:929
475
  msgid "Action"
476
  msgstr "Azione"
477
 
478
+ #: admin/cerber-dashboard.php:5630
479
  msgid "Incorrect IP address or IP range"
480
  msgstr "Indirizzo IP o Range IP non corretto "
481
 
482
+ #: admin/cerber-dashboard.php:2890
483
  msgid "Settings saved"
484
  msgstr "Impostazioni salvate"
485
 
486
+ #: admin/cerber-dashboard.php:1740
487
  msgid "Network:"
488
  msgstr "Rete"
489
 
490
+ #: admin/cerber-dashboard.php:1756
491
  msgid "Add network to the Black List"
492
  msgstr "Aggiungi rete alla Black List"
493
 
494
+ #: admin/cerber-dashboard.php:2873
495
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
496
  msgstr "Attenzione! La modalità Citadel è attiva. Nessuno è in grado di effettuare il login."
497
 
498
+ #: cerber-whois.php:241 cerber-whois.php:272 cerber-common.php:1930
499
+ #: nexus/cerber-slave-list.php:333 admin/cerber-dashboard.php:457
500
+ #: admin/cerber-dashboard.php:4213 admin/cerber-dashboard.php:4816
501
  msgid "Unknown"
502
  msgstr "Sconosciuto"
503
 
504
+ #: cerber-load.php:743 cerber-load.php:756 cerber-load.php:764
505
+ #: cerber-load.php:1112 cerber-load.php:1973 cerber-load.php:2296
506
+ #: cerber-load.php:3407 cerber-common.php:455 cerber-common.php:555
507
+ #: cerber-common.php:560 cerber-common.php:566 cerber-common.php:570
508
  #: nexus/cerber-nexus-slave.php:203 nexus/cerber-nexus-slave.php:214
509
  #: admin/cerber-admin-settings.php:667 admin/cerber-admin-settings.php:687
510
  #: admin/cerber-admin-settings.php:794 admin/cerber-admin.php:875
511
  msgid "ERROR:"
512
  msgstr "ERRORE:"
513
 
514
+ #: cerber-load.php:778
515
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
516
  msgstr "Verifica fallita. Fai clic sulla casella quadrata nel blocco reCAPTCHA di seguito."
517
 
518
+ #: cerber-load.php:1953
519
  msgid "Username is not allowed. Please choose another one."
520
  msgstr "Non è consentito utilizzare questo nome utente. Sceglierne un altro."
521
 
522
+ #: cerber-load.php:4852
523
  msgid "unspecified"
524
  msgstr "non specificato"
525
 
526
+ #: cerber-load.php:4855
527
  msgid "Number of lockouts is increasing"
528
  msgstr "Numero di blocchi in aumento"
529
 
530
+ #: cerber-load.php:4864
531
  msgid "View activity for this IP"
532
  msgstr "Vedi attività per questo IP"
533
 
534
+ #: cerber-load.php:4868 cerber-load.php:4870
535
  msgid "A new version of WP Cerber is available to install"
536
  msgstr "È disponibile una nuova versione di WP Cerber"
537
 
538
+ #: cerber-load.php:4869
539
  msgid "Hi!"
540
  msgstr "Ciao!"
541
 
542
+ #: cerber-load.php:4872 cerber-load.php:4883 nexus/cerber-slave-list.php:44
543
  msgid "Website"
544
  msgstr "Sito web"
545
 
546
+ #: cerber-load.php:4875 cerber-load.php:4876
547
  msgid "The WP Cerber security plugin has been deactivated"
548
  msgstr "Il plugin di sicurezza WP Cerber è stato disattivato"
549
 
550
+ #: cerber-load.php:4878
551
  msgid "Not logged in"
552
  msgstr "Non loggato"
553
 
554
+ #: cerber-load.php:4884
555
  msgid "By user"
556
  msgstr "Dall'Utente "
557
 
558
+ #: cerber-load.php:4885
559
  msgid "From IP address"
560
  msgstr "Dall'indirizzo IP"
561
 
562
+ #: cerber-load.php:4888
563
  msgid "From country"
564
  msgstr "Dalla Nazione"
565
 
566
+ #: cerber-load.php:4892
567
  msgid "The WP Cerber security plugin is now active"
568
  msgstr "Il plugin di protezione WP Cerber è attivo"
569
 
570
+ #: cerber-load.php:5994
571
  msgid "Import settings"
572
  msgstr "Importa impostazioni"
573
 
620
  msgid "Know more"
621
  msgstr "Per saperne di più"
622
 
623
+ #: cerber-common.php:1661
624
  msgid "User created"
625
  msgstr "Utente creato"
626
 
627
+ #: cerber-common.php:1664
628
  msgid "User registered"
629
  msgstr "Utente registrato"
630
 
631
+ #: cerber-common.php:1701 cerber-common.php:1803
632
  msgid "reCAPTCHA verification failed"
633
  msgstr "Verifica reCAPTCHA fallita"
634
 
635
+ #: cerber-common.php:1702 cerber-common.php:1804
636
  msgid "reCAPTCHA settings are incorrect"
637
  msgstr "le impostazioni reCAPTCHA non sono corrette"
638
 
639
+ #: cerber-common.php:1706 cerber-common.php:1907
640
  msgid "Attempt to access prohibited URL"
641
  msgstr "Tentativo di accesso ad URL proibita"
642
 
643
+ #: cerber-common.php:1708 cerber-common.php:1909
644
  msgid "Attempt to log in with prohibited username"
645
  msgstr "Tentativo di accesso con username proibito"
646
 
676
  msgid "Enable reCAPTCHA for WooCommerce login form"
677
  msgstr "Attiva reCAPTCHA per il modulo di accesso WooCommerce"
678
 
679
+ #: cerber-common.php:1703 cerber-common.php:1805
680
  msgid "Request to the Google reCAPTCHA service failed"
681
  msgstr "Richiesta al servizio Google reCAPTCHA non riuscita"
682
 
683
+ #: admin/cerber-dashboard.php:1061 admin/cerber-dashboard.php:1072
684
+ #: admin/cerber-dashboard.php:1085 admin/cerber-dashboard.php:2744
685
+ #: admin/cerber-dashboard.php:4608
686
  msgid "View all"
687
  msgstr "Vedi tutto"
688
 
689
+ #: admin/cerber-dashboard.php:2752
690
  msgid "Recently locked out IP addresses"
691
  msgstr "Indirizzi IP bloccati di recente"
692
 
698
  msgid "NO, maybe later"
699
  msgstr "NO, forse più tardi"
700
 
701
+ #: admin/cerber-dashboard.php:60 admin/cerber-dashboard.php:2141
702
+ #: admin/cerber-dashboard.php:3184 admin/cerber-dashboard.php:5292
703
  msgid "Dashboard"
704
  msgstr "Bacheca"
705
 
711
  msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
712
  msgstr "Consenti a WP Cerber di inviare indirizzi IP dannosi al Cerber Lab. Questo aiuta il team a sviluppare nuovi algoritmi per WP Cerber che difenderanno WordPress da nuove minacce e botnet che nascono ogni giorno. Puoi disattivare l'invio delle impostazioni del plugin in qualsiasi momento."
713
 
714
+ #: admin/cerber-dashboard.php:4059
715
  msgid "IP address"
716
  msgstr "Indirizzo IP"
717
 
718
+ #: admin/cerber-dashboard.php:952
719
  msgid "User login"
720
  msgstr "Login utente"
721
 
722
+ #: admin/cerber-dashboard.php:953 admin/cerber-dashboard.php:4065
723
  msgid "User ID"
724
  msgstr "ID Utente"
725
 
726
+ #: admin/cerber-dashboard.php:1362 admin/cerber-dashboard.php:4636
727
  msgid "Export"
728
  msgstr "Esporta"
729
 
730
+ #: admin/cerber-dashboard.php:1415
731
  msgid "Search for IP or username"
732
  msgstr "Ricerca per IP o Nome Utente"
733
 
734
+ #: admin/cerber-dashboard.php:1426
735
  msgid "Filter"
736
  msgstr "Filtro"
737
 
738
+ #: admin/cerber-dashboard.php:60
739
  msgid "Cerber Dashboard"
740
  msgstr "Pannello di Cerber"
741
 
742
+ #: admin/cerber-dashboard.php:88
743
  msgid "Cerber tools"
744
  msgstr "Strumenti di Cerber"
745
 
746
+ #: cerber-load.php:5711 admin/cerber-users.php:923
747
  msgid "User"
748
  msgstr "Utente"
749
 
750
+ #: cerber-load.php:5719
751
  msgid "Search string"
752
  msgstr "Stringa di ricerca"
753
 
784
  msgid "Not available"
785
  msgstr "Non disponibile"
786
 
787
+ #: cerber-common.php:1693
788
  msgid "Password reset requested"
789
  msgstr "Richiesto reset della password"
790
 
791
+ #: cerber-common.php:1910
792
  msgid "Limit on failed reCAPTCHA verifications is reached"
793
  msgstr "È stato raggiunto il limite delle verifiche reCAPTCHA fallite"
794
 
828
  msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
829
  msgstr "Nella modalità Citadel nessuno è in grado di accedere, tranne i gli indirizzi IP presenti nell'elenco della White List. Le sessioni utente attive non saranno interessate."
830
 
831
+ #: admin/cerber-dashboard.php:949 admin/cerber-dashboard.php:1331
832
  msgid "Event"
833
  msgstr "Evento"
834
 
835
+ #: cerber-common.php:388
836
  msgid "Spam comments denied"
837
  msgstr "Commenti spam negati"
838
 
839
+ #: cerber-common.php:390
840
  msgid "Malicious IP addresses detected"
841
  msgstr "Rilevati indirizzi IP malevoli"
842
 
843
+ #: cerber-common.php:391
844
  msgid "Lockouts occurred"
845
  msgstr "Blocchi avvenuti"
846
 
847
+ #: cerber-load.php:1932 cerber-load.php:1938 cerber-load.php:1943
848
+ #: cerber-load.php:1963 cerber-load.php:1968
849
  msgid "You are not allowed to register."
850
  msgstr "Non è consentito registrarsi."
851
 
852
+ #: cerber-common.php:1678
853
  msgid "Spam comment denied"
854
  msgstr "Il commento spam è stato negato"
855
 
856
+ #: cerber-common.php:1711
857
  msgid "Attempt to log in denied"
858
  msgstr "Tentativo di accesso negato"
859
 
860
+ #: cerber-common.php:1712
861
  msgid "Attempt to register denied"
862
  msgstr "Tentativo di registrazione negato"
863
 
864
+ #: cerber-common.php:385
865
  msgid "Malicious activities mitigated"
866
  msgstr "Attività dannose attenuate"
867
 
877
  msgid "Protect registration form with bot detection engine"
878
  msgstr "Proteggi il modulo di registrazione con il motore di rilevazione dei bot"
879
 
880
+ #: admin/cerber-dashboard.php:5482
881
  msgid "Diagnostic"
882
  msgstr "Diagnostica"
883
 
884
+ #: admin/cerber-dashboard.php:5485
885
  msgid "License"
886
  msgstr "Licenza"
887
 
888
+ #: cerber-load.php:2296
889
  msgid "Sorry, human verification failed."
890
  msgstr "Spiacenti, la verifica umana è fallita."
891
 
892
+ #: cerber-common.php:1911
893
  msgid "Bot activity is detected"
894
  msgstr "Attività Bot rilevata"
895
 
909
  msgid "Move spam comments to trash after"
910
  msgstr "Sposta i commenti spam nel cestino dopo"
911
 
912
+ #: cerber-common.php:1679
913
  msgid "Spam form submission denied"
914
  msgstr "L'invio del form contenente spam è stato negato"
915
 
929
  msgid "Use less restrictive policies (allow AJAX)"
930
  msgstr "Usa regole meno restrittive (Permetti AJAX)"
931
 
932
+ #: admin/cerber-dashboard.php:213 admin/cerber-dashboard.php:1329
933
  msgid "Country"
934
  msgstr "Nazione"
935
 
936
+ #: admin/cerber-dashboard.php:67
937
  msgid "Cerber Security Rules"
938
  msgstr "Regole di Sicurezza di Cerber"
939
 
940
+ #: admin/cerber-dashboard.php:67 admin/cerber-dashboard.php:5409
941
  msgid "Security Rules"
942
  msgstr "Regole di Sicurezza"
943
 
944
+ #: admin/cerber-dashboard.php:1969
945
  msgid "Failed login attempts"
946
  msgstr "Tentivi di accesso falliti"
947
 
948
+ #: admin/cerber-dashboard.php:1893 admin/cerber-dashboard.php:1970
949
  msgid "Registered"
950
  msgstr "Registrato"
951
 
952
+ #: admin/cerber-dashboard.php:2017 admin/cerber-users.php:52
953
+ #: admin/cerber-users.php:1082
954
  msgid "You"
955
  msgstr "Tu"
956
 
957
+ #: cerber-common.php:389
958
  msgid "Spam form submissions denied"
959
  msgstr "Tentativi di immissione spam negati "
960
 
961
+ #: cerber-load.php:4895 cerber-load.php:5985
962
  msgid "Getting Started Guide"
963
  msgstr "Guida introduttiva"
964
 
965
+ #: admin/cerber-dashboard.php:5411
966
  msgid "Countries"
967
  msgstr "Paesi"
968
 
969
+ #: admin/cerber-dashboard.php:3788
970
  msgid "Permitted for one country"
971
  msgid_plural "Permitted for %d countries"
972
  msgstr[0] "Permesso per un paese "
973
  msgstr[1] "Permesso per %d paesi"
974
 
975
+ #: admin/cerber-dashboard.php:3799
976
  msgid "No rule"
977
  msgstr "Nessuna regola"
978
 
979
+ #: admin/cerber-dashboard.php:3960
980
  msgid "Security rules have been updated"
981
  msgstr "Le regole di sicurezza sono state aggiornate"
982
 
985
  msgid "https://wpcerber.com"
986
  msgstr "https://wpcerber.com"
987
 
988
+ #: cerber-common.php:1680
989
  msgid "Form submission denied"
990
  msgstr "Invio form bloccato"
991
 
992
+ #: cerber-common.php:1681
993
  msgid "Comment denied"
994
  msgstr "Commento bloccato"
995
 
996
+ #: cerber-common.php:1717
997
  msgid "Request to REST API denied"
998
  msgstr "Richiesta di REST API bloccata"
999
 
1000
+ #: cerber-common.php:1752
1001
  msgid "Bot detected"
1002
  msgstr "Bot rilevato"
1003
 
1004
+ #: cerber-common.php:1753
1005
  msgid "Citadel mode is active"
1006
  msgstr "Modalità Citadel attiva"
1007
 
1008
+ #: cerber-common.php:1757
1009
  msgid "Malicious activity detected"
1010
  msgstr "Rilevata attività malevola"
1011
 
1012
+ #: cerber-common.php:1758
1013
  msgid "Blocked by country rule"
1014
  msgstr "Bloccata dalle regole del Paese"
1015
 
1016
+ #: cerber-common.php:1759
1017
  msgid "Limit reached"
1018
  msgstr "Limite raggiunto"
1019
 
1020
+ #: cerber-common.php:1760
1021
  msgid "Multiple suspicious activities"
1022
  msgstr "Attività sospette multiple"
1023
 
1024
+ #: cerber-common.php:1912
1025
  msgid "Multiple suspicious activities were detected"
1026
  msgstr "Attività sospette multiple sono state rilevate"
1027
 
1033
  msgid "Registration limit"
1034
  msgstr "Limite di Registrazione"
1035
 
 
 
 
 
1036
  #: cerber-settings.php:695
1037
  msgid "by date of registration"
1038
  msgstr "per data di registrazione"
1042
  msgstr "Whitelist Query\n"
1043
  ""
1044
 
1045
+ #: admin/cerber-dashboard.php:3768
1046
  msgid "Start typing here to find a country"
1047
  msgstr "Inizia a digitare qui per trovare un paese"
1048
 
1049
+ #: admin/cerber-dashboard.php:3883
1050
  msgid "Click on a country name to add it to the list of selected countries"
1051
  msgstr "Clicca sul nome del paese per aggiungerlo nella lista dei paesi selezionati"
1052
 
1053
+ #: admin/cerber-dashboard.php:3915
1054
  msgid "Submit forms"
1055
  msgstr "Trasmetti forms"
1056
 
1057
+ #: admin/cerber-dashboard.php:3916
1058
  msgid "Post comments"
1059
  msgstr "Inserisci commenti"
1060
 
1061
+ #: admin/cerber-dashboard.php:3914
1062
  msgid "Register on the website"
1063
  msgstr "Registrati al sito web"
1064
 
1065
+ #: admin/cerber-dashboard.php:3917
1066
  msgid "Use XML-RPC"
1067
  msgstr "Usa XML-RPC"
1068
 
1069
+ #: admin/cerber-dashboard.php:3918
1070
  msgid "Use REST API"
1071
  msgstr "Usa REST API\n"
1072
  ""
1079
  msgid "Mark it as spam"
1080
  msgstr "Segna come spam"
1081
 
1082
+ #: admin/cerber-dashboard.php:3185
1083
  msgid "Main settings"
1084
  msgstr "Impostazioni Principali"
1085
 
1091
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1092
  msgstr "Se si utilizza un plug-in di memorizzazione nella cache, è necessario aggiungere il nuovo URL di accesso all'elenco delle pagine da non memorizzare in cache."
1093
 
1094
+ #: cerber-load.php:4914
1095
  msgid "Weekly report"
1096
  msgstr "Report Settimanale"
1097
 
1098
+ #: cerber-load.php:4917 cerber-load.php:4925
1099
  msgid "To change reporting settings visit"
1100
  msgstr "Per cambiare le impostazioni del report visita"
1101
 
1102
+ #: cerber-load.php:4951
1103
  msgid "Your login page:"
1104
  msgstr "La tua pagina di login:"
1105
 
1106
+ #: cerber-load.php:4956
1107
  msgid "Your license is valid until"
1108
  msgstr "La tua licenza è valida sino al"
1109
 
1110
+ #: cerber-load.php:5062
1111
  msgid "Activity details"
1112
  msgstr "Dettaglio Attività"
1113
 
1115
  msgid "Click to send now"
1116
  msgstr "Clicca per spedire ora"
1117
 
1118
+ #: admin/cerber-dashboard.php:671
1119
  msgid "Email has been sent to"
1120
  msgstr "Una e-mail è stata spedita a"
1121
 
1122
+ #: admin/cerber-dashboard.php:674
1123
  msgid "Unable to send email to"
1124
  msgstr "Non riesco ad inviare l'email a"
1125
 
1126
+ #: admin/cerber-dashboard.php:3791
1127
  msgid "Not permitted for one country"
1128
  msgid_plural "Not permitted for %d countries"
1129
  msgstr[0] "Non permesso per un paese"
1130
  msgstr[1] "non permesso per %d paesi"
1131
 
1132
+ #: admin/cerber-dashboard.php:3887
1133
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1134
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1135
  msgstr "I paesi selezionati sono autorizzati ad %s, altri paesi non sono autorizzati ad"
1136
 
1137
+ #: admin/cerber-dashboard.php:3890
1138
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1139
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1140
  msgstr "I paesi selezionati non sono autorizzati ad %s, altri paesi sono autorizzati ad"
1141
 
1142
+ #: cerber-load.php:5050
1143
  msgid "Weekly Report"
1144
  msgstr "Report settimanale"
1145
 
1159
  msgid "Enable reporting"
1160
  msgstr "Abilita reporting"
1161
 
1162
+ #: cerber-load.php:4980
1163
  msgid "Your last sign-in was %s from %s"
1164
  msgstr "Il tuo ultimo accesso è stato %s da %s"
1165
 
1166
+ #: admin/cerber-dashboard.php:343
1167
  msgid "Optional comment for this entry"
1168
  msgstr "Commento opzionale per questa voce"
1169
 
1170
+ #: admin/cerber-dashboard.php:365
1171
  msgid "You cannot add your IP address or network"
1172
  msgstr "Non è possibile aggiungere il tuo indirizzo IP o rete"
1173
 
1175
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1176
  msgstr "Per specificare un pattern REGEX inserisci un pattern in mezzo a due barre (//) "
1177
 
1178
+ #: admin/cerber-dashboard.php:62
1179
  msgid "Cerber Traffic Inspector"
1180
  msgstr "Ispettore del traffico di Cerber"
1181
 
1182
+ #: admin/cerber-dashboard.php:62 admin/cerber-dashboard.php:2104
1183
+ #: admin/cerber-dashboard.php:5363
1184
  msgid "Traffic Inspector"
1185
  msgstr "Ispettore del traffico"
1186
 
1187
+ #: admin/cerber-dashboard.php:2143 admin/cerber-users.php:1116
1188
  msgid "Traffic"
1189
  msgstr "Traffico"
1190
 
1191
+ #: admin/cerber-dashboard.php:4544
1192
  msgid "Request"
1193
  msgstr "Richieste"
1194
 
1195
+ #: admin/cerber-dashboard.php:4546 admin/cerber-users.php:928
1196
  msgid "Host Info"
1197
  msgstr "Info Host"
1198
 
1199
+ #: admin/cerber-dashboard.php:4547
1200
  msgid "User Agent"
1201
  msgstr "Agente Utente"
1202
 
1203
+ #: admin/cerber-dashboard.php:4613
1204
  msgid "Form submissions"
1205
  msgstr "Modulo di invio"
1206
 
1207
+ #: admin/cerber-dashboard.php:4614
1208
  msgid "Page Not Found"
1209
  msgstr "Pagina non trovata"
1210
 
1211
+ #: admin/cerber-dashboard.php:4621
1212
  msgid "Longer than"
1213
  msgstr "Più lungo di"
1214
 
1215
+ #: admin/cerber-dashboard.php:4644
1216
  msgid "Refresh"
1217
  msgstr "Ricaricare"
1218
 
1219
+ #: cerber-common.php:283
1220
  msgid "Check for requests"
1221
  msgstr "Controlla richieste"
1222
 
1223
+ #: admin/cerber-dashboard.php:4679
1224
  msgid "Not specified"
1225
  msgstr "Non Specificato"
1226
 
1260
  msgid "Page generation time threshold"
1261
  msgstr "Soglia del tempo di generazione della pagina"
1262
 
1263
+ #: admin/cerber-dashboard.php:2103
 
 
 
 
1264
  msgid "enabled"
1265
  msgstr "Abilitato"
1266
 
1267
+ #: admin/cerber-dashboard.php:2108
1268
  msgid "no connection"
1269
  msgstr "Nessuna connessione"
1270
 
1271
+ #: admin/cerber-dashboard.php:1921
1272
  msgid "Last seen"
1273
  msgstr "Visto per l'ultima volta"
1274
 
1275
+ #: cerber-load.php:4688
1276
  msgid "We're sorry, you are not allowed to proceed"
1277
  msgstr "Siamo spiacenti, non ti è permesso procedere"
1278
 
1304
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1305
  msgstr "Blocca l'accesso non autorizzato a load-scripts.php e load-styles.php"
1306
 
1307
+ #: cerber-common.php:3281
1308
  msgid "Unable to create the directory"
1309
  msgstr "Impossibile creare la directory"
1310
 
1311
+ #: cerber-common.php:3286
1312
  msgid "Destination folder access denied"
1313
  msgstr "Accesso alla cartella di destinazione negato"
1314
 
1315
+ #: cerber-common.php:3289
1316
  msgid "File not found"
1317
  msgstr "File non trovato"
1318
 
1319
+ #: cerber-common.php:3292
1320
  msgid "Unable to copy the file"
1321
  msgstr "Impossibile copiare il file"
1322
 
1323
+ #: cerber-common.php:3298
1324
  msgid "Unable to delete the file"
1325
  msgstr "Impossibile cancellare il file"
1326
 
1340
  msgid "Plugin initialization mode has not been changed"
1341
  msgstr "La modalità di inizializzazione del plugin non è stata modificata"
1342
 
1343
+ #: cerber-common.php:1715
1344
  msgid "File upload denied"
1345
  msgstr "Caricamento file negato"
1346
 
1356
  msgid "If you forget your Custom login URL, you will be unable to log in."
1357
  msgstr "Se si dimentica l'URL di accesso personalizzato, non sarà possibile accedere."
1358
 
1359
+ #: admin/cerber-dashboard.php:73 admin/cerber-dashboard.php:5424
1360
  msgid "Site Integrity"
1361
  msgstr "Integrità del sito"
1362
 
1363
  #: cerber-scanner.php:1717 cerber-settings.php:683 cerber-settings.php:825
1364
  #: cerber-settings.php:856 cerber-settings.php:990 cerber-settings.php:999
1365
+ #: cerber-settings.php:1466 admin/cerber-dashboard.php:2128
1366
+ #: admin/cerber-dashboard.php:2130 admin/cerber-users.php:20
1367
  #: admin/cerber-users.php:474 admin/cerber-users.php:488
1368
  msgid "Disabled"
1369
  msgstr "Disabilitato"
1370
 
1371
+ #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2129
1372
  msgid "Quick Scan"
1373
  msgstr "Scansione veloce"
1374
 
1375
+ #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2131
1376
  msgid "Full Scan"
1377
  msgstr "Scansione completa"
1378
 
1379
+ #: cerber-common.php:1751 cerber-common.php:1761
1380
  msgid "Denied"
1381
  msgstr "Negato"
1382
 
1478
  msgid "Include scan errors"
1479
  msgstr "Includi errori di scansione"
1480
 
1481
+ #: admin/cerber-dashboard.php:5426
1482
  msgid "Security Scanner"
1483
  msgstr "Scanner di Sicurezza"
1484
 
1485
+ #: admin/cerber-dashboard.php:5428
1486
  msgid "Scheduling"
1487
  msgstr "Programmazione\n"
1488
  ""
1515
  msgid "Continue Scanning"
1516
  msgstr "Continua la scansione"
1517
 
1518
+ #: admin/cerber-dashboard.php:1385 admin/cerber-tools.php:355
1519
+ #: admin/cerber-admin.php:227
1520
  msgid "Delete"
1521
  msgstr "Elimina"
1522
 
1628
  msgid "To view full report visit"
1629
  msgstr "Per visualizzare il report completo visita"
1630
 
1631
+ #: cerber-load.php:4922
1632
  msgid "Scanner Report"
1633
  msgstr "Scanner Report\n"
1634
  ""
1693
  msgid "Files scanned"
1694
  msgstr "File scansionati"
1695
 
1696
+ #: admin/cerber-dashboard.php:325 admin/cerber-dashboard.php:1684
1697
+ #: admin/cerber-dashboard.php:1741 admin/cerber-dashboard.php:1872
1698
  msgid "Check for activities"
1699
  msgstr "Controllo per attività"
1700
 
1701
+ #: admin/cerber-dashboard.php:1903
1702
  msgid "Activated"
1703
  msgstr "Attivato"
1704
 
1705
+ #: cerber-common.php:1726
1706
  msgid "Malicious request denied"
1707
  msgstr "Richieste dannose negate"
1708
 
1709
+ #: cerber-common.php:1740
1710
  msgid "User activated"
1711
  msgstr "Utente Attivato"
1712
 
1713
+ #: cerber-common.php:1763
1714
  msgid "Suspicious number of fields"
1715
  msgstr "Numero di file sospetti"
1716
 
1717
+ #: cerber-common.php:1764
1718
  msgid "Suspicious number of nested values"
1719
  msgstr "Numero sospetto di valori annidati"
1720
 
1721
+ #: cerber-common.php:1765 cerber-common.php:1914
1722
  msgid "Malicious code detected"
1723
  msgstr "Codice dannoso rilevato"
1724
 
1725
+ #: cerber-common.php:1915
1726
  msgid "Attempt to upload a file with malicious code"
1727
  msgstr "Tentativi di caricamento di file con codice dannoso"
1728
 
1729
+ #: cerber-common.php:2198
1730
  msgid "Bytes"
1731
  msgstr "Bytes"
1732
 
1746
  msgid "Scan results reporting"
1747
  msgstr "Controlla i risultati dei rapporti"
1748
 
1749
+ #: admin/cerber-dashboard.php:1082
1750
  msgid "Suspicious activity"
1751
  msgstr "Attività sospette"
1752
 
1753
+ #: admin/cerber-dashboard.php:4610
1754
  msgid "Errors"
1755
  msgstr "Errore"
1756
 
1759
  msgid "Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications."
1760
  msgstr "Difende WordPress da attacchi di hacker, spam, trojan e virus. Malware scanner e controllo di integrità. Rafforza WordPress con una serie di algoritmi di sicurezza completi. Protezione antispam con un sofisticato motore di rilevamento dei bot e reCAPTCHA. Tiene traccia delle attività degli utenti e degli intrusi con potenti notifiche email, mobili e desktop."
1761
 
1762
+ #: cerber-load.php:394
1763
  msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
1764
  msgstr "Hai superato il numero di tentativi di accesso consentiti. Si prega di riprovare tra %d minuti."
1765
 
1766
+ #: cerber-common.php:2078
1767
  msgctxt "preposition of a period of time like: in 6 hours"
1768
  msgid "in %s"
1769
  msgstr "in %s"
1773
  msgid "at"
1774
  msgstr "alle"
1775
 
1776
+ #: admin/cerber-dashboard.php:5431
1777
  msgid "Quarantine"
1778
  msgstr "Quarantena"
1779
 
1846
  msgid "The file has been restored to its original location."
1847
  msgstr "Il file è stato ripristinato nella sua posizione originale"
1848
 
1849
+ #: admin/cerber-dashboard.php:2144
1850
  msgid "Integrity"
1851
  msgstr "Integrità"
1852
 
1853
+ #: cerber-common.php:1714
1854
  msgid "Attempt to upload malicious file denied"
1855
  msgstr "Tentativo di caricare un file dannoso negato"
1856
 
1857
+ #: cerber-load.php:8063
1858
  msgid "Awesome!"
1859
  msgstr "Eccezionale!"
1860
 
1882
  msgid "Use comma to separate items."
1883
  msgstr "Usa la virgola per separare gli elementi."
1884
 
1885
+ #: admin/cerber-dashboard.php:5429
1886
  msgid "Cleaning up"
1887
  msgstr "Pulire"
1888
 
1914
  msgid "Automatically moved to quarantine"
1915
  msgstr "Spostato automaticamente in quarantena"
1916
 
1917
+ #: cerber-common.php:1766
1918
  msgid "Suspicious SQL code detected"
1919
  msgstr "Rilevato codice SQL sospetto"
1920
 
1921
+ #: admin/cerber-dashboard.php:2125
1922
  msgctxt "Example: Last malware scan: 23 Jan 2018"
1923
  msgid "Last malware scan"
1924
  msgstr "Ultima scansione da malware"
1925
 
1926
+ #: admin/cerber-dashboard.php:5365
1927
  msgid "Live Traffic"
1928
  msgstr "Traffico in tempo reale"
1929
 
1935
  msgid "Disable PHP error displaying"
1936
  msgstr "Disabilita la visualizzazione degli errori PHP"
1937
 
1938
+ #: admin/cerber-dashboard.php:5430
1939
  msgid "Ignore List"
1940
  msgstr "Ignora elenco"
1941
 
1968
  msgid "Activity Insights"
1969
  msgstr "Approfondimenti Attività"
1970
 
1971
+ #: admin/cerber-dashboard.php:3330
1972
  msgid "Are you sure you want to delete selected files?"
1973
  msgstr "Sei dicuro di voler cancellare questi file?"
1974
 
1975
+ #: admin/cerber-dashboard.php:3331
1976
  msgid "These files have been moved to the quarantine"
1977
  msgstr "Questi file sono stati spostati in quarantena"
1978
 
1979
+ #: admin/cerber-dashboard.php:3334
1980
  msgid "Do you want to add selected files to the ignore list?"
1981
  msgstr "Vuoi aggiungere i file selezionati alla lista dei file da ignorare?"
1982
 
1983
+ #: admin/cerber-dashboard.php:3335
1984
  msgid "These files have been added to the ignore list"
1985
  msgstr "Questi file sono stati aggiunti alla lista dei file da ignorare."
1986
 
1987
+ #: admin/cerber-dashboard.php:3337
1988
  msgid "Some errors occurred"
1989
  msgstr "Si sono verificati alcuni errori"
1990
 
1991
+ #: admin/cerber-dashboard.php:3338
1992
  msgid "All files have been processed"
1993
  msgstr "Tutti i file sono stati processati"
1994
 
1995
+ #: admin/cerber-dashboard.php:5770
1996
  msgid "Know more about all advantages at"
1997
  msgstr "Scopri di più su tutti i vantaggi a"
1998
 
1999
+ #: cerber-common.php:1767
2000
  msgid "Suspicious JavaScript code detected"
2001
  msgstr "Rilevato codice JavaScript sospetto"
2002
 
2020
  msgid "Click here to see the full list of files"
2021
  msgstr "Clicca qui per vedere l'elenco completo dei file"
2022
 
2023
+ #: admin/cerber-dashboard.php:950
2024
  msgid "Additional Details"
2025
  msgstr "Dettagli aggiuntivi"
2026
 
2027
+ #: admin/cerber-dashboard.php:4066
2028
  msgid "Page generation time"
2029
  msgstr "Tempo di generazione della pagina"
2030
 
2031
+ #: admin/cerber-dashboard.php:5950
2032
  msgid "Log In"
2033
  msgstr "Login"
2034
 
2035
+ #: admin/cerber-dashboard.php:5951
2036
  msgid "Log Out"
2037
  msgstr "Log Out"
2038
 
2039
+ #: admin/cerber-dashboard.php:5952
2040
  msgid "Register"
2041
  msgstr "Registrati"
2042
 
2043
+ #: admin/cerber-dashboard.php:5955
2044
  msgid "WooCommerce Log In"
2045
  msgstr "WooCommerce Log In"
2046
 
2047
+ #: admin/cerber-dashboard.php:5956
2048
  msgid "WooCommerce Log Out"
2049
  msgstr "\n"
2050
  "WooCommerce Log Out\n"
2051
  ""
2052
 
2053
+ #: cerber-common.php:1755
2054
  msgid "IP address is locked out"
2055
  msgstr "L'indirizzo IP è bloccato"
2056
 
2057
+ #: cerber-common.php:1918
2058
  msgid "Multiple suspicious requests"
2059
  msgstr "Richieste Multiple sospette"
2060
 
2086
  msgid "Preparing for the scan"
2087
  msgstr "Preparazione per la scansione"
2088
 
2089
+ #: cerber-common.php:1768
2090
  msgid "Blocked by administrator"
2091
  msgstr "Bloccato dall'amministratore"
2092
 
2093
+ #: cerber-load.php:398
2094
  msgid "You are not allowed to log in"
2095
  msgstr "Non ti è permesso effettuare l'accesso"
2096
 
2142
  msgid "Select one or more roles"
2143
  msgstr "Seleziona una o più funzioni"
2144
 
2145
+ #: admin/cerber-dashboard.php:1414 admin/cerber-users.php:971
2146
  msgid "Filter by registered user"
2147
  msgstr "Filtra per utenti registrati"
2148
 
2162
  msgid "Redirect to URL"
2163
  msgstr "Reindirizzamento all' URL"
2164
 
2165
+ #: admin/cerber-dashboard.php:5484
2166
  msgid "Changelog"
2167
  msgstr "Changelog"
2168
 
2169
+ #: admin/cerber-dashboard.php:741
2170
  msgid "Default settings have been loaded"
2171
  msgstr "Le impostazioni predefinite sono state caricate"
2172
 
2173
+ #: admin/cerber-dashboard.php:3775
2174
  msgid "Save all rules"
2175
  msgstr "Salva tutte le regole"
2176
 
2177
+ #: cerber-common.php:1743
2178
  msgid "Invalid master credentials"
2179
  msgstr "Credenziali master non valide"
2180
 
2226
  msgid "Malware Scan"
2227
  msgstr "Scansione malware"
2228
 
2229
+ #: nexus/cerber-nexus-master.php:516 nexus/cerber-slave-list.php:56
2230
  msgid "Notes"
2231
  msgstr "Note"
2232
 
2234
  msgid "Add a slave website"
2235
  msgstr "Aggiungi un sito web slave"
2236
 
2237
+ #: nexus/cerber-slave-list.php:247 admin/cerber-users.php:1037
2238
  msgid "Search results for:"
2239
  msgstr "Cerca risultati per:"
2240
 
2254
  msgid "Add a new one"
2255
  msgstr "Aggiungine uno nuovo"
2256
 
2257
+ #: nexus/cerber-nexus-master.php:479
2258
  msgid "Website Properties"
2259
  msgstr "Proprietà sito web"
2260
 
2261
+ #: nexus/cerber-nexus-master.php:489
2262
  msgid "Website URL"
2263
  msgstr "URL sito web"
2264
 
2265
+ #: nexus/cerber-nexus-master.php:494
2266
  msgid "Display as"
2267
  msgstr "Visualizza come"
2268
 
2269
+ #: nexus/cerber-nexus-master.php:524
2270
  msgid "Website Owner"
2271
  msgstr "Proprietario del sito web"
2272
 
2273
+ #: nexus/cerber-nexus-master.php:540
2274
  msgid "Phone"
2275
  msgstr "Telefono"
2276
 
2277
+ #: nexus/cerber-nexus-master.php:548
2278
  msgid "Address"
2279
  msgstr "Indirizzo"
2280
 
2281
+ #: nexus/cerber-nexus-master.php:691
2282
  msgid "The website you are trying to add is already in the list"
2283
  msgstr "Il sito web che stai cercando di aggiungere è già presente nella lista"
2284
 
2285
+ #: nexus/cerber-nexus-master.php:700
2286
  msgid "The website has been added successfully"
2287
  msgstr "Il sito web è stato aggiunto con successo"
2288
 
2289
+ #: nexus/cerber-nexus-master.php:701
2290
  msgid "Click to edit"
2291
  msgstr "Clicca per modificare"
2292
 
2293
+ #: nexus/cerber-nexus-master.php:702
2294
  msgid "Switch to the Dashboard"
2295
  msgstr "Passa alla Dashboard"
2296
 
2297
+ #: nexus/cerber-nexus-master.php:705
2298
  msgid "Keep in mind: You have added the website that does not support SSL encryption. This may lead to data leakage."
2299
  msgstr "Tieni presente che: il sito web che hai aggiunto non supporta la crittografia SSL.\n"
2300
  "Ciò potrebbe comportare la perdita di dati."
2301
 
2302
+ #: nexus/cerber-nexus-master.php:824
2303
  msgid "Website has been deleted"
2304
  msgid_plural "%s websites have been deleted"
2305
  msgstr[0] "Il sito web è stato cancellato"
2306
  msgstr[1] "%s i siti web sono stati cancellati"
2307
 
2308
+ #: nexus/cerber-nexus-master.php:1074
2309
  msgid "You have switched to %s"
2310
  msgstr "Sei passato a %s"
2311
 
2312
+ #: nexus/cerber-nexus-master.php:1084
2313
  msgid "You have switched back to the master website"
2314
  msgstr "Sei passato di nuovo al sito web master"
2315
 
2316
+ #: nexus/cerber-nexus-master.php:1300
2317
  msgid "You are here:"
2318
  msgstr "Ti trovi qui:"
2319
 
2320
+ #: nexus/cerber-nexus-master.php:1303 nexus/cerber-nexus.php:94
2321
  #: nexus/cerber-nexus.php:104
2322
  msgid "My Websites"
2323
  msgstr "I Miei Siti Web"
2379
  msgstr "Installa il token di accesso sul ito web master."
2380
 
2381
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
2382
+ #: cerber-common.php:2071
2383
  msgid "%s sec"
2384
  msgid_plural "%s secs"
2385
  msgstr[0] "%s sec"
2393
  msgid "Updates"
2394
  msgstr "Aggiornamenti"
2395
 
2396
+ #: nexus/cerber-nexus-master.php:502 nexus/cerber-slave-list.php:54
2397
  msgid "Group"
2398
  msgstr "Gruppo"
2399
 
2413
  msgid "All groups"
2414
  msgstr "Tutti i gruppi"
2415
 
2416
+ #: nexus/cerber-nexus-master.php:1384
2417
  msgid "Are you sure you want to delete selected websites?"
2418
  msgstr "Sei sicuro di voler cancellare tutti i siti web selezionati?"
2419
 
2421
  msgid "Block"
2422
  msgstr "Blocca"
2423
 
2424
+ #: nexus/cerber-nexus-master.php:471
2425
  msgid "Select an existing group or enter a new one to add it"
2426
  msgstr "Seleziona un gruppo esistente o inseriscine uno nuovo per aggiungerlo"
2427
 
2428
+ #: nexus/cerber-nexus-master.php:544
2429
  msgid "Company"
2430
  msgstr "Azienda"
2431
 
2432
+ #: nexus/cerber-nexus-master.php:178
2433
  msgid "Invalid response from the slave website"
2434
  msgstr "Risposta non valida dal sito web slave"
2435
 
2436
+ #: cerber-common.php:1707 cerber-common.php:1908
2437
  msgid "Attempt to log in with non-existing username"
2438
  msgstr "Tentativo di accesso con un nome utente inesistente"
2439
 
2440
+ #: cerber-load.php:5076
2441
  msgid "Attempts to log in with non-existing usernames"
2442
  msgstr "Tentativi di accesso con con un nome utente inesistente"
2443
 
2469
  msgid "Block execution of PHP scripts in the WordPress media folder"
2470
  msgstr "Blocca l'esecuzione degli script PHP nella cartella multimediale WordPress"
2471
 
2472
+ #: nexus/cerber-nexus-master.php:1451 nexus/cerber-nexus-master.php:1459
2473
  msgid "Active plugins and updates on"
2474
  msgstr "Attiva i plugin e gli aggiornamenti il"
2475
 
2476
+ #: nexus/cerber-nexus-master.php:1429
2477
  msgid "A newer version is available"
2478
  msgstr "E' disponibile una versione più recente"
2479
 
2480
+ #: admin/cerber-dashboard.php:1076
2481
  msgid "New users"
2482
  msgstr "Nuovi utenti"
2483
 
2484
+ #: admin/cerber-dashboard.php:1096
2485
  msgid "My activity"
2486
  msgstr "La mia attività"
2487
 
2488
+ #: admin/cerber-dashboard.php:2993
2489
  msgid "Create Alert"
2490
  msgstr "Crea un avviso"
2491
 
2492
+ #: admin/cerber-dashboard.php:2997
2493
  msgid "Delete Alert"
2494
  msgstr "Cancella avviso"
2495
 
2496
+ #: admin/cerber-dashboard.php:3095
2497
  msgid "The alert has been created"
2498
  msgstr "L'avviso è stato creato"
2499
 
2500
+ #: admin/cerber-dashboard.php:3104
2501
  msgid "The alert has been deleted"
2502
  msgstr "L'avviso è stato cancellato"
2503
 
2504
+ #: admin/cerber-dashboard.php:4626
2505
  msgid "Advanced Search"
2506
  msgstr "Ricerca Avanzata"
2507
 
2510
  msgid "Cerber Tech Inc."
2511
  msgstr "Cerber Tech Inc."
2512
 
2513
+ #: cerber-load.php:5743
2514
  msgid "To delete the alert, click here"
2515
  msgstr "Per cancellare l'avviso, clicca qui"
2516
 
2582
  msgid "Automatically recovered"
2583
  msgstr "Recuperato automaticamente"
2584
 
2585
+ #: admin/cerber-dashboard.php:70
2586
  msgid "Cerber User Security"
2587
  msgstr "Sicurezza Utente Cerber"
2588
 
2589
+ #: admin/cerber-dashboard.php:70 admin/cerber-dashboard.php:5389
2590
  msgid "User Policies"
2591
  msgstr "Politiche degli Utenti"
2592
 
2593
+ #: admin/cerber-dashboard.php:2147
2594
  msgid "A new version is available"
2595
  msgstr "E' disponibile una nuova versione"
2596
 
2597
+ #: admin/cerber-dashboard.php:5392
2598
  msgid "Global"
2599
  msgstr "Globale"
2600
 
2601
+ #: cerber-common.php:1769
2602
  msgid "Site policy enforcement"
2603
  msgstr "Applicazione politica del sito"
2604
 
2605
+ #: cerber-common.php:1770
2606
  msgid "2FA code verified"
2607
  msgstr "Codice 2FA verificato"
2608
 
2609
+ #: cerber-common.php:1771
2610
  msgid "Initiated by the user"
2611
  msgstr "Avviato dall'utente"
2612
 
2613
+ #: cerber-common.php:2321
2614
  msgid "A new version of %s is available. Please install it."
2615
  msgstr "Una nuova versione di %s è disponibile. Per favore, installala."
2616
 
2617
+ #: cerber-load.php:1958
2618
  msgid "Email address is not permitted."
2619
  msgstr "L'indirizzo e-mail non è ammesso."
2620
 
2621
+ #: cerber-load.php:1958
2622
  msgid "Please choose another one."
2623
  msgstr "Scegline un altro."
2624
 
2770
  msgid "Try again"
2771
  msgstr "Prova di nuovo"
2772
 
2773
+ #: cerber-2fa.php:661 admin/cerber-dashboard.php:5839
2774
  msgid "Cancel"
2775
  msgstr "Cancella"
2776
 
2790
  msgid "Two-Factor Authentication Email"
2791
  msgstr "E-mail di autenticazione a due fattori"
2792
 
2793
+ #: admin/cerber-dashboard.php:3718
2794
  msgid "Role-based rules are configured"
2795
  msgstr "Le regole basate sulle funzioni sono state configurate"
2796
 
2803
  msgid "The code is valid for %s minutes."
2804
  msgstr "Il codice è valido per %s minuti"
2805
 
2806
+ #: admin/cerber-dashboard.php:372
2807
  msgid "IP address %s has been added to White IP Access List"
2808
  msgstr "L'indirizzo IP %s è stato aggiunto alla lista di controllo degli accessi bianca"
2809
 
2810
+ #: admin/cerber-dashboard.php:369
2811
  msgid "IP address %s has been added to Black IP Access List"
2812
  msgstr "L'indirizzo IP %s è stato aggiunto alla lista di controllo degli accessi nera"
2813
 
2814
+ #: admin/cerber-dashboard.php:211 admin/cerber-dashboard.php:947
2815
+ #: admin/cerber-dashboard.php:1327 admin/cerber-dashboard.php:4545
2816
+ #: admin/cerber-users.php:927
2817
  msgid "IP Address"
2818
  msgstr "Indirizzo IP"
2819
 
2820
+ #: admin/cerber-dashboard.php:954 admin/cerber-dashboard.php:1333
2821
  msgid "Username"
2822
  msgstr "Nome utente"
2823
 
2824
+ #: admin/cerber-dashboard.php:3800
2825
  msgid "Any country is permitted"
2826
  msgstr "Qualunque paese è autorizzato"
2827
 
2828
+ #: admin/cerber-dashboard.php:3405 admin/cerber-dashboard.php:5294
2829
  msgid "Sessions"
2830
  msgstr "Sessioni"
2831
 
2832
+ #: cerber-load.php:1717
2833
  msgid "Session has been terminated"
2834
  msgid_plural "%s sessions have been terminated"
2835
  msgstr[0] "La sessione è stata chiusa"
2836
  msgstr[1] "%s sessioni sono state chiuse"
2837
 
2838
+ #: admin/cerber-users.php:925
2839
  msgid "Created"
2840
  msgstr "Creato"
2841
 
2842
+ #: admin/cerber-users.php:946
2843
  msgid "Terminate session"
2844
  msgstr "Terminare la sessione"
2845
 
2846
+ #: admin/cerber-users.php:947
2847
  msgid "Block user"
2848
  msgstr "Bloccare l'utente"
2849
 
2850
+ #: admin/cerber-users.php:1079
2851
  msgid "Profile"
2852
  msgstr "Profilo"
2853
 
2854
+ #: admin/cerber-users.php:1092
2855
  msgid "All Logins"
2856
  msgstr "Tutti Gli Accessi"
2857
 
2858
+ #: admin/cerber-users.php:1093
2859
  msgid "User Activity"
2860
  msgstr "Attività Utente"
2861
 
2862
+ #: admin/cerber-users.php:1139
2863
  msgid "Terminate"
2864
  msgstr "Terminare"
2865
 
2866
+ #: admin/cerber-dashboard.php:2097
2867
  msgid "user"
2868
  msgid_plural "users"
2869
  msgstr[0] "utente"
2877
  msgid "Unable to delete"
2878
  msgstr "Impossibile eliminare"
2879
 
2880
+ #: admin/cerber-dashboard.php:66
2881
  msgid "Cerber Data Shield Policies"
2882
  msgstr "Politiche Cerber Dello Scudo Dati"
2883
 
2884
+ #: admin/cerber-dashboard.php:66
2885
  msgid "Data Shield"
2886
  msgstr "Scudo Dati"
2887
 
2888
+ #: admin/cerber-dashboard.php:5379
2889
  msgid "Data Shield Policies"
2890
  msgstr "Politiche Scudo Dati"
2891
 
2892
+ #: admin/cerber-dashboard.php:5381
2893
  msgid "Accounts & Roles"
2894
  msgstr "Conti e Ruoli"
2895
 
2896
+ #: admin/cerber-dashboard.php:5382
2897
  msgid "Site Settings"
2898
  msgstr "Impostazioni Sito"
2899
 
2900
+ #: cerber-common.php:1720
2901
  msgid "User creation denied"
2902
  msgstr "Creazione utente negata"
2903
 
2904
+ #: cerber-common.php:1722
2905
  msgid "Role update denied"
2906
  msgstr "Aggiornamento ruolo negato"
2907
 
2908
+ #: cerber-common.php:1723
2909
  msgid "Setting update denied"
2910
  msgstr "Aggiornamento impostazioni negato"
2911
 
2912
+ #: cerber-common.php:1776
2913
  msgid "Permission denied"
2914
  msgstr "Autorizzazione negata"
2915
 
2916
+ #: cerber-common.php:1778
2917
  msgid "Invalid user"
2918
  msgstr "Utente invalido"
2919
 
2920
+ #: cerber-common.php:1779
2921
  msgid "Incorrect password"
2922
  msgstr "Password sbagliata"
2923
 
2997
  msgid "All countries"
2998
  msgstr "Tutti i paesi"
2999
 
3000
+ #: nexus/cerber-nexus-master.php:442
3001
  msgid "Show homepage in the Website column"
3002
  msgstr "Mostrare la homepage nella colonna del sito"
3003
 
3004
+ #: nexus/cerber-nexus-master.php:444
3005
  msgid "Hide server IP address"
3006
  msgstr "Nascondere Indirizzo IP del server"
3007
 
3008
+ #: admin/cerber-dashboard.php:341
3009
  msgid "IP address, range, wildcard, or CIDR"
3010
  msgstr "Indirizzo IP, gamma, carattere jolly o CIDR"
3011
 
3012
+ #: admin/cerber-dashboard.php:342
3013
  msgid "Add Entry"
3014
  msgstr "Aggiungere Voce"
3015
 
3016
+ #: admin/cerber-dashboard.php:5634
3017
  msgid "The IP address you are trying to add is already in the list"
3018
  msgstr "L'indirizzo IP che stai cercando di aggiungere è già nella lista"
3019
 
3020
+ #: cerber-common.php:1674
3021
  msgid "IP subnet blocked"
3022
  msgstr "IP sottorete bloccata"
3023
 
3024
+ #: cerber-common.php:1721
3025
  msgid "User row update denied"
3026
  msgstr "Mise à jour ligne utilisateur refusée"
3027
 
3028
+ #: cerber-common.php:1724
3029
  msgid "User metadata update denied"
3030
  msgstr "Mise à jour métadonnées utilisateur refusée"
3031
 
3093
  msgid "Cookies"
3094
  msgstr "Cookie"
3095
 
3096
+ #: admin/cerber-dashboard.php:77
3097
  msgid "Cerber anti-spam settings"
3098
  msgstr "Impostazioni dell'Antispam di Cerber"
3099
 
3100
+ #: admin/cerber-dashboard.php:77
3101
  msgid "Anti-spam"
3102
  msgstr "Anti-spam"
3103
 
3104
+ #: cerber-addons.php:289 admin/cerber-dashboard.php:85
3105
+ #: admin/cerber-dashboard.php:85
3106
  msgid "Add-ons"
3107
  msgstr "Add-ons"
3108
 
3109
+ #: admin/cerber-dashboard.php:5343
3110
  msgid "Anti-spam and bot detection settings"
3111
  msgstr "Impostazioni rilevamento di antispam e bot"
3112
 
3113
+ #: admin/cerber-dashboard.php:5345
3114
  msgid "Anti-spam engine"
3115
  msgstr "Motore Antispam"
3116
 
3117
+ #: cerber-common.php:1917
3118
  msgid "Multiple erroneous requests"
3119
  msgstr "Molteplici richieste errate"
3120
 
3210
  msgid "Settings updated"
3211
  msgstr "Impostazioni aggiornate"
3212
 
3213
+ #: admin/cerber-dashboard.php:1418
3214
  msgid "Request ID"
3215
  msgstr "ID richiesta"
3216
 
3217
+ #: admin/cerber-dashboard.php:1419
3218
  msgid "Search in URL"
3219
  msgstr "Ricerca in URL"
3220
 
3226
  msgid "All files"
3227
  msgstr "Tutti i file"
3228
 
3229
+ #: admin/cerber-dashboard.php:1926
3230
  msgid "Active sessions"
3231
  msgstr "Sessioni attive"
3232
 
3238
  msgid "Load entries"
3239
  msgstr "Caricare voci"
3240
 
3241
+ #: admin/cerber-dashboard.php:1097 admin/cerber-dashboard.php:4618
3242
  msgid "My IP"
3243
  msgstr "Il mio IP"
3244
 
3245
+ #: admin/cerber-dashboard.php:5432
3246
  msgid "Analytics"
3247
  msgstr "Analitica"
3248
 
3249
+ #: admin/cerber-dashboard.php:5481
3250
  msgid "Manage Settings"
3251
  msgstr "Gestire Impostazioni"
3252
 
3253
  #: cerber-settings.php:1047 cerber-settings.php:1445 cerber-settings.php:1473
3254
+ #: admin/cerber-dashboard.php:5483
3255
  msgid "Diagnostic Log"
3256
  msgstr "Log diagnostico"
3257
 
3258
+ #: cerber-common.php:1665
3259
  msgid "User deleted"
3260
  msgstr "Utente eliminato"
3261
 
3262
+ #: cerber-common.php:1774
3263
  msgid "Email address is prohibited"
3264
  msgstr "L'indirizzo e-mail è vietato"
3265
 
3367
  msgid "To get the most out of WP Cerber, follow these steps:"
3368
  msgstr "Per ottenere il massimo da WP Cerber, segui questi passi:"
3369
 
3370
+ #: cerber-common.php:1789
3371
  msgid "IP whitelisted"
3372
  msgstr "IP inserito in lista bianca"
3373
 
3374
+ #: admin/cerber-dashboard.php:4617
3375
  msgid "My requests"
3376
  msgstr "Le mie richieste"
3377
 
3378
+ #: admin/cerber-dashboard.php:3910
3379
  msgid "Log into the website"
3380
  msgstr "Accedi al sito web"
3381
 
3384
  msgid "WP Cerber Security, Anti-spam & Malware Scan"
3385
  msgstr "WP Cerber Security, Antispam & Malware Scansione"
3386
 
3387
+ #: cerber-common.php:1713 cerber-common.php:1913
3388
  msgid "Probing for vulnerable code"
3389
  msgstr "Sondo per codice PHP vulnerabile"
3390
 
3391
+ #: cerber-load.php:5967
3392
  msgid "Your IP address %s has been added to the White IP Access List"
3393
  msgstr "Il tuo indirizzo IP %s è stato aggiunto alla lista di accesso IP bianca"
3394
 
3395
+ #: admin/cerber-users.php:974
3396
  msgid "Search for IP address"
3397
  msgstr "Cerca l'indirizzo IP"
3398
 
3420
  msgid "Specify User-Agents to exclude requests from logging. One item per line."
3421
  msgstr "Specificare gli Agenti-Utenti da escludere dalla registrazione delle richieste. Una voce per riga."
3422
 
3423
+ #: admin/cerber-dashboard.php:4739
3424
  msgid "Unknown Google's bot"
3425
  msgstr "Bot de Google inconnu"
3426
 
3427
+ #: cerber-common.php:1780
3428
  msgid "IP address is not allowed"
3429
  msgstr "L'indirizzo IP non è consentito"
3430
 
3461
  msgid "Defer rendering the custom login page"
3462
  msgstr "Différer le rendu de la page de connexion personnalisée"
3463
 
3464
+ #: cerber-load.php:414
3465
  msgid "You have only one login attempt remaining."
3466
  msgstr "Hai un solo tentativo rimanente."
3467
 
3489
  msgid "If the number of concurrent user sessions is greater"
3490
  msgstr "Se il numero di sessioni utente contemporanee è maggiore"
3491
 
3492
+ #: admin/cerber-dashboard.php:5769
3493
  msgid "These features are available in the professional version of WP Cerber."
3494
  msgstr "Queste funzionalità sono disponibili in una versione professionale del plug-in."
3495
 
3496
+ #: cerber-common.php:1694
3497
  msgid "User session terminated"
3498
  msgstr "Sessione utente terminata"
3499
 
3500
+ #: cerber-common.php:1781
3501
  msgid "Limit on concurrent user sessions"
3502
  msgstr "Limite di sessioni utente contemporanee"
3503
 
3521
  msgid "To avoid false positives and get better anti-spam performance, please clear the plugin cache."
3522
  msgstr "Per evitare falsi positivi e ottenere migliori prestazioni anti-spam, cancella la cache del plugin."
3523
 
3524
+ #: cerber-common.php:1733
3525
  msgid "API request authorized"
3526
  msgstr "Richiesta API autorizzata"
3527
 
3528
+ #: cerber-common.php:1734
3529
  msgid "API request authorization failed"
3530
  msgstr "Autorizzazione richiesta API fallita"
3531
 
3532
+ #: cerber-common.php:1718
3533
  msgid "Request to XML-RPC API denied"
3534
  msgstr "Richiesta a XML-RPC API negata"
3535
 
3536
+ #: cerber-common.php:1782
3537
  msgid "Invalid cookies"
3538
  msgstr "Cookie non validi"
3539
 
3566
  msgstr "Utilizzare l'URL personalizzato per il modulo di commento di WordPress"
3567
 
3568
  #: cerber-settings.php:461 cerber-settings.php:1295
3569
+ #: admin/cerber-dashboard.php:2097
3570
  msgid "Logged-in users"
3571
  msgstr "Utenti connessi"
3572
 
3626
  msgid "Use global policies"
3627
  msgstr "Usare politiche globali"
3628
 
3629
+ #: cerber-load.php:417
3630
  msgid "You have %d login attempt remaining."
3631
  msgid_plural "You have %d login attempts remaining."
3632
  msgstr[0] "Hai %d tentativo di login rimanente."
3636
  msgid "Display this message if an attempt to log in is denied because the limit on concurrent user sessions has been reached"
3637
  msgstr "Visualizza questo messaggio se un tentativo di accesso è negato perché è stato raggiunto il limite delle sessioni utente concorrenti"
3638
 
3639
+ #: admin/cerber-dashboard.php:5391
3640
  msgid "Role-Based"
3641
  msgstr "Basato sui Ruoli"
3642
 
3643
+ #: cerber-common.php:1730
3644
  msgid "User application password created"
3645
  msgstr "Création mot de passe pour l'application utilisateur"
3646
 
3656
  msgid "Save response cookies"
3657
  msgstr "Salvare i cookie di risposta"
3658
 
3659
+ #: cerber-load.php:8041
3660
  msgid "We need your support to keep moving forward"
3661
  msgstr "Per andare avanti abbiamo bisogno del tuo sostegno"
3662
 
3663
+ #: cerber-load.php:8043
3664
  msgid "By sharing your unique opinion on WP Cerber, you help the engineers behind the plugin make greater progress and help other professionals find the right software. You can leave your review on one of the following websites. Feel free to use your native language. Thanks!"
3665
  msgstr "Condividendo la tua opinione unica su WP Cerber, aiuti gli ingegneri dietro il plugin a fare maggiori progressi e aiuti altri professionisti a trovare il software giusto. Puoi lasciare la tua recensione su uno dei seguenti siti web. Sentiti libero di usare la tua lingua madre. Grazie!"
3666
 
3667
+ #: nexus/cerber-nexus-master.php:661
3668
  msgid "Secret Access Token is invalid"
3669
  msgstr "Il token di accesso segreto non è valido"
3670
 
3671
+ #: admin/cerber-dashboard.php:225
3672
  msgid "Click the IP address to see its activity"
3673
  msgstr "Clicca sull'indirizzo IP per vedere la sua attività"
3674
 
3675
+ #: admin/cerber-dashboard.php:1077
3676
  msgid "Login issues"
3677
  msgstr "Problemi di accesso"
3678
 
3679
+ #: admin/cerber-dashboard.php:1094 admin/cerber-dashboard.php:4612
3680
  msgid "Non-authenticated"
3681
  msgstr "Non autenticato"
3682
 
3683
+ #: admin/cerber-dashboard.php:1379 admin/cerber-dashboard.php:1826
3684
+ #: admin/cerber-dashboard.php:2681 admin/cerber-admin.php:1333
3685
  msgid "No activity has been logged yet."
3686
  msgstr "Nessuna attività è stata ancora registrata."
3687
 
3688
+ #: admin/cerber-dashboard.php:2701
3689
  msgid "Users' Activity"
3690
  msgstr "Attività degli Utenti"
3691
 
3692
+ #: admin/cerber-dashboard.php:2721
3693
  msgid "Malicious Activity"
3694
  msgstr "Attività Dannosa"
3695
 
3696
+ #: admin/cerber-dashboard.php:4609
3697
  msgid "Suspicious requests"
3698
  msgstr "Richieste sospette"
3699
 
3700
+ #: admin/cerber-dashboard.php:1093 admin/cerber-dashboard.php:4611
3701
  msgid "Users"
3702
  msgstr "Utenti"
3703
 
3704
+ #: cerber-common.php:1784
3705
  msgid "Forbidden URL"
3706
  msgstr "URL proibito"
3707
 
3765
  msgid "Deny authentication through wp-login.php"
3766
  msgstr "Negare l'autenticazione attraverso wp-login.php"
3767
 
3768
+ #: cerber-common.php:1783
3769
  msgid "Invalid cookies cleared"
3770
  msgstr "Cookie non validi eliminati"
3771
 
3772
+ #: cerber-load.php:1862
3773
  msgid "If we have found your account, we have sent the confirmation link to the email address on the account."
3774
  msgstr "In caso abbiamo trovato il tuo account, abbiamo inviato il link di conferma all'indirizzo e-mail presente nell'account."
3775
 
3776
+ #: cerber-load.php:5925 cerber-common.php:525
3777
  msgid "WP Cerber requires PHP %s or higher. You are running %s."
3778
  msgstr "Il Cerber WP richiede PHP %s o superiore. Stai utilizzando"
3779
 
3780
+ #: cerber-load.php:5929 cerber-common.php:529
3781
  msgid "WP Cerber requires WordPress %s or higher. You are running %s."
3782
  msgstr "Il Cerber WP richiede WordPress %s o superiore. Stai utilizzando"
3783
 
3857
  msgid "Detecting injected files in the WordPress uploads directory"
3858
  msgstr "Rileva i files infettati nella directory uploads di WordPress"
3859
 
3860
+ #: cerber-common.php:1785
3861
  msgid "Executable file extension detected"
3862
  msgstr "È stata rilevata l'estensione di un file eseguibile"
3863
 
3864
+ #: cerber-common.php:1786
3865
  msgid "Filename is prohibited"
3866
  msgstr "Nome file non consentito"
3867
 
3941
  msgid "These policies are automatically enforced at the end of every scan based on its results. All affected files are moved to the quarantine."
3942
  msgstr "Queste politiche sono automaticamente applicate alla fine di ogni scansione in base ai risultati. Tutti i file interessati vengono spostati in quarantena."
3943
 
3944
+ #: admin/cerber-dashboard.php:3339
3945
  msgid "This scan report was generated by the previous version of WP Cerber. Please run a new scan to get consistent and accurate results."
3946
  msgstr "Questo repord di scansione è stato generato da una versione precedente di WP Cerber. Esegui una nuova scansione per ottenere risultati più attendibili ed accurati."
3947
 
3971
  msgid "Medium"
3972
  msgstr "Medio"
3973
 
3974
+ #: cerber-load.php:4690
3975
  msgid "If you believe you should be able to perform this request, please let us know."
3976
  msgstr "Se credi di essere in grado soddisfare questa richiesta ti preghiamo di farcelo sapere."
3977
 
3978
+ #: cerber-load.php:4689
3979
  msgid "Your request looks suspiciously similar to automated requests from spam posting software or it has been denied by a security policy configured by the website administrator."
3980
  msgstr "La tua richiesta e sospettosamente simile a richieste automatiche originate da software che genera spam o è stata bloccata da una regola configurata dall'amministratore del sito web "
3981
 
3991
  msgid "Executable files are not supported. Please upload a ZIP archive."
3992
  msgstr "Non vengono supportati i file eseguibili. Per favore caricare un archivio ZIP."
3993
 
3994
+ #: cerber-load.php:775
3995
  msgid "Human verification failed."
3996
  msgstr "La verifica umana è fallita."
3997
 
3998
+ #: cerber-common.php:1800
3999
  msgid "Logged out everywhere"
4000
  msgstr "Disconnesso ovunque"
4001
 
4002
+ #: cerber-common.php:1698
4003
  msgid "Password reset request denied"
4004
  msgstr "Richiesta reimpostazione password negata"
4005
 
4006
+ #: cerber-common.php:1802
4007
  msgid "reCAPTCHA verified"
4008
  msgstr "reCAPTCHA verificato"
4009
 
4010
+ #: cerber-load.php:3359
4011
  msgid "Sorry, password reset is not allowed for this user."
4012
  msgstr "Spiacente, la reimpostazione della password non è consentita per questo utente."
4013
 
4019
  msgid "Use less restrictive security filters for IP addresses in the White IP Access List"
4020
  msgstr "Utilizzare filtri di sicurezza meno restrittivi per gli indirizzi IP nella lista di accesso IP bianco"
4021
 
4022
+ #: cerber-common.php:1729
4023
  msgid "User application password updated"
4024
  msgstr "Password dell'applicazione utente aggiornata"
4025
 
4026
+ #: cerber-common.php:1772
4027
  msgid "User blocked by administrator"
4028
  msgstr "Utente bloccato dall'amministratore"
4029
 
4030
  #. %s is the name of a website administrator who terminated the session.
4031
+ #: cerber-common.php:1696
4032
  msgid "User session terminated by %s"
4033
  msgstr "Sessione utente chiusa da %s"
4034
 
4035
+ #: cerber-common.php:1773
4036
  msgid "Username is prohibited"
4037
  msgstr "Il nome utente è vietato"
4038
 
4044
  msgid "View denied REST API requests"
4045
  msgstr "Visualizzare le richieste REST API negate"
4046
 
4047
+ #: cerber-load.php:4908 cerber-load.php:4909
4048
  msgid "A new activity has occurred"
4049
  msgstr "Si è verificata una nuova attività"
4050
 
4051
+ #: admin/cerber-dashboard.php:3019
4052
  msgid "Do not send alerts after this date"
4053
  msgstr "Non inviare avvisi dopo questa data"
4054
 
4055
+ #: admin/cerber-dashboard.php:3059 admin/cerber-dashboard.php:4589
4056
  msgid "Documentation"
4057
  msgstr "Documentazion"
4058
 
4059
+ #: admin/cerber-dashboard.php:3046
4060
  msgid "Email alerts will be sent to these emails:"
4061
  msgstr "Gli avvisi e-mail saranno inviati a questi indirizzi:"
4062
 
4063
+ #: admin/cerber-dashboard.php:3046
4064
  msgid "Email alerts will be sent to this email:"
4065
  msgstr "Gli avvisi e-mail saranno inviati a questo indirizzo:"
4066
 
4067
+ #: admin/cerber-dashboard.php:3024
4068
  msgid "Ignore global rate limits"
4069
  msgstr "Ignorare i limiti di quota globali"
4070
 
4071
+ #: admin/cerber-dashboard.php:3010
4072
  msgid "Maximum number of alerts to send"
4073
  msgstr "Numero massimo di avvisi da inviare"
4074
 
4075
+ #: admin/cerber-dashboard.php:3054
4076
  msgid "Mobile alerts are not configured"
4077
  msgstr "Gli avvisi mobile non sono configurati"
4078
 
4079
  #. %s is the name of a mobile device.
4080
+ #: admin/cerber-dashboard.php:3051
4081
  msgid "Mobile alerts will be sent to %s"
4082
  msgstr "Gli avvisi mobile saranno inviati a %s"
4083
 
4084
+ #: admin/cerber-dashboard.php:3015
4085
  msgid "No limit"
4086
  msgstr "Nessun limite"
4087
 
4088
+ #: admin/cerber-dashboard.php:5838
4089
  msgid "OK"
4090
  msgstr "OK"
4091
 
4092
+ #: admin/cerber-dashboard.php:3061
4093
  msgid "Optional alert limits"
4094
  msgstr "Limiti di avvisi opzionali"
4095
 
4096
  #. %s is the name of a website administrator who changed the password.
4097
+ #: cerber-common.php:1692
4098
  msgid "Password changed by %s"
4099
  msgstr "Password modificata da %s"
4100
 
4102
  msgid "Spam protection for registration, comment, and other forms on the website"
4103
  msgstr "Protezione antispam per la registrazione, i commenti e altri moduli sul sito web"
4104
 
4105
+ #: cerber-common.php:1816
4106
  msgid "Unknown label"
4107
  msgstr "Etichetta sconosciuta"
4108
 
4109
  #. %s is the name of a website administrator who created the password.
4110
+ #: cerber-common.php:1732
4111
  msgid "User application password created by %s"
4112
  msgstr "Password applicazione utente creata da %s"
4113
 
4114
+ #: cerber-common.php:1735
4115
  msgid "User application password deleted"
4116
  msgstr "Password applicazione utente cancellata"
4117
 
4118
  #. %s is the name of a website administrator who deleted the password.
4119
+ #: cerber-common.php:1737
4120
  msgid "User application password deleted by %s"
4121
  msgstr "Password applicazione utente eliminate da %s"
4122
 
4123
  #. %s is the name of a website administrator who created the user.
4124
+ #: cerber-common.php:1663
4125
  msgid "User created by %s"
4126
  msgstr "Utente creato da %s"
4127
 
4128
  #. %s is the name of a website administrator who deleted the user.
4129
+ #: cerber-common.php:1667
4130
  msgid "User deleted by %s"
4131
  msgstr "Utente eliminato da %s"
4132
 
4138
  msgid "View reCAPTCHA events"
4139
  msgstr "Visualizzare eventi reCAPTCHA"
4140
 
4141
+ #: admin/cerber-dashboard.php:1400
4142
+ msgid "Check for requests from the IP address"
4143
+ msgstr ""
4144
+
4145
+ #: admin/cerber-dashboard.php:1387
4146
+ msgid "Get me notified when such an event occurs"
4147
+ msgstr ""
4148
+
4149
+ #: admin/cerber-dashboard.php:1382
4150
+ msgid "No events found using the given search criteria"
4151
+ msgstr ""
4152
+
4153
+ #: admin/cerber-dashboard.php:4580
4154
+ msgid "No requests found using the given search criteria"
4155
+ msgstr ""
4156
+
4157
+ #: admin/cerber-dashboard.php:4577
4158
+ msgid "No requests have been logged yet."
4159
+ msgstr ""
4160
+
4161
+ #: admin/cerber-dashboard.php:4587
4162
+ msgid "Note: Logging is currently disabled"
4163
+ msgstr ""
4164
+
4165
+ #: cerber-settings.php:694
4166
+ msgid "Sort users in the Dashboard"
4167
+ msgstr ""
4168
+
4169
+ #: cerber-load.php:4827 cerber-load.php:5742
4170
+ msgid "View activity in the Dashboard"
4171
+ msgstr ""
4172
+
4173
+ #: admin/cerber-dashboard.php:1392
4174
+ msgid "View all logged events"
4175
+ msgstr ""
4176
+
4177
+ #: admin/cerber-dashboard.php:4582
4178
+ msgid "View all logged requests"
4179
+ msgstr ""
4180
+
4181
+ #: cerber-load.php:4865
4182
+ msgid "View lockouts in the Dashboard"
4183
+ msgstr ""
4184
+
4185
+ #: cerber-settings.php:188 cerber-settings.php:189
4186
+ msgid "View violations in the log"
4187
+ msgstr ""
4188
+
4189
+ #: admin/cerber-dashboard.php:1385
4190
+ msgid "You will be notified when such an event occurs"
4191
+ msgstr ""
4192
+
languages/wp-cerber-nl_NL.mo CHANGED
Binary file
languages/wp-cerber-nl_NL.po CHANGED
@@ -44,7 +44,7 @@ msgstr "Aangepaste inlogpagina"
44
  msgid "Custom login URL"
45
  msgstr "Aangepaste inlog-URL"
46
 
47
- #: cerber-settings.php:289 admin/cerber-dashboard.php:2064
48
  msgid "Citadel mode"
49
  msgstr "Citadelstand"
50
 
@@ -56,7 +56,7 @@ msgstr "Drempelwaarde"
56
  msgid "Duration"
57
  msgstr "Duur"
58
 
59
- #: cerber-settings.php:310 admin/cerber-dashboard.php:5199
60
  msgid "Notifications"
61
  msgstr "Meldingen"
62
 
@@ -64,125 +64,125 @@ msgstr "Meldingen"
64
  msgid "Send notification to admin email"
65
  msgstr "Melding versturen naar admin e-mailadres"
66
 
67
- #: admin/cerber-dashboard.php:5196 admin/cerber-tools.php:38
68
  #: admin/cerber-tools.php:49
69
  msgid "Access Lists"
70
  msgstr "Toegangslijsten"
71
 
72
- #: cerber-load.php:5674 cerber-settings.php:322
73
- #: admin/cerber-dashboard.php:2105 admin/cerber-dashboard.php:5192
74
- #: admin/cerber-users.php:1114
75
  msgid "Activity"
76
  msgstr "Activiteit"
77
 
78
- #: admin/cerber-dashboard.php:5194
79
  msgid "Lockouts"
80
  msgstr "Uitsluitingen"
81
 
82
- #: cerber-load.php:5683
83
  msgid "IP"
84
  msgstr "IP"
85
 
86
- #: admin/cerber-dashboard.php:950 admin/cerber-dashboard.php:1328
87
- #: admin/cerber-dashboard.php:3980 admin/cerber-dashboard.php:4462
88
  msgid "Date"
89
  msgstr "Datum"
90
 
91
- #: admin/cerber-dashboard.php:953 admin/cerber-dashboard.php:1330
92
- #: admin/cerber-dashboard.php:4467
93
  msgid "Local User"
94
  msgstr "Lokale gebruiker"
95
 
96
- #: cerber-load.php:5691
97
  msgid "Username used"
98
  msgstr "Toegepaste gebruikersnaam"
99
 
100
- #: cerber-common.php:1663
101
  msgid "Logged in"
102
  msgstr "Ingelogd"
103
 
104
- #: cerber-common.php:1664
105
  msgid "Logged out"
106
  msgstr "Uitgelogd"
107
 
108
- #: cerber-common.php:1665
109
  msgid "Login failed"
110
  msgstr "Inloggen mislukt"
111
 
112
- #: cerber-common.php:1668 admin/cerber-dashboard.php:1094
113
  msgid "IP blocked"
114
  msgstr "IP geblokkeerd"
115
 
116
- #: cerber-common.php:1672
117
  msgid "Citadel activated!"
118
  msgstr "Citadelstand geactiveerd!"
119
 
120
- #: cerber-common.php:1748 admin/cerber-dashboard.php:1667
121
  msgid "Locked out"
122
  msgstr "Buitengesloten"
123
 
124
- #: cerber-common.php:1750
125
  msgid "IP blacklisted"
126
  msgstr "IP uitgesloten"
127
 
128
- #: cerber-common.php:1685
129
  msgid "Password changed"
130
  msgstr "Wachtwoord veranderd"
131
 
132
- #: admin/cerber-dashboard.php:206 admin/cerber-dashboard.php:331
133
  msgid "Remove"
134
  msgstr "Verwijderen"
135
 
136
- #: admin/cerber-dashboard.php:665
137
  msgid "Lockout for %s was removed"
138
  msgstr "Uitsluiting voor %s is verwijderd"
139
 
140
- #: admin/cerber-dashboard.php:277 admin/cerber-dashboard.php:1574
141
- #: admin/cerber-dashboard.php:1658 admin/cerber-dashboard.php:2062
142
  #: admin/cerber-tools.php:69
143
  msgid "White IP Access List"
144
  msgstr "Toegelaten IP-adressen"
145
 
146
- #: admin/cerber-dashboard.php:280 admin/cerber-dashboard.php:1577
147
- #: admin/cerber-dashboard.php:1661 admin/cerber-dashboard.php:2063
148
  #: admin/cerber-tools.php:70
149
  msgid "Black IP Access List"
150
  msgstr "Uitgesloten IP-adressen"
151
 
152
- #: admin/cerber-dashboard.php:337
153
  msgid "List is empty"
154
  msgstr "Lijst is leeg"
155
 
156
- #: cerber-load.php:4805
157
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
158
  msgstr "Citadelstand geactiveerd na %d mislukte inlogpogingen binnen %d minuten."
159
 
160
- #: admin/cerber-dashboard.php:2830 admin/cerber-dashboard.php:3341
161
  msgid "View Activity"
162
  msgstr "Activiteit bekijken"
163
 
164
- #: nexus/cerber-nexus.php:95 admin/cerber-dashboard.php:5265
165
- #: admin/cerber-dashboard.php:5326 admin/cerber-tools.php:37
166
  #: admin/cerber-tools.php:48
167
  msgid "Settings"
168
  msgstr "Instellingen"
169
 
170
- #: admin/cerber-dashboard.php:1931
171
  msgid "Last login"
172
  msgstr "Laatst ingelogd"
173
 
174
- #: cerber-common.php:2077 nexus/cerber-slave-list.php:347
175
- #: admin/cerber-dashboard.php:478 admin/cerber-dashboard.php:2036
176
- #: admin/cerber-dashboard.php:2085
177
  msgid "Never"
178
  msgstr "Nooit"
179
 
180
- #: admin/cerber-dashboard.php:5683 admin/cerber-tools.php:59
181
  #: admin/cerber-admin.php:738 admin/cerber-admin.php:905
182
  msgid "Are you sure?"
183
  msgstr "Weet je het zeker?"
184
 
185
- #: cerber-settings.php:268 admin/cerber-dashboard.php:2469
186
  msgid "My site is behind a reverse proxy"
187
  msgstr "Mijn website draait achter een reverse proxy"
188
 
@@ -194,11 +194,11 @@ msgstr "Maak je bescherming slimmer!"
194
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
195
  msgstr "Schakel Permalinks in om deze functionaliteit te gebruiken. Stel de Permalinks instelling in op iets anders dan Standaard."
196
 
197
- #: admin/cerber-dashboard.php:5195
198
  msgid "Main Settings"
199
  msgstr "Hoofdinstellingen"
200
 
201
- #: admin/cerber-dashboard.php:5480
202
  msgid "Help"
203
  msgstr "Hulp"
204
 
@@ -206,27 +206,27 @@ msgstr "Hulp"
206
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
207
  msgstr "Uitsluiting verlengen naar %s uur na %s uitsluitingen in de afgelopen %s uur"
208
 
209
- #: cerber-load.php:369 admin/cerber-users.php:463
210
  msgid "You are not allowed to log in. Ask your administrator for assistance."
211
  msgstr "Je hebt geen toestemming om in te loggen. Vraag je beheerder om informatie."
212
 
213
- #: admin/cerber-dashboard.php:216 admin/cerber-users.php:925
214
  msgid "Expires"
215
  msgstr "Verloopt"
216
 
217
- #: admin/cerber-dashboard.php:244 admin/cerber-dashboard.php:2702
218
  msgid "No lockouts at the moment. The sky is clear."
219
  msgstr "Momenteel geen uitsluitingen."
220
 
221
- #: admin/cerber-dashboard.php:287
222
  msgid "Your IP"
223
  msgstr "Jouw IP"
224
 
225
- #: cerber-load.php:4806
226
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
227
  msgstr "Laatste mislukte inlogpoging was op %s vanaf IP %s op gebruiker %s."
228
 
229
- #: cerber-load.php:6015
230
  msgid "Can't activate WP Cerber due to a database error."
231
  msgstr "Kan WP Cerber niet activeren door een fout in de database."
232
 
@@ -239,7 +239,7 @@ msgstr "Stuur admin een melding bij meer uitsluitingen dan"
239
  msgid "days"
240
  msgstr "dagen"
241
 
242
- #: admin/cerber-dashboard.php:2002
243
  msgid "Cerber Quick View"
244
  msgstr "Cerber Quick View"
245
 
@@ -255,27 +255,19 @@ msgstr "Klik om test te verzenden"
255
  msgid "Attention! You have changed the login URL! The new login URL is"
256
  msgstr "Let op! Je hebt de inlog-URL veranderd. De nieuwe inlog-URL is"
257
 
258
- #: admin/cerber-dashboard.php:1930
259
  msgid "Comments"
260
  msgstr "Reacties"
261
 
262
- #: cerber-load.php:4807 cerber-load.php:5720
263
- msgid "View activity in dashboard"
264
- msgstr "Activiteiten bekijken in dashboard"
265
-
266
- #: cerber-load.php:4836
267
  msgid "Number of active lockouts"
268
  msgstr "Aantal actieve uitsluitingen"
269
 
270
- #: cerber-load.php:4840
271
- msgid "View lockouts in dashboard"
272
- msgstr "Uitsluitingen bekijken in dashboard"
273
-
274
- #: cerber-load.php:4934
275
  msgid "This message was sent by"
276
  msgstr "Dit bericht is verzonden door"
277
 
278
- #: admin/cerber-dashboard.php:90 admin/cerber-dashboard.php:5377
279
  msgid "Tools"
280
  msgstr "Gereedschap"
281
 
@@ -327,56 +319,56 @@ msgstr "Instellingen geïmporteerd van"
327
  msgid "Error while parsing file"
328
  msgstr "Fout bij verwerken bestand"
329
 
330
- #: admin/cerber-dashboard.php:214 admin/cerber-dashboard.php:1326
331
  msgid "Hostname"
332
  msgstr "Hostnaam"
333
 
334
- #: admin/cerber-dashboard.php:599
335
  msgid "unknown"
336
  msgstr "onbekend"
337
 
338
- #: admin/cerber-dashboard.php:2041 admin/cerber-dashboard.php:2071
339
  msgid "active"
340
  msgstr "actief"
341
 
342
- #: admin/cerber-dashboard.php:2041
343
  msgid "deactivate"
344
  msgstr "deactiveren"
345
 
346
- #: admin/cerber-dashboard.php:2045
347
  msgid "not active"
348
  msgstr "niet actief"
349
 
350
- #: admin/cerber-dashboard.php:2048 admin/cerber-dashboard.php:2066
351
  msgid "disabled"
352
  msgstr "gedeactiveerd"
353
 
354
- #: admin/cerber-dashboard.php:2054
355
  msgid "failed attempts"
356
  msgstr "mislukte pogingen"
357
 
358
- #: admin/cerber-dashboard.php:2054 admin/cerber-dashboard.php:2055
359
  msgid "in 24 hours"
360
  msgstr "in 24 uur"
361
 
362
- #: admin/cerber-dashboard.php:2054 admin/cerber-dashboard.php:2055
363
  msgid "view all"
364
  msgstr "bekijk alles"
365
 
366
- #: admin/cerber-dashboard.php:2055
367
  msgid "lockouts"
368
  msgstr "uitsluitingen"
369
 
370
- #: admin/cerber-dashboard.php:2057
371
  msgid "Lockouts at the moment"
372
  msgstr "Actuele uitsluitingen"
373
 
374
- #: admin/cerber-dashboard.php:2058
375
  msgid "Last lockout"
376
  msgstr "Recente uitsluiting"
377
 
378
- #: admin/cerber-dashboard.php:2062 admin/cerber-dashboard.php:2063
379
- #: admin/cerber-dashboard.php:3100
380
  msgid "entry"
381
  msgid_plural "entries"
382
  msgstr[0] "item"
@@ -390,15 +382,15 @@ msgstr "Aanbevolen instellingen laden"
390
  msgid "New version is available"
391
  msgstr "Nieuwe versie beschikbaar"
392
 
393
- #: cerber-load.php:4779
394
  msgid "WP Cerber notify"
395
  msgstr "WP Cerber melding"
396
 
397
- #: cerber-load.php:4803
398
  msgid "Citadel mode is activated"
399
  msgstr "Citadelstand is actief"
400
 
401
- #: cerber-load.php:4879
402
  msgid "New Custom login URL"
403
  msgstr "Nieuwe Aangepaste inlog-URL"
404
 
@@ -410,35 +402,35 @@ msgstr "Bestand gebruiken"
410
  msgid "Write failed login attempts to the file"
411
  msgstr "Mislukte pogingen opslaan in bestand"
412
 
413
- #: admin/cerber-dashboard.php:2829
414
  msgid "Deactivate"
415
  msgstr "Deactiveren"
416
 
417
- #: cerber-load.php:4838 admin/cerber-dashboard.php:217
418
  msgid "Reason"
419
  msgstr "Reden"
420
 
421
- #: admin/cerber-dashboard.php:1725
422
  msgid "Add IP to the Black List"
423
  msgstr "IP-adres toevoegen aan Uitsluitingslijst"
424
 
425
- #: cerber-common.php:1900
426
  msgid "Attempt to access"
427
  msgstr "Poging tot toegang"
428
 
429
- #: cerber-common.php:1899
430
  msgid "Limit on login attempts is reached"
431
  msgstr "Limiet voor aantal inlogpogingen is bereikt"
432
 
433
- #: cerber-load.php:4837
434
  msgid "Last lockout was added: %s for IP %s"
435
  msgstr "Laatste uitsluiting was toegevoegd: %s voor IP-adres %s"
436
 
437
- #: admin/cerber-dashboard.php:5197
438
  msgid "Hardening"
439
  msgstr "Versterking"
440
 
441
- #: admin/cerber-dashboard.php:1697
442
  msgid "Abuse email:"
443
  msgstr "E-mail voor misbruik:"
444
 
@@ -474,108 +466,108 @@ msgstr "Blokkeer toegang tot de RSS-, Atom- en RDF-feeds"
474
  msgid "Disable REST API"
475
  msgstr "REST API uitschakelen"
476
 
477
- #: cerber-load.php:4868 cerber-load.php:6057
478
  msgid "WP Cerber is now active and has started protecting your site"
479
  msgstr "WP Cerber is actief en beschermt nu je website"
480
 
481
- #: admin/cerber-dashboard.php:218 admin/cerber-users.php:928
482
  #: admin/cerber-admin.php:774 admin/cerber-admin.php:929
483
  msgid "Action"
484
  msgstr "Actie"
485
 
486
- #: admin/cerber-dashboard.php:5529
487
  msgid "Incorrect IP address or IP range"
488
  msgstr "IP-adres of -reeks is incorrect"
489
 
490
- #: admin/cerber-dashboard.php:2845
491
  msgid "Settings saved"
492
  msgstr "Instellingen opgeslagen"
493
 
494
- #: admin/cerber-dashboard.php:1703
495
  msgid "Network:"
496
  msgstr "Netwerk:"
497
 
498
- #: admin/cerber-dashboard.php:1719
499
  msgid "Add network to the Black List"
500
  msgstr "Netwerk toevoegen aan Uitsluitingslijst"
501
 
502
- #: admin/cerber-dashboard.php:2828
503
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
504
  msgstr "Let op! Citadelstand is actief; niemand kan inloggen."
505
 
506
- #: cerber-whois.php:241 cerber-whois.php:272 cerber-common.php:1924
507
- #: nexus/cerber-slave-list.php:333 admin/cerber-dashboard.php:459
508
- #: admin/cerber-dashboard.php:4133 admin/cerber-dashboard.php:4699
509
  msgid "Unknown"
510
  msgstr "Onbekend"
511
 
512
- #: cerber-load.php:724 cerber-load.php:737 cerber-load.php:745
513
- #: cerber-load.php:1093 cerber-load.php:1954 cerber-load.php:2277
514
- #: cerber-load.php:3388 cerber-common.php:451 cerber-common.php:550
515
- #: cerber-common.php:555 cerber-common.php:561 cerber-common.php:565
516
  #: nexus/cerber-nexus-slave.php:203 nexus/cerber-nexus-slave.php:214
517
  #: admin/cerber-admin-settings.php:667 admin/cerber-admin-settings.php:687
518
  #: admin/cerber-admin-settings.php:794 admin/cerber-admin.php:875
519
  msgid "ERROR:"
520
  msgstr "FOUT:"
521
 
522
- #: cerber-load.php:759
523
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
524
  msgstr "Menselijke verificatie mislukt. Klik het vierkant in onderstaand reCAPTCHA-blok."
525
 
526
- #: cerber-load.php:1934
527
  msgid "Username is not allowed. Please choose another one."
528
  msgstr "Gebruikersnaam is niet toegestaan, kies een andere."
529
 
530
- #: cerber-load.php:4831
531
  msgid "unspecified"
532
  msgstr "niet gespecificeerd"
533
 
534
- #: cerber-load.php:4834
535
  msgid "Number of lockouts is increasing"
536
  msgstr "Aantal uitsluitingen loopt op"
537
 
538
- #: cerber-load.php:4839
539
  msgid "View activity for this IP"
540
  msgstr "Bekijk activiteit voor dit adres"
541
 
542
- #: cerber-load.php:4843 cerber-load.php:4845
543
  msgid "A new version of WP Cerber is available to install"
544
  msgstr "De nieuwste versie WP Cerber staat klaar voor installatie"
545
 
546
- #: cerber-load.php:4844
547
  msgid "Hi!"
548
  msgstr "Hallo!"
549
 
550
- #: cerber-load.php:4847 cerber-load.php:4858 nexus/cerber-slave-list.php:44
551
  msgid "Website"
552
  msgstr "Website"
553
 
554
- #: cerber-load.php:4850 cerber-load.php:4851
555
  msgid "The WP Cerber security plugin has been deactivated"
556
  msgstr "WP Cerber is gedeactiveerd"
557
 
558
- #: cerber-load.php:4853
559
  msgid "Not logged in"
560
  msgstr "Niet ingelogd"
561
 
562
- #: cerber-load.php:4859
563
  msgid "By user"
564
  msgstr "Door gebruiker"
565
 
566
- #: cerber-load.php:4860
567
  msgid "From IP address"
568
  msgstr "Van IP-adres"
569
 
570
- #: cerber-load.php:4863
571
  msgid "From country"
572
  msgstr "Uit land"
573
 
574
- #: cerber-load.php:4867
575
  msgid "The WP Cerber security plugin is now active"
576
  msgstr "WP Cerber is actief"
577
 
578
- #: cerber-load.php:6070
579
  msgid "Import settings"
580
  msgstr "Instellingen importeren"
581
 
@@ -628,28 +620,28 @@ msgstr "Haal eerst een Site-sleutel en Geheime Sleutel op van Google om reCAPTCH
628
  msgid "Know more"
629
  msgstr "Meer weten"
630
 
631
- #: cerber-common.php:1656
632
  msgid "User created"
633
  msgstr "Gebruiker toegevoegd"
634
 
635
- #: cerber-common.php:1659
636
  msgid "User registered"
637
  msgstr "Gebruiker aangemeld"
638
 
639
- #: cerber-common.php:1696 cerber-common.php:1797
640
  msgid "reCAPTCHA verification failed"
641
  msgstr "reCAPTCHA verificatie mislukt"
642
 
643
- #: cerber-common.php:1697 cerber-common.php:1798
644
  msgid "reCAPTCHA settings are incorrect"
645
  msgstr "foutieve reCAPTCHA-instellingen"
646
 
647
  #. I see this line used where someone tries to log in from a blocked URL. So shouldn't this line be "Attempt to access from a prohibited URL" ?
648
- #: cerber-common.php:1701 cerber-common.php:1901
649
  msgid "Attempt to access prohibited URL"
650
  msgstr "Poging verboden URL te benaderen"
651
 
652
- #: cerber-common.php:1703 cerber-common.php:1903
653
  msgid "Attempt to log in with prohibited username"
654
  msgstr "Inlogpoging met verboden gebruikersnaam"
655
 
@@ -685,17 +677,17 @@ msgstr "ReCAPTCHA inschakelen om nieuw WooCommerce wachtwoord op te vragen"
685
  msgid "Enable reCAPTCHA for WooCommerce login form"
686
  msgstr "ReCAPTCHA inschakelen voor WooCommerce inlogpagina"
687
 
688
- #: cerber-common.php:1698 cerber-common.php:1799
689
  msgid "Request to the Google reCAPTCHA service failed"
690
  msgstr "Verzoek aan Google ReCAPTCHA-service mislukt"
691
 
692
- #: admin/cerber-dashboard.php:1063 admin/cerber-dashboard.php:1074
693
- #: admin/cerber-dashboard.php:1087 admin/cerber-dashboard.php:2705
694
- #: admin/cerber-dashboard.php:4495
695
  msgid "View all"
696
  msgstr "Zie alle"
697
 
698
- #: admin/cerber-dashboard.php:2713
699
  msgid "Recently locked out IP addresses"
700
  msgstr "Recent buitengesloten IP-adressen"
701
 
@@ -707,8 +699,8 @@ msgstr "OK, gooi ze er allemaal uit"
707
  msgid "NO, maybe later"
708
  msgstr "Nee, misschien later"
709
 
710
- #: admin/cerber-dashboard.php:62 admin/cerber-dashboard.php:2104
711
- #: admin/cerber-dashboard.php:3122 admin/cerber-dashboard.php:5191
712
  msgid "Dashboard"
713
  msgstr "Dashboard"
714
 
@@ -720,43 +712,43 @@ msgstr "Wil je WP Cerber nog beter maken?"
720
  msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
721
  msgstr "Sta WP Cerber toe om geblokkeerde boosaardige IP-adressen te delen met Cerber Lab. Dat helpt ons betere algoritmes te maken om WordPress te beschermen tegen nieuwe bedreigingen en botnets. Je kunt je toestemming altijd weer intrekken."
722
 
723
- #: admin/cerber-dashboard.php:3979
724
  msgid "IP address"
725
  msgstr "IP-adres"
726
 
727
- #: admin/cerber-dashboard.php:954
728
  msgid "User login"
729
  msgstr "Gebruikers-login"
730
 
731
- #: admin/cerber-dashboard.php:955 admin/cerber-dashboard.php:3985
732
  msgid "User ID"
733
  msgstr "Gebruikers-ID"
734
 
735
- #: admin/cerber-dashboard.php:1360 admin/cerber-dashboard.php:4521
736
  msgid "Export"
737
  msgstr "Export"
738
 
739
- #: admin/cerber-dashboard.php:1385
740
  msgid "Search for IP or username"
741
  msgstr "Zoek IP of gebruikersnaam"
742
 
743
- #: admin/cerber-dashboard.php:1396
744
  msgid "Filter"
745
  msgstr "Filter"
746
 
747
- #: admin/cerber-dashboard.php:62
748
  msgid "Cerber Dashboard"
749
  msgstr "Cerber Dashboard"
750
 
751
- #: admin/cerber-dashboard.php:90
752
  msgid "Cerber tools"
753
  msgstr "Cerber tools"
754
 
755
- #: cerber-load.php:5687 admin/cerber-users.php:922
756
  msgid "User"
757
  msgstr "Gebruiker"
758
 
759
- #: cerber-load.php:5695
760
  msgid "Search string"
761
  msgstr "Zoekfrase"
762
 
@@ -793,11 +785,11 @@ msgstr "Geen apparaten gevonden"
793
  msgid "Not available"
794
  msgstr "Niet beschikbaar"
795
 
796
- #: cerber-common.php:1688
797
  msgid "Password reset requested"
798
  msgstr "Wachtwoordvernieuwing aangevraagd"
799
 
800
- #: cerber-common.php:1904
801
  msgid "Limit on failed reCAPTCHA verifications is reached"
802
  msgstr "Grens bereikt van foutieve reCAPTCHA's"
803
 
@@ -837,40 +829,40 @@ msgstr "Sluit IP-adressen uit voor %s minuten na %s mislukte pogingen in %s minu
837
  msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
838
  msgstr "In de Citadelstand kunnen alleen adressen van de Lijst Toegelaten IP-adressen inloggen. Heeft geen effect op reeds ingelogde gebruikers."
839
 
840
- #: admin/cerber-dashboard.php:951 admin/cerber-dashboard.php:1329
841
  msgid "Event"
842
  msgstr "Gebeurtenis"
843
 
844
- #: cerber-common.php:384
845
  msgid "Spam comments denied"
846
  msgstr "Spamreacties afgewezen"
847
 
848
- #: cerber-common.php:386
849
  msgid "Malicious IP addresses detected"
850
  msgstr "Kwaadaardige IP-adressen gevonden"
851
 
852
- #: cerber-common.php:387
853
  msgid "Lockouts occurred"
854
  msgstr "Uitsluitingen"
855
 
856
- #: cerber-load.php:1913 cerber-load.php:1919 cerber-load.php:1924
857
- #: cerber-load.php:1944 cerber-load.php:1949
858
  msgid "You are not allowed to register."
859
  msgstr "Je mag niet aanmelden."
860
 
861
- #: cerber-common.php:1673
862
  msgid "Spam comment denied"
863
  msgstr "Spamreactie afgewezen"
864
 
865
- #: cerber-common.php:1706
866
  msgid "Attempt to log in denied"
867
  msgstr "Inlogpoging afgewezen"
868
 
869
- #: cerber-common.php:1707
870
  msgid "Attempt to register denied"
871
  msgstr "Aanmeldingspoging afgewezen"
872
 
873
- #: cerber-common.php:381
874
  msgid "Malicious activities mitigated"
875
  msgstr "Verdachte activiteiten afgevangen"
876
 
@@ -886,19 +878,19 @@ msgstr "Bescherm invoer reacties met bot-detectie"
886
  msgid "Protect registration form with bot detection engine"
887
  msgstr "Bescherm registratie met bot-detectie"
888
 
889
- #: admin/cerber-dashboard.php:5381
890
  msgid "Diagnostic"
891
  msgstr "Diagnose"
892
 
893
- #: admin/cerber-dashboard.php:5384
894
  msgid "License"
895
  msgstr "Licentie"
896
 
897
- #: cerber-load.php:2277
898
  msgid "Sorry, human verification failed."
899
  msgstr "Sorry, je verificatie faalt."
900
 
901
- #: cerber-common.php:1905
902
  msgid "Bot activity is detected"
903
  msgstr "Bot-activiteit getedecteerd"
904
 
@@ -918,7 +910,7 @@ msgstr "Spamreacties weggooien"
918
  msgid "Move spam comments to trash after"
919
  msgstr "Verwijder spamreacties na"
920
 
921
- #: cerber-common.php:1674
922
  msgid "Spam form submission denied"
923
  msgstr "Geweigerd wegens spam"
924
 
@@ -938,54 +930,54 @@ msgstr "Veilige stand"
938
  msgid "Use less restrictive policies (allow AJAX)"
939
  msgstr "Minder restricties (sta AJAX toe)"
940
 
941
- #: admin/cerber-dashboard.php:215 admin/cerber-dashboard.php:1327
942
  msgid "Country"
943
  msgstr "Land"
944
 
945
- #: admin/cerber-dashboard.php:69
946
  msgid "Cerber Security Rules"
947
  msgstr "Cerber Beveiligingsregels"
948
 
949
- #: admin/cerber-dashboard.php:69 admin/cerber-dashboard.php:5308
950
  msgid "Security Rules"
951
  msgstr "Beveiligingsregels"
952
 
953
- #: admin/cerber-dashboard.php:1932
954
  msgid "Failed login attempts"
955
  msgstr "Gefaalde loginpogingen"
956
 
957
- #: admin/cerber-dashboard.php:1856 admin/cerber-dashboard.php:1933
958
  msgid "Registered"
959
  msgstr "Aangemeld"
960
 
961
- #: admin/cerber-dashboard.php:1980 admin/cerber-users.php:52
962
- #: admin/cerber-users.php:1081
963
  msgid "You"
964
  msgstr "Jij"
965
 
966
- #: cerber-common.php:385
967
  msgid "Spam form submissions denied"
968
  msgstr "Spam formulierafgifte afgewezen"
969
 
970
- #: cerber-load.php:4870 cerber-load.php:6061
971
  msgid "Getting Started Guide"
972
  msgstr "Startgids"
973
 
974
- #: admin/cerber-dashboard.php:5310
975
  msgid "Countries"
976
  msgstr "Landen"
977
 
978
- #: admin/cerber-dashboard.php:3708
979
  msgid "Permitted for one country"
980
  msgid_plural "Permitted for %d countries"
981
  msgstr[0] "Toegestaan voor één land"
982
  msgstr[1] "Toegestaan voor %d landen"
983
 
984
- #: admin/cerber-dashboard.php:3719
985
  msgid "No rule"
986
  msgstr "Geen regel"
987
 
988
- #: admin/cerber-dashboard.php:3880
989
  msgid "Security rules have been updated"
990
  msgstr "Beveiligingsregels zijn vernieuwd"
991
 
@@ -994,43 +986,43 @@ msgstr "Beveiligingsregels zijn vernieuwd"
994
  msgid "https://wpcerber.com"
995
  msgstr "https://wpcerber.com"
996
 
997
- #: cerber-common.php:1675
998
  msgid "Form submission denied"
999
  msgstr "Formulierafgifte afgewezen"
1000
 
1001
- #: cerber-common.php:1676
1002
  msgid "Comment denied"
1003
  msgstr "Commentaar afgewezen"
1004
 
1005
- #: cerber-common.php:1712
1006
  msgid "Request to REST API denied"
1007
  msgstr "Verzoek aan REST API afgewezen"
1008
 
1009
- #: cerber-common.php:1746
1010
  msgid "Bot detected"
1011
  msgstr "Bot gedetecteerd"
1012
 
1013
- #: cerber-common.php:1747
1014
  msgid "Citadel mode is active"
1015
  msgstr "Citadelstand actief"
1016
 
1017
- #: cerber-common.php:1751
1018
  msgid "Malicious activity detected"
1019
  msgstr "Kwaadaardige activiteit gedetecteerd"
1020
 
1021
- #: cerber-common.php:1752
1022
  msgid "Blocked by country rule"
1023
  msgstr "Geblokkeerd door landenregel"
1024
 
1025
- #: cerber-common.php:1753
1026
  msgid "Limit reached"
1027
  msgstr "Limiet bereikt"
1028
 
1029
- #: cerber-common.php:1754
1030
  msgid "Multiple suspicious activities"
1031
  msgstr "Meerdere verdachte activiteiten"
1032
 
1033
- #: cerber-common.php:1906
1034
  msgid "Multiple suspicious activities were detected"
1035
  msgstr "Meerdere verdachte activiteiten gedetecteerd"
1036
 
@@ -1042,10 +1034,6 @@ msgstr "Geef toegestane REST API-naamruimtes op als de REST API is uitgeschakeld
1042
  msgid "Registration limit"
1043
  msgstr "Registratielimiet"
1044
 
1045
- #: cerber-settings.php:694
1046
- msgid "Sort users in dashboard"
1047
- msgstr "Gebruikers in dashboard sorteren"
1048
-
1049
  #: cerber-settings.php:695
1050
  msgid "by date of registration"
1051
  msgstr "per registratiedatum"
@@ -1054,31 +1042,31 @@ msgstr "per registratiedatum"
1054
  msgid "Query whitelist"
1055
  msgstr "Toegestane queries"
1056
 
1057
- #: admin/cerber-dashboard.php:3688
1058
  msgid "Start typing here to find a country"
1059
  msgstr "Begin te typen om een land te vinden"
1060
 
1061
- #: admin/cerber-dashboard.php:3803
1062
  msgid "Click on a country name to add it to the list of selected countries"
1063
  msgstr "Klik op een landnaam om toe te voegen aan de lijst gekozen landen"
1064
 
1065
- #: admin/cerber-dashboard.php:3835
1066
  msgid "Submit forms"
1067
  msgstr "Formulieren versturen"
1068
 
1069
- #: admin/cerber-dashboard.php:3836
1070
  msgid "Post comments"
1071
  msgstr "Commentaar plaatsen"
1072
 
1073
- #: admin/cerber-dashboard.php:3834
1074
  msgid "Register on the website"
1075
  msgstr "Aanmelden bij de website"
1076
 
1077
- #: admin/cerber-dashboard.php:3837
1078
  msgid "Use XML-RPC"
1079
  msgstr "Benut XML-RPC"
1080
 
1081
- #: admin/cerber-dashboard.php:3838
1082
  msgid "Use REST API"
1083
  msgstr "Benut REST API"
1084
 
@@ -1090,7 +1078,7 @@ msgstr "Volledig negeren"
1090
  msgid "Mark it as spam"
1091
  msgstr "Markeren als spam"
1092
 
1093
- #: admin/cerber-dashboard.php:3123
1094
  msgid "Main settings"
1095
  msgstr "Hoofdinstellingen"
1096
 
@@ -1102,23 +1090,23 @@ msgstr "Weekrapporten"
1102
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1103
  msgstr "Gebruik je een caching plugin, dan moet je je nieuwe login URL toevoegen aan de niet te cachen pagina's."
1104
 
1105
- #: cerber-load.php:4889
1106
  msgid "Weekly report"
1107
  msgstr "Weekrapport"
1108
 
1109
- #: cerber-load.php:4892 cerber-load.php:4900
1110
  msgid "To change reporting settings visit"
1111
  msgstr "Om je rapportageinstellingen aan te passen, ga naar"
1112
 
1113
- #: cerber-load.php:4926
1114
  msgid "Your login page:"
1115
  msgstr "Je login-pagina:"
1116
 
1117
- #: cerber-load.php:4931
1118
  msgid "Your license is valid until"
1119
  msgstr "Je licentie geldt tot"
1120
 
1121
- #: cerber-load.php:5037
1122
  msgid "Activity details"
1123
  msgstr "Details van activiteiten"
1124
 
@@ -1126,31 +1114,31 @@ msgstr "Details van activiteiten"
1126
  msgid "Click to send now"
1127
  msgstr "Klik om nu te versturen"
1128
 
1129
- #: admin/cerber-dashboard.php:673
1130
  msgid "Email has been sent to"
1131
  msgstr "E-mail is verzonden naar"
1132
 
1133
- #: admin/cerber-dashboard.php:676
1134
  msgid "Unable to send email to"
1135
  msgstr "Kan geen e-mail verzenden naar"
1136
 
1137
- #: admin/cerber-dashboard.php:3711
1138
  msgid "Not permitted for one country"
1139
  msgid_plural "Not permitted for %d countries"
1140
  msgstr[0] "Niet toegestaan voor één land"
1141
  msgstr[1] "Niet toegestaan voor %d landen"
1142
 
1143
- #: admin/cerber-dashboard.php:3807
1144
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1145
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1146
  msgstr "Gekozen landen mogen %s, overige landen niet"
1147
 
1148
- #: admin/cerber-dashboard.php:3810
1149
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1150
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1151
  msgstr "Gekozen landen mogen niet %s, overige landen wel"
1152
 
1153
- #: cerber-load.php:5025
1154
  msgid "Weekly Report"
1155
  msgstr "Weekrapport"
1156
 
@@ -1171,15 +1159,15 @@ msgid "Enable reporting"
1171
  msgstr "Rapporteren aanzetten"
1172
 
1173
  #. How to interpret this line? Do you mean 'was DATE/TIME from IP ADDRESS' ?
1174
- #: cerber-load.php:4955
1175
  msgid "Your last sign-in was %s from %s"
1176
  msgstr "Je laatste inlog was op %s vanaf %s"
1177
 
1178
- #: admin/cerber-dashboard.php:345
1179
  msgid "Optional comment for this entry"
1180
  msgstr "Opmerking hierbij"
1181
 
1182
- #: admin/cerber-dashboard.php:367
1183
  msgid "You cannot add your IP address or network"
1184
  msgstr "Je kunt je eigen IP of netwerk niet toevoegen"
1185
 
@@ -1187,53 +1175,53 @@ msgstr "Je kunt je eigen IP of netwerk niet toevoegen"
1187
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1188
  msgstr "Je kunt REGEX-patronen gebruiken; sluit deze op in voorwaartse slashes zoals /admin.*/."
1189
 
1190
- #: admin/cerber-dashboard.php:64
1191
  msgid "Cerber Traffic Inspector"
1192
  msgstr "Cerber Verkeersinspectie"
1193
 
1194
- #: admin/cerber-dashboard.php:64 admin/cerber-dashboard.php:2067
1195
- #: admin/cerber-dashboard.php:5262
1196
  msgid "Traffic Inspector"
1197
  msgstr "Verkeersinspectie"
1198
 
1199
- #: admin/cerber-dashboard.php:2106 admin/cerber-users.php:1115
1200
  msgid "Traffic"
1201
  msgstr "Verkeer"
1202
 
1203
- #: admin/cerber-dashboard.php:4463
1204
  msgid "Request"
1205
  msgstr "Verzoek"
1206
 
1207
- #: admin/cerber-dashboard.php:4465 admin/cerber-users.php:927
1208
  msgid "Host Info"
1209
  msgstr "Host Info"
1210
 
1211
  #. Do you mean a program for browsing the web like Chrome? Or a ftp user agent or so?
1212
- #: admin/cerber-dashboard.php:4466
1213
  msgid "User Agent"
1214
  msgstr "Webbrowser"
1215
 
1216
- #: admin/cerber-dashboard.php:4500
1217
  msgid "Form submissions"
1218
  msgstr "Formulierverzendingen"
1219
 
1220
- #: admin/cerber-dashboard.php:4501
1221
  msgid "Page Not Found"
1222
  msgstr "Pagina niet gevonden"
1223
 
1224
- #: admin/cerber-dashboard.php:4508
1225
  msgid "Longer than"
1226
  msgstr "Langer dan"
1227
 
1228
- #: admin/cerber-dashboard.php:4527
1229
  msgid "Refresh"
1230
  msgstr "Ververs"
1231
 
1232
- #: cerber-common.php:288 admin/cerber-dashboard.php:1373
1233
  msgid "Check for requests"
1234
  msgstr "Controleer op verzoeken"
1235
 
1236
- #: admin/cerber-dashboard.php:4562
1237
  msgid "Not specified"
1238
  msgstr "Niet gespecificeerd"
1239
 
@@ -1273,23 +1261,19 @@ msgstr "Bewaar verzoekvelden"
1273
  msgid "Page generation time threshold"
1274
  msgstr "Drempeltijd paginaopbouw"
1275
 
1276
- #: admin/cerber-dashboard.php:4488
1277
- msgid "No requests have been logged."
1278
- msgstr "Er zijn geen verzoeken geregistreerd."
1279
-
1280
- #: admin/cerber-dashboard.php:2066
1281
  msgid "enabled"
1282
  msgstr "aan"
1283
 
1284
- #: admin/cerber-dashboard.php:2071
1285
  msgid "no connection"
1286
  msgstr "geen verbinding"
1287
 
1288
- #: admin/cerber-dashboard.php:1884
1289
  msgid "Last seen"
1290
  msgstr "Laatst gezien"
1291
 
1292
- #: cerber-load.php:4668
1293
  msgid "We're sorry, you are not allowed to proceed"
1294
  msgstr "Excuus, je mag niet doorgaan"
1295
 
@@ -1322,23 +1306,23 @@ msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1322
  msgstr "Blokkeer ongeoorloofde toegang tot load-scripts.php en load-styles.php\n"
1323
  ""
1324
 
1325
- #: cerber-common.php:3272
1326
  msgid "Unable to create the directory"
1327
  msgstr "Kan map niet aanmaken"
1328
 
1329
- #: cerber-common.php:3277
1330
  msgid "Destination folder access denied"
1331
  msgstr "Toegang bestemmingsmap afgewezen"
1332
 
1333
- #: cerber-common.php:3280
1334
  msgid "File not found"
1335
  msgstr "Bestand niet gevonden"
1336
 
1337
- #: cerber-common.php:3283
1338
  msgid "Unable to copy the file"
1339
  msgstr "Kan bestand niet kopiëren"
1340
 
1341
- #: cerber-common.php:3289
1342
  msgid "Unable to delete the file"
1343
  msgstr "Kan bestand niet verwijderen"
1344
 
@@ -1358,7 +1342,7 @@ msgstr "Standaardinstelling"
1358
  msgid "Plugin initialization mode has not been changed"
1359
  msgstr "Plugin initialisatie is niet aangepast"
1360
 
1361
- #: cerber-common.php:1710
1362
  msgid "File upload denied"
1363
  msgstr "Bestandsupload afgewezen"
1364
 
@@ -1375,27 +1359,27 @@ msgstr "Wees voorzichtig met deze opties!"
1375
  msgid "If you forget your Custom login URL, you will be unable to log in."
1376
  msgstr "Als je de Aangepaste inlog-URL vergeet, kun je niet meer inloggen."
1377
 
1378
- #: admin/cerber-dashboard.php:75 admin/cerber-dashboard.php:5323
1379
  msgid "Site Integrity"
1380
  msgstr "Site-integriteit"
1381
 
1382
  #: cerber-scanner.php:1717 cerber-settings.php:683 cerber-settings.php:825
1383
  #: cerber-settings.php:856 cerber-settings.php:990 cerber-settings.php:999
1384
- #: cerber-settings.php:1466 admin/cerber-dashboard.php:2091
1385
- #: admin/cerber-dashboard.php:2093 admin/cerber-users.php:20
1386
  #: admin/cerber-users.php:474 admin/cerber-users.php:488
1387
  msgid "Disabled"
1388
  msgstr "Uitgeschakeld"
1389
 
1390
- #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2092
1391
  msgid "Quick Scan"
1392
  msgstr "Snelle Scan"
1393
 
1394
- #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2094
1395
  msgid "Full Scan"
1396
  msgstr "Volledige scan"
1397
 
1398
- #: cerber-common.php:1755
1399
  msgid "Denied"
1400
  msgstr "Afgewezen"
1401
 
@@ -1496,11 +1480,11 @@ msgstr "Voeg bestandsgrootte toe"
1496
  msgid "Include scan errors"
1497
  msgstr "Voeg scanfouten toe"
1498
 
1499
- #: admin/cerber-dashboard.php:5325
1500
  msgid "Security Scanner"
1501
  msgstr "Veiligheidsscanner"
1502
 
1503
- #: admin/cerber-dashboard.php:5327
1504
  msgid "Scheduling"
1505
  msgstr "Agenderen"
1506
 
@@ -1532,7 +1516,8 @@ msgstr "Stop Scannen"
1532
  msgid "Continue Scanning"
1533
  msgstr "Hervat Scannen"
1534
 
1535
- #: admin/cerber-tools.php:350 admin/cerber-admin.php:227
 
1536
  msgid "Delete"
1537
  msgstr "Wis"
1538
 
@@ -1644,7 +1629,7 @@ msgstr "Fout bij bestandstoegang. Scanresultaten zijn mogelijk verouderd. Scan o
1644
  msgid "To view full report visit"
1645
  msgstr "Ga voor volledig rapport naar"
1646
 
1647
- #: cerber-load.php:4897
1648
  msgid "Scanner Report"
1649
  msgstr "Scannerrapport"
1650
 
@@ -1709,40 +1694,40 @@ msgstr "Rapportage Snelle Scan"
1709
  msgid "Files scanned"
1710
  msgstr "Bestanden gescand"
1711
 
1712
- #: admin/cerber-dashboard.php:327 admin/cerber-dashboard.php:1647
1713
- #: admin/cerber-dashboard.php:1704 admin/cerber-dashboard.php:1835
1714
  msgid "Check for activities"
1715
  msgstr "Check op activiteiten"
1716
 
1717
- #: admin/cerber-dashboard.php:1866
1718
  msgid "Activated"
1719
  msgstr "Geactiveerd"
1720
 
1721
- #: cerber-common.php:1721
1722
  msgid "Malicious request denied"
1723
  msgstr "Kwaadaardige request afgewezen"
1724
 
1725
- #: cerber-common.php:1735
1726
  msgid "User activated"
1727
  msgstr "Gebruiker-geactiveerd"
1728
 
1729
- #: cerber-common.php:1757
1730
  msgid "Suspicious number of fields"
1731
  msgstr "Verdacht aantal velden"
1732
 
1733
- #: cerber-common.php:1758
1734
  msgid "Suspicious number of nested values"
1735
  msgstr "Verdacht aantal geneste waarden"
1736
 
1737
- #: cerber-common.php:1759 cerber-common.php:1908
1738
  msgid "Malicious code detected"
1739
  msgstr "Kwaadaardige code ontdekt"
1740
 
1741
- #: cerber-common.php:1909
1742
  msgid "Attempt to upload a file with malicious code"
1743
  msgstr "Poging een bestand met kwaadaardige code te uploaden"
1744
 
1745
- #: cerber-common.php:2192
1746
  msgid "Bytes"
1747
  msgstr "Bytes"
1748
 
@@ -1762,11 +1747,11 @@ msgstr "Schema voor geautomatiseerde scans"
1762
  msgid "Scan results reporting"
1763
  msgstr "Rapportage scanresultaten"
1764
 
1765
- #: admin/cerber-dashboard.php:1084
1766
  msgid "Suspicious activity"
1767
  msgstr "Verdachte activiteit"
1768
 
1769
- #: admin/cerber-dashboard.php:4497
1770
  msgid "Errors"
1771
  msgstr "Fouten"
1772
 
@@ -1775,11 +1760,11 @@ msgstr "Fouten"
1775
  msgid "Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications."
1776
  msgstr "Beschermt Wordpress tegen hack-aanvallen, spam, trojans en virussen. Malware scanner en integriteitscontrole. Versterkt Wordpress met uitgebreide veiligheidsalgoritmen. Beschermt tegen spam met reCAPTCHA en detectie van bot-activiteit. Maakt activiteit van gebruikers en indringers te volgen via meldingen per e-mail, mobiel of desktop."
1777
 
1778
- #: cerber-load.php:375
1779
  msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
1780
  msgstr "Je hebt de limiet aan loginpogingen bereikt. Probeer opnieuw na %d minuten."
1781
 
1782
- #: cerber-common.php:2072
1783
  msgctxt "preposition of a period of time like: in 6 hours"
1784
  msgid "in %s"
1785
  msgstr "over %s"
@@ -1789,7 +1774,7 @@ msgctxt "preposition of time like: at 11:00"
1789
  msgid "at"
1790
  msgstr "om"
1791
 
1792
- #: admin/cerber-dashboard.php:5330
1793
  msgid "Quarantine"
1794
  msgstr "Quarantine"
1795
 
@@ -1862,15 +1847,15 @@ msgstr "Het bestand is definitief verwijderd."
1862
  msgid "The file has been restored to its original location."
1863
  msgstr "Het bestand is teruggezet op de oorspronkelijke plek."
1864
 
1865
- #: admin/cerber-dashboard.php:2107
1866
  msgid "Integrity"
1867
  msgstr "Integriteit"
1868
 
1869
- #: cerber-common.php:1709
1870
  msgid "Attempt to upload malicious file denied"
1871
  msgstr "Poging afgeweerd om kwaadaardig bestand te uploaden"
1872
 
1873
- #: cerber-load.php:8120
1874
  msgid "Awesome!"
1875
  msgstr "Geweldig!"
1876
 
@@ -1898,7 +1883,7 @@ msgstr "Bestanden met deze extensies"
1898
  msgid "Use comma to separate items."
1899
  msgstr "Scheid items met komma's."
1900
 
1901
- #: admin/cerber-dashboard.php:5328
1902
  msgid "Cleaning up"
1903
  msgstr "Opschonen"
1904
 
@@ -1930,16 +1915,16 @@ msgstr "Verwijderd"
1930
  msgid "Automatically moved to quarantine"
1931
  msgstr "Automatisch in quarantaine gezet"
1932
 
1933
- #: cerber-common.php:1760
1934
  msgid "Suspicious SQL code detected"
1935
  msgstr "Verdachte SQL-code gevonden"
1936
 
1937
- #: admin/cerber-dashboard.php:2088
1938
  msgctxt "Example: Last malware scan: 23 Jan 2018"
1939
  msgid "Last malware scan"
1940
  msgstr "Recente malware scan"
1941
 
1942
- #: admin/cerber-dashboard.php:5264
1943
  msgid "Live Traffic"
1944
  msgstr "Huidig verkeer"
1945
 
@@ -1951,7 +1936,7 @@ msgstr "Zet PHP uit in uploads"
1951
  msgid "Disable PHP error displaying"
1952
  msgstr "Zet PHP foutweergave uit"
1953
 
1954
- #: admin/cerber-dashboard.php:5329
1955
  msgid "Ignore List"
1956
  msgstr "Negeer-lijst"
1957
 
@@ -1984,35 +1969,35 @@ msgstr "Verkeersinzichten"
1984
  msgid "Activity Insights"
1985
  msgstr "Activiteitsinzichten"
1986
 
1987
- #: admin/cerber-dashboard.php:3268
1988
  msgid "Are you sure you want to delete selected files?"
1989
  msgstr "Weet je zeker dat je de geselecteerde bestanden wilt wissen?"
1990
 
1991
- #: admin/cerber-dashboard.php:3269
1992
  msgid "These files have been moved to the quarantine"
1993
  msgstr "Deze bestanden zijn in quarantaine gezet"
1994
 
1995
- #: admin/cerber-dashboard.php:3272
1996
  msgid "Do you want to add selected files to the ignore list?"
1997
  msgstr "Wil je de geselecteerde bestanden toevoegen aan de negeer-lijst?"
1998
 
1999
- #: admin/cerber-dashboard.php:3273
2000
  msgid "These files have been added to the ignore list"
2001
  msgstr "Deze bestanden zijn toegevoegd aan de negeer-lijst"
2002
 
2003
- #: admin/cerber-dashboard.php:3275
2004
  msgid "Some errors occurred"
2005
  msgstr "Er zijn fouten opgetreden"
2006
 
2007
- #: admin/cerber-dashboard.php:3276
2008
  msgid "All files have been processed"
2009
  msgstr "Alle bestanden zijn verwerkt"
2010
 
2011
- #: admin/cerber-dashboard.php:5669
2012
  msgid "Know more about all advantages at"
2013
  msgstr "Leer alle voordelen kennen op"
2014
 
2015
- #: cerber-common.php:1761
2016
  msgid "Suspicious JavaScript code detected"
2017
  msgstr "Verdachte JavaScript-code ontdekt"
2018
 
@@ -2036,39 +2021,39 @@ msgstr "Het filter levert geen bestanden op."
2036
  msgid "Click here to see the full list of files"
2037
  msgstr "Klik hier om de hele bestandenlijst te zien"
2038
 
2039
- #: admin/cerber-dashboard.php:952
2040
  msgid "Additional Details"
2041
  msgstr "Aanvullende details"
2042
 
2043
- #: admin/cerber-dashboard.php:3986
2044
  msgid "Page generation time"
2045
  msgstr "Aanmaaktijd pagina"
2046
 
2047
- #: admin/cerber-dashboard.php:5844
2048
  msgid "Log In"
2049
  msgstr "Inloggen"
2050
 
2051
- #: admin/cerber-dashboard.php:5845
2052
  msgid "Log Out"
2053
  msgstr "Uitloggen"
2054
 
2055
- #: admin/cerber-dashboard.php:5846
2056
  msgid "Register"
2057
  msgstr "Aanmelden"
2058
 
2059
- #: admin/cerber-dashboard.php:5849
2060
  msgid "WooCommerce Log In"
2061
  msgstr "WooCommerce Log In"
2062
 
2063
- #: admin/cerber-dashboard.php:5850
2064
  msgid "WooCommerce Log Out"
2065
  msgstr "WooCommerce Log Out"
2066
 
2067
- #: cerber-common.php:1749
2068
  msgid "IP address is locked out"
2069
  msgstr "IP-adres is uitgesloten"
2070
 
2071
- #: cerber-common.php:1912
2072
  msgid "Multiple suspicious requests"
2073
  msgstr "Meerdere verdachte verzoeken"
2074
 
@@ -2100,11 +2085,11 @@ msgstr "Softwarefouten opslaan"
2100
  msgid "Preparing for the scan"
2101
  msgstr "Scan voorbereiden"
2102
 
2103
- #: cerber-common.php:1762
2104
  msgid "Blocked by administrator"
2105
  msgstr "Geblokkeerd door de beheerder"
2106
 
2107
- #: cerber-load.php:379
2108
  msgid "You are not allowed to log in"
2109
  msgstr "Je mag niet inloggen"
2110
 
@@ -2156,7 +2141,7 @@ msgstr "Deze beperkingen gelden niet voor IP-adressen op de Toegelaten Lijst"
2156
  msgid "Select one or more roles"
2157
  msgstr "Kies een of meer rollen"
2158
 
2159
- #: admin/cerber-dashboard.php:1384 admin/cerber-users.php:970
2160
  msgid "Filter by registered user"
2161
  msgstr "Gefilterd door een geregistreerde gebruiker"
2162
 
@@ -2176,19 +2161,19 @@ msgstr "Alleen geregistreerde en ingelogde gebruikers mogen de website bekijken"
2176
  msgid "Redirect to URL"
2177
  msgstr "Omleiding naar URL"
2178
 
2179
- #: admin/cerber-dashboard.php:5383
2180
  msgid "Changelog"
2181
  msgstr "Log van aanpassingen"
2182
 
2183
- #: admin/cerber-dashboard.php:743
2184
  msgid "Default settings have been loaded"
2185
  msgstr "Standaardinstellingen zijn geladen"
2186
 
2187
- #: admin/cerber-dashboard.php:3695
2188
  msgid "Save all rules"
2189
  msgstr "Alle regels opslaan"
2190
 
2191
- #: cerber-common.php:1738
2192
  msgid "Invalid master credentials"
2193
  msgstr "Ongeldige hoofd-inloggegevens"
2194
 
@@ -2240,7 +2225,7 @@ msgstr "WordPress"
2240
  msgid "Malware Scan"
2241
  msgstr "Malware Scan"
2242
 
2243
- #: nexus/cerber-nexus-master.php:141 nexus/cerber-slave-list.php:56
2244
  msgid "Notes"
2245
  msgstr "Aantekeningen"
2246
 
@@ -2248,7 +2233,7 @@ msgstr "Aantekeningen"
2248
  msgid "Add a slave website"
2249
  msgstr "Voeg een 'slave'-website toe"
2250
 
2251
- #: nexus/cerber-slave-list.php:247 admin/cerber-users.php:1036
2252
  msgid "Search results for:"
2253
  msgstr "Zoekresultaten voor:"
2254
 
@@ -2268,69 +2253,69 @@ msgstr "Geen website geconfigureerd."
2268
  msgid "Add a new one"
2269
  msgstr "Voeg een nieuwe toe"
2270
 
2271
- #: nexus/cerber-nexus-master.php:104
2272
  msgid "Website Properties"
2273
  msgstr "Website-eigenschappen"
2274
 
2275
- #: nexus/cerber-nexus-master.php:114
2276
  msgid "Website URL"
2277
  msgstr "Website URL"
2278
 
2279
- #: nexus/cerber-nexus-master.php:119
2280
  msgid "Display as"
2281
  msgstr "Toon als"
2282
 
2283
- #: nexus/cerber-nexus-master.php:149
2284
  msgid "Website Owner"
2285
  msgstr "Website-eigenaar"
2286
 
2287
- #: nexus/cerber-nexus-master.php:165
2288
  msgid "Phone"
2289
  msgstr "Telefoon"
2290
 
2291
- #: nexus/cerber-nexus-master.php:173
2292
  msgid "Address"
2293
  msgstr "Adres"
2294
 
2295
- #: nexus/cerber-nexus-master.php:316
2296
  msgid "The website you are trying to add is already in the list"
2297
  msgstr "De website die je wilt toevoegen, staat al op de lijst"
2298
 
2299
- #: nexus/cerber-nexus-master.php:325
2300
  msgid "The website has been added successfully"
2301
  msgstr "De website is toegevoegd"
2302
 
2303
- #: nexus/cerber-nexus-master.php:326
2304
  msgid "Click to edit"
2305
  msgstr "Klik om aan te passen"
2306
 
2307
- #: nexus/cerber-nexus-master.php:327
2308
  msgid "Switch to the Dashboard"
2309
  msgstr "Ga naar het Dashboard"
2310
 
2311
- #: nexus/cerber-nexus-master.php:330
2312
  msgid "Keep in mind: You have added the website that does not support SSL encryption. This may lead to data leakage."
2313
  msgstr "Let op: je hebt een website toegevoegd die geen SSL-encryptie ondersteunt. Dat kan een datalek veroorzaken."
2314
 
2315
- #: nexus/cerber-nexus-master.php:449
2316
  msgid "Website has been deleted"
2317
  msgid_plural "%s websites have been deleted"
2318
  msgstr[0] "Website is verwijderd"
2319
  msgstr[1] "%s websites zijn verwijderd"
2320
 
2321
- #: nexus/cerber-nexus-master.php:1042
2322
  msgid "You have switched to %s"
2323
  msgstr "Je bent omgeschakeld naar %s"
2324
 
2325
- #: nexus/cerber-nexus-master.php:1052
2326
  msgid "You have switched back to the master website"
2327
  msgstr "Je bent teruggegaan naar de beheer-website"
2328
 
2329
- #: nexus/cerber-nexus-master.php:1268
2330
  msgid "You are here:"
2331
  msgstr "Je bent hier:"
2332
 
2333
- #: nexus/cerber-nexus-master.php:1271 nexus/cerber-nexus.php:94
2334
  #: nexus/cerber-nexus.php:104
2335
  msgid "My Websites"
2336
  msgstr "Mijn Websites"
@@ -2392,7 +2377,7 @@ msgid "Install the access token on the master website."
2392
  msgstr "Installeer het toegangscertificaat op de hoofdwebsite."
2393
 
2394
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
2395
- #: cerber-common.php:2065
2396
  msgid "%s sec"
2397
  msgid_plural "%s secs"
2398
  msgstr[0] "%s sec"
@@ -2406,7 +2391,7 @@ msgstr "Verstuur rapportages op"
2406
  msgid "Updates"
2407
  msgstr "Updates"
2408
 
2409
- #: nexus/cerber-nexus-master.php:127 nexus/cerber-slave-list.php:54
2410
  msgid "Group"
2411
  msgstr "Groep"
2412
 
@@ -2426,7 +2411,7 @@ msgstr "Verwijder website"
2426
  msgid "All groups"
2427
  msgstr "Alle groepen"
2428
 
2429
- #: nexus/cerber-nexus-master.php:1352
2430
  msgid "Are you sure you want to delete selected websites?"
2431
  msgstr "Wil je de gekozen websites zeker verwijderen?"
2432
 
@@ -2434,23 +2419,23 @@ msgstr "Wil je de gekozen websites zeker verwijderen?"
2434
  msgid "Block"
2435
  msgstr "Blokkeer"
2436
 
2437
- #: nexus/cerber-nexus-master.php:96
2438
  msgid "Select an existing group or enter a new one to add it"
2439
  msgstr "Kies een bestaande groep of voeg een nieuwe toe"
2440
 
2441
- #: nexus/cerber-nexus-master.php:169
2442
  msgid "Company"
2443
  msgstr "Organisatie"
2444
 
2445
- #: nexus/cerber-nexus-master.php:694
2446
  msgid "Invalid response from the slave website"
2447
  msgstr "Ongeldig antwoord van de 'slave'-website"
2448
 
2449
- #: cerber-common.php:1702 cerber-common.php:1902
2450
  msgid "Attempt to log in with non-existing username"
2451
  msgstr "Inlogpoging met onbekende gebruikersnaam"
2452
 
2453
- #: cerber-load.php:5051
2454
  msgid "Attempts to log in with non-existing usernames"
2455
  msgstr "Pogingen om in te loggen met een onbekende gebruikersnaam"
2456
 
@@ -2482,39 +2467,39 @@ msgstr "Om het certificaat in te trekken en beheer op afstand te stoppen, klik h
2482
  msgid "Block execution of PHP scripts in the WordPress media folder"
2483
  msgstr "Voorkom uitvoeren van PHP-scripts in de WordPress media-map"
2484
 
2485
- #: nexus/cerber-nexus-master.php:1419 nexus/cerber-nexus-master.php:1427
2486
  msgid "Active plugins and updates on"
2487
  msgstr "Actieve plugins en updates op"
2488
 
2489
- #: nexus/cerber-nexus-master.php:1397
2490
  msgid "A newer version is available"
2491
  msgstr "Er is een nieuwere versie beschikbaar"
2492
 
2493
- #: admin/cerber-dashboard.php:1078
2494
  msgid "New users"
2495
  msgstr "Nieuwe gebruikers"
2496
 
2497
- #: admin/cerber-dashboard.php:1097
2498
  msgid "My activity"
2499
  msgstr "Mijn activiteiten"
2500
 
2501
- #: admin/cerber-dashboard.php:2933
2502
  msgid "Create Alert"
2503
  msgstr "Waarschuwing aanmaken"
2504
 
2505
- #: admin/cerber-dashboard.php:2937
2506
  msgid "Delete Alert"
2507
  msgstr "Waarschuwing verwijderen"
2508
 
2509
- #: admin/cerber-dashboard.php:3033
2510
  msgid "The alert has been created"
2511
  msgstr "Waarschuwing aangemaakt"
2512
 
2513
- #: admin/cerber-dashboard.php:3042
2514
  msgid "The alert has been deleted"
2515
  msgstr "Waarschuwing verwijderd"
2516
 
2517
- #: admin/cerber-dashboard.php:4514
2518
  msgid "Advanced Search"
2519
  msgstr "Geavanceerd zoeken"
2520
 
@@ -2523,7 +2508,7 @@ msgstr "Geavanceerd zoeken"
2523
  msgid "Cerber Tech Inc."
2524
  msgstr "Cerber Tech Inc."
2525
 
2526
- #: cerber-load.php:5721
2527
  msgid "To delete the alert, click here"
2528
  msgstr "Klik om waarschuwing te verwijderen"
2529
 
@@ -2595,43 +2580,43 @@ msgstr "Automatisch verwijderd"
2595
  msgid "Automatically recovered"
2596
  msgstr "Automatisch hersteld"
2597
 
2598
- #: admin/cerber-dashboard.php:72
2599
  msgid "Cerber User Security"
2600
  msgstr "Cerber Gebruikersbeveiliging"
2601
 
2602
- #: admin/cerber-dashboard.php:72 admin/cerber-dashboard.php:5288
2603
  msgid "User Policies"
2604
  msgstr "Gebruikersbeleid"
2605
 
2606
- #: admin/cerber-dashboard.php:2110
2607
  msgid "A new version is available"
2608
  msgstr "Er is een nieuwe versie beschikbaar"
2609
 
2610
- #: admin/cerber-dashboard.php:5291
2611
  msgid "Global"
2612
  msgstr "Algemeen"
2613
 
2614
- #: cerber-common.php:1763
2615
  msgid "Site policy enforcement"
2616
  msgstr "Afdwingen gebruiksvoorwaarden site"
2617
 
2618
- #: cerber-common.php:1764
2619
  msgid "2FA code verified"
2620
  msgstr "2FA code geverifieerd"
2621
 
2622
- #: cerber-common.php:1765
2623
  msgid "Initiated by the user"
2624
  msgstr "Gestart door gebruiker"
2625
 
2626
- #: cerber-common.php:2315
2627
  msgid "A new version of %s is available. Please install it."
2628
  msgstr "De nieuwste versie van %s staat klaar voor installatie."
2629
 
2630
- #: cerber-load.php:1939
2631
  msgid "Email address is not permitted."
2632
  msgstr "E-mail-adres niet toegestaan."
2633
 
2634
- #: cerber-load.php:1939
2635
  msgid "Please choose another one."
2636
  msgstr "Kies een andere."
2637
 
@@ -2783,7 +2768,7 @@ msgstr "Voer de code uit de e-mail in het veld hieronder in."
2783
  msgid "Try again"
2784
  msgstr "Probeer nogmaals"
2785
 
2786
- #: cerber-2fa.php:661 admin/cerber-dashboard.php:5733
2787
  msgid "Cancel"
2788
  msgstr "Laat vervallen"
2789
 
@@ -2803,7 +2788,7 @@ msgstr "Valideer"
2803
  msgid "Two-Factor Authentication Email"
2804
  msgstr "E-mail voor dubbele authenticatie"
2805
 
2806
- #: admin/cerber-dashboard.php:3638
2807
  msgid "Role-based rules are configured"
2808
  msgstr "Rolgebaseerde regels worden ingesteld"
2809
 
@@ -2816,67 +2801,67 @@ msgstr "geblokkeerd door %s om %s"
2816
  msgid "The code is valid for %s minutes."
2817
  msgstr "De code is %s minuten geldig."
2818
 
2819
- #: admin/cerber-dashboard.php:374
2820
  msgid "IP address %s has been added to White IP Access List"
2821
  msgstr "IP-adres %s staat nu op de lijst toegelaten adressen"
2822
 
2823
- #: admin/cerber-dashboard.php:371
2824
  msgid "IP address %s has been added to Black IP Access List"
2825
  msgstr "IP-adres %s staat nu op de lijst verboden adressen"
2826
 
2827
- #: admin/cerber-dashboard.php:213 admin/cerber-dashboard.php:949
2828
- #: admin/cerber-dashboard.php:1325 admin/cerber-dashboard.php:4464
2829
- #: admin/cerber-users.php:926
2830
  msgid "IP Address"
2831
  msgstr "IP-adres"
2832
 
2833
- #: admin/cerber-dashboard.php:956 admin/cerber-dashboard.php:1331
2834
  msgid "Username"
2835
  msgstr "Gebruikersnaam"
2836
 
2837
- #: admin/cerber-dashboard.php:3720
2838
  msgid "Any country is permitted"
2839
  msgstr "Elk land is toegestaan"
2840
 
2841
- #: admin/cerber-dashboard.php:3343 admin/cerber-dashboard.php:5193
2842
  msgid "Sessions"
2843
  msgstr "Sessies"
2844
 
2845
- #: cerber-load.php:1698
2846
  msgid "Session has been terminated"
2847
  msgid_plural "%s sessions have been terminated"
2848
  msgstr[0] "De sessie is gestopt"
2849
  msgstr[1] "%s sessies zijn gestopt"
2850
 
2851
- #: admin/cerber-users.php:924
2852
  msgid "Created"
2853
  msgstr "Aangemaakt"
2854
 
2855
- #: admin/cerber-users.php:945
2856
  msgid "Terminate session"
2857
  msgstr "Beëindig sessie"
2858
 
2859
- #: admin/cerber-users.php:946
2860
  msgid "Block user"
2861
  msgstr "Blokkeer gebruiker"
2862
 
2863
- #: admin/cerber-users.php:1078
2864
  msgid "Profile"
2865
  msgstr "Profiel"
2866
 
2867
- #: admin/cerber-users.php:1091
2868
  msgid "All Logins"
2869
  msgstr "Alle log-ins"
2870
 
2871
- #: admin/cerber-users.php:1092
2872
  msgid "User Activity"
2873
  msgstr "Gebruikersactiviteit"
2874
 
2875
- #: admin/cerber-users.php:1138
2876
  msgid "Terminate"
2877
  msgstr "Beëindig"
2878
 
2879
- #: admin/cerber-dashboard.php:2060
2880
  msgid "user"
2881
  msgid_plural "users"
2882
  msgstr[0] "gebruiker"
@@ -2890,47 +2875,47 @@ msgstr "Blokkeer toegang tot gebruikersdata via de REST API"
2890
  msgid "Unable to delete"
2891
  msgstr "Kan niet verwijderen"
2892
 
2893
- #: admin/cerber-dashboard.php:68
2894
  msgid "Cerber Data Shield Policies"
2895
  msgstr "Cerber Data Shield instellingen"
2896
 
2897
- #: admin/cerber-dashboard.php:68
2898
  msgid "Data Shield"
2899
  msgstr "Data Shield"
2900
 
2901
- #: admin/cerber-dashboard.php:5278
2902
  msgid "Data Shield Policies"
2903
  msgstr "Data Shield instellingen"
2904
 
2905
- #: admin/cerber-dashboard.php:5280
2906
  msgid "Accounts & Roles"
2907
  msgstr "Accounts & Rollen"
2908
 
2909
- #: admin/cerber-dashboard.php:5281
2910
  msgid "Site Settings"
2911
  msgstr "Site-instellingen"
2912
 
2913
- #: cerber-common.php:1715
2914
  msgid "User creation denied"
2915
  msgstr "Gebruiker aanmaken afgewezen"
2916
 
2917
- #: cerber-common.php:1717
2918
  msgid "Role update denied"
2919
  msgstr "Bijwerken Rol afgewezen"
2920
 
2921
- #: cerber-common.php:1718
2922
  msgid "Setting update denied"
2923
  msgstr "Bijwerken instellingen afgewezen"
2924
 
2925
- #: cerber-common.php:1770
2926
  msgid "Permission denied"
2927
  msgstr "Toestemming geweigerd"
2928
 
2929
- #: cerber-common.php:1772
2930
  msgid "Invalid user"
2931
  msgstr "Ongeldige gebruiker"
2932
 
2933
- #: cerber-common.php:1773
2934
  msgid "Incorrect password"
2935
  msgstr "Onjuist wachtwoord"
2936
 
@@ -3010,35 +2995,35 @@ msgstr "Alle servers"
3010
  msgid "All countries"
3011
  msgstr "Alle landen"
3012
 
3013
- #: nexus/cerber-nexus-master.php:67
3014
  msgid "Show homepage in the Website column"
3015
  msgstr "Toon thuispagina in de Website-kolom"
3016
 
3017
- #: nexus/cerber-nexus-master.php:69
3018
  msgid "Hide server IP address"
3019
  msgstr "Verberg IP-adres server"
3020
 
3021
- #: admin/cerber-dashboard.php:343
3022
  msgid "IP address, range, wildcard, or CIDR"
3023
  msgstr "IP-adres, -reeks, -jokerteken of CIDR"
3024
 
3025
- #: admin/cerber-dashboard.php:344
3026
  msgid "Add Entry"
3027
  msgstr "Voeg toe"
3028
 
3029
- #: admin/cerber-dashboard.php:5533
3030
  msgid "The IP address you are trying to add is already in the list"
3031
  msgstr "Het IP-adres dat je wilt toevoegen, staat al in de lijst"
3032
 
3033
- #: cerber-common.php:1669
3034
  msgid "IP subnet blocked"
3035
  msgstr "IP subnet geblokkeerd"
3036
 
3037
- #: cerber-common.php:1716
3038
  msgid "User row update denied"
3039
  msgstr "Aanpassing rij van gebruiker geweigerd"
3040
 
3041
- #: cerber-common.php:1719
3042
  msgid "User metadata update denied"
3043
  msgstr "Aanpassing metadata gebruiker geweigerd"
3044
 
@@ -3106,28 +3091,28 @@ msgstr "Gegevens formuliervelden"
3106
  msgid "Cookies"
3107
  msgstr "Cookies"
3108
 
3109
- #: admin/cerber-dashboard.php:79
3110
  msgid "Cerber anti-spam settings"
3111
  msgstr "Cerber anti-spam-instellingen"
3112
 
3113
- #: admin/cerber-dashboard.php:79
3114
  msgid "Anti-spam"
3115
  msgstr "Anti-spam"
3116
 
3117
- #: cerber-addons.php:289 admin/cerber-dashboard.php:87
3118
- #: admin/cerber-dashboard.php:87
3119
  msgid "Add-ons"
3120
  msgstr "Add-ons"
3121
 
3122
- #: admin/cerber-dashboard.php:5242
3123
  msgid "Anti-spam and bot detection settings"
3124
  msgstr "Anti-spam- en botdetectie-instellingen"
3125
 
3126
- #: admin/cerber-dashboard.php:5244
3127
  msgid "Anti-spam engine"
3128
  msgstr "Anti-spamroutine"
3129
 
3130
- #: cerber-common.php:1911
3131
  msgid "Multiple erroneous requests"
3132
  msgstr "Meervoudige foutieve verzoeken"
3133
 
@@ -3224,11 +3209,11 @@ msgstr "Hoe de plugin opmerkingen verwerkt die binnenkomen via het opmerkingenfo
3224
  msgid "Settings updated"
3225
  msgstr "Instellingen aangepast"
3226
 
3227
- #: admin/cerber-dashboard.php:1388
3228
  msgid "Request ID"
3229
  msgstr "ID van verzoek"
3230
 
3231
- #: admin/cerber-dashboard.php:1389
3232
  msgid "Search in URL"
3233
  msgstr "Zoek in URL"
3234
 
@@ -3240,7 +3225,7 @@ msgstr "Uitvoerbare bestanden"
3240
  msgid "All files"
3241
  msgstr "Alle bestanden"
3242
 
3243
- #: admin/cerber-dashboard.php:1889
3244
  msgid "Active sessions"
3245
  msgstr "Actieve sessies"
3246
 
@@ -3252,28 +3237,28 @@ msgstr "minuten (leeg laten voor de standaard WordPress waarde)"
3252
  msgid "Load entries"
3253
  msgstr "Waarden inladen"
3254
 
3255
- #: admin/cerber-dashboard.php:1098 admin/cerber-dashboard.php:4505
3256
  msgid "My IP"
3257
  msgstr "Mijn IP"
3258
 
3259
- #: admin/cerber-dashboard.php:5331
3260
  msgid "Analytics"
3261
  msgstr "Analyse"
3262
 
3263
- #: admin/cerber-dashboard.php:5380
3264
  msgid "Manage Settings"
3265
  msgstr "Instellingen beheren"
3266
 
3267
  #: cerber-settings.php:1047 cerber-settings.php:1445 cerber-settings.php:1473
3268
- #: admin/cerber-dashboard.php:5382
3269
  msgid "Diagnostic Log"
3270
  msgstr "Diagnostische log"
3271
 
3272
- #: cerber-common.php:1660
3273
  msgid "User deleted"
3274
  msgstr "Verwijderd door gebruiker"
3275
 
3276
- #: cerber-common.php:1768
3277
  msgid "Email address is prohibited"
3278
  msgstr "Email-adres is verboden"
3279
 
@@ -3381,15 +3366,15 @@ msgstr "Onderstaande knop laadt WP Cerber's standaardinstellingen. Een aangepast
3381
  msgid "To get the most out of WP Cerber, follow these steps:"
3382
  msgstr "Om het meeste baat bij WP Cerber te hebben, doe dit:"
3383
 
3384
- #: cerber-common.php:1783
3385
  msgid "IP whitelisted"
3386
  msgstr "IP toegestaan"
3387
 
3388
- #: admin/cerber-dashboard.php:4504
3389
  msgid "My requests"
3390
  msgstr "Mijn verzoeken"
3391
 
3392
- #: admin/cerber-dashboard.php:3830
3393
  msgid "Log into the website"
3394
  msgstr "Bij de website inloggen"
3395
 
@@ -3398,15 +3383,15 @@ msgstr "Bij de website inloggen"
3398
  msgid "WP Cerber Security, Anti-spam & Malware Scan"
3399
  msgstr "WP Cerber Security, Anti-spam & Malware Scan"
3400
 
3401
- #: cerber-common.php:1708 cerber-common.php:1907
3402
  msgid "Probing for vulnerable code"
3403
  msgstr "Op zoek naar kwetsbare code"
3404
 
3405
- #: cerber-load.php:6043
3406
  msgid "Your IP address %s has been added to the White IP Access List"
3407
  msgstr "Je IP-adres %s is toegevoegd aan de Lijst Toegestane Adressen"
3408
 
3409
- #: admin/cerber-users.php:973
3410
  msgid "Search for IP address"
3411
  msgstr "IP-adres zoeken"
3412
 
@@ -3434,11 +3419,11 @@ msgstr "Log deze 'user-agents' niet"
3434
  msgid "Specify User-Agents to exclude requests from logging. One item per line."
3435
  msgstr "Geef aan welke 'user-agents' niet gelogd worden. Eén per regel."
3436
 
3437
- #: admin/cerber-dashboard.php:4622
3438
  msgid "Unknown Google's bot"
3439
  msgstr "Onbekende Google-bot"
3440
 
3441
- #: cerber-common.php:1774
3442
  msgid "IP address is not allowed"
3443
  msgstr "IP-adres niet toegestaan"
3444
 
@@ -3475,7 +3460,7 @@ msgstr "Uitgestelde weergave"
3475
  msgid "Defer rendering the custom login page"
3476
  msgstr "Stel weergave van de eigen inlogpagina uit"
3477
 
3478
- #: cerber-load.php:395
3479
  msgid "You have only one login attempt remaining."
3480
  msgstr "Je kunt nog één login-poging wagen."
3481
 
@@ -3503,15 +3488,15 @@ msgstr "Login vanuit een andere browser of een ander apparaat"
3503
  msgid "If the number of concurrent user sessions is greater"
3504
  msgstr "Als het aantal gelijktijdige gebruikersessies groter is"
3505
 
3506
- #: admin/cerber-dashboard.php:5668
3507
  msgid "These features are available in the professional version of WP Cerber."
3508
  msgstr "Deze mogelijkheden vind je in de betaalde versie van WP Cerber."
3509
 
3510
- #: cerber-common.php:1689
3511
  msgid "User session terminated"
3512
  msgstr "Gebruikerssessie beëindigd"
3513
 
3514
- #: cerber-common.php:1775
3515
  msgid "Limit on concurrent user sessions"
3516
  msgstr "Grens aan gelijktijdige gebruikersessies"
3517
 
@@ -3535,19 +3520,19 @@ msgstr "Belangrijk bericht als je een caching plugin benut"
3535
  msgid "To avoid false positives and get better anti-spam performance, please clear the plugin cache."
3536
  msgstr "Wis de plugin cache om valse positieven te voorkomen en beter anti-spam-gedrag te krijgen."
3537
 
3538
- #: cerber-common.php:1728
3539
  msgid "API request authorized"
3540
  msgstr "API-verzoek toegestaan"
3541
 
3542
- #: cerber-common.php:1729
3543
  msgid "API request authorization failed"
3544
  msgstr "API-verzoek afgewezen"
3545
 
3546
- #: cerber-common.php:1713
3547
  msgid "Request to XML-RPC API denied"
3548
  msgstr "Verzoek aan XML-RPC API afgewezen"
3549
 
3550
- #: cerber-common.php:1776
3551
  msgid "Invalid cookies"
3552
  msgstr "Ongeldige cookies"
3553
 
@@ -3580,7 +3565,7 @@ msgid "Use custom URL for the WordPress comment form"
3580
  msgstr "Gebruik eigen URL voor het WordPress"
3581
 
3582
  #: cerber-settings.php:461 cerber-settings.php:1295
3583
- #: admin/cerber-dashboard.php:2060
3584
  msgid "Logged-in users"
3585
  msgstr "Ingelogde gebruikers"
3586
 
@@ -3640,7 +3625,7 @@ msgstr "Zet reCAPTCHA uit voor ingelogde gebruikers"
3640
  msgid "Use global policies"
3641
  msgstr "Gebruik algemene instellingen"
3642
 
3643
- #: cerber-load.php:398
3644
  msgid "You have %d login attempt remaining."
3645
  msgid_plural "You have %d login attempts remaining."
3646
  msgstr[0] "Laatste inlogpoging."
@@ -3650,11 +3635,11 @@ msgstr[1] "Nog %d inlogpogingen te gaan."
3650
  msgid "Display this message if an attempt to log in is denied because the limit on concurrent user sessions has been reached"
3651
  msgstr "Toon dit bericht als een inlogpoging wordt afgewezen vanwege de limiet op gelijktijdige sessies"
3652
 
3653
- #: admin/cerber-dashboard.php:5290
3654
  msgid "Role-Based"
3655
  msgstr "Rolgebaseerd"
3656
 
3657
- #: cerber-common.php:1725
3658
  msgid "User application password created"
3659
  msgstr "Gebruikerswachtwoord aangemaakt"
3660
 
@@ -3670,52 +3655,52 @@ msgstr "Response headers opslaan"
3670
  msgid "Save response cookies"
3671
  msgstr "Response cookies opslaan"
3672
 
3673
- #: cerber-load.php:8098
3674
  msgid "We need your support to keep moving forward"
3675
  msgstr "We hebben je ondersteuning nodig om door te gaan"
3676
 
3677
- #: cerber-load.php:8100
3678
  msgid "By sharing your unique opinion on WP Cerber, you help the engineers behind the plugin make greater progress and help other professionals find the right software. You can leave your review on one of the following websites. Feel free to use your native language. Thanks!"
3679
  msgstr "Door WP Cerber te beoordelen, scherp je de focus van de makers en help je anderen de juiste programma's te vinden. Plaats je bespreking op een van deze sites. Dat kan gewoon in het Nederlands. Dankjewel!"
3680
 
3681
- #: nexus/cerber-nexus-master.php:286
3682
  msgid "Secret Access Token is invalid"
3683
  msgstr "Ongeldig Geheim Toegangscertificaat"
3684
 
3685
- #: admin/cerber-dashboard.php:227
3686
  msgid "Click the IP address to see its activity"
3687
  msgstr "Klik op het IP-adres om z'n acties te zien"
3688
 
3689
- #: admin/cerber-dashboard.php:1079
3690
  msgid "Login issues"
3691
  msgstr "Login-problemen"
3692
 
3693
- #: admin/cerber-dashboard.php:1096 admin/cerber-dashboard.php:4499
3694
  msgid "Non-authenticated"
3695
  msgstr "Niet-geautoriseerd"
3696
 
3697
- #: admin/cerber-dashboard.php:1366 admin/cerber-dashboard.php:1789
3698
- #: admin/cerber-dashboard.php:2646 admin/cerber-admin.php:1333
3699
  msgid "No activity has been logged yet."
3700
  msgstr "Er is nog geen activiteit geregistreerd"
3701
 
3702
- #: admin/cerber-dashboard.php:2662
3703
  msgid "Users' Activity"
3704
  msgstr "Gebruikersactiviteit"
3705
 
3706
- #: admin/cerber-dashboard.php:2682
3707
  msgid "Malicious Activity"
3708
  msgstr "Kwaadaardige activiteit"
3709
 
3710
- #: admin/cerber-dashboard.php:4496
3711
  msgid "Suspicious requests"
3712
  msgstr "Verdachte verzoeken"
3713
 
3714
- #: admin/cerber-dashboard.php:1095 admin/cerber-dashboard.php:4498
3715
  msgid "Users"
3716
  msgstr "Gebruikers"
3717
 
3718
- #: cerber-common.php:1778
3719
  msgid "Forbidden URL"
3720
  msgstr "Verboden URL"
3721
 
@@ -3779,19 +3764,19 @@ msgstr "Houd niet-bestaande gebruikersnamen en emails achter bij het rapporteren
3779
  msgid "Deny authentication through wp-login.php"
3780
  msgstr "Wijs authenticatie via wp-login.php af"
3781
 
3782
- #: cerber-common.php:1777
3783
  msgid "Invalid cookies cleared"
3784
  msgstr "Ongeldige cookies gewist"
3785
 
3786
- #: cerber-load.php:1843
3787
  msgid "If we have found your account, we have sent the confirmation link to the email address on the account."
3788
  msgstr "Als we je account hebben, sturen we een bevestigingslink naar het email-adres in dat account."
3789
 
3790
- #: cerber-load.php:6001 cerber-common.php:520
3791
  msgid "WP Cerber requires PHP %s or higher. You are running %s."
3792
  msgstr "WP Cerber vergt PHP %s or hoger. Jij draait %s."
3793
 
3794
- #: cerber-load.php:6005 cerber-common.php:524
3795
  msgid "WP Cerber requires WordPress %s or higher. You are running %s."
3796
  msgstr "WP Cerber vergt WordPress %s or hoger. Jij draait %s."
3797
 
@@ -3871,11 +3856,11 @@ msgstr "Verwijder publiek bereikbare bestanden met deze extensies"
3871
  msgid "Detecting injected files in the WordPress uploads directory"
3872
  msgstr "Bijgevoegde bestanden detecteren in de Wordpress uploads-map"
3873
 
3874
- #: cerber-common.php:1779
3875
  msgid "Executable file extension detected"
3876
  msgstr "Uitvoerbare bestandextensie aangetroffen"
3877
 
3878
- #: cerber-common.php:1780
3879
  msgid "Filename is prohibited"
3880
  msgstr "Bestandsnaam is verboden"
3881
 
@@ -3955,7 +3940,7 @@ msgstr "Bestanden met deze extensies overslaan"
3955
  msgid "These policies are automatically enforced at the end of every scan based on its results. All affected files are moved to the quarantine."
3956
  msgstr "Het beleid wordt automatisch toegepast na elke scan, afhankelijk van de resultaten. Aangetaste bestanden gaan naar de quarantaine."
3957
 
3958
- #: admin/cerber-dashboard.php:3277
3959
  msgid "This scan report was generated by the previous version of WP Cerber. Please run a new scan to get consistent and accurate results."
3960
  msgstr "Het scan-rapport komt van een eerdere versie van WP Cerber. Scan opnieuw voor een consistent en accuraat resultaat."
3961
 
@@ -3985,11 +3970,11 @@ msgctxt "This is a risk level."
3985
  msgid "Medium"
3986
  msgstr "Midden"
3987
 
3988
- #: cerber-load.php:4670
3989
  msgid "If you believe you should be able to perform this request, please let us know."
3990
  msgstr "Meen je dit verzoek te moeten kunnen uitvoeren, laat het ons weten."
3991
 
3992
- #: cerber-load.php:4669
3993
  msgid "Your request looks suspiciously similar to automated requests from spam posting software or it has been denied by a security policy configured by the website administrator."
3994
  msgstr "Je verzoek lijkt te veel op een geautomatiseerd verzoek van spam-software óf is geweigerd door een beveiligingsinstelling van de beheerder."
3995
 
@@ -4005,23 +3990,23 @@ msgstr "ReCAPTCHA uitzetten voor adressen in de toegestane lijst"
4005
  msgid "Executable files are not supported. Please upload a ZIP archive."
4006
  msgstr "Uitvoerbare bestanden zijn niet mogelijk. Upload een ZIP-bestand."
4007
 
4008
- #: cerber-load.php:756
4009
  msgid "Human verification failed."
4010
  msgstr "Verificatie als mens mislukt."
4011
 
4012
- #: cerber-common.php:1794
4013
  msgid "Logged out everywhere"
4014
  msgstr "Overal uitgelogd"
4015
 
4016
- #: cerber-common.php:1693
4017
  msgid "Password reset request denied"
4018
  msgstr "Verzoek om wachtwoord-reset afgewezen"
4019
 
4020
- #: cerber-common.php:1796
4021
  msgid "reCAPTCHA verified"
4022
  msgstr "reCAPTCHA geverifieerd"
4023
 
4024
- #: cerber-load.php:3340
4025
  msgid "Sorry, password reset is not allowed for this user."
4026
  msgstr "Excuus, wachtwoordreset is niet toegestaan voor deze gebruiker."
4027
 
@@ -4033,20 +4018,20 @@ msgstr "Dit type bestand is niet mogelijk. Upload een ZIP-bestand."
4033
  msgid "Use less restrictive security filters for IP addresses in the White IP Access List"
4034
  msgstr "Gebruik lossere filters voor IP-adressen uit de toegestane lijst"
4035
 
4036
- #: cerber-common.php:1724
4037
  msgid "User application password updated"
4038
  msgstr "Gebruikerswachtwoord bijgewerkt"
4039
 
4040
- #: cerber-common.php:1766
4041
  msgid "User blocked by administrator"
4042
  msgstr "Gebruiker geblokkeerd door de admin"
4043
 
4044
  #. %s is the name of a website administrator who terminated the session.
4045
- #: cerber-common.php:1691
4046
  msgid "User session terminated by %s"
4047
  msgstr "Gebruikerssessie beëindigd door %s"
4048
 
4049
- #: cerber-common.php:1767
4050
  msgid "Username is prohibited"
4051
  msgstr "Gebruikersnaam is verboden"
4052
 
@@ -4058,57 +4043,57 @@ msgstr "Toon alle REST API-verzoeken"
4058
  msgid "View denied REST API requests"
4059
  msgstr "Toon afgewezen REST API-verzoeken"
4060
 
4061
- #: cerber-load.php:4883 cerber-load.php:4884
4062
  msgid "A new activity has occurred"
4063
  msgstr "Er was nieuwe activiteit"
4064
 
4065
- #: admin/cerber-dashboard.php:2955
4066
  msgid "Do not send alerts after this date"
4067
  msgstr "Stuur geen waarschuwingen na deze datum"
4068
 
4069
- #: admin/cerber-dashboard.php:2995
4070
  msgid "Documentation"
4071
  msgstr "Documentatie"
4072
 
4073
- #: admin/cerber-dashboard.php:2982
4074
  msgid "Email alerts will be sent to these emails:"
4075
  msgstr "E-mail-waarschuwingen gaan naar:"
4076
 
4077
- #: admin/cerber-dashboard.php:2982
4078
  msgid "Email alerts will be sent to this email:"
4079
  msgstr "E-mail-waarschuwingen gaan naar:"
4080
 
4081
- #: admin/cerber-dashboard.php:2960
4082
  msgid "Ignore global rate limits"
4083
  msgstr "Negeer algemene tarieflimieten"
4084
 
4085
- #: admin/cerber-dashboard.php:2946
4086
  msgid "Maximum number of alerts to send"
4087
  msgstr "Maximum aantal te verzenden waarschuwingen"
4088
 
4089
- #: admin/cerber-dashboard.php:2990
4090
  msgid "Mobile alerts are not configured"
4091
  msgstr "Mobiele waarschuwingen zijn niet ingesteld"
4092
 
4093
  #. %s is the name of a mobile device.
4094
- #: admin/cerber-dashboard.php:2987
4095
  msgid "Mobile alerts will be sent to %s"
4096
  msgstr "Mobiele waarschuwingen worden naar %s gestuurd"
4097
 
4098
- #: admin/cerber-dashboard.php:2951
4099
  msgid "No limit"
4100
  msgstr "Geen limiet"
4101
 
4102
- #: admin/cerber-dashboard.php:5732
4103
  msgid "OK"
4104
  msgstr "OK"
4105
 
4106
- #: admin/cerber-dashboard.php:2997
4107
  msgid "Optional alert limits"
4108
  msgstr "Limiet voor waarschuwingen (optie)"
4109
 
4110
  #. %s is the name of a website administrator who changed the password.
4111
- #: cerber-common.php:1687
4112
  msgid "Password changed by %s"
4113
  msgstr "Wachtwoord veranderd door %s"
4114
 
@@ -4116,31 +4101,31 @@ msgstr "Wachtwoord veranderd door %s"
4116
  msgid "Spam protection for registration, comment, and other forms on the website"
4117
  msgstr "Spambescherming voor registratie, opmerkingen en andere formulieren op de website"
4118
 
4119
- #: cerber-common.php:1810
4120
  msgid "Unknown label"
4121
  msgstr "Onbekend label"
4122
 
4123
  #. %s is the name of a website administrator who created the password.
4124
- #: cerber-common.php:1727
4125
  msgid "User application password created by %s"
4126
  msgstr "Gebruikerswachtwoord aangemaakt door %s"
4127
 
4128
- #: cerber-common.php:1730
4129
  msgid "User application password deleted"
4130
  msgstr "Gebruikerswachtwoord verwijderd"
4131
 
4132
  #. %s is the name of a website administrator who deleted the password.
4133
- #: cerber-common.php:1732
4134
  msgid "User application password deleted by %s"
4135
  msgstr "Gebruikerswachtwoord verwijderd door %s"
4136
 
4137
  #. %s is the name of a website administrator who created the user.
4138
- #: cerber-common.php:1658
4139
  msgid "User created by %s"
4140
  msgstr "Gebruiker aangemaakt door %s"
4141
 
4142
  #. %s is the name of a website administrator who deleted the user.
4143
- #: cerber-common.php:1662
4144
  msgid "User deleted by %s"
4145
  msgstr "Gebruiker verwijderd door %s"
4146
 
@@ -4152,3 +4137,55 @@ msgstr "Bekijk bot-gebeurtenissen"
4152
  msgid "View reCAPTCHA events"
4153
  msgstr "Bekijk reCAPTCHA-gebeurtenissen"
4154
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  msgid "Custom login URL"
45
  msgstr "Aangepaste inlog-URL"
46
 
47
+ #: cerber-settings.php:289 admin/cerber-dashboard.php:2101
48
  msgid "Citadel mode"
49
  msgstr "Citadelstand"
50
 
56
  msgid "Duration"
57
  msgstr "Duur"
58
 
59
+ #: cerber-settings.php:310 admin/cerber-dashboard.php:5300
60
  msgid "Notifications"
61
  msgstr "Meldingen"
62
 
64
  msgid "Send notification to admin email"
65
  msgstr "Melding versturen naar admin e-mailadres"
66
 
67
+ #: admin/cerber-dashboard.php:5297 admin/cerber-tools.php:38
68
  #: admin/cerber-tools.php:49
69
  msgid "Access Lists"
70
  msgstr "Toegangslijsten"
71
 
72
+ #: cerber-load.php:5698 cerber-settings.php:322
73
+ #: admin/cerber-dashboard.php:2142 admin/cerber-dashboard.php:5293
74
+ #: admin/cerber-users.php:1115
75
  msgid "Activity"
76
  msgstr "Activiteit"
77
 
78
+ #: admin/cerber-dashboard.php:5295
79
  msgid "Lockouts"
80
  msgstr "Uitsluitingen"
81
 
82
+ #: cerber-load.php:5707
83
  msgid "IP"
84
  msgstr "IP"
85
 
86
+ #: admin/cerber-dashboard.php:948 admin/cerber-dashboard.php:1330
87
+ #: admin/cerber-dashboard.php:4060 admin/cerber-dashboard.php:4543
88
  msgid "Date"
89
  msgstr "Datum"
90
 
91
+ #: admin/cerber-dashboard.php:951 admin/cerber-dashboard.php:1332
92
+ #: admin/cerber-dashboard.php:4548
93
  msgid "Local User"
94
  msgstr "Lokale gebruiker"
95
 
96
+ #: cerber-load.php:5715
97
  msgid "Username used"
98
  msgstr "Toegepaste gebruikersnaam"
99
 
100
+ #: cerber-common.php:1668
101
  msgid "Logged in"
102
  msgstr "Ingelogd"
103
 
104
+ #: cerber-common.php:1669
105
  msgid "Logged out"
106
  msgstr "Uitgelogd"
107
 
108
+ #: cerber-common.php:1670
109
  msgid "Login failed"
110
  msgstr "Inloggen mislukt"
111
 
112
+ #: cerber-common.php:1673 admin/cerber-dashboard.php:1092
113
  msgid "IP blocked"
114
  msgstr "IP geblokkeerd"
115
 
116
+ #: cerber-common.php:1677
117
  msgid "Citadel activated!"
118
  msgstr "Citadelstand geactiveerd!"
119
 
120
+ #: cerber-common.php:1754 admin/cerber-dashboard.php:1704
121
  msgid "Locked out"
122
  msgstr "Buitengesloten"
123
 
124
+ #: cerber-common.php:1756
125
  msgid "IP blacklisted"
126
  msgstr "IP uitgesloten"
127
 
128
+ #: cerber-common.php:1690
129
  msgid "Password changed"
130
  msgstr "Wachtwoord veranderd"
131
 
132
+ #: admin/cerber-dashboard.php:204 admin/cerber-dashboard.php:329
133
  msgid "Remove"
134
  msgstr "Verwijderen"
135
 
136
+ #: admin/cerber-dashboard.php:663
137
  msgid "Lockout for %s was removed"
138
  msgstr "Uitsluiting voor %s is verwijderd"
139
 
140
+ #: admin/cerber-dashboard.php:275 admin/cerber-dashboard.php:1611
141
+ #: admin/cerber-dashboard.php:1695 admin/cerber-dashboard.php:2099
142
  #: admin/cerber-tools.php:69
143
  msgid "White IP Access List"
144
  msgstr "Toegelaten IP-adressen"
145
 
146
+ #: admin/cerber-dashboard.php:278 admin/cerber-dashboard.php:1614
147
+ #: admin/cerber-dashboard.php:1698 admin/cerber-dashboard.php:2100
148
  #: admin/cerber-tools.php:70
149
  msgid "Black IP Access List"
150
  msgstr "Uitgesloten IP-adressen"
151
 
152
+ #: admin/cerber-dashboard.php:335
153
  msgid "List is empty"
154
  msgstr "Lijst is leeg"
155
 
156
+ #: cerber-load.php:4825
157
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
158
  msgstr "Citadelstand geactiveerd na %d mislukte inlogpogingen binnen %d minuten."
159
 
160
+ #: admin/cerber-dashboard.php:2875 admin/cerber-dashboard.php:3403
161
  msgid "View Activity"
162
  msgstr "Activiteit bekijken"
163
 
164
+ #: nexus/cerber-nexus.php:95 admin/cerber-dashboard.php:5366
165
+ #: admin/cerber-dashboard.php:5427 admin/cerber-tools.php:37
166
  #: admin/cerber-tools.php:48
167
  msgid "Settings"
168
  msgstr "Instellingen"
169
 
170
+ #: admin/cerber-dashboard.php:1968
171
  msgid "Last login"
172
  msgstr "Laatst ingelogd"
173
 
174
+ #: cerber-common.php:2083 nexus/cerber-slave-list.php:347
175
+ #: admin/cerber-dashboard.php:476 admin/cerber-dashboard.php:2073
176
+ #: admin/cerber-dashboard.php:2122
177
  msgid "Never"
178
  msgstr "Nooit"
179
 
180
+ #: admin/cerber-dashboard.php:5784 admin/cerber-tools.php:59
181
  #: admin/cerber-admin.php:738 admin/cerber-admin.php:905
182
  msgid "Are you sure?"
183
  msgstr "Weet je het zeker?"
184
 
185
+ #: cerber-settings.php:268 admin/cerber-dashboard.php:2506
186
  msgid "My site is behind a reverse proxy"
187
  msgstr "Mijn website draait achter een reverse proxy"
188
 
194
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
195
  msgstr "Schakel Permalinks in om deze functionaliteit te gebruiken. Stel de Permalinks instelling in op iets anders dan Standaard."
196
 
197
+ #: admin/cerber-dashboard.php:5296
198
  msgid "Main Settings"
199
  msgstr "Hoofdinstellingen"
200
 
201
+ #: admin/cerber-dashboard.php:5581
202
  msgid "Help"
203
  msgstr "Hulp"
204
 
206
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
207
  msgstr "Uitsluiting verlengen naar %s uur na %s uitsluitingen in de afgelopen %s uur"
208
 
209
+ #: cerber-load.php:388 admin/cerber-users.php:463
210
  msgid "You are not allowed to log in. Ask your administrator for assistance."
211
  msgstr "Je hebt geen toestemming om in te loggen. Vraag je beheerder om informatie."
212
 
213
+ #: admin/cerber-dashboard.php:214 admin/cerber-users.php:926
214
  msgid "Expires"
215
  msgstr "Verloopt"
216
 
217
+ #: admin/cerber-dashboard.php:242 admin/cerber-dashboard.php:2741
218
  msgid "No lockouts at the moment. The sky is clear."
219
  msgstr "Momenteel geen uitsluitingen."
220
 
221
+ #: admin/cerber-dashboard.php:285
222
  msgid "Your IP"
223
  msgstr "Jouw IP"
224
 
225
+ #: cerber-load.php:4826
226
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
227
  msgstr "Laatste mislukte inlogpoging was op %s vanaf IP %s op gebruiker %s."
228
 
229
+ #: cerber-load.php:5939
230
  msgid "Can't activate WP Cerber due to a database error."
231
  msgstr "Kan WP Cerber niet activeren door een fout in de database."
232
 
239
  msgid "days"
240
  msgstr "dagen"
241
 
242
+ #: admin/cerber-dashboard.php:2039
243
  msgid "Cerber Quick View"
244
  msgstr "Cerber Quick View"
245
 
255
  msgid "Attention! You have changed the login URL! The new login URL is"
256
  msgstr "Let op! Je hebt de inlog-URL veranderd. De nieuwe inlog-URL is"
257
 
258
+ #: admin/cerber-dashboard.php:1967
259
  msgid "Comments"
260
  msgstr "Reacties"
261
 
262
+ #: cerber-load.php:4857
 
 
 
 
263
  msgid "Number of active lockouts"
264
  msgstr "Aantal actieve uitsluitingen"
265
 
266
+ #: cerber-load.php:4959
 
 
 
 
267
  msgid "This message was sent by"
268
  msgstr "Dit bericht is verzonden door"
269
 
270
+ #: admin/cerber-dashboard.php:88 admin/cerber-dashboard.php:5478
271
  msgid "Tools"
272
  msgstr "Gereedschap"
273
 
319
  msgid "Error while parsing file"
320
  msgstr "Fout bij verwerken bestand"
321
 
322
+ #: admin/cerber-dashboard.php:212 admin/cerber-dashboard.php:1328
323
  msgid "Hostname"
324
  msgstr "Hostnaam"
325
 
326
+ #: admin/cerber-dashboard.php:597
327
  msgid "unknown"
328
  msgstr "onbekend"
329
 
330
+ #: admin/cerber-dashboard.php:2078 admin/cerber-dashboard.php:2108
331
  msgid "active"
332
  msgstr "actief"
333
 
334
+ #: admin/cerber-dashboard.php:2078
335
  msgid "deactivate"
336
  msgstr "deactiveren"
337
 
338
+ #: admin/cerber-dashboard.php:2082
339
  msgid "not active"
340
  msgstr "niet actief"
341
 
342
+ #: admin/cerber-dashboard.php:2085 admin/cerber-dashboard.php:2103
343
  msgid "disabled"
344
  msgstr "gedeactiveerd"
345
 
346
+ #: admin/cerber-dashboard.php:2091
347
  msgid "failed attempts"
348
  msgstr "mislukte pogingen"
349
 
350
+ #: admin/cerber-dashboard.php:2091 admin/cerber-dashboard.php:2092
351
  msgid "in 24 hours"
352
  msgstr "in 24 uur"
353
 
354
+ #: admin/cerber-dashboard.php:2091 admin/cerber-dashboard.php:2092
355
  msgid "view all"
356
  msgstr "bekijk alles"
357
 
358
+ #: admin/cerber-dashboard.php:2092
359
  msgid "lockouts"
360
  msgstr "uitsluitingen"
361
 
362
+ #: admin/cerber-dashboard.php:2094
363
  msgid "Lockouts at the moment"
364
  msgstr "Actuele uitsluitingen"
365
 
366
+ #: admin/cerber-dashboard.php:2095
367
  msgid "Last lockout"
368
  msgstr "Recente uitsluiting"
369
 
370
+ #: admin/cerber-dashboard.php:2099 admin/cerber-dashboard.php:2100
371
+ #: admin/cerber-dashboard.php:3162
372
  msgid "entry"
373
  msgid_plural "entries"
374
  msgstr[0] "item"
382
  msgid "New version is available"
383
  msgstr "Nieuwe versie beschikbaar"
384
 
385
+ #: cerber-load.php:4799
386
  msgid "WP Cerber notify"
387
  msgstr "WP Cerber melding"
388
 
389
+ #: cerber-load.php:4823
390
  msgid "Citadel mode is activated"
391
  msgstr "Citadelstand is actief"
392
 
393
+ #: cerber-load.php:4904
394
  msgid "New Custom login URL"
395
  msgstr "Nieuwe Aangepaste inlog-URL"
396
 
402
  msgid "Write failed login attempts to the file"
403
  msgstr "Mislukte pogingen opslaan in bestand"
404
 
405
+ #: admin/cerber-dashboard.php:2874
406
  msgid "Deactivate"
407
  msgstr "Deactiveren"
408
 
409
+ #: cerber-load.php:4861 admin/cerber-dashboard.php:215
410
  msgid "Reason"
411
  msgstr "Reden"
412
 
413
+ #: admin/cerber-dashboard.php:1762
414
  msgid "Add IP to the Black List"
415
  msgstr "IP-adres toevoegen aan Uitsluitingslijst"
416
 
417
+ #: cerber-common.php:1906
418
  msgid "Attempt to access"
419
  msgstr "Poging tot toegang"
420
 
421
+ #: cerber-common.php:1905
422
  msgid "Limit on login attempts is reached"
423
  msgstr "Limiet voor aantal inlogpogingen is bereikt"
424
 
425
+ #: cerber-load.php:4860
426
  msgid "Last lockout was added: %s for IP %s"
427
  msgstr "Laatste uitsluiting was toegevoegd: %s voor IP-adres %s"
428
 
429
+ #: admin/cerber-dashboard.php:5298
430
  msgid "Hardening"
431
  msgstr "Versterking"
432
 
433
+ #: admin/cerber-dashboard.php:1734
434
  msgid "Abuse email:"
435
  msgstr "E-mail voor misbruik:"
436
 
466
  msgid "Disable REST API"
467
  msgstr "REST API uitschakelen"
468
 
469
+ #: cerber-load.php:4893 cerber-load.php:5981
470
  msgid "WP Cerber is now active and has started protecting your site"
471
  msgstr "WP Cerber is actief en beschermt nu je website"
472
 
473
+ #: admin/cerber-dashboard.php:216 admin/cerber-users.php:929
474
  #: admin/cerber-admin.php:774 admin/cerber-admin.php:929
475
  msgid "Action"
476
  msgstr "Actie"
477
 
478
+ #: admin/cerber-dashboard.php:5630
479
  msgid "Incorrect IP address or IP range"
480
  msgstr "IP-adres of -reeks is incorrect"
481
 
482
+ #: admin/cerber-dashboard.php:2890
483
  msgid "Settings saved"
484
  msgstr "Instellingen opgeslagen"
485
 
486
+ #: admin/cerber-dashboard.php:1740
487
  msgid "Network:"
488
  msgstr "Netwerk:"
489
 
490
+ #: admin/cerber-dashboard.php:1756
491
  msgid "Add network to the Black List"
492
  msgstr "Netwerk toevoegen aan Uitsluitingslijst"
493
 
494
+ #: admin/cerber-dashboard.php:2873
495
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
496
  msgstr "Let op! Citadelstand is actief; niemand kan inloggen."
497
 
498
+ #: cerber-whois.php:241 cerber-whois.php:272 cerber-common.php:1930
499
+ #: nexus/cerber-slave-list.php:333 admin/cerber-dashboard.php:457
500
+ #: admin/cerber-dashboard.php:4213 admin/cerber-dashboard.php:4816
501
  msgid "Unknown"
502
  msgstr "Onbekend"
503
 
504
+ #: cerber-load.php:743 cerber-load.php:756 cerber-load.php:764
505
+ #: cerber-load.php:1112 cerber-load.php:1973 cerber-load.php:2296
506
+ #: cerber-load.php:3407 cerber-common.php:455 cerber-common.php:555
507
+ #: cerber-common.php:560 cerber-common.php:566 cerber-common.php:570
508
  #: nexus/cerber-nexus-slave.php:203 nexus/cerber-nexus-slave.php:214
509
  #: admin/cerber-admin-settings.php:667 admin/cerber-admin-settings.php:687
510
  #: admin/cerber-admin-settings.php:794 admin/cerber-admin.php:875
511
  msgid "ERROR:"
512
  msgstr "FOUT:"
513
 
514
+ #: cerber-load.php:778
515
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
516
  msgstr "Menselijke verificatie mislukt. Klik het vierkant in onderstaand reCAPTCHA-blok."
517
 
518
+ #: cerber-load.php:1953
519
  msgid "Username is not allowed. Please choose another one."
520
  msgstr "Gebruikersnaam is niet toegestaan, kies een andere."
521
 
522
+ #: cerber-load.php:4852
523
  msgid "unspecified"
524
  msgstr "niet gespecificeerd"
525
 
526
+ #: cerber-load.php:4855
527
  msgid "Number of lockouts is increasing"
528
  msgstr "Aantal uitsluitingen loopt op"
529
 
530
+ #: cerber-load.php:4864
531
  msgid "View activity for this IP"
532
  msgstr "Bekijk activiteit voor dit adres"
533
 
534
+ #: cerber-load.php:4868 cerber-load.php:4870
535
  msgid "A new version of WP Cerber is available to install"
536
  msgstr "De nieuwste versie WP Cerber staat klaar voor installatie"
537
 
538
+ #: cerber-load.php:4869
539
  msgid "Hi!"
540
  msgstr "Hallo!"
541
 
542
+ #: cerber-load.php:4872 cerber-load.php:4883 nexus/cerber-slave-list.php:44
543
  msgid "Website"
544
  msgstr "Website"
545
 
546
+ #: cerber-load.php:4875 cerber-load.php:4876
547
  msgid "The WP Cerber security plugin has been deactivated"
548
  msgstr "WP Cerber is gedeactiveerd"
549
 
550
+ #: cerber-load.php:4878
551
  msgid "Not logged in"
552
  msgstr "Niet ingelogd"
553
 
554
+ #: cerber-load.php:4884
555
  msgid "By user"
556
  msgstr "Door gebruiker"
557
 
558
+ #: cerber-load.php:4885
559
  msgid "From IP address"
560
  msgstr "Van IP-adres"
561
 
562
+ #: cerber-load.php:4888
563
  msgid "From country"
564
  msgstr "Uit land"
565
 
566
+ #: cerber-load.php:4892
567
  msgid "The WP Cerber security plugin is now active"
568
  msgstr "WP Cerber is actief"
569
 
570
+ #: cerber-load.php:5994
571
  msgid "Import settings"
572
  msgstr "Instellingen importeren"
573
 
620
  msgid "Know more"
621
  msgstr "Meer weten"
622
 
623
+ #: cerber-common.php:1661
624
  msgid "User created"
625
  msgstr "Gebruiker toegevoegd"
626
 
627
+ #: cerber-common.php:1664
628
  msgid "User registered"
629
  msgstr "Gebruiker aangemeld"
630
 
631
+ #: cerber-common.php:1701 cerber-common.php:1803
632
  msgid "reCAPTCHA verification failed"
633
  msgstr "reCAPTCHA verificatie mislukt"
634
 
635
+ #: cerber-common.php:1702 cerber-common.php:1804
636
  msgid "reCAPTCHA settings are incorrect"
637
  msgstr "foutieve reCAPTCHA-instellingen"
638
 
639
  #. I see this line used where someone tries to log in from a blocked URL. So shouldn't this line be "Attempt to access from a prohibited URL" ?
640
+ #: cerber-common.php:1706 cerber-common.php:1907
641
  msgid "Attempt to access prohibited URL"
642
  msgstr "Poging verboden URL te benaderen"
643
 
644
+ #: cerber-common.php:1708 cerber-common.php:1909
645
  msgid "Attempt to log in with prohibited username"
646
  msgstr "Inlogpoging met verboden gebruikersnaam"
647
 
677
  msgid "Enable reCAPTCHA for WooCommerce login form"
678
  msgstr "ReCAPTCHA inschakelen voor WooCommerce inlogpagina"
679
 
680
+ #: cerber-common.php:1703 cerber-common.php:1805
681
  msgid "Request to the Google reCAPTCHA service failed"
682
  msgstr "Verzoek aan Google ReCAPTCHA-service mislukt"
683
 
684
+ #: admin/cerber-dashboard.php:1061 admin/cerber-dashboard.php:1072
685
+ #: admin/cerber-dashboard.php:1085 admin/cerber-dashboard.php:2744
686
+ #: admin/cerber-dashboard.php:4608
687
  msgid "View all"
688
  msgstr "Zie alle"
689
 
690
+ #: admin/cerber-dashboard.php:2752
691
  msgid "Recently locked out IP addresses"
692
  msgstr "Recent buitengesloten IP-adressen"
693
 
699
  msgid "NO, maybe later"
700
  msgstr "Nee, misschien later"
701
 
702
+ #: admin/cerber-dashboard.php:60 admin/cerber-dashboard.php:2141
703
+ #: admin/cerber-dashboard.php:3184 admin/cerber-dashboard.php:5292
704
  msgid "Dashboard"
705
  msgstr "Dashboard"
706
 
712
  msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
713
  msgstr "Sta WP Cerber toe om geblokkeerde boosaardige IP-adressen te delen met Cerber Lab. Dat helpt ons betere algoritmes te maken om WordPress te beschermen tegen nieuwe bedreigingen en botnets. Je kunt je toestemming altijd weer intrekken."
714
 
715
+ #: admin/cerber-dashboard.php:4059
716
  msgid "IP address"
717
  msgstr "IP-adres"
718
 
719
+ #: admin/cerber-dashboard.php:952
720
  msgid "User login"
721
  msgstr "Gebruikers-login"
722
 
723
+ #: admin/cerber-dashboard.php:953 admin/cerber-dashboard.php:4065
724
  msgid "User ID"
725
  msgstr "Gebruikers-ID"
726
 
727
+ #: admin/cerber-dashboard.php:1362 admin/cerber-dashboard.php:4636
728
  msgid "Export"
729
  msgstr "Export"
730
 
731
+ #: admin/cerber-dashboard.php:1415
732
  msgid "Search for IP or username"
733
  msgstr "Zoek IP of gebruikersnaam"
734
 
735
+ #: admin/cerber-dashboard.php:1426
736
  msgid "Filter"
737
  msgstr "Filter"
738
 
739
+ #: admin/cerber-dashboard.php:60
740
  msgid "Cerber Dashboard"
741
  msgstr "Cerber Dashboard"
742
 
743
+ #: admin/cerber-dashboard.php:88
744
  msgid "Cerber tools"
745
  msgstr "Cerber tools"
746
 
747
+ #: cerber-load.php:5711 admin/cerber-users.php:923
748
  msgid "User"
749
  msgstr "Gebruiker"
750
 
751
+ #: cerber-load.php:5719
752
  msgid "Search string"
753
  msgstr "Zoekfrase"
754
 
785
  msgid "Not available"
786
  msgstr "Niet beschikbaar"
787
 
788
+ #: cerber-common.php:1693
789
  msgid "Password reset requested"
790
  msgstr "Wachtwoordvernieuwing aangevraagd"
791
 
792
+ #: cerber-common.php:1910
793
  msgid "Limit on failed reCAPTCHA verifications is reached"
794
  msgstr "Grens bereikt van foutieve reCAPTCHA's"
795
 
829
  msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
830
  msgstr "In de Citadelstand kunnen alleen adressen van de Lijst Toegelaten IP-adressen inloggen. Heeft geen effect op reeds ingelogde gebruikers."
831
 
832
+ #: admin/cerber-dashboard.php:949 admin/cerber-dashboard.php:1331
833
  msgid "Event"
834
  msgstr "Gebeurtenis"
835
 
836
+ #: cerber-common.php:388
837
  msgid "Spam comments denied"
838
  msgstr "Spamreacties afgewezen"
839
 
840
+ #: cerber-common.php:390
841
  msgid "Malicious IP addresses detected"
842
  msgstr "Kwaadaardige IP-adressen gevonden"
843
 
844
+ #: cerber-common.php:391
845
  msgid "Lockouts occurred"
846
  msgstr "Uitsluitingen"
847
 
848
+ #: cerber-load.php:1932 cerber-load.php:1938 cerber-load.php:1943
849
+ #: cerber-load.php:1963 cerber-load.php:1968
850
  msgid "You are not allowed to register."
851
  msgstr "Je mag niet aanmelden."
852
 
853
+ #: cerber-common.php:1678
854
  msgid "Spam comment denied"
855
  msgstr "Spamreactie afgewezen"
856
 
857
+ #: cerber-common.php:1711
858
  msgid "Attempt to log in denied"
859
  msgstr "Inlogpoging afgewezen"
860
 
861
+ #: cerber-common.php:1712
862
  msgid "Attempt to register denied"
863
  msgstr "Aanmeldingspoging afgewezen"
864
 
865
+ #: cerber-common.php:385
866
  msgid "Malicious activities mitigated"
867
  msgstr "Verdachte activiteiten afgevangen"
868
 
878
  msgid "Protect registration form with bot detection engine"
879
  msgstr "Bescherm registratie met bot-detectie"
880
 
881
+ #: admin/cerber-dashboard.php:5482
882
  msgid "Diagnostic"
883
  msgstr "Diagnose"
884
 
885
+ #: admin/cerber-dashboard.php:5485
886
  msgid "License"
887
  msgstr "Licentie"
888
 
889
+ #: cerber-load.php:2296
890
  msgid "Sorry, human verification failed."
891
  msgstr "Sorry, je verificatie faalt."
892
 
893
+ #: cerber-common.php:1911
894
  msgid "Bot activity is detected"
895
  msgstr "Bot-activiteit getedecteerd"
896
 
910
  msgid "Move spam comments to trash after"
911
  msgstr "Verwijder spamreacties na"
912
 
913
+ #: cerber-common.php:1679
914
  msgid "Spam form submission denied"
915
  msgstr "Geweigerd wegens spam"
916
 
930
  msgid "Use less restrictive policies (allow AJAX)"
931
  msgstr "Minder restricties (sta AJAX toe)"
932
 
933
+ #: admin/cerber-dashboard.php:213 admin/cerber-dashboard.php:1329
934
  msgid "Country"
935
  msgstr "Land"
936
 
937
+ #: admin/cerber-dashboard.php:67
938
  msgid "Cerber Security Rules"
939
  msgstr "Cerber Beveiligingsregels"
940
 
941
+ #: admin/cerber-dashboard.php:67 admin/cerber-dashboard.php:5409
942
  msgid "Security Rules"
943
  msgstr "Beveiligingsregels"
944
 
945
+ #: admin/cerber-dashboard.php:1969
946
  msgid "Failed login attempts"
947
  msgstr "Gefaalde loginpogingen"
948
 
949
+ #: admin/cerber-dashboard.php:1893 admin/cerber-dashboard.php:1970
950
  msgid "Registered"
951
  msgstr "Aangemeld"
952
 
953
+ #: admin/cerber-dashboard.php:2017 admin/cerber-users.php:52
954
+ #: admin/cerber-users.php:1082
955
  msgid "You"
956
  msgstr "Jij"
957
 
958
+ #: cerber-common.php:389
959
  msgid "Spam form submissions denied"
960
  msgstr "Spam formulierafgifte afgewezen"
961
 
962
+ #: cerber-load.php:4895 cerber-load.php:5985
963
  msgid "Getting Started Guide"
964
  msgstr "Startgids"
965
 
966
+ #: admin/cerber-dashboard.php:5411
967
  msgid "Countries"
968
  msgstr "Landen"
969
 
970
+ #: admin/cerber-dashboard.php:3788
971
  msgid "Permitted for one country"
972
  msgid_plural "Permitted for %d countries"
973
  msgstr[0] "Toegestaan voor één land"
974
  msgstr[1] "Toegestaan voor %d landen"
975
 
976
+ #: admin/cerber-dashboard.php:3799
977
  msgid "No rule"
978
  msgstr "Geen regel"
979
 
980
+ #: admin/cerber-dashboard.php:3960
981
  msgid "Security rules have been updated"
982
  msgstr "Beveiligingsregels zijn vernieuwd"
983
 
986
  msgid "https://wpcerber.com"
987
  msgstr "https://wpcerber.com"
988
 
989
+ #: cerber-common.php:1680
990
  msgid "Form submission denied"
991
  msgstr "Formulierafgifte afgewezen"
992
 
993
+ #: cerber-common.php:1681
994
  msgid "Comment denied"
995
  msgstr "Commentaar afgewezen"
996
 
997
+ #: cerber-common.php:1717
998
  msgid "Request to REST API denied"
999
  msgstr "Verzoek aan REST API afgewezen"
1000
 
1001
+ #: cerber-common.php:1752
1002
  msgid "Bot detected"
1003
  msgstr "Bot gedetecteerd"
1004
 
1005
+ #: cerber-common.php:1753
1006
  msgid "Citadel mode is active"
1007
  msgstr "Citadelstand actief"
1008
 
1009
+ #: cerber-common.php:1757
1010
  msgid "Malicious activity detected"
1011
  msgstr "Kwaadaardige activiteit gedetecteerd"
1012
 
1013
+ #: cerber-common.php:1758
1014
  msgid "Blocked by country rule"
1015
  msgstr "Geblokkeerd door landenregel"
1016
 
1017
+ #: cerber-common.php:1759
1018
  msgid "Limit reached"
1019
  msgstr "Limiet bereikt"
1020
 
1021
+ #: cerber-common.php:1760
1022
  msgid "Multiple suspicious activities"
1023
  msgstr "Meerdere verdachte activiteiten"
1024
 
1025
+ #: cerber-common.php:1912
1026
  msgid "Multiple suspicious activities were detected"
1027
  msgstr "Meerdere verdachte activiteiten gedetecteerd"
1028
 
1034
  msgid "Registration limit"
1035
  msgstr "Registratielimiet"
1036
 
 
 
 
 
1037
  #: cerber-settings.php:695
1038
  msgid "by date of registration"
1039
  msgstr "per registratiedatum"
1042
  msgid "Query whitelist"
1043
  msgstr "Toegestane queries"
1044
 
1045
+ #: admin/cerber-dashboard.php:3768
1046
  msgid "Start typing here to find a country"
1047
  msgstr "Begin te typen om een land te vinden"
1048
 
1049
+ #: admin/cerber-dashboard.php:3883
1050
  msgid "Click on a country name to add it to the list of selected countries"
1051
  msgstr "Klik op een landnaam om toe te voegen aan de lijst gekozen landen"
1052
 
1053
+ #: admin/cerber-dashboard.php:3915
1054
  msgid "Submit forms"
1055
  msgstr "Formulieren versturen"
1056
 
1057
+ #: admin/cerber-dashboard.php:3916
1058
  msgid "Post comments"
1059
  msgstr "Commentaar plaatsen"
1060
 
1061
+ #: admin/cerber-dashboard.php:3914
1062
  msgid "Register on the website"
1063
  msgstr "Aanmelden bij de website"
1064
 
1065
+ #: admin/cerber-dashboard.php:3917
1066
  msgid "Use XML-RPC"
1067
  msgstr "Benut XML-RPC"
1068
 
1069
+ #: admin/cerber-dashboard.php:3918
1070
  msgid "Use REST API"
1071
  msgstr "Benut REST API"
1072
 
1078
  msgid "Mark it as spam"
1079
  msgstr "Markeren als spam"
1080
 
1081
+ #: admin/cerber-dashboard.php:3185
1082
  msgid "Main settings"
1083
  msgstr "Hoofdinstellingen"
1084
 
1090
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1091
  msgstr "Gebruik je een caching plugin, dan moet je je nieuwe login URL toevoegen aan de niet te cachen pagina's."
1092
 
1093
+ #: cerber-load.php:4914
1094
  msgid "Weekly report"
1095
  msgstr "Weekrapport"
1096
 
1097
+ #: cerber-load.php:4917 cerber-load.php:4925
1098
  msgid "To change reporting settings visit"
1099
  msgstr "Om je rapportageinstellingen aan te passen, ga naar"
1100
 
1101
+ #: cerber-load.php:4951
1102
  msgid "Your login page:"
1103
  msgstr "Je login-pagina:"
1104
 
1105
+ #: cerber-load.php:4956
1106
  msgid "Your license is valid until"
1107
  msgstr "Je licentie geldt tot"
1108
 
1109
+ #: cerber-load.php:5062
1110
  msgid "Activity details"
1111
  msgstr "Details van activiteiten"
1112
 
1114
  msgid "Click to send now"
1115
  msgstr "Klik om nu te versturen"
1116
 
1117
+ #: admin/cerber-dashboard.php:671
1118
  msgid "Email has been sent to"
1119
  msgstr "E-mail is verzonden naar"
1120
 
1121
+ #: admin/cerber-dashboard.php:674
1122
  msgid "Unable to send email to"
1123
  msgstr "Kan geen e-mail verzenden naar"
1124
 
1125
+ #: admin/cerber-dashboard.php:3791
1126
  msgid "Not permitted for one country"
1127
  msgid_plural "Not permitted for %d countries"
1128
  msgstr[0] "Niet toegestaan voor één land"
1129
  msgstr[1] "Niet toegestaan voor %d landen"
1130
 
1131
+ #: admin/cerber-dashboard.php:3887
1132
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1133
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1134
  msgstr "Gekozen landen mogen %s, overige landen niet"
1135
 
1136
+ #: admin/cerber-dashboard.php:3890
1137
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1138
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1139
  msgstr "Gekozen landen mogen niet %s, overige landen wel"
1140
 
1141
+ #: cerber-load.php:5050
1142
  msgid "Weekly Report"
1143
  msgstr "Weekrapport"
1144
 
1159
  msgstr "Rapporteren aanzetten"
1160
 
1161
  #. How to interpret this line? Do you mean 'was DATE/TIME from IP ADDRESS' ?
1162
+ #: cerber-load.php:4980
1163
  msgid "Your last sign-in was %s from %s"
1164
  msgstr "Je laatste inlog was op %s vanaf %s"
1165
 
1166
+ #: admin/cerber-dashboard.php:343
1167
  msgid "Optional comment for this entry"
1168
  msgstr "Opmerking hierbij"
1169
 
1170
+ #: admin/cerber-dashboard.php:365
1171
  msgid "You cannot add your IP address or network"
1172
  msgstr "Je kunt je eigen IP of netwerk niet toevoegen"
1173
 
1175
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1176
  msgstr "Je kunt REGEX-patronen gebruiken; sluit deze op in voorwaartse slashes zoals /admin.*/."
1177
 
1178
+ #: admin/cerber-dashboard.php:62
1179
  msgid "Cerber Traffic Inspector"
1180
  msgstr "Cerber Verkeersinspectie"
1181
 
1182
+ #: admin/cerber-dashboard.php:62 admin/cerber-dashboard.php:2104
1183
+ #: admin/cerber-dashboard.php:5363
1184
  msgid "Traffic Inspector"
1185
  msgstr "Verkeersinspectie"
1186
 
1187
+ #: admin/cerber-dashboard.php:2143 admin/cerber-users.php:1116
1188
  msgid "Traffic"
1189
  msgstr "Verkeer"
1190
 
1191
+ #: admin/cerber-dashboard.php:4544
1192
  msgid "Request"
1193
  msgstr "Verzoek"
1194
 
1195
+ #: admin/cerber-dashboard.php:4546 admin/cerber-users.php:928
1196
  msgid "Host Info"
1197
  msgstr "Host Info"
1198
 
1199
  #. Do you mean a program for browsing the web like Chrome? Or a ftp user agent or so?
1200
+ #: admin/cerber-dashboard.php:4547
1201
  msgid "User Agent"
1202
  msgstr "Webbrowser"
1203
 
1204
+ #: admin/cerber-dashboard.php:4613
1205
  msgid "Form submissions"
1206
  msgstr "Formulierverzendingen"
1207
 
1208
+ #: admin/cerber-dashboard.php:4614
1209
  msgid "Page Not Found"
1210
  msgstr "Pagina niet gevonden"
1211
 
1212
+ #: admin/cerber-dashboard.php:4621
1213
  msgid "Longer than"
1214
  msgstr "Langer dan"
1215
 
1216
+ #: admin/cerber-dashboard.php:4644
1217
  msgid "Refresh"
1218
  msgstr "Ververs"
1219
 
1220
+ #: cerber-common.php:283
1221
  msgid "Check for requests"
1222
  msgstr "Controleer op verzoeken"
1223
 
1224
+ #: admin/cerber-dashboard.php:4679
1225
  msgid "Not specified"
1226
  msgstr "Niet gespecificeerd"
1227
 
1261
  msgid "Page generation time threshold"
1262
  msgstr "Drempeltijd paginaopbouw"
1263
 
1264
+ #: admin/cerber-dashboard.php:2103
 
 
 
 
1265
  msgid "enabled"
1266
  msgstr "aan"
1267
 
1268
+ #: admin/cerber-dashboard.php:2108
1269
  msgid "no connection"
1270
  msgstr "geen verbinding"
1271
 
1272
+ #: admin/cerber-dashboard.php:1921
1273
  msgid "Last seen"
1274
  msgstr "Laatst gezien"
1275
 
1276
+ #: cerber-load.php:4688
1277
  msgid "We're sorry, you are not allowed to proceed"
1278
  msgstr "Excuus, je mag niet doorgaan"
1279
 
1306
  msgstr "Blokkeer ongeoorloofde toegang tot load-scripts.php en load-styles.php\n"
1307
  ""
1308
 
1309
+ #: cerber-common.php:3281
1310
  msgid "Unable to create the directory"
1311
  msgstr "Kan map niet aanmaken"
1312
 
1313
+ #: cerber-common.php:3286
1314
  msgid "Destination folder access denied"
1315
  msgstr "Toegang bestemmingsmap afgewezen"
1316
 
1317
+ #: cerber-common.php:3289
1318
  msgid "File not found"
1319
  msgstr "Bestand niet gevonden"
1320
 
1321
+ #: cerber-common.php:3292
1322
  msgid "Unable to copy the file"
1323
  msgstr "Kan bestand niet kopiëren"
1324
 
1325
+ #: cerber-common.php:3298
1326
  msgid "Unable to delete the file"
1327
  msgstr "Kan bestand niet verwijderen"
1328
 
1342
  msgid "Plugin initialization mode has not been changed"
1343
  msgstr "Plugin initialisatie is niet aangepast"
1344
 
1345
+ #: cerber-common.php:1715
1346
  msgid "File upload denied"
1347
  msgstr "Bestandsupload afgewezen"
1348
 
1359
  msgid "If you forget your Custom login URL, you will be unable to log in."
1360
  msgstr "Als je de Aangepaste inlog-URL vergeet, kun je niet meer inloggen."
1361
 
1362
+ #: admin/cerber-dashboard.php:73 admin/cerber-dashboard.php:5424
1363
  msgid "Site Integrity"
1364
  msgstr "Site-integriteit"
1365
 
1366
  #: cerber-scanner.php:1717 cerber-settings.php:683 cerber-settings.php:825
1367
  #: cerber-settings.php:856 cerber-settings.php:990 cerber-settings.php:999
1368
+ #: cerber-settings.php:1466 admin/cerber-dashboard.php:2128
1369
+ #: admin/cerber-dashboard.php:2130 admin/cerber-users.php:20
1370
  #: admin/cerber-users.php:474 admin/cerber-users.php:488
1371
  msgid "Disabled"
1372
  msgstr "Uitgeschakeld"
1373
 
1374
+ #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2129
1375
  msgid "Quick Scan"
1376
  msgstr "Snelle Scan"
1377
 
1378
+ #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2131
1379
  msgid "Full Scan"
1380
  msgstr "Volledige scan"
1381
 
1382
+ #: cerber-common.php:1751 cerber-common.php:1761
1383
  msgid "Denied"
1384
  msgstr "Afgewezen"
1385
 
1480
  msgid "Include scan errors"
1481
  msgstr "Voeg scanfouten toe"
1482
 
1483
+ #: admin/cerber-dashboard.php:5426
1484
  msgid "Security Scanner"
1485
  msgstr "Veiligheidsscanner"
1486
 
1487
+ #: admin/cerber-dashboard.php:5428
1488
  msgid "Scheduling"
1489
  msgstr "Agenderen"
1490
 
1516
  msgid "Continue Scanning"
1517
  msgstr "Hervat Scannen"
1518
 
1519
+ #: admin/cerber-dashboard.php:1385 admin/cerber-tools.php:355
1520
+ #: admin/cerber-admin.php:227
1521
  msgid "Delete"
1522
  msgstr "Wis"
1523
 
1629
  msgid "To view full report visit"
1630
  msgstr "Ga voor volledig rapport naar"
1631
 
1632
+ #: cerber-load.php:4922
1633
  msgid "Scanner Report"
1634
  msgstr "Scannerrapport"
1635
 
1694
  msgid "Files scanned"
1695
  msgstr "Bestanden gescand"
1696
 
1697
+ #: admin/cerber-dashboard.php:325 admin/cerber-dashboard.php:1684
1698
+ #: admin/cerber-dashboard.php:1741 admin/cerber-dashboard.php:1872
1699
  msgid "Check for activities"
1700
  msgstr "Check op activiteiten"
1701
 
1702
+ #: admin/cerber-dashboard.php:1903
1703
  msgid "Activated"
1704
  msgstr "Geactiveerd"
1705
 
1706
+ #: cerber-common.php:1726
1707
  msgid "Malicious request denied"
1708
  msgstr "Kwaadaardige request afgewezen"
1709
 
1710
+ #: cerber-common.php:1740
1711
  msgid "User activated"
1712
  msgstr "Gebruiker-geactiveerd"
1713
 
1714
+ #: cerber-common.php:1763
1715
  msgid "Suspicious number of fields"
1716
  msgstr "Verdacht aantal velden"
1717
 
1718
+ #: cerber-common.php:1764
1719
  msgid "Suspicious number of nested values"
1720
  msgstr "Verdacht aantal geneste waarden"
1721
 
1722
+ #: cerber-common.php:1765 cerber-common.php:1914
1723
  msgid "Malicious code detected"
1724
  msgstr "Kwaadaardige code ontdekt"
1725
 
1726
+ #: cerber-common.php:1915
1727
  msgid "Attempt to upload a file with malicious code"
1728
  msgstr "Poging een bestand met kwaadaardige code te uploaden"
1729
 
1730
+ #: cerber-common.php:2198
1731
  msgid "Bytes"
1732
  msgstr "Bytes"
1733
 
1747
  msgid "Scan results reporting"
1748
  msgstr "Rapportage scanresultaten"
1749
 
1750
+ #: admin/cerber-dashboard.php:1082
1751
  msgid "Suspicious activity"
1752
  msgstr "Verdachte activiteit"
1753
 
1754
+ #: admin/cerber-dashboard.php:4610
1755
  msgid "Errors"
1756
  msgstr "Fouten"
1757
 
1760
  msgid "Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications."
1761
  msgstr "Beschermt Wordpress tegen hack-aanvallen, spam, trojans en virussen. Malware scanner en integriteitscontrole. Versterkt Wordpress met uitgebreide veiligheidsalgoritmen. Beschermt tegen spam met reCAPTCHA en detectie van bot-activiteit. Maakt activiteit van gebruikers en indringers te volgen via meldingen per e-mail, mobiel of desktop."
1762
 
1763
+ #: cerber-load.php:394
1764
  msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
1765
  msgstr "Je hebt de limiet aan loginpogingen bereikt. Probeer opnieuw na %d minuten."
1766
 
1767
+ #: cerber-common.php:2078
1768
  msgctxt "preposition of a period of time like: in 6 hours"
1769
  msgid "in %s"
1770
  msgstr "over %s"
1774
  msgid "at"
1775
  msgstr "om"
1776
 
1777
+ #: admin/cerber-dashboard.php:5431
1778
  msgid "Quarantine"
1779
  msgstr "Quarantine"
1780
 
1847
  msgid "The file has been restored to its original location."
1848
  msgstr "Het bestand is teruggezet op de oorspronkelijke plek."
1849
 
1850
+ #: admin/cerber-dashboard.php:2144
1851
  msgid "Integrity"
1852
  msgstr "Integriteit"
1853
 
1854
+ #: cerber-common.php:1714
1855
  msgid "Attempt to upload malicious file denied"
1856
  msgstr "Poging afgeweerd om kwaadaardig bestand te uploaden"
1857
 
1858
+ #: cerber-load.php:8063
1859
  msgid "Awesome!"
1860
  msgstr "Geweldig!"
1861
 
1883
  msgid "Use comma to separate items."
1884
  msgstr "Scheid items met komma's."
1885
 
1886
+ #: admin/cerber-dashboard.php:5429
1887
  msgid "Cleaning up"
1888
  msgstr "Opschonen"
1889
 
1915
  msgid "Automatically moved to quarantine"
1916
  msgstr "Automatisch in quarantaine gezet"
1917
 
1918
+ #: cerber-common.php:1766
1919
  msgid "Suspicious SQL code detected"
1920
  msgstr "Verdachte SQL-code gevonden"
1921
 
1922
+ #: admin/cerber-dashboard.php:2125
1923
  msgctxt "Example: Last malware scan: 23 Jan 2018"
1924
  msgid "Last malware scan"
1925
  msgstr "Recente malware scan"
1926
 
1927
+ #: admin/cerber-dashboard.php:5365
1928
  msgid "Live Traffic"
1929
  msgstr "Huidig verkeer"
1930
 
1936
  msgid "Disable PHP error displaying"
1937
  msgstr "Zet PHP foutweergave uit"
1938
 
1939
+ #: admin/cerber-dashboard.php:5430
1940
  msgid "Ignore List"
1941
  msgstr "Negeer-lijst"
1942
 
1969
  msgid "Activity Insights"
1970
  msgstr "Activiteitsinzichten"
1971
 
1972
+ #: admin/cerber-dashboard.php:3330
1973
  msgid "Are you sure you want to delete selected files?"
1974
  msgstr "Weet je zeker dat je de geselecteerde bestanden wilt wissen?"
1975
 
1976
+ #: admin/cerber-dashboard.php:3331
1977
  msgid "These files have been moved to the quarantine"
1978
  msgstr "Deze bestanden zijn in quarantaine gezet"
1979
 
1980
+ #: admin/cerber-dashboard.php:3334
1981
  msgid "Do you want to add selected files to the ignore list?"
1982
  msgstr "Wil je de geselecteerde bestanden toevoegen aan de negeer-lijst?"
1983
 
1984
+ #: admin/cerber-dashboard.php:3335
1985
  msgid "These files have been added to the ignore list"
1986
  msgstr "Deze bestanden zijn toegevoegd aan de negeer-lijst"
1987
 
1988
+ #: admin/cerber-dashboard.php:3337
1989
  msgid "Some errors occurred"
1990
  msgstr "Er zijn fouten opgetreden"
1991
 
1992
+ #: admin/cerber-dashboard.php:3338
1993
  msgid "All files have been processed"
1994
  msgstr "Alle bestanden zijn verwerkt"
1995
 
1996
+ #: admin/cerber-dashboard.php:5770
1997
  msgid "Know more about all advantages at"
1998
  msgstr "Leer alle voordelen kennen op"
1999
 
2000
+ #: cerber-common.php:1767
2001
  msgid "Suspicious JavaScript code detected"
2002
  msgstr "Verdachte JavaScript-code ontdekt"
2003
 
2021
  msgid "Click here to see the full list of files"
2022
  msgstr "Klik hier om de hele bestandenlijst te zien"
2023
 
2024
+ #: admin/cerber-dashboard.php:950
2025
  msgid "Additional Details"
2026
  msgstr "Aanvullende details"
2027
 
2028
+ #: admin/cerber-dashboard.php:4066
2029
  msgid "Page generation time"
2030
  msgstr "Aanmaaktijd pagina"
2031
 
2032
+ #: admin/cerber-dashboard.php:5950
2033
  msgid "Log In"
2034
  msgstr "Inloggen"
2035
 
2036
+ #: admin/cerber-dashboard.php:5951
2037
  msgid "Log Out"
2038
  msgstr "Uitloggen"
2039
 
2040
+ #: admin/cerber-dashboard.php:5952
2041
  msgid "Register"
2042
  msgstr "Aanmelden"
2043
 
2044
+ #: admin/cerber-dashboard.php:5955
2045
  msgid "WooCommerce Log In"
2046
  msgstr "WooCommerce Log In"
2047
 
2048
+ #: admin/cerber-dashboard.php:5956
2049
  msgid "WooCommerce Log Out"
2050
  msgstr "WooCommerce Log Out"
2051
 
2052
+ #: cerber-common.php:1755
2053
  msgid "IP address is locked out"
2054
  msgstr "IP-adres is uitgesloten"
2055
 
2056
+ #: cerber-common.php:1918
2057
  msgid "Multiple suspicious requests"
2058
  msgstr "Meerdere verdachte verzoeken"
2059
 
2085
  msgid "Preparing for the scan"
2086
  msgstr "Scan voorbereiden"
2087
 
2088
+ #: cerber-common.php:1768
2089
  msgid "Blocked by administrator"
2090
  msgstr "Geblokkeerd door de beheerder"
2091
 
2092
+ #: cerber-load.php:398
2093
  msgid "You are not allowed to log in"
2094
  msgstr "Je mag niet inloggen"
2095
 
2141
  msgid "Select one or more roles"
2142
  msgstr "Kies een of meer rollen"
2143
 
2144
+ #: admin/cerber-dashboard.php:1414 admin/cerber-users.php:971
2145
  msgid "Filter by registered user"
2146
  msgstr "Gefilterd door een geregistreerde gebruiker"
2147
 
2161
  msgid "Redirect to URL"
2162
  msgstr "Omleiding naar URL"
2163
 
2164
+ #: admin/cerber-dashboard.php:5484
2165
  msgid "Changelog"
2166
  msgstr "Log van aanpassingen"
2167
 
2168
+ #: admin/cerber-dashboard.php:741
2169
  msgid "Default settings have been loaded"
2170
  msgstr "Standaardinstellingen zijn geladen"
2171
 
2172
+ #: admin/cerber-dashboard.php:3775
2173
  msgid "Save all rules"
2174
  msgstr "Alle regels opslaan"
2175
 
2176
+ #: cerber-common.php:1743
2177
  msgid "Invalid master credentials"
2178
  msgstr "Ongeldige hoofd-inloggegevens"
2179
 
2225
  msgid "Malware Scan"
2226
  msgstr "Malware Scan"
2227
 
2228
+ #: nexus/cerber-nexus-master.php:516 nexus/cerber-slave-list.php:56
2229
  msgid "Notes"
2230
  msgstr "Aantekeningen"
2231
 
2233
  msgid "Add a slave website"
2234
  msgstr "Voeg een 'slave'-website toe"
2235
 
2236
+ #: nexus/cerber-slave-list.php:247 admin/cerber-users.php:1037
2237
  msgid "Search results for:"
2238
  msgstr "Zoekresultaten voor:"
2239
 
2253
  msgid "Add a new one"
2254
  msgstr "Voeg een nieuwe toe"
2255
 
2256
+ #: nexus/cerber-nexus-master.php:479
2257
  msgid "Website Properties"
2258
  msgstr "Website-eigenschappen"
2259
 
2260
+ #: nexus/cerber-nexus-master.php:489
2261
  msgid "Website URL"
2262
  msgstr "Website URL"
2263
 
2264
+ #: nexus/cerber-nexus-master.php:494
2265
  msgid "Display as"
2266
  msgstr "Toon als"
2267
 
2268
+ #: nexus/cerber-nexus-master.php:524
2269
  msgid "Website Owner"
2270
  msgstr "Website-eigenaar"
2271
 
2272
+ #: nexus/cerber-nexus-master.php:540
2273
  msgid "Phone"
2274
  msgstr "Telefoon"
2275
 
2276
+ #: nexus/cerber-nexus-master.php:548
2277
  msgid "Address"
2278
  msgstr "Adres"
2279
 
2280
+ #: nexus/cerber-nexus-master.php:691
2281
  msgid "The website you are trying to add is already in the list"
2282
  msgstr "De website die je wilt toevoegen, staat al op de lijst"
2283
 
2284
+ #: nexus/cerber-nexus-master.php:700
2285
  msgid "The website has been added successfully"
2286
  msgstr "De website is toegevoegd"
2287
 
2288
+ #: nexus/cerber-nexus-master.php:701
2289
  msgid "Click to edit"
2290
  msgstr "Klik om aan te passen"
2291
 
2292
+ #: nexus/cerber-nexus-master.php:702
2293
  msgid "Switch to the Dashboard"
2294
  msgstr "Ga naar het Dashboard"
2295
 
2296
+ #: nexus/cerber-nexus-master.php:705
2297
  msgid "Keep in mind: You have added the website that does not support SSL encryption. This may lead to data leakage."
2298
  msgstr "Let op: je hebt een website toegevoegd die geen SSL-encryptie ondersteunt. Dat kan een datalek veroorzaken."
2299
 
2300
+ #: nexus/cerber-nexus-master.php:824
2301
  msgid "Website has been deleted"
2302
  msgid_plural "%s websites have been deleted"
2303
  msgstr[0] "Website is verwijderd"
2304
  msgstr[1] "%s websites zijn verwijderd"
2305
 
2306
+ #: nexus/cerber-nexus-master.php:1074
2307
  msgid "You have switched to %s"
2308
  msgstr "Je bent omgeschakeld naar %s"
2309
 
2310
+ #: nexus/cerber-nexus-master.php:1084
2311
  msgid "You have switched back to the master website"
2312
  msgstr "Je bent teruggegaan naar de beheer-website"
2313
 
2314
+ #: nexus/cerber-nexus-master.php:1300
2315
  msgid "You are here:"
2316
  msgstr "Je bent hier:"
2317
 
2318
+ #: nexus/cerber-nexus-master.php:1303 nexus/cerber-nexus.php:94
2319
  #: nexus/cerber-nexus.php:104
2320
  msgid "My Websites"
2321
  msgstr "Mijn Websites"
2377
  msgstr "Installeer het toegangscertificaat op de hoofdwebsite."
2378
 
2379
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
2380
+ #: cerber-common.php:2071
2381
  msgid "%s sec"
2382
  msgid_plural "%s secs"
2383
  msgstr[0] "%s sec"
2391
  msgid "Updates"
2392
  msgstr "Updates"
2393
 
2394
+ #: nexus/cerber-nexus-master.php:502 nexus/cerber-slave-list.php:54
2395
  msgid "Group"
2396
  msgstr "Groep"
2397
 
2411
  msgid "All groups"
2412
  msgstr "Alle groepen"
2413
 
2414
+ #: nexus/cerber-nexus-master.php:1384
2415
  msgid "Are you sure you want to delete selected websites?"
2416
  msgstr "Wil je de gekozen websites zeker verwijderen?"
2417
 
2419
  msgid "Block"
2420
  msgstr "Blokkeer"
2421
 
2422
+ #: nexus/cerber-nexus-master.php:471
2423
  msgid "Select an existing group or enter a new one to add it"
2424
  msgstr "Kies een bestaande groep of voeg een nieuwe toe"
2425
 
2426
+ #: nexus/cerber-nexus-master.php:544
2427
  msgid "Company"
2428
  msgstr "Organisatie"
2429
 
2430
+ #: nexus/cerber-nexus-master.php:178
2431
  msgid "Invalid response from the slave website"
2432
  msgstr "Ongeldig antwoord van de 'slave'-website"
2433
 
2434
+ #: cerber-common.php:1707 cerber-common.php:1908
2435
  msgid "Attempt to log in with non-existing username"
2436
  msgstr "Inlogpoging met onbekende gebruikersnaam"
2437
 
2438
+ #: cerber-load.php:5076
2439
  msgid "Attempts to log in with non-existing usernames"
2440
  msgstr "Pogingen om in te loggen met een onbekende gebruikersnaam"
2441
 
2467
  msgid "Block execution of PHP scripts in the WordPress media folder"
2468
  msgstr "Voorkom uitvoeren van PHP-scripts in de WordPress media-map"
2469
 
2470
+ #: nexus/cerber-nexus-master.php:1451 nexus/cerber-nexus-master.php:1459
2471
  msgid "Active plugins and updates on"
2472
  msgstr "Actieve plugins en updates op"
2473
 
2474
+ #: nexus/cerber-nexus-master.php:1429
2475
  msgid "A newer version is available"
2476
  msgstr "Er is een nieuwere versie beschikbaar"
2477
 
2478
+ #: admin/cerber-dashboard.php:1076
2479
  msgid "New users"
2480
  msgstr "Nieuwe gebruikers"
2481
 
2482
+ #: admin/cerber-dashboard.php:1096
2483
  msgid "My activity"
2484
  msgstr "Mijn activiteiten"
2485
 
2486
+ #: admin/cerber-dashboard.php:2993
2487
  msgid "Create Alert"
2488
  msgstr "Waarschuwing aanmaken"
2489
 
2490
+ #: admin/cerber-dashboard.php:2997
2491
  msgid "Delete Alert"
2492
  msgstr "Waarschuwing verwijderen"
2493
 
2494
+ #: admin/cerber-dashboard.php:3095
2495
  msgid "The alert has been created"
2496
  msgstr "Waarschuwing aangemaakt"
2497
 
2498
+ #: admin/cerber-dashboard.php:3104
2499
  msgid "The alert has been deleted"
2500
  msgstr "Waarschuwing verwijderd"
2501
 
2502
+ #: admin/cerber-dashboard.php:4626
2503
  msgid "Advanced Search"
2504
  msgstr "Geavanceerd zoeken"
2505
 
2508
  msgid "Cerber Tech Inc."
2509
  msgstr "Cerber Tech Inc."
2510
 
2511
+ #: cerber-load.php:5743
2512
  msgid "To delete the alert, click here"
2513
  msgstr "Klik om waarschuwing te verwijderen"
2514
 
2580
  msgid "Automatically recovered"
2581
  msgstr "Automatisch hersteld"
2582
 
2583
+ #: admin/cerber-dashboard.php:70
2584
  msgid "Cerber User Security"
2585
  msgstr "Cerber Gebruikersbeveiliging"
2586
 
2587
+ #: admin/cerber-dashboard.php:70 admin/cerber-dashboard.php:5389
2588
  msgid "User Policies"
2589
  msgstr "Gebruikersbeleid"
2590
 
2591
+ #: admin/cerber-dashboard.php:2147
2592
  msgid "A new version is available"
2593
  msgstr "Er is een nieuwe versie beschikbaar"
2594
 
2595
+ #: admin/cerber-dashboard.php:5392
2596
  msgid "Global"
2597
  msgstr "Algemeen"
2598
 
2599
+ #: cerber-common.php:1769
2600
  msgid "Site policy enforcement"
2601
  msgstr "Afdwingen gebruiksvoorwaarden site"
2602
 
2603
+ #: cerber-common.php:1770
2604
  msgid "2FA code verified"
2605
  msgstr "2FA code geverifieerd"
2606
 
2607
+ #: cerber-common.php:1771
2608
  msgid "Initiated by the user"
2609
  msgstr "Gestart door gebruiker"
2610
 
2611
+ #: cerber-common.php:2321
2612
  msgid "A new version of %s is available. Please install it."
2613
  msgstr "De nieuwste versie van %s staat klaar voor installatie."
2614
 
2615
+ #: cerber-load.php:1958
2616
  msgid "Email address is not permitted."
2617
  msgstr "E-mail-adres niet toegestaan."
2618
 
2619
+ #: cerber-load.php:1958
2620
  msgid "Please choose another one."
2621
  msgstr "Kies een andere."
2622
 
2768
  msgid "Try again"
2769
  msgstr "Probeer nogmaals"
2770
 
2771
+ #: cerber-2fa.php:661 admin/cerber-dashboard.php:5839
2772
  msgid "Cancel"
2773
  msgstr "Laat vervallen"
2774
 
2788
  msgid "Two-Factor Authentication Email"
2789
  msgstr "E-mail voor dubbele authenticatie"
2790
 
2791
+ #: admin/cerber-dashboard.php:3718
2792
  msgid "Role-based rules are configured"
2793
  msgstr "Rolgebaseerde regels worden ingesteld"
2794
 
2801
  msgid "The code is valid for %s minutes."
2802
  msgstr "De code is %s minuten geldig."
2803
 
2804
+ #: admin/cerber-dashboard.php:372
2805
  msgid "IP address %s has been added to White IP Access List"
2806
  msgstr "IP-adres %s staat nu op de lijst toegelaten adressen"
2807
 
2808
+ #: admin/cerber-dashboard.php:369
2809
  msgid "IP address %s has been added to Black IP Access List"
2810
  msgstr "IP-adres %s staat nu op de lijst verboden adressen"
2811
 
2812
+ #: admin/cerber-dashboard.php:211 admin/cerber-dashboard.php:947
2813
+ #: admin/cerber-dashboard.php:1327 admin/cerber-dashboard.php:4545
2814
+ #: admin/cerber-users.php:927
2815
  msgid "IP Address"
2816
  msgstr "IP-adres"
2817
 
2818
+ #: admin/cerber-dashboard.php:954 admin/cerber-dashboard.php:1333
2819
  msgid "Username"
2820
  msgstr "Gebruikersnaam"
2821
 
2822
+ #: admin/cerber-dashboard.php:3800
2823
  msgid "Any country is permitted"
2824
  msgstr "Elk land is toegestaan"
2825
 
2826
+ #: admin/cerber-dashboard.php:3405 admin/cerber-dashboard.php:5294
2827
  msgid "Sessions"
2828
  msgstr "Sessies"
2829
 
2830
+ #: cerber-load.php:1717
2831
  msgid "Session has been terminated"
2832
  msgid_plural "%s sessions have been terminated"
2833
  msgstr[0] "De sessie is gestopt"
2834
  msgstr[1] "%s sessies zijn gestopt"
2835
 
2836
+ #: admin/cerber-users.php:925
2837
  msgid "Created"
2838
  msgstr "Aangemaakt"
2839
 
2840
+ #: admin/cerber-users.php:946
2841
  msgid "Terminate session"
2842
  msgstr "Beëindig sessie"
2843
 
2844
+ #: admin/cerber-users.php:947
2845
  msgid "Block user"
2846
  msgstr "Blokkeer gebruiker"
2847
 
2848
+ #: admin/cerber-users.php:1079
2849
  msgid "Profile"
2850
  msgstr "Profiel"
2851
 
2852
+ #: admin/cerber-users.php:1092
2853
  msgid "All Logins"
2854
  msgstr "Alle log-ins"
2855
 
2856
+ #: admin/cerber-users.php:1093
2857
  msgid "User Activity"
2858
  msgstr "Gebruikersactiviteit"
2859
 
2860
+ #: admin/cerber-users.php:1139
2861
  msgid "Terminate"
2862
  msgstr "Beëindig"
2863
 
2864
+ #: admin/cerber-dashboard.php:2097
2865
  msgid "user"
2866
  msgid_plural "users"
2867
  msgstr[0] "gebruiker"
2875
  msgid "Unable to delete"
2876
  msgstr "Kan niet verwijderen"
2877
 
2878
+ #: admin/cerber-dashboard.php:66
2879
  msgid "Cerber Data Shield Policies"
2880
  msgstr "Cerber Data Shield instellingen"
2881
 
2882
+ #: admin/cerber-dashboard.php:66
2883
  msgid "Data Shield"
2884
  msgstr "Data Shield"
2885
 
2886
+ #: admin/cerber-dashboard.php:5379
2887
  msgid "Data Shield Policies"
2888
  msgstr "Data Shield instellingen"
2889
 
2890
+ #: admin/cerber-dashboard.php:5381
2891
  msgid "Accounts & Roles"
2892
  msgstr "Accounts & Rollen"
2893
 
2894
+ #: admin/cerber-dashboard.php:5382
2895
  msgid "Site Settings"
2896
  msgstr "Site-instellingen"
2897
 
2898
+ #: cerber-common.php:1720
2899
  msgid "User creation denied"
2900
  msgstr "Gebruiker aanmaken afgewezen"
2901
 
2902
+ #: cerber-common.php:1722
2903
  msgid "Role update denied"
2904
  msgstr "Bijwerken Rol afgewezen"
2905
 
2906
+ #: cerber-common.php:1723
2907
  msgid "Setting update denied"
2908
  msgstr "Bijwerken instellingen afgewezen"
2909
 
2910
+ #: cerber-common.php:1776
2911
  msgid "Permission denied"
2912
  msgstr "Toestemming geweigerd"
2913
 
2914
+ #: cerber-common.php:1778
2915
  msgid "Invalid user"
2916
  msgstr "Ongeldige gebruiker"
2917
 
2918
+ #: cerber-common.php:1779
2919
  msgid "Incorrect password"
2920
  msgstr "Onjuist wachtwoord"
2921
 
2995
  msgid "All countries"
2996
  msgstr "Alle landen"
2997
 
2998
+ #: nexus/cerber-nexus-master.php:442
2999
  msgid "Show homepage in the Website column"
3000
  msgstr "Toon thuispagina in de Website-kolom"
3001
 
3002
+ #: nexus/cerber-nexus-master.php:444
3003
  msgid "Hide server IP address"
3004
  msgstr "Verberg IP-adres server"
3005
 
3006
+ #: admin/cerber-dashboard.php:341
3007
  msgid "IP address, range, wildcard, or CIDR"
3008
  msgstr "IP-adres, -reeks, -jokerteken of CIDR"
3009
 
3010
+ #: admin/cerber-dashboard.php:342
3011
  msgid "Add Entry"
3012
  msgstr "Voeg toe"
3013
 
3014
+ #: admin/cerber-dashboard.php:5634
3015
  msgid "The IP address you are trying to add is already in the list"
3016
  msgstr "Het IP-adres dat je wilt toevoegen, staat al in de lijst"
3017
 
3018
+ #: cerber-common.php:1674
3019
  msgid "IP subnet blocked"
3020
  msgstr "IP subnet geblokkeerd"
3021
 
3022
+ #: cerber-common.php:1721
3023
  msgid "User row update denied"
3024
  msgstr "Aanpassing rij van gebruiker geweigerd"
3025
 
3026
+ #: cerber-common.php:1724
3027
  msgid "User metadata update denied"
3028
  msgstr "Aanpassing metadata gebruiker geweigerd"
3029
 
3091
  msgid "Cookies"
3092
  msgstr "Cookies"
3093
 
3094
+ #: admin/cerber-dashboard.php:77
3095
  msgid "Cerber anti-spam settings"
3096
  msgstr "Cerber anti-spam-instellingen"
3097
 
3098
+ #: admin/cerber-dashboard.php:77
3099
  msgid "Anti-spam"
3100
  msgstr "Anti-spam"
3101
 
3102
+ #: cerber-addons.php:289 admin/cerber-dashboard.php:85
3103
+ #: admin/cerber-dashboard.php:85
3104
  msgid "Add-ons"
3105
  msgstr "Add-ons"
3106
 
3107
+ #: admin/cerber-dashboard.php:5343
3108
  msgid "Anti-spam and bot detection settings"
3109
  msgstr "Anti-spam- en botdetectie-instellingen"
3110
 
3111
+ #: admin/cerber-dashboard.php:5345
3112
  msgid "Anti-spam engine"
3113
  msgstr "Anti-spamroutine"
3114
 
3115
+ #: cerber-common.php:1917
3116
  msgid "Multiple erroneous requests"
3117
  msgstr "Meervoudige foutieve verzoeken"
3118
 
3209
  msgid "Settings updated"
3210
  msgstr "Instellingen aangepast"
3211
 
3212
+ #: admin/cerber-dashboard.php:1418
3213
  msgid "Request ID"
3214
  msgstr "ID van verzoek"
3215
 
3216
+ #: admin/cerber-dashboard.php:1419
3217
  msgid "Search in URL"
3218
  msgstr "Zoek in URL"
3219
 
3225
  msgid "All files"
3226
  msgstr "Alle bestanden"
3227
 
3228
+ #: admin/cerber-dashboard.php:1926
3229
  msgid "Active sessions"
3230
  msgstr "Actieve sessies"
3231
 
3237
  msgid "Load entries"
3238
  msgstr "Waarden inladen"
3239
 
3240
+ #: admin/cerber-dashboard.php:1097 admin/cerber-dashboard.php:4618
3241
  msgid "My IP"
3242
  msgstr "Mijn IP"
3243
 
3244
+ #: admin/cerber-dashboard.php:5432
3245
  msgid "Analytics"
3246
  msgstr "Analyse"
3247
 
3248
+ #: admin/cerber-dashboard.php:5481
3249
  msgid "Manage Settings"
3250
  msgstr "Instellingen beheren"
3251
 
3252
  #: cerber-settings.php:1047 cerber-settings.php:1445 cerber-settings.php:1473
3253
+ #: admin/cerber-dashboard.php:5483
3254
  msgid "Diagnostic Log"
3255
  msgstr "Diagnostische log"
3256
 
3257
+ #: cerber-common.php:1665
3258
  msgid "User deleted"
3259
  msgstr "Verwijderd door gebruiker"
3260
 
3261
+ #: cerber-common.php:1774
3262
  msgid "Email address is prohibited"
3263
  msgstr "Email-adres is verboden"
3264
 
3366
  msgid "To get the most out of WP Cerber, follow these steps:"
3367
  msgstr "Om het meeste baat bij WP Cerber te hebben, doe dit:"
3368
 
3369
+ #: cerber-common.php:1789
3370
  msgid "IP whitelisted"
3371
  msgstr "IP toegestaan"
3372
 
3373
+ #: admin/cerber-dashboard.php:4617
3374
  msgid "My requests"
3375
  msgstr "Mijn verzoeken"
3376
 
3377
+ #: admin/cerber-dashboard.php:3910
3378
  msgid "Log into the website"
3379
  msgstr "Bij de website inloggen"
3380
 
3383
  msgid "WP Cerber Security, Anti-spam & Malware Scan"
3384
  msgstr "WP Cerber Security, Anti-spam & Malware Scan"
3385
 
3386
+ #: cerber-common.php:1713 cerber-common.php:1913
3387
  msgid "Probing for vulnerable code"
3388
  msgstr "Op zoek naar kwetsbare code"
3389
 
3390
+ #: cerber-load.php:5967
3391
  msgid "Your IP address %s has been added to the White IP Access List"
3392
  msgstr "Je IP-adres %s is toegevoegd aan de Lijst Toegestane Adressen"
3393
 
3394
+ #: admin/cerber-users.php:974
3395
  msgid "Search for IP address"
3396
  msgstr "IP-adres zoeken"
3397
 
3419
  msgid "Specify User-Agents to exclude requests from logging. One item per line."
3420
  msgstr "Geef aan welke 'user-agents' niet gelogd worden. Eén per regel."
3421
 
3422
+ #: admin/cerber-dashboard.php:4739
3423
  msgid "Unknown Google's bot"
3424
  msgstr "Onbekende Google-bot"
3425
 
3426
+ #: cerber-common.php:1780
3427
  msgid "IP address is not allowed"
3428
  msgstr "IP-adres niet toegestaan"
3429
 
3460
  msgid "Defer rendering the custom login page"
3461
  msgstr "Stel weergave van de eigen inlogpagina uit"
3462
 
3463
+ #: cerber-load.php:414
3464
  msgid "You have only one login attempt remaining."
3465
  msgstr "Je kunt nog één login-poging wagen."
3466
 
3488
  msgid "If the number of concurrent user sessions is greater"
3489
  msgstr "Als het aantal gelijktijdige gebruikersessies groter is"
3490
 
3491
+ #: admin/cerber-dashboard.php:5769
3492
  msgid "These features are available in the professional version of WP Cerber."
3493
  msgstr "Deze mogelijkheden vind je in de betaalde versie van WP Cerber."
3494
 
3495
+ #: cerber-common.php:1694
3496
  msgid "User session terminated"
3497
  msgstr "Gebruikerssessie beëindigd"
3498
 
3499
+ #: cerber-common.php:1781
3500
  msgid "Limit on concurrent user sessions"
3501
  msgstr "Grens aan gelijktijdige gebruikersessies"
3502
 
3520
  msgid "To avoid false positives and get better anti-spam performance, please clear the plugin cache."
3521
  msgstr "Wis de plugin cache om valse positieven te voorkomen en beter anti-spam-gedrag te krijgen."
3522
 
3523
+ #: cerber-common.php:1733
3524
  msgid "API request authorized"
3525
  msgstr "API-verzoek toegestaan"
3526
 
3527
+ #: cerber-common.php:1734
3528
  msgid "API request authorization failed"
3529
  msgstr "API-verzoek afgewezen"
3530
 
3531
+ #: cerber-common.php:1718
3532
  msgid "Request to XML-RPC API denied"
3533
  msgstr "Verzoek aan XML-RPC API afgewezen"
3534
 
3535
+ #: cerber-common.php:1782
3536
  msgid "Invalid cookies"
3537
  msgstr "Ongeldige cookies"
3538
 
3565
  msgstr "Gebruik eigen URL voor het WordPress"
3566
 
3567
  #: cerber-settings.php:461 cerber-settings.php:1295
3568
+ #: admin/cerber-dashboard.php:2097
3569
  msgid "Logged-in users"
3570
  msgstr "Ingelogde gebruikers"
3571
 
3625
  msgid "Use global policies"
3626
  msgstr "Gebruik algemene instellingen"
3627
 
3628
+ #: cerber-load.php:417
3629
  msgid "You have %d login attempt remaining."
3630
  msgid_plural "You have %d login attempts remaining."
3631
  msgstr[0] "Laatste inlogpoging."
3635
  msgid "Display this message if an attempt to log in is denied because the limit on concurrent user sessions has been reached"
3636
  msgstr "Toon dit bericht als een inlogpoging wordt afgewezen vanwege de limiet op gelijktijdige sessies"
3637
 
3638
+ #: admin/cerber-dashboard.php:5391
3639
  msgid "Role-Based"
3640
  msgstr "Rolgebaseerd"
3641
 
3642
+ #: cerber-common.php:1730
3643
  msgid "User application password created"
3644
  msgstr "Gebruikerswachtwoord aangemaakt"
3645
 
3655
  msgid "Save response cookies"
3656
  msgstr "Response cookies opslaan"
3657
 
3658
+ #: cerber-load.php:8041
3659
  msgid "We need your support to keep moving forward"
3660
  msgstr "We hebben je ondersteuning nodig om door te gaan"
3661
 
3662
+ #: cerber-load.php:8043
3663
  msgid "By sharing your unique opinion on WP Cerber, you help the engineers behind the plugin make greater progress and help other professionals find the right software. You can leave your review on one of the following websites. Feel free to use your native language. Thanks!"
3664
  msgstr "Door WP Cerber te beoordelen, scherp je de focus van de makers en help je anderen de juiste programma's te vinden. Plaats je bespreking op een van deze sites. Dat kan gewoon in het Nederlands. Dankjewel!"
3665
 
3666
+ #: nexus/cerber-nexus-master.php:661
3667
  msgid "Secret Access Token is invalid"
3668
  msgstr "Ongeldig Geheim Toegangscertificaat"
3669
 
3670
+ #: admin/cerber-dashboard.php:225
3671
  msgid "Click the IP address to see its activity"
3672
  msgstr "Klik op het IP-adres om z'n acties te zien"
3673
 
3674
+ #: admin/cerber-dashboard.php:1077
3675
  msgid "Login issues"
3676
  msgstr "Login-problemen"
3677
 
3678
+ #: admin/cerber-dashboard.php:1094 admin/cerber-dashboard.php:4612
3679
  msgid "Non-authenticated"
3680
  msgstr "Niet-geautoriseerd"
3681
 
3682
+ #: admin/cerber-dashboard.php:1379 admin/cerber-dashboard.php:1826
3683
+ #: admin/cerber-dashboard.php:2681 admin/cerber-admin.php:1333
3684
  msgid "No activity has been logged yet."
3685
  msgstr "Er is nog geen activiteit geregistreerd"
3686
 
3687
+ #: admin/cerber-dashboard.php:2701
3688
  msgid "Users' Activity"
3689
  msgstr "Gebruikersactiviteit"
3690
 
3691
+ #: admin/cerber-dashboard.php:2721
3692
  msgid "Malicious Activity"
3693
  msgstr "Kwaadaardige activiteit"
3694
 
3695
+ #: admin/cerber-dashboard.php:4609
3696
  msgid "Suspicious requests"
3697
  msgstr "Verdachte verzoeken"
3698
 
3699
+ #: admin/cerber-dashboard.php:1093 admin/cerber-dashboard.php:4611
3700
  msgid "Users"
3701
  msgstr "Gebruikers"
3702
 
3703
+ #: cerber-common.php:1784
3704
  msgid "Forbidden URL"
3705
  msgstr "Verboden URL"
3706
 
3764
  msgid "Deny authentication through wp-login.php"
3765
  msgstr "Wijs authenticatie via wp-login.php af"
3766
 
3767
+ #: cerber-common.php:1783
3768
  msgid "Invalid cookies cleared"
3769
  msgstr "Ongeldige cookies gewist"
3770
 
3771
+ #: cerber-load.php:1862
3772
  msgid "If we have found your account, we have sent the confirmation link to the email address on the account."
3773
  msgstr "Als we je account hebben, sturen we een bevestigingslink naar het email-adres in dat account."
3774
 
3775
+ #: cerber-load.php:5925 cerber-common.php:525
3776
  msgid "WP Cerber requires PHP %s or higher. You are running %s."
3777
  msgstr "WP Cerber vergt PHP %s or hoger. Jij draait %s."
3778
 
3779
+ #: cerber-load.php:5929 cerber-common.php:529
3780
  msgid "WP Cerber requires WordPress %s or higher. You are running %s."
3781
  msgstr "WP Cerber vergt WordPress %s or hoger. Jij draait %s."
3782
 
3856
  msgid "Detecting injected files in the WordPress uploads directory"
3857
  msgstr "Bijgevoegde bestanden detecteren in de Wordpress uploads-map"
3858
 
3859
+ #: cerber-common.php:1785
3860
  msgid "Executable file extension detected"
3861
  msgstr "Uitvoerbare bestandextensie aangetroffen"
3862
 
3863
+ #: cerber-common.php:1786
3864
  msgid "Filename is prohibited"
3865
  msgstr "Bestandsnaam is verboden"
3866
 
3940
  msgid "These policies are automatically enforced at the end of every scan based on its results. All affected files are moved to the quarantine."
3941
  msgstr "Het beleid wordt automatisch toegepast na elke scan, afhankelijk van de resultaten. Aangetaste bestanden gaan naar de quarantaine."
3942
 
3943
+ #: admin/cerber-dashboard.php:3339
3944
  msgid "This scan report was generated by the previous version of WP Cerber. Please run a new scan to get consistent and accurate results."
3945
  msgstr "Het scan-rapport komt van een eerdere versie van WP Cerber. Scan opnieuw voor een consistent en accuraat resultaat."
3946
 
3970
  msgid "Medium"
3971
  msgstr "Midden"
3972
 
3973
+ #: cerber-load.php:4690
3974
  msgid "If you believe you should be able to perform this request, please let us know."
3975
  msgstr "Meen je dit verzoek te moeten kunnen uitvoeren, laat het ons weten."
3976
 
3977
+ #: cerber-load.php:4689
3978
  msgid "Your request looks suspiciously similar to automated requests from spam posting software or it has been denied by a security policy configured by the website administrator."
3979
  msgstr "Je verzoek lijkt te veel op een geautomatiseerd verzoek van spam-software óf is geweigerd door een beveiligingsinstelling van de beheerder."
3980
 
3990
  msgid "Executable files are not supported. Please upload a ZIP archive."
3991
  msgstr "Uitvoerbare bestanden zijn niet mogelijk. Upload een ZIP-bestand."
3992
 
3993
+ #: cerber-load.php:775
3994
  msgid "Human verification failed."
3995
  msgstr "Verificatie als mens mislukt."
3996
 
3997
+ #: cerber-common.php:1800
3998
  msgid "Logged out everywhere"
3999
  msgstr "Overal uitgelogd"
4000
 
4001
+ #: cerber-common.php:1698
4002
  msgid "Password reset request denied"
4003
  msgstr "Verzoek om wachtwoord-reset afgewezen"
4004
 
4005
+ #: cerber-common.php:1802
4006
  msgid "reCAPTCHA verified"
4007
  msgstr "reCAPTCHA geverifieerd"
4008
 
4009
+ #: cerber-load.php:3359
4010
  msgid "Sorry, password reset is not allowed for this user."
4011
  msgstr "Excuus, wachtwoordreset is niet toegestaan voor deze gebruiker."
4012
 
4018
  msgid "Use less restrictive security filters for IP addresses in the White IP Access List"
4019
  msgstr "Gebruik lossere filters voor IP-adressen uit de toegestane lijst"
4020
 
4021
+ #: cerber-common.php:1729
4022
  msgid "User application password updated"
4023
  msgstr "Gebruikerswachtwoord bijgewerkt"
4024
 
4025
+ #: cerber-common.php:1772
4026
  msgid "User blocked by administrator"
4027
  msgstr "Gebruiker geblokkeerd door de admin"
4028
 
4029
  #. %s is the name of a website administrator who terminated the session.
4030
+ #: cerber-common.php:1696
4031
  msgid "User session terminated by %s"
4032
  msgstr "Gebruikerssessie beëindigd door %s"
4033
 
4034
+ #: cerber-common.php:1773
4035
  msgid "Username is prohibited"
4036
  msgstr "Gebruikersnaam is verboden"
4037
 
4043
  msgid "View denied REST API requests"
4044
  msgstr "Toon afgewezen REST API-verzoeken"
4045
 
4046
+ #: cerber-load.php:4908 cerber-load.php:4909
4047
  msgid "A new activity has occurred"
4048
  msgstr "Er was nieuwe activiteit"
4049
 
4050
+ #: admin/cerber-dashboard.php:3019
4051
  msgid "Do not send alerts after this date"
4052
  msgstr "Stuur geen waarschuwingen na deze datum"
4053
 
4054
+ #: admin/cerber-dashboard.php:3059 admin/cerber-dashboard.php:4589
4055
  msgid "Documentation"
4056
  msgstr "Documentatie"
4057
 
4058
+ #: admin/cerber-dashboard.php:3046
4059
  msgid "Email alerts will be sent to these emails:"
4060
  msgstr "E-mail-waarschuwingen gaan naar:"
4061
 
4062
+ #: admin/cerber-dashboard.php:3046
4063
  msgid "Email alerts will be sent to this email:"
4064
  msgstr "E-mail-waarschuwingen gaan naar:"
4065
 
4066
+ #: admin/cerber-dashboard.php:3024
4067
  msgid "Ignore global rate limits"
4068
  msgstr "Negeer algemene tarieflimieten"
4069
 
4070
+ #: admin/cerber-dashboard.php:3010
4071
  msgid "Maximum number of alerts to send"
4072
  msgstr "Maximum aantal te verzenden waarschuwingen"
4073
 
4074
+ #: admin/cerber-dashboard.php:3054
4075
  msgid "Mobile alerts are not configured"
4076
  msgstr "Mobiele waarschuwingen zijn niet ingesteld"
4077
 
4078
  #. %s is the name of a mobile device.
4079
+ #: admin/cerber-dashboard.php:3051
4080
  msgid "Mobile alerts will be sent to %s"
4081
  msgstr "Mobiele waarschuwingen worden naar %s gestuurd"
4082
 
4083
+ #: admin/cerber-dashboard.php:3015
4084
  msgid "No limit"
4085
  msgstr "Geen limiet"
4086
 
4087
+ #: admin/cerber-dashboard.php:5838
4088
  msgid "OK"
4089
  msgstr "OK"
4090
 
4091
+ #: admin/cerber-dashboard.php:3061
4092
  msgid "Optional alert limits"
4093
  msgstr "Limiet voor waarschuwingen (optie)"
4094
 
4095
  #. %s is the name of a website administrator who changed the password.
4096
+ #: cerber-common.php:1692
4097
  msgid "Password changed by %s"
4098
  msgstr "Wachtwoord veranderd door %s"
4099
 
4101
  msgid "Spam protection for registration, comment, and other forms on the website"
4102
  msgstr "Spambescherming voor registratie, opmerkingen en andere formulieren op de website"
4103
 
4104
+ #: cerber-common.php:1816
4105
  msgid "Unknown label"
4106
  msgstr "Onbekend label"
4107
 
4108
  #. %s is the name of a website administrator who created the password.
4109
+ #: cerber-common.php:1732
4110
  msgid "User application password created by %s"
4111
  msgstr "Gebruikerswachtwoord aangemaakt door %s"
4112
 
4113
+ #: cerber-common.php:1735
4114
  msgid "User application password deleted"
4115
  msgstr "Gebruikerswachtwoord verwijderd"
4116
 
4117
  #. %s is the name of a website administrator who deleted the password.
4118
+ #: cerber-common.php:1737
4119
  msgid "User application password deleted by %s"
4120
  msgstr "Gebruikerswachtwoord verwijderd door %s"
4121
 
4122
  #. %s is the name of a website administrator who created the user.
4123
+ #: cerber-common.php:1663
4124
  msgid "User created by %s"
4125
  msgstr "Gebruiker aangemaakt door %s"
4126
 
4127
  #. %s is the name of a website administrator who deleted the user.
4128
+ #: cerber-common.php:1667
4129
  msgid "User deleted by %s"
4130
  msgstr "Gebruiker verwijderd door %s"
4131
 
4137
  msgid "View reCAPTCHA events"
4138
  msgstr "Bekijk reCAPTCHA-gebeurtenissen"
4139
 
4140
+ #: admin/cerber-dashboard.php:1400
4141
+ msgid "Check for requests from the IP address"
4142
+ msgstr "Opdrachten vanuit dit IP-adres zoeken"
4143
+
4144
+ #: admin/cerber-dashboard.php:1387
4145
+ msgid "Get me notified when such an event occurs"
4146
+ msgstr "Bericht me als dit gebeurt"
4147
+
4148
+ #: admin/cerber-dashboard.php:1382
4149
+ msgid "No events found using the given search criteria"
4150
+ msgstr "Geen gebeurtenissen gevonden bij deze zoektermen"
4151
+
4152
+ #: admin/cerber-dashboard.php:4580
4153
+ msgid "No requests found using the given search criteria"
4154
+ msgstr "Geen opdrachten gevonden bij deze zoektermen"
4155
+
4156
+ #: admin/cerber-dashboard.php:4577
4157
+ msgid "No requests have been logged yet."
4158
+ msgstr "Er zijn geen opdrachten opgeslagen."
4159
+
4160
+ #: admin/cerber-dashboard.php:4587
4161
+ msgid "Note: Logging is currently disabled"
4162
+ msgstr "NB: loggen staat nu uit"
4163
+
4164
+ #: cerber-settings.php:694
4165
+ msgid "Sort users in the Dashboard"
4166
+ msgstr "Sorteer gebruikers in het Dashboard"
4167
+
4168
+ #: cerber-load.php:4827 cerber-load.php:5742
4169
+ msgid "View activity in the Dashboard"
4170
+ msgstr "Toon activiteit in het Dashboard"
4171
+
4172
+ #: admin/cerber-dashboard.php:1392
4173
+ msgid "View all logged events"
4174
+ msgstr "Toon alle opgeslagen gebeurtenissen"
4175
+
4176
+ #: admin/cerber-dashboard.php:4582
4177
+ msgid "View all logged requests"
4178
+ msgstr "Toon alle opgeslagen opdrachten"
4179
+
4180
+ #: cerber-load.php:4865
4181
+ msgid "View lockouts in the Dashboard"
4182
+ msgstr "Toon uitsluitingen in het Dashboard"
4183
+
4184
+ #: cerber-settings.php:188 cerber-settings.php:189
4185
+ msgid "View violations in the log"
4186
+ msgstr "Toon opgeslagen inbreuken"
4187
+
4188
+ #: admin/cerber-dashboard.php:1385
4189
+ msgid "You will be notified when such an event occurs"
4190
+ msgstr "Je krijgt bericht als dit gebeurt"
4191
+
languages/wp-cerber.pot CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP Cerber Security, Anti-spam & Malware Scan\n"
6
  "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2022-02-01 11:37+0000\n"
8
  "POT-Revision-Date: Fri Mar 12 2021 20:21:05 GMT+0300 (Moscow Standard Time)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
@@ -24,35 +24,35 @@ msgstr ""
24
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
25
  "X-Generator: Loco https://localise.biz/"
26
 
27
- #: admin/cerber-admin-settings.php:346
28
  #, php-format
29
  msgid "%s registrations are allowed within %s minutes from one IP address"
30
  msgstr ""
31
 
32
- #: admin/cerber-admin-settings.php:340
33
  #, php-format
34
  msgid "%s retries are allowed within %s minutes"
35
  msgstr ""
36
 
37
  #. Time difference between two dates, in seconds (sec=second). 1: Number of seconds
38
- #: cerber-common.php:2069
39
  #, php-format
40
  msgid "%s sec"
41
  msgid_plural "%s secs"
42
  msgstr[0] ""
43
  msgstr[1] ""
44
 
45
- #: cerber-settings.php:1353
46
  msgid ""
47
  "(do not enable it unless you get and enter the Site and Secret keys for the "
48
  "invisible version)"
49
  msgstr ""
50
 
51
- #: cerber-common.php:1768
52
  msgid "2FA code verified"
53
  msgstr ""
54
 
55
- #: admin/cerber-users.php:86
56
  msgid "2FA PIN Code"
57
  msgstr ""
58
 
@@ -60,20 +60,20 @@ msgstr ""
60
  msgid "A database error occurred while importing access list entries"
61
  msgstr ""
62
 
63
- #: cerber-load.php:4908 cerber-load.php:4909
64
  msgid "A new activity has occurred"
65
  msgstr ""
66
 
67
- #: admin/cerber-dashboard.php:2139
68
  msgid "A new version is available"
69
  msgstr ""
70
 
71
- #: cerber-common.php:2319
72
  #, php-format
73
  msgid "A new version of %s is available. Please install it."
74
  msgstr ""
75
 
76
- #: cerber-load.php:4868 cerber-load.php:4870
77
  msgid "A new version of WP Cerber is available to install"
78
  msgstr ""
79
 
@@ -81,43 +81,49 @@ msgstr ""
81
  msgid "A newer version is available"
82
  msgstr ""
83
 
84
- #: cerber-settings.php:224
 
 
 
 
 
 
85
  msgid ""
86
  "A unique string that does not overlap with slugs of the existing pages or "
87
  "posts"
88
  msgstr ""
89
 
90
- #: admin/cerber-dashboard.php:1726
91
  msgid "Abuse email:"
92
  msgstr ""
93
 
94
- #: admin/cerber-dashboard.php:5289 admin/cerber-tools.php:38
95
  #: admin/cerber-tools.php:49
96
  msgid "Access Lists"
97
  msgstr ""
98
 
99
- #: cerber-settings.php:1461
100
  msgid "Access to this website"
101
  msgstr ""
102
 
103
- #: cerber-settings.php:446
104
  msgid "Access to WordPress REST API"
105
  msgstr ""
106
 
107
- #: admin/cerber-dashboard.php:5373
108
  msgid "Accounts & Roles"
109
  msgstr ""
110
 
111
- #: admin/cerber-dashboard.php:216 admin/cerber-users.php:929
112
- #: admin/cerber-admin.php:774 admin/cerber-admin.php:929
113
  msgid "Action"
114
  msgstr ""
115
 
116
- #: admin/cerber-dashboard.php:1895
117
  msgid "Activated"
118
  msgstr ""
119
 
120
- #: admin/cerber-dashboard.php:2070 admin/cerber-dashboard.php:2100
121
  msgid "active"
122
  msgstr ""
123
 
@@ -125,24 +131,24 @@ msgstr ""
125
  msgid "Active plugins and updates on"
126
  msgstr ""
127
 
128
- #: admin/cerber-dashboard.php:1918
129
  msgid "Active sessions"
130
  msgstr ""
131
 
132
- #: cerber-load.php:5698 cerber-settings.php:322 admin/cerber-dashboard.php:2134
133
- #: admin/cerber-dashboard.php:5285 admin/cerber-users.php:1115
134
  msgid "Activity"
135
  msgstr ""
136
 
137
- #: cerber-load.php:5062
138
  msgid "Activity details"
139
  msgstr ""
140
 
141
- #: admin/cerber-admin.php:889
142
  msgid "Activity Insights"
143
  msgstr ""
144
 
145
- #: cerber-settings.php:1427
146
  msgid "Add @ site to the page title"
147
  msgstr ""
148
 
@@ -154,19 +160,19 @@ msgstr ""
154
  msgid "Add a slave website"
155
  msgstr ""
156
 
157
- #: admin/cerber-dashboard.php:342
158
  msgid "Add Entry"
159
  msgstr ""
160
 
161
- #: admin/cerber-dashboard.php:1754
162
  msgid "Add IP to the Black List"
163
  msgstr ""
164
 
165
- #: admin/cerber-dashboard.php:1748
166
  msgid "Add network to the Black List"
167
  msgstr ""
168
 
169
- #: nexus/cerber-nexus.php:267
170
  msgid "Add slave websites by using access tokens."
171
  msgstr ""
172
 
@@ -175,11 +181,11 @@ msgstr ""
175
  msgid "Add-ons"
176
  msgstr ""
177
 
178
- #: admin/cerber-admin.php:925
179
  msgid "Added"
180
  msgstr ""
181
 
182
- #: admin/cerber-dashboard.php:950
183
  msgid "Additional Details"
184
  msgstr ""
185
 
@@ -187,27 +193,27 @@ msgstr ""
187
  msgid "Address"
188
  msgstr ""
189
 
190
- #: cerber-settings.php:1286
191
  msgid "Adjust anti-spam engine"
192
  msgstr ""
193
 
194
- #: admin/cerber-users.php:75
195
  msgid "Admin Note"
196
  msgstr ""
197
 
198
- #: admin/cerber-users.php:490
199
  msgid "Advanced mode"
200
  msgstr ""
201
 
202
- #: admin/cerber-dashboard.php:4618
203
  msgid "Advanced Search"
204
  msgstr ""
205
 
206
- #: cerber-settings.php:1093
207
  msgid "After every scan"
208
  msgstr ""
209
 
210
- #: cerber-settings.php:118
211
  msgid "All connected devices"
212
  msgstr ""
213
 
@@ -215,11 +221,11 @@ msgstr ""
215
  msgid "All countries"
216
  msgstr ""
217
 
218
- #: cerber-settings.php:992 cerber-settings.php:1001
219
  msgid "All files"
220
  msgstr ""
221
 
222
- #: admin/cerber-dashboard.php:3330
223
  msgid "All files have been processed"
224
  msgstr ""
225
 
@@ -227,11 +233,11 @@ msgstr ""
227
  msgid "All groups"
228
  msgstr ""
229
 
230
- #: admin/cerber-users.php:1092
231
  msgid "All Logins"
232
  msgstr ""
233
 
234
- #: admin/cerber-admin.php:784
235
  msgid "All scans"
236
  msgstr ""
237
 
@@ -239,19 +245,19 @@ msgstr ""
239
  msgid "All servers"
240
  msgstr ""
241
 
242
- #: cerber-settings.php:880
243
  msgid "All traffic"
244
  msgstr ""
245
 
246
- #: cerber-settings.php:462
247
  msgid "Allow access to REST API for logged-in users"
248
  msgstr ""
249
 
250
- #: cerber-settings.php:467
251
  msgid "Allow REST API for these roles"
252
  msgstr ""
253
 
254
- #: cerber-settings.php:472
255
  msgid "Allow these namespaces"
256
  msgstr ""
257
 
@@ -263,27 +269,31 @@ msgid ""
263
  "everyday. You can disable the sending in the plugin settings at any time."
264
  msgstr ""
265
 
266
- #: cerber-settings.php:258
267
  msgid "Always block entire subnet Class C of intruders IP"
268
  msgstr ""
269
 
270
- #: admin/cerber-users.php:19 admin/cerber-users.php:489
271
  msgid "Always enabled"
272
  msgstr ""
273
 
274
- #: admin/cerber-users.php:70
 
 
 
 
275
  msgid "An optional message for this user"
276
  msgstr ""
277
 
278
- #: admin/cerber-dashboard.php:5424
279
  msgid "Analytics"
280
  msgstr ""
281
 
282
- #: cerber-settings.php:1148
283
  msgid "Analyze the uploads directory"
284
  msgstr ""
285
 
286
- #: cerber-settings.php:1149
287
  msgid "Analyze the WordPress uploads directory to detect injected files"
288
  msgstr ""
289
 
@@ -291,44 +301,44 @@ msgstr ""
291
  msgid "Anti-spam"
292
  msgstr ""
293
 
294
- #: admin/cerber-dashboard.php:5335
295
  msgid "Anti-spam and bot detection settings"
296
  msgstr ""
297
 
298
- #: admin/cerber-dashboard.php:5337
299
  msgid "Anti-spam engine"
300
  msgstr ""
301
 
302
- #: cerber-settings.php:1562
303
  msgid "Any activity"
304
  msgstr ""
305
 
306
- #: admin/cerber-dashboard.php:3792
307
  msgid "Any country is permitted"
308
  msgstr ""
309
 
310
- #: cerber-common.php:1732
311
  msgid "API request authorization failed"
312
  msgstr ""
313
 
314
- #: cerber-common.php:1731
315
  msgid "API request authorized"
316
  msgstr ""
317
 
318
- #: cerber-settings.php:678 admin/cerber-users.php:468
319
  msgid "Application Passwords"
320
  msgstr ""
321
 
322
  #. For translators
323
- #: admin/cerber-admin.php:885
324
  msgid "Apply"
325
  msgstr ""
326
 
327
- #: cerber-settings.php:175
328
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
329
  msgstr ""
330
 
331
- #: admin/cerber-dashboard.php:3322
332
  msgid "Are you sure you want to delete selected files?"
333
  msgstr ""
334
 
@@ -336,88 +346,88 @@ msgstr ""
336
  msgid "Are you sure you want to delete selected websites?"
337
  msgstr ""
338
 
339
- #: admin/cerber-dashboard.php:5776 admin/cerber-tools.php:59
340
- #: admin/cerber-admin.php:738 admin/cerber-admin.php:905
341
  msgid "Are you sure?"
342
  msgstr ""
343
 
344
- #: nexus/cerber-nexus.php:150
345
  msgid "Are you sure? This permanently invalidates the token."
346
  msgstr ""
347
 
348
- #: cerber-common.php:1904
349
  msgid "Attempt to access"
350
  msgstr ""
351
 
352
- #: cerber-common.php:1704 cerber-common.php:1905
353
  msgid "Attempt to access prohibited URL"
354
  msgstr ""
355
 
356
- #: cerber-common.php:1709
357
  msgid "Attempt to log in denied"
358
  msgstr ""
359
 
360
- #: cerber-common.php:1705 cerber-common.php:1906
361
  msgid "Attempt to log in with non-existing username"
362
  msgstr ""
363
 
364
- #: cerber-common.php:1706 cerber-common.php:1907
365
  msgid "Attempt to log in with prohibited username"
366
  msgstr ""
367
 
368
- #: cerber-common.php:1710
369
  msgid "Attempt to register denied"
370
  msgstr ""
371
 
372
- #: cerber-common.php:1913
373
  msgid "Attempt to upload a file with malicious code"
374
  msgstr ""
375
 
376
- #: cerber-common.php:1712
377
  msgid "Attempt to upload malicious file denied"
378
  msgstr ""
379
 
380
- #: cerber-load.php:5076
381
  msgid "Attempts to log in with non-existing usernames"
382
  msgstr ""
383
 
384
- #: admin/cerber-dashboard.php:2865
385
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
386
  msgstr ""
387
 
388
- #: admin/cerber-admin-settings.php:695 admin/cerber-admin-settings.php:696
389
  msgid "Attention! You have changed the login URL! The new login URL is"
390
  msgstr ""
391
 
392
- #: admin/cerber-admin.php:1499
393
  msgid "Authorization Failed"
394
  msgstr ""
395
 
396
- #: admin/cerber-admin.php:1498
397
  msgid "Authorized"
398
  msgstr ""
399
 
400
- #: cerber-settings.php:626
401
  msgid "Authorized Access"
402
  msgstr ""
403
 
404
- #: cerber-settings.php:631
405
  msgid "Authorized users only"
406
  msgstr ""
407
 
408
- #: cerber-settings.php:1059
409
  msgid "Automated recurring scan schedule"
410
  msgstr ""
411
 
412
- #: cerber-settings.php:1118
413
  msgid "Automatic cleanup of malware and suspicious files"
414
  msgstr ""
415
 
416
- #: admin/cerber-admin.php:771
417
  msgid "Automatic deletion"
418
  msgstr ""
419
 
420
- #: cerber-settings.php:1182
421
  msgid "Automatic recovery of modified and infected files"
422
  msgstr ""
423
 
@@ -433,129 +443,137 @@ msgstr ""
433
  msgid "Automatically recovered"
434
  msgstr ""
435
 
436
- #: admin/cerber-admin.php:1214
437
  msgid "Average Size"
438
  msgstr ""
439
 
440
- #: cerber-load.php:8063
441
  msgid "Awesome!"
442
  msgstr ""
443
 
444
- #: admin/cerber-admin.php:1003
445
  msgid "Back to list"
446
  msgstr ""
447
 
448
- #: cerber-settings.php:134
449
  msgid "Be careful about enabling these options."
450
  msgstr ""
451
 
452
- #: cerber-settings.php:1334
453
  msgid ""
454
  "Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
455
  "key on the Google website"
456
  msgstr ""
457
 
458
- #: admin/cerber-dashboard.php:278 admin/cerber-dashboard.php:1606
459
- #: admin/cerber-dashboard.php:1690 admin/cerber-dashboard.php:2092
460
  #: admin/cerber-tools.php:70
461
  msgid "Black IP Access List"
462
  msgstr ""
463
 
464
- #: admin/cerber-users.php:221
465
  msgid "Block"
466
  msgstr ""
467
 
468
- #: cerber-settings.php:440
469
  msgid "Block access to the RSS, Atom and RDF feeds"
470
  msgstr ""
471
 
472
- #: cerber-settings.php:435
473
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
474
  msgstr ""
475
 
476
- #: cerber-settings.php:405
477
  msgid "Block access to user pages like /?author=n"
478
  msgstr ""
479
 
480
- #: cerber-settings.php:452
481
  msgid "Block access to users' data via REST API"
482
  msgstr ""
483
 
484
- #: admin/cerber-users.php:409
485
  msgid "Block access to WordPress Dashboard"
486
  msgstr ""
487
 
488
- #: cerber-settings.php:457
489
  msgid "Block access to WordPress REST API except any of the following"
490
  msgstr ""
491
 
492
- #: cerber-settings.php:184
493
  msgid "Block access to wp-login.php"
494
  msgstr ""
495
 
496
- #: cerber-settings.php:425
497
  msgid "Block execution of PHP scripts in the WordPress media folder"
498
  msgstr ""
499
 
500
- #: cerber-settings.php:166
501
  msgid "Block IP address for"
502
  msgstr ""
503
 
504
- #: cerber-settings.php:850
505
  msgid ""
506
  "Block IP addresses that send excessive requests for non-existing pages or "
507
  "scan website for security breaches"
508
  msgstr ""
509
 
510
- #: cerber-settings.php:257
511
  msgid "Block subnet"
512
  msgstr ""
513
 
514
- #: cerber-settings.php:420
515
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
516
  msgstr ""
517
 
518
- #: admin/cerber-users.php:39
519
  msgid "Block User"
520
  msgstr ""
521
 
522
- #: admin/cerber-users.php:947
523
  msgid "Block user"
524
  msgstr ""
525
 
526
- #: cerber-common.php:1766
527
  msgid "Blocked by administrator"
528
  msgstr ""
529
 
530
- #: cerber-common.php:1756
531
  msgid "Blocked by country rule"
532
  msgstr ""
533
 
534
- #: admin/cerber-users.php:181
535
  msgid "Blocked Users"
536
  msgstr ""
537
 
538
- #: cerber-common.php:1909
539
  msgid "Bot activity is detected"
540
  msgstr ""
541
 
542
- #: cerber-common.php:1750
543
  msgid "Bot detected"
544
  msgstr ""
545
 
546
- #: admin/cerber-admin.php:1063
 
 
 
 
547
  msgid "Brief summary"
548
  msgstr ""
549
 
550
- #: cerber-settings.php:157
 
 
 
 
551
  msgid "Brute-force attack mitigation and user authentication settings"
552
  msgstr ""
553
 
554
- #: cerber-settings.php:695
555
  msgid "by date of registration"
556
  msgstr ""
557
 
558
- #: cerber-load.php:8043
559
  msgid ""
560
  "By sharing your unique opinion on WP Cerber, you help the engineers behind "
561
  "the plugin make greater progress and help other professionals find the right "
@@ -563,23 +581,23 @@ msgid ""
563
  "free to use your native language. Thanks!"
564
  msgstr ""
565
 
566
- #: cerber-load.php:4884
567
- msgid "By user"
568
  msgstr ""
569
 
570
- #: cerber-common.php:2196
571
  msgid "Bytes"
572
  msgstr ""
573
 
574
- #: cerber-load.php:5939
575
  msgid "Can't activate WP Cerber due to a database error."
576
  msgstr ""
577
 
578
- #: cerber-2fa.php:661 admin/cerber-dashboard.php:5831
579
  msgid "Cancel"
580
  msgstr ""
581
 
582
- #: cerber-settings.php:1227
583
  msgid "Cerber anti-spam engine"
584
  msgstr ""
585
 
@@ -595,15 +613,15 @@ msgstr ""
595
  msgid "Cerber Data Shield Policies"
596
  msgstr ""
597
 
598
- #: cerber-settings.php:337
599
  msgid "Cerber Lab connection"
600
  msgstr ""
601
 
602
- #: cerber-settings.php:343
603
  msgid "Cerber Lab protocol"
604
  msgstr ""
605
 
606
- #: admin/cerber-dashboard.php:2031
607
  msgid "Cerber Quick View"
608
  msgstr ""
609
 
@@ -627,11 +645,11 @@ msgstr ""
627
  msgid "Cerber User Security"
628
  msgstr ""
629
 
630
- #: cerber-settings.php:1042
631
  msgid "Change file and directory permissions if it is required to delete files"
632
  msgstr ""
633
 
634
- #: cerber-settings.php:1041
635
  msgid "Change filesystem permissions"
636
  msgstr ""
637
 
@@ -639,20 +657,24 @@ msgstr ""
639
  msgid "Changed files"
640
  msgstr ""
641
 
642
- #: admin/cerber-dashboard.php:5476
643
  msgid "Changelog"
644
  msgstr ""
645
 
646
- #: admin/cerber-dashboard.php:325 admin/cerber-dashboard.php:1676
647
- #: admin/cerber-dashboard.php:1733 admin/cerber-dashboard.php:1864
 
 
 
 
648
  msgid "Check for activities"
649
  msgstr ""
650
 
651
- #: cerber-common.php:281
652
  msgid "Check for requests"
653
  msgstr ""
654
 
655
- #: admin/cerber-dashboard.php:1398
656
  msgid "Check for requests from the IP address"
657
  msgstr ""
658
 
@@ -664,36 +686,41 @@ msgstr ""
664
  msgid "Checksum mismatch"
665
  msgstr ""
666
 
667
- #: cerber-common.php:1675
668
  msgid "Citadel activated!"
669
  msgstr ""
670
 
671
- #: cerber-settings.php:289 admin/cerber-dashboard.php:2093
672
  msgid "Citadel mode"
673
  msgstr ""
674
 
675
- #: cerber-load.php:4823
676
- msgid "Citadel mode is activated"
677
  msgstr ""
678
 
679
- #: cerber-load.php:4825
680
  #, php-format
681
- msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
 
682
  msgstr ""
683
 
684
- #: cerber-common.php:1751
685
  msgid "Citadel mode is active"
686
  msgstr ""
687
 
688
- #: admin/cerber-dashboard.php:5421
 
 
 
 
689
  msgid "Cleaning up"
690
  msgstr ""
691
 
692
- #: admin/cerber-admin.php:730
693
  msgid "Click here to see the full list of files"
694
  msgstr ""
695
 
696
- #: admin/cerber-dashboard.php:3875
697
  msgid "Click on a country name to add it to the list of selected countries"
698
  msgstr ""
699
 
@@ -705,27 +732,27 @@ msgstr ""
705
  msgid "Click to edit"
706
  msgstr ""
707
 
708
- #: admin/cerber-admin-settings.php:590
709
  msgid "Click to send now"
710
  msgstr ""
711
 
712
- #: cerber-settings.php:316 admin/cerber-admin-settings.php:365
713
  msgid "Click to send test"
714
  msgstr ""
715
 
716
- #: cerber-common.php:1679
717
  msgid "Comment denied"
718
  msgstr ""
719
 
720
- #: cerber-settings.php:1243 cerber-settings.php:1387
721
  msgid "Comment form"
722
  msgstr ""
723
 
724
- #: cerber-settings.php:1315
725
  msgid "Comment processing"
726
  msgstr ""
727
 
728
- #: admin/cerber-dashboard.php:1959
729
  msgid "Comments"
730
  msgstr ""
731
 
@@ -733,11 +760,15 @@ msgstr ""
733
  msgid "Company"
734
  msgstr ""
735
 
 
 
 
 
736
  #: nexus/cerber-nexus.php:71
737
  msgid "Configure this website as a master to manage other website"
738
  msgstr ""
739
 
740
- #: cerber-settings.php:1077
741
  msgid ""
742
  "Configure what issues to include in the email report and the condition for "
743
  "sending reports"
@@ -747,52 +778,52 @@ msgstr ""
747
  msgid "Content has been modified"
748
  msgstr ""
749
 
750
- #: admin/cerber-admin.php:189
751
  msgid "Continue Scanning"
752
  msgstr ""
753
 
754
- #: cerber-settings.php:741
755
  msgid "Cookies"
756
  msgstr ""
757
 
758
- #: admin/cerber-dashboard.php:5403
759
  msgid "Countries"
760
  msgstr ""
761
 
762
- #: admin/cerber-dashboard.php:213 admin/cerber-dashboard.php:1329
763
  msgid "Country"
764
  msgstr ""
765
 
766
- #: admin/cerber-dashboard.php:2985
767
  msgid "Create Alert"
768
  msgstr ""
769
 
770
- #: admin/cerber-users.php:925
771
  msgid "Created"
772
  msgstr ""
773
 
774
- #: admin/cerber-admin.php:115
775
  msgid "Critical issues"
776
  msgstr ""
777
 
778
- #: admin/cerber-admin.php:173
779
  msgid ""
780
  "Currently a scheduled scan in progress. Please wait until it is finished."
781
  msgstr ""
782
 
783
- #: cerber-settings.php:1248
784
  msgid "Custom comment URL"
785
  msgstr ""
786
 
787
- #: cerber-settings.php:218
788
  msgid "Custom login page"
789
  msgstr ""
790
 
791
- #: cerber-settings.php:223
792
  msgid "Custom login URL"
793
  msgstr ""
794
 
795
- #: cerber-settings.php:226
796
  msgid ""
797
  "Custom login URL may contain Latin alphanumeric characters, dashes and "
798
  "underscores only"
@@ -802,12 +833,12 @@ msgstr ""
802
  msgid "Custom signature found"
803
  msgstr ""
804
 
805
- #: cerber-settings.php:1022
806
  msgid "Custom signatures"
807
  msgstr ""
808
 
809
- #: admin/cerber-dashboard.php:60 admin/cerber-dashboard.php:2133
810
- #: admin/cerber-dashboard.php:3176 admin/cerber-dashboard.php:5284
811
  msgid "Dashboard"
812
  msgstr ""
813
 
@@ -815,41 +846,45 @@ msgstr ""
815
  msgid "Data Shield"
816
  msgstr ""
817
 
818
- #: admin/cerber-dashboard.php:5371
819
  msgid "Data Shield Policies"
820
  msgstr ""
821
 
822
- #: admin/cerber-dashboard.php:948 admin/cerber-dashboard.php:1330
823
- #: admin/cerber-dashboard.php:4052 admin/cerber-dashboard.php:4535
824
  msgid "Date"
825
  msgstr ""
826
 
827
- #: cerber-settings.php:366
828
  msgid "Date format"
829
  msgstr ""
830
 
831
- #: cerber-settings.php:373
832
  msgid "Date format for CSV export"
833
  msgstr ""
834
 
835
- #: cerber-settings.php:326 cerber-settings.php:332 cerber-settings.php:968
836
- #: cerber-settings.php:974 cerber-settings.php:1053 cerber-settings.php:1327
 
 
 
 
837
  msgid "days"
838
  msgstr ""
839
 
840
- #: admin/cerber-dashboard.php:2866
841
  msgid "Deactivate"
842
  msgstr ""
843
 
844
- #: admin/cerber-dashboard.php:2070
845
  msgid "deactivate"
846
  msgstr ""
847
 
848
- #: cerber-settings.php:183
849
  msgid "Default processing"
850
  msgstr ""
851
 
852
- #: admin/cerber-dashboard.php:741
853
  msgid "Default settings have been loaded"
854
  msgstr ""
855
 
@@ -862,48 +897,48 @@ msgid ""
862
  "powerful email, mobile and desktop notifications."
863
  msgstr ""
864
 
865
- #: cerber-settings.php:232
866
  msgid "Defer rendering the custom login page"
867
  msgstr ""
868
 
869
- #: cerber-settings.php:231
870
  msgid "Deferred rendering"
871
  msgstr ""
872
 
873
- #: admin/cerber-dashboard.php:1385 admin/cerber-tools.php:355
874
- #: admin/cerber-admin.php:227
875
  msgid "Delete"
876
  msgstr ""
877
 
878
- #: admin/cerber-dashboard.php:2989
879
  msgid "Delete Alert"
880
  msgstr ""
881
 
882
- #: cerber-settings.php:1127
883
  msgid "Delete files in the WordPress uploads directory"
884
  msgstr ""
885
 
886
- #: cerber-settings.php:1136
887
  msgid "Delete files with unwanted extensions"
888
  msgstr ""
889
 
890
- #: admin/cerber-admin.php:748
891
  msgid "Delete permanently"
892
  msgstr ""
893
 
894
- #: cerber-settings.php:1169
895
  msgid "Delete publicly accessible files with these extensions"
896
  msgstr ""
897
 
898
- #: cerber-settings.php:1051
899
  msgid "Delete quarantined files after"
900
  msgstr ""
901
 
902
- #: cerber-settings.php:1123
903
  msgid "Delete unattended files"
904
  msgstr ""
905
 
906
- #: cerber-settings.php:717
907
  msgid "Delete user sessions data when user data is erased"
908
  msgstr ""
909
 
@@ -915,27 +950,27 @@ msgstr ""
915
  msgid "Deleted"
916
  msgstr ""
917
 
918
- #: cerber-common.php:1749 cerber-common.php:1759
919
  msgid "Denied"
920
  msgstr ""
921
 
922
- #: cerber-settings.php:594
923
  msgid "Deny all email addresses that match the following"
924
  msgstr ""
925
 
926
- #: cerber-settings.php:185
927
  msgid "Deny authentication through wp-login.php"
928
  msgstr ""
929
 
930
- #: admin/cerber-users.php:455
931
  msgid "Deny further login attempts"
932
  msgstr ""
933
 
934
- #: cerber-settings.php:1321
935
  msgid "Deny it completely"
936
  msgstr ""
937
 
938
- #: cerber-common.php:3284
939
  msgid "Destination folder access denied"
940
  msgstr ""
941
 
@@ -947,99 +982,103 @@ msgstr ""
947
  msgid "Determined by user role policies"
948
  msgstr ""
949
 
950
- #: admin/cerber-dashboard.php:5474
951
  msgid "Diagnostic"
952
  msgstr ""
953
 
954
- #: cerber-settings.php:1047 cerber-settings.php:1445 cerber-settings.php:1473
955
- #: admin/cerber-dashboard.php:5475
956
  msgid "Diagnostic Log"
957
  msgstr ""
958
 
959
- #: cerber-2fa.php:662
960
  msgid "Did not receive the email?"
961
  msgstr ""
962
 
963
- #: cerber-settings.php:1029
964
  msgid "Directories to exclude"
965
  msgstr ""
966
 
967
- #: cerber-settings.php:243
968
  msgid ""
969
  "Disable automatic redirection to the login page when /wp-admin/ is requested "
970
  "by an unauthorized request"
971
  msgstr ""
972
 
973
- #: cerber-settings.php:1301
974
  msgid ""
975
  "Disable bot detection engine for IP addresses in the White IP Access List"
976
  msgstr ""
977
 
978
- #: cerber-settings.php:1296
979
  msgid "Disable bot detection engine for logged-in users"
980
  msgstr ""
981
 
982
- #: cerber-settings.php:242
983
  msgid "Disable dashboard redirection"
984
  msgstr ""
985
 
986
- #: cerber-settings.php:439
987
  msgid "Disable feeds"
988
  msgstr ""
989
 
 
 
 
 
990
  #: nexus/cerber-slave-list.php:420
991
  msgid "Disable master mode"
992
  msgstr ""
993
 
994
- #: cerber-settings.php:429
995
  msgid "Disable PHP error displaying"
996
  msgstr ""
997
 
998
- #: cerber-settings.php:424
999
  msgid "Disable PHP in uploads"
1000
  msgstr ""
1001
 
1002
- #: cerber-settings.php:1399
1003
  msgid "Disable reCAPTCHA for IP addresses in the White IP Access List"
1004
  msgstr ""
1005
 
1006
- #: cerber-settings.php:1393
1007
  msgid "Disable reCAPTCHA for logged-in users"
1008
  msgstr ""
1009
 
1010
- #: cerber-settings.php:456
1011
  msgid "Disable REST API"
1012
  msgstr ""
1013
 
1014
- #: nexus/cerber-nexus.php:151
1015
  msgid "Disable slave mode"
1016
  msgstr ""
1017
 
1018
- #: cerber-settings.php:193
1019
  msgid "Disable the default login error message"
1020
  msgstr ""
1021
 
1022
- #: cerber-settings.php:204
1023
  msgid "Disable the default reset password error message"
1024
  msgstr ""
1025
 
1026
- #: cerber-settings.php:434
1027
  msgid "Disable XML-RPC"
1028
  msgstr ""
1029
 
1030
- #: cerber-scanner.php:1717 cerber-settings.php:683 cerber-settings.php:825
1031
- #: cerber-settings.php:856 cerber-settings.php:990 cerber-settings.php:999
1032
- #: cerber-settings.php:1466 admin/cerber-dashboard.php:2120
1033
- #: admin/cerber-dashboard.php:2122 admin/cerber-users.php:20
1034
- #: admin/cerber-users.php:474 admin/cerber-users.php:488
1035
  msgid "Disabled"
1036
  msgstr ""
1037
 
1038
- #: admin/cerber-dashboard.php:2077 admin/cerber-dashboard.php:2095
1039
  msgid "disabled"
1040
  msgstr ""
1041
 
1042
- #: cerber-settings.php:279
1043
  msgid "Display 404 page"
1044
  msgstr ""
1045
 
@@ -1047,68 +1086,68 @@ msgstr ""
1047
  msgid "Display as"
1048
  msgstr ""
1049
 
1050
- #: cerber-settings.php:283
1051
  msgid "Display simple 404 page"
1052
  msgstr ""
1053
 
1054
- #: admin/cerber-users.php:461
1055
  msgid ""
1056
  "Display this message if an attempt to log in is denied because the limit on "
1057
  "concurrent user sessions has been reached"
1058
  msgstr ""
1059
 
1060
- #: cerber-settings.php:389
1061
  msgid ""
1062
  "Do not add my IP address to the White IP Access List upon plugin activation"
1063
  msgstr ""
1064
 
1065
- #: cerber-settings.php:514 cerber-settings.php:542 cerber-settings.php:571
1066
  msgid ""
1067
  "Do not apply these policies to the IP addresses in the White IP Access List"
1068
  msgstr ""
1069
 
1070
- #: cerber-settings.php:638
1071
  msgid ""
1072
  "Do not apply these policy to the IP addresses in the White IP Access List"
1073
  msgstr ""
1074
 
1075
- #: cerber-settings.php:894
1076
  msgid "Do not log known crawlers"
1077
  msgstr ""
1078
 
1079
- #: cerber-settings.php:899
1080
  msgid "Do not log these locations"
1081
  msgstr ""
1082
 
1083
- #: cerber-settings.php:907
1084
  msgid "Do not log these User-Agents"
1085
  msgstr ""
1086
 
1087
- #: cerber-settings.php:194
1088
  msgid ""
1089
  "Do not reveal non-existing usernames and emails in the failed login attempt "
1090
  "message"
1091
  msgstr ""
1092
 
1093
- #: cerber-settings.php:205
1094
  msgid ""
1095
  "Do not reveal non-existing usernames and emails in the reset password error "
1096
  "message"
1097
  msgstr ""
1098
 
1099
- #: admin/cerber-dashboard.php:3011
1100
  msgid "Do not send alerts after this date"
1101
  msgstr ""
1102
 
1103
- #: cerber-settings.php:430
1104
  msgid "Do not show PHP errors on my website"
1105
  msgstr ""
1106
 
1107
- #: admin/cerber-dashboard.php:3326
1108
  msgid "Do you want to add selected files to the ignore list?"
1109
  msgstr ""
1110
 
1111
- #: admin/cerber-dashboard.php:3051 admin/cerber-dashboard.php:4581
1112
  msgid "Documentation"
1113
  msgstr ""
1114
 
@@ -1116,11 +1155,11 @@ msgstr ""
1116
  msgid "Download file"
1117
  msgstr ""
1118
 
1119
- #: cerber-settings.php:304 admin/cerber-admin.php:88
1120
  msgid "Duration"
1121
  msgstr ""
1122
 
1123
- #: admin/cerber-users.php:58
1124
  #, php-format
1125
  msgctxt "e.g. blocked by John at 11:00"
1126
  msgid "blocked by %s at %s"
@@ -1130,60 +1169,56 @@ msgstr ""
1130
  msgid "Edit"
1131
  msgstr ""
1132
 
1133
- #: cerber-settings.php:758 cerber-settings.php:805 cerber-settings.php:1107
1134
  msgid "Email Address"
1135
  msgstr ""
1136
 
1137
- #: cerber-load.php:1958
1138
  msgid "Email address is not permitted."
1139
  msgstr ""
1140
 
1141
- #: cerber-common.php:1772
1142
  msgid "Email address is prohibited"
1143
  msgstr ""
1144
 
1145
- #: admin/cerber-dashboard.php:3038
1146
  msgid "Email alerts will be sent to these emails:"
1147
  msgstr ""
1148
 
1149
- #: admin/cerber-dashboard.php:3038
1150
  msgid "Email alerts will be sent to this email:"
1151
  msgstr ""
1152
 
1153
- #: admin/cerber-dashboard.php:671
1154
- msgid "Email has been sent to"
1155
- msgstr ""
1156
-
1157
- #: cerber-settings.php:749
1158
  msgid "Email notifications"
1159
  msgstr ""
1160
 
1161
- #: admin/cerber-admin-settings.php:369
1162
  #, php-format
1163
  msgid "Enable after %s failed login attempts in the last %s minutes"
1164
  msgstr ""
1165
 
1166
- #: cerber-settings.php:293
1167
  msgid "Enable authentication log monitoring"
1168
  msgstr ""
1169
 
1170
- #: cerber-settings.php:709
1171
  msgid "Enable data erase"
1172
  msgstr ""
1173
 
1174
- #: cerber-settings.php:723
1175
  msgid "Enable data export"
1176
  msgstr ""
1177
 
1178
- #: cerber-settings.php:1046 cerber-settings.php:1444 cerber-settings.php:1472
1179
  msgid "Enable diagnostic logging"
1180
  msgstr ""
1181
 
1182
- #: cerber-settings.php:853
1183
  msgid "Enable error shielding"
1184
  msgstr ""
1185
 
1186
- #: cerber-settings.php:1353
1187
  msgid "Enable invisible reCAPTCHA"
1188
  msgstr ""
1189
 
@@ -1191,41 +1226,41 @@ msgstr ""
1191
  msgid "Enable master mode"
1192
  msgstr ""
1193
 
1194
- #: cerber-settings.php:870
1195
  msgid ""
1196
  "Enable optional traffic logging if you need to monitor suspicious and "
1197
  "malicious activity or solve security issues"
1198
  msgstr ""
1199
 
1200
- #: cerber-settings.php:1383
1201
  msgid "Enable reCAPTCHA for WooCommerce login form"
1202
  msgstr ""
1203
 
1204
- #: cerber-settings.php:1373
1205
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
1206
  msgstr ""
1207
 
1208
- #: cerber-settings.php:1363
1209
  msgid "Enable reCAPTCHA for WooCommerce registration form"
1210
  msgstr ""
1211
 
1212
- #: cerber-settings.php:1388
1213
  msgid "Enable reCAPTCHA for WordPress comment form"
1214
  msgstr ""
1215
 
1216
- #: cerber-settings.php:1378
1217
  msgid "Enable reCAPTCHA for WordPress login form"
1218
  msgstr ""
1219
 
1220
- #: cerber-settings.php:1368
1221
  msgid "Enable reCAPTCHA for WordPress lost password form"
1222
  msgstr ""
1223
 
1224
- #: cerber-settings.php:1358
1225
  msgid "Enable reCAPTCHA for WordPress registration form"
1226
  msgstr ""
1227
 
1228
- #: cerber-settings.php:796
1229
  msgid "Enable reporting"
1230
  msgstr ""
1231
 
@@ -1233,55 +1268,55 @@ msgstr ""
1233
  msgid "Enable slave mode"
1234
  msgstr ""
1235
 
1236
- #: cerber-settings.php:822
1237
  msgid "Enable traffic inspection"
1238
  msgstr ""
1239
 
1240
- #: admin/cerber-dashboard.php:2095
1241
  msgid "enabled"
1242
  msgstr ""
1243
 
1244
- #: cerber-settings.php:681 admin/cerber-users.php:472
1245
  msgid "Enabled, access to API using standard user passwords is allowed"
1246
  msgstr ""
1247
 
1248
- #: cerber-settings.php:682 admin/cerber-users.php:473
1249
  msgid "Enabled, no access to API using standard user passwords"
1250
  msgstr ""
1251
 
1252
- #: admin/cerber-users.php:494
1253
  msgid ""
1254
  "Enforce two-factor authentication if any of the following conditions is true"
1255
  msgstr ""
1256
 
1257
- #: admin/cerber-users.php:530
1258
  msgid "Enforce two-factor authentication with fixed intervals"
1259
  msgstr ""
1260
 
1261
- #: cerber-settings.php:1306
1262
  msgid ""
1263
  "Enter a part of query string or query path to exclude a request from "
1264
  "inspection by the engine. One item per line."
1265
  msgstr ""
1266
 
1267
- #: cerber-settings.php:841
1268
  msgid ""
1269
  "Enter a request URI to exclude the request from inspection. One item per "
1270
  "line."
1271
  msgstr ""
1272
 
1273
- #: cerber-2fa.php:658
1274
  msgid "Enter the code from the email in the field below."
1275
  msgstr ""
1276
 
1277
- #: admin/cerber-dashboard.php:2091 admin/cerber-dashboard.php:2092
1278
- #: admin/cerber-dashboard.php:3154
1279
  msgid "entry"
1280
  msgid_plural "entries"
1281
  msgstr[0] ""
1282
  msgstr[1] ""
1283
 
1284
- #: cerber-settings.php:848
1285
  msgid "Erroneous Request Shielding"
1286
  msgstr ""
1287
 
@@ -1289,13 +1324,13 @@ msgstr ""
1289
  msgid "Error while parsing file"
1290
  msgstr ""
1291
 
1292
- #: cerber-load.php:743 cerber-load.php:756 cerber-load.php:764
1293
- #: cerber-load.php:1112 cerber-load.php:1973 cerber-load.php:2296
1294
- #: cerber-load.php:3407 cerber-common.php:453 cerber-common.php:553
1295
- #: cerber-common.php:558 cerber-common.php:564 cerber-common.php:568
1296
  #: nexus/cerber-nexus-slave.php:203 nexus/cerber-nexus-slave.php:214
1297
- #: admin/cerber-admin-settings.php:667 admin/cerber-admin-settings.php:687
1298
- #: admin/cerber-admin-settings.php:794 admin/cerber-admin.php:875
1299
  msgid "ERROR:"
1300
  msgstr ""
1301
 
@@ -1304,11 +1339,11 @@ msgstr ""
1304
  msgid "Error: file %s cannot be used."
1305
  msgstr ""
1306
 
1307
- #: admin/cerber-dashboard.php:4602
1308
  msgid "Errors"
1309
  msgstr ""
1310
 
1311
- #: admin/cerber-dashboard.php:949 admin/cerber-dashboard.php:1331
1312
  msgid "Event"
1313
  msgstr ""
1314
 
@@ -1324,7 +1359,7 @@ msgstr ""
1324
  msgid "Every hour"
1325
  msgstr ""
1326
 
1327
- #: admin/cerber-dashboard.php:2117
1328
  msgctxt "Example: Last malware scan: 23 Jan 2018"
1329
  msgid "Last malware scan"
1330
  msgstr ""
@@ -1333,27 +1368,27 @@ msgstr ""
1333
  msgid "Executable code found"
1334
  msgstr ""
1335
 
1336
- #: cerber-common.php:1783
1337
  msgid "Executable file extension detected"
1338
  msgstr ""
1339
 
1340
- #: cerber-settings.php:991 cerber-settings.php:1000
1341
  msgid "Executable files"
1342
  msgstr ""
1343
 
1344
- #: admin/cerber-admin.php:538
1345
  msgid "Executable files are not supported. Please upload a ZIP archive."
1346
  msgstr ""
1347
 
1348
- #: admin/cerber-dashboard.php:214 admin/cerber-users.php:926
1349
  msgid "Expires"
1350
  msgstr ""
1351
 
1352
- #: cerber-2fa.php:577
1353
  msgid "expires"
1354
  msgstr ""
1355
 
1356
- #: admin/cerber-dashboard.php:1362 admin/cerber-dashboard.php:4628
1357
  msgid "Export"
1358
  msgstr ""
1359
 
@@ -1361,23 +1396,33 @@ msgstr ""
1361
  msgid "Export settings to the file"
1362
  msgstr ""
1363
 
1364
- #: admin/cerber-admin.php:1209
1365
  msgid "Extension"
1366
  msgstr ""
1367
 
1368
- #: admin/cerber-dashboard.php:2083
1369
  msgid "failed attempts"
1370
  msgstr ""
1371
 
1372
- #: admin/cerber-dashboard.php:1961
1373
  msgid "Failed login attempts"
1374
  msgstr ""
1375
 
1376
- #: admin/cerber-admin.php:773 admin/cerber-admin.php:928
 
 
 
 
 
 
 
 
 
 
1377
  msgid "File"
1378
  msgstr ""
1379
 
1380
- #: admin/cerber-admin.php:360
1381
  msgid ""
1382
  "File access error. Possibly scan results are outdated. Please run Quick or "
1383
  "Full Scan."
@@ -1387,7 +1432,7 @@ msgstr ""
1387
  msgid "File deleted"
1388
  msgstr ""
1389
 
1390
- #: admin/cerber-admin.php:1206
1391
  msgid "File extensions statistics"
1392
  msgstr ""
1393
 
@@ -1395,11 +1440,11 @@ msgstr ""
1395
  msgid "File is missing"
1396
  msgstr ""
1397
 
1398
- #: admin/cerber-admin.php:1391
1399
  msgid "File Name"
1400
  msgstr ""
1401
 
1402
- #: cerber-common.php:3287
1403
  msgid "File not found"
1404
  msgstr ""
1405
 
@@ -1407,27 +1452,27 @@ msgstr ""
1407
  msgid "File recovered"
1408
  msgstr ""
1409
 
1410
- #: cerber-common.php:1713
1411
  msgid "File upload denied"
1412
  msgstr ""
1413
 
1414
- #: cerber-common.php:1784
1415
  msgid "Filename is prohibited"
1416
  msgstr ""
1417
 
1418
- #: admin/cerber-admin.php:1116 admin/cerber-admin.php:1210
1419
  msgid "Files"
1420
  msgstr ""
1421
 
1422
- #: cerber-settings.php:1215
1423
  msgid "Files in temporary directories"
1424
  msgstr ""
1425
 
1426
- #: cerber-settings.php:1219
1427
  msgid "Files in the sessions directory"
1428
  msgstr ""
1429
 
1430
- #: cerber-settings.php:1199
1431
  msgid "Files in these directories"
1432
  msgstr ""
1433
 
@@ -1435,23 +1480,23 @@ msgstr ""
1435
  msgid "Files scanned"
1436
  msgstr ""
1437
 
1438
- #: admin/cerber-admin.php:108
1439
  msgid "Files to scan"
1440
  msgstr ""
1441
 
1442
- #: cerber-settings.php:1206
1443
  msgid "Files with these extensions"
1444
  msgstr ""
1445
 
1446
- #: admin/cerber-admin.php:1002
1447
  msgid "Files without extension"
1448
  msgstr ""
1449
 
1450
- #: admin/cerber-dashboard.php:1424
1451
  msgid "Filter"
1452
  msgstr ""
1453
 
1454
- #: admin/cerber-dashboard.php:1412 admin/cerber-users.php:971
1455
  msgid "Filter by registered user"
1456
  msgstr ""
1457
 
@@ -1459,47 +1504,47 @@ msgstr ""
1459
  msgid "Finalizing the scan"
1460
  msgstr ""
1461
 
1462
- #: admin/cerber-admin.php:84
1463
  msgid "Finished"
1464
  msgstr ""
1465
 
1466
- #: admin/cerber-users.php:543
1467
  msgid "Fixed number of logins"
1468
  msgstr ""
1469
 
1470
- #: admin/cerber-admin.php:1114
1471
  msgid "Folder"
1472
  msgstr ""
1473
 
1474
- #: cerber-common.php:1782
1475
  msgid "Forbidden URL"
1476
  msgstr ""
1477
 
1478
- #: cerber-settings.php:740
1479
  msgid "Form fields data"
1480
  msgstr ""
1481
 
1482
- #: cerber-common.php:1678
1483
  msgid "Form submission denied"
1484
  msgstr ""
1485
 
1486
- #: admin/cerber-dashboard.php:4605
1487
  msgid "Form submissions"
1488
  msgstr ""
1489
 
1490
- #: cerber-load.php:4888
1491
- msgid "From country"
1492
  msgstr ""
1493
 
1494
- #: cerber-load.php:4885
1495
- msgid "From IP address"
1496
  msgstr ""
1497
 
1498
- #: cerber-settings.php:1464
1499
  msgid "Full access mode"
1500
  msgstr ""
1501
 
1502
- #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2123
1503
  msgid "Full Scan"
1504
  msgstr ""
1505
 
@@ -1507,27 +1552,27 @@ msgstr ""
1507
  msgid "Full Scan Report"
1508
  msgstr ""
1509
 
1510
- #: admin/cerber-dashboard.php:1387
1511
  msgid "Get me notified when such an event occurs"
1512
  msgstr ""
1513
 
1514
- #: cerber-settings.php:778
1515
  msgid "Get notified instantly with mobile and desktop notifications"
1516
  msgstr ""
1517
 
1518
- #: cerber-load.php:4895 cerber-load.php:5985
1519
  msgid "Getting Started Guide"
1520
  msgstr ""
1521
 
1522
- #: admin/cerber-dashboard.php:5384
1523
  msgid "Global"
1524
  msgstr ""
1525
 
1526
- #: cerber-settings.php:1195
1527
  msgid "Global Exclusions"
1528
  msgstr ""
1529
 
1530
- #: cerber-settings.php:627
1531
  msgid "Grant access to the website to logged-in users only"
1532
  msgstr ""
1533
 
@@ -1535,23 +1580,23 @@ msgstr ""
1535
  msgid "Group"
1536
  msgstr ""
1537
 
1538
- #: admin/cerber-dashboard.php:5290
1539
  msgid "Hardening"
1540
  msgstr ""
1541
 
1542
- #: cerber-settings.php:400
1543
  msgid "Hardening WordPress"
1544
  msgstr ""
1545
 
1546
- #: admin/cerber-dashboard.php:5573
1547
  msgid "Help"
1548
  msgstr ""
1549
 
1550
- #: cerber-2fa.php:523
1551
  msgid "Here are the details of the sign-in attempt"
1552
  msgstr ""
1553
 
1554
- #: cerber-load.php:4869
1555
  msgid "Hi!"
1556
  msgstr ""
1557
 
@@ -1559,28 +1604,28 @@ msgstr ""
1559
  msgid "Hide server IP address"
1560
  msgstr ""
1561
 
1562
- #: admin/cerber-users.php:414
1563
  msgid "Hide Toolbar when viewing site"
1564
  msgstr ""
1565
 
1566
- #: cerber-settings.php:1086 cerber-settings.php:1132
1567
  msgid "High severity"
1568
  msgstr ""
1569
 
1570
- #: admin/cerber-dashboard.php:4538 admin/cerber-users.php:928
1571
  msgid "Host Info"
1572
  msgstr ""
1573
 
1574
- #: admin/cerber-dashboard.php:212 admin/cerber-dashboard.php:1328
1575
  msgid "Hostname"
1576
  msgstr ""
1577
 
1578
- #: cerber-settings.php:1316
1579
  msgid ""
1580
  "How the plugin processes comments submitted through the standard comment form"
1581
  msgstr ""
1582
 
1583
- #: cerber-settings.php:142
1584
  msgid "How WP Cerber loads its core and security mechanisms"
1585
  msgstr ""
1586
 
@@ -1589,99 +1634,103 @@ msgstr ""
1589
  msgid "https://wpcerber.com"
1590
  msgstr ""
1591
 
1592
- #: cerber-load.php:775
1593
  msgid "Human verification failed."
1594
  msgstr ""
1595
 
1596
- #: cerber-load.php:778
1597
  msgid ""
1598
  "Human verification failed. Please click the square box in the reCAPTCHA "
1599
  "block below."
1600
  msgstr ""
1601
 
1602
- #: cerber-settings.php:1319
1603
  msgid "If a spam comment detected"
1604
  msgstr ""
1605
 
1606
- #: cerber-settings.php:1094
1607
  msgid "If any changes in scan results occurred"
1608
  msgstr ""
1609
 
1610
- #: cerber-settings.php:367
1611
  #, php-format
1612
  msgid "if empty, the default format %s will be used"
1613
  msgstr ""
1614
 
1615
- #: cerber-settings.php:806 cerber-settings.php:1108
1616
  msgid ""
1617
  "if empty, the email addresses from the notification settings will be used"
1618
  msgstr ""
1619
 
1620
- #: cerber-settings.php:763
 
 
 
 
1621
  #, php-format
1622
  msgid "if empty, the website administrator email %s will be used"
1623
  msgstr ""
1624
 
1625
- #: cerber-settings.php:1095
1626
  msgid "If new issues found"
1627
  msgstr ""
1628
 
1629
- #: admin/cerber-users.php:524
1630
  msgid "If the number of concurrent user sessions is greater"
1631
  msgstr ""
1632
 
1633
- #: cerber-load.php:1862
1634
  msgid ""
1635
  "If we have found your account, we have sent the confirmation link to the "
1636
  "email address on the account."
1637
  msgstr ""
1638
 
1639
- #: cerber-load.php:4690
1640
  msgid ""
1641
  "If you believe you should be able to perform this request, please let us "
1642
  "know."
1643
  msgstr ""
1644
 
1645
- #: cerber-settings.php:134
1646
  msgid "If you forget your Custom login URL, you will be unable to log in."
1647
  msgstr ""
1648
 
1649
- #: admin/cerber-admin-settings.php:697 admin/cerber-admin-settings.php:698
1650
  msgid ""
1651
  "If you use a caching plugin, you have to add your new login URL to the list "
1652
  "of pages not to cache."
1653
  msgstr ""
1654
 
1655
- #: admin/cerber-admin.php:230
1656
  msgid "Ignore"
1657
  msgstr ""
1658
 
1659
- #: cerber-settings.php:1156
1660
  msgid "Ignore files with these extensions"
1661
  msgstr ""
1662
 
1663
- #: admin/cerber-dashboard.php:3016
1664
  msgid "Ignore global rate limits"
1665
  msgstr ""
1666
 
1667
- #: admin/cerber-dashboard.php:5422
1668
  msgid "Ignore List"
1669
  msgstr ""
1670
 
1671
- #: cerber-settings.php:862
1672
  msgid "Ignore logged-in users"
1673
  msgstr ""
1674
 
1675
- #: cerber-settings.php:253
1676
  msgid "Immediately block IP after any request to wp-login.php"
1677
  msgstr ""
1678
 
1679
- #: cerber-settings.php:248
1680
  msgid ""
1681
  "Immediately block IP when attempting to log in with a non-existing username"
1682
  msgstr ""
1683
 
1684
- #: cerber-load.php:5994
1685
  msgid "Import settings"
1686
  msgstr ""
1687
 
@@ -1689,55 +1738,55 @@ msgstr ""
1689
  msgid "Import settings from the file"
1690
  msgstr ""
1691
 
1692
- #: admin/cerber-admin-settings.php:778
1693
  msgid "Important note if you have a caching plugin in place"
1694
  msgstr ""
1695
 
1696
- #: admin/cerber-dashboard.php:2083 admin/cerber-dashboard.php:2084
1697
  msgid "in 24 hours"
1698
  msgstr ""
1699
 
1700
- #: cerber-settings.php:290
1701
  msgid ""
1702
  "In the Citadel mode nobody is able to log in except IPs from the White IP "
1703
  "Access List. Active user sessions will not be affected."
1704
  msgstr ""
1705
 
1706
- #: cerber-settings.php:730
1707
  msgid "Include activity log events"
1708
  msgstr ""
1709
 
1710
- #: cerber-settings.php:1099
1711
  msgid "Include file sizes"
1712
  msgstr ""
1713
 
1714
- #: cerber-settings.php:1103
1715
  msgid "Include scan errors"
1716
  msgstr ""
1717
 
1718
- #: cerber-settings.php:736
1719
  msgid "Include traffic log entries"
1720
  msgstr ""
1721
 
1722
- #: admin/cerber-dashboard.php:5622
1723
  msgid "Incorrect IP address or IP range"
1724
  msgstr ""
1725
 
1726
- #: cerber-common.php:1777
1727
  msgid "Incorrect password"
1728
  msgstr ""
1729
 
1730
- #: admin/cerber-admin-settings.php:352
1731
  #, php-format
1732
  msgid ""
1733
  "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
1734
  msgstr ""
1735
 
1736
- #: cerber-settings.php:141
1737
  msgid "Initialization Mode"
1738
  msgstr ""
1739
 
1740
- #: cerber-common.php:1769
1741
  msgid "Initiated by the user"
1742
  msgstr ""
1743
 
@@ -1749,11 +1798,11 @@ msgstr ""
1749
  msgid "Injected files"
1750
  msgstr ""
1751
 
1752
- #: nexus/cerber-nexus.php:271
1753
  msgid "Install the access token on the master website."
1754
  msgstr ""
1755
 
1756
- #: admin/cerber-dashboard.php:2136
1757
  msgid "Integrity"
1758
  msgstr ""
1759
 
@@ -1761,15 +1810,15 @@ msgstr ""
1761
  msgid "Integrity data not found"
1762
  msgstr ""
1763
 
1764
- #: cerber-common.php:1780
1765
  msgid "Invalid cookies"
1766
  msgstr ""
1767
 
1768
- #: cerber-common.php:1781
1769
  msgid "Invalid cookies cleared"
1770
  msgstr ""
1771
 
1772
- #: cerber-common.php:1741
1773
  msgid "Invalid master credentials"
1774
  msgstr ""
1775
 
@@ -1777,71 +1826,71 @@ msgstr ""
1777
  msgid "Invalid response from the slave website"
1778
  msgstr ""
1779
 
1780
- #: cerber-common.php:1776
1781
  msgid "Invalid user"
1782
  msgstr ""
1783
 
1784
- #: cerber-settings.php:1352
1785
  msgid "Invisible reCAPTCHA"
1786
  msgstr ""
1787
 
1788
- #: cerber-load.php:5707
1789
- msgid "IP"
1790
- msgstr ""
1791
-
1792
- #: admin/cerber-dashboard.php:211 admin/cerber-dashboard.php:947
1793
- #: admin/cerber-dashboard.php:1327 admin/cerber-dashboard.php:4537
1794
- #: admin/cerber-users.php:927
1795
  msgid "IP Address"
1796
  msgstr ""
1797
 
1798
- #: admin/cerber-dashboard.php:4051
1799
  msgid "IP address"
1800
  msgstr ""
1801
 
1802
- #: admin/cerber-dashboard.php:369
1803
  #, php-format
1804
  msgid "IP address %s has been added to Black IP Access List"
1805
  msgstr ""
1806
 
1807
- #: admin/cerber-dashboard.php:372
1808
  #, php-format
1809
  msgid "IP address %s has been added to White IP Access List"
1810
  msgstr ""
1811
 
1812
- #: cerber-common.php:1753
1813
  msgid "IP address is locked out"
1814
  msgstr ""
1815
 
1816
- #: cerber-common.php:1778
1817
  msgid "IP address is not allowed"
1818
  msgstr ""
1819
 
1820
- #: admin/cerber-dashboard.php:341
1821
  msgid "IP address, range, wildcard, or CIDR"
1822
  msgstr ""
1823
 
1824
- #: cerber-common.php:1754
 
 
 
 
1825
  msgid "IP blacklisted"
1826
  msgstr ""
1827
 
1828
- #: cerber-common.php:1671 admin/cerber-dashboard.php:1092
1829
  msgid "IP blocked"
1830
  msgstr ""
1831
 
1832
- #: cerber-common.php:1672
1833
  msgid "IP subnet blocked"
1834
  msgstr ""
1835
 
1836
- #: cerber-common.php:1787
1837
  msgid "IP whitelisted"
1838
  msgstr ""
1839
 
1840
- #: cerber-scanner.php:4776 admin/cerber-admin.php:115
1841
  msgid "Issues total"
1842
  msgstr ""
1843
 
1844
- #: admin/cerber-users.php:77
1845
  msgid "It is visible only to website administrators"
1846
  msgstr ""
1847
 
@@ -1853,7 +1902,7 @@ msgid ""
1853
  "made (bespoke) plugin or theme."
1854
  msgstr ""
1855
 
1856
- #: admin/cerber-admin.php:72
1857
  msgid ""
1858
  "It seems this website has never been scanned. To start scanning click the "
1859
  "button below."
@@ -1869,104 +1918,104 @@ msgid ""
1869
  "encryption. This may lead to data leakage."
1870
  msgstr ""
1871
 
1872
- #: cerber-settings.php:331 cerber-settings.php:973
1873
  msgid "Keep log records of logged in users for"
1874
  msgstr ""
1875
 
1876
- #: cerber-settings.php:325 cerber-settings.php:967
1877
  msgid "Keep log records of not logged in visitors for"
1878
  msgstr ""
1879
 
1880
- #: cerber-settings.php:1143
1881
  msgid ""
1882
  "Keep the WordPress uploads directory clean and secure. Detect injected files "
1883
  "with public web access, report them, and remove malicious ones."
1884
  msgstr ""
1885
 
1886
- #: cerber-lab.php:897 admin/cerber-admin-settings.php:103
1887
- #: admin/cerber-admin-settings.php:259
1888
  msgid "Know more"
1889
  msgstr ""
1890
 
1891
- #: admin/cerber-dashboard.php:5762
1892
  msgid "Know more about all advantages at"
1893
  msgstr ""
1894
 
1895
- #: admin/cerber-admin.php:1213
1896
  msgid "Largest"
1897
  msgstr ""
1898
 
1899
- #: cerber-load.php:4826
1900
  #, php-format
1901
- msgid "Last failed attempt was at %s from IP %s with user login: %s."
1902
  msgstr ""
1903
 
1904
- #: admin/cerber-dashboard.php:2087
1905
  msgid "Last lockout"
1906
  msgstr ""
1907
 
1908
- #: cerber-load.php:4860
1909
  #, php-format
1910
  msgid "Last lockout was added: %s for IP %s"
1911
  msgstr ""
1912
 
1913
- #: admin/cerber-dashboard.php:1960
1914
  msgid "Last login"
1915
  msgstr ""
1916
 
1917
- #: admin/cerber-dashboard.php:1913
1918
  msgid "Last seen"
1919
  msgstr ""
1920
 
1921
- #: cerber-settings.php:1069
1922
  msgid "Launch Full Scan"
1923
  msgstr ""
1924
 
1925
- #: cerber-settings.php:1064
1926
  msgid "Launch Quick Scan"
1927
  msgstr ""
1928
 
1929
- #: cerber-settings.php:148
1930
  msgid "Legacy mode"
1931
  msgstr ""
1932
 
1933
- #: admin/cerber-dashboard.php:5477
1934
  msgid "License"
1935
  msgstr ""
1936
 
1937
- #: cerber-settings.php:1455
1938
  msgid "Limit access by IP address"
1939
  msgstr ""
1940
 
1941
- #: cerber-settings.php:1403
1942
  msgid "Limit attempts"
1943
  msgstr ""
1944
 
1945
- #: cerber-settings.php:161
1946
  msgid "Limit login attempts"
1947
  msgstr ""
1948
 
1949
- #: cerber-common.php:1779
1950
  msgid "Limit on concurrent user sessions"
1951
  msgstr ""
1952
 
1953
- #: cerber-common.php:1908
1954
  msgid "Limit on failed reCAPTCHA verifications is reached"
1955
  msgstr ""
1956
 
1957
- #: cerber-common.php:1903
1958
  msgid "Limit on login attempts is reached"
1959
  msgstr ""
1960
 
1961
- #: cerber-common.php:1757
1962
  msgid "Limit reached"
1963
  msgstr ""
1964
 
1965
- #: admin/cerber-dashboard.php:335
1966
  msgid "List is empty"
1967
  msgstr ""
1968
 
1969
- #: admin/cerber-dashboard.php:5357
1970
  msgid "Live Traffic"
1971
  msgstr ""
1972
 
@@ -1978,7 +2027,7 @@ msgstr ""
1978
  msgid "Load entries"
1979
  msgstr ""
1980
 
1981
- #: cerber-settings.php:145
1982
  msgid "Load security engine"
1983
  msgstr ""
1984
 
@@ -1990,160 +2039,168 @@ msgstr ""
1990
  msgid "Local hash not found"
1991
  msgstr ""
1992
 
1993
- #: admin/cerber-dashboard.php:951 admin/cerber-dashboard.php:1332
1994
- #: admin/cerber-dashboard.php:4540
1995
  msgid "Local User"
1996
  msgstr ""
1997
 
1998
- #: cerber-settings.php:1404
 
 
 
 
1999
  #, php-format
2000
  msgid ""
2001
  "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
2002
  msgstr ""
2003
 
2004
- #: cerber-common.php:1752 admin/cerber-dashboard.php:1696
2005
  msgid "Locked out"
2006
  msgstr ""
2007
 
2008
- #: admin/cerber-dashboard.php:663
2009
  #, php-format
2010
  msgid "Lockout for %s was removed"
2011
  msgstr ""
2012
 
2013
- #: cerber-settings.php:754
2014
- msgid "Lockout notifications"
2015
  msgstr ""
2016
 
2017
- #: admin/cerber-dashboard.php:5287
2018
  msgid "Lockouts"
2019
  msgstr ""
2020
 
2021
- #: admin/cerber-dashboard.php:2084
2022
  msgid "lockouts"
2023
  msgstr ""
2024
 
2025
- #: admin/cerber-dashboard.php:2086
2026
  msgid "Lockouts at the moment"
2027
  msgstr ""
2028
 
2029
- #: cerber-common.php:389
2030
  msgid "Lockouts occurred"
2031
  msgstr ""
2032
 
2033
- #: cerber-settings.php:884
2034
  msgid "Log all REST API requests"
2035
  msgstr ""
2036
 
2037
- #: cerber-settings.php:889
2038
  msgid "Log all XML-RPC requests"
2039
  msgstr ""
2040
 
2041
- #: admin/cerber-dashboard.php:5942
2042
  msgid "Log In"
2043
  msgstr ""
2044
 
2045
- #: admin/cerber-dashboard.php:3902
2046
  msgid "Log into the website"
2047
  msgstr ""
2048
 
2049
- #: admin/cerber-dashboard.php:5943
2050
  msgid "Log Out"
2051
  msgstr ""
2052
 
2053
- #: cerber-common.php:1666
2054
  msgid "Logged in"
2055
  msgstr ""
2056
 
2057
- #: cerber-common.php:1667
2058
  msgid "Logged out"
2059
  msgstr ""
2060
 
2061
- #: cerber-common.php:1798
2062
  msgid "Logged out everywhere"
2063
  msgstr ""
2064
 
2065
- #: cerber-settings.php:461 cerber-settings.php:1295
2066
- #: admin/cerber-dashboard.php:2089
2067
  msgid "Logged-in users"
2068
  msgstr ""
2069
 
2070
- #: cerber-settings.php:877
2071
  msgid "Logging disabled"
2072
  msgstr ""
2073
 
2074
- #: cerber-settings.php:874
2075
  msgid "Logging mode"
2076
  msgstr ""
2077
 
2078
- #: cerber-common.php:1668
2079
  msgid "Login failed"
2080
  msgstr ""
2081
 
2082
- #: cerber-settings.php:1377
2083
  msgid "Login form"
2084
  msgstr ""
2085
 
2086
- #: admin/cerber-users.php:518
2087
  msgid "Login from a different browser or device"
2088
  msgstr ""
2089
 
2090
- #: admin/cerber-users.php:500
2091
  msgid "Login from a different country"
2092
  msgstr ""
2093
 
2094
- #: admin/cerber-users.php:512
2095
  msgid "Login from a different IP address"
2096
  msgstr ""
2097
 
2098
- #: admin/cerber-users.php:506
2099
  msgid "Login from a different network Class C"
2100
  msgstr ""
2101
 
2102
- #: admin/cerber-dashboard.php:1077
2103
  msgid "Login issues"
2104
  msgstr ""
2105
 
2106
- #: cerber-settings.php:156
2107
  msgid "Login Security"
2108
  msgstr ""
2109
 
2110
- #: admin/cerber-dashboard.php:4613
 
 
 
 
2111
  msgid "Longer than"
2112
  msgstr ""
2113
 
2114
- #: cerber-settings.php:1367
2115
  msgid "Lost password form"
2116
  msgstr ""
2117
 
2118
- #: cerber-settings.php:1084 cerber-settings.php:1130
2119
  msgid "Low severity"
2120
  msgstr ""
2121
 
2122
- #: admin/cerber-dashboard.php:5288
2123
  msgid "Main Settings"
2124
  msgstr ""
2125
 
2126
- #: admin/cerber-dashboard.php:3177
2127
  msgid "Main settings"
2128
  msgstr ""
2129
 
2130
- #: cerber-settings.php:239
2131
  msgid "Make your protection smarter!"
2132
  msgstr ""
2133
 
2134
- #: cerber-common.php:383
2135
  msgid "Malicious activities mitigated"
2136
  msgstr ""
2137
 
2138
- #: admin/cerber-dashboard.php:2713
2139
  msgid "Malicious Activity"
2140
  msgstr ""
2141
 
2142
- #: cerber-common.php:1755
2143
  msgid "Malicious activity detected"
2144
  msgstr ""
2145
 
2146
- #: cerber-common.php:1763 cerber-common.php:1912
2147
  msgid "Malicious code detected"
2148
  msgstr ""
2149
 
@@ -2151,11 +2208,11 @@ msgstr ""
2151
  msgid "Malicious code found"
2152
  msgstr ""
2153
 
2154
- #: cerber-common.php:388
2155
  msgid "Malicious IP addresses detected"
2156
  msgstr ""
2157
 
2158
- #: cerber-common.php:1724
2159
  msgid "Malicious request denied"
2160
  msgstr ""
2161
 
@@ -2163,121 +2220,133 @@ msgstr ""
2163
  msgid "Malware Scan"
2164
  msgstr ""
2165
 
2166
- #: admin/cerber-dashboard.php:5473
2167
  msgid "Manage Settings"
2168
  msgstr ""
2169
 
2170
- #: cerber-settings.php:1321
2171
  msgid "Mark it as spam"
2172
  msgstr ""
2173
 
2174
- #: cerber-settings.php:920
 
 
 
 
2175
  msgid "Mask these form fields"
2176
  msgstr ""
2177
 
2178
- #: cerber-settings.php:1411
 
 
 
 
2179
  msgid "Master settings"
2180
  msgstr ""
2181
 
2182
- #: cerber-settings.php:826 cerber-settings.php:857
2183
  msgid "Maximum compatibility"
2184
  msgstr ""
2185
 
2186
- #: admin/cerber-dashboard.php:3002
2187
  msgid "Maximum number of alerts to send"
2188
  msgstr ""
2189
 
2190
- #: cerber-settings.php:827 cerber-settings.php:858
2191
  msgid "Maximum security"
2192
  msgstr ""
2193
 
2194
- #: cerber-settings.php:1085 cerber-settings.php:1131
2195
  msgid "Medium severity"
2196
  msgstr ""
2197
 
2198
- #: cerber-settings.php:961
 
 
 
 
2199
  msgid "milliseconds"
2200
  msgstr ""
2201
 
2202
- #: cerber-settings.php:878
2203
  msgid "Minimal"
2204
  msgstr ""
2205
 
2206
- #: cerber-settings.php:167 cerber-settings.php:305
2207
  msgid "minutes"
2208
  msgstr ""
2209
 
2210
- #: cerber-settings.php:688
2211
  msgid "minutes (leave empty to use the default WordPress value)"
2212
  msgstr ""
2213
 
2214
- #: cerber-settings.php:665 cerber-settings.php:1038
2215
  msgid "Miscellaneous Settings"
2216
  msgstr ""
2217
 
2218
- #: cerber-settings.php:170
2219
  msgid "Mitigate aggressive attempts"
2220
  msgstr ""
2221
 
2222
- #: admin/cerber-dashboard.php:3046
2223
  msgid "Mobile alerts are not configured"
2224
  msgstr ""
2225
 
2226
  #. %s is the name of a mobile device.
2227
- #: admin/cerber-dashboard.php:3043
2228
  #, php-format
2229
  msgid "Mobile alerts will be sent to %s"
2230
  msgstr ""
2231
 
2232
- #: admin/cerber-admin.php:926 admin/cerber-admin.php:1393
2233
  msgid "Modified"
2234
  msgstr ""
2235
 
2236
- #: cerber-settings.php:996
2237
  msgid "Monitor modified files"
2238
  msgstr ""
2239
 
2240
- #: cerber-settings.php:987
2241
  msgid "Monitor new files"
2242
  msgstr ""
2243
 
2244
- #: cerber-settings.php:1326
2245
  msgid "Move spam comments to trash after"
2246
  msgstr ""
2247
 
2248
- #: cerber-common.php:1915
2249
  msgid "Multiple erroneous requests"
2250
  msgstr ""
2251
 
2252
- #: cerber-common.php:1758
2253
  msgid "Multiple suspicious activities"
2254
  msgstr ""
2255
 
2256
- #: cerber-common.php:1910
2257
  msgid "Multiple suspicious activities were detected"
2258
  msgstr ""
2259
 
2260
- #: cerber-common.php:1916
2261
  msgid "Multiple suspicious requests"
2262
  msgstr ""
2263
 
2264
- #: admin/cerber-dashboard.php:1096
2265
  msgid "My activity"
2266
  msgstr ""
2267
 
2268
- #: admin/cerber-dashboard.php:1097 admin/cerber-dashboard.php:4610
2269
  msgid "My IP"
2270
  msgstr ""
2271
 
2272
- #: cerber-settings.php:388
2273
  msgid "My IP address"
2274
  msgstr ""
2275
 
2276
- #: admin/cerber-dashboard.php:4609
2277
  msgid "My requests"
2278
  msgstr ""
2279
 
2280
- #: cerber-settings.php:268 admin/cerber-dashboard.php:2498
2281
  msgid "My site is behind a reverse proxy"
2282
  msgstr ""
2283
 
@@ -2286,17 +2355,17 @@ msgstr ""
2286
  msgid "My Websites"
2287
  msgstr ""
2288
 
2289
- #: admin/cerber-dashboard.php:1732
2290
  msgid "Network:"
2291
  msgstr ""
2292
 
2293
- #: cerber-common.php:2081 nexus/cerber-slave-list.php:347
2294
- #: admin/cerber-dashboard.php:476 admin/cerber-dashboard.php:2065
2295
- #: admin/cerber-dashboard.php:2114
2296
  msgid "Never"
2297
  msgstr ""
2298
 
2299
- #: cerber-load.php:4904
2300
  msgid "New Custom login URL"
2301
  msgstr ""
2302
 
@@ -2308,42 +2377,42 @@ msgstr ""
2308
  msgid "New files"
2309
  msgstr ""
2310
 
2311
- #: admin/cerber-dashboard.php:1076
2312
  msgid "New users"
2313
  msgstr ""
2314
 
2315
- #: cerber-settings.php:771
2316
  msgid "New version is available"
2317
  msgstr ""
2318
 
2319
- #: admin/cerber-admin.php:1216
2320
  msgid "Newest"
2321
  msgstr ""
2322
 
2323
- #: admin/cerber-dashboard.php:1379 admin/cerber-dashboard.php:1818
2324
- #: admin/cerber-dashboard.php:2673 admin/cerber-admin.php:1333
2325
  msgid "No activity has been logged yet."
2326
  msgstr ""
2327
 
2328
- #: admin/cerber-dashboard.php:2100
2329
  msgid "no connection"
2330
  msgstr ""
2331
 
2332
- #: admin/cerber-admin.php:1018
2333
  msgid ""
2334
  "No data for generating reports. Please run the Full Scan. After the scan is "
2335
  "completed, the reports will be generated."
2336
  msgstr ""
2337
 
2338
- #: cerber-settings.php:121
2339
  msgid "No devices found"
2340
  msgstr ""
2341
 
2342
- #: admin/cerber-dashboard.php:1382
2343
  msgid "No events found using the given search criteria"
2344
  msgstr ""
2345
 
2346
- #: admin/cerber-admin.php:1181
2347
  msgid "No extension"
2348
  msgstr ""
2349
 
@@ -2351,31 +2420,31 @@ msgstr ""
2351
  msgid "No file was uploaded or file is corrupted"
2352
  msgstr ""
2353
 
2354
- #: admin/cerber-admin.php:730
2355
  msgid "No files match the specified filter."
2356
  msgstr ""
2357
 
2358
- #: admin/cerber-dashboard.php:3007
2359
  msgid "No limit"
2360
  msgstr ""
2361
 
2362
- #: admin/cerber-dashboard.php:242 admin/cerber-dashboard.php:2733
2363
  msgid "No lockouts at the moment. The sky is clear."
2364
  msgstr ""
2365
 
2366
- #: admin/cerber-dashboard.php:4572
2367
  msgid "No requests found using the given search criteria"
2368
  msgstr ""
2369
 
2370
- #: admin/cerber-dashboard.php:4569
2371
  msgid "No requests have been logged yet."
2372
  msgstr ""
2373
 
2374
- #: cerber-settings.php:593
2375
  msgid "No restrictions"
2376
  msgstr ""
2377
 
2378
- #: admin/cerber-dashboard.php:3791
2379
  msgid "No rule"
2380
  msgstr ""
2381
 
@@ -2387,38 +2456,38 @@ msgstr ""
2387
  msgid "NO, maybe later"
2388
  msgstr ""
2389
 
2390
- #: admin/cerber-dashboard.php:1094 admin/cerber-dashboard.php:4604
2391
  msgid "Non-authenticated"
2392
  msgstr ""
2393
 
2394
- #: cerber-settings.php:247
2395
  msgid "Non-existing users"
2396
  msgstr ""
2397
 
2398
- #: admin/cerber-dashboard.php:2074
2399
- msgid "not active"
2400
  msgstr ""
2401
 
2402
- #: cerber-settings.php:125
2403
- msgid "Not available"
2404
  msgstr ""
2405
 
2406
- #: cerber-load.php:4878
2407
- msgid "Not logged in"
2408
  msgstr ""
2409
 
2410
- #: admin/cerber-dashboard.php:3783
2411
  #, php-format
2412
  msgid "Not permitted for one country"
2413
  msgid_plural "Not permitted for %d countries"
2414
  msgstr[0] ""
2415
  msgstr[1] ""
2416
 
2417
- #: admin/cerber-dashboard.php:4671
2418
  msgid "Not specified"
2419
  msgstr ""
2420
 
2421
- #: admin/cerber-dashboard.php:4579
2422
  msgid "Note: Logging is currently disabled"
2423
  msgstr ""
2424
 
@@ -2426,39 +2495,35 @@ msgstr ""
2426
  msgid "Notes"
2427
  msgstr ""
2428
 
2429
- #: cerber-settings.php:766
2430
  msgid "Notification limit"
2431
  msgstr ""
2432
 
2433
- #: cerber-settings.php:310 admin/cerber-dashboard.php:5292
2434
  msgid "Notifications"
2435
  msgstr ""
2436
 
2437
- #: cerber-settings.php:767
2438
  msgid "notifications are allowed per hour (0 means unlimited)"
2439
  msgstr ""
2440
 
2441
- #: admin/cerber-admin-settings.php:360
2442
- msgid "Notify admin if the number of active lockouts above"
2443
- msgstr ""
2444
-
2445
- #: cerber-load.php:4857
2446
  msgid "Number of active lockouts"
2447
  msgstr ""
2448
 
2449
- #: admin/cerber-users.php:446
2450
  msgid "Number of allowed concurrent user sessions"
2451
  msgstr ""
2452
 
2453
- #: cerber-load.php:4855
2454
  msgid "Number of lockouts is increasing"
2455
  msgstr ""
2456
 
2457
- #: admin/cerber-users.php:545
2458
  msgid "number of logins"
2459
  msgstr ""
2460
 
2461
- #: admin/cerber-dashboard.php:5830
2462
  msgid "OK"
2463
  msgstr ""
2464
 
@@ -2466,50 +2531,50 @@ msgstr ""
2466
  msgid "OK, nail them all"
2467
  msgstr ""
2468
 
2469
- #: admin/cerber-admin.php:1215
2470
  msgid "Oldest"
2471
  msgstr ""
2472
 
2473
- #: cerber-settings.php:1071
2474
  msgid "once a day at"
2475
  msgstr ""
2476
 
2477
- #: cerber-settings.php:1047 cerber-settings.php:1445 cerber-settings.php:1473
2478
  #, php-format
2479
  msgid "Once enabled, the log is available here: %s"
2480
  msgstr ""
2481
 
2482
- #: cerber-2fa.php:654
2483
  msgid "only digits are allowed"
2484
  msgstr ""
2485
 
2486
- #: cerber-settings.php:648 cerber-settings.php:1744
2487
  msgid "Only registered and logged in users are allowed to view this website"
2488
  msgstr ""
2489
 
2490
- #: cerber-settings.php:632
2491
  msgid "Only registered and logged in website users have access to the website"
2492
  msgstr ""
2493
 
2494
- #: cerber-settings.php:611
2495
  msgid ""
2496
  "Only users from IP addresses in the White IP Access List may register on the "
2497
  "website"
2498
  msgstr ""
2499
 
2500
- #: admin/cerber-dashboard.php:3053
2501
  msgid "Optional alert limits"
2502
  msgstr ""
2503
 
2504
- #: admin/cerber-dashboard.php:343
2505
  msgid "Optional comment for this entry"
2506
  msgstr ""
2507
 
2508
- #: cerber-2fa.php:662
2509
  msgid "or"
2510
  msgstr ""
2511
 
2512
- #: cerber-settings.php:1254
2513
  msgid "Other forms"
2514
  msgstr ""
2515
 
@@ -2517,15 +2582,15 @@ msgstr ""
2517
  msgid "Owner"
2518
  msgstr ""
2519
 
2520
- #: admin/cerber-dashboard.php:4058
2521
  msgid "Page generation time"
2522
  msgstr ""
2523
 
2524
- #: cerber-settings.php:960
2525
  msgid "Page generation time threshold"
2526
  msgstr ""
2527
 
2528
- #: admin/cerber-dashboard.php:4606
2529
  msgid "Page Not Found"
2530
  msgstr ""
2531
 
@@ -2533,52 +2598,52 @@ msgstr ""
2533
  msgid "Parsing the list of files"
2534
  msgstr ""
2535
 
2536
- #: cerber-common.php:1688
2537
  msgid "Password changed"
2538
  msgstr ""
2539
 
2540
  #. %s is the name of a website administrator who changed the password.
2541
- #: cerber-common.php:1690
2542
  #, php-format
2543
  msgid "Password changed by %s"
2544
  msgstr ""
2545
 
2546
- #: cerber-common.php:1696
2547
  msgid "Password reset request denied"
2548
  msgstr ""
2549
 
2550
- #: cerber-common.php:1691
2551
  msgid "Password reset requested"
2552
  msgstr ""
2553
 
2554
- #: admin/cerber-admin.php:1115
2555
  msgid "Path"
2556
  msgstr ""
2557
 
2558
- #: admin/cerber-admin.php:92
2559
  msgid "Performance"
2560
  msgstr ""
2561
 
2562
- #: cerber-common.php:1774
2563
  msgid "Permission denied"
2564
  msgstr ""
2565
 
2566
- #: cerber-settings.php:595
2567
  msgid "Permit only email addresses that match the following"
2568
  msgstr ""
2569
 
2570
- #: admin/cerber-dashboard.php:3780
2571
  #, php-format
2572
  msgid "Permitted for one country"
2573
  msgid_plural "Permitted for %d countries"
2574
  msgstr[0] ""
2575
  msgstr[1] ""
2576
 
2577
- #: cerber-settings.php:703
2578
  msgid "Personal Data"
2579
  msgstr ""
2580
 
2581
- #: cerber-settings.php:358
2582
  msgid "Personal Preferences"
2583
  msgstr ""
2584
 
@@ -2586,16 +2651,24 @@ msgstr ""
2586
  msgid "Phone"
2587
  msgstr ""
2588
 
2589
- #: cerber-load.php:1958
 
 
 
 
2590
  msgid "Please choose another one."
2591
  msgstr ""
2592
 
2593
- #: cerber-settings.php:131
2594
  msgid ""
2595
  "Please enable Permalinks to use this feature. Set Permalink Settings to "
2596
  "something other than Default."
2597
  msgstr ""
2598
 
 
 
 
 
2599
  #: cerber-scanner.php:2628
2600
  msgid "Please upload a reference ZIP archive"
2601
  msgstr ""
@@ -2604,31 +2677,31 @@ msgstr ""
2604
  msgid "Please upload another file."
2605
  msgstr ""
2606
 
2607
- #: cerber-2fa.php:506
2608
  msgid "Please use the following verification PIN code to verify your identity."
2609
  msgstr ""
2610
 
2611
- #: cerber-2fa.php:413 cerber-2fa.php:501
2612
  msgid "Please verify that it’s you"
2613
  msgstr ""
2614
 
2615
- #: admin/cerber-admin-settings.php:668
2616
  msgid "Plugin initialization mode has not been changed"
2617
  msgstr ""
2618
 
2619
- #: admin/cerber-users.php:589
2620
  msgid "Policies have been updated"
2621
  msgstr ""
2622
 
2623
- #: admin/cerber-dashboard.php:3908
2624
  msgid "Post comments"
2625
  msgstr ""
2626
 
2627
- #: cerber-settings.php:272
2628
  msgid "Prefix for plugin cookies"
2629
  msgstr ""
2630
 
2631
- #: cerber-settings.php:273
2632
  msgid "Prefix may contain only Latin alphanumeric characters and underscores"
2633
  msgstr ""
2634
 
@@ -2636,115 +2709,115 @@ msgstr ""
2636
  msgid "Preparing for the scan"
2637
  msgstr ""
2638
 
2639
- #: cerber-common.php:2076
2640
  #, php-format
2641
  msgctxt "preposition of a period of time like: in 6 hours"
2642
  msgid "in %s"
2643
  msgstr ""
2644
 
2645
- #: admin/cerber-admin-settings.php:571
2646
  msgctxt "preposition of time like: at 11:00"
2647
  msgid "at"
2648
  msgstr ""
2649
 
2650
- #: cerber-settings.php:409 cerber-settings.php:414
2651
  msgid "Prevent username discovery"
2652
  msgstr ""
2653
 
2654
- #: cerber-settings.php:410
2655
  msgid "Prevent username discovery via oEmbed"
2656
  msgstr ""
2657
 
2658
- #: cerber-settings.php:415
2659
  msgid "Prevent username discovery via user XML sitemaps"
2660
  msgstr ""
2661
 
2662
- #: admin/cerber-admin.php:177
2663
  #, php-format
2664
  msgid "Previous scan started %s has not been completed. Continue scanning?"
2665
  msgstr ""
2666
 
2667
- #: cerber-settings.php:238
2668
  msgid "Proactive security rules"
2669
  msgstr ""
2670
 
2671
- #: cerber-common.php:1711 cerber-common.php:1911
2672
  msgid "Probing for vulnerable code"
2673
  msgstr ""
2674
 
2675
- #: cerber-settings.php:179
2676
  msgid "Processing wp-login.php authentication requests"
2677
  msgstr ""
2678
 
2679
- #: admin/cerber-users.php:1079
2680
  msgid "Profile"
2681
  msgstr ""
2682
 
2683
- #: cerber-settings.php:1167
2684
  msgid "Prohibited extensions"
2685
  msgstr ""
2686
 
2687
- #: cerber-settings.php:668
2688
  msgid "Prohibited usernames"
2689
  msgstr ""
2690
 
2691
- #: cerber-settings.php:419
2692
  msgid "Protect admin scripts"
2693
  msgstr ""
2694
 
2695
- #: cerber-settings.php:1255
2696
  msgid "Protect all forms on the website with bot detection engine"
2697
  msgstr ""
2698
 
2699
- #: cerber-settings.php:1244
2700
  msgid "Protect comment form with bot detection engine"
2701
  msgstr ""
2702
 
2703
- #: cerber-settings.php:1239
2704
  msgid "Protect registration form with bot detection engine"
2705
  msgstr ""
2706
 
2707
- #: cerber-settings.php:550
2708
  msgid "Protect site settings"
2709
  msgstr ""
2710
 
2711
- #: cerber-settings.php:487
2712
  msgid "Protect user accounts"
2713
  msgstr ""
2714
 
2715
- #: cerber-settings.php:522
2716
  msgid "Protect user roles"
2717
  msgstr ""
2718
 
2719
- #: cerber-settings.php:565
2720
  msgid "Protected settings"
2721
  msgstr ""
2722
 
2723
- #: cerber-settings.php:777
2724
  msgid "Push notifications"
2725
  msgstr ""
2726
 
2727
- #: cerber-settings.php:782
2728
  msgid "Pushbullet access token"
2729
  msgstr ""
2730
 
2731
- #: cerber-settings.php:785
2732
  msgid "Pushbullet device"
2733
  msgstr ""
2734
 
2735
- #: admin/cerber-dashboard.php:5423
2736
  msgid "Quarantine"
2737
  msgstr ""
2738
 
2739
- #: admin/cerber-admin.php:770
2740
  msgid "Quarantined"
2741
  msgstr ""
2742
 
2743
- #: cerber-settings.php:1305
2744
  msgid "Query whitelist"
2745
  msgstr ""
2746
 
2747
- #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2121
2748
  msgid "Quick Scan"
2749
  msgstr ""
2750
 
@@ -2752,39 +2825,39 @@ msgstr ""
2752
  msgid "Quick Scan Report"
2753
  msgstr ""
2754
 
2755
- #: cerber-settings.php:1465
2756
  msgid "Read-only mode"
2757
  msgstr ""
2758
 
2759
- #: cerber-load.php:4861 admin/cerber-dashboard.php:215
2760
  msgid "Reason"
2761
  msgstr ""
2762
 
2763
- #: cerber-settings.php:1333
2764
  msgid "reCAPTCHA settings"
2765
  msgstr ""
2766
 
2767
- #: cerber-common.php:1700 cerber-common.php:1802
2768
  msgid "reCAPTCHA settings are incorrect"
2769
  msgstr ""
2770
 
2771
- #: cerber-common.php:1699 cerber-common.php:1801
2772
  msgid "reCAPTCHA verification failed"
2773
  msgstr ""
2774
 
2775
- #: cerber-common.php:1800
2776
  msgid "reCAPTCHA verified"
2777
  msgstr ""
2778
 
2779
- #: admin/cerber-dashboard.php:2744
2780
  msgid "Recently locked out IP addresses"
2781
  msgstr ""
2782
 
2783
- #: cerber-settings.php:1189
2784
  msgid "Recover plugins' files"
2785
  msgstr ""
2786
 
2787
- #: cerber-settings.php:1185
2788
  msgid "Recover WordPress files"
2789
  msgstr ""
2790
 
@@ -2800,211 +2873,215 @@ msgstr ""
2800
  msgid "Recovering WordPress files"
2801
  msgstr ""
2802
 
2803
- #: cerber-settings.php:653
2804
  msgid "Redirect to URL"
2805
  msgstr ""
2806
 
2807
- #: admin/cerber-users.php:424
2808
  msgid "Redirect user after login"
2809
  msgstr ""
2810
 
2811
- #: admin/cerber-users.php:429
2812
  msgid "Redirect user after logout"
2813
  msgstr ""
2814
 
2815
- #: admin/cerber-users.php:420
2816
  msgid "Redirection rules"
2817
  msgstr ""
2818
 
2819
- #: admin/cerber-dashboard.php:4636
2820
  msgid "Refresh"
2821
  msgstr ""
2822
 
2823
- #: admin/cerber-dashboard.php:5944
2824
  msgid "Register"
2825
  msgstr ""
2826
 
2827
- #: admin/cerber-dashboard.php:3906
2828
  msgid "Register on the website"
2829
  msgstr ""
2830
 
2831
- #: admin/cerber-dashboard.php:1885 admin/cerber-dashboard.php:1962
2832
  msgid "Registered"
2833
  msgstr ""
2834
 
2835
- #: cerber-settings.php:1238 cerber-settings.php:1357
2836
  msgid "Registration form"
2837
  msgstr ""
2838
 
2839
- #: cerber-settings.php:584
2840
  msgid "Registration limit"
2841
  msgstr ""
2842
 
2843
- #: admin/cerber-users.php:536
2844
  msgid "Regular time intervals (days)"
2845
  msgstr ""
2846
 
2847
- #: admin/cerber-dashboard.php:204 admin/cerber-dashboard.php:329
2848
  msgid "Remove"
2849
  msgstr ""
2850
 
2851
- #: admin/cerber-admin.php:886 admin/cerber-admin.php:913
2852
  msgid "Remove from the list"
2853
  msgstr ""
2854
 
2855
- #: cerber-settings.php:1081
2856
  msgid "Report an issue if any of the following is true"
2857
  msgstr ""
2858
 
2859
- #: admin/cerber-dashboard.php:4536
2860
  msgid "Request"
2861
  msgstr ""
2862
 
2863
- #: admin/cerber-dashboard.php:1416
2864
  msgid "Request ID"
2865
  msgstr ""
2866
 
2867
- #: cerber-common.php:1715
2868
  msgid "Request to REST API denied"
2869
  msgstr ""
2870
 
2871
- #: cerber-common.php:1701 cerber-common.php:1803
2872
  msgid "Request to the Google reCAPTCHA service failed"
2873
  msgstr ""
2874
 
2875
- #: cerber-common.php:1716
2876
  msgid "Request to XML-RPC API denied"
2877
  msgstr ""
2878
 
2879
- #: cerber-settings.php:739
2880
  msgid "Request URL"
2881
  msgstr ""
2882
 
2883
- #: cerber-settings.php:837
2884
  msgid "Request whitelist"
2885
  msgstr ""
2886
 
2887
- #: cerber-settings.php:252
2888
  msgid "Request wp-login.php"
2889
  msgstr ""
2890
 
 
 
 
 
2891
  #: cerber-scanner.php:2629
2892
  msgid "Resolve issue"
2893
  msgstr ""
2894
 
2895
- #: admin/cerber-admin.php:751
2896
  msgid "Restore"
2897
  msgstr ""
2898
 
2899
- #: cerber-settings.php:590
2900
  msgid "Restrict email addresses"
2901
  msgstr ""
2902
 
2903
- #: cerber-settings.php:581
2904
  msgid "Restrict new user registrations by the following conditions"
2905
  msgstr ""
2906
 
2907
- #: cerber-settings.php:447
2908
  msgid ""
2909
  "Restrict or completely block access to the WordPress REST API according to "
2910
  "your needs"
2911
  msgstr ""
2912
 
2913
- #: cerber-settings.php:526
2914
  msgid "Restrict roles and capabilities management with the following policies"
2915
  msgstr ""
2916
 
2917
- #: cerber-settings.php:554
2918
  msgid "Restrict updating site settings with the following policies"
2919
  msgstr ""
2920
 
2921
- #: cerber-settings.php:492
2922
  msgid ""
2923
  "Restrict user account creation and user management with the following "
2924
  "policies"
2925
  msgstr ""
2926
 
2927
- #: cerber-settings.php:362
2928
  msgid "Retrieve IP address WHOIS information when viewing the logs"
2929
  msgstr ""
2930
 
2931
- #: cerber-settings.php:1419
2932
  msgid "Return to the website list"
2933
  msgstr ""
2934
 
2935
- #: cerber-common.php:1720
2936
  msgid "Role update denied"
2937
  msgstr ""
2938
 
2939
- #: admin/cerber-dashboard.php:5383
2940
  msgid "Role-Based"
2941
  msgstr ""
2942
 
2943
- #: admin/cerber-dashboard.php:3710
2944
  msgid "Role-based rules are configured"
2945
  msgstr ""
2946
 
2947
- #: cerber-settings.php:1290
2948
  msgid "Safe mode"
2949
  msgstr ""
2950
 
2951
- #: cerber-settings.php:950
2952
  msgid "Save $_SERVER"
2953
  msgstr ""
2954
 
2955
- #: admin/cerber-users.php:296
2956
  msgid "Save All Changes"
2957
  msgstr ""
2958
 
2959
- #: admin/cerber-dashboard.php:3767
2960
  msgid "Save all rules"
2961
  msgstr ""
2962
 
2963
- #: cerber-settings.php:940
2964
  msgid "Save request cookies"
2965
  msgstr ""
2966
 
2967
- #: cerber-settings.php:915
2968
  msgid "Save request fields"
2969
  msgstr ""
2970
 
2971
- #: cerber-settings.php:928
2972
  msgid "Save request headers"
2973
  msgstr ""
2974
 
2975
- #: cerber-settings.php:945
2976
  msgid "Save response cookies"
2977
  msgstr ""
2978
 
2979
- #: cerber-settings.php:934
2980
  msgid "Save response headers"
2981
  msgstr ""
2982
 
2983
- #: cerber-settings.php:955
2984
  msgid "Save software errors"
2985
  msgstr ""
2986
 
2987
- #: cerber-settings.php:1076
2988
  msgid "Scan results reporting"
2989
  msgstr ""
2990
 
2991
- #: cerber-settings.php:1009
2992
  msgid "Scan the sessions directory"
2993
  msgstr ""
2994
 
2995
- #: cerber-settings.php:1005
2996
  msgid "Scan web server's temporary directories"
2997
  msgstr ""
2998
 
2999
- #: admin/cerber-admin.php:108 admin/cerber-admin.php:769
3000
  msgid "Scanned"
3001
  msgstr ""
3002
 
3003
- #: cerber-load.php:4922
3004
  msgid "Scanner Report"
3005
  msgstr ""
3006
 
3007
- #: cerber-settings.php:982
3008
  msgid "Scanner settings"
3009
  msgstr ""
3010
 
@@ -3024,27 +3101,27 @@ msgstr ""
3024
  msgid "Scanning website directories for files"
3025
  msgstr ""
3026
 
3027
- #: admin/cerber-dashboard.php:5420
3028
  msgid "Scheduling"
3029
  msgstr ""
3030
 
3031
- #: admin/cerber-users.php:974
3032
  msgid "Search for IP address"
3033
  msgstr ""
3034
 
3035
- #: admin/cerber-dashboard.php:1413
3036
  msgid "Search for IP or username"
3037
  msgstr ""
3038
 
3039
- #: admin/cerber-dashboard.php:1417
3040
  msgid "Search in URL"
3041
  msgstr ""
3042
 
3043
- #: nexus/cerber-slave-list.php:247 admin/cerber-users.php:1037
3044
  msgid "Search results for:"
3045
  msgstr ""
3046
 
3047
- #: cerber-load.php:5719
3048
  msgid "Search string"
3049
  msgstr ""
3050
 
@@ -3052,7 +3129,7 @@ msgstr ""
3052
  msgid "Searching for malicious code"
3053
  msgstr ""
3054
 
3055
- #: nexus/cerber-nexus.php:146
3056
  msgid "Secret Access Token"
3057
  msgstr ""
3058
 
@@ -3060,19 +3137,19 @@ msgstr ""
3060
  msgid "Secret Access Token is invalid"
3061
  msgstr ""
3062
 
3063
- #: cerber-settings.php:1348
3064
  msgid "Secret key"
3065
  msgstr ""
3066
 
3067
- #: admin/cerber-dashboard.php:67 admin/cerber-dashboard.php:5401
3068
  msgid "Security Rules"
3069
  msgstr ""
3070
 
3071
- #: admin/cerber-dashboard.php:3952
3072
  msgid "Security rules have been updated"
3073
  msgstr ""
3074
 
3075
- #: admin/cerber-dashboard.php:5418
3076
  msgid "Security Scanner"
3077
  msgstr ""
3078
 
@@ -3084,23 +3161,43 @@ msgstr ""
3084
  msgid "Select file to import."
3085
  msgstr ""
3086
 
3087
- #: admin/cerber-admin-settings.php:531
3088
  msgid "Select one or more roles"
3089
  msgstr ""
3090
 
3091
- #: cerber-settings.php:1090
 
 
 
 
 
 
3092
  msgid "Send email report"
3093
  msgstr ""
3094
 
3095
- #: cerber-settings.php:338
3096
  msgid "Send malicious IP addresses to the Cerber Lab"
3097
  msgstr ""
3098
 
3099
- #: cerber-settings.php:312
 
 
 
 
 
 
 
 
 
 
3100
  msgid "Send notification to admin email"
3101
  msgstr ""
3102
 
3103
- #: cerber-settings.php:800
 
 
 
 
3104
  msgid "Send reports on"
3105
  msgstr ""
3106
 
@@ -3112,23 +3209,23 @@ msgstr ""
3112
  msgid "Server Country"
3113
  msgstr ""
3114
 
3115
- #: cerber-load.php:1717
3116
  #, php-format
3117
  msgid "Session has been terminated"
3118
  msgid_plural "%s sessions have been terminated"
3119
  msgstr[0] ""
3120
  msgstr[1] ""
3121
 
3122
- #: admin/cerber-dashboard.php:3397 admin/cerber-dashboard.php:5286
3123
  msgid "Sessions"
3124
  msgstr ""
3125
 
3126
- #: cerber-common.php:1721
3127
  msgid "Setting update denied"
3128
  msgstr ""
3129
 
3130
- #: nexus/cerber-nexus.php:95 admin/cerber-dashboard.php:5358
3131
- #: admin/cerber-dashboard.php:5419 admin/cerber-tools.php:37
3132
  #: admin/cerber-tools.php:48
3133
  msgid "Settings"
3134
  msgstr ""
@@ -3137,7 +3234,7 @@ msgstr ""
3137
  msgid "Settings has imported successfully from"
3138
  msgstr ""
3139
 
3140
- #: admin/cerber-dashboard.php:2882
3141
  msgid "Settings saved"
3142
  msgstr ""
3143
 
@@ -3145,17 +3242,17 @@ msgstr ""
3145
  msgid "Settings updated"
3146
  msgstr ""
3147
 
3148
- #: cerber-settings.php:383
3149
  msgid "Shift admin menu"
3150
  msgstr ""
3151
 
3152
- #: cerber-settings.php:384
3153
  msgid ""
3154
  "Shift the WP Cerber admin menu to the top when navigating through WP Cerber "
3155
  "admin pages"
3156
  msgstr ""
3157
 
3158
- #: cerber-settings.php:1423
3159
  msgid "Show \"Switched to\" notification"
3160
  msgstr ""
3161
 
@@ -3163,40 +3260,40 @@ msgstr ""
3163
  msgid "Show homepage in the Website column"
3164
  msgstr ""
3165
 
3166
- #: cerber-settings.php:361
3167
  msgid "Show IP WHOIS data"
3168
  msgstr ""
3169
 
3170
- #: cerber-settings.php:267
3171
  msgid "Site connection"
3172
  msgstr ""
3173
 
3174
- #: admin/cerber-dashboard.php:73 admin/cerber-dashboard.php:5416
3175
  msgid "Site Integrity"
3176
  msgstr ""
3177
 
3178
- #: cerber-settings.php:1344
3179
  msgid "Site key"
3180
  msgstr ""
3181
 
3182
- #: cerber-common.php:1767
3183
  msgid "Site policy enforcement"
3184
  msgstr ""
3185
 
3186
- #: admin/cerber-dashboard.php:5374
3187
  msgid "Site Settings"
3188
  msgstr ""
3189
 
3190
- #: cerber-settings.php:264
3191
  msgid "Site-specific settings"
3192
  msgstr ""
3193
 
3194
- #: admin/cerber-admin.php:772 admin/cerber-admin.php:927
3195
- #: admin/cerber-admin.php:1392
3196
  msgid "Size"
3197
  msgstr ""
3198
 
3199
- #: cerber-settings.php:1154
3200
  msgid "Skip files with these extensions"
3201
  msgstr ""
3202
 
@@ -3204,125 +3301,153 @@ msgstr ""
3204
  msgid "Slave Settings"
3205
  msgstr ""
3206
 
3207
- #: admin/cerber-admin.php:1212
3208
  msgid "Smallest"
3209
  msgstr ""
3210
 
3211
- #: cerber-settings.php:879
3212
  msgid "Smart"
3213
  msgstr ""
3214
 
3215
- #: admin/cerber-dashboard.php:3329
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3216
  msgid "Some errors occurred"
3217
  msgstr ""
3218
 
3219
- #: cerber-load.php:2296
3220
  msgid "Sorry, human verification failed."
3221
  msgstr ""
3222
 
3223
- #: cerber-load.php:3359
3224
  msgid "Sorry, password reset is not allowed for this user."
3225
  msgstr ""
3226
 
3227
- #: cerber-settings.php:694
3228
  msgid "Sort users in the Dashboard"
3229
  msgstr ""
3230
 
3231
- #: admin/cerber-admin.php:1117 admin/cerber-admin.php:1211
3232
  msgid "Space Occupied"
3233
  msgstr ""
3234
 
3235
- #: cerber-common.php:1676
3236
  msgid "Spam comment denied"
3237
  msgstr ""
3238
 
3239
- #: cerber-common.php:386
3240
  msgid "Spam comments denied"
3241
  msgstr ""
3242
 
3243
- #: cerber-common.php:1677
3244
  msgid "Spam form submission denied"
3245
  msgstr ""
3246
 
3247
- #: cerber-common.php:387
3248
  msgid "Spam form submissions denied"
3249
  msgstr ""
3250
 
3251
- #: cerber-settings.php:1228
3252
  msgid ""
3253
  "Spam protection for registration, comment, and other forms on the website"
3254
  msgstr ""
3255
 
3256
- #: cerber-settings.php:1026
3257
  msgid ""
3258
  "Specify custom PHP code signatures. One item per line. To specify a REGEX "
3259
  "pattern, enclose a whole line in two braces."
3260
  msgstr ""
3261
 
3262
- #: cerber-settings.php:1033
3263
  msgid "Specify directories to exclude from scanning. One directory per line."
3264
  msgstr ""
3265
 
3266
- #: cerber-settings.php:600
3267
  msgid ""
3268
  "Specify email addresses, wildcards or REGEX patterns. Use comma to separate "
3269
  "items."
3270
  msgstr ""
3271
 
3272
- #: cerber-settings.php:1019
3273
  msgid ""
3274
  "Specify file extensions to search for. Full scan only. Use comma to separate "
3275
  "items."
3276
  msgstr ""
3277
 
3278
- #: cerber-settings.php:476
3279
  msgid ""
3280
  "Specify REST API namespaces to be allowed if REST API is disabled. One "
3281
  "string per line."
3282
  msgstr ""
3283
 
3284
- #: cerber-settings.php:903
3285
  msgid "Specify URL paths to exclude requests from logging. One item per line."
3286
  msgstr ""
3287
 
3288
- #: cerber-settings.php:911
3289
  msgid ""
3290
  "Specify User-Agents to exclude requests from logging. One item per line."
3291
  msgstr ""
3292
 
3293
- #: cerber-settings.php:149
3294
  msgid "Standard mode"
3295
  msgstr ""
3296
 
3297
- #: admin/cerber-admin.php:187
3298
  msgid "Start Full Scan"
3299
  msgstr ""
3300
 
3301
- #: admin/cerber-admin.php:186
3302
  msgid "Start Quick Scan"
3303
  msgstr ""
3304
 
3305
- #: admin/cerber-dashboard.php:3760
3306
  msgid "Start typing here to find a country"
3307
  msgstr ""
3308
 
3309
- #: admin/cerber-admin.php:80
3310
  msgid "Started"
3311
  msgstr ""
3312
 
3313
- #: admin/cerber-admin.php:188
3314
  msgid "Stop Scanning"
3315
  msgstr ""
3316
 
3317
- #: cerber-settings.php:404 cerber-settings.php:451
3318
  msgid "Stop user enumeration"
3319
  msgstr ""
3320
 
3321
- #: admin/cerber-dashboard.php:3907
3322
  msgid "Submit forms"
3323
  msgstr ""
3324
 
3325
- #: admin/cerber-dashboard.php:1082
3326
  msgid "Suspicious activity"
3327
  msgstr ""
3328
 
@@ -3342,23 +3467,23 @@ msgstr ""
3342
  msgid "Suspicious directives found"
3343
  msgstr ""
3344
 
3345
- #: cerber-common.php:1765
3346
  msgid "Suspicious JavaScript code detected"
3347
  msgstr ""
3348
 
3349
- #: cerber-common.php:1761
3350
  msgid "Suspicious number of fields"
3351
  msgstr ""
3352
 
3353
- #: cerber-common.php:1762
3354
  msgid "Suspicious number of nested values"
3355
  msgstr ""
3356
 
3357
- #: admin/cerber-dashboard.php:4601
3358
  msgid "Suspicious requests"
3359
  msgstr ""
3360
 
3361
- #: cerber-common.php:1764
3362
  msgid "Suspicious SQL code detected"
3363
  msgstr ""
3364
 
@@ -3370,31 +3495,35 @@ msgstr ""
3370
  msgid "Switch to the Dashboard"
3371
  msgstr ""
3372
 
3373
- #: admin/cerber-users.php:1139
3374
  msgid "Terminate"
3375
  msgstr ""
3376
 
3377
- #: admin/cerber-users.php:946
3378
  msgid "Terminate session"
3379
  msgstr ""
3380
 
3381
- #: admin/cerber-users.php:454
3382
  msgid "Terminate the oldest user session on a new login"
3383
  msgstr ""
3384
 
3385
- #: cerber-settings.php:716
3386
  msgid "Terminate user sessions"
3387
  msgstr ""
3388
 
3389
- #: admin/cerber-dashboard.php:3087
 
 
 
 
3390
  msgid "The alert has been created"
3391
  msgstr ""
3392
 
3393
- #: admin/cerber-dashboard.php:3096
3394
  msgid "The alert has been deleted"
3395
  msgstr ""
3396
 
3397
- #: cerber-2fa.php:506
3398
  #, php-format
3399
  msgid "The code is valid for %s minutes."
3400
  msgstr ""
@@ -3407,27 +3536,27 @@ msgid ""
3407
  "has been tampered with."
3408
  msgstr ""
3409
 
3410
- #: admin/cerber-admin.php:846
3411
  msgid "The file has been deleted permanently."
3412
  msgstr ""
3413
 
3414
- #: admin/cerber-admin.php:861
3415
  msgid "The file has been restored to its original location."
3416
  msgstr ""
3417
 
3418
- #: cerber-settings.php:1486
3419
  msgid "The full access mode requires the PRO version of WP Cerber"
3420
  msgstr ""
3421
 
3422
- #: admin/cerber-dashboard.php:5626
3423
  msgid "The IP address you are trying to add is already in the list"
3424
  msgstr ""
3425
 
3426
- #: admin/cerber-admin.php:891
3427
  msgid "The list is empty."
3428
  msgstr ""
3429
 
3430
- #: cerber-settings.php:1060
3431
  msgid ""
3432
  "The scanner automatically scans the website, removes malware and sends email "
3433
  "reports with the results of a scan"
@@ -3440,7 +3569,7 @@ msgid ""
3440
  "(checksums) provided by the developer of %s."
3441
  msgstr ""
3442
 
3443
- #: cerber-settings.php:983
3444
  msgid ""
3445
  "The scanner monitors file changes, verifies the integrity of WordPress, "
3446
  "plugins, and themes, and detects malware"
@@ -3452,11 +3581,11 @@ msgid ""
3452
  "it does not belong to any known part of the website and should not be here."
3453
  msgstr ""
3454
 
3455
- #: admin/cerber-admin-settings.php:978
3456
  msgid "The schedule has been updated"
3457
  msgstr ""
3458
 
3459
- #: nexus/cerber-nexus.php:148
3460
  msgid ""
3461
  "The token is unique to this website. Keep it secret. Install the token on a "
3462
  "master website to grant access to this website."
@@ -3470,52 +3599,52 @@ msgstr ""
3470
  msgid "The website you are trying to add is already in the list"
3471
  msgstr ""
3472
 
3473
- #: cerber-load.php:4875 cerber-load.php:4876
3474
- msgid "The WP Cerber security plugin has been deactivated"
3475
  msgstr ""
3476
 
3477
- #: cerber-load.php:4892
3478
- msgid "The WP Cerber security plugin is now active"
3479
  msgstr ""
3480
 
3481
- #: admin/cerber-admin.php:713
3482
  msgid "There are no files in the quarantine at the moment."
3483
  msgstr ""
3484
 
3485
- #: admin/cerber-dashboard.php:5761
3486
  msgid "These features are available in the professional version of WP Cerber."
3487
  msgstr ""
3488
 
3489
- #: cerber-settings.php:705
3490
  msgid ""
3491
  "These features help your organization to be in compliance with personal data "
3492
  "protection laws"
3493
  msgstr ""
3494
 
3495
- #: admin/cerber-dashboard.php:3327
3496
  msgid "These files have been added to the ignore list"
3497
  msgstr ""
3498
 
3499
- #: admin/cerber-dashboard.php:3323
3500
  msgid "These files have been moved to the quarantine"
3501
  msgstr ""
3502
 
3503
- #: cerber-settings.php:1196
3504
  msgid "These files will never be deleted during automatic cleanup."
3505
  msgstr ""
3506
 
3507
- #: cerber-settings.php:1119
3508
  msgid ""
3509
  "These policies are automatically enforced at the end of every scan based on "
3510
  "its results. All affected files are moved to the quarantine."
3511
  msgstr ""
3512
 
3513
- #: cerber-settings.php:137
3514
  msgid ""
3515
  "These restrictions do not apply to IP addresses in the White IP Access List"
3516
  msgstr ""
3517
 
3518
- #: cerber-settings.php:1287
3519
  msgid ""
3520
  "These settings enable you to fine-tune the behavior of anti-spam algorithms "
3521
  "and avoid false positives"
@@ -3551,21 +3680,27 @@ msgctxt "This is a risk level."
3551
  msgid "Medium"
3552
  msgstr ""
3553
 
3554
- #: cerber-load.php:4959
 
 
 
 
 
 
3555
  msgid "This message was sent by"
3556
  msgstr ""
3557
 
3558
- #: admin/cerber-dashboard.php:3331
3559
  msgid ""
3560
  "This scan report was generated by the previous version of WP Cerber. Please "
3561
  "run a new scan to get consistent and accurate results."
3562
  msgstr ""
3563
 
3564
- #: admin/cerber-admin.php:534
3565
  msgid "This type of file is not supported. Please upload a ZIP archive."
3566
  msgstr ""
3567
 
3568
- #: cerber-2fa.php:363
3569
  msgid ""
3570
  "This verification PIN code is expired. We have just sent a new one to your "
3571
  "email."
@@ -3575,29 +3710,25 @@ msgstr ""
3575
  msgid "This website can be managed from a master website"
3576
  msgstr ""
3577
 
3578
- #: nexus/cerber-nexus.php:266
3579
  msgid "This website is set as master."
3580
  msgstr ""
3581
 
3582
- #: nexus/cerber-nexus.php:270
3583
  msgid "This website is set as slave."
3584
  msgstr ""
3585
 
3586
- #: cerber-settings.php:299
3587
- msgid "Threshold"
3588
- msgstr ""
3589
-
3590
- #: admin/cerber-admin-settings.php:779
3591
  msgid ""
3592
  "To avoid false positives and get better anti-spam performance, please clear "
3593
  "the plugin cache."
3594
  msgstr ""
3595
 
3596
- #: cerber-load.php:4917 cerber-load.php:4925
3597
  msgid "To change reporting settings visit"
3598
  msgstr ""
3599
 
3600
- #: cerber-load.php:5743
3601
  msgid "To delete the alert, click here"
3602
  msgstr ""
3603
 
@@ -3605,14 +3736,14 @@ msgstr ""
3605
  msgid "To get the most out of WP Cerber, follow these steps:"
3606
  msgstr ""
3607
 
3608
- #: admin/cerber-dashboard.php:3882
3609
  #, php-format
3610
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
3611
  msgid ""
3612
  "Selected countries are not permitted to %s, other countries are permitted to"
3613
  msgstr ""
3614
 
3615
- #: admin/cerber-dashboard.php:3879
3616
  #, php-format
3617
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
3618
  msgid ""
@@ -3623,7 +3754,7 @@ msgstr ""
3623
  msgid "To proceed, please select the mode for this website"
3624
  msgstr ""
3625
 
3626
- #: nexus/cerber-nexus.php:151
3627
  msgid "To revoke the token and disable remote management, click here:"
3628
  msgstr ""
3629
 
@@ -3634,11 +3765,11 @@ msgid ""
3634
  "version."
3635
  msgstr ""
3636
 
3637
- #: cerber-settings.php:600 cerber-settings.php:669
3638
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
3639
  msgstr ""
3640
 
3641
- #: cerber-settings.php:841 cerber-settings.php:903
3642
  msgid "To specify a REGEX pattern, enclose a whole line in two braces."
3643
  msgstr ""
3644
 
@@ -3646,58 +3777,58 @@ msgstr ""
3646
  msgid "To view full report visit"
3647
  msgstr ""
3648
 
3649
- #: admin/cerber-dashboard.php:88 admin/cerber-dashboard.php:5470
3650
  msgid "Tools"
3651
  msgstr ""
3652
 
3653
- #: admin/cerber-admin.php:1232
3654
  msgid "Top 10 largest files"
3655
  msgstr ""
3656
 
3657
- #: admin/cerber-dashboard.php:2135 admin/cerber-users.php:1116
3658
  msgid "Traffic"
3659
  msgstr ""
3660
 
3661
- #: admin/cerber-admin.php:888
3662
  msgid "Traffic Insights"
3663
  msgstr ""
3664
 
3665
- #: cerber-settings.php:817
3666
  msgid "Traffic Inspection"
3667
  msgstr ""
3668
 
3669
- #: admin/cerber-dashboard.php:62 admin/cerber-dashboard.php:2096
3670
- #: admin/cerber-dashboard.php:5355
3671
  msgid "Traffic Inspector"
3672
  msgstr ""
3673
 
3674
- #: cerber-settings.php:818
3675
  msgid ""
3676
  "Traffic Inspector is a context-aware web application firewall (WAF) that "
3677
  "protects your website by recognizing and denying malicious HTTP requests"
3678
  msgstr ""
3679
 
3680
- #: cerber-settings.php:869
3681
  msgid "Traffic Logging"
3682
  msgstr ""
3683
 
3684
- #: cerber-settings.php:1324
3685
  msgid "Trash spam comments"
3686
  msgstr ""
3687
 
3688
- #: cerber-2fa.php:660
3689
  msgid "Try again"
3690
  msgstr ""
3691
 
3692
- #: admin/cerber-users.php:10 admin/cerber-users.php:481
3693
  msgid "Two-Factor Authentication"
3694
  msgstr ""
3695
 
3696
- #: admin/cerber-users.php:485
3697
  msgid "Two-factor authentication"
3698
  msgstr ""
3699
 
3700
- #: admin/cerber-users.php:101
3701
  msgid "Two-Factor Authentication Email"
3702
  msgstr ""
3703
 
@@ -3717,11 +3848,11 @@ msgstr ""
3717
  msgid "Unable to check the integrity of WordPress files due to a network error"
3718
  msgstr ""
3719
 
3720
- #: cerber-common.php:3290
3721
  msgid "Unable to copy the file"
3722
  msgstr ""
3723
 
3724
- #: cerber-common.php:3279
3725
  msgid "Unable to create the directory"
3726
  msgstr ""
3727
 
@@ -3729,7 +3860,7 @@ msgstr ""
3729
  msgid "Unable to delete"
3730
  msgstr ""
3731
 
3732
- #: cerber-common.php:3296
3733
  msgid "Unable to delete the file"
3734
  msgstr ""
3735
 
@@ -3741,11 +3872,11 @@ msgstr ""
3741
  msgid "Unable to process file"
3742
  msgstr ""
3743
 
3744
- #: admin/cerber-dashboard.php:674
3745
- msgid "Unable to send email to"
3746
  msgstr ""
3747
 
3748
- #: admin/cerber-admin-settings.php:981
3749
  msgid "Unable to update the schedule"
3750
  msgstr ""
3751
 
@@ -3757,25 +3888,26 @@ msgstr ""
3757
  msgid "Unattended suspicious file"
3758
  msgstr ""
3759
 
3760
- #: cerber-whois.php:241 cerber-whois.php:272 cerber-common.php:1928
3761
- #: nexus/cerber-slave-list.php:333 admin/cerber-dashboard.php:457
3762
- #: admin/cerber-dashboard.php:4205 admin/cerber-dashboard.php:4808
 
3763
  msgid "Unknown"
3764
  msgstr ""
3765
 
3766
- #: admin/cerber-dashboard.php:597
3767
  msgid "unknown"
3768
  msgstr ""
3769
 
3770
- #: admin/cerber-dashboard.php:4731
3771
  msgid "Unknown Google's bot"
3772
  msgstr ""
3773
 
3774
- #: cerber-common.php:1814
3775
  msgid "Unknown label"
3776
  msgstr ""
3777
 
3778
- #: cerber-load.php:4852
3779
  msgid "unspecified"
3780
  msgstr ""
3781
 
@@ -3787,7 +3919,7 @@ msgstr ""
3787
  msgid "Unwanted file extension"
3788
  msgstr ""
3789
 
3790
- #: cerber-settings.php:1013
3791
  msgid "Unwanted file extensions"
3792
  msgstr ""
3793
 
@@ -3803,270 +3935,283 @@ msgstr ""
3803
  msgid "Upgrade WP Cerber"
3804
  msgstr ""
3805
 
3806
- #: admin/cerber-tools.php:50 admin/cerber-admin.php:257
3807
  msgid "Upload file"
3808
  msgstr ""
3809
 
3810
- #: cerber-settings.php:282
3811
  msgid "Use 404 template from the active theme"
3812
  msgstr ""
3813
 
3814
- #: cerber-settings.php:1203
3815
  msgid "Use absolute paths. One item per line."
3816
  msgstr ""
3817
 
3818
- #: cerber-settings.php:1212
3819
  msgid "Use comma to separate items."
3820
  msgstr ""
3821
 
3822
- #: cerber-settings.php:1157 cerber-settings.php:1170
3823
  msgid "Use comma to separate multiple extensions"
3824
  msgstr ""
3825
 
3826
- #: cerber-settings.php:759 cerber-settings.php:807 cerber-settings.php:922
3827
- #: cerber-settings.php:1109
3828
  msgid "Use comma to specify multiple values"
3829
  msgstr ""
3830
 
3831
- #: cerber-settings.php:1249
3832
  msgid "Use custom URL for the WordPress comment form"
3833
  msgstr ""
3834
 
3835
- #: cerber-settings.php:351
3836
  msgid "Use file"
3837
  msgstr ""
3838
 
3839
- #: admin/cerber-users.php:471
3840
  msgid "Use global policies"
3841
  msgstr ""
3842
 
3843
- #: cerber-settings.php:374
3844
  msgid "Use ISO 8601 date format for CSV export files"
3845
  msgstr ""
3846
 
3847
- #: cerber-settings.php:1291
3848
  msgid "Use less restrictive policies (allow AJAX)"
3849
  msgstr ""
3850
 
3851
- #: cerber-settings.php:832
3852
  msgid ""
3853
  "Use less restrictive security filters for IP addresses in the White IP "
3854
  "Access List"
3855
  msgstr ""
3856
 
3857
- #: cerber-settings.php:1431
3858
  msgid "Use master language"
3859
  msgstr ""
3860
 
3861
- #: admin/cerber-dashboard.php:3910
3862
  msgid "Use REST API"
3863
  msgstr ""
3864
 
3865
- #: cerber-settings.php:174 cerber-settings.php:610 cerber-settings.php:637
3866
- #: cerber-settings.php:831 cerber-settings.php:1300 cerber-settings.php:1398
 
 
 
 
 
 
 
 
3867
  msgid "Use White IP Access List"
3868
  msgstr ""
3869
 
3870
- #: admin/cerber-dashboard.php:3909
3871
  msgid "Use XML-RPC"
3872
  msgstr ""
3873
 
3874
- #: cerber-load.php:5711 admin/cerber-users.php:923
3875
  msgid "User"
3876
  msgstr ""
3877
 
3878
- #: admin/cerber-dashboard.php:2089
3879
  msgid "user"
3880
  msgid_plural "users"
3881
  msgstr[0] ""
3882
  msgstr[1] ""
3883
 
3884
- #: cerber-common.php:1738
3885
  msgid "User activated"
3886
  msgstr ""
3887
 
3888
- #: admin/cerber-users.php:1093
3889
  msgid "User Activity"
3890
  msgstr ""
3891
 
3892
- #: admin/cerber-dashboard.php:4539
3893
  msgid "User Agent"
3894
  msgstr ""
3895
 
3896
- #: cerber-common.php:1728
3897
  msgid "User application password created"
3898
  msgstr ""
3899
 
3900
  #. %s is the name of a website administrator who created the password.
3901
- #: cerber-common.php:1730
3902
  #, php-format
3903
  msgid "User application password created by %s"
3904
  msgstr ""
3905
 
3906
- #: cerber-common.php:1733
3907
  msgid "User application password deleted"
3908
  msgstr ""
3909
 
3910
  #. %s is the name of a website administrator who deleted the password.
3911
- #: cerber-common.php:1735
3912
  #, php-format
3913
  msgid "User application password deleted by %s"
3914
  msgstr ""
3915
 
3916
- #: cerber-common.php:1727
3917
  msgid "User application password updated"
3918
  msgstr ""
3919
 
3920
- #: cerber-common.php:1770
3921
  msgid "User blocked by administrator"
3922
  msgstr ""
3923
 
3924
- #: cerber-common.php:1659
3925
  msgid "User created"
3926
  msgstr ""
3927
 
3928
  #. %s is the name of a website administrator who created the user.
3929
- #: cerber-common.php:1661
3930
  #, php-format
3931
  msgid "User created by %s"
3932
  msgstr ""
3933
 
3934
- #: cerber-common.php:1718
3935
  msgid "User creation denied"
3936
  msgstr ""
3937
 
3938
- #: cerber-common.php:1663
3939
  msgid "User deleted"
3940
  msgstr ""
3941
 
3942
  #. %s is the name of a website administrator who deleted the user.
3943
- #: cerber-common.php:1665
3944
  #, php-format
3945
  msgid "User deleted by %s"
3946
  msgstr ""
3947
 
3948
- #: admin/cerber-dashboard.php:953 admin/cerber-dashboard.php:4057
3949
  msgid "User ID"
3950
  msgstr ""
3951
 
3952
- #: admin/cerber-admin.php:887
3953
  msgid "User Insights"
3954
  msgstr ""
3955
 
3956
- #: admin/cerber-users.php:43 admin/cerber-users.php:49
3957
  msgid "User is not permitted to log into the website"
3958
  msgstr ""
3959
 
3960
- #: admin/cerber-dashboard.php:952
3961
  msgid "User login"
3962
  msgstr ""
3963
 
3964
- #: cerber-settings.php:644 admin/cerber-users.php:68
3965
  msgid "User Message"
3966
  msgstr ""
3967
 
3968
- #: cerber-settings.php:616
3969
  msgid "User message"
3970
  msgstr ""
3971
 
3972
- #: cerber-common.php:1722
3973
  msgid "User metadata update denied"
3974
  msgstr ""
3975
 
3976
- #: admin/cerber-dashboard.php:70 admin/cerber-dashboard.php:5381
3977
  msgid "User Policies"
3978
  msgstr ""
3979
 
3980
- #: cerber-common.php:1662
3981
  msgid "User registered"
3982
  msgstr ""
3983
 
3984
- #: cerber-settings.php:580
3985
  msgid "User registration"
3986
  msgstr ""
3987
 
3988
- #: cerber-settings.php:498
3989
  msgid "User registrations are limited to these roles"
3990
  msgstr ""
3991
 
3992
- #: cerber-common.php:1719
3993
  msgid "User row update denied"
3994
  msgstr ""
3995
 
3996
- #: cerber-settings.php:687 admin/cerber-users.php:440
3997
  msgid "User session expiration time"
3998
  msgstr ""
3999
 
4000
- #: cerber-common.php:1692
4001
  msgid "User session terminated"
4002
  msgstr ""
4003
 
4004
  #. %s is the name of a website administrator who terminated the session.
4005
- #: cerber-common.php:1694
4006
  #, php-format
4007
  msgid "User session terminated by %s"
4008
  msgstr ""
4009
 
4010
- #: admin/cerber-dashboard.php:954 admin/cerber-dashboard.php:1333
4011
  msgid "Username"
4012
  msgstr ""
4013
 
4014
- #: cerber-load.php:1953
4015
  msgid "Username is not allowed. Please choose another one."
4016
  msgstr ""
4017
 
4018
- #: cerber-common.php:1771
 
4019
  msgid "Username is prohibited"
4020
  msgstr ""
4021
 
4022
- #: cerber-load.php:5715
4023
  msgid "Username used"
4024
  msgstr ""
4025
 
4026
- #: cerber-settings.php:669
4027
  msgid ""
4028
  "Usernames from this list are not allowed to log in or register. Any IP "
4029
  "address, have tried to use any of these usernames, will be immediately "
4030
  "blocked. Use comma to separate logins."
4031
  msgstr ""
4032
 
4033
- #: admin/cerber-dashboard.php:1093 admin/cerber-dashboard.php:4603
4034
  msgid "Users"
4035
  msgstr ""
4036
 
4037
- #: cerber-settings.php:532
4038
  msgid "Users with these roles are permitted to add new roles"
4039
  msgstr ""
4040
 
4041
- #: cerber-settings.php:560
4042
  msgid "Users with these roles are permitted to change protected settings"
4043
  msgstr ""
4044
 
4045
- #: cerber-settings.php:537
4046
  msgid "Users with these roles are permitted to change role capabilities"
4047
  msgstr ""
4048
 
4049
- #: cerber-settings.php:509
4050
  msgid "Users with these roles are permitted to change sensitive user data"
4051
  msgstr ""
4052
 
4053
- #: cerber-settings.php:504
4054
  msgid "Users with these roles are permitted to create new accounts"
4055
  msgstr ""
4056
 
4057
- #: admin/cerber-dashboard.php:2693
4058
  msgid "Users' Activity"
4059
  msgstr ""
4060
 
 
 
 
 
4061
  #: cerber-scanner.php:1614
4062
  msgid "Verified"
4063
  msgstr ""
4064
 
4065
- #: cerber-2fa.php:673
4066
  msgid "Verify"
4067
  msgstr ""
4068
 
4069
- #: cerber-2fa.php:668
4070
  msgid "Verify it's you"
4071
  msgstr ""
4072
 
@@ -4082,57 +4227,57 @@ msgstr ""
4082
  msgid "Verifying the integrity of WordPress"
4083
  msgstr ""
4084
 
4085
- #: admin/cerber-dashboard.php:2867 admin/cerber-dashboard.php:3395
4086
  msgid "View Activity"
4087
  msgstr ""
4088
 
4089
- #: cerber-load.php:4864
4090
  msgid "View activity for this IP"
4091
  msgstr ""
4092
 
4093
- #: cerber-load.php:4827 cerber-load.php:5742
4094
  msgid "View activity in the Dashboard"
4095
  msgstr ""
4096
 
4097
- #: admin/cerber-dashboard.php:1061 admin/cerber-dashboard.php:1072
4098
- #: admin/cerber-dashboard.php:1085 admin/cerber-dashboard.php:2736
4099
- #: admin/cerber-dashboard.php:4600
4100
  msgid "View all"
4101
  msgstr ""
4102
 
4103
- #: admin/cerber-dashboard.php:2083 admin/cerber-dashboard.php:2084
4104
  msgid "view all"
4105
  msgstr ""
4106
 
4107
- #: admin/cerber-dashboard.php:1391
4108
  msgid "View all logged events"
4109
  msgstr ""
4110
 
4111
- #: admin/cerber-dashboard.php:4574
4112
  msgid "View all logged requests"
4113
  msgstr ""
4114
 
4115
- #: cerber-settings.php:480
4116
  msgid "View all REST API requests"
4117
  msgstr ""
4118
 
4119
- #: cerber-settings.php:1232
4120
  msgid "View bot events"
4121
  msgstr ""
4122
 
4123
- #: cerber-settings.php:480
4124
  msgid "View denied REST API requests"
4125
  msgstr ""
4126
 
4127
- #: cerber-load.php:4865
4128
  msgid "View lockouts in the Dashboard"
4129
  msgstr ""
4130
 
4131
- #: cerber-settings.php:1338
4132
  msgid "View reCAPTCHA events"
4133
  msgstr ""
4134
 
4135
- #: cerber-settings.php:188 cerber-settings.php:189
4136
  msgid "View violations in the log"
4137
  msgstr ""
4138
 
@@ -4148,23 +4293,23 @@ msgstr ""
4148
  msgid "Want to make WP Cerber even more powerful?"
4149
  msgstr ""
4150
 
4151
- #: admin/cerber-admin.php:251
4152
  msgid "We have not found any integrity data to verify"
4153
  msgstr ""
4154
 
4155
- #: cerber-load.php:8041
4156
  msgid "We need your support to keep moving forward"
4157
  msgstr ""
4158
 
4159
- #: cerber-load.php:4688
4160
  msgid "We're sorry, you are not allowed to proceed"
4161
  msgstr ""
4162
 
4163
- #: cerber-2fa.php:657
4164
  msgid "We've sent a verification PIN code to your email"
4165
  msgstr ""
4166
 
4167
- #: cerber-load.php:4872 cerber-load.php:4883 nexus/cerber-slave-list.php:44
4168
  msgid "Website"
4169
  msgstr ""
4170
 
@@ -4187,21 +4332,21 @@ msgstr ""
4187
  msgid "Website URL"
4188
  msgstr ""
4189
 
4190
- #: cerber-load.php:5050
4191
  msgid "Weekly Report"
4192
  msgstr ""
4193
 
4194
- #: cerber-load.php:4914
4195
  msgid "Weekly report"
4196
  msgstr ""
4197
 
4198
- #: cerber-settings.php:793
4199
  msgid ""
4200
  "Weekly report is a summary of all activities and suspicious events occurred "
4201
  "during the last seven days"
4202
  msgstr ""
4203
 
4204
- #: cerber-settings.php:792
4205
  msgid "Weekly reports"
4206
  msgstr ""
4207
 
@@ -4213,7 +4358,7 @@ msgstr ""
4213
  msgid "What do you want to import?"
4214
  msgstr ""
4215
 
4216
- #: admin/cerber-users.php:451
4217
  msgid "When the limit on concurrent user sessions is reached"
4218
  msgstr ""
4219
 
@@ -4235,17 +4380,17 @@ msgid ""
4235
  "loaded. The Custom login URL and Access Lists will not be changed."
4236
  msgstr ""
4237
 
4238
- #: admin/cerber-dashboard.php:275 admin/cerber-dashboard.php:1603
4239
- #: admin/cerber-dashboard.php:1687 admin/cerber-dashboard.php:2091
4240
  #: admin/cerber-tools.php:69
4241
  msgid "White IP Access List"
4242
  msgstr ""
4243
 
4244
- #: admin/cerber-dashboard.php:5947
4245
  msgid "WooCommerce Log In"
4246
  msgstr ""
4247
 
4248
- #: admin/cerber-dashboard.php:5948
4249
  msgid "WooCommerce Log Out"
4250
  msgstr ""
4251
 
@@ -4253,24 +4398,20 @@ msgstr ""
4253
  msgid "WordPress"
4254
  msgstr ""
4255
 
4256
- #: cerber-settings.php:1142
4257
  msgid "WordPress uploads analysis"
4258
  msgstr ""
4259
 
4260
- #: cerber-load.php:4893 cerber-load.php:5981
4261
  msgid "WP Cerber is now active and has started protecting your site"
4262
  msgstr ""
4263
 
4264
- #: cerber-load.php:4799
4265
- msgid "WP Cerber notify"
4266
- msgstr ""
4267
-
4268
- #: cerber-load.php:5925 cerber-common.php:523
4269
  #, php-format
4270
  msgid "WP Cerber requires PHP %s or higher. You are running %s."
4271
  msgstr ""
4272
 
4273
- #: cerber-load.php:5929 cerber-common.php:527
4274
  #, php-format
4275
  msgid "WP Cerber requires WordPress %s or higher. You are running %s."
4276
  msgstr ""
@@ -4279,12 +4420,12 @@ msgstr ""
4279
  msgid "WP Cerber Security, Anti-spam & Malware Scan"
4280
  msgstr ""
4281
 
4282
- #: cerber-settings.php:352
4283
  msgid "Write failed login attempts to the file"
4284
  msgstr ""
4285
 
4286
- #: admin/cerber-dashboard.php:2009 admin/cerber-users.php:52
4287
- #: admin/cerber-users.php:1082
4288
  msgid "You"
4289
  msgstr ""
4290
 
@@ -4292,48 +4433,48 @@ msgstr ""
4292
  msgid "You are here:"
4293
  msgstr ""
4294
 
4295
- #: cerber-load.php:398
4296
  msgid "You are not allowed to log in"
4297
  msgstr ""
4298
 
4299
- #: cerber-load.php:388 admin/cerber-users.php:463
4300
  msgid "You are not allowed to log in. Ask your administrator for assistance."
4301
  msgstr ""
4302
 
4303
- #: cerber-load.php:1932 cerber-load.php:1938 cerber-load.php:1943
4304
- #: cerber-load.php:1963 cerber-load.php:1968
4305
  msgid "You are not allowed to register."
4306
  msgstr ""
4307
 
4308
- #: admin/cerber-dashboard.php:365
4309
  msgid "You cannot add your IP address or network"
4310
  msgstr ""
4311
 
4312
- #: cerber-load.php:417
4313
  #, php-format
4314
  msgid "You have %d login attempt remaining."
4315
  msgid_plural "You have %d login attempts remaining."
4316
  msgstr[0] ""
4317
  msgstr[1] ""
4318
 
4319
- #: admin/cerber-admin-settings.php:712
4320
  msgid ""
4321
  "You have disabled the default login page. Ensure that you have configured an "
4322
  "alternative login page. Otherwise, you will not be able to log in."
4323
  msgstr ""
4324
 
4325
- #: cerber-2fa.php:366
4326
  msgid "You have entered an incorrect verification PIN code"
4327
  msgstr ""
4328
 
4329
- #: cerber-load.php:394
4330
  #, php-format
4331
  msgid ""
4332
  "You have exceeded the number of allowed login attempts. Please try again in "
4333
  "%d minutes."
4334
  msgstr ""
4335
 
4336
- #: cerber-load.php:414
4337
  msgid "You have only one login attempt remaining."
4338
  msgstr ""
4339
 
@@ -4346,47 +4487,47 @@ msgstr ""
4346
  msgid "You have switched to %s"
4347
  msgstr ""
4348
 
4349
- #: admin/cerber-admin.php:253
4350
  msgid ""
4351
  "You have to upload a ZIP archive from which you've installed it. This "
4352
  "enables the security scanner to verify the integrity of the code and detect "
4353
  "malware."
4354
  msgstr ""
4355
 
4356
- #: cerber-2fa.php:505
4357
  msgid ""
4358
  "You or someone else trying to log into the website. We have to verify that "
4359
  "it's you. If this wasn't you, please immediately reset your password to "
4360
  "safeguard your account."
4361
  msgstr ""
4362
 
4363
- #: admin/cerber-dashboard.php:1385
4364
  msgid "You will be notified when such an event occurs"
4365
  msgstr ""
4366
 
4367
- #: admin/cerber-dashboard.php:285
4368
  msgid "Your IP"
4369
  msgstr ""
4370
 
4371
- #: cerber-load.php:5967
4372
  #, php-format
4373
  msgid "Your IP address %s has been added to the White IP Access List"
4374
  msgstr ""
4375
 
4376
- #: cerber-load.php:4980
4377
  #, php-format
4378
  msgid "Your last sign-in was %s from %s"
4379
  msgstr ""
4380
 
4381
- #: cerber-load.php:4956
4382
  msgid "Your license is valid until"
4383
  msgstr ""
4384
 
4385
- #: cerber-load.php:4951
4386
  msgid "Your login page:"
4387
  msgstr ""
4388
 
4389
- #: cerber-load.php:4689
4390
  msgid ""
4391
  "Your request looks suspiciously similar to automated requests from spam "
4392
  "posting software or it has been denied by a security policy configured by "
4
  msgstr ""
5
  "Project-Id-Version: WP Cerber Security, Anti-spam & Malware Scan\n"
6
  "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2022-05-10 15:55+0000\n"
8
  "POT-Revision-Date: Fri Mar 12 2021 20:21:05 GMT+0300 (Moscow Standard Time)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
24
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
25
  "X-Generator: Loco https://localise.biz/"
26
 
27
+ #: admin/cerber-admin-settings.php:357
28
  #, php-format
29
  msgid "%s registrations are allowed within %s minutes from one IP address"
30
  msgstr ""
31
 
32
+ #: admin/cerber-admin-settings.php:351
33
  #, php-format
34
  msgid "%s retries are allowed within %s minutes"
35
  msgstr ""
36
 
37
  #. Time difference between two dates, in seconds (sec=second). 1: Number of seconds
38
+ #: cerber-common.php:2164
39
  #, php-format
40
  msgid "%s sec"
41
  msgid_plural "%s secs"
42
  msgstr[0] ""
43
  msgstr[1] ""
44
 
45
+ #: cerber-settings.php:1476
46
  msgid ""
47
  "(do not enable it unless you get and enter the Site and Secret keys for the "
48
  "invisible version)"
49
  msgstr ""
50
 
51
+ #: cerber-common.php:1861
52
  msgid "2FA code verified"
53
  msgstr ""
54
 
55
+ #: admin/cerber-users.php:34
56
  msgid "2FA PIN Code"
57
  msgstr ""
58
 
60
  msgid "A database error occurred while importing access list entries"
61
  msgstr ""
62
 
63
+ #: cerber-load.php:4892
64
  msgid "A new activity has occurred"
65
  msgstr ""
66
 
67
+ #: admin/cerber-dashboard.php:2171
68
  msgid "A new version is available"
69
  msgstr ""
70
 
71
+ #: cerber-common.php:2414
72
  #, php-format
73
  msgid "A new version of %s is available. Please install it."
74
  msgstr ""
75
 
76
+ #: cerber-load.php:4849 cerber-load.php:4851
77
  msgid "A new version of WP Cerber is available to install"
78
  msgstr ""
79
 
81
  msgid "A newer version is available"
82
  msgstr ""
83
 
84
+ #. %s is the name of a mobile device or/and email addresses.
85
+ #: admin/cerber-dashboard.php:684
86
+ #, php-format
87
+ msgid "A test message has been sent to %s"
88
+ msgstr ""
89
+
90
+ #: cerber-settings.php:251
91
  msgid ""
92
  "A unique string that does not overlap with slugs of the existing pages or "
93
  "posts"
94
  msgstr ""
95
 
96
+ #: admin/cerber-dashboard.php:1749
97
  msgid "Abuse email:"
98
  msgstr ""
99
 
100
+ #: admin/cerber-dashboard.php:5365 admin/cerber-tools.php:38
101
  #: admin/cerber-tools.php:49
102
  msgid "Access Lists"
103
  msgstr ""
104
 
105
+ #: cerber-settings.php:1583
106
  msgid "Access to this website"
107
  msgstr ""
108
 
109
+ #: cerber-settings.php:469
110
  msgid "Access to WordPress REST API"
111
  msgstr ""
112
 
113
+ #: admin/cerber-dashboard.php:5449
114
  msgid "Accounts & Roles"
115
  msgstr ""
116
 
117
+ #: admin/cerber-dashboard.php:216 admin/cerber-users.php:944
118
+ #: admin/cerber-admin.php:775 admin/cerber-admin.php:930
119
  msgid "Action"
120
  msgstr ""
121
 
122
+ #: admin/cerber-dashboard.php:1923
123
  msgid "Activated"
124
  msgstr ""
125
 
126
+ #: admin/cerber-dashboard.php:2102 admin/cerber-dashboard.php:2132
127
  msgid "active"
128
  msgstr ""
129
 
131
  msgid "Active plugins and updates on"
132
  msgstr ""
133
 
134
+ #: admin/cerber-dashboard.php:1950
135
  msgid "Active sessions"
136
  msgstr ""
137
 
138
+ #: cerber-load.php:5954 cerber-settings.php:345 admin/cerber-dashboard.php:2166
139
+ #: admin/cerber-dashboard.php:5361 admin/cerber-users.php:1130
140
  msgid "Activity"
141
  msgstr ""
142
 
143
+ #: cerber-load.php:5306
144
  msgid "Activity details"
145
  msgstr ""
146
 
147
+ #: admin/cerber-admin.php:890
148
  msgid "Activity Insights"
149
  msgstr ""
150
 
151
+ #: cerber-settings.php:1550
152
  msgid "Add @ site to the page title"
153
  msgstr ""
154
 
160
  msgid "Add a slave website"
161
  msgstr ""
162
 
163
+ #: admin/cerber-dashboard.php:343
164
  msgid "Add Entry"
165
  msgstr ""
166
 
167
+ #: admin/cerber-dashboard.php:1777
168
  msgid "Add IP to the Black List"
169
  msgstr ""
170
 
171
+ #: admin/cerber-dashboard.php:1771
172
  msgid "Add network to the Black List"
173
  msgstr ""
174
 
175
+ #: nexus/cerber-nexus.php:265
176
  msgid "Add slave websites by using access tokens."
177
  msgstr ""
178
 
181
  msgid "Add-ons"
182
  msgstr ""
183
 
184
+ #: admin/cerber-admin.php:926
185
  msgid "Added"
186
  msgstr ""
187
 
188
+ #: admin/cerber-dashboard.php:965
189
  msgid "Additional Details"
190
  msgstr ""
191
 
193
  msgid "Address"
194
  msgstr ""
195
 
196
+ #: cerber-settings.php:1409
197
  msgid "Adjust anti-spam engine"
198
  msgstr ""
199
 
200
+ #: admin/cerber-users.php:91
201
  msgid "Admin Note"
202
  msgstr ""
203
 
204
+ #: admin/cerber-users.php:505
205
  msgid "Advanced mode"
206
  msgstr ""
207
 
208
+ #: admin/cerber-dashboard.php:4694
209
  msgid "Advanced Search"
210
  msgstr ""
211
 
212
+ #: cerber-settings.php:1220
213
  msgid "After every scan"
214
  msgstr ""
215
 
216
+ #: cerber-settings.php:137
217
  msgid "All connected devices"
218
  msgstr ""
219
 
221
  msgid "All countries"
222
  msgstr ""
223
 
224
+ #: cerber-settings.php:1119 cerber-settings.php:1128
225
  msgid "All files"
226
  msgstr ""
227
 
228
+ #: admin/cerber-dashboard.php:3395
229
  msgid "All files have been processed"
230
  msgstr ""
231
 
233
  msgid "All groups"
234
  msgstr ""
235
 
236
+ #: admin/cerber-users.php:1107
237
  msgid "All Logins"
238
  msgstr ""
239
 
240
+ #: admin/cerber-admin.php:785
241
  msgid "All scans"
242
  msgstr ""
243
 
245
  msgid "All servers"
246
  msgstr ""
247
 
248
+ #: cerber-settings.php:1007
249
  msgid "All traffic"
250
  msgstr ""
251
 
252
+ #: cerber-settings.php:485
253
  msgid "Allow access to REST API for logged-in users"
254
  msgstr ""
255
 
256
+ #: cerber-settings.php:490
257
  msgid "Allow REST API for these roles"
258
  msgstr ""
259
 
260
+ #: cerber-settings.php:495
261
  msgid "Allow these namespaces"
262
  msgstr ""
263
 
269
  "everyday. You can disable the sending in the plugin settings at any time."
270
  msgstr ""
271
 
272
+ #: cerber-settings.php:285
273
  msgid "Always block entire subnet Class C of intruders IP"
274
  msgstr ""
275
 
276
+ #: admin/cerber-users.php:19 admin/cerber-users.php:504
277
  msgid "Always enabled"
278
  msgstr ""
279
 
280
+ #: cerber-settings.php:664
281
+ msgid "An optional login form message"
282
+ msgstr ""
283
+
284
+ #: admin/cerber-users.php:86
285
  msgid "An optional message for this user"
286
  msgstr ""
287
 
288
+ #: admin/cerber-dashboard.php:5500
289
  msgid "Analytics"
290
  msgstr ""
291
 
292
+ #: cerber-settings.php:1275
293
  msgid "Analyze the uploads directory"
294
  msgstr ""
295
 
296
+ #: cerber-settings.php:1276
297
  msgid "Analyze the WordPress uploads directory to detect injected files"
298
  msgstr ""
299
 
301
  msgid "Anti-spam"
302
  msgstr ""
303
 
304
+ #: admin/cerber-dashboard.php:5411
305
  msgid "Anti-spam and bot detection settings"
306
  msgstr ""
307
 
308
+ #: admin/cerber-dashboard.php:5413
309
  msgid "Anti-spam engine"
310
  msgstr ""
311
 
312
+ #: cerber-settings.php:1684
313
  msgid "Any activity"
314
  msgstr ""
315
 
316
+ #: admin/cerber-dashboard.php:3868
317
  msgid "Any country is permitted"
318
  msgstr ""
319
 
320
+ #: cerber-common.php:1825
321
  msgid "API request authorization failed"
322
  msgstr ""
323
 
324
+ #: cerber-common.php:1824
325
  msgid "API request authorized"
326
  msgstr ""
327
 
328
+ #: cerber-settings.php:695 admin/cerber-users.php:483
329
  msgid "Application Passwords"
330
  msgstr ""
331
 
332
  #. For translators
333
+ #: admin/cerber-admin.php:886
334
  msgid "Apply"
335
  msgstr ""
336
 
337
+ #: cerber-settings.php:194
338
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
339
  msgstr ""
340
 
341
+ #: admin/cerber-dashboard.php:3387
342
  msgid "Are you sure you want to delete selected files?"
343
  msgstr ""
344
 
346
  msgid "Are you sure you want to delete selected websites?"
347
  msgstr ""
348
 
349
+ #: admin/cerber-dashboard.php:5852 admin/cerber-tools.php:59
350
+ #: admin/cerber-admin.php:739 admin/cerber-admin.php:906
351
  msgid "Are you sure?"
352
  msgstr ""
353
 
354
+ #: nexus/cerber-nexus.php:148
355
  msgid "Are you sure? This permanently invalidates the token."
356
  msgstr ""
357
 
358
+ #: cerber-common.php:1999
359
  msgid "Attempt to access"
360
  msgstr ""
361
 
362
+ #: cerber-common.php:1797 cerber-common.php:2000
363
  msgid "Attempt to access prohibited URL"
364
  msgstr ""
365
 
366
+ #: cerber-common.php:1802
367
  msgid "Attempt to log in denied"
368
  msgstr ""
369
 
370
+ #: cerber-common.php:1798 cerber-common.php:2001
371
  msgid "Attempt to log in with non-existing username"
372
  msgstr ""
373
 
374
+ #: cerber-common.php:1799 cerber-common.php:2002
375
  msgid "Attempt to log in with prohibited username"
376
  msgstr ""
377
 
378
+ #: cerber-common.php:1803
379
  msgid "Attempt to register denied"
380
  msgstr ""
381
 
382
+ #: cerber-common.php:2008
383
  msgid "Attempt to upload a file with malicious code"
384
  msgstr ""
385
 
386
+ #: cerber-common.php:1805
387
  msgid "Attempt to upload malicious file denied"
388
  msgstr ""
389
 
390
+ #: cerber-load.php:5320
391
  msgid "Attempts to log in with non-existing usernames"
392
  msgstr ""
393
 
394
+ #: admin/cerber-dashboard.php:2897
395
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
396
  msgstr ""
397
 
398
+ #: admin/cerber-admin-settings.php:685 admin/cerber-admin-settings.php:686
399
  msgid "Attention! You have changed the login URL! The new login URL is"
400
  msgstr ""
401
 
402
+ #: admin/cerber-admin.php:1500
403
  msgid "Authorization Failed"
404
  msgstr ""
405
 
406
+ #: admin/cerber-admin.php:1499
407
  msgid "Authorized"
408
  msgstr ""
409
 
410
+ #: cerber-settings.php:645
411
  msgid "Authorized Access"
412
  msgstr ""
413
 
414
+ #: cerber-settings.php:650
415
  msgid "Authorized users only"
416
  msgstr ""
417
 
418
+ #: cerber-settings.php:1186
419
  msgid "Automated recurring scan schedule"
420
  msgstr ""
421
 
422
+ #: cerber-settings.php:1245
423
  msgid "Automatic cleanup of malware and suspicious files"
424
  msgstr ""
425
 
426
+ #: admin/cerber-admin.php:772
427
  msgid "Automatic deletion"
428
  msgstr ""
429
 
430
+ #: cerber-settings.php:1306
431
  msgid "Automatic recovery of modified and infected files"
432
  msgstr ""
433
 
443
  msgid "Automatically recovered"
444
  msgstr ""
445
 
446
+ #: admin/cerber-admin.php:1215
447
  msgid "Average Size"
448
  msgstr ""
449
 
450
+ #: cerber-load.php:8332
451
  msgid "Awesome!"
452
  msgstr ""
453
 
454
+ #: admin/cerber-admin.php:1004
455
  msgid "Back to list"
456
  msgstr ""
457
 
458
+ #: cerber-settings.php:153
459
  msgid "Be careful about enabling these options."
460
  msgstr ""
461
 
462
+ #: cerber-settings.php:1457
463
  msgid ""
464
  "Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
465
  "key on the Google website"
466
  msgstr ""
467
 
468
+ #: admin/cerber-dashboard.php:280 admin/cerber-dashboard.php:1629
469
+ #: admin/cerber-dashboard.php:1713 admin/cerber-dashboard.php:2124
470
  #: admin/cerber-tools.php:70
471
  msgid "Black IP Access List"
472
  msgstr ""
473
 
474
+ #: admin/cerber-users.php:224
475
  msgid "Block"
476
  msgstr ""
477
 
478
+ #: cerber-settings.php:463
479
  msgid "Block access to the RSS, Atom and RDF feeds"
480
  msgstr ""
481
 
482
+ #: cerber-settings.php:458
483
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
484
  msgstr ""
485
 
486
+ #: cerber-settings.php:428
487
  msgid "Block access to user pages like /?author=n"
488
  msgstr ""
489
 
490
+ #: cerber-settings.php:475
491
  msgid "Block access to users' data via REST API"
492
  msgstr ""
493
 
494
+ #: admin/cerber-users.php:424
495
  msgid "Block access to WordPress Dashboard"
496
  msgstr ""
497
 
498
+ #: cerber-settings.php:480
499
  msgid "Block access to WordPress REST API except any of the following"
500
  msgstr ""
501
 
502
+ #: cerber-settings.php:203
503
  msgid "Block access to wp-login.php"
504
  msgstr ""
505
 
506
+ #: cerber-settings.php:448
507
  msgid "Block execution of PHP scripts in the WordPress media folder"
508
  msgstr ""
509
 
510
+ #: cerber-settings.php:185
511
  msgid "Block IP address for"
512
  msgstr ""
513
 
514
+ #: cerber-settings.php:977
515
  msgid ""
516
  "Block IP addresses that send excessive requests for non-existing pages or "
517
  "scan website for security breaches"
518
  msgstr ""
519
 
520
+ #: cerber-settings.php:284
521
  msgid "Block subnet"
522
  msgstr ""
523
 
524
+ #: cerber-settings.php:443
525
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
526
  msgstr ""
527
 
528
+ #: admin/cerber-users.php:55
529
  msgid "Block User"
530
  msgstr ""
531
 
532
+ #: admin/cerber-users.php:962
533
  msgid "Block user"
534
  msgstr ""
535
 
536
+ #: cerber-common.php:1859
537
  msgid "Blocked by administrator"
538
  msgstr ""
539
 
540
+ #: cerber-common.php:1849
541
  msgid "Blocked by country rule"
542
  msgstr ""
543
 
544
+ #: admin/cerber-users.php:184
545
  msgid "Blocked Users"
546
  msgstr ""
547
 
548
+ #: cerber-common.php:2004
549
  msgid "Bot activity is detected"
550
  msgstr ""
551
 
552
+ #: cerber-common.php:1843
553
  msgid "Bot detected"
554
  msgstr ""
555
 
556
+ #: cerber-settings.php:802 cerber-settings.php:912
557
+ msgid "Brief"
558
+ msgstr ""
559
+
560
+ #: admin/cerber-admin.php:1064
561
  msgid "Brief summary"
562
  msgstr ""
563
 
564
+ #: cerber-2fa.php:521
565
+ msgid "Browser:"
566
+ msgstr ""
567
+
568
+ #: cerber-settings.php:176
569
  msgid "Brute-force attack mitigation and user authentication settings"
570
  msgstr ""
571
 
572
+ #: cerber-settings.php:712
573
  msgid "by date of registration"
574
  msgstr ""
575
 
576
+ #: cerber-load.php:8312
577
  msgid ""
578
  "By sharing your unique opinion on WP Cerber, you help the engineers behind "
579
  "the plugin make greater progress and help other professionals find the right "
581
  "free to use your native language. Thanks!"
582
  msgstr ""
583
 
584
+ #: cerber-load.php:4869
585
+ msgid "By the user"
586
  msgstr ""
587
 
588
+ #: cerber-common.php:2291
589
  msgid "Bytes"
590
  msgstr ""
591
 
592
+ #: cerber-load.php:6208
593
  msgid "Can't activate WP Cerber due to a database error."
594
  msgstr ""
595
 
596
+ #: cerber-2fa.php:663 admin/cerber-dashboard.php:5923
597
  msgid "Cancel"
598
  msgstr ""
599
 
600
+ #: cerber-settings.php:1351
601
  msgid "Cerber anti-spam engine"
602
  msgstr ""
603
 
613
  msgid "Cerber Data Shield Policies"
614
  msgstr ""
615
 
616
+ #: cerber-settings.php:360
617
  msgid "Cerber Lab connection"
618
  msgstr ""
619
 
620
+ #: cerber-settings.php:366
621
  msgid "Cerber Lab protocol"
622
  msgstr ""
623
 
624
+ #: admin/cerber-dashboard.php:2063
625
  msgid "Cerber Quick View"
626
  msgstr ""
627
 
645
  msgid "Cerber User Security"
646
  msgstr ""
647
 
648
+ #: cerber-settings.php:1169
649
  msgid "Change file and directory permissions if it is required to delete files"
650
  msgstr ""
651
 
652
+ #: cerber-settings.php:1168
653
  msgid "Change filesystem permissions"
654
  msgstr ""
655
 
657
  msgid "Changed files"
658
  msgstr ""
659
 
660
+ #: admin/cerber-dashboard.php:5552
661
  msgid "Changelog"
662
  msgstr ""
663
 
664
+ #: admin/cerber-dashboard.php:3043
665
+ msgid "Channels to send alerts"
666
+ msgstr ""
667
+
668
+ #: admin/cerber-dashboard.php:326 admin/cerber-dashboard.php:1699
669
+ #: admin/cerber-dashboard.php:1756 admin/cerber-dashboard.php:1889
670
  msgid "Check for activities"
671
  msgstr ""
672
 
673
+ #: cerber-common.php:323
674
  msgid "Check for requests"
675
  msgstr ""
676
 
677
+ #: admin/cerber-dashboard.php:1415
678
  msgid "Check for requests from the IP address"
679
  msgstr ""
680
 
686
  msgid "Checksum mismatch"
687
  msgstr ""
688
 
689
+ #: cerber-common.php:1768
690
  msgid "Citadel activated!"
691
  msgstr ""
692
 
693
+ #: cerber-settings.php:316 admin/cerber-dashboard.php:2125
694
  msgid "Citadel mode"
695
  msgstr ""
696
 
697
+ #: cerber-settings.php:331
698
+ msgid "Citadel mode duration"
699
  msgstr ""
700
 
701
+ #: cerber-load.php:4806
702
  #, php-format
703
+ msgid ""
704
+ "Citadel mode has been activated after %d failed login attempts in %d minutes."
705
  msgstr ""
706
 
707
+ #: cerber-load.php:4804 cerber-common.php:1844
708
  msgid "Citadel mode is active"
709
  msgstr ""
710
 
711
+ #: cerber-settings.php:326
712
+ msgid "Citadel mode threshold"
713
+ msgstr ""
714
+
715
+ #: admin/cerber-dashboard.php:5497
716
  msgid "Cleaning up"
717
  msgstr ""
718
 
719
+ #: admin/cerber-admin.php:731
720
  msgid "Click here to see the full list of files"
721
  msgstr ""
722
 
723
+ #: admin/cerber-dashboard.php:3951
724
  msgid "Click on a country name to add it to the list of selected countries"
725
  msgstr ""
726
 
732
  msgid "Click to edit"
733
  msgstr ""
734
 
735
+ #: admin/cerber-admin-settings.php:580
736
  msgid "Click to send now"
737
  msgstr ""
738
 
739
+ #: admin/cerber-dashboard.php:5872
740
  msgid "Click to send test"
741
  msgstr ""
742
 
743
+ #: cerber-common.php:1772
744
  msgid "Comment denied"
745
  msgstr ""
746
 
747
+ #: cerber-settings.php:1367 cerber-settings.php:1510
748
  msgid "Comment form"
749
  msgstr ""
750
 
751
+ #: cerber-settings.php:1438
752
  msgid "Comment processing"
753
  msgstr ""
754
 
755
+ #: admin/cerber-dashboard.php:1991
756
  msgid "Comments"
757
  msgstr ""
758
 
760
  msgid "Company"
761
  msgstr ""
762
 
763
+ #: cerber-settings.php:767
764
+ msgid "Configure email parameters for notifications, reports, and alerts"
765
+ msgstr ""
766
+
767
  #: nexus/cerber-nexus.php:71
768
  msgid "Configure this website as a master to manage other website"
769
  msgstr ""
770
 
771
+ #: cerber-settings.php:1204
772
  msgid ""
773
  "Configure what issues to include in the email report and the condition for "
774
  "sending reports"
778
  msgid "Content has been modified"
779
  msgstr ""
780
 
781
+ #: admin/cerber-admin.php:190
782
  msgid "Continue Scanning"
783
  msgstr ""
784
 
785
+ #: cerber-settings.php:758
786
  msgid "Cookies"
787
  msgstr ""
788
 
789
+ #: admin/cerber-dashboard.php:5479
790
  msgid "Countries"
791
  msgstr ""
792
 
793
+ #: admin/cerber-dashboard.php:213 admin/cerber-dashboard.php:1344
794
  msgid "Country"
795
  msgstr ""
796
 
797
+ #: admin/cerber-dashboard.php:3020
798
  msgid "Create Alert"
799
  msgstr ""
800
 
801
+ #: admin/cerber-users.php:940
802
  msgid "Created"
803
  msgstr ""
804
 
805
+ #: admin/cerber-admin.php:116
806
  msgid "Critical issues"
807
  msgstr ""
808
 
809
+ #: admin/cerber-admin.php:174
810
  msgid ""
811
  "Currently a scheduled scan in progress. Please wait until it is finished."
812
  msgstr ""
813
 
814
+ #: cerber-settings.php:1372
815
  msgid "Custom comment URL"
816
  msgstr ""
817
 
818
+ #: cerber-settings.php:245
819
  msgid "Custom login page"
820
  msgstr ""
821
 
822
+ #: cerber-settings.php:250
823
  msgid "Custom login URL"
824
  msgstr ""
825
 
826
+ #: cerber-settings.php:253
827
  msgid ""
828
  "Custom login URL may contain Latin alphanumeric characters, dashes and "
829
  "underscores only"
833
  msgid "Custom signature found"
834
  msgstr ""
835
 
836
+ #: cerber-settings.php:1149
837
  msgid "Custom signatures"
838
  msgstr ""
839
 
840
+ #: admin/cerber-dashboard.php:60 admin/cerber-dashboard.php:2165
841
+ #: admin/cerber-dashboard.php:3238 admin/cerber-dashboard.php:5360
842
  msgid "Dashboard"
843
  msgstr ""
844
 
846
  msgid "Data Shield"
847
  msgstr ""
848
 
849
+ #: admin/cerber-dashboard.php:5447
850
  msgid "Data Shield Policies"
851
  msgstr ""
852
 
853
+ #: admin/cerber-dashboard.php:963 admin/cerber-dashboard.php:1345
854
+ #: admin/cerber-dashboard.php:4128 admin/cerber-dashboard.php:4611
855
  msgid "Date"
856
  msgstr ""
857
 
858
+ #: cerber-settings.php:389
859
  msgid "Date format"
860
  msgstr ""
861
 
862
+ #: cerber-settings.php:396
863
  msgid "Date format for CSV export"
864
  msgstr ""
865
 
866
+ #: cerber-2fa.php:522
867
+ msgid "Date:"
868
+ msgstr ""
869
+
870
+ #: cerber-settings.php:349 cerber-settings.php:355 cerber-settings.php:1095
871
+ #: cerber-settings.php:1101 cerber-settings.php:1180 cerber-settings.php:1450
872
  msgid "days"
873
  msgstr ""
874
 
875
+ #: admin/cerber-dashboard.php:2898
876
  msgid "Deactivate"
877
  msgstr ""
878
 
879
+ #: admin/cerber-dashboard.php:2102
880
  msgid "deactivate"
881
  msgstr ""
882
 
883
+ #: cerber-settings.php:202
884
  msgid "Default processing"
885
  msgstr ""
886
 
887
+ #: admin/cerber-dashboard.php:756
888
  msgid "Default settings have been loaded"
889
  msgstr ""
890
 
897
  "powerful email, mobile and desktop notifications."
898
  msgstr ""
899
 
900
+ #: cerber-settings.php:259
901
  msgid "Defer rendering the custom login page"
902
  msgstr ""
903
 
904
+ #: cerber-settings.php:258
905
  msgid "Deferred rendering"
906
  msgstr ""
907
 
908
+ #: admin/cerber-dashboard.php:1400 admin/cerber-tools.php:378
909
+ #: admin/cerber-admin.php:228
910
  msgid "Delete"
911
  msgstr ""
912
 
913
+ #: admin/cerber-dashboard.php:3024
914
  msgid "Delete Alert"
915
  msgstr ""
916
 
917
+ #: cerber-settings.php:1254
918
  msgid "Delete files in the WordPress uploads directory"
919
  msgstr ""
920
 
921
+ #: cerber-settings.php:1263
922
  msgid "Delete files with unwanted extensions"
923
  msgstr ""
924
 
925
+ #: admin/cerber-admin.php:749
926
  msgid "Delete permanently"
927
  msgstr ""
928
 
929
+ #: cerber-settings.php:1294
930
  msgid "Delete publicly accessible files with these extensions"
931
  msgstr ""
932
 
933
+ #: cerber-settings.php:1178
934
  msgid "Delete quarantined files after"
935
  msgstr ""
936
 
937
+ #: cerber-settings.php:1250
938
  msgid "Delete unattended files"
939
  msgstr ""
940
 
941
+ #: cerber-settings.php:734
942
  msgid "Delete user sessions data when user data is erased"
943
  msgstr ""
944
 
950
  msgid "Deleted"
951
  msgstr ""
952
 
953
+ #: cerber-common.php:1842 cerber-common.php:1852
954
  msgid "Denied"
955
  msgstr ""
956
 
957
+ #: cerber-settings.php:615
958
  msgid "Deny all email addresses that match the following"
959
  msgstr ""
960
 
961
+ #: cerber-settings.php:204
962
  msgid "Deny authentication through wp-login.php"
963
  msgstr ""
964
 
965
+ #: admin/cerber-users.php:470
966
  msgid "Deny further login attempts"
967
  msgstr ""
968
 
969
+ #: cerber-settings.php:1444
970
  msgid "Deny it completely"
971
  msgstr ""
972
 
973
+ #: cerber-common.php:3379
974
  msgid "Destination folder access denied"
975
  msgstr ""
976
 
982
  msgid "Determined by user role policies"
983
  msgstr ""
984
 
985
+ #: admin/cerber-dashboard.php:5550
986
  msgid "Diagnostic"
987
  msgstr ""
988
 
989
+ #: cerber-settings.php:1174 cerber-settings.php:1568 cerber-settings.php:1595
990
+ #: admin/cerber-dashboard.php:5551
991
  msgid "Diagnostic Log"
992
  msgstr ""
993
 
994
+ #: cerber-2fa.php:664
995
  msgid "Did not receive the email?"
996
  msgstr ""
997
 
998
+ #: cerber-settings.php:1156
999
  msgid "Directories to exclude"
1000
  msgstr ""
1001
 
1002
+ #: cerber-settings.php:270
1003
  msgid ""
1004
  "Disable automatic redirection to the login page when /wp-admin/ is requested "
1005
  "by an unauthorized request"
1006
  msgstr ""
1007
 
1008
+ #: cerber-settings.php:1424
1009
  msgid ""
1010
  "Disable bot detection engine for IP addresses in the White IP Access List"
1011
  msgstr ""
1012
 
1013
+ #: cerber-settings.php:1419
1014
  msgid "Disable bot detection engine for logged-in users"
1015
  msgstr ""
1016
 
1017
+ #: cerber-settings.php:269
1018
  msgid "Disable dashboard redirection"
1019
  msgstr ""
1020
 
1021
+ #: cerber-settings.php:462
1022
  msgid "Disable feeds"
1023
  msgstr ""
1024
 
1025
+ #: cerber-settings.php:235
1026
+ msgid "Disable login language switcher"
1027
+ msgstr ""
1028
+
1029
  #: nexus/cerber-slave-list.php:420
1030
  msgid "Disable master mode"
1031
  msgstr ""
1032
 
1033
+ #: cerber-settings.php:452
1034
  msgid "Disable PHP error displaying"
1035
  msgstr ""
1036
 
1037
+ #: cerber-settings.php:447
1038
  msgid "Disable PHP in uploads"
1039
  msgstr ""
1040
 
1041
+ #: cerber-settings.php:1522
1042
  msgid "Disable reCAPTCHA for IP addresses in the White IP Access List"
1043
  msgstr ""
1044
 
1045
+ #: cerber-settings.php:1516
1046
  msgid "Disable reCAPTCHA for logged-in users"
1047
  msgstr ""
1048
 
1049
+ #: cerber-settings.php:479
1050
  msgid "Disable REST API"
1051
  msgstr ""
1052
 
1053
+ #: nexus/cerber-nexus.php:149
1054
  msgid "Disable slave mode"
1055
  msgstr ""
1056
 
1057
+ #: cerber-settings.php:212
1058
  msgid "Disable the default login error message"
1059
  msgstr ""
1060
 
1061
+ #: cerber-settings.php:223
1062
  msgid "Disable the default reset password error message"
1063
  msgstr ""
1064
 
1065
+ #: cerber-settings.php:457
1066
  msgid "Disable XML-RPC"
1067
  msgstr ""
1068
 
1069
+ #: cerber-scanner.php:1717 cerber-settings.php:700 cerber-settings.php:952
1070
+ #: cerber-settings.php:983 cerber-settings.php:1117 cerber-settings.php:1126
1071
+ #: cerber-settings.php:1588 admin/cerber-dashboard.php:2152
1072
+ #: admin/cerber-dashboard.php:2154 admin/cerber-users.php:20
1073
+ #: admin/cerber-users.php:489 admin/cerber-users.php:503
1074
  msgid "Disabled"
1075
  msgstr ""
1076
 
1077
+ #: admin/cerber-dashboard.php:2109 admin/cerber-dashboard.php:2127
1078
  msgid "disabled"
1079
  msgstr ""
1080
 
1081
+ #: cerber-settings.php:306
1082
  msgid "Display 404 page"
1083
  msgstr ""
1084
 
1086
  msgid "Display as"
1087
  msgstr ""
1088
 
1089
+ #: cerber-settings.php:310
1090
  msgid "Display simple 404 page"
1091
  msgstr ""
1092
 
1093
+ #: admin/cerber-users.php:476
1094
  msgid ""
1095
  "Display this message if an attempt to log in is denied because the limit on "
1096
  "concurrent user sessions has been reached"
1097
  msgstr ""
1098
 
1099
+ #: cerber-settings.php:412
1100
  msgid ""
1101
  "Do not add my IP address to the White IP Access List upon plugin activation"
1102
  msgstr ""
1103
 
1104
+ #: cerber-settings.php:536 cerber-settings.php:564 cerber-settings.php:593
1105
  msgid ""
1106
  "Do not apply these policies to the IP addresses in the White IP Access List"
1107
  msgstr ""
1108
 
1109
+ #: cerber-settings.php:657
1110
  msgid ""
1111
  "Do not apply these policy to the IP addresses in the White IP Access List"
1112
  msgstr ""
1113
 
1114
+ #: cerber-settings.php:1021
1115
  msgid "Do not log known crawlers"
1116
  msgstr ""
1117
 
1118
+ #: cerber-settings.php:1026
1119
  msgid "Do not log these locations"
1120
  msgstr ""
1121
 
1122
+ #: cerber-settings.php:1034
1123
  msgid "Do not log these User-Agents"
1124
  msgstr ""
1125
 
1126
+ #: cerber-settings.php:213
1127
  msgid ""
1128
  "Do not reveal non-existing usernames and emails in the failed login attempt "
1129
  "message"
1130
  msgstr ""
1131
 
1132
+ #: cerber-settings.php:224
1133
  msgid ""
1134
  "Do not reveal non-existing usernames and emails in the reset password error "
1135
  "message"
1136
  msgstr ""
1137
 
1138
+ #: admin/cerber-dashboard.php:3105
1139
  msgid "Do not send alerts after this date"
1140
  msgstr ""
1141
 
1142
+ #: cerber-settings.php:453
1143
  msgid "Do not show PHP errors on my website"
1144
  msgstr ""
1145
 
1146
+ #: admin/cerber-dashboard.php:3391
1147
  msgid "Do you want to add selected files to the ignore list?"
1148
  msgstr ""
1149
 
1150
+ #: admin/cerber-dashboard.php:3076 admin/cerber-dashboard.php:4657
1151
  msgid "Documentation"
1152
  msgstr ""
1153
 
1155
  msgid "Download file"
1156
  msgstr ""
1157
 
1158
+ #: admin/cerber-admin.php:89
1159
  msgid "Duration"
1160
  msgstr ""
1161
 
1162
+ #: admin/cerber-users.php:74
1163
  #, php-format
1164
  msgctxt "e.g. blocked by John at 11:00"
1165
  msgid "blocked by %s at %s"
1169
  msgid "Edit"
1170
  msgstr ""
1171
 
1172
+ #: cerber-settings.php:771 cerber-settings.php:932 cerber-settings.php:1234
1173
  msgid "Email Address"
1174
  msgstr ""
1175
 
1176
+ #: cerber-load.php:1945
1177
  msgid "Email address is not permitted."
1178
  msgstr ""
1179
 
1180
+ #: cerber-common.php:1865
1181
  msgid "Email address is prohibited"
1182
  msgstr ""
1183
 
1184
+ #: admin/cerber-dashboard.php:3073
1185
  msgid "Email alerts will be sent to these emails:"
1186
  msgstr ""
1187
 
1188
+ #: admin/cerber-dashboard.php:3073
1189
  msgid "Email alerts will be sent to this email:"
1190
  msgstr ""
1191
 
1192
+ #: cerber-settings.php:766
 
 
 
 
1193
  msgid "Email notifications"
1194
  msgstr ""
1195
 
1196
+ #: admin/cerber-admin-settings.php:377
1197
  #, php-format
1198
  msgid "Enable after %s failed login attempts in the last %s minutes"
1199
  msgstr ""
1200
 
1201
+ #: cerber-settings.php:320
1202
  msgid "Enable authentication log monitoring"
1203
  msgstr ""
1204
 
1205
+ #: cerber-settings.php:726
1206
  msgid "Enable data erase"
1207
  msgstr ""
1208
 
1209
+ #: cerber-settings.php:740
1210
  msgid "Enable data export"
1211
  msgstr ""
1212
 
1213
+ #: cerber-settings.php:1173 cerber-settings.php:1567 cerber-settings.php:1594
1214
  msgid "Enable diagnostic logging"
1215
  msgstr ""
1216
 
1217
+ #: cerber-settings.php:980
1218
  msgid "Enable error shielding"
1219
  msgstr ""
1220
 
1221
+ #: cerber-settings.php:1476
1222
  msgid "Enable invisible reCAPTCHA"
1223
  msgstr ""
1224
 
1226
  msgid "Enable master mode"
1227
  msgstr ""
1228
 
1229
+ #: cerber-settings.php:997
1230
  msgid ""
1231
  "Enable optional traffic logging if you need to monitor suspicious and "
1232
  "malicious activity or solve security issues"
1233
  msgstr ""
1234
 
1235
+ #: cerber-settings.php:1506
1236
  msgid "Enable reCAPTCHA for WooCommerce login form"
1237
  msgstr ""
1238
 
1239
+ #: cerber-settings.php:1496
1240
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
1241
  msgstr ""
1242
 
1243
+ #: cerber-settings.php:1486
1244
  msgid "Enable reCAPTCHA for WooCommerce registration form"
1245
  msgstr ""
1246
 
1247
+ #: cerber-settings.php:1511
1248
  msgid "Enable reCAPTCHA for WordPress comment form"
1249
  msgstr ""
1250
 
1251
+ #: cerber-settings.php:1501
1252
  msgid "Enable reCAPTCHA for WordPress login form"
1253
  msgstr ""
1254
 
1255
+ #: cerber-settings.php:1491
1256
  msgid "Enable reCAPTCHA for WordPress lost password form"
1257
  msgstr ""
1258
 
1259
+ #: cerber-settings.php:1481
1260
  msgid "Enable reCAPTCHA for WordPress registration form"
1261
  msgstr ""
1262
 
1263
+ #: cerber-settings.php:923
1264
  msgid "Enable reporting"
1265
  msgstr ""
1266
 
1268
  msgid "Enable slave mode"
1269
  msgstr ""
1270
 
1271
+ #: cerber-settings.php:949
1272
  msgid "Enable traffic inspection"
1273
  msgstr ""
1274
 
1275
+ #: admin/cerber-dashboard.php:2127
1276
  msgid "enabled"
1277
  msgstr ""
1278
 
1279
+ #: cerber-settings.php:698 admin/cerber-users.php:487
1280
  msgid "Enabled, access to API using standard user passwords is allowed"
1281
  msgstr ""
1282
 
1283
+ #: cerber-settings.php:699 admin/cerber-users.php:488
1284
  msgid "Enabled, no access to API using standard user passwords"
1285
  msgstr ""
1286
 
1287
+ #: admin/cerber-users.php:509
1288
  msgid ""
1289
  "Enforce two-factor authentication if any of the following conditions is true"
1290
  msgstr ""
1291
 
1292
+ #: admin/cerber-users.php:545
1293
  msgid "Enforce two-factor authentication with fixed intervals"
1294
  msgstr ""
1295
 
1296
+ #: cerber-settings.php:1429
1297
  msgid ""
1298
  "Enter a part of query string or query path to exclude a request from "
1299
  "inspection by the engine. One item per line."
1300
  msgstr ""
1301
 
1302
+ #: cerber-settings.php:968
1303
  msgid ""
1304
  "Enter a request URI to exclude the request from inspection. One item per "
1305
  "line."
1306
  msgstr ""
1307
 
1308
+ #: cerber-2fa.php:660
1309
  msgid "Enter the code from the email in the field below."
1310
  msgstr ""
1311
 
1312
+ #: admin/cerber-dashboard.php:2123 admin/cerber-dashboard.php:2124
1313
+ #: admin/cerber-dashboard.php:3216
1314
  msgid "entry"
1315
  msgid_plural "entries"
1316
  msgstr[0] ""
1317
  msgstr[1] ""
1318
 
1319
+ #: cerber-settings.php:975
1320
  msgid "Erroneous Request Shielding"
1321
  msgstr ""
1322
 
1324
  msgid "Error while parsing file"
1325
  msgstr ""
1326
 
1327
+ #: cerber-load.php:742 cerber-load.php:755 cerber-load.php:763
1328
+ #: cerber-load.php:1098 cerber-load.php:1960 cerber-load.php:2283
1329
+ #: cerber-load.php:3398 cerber-common.php:495 cerber-common.php:646
1330
+ #: cerber-common.php:651 cerber-common.php:657 cerber-common.php:661
1331
  #: nexus/cerber-nexus-slave.php:203 nexus/cerber-nexus-slave.php:214
1332
+ #: admin/cerber-admin-settings.php:657 admin/cerber-admin-settings.php:677
1333
+ #: admin/cerber-admin-settings.php:784 admin/cerber-admin.php:876
1334
  msgid "ERROR:"
1335
  msgstr ""
1336
 
1339
  msgid "Error: file %s cannot be used."
1340
  msgstr ""
1341
 
1342
+ #: admin/cerber-dashboard.php:4678
1343
  msgid "Errors"
1344
  msgstr ""
1345
 
1346
+ #: admin/cerber-dashboard.php:964 admin/cerber-dashboard.php:1346
1347
  msgid "Event"
1348
  msgstr ""
1349
 
1359
  msgid "Every hour"
1360
  msgstr ""
1361
 
1362
+ #: admin/cerber-dashboard.php:2149
1363
  msgctxt "Example: Last malware scan: 23 Jan 2018"
1364
  msgid "Last malware scan"
1365
  msgstr ""
1368
  msgid "Executable code found"
1369
  msgstr ""
1370
 
1371
+ #: cerber-common.php:1876
1372
  msgid "Executable file extension detected"
1373
  msgstr ""
1374
 
1375
+ #: cerber-settings.php:1118 cerber-settings.php:1127
1376
  msgid "Executable files"
1377
  msgstr ""
1378
 
1379
+ #: admin/cerber-admin.php:539
1380
  msgid "Executable files are not supported. Please upload a ZIP archive."
1381
  msgstr ""
1382
 
1383
+ #: admin/cerber-dashboard.php:214 admin/cerber-users.php:941
1384
  msgid "Expires"
1385
  msgstr ""
1386
 
1387
+ #: cerber-2fa.php:579
1388
  msgid "expires"
1389
  msgstr ""
1390
 
1391
+ #: admin/cerber-dashboard.php:1377 admin/cerber-dashboard.php:4704
1392
  msgid "Export"
1393
  msgstr ""
1394
 
1396
  msgid "Export settings to the file"
1397
  msgstr ""
1398
 
1399
+ #: admin/cerber-admin.php:1210
1400
  msgid "Extension"
1401
  msgstr ""
1402
 
1403
+ #: admin/cerber-dashboard.php:2115
1404
  msgid "failed attempts"
1405
  msgstr ""
1406
 
1407
+ #: admin/cerber-dashboard.php:1993
1408
  msgid "Failed login attempts"
1409
  msgstr ""
1410
 
1411
+ #: admin/cerber-admin-settings.php:1051
1412
+ #, php-format
1413
+ msgid "Field %s contains an invalid value"
1414
+ msgstr ""
1415
+
1416
+ #: admin/cerber-admin-settings.php:1045
1417
+ #, php-format
1418
+ msgid "Field %s may not be empty"
1419
+ msgstr ""
1420
+
1421
+ #: admin/cerber-admin.php:774 admin/cerber-admin.php:929
1422
  msgid "File"
1423
  msgstr ""
1424
 
1425
+ #: admin/cerber-admin.php:361
1426
  msgid ""
1427
  "File access error. Possibly scan results are outdated. Please run Quick or "
1428
  "Full Scan."
1432
  msgid "File deleted"
1433
  msgstr ""
1434
 
1435
+ #: admin/cerber-admin.php:1207
1436
  msgid "File extensions statistics"
1437
  msgstr ""
1438
 
1440
  msgid "File is missing"
1441
  msgstr ""
1442
 
1443
+ #: admin/cerber-admin.php:1392
1444
  msgid "File Name"
1445
  msgstr ""
1446
 
1447
+ #: cerber-common.php:3382
1448
  msgid "File not found"
1449
  msgstr ""
1450
 
1452
  msgid "File recovered"
1453
  msgstr ""
1454
 
1455
+ #: cerber-common.php:1806
1456
  msgid "File upload denied"
1457
  msgstr ""
1458
 
1459
+ #: cerber-common.php:1877
1460
  msgid "Filename is prohibited"
1461
  msgstr ""
1462
 
1463
+ #: admin/cerber-admin.php:1117 admin/cerber-admin.php:1211
1464
  msgid "Files"
1465
  msgstr ""
1466
 
1467
+ #: cerber-settings.php:1339
1468
  msgid "Files in temporary directories"
1469
  msgstr ""
1470
 
1471
+ #: cerber-settings.php:1343
1472
  msgid "Files in the sessions directory"
1473
  msgstr ""
1474
 
1475
+ #: cerber-settings.php:1323
1476
  msgid "Files in these directories"
1477
  msgstr ""
1478
 
1480
  msgid "Files scanned"
1481
  msgstr ""
1482
 
1483
+ #: admin/cerber-admin.php:109
1484
  msgid "Files to scan"
1485
  msgstr ""
1486
 
1487
+ #: cerber-settings.php:1330
1488
  msgid "Files with these extensions"
1489
  msgstr ""
1490
 
1491
+ #: admin/cerber-admin.php:1003
1492
  msgid "Files without extension"
1493
  msgstr ""
1494
 
1495
+ #: admin/cerber-dashboard.php:1441
1496
  msgid "Filter"
1497
  msgstr ""
1498
 
1499
+ #: admin/cerber-dashboard.php:1429 admin/cerber-users.php:986
1500
  msgid "Filter by registered user"
1501
  msgstr ""
1502
 
1504
  msgid "Finalizing the scan"
1505
  msgstr ""
1506
 
1507
+ #: admin/cerber-admin.php:85
1508
  msgid "Finished"
1509
  msgstr ""
1510
 
1511
+ #: admin/cerber-users.php:558
1512
  msgid "Fixed number of logins"
1513
  msgstr ""
1514
 
1515
+ #: admin/cerber-admin.php:1115
1516
  msgid "Folder"
1517
  msgstr ""
1518
 
1519
+ #: cerber-common.php:1875
1520
  msgid "Forbidden URL"
1521
  msgstr ""
1522
 
1523
+ #: cerber-settings.php:757
1524
  msgid "Form fields data"
1525
  msgstr ""
1526
 
1527
+ #: cerber-common.php:1771
1528
  msgid "Form submission denied"
1529
  msgstr ""
1530
 
1531
+ #: admin/cerber-dashboard.php:4681
1532
  msgid "Form submissions"
1533
  msgstr ""
1534
 
1535
+ #: cerber-load.php:4873
1536
+ msgid "From the country"
1537
  msgstr ""
1538
 
1539
+ #: cerber-load.php:4870
1540
+ msgid "From the IP address"
1541
  msgstr ""
1542
 
1543
+ #: cerber-settings.php:1586
1544
  msgid "Full access mode"
1545
  msgstr ""
1546
 
1547
+ #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2155
1548
  msgid "Full Scan"
1549
  msgstr ""
1550
 
1552
  msgid "Full Scan Report"
1553
  msgstr ""
1554
 
1555
+ #: admin/cerber-dashboard.php:1402
1556
  msgid "Get me notified when such an event occurs"
1557
  msgstr ""
1558
 
1559
+ #: cerber-settings.php:875
1560
  msgid "Get notified instantly with mobile and desktop notifications"
1561
  msgstr ""
1562
 
1563
+ #: cerber-load.php:4879 cerber-load.php:6254
1564
  msgid "Getting Started Guide"
1565
  msgstr ""
1566
 
1567
+ #: admin/cerber-dashboard.php:5460
1568
  msgid "Global"
1569
  msgstr ""
1570
 
1571
+ #: cerber-settings.php:1319
1572
  msgid "Global Exclusions"
1573
  msgstr ""
1574
 
1575
+ #: cerber-settings.php:646
1576
  msgid "Grant access to the website to logged-in users only"
1577
  msgstr ""
1578
 
1580
  msgid "Group"
1581
  msgstr ""
1582
 
1583
+ #: admin/cerber-dashboard.php:5366
1584
  msgid "Hardening"
1585
  msgstr ""
1586
 
1587
+ #: cerber-settings.php:423
1588
  msgid "Hardening WordPress"
1589
  msgstr ""
1590
 
1591
+ #: admin/cerber-dashboard.php:5649
1592
  msgid "Help"
1593
  msgstr ""
1594
 
1595
+ #: cerber-2fa.php:525
1596
  msgid "Here are the details of the sign-in attempt"
1597
  msgstr ""
1598
 
1599
+ #: cerber-load.php:4850
1600
  msgid "Hi!"
1601
  msgstr ""
1602
 
1604
  msgid "Hide server IP address"
1605
  msgstr ""
1606
 
1607
+ #: admin/cerber-users.php:429
1608
  msgid "Hide Toolbar when viewing site"
1609
  msgstr ""
1610
 
1611
+ #: cerber-settings.php:1213 cerber-settings.php:1259
1612
  msgid "High severity"
1613
  msgstr ""
1614
 
1615
+ #: admin/cerber-dashboard.php:4614 admin/cerber-users.php:943
1616
  msgid "Host Info"
1617
  msgstr ""
1618
 
1619
+ #: admin/cerber-dashboard.php:212 admin/cerber-dashboard.php:1343
1620
  msgid "Hostname"
1621
  msgstr ""
1622
 
1623
+ #: cerber-settings.php:1439
1624
  msgid ""
1625
  "How the plugin processes comments submitted through the standard comment form"
1626
  msgstr ""
1627
 
1628
+ #: cerber-settings.php:161
1629
  msgid "How WP Cerber loads its core and security mechanisms"
1630
  msgstr ""
1631
 
1634
  msgid "https://wpcerber.com"
1635
  msgstr ""
1636
 
1637
+ #: cerber-load.php:774
1638
  msgid "Human verification failed."
1639
  msgstr ""
1640
 
1641
+ #: cerber-load.php:777
1642
  msgid ""
1643
  "Human verification failed. Please click the square box in the reCAPTCHA "
1644
  "block below."
1645
  msgstr ""
1646
 
1647
+ #: cerber-settings.php:1442
1648
  msgid "If a spam comment detected"
1649
  msgstr ""
1650
 
1651
+ #: cerber-settings.php:1221
1652
  msgid "If any changes in scan results occurred"
1653
  msgstr ""
1654
 
1655
+ #: cerber-settings.php:390
1656
  #, php-format
1657
  msgid "if empty, the default format %s will be used"
1658
  msgstr ""
1659
 
1660
+ #: cerber-settings.php:933 cerber-settings.php:1235
1661
  msgid ""
1662
  "if empty, the email addresses from the notification settings will be used"
1663
  msgstr ""
1664
 
1665
+ #: cerber-settings.php:851
1666
+ msgid "If empty, the SMTP username is used"
1667
+ msgstr ""
1668
+
1669
+ #: cerber-settings.php:776
1670
  #, php-format
1671
  msgid "if empty, the website administrator email %s will be used"
1672
  msgstr ""
1673
 
1674
+ #: cerber-settings.php:1222
1675
  msgid "If new issues found"
1676
  msgstr ""
1677
 
1678
+ #: admin/cerber-users.php:539
1679
  msgid "If the number of concurrent user sessions is greater"
1680
  msgstr ""
1681
 
1682
+ #: cerber-load.php:1848
1683
  msgid ""
1684
  "If we have found your account, we have sent the confirmation link to the "
1685
  "email address on the account."
1686
  msgstr ""
1687
 
1688
+ #: cerber-load.php:4682
1689
  msgid ""
1690
  "If you believe you should be able to perform this request, please let us "
1691
  "know."
1692
  msgstr ""
1693
 
1694
+ #: cerber-settings.php:153
1695
  msgid "If you forget your Custom login URL, you will be unable to log in."
1696
  msgstr ""
1697
 
1698
+ #: admin/cerber-admin-settings.php:687 admin/cerber-admin-settings.php:688
1699
  msgid ""
1700
  "If you use a caching plugin, you have to add your new login URL to the list "
1701
  "of pages not to cache."
1702
  msgstr ""
1703
 
1704
+ #: admin/cerber-admin.php:231
1705
  msgid "Ignore"
1706
  msgstr ""
1707
 
1708
+ #: cerber-settings.php:1282
1709
  msgid "Ignore files with these extensions"
1710
  msgstr ""
1711
 
1712
+ #: admin/cerber-dashboard.php:3110
1713
  msgid "Ignore global rate limits"
1714
  msgstr ""
1715
 
1716
+ #: admin/cerber-dashboard.php:5498
1717
  msgid "Ignore List"
1718
  msgstr ""
1719
 
1720
+ #: cerber-settings.php:989
1721
  msgid "Ignore logged-in users"
1722
  msgstr ""
1723
 
1724
+ #: cerber-settings.php:280
1725
  msgid "Immediately block IP after any request to wp-login.php"
1726
  msgstr ""
1727
 
1728
+ #: cerber-settings.php:275
1729
  msgid ""
1730
  "Immediately block IP when attempting to log in with a non-existing username"
1731
  msgstr ""
1732
 
1733
+ #: cerber-load.php:6263
1734
  msgid "Import settings"
1735
  msgstr ""
1736
 
1738
  msgid "Import settings from the file"
1739
  msgstr ""
1740
 
1741
+ #: admin/cerber-admin-settings.php:768
1742
  msgid "Important note if you have a caching plugin in place"
1743
  msgstr ""
1744
 
1745
+ #: admin/cerber-dashboard.php:2115 admin/cerber-dashboard.php:2116
1746
  msgid "in 24 hours"
1747
  msgstr ""
1748
 
1749
+ #: cerber-settings.php:317
1750
  msgid ""
1751
  "In the Citadel mode nobody is able to log in except IPs from the White IP "
1752
  "Access List. Active user sessions will not be affected."
1753
  msgstr ""
1754
 
1755
+ #: cerber-settings.php:747
1756
  msgid "Include activity log events"
1757
  msgstr ""
1758
 
1759
+ #: cerber-settings.php:1226
1760
  msgid "Include file sizes"
1761
  msgstr ""
1762
 
1763
+ #: cerber-settings.php:1230
1764
  msgid "Include scan errors"
1765
  msgstr ""
1766
 
1767
+ #: cerber-settings.php:753
1768
  msgid "Include traffic log entries"
1769
  msgstr ""
1770
 
1771
+ #: admin/cerber-dashboard.php:5698
1772
  msgid "Incorrect IP address or IP range"
1773
  msgstr ""
1774
 
1775
+ #: cerber-common.php:1870
1776
  msgid "Incorrect password"
1777
  msgstr ""
1778
 
1779
+ #: admin/cerber-admin-settings.php:363
1780
  #, php-format
1781
  msgid ""
1782
  "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
1783
  msgstr ""
1784
 
1785
+ #: cerber-settings.php:160
1786
  msgid "Initialization Mode"
1787
  msgstr ""
1788
 
1789
+ #: cerber-common.php:1862
1790
  msgid "Initiated by the user"
1791
  msgstr ""
1792
 
1798
  msgid "Injected files"
1799
  msgstr ""
1800
 
1801
+ #: nexus/cerber-nexus.php:269
1802
  msgid "Install the access token on the master website."
1803
  msgstr ""
1804
 
1805
+ #: admin/cerber-dashboard.php:2168
1806
  msgid "Integrity"
1807
  msgstr ""
1808
 
1810
  msgid "Integrity data not found"
1811
  msgstr ""
1812
 
1813
+ #: cerber-common.php:1873
1814
  msgid "Invalid cookies"
1815
  msgstr ""
1816
 
1817
+ #: cerber-common.php:1874
1818
  msgid "Invalid cookies cleared"
1819
  msgstr ""
1820
 
1821
+ #: cerber-common.php:1834
1822
  msgid "Invalid master credentials"
1823
  msgstr ""
1824
 
1826
  msgid "Invalid response from the slave website"
1827
  msgstr ""
1828
 
1829
+ #: cerber-common.php:1869
1830
  msgid "Invalid user"
1831
  msgstr ""
1832
 
1833
+ #: cerber-settings.php:1475
1834
  msgid "Invisible reCAPTCHA"
1835
  msgstr ""
1836
 
1837
+ #: admin/cerber-dashboard.php:211 admin/cerber-dashboard.php:962
1838
+ #: admin/cerber-dashboard.php:1342 admin/cerber-dashboard.php:4613
1839
+ #: admin/cerber-users.php:942
 
 
 
 
1840
  msgid "IP Address"
1841
  msgstr ""
1842
 
1843
+ #: cerber-load.php:5959 cerber-load.php:5960 admin/cerber-dashboard.php:4127
1844
  msgid "IP address"
1845
  msgstr ""
1846
 
1847
+ #: admin/cerber-dashboard.php:370
1848
  #, php-format
1849
  msgid "IP address %s has been added to Black IP Access List"
1850
  msgstr ""
1851
 
1852
+ #: admin/cerber-dashboard.php:373
1853
  #, php-format
1854
  msgid "IP address %s has been added to White IP Access List"
1855
  msgstr ""
1856
 
1857
+ #: cerber-common.php:1846
1858
  msgid "IP address is locked out"
1859
  msgstr ""
1860
 
1861
+ #: cerber-common.php:1871
1862
  msgid "IP address is not allowed"
1863
  msgstr ""
1864
 
1865
+ #: admin/cerber-dashboard.php:342
1866
  msgid "IP address, range, wildcard, or CIDR"
1867
  msgstr ""
1868
 
1869
+ #: cerber-2fa.php:517
1870
+ msgid "IP address:"
1871
+ msgstr ""
1872
+
1873
+ #: cerber-common.php:1847
1874
  msgid "IP blacklisted"
1875
  msgstr ""
1876
 
1877
+ #: cerber-common.php:1764 admin/cerber-dashboard.php:1107
1878
  msgid "IP blocked"
1879
  msgstr ""
1880
 
1881
+ #: cerber-common.php:1765
1882
  msgid "IP subnet blocked"
1883
  msgstr ""
1884
 
1885
+ #: cerber-common.php:1880
1886
  msgid "IP whitelisted"
1887
  msgstr ""
1888
 
1889
+ #: cerber-scanner.php:4776 admin/cerber-admin.php:116
1890
  msgid "Issues total"
1891
  msgstr ""
1892
 
1893
+ #: admin/cerber-users.php:93
1894
  msgid "It is visible only to website administrators"
1895
  msgstr ""
1896
 
1902
  "made (bespoke) plugin or theme."
1903
  msgstr ""
1904
 
1905
+ #: admin/cerber-admin.php:73
1906
  msgid ""
1907
  "It seems this website has never been scanned. To start scanning click the "
1908
  "button below."
1918
  "encryption. This may lead to data leakage."
1919
  msgstr ""
1920
 
1921
+ #: cerber-settings.php:354 cerber-settings.php:1100
1922
  msgid "Keep log records of logged in users for"
1923
  msgstr ""
1924
 
1925
+ #: cerber-settings.php:348 cerber-settings.php:1094
1926
  msgid "Keep log records of not logged in visitors for"
1927
  msgstr ""
1928
 
1929
+ #: cerber-settings.php:1270
1930
  msgid ""
1931
  "Keep the WordPress uploads directory clean and secure. Detect injected files "
1932
  "with public web access, report them, and remove malicious ones."
1933
  msgstr ""
1934
 
1935
+ #: cerber-lab.php:897 admin/cerber-admin-settings.php:104
1936
+ #: admin/cerber-admin-settings.php:263
1937
  msgid "Know more"
1938
  msgstr ""
1939
 
1940
+ #: admin/cerber-dashboard.php:5838
1941
  msgid "Know more about all advantages at"
1942
  msgstr ""
1943
 
1944
+ #: admin/cerber-admin.php:1214
1945
  msgid "Largest"
1946
  msgstr ""
1947
 
1948
+ #: cerber-load.php:4807
1949
  #, php-format
1950
+ msgid "Last failed attempt was at %s from IP %s using username: %s."
1951
  msgstr ""
1952
 
1953
+ #: admin/cerber-dashboard.php:2119
1954
  msgid "Last lockout"
1955
  msgstr ""
1956
 
1957
+ #: cerber-load.php:4841
1958
  #, php-format
1959
  msgid "Last lockout was added: %s for IP %s"
1960
  msgstr ""
1961
 
1962
+ #: admin/cerber-dashboard.php:1992
1963
  msgid "Last login"
1964
  msgstr ""
1965
 
1966
+ #: admin/cerber-dashboard.php:1945
1967
  msgid "Last seen"
1968
  msgstr ""
1969
 
1970
+ #: cerber-settings.php:1196
1971
  msgid "Launch Full Scan"
1972
  msgstr ""
1973
 
1974
+ #: cerber-settings.php:1191
1975
  msgid "Launch Quick Scan"
1976
  msgstr ""
1977
 
1978
+ #: cerber-settings.php:167
1979
  msgid "Legacy mode"
1980
  msgstr ""
1981
 
1982
+ #: admin/cerber-dashboard.php:5553
1983
  msgid "License"
1984
  msgstr ""
1985
 
1986
+ #: cerber-settings.php:1578
1987
  msgid "Limit access by IP address"
1988
  msgstr ""
1989
 
1990
+ #: cerber-settings.php:1526
1991
  msgid "Limit attempts"
1992
  msgstr ""
1993
 
1994
+ #: cerber-settings.php:180
1995
  msgid "Limit login attempts"
1996
  msgstr ""
1997
 
1998
+ #: cerber-common.php:1872
1999
  msgid "Limit on concurrent user sessions"
2000
  msgstr ""
2001
 
2002
+ #: cerber-common.php:2003
2003
  msgid "Limit on failed reCAPTCHA verifications is reached"
2004
  msgstr ""
2005
 
2006
+ #: cerber-common.php:1998
2007
  msgid "Limit on login attempts is reached"
2008
  msgstr ""
2009
 
2010
+ #: cerber-common.php:1850
2011
  msgid "Limit reached"
2012
  msgstr ""
2013
 
2014
+ #: admin/cerber-dashboard.php:336
2015
  msgid "List is empty"
2016
  msgstr ""
2017
 
2018
+ #: admin/cerber-dashboard.php:5433
2019
  msgid "Live Traffic"
2020
  msgstr ""
2021
 
2027
  msgid "Load entries"
2028
  msgstr ""
2029
 
2030
+ #: cerber-settings.php:164
2031
  msgid "Load security engine"
2032
  msgstr ""
2033
 
2039
  msgid "Local hash not found"
2040
  msgstr ""
2041
 
2042
+ #: admin/cerber-dashboard.php:966 admin/cerber-dashboard.php:1347
2043
+ #: admin/cerber-dashboard.php:4616
2044
  msgid "Local User"
2045
  msgstr ""
2046
 
2047
+ #: cerber-2fa.php:519
2048
+ msgid "Location:"
2049
+ msgstr ""
2050
+
2051
+ #: cerber-settings.php:1527
2052
  #, php-format
2053
  msgid ""
2054
  "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
2055
  msgstr ""
2056
 
2057
+ #: cerber-common.php:1845 admin/cerber-dashboard.php:1719
2058
  msgid "Locked out"
2059
  msgstr ""
2060
 
2061
+ #: admin/cerber-dashboard.php:664
2062
  #, php-format
2063
  msgid "Lockout for %s was removed"
2064
  msgstr ""
2065
 
2066
+ #: cerber-settings.php:784 cerber-settings.php:894
2067
+ msgid "Lockout notification"
2068
  msgstr ""
2069
 
2070
+ #: admin/cerber-dashboard.php:5363
2071
  msgid "Lockouts"
2072
  msgstr ""
2073
 
2074
+ #: admin/cerber-dashboard.php:2116
2075
  msgid "lockouts"
2076
  msgstr ""
2077
 
2078
+ #: admin/cerber-dashboard.php:2118
2079
  msgid "Lockouts at the moment"
2080
  msgstr ""
2081
 
2082
+ #: cerber-common.php:431
2083
  msgid "Lockouts occurred"
2084
  msgstr ""
2085
 
2086
+ #: cerber-settings.php:1011
2087
  msgid "Log all REST API requests"
2088
  msgstr ""
2089
 
2090
+ #: cerber-settings.php:1016
2091
  msgid "Log all XML-RPC requests"
2092
  msgstr ""
2093
 
2094
+ #: admin/cerber-dashboard.php:6019
2095
  msgid "Log In"
2096
  msgstr ""
2097
 
2098
+ #: admin/cerber-dashboard.php:3978
2099
  msgid "Log into the website"
2100
  msgstr ""
2101
 
2102
+ #: admin/cerber-dashboard.php:6020
2103
  msgid "Log Out"
2104
  msgstr ""
2105
 
2106
+ #: cerber-common.php:1759
2107
  msgid "Logged in"
2108
  msgstr ""
2109
 
2110
+ #: cerber-common.php:1760
2111
  msgid "Logged out"
2112
  msgstr ""
2113
 
2114
+ #: cerber-common.php:1891
2115
  msgid "Logged out everywhere"
2116
  msgstr ""
2117
 
2118
+ #: cerber-settings.php:484 cerber-settings.php:1418
2119
+ #: admin/cerber-dashboard.php:2121
2120
  msgid "Logged-in users"
2121
  msgstr ""
2122
 
2123
+ #: cerber-settings.php:1004
2124
  msgid "Logging disabled"
2125
  msgstr ""
2126
 
2127
+ #: cerber-settings.php:1001
2128
  msgid "Logging mode"
2129
  msgstr ""
2130
 
2131
+ #: cerber-common.php:1761
2132
  msgid "Login failed"
2133
  msgstr ""
2134
 
2135
+ #: cerber-settings.php:1500
2136
  msgid "Login form"
2137
  msgstr ""
2138
 
2139
+ #: admin/cerber-users.php:533
2140
  msgid "Login from a different browser or device"
2141
  msgstr ""
2142
 
2143
+ #: admin/cerber-users.php:515
2144
  msgid "Login from a different country"
2145
  msgstr ""
2146
 
2147
+ #: admin/cerber-users.php:527
2148
  msgid "Login from a different IP address"
2149
  msgstr ""
2150
 
2151
+ #: admin/cerber-users.php:521
2152
  msgid "Login from a different network Class C"
2153
  msgstr ""
2154
 
2155
+ #: admin/cerber-dashboard.php:1092
2156
  msgid "Login issues"
2157
  msgstr ""
2158
 
2159
+ #: cerber-settings.php:175
2160
  msgid "Login Security"
2161
  msgstr ""
2162
 
2163
+ #: cerber-2fa.php:516
2164
+ msgid "Login:"
2165
+ msgstr ""
2166
+
2167
+ #: admin/cerber-dashboard.php:4689
2168
  msgid "Longer than"
2169
  msgstr ""
2170
 
2171
+ #: cerber-settings.php:1490
2172
  msgid "Lost password form"
2173
  msgstr ""
2174
 
2175
+ #: cerber-settings.php:1211 cerber-settings.php:1257
2176
  msgid "Low severity"
2177
  msgstr ""
2178
 
2179
+ #: admin/cerber-dashboard.php:5364
2180
  msgid "Main Settings"
2181
  msgstr ""
2182
 
2183
+ #: admin/cerber-dashboard.php:3239
2184
  msgid "Main settings"
2185
  msgstr ""
2186
 
2187
+ #: cerber-settings.php:266
2188
  msgid "Make your protection smarter!"
2189
  msgstr ""
2190
 
2191
+ #: cerber-common.php:425
2192
  msgid "Malicious activities mitigated"
2193
  msgstr ""
2194
 
2195
+ #: admin/cerber-dashboard.php:2745
2196
  msgid "Malicious Activity"
2197
  msgstr ""
2198
 
2199
+ #: cerber-common.php:1848
2200
  msgid "Malicious activity detected"
2201
  msgstr ""
2202
 
2203
+ #: cerber-common.php:1856 cerber-common.php:2007
2204
  msgid "Malicious code detected"
2205
  msgstr ""
2206
 
2208
  msgid "Malicious code found"
2209
  msgstr ""
2210
 
2211
+ #: cerber-common.php:430
2212
  msgid "Malicious IP addresses detected"
2213
  msgstr ""
2214
 
2215
+ #: cerber-common.php:1817
2216
  msgid "Malicious request denied"
2217
  msgstr ""
2218
 
2220
  msgid "Malware Scan"
2221
  msgstr ""
2222
 
2223
+ #: admin/cerber-dashboard.php:5549
2224
  msgid "Manage Settings"
2225
  msgstr ""
2226
 
2227
+ #: cerber-settings.php:1444
2228
  msgid "Mark it as spam"
2229
  msgstr ""
2230
 
2231
+ #: cerber-settings.php:793 cerber-settings.php:901
2232
+ msgid "Mask sensitive data"
2233
+ msgstr ""
2234
+
2235
+ #: cerber-settings.php:1047
2236
  msgid "Mask these form fields"
2237
  msgstr ""
2238
 
2239
+ #: cerber-settings.php:794 cerber-settings.php:902
2240
+ msgid "Mask usernames and IP addresses in notifications and alerts"
2241
+ msgstr ""
2242
+
2243
+ #: cerber-settings.php:1534
2244
  msgid "Master settings"
2245
  msgstr ""
2246
 
2247
+ #: cerber-settings.php:953 cerber-settings.php:984
2248
  msgid "Maximum compatibility"
2249
  msgstr ""
2250
 
2251
+ #: admin/cerber-dashboard.php:3096
2252
  msgid "Maximum number of alerts to send"
2253
  msgstr ""
2254
 
2255
+ #: cerber-settings.php:954 cerber-settings.php:985
2256
  msgid "Maximum security"
2257
  msgstr ""
2258
 
2259
+ #: cerber-settings.php:1212 cerber-settings.php:1258
2260
  msgid "Medium severity"
2261
  msgstr ""
2262
 
2263
+ #: cerber-settings.php:798 cerber-settings.php:907
2264
+ msgid "Message format"
2265
+ msgstr ""
2266
+
2267
+ #: cerber-settings.php:1088
2268
  msgid "milliseconds"
2269
  msgstr ""
2270
 
2271
+ #: cerber-settings.php:1005
2272
  msgid "Minimal"
2273
  msgstr ""
2274
 
2275
+ #: cerber-settings.php:186 cerber-settings.php:332
2276
  msgid "minutes"
2277
  msgstr ""
2278
 
2279
+ #: cerber-settings.php:705
2280
  msgid "minutes (leave empty to use the default WordPress value)"
2281
  msgstr ""
2282
 
2283
+ #: cerber-settings.php:682 cerber-settings.php:1165
2284
  msgid "Miscellaneous Settings"
2285
  msgstr ""
2286
 
2287
+ #: cerber-settings.php:189
2288
  msgid "Mitigate aggressive attempts"
2289
  msgstr ""
2290
 
2291
+ #: admin/cerber-dashboard.php:3070
2292
  msgid "Mobile alerts are not configured"
2293
  msgstr ""
2294
 
2295
  #. %s is the name of a mobile device.
2296
+ #: admin/cerber-dashboard.php:3067
2297
  #, php-format
2298
  msgid "Mobile alerts will be sent to %s"
2299
  msgstr ""
2300
 
2301
+ #: admin/cerber-admin.php:927 admin/cerber-admin.php:1394
2302
  msgid "Modified"
2303
  msgstr ""
2304
 
2305
+ #: cerber-settings.php:1123
2306
  msgid "Monitor modified files"
2307
  msgstr ""
2308
 
2309
+ #: cerber-settings.php:1114
2310
  msgid "Monitor new files"
2311
  msgstr ""
2312
 
2313
+ #: cerber-settings.php:1449
2314
  msgid "Move spam comments to trash after"
2315
  msgstr ""
2316
 
2317
+ #: cerber-common.php:2010
2318
  msgid "Multiple erroneous requests"
2319
  msgstr ""
2320
 
2321
+ #: cerber-common.php:1851
2322
  msgid "Multiple suspicious activities"
2323
  msgstr ""
2324
 
2325
+ #: cerber-common.php:2005
2326
  msgid "Multiple suspicious activities were detected"
2327
  msgstr ""
2328
 
2329
+ #: cerber-common.php:2011
2330
  msgid "Multiple suspicious requests"
2331
  msgstr ""
2332
 
2333
+ #: admin/cerber-dashboard.php:1111
2334
  msgid "My activity"
2335
  msgstr ""
2336
 
2337
+ #: admin/cerber-dashboard.php:1112 admin/cerber-dashboard.php:4686
2338
  msgid "My IP"
2339
  msgstr ""
2340
 
2341
+ #: cerber-settings.php:411
2342
  msgid "My IP address"
2343
  msgstr ""
2344
 
2345
+ #: admin/cerber-dashboard.php:4685
2346
  msgid "My requests"
2347
  msgstr ""
2348
 
2349
+ #: cerber-settings.php:295 admin/cerber-dashboard.php:2530
2350
  msgid "My site is behind a reverse proxy"
2351
  msgstr ""
2352
 
2355
  msgid "My Websites"
2356
  msgstr ""
2357
 
2358
+ #: admin/cerber-dashboard.php:1755
2359
  msgid "Network:"
2360
  msgstr ""
2361
 
2362
+ #: cerber-common.php:2176 nexus/cerber-slave-list.php:347
2363
+ #: admin/cerber-dashboard.php:477 admin/cerber-dashboard.php:2097
2364
+ #: admin/cerber-dashboard.php:2146
2365
  msgid "Never"
2366
  msgstr ""
2367
 
2368
+ #: cerber-load.php:4888
2369
  msgid "New Custom login URL"
2370
  msgstr ""
2371
 
2377
  msgid "New files"
2378
  msgstr ""
2379
 
2380
+ #: admin/cerber-dashboard.php:1091
2381
  msgid "New users"
2382
  msgstr ""
2383
 
2384
+ #: cerber-settings.php:788
2385
  msgid "New version is available"
2386
  msgstr ""
2387
 
2388
+ #: admin/cerber-admin.php:1217
2389
  msgid "Newest"
2390
  msgstr ""
2391
 
2392
+ #: admin/cerber-dashboard.php:1394 admin/cerber-dashboard.php:1841
2393
+ #: admin/cerber-dashboard.php:2705 admin/cerber-admin.php:1334
2394
  msgid "No activity has been logged yet."
2395
  msgstr ""
2396
 
2397
+ #: admin/cerber-dashboard.php:2132
2398
  msgid "no connection"
2399
  msgstr ""
2400
 
2401
+ #: admin/cerber-admin.php:1019
2402
  msgid ""
2403
  "No data for generating reports. Please run the Full Scan. After the scan is "
2404
  "completed, the reports will be generated."
2405
  msgstr ""
2406
 
2407
+ #: cerber-settings.php:140
2408
  msgid "No devices found"
2409
  msgstr ""
2410
 
2411
+ #: admin/cerber-dashboard.php:1397
2412
  msgid "No events found using the given search criteria"
2413
  msgstr ""
2414
 
2415
+ #: admin/cerber-admin.php:1182
2416
  msgid "No extension"
2417
  msgstr ""
2418
 
2420
  msgid "No file was uploaded or file is corrupted"
2421
  msgstr ""
2422
 
2423
+ #: admin/cerber-admin.php:731
2424
  msgid "No files match the specified filter."
2425
  msgstr ""
2426
 
2427
+ #: admin/cerber-dashboard.php:3101
2428
  msgid "No limit"
2429
  msgstr ""
2430
 
2431
+ #: admin/cerber-dashboard.php:242 admin/cerber-dashboard.php:2765
2432
  msgid "No lockouts at the moment. The sky is clear."
2433
  msgstr ""
2434
 
2435
+ #: admin/cerber-dashboard.php:4648
2436
  msgid "No requests found using the given search criteria"
2437
  msgstr ""
2438
 
2439
+ #: admin/cerber-dashboard.php:4645
2440
  msgid "No requests have been logged yet."
2441
  msgstr ""
2442
 
2443
+ #: cerber-settings.php:614
2444
  msgid "No restrictions"
2445
  msgstr ""
2446
 
2447
+ #: admin/cerber-dashboard.php:3867
2448
  msgid "No rule"
2449
  msgstr ""
2450
 
2456
  msgid "NO, maybe later"
2457
  msgstr ""
2458
 
2459
+ #: admin/cerber-dashboard.php:1109 admin/cerber-dashboard.php:4680
2460
  msgid "Non-authenticated"
2461
  msgstr ""
2462
 
2463
+ #: cerber-settings.php:274
2464
  msgid "Non-existing users"
2465
  msgstr ""
2466
 
2467
+ #: cerber-settings.php:831
2468
+ msgid "None"
2469
  msgstr ""
2470
 
2471
+ #: admin/cerber-dashboard.php:2106
2472
+ msgid "not active"
2473
  msgstr ""
2474
 
2475
+ #: cerber-settings.php:144
2476
+ msgid "Not available"
2477
  msgstr ""
2478
 
2479
+ #: admin/cerber-dashboard.php:3859
2480
  #, php-format
2481
  msgid "Not permitted for one country"
2482
  msgid_plural "Not permitted for %d countries"
2483
  msgstr[0] ""
2484
  msgstr[1] ""
2485
 
2486
+ #: admin/cerber-dashboard.php:4747
2487
  msgid "Not specified"
2488
  msgstr ""
2489
 
2490
+ #: admin/cerber-dashboard.php:4655
2491
  msgid "Note: Logging is currently disabled"
2492
  msgstr ""
2493
 
2495
  msgid "Notes"
2496
  msgstr ""
2497
 
2498
+ #: cerber-settings.php:779 cerber-settings.php:888
2499
  msgid "Notification limit"
2500
  msgstr ""
2501
 
2502
+ #: cerber-settings.php:337 admin/cerber-dashboard.php:5368
2503
  msgid "Notifications"
2504
  msgstr ""
2505
 
2506
+ #: cerber-settings.php:780 cerber-settings.php:889
2507
  msgid "notifications are allowed per hour (0 means unlimited)"
2508
  msgstr ""
2509
 
2510
+ #: cerber-load.php:4838
 
 
 
 
2511
  msgid "Number of active lockouts"
2512
  msgstr ""
2513
 
2514
+ #: admin/cerber-users.php:461
2515
  msgid "Number of allowed concurrent user sessions"
2516
  msgstr ""
2517
 
2518
+ #: cerber-load.php:4836
2519
  msgid "Number of lockouts is increasing"
2520
  msgstr ""
2521
 
2522
+ #: admin/cerber-users.php:560
2523
  msgid "number of logins"
2524
  msgstr ""
2525
 
2526
+ #: admin/cerber-dashboard.php:5922
2527
  msgid "OK"
2528
  msgstr ""
2529
 
2531
  msgid "OK, nail them all"
2532
  msgstr ""
2533
 
2534
+ #: admin/cerber-admin.php:1216
2535
  msgid "Oldest"
2536
  msgstr ""
2537
 
2538
+ #: cerber-settings.php:1198
2539
  msgid "once a day at"
2540
  msgstr ""
2541
 
2542
+ #: cerber-settings.php:1174 cerber-settings.php:1568 cerber-settings.php:1595
2543
  #, php-format
2544
  msgid "Once enabled, the log is available here: %s"
2545
  msgstr ""
2546
 
2547
+ #: cerber-2fa.php:656
2548
  msgid "only digits are allowed"
2549
  msgstr ""
2550
 
2551
+ #: cerber-settings.php:2042
2552
  msgid "Only registered and logged in users are allowed to view this website"
2553
  msgstr ""
2554
 
2555
+ #: cerber-settings.php:651
2556
  msgid "Only registered and logged in website users have access to the website"
2557
  msgstr ""
2558
 
2559
+ #: cerber-settings.php:632
2560
  msgid ""
2561
  "Only users from IP addresses in the White IP Access List may register on the "
2562
  "website"
2563
  msgstr ""
2564
 
2565
+ #: admin/cerber-dashboard.php:3086
2566
  msgid "Optional alert limits"
2567
  msgstr ""
2568
 
2569
+ #: admin/cerber-dashboard.php:344
2570
  msgid "Optional comment for this entry"
2571
  msgstr ""
2572
 
2573
+ #: cerber-2fa.php:664
2574
  msgid "or"
2575
  msgstr ""
2576
 
2577
+ #: cerber-settings.php:1377
2578
  msgid "Other forms"
2579
  msgstr ""
2580
 
2582
  msgid "Owner"
2583
  msgstr ""
2584
 
2585
+ #: admin/cerber-dashboard.php:4134
2586
  msgid "Page generation time"
2587
  msgstr ""
2588
 
2589
+ #: cerber-settings.php:1087
2590
  msgid "Page generation time threshold"
2591
  msgstr ""
2592
 
2593
+ #: admin/cerber-dashboard.php:4682
2594
  msgid "Page Not Found"
2595
  msgstr ""
2596
 
2598
  msgid "Parsing the list of files"
2599
  msgstr ""
2600
 
2601
+ #: cerber-common.php:1781
2602
  msgid "Password changed"
2603
  msgstr ""
2604
 
2605
  #. %s is the name of a website administrator who changed the password.
2606
+ #: cerber-common.php:1783
2607
  #, php-format
2608
  msgid "Password changed by %s"
2609
  msgstr ""
2610
 
2611
+ #: cerber-common.php:1789
2612
  msgid "Password reset request denied"
2613
  msgstr ""
2614
 
2615
+ #: cerber-common.php:1784
2616
  msgid "Password reset requested"
2617
  msgstr ""
2618
 
2619
+ #: admin/cerber-admin.php:1116
2620
  msgid "Path"
2621
  msgstr ""
2622
 
2623
+ #: admin/cerber-admin.php:93
2624
  msgid "Performance"
2625
  msgstr ""
2626
 
2627
+ #: cerber-common.php:1867
2628
  msgid "Permission denied"
2629
  msgstr ""
2630
 
2631
+ #: cerber-settings.php:616
2632
  msgid "Permit only email addresses that match the following"
2633
  msgstr ""
2634
 
2635
+ #: admin/cerber-dashboard.php:3856
2636
  #, php-format
2637
  msgid "Permitted for one country"
2638
  msgid_plural "Permitted for %d countries"
2639
  msgstr[0] ""
2640
  msgstr[1] ""
2641
 
2642
+ #: cerber-settings.php:720
2643
  msgid "Personal Data"
2644
  msgstr ""
2645
 
2646
+ #: cerber-settings.php:381
2647
  msgid "Personal Preferences"
2648
  msgstr ""
2649
 
2651
  msgid "Phone"
2652
  msgstr ""
2653
 
2654
+ #: cerber-settings.php:801 cerber-settings.php:911
2655
+ msgid "Plain"
2656
+ msgstr ""
2657
+
2658
+ #: cerber-load.php:1945
2659
  msgid "Please choose another one."
2660
  msgstr ""
2661
 
2662
+ #: cerber-settings.php:150
2663
  msgid ""
2664
  "Please enable Permalinks to use this feature. Set Permalink Settings to "
2665
  "something other than Default."
2666
  msgstr ""
2667
 
2668
+ #: admin/cerber-dashboard.php:3059
2669
+ msgid "Please select at least one channel"
2670
+ msgstr ""
2671
+
2672
  #: cerber-scanner.php:2628
2673
  msgid "Please upload a reference ZIP archive"
2674
  msgstr ""
2677
  msgid "Please upload another file."
2678
  msgstr ""
2679
 
2680
+ #: cerber-2fa.php:508
2681
  msgid "Please use the following verification PIN code to verify your identity."
2682
  msgstr ""
2683
 
2684
+ #: cerber-2fa.php:415 cerber-2fa.php:503
2685
  msgid "Please verify that it’s you"
2686
  msgstr ""
2687
 
2688
+ #: admin/cerber-admin-settings.php:658
2689
  msgid "Plugin initialization mode has not been changed"
2690
  msgstr ""
2691
 
2692
+ #: admin/cerber-users.php:604
2693
  msgid "Policies have been updated"
2694
  msgstr ""
2695
 
2696
+ #: admin/cerber-dashboard.php:3984
2697
  msgid "Post comments"
2698
  msgstr ""
2699
 
2700
+ #: cerber-settings.php:299
2701
  msgid "Prefix for plugin cookies"
2702
  msgstr ""
2703
 
2704
+ #: cerber-settings.php:300
2705
  msgid "Prefix may contain only Latin alphanumeric characters and underscores"
2706
  msgstr ""
2707
 
2709
  msgid "Preparing for the scan"
2710
  msgstr ""
2711
 
2712
+ #: cerber-common.php:2171
2713
  #, php-format
2714
  msgctxt "preposition of a period of time like: in 6 hours"
2715
  msgid "in %s"
2716
  msgstr ""
2717
 
2718
+ #: admin/cerber-admin-settings.php:569
2719
  msgctxt "preposition of time like: at 11:00"
2720
  msgid "at"
2721
  msgstr ""
2722
 
2723
+ #: cerber-settings.php:432 cerber-settings.php:437
2724
  msgid "Prevent username discovery"
2725
  msgstr ""
2726
 
2727
+ #: cerber-settings.php:433
2728
  msgid "Prevent username discovery via oEmbed"
2729
  msgstr ""
2730
 
2731
+ #: cerber-settings.php:438
2732
  msgid "Prevent username discovery via user XML sitemaps"
2733
  msgstr ""
2734
 
2735
+ #: admin/cerber-admin.php:178
2736
  #, php-format
2737
  msgid "Previous scan started %s has not been completed. Continue scanning?"
2738
  msgstr ""
2739
 
2740
+ #: cerber-settings.php:265
2741
  msgid "Proactive security rules"
2742
  msgstr ""
2743
 
2744
+ #: cerber-common.php:1804 cerber-common.php:2006
2745
  msgid "Probing for vulnerable code"
2746
  msgstr ""
2747
 
2748
+ #: cerber-settings.php:198
2749
  msgid "Processing wp-login.php authentication requests"
2750
  msgstr ""
2751
 
2752
+ #: admin/cerber-users.php:1094
2753
  msgid "Profile"
2754
  msgstr ""
2755
 
2756
+ #: cerber-settings.php:1292
2757
  msgid "Prohibited extensions"
2758
  msgstr ""
2759
 
2760
+ #: cerber-settings.php:685
2761
  msgid "Prohibited usernames"
2762
  msgstr ""
2763
 
2764
+ #: cerber-settings.php:442
2765
  msgid "Protect admin scripts"
2766
  msgstr ""
2767
 
2768
+ #: cerber-settings.php:1378
2769
  msgid "Protect all forms on the website with bot detection engine"
2770
  msgstr ""
2771
 
2772
+ #: cerber-settings.php:1368
2773
  msgid "Protect comment form with bot detection engine"
2774
  msgstr ""
2775
 
2776
+ #: cerber-settings.php:1363
2777
  msgid "Protect registration form with bot detection engine"
2778
  msgstr ""
2779
 
2780
+ #: cerber-settings.php:572
2781
  msgid "Protect site settings"
2782
  msgstr ""
2783
 
2784
+ #: cerber-settings.php:510
2785
  msgid "Protect user accounts"
2786
  msgstr ""
2787
 
2788
+ #: cerber-settings.php:544
2789
  msgid "Protect user roles"
2790
  msgstr ""
2791
 
2792
+ #: cerber-settings.php:587
2793
  msgid "Protected settings"
2794
  msgstr ""
2795
 
2796
+ #: cerber-settings.php:874
2797
  msgid "Push notifications"
2798
  msgstr ""
2799
 
2800
+ #: cerber-settings.php:879
2801
  msgid "Pushbullet access token"
2802
  msgstr ""
2803
 
2804
+ #: cerber-settings.php:882
2805
  msgid "Pushbullet device"
2806
  msgstr ""
2807
 
2808
+ #: admin/cerber-dashboard.php:5499
2809
  msgid "Quarantine"
2810
  msgstr ""
2811
 
2812
+ #: admin/cerber-admin.php:771
2813
  msgid "Quarantined"
2814
  msgstr ""
2815
 
2816
+ #: cerber-settings.php:1428
2817
  msgid "Query whitelist"
2818
  msgstr ""
2819
 
2820
+ #: cerber-scanner.php:1032 admin/cerber-dashboard.php:2153
2821
  msgid "Quick Scan"
2822
  msgstr ""
2823
 
2825
  msgid "Quick Scan Report"
2826
  msgstr ""
2827
 
2828
+ #: cerber-settings.php:1587
2829
  msgid "Read-only mode"
2830
  msgstr ""
2831
 
2832
+ #: cerber-load.php:4842 admin/cerber-dashboard.php:215
2833
  msgid "Reason"
2834
  msgstr ""
2835
 
2836
+ #: cerber-settings.php:1456
2837
  msgid "reCAPTCHA settings"
2838
  msgstr ""
2839
 
2840
+ #: cerber-common.php:1793 cerber-common.php:1895
2841
  msgid "reCAPTCHA settings are incorrect"
2842
  msgstr ""
2843
 
2844
+ #: cerber-common.php:1792 cerber-common.php:1894
2845
  msgid "reCAPTCHA verification failed"
2846
  msgstr ""
2847
 
2848
+ #: cerber-common.php:1893
2849
  msgid "reCAPTCHA verified"
2850
  msgstr ""
2851
 
2852
+ #: admin/cerber-dashboard.php:2776
2853
  msgid "Recently locked out IP addresses"
2854
  msgstr ""
2855
 
2856
+ #: cerber-settings.php:1313
2857
  msgid "Recover plugins' files"
2858
  msgstr ""
2859
 
2860
+ #: cerber-settings.php:1309
2861
  msgid "Recover WordPress files"
2862
  msgstr ""
2863
 
2873
  msgid "Recovering WordPress files"
2874
  msgstr ""
2875
 
2876
+ #: cerber-settings.php:670
2877
  msgid "Redirect to URL"
2878
  msgstr ""
2879
 
2880
+ #: admin/cerber-users.php:439
2881
  msgid "Redirect user after login"
2882
  msgstr ""
2883
 
2884
+ #: admin/cerber-users.php:444
2885
  msgid "Redirect user after logout"
2886
  msgstr ""
2887
 
2888
+ #: admin/cerber-users.php:435
2889
  msgid "Redirection rules"
2890
  msgstr ""
2891
 
2892
+ #: admin/cerber-dashboard.php:4712
2893
  msgid "Refresh"
2894
  msgstr ""
2895
 
2896
+ #: admin/cerber-dashboard.php:6021
2897
  msgid "Register"
2898
  msgstr ""
2899
 
2900
+ #: admin/cerber-dashboard.php:3982
2901
  msgid "Register on the website"
2902
  msgstr ""
2903
 
2904
+ #: admin/cerber-dashboard.php:1901 admin/cerber-dashboard.php:1994
2905
  msgid "Registered"
2906
  msgstr ""
2907
 
2908
+ #: cerber-settings.php:1362 cerber-settings.php:1480
2909
  msgid "Registration form"
2910
  msgstr ""
2911
 
2912
+ #: cerber-settings.php:606
2913
  msgid "Registration limit"
2914
  msgstr ""
2915
 
2916
+ #: admin/cerber-users.php:551
2917
  msgid "Regular time intervals (days)"
2918
  msgstr ""
2919
 
2920
+ #: admin/cerber-dashboard.php:204 admin/cerber-dashboard.php:330
2921
  msgid "Remove"
2922
  msgstr ""
2923
 
2924
+ #: admin/cerber-admin.php:887 admin/cerber-admin.php:914
2925
  msgid "Remove from the list"
2926
  msgstr ""
2927
 
2928
+ #: cerber-settings.php:1208
2929
  msgid "Report an issue if any of the following is true"
2930
  msgstr ""
2931
 
2932
+ #: admin/cerber-dashboard.php:4612
2933
  msgid "Request"
2934
  msgstr ""
2935
 
2936
+ #: admin/cerber-dashboard.php:1433
2937
  msgid "Request ID"
2938
  msgstr ""
2939
 
2940
+ #: cerber-common.php:1808
2941
  msgid "Request to REST API denied"
2942
  msgstr ""
2943
 
2944
+ #: cerber-common.php:1794 cerber-common.php:1896
2945
  msgid "Request to the Google reCAPTCHA service failed"
2946
  msgstr ""
2947
 
2948
+ #: cerber-common.php:1809
2949
  msgid "Request to XML-RPC API denied"
2950
  msgstr ""
2951
 
2952
+ #: cerber-settings.php:756
2953
  msgid "Request URL"
2954
  msgstr ""
2955
 
2956
+ #: cerber-settings.php:964
2957
  msgid "Request whitelist"
2958
  msgstr ""
2959
 
2960
+ #: cerber-settings.php:279
2961
  msgid "Request wp-login.php"
2962
  msgstr ""
2963
 
2964
+ #: admin/cerber-admin-settings.php:283
2965
+ msgid "Required"
2966
+ msgstr ""
2967
+
2968
  #: cerber-scanner.php:2629
2969
  msgid "Resolve issue"
2970
  msgstr ""
2971
 
2972
+ #: admin/cerber-admin.php:752
2973
  msgid "Restore"
2974
  msgstr ""
2975
 
2976
+ #: cerber-settings.php:611
2977
  msgid "Restrict email addresses"
2978
  msgstr ""
2979
 
2980
+ #: cerber-settings.php:603
2981
  msgid "Restrict new user registrations by the following conditions"
2982
  msgstr ""
2983
 
2984
+ #: cerber-settings.php:470
2985
  msgid ""
2986
  "Restrict or completely block access to the WordPress REST API according to "
2987
  "your needs"
2988
  msgstr ""
2989
 
2990
+ #: cerber-settings.php:548
2991
  msgid "Restrict roles and capabilities management with the following policies"
2992
  msgstr ""
2993
 
2994
+ #: cerber-settings.php:576
2995
  msgid "Restrict updating site settings with the following policies"
2996
  msgstr ""
2997
 
2998
+ #: cerber-settings.php:515
2999
  msgid ""
3000
  "Restrict user account creation and user management with the following "
3001
  "policies"
3002
  msgstr ""
3003
 
3004
+ #: cerber-settings.php:385
3005
  msgid "Retrieve IP address WHOIS information when viewing the logs"
3006
  msgstr ""
3007
 
3008
+ #: cerber-settings.php:1542
3009
  msgid "Return to the website list"
3010
  msgstr ""
3011
 
3012
+ #: cerber-common.php:1813
3013
  msgid "Role update denied"
3014
  msgstr ""
3015
 
3016
+ #: admin/cerber-dashboard.php:5459
3017
  msgid "Role-Based"
3018
  msgstr ""
3019
 
3020
+ #: admin/cerber-dashboard.php:3786
3021
  msgid "Role-based rules are configured"
3022
  msgstr ""
3023
 
3024
+ #: cerber-settings.php:1413
3025
  msgid "Safe mode"
3026
  msgstr ""
3027
 
3028
+ #: cerber-settings.php:1077
3029
  msgid "Save $_SERVER"
3030
  msgstr ""
3031
 
3032
+ #: admin/cerber-users.php:299
3033
  msgid "Save All Changes"
3034
  msgstr ""
3035
 
3036
+ #: admin/cerber-dashboard.php:3843
3037
  msgid "Save all rules"
3038
  msgstr ""
3039
 
3040
+ #: cerber-settings.php:1067
3041
  msgid "Save request cookies"
3042
  msgstr ""
3043
 
3044
+ #: cerber-settings.php:1042
3045
  msgid "Save request fields"
3046
  msgstr ""
3047
 
3048
+ #: cerber-settings.php:1055
3049
  msgid "Save request headers"
3050
  msgstr ""
3051
 
3052
+ #: cerber-settings.php:1072
3053
  msgid "Save response cookies"
3054
  msgstr ""
3055
 
3056
+ #: cerber-settings.php:1061
3057
  msgid "Save response headers"
3058
  msgstr ""
3059
 
3060
+ #: cerber-settings.php:1082
3061
  msgid "Save software errors"
3062
  msgstr ""
3063
 
3064
+ #: cerber-settings.php:1203
3065
  msgid "Scan results reporting"
3066
  msgstr ""
3067
 
3068
+ #: cerber-settings.php:1136
3069
  msgid "Scan the sessions directory"
3070
  msgstr ""
3071
 
3072
+ #: cerber-settings.php:1132
3073
  msgid "Scan web server's temporary directories"
3074
  msgstr ""
3075
 
3076
+ #: admin/cerber-admin.php:109 admin/cerber-admin.php:770
3077
  msgid "Scanned"
3078
  msgstr ""
3079
 
3080
+ #: cerber-load.php:4907
3081
  msgid "Scanner Report"
3082
  msgstr ""
3083
 
3084
+ #: cerber-settings.php:1109
3085
  msgid "Scanner settings"
3086
  msgstr ""
3087
 
3101
  msgid "Scanning website directories for files"
3102
  msgstr ""
3103
 
3104
+ #: admin/cerber-dashboard.php:5496
3105
  msgid "Scheduling"
3106
  msgstr ""
3107
 
3108
+ #: admin/cerber-users.php:989
3109
  msgid "Search for IP address"
3110
  msgstr ""
3111
 
3112
+ #: admin/cerber-dashboard.php:1430
3113
  msgid "Search for IP or username"
3114
  msgstr ""
3115
 
3116
+ #: admin/cerber-dashboard.php:1434
3117
  msgid "Search in URL"
3118
  msgstr ""
3119
 
3120
+ #: nexus/cerber-slave-list.php:247 admin/cerber-users.php:1052
3121
  msgid "Search results for:"
3122
  msgstr ""
3123
 
3124
+ #: cerber-load.php:5974 cerber-load.php:5975
3125
  msgid "Search string"
3126
  msgstr ""
3127
 
3129
  msgid "Searching for malicious code"
3130
  msgstr ""
3131
 
3132
+ #: nexus/cerber-nexus.php:144
3133
  msgid "Secret Access Token"
3134
  msgstr ""
3135
 
3137
  msgid "Secret Access Token is invalid"
3138
  msgstr ""
3139
 
3140
+ #: cerber-settings.php:1471
3141
  msgid "Secret key"
3142
  msgstr ""
3143
 
3144
+ #: admin/cerber-dashboard.php:67 admin/cerber-dashboard.php:5477
3145
  msgid "Security Rules"
3146
  msgstr ""
3147
 
3148
+ #: admin/cerber-dashboard.php:4028
3149
  msgid "Security rules have been updated"
3150
  msgstr ""
3151
 
3152
+ #: admin/cerber-dashboard.php:5494
3153
  msgid "Security Scanner"
3154
  msgstr ""
3155
 
3161
  msgid "Select file to import."
3162
  msgstr ""
3163
 
3164
+ #: admin/cerber-admin-settings.php:534
3165
  msgid "Select one or more roles"
3166
  msgstr ""
3167
 
3168
+ #. %s is the email address(es).
3169
+ #: admin/cerber-dashboard.php:3048
3170
+ #, php-format
3171
+ msgid "Send email alerts to %s"
3172
+ msgstr ""
3173
+
3174
+ #: cerber-settings.php:1217
3175
  msgid "Send email report"
3176
  msgstr ""
3177
 
3178
+ #: cerber-settings.php:361
3179
  msgid "Send malicious IP addresses to the Cerber Lab"
3180
  msgstr ""
3181
 
3182
+ #. %s is the name of a mobile device.
3183
+ #: admin/cerber-dashboard.php:3054
3184
+ #, php-format
3185
+ msgid "Send mobile alerts to %s"
3186
+ msgstr ""
3187
+
3188
+ #: cerber-settings.php:895 admin/cerber-admin-settings.php:371
3189
+ msgid "Send notification if the number of active lockouts above"
3190
+ msgstr ""
3191
+
3192
+ #: cerber-settings.php:339
3193
  msgid "Send notification to admin email"
3194
  msgstr ""
3195
 
3196
+ #: cerber-settings.php:789
3197
+ msgid "Send notification when a new version of WP Cerber is available"
3198
+ msgstr ""
3199
+
3200
+ #: cerber-settings.php:927
3201
  msgid "Send reports on"
3202
  msgstr ""
3203
 
3209
  msgid "Server Country"
3210
  msgstr ""
3211
 
3212
+ #: cerber-load.php:1703
3213
  #, php-format
3214
  msgid "Session has been terminated"
3215
  msgid_plural "%s sessions have been terminated"
3216
  msgstr[0] ""
3217
  msgstr[1] ""
3218
 
3219
+ #: admin/cerber-dashboard.php:3470 admin/cerber-dashboard.php:5362
3220
  msgid "Sessions"
3221
  msgstr ""
3222
 
3223
+ #: cerber-common.php:1814
3224
  msgid "Setting update denied"
3225
  msgstr ""
3226
 
3227
+ #: nexus/cerber-nexus.php:95 admin/cerber-dashboard.php:5434
3228
+ #: admin/cerber-dashboard.php:5495 admin/cerber-tools.php:37
3229
  #: admin/cerber-tools.php:48
3230
  msgid "Settings"
3231
  msgstr ""
3234
  msgid "Settings has imported successfully from"
3235
  msgstr ""
3236
 
3237
+ #: admin/cerber-dashboard.php:2914
3238
  msgid "Settings saved"
3239
  msgstr ""
3240
 
3242
  msgid "Settings updated"
3243
  msgstr ""
3244
 
3245
+ #: cerber-settings.php:406
3246
  msgid "Shift admin menu"
3247
  msgstr ""
3248
 
3249
+ #: cerber-settings.php:407
3250
  msgid ""
3251
  "Shift the WP Cerber admin menu to the top when navigating through WP Cerber "
3252
  "admin pages"
3253
  msgstr ""
3254
 
3255
+ #: cerber-settings.php:1546
3256
  msgid "Show \"Switched to\" notification"
3257
  msgstr ""
3258
 
3260
  msgid "Show homepage in the Website column"
3261
  msgstr ""
3262
 
3263
+ #: cerber-settings.php:384
3264
  msgid "Show IP WHOIS data"
3265
  msgstr ""
3266
 
3267
+ #: cerber-settings.php:294
3268
  msgid "Site connection"
3269
  msgstr ""
3270
 
3271
+ #: admin/cerber-dashboard.php:73 admin/cerber-dashboard.php:5492
3272
  msgid "Site Integrity"
3273
  msgstr ""
3274
 
3275
+ #: cerber-settings.php:1467
3276
  msgid "Site key"
3277
  msgstr ""
3278
 
3279
+ #: cerber-common.php:1860
3280
  msgid "Site policy enforcement"
3281
  msgstr ""
3282
 
3283
+ #: admin/cerber-dashboard.php:5450
3284
  msgid "Site Settings"
3285
  msgstr ""
3286
 
3287
+ #: cerber-settings.php:291
3288
  msgid "Site-specific settings"
3289
  msgstr ""
3290
 
3291
+ #: admin/cerber-admin.php:773 admin/cerber-admin.php:928
3292
+ #: admin/cerber-admin.php:1393
3293
  msgid "Size"
3294
  msgstr ""
3295
 
3296
+ #: cerber-settings.php:1280
3297
  msgid "Skip files with these extensions"
3298
  msgstr ""
3299
 
3301
  msgid "Slave Settings"
3302
  msgstr ""
3303
 
3304
+ #: admin/cerber-admin.php:1213
3305
  msgid "Smallest"
3306
  msgstr ""
3307
 
3308
+ #: cerber-settings.php:1006
3309
  msgid "Smart"
3310
  msgstr ""
3311
 
3312
+ #: cerber-settings.php:828
3313
+ msgid "SMTP encryption"
3314
+ msgstr ""
3315
+
3316
+ #: cerber-settings.php:850
3317
+ msgid "SMTP From email"
3318
+ msgstr ""
3319
+
3320
+ #: cerber-settings.php:857
3321
+ msgid "SMTP From name"
3322
+ msgstr ""
3323
+
3324
+ #: cerber-settings.php:812
3325
+ msgid "SMTP host"
3326
+ msgstr ""
3327
+
3328
+ #: cerber-settings.php:838
3329
+ msgid "SMTP password"
3330
+ msgstr ""
3331
+
3332
+ #: cerber-settings.php:820
3333
+ msgid "SMTP port"
3334
+ msgstr ""
3335
+
3336
+ #: cerber-settings.php:844
3337
+ msgid "SMTP username"
3338
+ msgstr ""
3339
+
3340
+ #: admin/cerber-dashboard.php:3394
3341
  msgid "Some errors occurred"
3342
  msgstr ""
3343
 
3344
+ #: cerber-load.php:2283
3345
  msgid "Sorry, human verification failed."
3346
  msgstr ""
3347
 
3348
+ #: cerber-load.php:3350
3349
  msgid "Sorry, password reset is not allowed for this user."
3350
  msgstr ""
3351
 
3352
+ #: cerber-settings.php:711
3353
  msgid "Sort users in the Dashboard"
3354
  msgstr ""
3355
 
3356
+ #: admin/cerber-admin.php:1118 admin/cerber-admin.php:1212
3357
  msgid "Space Occupied"
3358
  msgstr ""
3359
 
3360
+ #: cerber-common.php:1769
3361
  msgid "Spam comment denied"
3362
  msgstr ""
3363
 
3364
+ #: cerber-common.php:428
3365
  msgid "Spam comments denied"
3366
  msgstr ""
3367
 
3368
+ #: cerber-common.php:1770
3369
  msgid "Spam form submission denied"
3370
  msgstr ""
3371
 
3372
+ #: cerber-common.php:429
3373
  msgid "Spam form submissions denied"
3374
  msgstr ""
3375
 
3376
+ #: cerber-settings.php:1352
3377
  msgid ""
3378
  "Spam protection for registration, comment, and other forms on the website"
3379
  msgstr ""
3380
 
3381
+ #: cerber-settings.php:1153
3382
  msgid ""
3383
  "Specify custom PHP code signatures. One item per line. To specify a REGEX "
3384
  "pattern, enclose a whole line in two braces."
3385
  msgstr ""
3386
 
3387
+ #: cerber-settings.php:1160
3388
  msgid "Specify directories to exclude from scanning. One directory per line."
3389
  msgstr ""
3390
 
3391
+ #: cerber-settings.php:621
3392
  msgid ""
3393
  "Specify email addresses, wildcards or REGEX patterns. Use comma to separate "
3394
  "items."
3395
  msgstr ""
3396
 
3397
+ #: cerber-settings.php:1146
3398
  msgid ""
3399
  "Specify file extensions to search for. Full scan only. Use comma to separate "
3400
  "items."
3401
  msgstr ""
3402
 
3403
+ #: cerber-settings.php:499
3404
  msgid ""
3405
  "Specify REST API namespaces to be allowed if REST API is disabled. One "
3406
  "string per line."
3407
  msgstr ""
3408
 
3409
+ #: cerber-settings.php:1030
3410
  msgid "Specify URL paths to exclude requests from logging. One item per line."
3411
  msgstr ""
3412
 
3413
+ #: cerber-settings.php:1038
3414
  msgid ""
3415
  "Specify User-Agents to exclude requests from logging. One item per line."
3416
  msgstr ""
3417
 
3418
+ #: cerber-settings.php:168
3419
  msgid "Standard mode"
3420
  msgstr ""
3421
 
3422
+ #: admin/cerber-admin.php:188
3423
  msgid "Start Full Scan"
3424
  msgstr ""
3425
 
3426
+ #: admin/cerber-admin.php:187
3427
  msgid "Start Quick Scan"
3428
  msgstr ""
3429
 
3430
+ #: admin/cerber-dashboard.php:3836
3431
  msgid "Start typing here to find a country"
3432
  msgstr ""
3433
 
3434
+ #: admin/cerber-admin.php:81
3435
  msgid "Started"
3436
  msgstr ""
3437
 
3438
+ #: admin/cerber-admin.php:189
3439
  msgid "Stop Scanning"
3440
  msgstr ""
3441
 
3442
+ #: cerber-settings.php:427 cerber-settings.php:474
3443
  msgid "Stop user enumeration"
3444
  msgstr ""
3445
 
3446
+ #: admin/cerber-dashboard.php:3983
3447
  msgid "Submit forms"
3448
  msgstr ""
3449
 
3450
+ #: admin/cerber-dashboard.php:1097
3451
  msgid "Suspicious activity"
3452
  msgstr ""
3453
 
3467
  msgid "Suspicious directives found"
3468
  msgstr ""
3469
 
3470
+ #: cerber-common.php:1858
3471
  msgid "Suspicious JavaScript code detected"
3472
  msgstr ""
3473
 
3474
+ #: cerber-common.php:1854
3475
  msgid "Suspicious number of fields"
3476
  msgstr ""
3477
 
3478
+ #: cerber-common.php:1855
3479
  msgid "Suspicious number of nested values"
3480
  msgstr ""
3481
 
3482
+ #: admin/cerber-dashboard.php:4677
3483
  msgid "Suspicious requests"
3484
  msgstr ""
3485
 
3486
+ #: cerber-common.php:1857
3487
  msgid "Suspicious SQL code detected"
3488
  msgstr ""
3489
 
3495
  msgid "Switch to the Dashboard"
3496
  msgstr ""
3497
 
3498
+ #: admin/cerber-users.php:1154
3499
  msgid "Terminate"
3500
  msgstr ""
3501
 
3502
+ #: admin/cerber-users.php:961
3503
  msgid "Terminate session"
3504
  msgstr ""
3505
 
3506
+ #: admin/cerber-users.php:469
3507
  msgid "Terminate the oldest user session on a new login"
3508
  msgstr ""
3509
 
3510
+ #: cerber-settings.php:733
3511
  msgid "Terminate user sessions"
3512
  msgstr ""
3513
 
3514
+ #: admin/cerber-dashboard.php:679
3515
+ msgid "TEST MESSAGE"
3516
+ msgstr ""
3517
+
3518
+ #: admin/cerber-dashboard.php:3149
3519
  msgid "The alert has been created"
3520
  msgstr ""
3521
 
3522
+ #: admin/cerber-dashboard.php:3158
3523
  msgid "The alert has been deleted"
3524
  msgstr ""
3525
 
3526
+ #: cerber-2fa.php:508
3527
  #, php-format
3528
  msgid "The code is valid for %s minutes."
3529
  msgstr ""
3536
  "has been tampered with."
3537
  msgstr ""
3538
 
3539
+ #: admin/cerber-admin.php:847
3540
  msgid "The file has been deleted permanently."
3541
  msgstr ""
3542
 
3543
+ #: admin/cerber-admin.php:862
3544
  msgid "The file has been restored to its original location."
3545
  msgstr ""
3546
 
3547
+ #: cerber-settings.php:1608
3548
  msgid "The full access mode requires the PRO version of WP Cerber"
3549
  msgstr ""
3550
 
3551
+ #: admin/cerber-dashboard.php:5702
3552
  msgid "The IP address you are trying to add is already in the list"
3553
  msgstr ""
3554
 
3555
+ #: admin/cerber-admin.php:892
3556
  msgid "The list is empty."
3557
  msgstr ""
3558
 
3559
+ #: cerber-settings.php:1187
3560
  msgid ""
3561
  "The scanner automatically scans the website, removes malware and sends email "
3562
  "reports with the results of a scan"
3569
  "(checksums) provided by the developer of %s."
3570
  msgstr ""
3571
 
3572
+ #: cerber-settings.php:1110
3573
  msgid ""
3574
  "The scanner monitors file changes, verifies the integrity of WordPress, "
3575
  "plugins, and themes, and detects malware"
3581
  "it does not belong to any known part of the website and should not be here."
3582
  msgstr ""
3583
 
3584
+ #: admin/cerber-admin-settings.php:967
3585
  msgid "The schedule has been updated"
3586
  msgstr ""
3587
 
3588
+ #: nexus/cerber-nexus.php:146
3589
  msgid ""
3590
  "The token is unique to this website. Keep it secret. Install the token on a "
3591
  "master website to grant access to this website."
3599
  msgid "The website you are trying to add is already in the list"
3600
  msgstr ""
3601
 
3602
+ #: cerber-load.php:4857
3603
+ msgid "The WP Cerber Security plugin has been deactivated"
3604
  msgstr ""
3605
 
3606
+ #: cerber-load.php:4877
3607
+ msgid "The WP Cerber Security plugin is now active"
3608
  msgstr ""
3609
 
3610
+ #: admin/cerber-admin.php:714
3611
  msgid "There are no files in the quarantine at the moment."
3612
  msgstr ""
3613
 
3614
+ #: admin/cerber-dashboard.php:5837
3615
  msgid "These features are available in the professional version of WP Cerber."
3616
  msgstr ""
3617
 
3618
+ #: cerber-settings.php:722
3619
  msgid ""
3620
  "These features help your organization to be in compliance with personal data "
3621
  "protection laws"
3622
  msgstr ""
3623
 
3624
+ #: admin/cerber-dashboard.php:3392
3625
  msgid "These files have been added to the ignore list"
3626
  msgstr ""
3627
 
3628
+ #: admin/cerber-dashboard.php:3388
3629
  msgid "These files have been moved to the quarantine"
3630
  msgstr ""
3631
 
3632
+ #: cerber-settings.php:1320
3633
  msgid "These files will never be deleted during automatic cleanup."
3634
  msgstr ""
3635
 
3636
+ #: cerber-settings.php:1246
3637
  msgid ""
3638
  "These policies are automatically enforced at the end of every scan based on "
3639
  "its results. All affected files are moved to the quarantine."
3640
  msgstr ""
3641
 
3642
+ #: cerber-settings.php:156
3643
  msgid ""
3644
  "These restrictions do not apply to IP addresses in the White IP Access List"
3645
  msgstr ""
3646
 
3647
+ #: cerber-settings.php:1410
3648
  msgid ""
3649
  "These settings enable you to fine-tune the behavior of anti-spam algorithms "
3650
  "and avoid false positives"
3680
  msgid "Medium"
3681
  msgstr ""
3682
 
3683
+ #: cerber-settings.php:637
3684
+ msgid ""
3685
+ "This message is displayed to a user if the IP address of the user's computer "
3686
+ "is not whitelisted"
3687
+ msgstr ""
3688
+
3689
+ #: cerber-load.php:4950
3690
  msgid "This message was sent by"
3691
  msgstr ""
3692
 
3693
+ #: admin/cerber-dashboard.php:3396
3694
  msgid ""
3695
  "This scan report was generated by the previous version of WP Cerber. Please "
3696
  "run a new scan to get consistent and accurate results."
3697
  msgstr ""
3698
 
3699
+ #: admin/cerber-admin.php:535
3700
  msgid "This type of file is not supported. Please upload a ZIP archive."
3701
  msgstr ""
3702
 
3703
+ #: cerber-2fa.php:365
3704
  msgid ""
3705
  "This verification PIN code is expired. We have just sent a new one to your "
3706
  "email."
3710
  msgid "This website can be managed from a master website"
3711
  msgstr ""
3712
 
3713
+ #: nexus/cerber-nexus.php:264
3714
  msgid "This website is set as master."
3715
  msgstr ""
3716
 
3717
+ #: nexus/cerber-nexus.php:268
3718
  msgid "This website is set as slave."
3719
  msgstr ""
3720
 
3721
+ #: admin/cerber-admin-settings.php:769
 
 
 
 
3722
  msgid ""
3723
  "To avoid false positives and get better anti-spam performance, please clear "
3724
  "the plugin cache."
3725
  msgstr ""
3726
 
3727
+ #: cerber-load.php:4902 cerber-load.php:4910
3728
  msgid "To change reporting settings visit"
3729
  msgstr ""
3730
 
3731
+ #: cerber-load.php:5999
3732
  msgid "To delete the alert, click here"
3733
  msgstr ""
3734
 
3736
  msgid "To get the most out of WP Cerber, follow these steps:"
3737
  msgstr ""
3738
 
3739
+ #: admin/cerber-dashboard.php:3958
3740
  #, php-format
3741
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
3742
  msgid ""
3743
  "Selected countries are not permitted to %s, other countries are permitted to"
3744
  msgstr ""
3745
 
3746
+ #: admin/cerber-dashboard.php:3955
3747
  #, php-format
3748
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
3749
  msgid ""
3754
  msgid "To proceed, please select the mode for this website"
3755
  msgstr ""
3756
 
3757
+ #: nexus/cerber-nexus.php:149
3758
  msgid "To revoke the token and disable remote management, click here:"
3759
  msgstr ""
3760
 
3765
  "version."
3766
  msgstr ""
3767
 
3768
+ #: cerber-settings.php:621 cerber-settings.php:686
3769
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
3770
  msgstr ""
3771
 
3772
+ #: cerber-settings.php:968 cerber-settings.php:1030
3773
  msgid "To specify a REGEX pattern, enclose a whole line in two braces."
3774
  msgstr ""
3775
 
3777
  msgid "To view full report visit"
3778
  msgstr ""
3779
 
3780
+ #: admin/cerber-dashboard.php:88 admin/cerber-dashboard.php:5546
3781
  msgid "Tools"
3782
  msgstr ""
3783
 
3784
+ #: admin/cerber-admin.php:1233
3785
  msgid "Top 10 largest files"
3786
  msgstr ""
3787
 
3788
+ #: admin/cerber-dashboard.php:2167 admin/cerber-users.php:1131
3789
  msgid "Traffic"
3790
  msgstr ""
3791
 
3792
+ #: admin/cerber-admin.php:889
3793
  msgid "Traffic Insights"
3794
  msgstr ""
3795
 
3796
+ #: cerber-settings.php:944
3797
  msgid "Traffic Inspection"
3798
  msgstr ""
3799
 
3800
+ #: admin/cerber-dashboard.php:62 admin/cerber-dashboard.php:2128
3801
+ #: admin/cerber-dashboard.php:5431
3802
  msgid "Traffic Inspector"
3803
  msgstr ""
3804
 
3805
+ #: cerber-settings.php:945
3806
  msgid ""
3807
  "Traffic Inspector is a context-aware web application firewall (WAF) that "
3808
  "protects your website by recognizing and denying malicious HTTP requests"
3809
  msgstr ""
3810
 
3811
+ #: cerber-settings.php:996
3812
  msgid "Traffic Logging"
3813
  msgstr ""
3814
 
3815
+ #: cerber-settings.php:1447
3816
  msgid "Trash spam comments"
3817
  msgstr ""
3818
 
3819
+ #: cerber-2fa.php:662
3820
  msgid "Try again"
3821
  msgstr ""
3822
 
3823
+ #: admin/cerber-users.php:10 admin/cerber-users.php:496
3824
  msgid "Two-Factor Authentication"
3825
  msgstr ""
3826
 
3827
+ #: admin/cerber-users.php:500
3828
  msgid "Two-factor authentication"
3829
  msgstr ""
3830
 
3831
+ #: admin/cerber-users.php:104
3832
  msgid "Two-Factor Authentication Email"
3833
  msgstr ""
3834
 
3848
  msgid "Unable to check the integrity of WordPress files due to a network error"
3849
  msgstr ""
3850
 
3851
+ #: cerber-common.php:3385
3852
  msgid "Unable to copy the file"
3853
  msgstr ""
3854
 
3855
+ #: cerber-common.php:3374
3856
  msgid "Unable to create the directory"
3857
  msgstr ""
3858
 
3860
  msgid "Unable to delete"
3861
  msgstr ""
3862
 
3863
+ #: cerber-common.php:3391
3864
  msgid "Unable to delete the file"
3865
  msgstr ""
3866
 
3872
  msgid "Unable to process file"
3873
  msgstr ""
3874
 
3875
+ #: admin/cerber-dashboard.php:687
3876
+ msgid "Unable to send a test message"
3877
  msgstr ""
3878
 
3879
+ #: admin/cerber-admin-settings.php:970
3880
  msgid "Unable to update the schedule"
3881
  msgstr ""
3882
 
3888
  msgid "Unattended suspicious file"
3889
  msgstr ""
3890
 
3891
+ #: cerber-load.php:4861 cerber-whois.php:241 cerber-whois.php:272
3892
+ #: cerber-common.php:2023 nexus/cerber-slave-list.php:333
3893
+ #: admin/cerber-dashboard.php:458 admin/cerber-dashboard.php:4281
3894
+ #: admin/cerber-dashboard.php:4884
3895
  msgid "Unknown"
3896
  msgstr ""
3897
 
3898
+ #: admin/cerber-dashboard.php:598
3899
  msgid "unknown"
3900
  msgstr ""
3901
 
3902
+ #: admin/cerber-dashboard.php:4807
3903
  msgid "Unknown Google's bot"
3904
  msgstr ""
3905
 
3906
+ #: cerber-common.php:1909
3907
  msgid "Unknown label"
3908
  msgstr ""
3909
 
3910
+ #: cerber-load.php:4833
3911
  msgid "unspecified"
3912
  msgstr ""
3913
 
3919
  msgid "Unwanted file extension"
3920
  msgstr ""
3921
 
3922
+ #: cerber-settings.php:1140
3923
  msgid "Unwanted file extensions"
3924
  msgstr ""
3925
 
3935
  msgid "Upgrade WP Cerber"
3936
  msgstr ""
3937
 
3938
+ #: admin/cerber-tools.php:50 admin/cerber-admin.php:258
3939
  msgid "Upload file"
3940
  msgstr ""
3941
 
3942
+ #: cerber-settings.php:309
3943
  msgid "Use 404 template from the active theme"
3944
  msgstr ""
3945
 
3946
+ #: cerber-settings.php:1327
3947
  msgid "Use absolute paths. One item per line."
3948
  msgstr ""
3949
 
3950
+ #: cerber-settings.php:1336
3951
  msgid "Use comma to separate items."
3952
  msgstr ""
3953
 
3954
+ #: cerber-settings.php:1283 cerber-settings.php:1295
3955
  msgid "Use comma to separate multiple extensions"
3956
  msgstr ""
3957
 
3958
+ #: cerber-settings.php:772 cerber-settings.php:934 cerber-settings.php:1049
3959
+ #: cerber-settings.php:1236
3960
  msgid "Use comma to specify multiple values"
3961
  msgstr ""
3962
 
3963
+ #: cerber-settings.php:1373
3964
  msgid "Use custom URL for the WordPress comment form"
3965
  msgstr ""
3966
 
3967
+ #: cerber-settings.php:374
3968
  msgid "Use file"
3969
  msgstr ""
3970
 
3971
+ #: admin/cerber-users.php:486
3972
  msgid "Use global policies"
3973
  msgstr ""
3974
 
3975
+ #: cerber-settings.php:397
3976
  msgid "Use ISO 8601 date format for CSV export files"
3977
  msgstr ""
3978
 
3979
+ #: cerber-settings.php:1414
3980
  msgid "Use less restrictive policies (allow AJAX)"
3981
  msgstr ""
3982
 
3983
+ #: cerber-settings.php:959
3984
  msgid ""
3985
  "Use less restrictive security filters for IP addresses in the White IP "
3986
  "Access List"
3987
  msgstr ""
3988
 
3989
+ #: cerber-settings.php:1554
3990
  msgid "Use master language"
3991
  msgstr ""
3992
 
3993
+ #: admin/cerber-dashboard.php:3986
3994
  msgid "Use REST API"
3995
  msgstr ""
3996
 
3997
+ #: cerber-settings.php:807
3998
+ msgid "Use SMTP"
3999
+ msgstr ""
4000
+
4001
+ #: cerber-settings.php:808
4002
+ msgid "Use SMTP server to send emails"
4003
+ msgstr ""
4004
+
4005
+ #: cerber-settings.php:193 cerber-settings.php:631 cerber-settings.php:656
4006
+ #: cerber-settings.php:958 cerber-settings.php:1423 cerber-settings.php:1521
4007
  msgid "Use White IP Access List"
4008
  msgstr ""
4009
 
4010
+ #: admin/cerber-dashboard.php:3985
4011
  msgid "Use XML-RPC"
4012
  msgstr ""
4013
 
4014
+ #: cerber-load.php:5964 cerber-load.php:5965 admin/cerber-users.php:938
4015
  msgid "User"
4016
  msgstr ""
4017
 
4018
+ #: admin/cerber-dashboard.php:2121
4019
  msgid "user"
4020
  msgid_plural "users"
4021
  msgstr[0] ""
4022
  msgstr[1] ""
4023
 
4024
+ #: cerber-common.php:1831
4025
  msgid "User activated"
4026
  msgstr ""
4027
 
4028
+ #: admin/cerber-users.php:1108
4029
  msgid "User Activity"
4030
  msgstr ""
4031
 
4032
+ #: admin/cerber-dashboard.php:4615
4033
  msgid "User Agent"
4034
  msgstr ""
4035
 
4036
+ #: cerber-common.php:1821
4037
  msgid "User application password created"
4038
  msgstr ""
4039
 
4040
  #. %s is the name of a website administrator who created the password.
4041
+ #: cerber-common.php:1823
4042
  #, php-format
4043
  msgid "User application password created by %s"
4044
  msgstr ""
4045
 
4046
+ #: cerber-common.php:1826
4047
  msgid "User application password deleted"
4048
  msgstr ""
4049
 
4050
  #. %s is the name of a website administrator who deleted the password.
4051
+ #: cerber-common.php:1828
4052
  #, php-format
4053
  msgid "User application password deleted by %s"
4054
  msgstr ""
4055
 
4056
+ #: cerber-common.php:1820
4057
  msgid "User application password updated"
4058
  msgstr ""
4059
 
4060
+ #: cerber-common.php:1863
4061
  msgid "User blocked by administrator"
4062
  msgstr ""
4063
 
4064
+ #: cerber-common.php:1752
4065
  msgid "User created"
4066
  msgstr ""
4067
 
4068
  #. %s is the name of a website administrator who created the user.
4069
+ #: cerber-common.php:1754
4070
  #, php-format
4071
  msgid "User created by %s"
4072
  msgstr ""
4073
 
4074
+ #: cerber-common.php:1811
4075
  msgid "User creation denied"
4076
  msgstr ""
4077
 
4078
+ #: cerber-common.php:1756
4079
  msgid "User deleted"
4080
  msgstr ""
4081
 
4082
  #. %s is the name of a website administrator who deleted the user.
4083
+ #: cerber-common.php:1758
4084
  #, php-format
4085
  msgid "User deleted by %s"
4086
  msgstr ""
4087
 
4088
+ #: admin/cerber-dashboard.php:968 admin/cerber-dashboard.php:4133
4089
  msgid "User ID"
4090
  msgstr ""
4091
 
4092
+ #: admin/cerber-admin.php:888
4093
  msgid "User Insights"
4094
  msgstr ""
4095
 
4096
+ #: admin/cerber-users.php:59 admin/cerber-users.php:65
4097
  msgid "User is not permitted to log into the website"
4098
  msgstr ""
4099
 
4100
+ #: admin/cerber-dashboard.php:967
4101
  msgid "User login"
4102
  msgstr ""
4103
 
4104
+ #: cerber-settings.php:663 admin/cerber-users.php:84
4105
  msgid "User Message"
4106
  msgstr ""
4107
 
4108
+ #: cerber-settings.php:636
4109
  msgid "User message"
4110
  msgstr ""
4111
 
4112
+ #: cerber-common.php:1815
4113
  msgid "User metadata update denied"
4114
  msgstr ""
4115
 
4116
+ #: admin/cerber-dashboard.php:70 admin/cerber-dashboard.php:5457
4117
  msgid "User Policies"
4118
  msgstr ""
4119
 
4120
+ #: cerber-common.php:1755
4121
  msgid "User registered"
4122
  msgstr ""
4123
 
4124
+ #: cerber-settings.php:602
4125
  msgid "User registration"
4126
  msgstr ""
4127
 
4128
+ #: cerber-settings.php:520
4129
  msgid "User registrations are limited to these roles"
4130
  msgstr ""
4131
 
4132
+ #: cerber-common.php:1812
4133
  msgid "User row update denied"
4134
  msgstr ""
4135
 
4136
+ #: cerber-settings.php:704 admin/cerber-users.php:455
4137
  msgid "User session expiration time"
4138
  msgstr ""
4139
 
4140
+ #: cerber-common.php:1785
4141
  msgid "User session terminated"
4142
  msgstr ""
4143
 
4144
  #. %s is the name of a website administrator who terminated the session.
4145
+ #: cerber-common.php:1787
4146
  #, php-format
4147
  msgid "User session terminated by %s"
4148
  msgstr ""
4149
 
4150
+ #: admin/cerber-dashboard.php:969 admin/cerber-dashboard.php:1348
4151
  msgid "Username"
4152
  msgstr ""
4153
 
4154
+ #: cerber-load.php:1940
4155
  msgid "Username is not allowed. Please choose another one."
4156
  msgstr ""
4157
 
4158
+ #: cerber-common.php:1864 admin/cerber-dashboard.php:1881
4159
+ #: admin/cerber-dashboard.php:3463
4160
  msgid "Username is prohibited"
4161
  msgstr ""
4162
 
4163
+ #: cerber-load.php:5969 cerber-load.php:5970
4164
  msgid "Username used"
4165
  msgstr ""
4166
 
4167
+ #: cerber-settings.php:686
4168
  msgid ""
4169
  "Usernames from this list are not allowed to log in or register. Any IP "
4170
  "address, have tried to use any of these usernames, will be immediately "
4171
  "blocked. Use comma to separate logins."
4172
  msgstr ""
4173
 
4174
+ #: admin/cerber-dashboard.php:1108 admin/cerber-dashboard.php:4679
4175
  msgid "Users"
4176
  msgstr ""
4177
 
4178
+ #: cerber-settings.php:554
4179
  msgid "Users with these roles are permitted to add new roles"
4180
  msgstr ""
4181
 
4182
+ #: cerber-settings.php:582
4183
  msgid "Users with these roles are permitted to change protected settings"
4184
  msgstr ""
4185
 
4186
+ #: cerber-settings.php:559
4187
  msgid "Users with these roles are permitted to change role capabilities"
4188
  msgstr ""
4189
 
4190
+ #: cerber-settings.php:531
4191
  msgid "Users with these roles are permitted to change sensitive user data"
4192
  msgstr ""
4193
 
4194
+ #: cerber-settings.php:526
4195
  msgid "Users with these roles are permitted to create new accounts"
4196
  msgstr ""
4197
 
4198
+ #: admin/cerber-dashboard.php:2725
4199
  msgid "Users' Activity"
4200
  msgstr ""
4201
 
4202
+ #: cerber-settings.php:803 cerber-settings.php:913
4203
+ msgid "Verbose"
4204
+ msgstr ""
4205
+
4206
  #: cerber-scanner.php:1614
4207
  msgid "Verified"
4208
  msgstr ""
4209
 
4210
+ #: cerber-2fa.php:675
4211
  msgid "Verify"
4212
  msgstr ""
4213
 
4214
+ #: cerber-2fa.php:670
4215
  msgid "Verify it's you"
4216
  msgstr ""
4217
 
4227
  msgid "Verifying the integrity of WordPress"
4228
  msgstr ""
4229
 
4230
+ #: admin/cerber-dashboard.php:2899 admin/cerber-dashboard.php:3468
4231
  msgid "View Activity"
4232
  msgstr ""
4233
 
4234
+ #: cerber-load.php:4845
4235
  msgid "View activity for this IP"
4236
  msgstr ""
4237
 
4238
+ #: cerber-load.php:4809 cerber-load.php:5998
4239
  msgid "View activity in the Dashboard"
4240
  msgstr ""
4241
 
4242
+ #: admin/cerber-dashboard.php:1076 admin/cerber-dashboard.php:1087
4243
+ #: admin/cerber-dashboard.php:1100 admin/cerber-dashboard.php:2768
4244
+ #: admin/cerber-dashboard.php:4676
4245
  msgid "View all"
4246
  msgstr ""
4247
 
4248
+ #: admin/cerber-dashboard.php:2115 admin/cerber-dashboard.php:2116
4249
  msgid "view all"
4250
  msgstr ""
4251
 
4252
+ #: admin/cerber-dashboard.php:1407
4253
  msgid "View all logged events"
4254
  msgstr ""
4255
 
4256
+ #: admin/cerber-dashboard.php:4650
4257
  msgid "View all logged requests"
4258
  msgstr ""
4259
 
4260
+ #: cerber-settings.php:503
4261
  msgid "View all REST API requests"
4262
  msgstr ""
4263
 
4264
+ #: cerber-settings.php:1356
4265
  msgid "View bot events"
4266
  msgstr ""
4267
 
4268
+ #: cerber-settings.php:503
4269
  msgid "View denied REST API requests"
4270
  msgstr ""
4271
 
4272
+ #: cerber-load.php:4846
4273
  msgid "View lockouts in the Dashboard"
4274
  msgstr ""
4275
 
4276
+ #: cerber-settings.php:1461
4277
  msgid "View reCAPTCHA events"
4278
  msgstr ""
4279
 
4280
+ #: cerber-settings.php:207 cerber-settings.php:208
4281
  msgid "View violations in the log"
4282
  msgstr ""
4283
 
4293
  msgid "Want to make WP Cerber even more powerful?"
4294
  msgstr ""
4295
 
4296
+ #: admin/cerber-admin.php:252
4297
  msgid "We have not found any integrity data to verify"
4298
  msgstr ""
4299
 
4300
+ #: cerber-load.php:8310
4301
  msgid "We need your support to keep moving forward"
4302
  msgstr ""
4303
 
4304
+ #: cerber-load.php:4680
4305
  msgid "We're sorry, you are not allowed to proceed"
4306
  msgstr ""
4307
 
4308
+ #: cerber-2fa.php:659
4309
  msgid "We've sent a verification PIN code to your email"
4310
  msgstr ""
4311
 
4312
+ #: cerber-load.php:4854 cerber-load.php:4867 nexus/cerber-slave-list.php:44
4313
  msgid "Website"
4314
  msgstr ""
4315
 
4332
  msgid "Website URL"
4333
  msgstr ""
4334
 
4335
+ #: cerber-load.php:5294
4336
  msgid "Weekly Report"
4337
  msgstr ""
4338
 
4339
+ #: cerber-load.php:4899
4340
  msgid "Weekly report"
4341
  msgstr ""
4342
 
4343
+ #: cerber-settings.php:920
4344
  msgid ""
4345
  "Weekly report is a summary of all activities and suspicious events occurred "
4346
  "during the last seven days"
4347
  msgstr ""
4348
 
4349
+ #: cerber-settings.php:919
4350
  msgid "Weekly reports"
4351
  msgstr ""
4352
 
4358
  msgid "What do you want to import?"
4359
  msgstr ""
4360
 
4361
+ #: admin/cerber-users.php:466
4362
  msgid "When the limit on concurrent user sessions is reached"
4363
  msgstr ""
4364
 
4380
  "loaded. The Custom login URL and Access Lists will not be changed."
4381
  msgstr ""
4382
 
4383
+ #: admin/cerber-dashboard.php:276 admin/cerber-dashboard.php:1626
4384
+ #: admin/cerber-dashboard.php:1710 admin/cerber-dashboard.php:2123
4385
  #: admin/cerber-tools.php:69
4386
  msgid "White IP Access List"
4387
  msgstr ""
4388
 
4389
+ #: admin/cerber-dashboard.php:6024
4390
  msgid "WooCommerce Log In"
4391
  msgstr ""
4392
 
4393
+ #: admin/cerber-dashboard.php:6025
4394
  msgid "WooCommerce Log Out"
4395
  msgstr ""
4396
 
4398
  msgid "WordPress"
4399
  msgstr ""
4400
 
4401
+ #: cerber-settings.php:1269
4402
  msgid "WordPress uploads analysis"
4403
  msgstr ""
4404
 
4405
+ #: cerber-load.php:4878 cerber-load.php:6250
4406
  msgid "WP Cerber is now active and has started protecting your site"
4407
  msgstr ""
4408
 
4409
+ #: cerber-load.php:6194 cerber-common.php:616
 
 
 
 
4410
  #, php-format
4411
  msgid "WP Cerber requires PHP %s or higher. You are running %s."
4412
  msgstr ""
4413
 
4414
+ #: cerber-load.php:6198 cerber-common.php:620
4415
  #, php-format
4416
  msgid "WP Cerber requires WordPress %s or higher. You are running %s."
4417
  msgstr ""
4420
  msgid "WP Cerber Security, Anti-spam & Malware Scan"
4421
  msgstr ""
4422
 
4423
+ #: cerber-settings.php:375
4424
  msgid "Write failed login attempts to the file"
4425
  msgstr ""
4426
 
4427
+ #: admin/cerber-dashboard.php:2041 admin/cerber-users.php:68
4428
+ #: admin/cerber-users.php:1097
4429
  msgid "You"
4430
  msgstr ""
4431
 
4433
  msgid "You are here:"
4434
  msgstr ""
4435
 
4436
+ #: cerber-load.php:397
4437
  msgid "You are not allowed to log in"
4438
  msgstr ""
4439
 
4440
+ #: cerber-load.php:387 admin/cerber-users.php:478
4441
  msgid "You are not allowed to log in. Ask your administrator for assistance."
4442
  msgstr ""
4443
 
4444
+ #: cerber-load.php:1919 cerber-load.php:1925 cerber-load.php:1930
4445
+ #: cerber-load.php:1950 cerber-load.php:1955
4446
  msgid "You are not allowed to register."
4447
  msgstr ""
4448
 
4449
+ #: admin/cerber-dashboard.php:366
4450
  msgid "You cannot add your IP address or network"
4451
  msgstr ""
4452
 
4453
+ #: cerber-load.php:416
4454
  #, php-format
4455
  msgid "You have %d login attempt remaining."
4456
  msgid_plural "You have %d login attempts remaining."
4457
  msgstr[0] ""
4458
  msgstr[1] ""
4459
 
4460
+ #: admin/cerber-admin-settings.php:702
4461
  msgid ""
4462
  "You have disabled the default login page. Ensure that you have configured an "
4463
  "alternative login page. Otherwise, you will not be able to log in."
4464
  msgstr ""
4465
 
4466
+ #: cerber-2fa.php:368
4467
  msgid "You have entered an incorrect verification PIN code"
4468
  msgstr ""
4469
 
4470
+ #: cerber-load.php:393
4471
  #, php-format
4472
  msgid ""
4473
  "You have exceeded the number of allowed login attempts. Please try again in "
4474
  "%d minutes."
4475
  msgstr ""
4476
 
4477
+ #: cerber-load.php:413
4478
  msgid "You have only one login attempt remaining."
4479
  msgstr ""
4480
 
4487
  msgid "You have switched to %s"
4488
  msgstr ""
4489
 
4490
+ #: admin/cerber-admin.php:254
4491
  msgid ""
4492
  "You have to upload a ZIP archive from which you've installed it. This "
4493
  "enables the security scanner to verify the integrity of the code and detect "
4494
  "malware."
4495
  msgstr ""
4496
 
4497
+ #: cerber-2fa.php:507
4498
  msgid ""
4499
  "You or someone else trying to log into the website. We have to verify that "
4500
  "it's you. If this wasn't you, please immediately reset your password to "
4501
  "safeguard your account."
4502
  msgstr ""
4503
 
4504
+ #: admin/cerber-dashboard.php:1400
4505
  msgid "You will be notified when such an event occurs"
4506
  msgstr ""
4507
 
4508
+ #: admin/cerber-dashboard.php:288
4509
  msgid "Your IP"
4510
  msgstr ""
4511
 
4512
+ #: cerber-load.php:6236
4513
  #, php-format
4514
  msgid "Your IP address %s has been added to the White IP Access List"
4515
  msgstr ""
4516
 
4517
+ #: cerber-load.php:5132
4518
  #, php-format
4519
  msgid "Your last sign-in was %s from %s"
4520
  msgstr ""
4521
 
4522
+ #: cerber-load.php:4947
4523
  msgid "Your license is valid until"
4524
  msgstr ""
4525
 
4526
+ #: cerber-load.php:4942
4527
  msgid "Your login page:"
4528
  msgstr ""
4529
 
4530
+ #: cerber-load.php:4681
4531
  msgid ""
4532
  "Your request looks suspiciously similar to automated requests from spam "
4533
  "posting software or it has been denied by a security policy configured by "
nexus/cerber-nexus-master.php CHANGED
@@ -498,7 +498,7 @@ function nexus_show_slave_form( $site_id ) {
498
  'maxlength' => 200
499
  ),
500
  'site_group' => array(
501
- 'class' => 'crb-wide crb-select2-tags',
502
  'title' => __( 'Group', 'wp-cerber' ),
503
  'set' => nexus_get_groups( true ),
504
  'value' => $site->group_id,
498
  'maxlength' => 200
499
  ),
500
  'site_group' => array(
501
+ 'input_class' => 'crb-wide crb-select2-tags',
502
  'title' => __( 'Group', 'wp-cerber' ),
503
  'set' => nexus_get_groups( true ),
504
  'value' => $site->group_id,
nexus/cerber-nexus.php CHANGED
@@ -136,8 +136,6 @@ function nexus_site_manager() {
136
 
137
  $token = nexus_the_token();
138
 
139
- //print_r(nexus_the_token($token));
140
-
141
  $no_slave = wp_nonce_url( add_query_arg( array(
142
  'cerber_admin_do' => 'nexus_set_role',
143
  'nexus_set_role' => 'none',
136
 
137
  $token = nexus_the_token();
138
 
 
 
139
  $no_slave = wp_nonce_url( add_query_arg( array(
140
  'cerber_admin_do' => 'nexus_set_role',
141
  'nexus_set_role' => 'none',
readme.txt CHANGED
@@ -4,8 +4,8 @@ Tags: security, malware scanner, antispam, firewall, limit login attempts, custo
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SQ5EC8WQP654Q&source=url
5
  Requires at least: 4.9
6
  Requires PHP: 7.0
7
- Tested up to: 5.9
8
- Stable tag: 8.9.6
9
  License: GPLv2
10
 
11
  Protection against hacker attacks and bots. Malware scanner & integrity checker. User activity log. Antispam reCAPTCHA. Limit login attempts.
@@ -316,6 +316,24 @@ To get access to your dashboard you need to copy the WP Cerber Reset folder to t
316
 
317
  == Changelog ==
318
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
319
  = 8.9.6 =
320
  * New: A new [alert creation dialog with a set of new alert settings](https://wpcerber.com/wordpress-notifications-made-easy/) enables you to create alerts with new limits: an expiration time, the maximum number of alerts allowed to send, and optional rate-limiting. The alert conditions can include the URL of a request now.
321
  * New: Deleting of [WordPress application passwords](https://wpcerber.com/wordpress-application-passwords-how-to/) is logged now.
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SQ5EC8WQP654Q&source=url
5
  Requires at least: 4.9
6
  Requires PHP: 7.0
7
+ Tested up to: 6.0
8
+ Stable tag: 9.0
9
  License: GPLv2
10
 
11
  Protection against hacker attacks and bots. Malware scanner & integrity checker. User activity log. Antispam reCAPTCHA. Limit login attempts.
316
 
317
  == Changelog ==
318
 
319
+ = 9.0 =
320
+ * New: Different [alerts](https://wpcerber.com/wordpress-notifications-made-easy/) can be sent through different channels. You can select delivering notifications through Pushbullet and email simultaneously, Pushbullet only, or email only. The settings are configured on a per-alert basis in the alert creation form.
321
+ * New: Implemented a new "Message format" feature and setting. You can reduce the number of links in WP Cerber’s messages or disable them completely to prevent sending sensitive data.
322
+ * New: Implemented separate rate limiting settings for email and [Pushbullet notifications](https://wpcerber.com/wordpress-mobile-and-browser-notifications-pushbullet/).
323
+ * New: Lockout notifications and appropriate threshold can be enabled for Pushbullet and emails separately.
324
+ * New: Email reports and alerts can be sent via a separate SMTP server configured in the WP Cerber settings.
325
+ * New: Implemented masking IP addresses and usernames (logins) in emails and mobile alerts.
326
+ * New: Disabling login language switcher. If enabled, removes language switcher on the standard WordPress login page introduced in WordPress 5.9.
327
+ * Improved: If WP Cerber is unable to load its saved settings from the website database, it uses hard-coded default values.
328
+ * Improved: If you have configured the [list of prohibited usernames](https://wpcerber.com/using-list-of-prohibited-logins-to-catch-stupid-bots/) (logins) and the username of an existing user is among prohibited ones, the user is now shown as BLOCKED on the "Users" admin page, user edit page, Activity tab, and Live Traffic tab.
329
+ * Improved: When multiple email addresses are specified for notifications, each email will be sent separately. No multiply recipients in a single email are used anymore.
330
+ * Improved: The subjects of alerts now contain corresponding event labels.
331
+ * Improved: The subject of WP Cerber’s emails have been unified. It begins with website name in square brackets plus the "WP Cerber" string.
332
+ * Improved: All test alerts and messages manually sent from the WP Cerber admin dashboard now contain *** TEST MESSAGE *** in the subject.
333
+ * Improved: Displaying detailed information about PHP generated by phpinfo(). A new link is on the Diagnostic tab in the System Info section.
334
+ * Fixed: An issue with multiple "IP blocked" in the log if the reason for a lockout is changing.
335
+ * Fixed: An issue with "Site title" containing apostrophes.
336
+
337
  = 8.9.6 =
338
  * New: A new [alert creation dialog with a set of new alert settings](https://wpcerber.com/wordpress-notifications-made-easy/) enables you to create alerts with new limits: an expiration time, the maximum number of alerts allowed to send, and optional rate-limiting. The alert conditions can include the URL of a request now.
339
  * New: Deleting of [WordPress application passwords](https://wpcerber.com/wordpress-application-passwords-how-to/) is logged now.
wp-cerber.php CHANGED
@@ -5,7 +5,7 @@
5
  Description: Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications.
6
  Author: Cerber Tech Inc.
7
  Author URI: https://wpcerber.com
8
- Version: 8.9.6
9
  Text Domain: wp-cerber
10
  Domain Path: /languages
11
  Network: true
@@ -31,7 +31,7 @@
31
 
32
  */
33
 
34
- const CERBER_VER = '8.9.6';
35
  const CERBER_PLUGIN_ID = 'wp-cerber/wp-cerber.php';
36
 
37
  function cerber_plugin_file() {
5
  Description: Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications.
6
  Author: Cerber Tech Inc.
7
  Author URI: https://wpcerber.com
8
+ Version: 9.0
9
  Text Domain: wp-cerber
10
  Domain Path: /languages
11
  Network: true
31
 
32
  */
33
 
34
+ const CERBER_VER = '9.0';
35
  const CERBER_PLUGIN_ID = 'wp-cerber/wp-cerber.php';
36
 
37
  function cerber_plugin_file() {