Cerber Security & Antispam - Version 8.6.6

Version Description

  • New: On the user sessions page, you can now search sessions by a user name, email, and the IP address from which a user has logged in.
  • New: You can specify locations (URL Paths) to exclude requests from logging. They can be either exact matches or regular expressions (REGEX).
  • New: You can exclude requests from logging based on the value of the User-Agent (UA) header.
  • New: A new, minimal logging mode. When it is set, only HTTP requests related to known activities are logged.
  • Improved: The layout of the Live Traffic log has been improved: now all events that are logged during a particular request are shown as an event list sorted in reverse order.
  • Improved: The user sessions page has been optimized for performance and compatibility and now works blazingly fast.
  • Improved: If your website is behind a proxy, IP addresses of user sessions now are detected more precisely.
  • Improved: When you configure the request whitelist in the Traffic Inspector settings, you can now specify rules with or without trailing slash.
  • Improved: A new version of Cloudflare add-on for WP Cerber is available: the performance of the add-on has been optimized.
  • Read more
Download this release

Release Info

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

Code changes from version 8.6.5 to 8.6.6

admin/cerber-admin.php CHANGED
@@ -1376,3 +1376,11 @@ function cerber_get_date( $file ) {
1376
 
1377
  return ( is_numeric( $mtime ) ) ? $mtime : 0;
1378
  }
 
 
 
 
 
 
 
 
1376
 
1377
  return ( is_numeric( $mtime ) ) ? $mtime : 0;
1378
  }
1379
+
1380
+ function crb_show_admin_announcement( $text = '', $big = true ) {
1381
+ $class = ( $big ) ? 'crb-cerber-logo-big' : 'crb-cerber-logo-small';
1382
+
1383
+ echo '<div class="cerber-msg crb-announcement ' . $class . '"><table><tr><td></td>' .
1384
+ '<td><div>' . $text . '</div></td></tr></table></div>';
1385
+ }
1386
+
admin/cerber-settings.php CHANGED
@@ -260,9 +260,9 @@ function cerber_field_show( $args ) {
260
  //$settings = get_site_option( 'cerber-' . $args['group'] );
261
  $settings = crb_get_settings();
262
 
263
- $pre = '';
264
- $value = '';
265
- $atts = '';
266
 
267
  $label = crb_array_get( $args, 'label', '' );
268
 
@@ -296,7 +296,7 @@ function cerber_field_show( $args ) {
296
  $atts .= ' disabled="disabled" ';
297
  }
298
  if ( $args['setting'] == 'loginpath' ) {
299
- $pre = cerber_get_home_url() . '/';
300
  $value = urldecode( $value );
301
  }
302
  }
@@ -320,7 +320,7 @@ function cerber_field_show( $args ) {
320
  $class = crb_array_get( $args, 'class', '' );
321
 
322
  $data = '';
323
- $ena = array();
324
  if ( isset( $args['enabler'][0] ) ) {
325
  $ena['enabler'] = 'crb-input-' . $args['enabler'][0];
326
  //$data .= ' data-enabler="crb-input-' . $args['enabler'][0] . '" ';
@@ -390,13 +390,16 @@ function cerber_field_show( $args ) {
390
 
391
  case 'textarea':
392
  $html = '<textarea class="large-text crb-monospace" id="' . $id . '" name="' . $name . '" ' . $atts . $data . '>' . $value . '</textarea>';
393
- $html .= '<br/><label class="crb-below" for="' . $args['setting'] . '">' . $label . '</label>';
 
 
394
  break;
395
 
396
  case 'select':
397
  $html = cerber_select( $name, $args['set'], $value, $class, $id, '', $placeholder, $ena );
398
- //$html .= '<span class="">' . $label . '</span>';
399
- $html .= '<br/><label class="crb-below">' . $label . '</label>';
 
400
  break;
401
 
402
  case 'role_select':
@@ -411,7 +414,7 @@ function cerber_field_show( $args ) {
411
  }
412
  $html = '<div class="crb-checkbox_set" style="line-height: 2em;" ' . $data . '>' . $label;
413
  foreach ( $args['set'] as $key => $item ) {
414
- $v = ( ! empty( $value[ $key ] ) ) ? $value[ $key ] : 0;
415
  $html .= '<input type="checkbox" value="1" name="' . $name . '[' . $key . ']" ' . checked( 1, $v, false ) . $atts . '/>' . $item . '<br />';
416
  }
417
  $html .= '</div>';
@@ -437,15 +440,15 @@ function cerber_field_show( $args ) {
437
  $input_type = 'text';
438
  }
439
 
440
- $size = '';
441
- $class = '';
442
 
443
  if ( $type == 'digits' ) {
444
- $size = '3';
445
  $class = 'crb-digits';
446
  }
447
 
448
- $size = crb_array_get( $args, 'size', $size );
449
  $maxlength = crb_array_get( $args, 'maxlength', $size );
450
 
451
  if ( $maxlength ) {
@@ -480,31 +483,32 @@ function cerber_field_show( $args ) {
480
 
481
  $html = $pre . '<input type="' . $input_type . '" id="' . $args['setting'] . '" name="' . $name . '" value="' . $value . '"' . $atts . ' class="' . $class . '" ' . $size . $maxlength . $atts . $data . ' />';
482
 
483
- if ( ! $size || crb_array_get( $args, 'label_pos' ) == 'below' ) {
484
- $label = '<br/><label class="crb-below" for="' . $args['setting'] . '">' . $label . '</label>';
485
- }
486
- else {
487
- $label = ' <label for="' . $args['setting'] . '">' . $label . '</label>';
 
 
488
  }
489
-
490
  $html .= $label;
491
  break;
492
  }
493
 
494
  if ( ! empty( $args['enabled'] ) ) {
495
- $name = 'cerber-' . $args['group'] . '[' . $args['setting'] . '-enabled]';
496
  $value = 0;
497
  if ( isset( $settings[ $args['setting'] . '-enabled' ] ) ) {
498
  $value = $settings[ $args['setting'] . '-enabled' ];
499
  }
500
  $checkbox = '<label class="crb-switch"><input class="screen-reader-text" type="checkbox" id="' . $args['setting'] . '-enabled" name="' . $name . '" value="1" ' . checked( 1, $value, false ) . ' /><span class="crb-slider round"></span></label>' . $args['enabled'];
501
- $html = $checkbox . ' ' . $html;
502
  }
503
 
504
  echo $html . "\n";
505
  }
506
 
507
- function cerber_role_select( $name = 'cerber-roles', $selected = array(), $class = '', $multiple = '', $placeholder = '', $width = '70%' ) {
508
 
509
  if ( ! is_array( $selected ) ) {
510
  $selected = array( $selected );
@@ -855,6 +859,9 @@ add_filter( 'pre_update_option_'.CERBER_OPT_T, function ($new, $old, $option) {
855
  }
856
  }
857
 
 
 
 
858
  $new['timask'] = cerber_text2array( $new['timask'], "," );
859
  if ( $new['tithreshold'] ) {
860
  $new['tithreshold'] = absint( $new['tithreshold'] );
260
  //$settings = get_site_option( 'cerber-' . $args['group'] );
261
  $settings = crb_get_settings();
262
 
263
+ $pre = '';
264
+ $value = '';
265
+ $atts = '';
266
 
267
  $label = crb_array_get( $args, 'label', '' );
268
 
296
  $atts .= ' disabled="disabled" ';
297
  }
298
  if ( $args['setting'] == 'loginpath' ) {
299
+ $pre = cerber_get_home_url() . '/';
300
  $value = urldecode( $value );
301
  }
302
  }
320
  $class = crb_array_get( $args, 'class', '' );
321
 
322
  $data = '';
323
+ $ena = array();
324
  if ( isset( $args['enabler'][0] ) ) {
325
  $ena['enabler'] = 'crb-input-' . $args['enabler'][0];
326
  //$data .= ' data-enabler="crb-input-' . $args['enabler'][0] . '" ';
390
 
391
  case 'textarea':
392
  $html = '<textarea class="large-text crb-monospace" id="' . $id . '" name="' . $name . '" ' . $atts . $data . '>' . $value . '</textarea>';
393
+ if ( $label ) {
394
+ $html .= '<br/><label class="crb-below" for="' . $args['setting'] . '">' . $label . '</label>';
395
+ }
396
  break;
397
 
398
  case 'select':
399
  $html = cerber_select( $name, $args['set'], $value, $class, $id, '', $placeholder, $ena );
400
+ if ( $label ) {
401
+ $html .= '<br/><label class="crb-below">' . $label . '</label>';
402
+ }
403
  break;
404
 
405
  case 'role_select':
414
  }
415
  $html = '<div class="crb-checkbox_set" style="line-height: 2em;" ' . $data . '>' . $label;
416
  foreach ( $args['set'] as $key => $item ) {
417
+ $v = ( ! empty( $value[ $key ] ) ) ? $value[ $key ] : 0;
418
  $html .= '<input type="checkbox" value="1" name="' . $name . '[' . $key . ']" ' . checked( 1, $v, false ) . $atts . '/>' . $item . '<br />';
419
  }
420
  $html .= '</div>';
440
  $input_type = 'text';
441
  }
442
 
443
+ $size = '';
444
+ $class = '';
445
 
446
  if ( $type == 'digits' ) {
447
+ $size = '3';
448
  $class = 'crb-digits';
449
  }
450
 
451
+ $size = crb_array_get( $args, 'size', $size );
452
  $maxlength = crb_array_get( $args, 'maxlength', $size );
453
 
454
  if ( $maxlength ) {
483
 
484
  $html = $pre . '<input type="' . $input_type . '" id="' . $args['setting'] . '" name="' . $name . '" value="' . $value . '"' . $atts . ' class="' . $class . '" ' . $size . $maxlength . $atts . $data . ' />';
485
 
486
+ if ( $label ) {
487
+ if ( ! $size || crb_array_get( $args, 'label_pos' ) == 'below' ) {
488
+ $label = '<br/><label class="crb-below" for="' . $args['setting'] . '">' . $label . '</label>';
489
+ }
490
+ else {
491
+ $label = ' <label for="' . $args['setting'] . '">' . $label . '</label>';
492
+ }
493
  }
 
494
  $html .= $label;
495
  break;
496
  }
497
 
498
  if ( ! empty( $args['enabled'] ) ) {
499
+ $name = 'cerber-' . $args['group'] . '[' . $args['setting'] . '-enabled]';
500
  $value = 0;
501
  if ( isset( $settings[ $args['setting'] . '-enabled' ] ) ) {
502
  $value = $settings[ $args['setting'] . '-enabled' ];
503
  }
504
  $checkbox = '<label class="crb-switch"><input class="screen-reader-text" type="checkbox" id="' . $args['setting'] . '-enabled" name="' . $name . '" value="1" ' . checked( 1, $value, false ) . ' /><span class="crb-slider round"></span></label>' . $args['enabled'];
505
+ $html = $checkbox . ' ' . $html;
506
  }
507
 
508
  echo $html . "\n";
509
  }
510
 
511
+ function cerber_role_select( $name = 'cerber-roles', $selected = array(), $class = '', $multiple = '', $placeholder = '', $width = '75%' ) {
512
 
513
  if ( ! is_array( $selected ) ) {
514
  $selected = array( $selected );
859
  }
860
  }
861
 
862
+ $new['tinoua'] = cerber_text2array( $new['tinoua'], "\n" );
863
+ $new['tinolocs'] = cerber_text2array( $new['tinolocs'], "\n" );
864
+
865
  $new['timask'] = cerber_text2array( $new['timask'], "," );
866
  if ( $new['tithreshold'] ) {
867
  $new['tithreshold'] = absint( $new['tithreshold'] );
assets/admin.css CHANGED
@@ -21,6 +21,15 @@
21
  line-height: inherit;
22
  }
23
 
 
 
 
 
 
 
 
 
 
24
  /* End of reset */
25
 
26
  .crb-display-none {
@@ -46,6 +55,11 @@
46
  font-weight: 500;
47
  }
48
 
 
 
 
 
 
49
  #crb-activation-msg i{
50
  font-size: 1.6em;
51
  }
@@ -80,12 +94,6 @@
80
  border-color: #9ca4ac;
81
  }
82
 
83
- #crb-admin .tablenav select,
84
- #crb-admin .tablenav input[type="text"] {
85
- width: auto;
86
- margin: 0 0.5em 0 0;
87
- }
88
-
89
  .crb-main a:focus,
90
  #crb-aside a:focus {
91
  -webkit-box-shadow: none !important;
@@ -148,11 +156,13 @@
148
  padding-top: 0.5em;
149
  font-size: 13px;
150
  opacity: 0.9;
 
 
151
  }
152
  .crb-settings .form-table input.crb-wide,
153
  .crb-settings .form-table select.crb-wide,
154
  .crb-settings .form-table textarea {
155
- width: 70%; /* Also hardcoded in <select> php code for select2 */
156
  }
157
  .crb-settings input[type="submit"] {
158
  margin-top: 20px;
@@ -385,7 +395,54 @@
385
  border: solid 1px #0073aa;
386
  }
387
 
388
- /* Messages */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389
  .crb-alarm {
390
  display: block;
391
  border-left: 6px solid #ff0000;
@@ -418,6 +475,10 @@
418
  line-height: 180%;
419
  }
420
 
 
 
 
 
421
  .cerber-msg h3 {
422
  margin-top: 0;
423
  }
@@ -434,11 +495,6 @@
434
  }
435
  }
436
 
437
- .crb-tab-sessions #ses_started,
438
- .crb-tab-sessions #ses_expires{
439
- /*width: 15%;*/
440
- }
441
-
442
  .crb-tab-sessions .crb-us-lbl {
443
  display: inline-block;
444
  padding: 3px 5px 3px 5px;
@@ -447,6 +503,10 @@
447
  color: white;
448
  }
449
 
 
 
 
 
450
  .crb-table th {
451
  white-space: nowrap;
452
  }
@@ -517,10 +577,11 @@
517
 
518
  #crb-traffic .crb-request span {
519
  margin-right: 0.5em;
520
- display: inline-block;
521
  vertical-align: middle;
522
  line-height: 1.2em;
523
- padding: 4px 8px;
 
524
  word-break: keep-all;
525
  }
526
 
@@ -713,7 +774,9 @@ td.crb-traffic-details table td:nth-child(2) {
713
  }
714
  #crb-activity-fields select,
715
  #crb-activity-fields input[type="text"],
716
- #crb-activity-fields .select2-container {
 
 
717
  width: 250px;
718
  margin: 0 0.5em 0 0;
719
  }
@@ -734,8 +797,10 @@ td.crb-traffic-details table td:nth-child(2) {
734
  }
735
 
736
  .crb-log-status{
737
- background-color: #777;
738
- color: #ffffff;
 
 
739
  display: inline-block;
740
  padding: 0 5px 0 5px;
741
 
@@ -745,10 +810,7 @@ td.crb-traffic-details table td:nth-child(2) {
745
 
746
  .crb-status-500 {
747
  background-color: #51ae43;
748
- }
749
-
750
- .crb-status-14 {
751
- background-color: #000;
752
  }
753
 
754
  p.act-url, .act-role{
@@ -1457,6 +1519,8 @@ body.wp-cerber_page_cerber-integrity {
1457
  background-image: url("bgwidget.png");
1458
  background-repeat: no-repeat;
1459
  background-position: right top;
 
 
1460
  }
1461
 
1462
  .cerber-widget {
21
  line-height: inherit;
22
  }
23
 
24
+ #crb-admin .tablenav select,
25
+ #crb-admin .tablenav input[type="text"] {
26
+ margin: 0 0.5em 0 0;
27
+ }
28
+
29
+ #crb-admin .tablenav .bulkactions {
30
+ margin-right: 2em;
31
+ }
32
+
33
  /* End of reset */
34
 
35
  .crb-display-none {
55
  font-weight: 500;
56
  }
57
 
58
+ #crb-activation-msg {
59
+ padding-top: 0.5em;
60
+ padding-bottom: 1em;
61
+ }
62
+
63
  #crb-activation-msg i{
64
  font-size: 1.6em;
65
  }
94
  border-color: #9ca4ac;
95
  }
96
 
 
 
 
 
 
 
97
  .crb-main a:focus,
98
  #crb-aside a:focus {
99
  -webkit-box-shadow: none !important;
156
  padding-top: 0.5em;
157
  font-size: 13px;
158
  opacity: 0.9;
159
+ display: inline-block;
160
+ width: 75%;
161
  }
162
  .crb-settings .form-table input.crb-wide,
163
  .crb-settings .form-table select.crb-wide,
164
  .crb-settings .form-table textarea {
165
+ width: 75%; /* Also hardcoded in <select> php code for select2 */
166
  }
167
  .crb-settings input[type="submit"] {
168
  margin-top: 20px;
395
  border: solid 1px #0073aa;
396
  }
397
 
398
+ /* Messages & announcements */
399
+
400
+ div.crb-announcement {
401
+ background-color: #fff;
402
+ padding: 0;
403
+ margin: 10px 0 10px 0;
404
+ }
405
+
406
+ /* Not on WP Cerber page */
407
+ div:not(#crb-admin) > div.crb-announcement {
408
+ margin: 22px 20px 10px 2px;
409
+ }
410
+
411
+ div.crb-announcement table {
412
+ border-collapse: collapse;
413
+ border: 0;
414
+ }
415
+
416
+ div.crb-announcement > table div {
417
+ width: 100%;
418
+ min-height: 100px;
419
+ /*border: #e0e0e0 solid 1px;*/
420
+ }
421
+
422
+ div.crb-announcement.crb-cerber-logo-small table td:first-child {
423
+ width: 150px;
424
+ background: #fff url("crb-logo-vn.png") no-repeat;
425
+ background-size: 100%;
426
+ /*background-position: 0 -20px;*/
427
+ }
428
+
429
+ div.crb-announcement.crb-cerber-logo-big table td:first-child {
430
+ width: 220px;
431
+ background: #fff url("crb-logo-vn.png") no-repeat;
432
+ background-size: 100%;
433
+ background-position: 0 -20px;
434
+ }
435
+
436
+ div.crb-announcement table td:nth-child(2) {
437
+ text-align: left;
438
+ padding-left: 3em;
439
+ padding-right: 200px;
440
+ }
441
+
442
+ div.crb-announcement p {
443
+ font-size: 14px;
444
+ }
445
+
446
  .crb-alarm {
447
  display: block;
448
  border-left: 6px solid #ff0000;
475
  line-height: 180%;
476
  }
477
 
478
+ .cerber-msg h1 {
479
+ margin-top: 10px;
480
+ }
481
+
482
  .cerber-msg h3 {
483
  margin-top: 0;
484
  }
495
  }
496
  }
497
 
 
 
 
 
 
498
  .crb-tab-sessions .crb-us-lbl {
499
  display: inline-block;
500
  padding: 3px 5px 3px 5px;
503
  color: white;
504
  }
505
 
506
+ .tablenav.top .pagination-links {
507
+ display: none;
508
+ }
509
+
510
  .crb-table th {
511
  white-space: nowrap;
512
  }
577
 
578
  #crb-traffic .crb-request span {
579
  margin-right: 0.5em;
580
+ /*display: inline-block;
581
  vertical-align: middle;
582
  line-height: 1.2em;
583
+ padding: 4px 8px;*/
584
+ padding: 3px 6px 3px 6px;
585
  word-break: keep-all;
586
  }
587
 
774
  }
775
  #crb-activity-fields select,
776
  #crb-activity-fields input[type="text"],
777
+ #crb-activity-fields .select2-container,
778
+ #crb-top-filter select,
779
+ #crb-top-filter .select2-container {
780
  width: 250px;
781
  margin: 0 0.5em 0 0;
782
  }
797
  }
798
 
799
  .crb-log-status{
800
+ /*background-color: #777;
801
+ color: #ffffff;*/
802
+ background-color: #d2d2d2;
803
+ color: #373737;
804
  display: inline-block;
805
  padding: 0 5px 0 5px;
806
 
810
 
811
  .crb-status-500 {
812
  background-color: #51ae43;
813
+ color: #ffffff;
 
 
 
814
  }
815
 
816
  p.act-url, .act-role{
1519
  background-image: url("bgwidget.png");
1520
  background-repeat: no-repeat;
1521
  background-position: right top;
1522
+ background-size: 15%;
1523
+ background-position: right 20px;
1524
  }
1525
 
1526
  .cerber-widget {
assets/bgwidget.png CHANGED
Binary file
assets/crb-logo-vn.png ADDED
Binary file
assets/icon-128x128.png DELETED
Binary file
assets/icon-256x256.png DELETED
Binary file
assets/nexus.css CHANGED
@@ -102,8 +102,9 @@ ul li#wp-admin-bar-crb_site_switch {
102
  word-wrap: normal !important;
103
  }
104
 
105
- #crb-nexus-sites .bulkactions {
106
- margin-right: 2em;
 
107
  }
108
 
109
  #crb-nexus-sites .bulkactions select option:last-child {
102
  word-wrap: normal !important;
103
  }
104
 
105
+ #crb-nexus-sites .tablenav select,
106
+ #crb-nexus-sites .tablenav input[type="text"] {
107
+ width: auto;
108
  }
109
 
110
  #crb-nexus-sites .bulkactions select option:last-child {
cerber-lab.php CHANGED
@@ -812,7 +812,6 @@ function lab_indicator(){
812
  *
813
  */
814
  function lab_opt_in(){
815
- global $crb_assets_url;
816
 
817
  if ( lab_lab() || crb_get_settings( 'cerberlab' ) ) {
818
  return;
@@ -839,19 +838,15 @@ function lab_opt_in(){
839
  $no = __('NO, maybe later','wp-cerber');
840
  $more = '<a href="https://wpcerber.com/cerber-laboratory/" target="_blank">' . __( 'Know more', 'wp-cerber' ) . '</a>';
841
 
842
- $msg = '<h3>' . $h . '</h3><p>' . $text . '</p>';
843
-
844
- $notice =
845
- '<table><tr><td><img style="width:100px; float:left; margin-left:-10px;" src="' . $crb_assets_url . 'icon-128x128.png"></td>' .
846
- '<td style ="max-width: 850px;">' . $msg .
847
  '<p style="float:left;">' . $more . '</p>
848
- <p style="text-align:right;">
849
  <input type="button" id = "lab_ok" class="button button-primary cerber-dismiss" value=" &nbsp; ' . $ok . ' &nbsp; "/>
850
  <input type="button" id = "lab_no" class="button button-primary cerber-dismiss" value=" &nbsp; ' . $no . ' &nbsp; "/>
851
- </p></td></tr></table>';
852
-
853
- echo '<div class="updated cerber-msg" style="overflow: auto;"><p>' . $notice . '</p></div>';
854
 
 
855
  }
856
 
857
  /**
812
  *
813
  */
814
  function lab_opt_in(){
 
815
 
816
  if ( lab_lab() || crb_get_settings( 'cerberlab' ) ) {
817
  return;
838
  $no = __('NO, maybe later','wp-cerber');
839
  $more = '<a href="https://wpcerber.com/cerber-laboratory/" target="_blank">' . __( 'Know more', 'wp-cerber' ) . '</a>';
840
 
841
+ $notice =
842
+ '<div style="width: 70%; min-height: 200px;"><h2>' . $h . '</h2><p>' . $text . '</p>' .
 
 
 
843
  '<p style="float:left;">' . $more . '</p>
844
+ <p style="text-align:right; margin-top: 2em;">
845
  <input type="button" id = "lab_ok" class="button button-primary cerber-dismiss" value=" &nbsp; ' . $ok . ' &nbsp; "/>
846
  <input type="button" id = "lab_no" class="button button-primary cerber-dismiss" value=" &nbsp; ' . $no . ' &nbsp; "/>
847
+ </p></div>';
 
 
848
 
849
+ crb_show_admin_announcement( $notice, false );
850
  }
851
 
852
  /**
cerber-load.php CHANGED
@@ -68,7 +68,7 @@ define( 'WP_COMMENT_SCRIPT', 'wp-comments-post.php' );
68
  define( 'GOO_RECAPTCHA_URL', 'https://www.google.com/recaptcha/api/siteverify' );
69
 
70
  define( 'CERBER_REQ_PHP', '5.6' );
71
- define( 'CERBER_REQ_WP', '4.5' );
72
  define( 'CERBER_TECH', 'https://cerber.tech/' );
73
 
74
  define( 'CERBER_CIREC_LIMIT', 30 ); // Upper limit for allowed nested values during inspection for malware
@@ -86,8 +86,6 @@ require_once( $dir . '/settings.php' );
86
  include_once( $dir . '/cerber-request.php' );
87
  require_once( $dir . '/cerber-lab.php' );
88
  require_once( $dir . '/whois.php' );
89
- //require_once( dirname( __FILE__ ) . '/jetflow.php' );
90
- require_once( $dir . '/cerber-news.php' );
91
  require_once( $dir . '/cerber-scanner.php' );
92
  require_once( $dir . '/cerber-2fa.php' );
93
  require_once( $dir . '/nexus/cerber-nexus.php' );
@@ -706,15 +704,7 @@ class WP_Cerber {
706
  return;
707
  }
708
 
709
- $time = time();
710
- if ( $list = cerber_db_get_col( 'SELECT ip FROM ' . CERBER_BLOCKS_TABLE . ' WHERE block_until < ' . $time ) ) {
711
- $result = cerber_db_query( 'DELETE FROM ' . CERBER_BLOCKS_TABLE . ' WHERE block_until < ' . $time );
712
- crb_event_handler( 'ip_event', array(
713
- 'e_type' => 'unlocked',
714
- 'ip' => $list,
715
- 'result' => $result
716
- ) );
717
- }
718
 
719
  cerber_update_set( 'garbage_collector', time(), null, false );
720
  $this->garbage = true;
@@ -847,9 +837,9 @@ function cerber_extra_vision() {
847
  return false;
848
  }
849
 
850
- $ip = cerber_get_remote_ip();
851
 
852
- $black = crb_get_activity_set( 'black' );
853
  $black_logged = array_intersect( $black, $cerber_logged );
854
  if ( ! empty( $black_logged ) && cerber_is_ip_allowed() ) {
855
  $remain = cerber_get_remain_count( $ip, true, $black ); // @since 6.7.5
@@ -1272,14 +1262,14 @@ function cerber_login_failed( $user_login, $user_id = 0 ) {
1272
  // do_action( "added_{$meta_type}_meta", $mid, $object_id, $meta_key, $_meta_value );
1273
  add_action( 'added_user_meta', function ( $meta_id, $user_id, $meta_key, $_meta_value ) {
1274
  if ( $meta_key === 'session_tokens' ) {
1275
- crb_update_session_data( $user_id, $_meta_value );
1276
  }
1277
  }, 10, 4 );
1278
 
1279
  // do_action( "updated_{$meta_type}_meta", $meta_id, $object_id, $meta_key, $_meta_value );
1280
  add_action( 'updated_user_meta', function ( $meta_id, $user_id, $meta_key, $_meta_value ) {
1281
  if ( $meta_key === 'session_tokens' ) {
1282
- crb_update_session_data( $user_id, $_meta_value );
1283
  }
1284
  }, 10, 4 );
1285
 
@@ -1293,68 +1283,66 @@ add_action( 'deleted_user_meta', function ( $meta_ids, $user_id, $meta_key, $_me
1293
  cerber_db_query( $query );
1294
  }
1295
  }, 10, 4 );
 
1296
  /**
1297
  * Keep the sessions table up to date
1298
  *
1299
  * @param $user_id
1300
- * @param array $sessions List of user sessions from "session_tokens" user meta
1301
  *
1302
  * @return bool
1303
  */
1304
- function crb_update_session_data( $user_id, $sessions = null ) {
1305
  global $wpdb;
1306
- $table = cerber_get_db_prefix() . CERBER_USS_TABLE;
1307
 
1308
- if ( $sessions === null ) {
 
 
1309
  $user_meta = cerber_db_get_var( 'SELECT um.* FROM ' . $wpdb->usermeta . ' um JOIN ' . $wpdb->users . ' us ON (um.user_id = us.ID) WHERE um.user_id = ' . $user_id . ' AND um.meta_key = "session_tokens"' );
1310
  if ( $user_meta && ! empty( $user_meta['meta_value'] ) ) {
1311
- $sessions = @unserialize( $user_meta['meta_value'] );
1312
  }
1313
  }
1314
 
1315
- if ( ! $sessions ) {
1316
- cerber_db_query( 'DELETE FROM ' . $table . ' WHERE user_id = ' . $user_id );
1317
 
1318
  return true;
1319
  }
1320
 
1321
- $list = array_keys( $sessions );
1322
- cerber_db_query( 'DELETE FROM ' . $table . ' WHERE user_id = ' . $user_id . ' AND wp_session_token NOT IN ("' . implode( '","', $list ) . '")' );
1323
 
1324
- $exist = cerber_db_get_col( 'SELECT wp_session_token FROM ' . $table . ' WHERE user_id = ' . $user_id );
1325
 
1326
- if ( $exist ) {
1327
- $new = array_diff( $list, $exist ); // Should be just one element or none
1328
  }
1329
  else {
1330
- $new = $list;
1331
  }
1332
 
1333
- foreach ( $new as $id ) {
1334
- $data = $sessions[ $id ];
1335
  $session_id = get_wp_cerber()->getRequestID();
1336
- $ip = $data['ip'];
1337
- //$ip = cerber_get_remote_ip();
1338
  $country = (string) lab_get_country( $ip );
1339
- cerber_db_query( 'INSERT INTO ' . $table . ' (user_id, ip, country, started, expires, session_id, wp_session_token) VALUES (' . $user_id . ',"' . $ip . '","' . $country . '","' . $data['login'] . '","' . $data['expiration'] . '","' . $session_id . '","' . $id . '")' );
1340
  }
1341
 
1342
  return true;
1343
  }
1344
 
1345
  /**
1346
- * Synchronize sessions in a bulk mode
1347
- *
1348
- * @param bool $full If true will perform full sync from scratch
1349
  *
1350
  * @return bool
1351
  */
1352
- function cerber_sync_sessions( $full = true ) {
1353
  global $wpdb;
 
1354
  $table = cerber_get_db_prefix() . CERBER_USS_TABLE;
1355
- if ( ! $full && cerber_db_get_var( 'SELECT user_id FROM ' . $table . ' LIMIT 1' ) ) {
1356
- return false;
1357
- }
1358
 
1359
  cerber_db_query( 'DELETE FROM ' . $table );
1360
 
@@ -1372,17 +1360,29 @@ function cerber_sync_sessions( $full = true ) {
1372
  if ( $data['expiration'] < time() ) {
1373
  continue;
1374
  }
1375
- if ( crb_is_user_blocked( $user_meta['user_id'] ) ) {
1376
- continue;
1377
- }
1378
- $country = (string) lab_get_country( $data['ip'] );
1379
- cerber_db_query( 'INSERT INTO ' . $table . ' (user_id, ip, country, started, expires, wp_session_token) VALUES (' . $user_meta['user_id'] . ',"' . $data['ip'] . '","' . $country . '","' . $data['login'] . '","' . $data['expiration'] . '","' . $id . '")' );
1380
  }
1381
  }
1382
 
1383
  return true;
1384
  }
1385
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1386
 
1387
  // Enforce restrictions for the current user
1388
 
@@ -3097,6 +3097,26 @@ function cerber_blocked_num() {
3097
  return absint( cerber_db_get_var( 'SELECT count(ip) FROM ' . CERBER_BLOCKS_TABLE ) );
3098
  }
3099
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3100
  /**
3101
  * Calculate duration for a lockout of an IP address based on settings
3102
  *
@@ -4253,7 +4273,7 @@ function cerber_send_email( $type = '', $msg = '', $ip = '' ) {
4253
  case 'report':
4254
  $html_mode = true;
4255
  $subj = '[' . get_option( 'blogname' ) . '] WP Cerber Security: ' . __( 'Weekly report', 'wp-cerber' );
4256
- $body = cerber_generate_report();
4257
  $link = cerber_admin_link( 'notifications' );
4258
  $body .= '<br/>' . __( 'To change reporting settings visit', 'wp-cerber' ) . ' <a href="' . $link . '">' . $link . '</a>';
4259
  if ($msg) {
@@ -4365,11 +4385,11 @@ function cerber_enable_html() {
4365
  /**
4366
  * Generates a performance report
4367
  *
4368
- * @param int $period Days to look back
4369
  *
4370
  * @return string
4371
  */
4372
- function cerber_generate_report($period = 7){
4373
  global $wpdb;
4374
 
4375
  $period = absint( $period );
@@ -4390,37 +4410,37 @@ function cerber_generate_report($period = 7){
4390
 
4391
  $site_name = ( is_multisite() ) ? get_site_option( 'site_name' ) : get_option( 'blogname' );
4392
 
4393
- $ret .= '<div style="' . $css_table . '"><div style="margin:0 auto; text-align: center;"><p style="font-size: 130%; padding-top: 0.5em;">' . $site_name .'</p><p style="padding-bottom: 1em;">'. __('Weekly Report','wp-cerber'). '</p></div></div>';
4394
 
4395
  $kpi_list = cerber_calculate_kpi( $period );
4396
 
4397
- foreach ($kpi_list as $kpi){
4398
- $rows[] = '<td style="'.$css_td.' text-align: right;">'.$kpi[1].'</td><td style="padding: 0.5em; text-align: left;">'.$kpi[0].'</td>';
4399
  }
4400
 
4401
- $ret .= '<div style="text-align: center; '.$css_table.'"><table style="font-size: 130%; margin:0 auto;"><tr>' . implode( '</tr><tr>', $rows ) . '</tr></table></div>';
4402
 
4403
- // Activities counters
4404
  $rows = array();
4405
- $rows[] = '<td style="'.$css_td.$css_border.'" colspan="2"><p style="line-height: 1.5em; font-weight: bold;">'.__('Activity details','wp-cerber').'</p></td>';
4406
  $activites = $wpdb->get_results( 'SELECT activity, COUNT(activity) cnt FROM ' . CERBER_LOG_TABLE . ' WHERE stamp > ' . $stamp . ' GROUP by activity ORDER BY cnt DESC' );
4407
  if ( $activites ) {
4408
  $lables = cerber_get_labels();
4409
  foreach ( $activites as $a ) {
4410
- $rows[] = '<td style="'.$css_border.$css_td.'">' . $lables[ $a->activity ] . '</td><td style="padding: 0.5em; text-align: center; width:10%;'.$css_border.'"><a href="'.$base_url.'&filter_activity='.$a->activity.'">' . $a->cnt . '</a></td>';
4411
  }
4412
  }
4413
- $ret .= '<table style="border-collapse: collapse; '.$css_table.'"><tr>' . implode( '</tr><tr>', $rows ) . '</tr></table>';
4414
 
4415
- // Activities counters
4416
  $activites = $wpdb->get_results( 'SELECT user_login, COUNT(user_login) cnt FROM ' . CERBER_LOG_TABLE . ' WHERE activity = 51 AND stamp > ' . $stamp . ' GROUP by user_login ORDER BY cnt DESC LIMIT 10' );
4417
  if ( $activites ) {
4418
  $rows = array();
4419
- $rows[] = '<td style="'.$css_td.$css_border.'" colspan="2"><p style="line-height: 1.5em; font-weight: bold;">'.__('Attempts to log in with non-existing usernames','wp-cerber').'</p></td>';
4420
  foreach ( $activites as $a ) {
4421
- $rows[] = '<td style="'.$css_border.$css_td.'">' . htmlspecialchars($a->user_login) . '</td><td style="padding: 0.5em; text-align: center; width:10%;'.$css_border.'"><a href="'.$base_url.'&filter_login='.$a->user_login.'">' . $a->cnt . '</a></td>';
4422
  }
4423
- $ret .= '<table style="border-collapse: collapse; '.$css_table.'"><tr>' . implode( '</tr><tr>', $rows ) . '</tr></table>';
4424
  }
4425
 
4426
  $ret = '<div style="width:100%; padding: 1em; text-align: center; background-color: #f9f9f9;">' . $ret . '</div>';
@@ -4704,7 +4724,7 @@ function cerber_bg_task_launcher( $filter = null ) {
4704
  return $ret;
4705
  }
4706
 
4707
- $safe_func = array( 'nexus_send', 'nexus_do_upgrade', '_crb_ds_background', 'nexus_refresh_slave_srv', '_crb_qr_total_sync' );
4708
 
4709
  foreach ( $exec_it as $task_id => $task ) {
4710
 
@@ -4772,6 +4792,7 @@ function cerber_bg_task_add( $func, $config = array(), $priority = false, $limit
4772
 
4773
  if ( ! is_callable( $func ) ) {
4774
  cerber_error_log( 'Function ' . $func . ' is not callable', 'BG TASK' );
 
4775
  return false;
4776
  }
4777
 
@@ -5226,6 +5247,8 @@ register_activation_hook( cerber_plugin_file(), function () {
5226
 
5227
  cerber_load_admin_code();
5228
 
 
 
5229
  $whited = '';
5230
 
5231
  if ( is_user_logged_in() ) { // Not for remote plugin installation/activation
@@ -5241,7 +5264,8 @@ register_activation_hook( cerber_plugin_file(), function () {
5241
 
5242
  if ( ! crb_get_settings( 'no_white_my_ip' ) ) {
5243
  cerber_add_white( $sub, 'My Subnet' ); // Protection for non-experienced users
5244
- $whited = ' <p>' . __( 'Your IP address is added to the', 'wp-cerber' ) . ' ' . __( 'White IP Access List', 'wp-cerber' );
 
5245
  }
5246
 
5247
  cerber_disable_citadel();
@@ -5254,31 +5278,29 @@ register_activation_hook( cerber_plugin_file(), function () {
5254
 
5255
  crb_x_update_add_on_list();
5256
 
5257
- cerber_admin_message(
5258
- '<img style="float:left; margin-left:-10px;" src="' . $assets_url . '/icon-128x128.png">' .
5259
- '<p style="font-size:120%;">' . __( 'WP Cerber is now active and has started protecting your site', 'wp-cerber' ) . '</p>' .
5260
- $whited .
5261
 
5262
- ' <p style="font-size:130%;"><a href="https://wpcerber.com/getting-started/" target="_blank">' . __( 'Getting Started Guide', 'wp-cerber' ) . '</a></p>' .
 
5263
 
5264
- //' <p><b>' . __( "It's important to check security settings.", 'wp-cerber' ) . '</b> &nbsp;<a href="https://wpcerber.com/" target="_blank">Read Cerber\'s blog</a> ' .
5265
- //'&nbsp; <a href="https://wpcerber.com/subscribe-newsletter/" target="_blank">Subscribe to Cerber\'s newsletter</a></p>' .
5266
 
5267
- ' <p>
5268
- </p>
5269
- <p id="crb-activation-msg"> '.
5270
- // <i class="crb-icon crb-icon-bx-slider"></i> <a href="' . cerber_admin_link( 'main' ) . '">' . __( 'Main Settings', 'wp-cerber' ) . '</a>' .
5271
  //' <i class="crb-icon crb-icon-bx-radar"></i> <a href="' . cerber_admin_link( 'scan_main' ) . '">' . __( 'Security Scanner', 'wp-cerber' ) . '</a>' .
5272
  //' <i class="crb-icon crb-icon-bx-lock"></i> <a href="' . cerber_admin_link( 'acl' ) . '">' . __( 'Access Lists', 'wp-cerber' ) . '</a>' .
5273
  //' <i class="crb-icon crb-icon-bxs-shield"></i> <a href="' . cerber_admin_link( 'antispam' ) . '">' . __( 'Antispam', 'wp-cerber' ) . '</a>' .
5274
  //' <i class="crb-icon crb-icon-bx-shield-alt"></i> <a href="' . cerber_admin_link( 'hardening' ) . '">' . __( 'Hardening', 'wp-cerber' ) . '</a>' .
5275
  //' <i class="crb-icon crb-icon-bx-bell"></i> <a href="' . cerber_admin_link( 'notifications' ) . '">' . __( 'Notifications', 'wp-cerber' ) . '</a>' .
5276
  ' <i class="crb-icon crb-icon-bx-layer"></i> <a href="' . cerber_admin_link( 'imex' ) . '">' . __( 'Import settings', 'wp-cerber' ) . '</a>' .
5277
- ' <i class="crb-icon crb-icon-bx-cog"></i> <a href="' . cerber_admin_link( '', array( 'page' => 'cerber-nexus' ) ) . '">' . __( 'Enable slave mode', 'wp-cerber' ) . '</a>' .
5278
  ' <i class="crb-icon dashicons-before dashicons-twitter"></i> <a target="_blank" href="https://twitter.com/wpcerber">Follow Cerber on Twitter</a>' .
5279
  ' <i class="crb-icon dashicons-before dashicons-email-alt"></i> <a target="_blank" href="https://wpcerber.com/subscribe-newsletter/">Subscribe to the Cerber\'s newsletter</a>' .
5280
- '</p>' );
5281
 
 
5282
 
5283
  if ( ! defined( 'CRB_JUST_MARRIED' ) || ! CRB_JUST_MARRIED ) {
5284
  return;
@@ -5358,7 +5380,7 @@ function cerber_upgrade_all( $force = false ) {
5358
 
5359
  update_site_option( '_cerber_up', array( 'v' => CERBER_VER, 't' => time() ) );
5360
 
5361
- cerber_push_the_news( CERBER_VER );
5362
  cerber_delete_expired_set( true );
5363
  CRB_Cache::reset();
5364
  wp_clear_scheduled_hook( 'cerber_hourly' ); // @since 5.8
@@ -6047,9 +6069,9 @@ function cerber_catch_error( $errno, $errstr = null, $errfile = null, $errline =
6047
 
6048
  function cerber_traffic_log(){
6049
  global $cerber_req_status, $cerber_php_errors, $wp_query, $wp_cerber_user_id, $wp_cerber_start_stamp, $blog_id;
6050
- static $logged = false;
6051
 
6052
- if ( $logged || cerber_is_cloud_request() ) {
6053
  return;
6054
  }
6055
 
@@ -6117,7 +6139,11 @@ function cerber_traffic_log(){
6117
  return;
6118
  }
6119
 
6120
- $logged = true;
 
 
 
 
6121
 
6122
  if ( $ua = crb_array_get( $_SERVER, 'HTTP_USER_AGENT', '' ) ) {
6123
  $ua = substr( $ua, 0, 1000 );
@@ -6195,16 +6221,20 @@ function cerber_traffic_log(){
6195
  $hds = crb_getallheaders();
6196
  unset( $hds['Cookie'] );
6197
  unset( $hds['cookie'] );
 
6198
  $details[6] = $hds;
6199
  }
6200
  if ( crb_get_settings( 'tisenv' ) ) {
6201
  $srv = $_SERVER;
6202
  unset( $srv['HTTP_COOKIE'] );
 
6203
  $details[7] = $srv;
6204
  }
6205
  if ( crb_get_settings( 'ticandy' ) && ! empty( $_COOKIE ) ) {
6206
  $details[8] = $_COOKIE;
 
6207
  }
 
6208
  if ( !empty( $details ) ) {
6209
  $details = cerber_prepare_fields( $details );
6210
  $details = serialize($details);
@@ -6248,7 +6278,7 @@ function cerber_traffic_log(){
6248
 
6249
  $processing = (int) ( 1000 * ( microtime( true ) - $start ) );
6250
 
6251
- $uri = cerber_real_escape( $uri );
6252
  $details = cerber_real_escape( $details );
6253
  $fields = ( $php_err ) ? cerber_real_escape( $fields ) : '';
6254
  $php_err = ( $php_err ) ? cerber_real_escape( $php_err ) : '';
@@ -6301,6 +6331,7 @@ function cerber_to_log( $wp_type, $http_code, $user_id ) {
6301
  if ( $mode == 0 ) {
6302
  return false;
6303
  }
 
6304
  if ( $mode == 2 ) {
6305
  if ( $wp_type < 515 ) { // Pure admin requests
6306
  if ( $wp_type < 502 && ! $user_id ) { // @since 6.3
@@ -6317,6 +6348,14 @@ function cerber_to_log( $wp_type, $http_code, $user_id ) {
6317
  return true;
6318
  }
6319
 
 
 
 
 
 
 
 
 
6320
  // Smart mode ---------------------------------------------------------
6321
 
6322
  if ( ! empty( $cerber_req_status ) ) {
@@ -6367,6 +6406,42 @@ function cerber_to_log( $wp_type, $http_code, $user_id ) {
6367
  return false;
6368
  }
6369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6370
  /**
6371
  * Mask sensitive request fields before saving in DB (avoid information leaks)
6372
  *
@@ -6517,18 +6592,24 @@ function cerber_beast() {
6517
  // White list by URI
6518
  //$uri = cerber_purify_uri();
6519
  $uri = CRB_Request::URI();
 
6520
  if ( $tiwhite = crb_get_settings( 'tiwhite' ) ) {
6521
  foreach ( (array) $tiwhite as $item ) {
6522
  if ( $item[0] == '{' && substr( $item, - 1 ) == '}' ) {
6523
  $pattern = '/' . substr( $item, 1, - 1 ) . '/i';
6524
  if ( @preg_match( $pattern, $uri ) ) {
6525
  $cerber_req_status = 501;
 
6526
  return;
6527
  }
6528
  }
6529
- elseif ( $item == $uri ) {
6530
- $cerber_req_status = 501;
6531
- return;
 
 
 
 
6532
  }
6533
  }
6534
  }
@@ -7047,4 +7128,106 @@ add_filter( 'nav_menu_link_attributes', function ( $atts ) {
7047
  }
7048
 
7049
  return $atts;
7050
- }, 1 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  define( 'GOO_RECAPTCHA_URL', 'https://www.google.com/recaptcha/api/siteverify' );
69
 
70
  define( 'CERBER_REQ_PHP', '5.6' );
71
+ define( 'CERBER_REQ_WP', '4.9' );
72
  define( 'CERBER_TECH', 'https://cerber.tech/' );
73
 
74
  define( 'CERBER_CIREC_LIMIT', 30 ); // Upper limit for allowed nested values during inspection for malware
86
  include_once( $dir . '/cerber-request.php' );
87
  require_once( $dir . '/cerber-lab.php' );
88
  require_once( $dir . '/whois.php' );
 
 
89
  require_once( $dir . '/cerber-scanner.php' );
90
  require_once( $dir . '/cerber-2fa.php' );
91
  require_once( $dir . '/nexus/cerber-nexus.php' );
704
  return;
705
  }
706
 
707
+ crb_del_expired_blocks();
 
 
 
 
 
 
 
 
708
 
709
  cerber_update_set( 'garbage_collector', time(), null, false );
710
  $this->garbage = true;
837
  return false;
838
  }
839
 
840
+ $ip = cerber_get_remote_ip();
841
 
842
+ $black = crb_get_activity_set( 'black' );
843
  $black_logged = array_intersect( $black, $cerber_logged );
844
  if ( ! empty( $black_logged ) && cerber_is_ip_allowed() ) {
845
  $remain = cerber_get_remain_count( $ip, true, $black ); // @since 6.7.5
1262
  // do_action( "added_{$meta_type}_meta", $mid, $object_id, $meta_key, $_meta_value );
1263
  add_action( 'added_user_meta', function ( $meta_id, $user_id, $meta_key, $_meta_value ) {
1264
  if ( $meta_key === 'session_tokens' ) {
1265
+ crb_sessions_update_user_data( $user_id, $_meta_value );
1266
  }
1267
  }, 10, 4 );
1268
 
1269
  // do_action( "updated_{$meta_type}_meta", $meta_id, $object_id, $meta_key, $_meta_value );
1270
  add_action( 'updated_user_meta', function ( $meta_id, $user_id, $meta_key, $_meta_value ) {
1271
  if ( $meta_key === 'session_tokens' ) {
1272
+ crb_sessions_update_user_data( $user_id, $_meta_value );
1273
  }
1274
  }, 10, 4 );
1275
 
1283
  cerber_db_query( $query );
1284
  }
1285
  }, 10, 4 );
1286
+
1287
  /**
1288
  * Keep the sessions table up to date
1289
  *
1290
  * @param $user_id
1291
+ * @param array $wp_sessions List of user sessions from "session_tokens" user meta
1292
  *
1293
  * @return bool
1294
  */
1295
+ function crb_sessions_update_user_data( $user_id, $wp_sessions = null ) {
1296
  global $wpdb;
 
1297
 
1298
+ $crb_sessions = cerber_get_db_prefix() . CERBER_USS_TABLE;
1299
+
1300
+ if ( $wp_sessions === null ) {
1301
  $user_meta = cerber_db_get_var( 'SELECT um.* FROM ' . $wpdb->usermeta . ' um JOIN ' . $wpdb->users . ' us ON (um.user_id = us.ID) WHERE um.user_id = ' . $user_id . ' AND um.meta_key = "session_tokens"' );
1302
  if ( $user_meta && ! empty( $user_meta['meta_value'] ) ) {
1303
+ $wp_sessions = @unserialize( $user_meta['meta_value'] );
1304
  }
1305
  }
1306
 
1307
+ if ( ! $wp_sessions ) {
1308
+ cerber_db_query( 'DELETE FROM ' . $crb_sessions . ' WHERE user_id = ' . $user_id );
1309
 
1310
  return true;
1311
  }
1312
 
1313
+ $list = array_keys( $wp_sessions );
1314
+ cerber_db_query( 'DELETE FROM ' . $crb_sessions . ' WHERE user_id = ' . $user_id . ' AND wp_session_token NOT IN ("' . implode( '","', $list ) . '")' );
1315
 
1316
+ $existing = cerber_db_get_col( 'SELECT wp_session_token FROM ' . $crb_sessions . ' WHERE user_id = ' . $user_id );
1317
 
1318
+ if ( $existing ) {
1319
+ $new_entries = array_diff( $list, $existing );
1320
  }
1321
  else {
1322
+ $new_entries = $list;
1323
  }
1324
 
1325
+ foreach ( $new_entries as $id ) {
1326
+ $data = $wp_sessions[ $id ];
1327
  $session_id = get_wp_cerber()->getRequestID();
1328
+ //$ip = $data['ip']; // On some servers behind a proxy WP core is unable to detect IP address correctly.
1329
+ $ip = cerber_get_remote_ip();
1330
  $country = (string) lab_get_country( $ip );
1331
+ cerber_db_query( 'INSERT INTO ' . $crb_sessions . ' (user_id, ip, country, started, expires, session_id, wp_session_token) VALUES (' . $user_id . ',"' . $ip . '","' . $country . '","' . $data['login'] . '","' . $data['expiration'] . '","' . $session_id . '","' . $id . '")' );
1332
  }
1333
 
1334
  return true;
1335
  }
1336
 
1337
  /**
1338
+ * Synchronize all sessions in bulk
 
 
1339
  *
1340
  * @return bool
1341
  */
1342
+ function crb_sessions_sync_all() {
1343
  global $wpdb;
1344
+
1345
  $table = cerber_get_db_prefix() . CERBER_USS_TABLE;
 
 
 
1346
 
1347
  cerber_db_query( 'DELETE FROM ' . $table );
1348
 
1360
  if ( $data['expiration'] < time() ) {
1361
  continue;
1362
  }
1363
+ cerber_db_query( 'INSERT INTO ' . $table . ' (user_id, ip, started, expires, wp_session_token) VALUES (' . $user_meta['user_id'] . ',"' . $data['ip'] . '","' . $data['login'] . '","' . $data['expiration'] . '","' . $id . '")' );
 
 
 
 
1364
  }
1365
  }
1366
 
1367
  return true;
1368
  }
1369
 
1370
+ function crb_sessions_del_expired() {
1371
+ static $done;
1372
+ if ( $done ) {
1373
+ return;
1374
+ }
1375
+
1376
+ cerber_db_query( 'DELETE FROM ' . cerber_get_db_prefix() . CERBER_USS_TABLE . ' WHERE expires < ' . time() );
1377
+
1378
+ $done = true;
1379
+ }
1380
+
1381
+ function crb_sessions_get_num( $user_id = null ) {
1382
+ $where = ( $user_id ) ? ' WHERE user_id = ' . absint( $user_id ) : '';
1383
+
1384
+ return (int) cerber_db_get_var( 'SELECT COUNT(user_id) FROM ' . cerber_get_db_prefix() . CERBER_USS_TABLE . $where );
1385
+ }
1386
 
1387
  // Enforce restrictions for the current user
1388
 
3097
  return absint( cerber_db_get_var( 'SELECT count(ip) FROM ' . CERBER_BLOCKS_TABLE ) );
3098
  }
3099
 
3100
+ function crb_del_expired_blocks() {
3101
+ static $done;
3102
+ if ( $done ) {
3103
+ return;
3104
+ }
3105
+
3106
+ $time = time();
3107
+
3108
+ if ( $list = cerber_db_get_col( 'SELECT ip FROM ' . CERBER_BLOCKS_TABLE . ' WHERE block_until < ' . $time ) ) {
3109
+ $result = cerber_db_query( 'DELETE FROM ' . CERBER_BLOCKS_TABLE . ' WHERE block_until < ' . $time );
3110
+ crb_event_handler( 'ip_event', array(
3111
+ 'e_type' => 'unlocked',
3112
+ 'ip' => $list,
3113
+ 'result' => $result
3114
+ ) );
3115
+ }
3116
+
3117
+ $done = true;
3118
+ }
3119
+
3120
  /**
3121
  * Calculate duration for a lockout of an IP address based on settings
3122
  *
4273
  case 'report':
4274
  $html_mode = true;
4275
  $subj = '[' . get_option( 'blogname' ) . '] WP Cerber Security: ' . __( 'Weekly report', 'wp-cerber' );
4276
+ $body = cerber_generate_email_report();
4277
  $link = cerber_admin_link( 'notifications' );
4278
  $body .= '<br/>' . __( 'To change reporting settings visit', 'wp-cerber' ) . ' <a href="' . $link . '">' . $link . '</a>';
4279
  if ($msg) {
4385
  /**
4386
  * Generates a performance report
4387
  *
4388
+ * @param int $period Days to look back
4389
  *
4390
  * @return string
4391
  */
4392
+ function cerber_generate_email_report( $period = 7 ) {
4393
  global $wpdb;
4394
 
4395
  $period = absint( $period );
4410
 
4411
  $site_name = ( is_multisite() ) ? get_site_option( 'site_name' ) : get_option( 'blogname' );
4412
 
4413
+ $ret .= '<div style="' . $css_table . '"><div style="margin:0 auto; text-align: center;"><p style="font-size: 130%; padding-top: 0.5em;">' . $site_name . '</p><p style="padding-bottom: 1em;">' . __( 'Weekly Report', 'wp-cerber' ) . '</p></div></div>';
4414
 
4415
  $kpi_list = cerber_calculate_kpi( $period );
4416
 
4417
+ foreach ( $kpi_list as $kpi ) {
4418
+ $rows[] = '<td style="' . $css_td . ' text-align: right;">' . $kpi[1] . '</td><td style="padding: 0.5em; text-align: left;">' . $kpi[0] . '</td>';
4419
  }
4420
 
4421
+ $ret .= '<div style="text-align: center; ' . $css_table . '"><table style="font-size: 130%; margin:0 auto;"><tr>' . implode( '</tr><tr>', $rows ) . '</tr></table></div>';
4422
 
4423
+ // Activities breakdown
4424
  $rows = array();
4425
+ $rows[] = '<td style="' . $css_td . $css_border . '" colspan="2"><p style="line-height: 1.5em; font-weight: bold;">' . __( 'Activity details', 'wp-cerber' ) . '</p></td>';
4426
  $activites = $wpdb->get_results( 'SELECT activity, COUNT(activity) cnt FROM ' . CERBER_LOG_TABLE . ' WHERE stamp > ' . $stamp . ' GROUP by activity ORDER BY cnt DESC' );
4427
  if ( $activites ) {
4428
  $lables = cerber_get_labels();
4429
  foreach ( $activites as $a ) {
4430
+ $rows[] = '<td style="' . $css_border . $css_td . '">' . $lables[ $a->activity ] . '</td><td style="padding: 0.5em; text-align: center; width:10%;' . $css_border . '"><a href="' . $base_url . '&filter_activity=' . $a->activity . '">' . $a->cnt . '</a></td>';
4431
  }
4432
  }
4433
+ $ret .= '<table style="border-collapse: collapse; ' . $css_table . '"><tr>' . implode( '</tr><tr>', $rows ) . '</tr></table>';
4434
 
4435
+ // Attempts to log in with non-existing usernames
4436
  $activites = $wpdb->get_results( 'SELECT user_login, COUNT(user_login) cnt FROM ' . CERBER_LOG_TABLE . ' WHERE activity = 51 AND stamp > ' . $stamp . ' GROUP by user_login ORDER BY cnt DESC LIMIT 10' );
4437
  if ( $activites ) {
4438
  $rows = array();
4439
+ $rows[] = '<td style="' . $css_td . $css_border . '" colspan="2"><p style="line-height: 1.5em; font-weight: bold;">' . __( 'Attempts to log in with non-existing usernames', 'wp-cerber' ) . '</p></td>';
4440
  foreach ( $activites as $a ) {
4441
+ $rows[] = '<td style="' . $css_border . $css_td . '">' . htmlspecialchars( $a->user_login ) . '</td><td style="padding: 0.5em; text-align: center; width:10%;' . $css_border . '"><a href="' . $base_url . '&filter_login=' . $a->user_login . '">' . $a->cnt . '</a></td>';
4442
  }
4443
+ $ret .= '<table style="border-collapse: collapse; ' . $css_table . '"><tr>' . implode( '</tr><tr>', $rows ) . '</tr></table>';
4444
  }
4445
 
4446
  $ret = '<div style="width:100%; padding: 1em; text-align: center; background-color: #f9f9f9;">' . $ret . '</div>';
4724
  return $ret;
4725
  }
4726
 
4727
+ $safe_func = array( 'nexus_send', 'nexus_do_upgrade', '_crb_ds_background', 'nexus_refresh_slave_srv', '_crb_qr_total_sync', 'crb_sessions_sync_all' );
4728
 
4729
  foreach ( $exec_it as $task_id => $task ) {
4730
 
4792
 
4793
  if ( ! is_callable( $func ) ) {
4794
  cerber_error_log( 'Function ' . $func . ' is not callable', 'BG TASK' );
4795
+
4796
  return false;
4797
  }
4798
 
5247
 
5248
  cerber_load_admin_code();
5249
 
5250
+ cerber_bg_task_add( 'crb_sessions_sync_all' );
5251
+
5252
  $whited = '';
5253
 
5254
  if ( is_user_logged_in() ) { // Not for remote plugin installation/activation
5264
 
5265
  if ( ! crb_get_settings( 'no_white_my_ip' ) ) {
5266
  cerber_add_white( $sub, 'My Subnet' ); // Protection for non-experienced users
5267
+ //$whited = ' <p>' . __( 'Your IP address is added to the', 'wp-cerber' ) . ' ' . __( 'White IP Access List', 'wp-cerber' );
5268
+ $whited = ' <p>' . sprintf( __( 'Your IP address %s has been added to the White IP Access List', 'wp-cerber' ), cerber_get_remote_ip() );
5269
  }
5270
 
5271
  cerber_disable_citadel();
5278
 
5279
  crb_x_update_add_on_list();
5280
 
5281
+ $slave = ( nexus_is_master() || nexus_is_slave() ) ? '' : ' <i class="crb-icon crb-icon-bx-cog"></i> <a href="' . cerber_admin_link( '', array( 'page' => 'cerber-nexus' ) ) . '">' . __( 'Enable slave mode', 'wp-cerber' ) . '</a>';
 
 
 
5282
 
5283
+ $msg =
5284
+ '<h2>' . __( 'WP Cerber is now active and has started protecting your site', 'wp-cerber' ) . '</h2>'
5285
 
5286
+ . $whited .
 
5287
 
5288
+ '<p style="font-size:130%;"><a href="https://wpcerber.com/getting-started/" target="_blank">' . __( 'Getting Started Guide', 'wp-cerber' ) . '</a></p>' .
5289
+
5290
+ '<div id="crb-activation-msg"><p>' .
5291
+ // <i class="crb-icon crb-icon-bx-slider"></i> <a href="' . cerber_admin_link( 'main' ) . '">' . __( 'Main Settings', 'wp-cerber' ) . '</a>' .
5292
  //' <i class="crb-icon crb-icon-bx-radar"></i> <a href="' . cerber_admin_link( 'scan_main' ) . '">' . __( 'Security Scanner', 'wp-cerber' ) . '</a>' .
5293
  //' <i class="crb-icon crb-icon-bx-lock"></i> <a href="' . cerber_admin_link( 'acl' ) . '">' . __( 'Access Lists', 'wp-cerber' ) . '</a>' .
5294
  //' <i class="crb-icon crb-icon-bxs-shield"></i> <a href="' . cerber_admin_link( 'antispam' ) . '">' . __( 'Antispam', 'wp-cerber' ) . '</a>' .
5295
  //' <i class="crb-icon crb-icon-bx-shield-alt"></i> <a href="' . cerber_admin_link( 'hardening' ) . '">' . __( 'Hardening', 'wp-cerber' ) . '</a>' .
5296
  //' <i class="crb-icon crb-icon-bx-bell"></i> <a href="' . cerber_admin_link( 'notifications' ) . '">' . __( 'Notifications', 'wp-cerber' ) . '</a>' .
5297
  ' <i class="crb-icon crb-icon-bx-layer"></i> <a href="' . cerber_admin_link( 'imex' ) . '">' . __( 'Import settings', 'wp-cerber' ) . '</a>' .
5298
+ $slave .
5299
  ' <i class="crb-icon dashicons-before dashicons-twitter"></i> <a target="_blank" href="https://twitter.com/wpcerber">Follow Cerber on Twitter</a>' .
5300
  ' <i class="crb-icon dashicons-before dashicons-email-alt"></i> <a target="_blank" href="https://wpcerber.com/subscribe-newsletter/">Subscribe to the Cerber\'s newsletter</a>' .
5301
+ '</p></div>';
5302
 
5303
+ cerber_update_set( 'cerber_admin_wide', $msg );
5304
 
5305
  if ( ! defined( 'CRB_JUST_MARRIED' ) || ! CRB_JUST_MARRIED ) {
5306
  return;
5380
 
5381
  update_site_option( '_cerber_up', array( 'v' => CERBER_VER, 't' => time() ) );
5382
 
5383
+ cerber_push_the_news();
5384
  cerber_delete_expired_set( true );
5385
  CRB_Cache::reset();
5386
  wp_clear_scheduled_hook( 'cerber_hourly' ); // @since 5.8
6069
 
6070
  function cerber_traffic_log(){
6071
  global $cerber_req_status, $cerber_php_errors, $wp_query, $wp_cerber_user_id, $wp_cerber_start_stamp, $blog_id;
6072
+ static $done = false;
6073
 
6074
+ if ( $done || cerber_is_cloud_request() ) {
6075
  return;
6076
  }
6077
 
6139
  return;
6140
  }
6141
 
6142
+ $done = true;
6143
+
6144
+ if ( cerber_log_exceptions() ) {
6145
+ return;
6146
+ }
6147
 
6148
  if ( $ua = crb_array_get( $_SERVER, 'HTTP_USER_AGENT', '' ) ) {
6149
  $ua = substr( $ua, 0, 1000 );
6221
  $hds = crb_getallheaders();
6222
  unset( $hds['Cookie'] );
6223
  unset( $hds['cookie'] );
6224
+ ksort( $hds );
6225
  $details[6] = $hds;
6226
  }
6227
  if ( crb_get_settings( 'tisenv' ) ) {
6228
  $srv = $_SERVER;
6229
  unset( $srv['HTTP_COOKIE'] );
6230
+ ksort( $srv );
6231
  $details[7] = $srv;
6232
  }
6233
  if ( crb_get_settings( 'ticandy' ) && ! empty( $_COOKIE ) ) {
6234
  $details[8] = $_COOKIE;
6235
+ ksort( $details[8] );
6236
  }
6237
+
6238
  if ( !empty( $details ) ) {
6239
  $details = cerber_prepare_fields( $details );
6240
  $details = serialize($details);
6278
 
6279
  $processing = (int) ( 1000 * ( microtime( true ) - $start ) );
6280
 
6281
+ $uri = cerber_real_escape( $uri );
6282
  $details = cerber_real_escape( $details );
6283
  $fields = ( $php_err ) ? cerber_real_escape( $fields ) : '';
6284
  $php_err = ( $php_err ) ? cerber_real_escape( $php_err ) : '';
6331
  if ( $mode == 0 ) {
6332
  return false;
6333
  }
6334
+
6335
  if ( $mode == 2 ) {
6336
  if ( $wp_type < 515 ) { // Pure admin requests
6337
  if ( $wp_type < 502 && ! $user_id ) { // @since 6.3
6348
  return true;
6349
  }
6350
 
6351
+ if ( $mode == 3 ) {
6352
+ if ( $cerber_logged ) {
6353
+ return true;
6354
+ }
6355
+
6356
+ return false;
6357
+ }
6358
+
6359
  // Smart mode ---------------------------------------------------------
6360
 
6361
  if ( ! empty( $cerber_req_status ) ) {
6406
  return false;
6407
  }
6408
 
6409
+ /**
6410
+ * @since 8.6.5.2
6411
+ */
6412
+ function cerber_log_exceptions() {
6413
+
6414
+ if ( $ua_list = (array) crb_get_settings( 'tinoua' ) ) {
6415
+ if ( $ua = crb_array_get( $_SERVER, 'HTTP_USER_AGENT', '' ) ) {
6416
+ $ua = substr( $ua, 0, 1000 );
6417
+ foreach ( $ua_list as $item ) {
6418
+ if ( false !== stripos( $ua, $item ) ) {
6419
+ return true;
6420
+ }
6421
+ }
6422
+ }
6423
+ }
6424
+
6425
+ if ( $paths = (array) crb_get_settings( 'tinolocs' ) ) {
6426
+ foreach ( $paths as $item ) {
6427
+ if ( $item[0] == '{' && substr( $item, - 1 ) == '}' ) {
6428
+ $pattern = '/' . substr( $item, 1, - 1 ) . '/i';
6429
+ if ( @preg_match( $pattern, $_SERVER['REQUEST_URI'] ) ) {
6430
+ return true;
6431
+ }
6432
+ }
6433
+ else {
6434
+ $uri = substr( $_SERVER['REQUEST_URI'], 0, strlen( $item ) );
6435
+ if ( 0 === stripos( $uri, $item ) ) {
6436
+ return true;
6437
+ }
6438
+ }
6439
+ }
6440
+ }
6441
+
6442
+ return false;
6443
+ }
6444
+
6445
  /**
6446
  * Mask sensitive request fields before saving in DB (avoid information leaks)
6447
  *
6592
  // White list by URI
6593
  //$uri = cerber_purify_uri();
6594
  $uri = CRB_Request::URI();
6595
+ $uri_slash = $uri . '/';
6596
  if ( $tiwhite = crb_get_settings( 'tiwhite' ) ) {
6597
  foreach ( (array) $tiwhite as $item ) {
6598
  if ( $item[0] == '{' && substr( $item, - 1 ) == '}' ) {
6599
  $pattern = '/' . substr( $item, 1, - 1 ) . '/i';
6600
  if ( @preg_match( $pattern, $uri ) ) {
6601
  $cerber_req_status = 501;
6602
+
6603
  return;
6604
  }
6605
  }
6606
+ else {
6607
+ $cmp = ( substr( $item, - 1 ) == '/' ) ? $uri_slash : $uri; // Someone may specify trailing slash
6608
+ if ( $item == $cmp ) {
6609
+ $cerber_req_status = 501;
6610
+
6611
+ return;
6612
+ }
6613
  }
6614
  }
6615
  }
7128
  }
7129
 
7130
  return $atts;
7131
+ }, 1 );
7132
+
7133
+ function cerber_push_the_news() {
7134
+
7135
+ if ( ! $news = cerber_parse_change_log( true ) ) {
7136
+ return;
7137
+ }
7138
+
7139
+ $news = array_slice( $news, 0, 7 );
7140
+
7141
+ $text = '<h1>Highlights from WP Cerber Security ' . CERBER_VER . '</h1>';
7142
+
7143
+ $text .= '<ul><li>' . implode( '</li><li>', $news ) . '</li></ul>';
7144
+
7145
+ $text .= '<p style="margin-top: 18px; font-weight: bold;"><span class="dashicons-before dashicons-info"></span> &nbsp; <a href="https://wpcerber.com/?plugin_version=' . CERBER_VER . '" target="_blank">Read more on wpcerber.com</a></p>';
7146
+ //$text .= '<p style="margin-top: 18px; font-weight: bold;"><a href="' . cerber_admin_link( 'change-log' ) . '">See the whole history in the changelog</a></p>';
7147
+
7148
+ if ( ! defined( 'CRB_JUST_MARRIED' )
7149
+ && ( ( ! $ac = cerber_get_set( '_activated' ) ) || ( crb_array_get( $ac, 'time' ) < ( time() - 30 * DAY_IN_SECONDS ) ) )
7150
+ && ! lab_lab() ) {
7151
+ $text .= ' <h2 style="margin-top: 28px;">Cerber needs your help</h2>
7152
+ <p style="margin-top: 20px;">
7153
+ By sharing your unique opinion on WP Cerber, you will 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. No needs to use English. Feel free to use your native language. Thanks!
7154
+ </p>
7155
+
7156
+
7157
+ <p><a href="https://www.trustpilot.com/review/wpcerber.com" target="_blank">Trustpilot</a> &nbsp;/&nbsp;
7158
+ <a href="https://www.g2crowd.com/products/cerber-security-antispam-malware-scan/" target="_blank">G2.COM</a> &nbsp;/&nbsp;
7159
+ <a href="https://reviews.capterra.com/new/187653" target="_blank">Capterra</a></p>
7160
+
7161
+ <!--<p><a href="https://www.trustpilot.com/review/wpcerber.com" target="_blank">Trustpilot</a></p>
7162
+ <p><a href="https://www.g2crowd.com/products/cerber-security-antispam-malware-scan/" target="_blank">G2.COM</a></p>
7163
+ <p><a href="https://reviews.capterra.com/new/187653" target="_blank">Capterra</a></p>
7164
+ -->
7165
+ ';
7166
+ }
7167
+ else {
7168
+
7169
+ $text .= ' <p style="margin-top: 24px;"><span class="dashicons-before dashicons-email-alt"></span> &nbsp; <a href="https://wpcerber.com/subscribe-newsletter/">Subscribe to the Cerber\'s newsletter</a></p>
7170
+ <p><span class="dashicons-before dashicons-twitter"></span> &nbsp; <a href="https://twitter.com/wpcerber">Follow Cerber on Twitter</a></p>
7171
+ <p><span class="dashicons-before dashicons-facebook"></span> &nbsp; <a href="https://www.facebook.com/wpcerber/">Follow Cerber on Facebook</a></p>
7172
+ ';
7173
+ }
7174
+
7175
+ $text .= '<p style="text-align:right; padding-right: 20px;">
7176
+ <input type="button" class="button button-primary cerber-dismiss" value=" &nbsp; ' . __( 'Awesome!', 'wp-cerber' ) . ' &nbsp; "/></p>';
7177
+
7178
+ update_site_option( 'cerber_admin_info', $text );
7179
+ }
7180
+
7181
+ function cerber_parse_change_log( $last_only = false ) {
7182
+ if ( ! $text = file( cerber_get_plugins_dir() . '/wp-cerber/changelog.txt' ) ) {
7183
+ return false;
7184
+ }
7185
+
7186
+ $ret = array();
7187
+ $abort = 0;
7188
+ $ver = '';
7189
+
7190
+ foreach ( $text as $line ) {
7191
+ $line = trim( $line );
7192
+
7193
+ if ( ! $line ) {
7194
+ continue;
7195
+ }
7196
+
7197
+ $line = htmlspecialchars( $line );
7198
+
7199
+ if ( preg_match_all( '/(\[.+?])(\(.+?\))/', $line, $m ) ) {
7200
+ $anchors = $m[1];
7201
+ $links = $m[2];
7202
+ $replace = array();
7203
+ foreach ( $anchors as $i => $anchor ) {
7204
+ $replace[] = '<a href="' . trim( $links[ $i ], '()' ) . '" target="_blank">' . trim( $anchor, '[]' ) . '</a>';
7205
+ }
7206
+ $line = str_replace( $anchors, $replace, $line );
7207
+ $line = str_replace( $links, '', $line );
7208
+ }
7209
+ elseif ( preg_match( '/=([\d\.\s]+?)=/', $line, $m ) ) {
7210
+ if ( ! $last_only ) {
7211
+ if ( $ver ) {
7212
+ $ret[] = '<p><a href="https://wpcerber.com/wp-cerber-security-' . str_replace( array( '.', ' ' ), array( '-', '' ), $ver ) . '/" target="_blank">Read more on wpcerber.com</a></p>';
7213
+ }
7214
+ $ver = $m[1];
7215
+ $line = str_replace( $m[0], '<span class="crb-version">' . $m[1] . '</span>', $line );
7216
+ }
7217
+ else {
7218
+ $line = '';
7219
+ $abort ++;
7220
+ }
7221
+ }
7222
+
7223
+ $ret[] = $line;
7224
+
7225
+ if ( $abort > 1 ) {
7226
+ $ret = array_filter( $ret );
7227
+ $ret = preg_replace( '/^\*\s*/', '', $ret, 1 );
7228
+ break;
7229
+ }
7230
+ }
7231
+
7232
+ return $ret;
7233
+ }
cerber-news.php DELETED
@@ -1,136 +0,0 @@
1
- <?php
2
- /*
3
- Copyright (C) 2015-20 CERBER TECH INC., https://cerber.tech
4
- Copyright (C) 2015-20 CERBER TECH INC., https://wpcerber.com
5
-
6
- Licenced under the GNU GPL.
7
-
8
- This program is free software; you can redistribute it and/or modify
9
- it under the terms of the GNU General Public License as published by
10
- the Free Software Foundation; either version 3 of the License, or
11
- (at your option) any later version.
12
-
13
- This program is distributed in the hope that it will be useful,
14
- but WITHOUT ANY WARRANTY; without even the implied warranty of
15
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
- GNU General Public License for more details.
17
-
18
- You should have received a copy of the GNU General Public License
19
- along with this program; if not, write to the Free Software
20
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
- */
22
-
23
- /*
24
-
25
- *========================================================================*
26
- | |
27
- | ATTENTION! Do not change or edit this file! |
28
- | |
29
- *========================================================================*
30
-
31
- */
32
-
33
- // If this file is called directly, abort executing.
34
- if ( ! defined( 'WPINC' ) ) {
35
- exit;
36
- }
37
-
38
-
39
- function cerber_push_the_news( $version ) {
40
-
41
- $news['3.0'] =
42
- '<h3>Welcome a new version with reCAPTCHA and WordPress filters</h3>
43
- <ul>
44
- <li>Now you can use Google reCAPTCHA to protect WordPress registration form from spam registrations. Also reCAPTCHA available for lost password and login forms. <a href="https://wpcerber.com/how-to-setup-recaptcha/">How to setup reCAPTCHA</a>.</li>
45
- <li>The registration process, WordPress registration form, XML-RPC, WP REST API are controlled by <a href="http://wpcerber.com/using-ip-access-lists-to-protect-wordpress/">IP Access Lists</a>.</li>
46
- <li>Registration is impossible if a particular IP address is locked out.</li>
47
- <li>Registration with a prohibited username is impossible.</li>
48
- <li><a href="https://wpcerber.com/wp-cerber-hooks/">A set of filters and actions</a>. They are useful if you want to customize some aspects of the plugin as you want.</li>
49
- <li>A new action <strong>Get WHOIS info</strong> that obtains detailed WHOIS information about given IP address. You can use it in vary <a href="http://jetflow.io">jetFlow.io automation scenarios</a>. For instance, you can monitor countries from what your users are logged in on the website or you <a href="https://wpcerber.com/notifications-on-wordpress-user-logs-in/">monitor user logins with notifications</a>.</li>
50
- <li>A new trigger <strong>IP locked out</strong> that starts automation scenario after a suspicious IP address has been locked out by the WP Cerber plugin.</li>
51
- </ul>
52
-
53
- ';
54
-
55
- $news['4.0'] =
56
- '<h3>Welcome a new version with extended Access Lists and reCAPTCHA for WooCommerce</h3>
57
- <ul>
58
- <li>reCAPTCHA for WooCommerce forms. <a href="https://wpcerber.com/how-to-setup-recaptcha/">How to set up reCAPTCHA</a>.</li>
59
- <li>IP Access Lists has got support for IP networks in three forms: ability to restrict access with IPv4 ranges, IPv4 CIDR notation and IPv4 subnets: A,B,C has been added. Read more: <a href="https://wpcerber.com/using-ip-access-lists-to-protect-wordpress/">Access Lists for WordPress</a>.</li>
60
- <li>Cerber can automatically detect an IP network of an intruder and suggest you to block the entire network right from the Activity screen.</li>
61
- <!-- <li>reCAPTCHA will not be shown and processed for IP addresses from the White IP Access List.</li> -->
62
- </ul>
63
-
64
- <p><a href="https://wpcerber.com/wp-cerber-security-4-0/" target="_blank">Read a full list of changes and improvements</a></p>
65
- ';
66
-
67
- $news['4.3'] =
68
- '<h3>What\'s new in version 4.3</h3>
69
- <ul>
70
- <li>Do you want to keep eye on specific activity on your website? I have good news for you! Track them like a PRO. Use powerful subscriptions to get email notifications according to filters for events you have set. Filter out activities that you are interested to monitor and then click Subscribe. <a href="https://wpcerber.com/wordpress-notifications-made-easy/">Read more</a></li>
71
- <li>Search and/or filter activity by IP address, username (login), specific event and a user. You can use any combination of them. </li>
72
- <li>Now you can export activity from your WordPress website to a CSV file. You can export all activities or a set of filtered activities only as it described above. When you will import the CSV file in your spreadsheet editor, don\'t forget to select UTF-8 charset.</li>
73
- <li>You can use multiple email addresses for notifications (Main Settings -> Notifications -> Email Address). Use a comma to specify several addresses.</li>
74
- </ul>
75
- ';
76
-
77
- $news['8.5'][] = 'A new Data Shield module for advanced protection of user data and vital settings in the website database. Available in the PRO version.';
78
- $news['8.5'][] = 'Improvement: Compatibility with WooCommerce significantly improved.';
79
- $news['8.5'][] = 'Bug fixed: Custom login URL doesn\'t work after updating WordPress to 5.2.3.';
80
- $news['8.5'][] = 'Bug fixed: User Policies tabs are not switchable if a user role was declared with a hyphen instead of the underscore.';
81
- $news['8.5'][] = 'Bug fixed: A PHP warning while adding a network to the Black IP Access List from the Activity tab.';
82
- $news['8.5'][] = 'Bug fixed: An anti-spam false positive: some WordPress DB updates can\'t be completed.';
83
-
84
- $news['8.5.3'][] = 'The malware scanner and integrity checker window has got a new filter that enables you to filter out and navigate to specific issues quickly.';
85
- $news['8.5.3'][] = 'New in Cerber.Hub: new columns and filters have been added to the list of slave websites. The new columns display server IP addresses, hostnames, and countries where servers are located.';
86
- $news['8.5.3'][] = 'Bug fixed: depending on the number of items in the access lists, the IP address 0.0.0.0 can be erroneously marked as whitelisted or blacklisted.';
87
- $news['8.5.3'][] = 'Bug fixed in Cerber.Hub: if a WordPress plugin is installed on several slave websites and the plugin needs to be updated on some of the slave websites, the plugin is shown as needs to be updated on all the slave websites.';
88
-
89
- $news['8.6'][] = 'An integration with the Cloudflare cloud-based firewall. It’s implemented as a special WP Cerber add-on.';
90
- $news['8.6'][] = 'The malware scanner has got improvements to the monitoring of new and modified files feature. Now it can be set to Disable, Executable files, or All files.';
91
- $news['8.6'][] = 'Additional search fields for the Activity log. They enable you to find a specific request by its Request ID (RID) or/and to search for a string in the request URL.';
92
- $news['8.6'][] = 'The minimum supported PHP version is 5.6.';
93
-
94
- $news['8.6.3'][] = 'New: Ability to load IP access list\'s entries in the CSV format (bulk load).';
95
- $news['8.6.3'][] = 'Update: A new malware scanner setting allows you to permit the scanner to change permissions of folders and files when required.';
96
- $news['8.6.3'][] = 'Fixed: The access list IPv4 wildcard *.*.*.* doesn\'t work (has no effect).';
97
- $news['8.6.3'][] = 'Fixed: If the anti-spam query whitelist contains more than one entry, they do not work as expected.';
98
-
99
- $news['8.6.5'][] = 'File system analytics. It\'s generated based on the results of the last full integrity scan.';
100
- $news['8.6.5'][] = 'Logging user deletions. The user’s display name and roles are temporarily stored until all log entries related to the user are deleted.';
101
- $news['8.6.5'][] = 'Faster export with a new date format for CSV log export.';
102
- $news['8.6.5'][] = 'Ability to disable adding the website administrator\'s IP address to the White IP Access List upon WP Cerber activation.';
103
- $news['8.6.5'][] = 'Improved: Handling user registrations with prohibited emails.';
104
- $news['8.6.5'][] = 'Fixed: Loading the default plugin settings has no effect. Now it’s fixed and moved from the admin sidebar to the Tools admin page.';
105
-
106
-
107
- if ( ! empty( $news[ $version ] ) ) {
108
- //$text = '<h3>What\'s new in WP Cerber '.$version.'</h3>';
109
-
110
- $text = '<h3>Highlights from WP Cerber Security '.$version.'</h3>';
111
-
112
- $text .= '<ul><li>'.implode('</li><li>', $news[ $version ]).'</li></ul>';
113
-
114
- $text .= ' <p style="margin-top: 18px; font-weight: bold;"><a href="https://wpcerber.com/?plugin_version='.$version.'" target="_blank">Read more on wpcerber.com</a></p>';
115
- $text .= ' <p style="margin-top: 18px; font-weight: bold;"><a href="'.cerber_admin_link('change-log').'">See the whole history in the changelog</a></p>';
116
-
117
- $text .= ' <p style="margin-top: 24px;"><span class="dashicons-before dashicons-email-alt"></span> &nbsp; <a href="https://wpcerber.com/subscribe-newsletter/">Subscribe to the Cerber\'s newsletter</a></p>
118
- <p><span class="dashicons-before dashicons-twitter"></span> &nbsp; <a href="https://twitter.com/wpcerber">Follow Cerber on Twitter</a></p>
119
- <p><span class="dashicons-before dashicons-facebook"></span> &nbsp; <a href="https://www.facebook.com/wpcerber/">Follow Cerber on Facebook</a></p>
120
- ';
121
- cerber_admin_info( $text );
122
- }
123
- }
124
-
125
-
126
- function cerber_admin_info($msg, $type = 'normal'){
127
- //global $crb_assets_url;
128
- $crb_assets_url = cerber_plugin_dir_url() . 'assets/';
129
- update_site_option('cerber_admin_info',
130
- '<table><tr><td><img style="float:left; margin-left:-10px;" src="'.$crb_assets_url.'icon-128x128.png"></td>'.
131
- '<td>'.$msg.
132
- '<p style="text-align:right;">
133
- <input type="button" class="button button-primary cerber-dismiss" value=" &nbsp; '.__('Awesome!','wp-cerber').' &nbsp; "/></p></td></tr></table>');
134
- }
135
-
136
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cerber-request.php CHANGED
@@ -9,6 +9,11 @@ final class CRB_Request {
9
  private static $sub_folder = null; // Without trailing slash and site domain
10
  private static $the_path = null;
11
 
 
 
 
 
 
12
  static function URI() {
13
  if ( isset( self::$clean_uri ) ) {
14
  return self::$clean_uri;
9
  private static $sub_folder = null; // Without trailing slash and site domain
10
  private static $the_path = null;
11
 
12
+ /**
13
+ * Returns clean "Request URI" without trailing slash and GET parameters
14
+ *
15
+ * @return string
16
+ */
17
  static function URI() {
18
  if ( isset( self::$clean_uri ) ) {
19
  return self::$clean_uri;
cerber-tools.php CHANGED
@@ -836,30 +836,14 @@ function cerber_manage_diag_log( $v ) {
836
  }
837
 
838
  function cerber_show_change_log() {
839
- if ( ! $text = file( cerber_get_plugins_dir() . '/wp-cerber/changelog.txt' ) ) {
840
- echo 'File changelog.txt not found';
841
-
842
- return;
843
- }
844
 
845
  echo '<div id="crb-change-log-view" class="">';
846
- foreach ( $text as $line ) {
847
- $line = htmlspecialchars( $line );
848
- if ( preg_match_all( '/(\[.+?\])(\(.+?\))/', $line, $m ) ) {
849
- $anchors = $m[1];
850
- $links = $m[2];
851
- $replace = array();
852
- foreach ( $anchors as $i => $anchor ) {
853
- $replace[] = '<a href="' . trim( $links[ $i ], '()' ) . '" target="_blank">' . trim( $anchor, '[]' ) . '</a>';
854
- }
855
- $line = str_replace( $anchors, $replace, $line );
856
- $line = str_replace( $links, '', $line );
857
- }
858
- if ( preg_match( '/=([\d\.\s]+?)=/', $line, $m ) ) {
859
- $line = str_replace( $m[0], '<span class="crb-version">' . $m[1] . '</span>', $line );
860
- }
861
 
862
- echo $line . '<br/>';
 
863
  }
 
 
 
864
  echo '</div>';
865
  }
836
  }
837
 
838
  function cerber_show_change_log() {
 
 
 
 
 
839
 
840
  echo '<div id="crb-change-log-view" class="">';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
841
 
842
+ if ( ! $log = cerber_parse_change_log() ) {
843
+ echo 'File changelog.txt not found';
844
  }
845
+
846
+ echo implode( '<br/>', $log );
847
+
848
  echo '</div>';
849
  }
cerber-users.php CHANGED
@@ -267,7 +267,7 @@ function cerber_block_user( $user_id, $msg = '', $note = '' ) {
267
  $m['blocked_note'] = $note;
268
 
269
  update_user_meta( $user_id, CERBER_BUKEY, $m );
270
- crb_admin_destroy( $user_id );
271
  }
272
 
273
  function crb_admin_show_role_policies() {
@@ -548,7 +548,7 @@ function crb_admin_save_role_policies( $post ) {
548
  *
549
  * @return int
550
  */
551
- function crb_admin_kill( $sids, $user_id = null ) {
552
  if ( ! is_super_admin() && ! nexus_is_valid_request() ) {
553
  return 0;
554
  }
@@ -577,8 +577,6 @@ function crb_admin_kill( $sids, $user_id = null ) {
577
  unset( $kill[ crb_admin_hash_token( wp_get_session_token() ) ] );
578
  }
579
 
580
- $before = cerber_db_get_var( 'SELECT COUNT(user_id) FROM ' . cerber_get_db_prefix() . CERBER_USS_TABLE );
581
-
582
  foreach ( $users as $user_id ) {
583
  $count = 0;
584
 
@@ -613,22 +611,15 @@ function crb_admin_kill( $sids, $user_id = null ) {
613
 
614
  if ( $total ) {
615
  cerber_admin_message( sprintf( _n( 'Session has been terminated', '%s sessions have been terminated', $total, 'wp-cerber' ), $total ) );
616
-
617
- // Workaround if user meta cache is out-of-sync with DB (like with WP Redis)
618
- $after = cerber_db_get_var( 'SELECT count(user_id) FROM ' . cerber_get_db_prefix() . CERBER_USS_TABLE );
619
- if ( $after == $before ) { // cache was not saved to DB
620
- cerber_sync_sessions();
621
- }
622
  }
623
  else {
624
  cerber_admin_notice( 'No sessions found.' );
625
- cerber_sync_sessions();
626
  }
627
 
628
  return $total;
629
  }
630
 
631
- function crb_admin_destroy( $user_id ) {
632
  if ( ! $user_id || get_current_user_id() == $user_id ) {
633
  return;
634
  }
@@ -742,8 +733,10 @@ function crb_admin_show_sessions() {
742
  }, 10, 3 );
743
  }
744
 
745
- echo '<form id="crb-user-sessions" method="post" action="">';
746
  cerber_nonce_field( 'control', true );
 
 
747
  echo '<input type="hidden" name="cerber_admin_do" value="crb_manage_sessions">';
748
  $slaves = new CRB_Sessions_Table();
749
  $slaves->prepare_items();
@@ -1003,22 +996,51 @@ class CRB_Sessions_Table extends WP_List_Table {
1003
  );
1004
  }
1005
 
1006
- // Retrieve data from the DB
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1007
 
1008
  function prepare_items() {
1009
  global $wpdb;
1010
 
1011
- // These quires show the same perfomance
1012
- //if ( cerber_db_get_var( 'SELECT user_id FROM ' . cerber_get_db_prefix() . CERBER_USS_TABLE . ' WHERE expires < ' . time() . ' LIMIT 1' ) ) {
1013
- $min = cerber_db_get_var( 'SELECT MIN(expires) FROM ' . cerber_get_db_prefix() . CERBER_USS_TABLE );
1014
- if ( ! $min || $min < time() ) {
1015
- cerber_sync_sessions(); // full sync if there are expired sessions
1016
  }
1017
  else {
1018
- cerber_sync_sessions( false ); // full sync if table is empty
1019
  }
1020
 
1021
- $where = array();
1022
  $total_items = 0;
1023
  $get = crb_get_query_params();
1024
 
@@ -1040,22 +1062,15 @@ class CRB_Sessions_Table extends WP_List_Table {
1040
  }
1041
 
1042
  // Search
1043
- if ( $term = cerber_get_get( 's' ) ) {
1044
- $term = stripslashes( $term );
1045
- $s = '"%' . cerber_real_escape( $term ) . '%"';
1046
- if ( preg_match( '/[^A-Z\d\-\/\.\:]/i', $term ) ) {
1047
- // Mixing columns with different collations for non-latin symbols generates MySQL error
1048
- $where[] = '';
1049
- }
1050
- else {
1051
- $where[] = '';
1052
- }
1053
- }
1054
 
1055
  if ( $user_id = crb_array_get( $get, 'filter_user', 0, '\d+' ) ) {
1056
  $where[] = 'user_id = ' . $user_id;
1057
  }
1058
 
 
 
 
 
1059
  $where = ( ! empty( $where ) ) ? ' WHERE ' . implode( ' AND ', $where ) : '';
1060
 
1061
  // Retrieving data
267
  $m['blocked_note'] = $note;
268
 
269
  update_user_meta( $user_id, CERBER_BUKEY, $m );
270
+ crb_destroy_user_sessions( $user_id );
271
  }
272
 
273
  function crb_admin_show_role_policies() {
548
  *
549
  * @return int
550
  */
551
+ function crb_sessions_kill( $sids, $user_id = null ) {
552
  if ( ! is_super_admin() && ! nexus_is_valid_request() ) {
553
  return 0;
554
  }
577
  unset( $kill[ crb_admin_hash_token( wp_get_session_token() ) ] );
578
  }
579
 
 
 
580
  foreach ( $users as $user_id ) {
581
  $count = 0;
582
 
611
 
612
  if ( $total ) {
613
  cerber_admin_message( sprintf( _n( 'Session has been terminated', '%s sessions have been terminated', $total, 'wp-cerber' ), $total ) );
 
 
 
 
 
 
614
  }
615
  else {
616
  cerber_admin_notice( 'No sessions found.' );
 
617
  }
618
 
619
  return $total;
620
  }
621
 
622
+ function crb_destroy_user_sessions( $user_id ) {
623
  if ( ! $user_id || get_current_user_id() == $user_id ) {
624
  return;
625
  }
733
  }, 10, 3 );
734
  }
735
 
736
+ echo '<form id="crb-user-sessions" method="get" action="">';
737
  cerber_nonce_field( 'control', true );
738
+ echo '<input type="hidden" name="page" value="' . crb_admin_get_page() . '">';
739
+ echo '<input type="hidden" name="tab" value="' . crb_admin_get_tab() . '">';
740
  echo '<input type="hidden" name="cerber_admin_do" value="crb_manage_sessions">';
741
  $slaves = new CRB_Sessions_Table();
742
  $slaves->prepare_items();
996
  );
997
  }
998
 
999
+ protected function extra_tablenav( $which ) {
1000
+
1001
+ if ( $which == 'top' ) {
1002
+
1003
+ ?>
1004
+ <div class="alignleft actions">
1005
+ <?php
1006
+
1007
+ $filter = '';
1008
+ $uname = '';
1009
+
1010
+ if ( $user_id = crb_get_query_params( 'filter_user', '\d+' ) ) {
1011
+ if ( $u = get_userdata( $user_id ) ) {
1012
+ $uname = crb_format_user_name( $u );
1013
+ }
1014
+ else {
1015
+ $user_id = 0;
1016
+ }
1017
+ }
1018
+
1019
+ $filter .= cerber_select( 'filter_user', ( $user_id ) ? array( $user_id => $uname ) : array(), $user_id, 'crb-select2-ajax', '', false, esc_html__( 'Filter by registered user', 'wp-cerber' ), array( 'min_symbols' => 3 ) );
1020
+
1021
+ $search_ip = esc_attr( stripslashes( crb_get_query_params( 'search_ip' ) ) );
1022
+ $filter .= '<input type="text" value="' . $search_ip . '" name="search_ip" placeholder="' . esc_html__( 'Search for IP address', 'wp-cerber' ) . '">';
1023
+
1024
+ echo '<div id="crb-top-filter">' . $filter . '<input type="submit" value="Filter" class="button button-primary action"></div>';
1025
+
1026
+ ?>
1027
+
1028
+ </div>
1029
+ <?php
1030
+ }
1031
+ }
1032
 
1033
  function prepare_items() {
1034
  global $wpdb;
1035
 
1036
+ if ( ! crb_sessions_get_num() ) {
1037
+ crb_sessions_sync_all();
 
 
 
1038
  }
1039
  else {
1040
+ crb_sessions_del_expired();
1041
  }
1042
 
1043
+ $where = array();
1044
  $total_items = 0;
1045
  $get = crb_get_query_params();
1046
 
1062
  }
1063
 
1064
  // Search
 
 
 
 
 
 
 
 
 
 
 
1065
 
1066
  if ( $user_id = crb_array_get( $get, 'filter_user', 0, '\d+' ) ) {
1067
  $where[] = 'user_id = ' . $user_id;
1068
  }
1069
 
1070
+ if ( $ip = stripslashes( crb_array_get( $get, 'search_ip' ) ) ) {
1071
+ $where[] = 'ip LIKE "%' . preg_replace( '/[^:.\d]/', '', $ip ) . '%"';
1072
+ }
1073
+
1074
  $where = ( ! empty( $where ) ) ? ' WHERE ' . implode( ' AND ', $where ) : '';
1075
 
1076
  // Retrieving data
changelog.txt CHANGED
@@ -1,3 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
1
  = 8.6.5 =
2
  * New: File system analytics. It's generated based on the results of the last full integrity scan.
3
  * New: Logging user deletions. The user’s display name and roles are temporarily stored until all log entries related to the user are deleted.
@@ -8,7 +19,6 @@
8
  * Improved: Handling secure Cerber‘s cookies on websites with SSL encryption enabled.
9
  * Improved: The performance of the integrity checker and malware scanner on huge websites with a large number of files.
10
  * Fixed: Loading the default plugin settings has no effect. Now it’s fixed and moved from the admin sidebar to the Tools admin page.
11
- * [Read more](https://wpcerber.com/wp-cerber-security-8-6-5/)
12
 
13
  = 8.6.3 =
14
  * New: Ability to load IP access list's entries in the CSV format (bulk load).
@@ -16,14 +26,12 @@
16
  * Fixed: The access list IPv4 wildcard *.*.*.* doesn't work (has no effect).
17
  * Fixed: If the anti-spam query whitelist contains more than one entry, they do not work as expected.
18
  * Fixed: Several settings fields are not properly escaped.
19
- * [Read more](https://wpcerber.com/wp-cerber-security-8-6-3/)
20
 
21
  = 8.6 =
22
  * New: [An integration with the Cloudflare firewall. It’s implemented as a special WP Cerber add-on.](https://wpcerber.com/cloudflare-add-on-wp-cerber/)
23
  * Update: The malware scanner has got improvements to the monitoring of new and modified files feature.
24
  * Update: Additional search fields for the Activity log. They enable you to find a specific request by its Request ID (RID) or/and to search for a string in the request URL.
25
  * Update: The minimum supported PHP version is 5.6.
26
- * [Read more](https://wpcerber.com/wp-cerber-security-8-6/)
27
 
28
  = 8.5.9 =
29
  * New: On the Live Traffic log, now you can search and filter our requests with software errors if they occurred.
@@ -32,7 +40,6 @@
32
  * Update: If a slave website has the professional version of WP Cerber, it has a PRO sign in the "WP Cerber" column. The license expiration date is shown when you hover the mouse over the sign.
33
  * Fixed: A bug with displaying long file names in the Security Scanner Quarantine that makes unavailable deleting or restoring quarantined files manually.
34
  * Fixed: A bug that requires installing a valid license key on a Cerber.Hub master website to permit configuring settings on slave websites remotely, which is not intended behavior.
35
- * [Read more](https://wpcerber.com/wp-cerber-security-8-5-9/)
36
 
37
  = 8.5.8 =
38
  * New: A personal data export and erase features which can be used through the WordPress personal data export and erase tool. This feature helps your organization to be in compliance with data privacy laws such as GDPR in Europe or CCPA in California
@@ -40,7 +47,6 @@
40
  * Update: When you block a user you can add an optional admin note now
41
  * Fixed: If a user is blocked, it’s not possible to update the user message
42
  * Fixed: Depending on the logging settings the "Details" links on the Live Traffic log are not displayed in some rows
43
- * [Read more](https://wpcerber.com/wp-cerber-security-8-5-8/)
44
 
45
  = 8.5.6 =
46
  * New: Ability to separately set the number of days of keeping log records in the database for authenticated (logged in) website users and non-authenticated (not logged in) visitors.
@@ -63,14 +69,12 @@
63
  * Fixed: If the Custom login URL is enabled on a subfolder WordPress installation, the user redirection after logout generates the HTTP 404 error page.
64
  * Fixed: Very long HTTP referrers and request URLs are displayed in a truncated form on the Live Traffic page due to CSS bug.
65
  * Fixed: If the Data Shield security feature is active, the password reset page on WordPress 5.3 doesn’t work properly showing "Your password reset link appears to be invalid. Please request a new link below."
66
- * [Read more](https://wpcerber.com/wp-cerber-security-8-5-5/)
67
 
68
  = 8.5.3 =
69
  * New: The malware scanner and integrity checker window has got a new filter that enables you to filter out and navigate to specific issues quickly.
70
  * New in Cerber.Hub: new columns and filters have been added to the list of slave websites. The new columns display server IP addresses, hostnames, and countries where servers are located.
71
  * Fixed: depending on the number of items in the access lists, the IP address 0.0.0.0 can be erroneously marked as whitelisted or blacklisted.
72
  * Fixed in Cerber.Hub: if a WordPress plugin is installed on several slave websites and the plugin needs to be updated on some of the slave websites, the plugin is shown as needs to be updated on all of them.
73
- * [Read more](https://wpcerber.com/wp-cerber-security-8-5-3/)
74
 
75
  = 8.5 =
76
  * New: Data Shield module for advanced protection of user data and vital settings in the website database. Available in the PRO version.
@@ -81,7 +85,6 @@
81
  * Fixed: User Policies tabs are not switchable if a user role was declared with a hyphen instead of the underscore.
82
  * Fixed: A PHP warning while adding a network to the Black IP Access List from the Activity tab.
83
  * Fixed: An anti-spam false positive: some WordPress DB updates can't be completed.
84
- * [Read more](https://wpcerber.com/wp-cerber-security-8-5/)
85
 
86
  = 8.4 =
87
  * New: More flexible role-based GEO access policies.
@@ -98,7 +101,6 @@
98
  * Update: The Users tab has been renamed to Global and now is under the new User Policies admin menu.
99
  * Fixed: Switching to the English language in Cerber’s admin interface has no effect.
100
  * Fixed: Multiple notifications about a new version of the plugin in the WordPress dashboard.
101
- * [Read more](https://wpcerber.com/wp-cerber-security-8-3/)
102
 
103
  = 8.2 =
104
  * New: Automatic recovery of infected files. When the malware scanner detects changes in the core WordPress files and plugins, it automatically recovers them.
@@ -108,7 +110,6 @@
108
  * New: To make a website comply with GDPR, a cookie prefix can be set.
109
  * Update: The lockout notification settings are moved to the Notifications tab.
110
  * Update: The list of files to be scanned in Quick mode now also includes files with these extensions: phtm, phtml, phps, php2, php3, php4, php5, php6, php7.
111
- * [Read more](https://wpcerber.com/wp-cerber-security-8-2/)
112
 
113
  = 8.1 =
114
  * New: On a master website you can get a list of active plugins and available plugin updates on a slave website.
@@ -120,7 +121,6 @@
120
  * Fixed: The "Add to the Black List" button on the Activity log page doesn't work.
121
  * Fixed: When the "All suspicious activity" button is clicked on the Dashboard admin page, the "Subscribe" link on the Activity page doesn't work correctly.
122
  * Fixed: When you open an email report, the link to the list of deleted files during a malware scan doesn't work as expected.
123
- * [Read more](https://wpcerber.com/wp-cerber-security-8-1/)
124
 
125
  = 8.0 =
126
  * New: [Manage multiple WP Cerber instances from one dashboard](https://wpcerber.com/manage-multiple-websites/).
@@ -137,7 +137,6 @@
137
  * Update: A new Changelog section on the Tools page.
138
  * Update: Improved handling scheduled maintenance tasks on a multi-site WordPress installation.
139
  * Fixed: Several HTML markup errors on plugin admin pages.
140
- * [Read more](https://wpcerber.com/wp-cerber-security-7-9-7/)
141
 
142
  = 7.9.3 =
143
  * New: New settings for the Traffic Inspector firewall allow you to fine-tune its behavior. You can enable less or more restrictive firewall rules.
@@ -147,7 +146,6 @@
147
  * Update: The layout of the Activity and Live Traffic pages has been improved.
148
  * Bug fixed: The malware scanner wrongly prevents PHP files with few specific names in one particular location from being deleted after a manual scan or during the automatic malware removal.
149
  * Bug fixed: The number of email notifications might be incorrectly limited to one email per hour.
150
- * [Read more](https://wpcerber.com/wp-cerber-security-7-9-3/)
151
 
152
  = 7.9 =
153
  * New: The plugin monitors suspicious requests that cause 4xx and 5xx HTTP errors and blocks IP addresses that aggressively generate such requests.
@@ -157,7 +155,6 @@
157
  * Update: Multiple improvements to Traffic Inspector firewall algorithms. In short, the detection of obfuscated malicious SQL queries and injections has been improved.
158
  * Update: Improved handling of malformed requests to wp-cron.php.
159
  * Fix: The number of email notifications per hour can exceed the configured limit.
160
- * [Read more](https://wpcerber.com/wp-cerber-security-7-9/)
161
 
162
  = 7.8.5 =
163
  * New: A new set of heuristics algorithms for detecting obfuscated malicious JavaScript code.
@@ -169,7 +166,6 @@
169
  * Update: Improved handling the plugin settings in a buggy or misconfigured hosting environment that could cause the plugin to reset settings to their default values.
170
  * Update: Translations have been updated. Thanks to Francesco, Jos Knippen, Fredrik Näslund, Slobodan Ljubic and MARCELHAP.
171
  * Fix: Fixed an issue with saving settings on the Hardening tab: "Unable to get access to the file…"
172
- * [Read more](https://wpcerber.com/wp-cerber-security-7-8-5/)
173
 
174
  = 7.8 =
175
  * New: An ignore list for the malware scanner.
@@ -188,7 +184,6 @@
188
  * Update: Email reports for [scheduled malware scans](https://wpcerber.com/automated-recurring-malware-scans/) have been extended with useful performance numbers and a list of automatically deleted malicious files if you’ve enabled automatic malware removal and some files have been deleted.
189
  * Fix: A possible issue with uploading large JSON and CSV files. When Traffic Inspector scans uploaded files for malware payload, some JSON and CSV files might be erroneously identified as containing a malicious payload.
190
  * Fix: A possible Divi theme forms incompatibility. If you use the Divi theme (by Elegant Themes), you can come across a problem with submitting some forms.
191
- * [Read more](https://wpcerber.com/wp-cerber-security-7-7/)
192
 
193
  = 7.6 =
194
  * New: The quarantine has got a separate admin page in the WordPress dashboard which allows viewing deleted files, restoring or deleting them.
@@ -204,7 +199,6 @@
204
  * Update: A set of new malware signatures amd patterns have been added to detect malware submitted through a contact form as well as any HTTP request fields.
205
  * Update: Now the plugin inspects user sign ups (user registrations) on multisite WordPress installations and BuddyPress.
206
  * Update: The search for user activity, as well as enabling activity notifications, is improved.
207
- * [Read more](https://wpcerber.com/wp-cerber-security-7-5/)
208
 
209
  = 7.2 =
210
  * New: Monitoring new and changed files.
@@ -232,7 +226,6 @@
232
  * Update: Improved compatibility with WooCommerce, Formidable Forms, Gravity Forms and AJAX file upload.
233
  * Update: Any symbols other than letters, numbers, dashes and underscores are not permitted in Custom login URL anymore.
234
  * Bug fixed: The Safe antispam mode doesn’t work correctly on some website configurations. That may lead to false positives and erroneous spam form submission detection.
235
- * [Read more](https://wpcerber.com/wp-cerber-security-6-7/)
236
 
237
  = 6.5 =
238
  * New: A new, advanced initialization mode which reinforces overall security performance.
@@ -243,7 +236,6 @@
243
  * Update: In the Smart mode if a user is not logged in, all requests to the admin dashboard are logged.
244
  * Bug fixed: If a user tries to log in with an email address and an incorrect password, the "Invalid username" message is shown.
245
  * Bug fixed: On a multisite installation with websites in subdirectories a user activation link doesn't work.
246
- * [Read more](https://wpcerber.com/wp-cerber-security-6-5/)
247
 
248
  = 6.2 =
249
  * New: Protection against (DoS) attacks that exploit recently discovered vulnerability (CVE-2018-6389).
@@ -272,14 +264,12 @@
272
  * Improved compatibility with exotic hosting environments: now the plugin handles URLs with the MultiViews server option enabled.
273
  * Improved compatibility with caching plugins
274
  * Bug fixed: The plugin logs a logout event if the actual logout doesn't happen
275
- * [Read more](https://wpcerber.com/wp-cerber-security-5-9/)
276
 
277
  = 5.8.6 =
278
  * New: Regular expressions (REGEX) in the list of prohibited usernames.
279
  * New: Enable/disable weekly reports, a new setting to specify email addresses for weekly reports.
280
  * Improved compatibility with non-standard authentication processes, WooCommerce and exotic/outdated hosting environments.
281
  * Bug fixed: Some interface elements of WordPress Customizer might not work.
282
- * [Read more](https://wpcerber.com/wp-cerber-security-5-8-6/)
283
 
284
  = 5.8 =
285
  * New: Now the plugin will send a brief security report (activity for past seven days) to specified email addresses.
@@ -287,7 +277,6 @@
287
  * REST API: the deprecated rest_enabled filter is used for WordPress older than 4.7.
288
  * Bug fixed: After updating the plugin to the 5.7 version some disabled checkboxes (and corresponding disabled settings) are set to their default, enabled states.
289
  * Bug fixed: An IP address in the white access list may be locked out as a suspicious IP.
290
- * [Read more](https://wpcerber.com/wp-cerber-security-5-8/)
291
 
292
  = 5.7 =
293
  * New: Limit access to WordPress REST API for logged in users only.
@@ -296,13 +285,11 @@
296
  * New: User registration monitoring and activity logging functions has been improved.
297
  * Translations has been updated, thanks to Jon Knippen, Wojciech Górski and Francesco.
298
  * Bug fixed: Stop user enumeration via REST API doesn’t work on a multisite WordPress installation.
299
- * [Read more](https://wpcerber.com/wp-cerber-security-5-7/)
300
 
301
  = 5.5 =
302
  * New: White list for the WordPress anti-spam engine.
303
  * New: White list for REST API requests.
304
  * New: Disable access to user data via REST API and stop REST API user enumeration.
305
- * [Read more](https://wpcerber.com/wp-cerber-security-5-5/)
306
 
307
  = 5.2 =
308
  * Bug fixed: Hidden custom login URL may be discovered by using specially formatted URL.
@@ -370,7 +357,7 @@
370
 
371
  = 4.0 =
372
  * New: reCAPTCHA for WooCommerce forms. [How to set up reCAPTCHA](https://wpcerber.com/how-to-setup-recaptcha/).
373
- * New: IP Access Lists has got support for IP networks in three forms: ability to restrict access with IPv4 ranges, IPv4 CIDR notation and IPv4 subnets: A,B,C has been added. [Access Lists for WordPress](https://wpcerber.com/using-ip-access-lists-to-protect-wordpress/).
374
  * New: Cerber can automatically detect an IP network of an intruder and suggest you to block entire network right from the Activity screen.
375
  * New: Norwegian translation added, thanks to [Eirik Vorland](https://www.facebook.com/KjellDaSensei).
376
  * Update: WP REST API is controlled by Access Lists. While REST API is blocked for the rest of the world, IP addresses from the White Access List can use WP REST API.
@@ -432,13 +419,6 @@
432
  * Fixed Bug: Custom login URL doesn't work without trailing slash.
433
  * Fixed Bug: Any request to wp-signup.php reveal hidden Custom login URL.
434
 
435
- = 1.9 =
436
- * Code refactoring and cleaning up.
437
- * Unlocalized strings was localized.
438
-
439
- = 1.8.1 =
440
- * Fixed minor bug: no content (empty cells) in the custom colums added by other plugins on the Users screen in the Dashboard.
441
-
442
  = 1.8 =
443
  * New! added Hostname column for the Activity and Lockouts tabs.
444
  * New! added ability to write failed login attempts to the specified file or to the syslog file. Use it to protect site with fail2ban.
1
+ = 8.6.6 =
2
+ * New: On the user sessions page, you can now search sessions by a user name, email, and the IP address from which a user has logged in.
3
+ * New: You can specify locations (URL Paths) to exclude requests from logging. They can be either exact matches or regular expressions (REGEX).
4
+ * New: You can exclude requests from logging based on the value of the User-Agent (UA) header.
5
+ * New: A new, minimal logging mode. When it is set, only HTTP requests related to known activities are logged.
6
+ * Improved: The layout of the Live Traffic log has been improved: now all events that are logged during a particular request are shown as an event list sorted in reverse order.
7
+ * Improved: The user sessions page has been optimized for performance and compatibility and now works blazingly fast.
8
+ * Improved: If your website is behind a proxy, IP addresses of user sessions now are detected more precisely.
9
+ * Improved: When you configure the request whitelist in the Traffic Inspector settings, you can now specify rules with or without trailing slash.
10
+ * Improved: A new version of [Cloudflare add-on for WP Cerber](https://wpcerber.com/cloudflare-add-on-wp-cerber/) is available: the performance of the add-on has been optimized.
11
+
12
  = 8.6.5 =
13
  * New: File system analytics. It's generated based on the results of the last full integrity scan.
14
  * New: Logging user deletions. The user’s display name and roles are temporarily stored until all log entries related to the user are deleted.
19
  * Improved: Handling secure Cerber‘s cookies on websites with SSL encryption enabled.
20
  * Improved: The performance of the integrity checker and malware scanner on huge websites with a large number of files.
21
  * Fixed: Loading the default plugin settings has no effect. Now it’s fixed and moved from the admin sidebar to the Tools admin page.
 
22
 
23
  = 8.6.3 =
24
  * New: Ability to load IP access list's entries in the CSV format (bulk load).
26
  * Fixed: The access list IPv4 wildcard *.*.*.* doesn't work (has no effect).
27
  * Fixed: If the anti-spam query whitelist contains more than one entry, they do not work as expected.
28
  * Fixed: Several settings fields are not properly escaped.
 
29
 
30
  = 8.6 =
31
  * New: [An integration with the Cloudflare firewall. It’s implemented as a special WP Cerber add-on.](https://wpcerber.com/cloudflare-add-on-wp-cerber/)
32
  * Update: The malware scanner has got improvements to the monitoring of new and modified files feature.
33
  * Update: Additional search fields for the Activity log. They enable you to find a specific request by its Request ID (RID) or/and to search for a string in the request URL.
34
  * Update: The minimum supported PHP version is 5.6.
 
35
 
36
  = 8.5.9 =
37
  * New: On the Live Traffic log, now you can search and filter our requests with software errors if they occurred.
40
  * Update: If a slave website has the professional version of WP Cerber, it has a PRO sign in the "WP Cerber" column. The license expiration date is shown when you hover the mouse over the sign.
41
  * Fixed: A bug with displaying long file names in the Security Scanner Quarantine that makes unavailable deleting or restoring quarantined files manually.
42
  * Fixed: A bug that requires installing a valid license key on a Cerber.Hub master website to permit configuring settings on slave websites remotely, which is not intended behavior.
 
43
 
44
  = 8.5.8 =
45
  * New: A personal data export and erase features which can be used through the WordPress personal data export and erase tool. This feature helps your organization to be in compliance with data privacy laws such as GDPR in Europe or CCPA in California
47
  * Update: When you block a user you can add an optional admin note now
48
  * Fixed: If a user is blocked, it’s not possible to update the user message
49
  * Fixed: Depending on the logging settings the "Details" links on the Live Traffic log are not displayed in some rows
 
50
 
51
  = 8.5.6 =
52
  * New: Ability to separately set the number of days of keeping log records in the database for authenticated (logged in) website users and non-authenticated (not logged in) visitors.
69
  * Fixed: If the Custom login URL is enabled on a subfolder WordPress installation, the user redirection after logout generates the HTTP 404 error page.
70
  * Fixed: Very long HTTP referrers and request URLs are displayed in a truncated form on the Live Traffic page due to CSS bug.
71
  * Fixed: If the Data Shield security feature is active, the password reset page on WordPress 5.3 doesn’t work properly showing "Your password reset link appears to be invalid. Please request a new link below."
 
72
 
73
  = 8.5.3 =
74
  * New: The malware scanner and integrity checker window has got a new filter that enables you to filter out and navigate to specific issues quickly.
75
  * New in Cerber.Hub: new columns and filters have been added to the list of slave websites. The new columns display server IP addresses, hostnames, and countries where servers are located.
76
  * Fixed: depending on the number of items in the access lists, the IP address 0.0.0.0 can be erroneously marked as whitelisted or blacklisted.
77
  * Fixed in Cerber.Hub: if a WordPress plugin is installed on several slave websites and the plugin needs to be updated on some of the slave websites, the plugin is shown as needs to be updated on all of them.
 
78
 
79
  = 8.5 =
80
  * New: Data Shield module for advanced protection of user data and vital settings in the website database. Available in the PRO version.
85
  * Fixed: User Policies tabs are not switchable if a user role was declared with a hyphen instead of the underscore.
86
  * Fixed: A PHP warning while adding a network to the Black IP Access List from the Activity tab.
87
  * Fixed: An anti-spam false positive: some WordPress DB updates can't be completed.
 
88
 
89
  = 8.4 =
90
  * New: More flexible role-based GEO access policies.
101
  * Update: The Users tab has been renamed to Global and now is under the new User Policies admin menu.
102
  * Fixed: Switching to the English language in Cerber’s admin interface has no effect.
103
  * Fixed: Multiple notifications about a new version of the plugin in the WordPress dashboard.
 
104
 
105
  = 8.2 =
106
  * New: Automatic recovery of infected files. When the malware scanner detects changes in the core WordPress files and plugins, it automatically recovers them.
110
  * New: To make a website comply with GDPR, a cookie prefix can be set.
111
  * Update: The lockout notification settings are moved to the Notifications tab.
112
  * Update: The list of files to be scanned in Quick mode now also includes files with these extensions: phtm, phtml, phps, php2, php3, php4, php5, php6, php7.
 
113
 
114
  = 8.1 =
115
  * New: On a master website you can get a list of active plugins and available plugin updates on a slave website.
121
  * Fixed: The "Add to the Black List" button on the Activity log page doesn't work.
122
  * Fixed: When the "All suspicious activity" button is clicked on the Dashboard admin page, the "Subscribe" link on the Activity page doesn't work correctly.
123
  * Fixed: When you open an email report, the link to the list of deleted files during a malware scan doesn't work as expected.
 
124
 
125
  = 8.0 =
126
  * New: [Manage multiple WP Cerber instances from one dashboard](https://wpcerber.com/manage-multiple-websites/).
137
  * Update: A new Changelog section on the Tools page.
138
  * Update: Improved handling scheduled maintenance tasks on a multi-site WordPress installation.
139
  * Fixed: Several HTML markup errors on plugin admin pages.
 
140
 
141
  = 7.9.3 =
142
  * New: New settings for the Traffic Inspector firewall allow you to fine-tune its behavior. You can enable less or more restrictive firewall rules.
146
  * Update: The layout of the Activity and Live Traffic pages has been improved.
147
  * Bug fixed: The malware scanner wrongly prevents PHP files with few specific names in one particular location from being deleted after a manual scan or during the automatic malware removal.
148
  * Bug fixed: The number of email notifications might be incorrectly limited to one email per hour.
 
149
 
150
  = 7.9 =
151
  * New: The plugin monitors suspicious requests that cause 4xx and 5xx HTTP errors and blocks IP addresses that aggressively generate such requests.
155
  * Update: Multiple improvements to Traffic Inspector firewall algorithms. In short, the detection of obfuscated malicious SQL queries and injections has been improved.
156
  * Update: Improved handling of malformed requests to wp-cron.php.
157
  * Fix: The number of email notifications per hour can exceed the configured limit.
 
158
 
159
  = 7.8.5 =
160
  * New: A new set of heuristics algorithms for detecting obfuscated malicious JavaScript code.
166
  * Update: Improved handling the plugin settings in a buggy or misconfigured hosting environment that could cause the plugin to reset settings to their default values.
167
  * Update: Translations have been updated. Thanks to Francesco, Jos Knippen, Fredrik Näslund, Slobodan Ljubic and MARCELHAP.
168
  * Fix: Fixed an issue with saving settings on the Hardening tab: "Unable to get access to the file…"
 
169
 
170
  = 7.8 =
171
  * New: An ignore list for the malware scanner.
184
  * Update: Email reports for [scheduled malware scans](https://wpcerber.com/automated-recurring-malware-scans/) have been extended with useful performance numbers and a list of automatically deleted malicious files if you’ve enabled automatic malware removal and some files have been deleted.
185
  * Fix: A possible issue with uploading large JSON and CSV files. When Traffic Inspector scans uploaded files for malware payload, some JSON and CSV files might be erroneously identified as containing a malicious payload.
186
  * Fix: A possible Divi theme forms incompatibility. If you use the Divi theme (by Elegant Themes), you can come across a problem with submitting some forms.
 
187
 
188
  = 7.6 =
189
  * New: The quarantine has got a separate admin page in the WordPress dashboard which allows viewing deleted files, restoring or deleting them.
199
  * Update: A set of new malware signatures amd patterns have been added to detect malware submitted through a contact form as well as any HTTP request fields.
200
  * Update: Now the plugin inspects user sign ups (user registrations) on multisite WordPress installations and BuddyPress.
201
  * Update: The search for user activity, as well as enabling activity notifications, is improved.
 
202
 
203
  = 7.2 =
204
  * New: Monitoring new and changed files.
226
  * Update: Improved compatibility with WooCommerce, Formidable Forms, Gravity Forms and AJAX file upload.
227
  * Update: Any symbols other than letters, numbers, dashes and underscores are not permitted in Custom login URL anymore.
228
  * Bug fixed: The Safe antispam mode doesn’t work correctly on some website configurations. That may lead to false positives and erroneous spam form submission detection.
 
229
 
230
  = 6.5 =
231
  * New: A new, advanced initialization mode which reinforces overall security performance.
236
  * Update: In the Smart mode if a user is not logged in, all requests to the admin dashboard are logged.
237
  * Bug fixed: If a user tries to log in with an email address and an incorrect password, the "Invalid username" message is shown.
238
  * Bug fixed: On a multisite installation with websites in subdirectories a user activation link doesn't work.
 
239
 
240
  = 6.2 =
241
  * New: Protection against (DoS) attacks that exploit recently discovered vulnerability (CVE-2018-6389).
264
  * Improved compatibility with exotic hosting environments: now the plugin handles URLs with the MultiViews server option enabled.
265
  * Improved compatibility with caching plugins
266
  * Bug fixed: The plugin logs a logout event if the actual logout doesn't happen
 
267
 
268
  = 5.8.6 =
269
  * New: Regular expressions (REGEX) in the list of prohibited usernames.
270
  * New: Enable/disable weekly reports, a new setting to specify email addresses for weekly reports.
271
  * Improved compatibility with non-standard authentication processes, WooCommerce and exotic/outdated hosting environments.
272
  * Bug fixed: Some interface elements of WordPress Customizer might not work.
 
273
 
274
  = 5.8 =
275
  * New: Now the plugin will send a brief security report (activity for past seven days) to specified email addresses.
277
  * REST API: the deprecated rest_enabled filter is used for WordPress older than 4.7.
278
  * Bug fixed: After updating the plugin to the 5.7 version some disabled checkboxes (and corresponding disabled settings) are set to their default, enabled states.
279
  * Bug fixed: An IP address in the white access list may be locked out as a suspicious IP.
 
280
 
281
  = 5.7 =
282
  * New: Limit access to WordPress REST API for logged in users only.
285
  * New: User registration monitoring and activity logging functions has been improved.
286
  * Translations has been updated, thanks to Jon Knippen, Wojciech Górski and Francesco.
287
  * Bug fixed: Stop user enumeration via REST API doesn’t work on a multisite WordPress installation.
 
288
 
289
  = 5.5 =
290
  * New: White list for the WordPress anti-spam engine.
291
  * New: White list for REST API requests.
292
  * New: Disable access to user data via REST API and stop REST API user enumeration.
 
293
 
294
  = 5.2 =
295
  * Bug fixed: Hidden custom login URL may be discovered by using specially formatted URL.
357
 
358
  = 4.0 =
359
  * New: reCAPTCHA for WooCommerce forms. [How to set up reCAPTCHA](https://wpcerber.com/how-to-setup-recaptcha/).
360
+ * New: [IP Access Lists](https://wpcerber.com/using-ip-access-lists-to-protect-wordpress/) have got support for IP networks in three forms: ability to restrict access with IPv4 ranges, IPv4 CIDR notation and IPv4 subnets: A,B,C has been added.
361
  * New: Cerber can automatically detect an IP network of an intruder and suggest you to block entire network right from the Activity screen.
362
  * New: Norwegian translation added, thanks to [Eirik Vorland](https://www.facebook.com/KjellDaSensei).
363
  * Update: WP REST API is controlled by Access Lists. While REST API is blocked for the rest of the world, IP addresses from the White Access List can use WP REST API.
419
  * Fixed Bug: Custom login URL doesn't work without trailing slash.
420
  * Fixed Bug: Any request to wp-signup.php reveal hidden Custom login URL.
421
 
 
 
 
 
 
 
 
422
  = 1.8 =
423
  * New! added Hostname column for the Activity and Lockouts tabs.
424
  * New! added ability to write failed login attempts to the specified file or to the syslog file. Use it to protect site with fail2ban.
common.php CHANGED
@@ -270,8 +270,7 @@ function cerber_calculate_kpi($period = 1){
270
  // TODO: Add spam performance as percentage Denied / Allowed comments
271
 
272
  $stamp = time() - $period * 24 * 3600;
273
- $in = implode( ',', crb_get_activity_set( 'malicious' ) );
274
- //$unique_ip = $wpdb->get_var('SELECT COUNT(DISTINCT ip) FROM '. CERBER_LOG_TABLE .' WHERE activity IN ('.$in.') AND stamp > '.$stamp);
275
  $unique_ip = cerber_db_get_var( 'SELECT COUNT(DISTINCT ip) FROM ' . CERBER_LOG_TABLE . ' WHERE activity IN (' . $in . ') AND stamp > ' . $stamp );
276
 
277
  $kpi_list = array(
@@ -1227,7 +1226,7 @@ function cerber_get_uri_script() {
1227
  * @return bool|string An extension if it's found, false otherwise
1228
  */
1229
  function cerber_detect_exec_extension( $line, $extra = array() ) {
1230
- static $executable = array( 'php', 'phtm', 'phtml', 'phps', 'shtm', 'shtml', 'jsp', 'asp', 'aspx', 'exe', 'com', 'cgi', 'pl', 'py', 'pyc', 'pyo' );
1231
  static $not_exec = array( 'jpg', 'png', 'svg', 'css', 'txt' );
1232
 
1233
  if ( empty( $line ) || ! strrpos( $line, '.' ) ) {
@@ -1361,7 +1360,7 @@ function cerber_get_labels( $type = 'activity' ) {
1361
  // @since 4.9 // TODO 53 & 54 should be a cerber action?
1362
  $act[53] = __( 'Attempt to log in denied', 'wp-cerber' );
1363
  $act[54] = __( 'Attempt to register denied', 'wp-cerber' );
1364
- $act[55] = __( 'Probing for vulnerable PHP code', 'wp-cerber' );
1365
  $act[56] = __( 'Attempt to upload malicious file denied', 'wp-cerber' );
1366
  $act[57] = __( 'File upload denied', 'wp-cerber' );
1367
 
@@ -1428,19 +1427,32 @@ function cerber_get_labels( $type = 'activity' ) {
1428
  return $labels[ $type ];
1429
  }
1430
 
1431
- function crb_get_activity_set( $slice = 'malicious' ) {
 
 
 
1432
  switch ( $slice ) {
1433
  case 'malicious':
1434
- return array( 10, 11, 16, 17, 40, 50, 51, 52, 53, 54, 55, 56, 100 );
 
1435
  case 'black': // Like 'malicious' but will cause an IP lockout when hit the limit
1436
- return array( 16, 17, 40, 50, 51, 52, 55, 56, 100, 300 );
 
1437
  case 'suspicious': // Uses when an admin inspects logs
1438
- return array( 10, 11, 16, 17, 20, 40, 50, 51, 52, 53, 54, 55, 56, 100, 70, 71, 72, 73, 74, 75, 76, 300 );
 
1439
  case 'dashboard': // Important events for the plugin dashboard
1440
- return array( 1, 2, 5, 10, 11, 12, 16, 17, 18, 19, 40, 41, 42, 50, 51, 52, 53, 54, 55, 56, 72, 73, 74, 75, 76, 100, 300 );
 
 
 
1441
  }
1442
 
1443
- return array();
 
 
 
 
1444
  }
1445
 
1446
 
@@ -1457,7 +1469,7 @@ function cerber_get_reason( $reason_id = null ) {
1457
  $labels[705] = __( 'Limit on failed reCAPTCHA verifications is reached', 'wp-cerber' );
1458
  $labels[706] = __( 'Bot activity is detected', 'wp-cerber' );
1459
  $labels[707] = __( 'Multiple suspicious activities were detected', 'wp-cerber' );
1460
- $labels[708] = __( 'Probing for vulnerable PHP code', 'wp-cerber' );
1461
  $labels[709] = __( 'Malicious code detected', 'wp-cerber' );
1462
  $labels[710] = __( 'Attempt to upload a file with malicious code', 'wp-cerber' );
1463
 
@@ -1531,6 +1543,7 @@ function crb_admin_add_msg( $msg, $type = 'admin_message' ) {
1531
  function crb_clear_admin_msg(){
1532
  cerber_update_set( 'admin_notice', array() );
1533
  cerber_update_set( 'admin_message', array() );
 
1534
  }
1535
 
1536
  /*
@@ -2338,7 +2351,7 @@ function cerber_update_set( $key, $value, $id = null, $serialize = true, $expire
2338
  cerber_cache_set( $cache_key, $value, $expires - time() );
2339
  }
2340
 
2341
- if ( $serialize ) {
2342
  $value = serialize( $value );
2343
  }
2344
 
270
  // TODO: Add spam performance as percentage Denied / Allowed comments
271
 
272
  $stamp = time() - $period * 24 * 3600;
273
+ $in = crb_get_activity_set( 'malicious', true );
 
274
  $unique_ip = cerber_db_get_var( 'SELECT COUNT(DISTINCT ip) FROM ' . CERBER_LOG_TABLE . ' WHERE activity IN (' . $in . ') AND stamp > ' . $stamp );
275
 
276
  $kpi_list = array(
1226
  * @return bool|string An extension if it's found, false otherwise
1227
  */
1228
  function cerber_detect_exec_extension( $line, $extra = array() ) {
1229
+ static $executable = array( 'php', 'phtm', 'phtml', 'phps', 'shtm', 'shtml', 'jsp', 'asp', 'aspx', 'axd', 'exe', 'com', 'cgi', 'pl', 'py', 'pyc', 'pyo' );
1230
  static $not_exec = array( 'jpg', 'png', 'svg', 'css', 'txt' );
1231
 
1232
  if ( empty( $line ) || ! strrpos( $line, '.' ) ) {
1360
  // @since 4.9 // TODO 53 & 54 should be a cerber action?
1361
  $act[53] = __( 'Attempt to log in denied', 'wp-cerber' );
1362
  $act[54] = __( 'Attempt to register denied', 'wp-cerber' );
1363
+ $act[55] = __( 'Probing for vulnerable code', 'wp-cerber' );
1364
  $act[56] = __( 'Attempt to upload malicious file denied', 'wp-cerber' );
1365
  $act[57] = __( 'File upload denied', 'wp-cerber' );
1366
 
1427
  return $labels[ $type ];
1428
  }
1429
 
1430
+ function crb_get_activity_set( $slice = 'malicious', $implode = false ) {
1431
+
1432
+ $ret = array();
1433
+
1434
  switch ( $slice ) {
1435
  case 'malicious':
1436
+ $ret = array( 16, 17, 40, 50, 51, 52, 53, 54, 55, 56, 100 );
1437
+ break;
1438
  case 'black': // Like 'malicious' but will cause an IP lockout when hit the limit
1439
+ $ret = array( 16, 17, 40, 50, 51, 52, 55, 56, 100, 300 );
1440
+ break;
1441
  case 'suspicious': // Uses when an admin inspects logs
1442
+ $ret = array( 10, 11, 16, 17, 20, 40, 50, 51, 52, 53, 54, 55, 56, 100, 70, 71, 72, 73, 74, 75, 76, 300 );
1443
+ break;
1444
  case 'dashboard': // Important events for the plugin dashboard
1445
+ $ret = array( 1, 2, 5, 10, 11, 12, 16, 17, 18, 19, 40, 41, 42, 50, 51, 52, 53, 54, 55, 56, 72, 73, 74, 75, 76, 100, 300 );
1446
+ break;
1447
+ case 'blocked': // IP or subnet was blocked
1448
+ $ret = array( 10, 11 );
1449
  }
1450
 
1451
+ if ( $implode ) {
1452
+ return implode( ',', $ret );
1453
+ }
1454
+
1455
+ return $ret;
1456
  }
1457
 
1458
 
1469
  $labels[705] = __( 'Limit on failed reCAPTCHA verifications is reached', 'wp-cerber' );
1470
  $labels[706] = __( 'Bot activity is detected', 'wp-cerber' );
1471
  $labels[707] = __( 'Multiple suspicious activities were detected', 'wp-cerber' );
1472
+ $labels[708] = __( 'Probing for vulnerable code', 'wp-cerber' );
1473
  $labels[709] = __( 'Malicious code detected', 'wp-cerber' );
1474
  $labels[710] = __( 'Attempt to upload a file with malicious code', 'wp-cerber' );
1475
 
1543
  function crb_clear_admin_msg(){
1544
  cerber_update_set( 'admin_notice', array() );
1545
  cerber_update_set( 'admin_message', array() );
1546
+ cerber_update_set( 'cerber_admin_wide', '' );
1547
  }
1548
 
1549
  /*
2351
  cerber_cache_set( $cache_key, $value, $expires - time() );
2352
  }
2353
 
2354
+ if ( $serialize && ! is_string( $value ) ) {
2355
  $value = serialize( $value );
2356
  }
2357
 
dashboard.php CHANGED
@@ -627,9 +627,20 @@ function cerber_admin_request( $is_post = false ) {
627
  $remove_args[] = 'do_this';
628
  break;
629
  case 'terminate_session':
630
- crb_admin_kill( crb_array_get( $get, 'id', null, '\w+' ), crb_array_get( $get, 'user_id' ) );
631
  $remove_args = array( 'user_id', 'id' );
632
  break;
 
 
 
 
 
 
 
 
 
 
 
633
  case 'export':
634
  if ( nexus_is_valid_request() ) {
635
  return crb_admin_get_tokenized_link();
@@ -708,17 +719,6 @@ function cerber_admin_request( $is_post = false ) {
708
  case 'add_slave':
709
  nexus_add_slave( crb_array_get( $post, 'new_slave_token' ) );
710
  break;
711
- case 'crb_manage_sessions':
712
- if ( cerber_get_bulk_action() == 'bulk_session_terminate' ) {
713
- crb_admin_kill( crb_array_get( $post, 'ids', array(), '\w+' ) );
714
- }
715
- elseif ( cerber_get_bulk_action() == 'bulk_block_user' ) {
716
- if ( ( $sids = crb_array_get( $post, 'ids', array(), '\w+' ) )
717
- && ( $users = cerber_db_get_col( 'SELECT user_id FROM ' . cerber_get_db_prefix() . CERBER_USS_TABLE . ' WHERE wp_session_token IN ("' . implode( '","', $sids ) . '")' ) ) ) {
718
- array_walk( $users, 'cerber_block_user' );
719
- }
720
- }
721
- break;
722
  case 'install_key':
723
  $lic = preg_replace( "/[^A-Z0-9]/i", '', crb_array_get( $post, 'cerber_license' ) );
724
  if ( ( strlen( $lic ) == LAB_KEY_LENGTH ) || empty( $lic ) ) {
@@ -1555,7 +1555,7 @@ function cerber_user_extra_view( $user_id, $context = 'activity' ) {
1555
  $user_info[] = array( __( 'Last seen', 'wp-cerber' ), $seen );
1556
  }
1557
 
1558
- if ( $usn = cerber_db_get_var( 'SELECT count(user_id) FROM ' . cerber_get_db_prefix() . CERBER_USS_TABLE . ' WHERE user_id = ' . $user_id ) ) {
1559
  $user_info[] = array( __( 'Active sessions', 'wp-cerber' ), '<a href="' . cerber_admin_link( 'sessions', array( 'filter_user' => $user_id ) ) . '">' . $usn . '</a>');
1560
  }
1561
 
@@ -2136,7 +2136,7 @@ function cerber_show_general_help() {
2136
 
2137
  <p><a href="https://wpcerber.com/antispam-exception-for-specific-http-request/" target="_blank">Configuring exceptions for the antispam engine</a></p>
2138
 
2139
- <p><a href="https://wpcerber.com/wordpress-probing-for-vulnerable-php-code/" target="_blank">I’m getting "Probing for vulnerable PHP code"</a></p>
2140
 
2141
  <p><a href="https://wpcerber.com/firewall-http-requests-are-being-blocked/" target="_blank">Some legitimate HTTP requests are being blocked</a></p>
2142
 
@@ -2345,7 +2345,6 @@ function cerber_show_dashboard() {
2345
  echo '<div>' . $kpi_show . '<p style="text-align: right; margin: 0;">' . __( 'in the last 24 hours', 'wp-cerber' ) . '</p></div>';
2346
 
2347
  $total = cerber_db_get_var( 'SELECT count(ip) FROM ' . CERBER_LOG_TABLE );
2348
- //if ($total > $num) $l1 = 'Last ' . $num . ' suspect events are displayed';
2349
 
2350
  $nav_links = ( $total ) ? crb_admin_quick_nav( 'dashboard' ) : '';
2351
 
@@ -2518,15 +2517,20 @@ function cerber_show_admin_notice(){
2518
  }
2519
  }
2520
 
 
 
 
 
 
2521
  crb_clear_admin_msg();
2522
 
2523
  if ( $cerber_shown || ! cerber_is_admin_page() ) {
2524
  return;
2525
  }
2526
 
2527
- if ( $notice = get_site_option( 'cerber_admin_info' ) ) { // need to be dismissed manually
 
2528
  $cerber_shown = true;
2529
- echo '<div class="updated cerber-msg" style="overflow: auto;"><p>' . $notice . '</p></div>';
2530
  return;
2531
  }
2532
 
@@ -2869,7 +2873,7 @@ function cerber_admin_footer() {
2869
 
2870
  crb_load_wp_js();
2871
 
2872
- // Add a button on a user profile page
2873
  $uid = 0;
2874
  if ( defined( 'IS_PROFILE_PAGE' ) && IS_PROFILE_PAGE ) {
2875
  $uid = get_current_user_id();
@@ -2878,10 +2882,13 @@ function cerber_admin_footer() {
2878
  $uid = absint( $_GET['user_id'] );
2879
  }
2880
  if ( $uid ) {
2881
- $user_link = '<a href="' . cerber_admin_link( 'activity', array( 'filter_user' => $uid ) ) . '" class="page-title-action">' . __( 'View Activity', 'wp-cerber' ) . '</a>';
 
 
 
2882
  ?>
2883
  <script>
2884
- document.querySelector('#profile-page .wp-heading-inline').insertAdjacentHTML('afterend','<?php echo $user_link; ?>');
2885
  </script>
2886
  <?php
2887
  }
@@ -3406,7 +3413,7 @@ function cerber_geo_rule_set() {
3406
 
3407
  $rules = array(
3408
  'geo_login' => array(
3409
- 'name' => __( 'Log in to the website', 'wp-cerber' ),
3410
  'multi_set' => $set,
3411
  'multi_top' => __( 'All Users' )
3412
  ),
@@ -3663,13 +3670,17 @@ function cerber_show_traffic( $args = array(), $echo = true ) {
3663
 
3664
  if ( $rows ) {
3665
 
3666
- $acf = ( $filter_act ) ? ' log.activity IN (' . $filter_act . ')' : ' log.activity NOT IN (10,11)';
3667
- //$events = cerber_db_get_results( 'SELECT log.session_id,log.* FROM ' . CERBER_LOG_TABLE . ' log WHERE log.session_id IN ("' . implode( '", "', array_keys( $rows ) ) . '" )', MYSQL_FETCH_OBJECT_K );
3668
- $events = cerber_db_get_results( 'SELECT log.session_id,log.* FROM ' . CERBER_LOG_TABLE . ' log WHERE log.session_id IN ("' . implode( '", "', array_keys( $rows ) ) . '" ) AND ' . $acf, MYSQL_FETCH_OBJECT_K );
3669
- $roles = wp_roles()->roles;
3670
- $users = array();
3671
- $acl = array();
3672
- $block = array();
 
 
 
 
3673
  $wp_objects = array();
3674
 
3675
  foreach ( $rows as $row ) {
@@ -3805,16 +3816,14 @@ function cerber_show_traffic( $args = array(), $echo = true ) {
3805
 
3806
  $activity = '';
3807
  if ( ! empty( $events[ $row->session_id ] ) ) {
 
 
3808
 
3809
- $a = $events[ $row->session_id ];
3810
- //$activity = '<p><a href="' . $activity_url . '&filter_ip=' . $row->ip . '">' . $labels[ $a->activity ] . '</a>';
3811
- $activity = '<p><a href="' . $base_url . '&filter_activity=' . $a->activity . '" data-no-js="1">' . $labels[ $a->activity ] . '</a>';
3812
-
3813
- $ad = explode( '|', $a->details );
3814
- if ( ! empty( $ad[0] ) ) {
3815
- $activity .= ' <span class = "crb-log-status crb-status-' . $ad[0] . '">' . $status_labels[ $ad[0] ] . '</span>';
3816
  }
3817
-
3818
  }
3819
 
3820
  if ( $row->processing ) {
@@ -4303,7 +4312,7 @@ function cerber_traffic_query( $args = array() ) {
4303
  if ( $q->filter_set ) {
4304
  switch ( $q->filter_set ) {
4305
  case 1:
4306
- $activity = implode( ',', crb_get_activity_set( 'suspicious' ) );
4307
  break;
4308
  }
4309
  }
@@ -4602,12 +4611,17 @@ function cerber_get_admin_page_config( $page = '' ) {
4602
  'notifications' => array( 'bx-bell', __( 'Notifications', 'wp-cerber' ) ),
4603
  ),
4604
  'tab_filter' => function ( $tabs ) {
4605
- $blocked = cerber_blocked_num();
4606
- $acl = cerber_db_get_var( 'SELECT count(ip) FROM ' . CERBER_ACL_TABLE . ' WHERE acl_slice = 0' );
4607
- $uss = cerber_db_get_var( 'SELECT count(user_id) FROM ' . cerber_get_db_prefix() . CERBER_USS_TABLE );
 
 
 
 
 
4608
  $tabs['sessions'][1] .= ' <sup>' . $uss . '</sup>';
4609
  $tabs['lockouts'][1] .= ' <sup>' . $blocked . '</sup>';
4610
- $tabs['acl'][1] .= ' <sup>' . $acl . '</sup>';
4611
 
4612
  return $tabs;
4613
  },
627
  $remove_args[] = 'do_this';
628
  break;
629
  case 'terminate_session':
630
+ crb_sessions_kill( crb_array_get( $get, 'id', null, '\w+' ), crb_array_get( $get, 'user_id' ) );
631
  $remove_args = array( 'user_id', 'id' );
632
  break;
633
+ case 'crb_manage_sessions':
634
+ if ( cerber_get_bulk_action() == 'bulk_session_terminate' ) {
635
+ crb_sessions_kill( crb_array_get( $get, 'ids', array(), '\w+' ) );
636
+ }
637
+ elseif ( cerber_get_bulk_action() == 'bulk_block_user' ) {
638
+ if ( ( $sids = crb_array_get( $get, 'ids', array(), '\w+' ) )
639
+ && ( $users = cerber_db_get_col( 'SELECT user_id FROM ' . cerber_get_db_prefix() . CERBER_USS_TABLE . ' WHERE wp_session_token IN ("' . implode( '","', $sids ) . '")' ) ) ) {
640
+ array_walk( $users, 'cerber_block_user' );
641
+ }
642
+ }
643
+ break;
644
  case 'export':
645
  if ( nexus_is_valid_request() ) {
646
  return crb_admin_get_tokenized_link();
719
  case 'add_slave':
720
  nexus_add_slave( crb_array_get( $post, 'new_slave_token' ) );
721
  break;
 
 
 
 
 
 
 
 
 
 
 
722
  case 'install_key':
723
  $lic = preg_replace( "/[^A-Z0-9]/i", '', crb_array_get( $post, 'cerber_license' ) );
724
  if ( ( strlen( $lic ) == LAB_KEY_LENGTH ) || empty( $lic ) ) {
1555
  $user_info[] = array( __( 'Last seen', 'wp-cerber' ), $seen );
1556
  }
1557
 
1558
+ if ( $usn = crb_sessions_get_num( $user_id ) ) {
1559
  $user_info[] = array( __( 'Active sessions', 'wp-cerber' ), '<a href="' . cerber_admin_link( 'sessions', array( 'filter_user' => $user_id ) ) . '">' . $usn . '</a>');
1560
  }
1561
 
2136
 
2137
  <p><a href="https://wpcerber.com/antispam-exception-for-specific-http-request/" target="_blank">Configuring exceptions for the antispam engine</a></p>
2138
 
2139
+ <p><a href="https://wpcerber.com/wordpress-probing-for-vulnerable-php-code/" target="_blank">I’m getting "Probing for vulnerable code"</a></p>
2140
 
2141
  <p><a href="https://wpcerber.com/firewall-http-requests-are-being-blocked/" target="_blank">Some legitimate HTTP requests are being blocked</a></p>
2142
 
2345
  echo '<div>' . $kpi_show . '<p style="text-align: right; margin: 0;">' . __( 'in the last 24 hours', 'wp-cerber' ) . '</p></div>';
2346
 
2347
  $total = cerber_db_get_var( 'SELECT count(ip) FROM ' . CERBER_LOG_TABLE );
 
2348
 
2349
  $nav_links = ( $total ) ? crb_admin_quick_nav( 'dashboard' ) : '';
2350
 
2517
  }
2518
  }
2519
 
2520
+ if ( $msg = cerber_get_set( 'cerber_admin_wide', null, false ) ) {
2521
+ crb_show_admin_announcement( $msg, false );
2522
+ $cerber_shown = true;
2523
+ }
2524
+
2525
  crb_clear_admin_msg();
2526
 
2527
  if ( $cerber_shown || ! cerber_is_admin_page() ) {
2528
  return;
2529
  }
2530
 
2531
+ if ( $msg = get_site_option( 'cerber_admin_info' ) ) {
2532
+ crb_show_admin_announcement( $msg );
2533
  $cerber_shown = true;
 
2534
  return;
2535
  }
2536
 
2873
 
2874
  crb_load_wp_js();
2875
 
2876
+ // Add buttons to the user profile page
2877
  $uid = 0;
2878
  if ( defined( 'IS_PROFILE_PAGE' ) && IS_PROFILE_PAGE ) {
2879
  $uid = get_current_user_id();
2882
  $uid = absint( $_GET['user_id'] );
2883
  }
2884
  if ( $uid ) {
2885
+ $user_links = '<a href="' . cerber_admin_link( 'activity', array( 'filter_user' => $uid ) ) . '" class="page-title-action">' . __( 'View Activity', 'wp-cerber' ) . '</a>';
2886
+ if ( $uss = crb_sessions_get_num( $uid ) ) {
2887
+ $user_links .= '<a href="' . cerber_admin_link( 'sessions', array( 'filter_user' => $uid ) ) . '" class="page-title-action">' . __( 'Sessions', 'wp-cerber' ) . ' ' . $uss . '</a>';
2888
+ }
2889
  ?>
2890
  <script>
2891
+ document.querySelector('#profile-page .wp-heading-inline').insertAdjacentHTML('afterend','<?php echo $user_links; ?>');
2892
  </script>
2893
  <?php
2894
  }
3413
 
3414
  $rules = array(
3415
  'geo_login' => array(
3416
+ 'name' => __( 'Log into the website', 'wp-cerber' ),
3417
  'multi_set' => $set,
3418
  'multi_top' => __( 'All Users' )
3419
  ),
3670
 
3671
  if ( $rows ) {
3672
 
3673
+ $events = array();
3674
+ if ( $act_events = cerber_db_get_results( 'SELECT * FROM ' . CERBER_LOG_TABLE . ' WHERE session_id IN ("' . implode( '", "', array_keys( $rows ) ) . '" ) ORDER BY stamp DESC', MYSQL_FETCH_OBJECT ) ) {
3675
+ foreach ( $act_events as $ac ) {
3676
+ $events[ $ac->session_id ][] = $ac;
3677
+ }
3678
+ }
3679
+
3680
+ $roles = wp_roles()->roles;
3681
+ $users = array();
3682
+ $acl = array();
3683
+ $block = array();
3684
  $wp_objects = array();
3685
 
3686
  foreach ( $rows as $row ) {
3816
 
3817
  $activity = '';
3818
  if ( ! empty( $events[ $row->session_id ] ) ) {
3819
+ foreach ( $events[ $row->session_id ] as $a ) {
3820
+ $activity .= '<p><a href="' . $base_url . '&filter_activity=' . $a->activity . '" data-no-js="1">' . $labels[ $a->activity ] . '</a>';
3821
 
3822
+ $ad = explode( '|', $a->details );
3823
+ if ( ! empty( $ad[0] ) && $ad[0] != 500 ) { // 500 Whitelisted
3824
+ $activity .= ' &nbsp;<span class = "crb-log-status crb-status-' . $ad[0] . '">' . $status_labels[ $ad[0] ] . '</span>';
3825
+ }
 
 
 
3826
  }
 
3827
  }
3828
 
3829
  if ( $row->processing ) {
4312
  if ( $q->filter_set ) {
4313
  switch ( $q->filter_set ) {
4314
  case 1:
4315
+ $activity = crb_get_activity_set( 'suspicious', true );
4316
  break;
4317
  }
4318
  }
4611
  'notifications' => array( 'bx-bell', __( 'Notifications', 'wp-cerber' ) ),
4612
  ),
4613
  'tab_filter' => function ( $tabs ) {
4614
+ crb_del_expired_blocks();
4615
+ $blocked = cerber_blocked_num();
4616
+ $acl = cerber_db_get_var( 'SELECT COUNT(ip) FROM ' . CERBER_ACL_TABLE . ' WHERE acl_slice = 0' );
4617
+ crb_sessions_del_expired();
4618
+ $uss = crb_sessions_get_num();
4619
+ if ( ! $uss ) {
4620
+ cerber_bg_task_add( 'crb_sessions_sync_all' );
4621
+ }
4622
  $tabs['sessions'][1] .= ' <sup>' . $uss . '</sup>';
4623
  $tabs['lockouts'][1] .= ' <sup>' . $blocked . '</sup>';
4624
+ $tabs['acl'][1] .= ' <sup>' . $acl . '</sup>';
4625
 
4626
  return $tabs;
4627
  },
languages/wp-cerber-nl_NL.mo CHANGED
Binary file
languages/wp-cerber-nl_NL.po CHANGED
@@ -8,219 +8,219 @@ msgstr ""
8
  "Language: nl\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
 
11
- #: ../settings.php:139
12
  msgid "Limit login attempts"
13
  msgstr "Inlogpogingen beperken"
14
 
15
- #: ../settings.php:146
16
  msgid "Lockout duration"
17
  msgstr "Duur uitsluiting"
18
 
19
- #: ../settings.php:147 ../settings.php:249
20
  msgid "minutes"
21
  msgstr "minuten"
22
 
23
- #: ../settings.php:151
24
  msgid "Aggressive lockout"
25
  msgstr "Agressieve uitsluiting"
26
 
27
- #: ../settings.php:219
28
  msgid "Site connection"
29
  msgstr "Websiteverbinding"
30
 
31
- #: ../settings.php:162
32
  msgid "Proactive security rules"
33
  msgstr "Proactieve beveiligingsregels"
34
 
35
- #: ../settings.php:166
36
  msgid "Block subnet"
37
  msgstr "Subnet blokkeren"
38
 
39
- #: ../settings.php:181
40
  msgid "Request wp-login.php"
41
  msgstr "Verzoek wp-login.php"
42
 
43
- #: ../settings.php:182
44
  msgid "Immediately block IP after any request to wp-login.php"
45
  msgstr "IP meteen blokkeren bij verzoeken aan wp-login.php"
46
 
47
- #: ../settings.php:197
48
  msgid "Custom login page"
49
  msgstr "Aangepaste inlogpagina"
50
 
51
- #: ../settings.php:201
52
  msgid "Custom login URL"
53
  msgstr "Aangepaste inlog-URL"
54
 
55
- #: ../settings.php:202
56
  msgid "must not overlap with the existing pages or posts slug"
57
  msgstr "mag niet overlappen met bestaande pagina's of post slugs"
58
 
59
- #: ../settings.php:209
60
  msgid "Disable wp-login.php"
61
  msgstr "Wp-login.php uitschakelen"
62
 
63
- #: ../settings.php:210
64
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
65
  msgstr "Directe toegang tot wp-login.php blokkeren en HTTP 404 Not Found Error teruggeven"
66
 
67
- #: ../dashboard.php:1738 ../settings.php:233
68
  msgid "Citadel mode"
69
  msgstr "Citadelstand"
70
 
71
- #: ../settings.php:243
72
  msgid "Threshold"
73
  msgstr "Drempelwaarde"
74
 
75
- #: ../settings.php:248 ../cerber-scanner.php:3958
76
  msgid "Duration"
77
  msgstr "Duur"
78
 
79
- #: ../dashboard.php:4564 ../settings.php:254
80
  msgid "Notifications"
81
  msgstr "Meldingen"
82
 
83
- #: ../settings.php:256
84
  msgid "Send notification to admin email"
85
  msgstr "Melding versturen naar admin e-mailadres"
86
 
87
- #: ../dashboard.php:4561 ../cerber-tools.php:38 ../cerber-tools.php:47
88
  msgid "Access Lists"
89
  msgstr "Toegangslijsten"
90
 
91
- #: ../dashboard.php:1779 ../dashboard.php:2327 ../dashboard.php:4557 ../cerber-
92
- #: load.php:4823 ../cerber-users.php:1139 ../settings.php:266
93
  msgid "Activity"
94
  msgstr "Activiteit"
95
 
96
- #: ../dashboard.php:4559
97
  msgid "Lockouts"
98
  msgstr "Uitsluitingen"
99
 
100
- #: ../dashboard.php:191 ../cerber-load.php:4832
101
  msgid "IP"
102
  msgstr "IP"
103
 
104
- #: ../dashboard.php:834 ../dashboard.php:1082 ../dashboard.php:3550 ../dashboard.
105
- #: php:3974
106
  msgid "Date"
107
  msgstr "Datum"
108
 
109
- #: ../dashboard.php:837 ../dashboard.php:1084 ../dashboard.php:3979
110
  msgid "Local User"
111
  msgstr "Lokale gebruiker"
112
 
113
- #: ../cerber-load.php:4840
114
  msgid "Username used"
115
  msgstr "Toegepaste gebruikersnaam"
116
 
117
- #: ../dashboard.php:212
118
  msgid "Showing last %d records from %d"
119
  msgstr "Laatste %d records van %d"
120
 
121
- #: ../common.php:1296
122
  msgid "Logged in"
123
  msgstr "Ingelogd"
124
 
125
- #: ../common.php:1297
126
  msgid "Logged out"
127
  msgstr "Uitgelogd"
128
 
129
- #: ../common.php:1298
130
  msgid "Login failed"
131
  msgstr "Inloggen mislukt"
132
 
133
- #: ../dashboard.php:950 ../common.php:1301
134
  msgid "IP blocked"
135
  msgstr "IP geblokkeerd"
136
 
137
- #: ../common.php:1305
138
  msgid "Citadel activated!"
139
  msgstr "Citadelstand geactiveerd!"
140
 
141
- #: ../dashboard.php:1349 ../dashboard.php:1385 ../dashboard.php:3762 ../common.
142
- #: php:1359
143
  msgid "Locked out"
144
  msgstr "Buitengesloten"
145
 
146
- #: ../common.php:1361
147
  msgid "IP blacklisted"
148
  msgstr "IP uitgesloten"
149
 
150
- #: ../common.php:1318
151
  msgid "Password changed"
152
  msgstr "Wachtwoord veranderd"
153
 
154
- #: ../dashboard.php:186 ../dashboard.php:302
155
  msgid "Remove"
156
  msgstr "Verwijderen"
157
 
158
- #: ../dashboard.php:563
159
  msgid "Lockout for %s was removed"
160
  msgstr "Uitsluiting voor %s is verwijderd"
161
 
162
- #: ../dashboard.php:250 ../dashboard.php:1341 ../dashboard.php:1378 ../dashboard.
163
- #: php:1736 ../dashboard.php:3754 ../cerber-load.php:5119
164
  msgid "White IP Access List"
165
  msgstr "Toegelaten IP-adressen"
166
 
167
- #: ../dashboard.php:253 ../dashboard.php:1344 ../dashboard.php:1381 ../dashboard.
168
- #: php:1737 ../dashboard.php:3757
169
  msgid "Black IP Access List"
170
  msgstr "Uitgesloten IP-adressen"
171
 
172
- #: ../dashboard.php:308
173
  msgid "List is empty"
174
  msgstr "Lijst is leeg"
175
 
176
- #: ../cerber-load.php:4096
177
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
178
  msgstr "Citadelstand geactiveerd na %d mislukte inlogpogingen binnen %d minuten."
179
 
180
- #: ../dashboard.php:2485 ../dashboard.php:2872
181
  msgid "View Activity"
182
  msgstr "Activiteit bekijken"
183
 
184
- #: ../dashboard.php:4625 ../dashboard.php:4686 ../cerber-tools.php:37 ../cerber-
185
- #: tools.php:46 ../nexus/cerber-nexus.php:93
186
  msgid "Settings"
187
  msgstr "Instellingen"
188
 
189
- #: ../dashboard.php:1586
190
  msgid "Last login"
191
  msgstr "Laatst ingelogd"
192
 
193
- #: ../dashboard.php:1619 ../dashboard.php:1710 ../dashboard.php:1759 ../common.
194
- #: php:1575 ../nexus/cerber-slave-list.php:344
195
  msgid "Never"
196
  msgstr "Nooit"
197
 
198
- #: ../dashboard.php:2373 ../dashboard.php:5025 ../cerber-scanner.php:5739 ..
199
- #: /cerber-scanner.php:5900
200
  msgid "Are you sure?"
201
  msgstr "Weet je het zeker?"
202
 
203
- #: ../dashboard.php:2144 ../settings.php:220
204
  msgid "My site is behind a reverse proxy"
205
  msgstr "Mijn website draait achter een reverse proxy"
206
 
207
- #: ../settings.php:163
208
  msgid "Make your protection smarter!"
209
  msgstr "Maak je bescherming slimmer!"
210
 
211
- #: ../settings.php:116
212
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
213
  msgstr "Schakel Permalinks in om deze functionaliteit te gebruiken. Stel de Permalinks instelling in op iets anders dan Standaard."
214
 
215
- #: ../dashboard.php:4560
216
  msgid "Main Settings"
217
  msgstr "Hoofdinstellingen"
218
 
219
- #: ../dashboard.php:4825
220
  msgid "Help"
221
  msgstr "Hulp"
222
 
223
- #: ../admin/cerber-settings.php:359
224
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
225
  msgstr "Uitsluiting verlengen naar %s uur na %s uitsluitingen in de afgelopen %s uur"
226
 
@@ -234,84 +234,84 @@ msgid_plural "You have %d attempts remaining."
234
  msgstr[0] "Slechts één inlogpoging resterend!"
235
  msgstr[1] "%s inlogpogingen resterend."
236
 
237
- #: ../dashboard.php:1112
238
  msgid "No activity has been logged."
239
  msgstr "Geen activiteit waargenomen."
240
 
241
- #: ../dashboard.php:194 ../cerber-users.php:972
242
  msgid "Expires"
243
  msgstr "Verloopt"
244
 
245
- #: ../dashboard.php:218
246
  msgid "No lockouts at the moment. The sky is clear."
247
  msgstr "Momenteel geen uitsluitingen."
248
 
249
- #: ../dashboard.php:260
250
  msgid "Your IP"
251
  msgstr "Jouw IP"
252
 
253
- #: ../cerber-load.php:4097
254
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
255
  msgstr "Laatste mislukte inlogpoging was op %s vanaf IP %s op gebruiker %s."
256
 
257
- #: ../cerber-load.php:5096
258
  msgid "Can't activate WP Cerber due to a database error."
259
  msgstr "Kan WP Cerber niet activeren door een fout in de database."
260
 
261
- #: ../admin/cerber-settings.php:367
262
  msgid "Notify admin if the number of active lockouts above"
263
  msgstr "Stuur admin een melding bij meer uitsluitingen dan"
264
 
265
- #: ../settings.php:270 ../settings.php:276 ../settings.php:789 ../settings.php:
266
- #: 794 ../settings.php:859 ../settings.php:1051
267
  msgid "days"
268
  msgstr "dagen"
269
 
270
- #: ../dashboard.php:1676
271
  msgid "Cerber Quick View"
272
  msgstr "Cerber Quick View"
273
 
274
- #: ../dashboard.php:214
275
  msgid "Hint"
276
  msgstr "Tip"
277
 
278
- #: ../dashboard.php:214
279
  msgid "To view activity, click on the IP"
280
  msgstr "Klik het IP-adres om activiteit in te zien"
281
 
282
- #: ../settings.php:167
283
  msgid "Always block entire subnet Class C of intruders IP"
284
  msgstr "Blokkeer altijd gehele IP Class C subnet van aanvaller"
285
 
286
- #: ../admin/cerber-settings.php:372 ../settings.php:260
287
  msgid "Click to send test"
288
  msgstr "Klik om test te verzenden"
289
 
290
- #: ../admin/cerber-settings.php:652 ../admin/cerber-settings.php:653
291
  msgid "Attention! You have changed the login URL! The new login URL is"
292
  msgstr "Let op! Je hebt de inlog-URL veranderd. De nieuwe inlog-URL is"
293
 
294
- #: ../dashboard.php:1585
295
  msgid "Comments"
296
  msgstr "Reacties"
297
 
298
- #: ../cerber-load.php:4098 ../cerber-load.php:4864
299
  msgid "View activity in dashboard"
300
  msgstr "Activiteiten bekijken in dashboard"
301
 
302
- #: ../cerber-load.php:4127
303
  msgid "Number of active lockouts"
304
  msgstr "Aantal actieve uitsluitingen"
305
 
306
- #: ../cerber-load.php:4131
307
  msgid "View lockouts in dashboard"
308
  msgstr "Uitsluitingen bekijken in dashboard"
309
 
310
- #: ../cerber-load.php:4219
311
  msgid "This message was sent by"
312
  msgstr "Dit bericht is verzonden door"
313
 
314
- #: ../dashboard.php:82 ../dashboard.php:4718
315
  msgid "Tools"
316
  msgstr "Gereedschap"
317
 
@@ -331,264 +331,252 @@ msgstr "Wat wil je exporteren?"
331
  msgid "Download file"
332
  msgstr "Bestand downloaden"
333
 
334
- #: ../cerber-tools.php:41
335
  msgid "Import settings from the file"
336
  msgstr "Instellingen importeren van bestand"
337
 
338
- #: ../cerber-tools.php:42
339
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
340
  msgstr "Onderstaande knop laadt een bestand dat bestaande instellingen overschrijft."
341
 
342
- #: ../cerber-tools.php:43
343
  msgid "Select file to import."
344
  msgstr "Kies bestand om te importeren."
345
 
346
- #: ../cerber-tools.php:43 ../cerber-scanner.php:4106
347
  msgid "Maximum upload file size: %s."
348
  msgstr "Maximum bestandsgrootte: %s."
349
 
350
- #: ../cerber-tools.php:46
351
  msgid "What do you want to import?"
352
  msgstr "Wat wil je importeren?"
353
 
354
- #: ../cerber-tools.php:48 ../cerber-scanner.php:4109
355
  msgid "Upload file"
356
  msgstr "Bestand uploaden"
357
 
358
- #: ../cerber-tools.php:100
359
  msgid "No file was uploaded or file is corrupted"
360
  msgstr "Geen bestand geüpload of bestand is beschadigd"
361
 
362
- #: ../cerber-tools.php:147
363
  msgid "Settings has imported successfully from"
364
  msgstr "Instellingen geïmporteerd van"
365
 
366
- #: ../cerber-tools.php:154
367
  msgid "Error while parsing file"
368
  msgstr "Fout bij verwerken bestand"
369
 
370
- #: ../dashboard.php:192 ../dashboard.php:1080
371
  msgid "Hostname"
372
  msgstr "Hostnaam"
373
 
374
- #: ../dashboard.php:500
375
  msgid "unknown"
376
  msgstr "onbekend"
377
 
378
- #: ../dashboard.php:1715 ../dashboard.php:1745
379
  msgid "active"
380
  msgstr "actief"
381
 
382
- #: ../dashboard.php:1715
383
  msgid "deactivate"
384
  msgstr "deactiveren"
385
 
386
- #: ../dashboard.php:1719
387
  msgid "not active"
388
  msgstr "niet actief"
389
 
390
- #: ../dashboard.php:1722 ../dashboard.php:1740
391
  msgid "disabled"
392
  msgstr "gedeactiveerd"
393
 
394
- #: ../dashboard.php:1728
395
  msgid "failed attempts"
396
  msgstr "mislukte pogingen"
397
 
398
- #: ../dashboard.php:1728 ../dashboard.php:1729
399
  msgid "in 24 hours"
400
  msgstr "in 24 uur"
401
 
402
- #: ../dashboard.php:1728 ../dashboard.php:1729
403
  msgid "view all"
404
  msgstr "bekijk alles"
405
 
406
- #: ../dashboard.php:1729
407
  msgid "lockouts"
408
  msgstr "uitsluitingen"
409
 
410
- #: ../dashboard.php:1731
411
  msgid "Lockouts at the moment"
412
  msgstr "Actuele uitsluitingen"
413
 
414
- #: ../dashboard.php:1732
415
  msgid "Last lockout"
416
  msgstr "Recente uitsluiting"
417
 
418
- #: ../dashboard.php:1736 ../dashboard.php:1737 ../dashboard.php:2663
419
  msgid "entry"
420
  msgid_plural "entries"
421
  msgstr[0] "item"
422
  msgstr[1] "items"
423
 
424
- #: ../dashboard.php:2368
425
- msgid "Confused about some settings?"
426
- msgstr "Wil je meer weten over de instellingen?"
427
-
428
- #: ../dashboard.php:2369
429
- msgid "You can easily load default recommended settings using button below"
430
- msgstr "Met onderstaande knop laad je de aanbevolen instellingen"
431
-
432
- #: ../dashboard.php:2371
433
  msgid "Load default settings"
434
  msgstr "Aanbevolen instellingen laden"
435
 
436
- #: ../dashboard.php:2379
437
- msgid "doesn't affect Custom login URL and Access Lists"
438
- msgstr "heeft geen invloed op Aangepaste inlog-URL en Toegangslijsten"
439
-
440
- #: ../settings.php:642
441
  msgid "New version is available"
442
  msgstr "Nieuwe versie beschikbaar"
443
 
444
- #: ../cerber-load.php:4070
445
  msgid "WP Cerber notify"
446
  msgstr "WP Cerber melding"
447
 
448
- #: ../cerber-load.php:4094
449
  msgid "Citadel mode is activated"
450
  msgstr "Citadelstand is actief"
451
 
452
- #: ../cerber-load.php:4166
453
  msgid "New Custom login URL"
454
  msgstr "Nieuwe Aangepaste inlog-URL"
455
 
456
- #: ../cerber-load.php:5083
457
  msgid "The WP Cerber requires PHP %s or higher. You are running"
458
  msgstr "WP Cerber vereist PHP %s of hoger. Je gebruikt nu"
459
 
460
- #: ../cerber-load.php:5087
461
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
462
  msgstr "WP Cerber vereist WordPress %s of hoger. Je gebruikt nu"
463
 
464
- #: ../settings.php:295
465
  msgid "Use file"
466
  msgstr "Bestand gebruiken"
467
 
468
- #: ../settings.php:296
469
  msgid "Write failed login attempts to the file"
470
  msgstr "Mislukte pogingen opslaan in bestand"
471
 
472
- #: ../dashboard.php:2484
473
  msgid "Deactivate"
474
  msgstr "Deactiveren"
475
 
476
- #: ../dashboard.php:195 ../cerber-load.php:4129
477
  msgid "Reason"
478
  msgstr "Reden"
479
 
480
- #: ../dashboard.php:1447
481
  msgid "Add IP to the Black List"
482
  msgstr "IP-adres toevoegen aan Uitsluitingslijst"
483
 
484
- #: ../common.php:1414
485
  msgid "Attempt to access"
486
  msgstr "Poging tot toegang"
487
 
488
- #: ../common.php:1413
489
  msgid "Limit on login attempts is reached"
490
  msgstr "Limiet voor aantal inlogpogingen is bereikt"
491
 
492
- #: ../cerber-load.php:4128
493
  msgid "Last lockout was added: %s for IP %s"
494
  msgstr "Laatste uitsluiting was toegevoegd: %s voor IP-adres %s"
495
 
496
- #: ../dashboard.php:4562
497
  msgid "Hardening"
498
  msgstr "Versterking"
499
 
500
- #: ../dashboard.php:1422
501
  msgid "Abuse email:"
502
  msgstr "E-mail voor misbruik:"
503
 
504
- #: ../settings.php:628 ../settings.php:676 ../settings.php:915
505
  msgid "Email Address"
506
  msgstr "E-mailadres"
507
 
508
- #: ../settings.php:305
509
  msgid "Drill down IP"
510
  msgstr "IP-adres onderzoeken"
511
 
512
- #: ../settings.php:306
513
  msgid "Retrieve extra WHOIS information for IP"
514
  msgstr "Haal extra WHOIS-informatie op voor IP-adres"
515
 
516
- #: ../settings.php:324
517
  msgid "Hardening WordPress"
518
  msgstr "Wordpress versterken"
519
 
520
- #: ../settings.php:328 ../settings.php:364
521
  msgid "Stop user enumeration"
522
  msgstr "Stop nummering gebruikers"
523
 
524
- #: ../settings.php:347
525
  msgid "Disable XML-RPC"
526
  msgstr "XML-RPC uitschakelen"
527
 
528
- #: ../settings.php:348
529
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
530
  msgstr "Toegang tot XML-RPC server uitschakelen (inclusief Pingbacks en Trackbacks)"
531
 
532
- #: ../settings.php:352
533
  msgid "Disable feeds"
534
  msgstr "Feeds uitschakelen"
535
 
536
- #: ../settings.php:353
537
  msgid "Block access to the RSS, Atom and RDF feeds"
538
  msgstr "Blokkeer toegang tot de RSS-, Atom- en RDF-feeds"
539
 
540
- #: ../settings.php:369
541
  msgid "Disable REST API"
542
  msgstr "REST API uitschakelen"
543
 
544
- #: ../admin/cerber-settings.php:749 ../admin/cerber-settings.php:761 ..
545
- #: /admin/cerber-settings.php:918
546
  msgid "<strong>ERROR</strong>: please enter a valid email address."
547
  msgstr "<strong>LET OP</strong>: voer een geldig e-mailadres in."
548
 
549
- #: ../cerber-load.php:4159 ../cerber-load.php:5118
550
  msgid "WP Cerber is now active and has started protecting your site"
551
  msgstr "WP Cerber is actief en beschermt nu je website"
552
 
553
- #: ../dashboard.php:196 ../cerber-users.php:975 ../cerber-scanner.php:5768 ..
554
- #: /cerber-scanner.php:5916
555
  msgid "Action"
556
  msgstr "Actie"
557
 
558
- #: ../dashboard.php:4871
559
  msgid "Incorrect IP address or IP range"
560
  msgstr "IP-adres of -reeks is incorrect"
561
 
562
- #: ../dashboard.php:2500
563
  msgid "Settings saved"
564
  msgstr "Instellingen opgeslagen"
565
 
566
- #: ../dashboard.php:1427
567
  msgid "Network:"
568
  msgstr "Netwerk:"
569
 
570
- #: ../dashboard.php:1441
571
  msgid "Add network to the Black List"
572
  msgstr "Netwerk toevoegen aan Uitsluitingslijst"
573
 
574
- #: ../dashboard.php:2483
575
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
576
  msgstr "Let op! Citadelstand is actief; niemand kan inloggen."
577
 
578
- #: ../dashboard.php:427 ../dashboard.php:3662 ../whois.php:222 ../whois.php:253 ..
579
- #: /common.php:1438 ../common.php:1822 ../common.php:1887 ../nexus/cerber-slave-
580
- #: list.php:330
581
  msgid "Unknown"
582
  msgstr "Onbekend"
583
 
584
- #: ../common.php:343 ../common.php:421 ../common.php:426 ../common.php:432 ..
585
- #: /common.php:437 ../admin/cerber-settings.php:624 ../admin/cerber-settings.php:
586
- #: 644 ../admin/cerber-settings.php:725 ../cerber-load.php:649 ../cerber-load.php:
587
- #: 661 ../cerber-load.php:668 ../cerber-load.php:1017 ../cerber-load.php:1548 ..
588
- #: /cerber-load.php:1554 ../cerber-load.php:1559 ../cerber-load.php:1566 ..
589
- #: /cerber-load.php:1573 ../cerber-load.php:1579 ../cerber-load.php:1586 ..
590
- #: /cerber-load.php:1737 ../cerber-load.php:1874 ../nexus/cerber-nexus-slave.php:
591
- #: 219 ../nexus/cerber-nexus-slave.php:230 ../cerber-scanner.php:5870
592
  msgid "ERROR:"
593
  msgstr "FOUT:"
594
 
@@ -596,235 +584,227 @@ msgstr "FOUT:"
596
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
597
  msgstr "Menselijke verificatie mislukt. Klik het vierkant in onderstaand reCAPTCHA-blok."
598
 
599
- #: ../cerber-load.php:1126
600
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
601
  msgstr "<strong>LET OP</strong>: je geeft een foutief wachtwoord op voor gebruiker %s."
602
 
603
- #: ../cerber-load.php:1567
604
  msgid "Username is not allowed. Please choose another one."
605
  msgstr "Gebruikersnaam is niet toegestaan, kies een andere."
606
 
607
- #: ../cerber-load.php:4122
608
  msgid "unspecified"
609
  msgstr "niet gespecificeerd"
610
 
611
- #: ../cerber-load.php:4125
612
  msgid "Number of lockouts is increasing"
613
  msgstr "Aantal uitsluitingen loopt op"
614
 
615
- #: ../cerber-load.php:4130
616
  msgid "View activity for this IP"
617
  msgstr "Bekijk activiteit voor dit adres"
618
 
619
- #: ../cerber-load.php:4134 ../cerber-load.php:4136
620
  msgid "A new version of WP Cerber is available to install"
621
  msgstr "Nieuwe versie WP Cerber is klaar voor installatie"
622
 
623
- #: ../cerber-load.php:4135
624
  msgid "Hi!"
625
  msgstr "Hallo!"
626
 
627
- #: ../cerber-load.php:4138 ../cerber-load.php:4149 ../nexus/cerber-slave-list.php:
628
  #: 44
629
  msgid "Website"
630
  msgstr "Website"
631
 
632
- #: ../cerber-load.php:4141 ../cerber-load.php:4142
633
  msgid "The WP Cerber security plugin has been deactivated"
634
  msgstr "WP Cerber is gedeactiveerd"
635
 
636
- #: ../cerber-load.php:4144
637
  msgid "Not logged in"
638
  msgstr "Niet ingelogd"
639
 
640
- #: ../cerber-load.php:4150
641
  msgid "By user"
642
  msgstr "Door gebruiker"
643
 
644
- #: ../cerber-load.php:4151
645
  msgid "From IP address"
646
  msgstr "Van IP-adres"
647
 
648
- #: ../cerber-load.php:4154
649
  msgid "From country"
650
  msgstr "Uit land"
651
 
652
- #: ../cerber-load.php:4158
653
  msgid "The WP Cerber security plugin is now active"
654
  msgstr "WP Cerber is actief"
655
 
656
- #: ../cerber-load.php:5119
657
- msgid "Your IP address is added to the"
658
- msgstr "Je IP-adres is toegevoegd aan de"
659
-
660
- #: ../cerber-load.php:5135
661
  msgid "Import settings"
662
  msgstr "Instellingen importeren"
663
 
664
- #: ../settings.php:636
665
  msgid "Notification limit"
666
  msgstr "Limiet aan meldingen"
667
 
668
- #: ../settings.php:549
669
  msgid "Prohibited usernames"
670
  msgstr "Verboden gebruikersnamen"
671
 
672
- #: ../settings.php:550
673
  msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
674
  msgstr "Gebruikersnamen op deze lijst kunnen niet aanmelden of inloggen. IP-adressen die deze namen gebruiken, worden direct uitgesloten. Scheid namen met een komma."
675
 
676
- #: ../settings.php:558
677
- msgid "in minutes (leave empty to use default WP value)"
678
- msgstr "in minuten (leeg laten voor standaard WP-waarde)"
679
-
680
- #: ../settings.php:1058
681
  msgid "reCAPTCHA settings"
682
  msgstr "reCAPTCHA-instellingen"
683
 
684
- #: ../settings.php:1063
685
  msgid "Site key"
686
  msgstr "Site-sleutel"
687
 
688
- #: ../settings.php:1067
689
  msgid "Secret key"
690
  msgstr "Geheime sleutel"
691
 
692
- #: ../settings.php:1077
693
  msgid "Enable reCAPTCHA for WordPress registration form"
694
  msgstr "ReCAPTCHA instellen voor WordPress regstratieformulier"
695
 
696
- #: ../settings.php:1086
697
  msgid "Lost password form"
698
  msgstr "Formulier voor zoekgeraakt wachtwoord"
699
 
700
- #: ../settings.php:1096
701
  msgid "Login form"
702
  msgstr "Login-formulier"
703
 
704
- #: ../settings.php:1097
705
  msgid "Enable reCAPTCHA for WordPress login form"
706
  msgstr "ReCAPTCHA inschakelen voor WordPress inlogpagina"
707
 
708
- #: ../settings.php:1059
709
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
710
  msgstr "Haal eerst een Site-sleutel en Geheime Sleutel op van Google om reCAPTCHA te kunnen gebruiken"
711
 
712
- #: ../admin/cerber-settings.php:94 ../admin/cerber-settings.php:271 ../cerber-lab.
713
- #: php:828
714
  msgid "Know more"
715
  msgstr "Meer weten"
716
 
717
- #: ../common.php:1294
718
  msgid "User created"
719
  msgstr "Gebruiker toegevoegd"
720
 
721
- #: ../common.php:1295
722
  msgid "User registered"
723
  msgstr "Gebruiker aangemeld"
724
 
725
- #: ../common.php:1321
726
  msgid "reCAPTCHA verification failed"
727
  msgstr "reCAPTCHA verificatie mislukt"
728
 
729
- #: ../common.php:1322
730
  msgid "reCAPTCHA settings are incorrect"
731
  msgstr "foutieve reCAPTCHA-instellingen"
732
 
733
  #. 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" ?
734
- #: ../common.php:1325 ../common.php:1415
735
  msgid "Attempt to access prohibited URL"
736
  msgstr "Poging verboden URL te benaderen"
737
 
738
- #: ../common.php:1327 ../common.php:1417
739
  msgid "Attempt to log in with prohibited username"
740
  msgstr "Inlogpoging met verboden gebruikersnaam"
741
 
742
- #: ../settings.php:281
743
  msgid "Cerber Lab connection"
744
  msgstr "Cerber Lab verbinding"
745
 
746
- #: ../settings.php:282
747
  msgid "Send malicious IP addresses to the Cerber Lab"
748
  msgstr "Stuur kwaadaardige IP-adressen naar Cerber Lab"
749
 
750
- #: ../settings.php:287
751
  msgid "Cerber Lab protocol"
752
  msgstr "Cerber Lab protocol"
753
 
754
- #: ../settings.php:1003 ../settings.php:1076
755
  msgid "Registration form"
756
  msgstr "Registratieformulier"
757
 
758
- #: ../settings.php:1082
759
  msgid "Enable reCAPTCHA for WooCommerce registration form"
760
  msgstr "ReCAPTCHA inschakelen voor WooCommerce registratie"
761
 
762
- #: ../settings.php:1087
763
  msgid "Enable reCAPTCHA for WordPress lost password form"
764
  msgstr "ReCAPTCHA inschakelen om nieuw WordPress wachtwoord op te vragen"
765
 
766
- #: ../settings.php:1092
767
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
768
  msgstr "ReCAPTCHA inschakelen om nieuw WooCommerce wachtwoord op te vragen"
769
 
770
- #: ../settings.php:1102
771
  msgid "Enable reCAPTCHA for WooCommerce login form"
772
  msgstr "ReCAPTCHA inschakelen voor WooCommerce inlogpagina"
773
 
774
- #: ../common.php:1323
775
  msgid "Request to the Google reCAPTCHA service failed"
776
  msgstr "Verzoek aan Google ReCAPTCHA-service mislukt"
777
 
778
- #: ../dashboard.php:931 ../dashboard.php:2341
779
  msgid "View all"
780
  msgstr "Zie alle"
781
 
782
- #: ../dashboard.php:2344
783
  msgid "Recently locked out IP addresses"
784
  msgstr "Recent buitengesloten IP-adressen"
785
 
786
- #: ../cerber-lab.php:826
787
  msgid "OK, nail them all"
788
  msgstr "OK, gooi ze er allemaal uit"
789
 
790
- #: ../cerber-lab.php:827
791
  msgid "NO, maybe later"
792
  msgstr "Nee, misschien later"
793
 
794
- #: ../dashboard.php:54 ../dashboard.php:1778 ../dashboard.php:2681 ../dashboard.
795
- #: php:4556
796
  msgid "Dashboard"
797
  msgstr "Dashboard"
798
 
799
- #: ../cerber-lab.php:824
800
  msgid "Want to make WP Cerber even more powerful?"
801
  msgstr "Wil je WP Cerber nog beter maken?"
802
 
803
- #: ../cerber-lab.php:825
804
  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."
805
  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."
806
 
807
- #: ../dashboard.php:3549
808
  msgid "IP address"
809
  msgstr "IP-adres"
810
 
811
- #: ../dashboard.php:838
812
  msgid "User login"
813
  msgstr "Gebruikers-login"
814
 
815
- #: ../dashboard.php:839 ../dashboard.php:3555
816
  msgid "User ID"
817
  msgstr "Gebruikers-ID"
818
 
819
- #: ../dashboard.php:1107 ../dashboard.php:4039
820
  msgid "Export"
821
  msgstr "Export"
822
 
823
- #: ../dashboard.php:1148
824
  msgid "Search for IP or username"
825
  msgstr "Zoek IP of gebruikersnaam"
826
 
827
- #: ../dashboard.php:1159
828
  msgid "Filter"
829
  msgstr "Filter"
830
 
@@ -836,225 +816,221 @@ msgstr "Cerber Dashboard"
836
  msgid "Cerber tools"
837
  msgstr "Cerber tools"
838
 
839
- #: ../cerber-tools.php:242
840
  msgid "Unsubscribe"
841
  msgstr "Uitschrijven"
842
 
843
- #: ../cerber-load.php:4170 ../cerber-load.php:4171
844
  msgid "A new activity has been recorded"
845
  msgstr "Er is nieuwe activiteit waargenomen"
846
 
847
- #: ../cerber-load.php:4836 ../cerber-users.php:969
848
  msgid "User"
849
  msgstr "Gebruiker"
850
 
851
- #: ../cerber-load.php:4844
852
  msgid "Search string"
853
  msgstr "Zoekfrase"
854
 
855
- #: ../settings.php:302
856
  msgid "Preferences"
857
  msgstr "Voorkeuren"
858
 
859
- #: ../settings.php:310
860
  msgid "Date format"
861
  msgstr "Datumformaat"
862
 
863
- #: ../settings.php:311
864
  msgid "if empty, the default format %s will be used"
865
  msgstr "indien leeg, gebruiken we standaardinstelling %s"
866
 
867
- #: ../settings.php:648
868
  msgid "Push notifications"
869
  msgstr "Push meldingen"
870
 
871
- #: ../settings.php:619
872
  msgid "Email notifications"
873
  msgstr "E-mail meldingen"
874
 
875
- #: ../settings.php:629 ../settings.php:678 ../settings.php:761 ../settings.php:917
876
  msgid "Use comma to specify multiple values"
877
  msgstr "Scheid meer waarden met komma's"
878
 
879
- #: ../settings.php:103
880
  msgid "All connected devices"
881
  msgstr "Alle verbonden apparaten"
882
 
883
- #: ../settings.php:106
884
  msgid "No devices found"
885
  msgstr "Geen apparaten gevonden"
886
 
887
- #: ../settings.php:110
888
  msgid "Not available"
889
  msgstr "Niet beschikbaar"
890
 
891
- #: ../common.php:1319
892
  msgid "Password reset requested"
893
  msgstr "Wachtwoordvernieuwing aangevraagd"
894
 
895
- #: ../common.php:1418
896
  msgid "Limit on failed reCAPTCHA verifications is reached"
897
  msgstr "Grens bereikt van foutieve reCAPTCHA's"
898
 
899
- #: ../common.php:1570
900
  msgid "%s ago"
901
  msgstr "%s geleden"
902
 
903
- #: ../settings.php:156
904
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
905
  msgstr "Pas regels voor inlogbeperking toe op de Lijst Toegelaten IP-adressen"
906
 
907
- #: ../settings.php:186
908
  msgid "Display 404 page"
909
  msgstr "Toon 404-pagina"
910
 
911
- #: ../settings.php:1071
912
  msgid "Invisible reCAPTCHA"
913
  msgstr "Onzichtbare reCAPTCHA"
914
 
915
- #: ../settings.php:1072
916
  msgid "Enable invisible reCAPTCHA"
917
  msgstr "Zet onzichtbare reCAPTCHA aan"
918
 
919
- #: ../settings.php:1072
920
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
921
  msgstr "(zet pas aan als je de Sitesleutel en Geheime Sleutel voor de onzichtbare versie hebt ontvangen)"
922
 
923
- #: ../settings.php:1107
924
  msgid "Enable reCAPTCHA for WordPress comment form"
925
  msgstr "Zet reCAPTCHA aan voor WordPress reacties"
926
 
927
- #: ../settings.php:1112
928
  msgid "Disable reCAPTCHA for logged in users"
929
  msgstr "Zet reCAPTCHA uit voor ingelogde gebruikers"
930
 
931
- #: ../settings.php:1116
932
  msgid "Limit attempts"
933
  msgstr "Beperk aantal pogingen"
934
 
935
- #: ../settings.php:1117
936
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
937
  msgstr "Sluit IP-adressen uit voor %s minuten na %s mislukte pogingen in %s minuten"
938
 
939
- #: ../settings.php:234
940
  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."
941
  msgstr "In de Citadelstand kunnen alleen adressen van de Lijst Toegelaten IP-adressen inloggen. Heeft geen effect op reeds ingelogde gebruikers."
942
 
943
- #: ../dashboard.php:835 ../dashboard.php:1083
944
  msgid "Event"
945
  msgstr "Gebeurtenis"
946
 
947
- #: ../common.php:286
948
  msgid "Spam comments denied"
949
  msgstr "Spamreacties afgewezen"
950
 
951
- #: ../common.php:288
952
  msgid "Malicious IP addresses detected"
953
  msgstr "Kwaadaardige IP-adressen gevonden"
954
 
955
- #: ../common.php:289
956
  msgid "Lockouts occurred"
957
  msgstr "Uitsluitingen"
958
 
959
- #: ../cerber-load.php:1549 ../cerber-load.php:1555 ../cerber-load.php:1580 ..
960
- #: /cerber-load.php:1587
961
  msgid "You are not allowed to register."
962
  msgstr "Je mag niet aanmelden."
963
 
964
- #: ../common.php:1306
965
  msgid "Spam comment denied"
966
  msgstr "Spamreactie afgewezen"
967
 
968
- #: ../common.php:1329
969
  msgid "Attempt to log in denied"
970
  msgstr "Inlogpoging afgewezen"
971
 
972
- #: ../common.php:1330
973
  msgid "Attempt to register denied"
974
  msgstr "Aanmeldingspoging afgewezen"
975
 
976
- #: ../common.php:283
977
  msgid "Malicious activities mitigated"
978
  msgstr "Verdachte activiteiten afgevangen"
979
 
980
- #: ../settings.php:998
981
  msgid "Comment form"
982
  msgstr "Reactiepagina"
983
 
984
- #: ../settings.php:999
985
  msgid "Protect comment form with bot detection engine"
986
  msgstr "Bescherm invoer reacties met bot-detectie"
987
 
988
- #: ../settings.php:1004
989
  msgid "Protect registration form with bot detection engine"
990
  msgstr "Bescherm registratie met bot-detectie"
991
 
992
- #: ../dashboard.php:4720
993
- msgid "Export & Import"
994
- msgstr "Export & Import"
995
-
996
- #: ../dashboard.php:4721
997
  msgid "Diagnostic"
998
  msgstr "Diagnose"
999
 
1000
- #: ../dashboard.php:4724
1001
  msgid "License"
1002
  msgstr "Licentie"
1003
 
1004
- #: ../cerber-load.php:1874
1005
  msgid "Sorry, human verification failed."
1006
  msgstr "Sorry, je verificatie faalt."
1007
 
1008
- #: ../common.php:1419
1009
  msgid "Bot activity is detected"
1010
  msgstr "Bot-activiteit getedecteerd"
1011
 
1012
- #: ../settings.php:1039
1013
  msgid "Comment processing"
1014
  msgstr "Verwerking van reactie"
1015
 
1016
- #: ../settings.php:1043
1017
  msgid "If a spam comment detected"
1018
  msgstr "Bij detectie van een spam-reactie"
1019
 
1020
- #: ../settings.php:1048
1021
  msgid "Trash spam comments"
1022
  msgstr "Spamreacties weggooien"
1023
 
1024
- #: ../settings.php:1050
1025
  msgid "Move spam comments to trash after"
1026
  msgstr "Verwijder spamreacties na"
1027
 
1028
- #: ../common.php:1307
1029
  msgid "Spam form submission denied"
1030
  msgstr "Geweigerd wegens spam"
1031
 
1032
- #: ../settings.php:1008
1033
  msgid "Other forms"
1034
  msgstr "Andere formulieren"
1035
 
1036
- #: ../settings.php:1009
1037
  msgid "Protect all forms on the website with bot detection engine"
1038
  msgstr "Bescherm alle invoerformulieren met bot-detectie"
1039
 
1040
- #: ../settings.php:1019
1041
  msgid "Safe mode"
1042
  msgstr "Veilige stand"
1043
 
1044
- #: ../settings.php:1020
1045
  msgid "Use less restrictive policies (allow AJAX)"
1046
  msgstr "Minder restricties (sta AJAX toe)"
1047
 
1048
- #: ../dashboard.php:952 ../dashboard.php:1734 ../dashboard.php:4007 ../settings.
1049
- #: php:374 ../settings.php:1024
1050
  msgid "Logged in users"
1051
  msgstr "Ingelogde gebruikers"
1052
 
1053
- #: ../settings.php:1025
1054
  msgid "Disable bot detection engine for logged in users"
1055
  msgstr "Zet bot-detectie uit voor ingelogde gebruikers"
1056
 
1057
- #: ../dashboard.php:193 ../dashboard.php:1081
1058
  msgid "Country"
1059
  msgstr "Land"
1060
 
@@ -1062,45 +1038,45 @@ msgstr "Land"
1062
  msgid "Cerber Security Rules"
1063
  msgstr "Cerber Beveiligingsregels"
1064
 
1065
- #: ../dashboard.php:61 ../dashboard.php:4668
1066
  msgid "Security Rules"
1067
  msgstr "Beveiligingsregels"
1068
 
1069
- #: ../dashboard.php:1587
1070
  msgid "Failed login attempts"
1071
  msgstr "Gefaalde loginpogingen"
1072
 
1073
- #: ../dashboard.php:1544 ../dashboard.php:1588
1074
  msgid "Registered"
1075
  msgstr "Aangemeld"
1076
 
1077
- #: ../dashboard.php:1658 ../cerber-users.php:52 ../cerber-users.php:1106
1078
  msgid "You"
1079
  msgstr "Jij"
1080
 
1081
- #: ../common.php:287
1082
  msgid "Spam form submissions denied"
1083
  msgstr "Spam formulierafgifte afgewezen"
1084
 
1085
- #: ../dashboard.php:2380 ../cerber-load.php:4161 ../cerber-load.php:5121
1086
  msgid "Getting Started Guide"
1087
  msgstr "Startgids"
1088
 
1089
- #: ../dashboard.php:4670
1090
  msgid "Countries"
1091
  msgstr "Landen"
1092
 
1093
- #: ../dashboard.php:3277
1094
  msgid "Permitted for one country"
1095
  msgid_plural "Permitted for %d countries"
1096
  msgstr[0] "Toegestaan voor één land"
1097
  msgstr[1] "Toegestaan voor %d landen"
1098
 
1099
- #: ../dashboard.php:3288
1100
  msgid "No rule"
1101
  msgstr "Geen regel"
1102
 
1103
- #: ../dashboard.php:3449
1104
  msgid "Security rules have been updated"
1105
  msgstr "Beveiligingsregels zijn vernieuwd"
1106
 
@@ -1109,244 +1085,240 @@ msgstr "Beveiligingsregels zijn vernieuwd"
1109
  msgid "https://wpcerber.com"
1110
  msgstr "https://wpcerber.com"
1111
 
1112
- #: ../common.php:1308
1113
  msgid "Form submission denied"
1114
  msgstr "Formulierafgifte afgewezen"
1115
 
1116
- #: ../common.php:1309
1117
  msgid "Comment denied"
1118
  msgstr "Commentaar afgewezen"
1119
 
1120
- #: ../common.php:1335
1121
  msgid "Request to REST API denied"
1122
  msgstr "Verzoek aan REST API afgewezen"
1123
 
1124
- #: ../common.php:1336
1125
  msgid "XML-RPC request denied"
1126
  msgstr "XML-RPC-verzoek afgewezen"
1127
 
1128
- #: ../common.php:1357
1129
  msgid "Bot detected"
1130
  msgstr "Bot gedetecteerd"
1131
 
1132
- #: ../common.php:1358
1133
  msgid "Citadel mode is active"
1134
  msgstr "Citadelstand actief"
1135
 
1136
- #: ../common.php:1362
1137
  msgid "Malicious activity detected"
1138
  msgstr "Kwaadaardige activiteit gedetecteerd"
1139
 
1140
- #: ../common.php:1363
1141
  msgid "Blocked by country rule"
1142
  msgstr "Geblokkeerd door landenregel"
1143
 
1144
- #: ../common.php:1364
1145
  msgid "Limit reached"
1146
  msgstr "Limiet bereikt"
1147
 
1148
- #: ../common.php:1365
1149
  msgid "Multiple suspicious activities"
1150
  msgstr "Meerdere verdachte activiteiten"
1151
 
1152
- #: ../common.php:1420
1153
  msgid "Multiple suspicious activities were detected"
1154
  msgstr "Meerdere verdachte activiteiten gedetecteerd"
1155
 
1156
- #: ../settings.php:375
1157
  msgid "Allow REST API for logged in users"
1158
  msgstr "Sta REST API toe voor ingelogde gebruikers"
1159
 
1160
- #: ../settings.php:389
1161
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
1162
  msgstr "Geef toegestane REST API-naamruimtes op als de REST API is uitgeschakeld. Eén tekenreeks per regel."
1163
 
1164
- #: ../settings.php:526
1165
  msgid "Registration limit"
1166
  msgstr "Registratielimiet"
1167
 
1168
- #: ../settings.php:564
1169
  msgid "Sort users in dashboard"
1170
  msgstr "Gebruikers in dashboard sorteren"
1171
 
1172
- #: ../settings.php:565
1173
  msgid "by date of registration"
1174
  msgstr "per registratiedatum"
1175
 
1176
- #: ../settings.php:1029
1177
  msgid "Query whitelist"
1178
  msgstr "Toegestane queries"
1179
 
1180
- #: ../dashboard.php:3257
1181
  msgid "Start typing here to find a country"
1182
  msgstr "Begin te typen om een land te vinden"
1183
 
1184
- #: ../dashboard.php:3372
1185
  msgid "Click on a country name to add it to the list of selected countries"
1186
  msgstr "Klik op een landnaam om toe te voegen aan de lijst gekozen landen"
1187
 
1188
- #: ../dashboard.php:3404
1189
  msgid "Submit forms"
1190
  msgstr "Formulieren versturen"
1191
 
1192
- #: ../dashboard.php:3405
1193
  msgid "Post comments"
1194
  msgstr "Commentaar plaatsen"
1195
 
1196
- #: ../dashboard.php:3399
1197
- msgid "Log in to the website"
1198
- msgstr "Inloggen bij de website"
1199
-
1200
- #: ../dashboard.php:3403
1201
  msgid "Register on the website"
1202
  msgstr "Aanmelden bij de website"
1203
 
1204
- #: ../dashboard.php:3406
1205
  msgid "Use XML-RPC"
1206
  msgstr "Benut XML-RPC"
1207
 
1208
- #: ../dashboard.php:3407
1209
  msgid "Use REST API"
1210
  msgstr "Benut REST API"
1211
 
1212
- #: ../settings.php:1045
1213
  msgid "Deny it completely"
1214
  msgstr "Volledig negeren"
1215
 
1216
- #: ../settings.php:1045
1217
  msgid "Mark it as spam"
1218
  msgstr "Markeren als spam"
1219
 
1220
- #: ../dashboard.php:2320
1221
  msgid "in the last 24 hours"
1222
  msgstr "in de afgelopen 24 uur"
1223
 
1224
- #: ../dashboard.php:2682
1225
  msgid "Main settings"
1226
  msgstr "Hoofdinstellingen"
1227
 
1228
- #: ../settings.php:663
1229
  msgid "Weekly reports"
1230
  msgstr "Weekrapporten"
1231
 
1232
- #: ../admin/cerber-settings.php:522
1233
  msgid "Sunday"
1234
  msgstr "zondag"
1235
 
1236
- #: ../admin/cerber-settings.php:523
1237
  msgid "Monday"
1238
  msgstr "maandag"
1239
 
1240
- #: ../admin/cerber-settings.php:524
1241
  msgid "Tuesday"
1242
  msgstr "dinsdag"
1243
 
1244
- #: ../admin/cerber-settings.php:525
1245
  msgid "Wednesday"
1246
  msgstr "woensdag"
1247
 
1248
- #: ../admin/cerber-settings.php:526
1249
  msgid "Thursday"
1250
  msgstr "donderdag"
1251
 
1252
- #: ../admin/cerber-settings.php:527
1253
  msgid "Friday"
1254
  msgstr "vrijdag"
1255
 
1256
- #: ../admin/cerber-settings.php:528
1257
  msgid "Saturday"
1258
  msgstr "zaterdag"
1259
 
1260
- #: ../admin/cerber-settings.php:654 ../admin/cerber-settings.php:655
1261
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1262
  msgstr "Gebruik je een caching plugin, dan moet je je nieuwe login URL toevoegen aan de niet te cachen pagina's."
1263
 
1264
- #: ../cerber-load.php:4176
1265
  msgid "Weekly report"
1266
  msgstr "Weekrapport"
1267
 
1268
- #: ../cerber-load.php:4179 ../cerber-load.php:4189
1269
  msgid "To change reporting settings visit"
1270
  msgstr "Om je rapportageinstellingen aan te passen, ga naar"
1271
 
1272
- #: ../cerber-load.php:4212
1273
  msgid "Your login page:"
1274
  msgstr "Je login-pagina:"
1275
 
1276
- #: ../cerber-load.php:4216
1277
  msgid "Your license is valid until"
1278
  msgstr "Je licentie geldt tot"
1279
 
1280
- #: ../cerber-load.php:4322
1281
  msgid "Activity details"
1282
  msgstr "Details van activiteiten"
1283
 
1284
- #: ../admin/cerber-settings.php:557
1285
  msgid "Click to send now"
1286
  msgstr "Klik om nu te versturen"
1287
 
1288
- #: ../cerber-load.php:818
1289
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1290
  msgstr ">>> Vertaler van WP Cerber? Om een gratis Pro-licentie te krijgen, geef je contactinformatie op bij: https://wpcerber.com/contact/"
1291
 
1292
- #: ../dashboard.php:571
1293
  msgid "Email has been sent to"
1294
  msgstr "E-mail is verzonden naar"
1295
 
1296
- #: ../dashboard.php:574
1297
  msgid "Unable to send email to"
1298
  msgstr "Kan geen e-mail verzenden naar"
1299
 
1300
- #: ../dashboard.php:3280
1301
  msgid "Not permitted for one country"
1302
  msgid_plural "Not permitted for %d countries"
1303
  msgstr[0] "Niet toegestaan voor één land"
1304
  msgstr[1] "Niet toegestaan voor %d landen"
1305
 
1306
- #: ../dashboard.php:3376
1307
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1308
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1309
  msgstr "Gekozen landen mogen %s, overige landen niet"
1310
 
1311
- #: ../dashboard.php:3379
1312
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1313
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1314
  msgstr "Gekozen landen mogen niet %s, overige landen wel"
1315
 
1316
- #: ../cerber-load.php:4310
1317
  msgid "Weekly Report"
1318
  msgstr "Weekrapport"
1319
 
1320
- #: ../settings.php:189
1321
  msgid "Use 404 template from the active theme"
1322
  msgstr "Gebruik 404-sjabloon van het actieve thema"
1323
 
1324
- #: ../settings.php:190
1325
  msgid "Display simple 404 page"
1326
  msgstr "Toon eenvoudige 404-pagina"
1327
 
1328
- #: ../settings.php:1030
1329
  msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
1330
  msgstr "Voer een deel van een query-tekenreeks of -pad in om een request uit te sluiten van inspectie. Eén item per regel."
1331
 
1332
- #: ../settings.php:667
1333
  msgid "Enable reporting"
1334
  msgstr "Rapporteren aanzetten"
1335
 
1336
  #. How to interpret this line? Do you mean 'was DATE/TIME from IP ADDRESS' ?
1337
- #: ../cerber-load.php:4240
1338
  msgid "Your last sign-in was %s from %s"
1339
  msgstr "Je laatste inlog was op %s vanaf %s"
1340
 
1341
- #: ../dashboard.php:316
1342
  msgid "Optional comment for this entry"
1343
  msgstr "Opmerking hierbij"
1344
 
1345
- #: ../dashboard.php:338
1346
  msgid "You cannot add your IP address or network"
1347
  msgstr "Je kunt je eigen IP of netwerk niet toevoegen"
1348
 
1349
- #: ../settings.php:542 ../settings.php:550
1350
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1351
  msgstr "Je kunt REGEX-patronen gebruiken; sluit deze op in voorwaartse slashes zoals /admin.*/."
1352
 
@@ -1354,190 +1326,181 @@ msgstr "Je kunt REGEX-patronen gebruiken; sluit deze op in voorwaartse slashes z
1354
  msgid "Cerber Traffic Inspector"
1355
  msgstr "Cerber Verkeersinspectie"
1356
 
1357
- #: ../dashboard.php:56 ../dashboard.php:1741 ../dashboard.php:4622
1358
  msgid "Traffic Inspector"
1359
  msgstr "Verkeersinspectie"
1360
 
1361
- #: ../dashboard.php:1780 ../cerber-users.php:1140
1362
  msgid "Traffic"
1363
  msgstr "Verkeer"
1364
 
1365
- #: ../dashboard.php:3975
1366
  msgid "Request"
1367
  msgstr "Verzoek"
1368
 
1369
- #: ../dashboard.php:3977 ../cerber-users.php:974
1370
  msgid "Host Info"
1371
  msgstr "Host Info"
1372
 
1373
  #. Do you mean a program for browsing the web like Chrome? Or a ftp user agent or so?
1374
- #: ../dashboard.php:3978
1375
  msgid "User Agent"
1376
  msgstr "Webbrowser"
1377
 
1378
- #: ../dashboard.php:4003
1379
  msgid "All requests"
1380
  msgstr "Alle verzoeken"
1381
 
1382
- #: ../dashboard.php:953 ../dashboard.php:4008
1383
  msgid "Not logged in visitors"
1384
  msgstr "Niet-ingelogde bezoekers"
1385
 
1386
- #: ../dashboard.php:4011
1387
  msgid "Form submissions"
1388
  msgstr "Formulierverzendingen"
1389
 
1390
- #: ../dashboard.php:4013
1391
  msgid "Page Not Found"
1392
  msgstr "Pagina niet gevonden"
1393
 
1394
- #: ../dashboard.php:4022
1395
  msgid "Longer than"
1396
  msgstr "Langer dan"
1397
 
1398
- #: ../dashboard.php:4045
1399
  msgid "Refresh"
1400
  msgstr "Ververs"
1401
 
1402
- #: ../common.php:213
1403
  msgid "Check for requests"
1404
  msgstr "Controleer op verzoeken"
1405
 
1406
- #: ../common.php:1782
1407
  msgid "Not specified"
1408
  msgstr "Niet gespecificeerd"
1409
 
1410
- #: ../settings.php:742
1411
  msgid "Logging mode"
1412
  msgstr "Rapportagestand"
1413
 
1414
- #: ../settings.php:745
1415
  msgid "Logging disabled"
1416
  msgstr "Rapportage uit"
1417
 
1418
- #: ../settings.php:746
1419
  msgid "Smart"
1420
  msgstr "Slim"
1421
 
1422
- #: ../settings.php:747
1423
  msgid "All traffic"
1424
  msgstr "Alle verkeer"
1425
 
1426
- #: ../settings.php:751
1427
- msgid "Ignore crawlers"
1428
- msgstr "Negeer crawlers"
1429
-
1430
- #: ../settings.php:759
1431
  msgid "Mask these form fields"
1432
  msgstr "Verberg deze formuliervelden"
1433
 
1434
- #: ../settings.php:784
1435
  msgid "milliseconds"
1436
  msgstr "milliseconden"
1437
 
1438
- #: ../settings.php:693
1439
  msgid "Enable traffic inspection"
1440
  msgstr "Verkeersinspectie aanzetten"
1441
 
1442
- #: ../settings.php:755
1443
  msgid "Save request fields"
1444
  msgstr "Bewaar verzoekvelden"
1445
 
1446
- #: ../settings.php:783
1447
  msgid "Page generation time threshold"
1448
  msgstr "Drempeltijd paginaopbouw"
1449
 
1450
- #: ../dashboard.php:3995
1451
  msgid "No requests have been logged."
1452
  msgstr "Er zijn geen verzoeken geregistreerd."
1453
 
1454
- #: ../dashboard.php:1740
1455
  msgid "enabled"
1456
  msgstr "aan"
1457
 
1458
- #: ../dashboard.php:1745
1459
  msgid "no connection"
1460
  msgstr "geen verbinding"
1461
 
1462
- #: ../dashboard.php:1534
1463
  msgid "Last seen"
1464
  msgstr "Laatst gezien"
1465
 
1466
- #. A fix for "Probing for vulnerable PHP script".
1467
- #: ../common.php:1331 ../common.php:1421
1468
- msgid "Probing for vulnerable PHP code"
1469
- msgstr "Op zoek naar kwetsbare PHP-code"
1470
-
1471
- #: ../cerber-load.php:3954
1472
  msgid "We're sorry, you are not allowed to proceed"
1473
  msgstr "Excuus, je mag niet doorgaan"
1474
 
1475
- #: ../settings.php:706
1476
  msgid "Request whitelist"
1477
  msgstr "Verzoek om whitelist"
1478
 
1479
- #: ../settings.php:710
1480
  msgid "Enter a request URI to exclude the request from inspection. One item per line."
1481
  msgstr "Voer een 'request URI' in om deze van inspectie uit te sluiten. Eén per regel."
1482
 
1483
- #: ../settings.php:766
1484
  msgid "Save request headers"
1485
  msgstr "Sla 'request headers' op"
1486
 
1487
- #: ../settings.php:771
1488
  msgid "Save $_SERVER"
1489
  msgstr "Sla $_SERVER op"
1490
 
1491
- #: ../settings.php:775
1492
  msgid "Save request cookies"
1493
  msgstr "Sla 'request cookies' op"
1494
 
1495
- #: ../settings.php:333
1496
  msgid "Protect admin scripts"
1497
  msgstr "Bescherm admin scripts"
1498
 
1499
- #: ../settings.php:334
1500
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1501
  msgstr "Blokkeer ongeoorloofde toegang tot load-scripts.php en load-styles.php\n"
1502
  ""
1503
 
1504
- #: ../common.php:2765
1505
  msgid "Unable to create the directory"
1506
  msgstr "Kan map niet aanmaken"
1507
 
1508
- #: ../common.php:2770
1509
  msgid "Destination folder access denied"
1510
  msgstr "Toegang bestemmingsmap afgewezen"
1511
 
1512
- #: ../common.php:2773
1513
  msgid "File not found"
1514
  msgstr "Bestand niet gevonden"
1515
 
1516
- #: ../common.php:2776
1517
  msgid "Unable to copy the file"
1518
  msgstr "Kan bestand niet kopiëren"
1519
 
1520
- #: ../common.php:2782
1521
  msgid "Unable to delete the file"
1522
  msgstr "Kan bestand niet verwijderen"
1523
 
1524
- #: ../settings.php:126
1525
  msgid "Plugin initialization"
1526
  msgstr "Plugin initialisatie"
1527
 
1528
- #: ../settings.php:129
1529
  msgid "Load security engine"
1530
  msgstr "Start beveiligingskern"
1531
 
1532
- #: ../settings.php:132
1533
  msgid "Legacy mode"
1534
  msgstr "Verouderde stand"
1535
 
1536
- #: ../settings.php:133
1537
  msgid "Standard mode"
1538
  msgstr "Standaardinstelling"
1539
 
1540
- #: ../admin/cerber-settings.php:625
1541
  msgid "Plugin initialization mode has not been changed"
1542
  msgstr "Plugin initialisatie is niet aangepast"
1543
 
@@ -1546,445 +1509,440 @@ msgstr "Plugin initialisatie is niet aangepast"
1546
  msgid "This is a standard boot module for WP Cerber Security & Antispam plugin. It was installed when you set the plugin initialization mode to Standard. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1547
  msgstr "Dit is de standaard opstartmodule van de WP Cerber Security & Antispam plugin, geïnstalleerd toen je de plugin-initialisatie op Standaard hebt gezet. Meer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1548
 
1549
- #: ../common.php:1333
1550
  msgid "File upload denied"
1551
  msgstr "Bestandsupload afgewezen"
1552
 
1553
  #. Shouldn't these 'braces' be 'brackets'?
1554
- #: ../settings.php:710
1555
  msgid "To specify a REGEX pattern, enclose a whole line in two braces."
1556
  msgstr "Zet bij een REGEX-patroon de hele regel tussen accolades { }."
1557
 
1558
- #: ../settings.php:119
1559
  msgid "Be careful about enabling these options."
1560
  msgstr "Wees voorzichtig met deze opties!"
1561
 
1562
- #: ../settings.php:119
1563
  msgid "If you forget your Custom login URL, you will be unable to log in."
1564
  msgstr "Als je de Aangepaste inlog-URL vergeet, kun je niet meer inloggen."
1565
 
1566
- #: ../dashboard.php:67 ../dashboard.php:4683
1567
  msgid "Site Integrity"
1568
  msgstr "Site-integriteit"
1569
 
1570
- #: ../dashboard.php:1765 ../dashboard.php:1767 ../cerber-users.php:20 ../cerber-
1571
- #: users.php:445 ../settings.php:696 ../settings.php:724 ../settings.php:830 ..
1572
- #: /settings.php:839 ../settings.php:1178 ../cerber-scanner.php:1622
1573
  msgid "Disabled"
1574
  msgstr "Uitgeschakeld"
1575
 
1576
- #: ../dashboard.php:1766 ../cerber-scanner.php:1065
1577
  msgid "Quick Scan"
1578
  msgstr "Snelle Scan"
1579
 
1580
- #: ../dashboard.php:1768 ../cerber-scanner.php:1065
1581
  msgid "Full Scan"
1582
  msgstr "Volledige scan"
1583
 
1584
- #. Name of the plugin
1585
- #:
1586
- msgid "WP Cerber Security, Antispam & Malware Scan"
1587
- msgstr "WP Cerber Security, Antispam & Malware Scan"
1588
-
1589
- #: ../common.php:1366
1590
  msgid "Denied"
1591
  msgstr "Afgewezen"
1592
 
1593
- #: ../settings.php:155 ../settings.php:501 ../settings.php:702
1594
  msgid "Use White IP Access List"
1595
  msgstr "Lijst Toegelaten IP-adressen gebruiken"
1596
 
1597
- #: ../settings.php:176
1598
  msgid "Disable dashboard redirection"
1599
  msgstr "Dashboard omleiding uitzetten"
1600
 
1601
- #: ../settings.php:177
1602
  msgid "Disable automatic redirection to the login page when /wp-admin/ is requested by an unauthorized request"
1603
  msgstr "Automatische omleiding naar de loginpagina uitzetten als /wp-admin/ ongeautoriseerd wordt opgevraagd"
1604
 
1605
- #: ../settings.php:801
1606
  msgid "Scanner settings"
1607
  msgstr "Scanner-instellingen"
1608
 
1609
- #: ../settings.php:806
1610
  msgid "Custom signatures"
1611
  msgstr "Ondertekening op maat"
1612
 
1613
- #: ../settings.php:810
1614
  msgid "Specify custom PHP code signatures. One item per line. To specify a REGEX pattern, enclose a whole line in two braces."
1615
  msgstr "Eigen PHP code ondertekeningen, één per regel. Zet bij een REGEX-patroon de hele regel tussen accolades { }."
1616
 
1617
- #: ../settings.php:813
1618
  msgid "Unwanted file extensions"
1619
  msgstr "Ongewenste bestandsextensies"
1620
 
1621
- #: ../settings.php:817
1622
  msgid "Specify file extensions to search for. Full scan only. Use comma to separate items."
1623
  msgstr "Geef bedoelde bestandsextensies op, komma-gescheiden. Alleen tbv de volledige scan."
1624
 
1625
- #: ../settings.php:820
1626
  msgid "Directories to exclude"
1627
  msgstr "Uit te sluiten mappen"
1628
 
1629
- #: ../settings.php:845
1630
  msgid "Scan temporary directory"
1631
  msgstr "Scan tijdelijke map"
1632
 
1633
- #: ../settings.php:849
1634
  msgid "Scan session directory"
1635
  msgstr "Scan sessiemap"
1636
 
1637
- #: ../settings.php:857
1638
  msgid "Delete quarantined files after"
1639
  msgstr "Wis bestanden in quarantaine na"
1640
 
1641
- #: ../settings.php:872
1642
  msgid "Launch Quick Scan"
1643
  msgstr "Begin Snelle Scan"
1644
 
1645
- #: ../cerber-scanner.php:1623
1646
  msgid "Every hour"
1647
  msgstr "Elk uur"
1648
 
1649
- #: ../cerber-scanner.php:1624
1650
  msgid "Every 3 hours"
1651
  msgstr "Elke 3 uur"
1652
 
1653
- #: ../cerber-scanner.php:1625
1654
  msgid "Every 6 hours"
1655
  msgstr "Elke 6 uur"
1656
 
1657
- #: ../settings.php:877
1658
  msgid "Launch Full Scan"
1659
  msgstr "Start volledige scan"
1660
 
1661
- #: ../settings.php:892 ../settings.php:938
1662
  msgid "Low severity"
1663
  msgstr "Niet ernstig"
1664
 
1665
- #: ../settings.php:893 ../settings.php:939
1666
  msgid "Medium severity"
1667
  msgstr "Ernstig"
1668
 
1669
- #: ../settings.php:894 ../settings.php:940
1670
  msgid "High severity"
1671
  msgstr "Zeer ernstig"
1672
 
1673
- #: ../settings.php:889
1674
  msgid "Report an issue if any of the following is true"
1675
  msgstr "Rapporteer "
1676
 
1677
- #: ../settings.php:898
1678
  msgid "Send email report"
1679
  msgstr "Stuur e-mail-rapport"
1680
 
1681
- #: ../settings.php:901
1682
  msgid "After every scan"
1683
  msgstr "Na elke scan"
1684
 
1685
- #: ../settings.php:902
1686
  msgid "If any changes in scan results occurred"
1687
  msgstr "Bij veranderingen in de scanresultaten"
1688
 
1689
- #: ../settings.php:907
1690
  msgid "Include file sizes"
1691
  msgstr "Voeg bestandsgrootte toe"
1692
 
1693
- #: ../settings.php:911
1694
  msgid "Include scan errors"
1695
  msgstr "Voeg scanfouten toe"
1696
 
1697
- #: ../dashboard.php:4685
1698
  msgid "Security Scanner"
1699
  msgstr "Veiligheidsscanner"
1700
 
1701
- #: ../dashboard.php:4687
1702
  msgid "Scheduling"
1703
  msgstr "Agenderen"
1704
 
1705
- #: ../cerber-scanner.php:95
1706
  msgid "Currently a scheduled scan in progress. Please wait until it is finished."
1707
  msgstr "Er loopt een geagendeerde scan; wacht totdat deze afloopt."
1708
 
1709
- #: ../cerber-scanner.php:99
1710
  msgid "Previous scan started %s has not been completed. Continue scanning?"
1711
  msgstr "Voorgaande scan die begon op %s is nog niet klaar. Daarmee doorgaan?"
1712
 
1713
- #: ../cerber-scanner.php:108
1714
  msgid "It seems this website has never been scanned. To start scanning click the button below."
1715
  msgstr "Deze site lijkt nooit te zijn gescand. Klik onderstaande knop om nu te scannen."
1716
 
1717
- #: ../cerber-scanner.php:111
1718
  msgid "Start Quick Scan"
1719
  msgstr "Begin Snelle Scan"
1720
 
1721
- #: ../cerber-scanner.php:112
1722
  msgid "Start Full Scan"
1723
  msgstr "Begin Volledige Scan"
1724
 
1725
- #: ../cerber-scanner.php:113
1726
  msgid "Stop Scanning"
1727
  msgstr "Stop Scannen"
1728
 
1729
- #: ../cerber-scanner.php:114
1730
  msgid "Continue Scanning"
1731
  msgstr "Hervat Scannen"
1732
 
1733
- #: ../cerber-scanner.php:150
1734
  msgid "Delete"
1735
  msgstr "Wis"
1736
 
1737
- #: ../cerber-scanner.php:1568
1738
  msgid "Verified"
1739
  msgstr "Geverifieerd"
1740
 
1741
- #: ../cerber-scanner.php:1575
1742
  msgid "Integrity data not found"
1743
  msgstr "Integriteitsgegevens niet gevonden"
1744
 
1745
- #: ../cerber-scanner.php:1576
1746
  msgid "Unable to check the integrity of the plugin due to a network error"
1747
  msgstr "Kan integriteit van plugin niet controleren door een netwerkfout"
1748
 
1749
- #: ../cerber-scanner.php:1577
1750
  msgid "Unable to check the integrity of WordPress files due to a network error"
1751
  msgstr "Kan integriteit van Wordpressbestanden niet controleren door een netwerkfout"
1752
 
1753
- #: ../cerber-scanner.php:1578
1754
  msgid "Unable to check the integrity of the theme due to a network error"
1755
  msgstr "Kan integriteit van thema niet controleren door een netwerkfout"
1756
 
1757
- #: ../cerber-scanner.php:1581
1758
  msgid "Local file doesn't exist"
1759
  msgstr "Lokaal bestand bestaat niet"
1760
 
1761
- #: ../cerber-scanner.php:1583
1762
  msgid "Unable to process file"
1763
  msgstr "Kan bestand niet verwerken"
1764
 
1765
- #: ../cerber-scanner.php:1584 ../cerber-scanner.php:5104
1766
  msgid "Unable to open file"
1767
  msgstr "Kan bestand niet openen"
1768
 
1769
- #: ../cerber-scanner.php:1586 ../cerber-scanner.php:3986
1770
  msgid "Checksum mismatch"
1771
  msgstr "Controlegetal klopt niet"
1772
 
1773
- #: ../cerber-scanner.php:1589
1774
  msgid "Suspicious code found"
1775
  msgstr "Verdachte code gevonden"
1776
 
1777
- #: ../cerber-scanner.php:1591
1778
  msgid "Unattended suspicious file"
1779
  msgstr "Verdacht losstaand bestand"
1780
 
1781
- #: ../cerber-scanner.php:1592
1782
  msgid "Executable code found"
1783
  msgstr "Uitvoerbare code gevonden"
1784
 
1785
- #: ../cerber-scanner.php:1596
1786
  msgid "Unwanted file extension"
1787
  msgstr "Ongewenste bestandsextensie"
1788
 
1789
- #: ../cerber-scanner.php:1598
1790
  msgid "Content has been modified"
1791
  msgstr "Inhoud is gewijzigd"
1792
 
1793
- #: ../cerber-scanner.php:1599
1794
  msgid "New file"
1795
  msgstr "Nieuw bestand"
1796
 
1797
- #: ../cerber-scanner.php:2645
1798
  msgid "Custom signature found"
1799
  msgstr "Eigen ondertekening gevonden"
1800
 
1801
- #: ../cerber-scanner.php:3863
1802
  msgid "Scanning folders for files"
1803
  msgstr "Scan mappen voor bestanden"
1804
 
1805
- #: ../cerber-scanner.php:3867
1806
  msgid "Parsing the list of files"
1807
  msgstr "Bezig de bestandslijst door te nemen"
1808
 
1809
- #: ../cerber-scanner.php:3868
1810
  msgid "Checking for new and modified files"
1811
  msgstr "Controleren op nieuwe en gewijzigde bestanden"
1812
 
1813
- #: ../cerber-scanner.php:3869
1814
  msgid "Verifying the integrity of WordPress"
1815
  msgstr "Integriteit van WordPress controleren"
1816
 
1817
- #: ../cerber-scanner.php:3871
1818
  msgid "Verifying the integrity of the plugins"
1819
  msgstr "Integriteit van plugins controleren"
1820
 
1821
- #: ../cerber-scanner.php:3873
1822
  msgid "Verifying the integrity of the themes"
1823
  msgstr "Integriteit van thema's controleren"
1824
 
1825
- #: ../cerber-scanner.php:3874
1826
  msgid "Searching for malicious code"
1827
  msgstr "Kwaadaardige code zoeken"
1828
 
1829
- #: ../cerber-scanner.php:3875
1830
  msgid "Finalizing the scan"
1831
  msgstr "Scan afronden"
1832
 
1833
- #: ../cerber-scanner.php:4003
1834
  msgid "Files to scan"
1835
  msgstr "Bestanden te scannen"
1836
 
1837
- #: ../cerber-scanner.php:4010
1838
  msgid "Critical issues"
1839
  msgstr "Kritieke problemen"
1840
 
1841
- #: ../cerber-scanner.php:4010 ../cerber-scanner.php:5295
1842
  msgid "Issues total"
1843
  msgstr "Totaal aan problemen"
1844
 
1845
- #: ../cerber-scanner.php:4704
1846
  msgid "File access error. Possibly scan results are outdated. Please run Quick or Full Scan."
1847
  msgstr "Fout bij bestandstoegang. Scanresultaten zijn mogelijk verouderd. Scan opnieuw."
1848
 
1849
- #: ../cerber-scanner.php:5418
1850
  msgid "To view full report visit"
1851
  msgstr "Ga voor volledig rapport naar"
1852
 
1853
- #: ../cerber-load.php:4186
1854
  msgid "Scanner Report"
1855
  msgstr "Scannerrapport"
1856
 
1857
- #: ../settings.php:827
1858
  msgid "Monitor new files"
1859
  msgstr "Nieuwe bestanden bewaken"
1860
 
1861
- #: ../settings.php:836
1862
  msgid "Monitor modified files"
1863
  msgstr "Gewijzigde bestanden bewaken"
1864
 
1865
- #: ../settings.php:903
1866
  msgid "If new issues found"
1867
  msgstr "Bij nieuw gevonden problemen"
1868
 
1869
- #: ../admin/cerber-settings.php:924
1870
  msgid "The schedule has been updated"
1871
  msgstr "Het schema is aangepast"
1872
 
1873
  #. Is it really 'directives' or do you mean 'directories' ?
1874
- #: ../cerber-scanner.php:1595 ../cerber-scanner.php:2825
1875
  msgid "Suspicious directives found"
1876
  msgstr "Verdachte instellingen gevonden"
1877
 
1878
- #: ../cerber-scanner.php:2823
1879
  msgid "Suspicious code instruction found"
1880
  msgstr "Verdachte code-instructie gevonden"
1881
 
1882
- #: ../cerber-scanner.php:2824
1883
  msgid "Suspicious code signatures found"
1884
  msgstr "Verdachte code-ondertekeningen gevonden"
1885
 
1886
- #: ../cerber-scanner.php:2827
1887
  msgid "To solve this issue you have to reinstall %s or update it to the latest version."
1888
  msgstr "Herinstalleer of update %s om dit probleem op te lossen."
1889
 
1890
- #: ../cerber-scanner.php:2828
1891
  msgid "Please upload a reference ZIP archive"
1892
  msgstr "Upload een referentie-ZIP-archief"
1893
 
1894
- #: ../cerber-scanner.php:2829
1895
  msgid "Resolve issue"
1896
  msgstr "Probleem oplossen"
1897
 
1898
- #: ../cerber-scanner.php:4103
1899
  msgid "We have not found any integrity data to verify"
1900
  msgstr "We hebben geen integriteitsgegevens ter verificatie van"
1901
 
1902
- #: ../cerber-scanner.php:4105
1903
  msgid "You have to upload a ZIP archive from which you've installed it. This enables the security scanner to verify the integrity of the code and detect malware."
1904
  msgstr "Je moet het ZIP-archief uploaden vanwaar dit is geïnstalleerd. Daarmee kan de scanner de integriteit van de code controleren en malware herkennen."
1905
 
1906
- #: ../cerber-scanner.php:5251
1907
  msgid "Full Scan Report"
1908
  msgstr "Rapport Volledige Scan"
1909
 
1910
- #: ../cerber-scanner.php:5251
1911
  msgid "Quick Scan Report"
1912
  msgstr "Rapportage Snelle Scan"
1913
 
1914
- #: ../cerber-scanner.php:5264
1915
  msgid "Files scanned"
1916
  msgstr "Bestanden gescand"
1917
 
1918
- #: ../dashboard.php:298 ../dashboard.php:1392 ../dashboard.php:1427 ../dashboard.
1919
- #: php:1550
1920
  msgid "Check for activities"
1921
  msgstr "Check op activiteiten"
1922
 
1923
- #: ../dashboard.php:1512
1924
  msgid "Activated"
1925
  msgstr "Geactiveerd"
1926
 
1927
- #: ../common.php:1343
1928
  msgid "Malicious request denied"
1929
  msgstr "Kwaadaardige request afgewezen"
1930
 
1931
- #: ../common.php:1346
1932
  msgid "User activated"
1933
  msgstr "Gebruiker-geactiveerd"
1934
 
1935
- #: ../common.php:1368
1936
  msgid "Suspicious number of fields"
1937
  msgstr "Verdacht aantal velden"
1938
 
1939
- #: ../common.php:1369
1940
  msgid "Suspicious number of nested values"
1941
  msgstr "Verdacht aantal geneste waarden"
1942
 
1943
- #: ../common.php:1370 ../common.php:1422
1944
  msgid "Malicious code detected"
1945
  msgstr "Kwaadaardige code ontdekt"
1946
 
1947
- #: ../common.php:1423
1948
  msgid "Attempt to upload a file with malicious code"
1949
  msgstr "Poging een bestand met kwaadaardige code te uploaden"
1950
 
1951
- #: ../common.php:1656
1952
  msgid "Bytes"
1953
  msgstr "Bytes"
1954
 
1955
- #: ../cerber-scanner.php:1574
1956
  msgid "Vulnerability found"
1957
  msgstr "Kwetsbaarheid gevonden"
1958
 
1959
- #: ../cerber-scanner.php:1579
1960
  msgid "Unable to check the integrity due to a DB error"
1961
  msgstr "Kan integriteit niet controleren door DB-fout"
1962
 
1963
- #: ../cerber-scanner.php:3864
1964
  msgid "Scanning the upload folder for files"
1965
  msgstr "Scan de upload-map voor bestanden"
1966
 
1967
- #: ../cerber-scanner.php:3865
1968
  msgid "Scanning the temp folder for files"
1969
  msgstr "Scan de temp-map voor bestanden"
1970
 
1971
- #: ../cerber-scanner.php:3866
1972
  msgid "Scanning the session folder for files"
1973
  msgstr "Scan de sessie-map voor bestanden"
1974
 
1975
- #: ../settings.php:867
1976
  msgid "Automated recurring scan schedule"
1977
  msgstr "Schema voor geautomatiseerde scans"
1978
 
1979
- #: ../settings.php:884
1980
  msgid "Scan results reporting"
1981
  msgstr "Rapportage scanresultaten"
1982
 
1983
- #: ../dashboard.php:948 ../dashboard.php:4005
1984
  msgid "Suspicious activity"
1985
  msgstr "Verdachte activiteit"
1986
 
1987
- #: ../dashboard.php:4006
1988
  msgid "Errors"
1989
  msgstr "Fouten"
1990
 
@@ -1997,362 +1955,355 @@ msgstr "Beschermt Wordpress tegen hack-aanvallen, spam, trojans en virussen. Mal
1997
  msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
1998
  msgstr "Je hebt de limiet aan loginpogingen bereikt. Probeer opnieuw na %d minuten."
1999
 
2000
- #: ../common.php:1570
2001
  msgctxt "preposition of a period of time like: in 6 hours"
2002
  msgid "in %s"
2003
  msgstr "over %s"
2004
 
2005
- #: ../admin/cerber-settings.php:538
2006
  msgctxt "preposition of time like: at 11:00"
2007
  msgid "at"
2008
  msgstr "om"
2009
 
2010
- #: ../dashboard.php:4690
2011
  msgid "Quarantine"
2012
  msgstr "Quarantine"
2013
 
2014
- #: ../cerber-scanner.php:3950
2015
  msgid "Started"
2016
  msgstr "Begonnen"
2017
 
2018
- #: ../cerber-scanner.php:3954
2019
  msgid "Finished"
2020
  msgstr "Geëindigd"
2021
 
2022
- #: ../cerber-scanner.php:3962
2023
  msgid "Performance"
2024
  msgstr "Prestatie"
2025
 
2026
- #: ../nexus/cerber-slave-list.php:337 ../cerber-scanner.php:3974
2027
  msgid "Vulnerabilities"
2028
  msgstr "Kwetsbaarheden"
2029
 
2030
- #: ../cerber-scanner.php:3978
2031
  msgid "New files"
2032
  msgstr "Nieuwe bestanden"
2033
 
2034
- #: ../cerber-scanner.php:3982
2035
  msgid "Changed files"
2036
  msgstr "Aangepaste bestanden"
2037
 
2038
- #: ../cerber-scanner.php:3990
2039
  msgid "Unwanted extensions"
2040
  msgstr "Ongewenste extensies"
2041
 
2042
- #: ../cerber-scanner.php:3994
2043
  msgid "Unattended files"
2044
  msgstr "Losstaande bestanden"
2045
 
2046
- #: ../cerber-scanner.php:4003 ../cerber-scanner.php:5763
2047
  msgid "Scanned"
2048
  msgstr "Gescand"
2049
 
2050
- #: ../cerber-scanner.php:5662
2051
  msgid "There are no files in the quarantine at the moment."
2052
  msgstr "Er staan nu geen bestanden in quarantaine."
2053
 
2054
- #: ../cerber-scanner.php:5752
2055
  msgid "Restore"
2056
  msgstr "Terugzetten"
2057
 
2058
- #: ../cerber-scanner.php:5749
2059
  msgid "Delete permanently"
2060
  msgstr "Verwijder definitief"
2061
 
2062
- #: ../cerber-scanner.php:5764
2063
- msgid "Moved to quarantine"
2064
- msgstr "In quarantaine gezet"
2065
-
2066
- #: ../cerber-scanner.php:5765
2067
  msgid "Automatic deletion"
2068
  msgstr "Automatische verwijdering"
2069
 
2070
- #: ../cerber-scanner.php:5766
 
2071
  msgid "Size"
2072
  msgstr "Grootte"
2073
 
2074
- #: ../cerber-scanner.php:5767 ../cerber-scanner.php:5915
2075
  msgid "File"
2076
  msgstr "Bestand"
2077
 
2078
- #: ../cerber-scanner.php:5843
2079
  msgid "The file has been deleted permanently."
2080
  msgstr "Het bestand is definitief verwijderd."
2081
 
2082
- #: ../cerber-scanner.php:5857
2083
  msgid "The file has been restored to its original location."
2084
  msgstr "Het bestand is teruggezet op de oorspronkelijke plek."
2085
 
2086
- #: ../dashboard.php:1781
2087
  msgid "Integrity"
2088
  msgstr "Integriteit"
2089
 
2090
- #: ../common.php:1332
2091
  msgid "Attempt to upload malicious file denied"
2092
  msgstr "Poging afgeweerd om kwaadaardig bestand te uploaden"
2093
 
2094
- #: ../cerber-news.php:148
2095
  msgid "Awesome!"
2096
  msgstr "Geweldig!"
2097
 
2098
- #: ../settings.php:926
2099
  msgid "Automatic cleanup of malware and suspicious files"
2100
  msgstr "Automatisch opschonen van malware en verdachte bestanden"
2101
 
2102
- #: ../settings.php:935
2103
  msgid "Files in the uploads folder"
2104
  msgstr "Bestanden in de upload-map"
2105
 
2106
- #: ../settings.php:944
2107
  msgid "Files with unwanted extensions"
2108
  msgstr "Bestanden met ongewenste extensies"
2109
 
2110
- #: ../settings.php:963
2111
  msgid "Exclusions"
2112
  msgstr "Uitsluitingen"
2113
 
2114
- #: ../settings.php:967
2115
  msgid "Files in the temporary directory"
2116
  msgstr "Bestanden in de tijdelijke map"
2117
 
2118
- #: ../settings.php:971
2119
  msgid "Files in the sessions directory"
2120
  msgstr "Bestanden in de sessie-map"
2121
 
2122
- #: ../settings.php:975
2123
  msgid "Files in these directories"
2124
  msgstr "Bestanden in deze mappen"
2125
 
2126
- #: ../settings.php:979
2127
  msgid "Use absolute paths. One item per line."
2128
  msgstr "Gebruik absolute paden; één item per regel."
2129
 
2130
- #: ../settings.php:982
2131
  msgid "Files with these extensions"
2132
  msgstr "Bestanden met deze extensies"
2133
 
2134
- #: ../settings.php:986
2135
  msgid "Use comma to separate items."
2136
  msgstr "Scheid items met komma's."
2137
 
2138
- #: ../dashboard.php:4688
2139
  msgid "Cleaning up"
2140
  msgstr "Opschonen"
2141
 
2142
- #: ../cerber-scanner.php:1590
2143
  msgid "Malicious code found"
2144
  msgstr "Kwaadaardige code gevonden"
2145
 
2146
- #: ../cerber-scanner.php:2820
2147
  msgid "This file contains executable code and may contain obfuscated malware. If this file is a part of a theme or a plugin, it must be located in the theme or the plugin folder. No exception, no excuses."
2148
  msgstr "Het bestand bevat uitvoerbare code en mogelijk verborgen malware. Maakt het deel uit van een thema of plugin, dan moet het in de desbetreffende map staan. Zonder uitzondering."
2149
 
2150
- #: ../cerber-scanner.php:2821
2151
  msgid "The scanner recognizes this file as \"ownerless\" or \"not bundled\" because it does not belong to any known part of the website and should not be here."
2152
  msgstr "De scanner ziet dit bestand als 'verweesd' of 'niet gekoppeld' omdat het bij geen enkel bekend deel van de website hoort en hier dus geen plaats heeft."
2153
 
2154
- #: ../cerber-scanner.php:2822
2155
  msgid "It may remain after upgrading to a newer version of %s. It also may be a piece of obfuscated malware. In a rare case it might be a part of a custom-made (bespoke) plugin or theme."
2156
  msgstr "Mogelijk achtergebleven bij een upgrade van %s. Het kan ook deel uitmaken van verborgen malware. Of -uitzonderlijk- bij een maatwerk plugin of thema horen."
2157
 
2158
- #: ../cerber-scanner.php:2826
2159
  msgid "The contents of the file have been changed and do not match what exists in the official WordPress repository or a reference file you have uploaded earlier. The file may have been altered by malware, infected by a virus or has been tampered with."
2160
  msgstr "De bestandsinhoud is veranderd en past niet bij wat er op de officiële WordPress-site staat of bij het referentiebestand dat je eerder hebt geüpload. Het bestand kan zijn aangepast door malware, geïnfecteerd met een virus of handmatig gewijzigd."
2161
 
2162
- #: ../cerber-scanner.php:5349
2163
  msgid "Deleted"
2164
  msgstr "Verwijderd"
2165
 
2166
- #: ../cerber-scanner.php:5402
2167
  msgid "Automatically moved to quarantine"
2168
  msgstr "Automatisch in quarantaine gezet"
2169
 
2170
- #: ../common.php:1371
2171
  msgid "Suspicious SQL code detected"
2172
  msgstr "Verdachte SQL-code gevonden"
2173
 
2174
- #: ../dashboard.php:1762
2175
  msgctxt "Example: Last malware scan: 23 Jan 2018"
2176
  msgid "Last malware scan"
2177
  msgstr "Recente malware scan"
2178
 
2179
- #: ../dashboard.php:4624
2180
  msgid "Live Traffic"
2181
  msgstr "Huidig verkeer"
2182
 
2183
- #: ../settings.php:317
2184
  msgid "Use English for admin interface"
2185
  msgstr "Maak admin interface Engelstalig"
2186
 
2187
- #: ../dashboard.php:4722
2188
- msgid "Log"
2189
- msgstr "Log"
2190
-
2191
- #: ../settings.php:338
2192
  msgid "Disable PHP in uploads"
2193
  msgstr "Zet PHP uit in uploads"
2194
 
2195
- #: ../settings.php:343
2196
  msgid "Disable PHP error displaying"
2197
  msgstr "Zet PHP foutweergave uit"
2198
 
2199
- #: ../dashboard.php:4689
2200
  msgid "Ignore List"
2201
  msgstr "Negeer-lijst"
2202
 
2203
- #: ../cerber-scanner.php:153
2204
  msgid "Ignore"
2205
  msgstr "Negeer"
2206
 
2207
- #: ../cerber-scanner.php:5880
2208
  msgid "Apply"
2209
  msgstr "Pas toe"
2210
 
2211
- #: ../cerber-scanner.php:5914
2212
  msgid "Added"
2213
  msgstr "Toegevoegd"
2214
 
2215
- #: ../cerber-scanner.php:5881 ../cerber-scanner.php:5908
2216
  msgid "Remove from the list"
2217
  msgstr "Verwijder van de lijst"
2218
 
2219
- #: ../cerber-scanner.php:5882
2220
  msgid "User Insights"
2221
  msgstr "Gebruikersinzichten"
2222
 
2223
- #: ../cerber-scanner.php:5883
2224
  msgid "Traffic Insights"
2225
  msgstr "Verkeersinzichten"
2226
 
2227
- #: ../cerber-scanner.php:5884
2228
  msgid "Activity Insights"
2229
  msgstr "Activiteitsinzichten"
2230
 
2231
- #: ../dashboard.php:2791
2232
  msgid "Are you sure you want to delete selected files?"
2233
  msgstr "Weet je zeker dat je de geselecteerde bestanden wilt wissen?"
2234
 
2235
- #: ../dashboard.php:2792
2236
  msgid "These files have been moved to the quarantine"
2237
  msgstr "Deze bestanden zijn in quarantaine gezet"
2238
 
2239
- #: ../dashboard.php:2795
2240
  msgid "Do you want to add selected files to the ignore list?"
2241
  msgstr "Wil je de geselecteerde bestanden toevoegen aan de negeer-lijst?"
2242
 
2243
- #: ../dashboard.php:2796
2244
  msgid "These files have been added to the ignore list"
2245
  msgstr "Deze bestanden zijn toegevoegd aan de negeer-lijst"
2246
 
2247
- #: ../dashboard.php:2798
2248
  msgid "Some errors occurred"
2249
  msgstr "Er zijn fouten opgetreden"
2250
 
2251
- #: ../dashboard.php:2799
2252
  msgid "All files have been processed"
2253
  msgstr "Alle bestanden zijn verwerkt"
2254
 
2255
- #: ../dashboard.php:5010
2256
  msgid "These features are available in a professional version of the plugin."
2257
  msgstr "Deze functies zijn beschikbaar in de betaalde versie van de plugin."
2258
 
2259
- #: ../dashboard.php:5011
2260
  msgid "Know more about all advantages at"
2261
  msgstr "Leer alle voordelen kennen op"
2262
 
2263
- #: ../common.php:1372
2264
  msgid "Suspicious JavaScript code detected"
2265
  msgstr "Verdachte JavaScript-code ontdekt"
2266
 
2267
- #: ../admin/cerber-settings.php:927
2268
  msgid "Unable to update the schedule"
2269
  msgstr "Kan het schema niet vernieuwen"
2270
 
2271
- #: ../cerber-scanner.php:5781
2272
  msgid "All scans"
2273
  msgstr "Alle scans"
2274
 
2275
- #: ../cerber-scanner.php:5886
2276
  msgid "The list is empty."
2277
  msgstr "De lijst is leeg."
2278
 
2279
- #: ../cerber-scanner.php:5729
2280
  msgid "No files match the specified filter."
2281
  msgstr "Het filter levert geen bestanden op."
2282
 
2283
- #: ../cerber-scanner.php:5729
2284
  msgid "Click here to see the full list of files"
2285
  msgstr "Klik hier om de hele bestandenlijst te zien"
2286
 
2287
- #: ../dashboard.php:836
2288
  msgid "Additional Details"
2289
  msgstr "Aanvullende details"
2290
 
2291
- #: ../dashboard.php:3556
2292
  msgid "Page generation time"
2293
  msgstr "Aanmaaktijd pagina"
2294
 
2295
- #: ../dashboard.php:5046
2296
  msgid "Log In"
2297
  msgstr "Inloggen"
2298
 
2299
- #: ../dashboard.php:5047
2300
  msgid "Log Out"
2301
  msgstr "Uitloggen"
2302
 
2303
- #: ../dashboard.php:5048
2304
  msgid "Register"
2305
  msgstr "Aanmelden"
2306
 
2307
- #: ../dashboard.php:5051
2308
  msgid "WooCommerce Log In"
2309
  msgstr "WooCommerce Log In"
2310
 
2311
- #: ../dashboard.php:5052
2312
  msgid "WooCommerce Log Out"
2313
  msgstr "WooCommerce Log Out"
2314
 
2315
- #: ../dashboard.php:5091 ../dashboard.php:5092
2316
  msgid "Add to menu"
2317
  msgstr "Aan menu toevoegen"
2318
 
2319
- #: ../common.php:1360
2320
  msgid "IP address is locked out"
2321
  msgstr "IP-adres is uitgesloten"
2322
 
2323
- #: ../common.php:1426
2324
  msgid "Multiple suspicious requests"
2325
  msgstr "Meerdere verdachte verzoeken"
2326
 
2327
- #: ../settings.php:688
2328
  msgid "Traffic Inspection"
2329
  msgstr "Verkeersinspectie"
2330
 
2331
- #: ../settings.php:697 ../settings.php:725
2332
  msgid "Maximum compatibility"
2333
  msgstr "Maximale compatibiliteit"
2334
 
2335
- #: ../settings.php:698 ../settings.php:726
2336
  msgid "Maximum security"
2337
  msgstr "Maximale veiligheid"
2338
 
2339
- #: ../settings.php:716
2340
  msgid "Erroneous Request Shielding"
2341
  msgstr "Afschermen foutieve requests"
2342
 
2343
- #: ../settings.php:721
2344
  msgid "Enable error shielding"
2345
  msgstr "Foutafscherming aanzetten"
2346
 
2347
- #: ../settings.php:779
2348
  msgid "Save software errors"
2349
  msgstr "Softwarefouten opslaan"
2350
 
2351
- #: ../cerber-scanner.php:3862
2352
  msgid "Preparing for the scan"
2353
  msgstr "Scan voorbereiden"
2354
 
2355
- #: ../common.php:1373
2356
  msgid "Blocked by administrator"
2357
  msgstr "Geblokkeerd door de beheerder"
2358
 
@@ -2368,7 +2319,7 @@ msgstr "Blokkeer gebruiker"
2368
  msgid "User is not permitted to log into the website"
2369
  msgstr "Gebruiker mag niet inloggen op de site"
2370
 
2371
- #: ../cerber-users.php:68 ../settings.php:508
2372
  msgid "User Message"
2373
  msgstr "bericht van gebruiker"
2374
 
@@ -2380,115 +2331,115 @@ msgstr "Een optioneel bericht voor deze gebruiker"
2380
  msgid "Blocked Users"
2381
  msgstr "Geblokkeerde Gebruikers"
2382
 
2383
- #: ../settings.php:329
2384
  msgid "Block access to user pages like /?author=n"
2385
  msgstr "Blokkeer toegang tot gebruikerspagina's als /?author=n"
2386
 
2387
- #: ../settings.php:359
2388
  msgid "Access to WordPress REST API"
2389
  msgstr "Toegang tot WordPress REST API"
2390
 
2391
- #: ../settings.php:370
2392
  msgid "Block access to WordPress REST API except any of the following"
2393
  msgstr "Blokkeer toegang tot gebruikersdata via REST API behalve"
2394
 
2395
- #: ../settings.php:380
2396
  msgid "Allow REST API for these roles"
2397
  msgstr "Sta REST API toe voor deze rollen"
2398
 
2399
- #: ../settings.php:385
2400
  msgid "Allow these namespaces"
2401
  msgstr "Sta deze naamruimtes toe"
2402
 
2403
- #: ../settings.php:730
2404
  msgid "Ignore logged in users"
2405
  msgstr "Negeer ingelogde gebruikers"
2406
 
2407
- #: ../settings.php:122
2408
  msgid "These restrictions do not apply to IP addresses in the White IP Access List"
2409
  msgstr "Deze beperkingen gelden niet voor IP-adressen op de Toegelaten Lijst"
2410
 
2411
- #: ../admin/cerber-settings.php:498
2412
  msgid "Select one or more roles"
2413
  msgstr "Kies een of meer rollen"
2414
 
2415
- #: ../dashboard.php:1147
2416
  msgid "Filter by registered user"
2417
  msgstr "Gefilterd door een geregistreerde gebruiker"
2418
 
2419
- #: ../settings.php:494
2420
  msgid "Authorized users only"
2421
  msgstr "Alleen bevoegde gebruikers"
2422
 
2423
- #: ../settings.php:495
2424
  msgid "Only registered and logged in website users have access to the website"
2425
  msgstr "Alleen geregistreerde en ingelogde gebruikers hebben toegang tot de website"
2426
 
2427
- #: ../settings.php:512 ../settings.php:1419
2428
  msgid "Only registered and logged in users are allowed to view this website"
2429
  msgstr "Alleen geregistreerde en ingelogde gebruikers mogen de website bekijken"
2430
 
2431
- #: ../settings.php:517
2432
  msgid "Redirect to URL"
2433
  msgstr "Omleiding naar URL"
2434
 
2435
- #: ../dashboard.php:4723
2436
  msgid "Changelog"
2437
  msgstr "Log van aanpassingen"
2438
 
2439
- #: ../dashboard.php:629
2440
  msgid "Default settings have been loaded"
2441
  msgstr "Standaardinstellingen zijn geladen"
2442
 
2443
- #: ../dashboard.php:3264
2444
  msgid "Save all rules"
2445
  msgstr "Alle regels opslaan"
2446
 
2447
- #: ../dashboard.php:3135 ../admin/cerber-settings.php:599
2448
  msgid "Save Changes"
2449
  msgstr "Veranderingen opslaan"
2450
 
2451
- #: ../common.php:1349
2452
  msgid "Invalid master credentials"
2453
  msgstr "Ongeldige hoofd-inloggegevens"
2454
 
2455
- #: ../settings.php:1124
2456
  msgid "Master settings"
2457
  msgstr "Hoofdinstellingen"
2458
 
2459
- #: ../settings.php:1132
2460
  msgid "Return to the website list"
2461
  msgstr "Terug naar de website-lijst"
2462
 
2463
- #: ../settings.php:1136
2464
  msgid "Show \"Switched to\" notification"
2465
  msgstr "Toon 'Omgeschakeld naar'-melding"
2466
 
2467
- #: ../settings.php:1140
2468
  msgid "Add @ site to the page title"
2469
  msgstr "Voeg '@site' toe aan de paginakop"
2470
 
2471
- #: ../settings.php:853 ../settings.php:1157 ../settings.php:1184
2472
  msgid "Enable diagnostic logging"
2473
  msgstr "Diagnostische logging aanzetten"
2474
 
2475
- #: ../settings.php:1167
2476
  msgid "Limit access by IP address"
2477
  msgstr "Toegang beperken op IP-adres"
2478
 
2479
- #: ../settings.php:1173
2480
  msgid "Access to this website"
2481
  msgstr "Toegang tot deze website"
2482
 
2483
- #: ../settings.php:1176
2484
  msgid "Full access mode"
2485
  msgstr "Volledige-toegangs-modus"
2486
 
2487
- #: ../settings.php:1177
2488
  msgid "Read-only mode"
2489
  msgstr "Alleen-lezen-modus"
2490
 
2491
- #: ../settings.php:1197
2492
  msgid "The full access mode requires the PRO version of WP Cerber"
2493
  msgstr "Volledige toegang tot alle functies vergt WP Cerber PRO"
2494
 
@@ -2504,27 +2455,27 @@ msgstr "Malware Scan"
2504
  msgid "Notes"
2505
  msgstr "Aantekeningen"
2506
 
2507
- #: ../nexus/cerber-slave-list.php:160
2508
  msgid "Add a slave website"
2509
  msgstr "Voeg een 'slave'-website toe"
2510
 
2511
- #: ../cerber-users.php:1061 ../nexus/cerber-slave-list.php:244
2512
  msgid "Search results for:"
2513
  msgstr "Zoekresultaten voor:"
2514
 
2515
- #: ../nexus/cerber-slave-list.php:279
2516
  msgid "Edit"
2517
  msgstr "Aanpassen"
2518
 
2519
- #: ../nexus/cerber-slave-list.php:285
2520
  msgid "Switch to"
2521
  msgstr "Ga naar:"
2522
 
2523
- #: ../nexus/cerber-slave-list.php:413
2524
  msgid "No websites configured."
2525
  msgstr "Geen website geconfigureerd."
2526
 
2527
- #: ../nexus/cerber-slave-list.php:413
2528
  msgid "Add a new one"
2529
  msgstr "Voeg een nieuwe toe"
2530
 
@@ -2615,7 +2566,7 @@ msgstr "Mijn Websites"
2615
  msgid "Visit Site"
2616
  msgstr "Bezoek Site"
2617
 
2618
- #: ../cerber-load.php:5136 ../nexus/cerber-nexus.php:64
2619
  msgid "Enable slave mode"
2620
  msgstr "'Slave'-modus aanzetten"
2621
 
@@ -2672,13 +2623,13 @@ msgid "Install the access token on the master website."
2672
  msgstr "Installeer het toegangscertificaat op de hoofdwebsite."
2673
 
2674
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
2675
- #: ../common.php:1563
2676
  msgid "%s sec"
2677
  msgid_plural "%s secs"
2678
  msgstr[0] "%s sec"
2679
  msgstr[1] "%s sec"
2680
 
2681
- #: ../settings.php:671
2682
  msgid "Send reports on"
2683
  msgstr "Verstuur rapportages op"
2684
 
@@ -2702,7 +2653,7 @@ msgstr "Upgrade alle actieve plugins"
2702
  msgid "Delete website"
2703
  msgstr "Verwijder website"
2704
 
2705
- #: ../nexus/cerber-slave-list.php:134
2706
  msgid "All groups"
2707
  msgstr "Alle groepen"
2708
 
@@ -2726,23 +2677,23 @@ msgstr "Organisatie"
2726
  msgid "Invalid response from the slave website"
2727
  msgstr "Ongeldig antwoord van de 'slave'-website"
2728
 
2729
- #: ../common.php:1326 ../common.php:1416
2730
  msgid "Attempt to log in with non-existing username"
2731
  msgstr "Inlogpoging met onbekende gebruikersnaam"
2732
 
2733
- #: ../cerber-load.php:4336
2734
  msgid "Attempts to log in with non-existing usernames"
2735
  msgstr "Pogingen om in te loggen met een onbekende gebruikersnaam"
2736
 
2737
- #: ../settings.php:1144
2738
  msgid "Use master language"
2739
  msgstr "Gebruik hoofdtaal"
2740
 
2741
- #: ../settings.php:171
2742
  msgid "Non-existing users"
2743
  msgstr "Niet-bestaande gebruikers"
2744
 
2745
- #: ../settings.php:172
2746
  msgid "Immediately block IP when attempting to log in with a non-existing username"
2747
  msgstr "IP meteen blokkeren bij inlogpoging op niet-bestaande gebruiker"
2748
 
@@ -2750,7 +2701,7 @@ msgstr "IP meteen blokkeren bij inlogpoging op niet-bestaande gebruiker"
2750
  msgid "Owner"
2751
  msgstr "Eigenaar"
2752
 
2753
- #: ../nexus/cerber-slave-list.php:413
2754
  msgid "Disable master mode"
2755
  msgstr "Zet beheermodus uit"
2756
 
@@ -2758,7 +2709,7 @@ msgstr "Zet beheermodus uit"
2758
  msgid "To revoke the token and disable remote management, click here:"
2759
  msgstr "Om het certificaat in te trekken en beheer op afstand te stoppen, klik hier:"
2760
 
2761
- #: ../settings.php:339
2762
  msgid "Block execution of PHP scripts in the WordPress media folder"
2763
  msgstr "Voorkom uitvoeren van PHP-scripts in de WordPress media-map"
2764
 
@@ -2770,31 +2721,31 @@ msgstr "Actieve plugins en updates op"
2770
  msgid "A newer version is available"
2771
  msgstr "Er staat een nieuwere versie klaar"
2772
 
2773
- #: ../dashboard.php:942
2774
  msgid "New users"
2775
  msgstr "Nieuwe gebruikers"
2776
 
2777
- #: ../dashboard.php:955
2778
  msgid "My activity"
2779
  msgstr "Mijn activiteiten"
2780
 
2781
- #: ../dashboard.php:2571
2782
  msgid "Create Alert"
2783
  msgstr "Waarschuwing aanmaken"
2784
 
2785
- #: ../dashboard.php:2575
2786
  msgid "Delete Alert"
2787
  msgstr "Waarschuwing verwijderen"
2788
 
2789
- #: ../dashboard.php:2608
2790
  msgid "The alert has been created"
2791
  msgstr "Waarschuwing aangemaakt"
2792
 
2793
- #: ../dashboard.php:2612
2794
  msgid "The alert has been deleted"
2795
  msgstr "Waarschuwing verwijderd"
2796
 
2797
- #: ../dashboard.php:4032
2798
  msgid "Advanced Search"
2799
  msgstr "Geavanceerd zoeken"
2800
 
@@ -2803,79 +2754,79 @@ msgstr "Geavanceerd zoeken"
2803
  msgid "Cerber Tech Inc."
2804
  msgstr "Cerber Tech Inc."
2805
 
2806
- #: ../cerber-load.php:4865
2807
  msgid "To delete the alert, click here"
2808
  msgstr "Klik om waarschuwing te verwijderen"
2809
 
2810
- #: ../settings.php:204
2811
  msgid "Custom login URL may contain Latin alphanumeric characters, dashes and underscores only"
2812
  msgstr "Gebruik letters, cijfers, koppelstreepjes of onderstrepingen voor de eigen login-URL"
2813
 
2814
- #: ../settings.php:216
2815
  msgid "Site-specific settings"
2816
  msgstr "Site-specifieke instellingen"
2817
 
2818
- #: ../settings.php:224
2819
  msgid "Prefix for plugin cookies"
2820
  msgstr "Voorvoegsel voor plugin-cookies"
2821
 
2822
- #: ../settings.php:225
2823
  msgid "Prefix may contain only Latin alphanumeric characters and underscores"
2824
  msgstr "Gebruik letters, cijfers of onderstrepingen voor het voorvoegsel"
2825
 
2826
- #: ../settings.php:624
2827
  msgid "Lockout notifications"
2828
  msgstr "Melding van uitsluitingen"
2829
 
2830
- #: ../settings.php:653
2831
  msgid "Pushbullet access token"
2832
  msgstr "Pushbullet access token"
2833
 
2834
- #: ../settings.php:656
2835
  msgid "Pushbullet device"
2836
  msgstr "Pushbullet apparaat"
2837
 
2838
- #: ../settings.php:931
2839
  msgid "Delete unattended files"
2840
  msgstr "Verwijder verweesde bestanden"
2841
 
2842
- #: ../settings.php:950
2843
  msgid "Automatic recovery of modified and infected files"
2844
  msgstr "Automatisch herstel van aangepaste en geïnfecteerde bestanden"
2845
 
2846
- #: ../settings.php:953
2847
  msgid "Recover WordPress files"
2848
  msgstr "Herstel Wordpress-bestanden"
2849
 
2850
- #: ../settings.php:957
2851
  msgid "Recover plugins files"
2852
  msgstr "Herstel plugin-bestanden"
2853
 
2854
- #: ../cerber-scanner.php:1602
2855
  msgid "File deleted"
2856
  msgstr "Bestand verwijderd"
2857
 
2858
- #: ../cerber-scanner.php:1603
2859
  msgid "File recovered"
2860
  msgstr "Bestand hersteld"
2861
 
2862
- #: ../cerber-scanner.php:3870
2863
  msgid "Recovering WordPress files"
2864
  msgstr "Wordpress-bestanden aan het herstellen"
2865
 
2866
- #: ../cerber-scanner.php:3872
2867
  msgid "Recovering plugins files"
2868
  msgstr "Plugin-bestanden aan het herstellen"
2869
 
2870
- #: ../cerber-scanner.php:5353
2871
  msgid "Recovered"
2872
  msgstr "Hersteld"
2873
 
2874
- #: ../cerber-scanner.php:5403
2875
  msgid "Automatically deleted"
2876
  msgstr "Automatisch verwijderd"
2877
 
2878
- #: ../cerber-scanner.php:5406
2879
  msgid "Automatically recovered"
2880
  msgstr "Automatisch hersteld"
2881
 
@@ -2883,51 +2834,47 @@ msgstr "Automatisch hersteld"
2883
  msgid "Cerber User Security"
2884
  msgstr "Cerber Gebruikersbeveiliging"
2885
 
2886
- #: ../dashboard.php:64 ../dashboard.php:4648
2887
  msgid "User Policies"
2888
  msgstr "Gebruikersbeleid"
2889
 
2890
- #: ../dashboard.php:1784
2891
  msgid "A new version is available"
2892
  msgstr "Er is een nieuwe versie beschikbaar"
2893
 
2894
- #: ../dashboard.php:4650
2895
  msgid "Role-based"
2896
  msgstr "Rolgebaseerd"
2897
 
2898
- #: ../dashboard.php:4651
2899
  msgid "Global"
2900
  msgstr "Mondiaal"
2901
 
2902
- #: ../common.php:1374
2903
  msgid "Site policy enforcement"
2904
  msgstr "Afdwingen gebruiksvoorwaarden site"
2905
 
2906
- #: ../common.php:1375
2907
  msgid "2FA code verified"
2908
  msgstr "2FA code geverifieerd"
2909
 
2910
- #: ../common.php:1376
2911
  msgid "Initiated by the user"
2912
  msgstr "Gestart door gebruiker"
2913
 
2914
- #: ../common.php:1379
2915
- msgid "Email address is not permitted"
2916
- msgstr "E-mail-adres niet toegestaan"
2917
-
2918
- #: ../common.php:1762
2919
  msgid "A new version of %s is available. Please install it."
2920
  msgstr "Er is een nieuwe versie van %s. Installeer het."
2921
 
2922
- #: ../cerber-load.php:1574
2923
  msgid "Email address is not permitted."
2924
  msgstr "E-mail-adres niet toegestaan."
2925
 
2926
- #: ../cerber-load.php:1574
2927
  msgid "Please choose another one."
2928
  msgstr "Kies een andere."
2929
 
2930
- #: ../cerber-users.php:10 ../cerber-users.php:438
2931
  msgid "Two-Factor Authentication"
2932
  msgstr "Dubbele authenticatie"
2933
 
@@ -2935,7 +2882,7 @@ msgstr "Dubbele authenticatie"
2935
  msgid "Determined by user role policies"
2936
  msgstr "Bepaald door gebruikersrol"
2937
 
2938
- #: ../cerber-users.php:19 ../cerber-users.php:446
2939
  msgid "Always enabled"
2940
  msgstr "Altijd aan"
2941
 
@@ -2947,103 +2894,103 @@ msgstr "2FA Pincode"
2947
  msgid "Save All Changes"
2948
  msgstr "Sla wijzigingen op"
2949
 
2950
- #: ../cerber-users.php:400
2951
  msgid "Block access to WordPress Dashboard"
2952
  msgstr "Blokkeer toegang tot het Wordpress Dashboard"
2953
 
2954
- #: ../cerber-users.php:405
2955
  msgid "Hide Toolbar when viewing site"
2956
  msgstr "Verberg Toolbar bij bekijken site"
2957
 
2958
- #: ../cerber-users.php:411
2959
  msgid "Redirection rules"
2960
  msgstr "Regels voor doorverwijzing"
2961
 
2962
- #: ../cerber-users.php:415
2963
  msgid "Redirect user after login"
2964
  msgstr "Verwijs gebruiker door na login"
2965
 
2966
- #: ../cerber-users.php:420
2967
  msgid "Redirect user after logout"
2968
  msgstr "Verwijs gebruiker door na logout"
2969
 
2970
- #: ../cerber-users.php:431 ../settings.php:557
2971
  msgid "User session expiration time"
2972
  msgstr "Afkaptijd gebruikerssessie"
2973
 
2974
- #: ../cerber-users.php:442
2975
  msgid "Two-factor authentication"
2976
  msgstr "Dubbele authenticatie"
2977
 
2978
- #: ../cerber-users.php:447
2979
  msgid "Advanced mode"
2980
  msgstr "Geavanceerde modus"
2981
 
2982
- #: ../cerber-users.php:451
2983
  msgid "Enforce two-factor authentication if any of the following conditions is true"
2984
  msgstr "Dwing dubbele authenticatie af als enige van deze voorwaarden waar is"
2985
 
2986
- #: ../cerber-users.php:457
2987
  msgid "Login from a different country"
2988
  msgstr "Aanmelding uit een ander land"
2989
 
2990
- #: ../cerber-users.php:463
2991
  msgid "Login from a different network Class C"
2992
  msgstr "Aanmelding vanaf een ander klasse-C-netwerk"
2993
 
2994
- #: ../cerber-users.php:469
2995
  msgid "Login from a different IP address"
2996
  msgstr "Aanmelding vanaf een ander IP-adres"
2997
 
2998
- #: ../cerber-users.php:475
2999
  msgid "Using a different browser or device"
3000
  msgstr "Met gebruikmaking van een andere browser of ander apparaat"
3001
 
3002
- #: ../cerber-users.php:481
3003
  msgid "Enforce two-factor authentication with fixed intervals"
3004
  msgstr "Dwing met vaste regelmaat dubbele authenticatie af"
3005
 
3006
- #: ../cerber-users.php:487
3007
  msgid "Regular time intervals (days)"
3008
  msgstr "Geregelde tijdsinterval (dagen)"
3009
 
3010
- #: ../cerber-users.php:489
3011
  msgid "days interval"
3012
  msgstr "dagen interval"
3013
 
3014
- #: ../cerber-users.php:494
3015
  msgid "Fixed number of logins"
3016
  msgstr "Vast aantal aanmeldingen"
3017
 
3018
- #: ../cerber-users.php:496
3019
  msgid "number of logins"
3020
  msgstr "aantal aanmeldingen"
3021
 
3022
- #: ../cerber-users.php:538
3023
  msgid "Policies have been updated"
3024
  msgstr "Beleid is vernieuwd"
3025
 
3026
- #: ../settings.php:532
3027
  msgid "Restrict email addresses"
3028
  msgstr "Beperk e-mail-adressen"
3029
 
3030
- #: ../settings.php:535
3031
  msgid "No restrictions"
3032
  msgstr "Geen beperkingen"
3033
 
3034
- #: ../settings.php:536
3035
  msgid "Deny all email addresses that match the following"
3036
  msgstr "Wijs mailadressen af die voldoen aan het volgende"
3037
 
3038
- #: ../settings.php:537
3039
  msgid "Permit only email addresses that match the following"
3040
  msgstr "Sta alleen mailadressen toe die voldoen aan het volgende"
3041
 
3042
- #: ../settings.php:542
3043
  msgid "Specify email addresses, wildcards or REGEX patterns. Use comma to separate items."
3044
  msgstr "Geef e-mailadressen, jokertekens of REGEX-patronen op. Scheid items met komma's."
3045
 
3046
- #: ../settings.php:964
3047
  msgid "These files will never be deleted during automatic cleanup."
3048
  msgstr "Deze bestanden worden nooit gewist bij een automatische schoonmaak."
3049
 
@@ -3111,11 +3058,11 @@ msgstr "Valideer"
3111
  msgid "Two-Factor Authentication Email"
3112
  msgstr "E-mail voor dubbele authenticatie"
3113
 
3114
- #: ../dashboard.php:3207
3115
  msgid "Role-based rules are configured"
3116
  msgstr "Rolgebaseerde regels worden ingesteld"
3117
 
3118
- #: ../dashboard.php:3401
3119
  msgid "All Users"
3120
  msgstr "Alle gebruikers"
3121
 
@@ -3128,76 +3075,76 @@ msgstr "geblokkeerd door %s om %s"
3128
  msgid "The code is valid for %s minutes."
3129
  msgstr "De code is %s minuten geldig."
3130
 
3131
- #: ../dashboard.php:345
3132
  msgid "IP address %s has been added to White IP Access List"
3133
  msgstr "IP-adres %s staat nu op de lijst toegelaten adressen"
3134
 
3135
- #: ../dashboard.php:342
3136
  msgid "IP address %s has been added to Black IP Access List"
3137
  msgstr "IP-adres %s staat nu op de lijst verboden adressen"
3138
 
3139
- #: ../dashboard.php:833 ../dashboard.php:1079 ../dashboard.php:3976 ../cerber-
3140
- #: users.php:973
3141
  msgid "IP Address"
3142
  msgstr "IP-adres"
3143
 
3144
- #: ../dashboard.php:840 ../dashboard.php:1085
3145
  msgid "Username"
3146
  msgstr "Gebruikersnaam"
3147
 
3148
- #: ../dashboard.php:3289
3149
  msgid "Any country is permitted"
3150
  msgstr "Elk land is toegestaan"
3151
 
3152
- #: ../dashboard.php:4558
3153
  msgid "Sessions"
3154
  msgstr "Sessies"
3155
 
3156
- #: ../cerber-users.php:612
3157
  msgid "Session has been terminated"
3158
  msgid_plural "%s sessions have been terminated"
3159
  msgstr[0] "De sessie is gestopt"
3160
  msgstr[1] "%s sessies zijn gestopt"
3161
 
3162
- #: ../cerber-users.php:971
3163
  msgid "Created"
3164
  msgstr "Aangemaakt"
3165
 
3166
- #: ../cerber-users.php:992
3167
  msgid "Terminate session"
3168
  msgstr "Beëindig sessie"
3169
 
3170
- #: ../cerber-users.php:993
3171
  msgid "Block user"
3172
  msgstr "Blokkeer gebruiker"
3173
 
3174
- #: ../cerber-users.php:1103
3175
  msgid "Profile"
3176
  msgstr "Profiel"
3177
 
3178
- #: ../cerber-users.php:1116
3179
  msgid "All Logins"
3180
  msgstr "Alle log-ins"
3181
 
3182
- #: ../cerber-users.php:1117
3183
  msgid "User Activity"
3184
  msgstr "Gebruikersactiviteit"
3185
 
3186
- #: ../cerber-users.php:1163
3187
  msgid "Terminate"
3188
  msgstr "Beëindig"
3189
 
3190
- #: ../dashboard.php:1734
3191
  msgid "user"
3192
  msgid_plural "users"
3193
  msgstr[0] "gebruiker"
3194
  msgstr[1] "gebruikers"
3195
 
3196
- #: ../settings.php:365
3197
  msgid "Block access to users' data via REST API"
3198
  msgstr "Blokkeer toegang tot gebruikersdata via de REST API"
3199
 
3200
- #: ../cerber-scanner.php:1601
3201
  msgid "Unable to delete"
3202
  msgstr "Kan niet verwijderen"
3203
 
@@ -3209,99 +3156,99 @@ msgstr "Cerber Data Shield instellingen"
3209
  msgid "Data Shield"
3210
  msgstr "Data Shield"
3211
 
3212
- #: ../dashboard.php:4638
3213
  msgid "Data Shield Policies"
3214
  msgstr "Data Shield instellingen"
3215
 
3216
- #: ../dashboard.php:4640
3217
  msgid "Accounts & Roles"
3218
  msgstr "Accounts & Rollen"
3219
 
3220
- #: ../dashboard.php:4641
3221
  msgid "Site Settings"
3222
  msgstr "Site-instellingen"
3223
 
3224
- #: ../common.php:1337
3225
  msgid "User creation denied"
3226
  msgstr "Gebruiker aanmaken afgewezen"
3227
 
3228
- #: ../common.php:1339
3229
  msgid "Role update denied"
3230
  msgstr "Bijwerken Rol afgewezen"
3231
 
3232
- #: ../common.php:1340
3233
  msgid "Setting update denied"
3234
  msgstr "Bijwerken instellingen afgewezen"
3235
 
3236
- #: ../common.php:1381
3237
  msgid "Permission denied"
3238
  msgstr "Toestemming geweigerd"
3239
 
3240
- #: ../common.php:1383
3241
  msgid "Invalid user"
3242
  msgstr "Ongeldige gebruiker"
3243
 
3244
- #: ../common.php:1384
3245
  msgid "Incorrect password"
3246
  msgstr "Onjuist wachtwoord"
3247
 
3248
- #: ../settings.php:396
3249
  msgid "Protect user accounts"
3250
  msgstr "Bescherm gebruiker-accounts"
3251
 
3252
- #: ../settings.php:401
3253
  msgid "Restrict user account creation and user management with the following policies"
3254
  msgstr "Beperk aanmaak gebruikers-accounts en gebruikerbeheer met de volgende instellingen"
3255
 
3256
- #: ../settings.php:407
3257
  msgid "User registrations are limited to these roles"
3258
  msgstr "Gebruikersregistratie is beperkt tot deze rollen"
3259
 
3260
- #: ../settings.php:413
3261
  msgid "Users with these roles are permitted to create new accounts"
3262
  msgstr "Gebruikers in deze rol kunnen nieuwe accounts aanmaken"
3263
 
3264
- #: ../settings.php:418
3265
  msgid "Users with these roles are permitted to change sensitive user data"
3266
  msgstr "Gebruikers in deze rol kunnen gebruikersdata aanpassen"
3267
 
3268
- #: ../settings.php:423 ../settings.php:451 ../settings.php:480
3269
  msgid "Do not apply these policies to the IP addresses in the White IP Access List"
3270
  msgstr "Pas deze instellingen niet toe op de lijst toegelaten IP-adressen"
3271
 
3272
- #: ../settings.php:431
3273
  msgid "Protect user roles"
3274
  msgstr "Bescherm gebruikersrollen"
3275
 
3276
- #: ../settings.php:435
3277
  msgid "Restrict roles and capabilities management with the following policies"
3278
  msgstr "Beperk beheer van rollen en instellingen met deze maatregelen"
3279
 
3280
- #: ../settings.php:441
3281
  msgid "Users with these roles are permitted to add new roles"
3282
  msgstr "Gebruikers in deze rol kunnen nieuwe rollen toevoegen"
3283
 
3284
- #: ../settings.php:446
3285
  msgid "Users with these roles are permitted to change role capabilities"
3286
  msgstr "Gebruikers in deze rol kunnen rol-instellingen aanpassen"
3287
 
3288
- #: ../settings.php:459
3289
  msgid "Protect site settings"
3290
  msgstr "Bescherm site-instellingen"
3291
 
3292
- #: ../settings.php:463
3293
  msgid "Restrict updating site settings with the following policies"
3294
  msgstr "Beperk het bijwerken van site-instellingen met deze maatregelen"
3295
 
3296
- #: ../settings.php:469
3297
  msgid "Users with these roles are permitted to change protected settings"
3298
  msgstr "Gebruikers in deze rol mogen beschermde instellingen aanpassen"
3299
 
3300
- #: ../settings.php:474
3301
  msgid "Protected settings"
3302
  msgstr "Beschermde instellingen"
3303
 
3304
- #: ../settings.php:502
3305
  msgid "Do not apply these policy to the IP addresses in the White IP Access List"
3306
  msgstr "Pas deze instelling niet toe op de lijst toegelaten IP-adressen"
3307
 
@@ -3341,11 +3288,11 @@ msgstr "Server"
3341
  msgid "Server Country"
3342
  msgstr "Land van server"
3343
 
3344
- #: ../nexus/cerber-slave-list.php:144
3345
  msgid "All servers"
3346
  msgstr "Alle servers"
3347
 
3348
- #: ../nexus/cerber-slave-list.php:151
3349
  msgid "All countries"
3350
  msgstr "Alle landen"
3351
 
@@ -3357,47 +3304,47 @@ msgstr "Toon thuispagina in de Website-kolom"
3357
  msgid "Hide server IP address"
3358
  msgstr "Verberg IP-adres server"
3359
 
3360
- #: ../dashboard.php:314
3361
  msgid "IP address, range, wildcard, or CIDR"
3362
  msgstr "IP-adres, -reeks, -jokerteken of CIDR"
3363
 
3364
- #: ../dashboard.php:315
3365
  msgid "Add Entry"
3366
  msgstr "Voeg toe"
3367
 
3368
- #: ../dashboard.php:4875
3369
  msgid "The IP address you are trying to add is already in the list"
3370
  msgstr "Het IP-adres dat je wilt toevoegen, staat al in de lijst"
3371
 
3372
- #: ../common.php:1302
3373
  msgid "IP subnet blocked"
3374
  msgstr "IP subnet geblokkeerd"
3375
 
3376
- #: ../common.php:1338
3377
  msgid "User row update denied"
3378
  msgstr "Aanpassing rij van gebruiker geweigerd"
3379
 
3380
- #: ../common.php:1341
3381
  msgid "User metadata update denied"
3382
  msgstr "Aanpassing metadata gebruiker geweigerd"
3383
 
3384
- #: ../settings.php:1265
3385
  msgid "Any activity"
3386
  msgstr "Enige activiteit"
3387
 
3388
- #: ../cerber-tools.php:139
3389
  msgid "A database error occurred while importing access list entries"
3390
  msgstr "Import van de toegangslijst leidde tot een database-fout"
3391
 
3392
- #: ../settings.php:237
3393
  msgid "Enable authentication log monitoring"
3394
  msgstr "Houd logboek voor aanmeldingen bij"
3395
 
3396
- #: ../settings.php:269 ../settings.php:788
3397
  msgid "Keep log records of not logged in visitors for"
3398
  msgstr "Leg niet-aangemelde bezoekers vast voor"
3399
 
3400
- #: ../settings.php:275 ../settings.php:793
3401
  msgid "Keep log records of logged in users for"
3402
  msgstr "Leg aangemelde gebruikers vast voor"
3403
 
@@ -3405,47 +3352,47 @@ msgstr "Leg aangemelde gebruikers vast voor"
3405
  msgid "Admin Note"
3406
  msgstr "Aantekening Admin"
3407
 
3408
- #: ../cerber-users.php:942
3409
  msgid "WP Cerber Personal Data Eraser"
3410
  msgstr "WP Cerber Persoonlijke Data Wisser"
3411
 
3412
- #: ../settings.php:573
3413
  msgid "Personal Data"
3414
  msgstr "Persoonlijke Gegevens"
3415
 
3416
- #: ../settings.php:579
3417
  msgid "Enable data erase"
3418
  msgstr "Gegevens wissen inschakelen"
3419
 
3420
- #: ../settings.php:586
3421
  msgid "Terminate user sessions"
3422
  msgstr "Beëindig gebruikerssessies"
3423
 
3424
- #: ../settings.php:587
3425
  msgid "Delete user sessions data when user data is erased"
3426
  msgstr "Verwijder gegevens gebruikerssessies als gebruikersinformatie wordt gewist"
3427
 
3428
- #: ../settings.php:593
3429
  msgid "Enable data export"
3430
  msgstr "Gegevensexport inschakelen"
3431
 
3432
- #: ../settings.php:600
3433
  msgid "Include activity log events"
3434
  msgstr "Voeg activiteitenlog toe"
3435
 
3436
- #: ../settings.php:606
3437
  msgid "Include traffic log entries"
3438
  msgstr "Voeg verkeersinformatie toe"
3439
 
3440
- #: ../settings.php:609
3441
  msgid "Request URL"
3442
  msgstr "URL opvragen"
3443
 
3444
- #: ../settings.php:610
3445
  msgid "Form fields data"
3446
  msgstr "Gegevens formuliervelden"
3447
 
3448
- #: ../settings.php:611
3449
  msgid "Cookies"
3450
  msgstr "Cookies"
3451
 
@@ -3453,7 +3400,7 @@ msgstr "Cookies"
3453
  msgid "Cerber anti-spam settings"
3454
  msgstr "Cerber anti-spam-instellingen"
3455
 
3456
- #: ../dashboard.php:71 ../settings.php:1106
3457
  msgid "Anti-spam"
3458
  msgstr "Anti-spam"
3459
 
@@ -3461,136 +3408,337 @@ msgstr "Anti-spam"
3461
  msgid "Add-ons"
3462
  msgstr "Add-ons"
3463
 
3464
- #: ../dashboard.php:4602
3465
  msgid "Anti-spam and bot detection settings"
3466
  msgstr "Anti-spam- en botdetectie-instellingen"
3467
 
3468
- #: ../dashboard.php:4604
3469
  msgid "Anti-spam engine"
3470
  msgstr "Anti-spamroutine"
3471
 
3472
- #: ../common.php:1425
3473
  msgid "Multiple erroneous requests"
3474
  msgstr "Meervoudige foutieve verzoeken"
3475
 
3476
- #: ../admin/cerber-settings.php:347
3477
  msgid "%s retries are allowed within %s minutes"
3478
  msgstr "%s herkansingen in %s minuten toegestaan"
3479
 
3480
- #: ../admin/cerber-settings.php:353
3481
  msgid "%s registrations are allowed within %s minutes from one IP address"
3482
  msgstr "%s registraties binnen %s minuten vanaf één IP-adres toegestaan"
3483
 
3484
- #: ../admin/cerber-settings.php:376
3485
  msgid "Enable after %s failed login attempts in the last %s minutes"
3486
  msgstr "Aanzetten na %s gefaalde inlogpogingen in de afgelopen %s minuten"
3487
 
3488
- #: ../settings.php:142
3489
  msgid "Limit"
3490
  msgstr "Limiet"
3491
 
3492
- #: ../settings.php:360
3493
  msgid "Restrict or completely block access to the WordPress REST API according to your needs"
3494
  msgstr "Naar behoefte toegang tot de WordPress REST API beperken of blokkeren"
3495
 
3496
- #: ../settings.php:575
3497
  msgid "These features help your organization to be in compliance with personal data protection laws"
3498
  msgstr "Deze functies helpen u de privacywetgeving na te leven"
3499
 
3500
- #: ../settings.php:633
3501
  msgid "if empty, the website administrator email %s will be used"
3502
  msgstr "indien leeg, wordt de email %s van de sitebeheerder gebruikt"
3503
 
3504
- #: ../settings.php:637
3505
  msgid "notifications are allowed per hour (0 means unlimited)"
3506
  msgstr "meldingen per uur toegestaan (0 = onbeperkt)"
3507
 
3508
- #: ../settings.php:649
3509
  msgid "Get notified instantly with mobile and desktop notifications"
3510
  msgstr "Meteen op de hoogte met desktop- en mobiele meldingen"
3511
 
3512
- #: ../settings.php:664
3513
  msgid "Weekly report is a summary of all activities and suspicious events occurred during the last seven days"
3514
  msgstr "Het weekrapport is een overzicht van activiteiten en verdachte gebeurtenissen van de afgelopen zeven dagen"
3515
 
3516
- #: ../settings.php:677 ../settings.php:916
3517
  msgid "if empty, the email addresses from the notification settings will be used"
3518
  msgstr "indien leeg, worden de mailadressen voor meldingen gebruikt"
3519
 
3520
- #: ../settings.php:689
3521
  msgid "Traffic Inspector is a context-aware web application firewall (WAF) that protects your website by recognizing and denying malicious HTTP requests"
3522
  msgstr "VerkeerInspectie beschermt als contextuele WebApplicatie Firewall (WAF) de website door kwaadaardige HTTP-verzoeken te herkennen en te weigeren\n"
3523
  ""
3524
 
3525
- #: ../settings.php:718
3526
  msgid "Block IP addresses that send excessive requests for non-existing pages or scan website for security breaches"
3527
  msgstr "Blokkeer IP-adressen die extreem veel niet-bestaande pagina's opvragen of die scannen voor beveiligingslekken"
3528
 
3529
- #: ../settings.php:737
3530
  msgid "Traffic Logging"
3531
  msgstr "Verkeer Loggen"
3532
 
3533
- #: ../settings.php:738
3534
  msgid "Enable optional traffic logging if you need to monitor suspicious and malicious activity or solve security issues"
3535
  msgstr "Ga het verkeer loggen als je verdachte of kwaadaardige activiteiten wilt volgen, of beveiligingsproblemen wilt oplossen"
3536
 
3537
- #: ../settings.php:802
3538
  msgid "The scanner monitors file changes, verifies the integrity of WordPress, plugins, and themes, and detects malware"
3539
  msgstr "De scanner ziet bestandswijzigingen, controleert de integriteit van WordPress, plugins en thema's, en detecteert malware"
3540
 
3541
- #: ../settings.php:824
3542
  msgid "Specify directories to exclude from scanning. One directory per line."
3543
  msgstr "Stel de mappen in die niet gescand worden. Eén map per regel."
3544
 
3545
- #: ../settings.php:868
3546
  msgid "The scanner automatically scans the website, removes malware and sends email reports with the results of a scan"
3547
  msgstr "De scanner scant de site automatisch, verwijdert malware en mailt de resultaten van de scan"
3548
 
3549
- #: ../settings.php:885
3550
  msgid "Configure what issues to include in the email report and the condition for sending reports"
3551
  msgstr "Instellen wat deel moet uitmaken van de email-rapportage, en waarom deze verzonden wordt"
3552
 
3553
- #: ../settings.php:927
3554
  msgid "These policies are automatically enforced at the end of every scheduled scan based on its results. All affected files are moved to the quarantine"
3555
  msgstr "Deze maatregelen worden automatisch toegepast na elke scan, afhankelijk van de scan-resultaten. Getroffen bestanden gaan naar quarantaine"
3556
 
3557
- #: ../settings.php:993
3558
  msgid "Cerber anti-spam engine"
3559
  msgstr "Cerber anti-spam-routines"
3560
 
3561
- #: ../settings.php:994
3562
  msgid "Spam protection for comment, registration and contact forms on a website"
3563
  msgstr "Spambescherming voor registratie-, opmerkingen- en contactformulieren op de site"
3564
 
3565
- #: ../settings.php:1015
3566
  msgid "Adjust anti-spam engine"
3567
  msgstr "Anti-spam-routine instellen"
3568
 
3569
- #: ../settings.php:1016
3570
  msgid "These settings enable you to fine-tune the behavior of anti-spam algorithms and avoid false positives"
3571
  msgstr "Met deze instellingen stel je de anti-spam algoritmes precies in, en voorkom je valse meldingen"
3572
 
3573
- #: ../settings.php:1040
3574
  msgid "How the plugin processes comments submitted through the standard comment form"
3575
  msgstr "Hoe de plugin opmerkingen verwerkt die binnenkomen via het opmerkingenformulier"
3576
 
3577
- #: ../nexus/cerber-nexus-slave.php:451
3578
  msgid "Settings updated"
3579
  msgstr "Instellingen aangepast"
3580
 
3581
- #: ../dashboard.php:1151
3582
  msgid "Request ID"
3583
  msgstr "ID van verzoek"
3584
 
3585
- #: ../dashboard.php:1152
3586
  msgid "Search in URL"
3587
  msgstr "Zoek in URL"
3588
 
3589
- #: ../settings.php:831 ../settings.php:840
3590
  msgid "Executable files"
3591
  msgstr "Uitvoerbare bestanden"
3592
 
3593
- #: ../settings.php:832 ../settings.php:841
3594
  msgid "All files"
3595
  msgstr "Alle bestanden"
3596
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  "Language: nl\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
 
11
+ #: ../settings.php:149
12
  msgid "Limit login attempts"
13
  msgstr "Inlogpogingen beperken"
14
 
15
+ #: ../settings.php:157
16
  msgid "Lockout duration"
17
  msgstr "Duur uitsluiting"
18
 
19
+ #: ../settings.php:158 ../settings.php:259
20
  msgid "minutes"
21
  msgstr "minuten"
22
 
23
+ #: ../settings.php:161
24
  msgid "Aggressive lockout"
25
  msgstr "Agressieve uitsluiting"
26
 
27
+ #: ../settings.php:229
28
  msgid "Site connection"
29
  msgstr "Websiteverbinding"
30
 
31
+ #: ../settings.php:172
32
  msgid "Proactive security rules"
33
  msgstr "Proactieve beveiligingsregels"
34
 
35
+ #: ../settings.php:176
36
  msgid "Block subnet"
37
  msgstr "Subnet blokkeren"
38
 
39
+ #: ../settings.php:191
40
  msgid "Request wp-login.php"
41
  msgstr "Verzoek wp-login.php"
42
 
43
+ #: ../settings.php:192
44
  msgid "Immediately block IP after any request to wp-login.php"
45
  msgstr "IP meteen blokkeren bij verzoeken aan wp-login.php"
46
 
47
+ #: ../settings.php:207
48
  msgid "Custom login page"
49
  msgstr "Aangepaste inlogpagina"
50
 
51
+ #: ../settings.php:211
52
  msgid "Custom login URL"
53
  msgstr "Aangepaste inlog-URL"
54
 
55
+ #: ../settings.php:212
56
  msgid "must not overlap with the existing pages or posts slug"
57
  msgstr "mag niet overlappen met bestaande pagina's of post slugs"
58
 
59
+ #: ../settings.php:219
60
  msgid "Disable wp-login.php"
61
  msgstr "Wp-login.php uitschakelen"
62
 
63
+ #: ../settings.php:220
64
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
65
  msgstr "Directe toegang tot wp-login.php blokkeren en HTTP 404 Not Found Error teruggeven"
66
 
67
+ #: ../dashboard.php:1763 ../settings.php:243
68
  msgid "Citadel mode"
69
  msgstr "Citadelstand"
70
 
71
+ #: ../settings.php:253
72
  msgid "Threshold"
73
  msgstr "Drempelwaarde"
74
 
75
+ #: ../admin/cerber-admin.php:51 ../settings.php:258
76
  msgid "Duration"
77
  msgstr "Duur"
78
 
79
+ #: ../dashboard.php:4611 ../settings.php:264
80
  msgid "Notifications"
81
  msgstr "Meldingen"
82
 
83
+ #: ../settings.php:266
84
  msgid "Send notification to admin email"
85
  msgstr "Melding versturen naar admin e-mailadres"
86
 
87
+ #: ../dashboard.php:4608 ../cerber-tools.php:38 ../cerber-tools.php:49
88
  msgid "Access Lists"
89
  msgstr "Toegangslijsten"
90
 
91
+ #: ../dashboard.php:1804 ../dashboard.php:2351 ../dashboard.php:4604 ../cerber-
92
+ #: load.php:4965 ../cerber-users.php:1163 ../settings.php:276
93
  msgid "Activity"
94
  msgstr "Activiteit"
95
 
96
+ #: ../dashboard.php:4606
97
  msgid "Lockouts"
98
  msgstr "Uitsluitingen"
99
 
100
+ #: ../cerber-load.php:4974
101
  msgid "IP"
102
  msgstr "IP"
103
 
104
+ #: ../dashboard.php:846 ../dashboard.php:1110 ../dashboard.php:3567 ../dashboard.
105
+ #: php:4018
106
  msgid "Date"
107
  msgstr "Datum"
108
 
109
+ #: ../dashboard.php:849 ../dashboard.php:1112 ../dashboard.php:4023
110
  msgid "Local User"
111
  msgstr "Lokale gebruiker"
112
 
113
+ #: ../cerber-load.php:4982
114
  msgid "Username used"
115
  msgstr "Toegepaste gebruikersnaam"
116
 
117
+ #: ../dashboard.php:216
118
  msgid "Showing last %d records from %d"
119
  msgstr "Laatste %d records van %d"
120
 
121
+ #: ../common.php:1328
122
  msgid "Logged in"
123
  msgstr "Ingelogd"
124
 
125
+ #: ../common.php:1329
126
  msgid "Logged out"
127
  msgstr "Uitgelogd"
128
 
129
+ #: ../common.php:1330
130
  msgid "Login failed"
131
  msgstr "Inloggen mislukt"
132
 
133
+ #: ../dashboard.php:977 ../common.php:1333
134
  msgid "IP blocked"
135
  msgstr "IP geblokkeerd"
136
 
137
+ #: ../common.php:1337
138
  msgid "Citadel activated!"
139
  msgstr "Citadelstand geactiveerd!"
140
 
141
+ #: ../dashboard.php:1352 ../dashboard.php:1396 ../dashboard.php:3800 ../common.
142
+ #: php:1391
143
  msgid "Locked out"
144
  msgstr "Buitengesloten"
145
 
146
+ #: ../common.php:1393
147
  msgid "IP blacklisted"
148
  msgstr "IP uitgesloten"
149
 
150
+ #: ../common.php:1350
151
  msgid "Password changed"
152
  msgstr "Wachtwoord veranderd"
153
 
154
+ #: ../dashboard.php:190 ../dashboard.php:308
155
  msgid "Remove"
156
  msgstr "Verwijderen"
157
 
158
+ #: ../dashboard.php:575
159
  msgid "Lockout for %s was removed"
160
  msgstr "Uitsluiting voor %s is verwijderd"
161
 
162
+ #: ../dashboard.php:254 ../dashboard.php:1344 ../dashboard.php:1389 ../dashboard.
163
+ #: php:1761 ../dashboard.php:3792 ../cerber-tools.php:69
164
  msgid "White IP Access List"
165
  msgstr "Toegelaten IP-adressen"
166
 
167
+ #: ../dashboard.php:257 ../dashboard.php:1347 ../dashboard.php:1392 ../dashboard.
168
+ #: php:1762 ../dashboard.php:3795 ../cerber-tools.php:70
169
  msgid "Black IP Access List"
170
  msgstr "Uitgesloten IP-adressen"
171
 
172
+ #: ../dashboard.php:314
173
  msgid "List is empty"
174
  msgstr "Lijst is leeg"
175
 
176
+ #: ../cerber-load.php:4191
177
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
178
  msgstr "Citadelstand geactiveerd na %d mislukte inlogpogingen binnen %d minuten."
179
 
180
+ #: ../dashboard.php:2481 ../dashboard.php:2885
181
  msgid "View Activity"
182
  msgstr "Activiteit bekijken"
183
 
184
+ #: ../dashboard.php:4677 ../dashboard.php:4738 ../cerber-tools.php:37 ../cerber-
185
+ #: tools.php:48 ../nexus/cerber-nexus.php:93
186
  msgid "Settings"
187
  msgstr "Instellingen"
188
 
189
+ #: ../dashboard.php:1611
190
  msgid "Last login"
191
  msgstr "Laatst ingelogd"
192
 
193
+ #: ../dashboard.php:1644 ../dashboard.php:1735 ../dashboard.php:1784 ../common.
194
+ #: php:1627 ../nexus/cerber-slave-list.php:346
195
  msgid "Never"
196
  msgstr "Nooit"
197
 
198
+ #: ../dashboard.php:5100 ../admin/cerber-admin.php:721 ../admin/cerber-admin.php:
199
+ #: 888 ../cerber-tools.php:59
200
  msgid "Are you sure?"
201
  msgstr "Weet je het zeker?"
202
 
203
+ #: ../dashboard.php:2169 ../settings.php:230
204
  msgid "My site is behind a reverse proxy"
205
  msgstr "Mijn website draait achter een reverse proxy"
206
 
207
+ #: ../settings.php:173
208
  msgid "Make your protection smarter!"
209
  msgstr "Maak je bescherming slimmer!"
210
 
211
+ #: ../settings.php:126
212
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
213
  msgstr "Schakel Permalinks in om deze functionaliteit te gebruiken. Stel de Permalinks instelling in op iets anders dan Standaard."
214
 
215
+ #: ../dashboard.php:4607
216
  msgid "Main Settings"
217
  msgstr "Hoofdinstellingen"
218
 
219
+ #: ../dashboard.php:4897
220
  msgid "Help"
221
  msgstr "Hulp"
222
 
223
+ #: ../admin/cerber-settings.php:364
224
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
225
  msgstr "Uitsluiting verlengen naar %s uur na %s uitsluitingen in de afgelopen %s uur"
226
 
234
  msgstr[0] "Slechts één inlogpoging resterend!"
235
  msgstr[1] "%s inlogpogingen resterend."
236
 
237
+ #: ../dashboard.php:1140
238
  msgid "No activity has been logged."
239
  msgstr "Geen activiteit waargenomen."
240
 
241
+ #: ../dashboard.php:198 ../cerber-users.php:974
242
  msgid "Expires"
243
  msgstr "Verloopt"
244
 
245
+ #: ../dashboard.php:222
246
  msgid "No lockouts at the moment. The sky is clear."
247
  msgstr "Momenteel geen uitsluitingen."
248
 
249
+ #: ../dashboard.php:264
250
  msgid "Your IP"
251
  msgstr "Jouw IP"
252
 
253
+ #: ../cerber-load.php:4192
254
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
255
  msgstr "Laatste mislukte inlogpoging was op %s vanaf IP %s op gebruiker %s."
256
 
257
+ #: ../cerber-load.php:5239
258
  msgid "Can't activate WP Cerber due to a database error."
259
  msgstr "Kan WP Cerber niet activeren door een fout in de database."
260
 
261
+ #: ../admin/cerber-settings.php:372
262
  msgid "Notify admin if the number of active lockouts above"
263
  msgstr "Stuur admin een melding bij meer uitsluitingen dan"
264
 
265
+ #: ../settings.php:280 ../settings.php:286 ../settings.php:830 ../settings.php:
266
+ #: 836 ../settings.php:907 ../settings.php:1098
267
  msgid "days"
268
  msgstr "dagen"
269
 
270
+ #: ../dashboard.php:1701
271
  msgid "Cerber Quick View"
272
  msgstr "Cerber Quick View"
273
 
274
+ #: ../dashboard.php:218
275
  msgid "Hint"
276
  msgstr "Tip"
277
 
278
+ #: ../dashboard.php:218
279
  msgid "To view activity, click on the IP"
280
  msgstr "Klik het IP-adres om activiteit in te zien"
281
 
282
+ #: ../settings.php:177
283
  msgid "Always block entire subnet Class C of intruders IP"
284
  msgstr "Blokkeer altijd gehele IP Class C subnet van aanvaller"
285
 
286
+ #: ../admin/cerber-settings.php:377 ../settings.php:270
287
  msgid "Click to send test"
288
  msgstr "Klik om test te verzenden"
289
 
290
+ #: ../admin/cerber-settings.php:681 ../admin/cerber-settings.php:682
291
  msgid "Attention! You have changed the login URL! The new login URL is"
292
  msgstr "Let op! Je hebt de inlog-URL veranderd. De nieuwe inlog-URL is"
293
 
294
+ #: ../dashboard.php:1610
295
  msgid "Comments"
296
  msgstr "Reacties"
297
 
298
+ #: ../cerber-load.php:4193 ../cerber-load.php:5006
299
  msgid "View activity in dashboard"
300
  msgstr "Activiteiten bekijken in dashboard"
301
 
302
+ #: ../cerber-load.php:4222
303
  msgid "Number of active lockouts"
304
  msgstr "Aantal actieve uitsluitingen"
305
 
306
+ #: ../cerber-load.php:4226
307
  msgid "View lockouts in dashboard"
308
  msgstr "Uitsluitingen bekijken in dashboard"
309
 
310
+ #: ../cerber-load.php:4322
311
  msgid "This message was sent by"
312
  msgstr "Dit bericht is verzonden door"
313
 
314
+ #: ../dashboard.php:82 ../dashboard.php:4789
315
  msgid "Tools"
316
  msgstr "Gereedschap"
317
 
331
  msgid "Download file"
332
  msgstr "Bestand downloaden"
333
 
334
+ #: ../cerber-tools.php:43
335
  msgid "Import settings from the file"
336
  msgstr "Instellingen importeren van bestand"
337
 
338
+ #: ../cerber-tools.php:44
339
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
340
  msgstr "Onderstaande knop laadt een bestand dat bestaande instellingen overschrijft."
341
 
342
+ #: ../cerber-tools.php:45
343
  msgid "Select file to import."
344
  msgstr "Kies bestand om te importeren."
345
 
346
+ #: ../admin/cerber-admin.php:246 ../cerber-tools.php:45
347
  msgid "Maximum upload file size: %s."
348
  msgstr "Maximum bestandsgrootte: %s."
349
 
350
+ #: ../cerber-tools.php:48
351
  msgid "What do you want to import?"
352
  msgstr "Wat wil je importeren?"
353
 
354
+ #: ../admin/cerber-admin.php:249 ../cerber-tools.php:50
355
  msgid "Upload file"
356
  msgstr "Bestand uploaden"
357
 
358
+ #: ../cerber-tools.php:189
359
  msgid "No file was uploaded or file is corrupted"
360
  msgstr "Geen bestand geüpload of bestand is beschadigd"
361
 
362
+ #: ../cerber-tools.php:236
363
  msgid "Settings has imported successfully from"
364
  msgstr "Instellingen geïmporteerd van"
365
 
366
+ #: ../cerber-tools.php:243
367
  msgid "Error while parsing file"
368
  msgstr "Fout bij verwerken bestand"
369
 
370
+ #: ../dashboard.php:196 ../dashboard.php:1108
371
  msgid "Hostname"
372
  msgstr "Hostnaam"
373
 
374
+ #: ../dashboard.php:513
375
  msgid "unknown"
376
  msgstr "onbekend"
377
 
378
+ #: ../dashboard.php:1740 ../dashboard.php:1770
379
  msgid "active"
380
  msgstr "actief"
381
 
382
+ #: ../dashboard.php:1740
383
  msgid "deactivate"
384
  msgstr "deactiveren"
385
 
386
+ #: ../dashboard.php:1744
387
  msgid "not active"
388
  msgstr "niet actief"
389
 
390
+ #: ../dashboard.php:1747 ../dashboard.php:1765
391
  msgid "disabled"
392
  msgstr "gedeactiveerd"
393
 
394
+ #: ../dashboard.php:1753
395
  msgid "failed attempts"
396
  msgstr "mislukte pogingen"
397
 
398
+ #: ../dashboard.php:1753 ../dashboard.php:1754
399
  msgid "in 24 hours"
400
  msgstr "in 24 uur"
401
 
402
+ #: ../dashboard.php:1753 ../dashboard.php:1754
403
  msgid "view all"
404
  msgstr "bekijk alles"
405
 
406
+ #: ../dashboard.php:1754
407
  msgid "lockouts"
408
  msgstr "uitsluitingen"
409
 
410
+ #: ../dashboard.php:1756
411
  msgid "Lockouts at the moment"
412
  msgstr "Actuele uitsluitingen"
413
 
414
+ #: ../dashboard.php:1757
415
  msgid "Last lockout"
416
  msgstr "Recente uitsluiting"
417
 
418
+ #: ../dashboard.php:1761 ../dashboard.php:1762 ../dashboard.php:2664
419
  msgid "entry"
420
  msgid_plural "entries"
421
  msgstr[0] "item"
422
  msgstr[1] "items"
423
 
424
+ #: ../cerber-tools.php:57
 
 
 
 
 
 
 
 
425
  msgid "Load default settings"
426
  msgstr "Aanbevolen instellingen laden"
427
 
428
+ #: ../settings.php:667
 
 
 
 
429
  msgid "New version is available"
430
  msgstr "Nieuwe versie beschikbaar"
431
 
432
+ #: ../cerber-load.php:4165
433
  msgid "WP Cerber notify"
434
  msgstr "WP Cerber melding"
435
 
436
+ #: ../cerber-load.php:4189
437
  msgid "Citadel mode is activated"
438
  msgstr "Citadelstand is actief"
439
 
440
+ #: ../cerber-load.php:4265
441
  msgid "New Custom login URL"
442
  msgstr "Nieuwe Aangepaste inlog-URL"
443
 
444
+ #: ../cerber-load.php:5225
445
  msgid "The WP Cerber requires PHP %s or higher. You are running"
446
  msgstr "WP Cerber vereist PHP %s of hoger. Je gebruikt nu"
447
 
448
+ #: ../cerber-load.php:5229
449
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
450
  msgstr "WP Cerber vereist WordPress %s of hoger. Je gebruikt nu"
451
 
452
+ #: ../settings.php:305
453
  msgid "Use file"
454
  msgstr "Bestand gebruiken"
455
 
456
+ #: ../settings.php:306
457
  msgid "Write failed login attempts to the file"
458
  msgstr "Mislukte pogingen opslaan in bestand"
459
 
460
+ #: ../dashboard.php:2480
461
  msgid "Deactivate"
462
  msgstr "Deactiveren"
463
 
464
+ #: ../dashboard.php:199 ../cerber-load.php:4224
465
  msgid "Reason"
466
  msgstr "Reden"
467
 
468
+ #: ../dashboard.php:1455
469
  msgid "Add IP to the Black List"
470
  msgstr "IP-adres toevoegen aan Uitsluitingslijst"
471
 
472
+ #: ../common.php:1465
473
  msgid "Attempt to access"
474
  msgstr "Poging tot toegang"
475
 
476
+ #: ../common.php:1464
477
  msgid "Limit on login attempts is reached"
478
  msgstr "Limiet voor aantal inlogpogingen is bereikt"
479
 
480
+ #: ../cerber-load.php:4223
481
  msgid "Last lockout was added: %s for IP %s"
482
  msgstr "Laatste uitsluiting was toegevoegd: %s voor IP-adres %s"
483
 
484
+ #: ../dashboard.php:4609
485
  msgid "Hardening"
486
  msgstr "Versterking"
487
 
488
+ #: ../dashboard.php:1428
489
  msgid "Abuse email:"
490
  msgstr "E-mail voor misbruik:"
491
 
492
+ #: ../settings.php:654 ../settings.php:701 ../settings.php:962
493
  msgid "Email Address"
494
  msgstr "E-mailadres"
495
 
496
+ #: ../settings.php:315
497
  msgid "Drill down IP"
498
  msgstr "IP-adres onderzoeken"
499
 
500
+ #: ../settings.php:316
501
  msgid "Retrieve extra WHOIS information for IP"
502
  msgstr "Haal extra WHOIS-informatie op voor IP-adres"
503
 
504
+ #: ../settings.php:349
505
  msgid "Hardening WordPress"
506
  msgstr "Wordpress versterken"
507
 
508
+ #: ../settings.php:353 ../settings.php:389
509
  msgid "Stop user enumeration"
510
  msgstr "Stop nummering gebruikers"
511
 
512
+ #: ../settings.php:372
513
  msgid "Disable XML-RPC"
514
  msgstr "XML-RPC uitschakelen"
515
 
516
+ #: ../settings.php:373
517
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
518
  msgstr "Toegang tot XML-RPC server uitschakelen (inclusief Pingbacks en Trackbacks)"
519
 
520
+ #: ../settings.php:377
521
  msgid "Disable feeds"
522
  msgstr "Feeds uitschakelen"
523
 
524
+ #: ../settings.php:378
525
  msgid "Block access to the RSS, Atom and RDF feeds"
526
  msgstr "Blokkeer toegang tot de RSS-, Atom- en RDF-feeds"
527
 
528
+ #: ../settings.php:394
529
  msgid "Disable REST API"
530
  msgstr "REST API uitschakelen"
531
 
532
+ #: ../admin/cerber-settings.php:777 ../admin/cerber-settings.php:789 ..
533
+ #: /admin/cerber-settings.php:949
534
  msgid "<strong>ERROR</strong>: please enter a valid email address."
535
  msgstr "<strong>LET OP</strong>: voer een geldig e-mailadres in."
536
 
537
+ #: ../cerber-load.php:4254 ../cerber-load.php:5284
538
  msgid "WP Cerber is now active and has started protecting your site"
539
  msgstr "WP Cerber is actief en beschermt nu je website"
540
 
541
+ #: ../dashboard.php:200 ../admin/cerber-admin.php:757 ../admin/cerber-admin.php:
542
+ #: 912 ../cerber-users.php:977
543
  msgid "Action"
544
  msgstr "Actie"
545
 
546
+ #: ../dashboard.php:4946
547
  msgid "Incorrect IP address or IP range"
548
  msgstr "IP-adres of -reeks is incorrect"
549
 
550
+ #: ../dashboard.php:2496
551
  msgid "Settings saved"
552
  msgstr "Instellingen opgeslagen"
553
 
554
+ #: ../dashboard.php:1434
555
  msgid "Network:"
556
  msgstr "Netwerk:"
557
 
558
+ #: ../dashboard.php:1449
559
  msgid "Add network to the Black List"
560
  msgstr "Netwerk toevoegen aan Uitsluitingslijst"
561
 
562
+ #: ../dashboard.php:2479
563
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
564
  msgstr "Let op! Citadelstand is actief; niemand kan inloggen."
565
 
566
+ #: ../dashboard.php:433 ../dashboard.php:3700 ../whois.php:222 ../whois.php:253 ..
567
+ #: /common.php:1489 ../common.php:1895 ../common.php:1963 ../nexus/cerber-slave-
568
+ #: list.php:332
569
  msgid "Unknown"
570
  msgstr "Onbekend"
571
 
572
+ #: ../common.php:339 ../common.php:417 ../common.php:422 ../common.php:428 ..
573
+ #: /common.php:433 ../admin/cerber-settings.php:653 ../admin/cerber-settings.php:
574
+ #: 673 ../admin/cerber-settings.php:753 ../admin/cerber-admin.php:858 ../cerber-
575
+ #: load.php:649 ../cerber-load.php:661 ../cerber-load.php:668 ../cerber-load.php:
576
+ #: 1008 ../cerber-load.php:1549 ../cerber-load.php:1555 ../cerber-load.php:1560 ..
577
+ #: /cerber-load.php:1567 ../cerber-load.php:1574 ../cerber-load.php:1580 ..
578
+ #: /cerber-load.php:1587 ../cerber-load.php:1752 ../cerber-load.php:1889 ..
579
+ #: /nexus/cerber-nexus-slave.php:204 ../nexus/cerber-nexus-slave.php:215
580
  msgid "ERROR:"
581
  msgstr "FOUT:"
582
 
584
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
585
  msgstr "Menselijke verificatie mislukt. Klik het vierkant in onderstaand reCAPTCHA-blok."
586
 
587
+ #: ../cerber-load.php:1117
588
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
589
  msgstr "<strong>LET OP</strong>: je geeft een foutief wachtwoord op voor gebruiker %s."
590
 
591
+ #: ../cerber-load.php:1568
592
  msgid "Username is not allowed. Please choose another one."
593
  msgstr "Gebruikersnaam is niet toegestaan, kies een andere."
594
 
595
+ #: ../cerber-load.php:4217
596
  msgid "unspecified"
597
  msgstr "niet gespecificeerd"
598
 
599
+ #: ../cerber-load.php:4220
600
  msgid "Number of lockouts is increasing"
601
  msgstr "Aantal uitsluitingen loopt op"
602
 
603
+ #: ../cerber-load.php:4225
604
  msgid "View activity for this IP"
605
  msgstr "Bekijk activiteit voor dit adres"
606
 
607
+ #: ../cerber-load.php:4229 ../cerber-load.php:4231
608
  msgid "A new version of WP Cerber is available to install"
609
  msgstr "Nieuwe versie WP Cerber is klaar voor installatie"
610
 
611
+ #: ../cerber-load.php:4230
612
  msgid "Hi!"
613
  msgstr "Hallo!"
614
 
615
+ #: ../cerber-load.php:4233 ../cerber-load.php:4244 ../nexus/cerber-slave-list.php:
616
  #: 44
617
  msgid "Website"
618
  msgstr "Website"
619
 
620
+ #: ../cerber-load.php:4236 ../cerber-load.php:4237
621
  msgid "The WP Cerber security plugin has been deactivated"
622
  msgstr "WP Cerber is gedeactiveerd"
623
 
624
+ #: ../cerber-load.php:4239
625
  msgid "Not logged in"
626
  msgstr "Niet ingelogd"
627
 
628
+ #: ../cerber-load.php:4245
629
  msgid "By user"
630
  msgstr "Door gebruiker"
631
 
632
+ #: ../cerber-load.php:4246
633
  msgid "From IP address"
634
  msgstr "Van IP-adres"
635
 
636
+ #: ../cerber-load.php:4249
637
  msgid "From country"
638
  msgstr "Uit land"
639
 
640
+ #: ../cerber-load.php:4253
641
  msgid "The WP Cerber security plugin is now active"
642
  msgstr "WP Cerber is actief"
643
 
644
+ #: ../cerber-load.php:5297
 
 
 
 
645
  msgid "Import settings"
646
  msgstr "Instellingen importeren"
647
 
648
+ #: ../settings.php:662
649
  msgid "Notification limit"
650
  msgstr "Limiet aan meldingen"
651
 
652
+ #: ../settings.php:575
653
  msgid "Prohibited usernames"
654
  msgstr "Verboden gebruikersnamen"
655
 
656
+ #: ../settings.php:576
657
  msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
658
  msgstr "Gebruikersnamen op deze lijst kunnen niet aanmelden of inloggen. IP-adressen die deze namen gebruiken, worden direct uitgesloten. Scheid namen met een komma."
659
 
660
+ #: ../settings.php:1104
 
 
 
 
661
  msgid "reCAPTCHA settings"
662
  msgstr "reCAPTCHA-instellingen"
663
 
664
+ #: ../settings.php:1109
665
  msgid "Site key"
666
  msgstr "Site-sleutel"
667
 
668
+ #: ../settings.php:1113
669
  msgid "Secret key"
670
  msgstr "Geheime sleutel"
671
 
672
+ #: ../settings.php:1123
673
  msgid "Enable reCAPTCHA for WordPress registration form"
674
  msgstr "ReCAPTCHA instellen voor WordPress regstratieformulier"
675
 
676
+ #: ../settings.php:1132
677
  msgid "Lost password form"
678
  msgstr "Formulier voor zoekgeraakt wachtwoord"
679
 
680
+ #: ../settings.php:1142
681
  msgid "Login form"
682
  msgstr "Login-formulier"
683
 
684
+ #: ../settings.php:1143
685
  msgid "Enable reCAPTCHA for WordPress login form"
686
  msgstr "ReCAPTCHA inschakelen voor WordPress inlogpagina"
687
 
688
+ #: ../settings.php:1105
689
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
690
  msgstr "Haal eerst een Site-sleutel en Geheime Sleutel op van Google om reCAPTCHA te kunnen gebruiken"
691
 
692
+ #: ../admin/cerber-settings.php:100 ../admin/cerber-settings.php:270 ../cerber-
693
+ #: lab.php:839
694
  msgid "Know more"
695
  msgstr "Meer weten"
696
 
697
+ #: ../common.php:1325
698
  msgid "User created"
699
  msgstr "Gebruiker toegevoegd"
700
 
701
+ #: ../common.php:1326
702
  msgid "User registered"
703
  msgstr "Gebruiker aangemeld"
704
 
705
+ #: ../common.php:1353
706
  msgid "reCAPTCHA verification failed"
707
  msgstr "reCAPTCHA verificatie mislukt"
708
 
709
+ #: ../common.php:1354
710
  msgid "reCAPTCHA settings are incorrect"
711
  msgstr "foutieve reCAPTCHA-instellingen"
712
 
713
  #. 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" ?
714
+ #: ../common.php:1357 ../common.php:1466
715
  msgid "Attempt to access prohibited URL"
716
  msgstr "Poging verboden URL te benaderen"
717
 
718
+ #: ../common.php:1359 ../common.php:1468
719
  msgid "Attempt to log in with prohibited username"
720
  msgstr "Inlogpoging met verboden gebruikersnaam"
721
 
722
+ #: ../settings.php:291
723
  msgid "Cerber Lab connection"
724
  msgstr "Cerber Lab verbinding"
725
 
726
+ #: ../settings.php:292
727
  msgid "Send malicious IP addresses to the Cerber Lab"
728
  msgstr "Stuur kwaadaardige IP-adressen naar Cerber Lab"
729
 
730
+ #: ../settings.php:297
731
  msgid "Cerber Lab protocol"
732
  msgstr "Cerber Lab protocol"
733
 
734
+ #: ../settings.php:1050 ../settings.php:1122
735
  msgid "Registration form"
736
  msgstr "Registratieformulier"
737
 
738
+ #: ../settings.php:1128
739
  msgid "Enable reCAPTCHA for WooCommerce registration form"
740
  msgstr "ReCAPTCHA inschakelen voor WooCommerce registratie"
741
 
742
+ #: ../settings.php:1133
743
  msgid "Enable reCAPTCHA for WordPress lost password form"
744
  msgstr "ReCAPTCHA inschakelen om nieuw WordPress wachtwoord op te vragen"
745
 
746
+ #: ../settings.php:1138
747
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
748
  msgstr "ReCAPTCHA inschakelen om nieuw WooCommerce wachtwoord op te vragen"
749
 
750
+ #: ../settings.php:1148
751
  msgid "Enable reCAPTCHA for WooCommerce login form"
752
  msgstr "ReCAPTCHA inschakelen voor WooCommerce inlogpagina"
753
 
754
+ #: ../common.php:1355
755
  msgid "Request to the Google reCAPTCHA service failed"
756
  msgstr "Verzoek aan Google ReCAPTCHA-service mislukt"
757
 
758
+ #: ../dashboard.php:958 ../dashboard.php:2365
759
  msgid "View all"
760
  msgstr "Zie alle"
761
 
762
+ #: ../dashboard.php:2368
763
  msgid "Recently locked out IP addresses"
764
  msgstr "Recent buitengesloten IP-adressen"
765
 
766
+ #: ../cerber-lab.php:837
767
  msgid "OK, nail them all"
768
  msgstr "OK, gooi ze er allemaal uit"
769
 
770
+ #: ../cerber-lab.php:838
771
  msgid "NO, maybe later"
772
  msgstr "Nee, misschien later"
773
 
774
+ #: ../dashboard.php:54 ../dashboard.php:1803 ../dashboard.php:2686 ../dashboard.
775
+ #: php:4603
776
  msgid "Dashboard"
777
  msgstr "Dashboard"
778
 
779
+ #: ../cerber-lab.php:835
780
  msgid "Want to make WP Cerber even more powerful?"
781
  msgstr "Wil je WP Cerber nog beter maken?"
782
 
783
+ #: ../cerber-lab.php:836
784
  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."
785
  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."
786
 
787
+ #: ../dashboard.php:3566
788
  msgid "IP address"
789
  msgstr "IP-adres"
790
 
791
+ #: ../dashboard.php:850
792
  msgid "User login"
793
  msgstr "Gebruikers-login"
794
 
795
+ #: ../dashboard.php:851 ../dashboard.php:3572
796
  msgid "User ID"
797
  msgstr "Gebruikers-ID"
798
 
799
+ #: ../dashboard.php:1135 ../dashboard.php:4086
800
  msgid "Export"
801
  msgstr "Export"
802
 
803
+ #: ../dashboard.php:1151
804
  msgid "Search for IP or username"
805
  msgstr "Zoek IP of gebruikersnaam"
806
 
807
+ #: ../dashboard.php:1162
808
  msgid "Filter"
809
  msgstr "Filter"
810
 
816
  msgid "Cerber tools"
817
  msgstr "Cerber tools"
818
 
819
+ #: ../cerber-tools.php:320
820
  msgid "Unsubscribe"
821
  msgstr "Uitschrijven"
822
 
823
+ #: ../cerber-load.php:4269 ../cerber-load.php:4270
824
  msgid "A new activity has been recorded"
825
  msgstr "Er is nieuwe activiteit waargenomen"
826
 
827
+ #: ../cerber-load.php:4978 ../cerber-users.php:971
828
  msgid "User"
829
  msgstr "Gebruiker"
830
 
831
+ #: ../cerber-load.php:4986
832
  msgid "Search string"
833
  msgstr "Zoekfrase"
834
 
835
+ #: ../settings.php:312
836
  msgid "Preferences"
837
  msgstr "Voorkeuren"
838
 
839
+ #: ../settings.php:320
840
  msgid "Date format"
841
  msgstr "Datumformaat"
842
 
843
+ #: ../settings.php:321
844
  msgid "if empty, the default format %s will be used"
845
  msgstr "indien leeg, gebruiken we standaardinstelling %s"
846
 
847
+ #: ../settings.php:673
848
  msgid "Push notifications"
849
  msgstr "Push meldingen"
850
 
851
+ #: ../settings.php:645
852
  msgid "Email notifications"
853
  msgstr "E-mail meldingen"
854
 
855
+ #: ../settings.php:655 ../settings.php:703 ../settings.php:801 ../settings.php:964
856
  msgid "Use comma to specify multiple values"
857
  msgstr "Scheid meer waarden met komma's"
858
 
859
+ #: ../settings.php:113
860
  msgid "All connected devices"
861
  msgstr "Alle verbonden apparaten"
862
 
863
+ #: ../settings.php:116
864
  msgid "No devices found"
865
  msgstr "Geen apparaten gevonden"
866
 
867
+ #: ../settings.php:120
868
  msgid "Not available"
869
  msgstr "Niet beschikbaar"
870
 
871
+ #: ../common.php:1351
872
  msgid "Password reset requested"
873
  msgstr "Wachtwoordvernieuwing aangevraagd"
874
 
875
+ #: ../common.php:1469
876
  msgid "Limit on failed reCAPTCHA verifications is reached"
877
  msgstr "Grens bereikt van foutieve reCAPTCHA's"
878
 
879
+ #: ../common.php:1622
880
  msgid "%s ago"
881
  msgstr "%s geleden"
882
 
883
+ #: ../settings.php:166
884
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
885
  msgstr "Pas regels voor inlogbeperking toe op de Lijst Toegelaten IP-adressen"
886
 
887
+ #: ../settings.php:196
888
  msgid "Display 404 page"
889
  msgstr "Toon 404-pagina"
890
 
891
+ #: ../settings.php:1117
892
  msgid "Invisible reCAPTCHA"
893
  msgstr "Onzichtbare reCAPTCHA"
894
 
895
+ #: ../settings.php:1118
896
  msgid "Enable invisible reCAPTCHA"
897
  msgstr "Zet onzichtbare reCAPTCHA aan"
898
 
899
+ #: ../settings.php:1118
900
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
901
  msgstr "(zet pas aan als je de Sitesleutel en Geheime Sleutel voor de onzichtbare versie hebt ontvangen)"
902
 
903
+ #: ../settings.php:1153
904
  msgid "Enable reCAPTCHA for WordPress comment form"
905
  msgstr "Zet reCAPTCHA aan voor WordPress reacties"
906
 
907
+ #: ../settings.php:1158
908
  msgid "Disable reCAPTCHA for logged in users"
909
  msgstr "Zet reCAPTCHA uit voor ingelogde gebruikers"
910
 
911
+ #: ../settings.php:1162
912
  msgid "Limit attempts"
913
  msgstr "Beperk aantal pogingen"
914
 
915
+ #: ../settings.php:1163
916
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
917
  msgstr "Sluit IP-adressen uit voor %s minuten na %s mislukte pogingen in %s minuten"
918
 
919
+ #: ../settings.php:244
920
  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."
921
  msgstr "In de Citadelstand kunnen alleen adressen van de Lijst Toegelaten IP-adressen inloggen. Heeft geen effect op reeds ingelogde gebruikers."
922
 
923
+ #: ../dashboard.php:847 ../dashboard.php:1111
924
  msgid "Event"
925
  msgstr "Gebeurtenis"
926
 
927
+ #: ../common.php:282
928
  msgid "Spam comments denied"
929
  msgstr "Spamreacties afgewezen"
930
 
931
+ #: ../common.php:284
932
  msgid "Malicious IP addresses detected"
933
  msgstr "Kwaadaardige IP-adressen gevonden"
934
 
935
+ #: ../common.php:285
936
  msgid "Lockouts occurred"
937
  msgstr "Uitsluitingen"
938
 
939
+ #: ../cerber-load.php:1550 ../cerber-load.php:1556 ../cerber-load.php:1581 ..
940
+ #: /cerber-load.php:1588
941
  msgid "You are not allowed to register."
942
  msgstr "Je mag niet aanmelden."
943
 
944
+ #: ../common.php:1338
945
  msgid "Spam comment denied"
946
  msgstr "Spamreactie afgewezen"
947
 
948
+ #: ../common.php:1361
949
  msgid "Attempt to log in denied"
950
  msgstr "Inlogpoging afgewezen"
951
 
952
+ #: ../common.php:1362
953
  msgid "Attempt to register denied"
954
  msgstr "Aanmeldingspoging afgewezen"
955
 
956
+ #: ../common.php:279
957
  msgid "Malicious activities mitigated"
958
  msgstr "Verdachte activiteiten afgevangen"
959
 
960
+ #: ../settings.php:1045
961
  msgid "Comment form"
962
  msgstr "Reactiepagina"
963
 
964
+ #: ../settings.php:1046
965
  msgid "Protect comment form with bot detection engine"
966
  msgstr "Bescherm invoer reacties met bot-detectie"
967
 
968
+ #: ../settings.php:1051
969
  msgid "Protect registration form with bot detection engine"
970
  msgstr "Bescherm registratie met bot-detectie"
971
 
972
+ #: ../dashboard.php:4793
 
 
 
 
973
  msgid "Diagnostic"
974
  msgstr "Diagnose"
975
 
976
+ #: ../dashboard.php:4796
977
  msgid "License"
978
  msgstr "Licentie"
979
 
980
+ #: ../cerber-load.php:1889
981
  msgid "Sorry, human verification failed."
982
  msgstr "Sorry, je verificatie faalt."
983
 
984
+ #: ../common.php:1470
985
  msgid "Bot activity is detected"
986
  msgstr "Bot-activiteit getedecteerd"
987
 
988
+ #: ../settings.php:1086
989
  msgid "Comment processing"
990
  msgstr "Verwerking van reactie"
991
 
992
+ #: ../settings.php:1090
993
  msgid "If a spam comment detected"
994
  msgstr "Bij detectie van een spam-reactie"
995
 
996
+ #: ../settings.php:1095
997
  msgid "Trash spam comments"
998
  msgstr "Spamreacties weggooien"
999
 
1000
+ #: ../settings.php:1097
1001
  msgid "Move spam comments to trash after"
1002
  msgstr "Verwijder spamreacties na"
1003
 
1004
+ #: ../common.php:1339
1005
  msgid "Spam form submission denied"
1006
  msgstr "Geweigerd wegens spam"
1007
 
1008
+ #: ../settings.php:1055
1009
  msgid "Other forms"
1010
  msgstr "Andere formulieren"
1011
 
1012
+ #: ../settings.php:1056
1013
  msgid "Protect all forms on the website with bot detection engine"
1014
  msgstr "Bescherm alle invoerformulieren met bot-detectie"
1015
 
1016
+ #: ../settings.php:1066
1017
  msgid "Safe mode"
1018
  msgstr "Veilige stand"
1019
 
1020
+ #: ../settings.php:1067
1021
  msgid "Use less restrictive policies (allow AJAX)"
1022
  msgstr "Minder restricties (sta AJAX toe)"
1023
 
1024
+ #: ../dashboard.php:979 ../dashboard.php:1759 ../dashboard.php:4051 ../settings.
1025
+ #: php:399 ../settings.php:1071
1026
  msgid "Logged in users"
1027
  msgstr "Ingelogde gebruikers"
1028
 
1029
+ #: ../settings.php:1072
1030
  msgid "Disable bot detection engine for logged in users"
1031
  msgstr "Zet bot-detectie uit voor ingelogde gebruikers"
1032
 
1033
+ #: ../dashboard.php:197 ../dashboard.php:1109
1034
  msgid "Country"
1035
  msgstr "Land"
1036
 
1038
  msgid "Cerber Security Rules"
1039
  msgstr "Cerber Beveiligingsregels"
1040
 
1041
+ #: ../dashboard.php:61 ../dashboard.php:4720
1042
  msgid "Security Rules"
1043
  msgstr "Beveiligingsregels"
1044
 
1045
+ #: ../dashboard.php:1612
1046
  msgid "Failed login attempts"
1047
  msgstr "Gefaalde loginpogingen"
1048
 
1049
+ #: ../dashboard.php:1523 ../dashboard.php:1613
1050
  msgid "Registered"
1051
  msgstr "Aangemeld"
1052
 
1053
+ #: ../dashboard.php:1683 ../cerber-users.php:52 ../cerber-users.php:1130
1054
  msgid "You"
1055
  msgstr "Jij"
1056
 
1057
+ #: ../common.php:283
1058
  msgid "Spam form submissions denied"
1059
  msgstr "Spam formulierafgifte afgewezen"
1060
 
1061
+ #: ../cerber-load.php:4256 ../cerber-load.php:5288
1062
  msgid "Getting Started Guide"
1063
  msgstr "Startgids"
1064
 
1065
+ #: ../dashboard.php:4722
1066
  msgid "Countries"
1067
  msgstr "Landen"
1068
 
1069
+ #: ../dashboard.php:3294
1070
  msgid "Permitted for one country"
1071
  msgid_plural "Permitted for %d countries"
1072
  msgstr[0] "Toegestaan voor één land"
1073
  msgstr[1] "Toegestaan voor %d landen"
1074
 
1075
+ #: ../dashboard.php:3305
1076
  msgid "No rule"
1077
  msgstr "Geen regel"
1078
 
1079
+ #: ../dashboard.php:3466
1080
  msgid "Security rules have been updated"
1081
  msgstr "Beveiligingsregels zijn vernieuwd"
1082
 
1085
  msgid "https://wpcerber.com"
1086
  msgstr "https://wpcerber.com"
1087
 
1088
+ #: ../common.php:1340
1089
  msgid "Form submission denied"
1090
  msgstr "Formulierafgifte afgewezen"
1091
 
1092
+ #: ../common.php:1341
1093
  msgid "Comment denied"
1094
  msgstr "Commentaar afgewezen"
1095
 
1096
+ #: ../common.php:1367
1097
  msgid "Request to REST API denied"
1098
  msgstr "Verzoek aan REST API afgewezen"
1099
 
1100
+ #: ../common.php:1368
1101
  msgid "XML-RPC request denied"
1102
  msgstr "XML-RPC-verzoek afgewezen"
1103
 
1104
+ #: ../common.php:1389
1105
  msgid "Bot detected"
1106
  msgstr "Bot gedetecteerd"
1107
 
1108
+ #: ../common.php:1390
1109
  msgid "Citadel mode is active"
1110
  msgstr "Citadelstand actief"
1111
 
1112
+ #: ../common.php:1394
1113
  msgid "Malicious activity detected"
1114
  msgstr "Kwaadaardige activiteit gedetecteerd"
1115
 
1116
+ #: ../common.php:1395
1117
  msgid "Blocked by country rule"
1118
  msgstr "Geblokkeerd door landenregel"
1119
 
1120
+ #: ../common.php:1396
1121
  msgid "Limit reached"
1122
  msgstr "Limiet bereikt"
1123
 
1124
+ #: ../common.php:1397
1125
  msgid "Multiple suspicious activities"
1126
  msgstr "Meerdere verdachte activiteiten"
1127
 
1128
+ #: ../common.php:1471
1129
  msgid "Multiple suspicious activities were detected"
1130
  msgstr "Meerdere verdachte activiteiten gedetecteerd"
1131
 
1132
+ #: ../settings.php:400
1133
  msgid "Allow REST API for logged in users"
1134
  msgstr "Sta REST API toe voor ingelogde gebruikers"
1135
 
1136
+ #: ../settings.php:414
1137
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
1138
  msgstr "Geef toegestane REST API-naamruimtes op als de REST API is uitgeschakeld. Eén tekenreeks per regel."
1139
 
1140
+ #: ../settings.php:552
1141
  msgid "Registration limit"
1142
  msgstr "Registratielimiet"
1143
 
1144
+ #: ../settings.php:590
1145
  msgid "Sort users in dashboard"
1146
  msgstr "Gebruikers in dashboard sorteren"
1147
 
1148
+ #: ../settings.php:591
1149
  msgid "by date of registration"
1150
  msgstr "per registratiedatum"
1151
 
1152
+ #: ../settings.php:1076
1153
  msgid "Query whitelist"
1154
  msgstr "Toegestane queries"
1155
 
1156
+ #: ../dashboard.php:3274
1157
  msgid "Start typing here to find a country"
1158
  msgstr "Begin te typen om een land te vinden"
1159
 
1160
+ #: ../dashboard.php:3389
1161
  msgid "Click on a country name to add it to the list of selected countries"
1162
  msgstr "Klik op een landnaam om toe te voegen aan de lijst gekozen landen"
1163
 
1164
+ #: ../dashboard.php:3421
1165
  msgid "Submit forms"
1166
  msgstr "Formulieren versturen"
1167
 
1168
+ #: ../dashboard.php:3422
1169
  msgid "Post comments"
1170
  msgstr "Commentaar plaatsen"
1171
 
1172
+ #: ../dashboard.php:3420
 
 
 
 
1173
  msgid "Register on the website"
1174
  msgstr "Aanmelden bij de website"
1175
 
1176
+ #: ../dashboard.php:3423
1177
  msgid "Use XML-RPC"
1178
  msgstr "Benut XML-RPC"
1179
 
1180
+ #: ../dashboard.php:3424
1181
  msgid "Use REST API"
1182
  msgstr "Benut REST API"
1183
 
1184
+ #: ../settings.php:1092
1185
  msgid "Deny it completely"
1186
  msgstr "Volledig negeren"
1187
 
1188
+ #: ../settings.php:1092
1189
  msgid "Mark it as spam"
1190
  msgstr "Markeren als spam"
1191
 
1192
+ #: ../dashboard.php:2345
1193
  msgid "in the last 24 hours"
1194
  msgstr "in de afgelopen 24 uur"
1195
 
1196
+ #: ../dashboard.php:2687
1197
  msgid "Main settings"
1198
  msgstr "Hoofdinstellingen"
1199
 
1200
+ #: ../settings.php:688
1201
  msgid "Weekly reports"
1202
  msgstr "Weekrapporten"
1203
 
1204
+ #: ../admin/cerber-settings.php:541
1205
  msgid "Sunday"
1206
  msgstr "zondag"
1207
 
1208
+ #: ../admin/cerber-settings.php:542
1209
  msgid "Monday"
1210
  msgstr "maandag"
1211
 
1212
+ #: ../admin/cerber-settings.php:543
1213
  msgid "Tuesday"
1214
  msgstr "dinsdag"
1215
 
1216
+ #: ../admin/cerber-settings.php:544
1217
  msgid "Wednesday"
1218
  msgstr "woensdag"
1219
 
1220
+ #: ../admin/cerber-settings.php:545
1221
  msgid "Thursday"
1222
  msgstr "donderdag"
1223
 
1224
+ #: ../admin/cerber-settings.php:546
1225
  msgid "Friday"
1226
  msgstr "vrijdag"
1227
 
1228
+ #: ../admin/cerber-settings.php:547
1229
  msgid "Saturday"
1230
  msgstr "zaterdag"
1231
 
1232
+ #: ../admin/cerber-settings.php:683 ../admin/cerber-settings.php:684
1233
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1234
  msgstr "Gebruik je een caching plugin, dan moet je je nieuwe login URL toevoegen aan de niet te cachen pagina's."
1235
 
1236
+ #: ../cerber-load.php:4275
1237
  msgid "Weekly report"
1238
  msgstr "Weekrapport"
1239
 
1240
+ #: ../cerber-load.php:4278 ../cerber-load.php:4288
1241
  msgid "To change reporting settings visit"
1242
  msgstr "Om je rapportageinstellingen aan te passen, ga naar"
1243
 
1244
+ #: ../cerber-load.php:4314
1245
  msgid "Your login page:"
1246
  msgstr "Je login-pagina:"
1247
 
1248
+ #: ../cerber-load.php:4319
1249
  msgid "Your license is valid until"
1250
  msgstr "Je licentie geldt tot"
1251
 
1252
+ #: ../cerber-load.php:4425
1253
  msgid "Activity details"
1254
  msgstr "Details van activiteiten"
1255
 
1256
+ #: ../admin/cerber-settings.php:576
1257
  msgid "Click to send now"
1258
  msgstr "Klik om nu te versturen"
1259
 
1260
+ #: ../cerber-load.php:808
1261
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1262
  msgstr ">>> Vertaler van WP Cerber? Om een gratis Pro-licentie te krijgen, geef je contactinformatie op bij: https://wpcerber.com/contact/"
1263
 
1264
+ #: ../dashboard.php:583
1265
  msgid "Email has been sent to"
1266
  msgstr "E-mail is verzonden naar"
1267
 
1268
+ #: ../dashboard.php:586
1269
  msgid "Unable to send email to"
1270
  msgstr "Kan geen e-mail verzenden naar"
1271
 
1272
+ #: ../dashboard.php:3297
1273
  msgid "Not permitted for one country"
1274
  msgid_plural "Not permitted for %d countries"
1275
  msgstr[0] "Niet toegestaan voor één land"
1276
  msgstr[1] "Niet toegestaan voor %d landen"
1277
 
1278
+ #: ../dashboard.php:3393
1279
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1280
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1281
  msgstr "Gekozen landen mogen %s, overige landen niet"
1282
 
1283
+ #: ../dashboard.php:3396
1284
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1285
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1286
  msgstr "Gekozen landen mogen niet %s, overige landen wel"
1287
 
1288
+ #: ../cerber-load.php:4413
1289
  msgid "Weekly Report"
1290
  msgstr "Weekrapport"
1291
 
1292
+ #: ../settings.php:199
1293
  msgid "Use 404 template from the active theme"
1294
  msgstr "Gebruik 404-sjabloon van het actieve thema"
1295
 
1296
+ #: ../settings.php:200
1297
  msgid "Display simple 404 page"
1298
  msgstr "Toon eenvoudige 404-pagina"
1299
 
1300
+ #: ../settings.php:1077
1301
  msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
1302
  msgstr "Voer een deel van een query-tekenreeks of -pad in om een request uit te sluiten van inspectie. Eén item per regel."
1303
 
1304
+ #: ../settings.php:692
1305
  msgid "Enable reporting"
1306
  msgstr "Rapporteren aanzetten"
1307
 
1308
  #. How to interpret this line? Do you mean 'was DATE/TIME from IP ADDRESS' ?
1309
+ #: ../cerber-load.php:4343
1310
  msgid "Your last sign-in was %s from %s"
1311
  msgstr "Je laatste inlog was op %s vanaf %s"
1312
 
1313
+ #: ../dashboard.php:322
1314
  msgid "Optional comment for this entry"
1315
  msgstr "Opmerking hierbij"
1316
 
1317
+ #: ../dashboard.php:344
1318
  msgid "You cannot add your IP address or network"
1319
  msgstr "Je kunt je eigen IP of netwerk niet toevoegen"
1320
 
1321
+ #: ../settings.php:568 ../settings.php:576
1322
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1323
  msgstr "Je kunt REGEX-patronen gebruiken; sluit deze op in voorwaartse slashes zoals /admin.*/."
1324
 
1326
  msgid "Cerber Traffic Inspector"
1327
  msgstr "Cerber Verkeersinspectie"
1328
 
1329
+ #: ../dashboard.php:56 ../dashboard.php:1766 ../dashboard.php:4674
1330
  msgid "Traffic Inspector"
1331
  msgstr "Verkeersinspectie"
1332
 
1333
+ #: ../dashboard.php:1805 ../cerber-users.php:1164
1334
  msgid "Traffic"
1335
  msgstr "Verkeer"
1336
 
1337
+ #: ../dashboard.php:4019
1338
  msgid "Request"
1339
  msgstr "Verzoek"
1340
 
1341
+ #: ../dashboard.php:4021 ../cerber-users.php:976
1342
  msgid "Host Info"
1343
  msgstr "Host Info"
1344
 
1345
  #. Do you mean a program for browsing the web like Chrome? Or a ftp user agent or so?
1346
+ #: ../dashboard.php:4022
1347
  msgid "User Agent"
1348
  msgstr "Webbrowser"
1349
 
1350
+ #: ../dashboard.php:4047
1351
  msgid "All requests"
1352
  msgstr "Alle verzoeken"
1353
 
1354
+ #: ../dashboard.php:980 ../dashboard.php:4052
1355
  msgid "Not logged in visitors"
1356
  msgstr "Niet-ingelogde bezoekers"
1357
 
1358
+ #: ../dashboard.php:4055
1359
  msgid "Form submissions"
1360
  msgstr "Formulierverzendingen"
1361
 
1362
+ #: ../dashboard.php:4057
1363
  msgid "Page Not Found"
1364
  msgstr "Pagina niet gevonden"
1365
 
1366
+ #: ../dashboard.php:4069
1367
  msgid "Longer than"
1368
  msgstr "Langer dan"
1369
 
1370
+ #: ../dashboard.php:4092
1371
  msgid "Refresh"
1372
  msgstr "Ververs"
1373
 
1374
+ #: ../common.php:210
1375
  msgid "Check for requests"
1376
  msgstr "Controleer op verzoeken"
1377
 
1378
+ #: ../common.php:1855
1379
  msgid "Not specified"
1380
  msgstr "Niet gespecificeerd"
1381
 
1382
+ #: ../settings.php:767
1383
  msgid "Logging mode"
1384
  msgstr "Rapportagestand"
1385
 
1386
+ #: ../settings.php:770
1387
  msgid "Logging disabled"
1388
  msgstr "Rapportage uit"
1389
 
1390
+ #: ../settings.php:772
1391
  msgid "Smart"
1392
  msgstr "Slim"
1393
 
1394
+ #: ../settings.php:773
1395
  msgid "All traffic"
1396
  msgstr "Alle verkeer"
1397
 
1398
+ #: ../settings.php:799
 
 
 
 
1399
  msgid "Mask these form fields"
1400
  msgstr "Verberg deze formuliervelden"
1401
 
1402
+ #: ../settings.php:824
1403
  msgid "milliseconds"
1404
  msgstr "milliseconden"
1405
 
1406
+ #: ../settings.php:718
1407
  msgid "Enable traffic inspection"
1408
  msgstr "Verkeersinspectie aanzetten"
1409
 
1410
+ #: ../settings.php:795
1411
  msgid "Save request fields"
1412
  msgstr "Bewaar verzoekvelden"
1413
 
1414
+ #: ../settings.php:823
1415
  msgid "Page generation time threshold"
1416
  msgstr "Drempeltijd paginaopbouw"
1417
 
1418
+ #: ../dashboard.php:4039
1419
  msgid "No requests have been logged."
1420
  msgstr "Er zijn geen verzoeken geregistreerd."
1421
 
1422
+ #: ../dashboard.php:1765
1423
  msgid "enabled"
1424
  msgstr "aan"
1425
 
1426
+ #: ../dashboard.php:1770
1427
  msgid "no connection"
1428
  msgstr "geen verbinding"
1429
 
1430
+ #: ../dashboard.php:1555
1431
  msgid "Last seen"
1432
  msgstr "Laatst gezien"
1433
 
1434
+ #: ../cerber-load.php:4049
 
 
 
 
 
1435
  msgid "We're sorry, you are not allowed to proceed"
1436
  msgstr "Excuus, je mag niet doorgaan"
1437
 
1438
+ #: ../settings.php:731
1439
  msgid "Request whitelist"
1440
  msgstr "Verzoek om whitelist"
1441
 
1442
+ #: ../settings.php:735
1443
  msgid "Enter a request URI to exclude the request from inspection. One item per line."
1444
  msgstr "Voer een 'request URI' in om deze van inspectie uit te sluiten. Eén per regel."
1445
 
1446
+ #: ../settings.php:806
1447
  msgid "Save request headers"
1448
  msgstr "Sla 'request headers' op"
1449
 
1450
+ #: ../settings.php:811
1451
  msgid "Save $_SERVER"
1452
  msgstr "Sla $_SERVER op"
1453
 
1454
+ #: ../settings.php:815
1455
  msgid "Save request cookies"
1456
  msgstr "Sla 'request cookies' op"
1457
 
1458
+ #: ../settings.php:358
1459
  msgid "Protect admin scripts"
1460
  msgstr "Bescherm admin scripts"
1461
 
1462
+ #: ../settings.php:359
1463
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1464
  msgstr "Blokkeer ongeoorloofde toegang tot load-scripts.php en load-styles.php\n"
1465
  ""
1466
 
1467
+ #: ../common.php:2780
1468
  msgid "Unable to create the directory"
1469
  msgstr "Kan map niet aanmaken"
1470
 
1471
+ #: ../common.php:2785
1472
  msgid "Destination folder access denied"
1473
  msgstr "Toegang bestemmingsmap afgewezen"
1474
 
1475
+ #: ../common.php:2788
1476
  msgid "File not found"
1477
  msgstr "Bestand niet gevonden"
1478
 
1479
+ #: ../common.php:2791
1480
  msgid "Unable to copy the file"
1481
  msgstr "Kan bestand niet kopiëren"
1482
 
1483
+ #: ../common.php:2797
1484
  msgid "Unable to delete the file"
1485
  msgstr "Kan bestand niet verwijderen"
1486
 
1487
+ #: ../settings.php:136
1488
  msgid "Plugin initialization"
1489
  msgstr "Plugin initialisatie"
1490
 
1491
+ #: ../settings.php:139
1492
  msgid "Load security engine"
1493
  msgstr "Start beveiligingskern"
1494
 
1495
+ #: ../settings.php:142
1496
  msgid "Legacy mode"
1497
  msgstr "Verouderde stand"
1498
 
1499
+ #: ../settings.php:143
1500
  msgid "Standard mode"
1501
  msgstr "Standaardinstelling"
1502
 
1503
+ #: ../admin/cerber-settings.php:654
1504
  msgid "Plugin initialization mode has not been changed"
1505
  msgstr "Plugin initialisatie is niet aangepast"
1506
 
1509
  msgid "This is a standard boot module for WP Cerber Security & Antispam plugin. It was installed when you set the plugin initialization mode to Standard. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1510
  msgstr "Dit is de standaard opstartmodule van de WP Cerber Security & Antispam plugin, geïnstalleerd toen je de plugin-initialisatie op Standaard hebt gezet. Meer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1511
 
1512
+ #: ../common.php:1365
1513
  msgid "File upload denied"
1514
  msgstr "Bestandsupload afgewezen"
1515
 
1516
  #. Shouldn't these 'braces' be 'brackets'?
1517
+ #: ../settings.php:735 ../settings.php:785
1518
  msgid "To specify a REGEX pattern, enclose a whole line in two braces."
1519
  msgstr "Zet bij een REGEX-patroon de hele regel tussen accolades { }."
1520
 
1521
+ #: ../settings.php:129
1522
  msgid "Be careful about enabling these options."
1523
  msgstr "Wees voorzichtig met deze opties!"
1524
 
1525
+ #: ../settings.php:129
1526
  msgid "If you forget your Custom login URL, you will be unable to log in."
1527
  msgstr "Als je de Aangepaste inlog-URL vergeet, kun je niet meer inloggen."
1528
 
1529
+ #: ../dashboard.php:67 ../dashboard.php:4735
1530
  msgid "Site Integrity"
1531
  msgstr "Site-integriteit"
1532
 
1533
+ #: ../dashboard.php:1790 ../dashboard.php:1792 ../cerber-users.php:20 ../cerber-
1534
+ #: users.php:446 ../settings.php:721 ../settings.php:749 ../settings.php:873 ..
1535
+ #: /settings.php:882 ../settings.php:1225 ../cerber-scanner.php:1493
1536
  msgid "Disabled"
1537
  msgstr "Uitgeschakeld"
1538
 
1539
+ #: ../dashboard.php:1791 ../cerber-scanner.php:938
1540
  msgid "Quick Scan"
1541
  msgstr "Snelle Scan"
1542
 
1543
+ #: ../dashboard.php:1793 ../cerber-scanner.php:938
1544
  msgid "Full Scan"
1545
  msgstr "Volledige scan"
1546
 
1547
+ #: ../common.php:1398
 
 
 
 
 
1548
  msgid "Denied"
1549
  msgstr "Afgewezen"
1550
 
1551
+ #: ../settings.php:165 ../settings.php:527 ../settings.php:727
1552
  msgid "Use White IP Access List"
1553
  msgstr "Lijst Toegelaten IP-adressen gebruiken"
1554
 
1555
+ #: ../settings.php:186
1556
  msgid "Disable dashboard redirection"
1557
  msgstr "Dashboard omleiding uitzetten"
1558
 
1559
+ #: ../settings.php:187
1560
  msgid "Disable automatic redirection to the login page when /wp-admin/ is requested by an unauthorized request"
1561
  msgstr "Automatische omleiding naar de loginpagina uitzetten als /wp-admin/ ongeautoriseerd wordt opgevraagd"
1562
 
1563
+ #: ../settings.php:844
1564
  msgid "Scanner settings"
1565
  msgstr "Scanner-instellingen"
1566
 
1567
+ #: ../settings.php:849
1568
  msgid "Custom signatures"
1569
  msgstr "Ondertekening op maat"
1570
 
1571
+ #: ../settings.php:853
1572
  msgid "Specify custom PHP code signatures. One item per line. To specify a REGEX pattern, enclose a whole line in two braces."
1573
  msgstr "Eigen PHP code ondertekeningen, één per regel. Zet bij een REGEX-patroon de hele regel tussen accolades { }."
1574
 
1575
+ #: ../settings.php:856
1576
  msgid "Unwanted file extensions"
1577
  msgstr "Ongewenste bestandsextensies"
1578
 
1579
+ #: ../settings.php:860
1580
  msgid "Specify file extensions to search for. Full scan only. Use comma to separate items."
1581
  msgstr "Geef bedoelde bestandsextensies op, komma-gescheiden. Alleen tbv de volledige scan."
1582
 
1583
+ #: ../settings.php:863
1584
  msgid "Directories to exclude"
1585
  msgstr "Uit te sluiten mappen"
1586
 
1587
+ #: ../settings.php:892
1588
  msgid "Scan temporary directory"
1589
  msgstr "Scan tijdelijke map"
1590
 
1591
+ #: ../settings.php:896
1592
  msgid "Scan session directory"
1593
  msgstr "Scan sessiemap"
1594
 
1595
+ #: ../settings.php:905
1596
  msgid "Delete quarantined files after"
1597
  msgstr "Wis bestanden in quarantaine na"
1598
 
1599
+ #: ../settings.php:919
1600
  msgid "Launch Quick Scan"
1601
  msgstr "Begin Snelle Scan"
1602
 
1603
+ #: ../cerber-scanner.php:1494
1604
  msgid "Every hour"
1605
  msgstr "Elk uur"
1606
 
1607
+ #: ../cerber-scanner.php:1495
1608
  msgid "Every 3 hours"
1609
  msgstr "Elke 3 uur"
1610
 
1611
+ #: ../cerber-scanner.php:1496
1612
  msgid "Every 6 hours"
1613
  msgstr "Elke 6 uur"
1614
 
1615
+ #: ../settings.php:924
1616
  msgid "Launch Full Scan"
1617
  msgstr "Start volledige scan"
1618
 
1619
+ #: ../settings.php:939 ../settings.php:985
1620
  msgid "Low severity"
1621
  msgstr "Niet ernstig"
1622
 
1623
+ #: ../settings.php:940 ../settings.php:986
1624
  msgid "Medium severity"
1625
  msgstr "Ernstig"
1626
 
1627
+ #: ../settings.php:941 ../settings.php:987
1628
  msgid "High severity"
1629
  msgstr "Zeer ernstig"
1630
 
1631
+ #: ../settings.php:936
1632
  msgid "Report an issue if any of the following is true"
1633
  msgstr "Rapporteer "
1634
 
1635
+ #: ../settings.php:945
1636
  msgid "Send email report"
1637
  msgstr "Stuur e-mail-rapport"
1638
 
1639
+ #: ../settings.php:948
1640
  msgid "After every scan"
1641
  msgstr "Na elke scan"
1642
 
1643
+ #: ../settings.php:949
1644
  msgid "If any changes in scan results occurred"
1645
  msgstr "Bij veranderingen in de scanresultaten"
1646
 
1647
+ #: ../settings.php:954
1648
  msgid "Include file sizes"
1649
  msgstr "Voeg bestandsgrootte toe"
1650
 
1651
+ #: ../settings.php:958
1652
  msgid "Include scan errors"
1653
  msgstr "Voeg scanfouten toe"
1654
 
1655
+ #: ../dashboard.php:4737
1656
  msgid "Security Scanner"
1657
  msgstr "Veiligheidsscanner"
1658
 
1659
+ #: ../dashboard.php:4739
1660
  msgid "Scheduling"
1661
  msgstr "Agenderen"
1662
 
1663
+ #: ../admin/cerber-admin.php:164
1664
  msgid "Currently a scheduled scan in progress. Please wait until it is finished."
1665
  msgstr "Er loopt een geagendeerde scan; wacht totdat deze afloopt."
1666
 
1667
+ #: ../admin/cerber-admin.php:168
1668
  msgid "Previous scan started %s has not been completed. Continue scanning?"
1669
  msgstr "Voorgaande scan die begon op %s is nog niet klaar. Daarmee doorgaan?"
1670
 
1671
+ #: ../admin/cerber-admin.php:177
1672
  msgid "It seems this website has never been scanned. To start scanning click the button below."
1673
  msgstr "Deze site lijkt nooit te zijn gescand. Klik onderstaande knop om nu te scannen."
1674
 
1675
+ #: ../admin/cerber-admin.php:180
1676
  msgid "Start Quick Scan"
1677
  msgstr "Begin Snelle Scan"
1678
 
1679
+ #: ../admin/cerber-admin.php:181
1680
  msgid "Start Full Scan"
1681
  msgstr "Begin Volledige Scan"
1682
 
1683
+ #: ../admin/cerber-admin.php:182
1684
  msgid "Stop Scanning"
1685
  msgstr "Stop Scannen"
1686
 
1687
+ #: ../admin/cerber-admin.php:183
1688
  msgid "Continue Scanning"
1689
  msgstr "Hervat Scannen"
1690
 
1691
+ #: ../admin/cerber-admin.php:219
1692
  msgid "Delete"
1693
  msgstr "Wis"
1694
 
1695
+ #: ../cerber-scanner.php:1439
1696
  msgid "Verified"
1697
  msgstr "Geverifieerd"
1698
 
1699
+ #: ../cerber-scanner.php:1446
1700
  msgid "Integrity data not found"
1701
  msgstr "Integriteitsgegevens niet gevonden"
1702
 
1703
+ #: ../cerber-scanner.php:1447
1704
  msgid "Unable to check the integrity of the plugin due to a network error"
1705
  msgstr "Kan integriteit van plugin niet controleren door een netwerkfout"
1706
 
1707
+ #: ../cerber-scanner.php:1448
1708
  msgid "Unable to check the integrity of WordPress files due to a network error"
1709
  msgstr "Kan integriteit van Wordpressbestanden niet controleren door een netwerkfout"
1710
 
1711
+ #: ../cerber-scanner.php:1449
1712
  msgid "Unable to check the integrity of the theme due to a network error"
1713
  msgstr "Kan integriteit van thema niet controleren door een netwerkfout"
1714
 
1715
+ #: ../cerber-scanner.php:1452
1716
  msgid "Local file doesn't exist"
1717
  msgstr "Lokaal bestand bestaat niet"
1718
 
1719
+ #: ../cerber-scanner.php:1454
1720
  msgid "Unable to process file"
1721
  msgstr "Kan bestand niet verwerken"
1722
 
1723
+ #: ../cerber-scanner.php:1455 ../cerber-scanner.php:4645
1724
  msgid "Unable to open file"
1725
  msgstr "Kan bestand niet openen"
1726
 
1727
+ #: ../admin/cerber-admin.php:79 ../cerber-scanner.php:1457
1728
  msgid "Checksum mismatch"
1729
  msgstr "Controlegetal klopt niet"
1730
 
1731
+ #: ../cerber-scanner.php:1460
1732
  msgid "Suspicious code found"
1733
  msgstr "Verdachte code gevonden"
1734
 
1735
+ #: ../cerber-scanner.php:1462
1736
  msgid "Unattended suspicious file"
1737
  msgstr "Verdacht losstaand bestand"
1738
 
1739
+ #: ../cerber-scanner.php:1463
1740
  msgid "Executable code found"
1741
  msgstr "Uitvoerbare code gevonden"
1742
 
1743
+ #: ../cerber-scanner.php:1467
1744
  msgid "Unwanted file extension"
1745
  msgstr "Ongewenste bestandsextensie"
1746
 
1747
+ #: ../cerber-scanner.php:1469
1748
  msgid "Content has been modified"
1749
  msgstr "Inhoud is gewijzigd"
1750
 
1751
+ #: ../cerber-scanner.php:1470
1752
  msgid "New file"
1753
  msgstr "Nieuw bestand"
1754
 
1755
+ #: ../cerber-scanner.php:2526
1756
  msgid "Custom signature found"
1757
  msgstr "Eigen ondertekening gevonden"
1758
 
1759
+ #: ../cerber-scanner.php:3758
1760
  msgid "Scanning folders for files"
1761
  msgstr "Scan mappen voor bestanden"
1762
 
1763
+ #: ../cerber-scanner.php:3762
1764
  msgid "Parsing the list of files"
1765
  msgstr "Bezig de bestandslijst door te nemen"
1766
 
1767
+ #: ../cerber-scanner.php:3763
1768
  msgid "Checking for new and modified files"
1769
  msgstr "Controleren op nieuwe en gewijzigde bestanden"
1770
 
1771
+ #: ../cerber-scanner.php:3764
1772
  msgid "Verifying the integrity of WordPress"
1773
  msgstr "Integriteit van WordPress controleren"
1774
 
1775
+ #: ../cerber-scanner.php:3766
1776
  msgid "Verifying the integrity of the plugins"
1777
  msgstr "Integriteit van plugins controleren"
1778
 
1779
+ #: ../cerber-scanner.php:3768
1780
  msgid "Verifying the integrity of the themes"
1781
  msgstr "Integriteit van thema's controleren"
1782
 
1783
+ #: ../cerber-scanner.php:3769
1784
  msgid "Searching for malicious code"
1785
  msgstr "Kwaadaardige code zoeken"
1786
 
1787
+ #: ../cerber-scanner.php:3770
1788
  msgid "Finalizing the scan"
1789
  msgstr "Scan afronden"
1790
 
1791
+ #: ../admin/cerber-admin.php:96
1792
  msgid "Files to scan"
1793
  msgstr "Bestanden te scannen"
1794
 
1795
+ #: ../admin/cerber-admin.php:103
1796
  msgid "Critical issues"
1797
  msgstr "Kritieke problemen"
1798
 
1799
+ #: ../admin/cerber-admin.php:103 ../cerber-scanner.php:4818
1800
  msgid "Issues total"
1801
  msgstr "Totaal aan problemen"
1802
 
1803
+ #: ../admin/cerber-admin.php:344
1804
  msgid "File access error. Possibly scan results are outdated. Please run Quick or Full Scan."
1805
  msgstr "Fout bij bestandstoegang. Scanresultaten zijn mogelijk verouderd. Scan opnieuw."
1806
 
1807
+ #: ../cerber-scanner.php:4941
1808
  msgid "To view full report visit"
1809
  msgstr "Ga voor volledig rapport naar"
1810
 
1811
+ #: ../cerber-load.php:4285
1812
  msgid "Scanner Report"
1813
  msgstr "Scannerrapport"
1814
 
1815
+ #: ../settings.php:870
1816
  msgid "Monitor new files"
1817
  msgstr "Nieuwe bestanden bewaken"
1818
 
1819
+ #: ../settings.php:879
1820
  msgid "Monitor modified files"
1821
  msgstr "Gewijzigde bestanden bewaken"
1822
 
1823
+ #: ../settings.php:950
1824
  msgid "If new issues found"
1825
  msgstr "Bij nieuw gevonden problemen"
1826
 
1827
+ #: ../admin/cerber-settings.php:955
1828
  msgid "The schedule has been updated"
1829
  msgstr "Het schema is aangepast"
1830
 
1831
  #. Is it really 'directives' or do you mean 'directories' ?
1832
+ #: ../cerber-scanner.php:1466 ../cerber-scanner.php:2706
1833
  msgid "Suspicious directives found"
1834
  msgstr "Verdachte instellingen gevonden"
1835
 
1836
+ #: ../cerber-scanner.php:2704
1837
  msgid "Suspicious code instruction found"
1838
  msgstr "Verdachte code-instructie gevonden"
1839
 
1840
+ #: ../cerber-scanner.php:2705
1841
  msgid "Suspicious code signatures found"
1842
  msgstr "Verdachte code-ondertekeningen gevonden"
1843
 
1844
+ #: ../cerber-scanner.php:2708
1845
  msgid "To solve this issue you have to reinstall %s or update it to the latest version."
1846
  msgstr "Herinstalleer of update %s om dit probleem op te lossen."
1847
 
1848
+ #: ../cerber-scanner.php:2709
1849
  msgid "Please upload a reference ZIP archive"
1850
  msgstr "Upload een referentie-ZIP-archief"
1851
 
1852
+ #: ../cerber-scanner.php:2710
1853
  msgid "Resolve issue"
1854
  msgstr "Probleem oplossen"
1855
 
1856
+ #: ../admin/cerber-admin.php:243
1857
  msgid "We have not found any integrity data to verify"
1858
  msgstr "We hebben geen integriteitsgegevens ter verificatie van"
1859
 
1860
+ #: ../admin/cerber-admin.php:245
1861
  msgid "You have to upload a ZIP archive from which you've installed it. This enables the security scanner to verify the integrity of the code and detect malware."
1862
  msgstr "Je moet het ZIP-archief uploaden vanwaar dit is geïnstalleerd. Daarmee kan de scanner de integriteit van de code controleren en malware herkennen."
1863
 
1864
+ #: ../cerber-scanner.php:4774
1865
  msgid "Full Scan Report"
1866
  msgstr "Rapport Volledige Scan"
1867
 
1868
+ #: ../cerber-scanner.php:4774
1869
  msgid "Quick Scan Report"
1870
  msgstr "Rapportage Snelle Scan"
1871
 
1872
+ #: ../cerber-scanner.php:4787
1873
  msgid "Files scanned"
1874
  msgstr "Bestanden gescand"
1875
 
1876
+ #: ../dashboard.php:304 ../dashboard.php:1383 ../dashboard.php:1435 ../dashboard.
1877
+ #: php:1575
1878
  msgid "Check for activities"
1879
  msgstr "Check op activiteiten"
1880
 
1881
+ #: ../dashboard.php:1535
1882
  msgid "Activated"
1883
  msgstr "Geactiveerd"
1884
 
1885
+ #: ../common.php:1375
1886
  msgid "Malicious request denied"
1887
  msgstr "Kwaadaardige request afgewezen"
1888
 
1889
+ #: ../common.php:1378
1890
  msgid "User activated"
1891
  msgstr "Gebruiker-geactiveerd"
1892
 
1893
+ #: ../common.php:1400
1894
  msgid "Suspicious number of fields"
1895
  msgstr "Verdacht aantal velden"
1896
 
1897
+ #: ../common.php:1401
1898
  msgid "Suspicious number of nested values"
1899
  msgstr "Verdacht aantal geneste waarden"
1900
 
1901
+ #: ../common.php:1402 ../common.php:1473
1902
  msgid "Malicious code detected"
1903
  msgstr "Kwaadaardige code ontdekt"
1904
 
1905
+ #: ../common.php:1474
1906
  msgid "Attempt to upload a file with malicious code"
1907
  msgstr "Poging een bestand met kwaadaardige code te uploaden"
1908
 
1909
+ #: ../common.php:1729
1910
  msgid "Bytes"
1911
  msgstr "Bytes"
1912
 
1913
+ #: ../cerber-scanner.php:1445
1914
  msgid "Vulnerability found"
1915
  msgstr "Kwetsbaarheid gevonden"
1916
 
1917
+ #: ../cerber-scanner.php:1450
1918
  msgid "Unable to check the integrity due to a DB error"
1919
  msgstr "Kan integriteit niet controleren door DB-fout"
1920
 
1921
+ #: ../cerber-scanner.php:3759
1922
  msgid "Scanning the upload folder for files"
1923
  msgstr "Scan de upload-map voor bestanden"
1924
 
1925
+ #: ../cerber-scanner.php:3760
1926
  msgid "Scanning the temp folder for files"
1927
  msgstr "Scan de temp-map voor bestanden"
1928
 
1929
+ #: ../cerber-scanner.php:3761
1930
  msgid "Scanning the session folder for files"
1931
  msgstr "Scan de sessie-map voor bestanden"
1932
 
1933
+ #: ../settings.php:914
1934
  msgid "Automated recurring scan schedule"
1935
  msgstr "Schema voor geautomatiseerde scans"
1936
 
1937
+ #: ../settings.php:931
1938
  msgid "Scan results reporting"
1939
  msgstr "Rapportage scanresultaten"
1940
 
1941
+ #: ../dashboard.php:975 ../dashboard.php:4049
1942
  msgid "Suspicious activity"
1943
  msgstr "Verdachte activiteit"
1944
 
1945
+ #: ../dashboard.php:4050
1946
  msgid "Errors"
1947
  msgstr "Fouten"
1948
 
1955
  msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
1956
  msgstr "Je hebt de limiet aan loginpogingen bereikt. Probeer opnieuw na %d minuten."
1957
 
1958
+ #: ../common.php:1622
1959
  msgctxt "preposition of a period of time like: in 6 hours"
1960
  msgid "in %s"
1961
  msgstr "over %s"
1962
 
1963
+ #: ../admin/cerber-settings.php:557
1964
  msgctxt "preposition of time like: at 11:00"
1965
  msgid "at"
1966
  msgstr "om"
1967
 
1968
+ #: ../dashboard.php:4742
1969
  msgid "Quarantine"
1970
  msgstr "Quarantine"
1971
 
1972
+ #: ../admin/cerber-admin.php:43
1973
  msgid "Started"
1974
  msgstr "Begonnen"
1975
 
1976
+ #: ../admin/cerber-admin.php:47
1977
  msgid "Finished"
1978
  msgstr "Geëindigd"
1979
 
1980
+ #: ../admin/cerber-admin.php:55
1981
  msgid "Performance"
1982
  msgstr "Prestatie"
1983
 
1984
+ #: ../admin/cerber-admin.php:67 ../nexus/cerber-slave-list.php:339
1985
  msgid "Vulnerabilities"
1986
  msgstr "Kwetsbaarheden"
1987
 
1988
+ #: ../admin/cerber-admin.php:71
1989
  msgid "New files"
1990
  msgstr "Nieuwe bestanden"
1991
 
1992
+ #: ../admin/cerber-admin.php:75
1993
  msgid "Changed files"
1994
  msgstr "Aangepaste bestanden"
1995
 
1996
+ #: ../admin/cerber-admin.php:83
1997
  msgid "Unwanted extensions"
1998
  msgstr "Ongewenste extensies"
1999
 
2000
+ #: ../admin/cerber-admin.php:87
2001
  msgid "Unattended files"
2002
  msgstr "Losstaande bestanden"
2003
 
2004
+ #: ../admin/cerber-admin.php:96 ../admin/cerber-admin.php:752
2005
  msgid "Scanned"
2006
  msgstr "Gescand"
2007
 
2008
+ #: ../admin/cerber-admin.php:696
2009
  msgid "There are no files in the quarantine at the moment."
2010
  msgstr "Er staan nu geen bestanden in quarantaine."
2011
 
2012
+ #: ../admin/cerber-admin.php:734
2013
  msgid "Restore"
2014
  msgstr "Terugzetten"
2015
 
2016
+ #: ../admin/cerber-admin.php:731
2017
  msgid "Delete permanently"
2018
  msgstr "Verwijder definitief"
2019
 
2020
+ #: ../admin/cerber-admin.php:754
 
 
 
 
2021
  msgid "Automatic deletion"
2022
  msgstr "Automatische verwijdering"
2023
 
2024
+ #: ../admin/cerber-admin.php:755 ../admin/cerber-admin.php:910 ../admin/cerber-
2025
+ #: admin.php:1318
2026
  msgid "Size"
2027
  msgstr "Grootte"
2028
 
2029
+ #: ../admin/cerber-admin.php:756 ../admin/cerber-admin.php:911
2030
  msgid "File"
2031
  msgstr "Bestand"
2032
 
2033
+ #: ../admin/cerber-admin.php:829
2034
  msgid "The file has been deleted permanently."
2035
  msgstr "Het bestand is definitief verwijderd."
2036
 
2037
+ #: ../admin/cerber-admin.php:844
2038
  msgid "The file has been restored to its original location."
2039
  msgstr "Het bestand is teruggezet op de oorspronkelijke plek."
2040
 
2041
+ #: ../dashboard.php:1806
2042
  msgid "Integrity"
2043
  msgstr "Integriteit"
2044
 
2045
+ #: ../common.php:1364
2046
  msgid "Attempt to upload malicious file denied"
2047
  msgstr "Poging afgeweerd om kwaadaardig bestand te uploaden"
2048
 
2049
+ #: ../cerber-load.php:7176
2050
  msgid "Awesome!"
2051
  msgstr "Geweldig!"
2052
 
2053
+ #: ../settings.php:973
2054
  msgid "Automatic cleanup of malware and suspicious files"
2055
  msgstr "Automatisch opschonen van malware en verdachte bestanden"
2056
 
2057
+ #: ../settings.php:982
2058
  msgid "Files in the uploads folder"
2059
  msgstr "Bestanden in de upload-map"
2060
 
2061
+ #: ../settings.php:991
2062
  msgid "Files with unwanted extensions"
2063
  msgstr "Bestanden met ongewenste extensies"
2064
 
2065
+ #: ../settings.php:1010
2066
  msgid "Exclusions"
2067
  msgstr "Uitsluitingen"
2068
 
2069
+ #: ../settings.php:1014
2070
  msgid "Files in the temporary directory"
2071
  msgstr "Bestanden in de tijdelijke map"
2072
 
2073
+ #: ../settings.php:1018
2074
  msgid "Files in the sessions directory"
2075
  msgstr "Bestanden in de sessie-map"
2076
 
2077
+ #: ../settings.php:1022
2078
  msgid "Files in these directories"
2079
  msgstr "Bestanden in deze mappen"
2080
 
2081
+ #: ../settings.php:1026
2082
  msgid "Use absolute paths. One item per line."
2083
  msgstr "Gebruik absolute paden; één item per regel."
2084
 
2085
+ #: ../settings.php:1029
2086
  msgid "Files with these extensions"
2087
  msgstr "Bestanden met deze extensies"
2088
 
2089
+ #: ../settings.php:1033
2090
  msgid "Use comma to separate items."
2091
  msgstr "Scheid items met komma's."
2092
 
2093
+ #: ../dashboard.php:4740
2094
  msgid "Cleaning up"
2095
  msgstr "Opschonen"
2096
 
2097
+ #: ../cerber-scanner.php:1461
2098
  msgid "Malicious code found"
2099
  msgstr "Kwaadaardige code gevonden"
2100
 
2101
+ #: ../cerber-scanner.php:2701
2102
  msgid "This file contains executable code and may contain obfuscated malware. If this file is a part of a theme or a plugin, it must be located in the theme or the plugin folder. No exception, no excuses."
2103
  msgstr "Het bestand bevat uitvoerbare code en mogelijk verborgen malware. Maakt het deel uit van een thema of plugin, dan moet het in de desbetreffende map staan. Zonder uitzondering."
2104
 
2105
+ #: ../cerber-scanner.php:2702
2106
  msgid "The scanner recognizes this file as \"ownerless\" or \"not bundled\" because it does not belong to any known part of the website and should not be here."
2107
  msgstr "De scanner ziet dit bestand als 'verweesd' of 'niet gekoppeld' omdat het bij geen enkel bekend deel van de website hoort en hier dus geen plaats heeft."
2108
 
2109
+ #: ../cerber-scanner.php:2703
2110
  msgid "It may remain after upgrading to a newer version of %s. It also may be a piece of obfuscated malware. In a rare case it might be a part of a custom-made (bespoke) plugin or theme."
2111
  msgstr "Mogelijk achtergebleven bij een upgrade van %s. Het kan ook deel uitmaken van verborgen malware. Of -uitzonderlijk- bij een maatwerk plugin of thema horen."
2112
 
2113
+ #: ../cerber-scanner.php:2707
2114
  msgid "The contents of the file have been changed and do not match what exists in the official WordPress repository or a reference file you have uploaded earlier. The file may have been altered by malware, infected by a virus or has been tampered with."
2115
  msgstr "De bestandsinhoud is veranderd en past niet bij wat er op de officiële WordPress-site staat of bij het referentiebestand dat je eerder hebt geüpload. Het bestand kan zijn aangepast door malware, geïnfecteerd met een virus of handmatig gewijzigd."
2116
 
2117
+ #: ../cerber-scanner.php:4872
2118
  msgid "Deleted"
2119
  msgstr "Verwijderd"
2120
 
2121
+ #: ../cerber-scanner.php:4925
2122
  msgid "Automatically moved to quarantine"
2123
  msgstr "Automatisch in quarantaine gezet"
2124
 
2125
+ #: ../common.php:1403
2126
  msgid "Suspicious SQL code detected"
2127
  msgstr "Verdachte SQL-code gevonden"
2128
 
2129
+ #: ../dashboard.php:1787
2130
  msgctxt "Example: Last malware scan: 23 Jan 2018"
2131
  msgid "Last malware scan"
2132
  msgstr "Recente malware scan"
2133
 
2134
+ #: ../dashboard.php:4676
2135
  msgid "Live Traffic"
2136
  msgstr "Huidig verkeer"
2137
 
2138
+ #: ../settings.php:333
2139
  msgid "Use English for admin interface"
2140
  msgstr "Maak admin interface Engelstalig"
2141
 
2142
+ #: ../settings.php:363
 
 
 
 
2143
  msgid "Disable PHP in uploads"
2144
  msgstr "Zet PHP uit in uploads"
2145
 
2146
+ #: ../settings.php:368
2147
  msgid "Disable PHP error displaying"
2148
  msgstr "Zet PHP foutweergave uit"
2149
 
2150
+ #: ../dashboard.php:4741
2151
  msgid "Ignore List"
2152
  msgstr "Negeer-lijst"
2153
 
2154
+ #: ../admin/cerber-admin.php:222
2155
  msgid "Ignore"
2156
  msgstr "Negeer"
2157
 
2158
+ #: ../admin/cerber-admin.php:868
2159
  msgid "Apply"
2160
  msgstr "Pas toe"
2161
 
2162
+ #: ../admin/cerber-admin.php:908
2163
  msgid "Added"
2164
  msgstr "Toegevoegd"
2165
 
2166
+ #: ../admin/cerber-admin.php:869 ../admin/cerber-admin.php:896
2167
  msgid "Remove from the list"
2168
  msgstr "Verwijder van de lijst"
2169
 
2170
+ #: ../admin/cerber-admin.php:870
2171
  msgid "User Insights"
2172
  msgstr "Gebruikersinzichten"
2173
 
2174
+ #: ../admin/cerber-admin.php:871
2175
  msgid "Traffic Insights"
2176
  msgstr "Verkeersinzichten"
2177
 
2178
+ #: ../admin/cerber-admin.php:872
2179
  msgid "Activity Insights"
2180
  msgstr "Activiteitsinzichten"
2181
 
2182
+ #: ../dashboard.php:2804
2183
  msgid "Are you sure you want to delete selected files?"
2184
  msgstr "Weet je zeker dat je de geselecteerde bestanden wilt wissen?"
2185
 
2186
+ #: ../dashboard.php:2805
2187
  msgid "These files have been moved to the quarantine"
2188
  msgstr "Deze bestanden zijn in quarantaine gezet"
2189
 
2190
+ #: ../dashboard.php:2808
2191
  msgid "Do you want to add selected files to the ignore list?"
2192
  msgstr "Wil je de geselecteerde bestanden toevoegen aan de negeer-lijst?"
2193
 
2194
+ #: ../dashboard.php:2809
2195
  msgid "These files have been added to the ignore list"
2196
  msgstr "Deze bestanden zijn toegevoegd aan de negeer-lijst"
2197
 
2198
+ #: ../dashboard.php:2811
2199
  msgid "Some errors occurred"
2200
  msgstr "Er zijn fouten opgetreden"
2201
 
2202
+ #: ../dashboard.php:2812
2203
  msgid "All files have been processed"
2204
  msgstr "Alle bestanden zijn verwerkt"
2205
 
2206
+ #: ../dashboard.php:5085
2207
  msgid "These features are available in a professional version of the plugin."
2208
  msgstr "Deze functies zijn beschikbaar in de betaalde versie van de plugin."
2209
 
2210
+ #: ../dashboard.php:5086
2211
  msgid "Know more about all advantages at"
2212
  msgstr "Leer alle voordelen kennen op"
2213
 
2214
+ #: ../common.php:1404
2215
  msgid "Suspicious JavaScript code detected"
2216
  msgstr "Verdachte JavaScript-code ontdekt"
2217
 
2218
+ #: ../admin/cerber-settings.php:958
2219
  msgid "Unable to update the schedule"
2220
  msgstr "Kan het schema niet vernieuwen"
2221
 
2222
+ #: ../admin/cerber-admin.php:767
2223
  msgid "All scans"
2224
  msgstr "Alle scans"
2225
 
2226
+ #: ../admin/cerber-admin.php:874
2227
  msgid "The list is empty."
2228
  msgstr "De lijst is leeg."
2229
 
2230
+ #: ../admin/cerber-admin.php:713
2231
  msgid "No files match the specified filter."
2232
  msgstr "Het filter levert geen bestanden op."
2233
 
2234
+ #: ../admin/cerber-admin.php:713
2235
  msgid "Click here to see the full list of files"
2236
  msgstr "Klik hier om de hele bestandenlijst te zien"
2237
 
2238
+ #: ../dashboard.php:848
2239
  msgid "Additional Details"
2240
  msgstr "Aanvullende details"
2241
 
2242
+ #: ../dashboard.php:3573
2243
  msgid "Page generation time"
2244
  msgstr "Aanmaaktijd pagina"
2245
 
2246
+ #: ../dashboard.php:5121
2247
  msgid "Log In"
2248
  msgstr "Inloggen"
2249
 
2250
+ #: ../dashboard.php:5122
2251
  msgid "Log Out"
2252
  msgstr "Uitloggen"
2253
 
2254
+ #: ../dashboard.php:5123
2255
  msgid "Register"
2256
  msgstr "Aanmelden"
2257
 
2258
+ #: ../dashboard.php:5126
2259
  msgid "WooCommerce Log In"
2260
  msgstr "WooCommerce Log In"
2261
 
2262
+ #: ../dashboard.php:5127
2263
  msgid "WooCommerce Log Out"
2264
  msgstr "WooCommerce Log Out"
2265
 
2266
+ #: ../dashboard.php:5166 ../dashboard.php:5167
2267
  msgid "Add to menu"
2268
  msgstr "Aan menu toevoegen"
2269
 
2270
+ #: ../common.php:1392
2271
  msgid "IP address is locked out"
2272
  msgstr "IP-adres is uitgesloten"
2273
 
2274
+ #: ../common.php:1477
2275
  msgid "Multiple suspicious requests"
2276
  msgstr "Meerdere verdachte verzoeken"
2277
 
2278
+ #: ../settings.php:713
2279
  msgid "Traffic Inspection"
2280
  msgstr "Verkeersinspectie"
2281
 
2282
+ #: ../settings.php:722 ../settings.php:750
2283
  msgid "Maximum compatibility"
2284
  msgstr "Maximale compatibiliteit"
2285
 
2286
+ #: ../settings.php:723 ../settings.php:751
2287
  msgid "Maximum security"
2288
  msgstr "Maximale veiligheid"
2289
 
2290
+ #: ../settings.php:741
2291
  msgid "Erroneous Request Shielding"
2292
  msgstr "Afschermen foutieve requests"
2293
 
2294
+ #: ../settings.php:746
2295
  msgid "Enable error shielding"
2296
  msgstr "Foutafscherming aanzetten"
2297
 
2298
+ #: ../settings.php:819
2299
  msgid "Save software errors"
2300
  msgstr "Softwarefouten opslaan"
2301
 
2302
+ #: ../cerber-scanner.php:3757
2303
  msgid "Preparing for the scan"
2304
  msgstr "Scan voorbereiden"
2305
 
2306
+ #: ../common.php:1405
2307
  msgid "Blocked by administrator"
2308
  msgstr "Geblokkeerd door de beheerder"
2309
 
2319
  msgid "User is not permitted to log into the website"
2320
  msgstr "Gebruiker mag niet inloggen op de site"
2321
 
2322
+ #: ../cerber-users.php:68 ../settings.php:534
2323
  msgid "User Message"
2324
  msgstr "bericht van gebruiker"
2325
 
2331
  msgid "Blocked Users"
2332
  msgstr "Geblokkeerde Gebruikers"
2333
 
2334
+ #: ../settings.php:354
2335
  msgid "Block access to user pages like /?author=n"
2336
  msgstr "Blokkeer toegang tot gebruikerspagina's als /?author=n"
2337
 
2338
+ #: ../settings.php:384
2339
  msgid "Access to WordPress REST API"
2340
  msgstr "Toegang tot WordPress REST API"
2341
 
2342
+ #: ../settings.php:395
2343
  msgid "Block access to WordPress REST API except any of the following"
2344
  msgstr "Blokkeer toegang tot gebruikersdata via REST API behalve"
2345
 
2346
+ #: ../settings.php:405
2347
  msgid "Allow REST API for these roles"
2348
  msgstr "Sta REST API toe voor deze rollen"
2349
 
2350
+ #: ../settings.php:410
2351
  msgid "Allow these namespaces"
2352
  msgstr "Sta deze naamruimtes toe"
2353
 
2354
+ #: ../settings.php:755
2355
  msgid "Ignore logged in users"
2356
  msgstr "Negeer ingelogde gebruikers"
2357
 
2358
+ #: ../settings.php:132
2359
  msgid "These restrictions do not apply to IP addresses in the White IP Access List"
2360
  msgstr "Deze beperkingen gelden niet voor IP-adressen op de Toegelaten Lijst"
2361
 
2362
+ #: ../admin/cerber-settings.php:517
2363
  msgid "Select one or more roles"
2364
  msgstr "Kies een of meer rollen"
2365
 
2366
+ #: ../dashboard.php:1150 ../cerber-users.php:1019
2367
  msgid "Filter by registered user"
2368
  msgstr "Gefilterd door een geregistreerde gebruiker"
2369
 
2370
+ #: ../settings.php:520
2371
  msgid "Authorized users only"
2372
  msgstr "Alleen bevoegde gebruikers"
2373
 
2374
+ #: ../settings.php:521
2375
  msgid "Only registered and logged in website users have access to the website"
2376
  msgstr "Alleen geregistreerde en ingelogde gebruikers hebben toegang tot de website"
2377
 
2378
+ #: ../settings.php:538 ../settings.php:1470
2379
  msgid "Only registered and logged in users are allowed to view this website"
2380
  msgstr "Alleen geregistreerde en ingelogde gebruikers mogen de website bekijken"
2381
 
2382
+ #: ../settings.php:543
2383
  msgid "Redirect to URL"
2384
  msgstr "Omleiding naar URL"
2385
 
2386
+ #: ../dashboard.php:4795
2387
  msgid "Changelog"
2388
  msgstr "Log van aanpassingen"
2389
 
2390
+ #: ../dashboard.php:652
2391
  msgid "Default settings have been loaded"
2392
  msgstr "Standaardinstellingen zijn geladen"
2393
 
2394
+ #: ../dashboard.php:3281
2395
  msgid "Save all rules"
2396
  msgstr "Alle regels opslaan"
2397
 
2398
+ #: ../dashboard.php:3152 ../admin/cerber-settings.php:628
2399
  msgid "Save Changes"
2400
  msgstr "Veranderingen opslaan"
2401
 
2402
+ #: ../common.php:1381
2403
  msgid "Invalid master credentials"
2404
  msgstr "Ongeldige hoofd-inloggegevens"
2405
 
2406
+ #: ../settings.php:1170
2407
  msgid "Master settings"
2408
  msgstr "Hoofdinstellingen"
2409
 
2410
+ #: ../settings.php:1178
2411
  msgid "Return to the website list"
2412
  msgstr "Terug naar de website-lijst"
2413
 
2414
+ #: ../settings.php:1182
2415
  msgid "Show \"Switched to\" notification"
2416
  msgstr "Toon 'Omgeschakeld naar'-melding"
2417
 
2418
+ #: ../settings.php:1186
2419
  msgid "Add @ site to the page title"
2420
  msgstr "Voeg '@site' toe aan de paginakop"
2421
 
2422
+ #: ../settings.php:900 ../settings.php:1203 ../settings.php:1231
2423
  msgid "Enable diagnostic logging"
2424
  msgstr "Diagnostische logging aanzetten"
2425
 
2426
+ #: ../settings.php:1214
2427
  msgid "Limit access by IP address"
2428
  msgstr "Toegang beperken op IP-adres"
2429
 
2430
+ #: ../settings.php:1220
2431
  msgid "Access to this website"
2432
  msgstr "Toegang tot deze website"
2433
 
2434
+ #: ../settings.php:1223
2435
  msgid "Full access mode"
2436
  msgstr "Volledige-toegangs-modus"
2437
 
2438
+ #: ../settings.php:1224
2439
  msgid "Read-only mode"
2440
  msgstr "Alleen-lezen-modus"
2441
 
2442
+ #: ../settings.php:1245
2443
  msgid "The full access mode requires the PRO version of WP Cerber"
2444
  msgstr "Volledige toegang tot alle functies vergt WP Cerber PRO"
2445
 
2455
  msgid "Notes"
2456
  msgstr "Aantekeningen"
2457
 
2458
+ #: ../nexus/cerber-slave-list.php:161
2459
  msgid "Add a slave website"
2460
  msgstr "Voeg een 'slave'-website toe"
2461
 
2462
+ #: ../cerber-users.php:1085 ../nexus/cerber-slave-list.php:246
2463
  msgid "Search results for:"
2464
  msgstr "Zoekresultaten voor:"
2465
 
2466
+ #: ../nexus/cerber-slave-list.php:281
2467
  msgid "Edit"
2468
  msgstr "Aanpassen"
2469
 
2470
+ #: ../nexus/cerber-slave-list.php:287
2471
  msgid "Switch to"
2472
  msgstr "Ga naar:"
2473
 
2474
+ #: ../nexus/cerber-slave-list.php:415
2475
  msgid "No websites configured."
2476
  msgstr "Geen website geconfigureerd."
2477
 
2478
+ #: ../nexus/cerber-slave-list.php:415
2479
  msgid "Add a new one"
2480
  msgstr "Voeg een nieuwe toe"
2481
 
2566
  msgid "Visit Site"
2567
  msgstr "Bezoek Site"
2568
 
2569
+ #: ../cerber-load.php:5281 ../nexus/cerber-nexus.php:64
2570
  msgid "Enable slave mode"
2571
  msgstr "'Slave'-modus aanzetten"
2572
 
2623
  msgstr "Installeer het toegangscertificaat op de hoofdwebsite."
2624
 
2625
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
2626
+ #: ../common.php:1615
2627
  msgid "%s sec"
2628
  msgid_plural "%s secs"
2629
  msgstr[0] "%s sec"
2630
  msgstr[1] "%s sec"
2631
 
2632
+ #: ../settings.php:696
2633
  msgid "Send reports on"
2634
  msgstr "Verstuur rapportages op"
2635
 
2653
  msgid "Delete website"
2654
  msgstr "Verwijder website"
2655
 
2656
+ #: ../nexus/cerber-slave-list.php:135
2657
  msgid "All groups"
2658
  msgstr "Alle groepen"
2659
 
2677
  msgid "Invalid response from the slave website"
2678
  msgstr "Ongeldig antwoord van de 'slave'-website"
2679
 
2680
+ #: ../common.php:1358 ../common.php:1467
2681
  msgid "Attempt to log in with non-existing username"
2682
  msgstr "Inlogpoging met onbekende gebruikersnaam"
2683
 
2684
+ #: ../cerber-load.php:4439
2685
  msgid "Attempts to log in with non-existing usernames"
2686
  msgstr "Pogingen om in te loggen met een onbekende gebruikersnaam"
2687
 
2688
+ #: ../settings.php:1190
2689
  msgid "Use master language"
2690
  msgstr "Gebruik hoofdtaal"
2691
 
2692
+ #: ../settings.php:181
2693
  msgid "Non-existing users"
2694
  msgstr "Niet-bestaande gebruikers"
2695
 
2696
+ #: ../settings.php:182
2697
  msgid "Immediately block IP when attempting to log in with a non-existing username"
2698
  msgstr "IP meteen blokkeren bij inlogpoging op niet-bestaande gebruiker"
2699
 
2701
  msgid "Owner"
2702
  msgstr "Eigenaar"
2703
 
2704
+ #: ../nexus/cerber-slave-list.php:415
2705
  msgid "Disable master mode"
2706
  msgstr "Zet beheermodus uit"
2707
 
2709
  msgid "To revoke the token and disable remote management, click here:"
2710
  msgstr "Om het certificaat in te trekken en beheer op afstand te stoppen, klik hier:"
2711
 
2712
+ #: ../settings.php:364
2713
  msgid "Block execution of PHP scripts in the WordPress media folder"
2714
  msgstr "Voorkom uitvoeren van PHP-scripts in de WordPress media-map"
2715
 
2721
  msgid "A newer version is available"
2722
  msgstr "Er staat een nieuwere versie klaar"
2723
 
2724
+ #: ../dashboard.php:969
2725
  msgid "New users"
2726
  msgstr "Nieuwe gebruikers"
2727
 
2728
+ #: ../dashboard.php:982
2729
  msgid "My activity"
2730
  msgstr "Mijn activiteiten"
2731
 
2732
+ #: ../dashboard.php:2572
2733
  msgid "Create Alert"
2734
  msgstr "Waarschuwing aanmaken"
2735
 
2736
+ #: ../dashboard.php:2576
2737
  msgid "Delete Alert"
2738
  msgstr "Waarschuwing verwijderen"
2739
 
2740
+ #: ../dashboard.php:2609
2741
  msgid "The alert has been created"
2742
  msgstr "Waarschuwing aangemaakt"
2743
 
2744
+ #: ../dashboard.php:2613
2745
  msgid "The alert has been deleted"
2746
  msgstr "Waarschuwing verwijderd"
2747
 
2748
+ #: ../dashboard.php:4079
2749
  msgid "Advanced Search"
2750
  msgstr "Geavanceerd zoeken"
2751
 
2754
  msgid "Cerber Tech Inc."
2755
  msgstr "Cerber Tech Inc."
2756
 
2757
+ #: ../cerber-load.php:5007
2758
  msgid "To delete the alert, click here"
2759
  msgstr "Klik om waarschuwing te verwijderen"
2760
 
2761
+ #: ../settings.php:214
2762
  msgid "Custom login URL may contain Latin alphanumeric characters, dashes and underscores only"
2763
  msgstr "Gebruik letters, cijfers, koppelstreepjes of onderstrepingen voor de eigen login-URL"
2764
 
2765
+ #: ../settings.php:226
2766
  msgid "Site-specific settings"
2767
  msgstr "Site-specifieke instellingen"
2768
 
2769
+ #: ../settings.php:234
2770
  msgid "Prefix for plugin cookies"
2771
  msgstr "Voorvoegsel voor plugin-cookies"
2772
 
2773
+ #: ../settings.php:235
2774
  msgid "Prefix may contain only Latin alphanumeric characters and underscores"
2775
  msgstr "Gebruik letters, cijfers of onderstrepingen voor het voorvoegsel"
2776
 
2777
+ #: ../settings.php:650
2778
  msgid "Lockout notifications"
2779
  msgstr "Melding van uitsluitingen"
2780
 
2781
+ #: ../settings.php:678
2782
  msgid "Pushbullet access token"
2783
  msgstr "Pushbullet access token"
2784
 
2785
+ #: ../settings.php:681
2786
  msgid "Pushbullet device"
2787
  msgstr "Pushbullet apparaat"
2788
 
2789
+ #: ../settings.php:978
2790
  msgid "Delete unattended files"
2791
  msgstr "Verwijder verweesde bestanden"
2792
 
2793
+ #: ../settings.php:997
2794
  msgid "Automatic recovery of modified and infected files"
2795
  msgstr "Automatisch herstel van aangepaste en geïnfecteerde bestanden"
2796
 
2797
+ #: ../settings.php:1000
2798
  msgid "Recover WordPress files"
2799
  msgstr "Herstel Wordpress-bestanden"
2800
 
2801
+ #: ../settings.php:1004
2802
  msgid "Recover plugins files"
2803
  msgstr "Herstel plugin-bestanden"
2804
 
2805
+ #: ../cerber-scanner.php:1473
2806
  msgid "File deleted"
2807
  msgstr "Bestand verwijderd"
2808
 
2809
+ #: ../cerber-scanner.php:1474
2810
  msgid "File recovered"
2811
  msgstr "Bestand hersteld"
2812
 
2813
+ #: ../cerber-scanner.php:3765
2814
  msgid "Recovering WordPress files"
2815
  msgstr "Wordpress-bestanden aan het herstellen"
2816
 
2817
+ #: ../cerber-scanner.php:3767
2818
  msgid "Recovering plugins files"
2819
  msgstr "Plugin-bestanden aan het herstellen"
2820
 
2821
+ #: ../cerber-scanner.php:4876
2822
  msgid "Recovered"
2823
  msgstr "Hersteld"
2824
 
2825
+ #: ../cerber-scanner.php:4926
2826
  msgid "Automatically deleted"
2827
  msgstr "Automatisch verwijderd"
2828
 
2829
+ #: ../cerber-scanner.php:4929
2830
  msgid "Automatically recovered"
2831
  msgstr "Automatisch hersteld"
2832
 
2834
  msgid "Cerber User Security"
2835
  msgstr "Cerber Gebruikersbeveiliging"
2836
 
2837
+ #: ../dashboard.php:64 ../dashboard.php:4700
2838
  msgid "User Policies"
2839
  msgstr "Gebruikersbeleid"
2840
 
2841
+ #: ../dashboard.php:1809
2842
  msgid "A new version is available"
2843
  msgstr "Er is een nieuwe versie beschikbaar"
2844
 
2845
+ #: ../dashboard.php:4702
2846
  msgid "Role-based"
2847
  msgstr "Rolgebaseerd"
2848
 
2849
+ #: ../dashboard.php:4703
2850
  msgid "Global"
2851
  msgstr "Mondiaal"
2852
 
2853
+ #: ../common.php:1406
2854
  msgid "Site policy enforcement"
2855
  msgstr "Afdwingen gebruiksvoorwaarden site"
2856
 
2857
+ #: ../common.php:1407
2858
  msgid "2FA code verified"
2859
  msgstr "2FA code geverifieerd"
2860
 
2861
+ #: ../common.php:1408
2862
  msgid "Initiated by the user"
2863
  msgstr "Gestart door gebruiker"
2864
 
2865
+ #: ../common.php:1835
 
 
 
 
2866
  msgid "A new version of %s is available. Please install it."
2867
  msgstr "Er is een nieuwe versie van %s. Installeer het."
2868
 
2869
+ #: ../cerber-load.php:1575
2870
  msgid "Email address is not permitted."
2871
  msgstr "E-mail-adres niet toegestaan."
2872
 
2873
+ #: ../cerber-load.php:1575
2874
  msgid "Please choose another one."
2875
  msgstr "Kies een andere."
2876
 
2877
+ #: ../cerber-users.php:10 ../cerber-users.php:439
2878
  msgid "Two-Factor Authentication"
2879
  msgstr "Dubbele authenticatie"
2880
 
2882
  msgid "Determined by user role policies"
2883
  msgstr "Bepaald door gebruikersrol"
2884
 
2885
+ #: ../cerber-users.php:19 ../cerber-users.php:447
2886
  msgid "Always enabled"
2887
  msgstr "Altijd aan"
2888
 
2894
  msgid "Save All Changes"
2895
  msgstr "Sla wijzigingen op"
2896
 
2897
+ #: ../cerber-users.php:401
2898
  msgid "Block access to WordPress Dashboard"
2899
  msgstr "Blokkeer toegang tot het Wordpress Dashboard"
2900
 
2901
+ #: ../cerber-users.php:406
2902
  msgid "Hide Toolbar when viewing site"
2903
  msgstr "Verberg Toolbar bij bekijken site"
2904
 
2905
+ #: ../cerber-users.php:412
2906
  msgid "Redirection rules"
2907
  msgstr "Regels voor doorverwijzing"
2908
 
2909
+ #: ../cerber-users.php:416
2910
  msgid "Redirect user after login"
2911
  msgstr "Verwijs gebruiker door na login"
2912
 
2913
+ #: ../cerber-users.php:421
2914
  msgid "Redirect user after logout"
2915
  msgstr "Verwijs gebruiker door na logout"
2916
 
2917
+ #: ../cerber-users.php:432 ../settings.php:583
2918
  msgid "User session expiration time"
2919
  msgstr "Afkaptijd gebruikerssessie"
2920
 
2921
+ #: ../cerber-users.php:443
2922
  msgid "Two-factor authentication"
2923
  msgstr "Dubbele authenticatie"
2924
 
2925
+ #: ../cerber-users.php:448
2926
  msgid "Advanced mode"
2927
  msgstr "Geavanceerde modus"
2928
 
2929
+ #: ../cerber-users.php:452
2930
  msgid "Enforce two-factor authentication if any of the following conditions is true"
2931
  msgstr "Dwing dubbele authenticatie af als enige van deze voorwaarden waar is"
2932
 
2933
+ #: ../cerber-users.php:458
2934
  msgid "Login from a different country"
2935
  msgstr "Aanmelding uit een ander land"
2936
 
2937
+ #: ../cerber-users.php:464
2938
  msgid "Login from a different network Class C"
2939
  msgstr "Aanmelding vanaf een ander klasse-C-netwerk"
2940
 
2941
+ #: ../cerber-users.php:470
2942
  msgid "Login from a different IP address"
2943
  msgstr "Aanmelding vanaf een ander IP-adres"
2944
 
2945
+ #: ../cerber-users.php:476
2946
  msgid "Using a different browser or device"
2947
  msgstr "Met gebruikmaking van een andere browser of ander apparaat"
2948
 
2949
+ #: ../cerber-users.php:482
2950
  msgid "Enforce two-factor authentication with fixed intervals"
2951
  msgstr "Dwing met vaste regelmaat dubbele authenticatie af"
2952
 
2953
+ #: ../cerber-users.php:488
2954
  msgid "Regular time intervals (days)"
2955
  msgstr "Geregelde tijdsinterval (dagen)"
2956
 
2957
+ #: ../cerber-users.php:490
2958
  msgid "days interval"
2959
  msgstr "dagen interval"
2960
 
2961
+ #: ../cerber-users.php:495
2962
  msgid "Fixed number of logins"
2963
  msgstr "Vast aantal aanmeldingen"
2964
 
2965
+ #: ../cerber-users.php:497
2966
  msgid "number of logins"
2967
  msgstr "aantal aanmeldingen"
2968
 
2969
+ #: ../cerber-users.php:541
2970
  msgid "Policies have been updated"
2971
  msgstr "Beleid is vernieuwd"
2972
 
2973
+ #: ../settings.php:558
2974
  msgid "Restrict email addresses"
2975
  msgstr "Beperk e-mail-adressen"
2976
 
2977
+ #: ../settings.php:561
2978
  msgid "No restrictions"
2979
  msgstr "Geen beperkingen"
2980
 
2981
+ #: ../settings.php:562
2982
  msgid "Deny all email addresses that match the following"
2983
  msgstr "Wijs mailadressen af die voldoen aan het volgende"
2984
 
2985
+ #: ../settings.php:563
2986
  msgid "Permit only email addresses that match the following"
2987
  msgstr "Sta alleen mailadressen toe die voldoen aan het volgende"
2988
 
2989
+ #: ../settings.php:568
2990
  msgid "Specify email addresses, wildcards or REGEX patterns. Use comma to separate items."
2991
  msgstr "Geef e-mailadressen, jokertekens of REGEX-patronen op. Scheid items met komma's."
2992
 
2993
+ #: ../settings.php:1011
2994
  msgid "These files will never be deleted during automatic cleanup."
2995
  msgstr "Deze bestanden worden nooit gewist bij een automatische schoonmaak."
2996
 
3058
  msgid "Two-Factor Authentication Email"
3059
  msgstr "E-mail voor dubbele authenticatie"
3060
 
3061
+ #: ../dashboard.php:3224
3062
  msgid "Role-based rules are configured"
3063
  msgstr "Rolgebaseerde regels worden ingesteld"
3064
 
3065
+ #: ../dashboard.php:3418
3066
  msgid "All Users"
3067
  msgstr "Alle gebruikers"
3068
 
3075
  msgid "The code is valid for %s minutes."
3076
  msgstr "De code is %s minuten geldig."
3077
 
3078
+ #: ../dashboard.php:351
3079
  msgid "IP address %s has been added to White IP Access List"
3080
  msgstr "IP-adres %s staat nu op de lijst toegelaten adressen"
3081
 
3082
+ #: ../dashboard.php:348
3083
  msgid "IP address %s has been added to Black IP Access List"
3084
  msgstr "IP-adres %s staat nu op de lijst verboden adressen"
3085
 
3086
+ #: ../dashboard.php:195 ../dashboard.php:845 ../dashboard.php:1107 ../dashboard.
3087
+ #: php:4020 ../cerber-users.php:975
3088
  msgid "IP Address"
3089
  msgstr "IP-adres"
3090
 
3091
+ #: ../dashboard.php:852 ../dashboard.php:1113
3092
  msgid "Username"
3093
  msgstr "Gebruikersnaam"
3094
 
3095
+ #: ../dashboard.php:3306
3096
  msgid "Any country is permitted"
3097
  msgstr "Elk land is toegestaan"
3098
 
3099
+ #: ../dashboard.php:2887 ../dashboard.php:4605
3100
  msgid "Sessions"
3101
  msgstr "Sessies"
3102
 
3103
+ #: ../cerber-users.php:613
3104
  msgid "Session has been terminated"
3105
  msgid_plural "%s sessions have been terminated"
3106
  msgstr[0] "De sessie is gestopt"
3107
  msgstr[1] "%s sessies zijn gestopt"
3108
 
3109
+ #: ../cerber-users.php:973
3110
  msgid "Created"
3111
  msgstr "Aangemaakt"
3112
 
3113
+ #: ../cerber-users.php:994
3114
  msgid "Terminate session"
3115
  msgstr "Beëindig sessie"
3116
 
3117
+ #: ../cerber-users.php:995
3118
  msgid "Block user"
3119
  msgstr "Blokkeer gebruiker"
3120
 
3121
+ #: ../cerber-users.php:1127
3122
  msgid "Profile"
3123
  msgstr "Profiel"
3124
 
3125
+ #: ../cerber-users.php:1140
3126
  msgid "All Logins"
3127
  msgstr "Alle log-ins"
3128
 
3129
+ #: ../cerber-users.php:1141
3130
  msgid "User Activity"
3131
  msgstr "Gebruikersactiviteit"
3132
 
3133
+ #: ../cerber-users.php:1187
3134
  msgid "Terminate"
3135
  msgstr "Beëindig"
3136
 
3137
+ #: ../dashboard.php:1759
3138
  msgid "user"
3139
  msgid_plural "users"
3140
  msgstr[0] "gebruiker"
3141
  msgstr[1] "gebruikers"
3142
 
3143
+ #: ../settings.php:390
3144
  msgid "Block access to users' data via REST API"
3145
  msgstr "Blokkeer toegang tot gebruikersdata via de REST API"
3146
 
3147
+ #: ../cerber-scanner.php:1472
3148
  msgid "Unable to delete"
3149
  msgstr "Kan niet verwijderen"
3150
 
3156
  msgid "Data Shield"
3157
  msgstr "Data Shield"
3158
 
3159
+ #: ../dashboard.php:4690
3160
  msgid "Data Shield Policies"
3161
  msgstr "Data Shield instellingen"
3162
 
3163
+ #: ../dashboard.php:4692
3164
  msgid "Accounts & Roles"
3165
  msgstr "Accounts & Rollen"
3166
 
3167
+ #: ../dashboard.php:4693
3168
  msgid "Site Settings"
3169
  msgstr "Site-instellingen"
3170
 
3171
+ #: ../common.php:1369
3172
  msgid "User creation denied"
3173
  msgstr "Gebruiker aanmaken afgewezen"
3174
 
3175
+ #: ../common.php:1371
3176
  msgid "Role update denied"
3177
  msgstr "Bijwerken Rol afgewezen"
3178
 
3179
+ #: ../common.php:1372
3180
  msgid "Setting update denied"
3181
  msgstr "Bijwerken instellingen afgewezen"
3182
 
3183
+ #: ../common.php:1413
3184
  msgid "Permission denied"
3185
  msgstr "Toestemming geweigerd"
3186
 
3187
+ #: ../common.php:1415
3188
  msgid "Invalid user"
3189
  msgstr "Ongeldige gebruiker"
3190
 
3191
+ #: ../common.php:1416
3192
  msgid "Incorrect password"
3193
  msgstr "Onjuist wachtwoord"
3194
 
3195
+ #: ../settings.php:422
3196
  msgid "Protect user accounts"
3197
  msgstr "Bescherm gebruiker-accounts"
3198
 
3199
+ #: ../settings.php:427
3200
  msgid "Restrict user account creation and user management with the following policies"
3201
  msgstr "Beperk aanmaak gebruikers-accounts en gebruikerbeheer met de volgende instellingen"
3202
 
3203
+ #: ../settings.php:433
3204
  msgid "User registrations are limited to these roles"
3205
  msgstr "Gebruikersregistratie is beperkt tot deze rollen"
3206
 
3207
+ #: ../settings.php:439
3208
  msgid "Users with these roles are permitted to create new accounts"
3209
  msgstr "Gebruikers in deze rol kunnen nieuwe accounts aanmaken"
3210
 
3211
+ #: ../settings.php:444
3212
  msgid "Users with these roles are permitted to change sensitive user data"
3213
  msgstr "Gebruikers in deze rol kunnen gebruikersdata aanpassen"
3214
 
3215
+ #: ../settings.php:449 ../settings.php:477 ../settings.php:506
3216
  msgid "Do not apply these policies to the IP addresses in the White IP Access List"
3217
  msgstr "Pas deze instellingen niet toe op de lijst toegelaten IP-adressen"
3218
 
3219
+ #: ../settings.php:457
3220
  msgid "Protect user roles"
3221
  msgstr "Bescherm gebruikersrollen"
3222
 
3223
+ #: ../settings.php:461
3224
  msgid "Restrict roles and capabilities management with the following policies"
3225
  msgstr "Beperk beheer van rollen en instellingen met deze maatregelen"
3226
 
3227
+ #: ../settings.php:467
3228
  msgid "Users with these roles are permitted to add new roles"
3229
  msgstr "Gebruikers in deze rol kunnen nieuwe rollen toevoegen"
3230
 
3231
+ #: ../settings.php:472
3232
  msgid "Users with these roles are permitted to change role capabilities"
3233
  msgstr "Gebruikers in deze rol kunnen rol-instellingen aanpassen"
3234
 
3235
+ #: ../settings.php:485
3236
  msgid "Protect site settings"
3237
  msgstr "Bescherm site-instellingen"
3238
 
3239
+ #: ../settings.php:489
3240
  msgid "Restrict updating site settings with the following policies"
3241
  msgstr "Beperk het bijwerken van site-instellingen met deze maatregelen"
3242
 
3243
+ #: ../settings.php:495
3244
  msgid "Users with these roles are permitted to change protected settings"
3245
  msgstr "Gebruikers in deze rol mogen beschermde instellingen aanpassen"
3246
 
3247
+ #: ../settings.php:500
3248
  msgid "Protected settings"
3249
  msgstr "Beschermde instellingen"
3250
 
3251
+ #: ../settings.php:528
3252
  msgid "Do not apply these policy to the IP addresses in the White IP Access List"
3253
  msgstr "Pas deze instelling niet toe op de lijst toegelaten IP-adressen"
3254
 
3288
  msgid "Server Country"
3289
  msgstr "Land van server"
3290
 
3291
+ #: ../nexus/cerber-slave-list.php:145
3292
  msgid "All servers"
3293
  msgstr "Alle servers"
3294
 
3295
+ #: ../nexus/cerber-slave-list.php:152
3296
  msgid "All countries"
3297
  msgstr "Alle landen"
3298
 
3304
  msgid "Hide server IP address"
3305
  msgstr "Verberg IP-adres server"
3306
 
3307
+ #: ../dashboard.php:320
3308
  msgid "IP address, range, wildcard, or CIDR"
3309
  msgstr "IP-adres, -reeks, -jokerteken of CIDR"
3310
 
3311
+ #: ../dashboard.php:321
3312
  msgid "Add Entry"
3313
  msgstr "Voeg toe"
3314
 
3315
+ #: ../dashboard.php:4950
3316
  msgid "The IP address you are trying to add is already in the list"
3317
  msgstr "Het IP-adres dat je wilt toevoegen, staat al in de lijst"
3318
 
3319
+ #: ../common.php:1334
3320
  msgid "IP subnet blocked"
3321
  msgstr "IP subnet geblokkeerd"
3322
 
3323
+ #: ../common.php:1370
3324
  msgid "User row update denied"
3325
  msgstr "Aanpassing rij van gebruiker geweigerd"
3326
 
3327
+ #: ../common.php:1373
3328
  msgid "User metadata update denied"
3329
  msgstr "Aanpassing metadata gebruiker geweigerd"
3330
 
3331
+ #: ../settings.php:1313
3332
  msgid "Any activity"
3333
  msgstr "Enige activiteit"
3334
 
3335
+ #: ../cerber-tools.php:228
3336
  msgid "A database error occurred while importing access list entries"
3337
  msgstr "Import van de toegangslijst leidde tot een database-fout"
3338
 
3339
+ #: ../settings.php:247
3340
  msgid "Enable authentication log monitoring"
3341
  msgstr "Houd logboek voor aanmeldingen bij"
3342
 
3343
+ #: ../settings.php:279 ../settings.php:829
3344
  msgid "Keep log records of not logged in visitors for"
3345
  msgstr "Leg niet-aangemelde bezoekers vast voor"
3346
 
3347
+ #: ../settings.php:285 ../settings.php:835
3348
  msgid "Keep log records of logged in users for"
3349
  msgstr "Leg aangemelde gebruikers vast voor"
3350
 
3352
  msgid "Admin Note"
3353
  msgstr "Aantekening Admin"
3354
 
3355
+ #: ../cerber-users.php:944
3356
  msgid "WP Cerber Personal Data Eraser"
3357
  msgstr "WP Cerber Persoonlijke Data Wisser"
3358
 
3359
+ #: ../settings.php:599
3360
  msgid "Personal Data"
3361
  msgstr "Persoonlijke Gegevens"
3362
 
3363
+ #: ../settings.php:605
3364
  msgid "Enable data erase"
3365
  msgstr "Gegevens wissen inschakelen"
3366
 
3367
+ #: ../settings.php:612
3368
  msgid "Terminate user sessions"
3369
  msgstr "Beëindig gebruikerssessies"
3370
 
3371
+ #: ../settings.php:613
3372
  msgid "Delete user sessions data when user data is erased"
3373
  msgstr "Verwijder gegevens gebruikerssessies als gebruikersinformatie wordt gewist"
3374
 
3375
+ #: ../settings.php:619
3376
  msgid "Enable data export"
3377
  msgstr "Gegevensexport inschakelen"
3378
 
3379
+ #: ../settings.php:626
3380
  msgid "Include activity log events"
3381
  msgstr "Voeg activiteitenlog toe"
3382
 
3383
+ #: ../settings.php:632
3384
  msgid "Include traffic log entries"
3385
  msgstr "Voeg verkeersinformatie toe"
3386
 
3387
+ #: ../settings.php:635
3388
  msgid "Request URL"
3389
  msgstr "URL opvragen"
3390
 
3391
+ #: ../settings.php:636
3392
  msgid "Form fields data"
3393
  msgstr "Gegevens formuliervelden"
3394
 
3395
+ #: ../settings.php:637
3396
  msgid "Cookies"
3397
  msgstr "Cookies"
3398
 
3400
  msgid "Cerber anti-spam settings"
3401
  msgstr "Cerber anti-spam-instellingen"
3402
 
3403
+ #: ../dashboard.php:71 ../settings.php:1152
3404
  msgid "Anti-spam"
3405
  msgstr "Anti-spam"
3406
 
3408
  msgid "Add-ons"
3409
  msgstr "Add-ons"
3410
 
3411
+ #: ../dashboard.php:4654
3412
  msgid "Anti-spam and bot detection settings"
3413
  msgstr "Anti-spam- en botdetectie-instellingen"
3414
 
3415
+ #: ../dashboard.php:4656
3416
  msgid "Anti-spam engine"
3417
  msgstr "Anti-spamroutine"
3418
 
3419
+ #: ../common.php:1476
3420
  msgid "Multiple erroneous requests"
3421
  msgstr "Meervoudige foutieve verzoeken"
3422
 
3423
+ #: ../admin/cerber-settings.php:352
3424
  msgid "%s retries are allowed within %s minutes"
3425
  msgstr "%s herkansingen in %s minuten toegestaan"
3426
 
3427
+ #: ../admin/cerber-settings.php:358
3428
  msgid "%s registrations are allowed within %s minutes from one IP address"
3429
  msgstr "%s registraties binnen %s minuten vanaf één IP-adres toegestaan"
3430
 
3431
+ #: ../admin/cerber-settings.php:381
3432
  msgid "Enable after %s failed login attempts in the last %s minutes"
3433
  msgstr "Aanzetten na %s gefaalde inlogpogingen in de afgelopen %s minuten"
3434
 
3435
+ #: ../settings.php:152
3436
  msgid "Limit"
3437
  msgstr "Limiet"
3438
 
3439
+ #: ../settings.php:385
3440
  msgid "Restrict or completely block access to the WordPress REST API according to your needs"
3441
  msgstr "Naar behoefte toegang tot de WordPress REST API beperken of blokkeren"
3442
 
3443
+ #: ../settings.php:601
3444
  msgid "These features help your organization to be in compliance with personal data protection laws"
3445
  msgstr "Deze functies helpen u de privacywetgeving na te leven"
3446
 
3447
+ #: ../settings.php:659
3448
  msgid "if empty, the website administrator email %s will be used"
3449
  msgstr "indien leeg, wordt de email %s van de sitebeheerder gebruikt"
3450
 
3451
+ #: ../settings.php:663
3452
  msgid "notifications are allowed per hour (0 means unlimited)"
3453
  msgstr "meldingen per uur toegestaan (0 = onbeperkt)"
3454
 
3455
+ #: ../settings.php:674
3456
  msgid "Get notified instantly with mobile and desktop notifications"
3457
  msgstr "Meteen op de hoogte met desktop- en mobiele meldingen"
3458
 
3459
+ #: ../settings.php:689
3460
  msgid "Weekly report is a summary of all activities and suspicious events occurred during the last seven days"
3461
  msgstr "Het weekrapport is een overzicht van activiteiten en verdachte gebeurtenissen van de afgelopen zeven dagen"
3462
 
3463
+ #: ../settings.php:702 ../settings.php:963
3464
  msgid "if empty, the email addresses from the notification settings will be used"
3465
  msgstr "indien leeg, worden de mailadressen voor meldingen gebruikt"
3466
 
3467
+ #: ../settings.php:714
3468
  msgid "Traffic Inspector is a context-aware web application firewall (WAF) that protects your website by recognizing and denying malicious HTTP requests"
3469
  msgstr "VerkeerInspectie beschermt als contextuele WebApplicatie Firewall (WAF) de website door kwaadaardige HTTP-verzoeken te herkennen en te weigeren\n"
3470
  ""
3471
 
3472
+ #: ../settings.php:743
3473
  msgid "Block IP addresses that send excessive requests for non-existing pages or scan website for security breaches"
3474
  msgstr "Blokkeer IP-adressen die extreem veel niet-bestaande pagina's opvragen of die scannen voor beveiligingslekken"
3475
 
3476
+ #: ../settings.php:762
3477
  msgid "Traffic Logging"
3478
  msgstr "Verkeer Loggen"
3479
 
3480
+ #: ../settings.php:763
3481
  msgid "Enable optional traffic logging if you need to monitor suspicious and malicious activity or solve security issues"
3482
  msgstr "Ga het verkeer loggen als je verdachte of kwaadaardige activiteiten wilt volgen, of beveiligingsproblemen wilt oplossen"
3483
 
3484
+ #: ../settings.php:845
3485
  msgid "The scanner monitors file changes, verifies the integrity of WordPress, plugins, and themes, and detects malware"
3486
  msgstr "De scanner ziet bestandswijzigingen, controleert de integriteit van WordPress, plugins en thema's, en detecteert malware"
3487
 
3488
+ #: ../settings.php:867
3489
  msgid "Specify directories to exclude from scanning. One directory per line."
3490
  msgstr "Stel de mappen in die niet gescand worden. Eén map per regel."
3491
 
3492
+ #: ../settings.php:915
3493
  msgid "The scanner automatically scans the website, removes malware and sends email reports with the results of a scan"
3494
  msgstr "De scanner scant de site automatisch, verwijdert malware en mailt de resultaten van de scan"
3495
 
3496
+ #: ../settings.php:932
3497
  msgid "Configure what issues to include in the email report and the condition for sending reports"
3498
  msgstr "Instellen wat deel moet uitmaken van de email-rapportage, en waarom deze verzonden wordt"
3499
 
3500
+ #: ../settings.php:974
3501
  msgid "These policies are automatically enforced at the end of every scheduled scan based on its results. All affected files are moved to the quarantine"
3502
  msgstr "Deze maatregelen worden automatisch toegepast na elke scan, afhankelijk van de scan-resultaten. Getroffen bestanden gaan naar quarantaine"
3503
 
3504
+ #: ../settings.php:1040
3505
  msgid "Cerber anti-spam engine"
3506
  msgstr "Cerber anti-spam-routines"
3507
 
3508
+ #: ../settings.php:1041
3509
  msgid "Spam protection for comment, registration and contact forms on a website"
3510
  msgstr "Spambescherming voor registratie-, opmerkingen- en contactformulieren op de site"
3511
 
3512
+ #: ../settings.php:1062
3513
  msgid "Adjust anti-spam engine"
3514
  msgstr "Anti-spam-routine instellen"
3515
 
3516
+ #: ../settings.php:1063
3517
  msgid "These settings enable you to fine-tune the behavior of anti-spam algorithms and avoid false positives"
3518
  msgstr "Met deze instellingen stel je de anti-spam algoritmes precies in, en voorkom je valse meldingen"
3519
 
3520
+ #: ../settings.php:1087
3521
  msgid "How the plugin processes comments submitted through the standard comment form"
3522
  msgstr "Hoe de plugin opmerkingen verwerkt die binnenkomen via het opmerkingenformulier"
3523
 
3524
+ #: ../nexus/cerber-nexus-slave.php:436
3525
  msgid "Settings updated"
3526
  msgstr "Instellingen aangepast"
3527
 
3528
+ #: ../dashboard.php:1154
3529
  msgid "Request ID"
3530
  msgstr "ID van verzoek"
3531
 
3532
+ #: ../dashboard.php:1155
3533
  msgid "Search in URL"
3534
  msgstr "Zoek in URL"
3535
 
3536
+ #: ../settings.php:874 ../settings.php:883
3537
  msgid "Executable files"
3538
  msgstr "Uitvoerbare bestanden"
3539
 
3540
+ #: ../settings.php:875 ../settings.php:884
3541
  msgid "All files"
3542
  msgstr "Alle bestanden"
3543
 
3544
+ #: ../dashboard.php:1559
3545
+ msgid "Active sessions"
3546
+ msgstr "Actieve sessies"
3547
+
3548
+ #: ../settings.php:584
3549
+ msgid "minutes (leave empty to use the default WordPress value)"
3550
+ msgstr "minuten (leeg laten voor de standaard WordPress waarde)"
3551
+
3552
+ #: ../settings.php:888
3553
+ msgid "Change file permissions when necessary"
3554
+ msgstr "Bestandspermissies aanpassen indien nodig"
3555
+
3556
+ #: ../cerber-tools.php:72
3557
+ msgid "Load entries"
3558
+ msgstr "Waarden inladen"
3559
+
3560
+ #: ../dashboard.php:983 ../dashboard.php:4062
3561
+ msgid "My IP"
3562
+ msgstr "Mijn IP"
3563
+
3564
+ #: ../dashboard.php:4743
3565
+ msgid "Analytics"
3566
+ msgstr "Analyse"
3567
+
3568
+ #: ../dashboard.php:4792
3569
+ msgid "Manage Settings"
3570
+ msgstr "Instellingen beheren"
3571
+
3572
+ #: ../dashboard.php:4794
3573
+ msgid "Diagnostic Log"
3574
+ msgstr "Diagnostische log"
3575
+
3576
+ #: ../common.php:1327
3577
+ msgid "User deleted"
3578
+ msgstr "Verwijderd door gebruiker"
3579
+
3580
+ #: ../common.php:1411
3581
+ msgid "Email address is prohibited"
3582
+ msgstr "Email-adres is verboden"
3583
+
3584
+ #: ../admin/cerber-admin.php:753
3585
+ msgid "Quarantined"
3586
+ msgstr "Afgezonderd"
3587
+
3588
+ #: ../admin/cerber-admin.php:909 ../admin/cerber-admin.php:1319
3589
+ msgid "Modified"
3590
+ msgstr "Aangepast"
3591
+
3592
+ #: ../admin/cerber-admin.php:983
3593
+ msgid "Files without extension"
3594
+ msgstr "Bestanden zonder extensie"
3595
+
3596
+ #: ../admin/cerber-admin.php:984
3597
+ msgid "Back to list"
3598
+ msgstr "Terug naar de lijst"
3599
+
3600
+ #: ../admin/cerber-admin.php:1044
3601
+ msgid "Brief summary"
3602
+ msgstr "Samenvatting"
3603
+
3604
+ #: ../admin/cerber-admin.php:1095
3605
+ msgid "Folder"
3606
+ msgstr "Map"
3607
+
3608
+ #: ../admin/cerber-admin.php:1096
3609
+ msgid "Path"
3610
+ msgstr "Pas"
3611
+
3612
+ #: ../admin/cerber-admin.php:1097 ../admin/cerber-admin.php:1191
3613
+ msgid "Files"
3614
+ msgstr "Bestanden"
3615
+
3616
+ #: ../admin/cerber-admin.php:1098 ../admin/cerber-admin.php:1192
3617
+ msgid "Space Occupied"
3618
+ msgstr "Ruimte Gebruikt"
3619
+
3620
+ #: ../admin/cerber-admin.php:1162
3621
+ msgid "No extension"
3622
+ msgstr "Geen extensie"
3623
+
3624
+ #: ../admin/cerber-admin.php:1187
3625
+ msgid "File extensions statistics"
3626
+ msgstr "Statistiek Bestandsextensie"
3627
+
3628
+ #: ../admin/cerber-admin.php:1190
3629
+ msgid "Extension"
3630
+ msgstr "Extensie"
3631
+
3632
+ #: ../admin/cerber-admin.php:1193
3633
+ msgid "Smallest"
3634
+ msgstr "Kleinste"
3635
+
3636
+ #: ../admin/cerber-admin.php:1194
3637
+ msgid "Largest"
3638
+ msgstr "Grootste"
3639
+
3640
+ #: ../admin/cerber-admin.php:1195
3641
+ msgid "Average Size"
3642
+ msgstr "Gemiddelde Grootte"
3643
+
3644
+ #: ../admin/cerber-admin.php:1196
3645
+ msgid "Oldest"
3646
+ msgstr "Oudste"
3647
+
3648
+ #: ../admin/cerber-admin.php:1197
3649
+ msgid "Newest"
3650
+ msgstr "Nieuwste"
3651
+
3652
+ #: ../admin/cerber-admin.php:1213
3653
+ msgid "Top 10 largest files"
3654
+ msgstr "Top-10 grootste bestanden"
3655
+
3656
+ #: ../admin/cerber-admin.php:1317
3657
+ msgid "File Name"
3658
+ msgstr "Bestandsnaam"
3659
+
3660
+ #: ../settings.php:327
3661
+ msgid "Date format for CSV export"
3662
+ msgstr "Datumformaat voor CSV-export"
3663
+
3664
+ #: ../settings.php:328
3665
+ msgid "Use ISO 8601 date format for CSV export files"
3666
+ msgstr "Pas ISO 8601 datumformaat toe voor CSV-export"
3667
+
3668
+ #: ../settings.php:332
3669
+ msgid "Use English"
3670
+ msgstr "Gebruik Engels"
3671
+
3672
+ #: ../settings.php:337
3673
+ msgid "My IP address"
3674
+ msgstr "Mijn IP-adres"
3675
+
3676
+ #: ../settings.php:338
3677
+ msgid "Do not add my IP address to the White IP Access List upon plugin activation"
3678
+ msgstr "Zet mijn ip-adres niet op de lijst toegelaten ip-adressen bij activering plugin"
3679
+
3680
+ #: ../cerber-tools.php:52
3681
+ msgid "Load the default plugin settings"
3682
+ msgstr "Standaard-instellingen plugin laden"
3683
+
3684
+ #: ../cerber-tools.php:53
3685
+ msgid "When you click the button below, the default WP Cerber settings will be loaded. The Custom login URL and Access Lists will not be changed."
3686
+ msgstr "Onderstaande knop laadt WP Cerber's standaardinstellingen. Een aangepaste login-url en de toegangslijsten blijven wel behouden."
3687
+
3688
+ #: ../cerber-tools.php:54
3689
+ msgid "To get the most out of WP Cerber, follow these steps:"
3690
+ msgstr "Om het meeste baat bij WP Cerber te hebben, doe dit:"
3691
+
3692
+ #: ../common.php:1419
3693
+ msgid "IP whitelisted"
3694
+ msgstr "IP toegestaan"
3695
+
3696
+ #: ../dashboard.php:4061
3697
+ msgid "My requests"
3698
+ msgstr "Mijn verzoeken"
3699
+
3700
+ #: ../dashboard.php:3416
3701
+ msgid "Log into the website"
3702
+ msgstr ""
3703
+
3704
+ #. Name of the plugin
3705
+ #:
3706
+ msgid "WP Cerber Security, Anti-spam & Malware Scan"
3707
+ msgstr ""
3708
+
3709
+ #: ../common.php:1363 ../common.php:1472
3710
+ msgid "Probing for vulnerable code"
3711
+ msgstr ""
3712
+
3713
+ #: ../cerber-load.php:5268
3714
+ msgid "Your IP address %s has been added to the White IP Access List"
3715
+ msgstr ""
3716
+
3717
+ #: ../cerber-users.php:1022
3718
+ msgid "Search for IP address"
3719
+ msgstr ""
3720
+
3721
+ #: ../settings.php:771
3722
+ msgid "Minimal"
3723
+ msgstr ""
3724
+
3725
+ #: ../settings.php:777
3726
+ msgid "Do not log known crawlers"
3727
+ msgstr ""
3728
+
3729
+ #: ../settings.php:781
3730
+ msgid "Do not log these locations"
3731
+ msgstr ""
3732
+
3733
+ #: ../settings.php:785
3734
+ msgid "Specify URL paths to exclude requests from logging. One item per line."
3735
+ msgstr ""
3736
+
3737
+ #: ../settings.php:788
3738
+ msgid "Do not log these User-Agents"
3739
+ msgstr ""
3740
+
3741
+ #: ../settings.php:792
3742
+ msgid "Specify User-Agents to exclude requests from logging. One item per line."
3743
+ msgstr ""
3744
+
languages/wp-cerber-ru_RU.mo CHANGED
Binary file
languages/wp-cerber-ru_RU.po CHANGED
@@ -1,129 +1,285 @@
1
- # Translation of Plugins - Cerber Security, Antispam &amp; Malware Scan - Stable (latest release) in Russian
2
- # This file is distributed under the same license as the Plugins - Cerber Security, Antispam &amp; Malware Scan - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2020-04-01 14:54:17+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
- "X-Generator: GlotPress/2.4.0-alpha\n"
11
  "Language: ru\n"
12
- "Project-Id-Version: Plugins - Cerber Security, Antispam &amp; Malware Scan - Stable (latest release)\n"
13
 
14
- #: common.php:1425
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Multiple erroneous requests"
16
  msgstr "Множественные ошибочные запросы"
17
 
18
- #: nexus/cerber-nexus-slave.php:451
19
  msgid "Settings updated"
20
  msgstr "Настройки обновлены"
21
 
22
- #: dashboard.php:1152
23
  msgid "Search in URL"
24
  msgstr "Поиск URL"
25
 
26
- #: dashboard.php:1151
27
  msgid "Request ID"
28
  msgstr "ID запроса"
29
 
30
- #: admin/cerber-settings.php:353
31
  msgid "%s registrations are allowed within %s minutes from one IP address"
32
  msgstr "Допустимо %s регистраций в течении %s минут с одного IP-адреса"
33
 
34
- #: admin/cerber-settings.php:347
35
  msgid "%s retries are allowed within %s minutes"
36
  msgstr "Допустимо %s попыток в течении %s минут"
37
 
38
- #: cerber-addons.php:289 dashboard.php:79
39
  msgid "Add-ons"
40
  msgstr "Дополнения"
41
 
42
- #: settings.php:1040
43
  msgid "How the plugin processes comments submitted through the standard comment form"
44
  msgstr "То, как плагин обрабатывает комментарии через стандартную форму комментариев"
45
 
46
- #: settings.php:1016
47
  msgid "These settings enable you to fine-tune the behavior of anti-spam algorithms and avoid false positives"
48
  msgstr "Эти настройки позволяют тонко настроить поведение алгоритмов защиты от спама и избежать ложных срабатываний"
49
 
50
- #: settings.php:994
51
  msgid "Spam protection for comment, registration and contact forms on a website"
52
  msgstr "Антиспам защита для комментариев, форм регистрации и контактов на сайте"
53
 
54
- #: settings.php:927
55
  msgid "These policies are automatically enforced at the end of every scheduled scan based on its results. All affected files are moved to the quarantine"
56
  msgstr "Эти правила автоматически применяются в конце каждой запланированной проверки, в зависимости от её результатов. Все затронутые файлы перемещаются в карантин"
57
 
58
- #: settings.php:885
59
  msgid "Configure what issues to include in the email report and the condition for sending reports"
60
  msgstr "Настройте то, о чем хотите получать отчёт, а также условия для отправки отчёта"
61
 
62
- #: settings.php:868
63
  msgid "The scanner automatically scans the website, removes malware and sends email reports with the results of a scan"
64
  msgstr "Сканер автоматически проверяет сайт, удаляет вредоносный код и посылает отчет по email с результатами сканирования"
65
 
66
- #: settings.php:832 settings.php:841
67
  msgid "All files"
68
  msgstr "Все файлы"
69
 
70
- #: settings.php:831 settings.php:840
71
  msgid "Executable files"
72
  msgstr "Исполняемые файлы"
73
 
74
- #: settings.php:802
75
  msgid "The scanner monitors file changes, verifies the integrity of WordPress, plugins, and themes, and detects malware"
76
  msgstr "Сканер следит за изменениями файлов, проверяет целостность файлов WordPress, плагинов, тем. Определяет вредоносный код."
77
 
78
- #: settings.php:738
79
  msgid "Enable optional traffic logging if you need to monitor suspicious and malicious activity or solve security issues"
80
  msgstr "Включите дополнительную запись трафика в журнал, если вам требуется отслеживать подозрительную или вредоносную активность или решить проблемы с безопасностью"
81
 
82
- #: settings.php:737
83
  msgid "Traffic Logging"
84
  msgstr "Журналирование трафика"
85
 
86
- #: settings.php:718
87
  msgid "Block IP addresses that send excessive requests for non-existing pages or scan website for security breaches"
88
  msgstr "Блокировка IP-адресов посылающих избыточные запросы на несуществующие страницы или проверяющих сайт на уязвимости в безопасности"
89
 
90
- #: settings.php:689
91
  msgid "Traffic Inspector is a context-aware web application firewall (WAF) that protects your website by recognizing and denying malicious HTTP requests"
92
  msgstr "Инспектор трафика - фаерволл уровня веб-приложения, защищающий ваш сайт распознавая и блокируя вредоносные HTTP запросы"
93
 
94
- #: settings.php:677 settings.php:916
95
  msgid "if empty, the email addresses from the notification settings will be used"
96
  msgstr "Если не задано, то будет использован email администратора из настроек уведомлений"
97
 
98
- #: settings.php:664
99
  msgid "Weekly report is a summary of all activities and suspicious events occurred during the last seven days"
100
  msgstr "Еженедельный отчет представляет собой обобщение активности и подозрительных событий за последние 7 дней."
101
 
102
- #: settings.php:649
103
  msgid "Get notified instantly with mobile and desktop notifications"
104
  msgstr "Получайте немедленные уведомления на мобильные и стационарные устройства"
105
 
106
- #: settings.php:633
107
  msgid "if empty, the website administrator email %s will be used"
108
  msgstr "Если не задано, то будет использован email администратора %s"
109
 
110
- #: settings.php:575
111
  msgid "These features help your organization to be in compliance with personal data protection laws"
112
  msgstr "Эти возможности позволяют вашему сайту соответствовать нормативам защиты персональных данных"
113
 
114
- #: settings.php:360
115
  msgid "Restrict or completely block access to the WordPress REST API according to your needs"
116
  msgstr "Ограничение или полная блокировка WP REST-API"
117
 
118
- #: settings.php:142
119
  msgid "Limit"
120
  msgstr "Предел"
121
 
122
- #: settings.php:824
123
  msgid "Specify directories to exclude from scanning. One directory per line."
124
  msgstr "Задайте папки для исключения при сканировании. Одна папка на строку."
125
 
126
- #: cerber-users.php:942
127
  msgid "WP Cerber Personal Data Eraser"
128
  msgstr "WP Cerber удаление персональных данных"
129
 
@@ -131,87 +287,87 @@ msgstr "WP Cerber удаление персональных данных"
131
  msgid "Admin Note"
132
  msgstr "Заметка администратора"
133
 
134
- #: settings.php:611
135
  msgid "Cookies"
136
  msgstr "Куки"
137
 
138
- #: settings.php:610
139
  msgid "Form fields data"
140
  msgstr "Данные полей формы"
141
 
142
- #: settings.php:609
143
  msgid "Request URL"
144
  msgstr "URL запроса"
145
 
146
- #: settings.php:606
147
  msgid "Include traffic log entries"
148
  msgstr "Включить записи журнала трафика"
149
 
150
- #: settings.php:600
151
  msgid "Include activity log events"
152
  msgstr "Включить события журнала активности"
153
 
154
- #: settings.php:593
155
  msgid "Enable data export"
156
  msgstr "Включить экспорт данных"
157
 
158
- #: settings.php:587
159
  msgid "Delete user sessions data when user data is erased"
160
  msgstr "Удалить пользовательские сессии при уничтожении данных пользователя"
161
 
162
- #: settings.php:586
163
  msgid "Terminate user sessions"
164
  msgstr "Завершение пользовательских сессий"
165
 
166
- #: settings.php:579
167
  msgid "Enable data erase"
168
  msgstr "Включить уничтожение данных"
169
 
170
- #: settings.php:573
171
  msgid "Personal Data"
172
  msgstr "Персональные данные"
173
 
174
- #: settings.php:275 settings.php:793
175
  msgid "Keep log records of logged in users for"
176
  msgstr "Сохранять записи журнала для авторизованных пользователей"
177
 
178
- #: settings.php:269 settings.php:788
179
  msgid "Keep log records of not logged in visitors for"
180
  msgstr "Сохранять записи журнала для неавторизованных пользователей"
181
 
182
- #: settings.php:237
183
  msgid "Enable authentication log monitoring"
184
  msgstr "Включить наблюдение над журналом авторизации"
185
 
186
- #: settings.php:1265
187
  msgid "Any activity"
188
  msgstr "Любая активность"
189
 
190
- #: common.php:1341
191
  msgid "User metadata update denied"
192
  msgstr "Изменение метаданных пользователя запрещено"
193
 
194
- #: common.php:1338
195
  msgid "User row update denied"
196
  msgstr "Изменение пользователя запрещено"
197
 
198
- #: common.php:1302
199
  msgid "IP subnet blocked"
200
  msgstr "Подсеть IP заблокирована"
201
 
202
- #: cerber-tools.php:139
203
  msgid "A database error occurred while importing access list entries"
204
  msgstr "Возникла ошибка базы данных при импорте списка адресов"
205
 
206
- #: dashboard.php:4875
207
  msgid "The IP address you are trying to add is already in the list"
208
  msgstr "Этот IP адрес уже присутствует в списке"
209
 
210
- #: dashboard.php:315
211
  msgid "Add Entry"
212
  msgstr "Добавить запись"
213
 
214
- #: dashboard.php:314
215
  msgid "IP address, range, wildcard, or CIDR"
216
  msgstr "IP адрес, диапазон, маска или CIDR"
217
 
@@ -235,7 +391,7 @@ msgstr "Показывать домашнюю страницу в столбце
235
  msgid "Hide server IP address"
236
  msgstr "Спрятать IP адрес сервера"
237
 
238
- #: settings.php:423 settings.php:451 settings.php:480
239
  msgid "Do not apply these policies to the IP addresses in the White IP Access List"
240
  msgstr "Не применять эти политики к IP адресам из белого списка"
241
 
@@ -243,15 +399,15 @@ msgstr "Не применять эти политики к IP адресам и
243
  msgid "Server"
244
  msgstr "Сервер"
245
 
246
- #: dashboard.php:4641
247
  msgid "Site Settings"
248
  msgstr "Настройки сайта"
249
 
250
- #: dashboard.php:4640
251
  msgid "Accounts & Roles"
252
  msgstr "Учетные записи и роли"
253
 
254
- #: dashboard.php:4638
255
  msgid "Data Shield Policies"
256
  msgstr "Политики защиты данных"
257
 
@@ -259,35 +415,35 @@ msgstr "Политики защиты данных"
259
  msgid "Data Shield"
260
  msgstr "Защита данных"
261
 
262
- #: settings.php:474
263
  msgid "Protected settings"
264
  msgstr "Защищенные настройки"
265
 
266
- #: settings.php:469
267
  msgid "Users with these roles are permitted to change protected settings"
268
  msgstr "Пользователи с этими ролями могут изменять защищенные настройки"
269
 
270
- #: settings.php:463
271
  msgid "Restrict updating site settings with the following policies"
272
  msgstr "Ограничить изменение настроек сайта следующими правилами"
273
 
274
- #: settings.php:459
275
  msgid "Protect site settings"
276
  msgstr "Защита настроек сайта"
277
 
278
- #: settings.php:446
279
  msgid "Users with these roles are permitted to change role capabilities"
280
  msgstr "Пользователи с этими ролями могут изменять возможности ролей"
281
 
282
- #: settings.php:441
283
  msgid "Users with these roles are permitted to add new roles"
284
  msgstr "Пользователи с этими ролями могут добавлять новые роли"
285
 
286
- #: settings.php:435
287
  msgid "Restrict roles and capabilities management with the following policies"
288
  msgstr "Ограничить управление ролями и возможностями следующими правилами"
289
 
290
- #: settings.php:431
291
  msgid "Protect user roles"
292
  msgstr "Защита ролей пользователей"
293
 
@@ -295,47 +451,47 @@ msgstr "Защита ролей пользователей"
295
  msgid "Cerber Data Shield Policies"
296
  msgstr "Cerber политики защиты данных"
297
 
298
- #: settings.php:418
299
  msgid "Users with these roles are permitted to change sensitive user data"
300
  msgstr "Пользователи с этими ролями могут изменять важные пользовательские данные"
301
 
302
- #: settings.php:413
303
  msgid "Users with these roles are permitted to create new accounts"
304
  msgstr "Пользователи с этими ролями могут создавать новые учетные записи"
305
 
306
- #: settings.php:407
307
  msgid "User registrations are limited to these roles"
308
  msgstr "Регистрация ограничена следующими ролями"
309
 
310
- #: settings.php:401
311
  msgid "Restrict user account creation and user management with the following policies"
312
  msgstr "Ограничить создание учетных записей и управление пользователями следующими правилами"
313
 
314
- #: settings.php:396
315
  msgid "Protect user accounts"
316
  msgstr "Защита учетных записей пользователей"
317
 
318
- #: common.php:1384
319
  msgid "Incorrect password"
320
  msgstr "Неверный пароль"
321
 
322
- #: common.php:1383
323
  msgid "Invalid user"
324
  msgstr "Неверный пользователь"
325
 
326
- #: common.php:1381
327
  msgid "Permission denied"
328
  msgstr "Доступ запрещен"
329
 
330
- #: common.php:1340
331
  msgid "Setting update denied"
332
  msgstr "Изменение настройки запрещено"
333
 
334
- #: common.php:1339
335
  msgid "Role update denied"
336
  msgstr "Изменение роли запрещено"
337
 
338
- #: common.php:1337
339
  msgid "User creation denied"
340
  msgstr "Создание пользователя запрещено"
341
 
@@ -367,39 +523,39 @@ msgstr "Роль по умолчанию для нового пользоват
367
  msgid "Administration Email Address"
368
  msgstr "Адрес email администратора"
369
 
370
- #: cerber-scanner.php:1601
371
  msgid "Unable to delete"
372
  msgstr "Невозможно удалить"
373
 
374
- #: cerber-users.php:1163
375
  msgid "Terminate"
376
  msgstr "Принудительно завершить"
377
 
378
- #: cerber-users.php:1117
379
  msgid "User Activity"
380
  msgstr "Активность пользователя"
381
 
382
- #: cerber-users.php:1116
383
  msgid "All Logins"
384
  msgstr "Все входы"
385
 
386
- #: cerber-users.php:1103
387
  msgid "Profile"
388
  msgstr "Профиль"
389
 
390
- #: cerber-users.php:993
391
  msgid "Block user"
392
  msgstr "Заблокировать пользователя"
393
 
394
- #: cerber-users.php:992
395
  msgid "Terminate session"
396
  msgstr "Завершить сессию"
397
 
398
- #: cerber-users.php:971
399
  msgid "Created"
400
  msgstr "Создана"
401
 
402
- #: cerber-users.php:612
403
  msgid "Session has been terminated"
404
  msgid_plural "%s sessions have been terminated"
405
  msgstr[0] "Сессия завершена"
@@ -410,46 +566,47 @@ msgstr[2] "%s сессий завершено"
410
  msgid "The code is valid for %s minutes."
411
  msgstr "Этот код действителен в течении %s минут."
412
 
413
- #: dashboard.php:4558
414
  msgid "Sessions"
415
  msgstr "Сессии"
416
 
417
- #: dashboard.php:3401
418
  msgid "All Users"
419
  msgstr "Все пользователи"
420
 
421
- #: dashboard.php:3289
422
  msgid "Any country is permitted"
423
  msgstr "Разрешены все страны"
424
 
425
- #: dashboard.php:3207
426
  msgid "Role-based rules are configured"
427
  msgstr "Правила на основе ролей настроены"
428
 
429
- #: dashboard.php:1734
430
  msgid "user"
431
  msgid_plural "users"
432
  msgstr[0] "пользователь"
433
  msgstr[1] "пользователя"
434
  msgstr[2] "пользователей"
435
 
436
- #: dashboard.php:840 dashboard.php:1085
437
  msgid "Username"
438
  msgstr "Имя пользователя"
439
 
440
- #: dashboard.php:833 dashboard.php:1079 dashboard.php:3976 cerber-users.php:973
 
441
  msgid "IP Address"
442
  msgstr "IP-адрес"
443
 
444
- #: dashboard.php:342
445
  msgid "IP address %s has been added to Black IP Access List"
446
  msgstr "IP адрес %s был добавлен в черный список доступа по IP"
447
 
448
- #: dashboard.php:345
449
  msgid "IP address %s has been added to White IP Access List"
450
  msgstr "IP адрес %s был добавлен в белый список доступа по IP"
451
 
452
- #: dashboard.php:2612
453
  msgid "The alert has been deleted"
454
  msgstr "Тревожное предупреждение удалено"
455
 
@@ -457,27 +614,23 @@ msgstr "Тревожное предупреждение удалено"
457
  msgid "Cerber Tech Inc."
458
  msgstr "Cerber Tech Inc."
459
 
460
- #: common.php:1374
461
  msgid "Site policy enforcement"
462
  msgstr "Форсирование политики сайта"
463
 
464
- #: common.php:1375
465
  msgid "2FA code verified"
466
  msgstr "2ФА код проверен"
467
 
468
- #: common.php:1376
469
  msgid "Initiated by the user"
470
  msgstr "Начато пользователем"
471
 
472
- #: common.php:1379
473
- msgid "Email address is not permitted"
474
- msgstr "Email адрес недопустим"
475
-
476
- #: common.php:1762
477
  msgid "A new version of %s is available. Please install it."
478
  msgstr "Доступна новая версия %s, пожалуйста, установите её."
479
 
480
- #: cerber-users.php:10 cerber-users.php:438
481
  msgid "Two-Factor Authentication"
482
  msgstr "Двухфакторная авторизация"
483
 
@@ -485,7 +638,7 @@ msgstr "Двухфакторная авторизация"
485
  msgid "Determined by user role policies"
486
  msgstr "Определяется политиками ролей пользователей"
487
 
488
- #: cerber-users.php:19 cerber-users.php:446
489
  msgid "Always enabled"
490
  msgstr "Включена всегда"
491
 
@@ -501,55 +654,55 @@ msgstr "2ФА почта"
501
  msgid "Save All Changes"
502
  msgstr "Сохранить все изменения"
503
 
504
- #: cerber-users.php:400
505
  msgid "Block access to WordPress Dashboard"
506
  msgstr "Заблокировать доступ в консоль WordPress"
507
 
508
- #: cerber-users.php:405
509
  msgid "Hide Toolbar when viewing site"
510
  msgstr "Спрятать панель инструментов при просмотре сайта"
511
 
512
- #: cerber-users.php:411
513
  msgid "Redirection rules"
514
  msgstr "Правила перенаправления"
515
 
516
- #: cerber-users.php:415
517
  msgid "Redirect user after login"
518
  msgstr "Перенаправить пользователя после входа"
519
 
520
- #: settings.php:557 cerber-users.php:431
521
  msgid "User session expiration time"
522
  msgstr "Время до истечения сессии пользователя"
523
 
524
- #: cerber-users.php:442
525
  msgid "Two-factor authentication"
526
  msgstr "Двухфакторная авторизация"
527
 
528
- #: cerber-users.php:447
529
  msgid "Advanced mode"
530
  msgstr "Расширенный режим"
531
 
532
- #: cerber-users.php:451
533
  msgid "Enforce two-factor authentication if any of the following conditions is true"
534
  msgstr "Принудительно использовать 2ФА при выполнении любого из условий"
535
 
536
- #: cerber-users.php:457
537
  msgid "Login from a different country"
538
  msgstr "Вход из другой страны"
539
 
540
- #: cerber-users.php:489
541
  msgid "days interval"
542
  msgstr "интервал в днях"
543
 
544
- #: cerber-scanner.php:5403
545
  msgid "Automatically deleted"
546
  msgstr "Автоматически удалено"
547
 
548
- #: cerber-scanner.php:5353
549
  msgid "Recovered"
550
  msgstr "Восстановлено"
551
 
552
- #: cerber-scanner.php:5406
553
  msgid "Automatically recovered"
554
  msgstr "Автоматически восстановлено"
555
 
@@ -557,103 +710,103 @@ msgstr "Автоматически восстановлено"
557
  msgid "Cerber User Security"
558
  msgstr "Безопасность пользователей"
559
 
560
- #: dashboard.php:64 dashboard.php:4648
561
  msgid "User Policies"
562
  msgstr "Политики пользователей"
563
 
564
- #: dashboard.php:942
565
  msgid "New users"
566
  msgstr "Новые пользователи"
567
 
568
- #: dashboard.php:955
569
  msgid "My activity"
570
  msgstr "Моя активность"
571
 
572
- #: dashboard.php:1784
573
  msgid "A new version is available"
574
  msgstr "Доступна новая версия"
575
 
576
- #: dashboard.php:2571
577
  msgid "Create Alert"
578
  msgstr "Создать тревожное предупреждение"
579
 
580
- #: dashboard.php:2575
581
  msgid "Delete Alert"
582
  msgstr "Удалить тревожное предупреждение"
583
 
584
- #: dashboard.php:2608
585
  msgid "The alert has been created"
586
  msgstr "Тревожное предупреждение создано"
587
 
588
- #: dashboard.php:4651
589
  msgid "Global"
590
  msgstr "Глобальная"
591
 
592
- #: settings.php:204
593
  msgid "Custom login URL may contain Latin alphanumeric characters, dashes and underscores only"
594
  msgstr "Пользовательский URL входа может содержать только латинские буквы, цифры, тире и знак подчеркивания."
595
 
596
- #: settings.php:216
597
  msgid "Site-specific settings"
598
  msgstr "Специфические настройки сайта"
599
 
600
- #: settings.php:224
601
  msgid "Prefix for plugin cookies"
602
  msgstr "Префикс для куки плагинов"
603
 
604
- #: settings.php:225
605
  msgid "Prefix may contain only Latin alphanumeric characters and underscores"
606
  msgstr "Префикс может содержать только латинские буквы, цифры и знак подчеркивания"
607
 
608
- #: settings.php:532
609
  msgid "Restrict email addresses"
610
  msgstr "Ограничение адресов email"
611
 
612
- #: settings.php:535
613
  msgid "No restrictions"
614
  msgstr "Без ограничений"
615
 
616
- #: settings.php:536
617
  msgid "Deny all email addresses that match the following"
618
  msgstr "Запретить все адреса email совпадающие со следующим"
619
 
620
- #: settings.php:537
621
  msgid "Permit only email addresses that match the following"
622
  msgstr "Разрешить только адреса совпадающие со следующим"
623
 
624
- #: settings.php:542
625
  msgid "Specify email addresses, wildcards or REGEX patterns. Use comma to separate items."
626
  msgstr "Укажите адреса email, маску или регулярные выражения. Элементы разделяются запятой."
627
 
628
- #: settings.php:624
629
  msgid "Lockout notifications"
630
  msgstr "Уведомления о блокировках"
631
 
632
- #: settings.php:656
633
  msgid "Pushbullet device"
634
  msgstr "Устройство Pushbullet"
635
 
636
- #: settings.php:931
637
  msgid "Delete unattended files"
638
  msgstr "Удалить несопровождаемые файлы"
639
 
640
- #: settings.php:957
641
  msgid "Recover plugins files"
642
  msgstr "Восстановление файлов плагинов"
643
 
644
- #: settings.php:964
645
  msgid "These files will never be deleted during automatic cleanup."
646
  msgstr "Эти файлы никогда не будут удалены при автоматической очистке."
647
 
648
- #: cerber-load.php:1574
649
  msgid "Email address is not permitted."
650
  msgstr "Email адрес недопустим."
651
 
652
- #: cerber-load.php:1574
653
  msgid "Please choose another one."
654
  msgstr "Выберите другой."
655
 
656
- #: cerber-load.php:4865
657
  msgid "To delete the alert, click here"
658
  msgstr "Для удаления этого тревожного предупреждения нажмите тут"
659
 
@@ -693,59 +846,59 @@ msgstr "Мы отправили проверочный ПИН-код на ваш
693
  msgid "Enter the code from the email in the field below."
694
  msgstr "Введите код из почтового сообщение в поле ниже."
695
 
696
- #: cerber-users.php:463
697
  msgid "Login from a different network Class C"
698
  msgstr "Вход из другой подсети класса C"
699
 
700
- #: cerber-users.php:469
701
  msgid "Login from a different IP address"
702
  msgstr "Вход с другого IP адреса"
703
 
704
- #: cerber-users.php:475
705
  msgid "Using a different browser or device"
706
  msgstr "Использование другого браузера или устройства"
707
 
708
- #: cerber-users.php:481
709
  msgid "Enforce two-factor authentication with fixed intervals"
710
  msgstr "Принудительно использовать 2ФА через определенный период"
711
 
712
- #: cerber-users.php:487
713
  msgid "Regular time intervals (days)"
714
  msgstr "Период времени (дней)"
715
 
716
- #: cerber-users.php:494
717
  msgid "Fixed number of logins"
718
  msgstr "Определенное число входов"
719
 
720
- #: cerber-users.php:496
721
  msgid "number of logins"
722
  msgstr "число входов"
723
 
724
- #: cerber-users.php:538
725
  msgid "Policies have been updated"
726
  msgstr "Политики обновлены"
727
 
728
- #: cerber-scanner.php:1602
729
  msgid "File deleted"
730
  msgstr "Файл удален"
731
 
732
- #: cerber-scanner.php:1603
733
  msgid "File recovered"
734
  msgstr "Файл восстановлен"
735
 
736
- #: cerber-scanner.php:3870
737
  msgid "Recovering WordPress files"
738
  msgstr "Восстановление файлов WordPress"
739
 
740
- #: cerber-scanner.php:3872
741
  msgid "Recovering plugins files"
742
  msgstr "Восстановление файлов плагинов"
743
 
744
- #: settings.php:950
745
  msgid "Automatic recovery of modified and infected files"
746
  msgstr "Автоматическое восстановление измененных и зараженных файлов"
747
 
748
- #: settings.php:953
749
  msgid "Recover WordPress files"
750
  msgstr "Восстановление файлов WordPress"
751
 
@@ -773,123 +926,123 @@ msgstr "Докажите, что это вы"
773
  msgid "Verify"
774
  msgstr "Проверить"
775
 
776
- #: dashboard.php:4650
777
  msgid "Role-based"
778
  msgstr "Основана на ролях"
779
 
780
- #: cerber-users.php:420
781
  msgid "Redirect user after logout"
782
  msgstr "Перенаправить пользователя после выхода"
783
 
784
- #: settings.php:653
785
  msgid "Pushbullet access token"
786
  msgstr "Токен доступа Pushbullet"
787
 
788
- #: cerber-load.php:351
789
  msgid "You are not allowed to log in"
790
  msgstr "Вам не разрешено войти"
791
 
792
- #: admin/cerber-settings.php:498
793
  msgid "Select one or more roles"
794
  msgstr "Выберите одну или несколько ролей"
795
 
796
- #: settings.php:122
797
  msgid "These restrictions do not apply to IP addresses in the White IP Access List"
798
  msgstr "Эти ограничения не применяются к IP адресам из белого списка"
799
 
800
- #: settings.php:671
801
  msgid "Send reports on"
802
  msgstr "Отправлять отчеты в"
803
 
804
- #: settings.php:385
805
  msgid "Allow these namespaces"
806
  msgstr "Разрешить эти пространства имен"
807
 
808
- #: settings.php:380
809
  msgid "Allow REST API for these roles"
810
  msgstr "Разрешить REST API для следующих ролей"
811
 
812
- #: settings.php:365
813
  msgid "Block access to users' data via REST API"
814
  msgstr "Блокировать доступ к данным пользователей через REST API"
815
 
816
- #: settings.php:359
817
  msgid "Access to WordPress REST API"
818
  msgstr "Доступ к WordPress REST API"
819
 
820
- #: settings.php:1197
821
  msgid "The full access mode requires the PRO version of WP Cerber"
822
  msgstr "Полный доступ требует PRO версии WP Cerber"
823
 
824
- #: settings.php:1177
825
  msgid "Read-only mode"
826
  msgstr "Доступ только для чтения"
827
 
828
- #: settings.php:1176
829
  msgid "Full access mode"
830
  msgstr "Полный доступ"
831
 
832
- #: settings.php:1173
833
  msgid "Access to this website"
834
  msgstr "Доступ к этому сайту"
835
 
836
- #: settings.php:1167
837
  msgid "Limit access by IP address"
838
  msgstr "Ограничить доступ IP адресом"
839
 
840
- #: settings.php:1144
841
  msgid "Use master language"
842
  msgstr "Использовать основной язык"
843
 
844
- #: settings.php:1140
845
  msgid "Add @ site to the page title"
846
  msgstr "Добавить @ сайт к заголовку страницы"
847
 
848
- #: settings.php:1136
849
  msgid "Show \"Switched to\" notification"
850
  msgstr "Показывать уведомление о переходах"
851
 
852
- #: settings.php:1132
853
  msgid "Return to the website list"
854
  msgstr "Вернуться к списку сайтов"
855
 
856
- #: settings.php:1124
857
  msgid "Master settings"
858
  msgstr "Настройки режима основного сайта"
859
 
860
- #: settings.php:517
861
  msgid "Redirect to URL"
862
  msgstr "Перенаправление на URL"
863
 
864
- #: settings.php:512 settings.php:1419
865
  msgid "Only registered and logged in users are allowed to view this website"
866
  msgstr "Только зарегистрированные и авторизованные пользователи могут просматривать этот сайт"
867
 
868
- #: settings.php:502
869
  msgid "Do not apply these policy to the IP addresses in the White IP Access List"
870
  msgstr "Не применять эти политики к IP адресам из белого списка"
871
 
872
- #: settings.php:495
873
  msgid "Only registered and logged in website users have access to the website"
874
  msgstr "Только зарегистрированные и авторизованные пользователи могут получить доступ к этому сайту"
875
 
876
- #: settings.php:494
877
  msgid "Authorized users only"
878
  msgstr "Только для авторизованных пользователей"
879
 
880
- #: dashboard.php:4723
881
  msgid "Changelog"
882
  msgstr "Журнал изменений"
883
 
884
- #: dashboard.php:3264
885
  msgid "Save all rules"
886
  msgstr "Сохранить все правила"
887
 
888
- #: dashboard.php:1147
889
  msgid "Filter by registered user"
890
  msgstr "Фильтровать по зарегистрированным пользователям"
891
 
892
- #: dashboard.php:629
893
  msgid "Default settings have been loaded"
894
  msgstr "Загружены настройки по умолчанию"
895
 
@@ -949,75 +1102,75 @@ msgstr "Включить режим основного сайта"
949
  msgid "This website can be managed from a master website"
950
  msgstr "Этот сайт может управляться с основного сайта"
951
 
952
- #: cerber-load.php:5136 nexus/cerber-nexus.php:64
953
  msgid "Enable slave mode"
954
  msgstr "Включить зависимый режим"
955
 
956
- #: nexus/cerber-nexus-master.php:1400 nexus/cerber-nexus-master.php:1408
957
  msgid "Active plugins and updates on"
958
  msgstr "Активные плагины и обновления на"
959
 
960
- #: nexus/cerber-nexus-master.php:1378
961
  msgid "A newer version is available"
962
  msgstr "Доступна новая версия"
963
 
964
- #: nexus/cerber-nexus-master.php:1334
965
  msgid "Are you sure you want to delete selected websites?"
966
  msgstr "Вы точно хотите удалить выделенные сайты?"
967
 
968
- #: nexus/cerber-nexus-master.php:1268
969
  msgid "Visit Site"
970
  msgstr "Посетить сайт"
971
 
972
- #: nexus/cerber-nexus-master.php:1253 nexus/cerber-nexus.php:92
973
- #: nexus/cerber-nexus.php:102
974
  msgid "My Websites"
975
  msgstr "Мои сайты"
976
 
977
- #: nexus/cerber-nexus-master.php:1250
978
  msgid "You are here:"
979
  msgstr "Вы здесь:"
980
 
981
- #: nexus/cerber-nexus-master.php:1034
982
  msgid "You have switched back to the master website"
983
  msgstr "Вы перешли назад на основной сайт"
984
 
985
- #: nexus/cerber-nexus-master.php:1024
986
  msgid "You have switched to %s"
987
  msgstr "Вы перешли к %s"
988
 
989
- #: nexus/cerber-nexus-master.php:692
990
  msgid "Invalid response from the slave website"
991
  msgstr "Неверный ответ с зависимого сайта"
992
 
993
- #: nexus/cerber-nexus-master.php:448
994
  msgid "Website has been deleted"
995
  msgid_plural "%s websites have been deleted"
996
  msgstr[0] "Сайт удален"
997
  msgstr[1] "%s сайта удалено"
998
  msgstr[2] "%s сайтов удалено"
999
 
1000
- #: nexus/cerber-nexus-master.php:329
1001
  msgid "Keep in mind: You have added the website that does not support SSL encryption. This may lead to data leakage."
1002
  msgstr "Имейте ввиду: Вы добавили сайт, который не поддерживает SSL. Это может привести к утечке данных."
1003
 
1004
- #: nexus/cerber-nexus-master.php:326
1005
  msgid "Switch to the Dashboard"
1006
  msgstr "Перейти в консоль"
1007
 
1008
- #: nexus/cerber-nexus-master.php:325
1009
  msgid "Click to edit"
1010
  msgstr "Нажмите для редактирования"
1011
 
1012
- #: nexus/cerber-nexus-master.php:324
1013
  msgid "The website has been added successfully"
1014
  msgstr "Сайт добавлен"
1015
 
1016
- #: nexus/cerber-nexus-master.php:315
1017
  msgid "The website you are trying to add is already in the list"
1018
  msgstr "Добавляемый вами сайт уже присутствует в списке"
1019
 
1020
- #: nexus/cerber-nexus-master.php:285
1021
  msgid "Security access token is invalid"
1022
  msgstr "Токен безопасного доступа не верен"
1023
 
@@ -1085,7 +1238,7 @@ msgstr "Переключиться на"
1085
  msgid "Edit"
1086
  msgstr "Редактировать"
1087
 
1088
- #: cerber-users.php:1061 nexus/cerber-slave-list.php:244
1089
  msgid "Search results for:"
1090
  msgstr "Результаты поиска для:"
1091
 
@@ -1145,7 +1298,7 @@ msgstr "Заблокированные пользователи"
1145
  msgid "An optional message for this user"
1146
  msgstr "Необязательное сообщение для этого пользователя"
1147
 
1148
- #: settings.php:508 cerber-users.php:68
1149
  msgid "User Message"
1150
  msgstr "Сообщение пользователю"
1151
 
@@ -1164,295 +1317,291 @@ msgstr "Заблокировать пользователя"
1164
 
1165
  #. translators: Time difference between two dates, in seconds (sec=second). 1:
1166
  #. Number of seconds
1167
- #: common.php:1563
1168
  msgid "%s sec"
1169
  msgid_plural "%s secs"
1170
  msgstr[0] "%s сек."
1171
  msgstr[1] "%s сек."
1172
  msgstr[2] "%s сек."
1173
 
1174
- #: common.php:1373
1175
  msgid "Blocked by administrator"
1176
  msgstr "Заблокирован администратором"
1177
 
1178
- #: common.php:1349
1179
  msgid "Invalid master credentials"
1180
  msgstr "Неверная мастер пара логин/пароль"
1181
 
1182
- #: admin/cerber-settings.php:599 dashboard.php:3135
1183
  msgid "Save Changes"
1184
  msgstr "Сохранить изменения"
1185
 
1186
- #: common.php:1360
1187
  msgid "IP address is locked out"
1188
  msgstr "IP адрес заблокирован"
1189
 
1190
- #: dashboard.php:836
1191
  msgid "Additional Details"
1192
  msgstr "Дополнительная информация"
1193
 
1194
- #: settings.php:730
1195
  msgid "Ignore logged in users"
1196
  msgstr "Игнорировать авторизованных пользователей"
1197
 
1198
- #: settings.php:716
1199
  msgid "Erroneous Request Shielding"
1200
  msgstr "Защита от ошибочных запросов"
1201
 
1202
- #: settings.php:698 settings.php:726
1203
  msgid "Maximum security"
1204
  msgstr "Максимальная безопасность"
1205
 
1206
- #: settings.php:697 settings.php:725
1207
  msgid "Maximum compatibility"
1208
  msgstr "Максимальная совместимость"
1209
 
1210
- #: settings.php:779
1211
  msgid "Save software errors"
1212
  msgstr "Сохранять ошибки ПО"
1213
 
1214
- #: settings.php:721
1215
  msgid "Enable error shielding"
1216
  msgstr "Включить защиту от ошибок"
1217
 
1218
- #: settings.php:688
1219
  msgid "Traffic Inspection"
1220
  msgstr "Инспектор трафика"
1221
 
1222
- #: dashboard.php:5091 dashboard.php:5092
1223
  msgid "Add to menu"
1224
  msgstr "Добавить в меню"
1225
 
1226
- #: dashboard.php:5052
1227
  msgid "WooCommerce Log Out"
1228
  msgstr "Выход WooCommerce"
1229
 
1230
- #: dashboard.php:5051
1231
  msgid "WooCommerce Log In"
1232
  msgstr "Вход WooCommerce"
1233
 
1234
- #: dashboard.php:5048
1235
  msgid "Register"
1236
  msgstr "Регистрация"
1237
 
1238
- #: dashboard.php:5047
1239
  msgid "Log Out"
1240
  msgstr "Выход"
1241
 
1242
- #: dashboard.php:5046
1243
  msgid "Log In"
1244
  msgstr "Вход"
1245
 
1246
- #: dashboard.php:3556
1247
  msgid "Page generation time"
1248
  msgstr "Время генерации страницы"
1249
 
1250
- #: common.php:1426
1251
  msgid "Multiple suspicious requests"
1252
  msgstr "Множественные подозрительные запросы"
1253
 
1254
- #: dashboard.php:5011
1255
  msgid "Know more about all advantages at"
1256
  msgstr "Узнайте больше о всех преимуществах на"
1257
 
1258
- #: dashboard.php:5010
1259
  msgid "These features are available in a professional version of the plugin."
1260
  msgstr "Эти возможности доступны в профессиональной версии плагина."
1261
 
1262
- #: common.php:1372
1263
  msgid "Suspicious JavaScript code detected"
1264
  msgstr "Найден подозрительный код JavaScript"
1265
 
1266
- #: cerber-scanner.php:5781
1267
  msgid "All scans"
1268
  msgstr "Все проверки"
1269
 
1270
- #: cerber-scanner.php:5729
1271
  msgid "Click here to see the full list of files"
1272
  msgstr "Нажмите здесь для просмотра полного списка файлов"
1273
 
1274
- #: cerber-scanner.php:5729
1275
  msgid "No files match the specified filter."
1276
  msgstr "Нет файлов подходящих к указанному фильтру."
1277
 
1278
- #: cerber-scanner.php:3862
1279
  msgid "Preparing for the scan"
1280
  msgstr "Подготовка сканирования"
1281
 
1282
- #: settings.php:853 settings.php:1157 settings.php:1184
1283
  msgid "Enable diagnostic logging"
1284
  msgstr "Включить журнал диагностики"
1285
 
1286
- #: settings.php:343
1287
  msgid "Disable PHP error displaying"
1288
  msgstr "Отключить отображение ошибок PHP"
1289
 
1290
- #: settings.php:339
1291
  msgid "Block execution of PHP scripts in the WordPress media folder"
1292
  msgstr "Отключить исполнение PHP скриптов в папке медиафайлов WordPress"
1293
 
1294
- #: settings.php:338
1295
  msgid "Disable PHP in uploads"
1296
  msgstr "Отключить PHP в папке загрузок"
1297
 
1298
- #: settings.php:317
1299
  msgid "Use English for admin interface"
1300
  msgstr "Use English for admin interface (использовать английский язык для интерфейса администрирования)"
1301
 
1302
- #: dashboard.php:2799
1303
  msgid "All files have been processed"
1304
  msgstr "Все файлы обработаны"
1305
 
1306
- #: dashboard.php:2798
1307
  msgid "Some errors occurred"
1308
  msgstr "Возникли ошибки"
1309
 
1310
- #: dashboard.php:2796
1311
  msgid "These files have been added to the ignore list"
1312
  msgstr "Эти файлы были добавлены в список игнорирования"
1313
 
1314
- #: dashboard.php:2795
1315
  msgid "Do you want to add selected files to the ignore list?"
1316
  msgstr "Вы точно хотите добавить выбранные файлы в список игнорирования?"
1317
 
1318
- #: dashboard.php:2792
1319
  msgid "These files have been moved to the quarantine"
1320
  msgstr "Эти файлы были перемещены в карантин"
1321
 
1322
- #: dashboard.php:2791
1323
  msgid "Are you sure you want to delete selected files?"
1324
  msgstr "Вы точно хотите удалить выбранные файлы?"
1325
 
1326
- #: dashboard.php:4722
1327
- msgid "Log"
1328
- msgstr "Журнал"
1329
-
1330
- #: cerber-scanner.php:5914
1331
  msgid "Added"
1332
  msgstr "Добавлено"
1333
 
1334
- #: cerber-scanner.php:5886
1335
  msgid "The list is empty."
1336
  msgstr "Список пуст."
1337
 
1338
- #: cerber-scanner.php:5884
1339
  msgid "Activity Insights"
1340
  msgstr "На виду: активность"
1341
 
1342
- #: cerber-scanner.php:5883
1343
  msgid "Traffic Insights"
1344
  msgstr "На виду: трафик"
1345
 
1346
- #: cerber-scanner.php:5882
1347
  msgid "User Insights"
1348
  msgstr "На виду: пользователи"
1349
 
1350
- #: cerber-scanner.php:5881 cerber-scanner.php:5908
1351
  msgid "Remove from the list"
1352
  msgstr "Удалить из списка"
1353
 
1354
- #: cerber-scanner.php:5880
1355
  msgid "Apply"
1356
  msgstr "Применить"
1357
 
1358
- #: dashboard.php:4689
1359
  msgid "Ignore List"
1360
  msgstr "Список игнорируемого"
1361
 
1362
- #: cerber-scanner.php:153
1363
  msgid "Ignore"
1364
  msgstr "Игнорировать"
1365
 
1366
- #: settings.php:986
1367
  msgid "Use comma to separate items."
1368
  msgstr "Используйте запятую для разделения элементов."
1369
 
1370
- #: settings.php:982
1371
  msgid "Files with these extensions"
1372
  msgstr "Файлы с этими расширениями"
1373
 
1374
- #: settings.php:979
1375
  msgid "Use absolute paths. One item per line."
1376
  msgstr "Используйте абсолютные пути. Один элемент на строку."
1377
 
1378
- #: settings.php:975
1379
  msgid "Files in these directories"
1380
  msgstr "Файлы в этих папках"
1381
 
1382
- #: settings.php:971
1383
  msgid "Files in the sessions directory"
1384
  msgstr "Файлы в папке сессий"
1385
 
1386
- #: settings.php:967
1387
  msgid "Files in the temporary directory"
1388
  msgstr "Файлы в временной папке"
1389
 
1390
- #: settings.php:963
1391
  msgid "Exclusions"
1392
  msgstr "Исключения"
1393
 
1394
- #: settings.php:944
1395
  msgid "Files with unwanted extensions"
1396
  msgstr "Файлы с нежелательными расширениями"
1397
 
1398
- #: settings.php:935
1399
  msgid "Files in the uploads folder"
1400
  msgstr "Файлы в папке загрузки"
1401
 
1402
- #: settings.php:926
1403
  msgid "Automatic cleanup of malware and suspicious files"
1404
  msgstr "Автоматическая очистка вредоносных и подозрительных файлов"
1405
 
1406
- #: dashboard.php:1781
1407
  msgid "Integrity"
1408
  msgstr "Целостность"
1409
 
1410
- #: dashboard.php:1762
1411
  msgctxt "Example: Last malware scan: 23 Jan 2018"
1412
  msgid "Last malware scan"
1413
  msgstr "Последняя проверка на вредоносное ПО"
1414
 
1415
- #: common.php:1371
1416
  msgid "Suspicious SQL code detected"
1417
  msgstr "Обнаружен подозрительный SQL код"
1418
 
1419
- #: common.php:1332
1420
  msgid "Attempt to upload malicious file denied"
1421
  msgstr "Заблокирована попытка загрузки вредоносного файла"
1422
 
1423
- #: cerber-scanner.php:5402
1424
  msgid "Automatically moved to quarantine"
1425
  msgstr "Автоматически перемещен в карантин"
1426
 
1427
- #: cerber-scanner.php:5349
1428
  msgid "Deleted"
1429
  msgstr "Удален"
1430
 
1431
- #: cerber-scanner.php:2826
1432
  msgid "The contents of the file have been changed and do not match what exists in the official WordPress repository or a reference file you have uploaded earlier. The file may have been altered by malware, infected by a virus or has been tampered with."
1433
  msgstr "Содержимое файы было изменено и не совпадает с оригиналом из репозитория WordPress или образцом загруженным вами ранее. Файл был изменен, возможно вредоносным кодом или вирусом."
1434
 
1435
- #: cerber-scanner.php:2822
1436
  msgid "It may remain after upgrading to a newer version of %s. It also may be a piece of obfuscated malware. In a rare case it might be a part of a custom-made (bespoke) plugin or theme."
1437
  msgstr "Он мог остаться после обновления до свежей версии %s. Он также может быть частью скрытого вредоносного ПО. В редких случаях это может быть часть сделанного под заказ плагина или темы."
1438
 
1439
- #: cerber-scanner.php:2821
1440
  msgid "The scanner recognizes this file as \"ownerless\" or \"not bundled\" because it does not belong to any known part of the website and should not be here."
1441
  msgstr "Сканер определил этот файл как \"ничей\" или непривязаный, поскольку он не относится ни к одной известной части сайта, его скорее всего вообще быть не должно."
1442
 
1443
- #: cerber-scanner.php:2820
1444
  msgid "This file contains executable code and may contain obfuscated malware. If this file is a part of a theme or a plugin, it must be located in the theme or the plugin folder. No exception, no excuses."
1445
  msgstr "Этот файл содержит исполняемый код и может включать скрытый вредоносный код. Если этот файл часть темы или плагина, он должен быть в папке с темой или плагином, никаких исключений."
1446
 
1447
- #: cerber-scanner.php:1590
1448
  msgid "Malicious code found"
1449
  msgstr "Найден вредоносный код"
1450
 
1451
- #: dashboard.php:4688
1452
  msgid "Cleaning up"
1453
  msgstr "Очистка"
1454
 
1455
- #: cerber-news.php:148
1456
  msgid "Awesome!"
1457
  msgstr "Замечательно!"
1458
 
@@ -1460,367 +1609,364 @@ msgstr "Замечательно!"
1460
  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."
1461
  msgstr "Защищает WordPress от атак хакеров, спама, троянов и вирусов. Включает сканер вредоносного ПО и проверку целостности. Усиление защиты WordPress набором комплексных алгоритмов безопасности. Защита от спама тонким определением ботов и reCAPTCHA. Отслеживание пользовательской активности и вторжений с уведомлением по email, а также через уведомления браузера или на мобильные устройства."
1462
 
1463
- #: admin/cerber-settings.php:538
1464
  msgctxt "preposition of time like: at 11:00"
1465
  msgid "at"
1466
  msgstr "в"
1467
 
1468
- #: dashboard.php:4604
1469
  msgid "Anti-spam engine"
1470
  msgstr "Антиспам защита"
1471
 
1472
- #: common.php:1570
1473
  msgctxt "preposition of a period of time like: in 6 hours"
1474
  msgid "in %s"
1475
  msgstr "Через %s"
1476
 
1477
- #: cerber-scanner.php:5857
1478
  msgid "The file has been restored to its original location."
1479
  msgstr "Файл был восстановлен по оригинальному местоположению."
1480
 
1481
- #: cerber-scanner.php:5843
1482
  msgid "The file has been deleted permanently."
1483
  msgstr "Файл удален навсегда."
1484
 
1485
- #: cerber-scanner.php:5767 cerber-scanner.php:5915
1486
  msgid "File"
1487
  msgstr "Файл"
1488
 
1489
- #: cerber-scanner.php:5766
 
1490
  msgid "Size"
1491
  msgstr "Размер"
1492
 
1493
- #: cerber-scanner.php:5765
1494
  msgid "Automatic deletion"
1495
  msgstr "Автоматическое удаление"
1496
 
1497
- #: cerber-scanner.php:5764
1498
- msgid "Moved to quarantine"
1499
- msgstr "Перемещен в карантин"
1500
-
1501
- #: cerber-scanner.php:5749
1502
  msgid "Delete permanently"
1503
  msgstr "Удалить навсегда"
1504
 
1505
- #: cerber-scanner.php:5752
1506
  msgid "Restore"
1507
  msgstr "Восстановить"
1508
 
1509
- #: cerber-scanner.php:5662
1510
  msgid "There are no files in the quarantine at the moment."
1511
  msgstr "В карантине сейчас нет файлов."
1512
 
1513
- #: cerber-scanner.php:4003 cerber-scanner.php:5763
1514
  msgid "Scanned"
1515
  msgstr "Проверено"
1516
 
1517
- #: cerber-scanner.php:3994
1518
  msgid "Unattended files"
1519
  msgstr "Несопровождаемые файлы"
1520
 
1521
- #: cerber-scanner.php:3982
1522
  msgid "Changed files"
1523
  msgstr "Измененные файлы"
1524
 
1525
- #: cerber-scanner.php:3978
1526
  msgid "New files"
1527
  msgstr "Новые файлы"
1528
 
1529
- #: nexus/cerber-slave-list.php:337 cerber-scanner.php:3974
1530
  msgid "Vulnerabilities"
1531
  msgstr "Уязвимости"
1532
 
1533
- #: cerber-scanner.php:3962
1534
  msgid "Performance"
1535
  msgstr "Производительность"
1536
 
1537
- #: cerber-scanner.php:3954
1538
  msgid "Finished"
1539
  msgstr "Завершено"
1540
 
1541
- #: cerber-scanner.php:3950
1542
  msgid "Started"
1543
  msgstr "Начато"
1544
 
1545
- #: dashboard.php:4690
1546
  msgid "Quarantine"
1547
  msgstr "Карантин"
1548
 
1549
- #: cerber-load.php:347
1550
  msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
1551
  msgstr "Вы исчерпали максимально допустимое количество попыток входа. Попробуйте снова через %d минут."
1552
 
1553
- #: settings.php:884
1554
  msgid "Scan results reporting"
1555
  msgstr "Отчет о результатах проверки"
1556
 
1557
- #: settings.php:867
1558
  msgid "Automated recurring scan schedule"
1559
  msgstr "План автоматической повторной проверки"
1560
 
1561
- #: dashboard.php:4006
1562
  msgid "Errors"
1563
  msgstr "Ошибки"
1564
 
1565
- #: dashboard.php:948 dashboard.php:4005
1566
  msgid "Suspicious activity"
1567
  msgstr "Подозрительная активность"
1568
 
1569
- #: dashboard.php:1512
1570
  msgid "Activated"
1571
  msgstr "Активация"
1572
 
1573
- #: common.php:1656
1574
  msgid "Bytes"
1575
  msgstr "Байт"
1576
 
1577
- #: common.php:1423
1578
  msgid "Attempt to upload a file with malicious code"
1579
  msgstr "Попытка загрузки файла с вредоносным кодом"
1580
 
1581
- #: common.php:1370 common.php:1422
1582
  msgid "Malicious code detected"
1583
  msgstr "Обнаружен вредоносный код"
1584
 
1585
- #: common.php:1369
1586
  msgid "Suspicious number of nested values"
1587
  msgstr "Подозрительное количество вложенных значений"
1588
 
1589
- #: common.php:1368
1590
  msgid "Suspicious number of fields"
1591
  msgstr "Подозрительное число полей"
1592
 
1593
- #: common.php:1346
1594
  msgid "User activated"
1595
  msgstr "Пользователь активирован"
1596
 
1597
- #: common.php:1343
1598
  msgid "Malicious request denied"
1599
  msgstr "Заблокирован вредоносный запрос"
1600
 
1601
- #: cerber-scanner.php:3866
1602
  msgid "Scanning the session folder for files"
1603
  msgstr "Поиск файлов в каталоге сессий"
1604
 
1605
- #: cerber-scanner.php:3865
1606
  msgid "Scanning the temp folder for files"
1607
  msgstr "Поиск файлов в временном каталоге"
1608
 
1609
- #: cerber-scanner.php:3864
1610
  msgid "Scanning the upload folder for files"
1611
  msgstr "Поиск файлов в каталоге uploads"
1612
 
1613
- #: cerber-scanner.php:1579
1614
  msgid "Unable to check the integrity due to a DB error"
1615
  msgstr "Невозможно проверить целостность из-за ошибки БД"
1616
 
1617
- #: cerber-scanner.php:1574
1618
  msgid "Vulnerability found"
1619
  msgstr "Обнаружена уязвимость"
1620
 
1621
- #: admin/cerber-settings.php:927
1622
  msgid "Unable to update the schedule"
1623
  msgstr "Невозможно обновить запланированное"
1624
 
1625
- #: admin/cerber-settings.php:924
1626
  msgid "The schedule has been updated"
1627
  msgstr "Запланированное обновлено"
1628
 
1629
- #: settings.php:911
1630
  msgid "Include scan errors"
1631
  msgstr "Включать ошибки сканера"
1632
 
1633
- #: settings.php:907
1634
  msgid "Include file sizes"
1635
  msgstr "Включать размеры файлов"
1636
 
1637
- #: settings.php:903
1638
  msgid "If new issues found"
1639
  msgstr "Если найдены новые проблемы"
1640
 
1641
- #: settings.php:902
1642
  msgid "If any changes in scan results occurred"
1643
  msgstr "Если найдены изменения в результатах сканирования"
1644
 
1645
- #: settings.php:901
1646
  msgid "After every scan"
1647
  msgstr "После каждого сканирования"
1648
 
1649
- #: settings.php:898
1650
  msgid "Send email report"
1651
  msgstr "Отсылать отчет по эл.почте"
1652
 
1653
- #: settings.php:889
1654
  msgid "Report an issue if any of the following is true"
1655
  msgstr "Отчитываться о проблемах, если нижеперечисленное верно"
1656
 
1657
- #: settings.php:894 settings.php:940
1658
  msgid "High severity"
1659
  msgstr "Высокая тяжесть"
1660
 
1661
- #: settings.php:893 settings.php:939
1662
  msgid "Medium severity"
1663
  msgstr "Средняя тяжесть"
1664
 
1665
- #: settings.php:892 settings.php:938
1666
  msgid "Low severity"
1667
  msgstr "Низкая тяжесть"
1668
 
1669
- #: settings.php:877
1670
  msgid "Launch Full Scan"
1671
  msgstr "Запуск полной проверки"
1672
 
1673
- #: settings.php:872
1674
  msgid "Launch Quick Scan"
1675
  msgstr "Запуск быстрой проверки"
1676
 
1677
- #: settings.php:836
1678
  msgid "Monitor modified files"
1679
  msgstr "Наблюдать за изменением файлов"
1680
 
1681
- #: settings.php:827
1682
  msgid "Monitor new files"
1683
  msgstr "Наблюдать за новыми файлами"
1684
 
1685
- #: cerber-scanner.php:5418
1686
  msgid "To view full report visit"
1687
  msgstr "Для просмотра полного отчета зайдите на"
1688
 
1689
- #: cerber-scanner.php:5264
1690
  msgid "Files scanned"
1691
  msgstr "Проверено файлов"
1692
 
1693
- #: cerber-scanner.php:5251
1694
  msgid "Quick Scan Report"
1695
  msgstr "Отчет быстрой проверки"
1696
 
1697
- #: cerber-scanner.php:5251
1698
  msgid "Full Scan Report"
1699
  msgstr "Отчет полной проверки"
1700
 
1701
- #: cerber-scanner.php:4704
1702
  msgid "File access error. Possibly scan results are outdated. Please run Quick or Full Scan."
1703
  msgstr "Ошибка доступа к файлу. Возможно результаты проверки устарели. Запустите быструю или полную проверку."
1704
 
1705
- #: cerber-scanner.php:4105
1706
  msgid "You have to upload a ZIP archive from which you've installed it. This enables the security scanner to verify the integrity of the code and detect malware."
1707
  msgstr "Вам нужно загрузить zip-архив, из которого вы это установили. Это даст возможность сканеру безопасности проверить целостность файлов, кода и определить вредоносный код."
1708
 
1709
- #: cerber-scanner.php:4103
1710
  msgid "We have not found any integrity data to verify"
1711
  msgstr "Не найдены данные о целостности для проверки"
1712
 
1713
- #: cerber-scanner.php:3875
1714
  msgid "Finalizing the scan"
1715
  msgstr "Завершение проверки"
1716
 
1717
- #: cerber-scanner.php:3874
1718
  msgid "Searching for malicious code"
1719
  msgstr "Поиск вредоносного кода"
1720
 
1721
- #: cerber-scanner.php:3873
1722
  msgid "Verifying the integrity of the themes"
1723
  msgstr "Проверка целостности тем"
1724
 
1725
- #: cerber-scanner.php:3871
1726
  msgid "Verifying the integrity of the plugins"
1727
  msgstr "Проверка целостности плагинов"
1728
 
1729
- #: cerber-scanner.php:3869
1730
  msgid "Verifying the integrity of WordPress"
1731
  msgstr "Проверка целостности WordPress"
1732
 
1733
- #: cerber-scanner.php:3868
1734
  msgid "Checking for new and modified files"
1735
  msgstr "Поиск новых и измененных файлов"
1736
 
1737
- #: cerber-scanner.php:3867
1738
  msgid "Parsing the list of files"
1739
  msgstr "Обработка списка файлов"
1740
 
1741
- #: cerber-scanner.php:3863
1742
  msgid "Scanning folders for files"
1743
  msgstr "Поиск файлов в каталогах"
1744
 
1745
- #: cerber-scanner.php:2829
1746
  msgid "Resolve issue"
1747
  msgstr "Решить проблему"
1748
 
1749
- #: cerber-scanner.php:2828
1750
  msgid "Please upload a reference ZIP archive"
1751
  msgstr "Пожалуйста, загрузите установочный zip-архив"
1752
 
1753
- #: cerber-scanner.php:2827
1754
  msgid "To solve this issue you have to reinstall %s or update it to the latest version."
1755
  msgstr "Для решения этой проблемы нужно переустановить %s или обновить до последней версии."
1756
 
1757
- #: cerber-scanner.php:2824
1758
  msgid "Suspicious code signatures found"
1759
  msgstr "Найдены подозрительные отпечатки кода"
1760
 
1761
- #: cerber-scanner.php:2823
1762
  msgid "Suspicious code instruction found"
1763
  msgstr "Найдены подозрительные инструкции в коде"
1764
 
1765
- #: cerber-scanner.php:1625
1766
  msgid "Every 6 hours"
1767
  msgstr "Каждые 6 часов"
1768
 
1769
- #: cerber-scanner.php:1624
1770
  msgid "Every 3 hours"
1771
  msgstr "Каждые 3 часа"
1772
 
1773
- #: cerber-scanner.php:1623
1774
  msgid "Every hour"
1775
  msgstr "Каждый час"
1776
 
1777
- #: settings.php:696 settings.php:724 settings.php:830 settings.php:839
1778
- #: settings.php:1178 dashboard.php:1765 dashboard.php:1767 cerber-users.php:20
1779
- #: cerber-users.php:445 cerber-scanner.php:1622
1780
  msgid "Disabled"
1781
  msgstr "Отключено"
1782
 
1783
- #: cerber-scanner.php:1599
1784
  msgid "New file"
1785
  msgstr "Новый файл"
1786
 
1787
- #: cerber-scanner.php:1596
1788
  msgid "Unwanted file extension"
1789
  msgstr "Файл с нежелательным расширением"
1790
 
1791
- #: cerber-scanner.php:1595 cerber-scanner.php:2825
1792
  msgid "Suspicious directives found"
1793
  msgstr "Найдены подозрительные директивы"
1794
 
1795
- #: cerber-scanner.php:1586 cerber-scanner.php:3986
1796
  msgid "Checksum mismatch"
1797
  msgstr "Несовпадение контрольной суммы"
1798
 
1799
- #: dashboard.php:1766 cerber-scanner.php:1065
1800
  msgid "Quick Scan"
1801
  msgstr "Быстрая проверка"
1802
 
1803
- #: dashboard.php:1768 cerber-scanner.php:1065
1804
  msgid "Full Scan"
1805
  msgstr "Полная проверка"
1806
 
1807
- #: cerber-scanner.php:108
1808
  msgid "It seems this website has never been scanned. To start scanning click the button below."
1809
  msgstr "Похоже этот сайт еще не проверялся, нажмите кнопку ниже для начала проверки."
1810
 
1811
- #: cerber-scanner.php:99
1812
  msgid "Previous scan started %s has not been completed. Continue scanning?"
1813
  msgstr "Предыдущая попытка проверки, начатая %s, не завершена. Продолжить проверку?"
1814
 
1815
- #: cerber-scanner.php:95
1816
  msgid "Currently a scheduled scan in progress. Please wait until it is finished."
1817
  msgstr "Сейчас выполняется запланированная проверка. Дождитесь пока она завершится."
1818
 
1819
- #: cerber-load.php:4186
1820
  msgid "Scanner Report"
1821
  msgstr "Отчет проверки"
1822
 
1823
- #: dashboard.php:4687
1824
  msgid "Scheduling"
1825
  msgstr "Планирование"
1826
 
@@ -1828,339 +1974,339 @@ msgstr "Планирование"
1828
  msgid "WP Cerber Security, Antispam & Malware Scan"
1829
  msgstr "WP Cerber Security, Antispam & Malware Scan"
1830
 
1831
- #: settings.php:857
1832
  msgid "Delete quarantined files after"
1833
  msgstr "Удалять файлы карантина через"
1834
 
1835
- #: settings.php:849
1836
  msgid "Scan session directory"
1837
  msgstr "Проверять каталог файлов сессий"
1838
 
1839
- #: settings.php:845
1840
  msgid "Scan temporary directory"
1841
  msgstr "Проверять каталог временных файлов"
1842
 
1843
- #: settings.php:820
1844
  msgid "Directories to exclude"
1845
  msgstr "Каталоги для исключения"
1846
 
1847
- #: settings.php:817
1848
  msgid "Specify file extensions to search for. Full scan only. Use comma to separate items."
1849
  msgstr "Укажите расширения файлов для поиска. Используется только при полной проверке. Испольуйте запятую для разделения элементов."
1850
 
1851
- #: settings.php:813
1852
  msgid "Unwanted file extensions"
1853
  msgstr "Нежелательные расширения файлов"
1854
 
1855
- #: settings.php:810
1856
  msgid "Specify custom PHP code signatures. One item per line. To specify a REGEX pattern, enclose a whole line in two braces."
1857
  msgstr "Укажите пользовательские подписи PHP кода. Один элемент на строку. Для использования регулярных выражений, включите строку в фигурные скобки { }."
1858
 
1859
- #: settings.php:806
1860
  msgid "Custom signatures"
1861
  msgstr "Пользовательские отпечатки"
1862
 
1863
- #: settings.php:801
1864
  msgid "Scanner settings"
1865
  msgstr "Настройки сканера"
1866
 
1867
- #: settings.php:176
1868
  msgid "Disable dashboard redirection"
1869
  msgstr "Отключить перенаправление с консоли"
1870
 
1871
- #: settings.php:155 settings.php:501 settings.php:702
1872
  msgid "Use White IP Access List"
1873
  msgstr "Использовать белый список IP"
1874
 
1875
- #: cerber-scanner.php:4010 cerber-scanner.php:5295
1876
  msgid "Issues total"
1877
  msgstr "Всего проблем"
1878
 
1879
- #: cerber-scanner.php:4010
1880
  msgid "Critical issues"
1881
  msgstr "Критические проблемы"
1882
 
1883
- #: cerber-scanner.php:4003
1884
  msgid "Files to scan"
1885
  msgstr "Файлы для проверки"
1886
 
1887
- #: cerber-scanner.php:2645
1888
  msgid "Custom signature found"
1889
  msgstr "Найден пользовательский отпечаток"
1890
 
1891
- #: cerber-scanner.php:3990
1892
  msgid "Unwanted extensions"
1893
  msgstr "Нежелательные расширения"
1894
 
1895
- #: cerber-scanner.php:1592
1896
  msgid "Executable code found"
1897
  msgstr "Обнаружен исполняемый код"
1898
 
1899
- #: cerber-scanner.php:1591
1900
  msgid "Unattended suspicious file"
1901
  msgstr "Нештатный подозрительный файл"
1902
 
1903
- #: cerber-scanner.php:1589
1904
  msgid "Suspicious code found"
1905
  msgstr "Найден подозрительный код"
1906
 
1907
- #: cerber-scanner.php:1598
1908
  msgid "Content has been modified"
1909
  msgstr "Содержимое изменено"
1910
 
1911
- #: cerber-scanner.php:1584 cerber-scanner.php:5104
1912
  msgid "Unable to open file"
1913
  msgstr "Невозможно открыть файл"
1914
 
1915
- #: cerber-scanner.php:1583
1916
  msgid "Unable to process file"
1917
  msgstr "Невозможно обработать файл"
1918
 
1919
- #: cerber-scanner.php:1581
1920
  msgid "Local file doesn't exist"
1921
  msgstr "Локальный файл отсутствует"
1922
 
1923
- #: cerber-scanner.php:1578
1924
  msgid "Unable to check the integrity of the theme due to a network error"
1925
  msgstr "Невозможно проверить целостность темы из-за ошибки сети"
1926
 
1927
- #: cerber-scanner.php:1577
1928
  msgid "Unable to check the integrity of WordPress files due to a network error"
1929
  msgstr "Невозможно проверить целостность WordPress из-за ошибки сети"
1930
 
1931
- #: cerber-scanner.php:1576
1932
  msgid "Unable to check the integrity of the plugin due to a network error"
1933
  msgstr "Невозможно проверить целостность плагина из-за ошибки сети"
1934
 
1935
- #: cerber-scanner.php:1575
1936
  msgid "Integrity data not found"
1937
  msgstr "Данные о целостности не найдены"
1938
 
1939
- #: cerber-scanner.php:1568
1940
  msgid "Verified"
1941
  msgstr "Проверено"
1942
 
1943
- #: cerber-scanner.php:150
1944
  msgid "Delete"
1945
  msgstr "Удалить"
1946
 
1947
- #: cerber-scanner.php:114
1948
  msgid "Continue Scanning"
1949
  msgstr "Продолжить проверку"
1950
 
1951
- #: cerber-scanner.php:113
1952
  msgid "Stop Scanning"
1953
  msgstr "Остановить проверку"
1954
 
1955
- #: cerber-scanner.php:112
1956
  msgid "Start Full Scan"
1957
  msgstr "Начать полную проверку"
1958
 
1959
- #: cerber-scanner.php:111
1960
  msgid "Start Quick Scan"
1961
  msgstr "Начать быструю проверку"
1962
 
1963
- #: dashboard.php:4685
1964
  msgid "Security Scanner"
1965
  msgstr "Сканер безопасности"
1966
 
1967
- #: dashboard.php:67 dashboard.php:4683
1968
  msgid "Site Integrity"
1969
  msgstr "Целостность сайта"
1970
 
1971
- #: settings.php:119
1972
  msgid "If you forget your Custom login URL, you will be unable to log in."
1973
  msgstr "Если вы забудете ваш пользовательский URL входа, то вы не сможете войти."
1974
 
1975
- #: settings.php:119
1976
  msgid "Be careful about enabling these options."
1977
  msgstr "Будьте осторожны при включении этих настроек."
1978
 
1979
- #: common.php:1366
1980
  msgid "Denied"
1981
  msgstr "Запрещено"
1982
 
1983
- #: settings.php:710
1984
  msgid "To specify a REGEX pattern, enclose a whole line in two braces."
1985
  msgstr "Для использования регулярных выражений заключите строку целиком в фигурные скобки { }."
1986
 
1987
- #: admin/cerber-settings.php:625
1988
  msgid "Plugin initialization mode has not been changed"
1989
  msgstr "Режим инициализации плагина не был изменен"
1990
 
1991
- #: settings.php:133
1992
  msgid "Standard mode"
1993
  msgstr "Стандартный режим"
1994
 
1995
- #: settings.php:132
1996
  msgid "Legacy mode"
1997
  msgstr "Старый режим"
1998
 
1999
- #: settings.php:129
2000
  msgid "Load security engine"
2001
  msgstr "Загрузка движка безопасности"
2002
 
2003
- #: settings.php:126
2004
  msgid "Plugin initialization"
2005
  msgstr "Инициализация плагина"
2006
 
2007
- #: common.php:2782
2008
  msgid "Unable to delete the file"
2009
  msgstr "Невозможно удалить файл"
2010
 
2011
- #: common.php:2776
2012
  msgid "Unable to copy the file"
2013
  msgstr "Невозможно скопировать файл"
2014
 
2015
- #: common.php:2773
2016
  msgid "File not found"
2017
  msgstr "Файл не найден"
2018
 
2019
- #: common.php:2770
2020
  msgid "Destination folder access denied"
2021
  msgstr "Доступ к каталогу назначения закрыт"
2022
 
2023
- #: common.php:2765
2024
  msgid "Unable to create the directory"
2025
  msgstr "Невозможно создать каталог"
2026
 
2027
- #: common.php:1333
2028
  msgid "File upload denied"
2029
  msgstr "Предотвращена загрузка файла"
2030
 
2031
- #: settings.php:334
2032
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
2033
  msgstr "Блокировка неавторизованного доступа к load-scripts.php и load-styles.php"
2034
 
2035
- #: settings.php:333
2036
  msgid "Protect admin scripts"
2037
  msgstr "Защита скриптов администратора"
2038
 
2039
- #: cerber-load.php:3954
2040
  msgid "We're sorry, you are not allowed to proceed"
2041
  msgstr "Извините, вам не разрешено продолжить"
2042
 
2043
- #: settings.php:710
2044
  msgid "Enter a request URI to exclude the request from inspection. One item per line."
2045
  msgstr "Введите URI запроса для исключения из инспекции. Один элемент на строку."
2046
 
2047
- #: settings.php:706
2048
  msgid "Request whitelist"
2049
  msgstr "Белый список запросов"
2050
 
2051
- #: settings.php:784
2052
  msgid "milliseconds"
2053
  msgstr "миллисекунд"
2054
 
2055
- #: settings.php:783
2056
  msgid "Page generation time threshold"
2057
  msgstr "Порог времени генерации страницы"
2058
 
2059
- #: settings.php:775
2060
  msgid "Save request cookies"
2061
  msgstr "Сохранять куки запроса"
2062
 
2063
- #: settings.php:771
2064
  msgid "Save $_SERVER"
2065
  msgstr "Сохранять $_SERVER"
2066
 
2067
- #: settings.php:766
2068
  msgid "Save request headers"
2069
  msgstr "Сохранять заголовки запроса"
2070
 
2071
- #: settings.php:759
2072
  msgid "Mask these form fields"
2073
  msgstr "Маскировать эти поля форм"
2074
 
2075
- #: settings.php:755
2076
  msgid "Save request fields"
2077
  msgstr "Сохранять поля запросов"
2078
 
2079
- #: settings.php:751
2080
  msgid "Ignore crawlers"
2081
  msgstr "Игнорировать веб-пауков"
2082
 
2083
- #: settings.php:747
2084
  msgid "All traffic"
2085
  msgstr "Весь трафик"
2086
 
2087
- #: settings.php:746
2088
  msgid "Smart"
2089
  msgstr "Умная выборка"
2090
 
2091
- #: settings.php:745
2092
  msgid "Logging disabled"
2093
  msgstr "Журнал отключен"
2094
 
2095
- #: settings.php:742
2096
  msgid "Logging mode"
2097
  msgstr "Режим журнала"
2098
 
2099
- #: settings.php:693
2100
  msgid "Enable traffic inspection"
2101
  msgstr "Включить инспектирование трафика"
2102
 
2103
- #: dashboard.php:4032
2104
  msgid "Advanced Search"
2105
  msgstr "Улучшенный поиск"
2106
 
2107
- #: dashboard.php:4045
2108
  msgid "Refresh"
2109
  msgstr "Обновить"
2110
 
2111
- #: dashboard.php:4022
2112
  msgid "Longer than"
2113
  msgstr "Дольше чем"
2114
 
2115
- #: dashboard.php:4013
2116
  msgid "Page Not Found"
2117
  msgstr "Страница не найдена"
2118
 
2119
- #: dashboard.php:4011
2120
  msgid "Form submissions"
2121
  msgstr "Отправки форм"
2122
 
2123
- #: dashboard.php:953 dashboard.php:4008
2124
  msgid "Not logged in visitors"
2125
  msgstr "Неавторизованные посетители"
2126
 
2127
- #: dashboard.php:4003
2128
  msgid "All requests"
2129
  msgstr "Все запросы"
2130
 
2131
- #: dashboard.php:3995
2132
  msgid "No requests have been logged."
2133
  msgstr "В журнале нет данных о запросах."
2134
 
2135
- #: dashboard.php:3978
2136
  msgid "User Agent"
2137
  msgstr "User Agent"
2138
 
2139
- #: dashboard.php:3977 cerber-users.php:974
2140
  msgid "Host Info"
2141
  msgstr "Информация о хосте"
2142
 
2143
- #: dashboard.php:3975
2144
  msgid "Request"
2145
  msgstr "Запрос"
2146
 
2147
- #: dashboard.php:4624
2148
  msgid "Live Traffic"
2149
  msgstr "Живой трафик"
2150
 
2151
- #: dashboard.php:1780 cerber-users.php:1140
2152
  msgid "Traffic"
2153
  msgstr "Трафик"
2154
 
2155
- #: dashboard.php:1745
2156
  msgid "no connection"
2157
  msgstr "нет подключения"
2158
 
2159
- #: dashboard.php:1740
2160
  msgid "enabled"
2161
  msgstr "включено"
2162
 
2163
- #: dashboard.php:56 dashboard.php:1741 dashboard.php:4622
2164
  msgid "Traffic Inspector"
2165
  msgstr "Инспектор трафика"
2166
 
@@ -2168,104 +2314,104 @@ msgstr "Инспектор трафика"
2168
  msgid "Cerber Traffic Inspector"
2169
  msgstr "Цербер-инспектор трафика"
2170
 
2171
- #: dashboard.php:1534
2172
  msgid "Last seen"
2173
  msgstr "Последний раз"
2174
 
2175
- #: common.php:1782
2176
  msgid "Not specified"
2177
  msgstr "Не указано"
2178
 
2179
- #: common.php:1331 common.php:1421
2180
  msgid "Probing for vulnerable PHP code"
2181
  msgstr "Проверка на уязвимый PHP-код"
2182
 
2183
- #: common.php:213
2184
  msgid "Check for requests"
2185
  msgstr "Проверить запросы"
2186
 
2187
- #: dashboard.php:338
2188
  msgid "You cannot add your IP address or network"
2189
  msgstr "Вы не можете добавить ваш IP-адрес или сеть"
2190
 
2191
- #: dashboard.php:316
2192
  msgid "Optional comment for this entry"
2193
  msgstr "Необязательный комментарий к этой записи"
2194
 
2195
- #: cerber-load.php:4336
2196
  msgid "Attempts to log in with non-existing usernames"
2197
  msgstr "Попытка войти с несуществующим именем пользователя"
2198
 
2199
- #: cerber-load.php:4310
2200
  msgid "Weekly Report"
2201
  msgstr "Недельный отчет"
2202
 
2203
- #: cerber-load.php:4240
2204
  msgid "Your last sign-in was %s from %s"
2205
  msgstr "Ваш последний вход был %s с %s"
2206
 
2207
- #: settings.php:667
2208
  msgid "Enable reporting"
2209
  msgstr "Включить отчеты"
2210
 
2211
- #: settings.php:1030
2212
  msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
2213
  msgstr "Введите часть строки или пути запроса для исключения запроса из проверки движком. Один элемент на строку."
2214
 
2215
- #: settings.php:542 settings.php:550
2216
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
2217
  msgstr "Для использования регулярных выражений оберните их в два прямых слеша."
2218
 
2219
- #: settings.php:190
2220
  msgid "Display simple 404 page"
2221
  msgstr "Показать простую страницу 404"
2222
 
2223
- #: settings.php:189
2224
  msgid "Use 404 template from the active theme"
2225
  msgstr "Использовать шаблон 404 активной темы"
2226
 
2227
- #: dashboard.php:3379
2228
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
2229
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
2230
  msgstr "Выбранным странам не разрешено %s, остальным странам разрешено"
2231
 
2232
- #: dashboard.php:3376
2233
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
2234
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
2235
  msgstr "Выбранным странам разрешено %s, остальным странам - нет"
2236
 
2237
- #: dashboard.php:3280
2238
  msgid "Not permitted for one country"
2239
  msgid_plural "Not permitted for %d countries"
2240
  msgstr[0] "Не разрешено в одной стране"
2241
  msgstr[1] "Не разрешено в %d странах"
2242
  msgstr[2] "Не разрешено в %d странах"
2243
 
2244
- #: dashboard.php:574
2245
  msgid "Unable to send email to"
2246
  msgstr "Невозможно отправить email на"
2247
 
2248
- #: dashboard.php:571
2249
  msgid "Email has been sent to"
2250
  msgstr "Сообщение было отправлено на электронный адрес"
2251
 
2252
- #: cerber-load.php:4322
2253
  msgid "Activity details"
2254
  msgstr "Подробно об активности"
2255
 
2256
- #: cerber-load.php:4216
2257
  msgid "Your license is valid until"
2258
  msgstr "Ваша лицензия действительна до"
2259
 
2260
- #: cerber-load.php:4212
2261
  msgid "Your login page:"
2262
  msgstr "Ваша страница входа:"
2263
 
2264
- #: cerber-load.php:4179 cerber-load.php:4189
2265
  msgid "To change reporting settings visit"
2266
  msgstr "Для смены настроек отчетности зайдите"
2267
 
2268
- #: cerber-load.php:4176
2269
  msgid "Weekly report"
2270
  msgstr "Недельный отчет"
2271
 
@@ -2273,170 +2419,170 @@ msgstr "Недельный отчет"
2273
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
2274
  msgstr ">>> Переводите WP Cerber? Получите PRO лицензию бесплатно, оставьте контакты здесь: https://wpcerber.com/contact/"
2275
 
2276
- #: admin/cerber-settings.php:557
2277
  msgid "Click to send now"
2278
  msgstr "Нажмите для отправки сейчас"
2279
 
2280
- #: admin/cerber-settings.php:528
2281
  msgid "Saturday"
2282
  msgstr "Суббота"
2283
 
2284
- #: admin/cerber-settings.php:527
2285
  msgid "Friday"
2286
  msgstr "Пятница"
2287
 
2288
- #: admin/cerber-settings.php:526
2289
  msgid "Thursday"
2290
  msgstr "Четверг"
2291
 
2292
- #: admin/cerber-settings.php:525
2293
  msgid "Wednesday"
2294
  msgstr "Среда"
2295
 
2296
- #: admin/cerber-settings.php:524
2297
  msgid "Tuesday"
2298
  msgstr "Вторник"
2299
 
2300
- #: admin/cerber-settings.php:523
2301
  msgid "Monday"
2302
  msgstr "Понедельник"
2303
 
2304
- #: admin/cerber-settings.php:522
2305
  msgid "Sunday"
2306
  msgstr "Воскресенье"
2307
 
2308
- #: settings.php:663
2309
  msgid "Weekly reports"
2310
  msgstr "Недельные отчеты"
2311
 
2312
- #: dashboard.php:2682
2313
  msgid "Main settings"
2314
  msgstr "Основные настройки"
2315
 
2316
- #: admin/cerber-settings.php:654 admin/cerber-settings.php:655
2317
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
2318
  msgstr "Если вы используете плагин кеширования, вам нужно добавить новый URL входа в список исключений кеширования"
2319
 
2320
- #: settings.php:1045
2321
  msgid "Mark it as spam"
2322
  msgstr "Пометить как спам"
2323
 
2324
- #: settings.php:1045
2325
  msgid "Deny it completely"
2326
  msgstr "Полностью запретить"
2327
 
2328
- #: settings.php:564
2329
  msgid "Sort users in dashboard"
2330
  msgstr "Сортировать пользователей в консоли"
2331
 
2332
- #: settings.php:526
2333
  msgid "Registration limit"
2334
  msgstr "Предел регистраций"
2335
 
2336
- #: settings.php:375
2337
  msgid "Allow REST API for logged in users"
2338
  msgstr "Разрешить REST API для авторизованных пользователей"
2339
 
2340
- #: dashboard.php:3407
2341
  msgid "Use REST API"
2342
  msgstr "использование REST API"
2343
 
2344
- #: dashboard.php:3406
2345
  msgid "Use XML-RPC"
2346
  msgstr "использование XML-RPC"
2347
 
2348
- #: dashboard.php:3403
2349
  msgid "Register on the website"
2350
  msgstr "регистрация на сайте"
2351
 
2352
- #: dashboard.php:3399
2353
  msgid "Log in to the website"
2354
  msgstr "авторизация на сайте"
2355
 
2356
- #: dashboard.php:3405
2357
  msgid "Post comments"
2358
  msgstr "отправка комментариев"
2359
 
2360
- #: dashboard.php:3404
2361
  msgid "Submit forms"
2362
  msgstr "отправка форм"
2363
 
2364
- #: dashboard.php:3372
2365
  msgid "Click on a country name to add it to the list of selected countries"
2366
  msgstr "Нажмите на страну чтобы добавить ее в список выбранных"
2367
 
2368
- #: dashboard.php:3257
2369
  msgid "Start typing here to find a country"
2370
  msgstr "Начните печатать тут чтобы найти страну"
2371
 
2372
- #: cerber-load.php:4161 cerber-load.php:5121 dashboard.php:2380
2373
  msgid "Getting Started Guide"
2374
  msgstr "Руководство с чего начать"
2375
 
2376
- #: dashboard.php:2320
2377
  msgid "in the last 24 hours"
2378
  msgstr "В последние 24 часа"
2379
 
2380
- #: dashboard.php:1658 cerber-users.php:52 cerber-users.php:1106
2381
  msgid "You"
2382
  msgstr "Вы"
2383
 
2384
- #: dashboard.php:1544 dashboard.php:1588
2385
  msgid "Registered"
2386
  msgstr "Зарегистрирован"
2387
 
2388
- #: dashboard.php:1587
2389
  msgid "Failed login attempts"
2390
  msgstr "Неудачные попытки входа"
2391
 
2392
- #: common.php:1420
2393
  msgid "Multiple suspicious activities were detected"
2394
  msgstr "Обнаружена множественная подозрительная активность"
2395
 
2396
- #: common.php:1365
2397
  msgid "Multiple suspicious activities"
2398
  msgstr "Множественная подозрительная активность"
2399
 
2400
- #: common.php:1364
2401
  msgid "Limit reached"
2402
  msgstr "Предел достигнут"
2403
 
2404
- #: settings.php:1029
2405
  msgid "Query whitelist"
2406
  msgstr "Белый список запросов"
2407
 
2408
- #: settings.php:389
2409
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
2410
  msgstr "Укажите пространства имен REST API разрешенных при отключении REST API, одно имя на строку."
2411
 
2412
- #: settings.php:370
2413
  msgid "Block access to WordPress REST API except any of the following"
2414
  msgstr "Блокировать доступ к REST API кроме следующего"
2415
 
2416
- #: dashboard.php:3449
2417
  msgid "Security rules have been updated"
2418
  msgstr "Правила безопасности обновлены"
2419
 
2420
- #: dashboard.php:3288
2421
  msgid "No rule"
2422
  msgstr "Нет правила"
2423
 
2424
- #: dashboard.php:3277
2425
  msgid "Permitted for one country"
2426
  msgid_plural "Permitted for %d countries"
2427
  msgstr[0] "Разрешается для одной страны"
2428
  msgstr[1] "Разрешается для %d стран"
2429
  msgstr[2] "Разрешается для %d стран"
2430
 
2431
- #: dashboard.php:4670
2432
  msgid "Countries"
2433
  msgstr "Страны"
2434
 
2435
- #: common.php:287
2436
  msgid "Spam form submissions denied"
2437
  msgstr "Заблокированы отправки форм спама"
2438
 
2439
- #: dashboard.php:61 dashboard.php:4668
2440
  msgid "Security Rules"
2441
  msgstr "Правила безопасности"
2442
 
@@ -2444,108 +2590,108 @@ msgstr "Правила безопасности"
2444
  msgid "Cerber Security Rules"
2445
  msgstr "Правила безопасности Цербер"
2446
 
2447
- #: dashboard.php:193 dashboard.php:1081
2448
  msgid "Country"
2449
  msgstr "Страна"
2450
 
2451
- #: common.php:1363
2452
  msgid "Blocked by country rule"
2453
  msgstr "Заблокирован по ограничению для страны"
2454
 
2455
- #: common.php:1362
2456
  msgid "Malicious activity detected"
2457
  msgstr "Обнаружена вредоносная активность"
2458
 
2459
- #: common.php:1358
2460
  msgid "Citadel mode is active"
2461
  msgstr "Режим цитадель активен"
2462
 
2463
- #: common.php:1357
2464
  msgid "Bot detected"
2465
  msgstr "Обнаружен бот"
2466
 
2467
- #: common.php:1336
2468
  msgid "XML-RPC request denied"
2469
  msgstr "Запрос XML-RPC заблокирован"
2470
 
2471
- #: common.php:1335
2472
  msgid "Request to REST API denied"
2473
  msgstr "Запрос к REST API заблокирован"
2474
 
2475
- #: common.php:1309
2476
  msgid "Comment denied"
2477
  msgstr "Комментарий заблокирован"
2478
 
2479
- #: common.php:1308
2480
  msgid "Form submission denied"
2481
  msgstr "Отправка формы заблокирована"
2482
 
2483
- #: dashboard.php:4724
2484
  msgid "License"
2485
  msgstr "Лицензия"
2486
 
2487
- #: settings.php:1025
2488
  msgid "Disable bot detection engine for logged in users"
2489
  msgstr "Отключить определение ботов для авторизованных пользователей"
2490
 
2491
- #: settings.php:374 settings.php:1024 dashboard.php:952 dashboard.php:1734
2492
- #: dashboard.php:4007
2493
  msgid "Logged in users"
2494
  msgstr "Авторизованные пользователи"
2495
 
2496
- #: settings.php:1020
2497
  msgid "Use less restrictive policies (allow AJAX)"
2498
  msgstr "Использовать менее жесткую политику (разрешить AJAX)"
2499
 
2500
- #: settings.php:1019
2501
  msgid "Safe mode"
2502
  msgstr "Безопасный режим"
2503
 
2504
- #: settings.php:1015
2505
  msgid "Adjust anti-spam engine"
2506
  msgstr "Настроить антиспам-движок"
2507
 
2508
- #: settings.php:1009
2509
  msgid "Protect all forms on the website with bot detection engine"
2510
  msgstr "Защитить все формы на сайте через определение ботов"
2511
 
2512
- #: settings.php:1008
2513
  msgid "Other forms"
2514
  msgstr "Другие формы"
2515
 
2516
- #: common.php:1307
2517
  msgid "Spam form submission denied"
2518
  msgstr "Отправка формы со спамом заблокирована"
2519
 
2520
- #: cerber-load.php:1874
2521
  msgid "Sorry, human verification failed."
2522
  msgstr "Извините, проверка на человека не удалась."
2523
 
2524
- #: settings.php:1050
2525
  msgid "Move spam comments to trash after"
2526
  msgstr "Удалить спам комментарии в корзину после"
2527
 
2528
- #: settings.php:1048
2529
  msgid "Trash spam comments"
2530
  msgstr "Удалить спам комментарии в корзину"
2531
 
2532
- #: settings.php:1043
2533
  msgid "If a spam comment detected"
2534
  msgstr "Если обнаружен спам комментарий"
2535
 
2536
- #: settings.php:1039
2537
  msgid "Comment processing"
2538
  msgstr "Обработка комментария"
2539
 
2540
- #: settings.php:1004
2541
  msgid "Protect registration form with bot detection engine"
2542
  msgstr "Защита регистрации через определение ботов"
2543
 
2544
- #: settings.php:999
2545
  msgid "Protect comment form with bot detection engine"
2546
  msgstr "Защита комментариев через определение ботов"
2547
 
2548
- #: settings.php:993
2549
  msgid "Cerber anti-spam engine"
2550
  msgstr "Движок Цербер-антиспам"
2551
 
@@ -2553,164 +2699,160 @@ msgstr "Движок Цербер-антиспам"
2553
  msgid "Cerber anti-spam settings"
2554
  msgstr "Настройка Цербер-антиспам"
2555
 
2556
- #: common.php:1419
2557
  msgid "Bot activity is detected"
2558
  msgstr "Обнаружена активность ботов"
2559
 
2560
- #: dashboard.php:4602
2561
  msgid "Anti-spam and bot detection settings"
2562
  msgstr "Антиспам и настройки определения ботов"
2563
 
2564
- #: dashboard.php:4721
2565
  msgid "Diagnostic"
2566
  msgstr "Диагностика"
2567
 
2568
- #: dashboard.php:4720
2569
- msgid "Export & Import"
2570
- msgstr "Экспорт и Импорт"
2571
-
2572
- #: cerber-load.php:1549 cerber-load.php:1555 cerber-load.php:1580
2573
- #: cerber-load.php:1587
2574
  msgid "You are not allowed to register."
2575
  msgstr "Вам не разрешено зарегистрироваться."
2576
 
2577
- #: common.php:289
2578
  msgid "Lockouts occurred"
2579
  msgstr "Блокировок произошло"
2580
 
2581
- #: common.php:288
2582
  msgid "Malicious IP addresses detected"
2583
  msgstr "Найдены вредоносные IP адреса"
2584
 
2585
- #: common.php:286
2586
  msgid "Spam comments denied"
2587
  msgstr "Спам-комментарии отклонены"
2588
 
2589
- #: common.php:283
2590
  msgid "Malicious activities mitigated"
2591
  msgstr "Вредоносная активность снижена"
2592
 
2593
- #: dashboard.php:835 dashboard.php:1083
2594
  msgid "Event"
2595
  msgstr "Событие"
2596
 
2597
- #: common.php:1330
2598
  msgid "Attempt to register denied"
2599
  msgstr "Попытка регистрации отклонена"
2600
 
2601
- #: common.php:1329
2602
  msgid "Attempt to log in denied"
2603
  msgstr "Попытка входа отклонена"
2604
 
2605
- #: common.php:1306
2606
  msgid "Spam comment denied"
2607
  msgstr "Спам коммнтарий отклонен"
2608
 
2609
- #: settings.php:234
2610
  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."
2611
  msgstr "В режиме Цитадель никто не может войти кроме как с IP в белом списке. Активные сессии пользователей не будут затронуты."
2612
 
2613
- #: settings.php:1117
2614
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
2615
  msgstr "Блокировать IP адрес на %s минут после %s неудачных попыток в течении %s минут"
2616
 
2617
- #: settings.php:1116
2618
  msgid "Limit attempts"
2619
  msgstr "Ограничение попыток"
2620
 
2621
- #: settings.php:1106 dashboard.php:71
2622
  msgid "Anti-spam"
2623
  msgstr "Антиспам"
2624
 
2625
- #: settings.php:156
2626
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
2627
  msgstr "Применить правила входа для IP адресов в белом списке"
2628
 
2629
- #: common.php:1418
2630
  msgid "Limit on failed reCAPTCHA verifications is reached"
2631
  msgstr "Достигнут предел проверки reCAPTCHA"
2632
 
2633
- #: common.php:1319
2634
  msgid "Password reset requested"
2635
  msgstr "Запрошен сброс пароля"
2636
 
2637
- #: settings.php:1072
2638
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
2639
  msgstr "(не включайте, если у вас нет или вы не вводили ключ сайта и секретный ключ для невидимой версии)"
2640
 
2641
- #: settings.php:1112
2642
  msgid "Disable reCAPTCHA for logged in users"
2643
  msgstr "Отключить reCAPTCHA для авторизованных пользователей"
2644
 
2645
- #: settings.php:1107
2646
  msgid "Enable reCAPTCHA for WordPress comment form"
2647
  msgstr "Включить reCAPTCHA в форме комментариев WordPress"
2648
 
2649
- #: settings.php:998
2650
  msgid "Comment form"
2651
  msgstr "Форма комментариев"
2652
 
2653
- #: settings.php:1072
2654
  msgid "Enable invisible reCAPTCHA"
2655
  msgstr "Включить невидимую reCAPTCHA"
2656
 
2657
- #: settings.php:1071
2658
  msgid "Invisible reCAPTCHA"
2659
  msgstr "невидимая reCAPTCHA"
2660
 
2661
- #: common.php:1570
2662
  msgid "%s ago"
2663
  msgstr "%s назад"
2664
 
2665
- #: settings.php:110
2666
  msgid "Not available"
2667
  msgstr "Недоступно"
2668
 
2669
- #: settings.php:106
2670
  msgid "No devices found"
2671
  msgstr "Устройства не найдены"
2672
 
2673
- #: settings.php:103
2674
  msgid "All connected devices"
2675
  msgstr "Все подключенные устройства"
2676
 
2677
- #: settings.php:629 settings.php:678 settings.php:761 settings.php:917
2678
  msgid "Use comma to specify multiple values"
2679
  msgstr "Используйте запятую для разделения множественных значений"
2680
 
2681
- #: settings.php:619
2682
  msgid "Email notifications"
2683
  msgstr "Уведомления по эл.почте"
2684
 
2685
- #: settings.php:186
2686
  msgid "Display 404 page"
2687
  msgstr "Показывать страницу 404"
2688
 
2689
- #: settings.php:648
2690
  msgid "Push notifications"
2691
  msgstr "Push уведомления"
2692
 
2693
- #: dashboard.php:1148
2694
  msgid "Search for IP or username"
2695
  msgstr "Поиск IP или имени пользователя"
2696
 
2697
- #: cerber-tools.php:242
2698
  msgid "Unsubscribe"
2699
  msgstr "Отменить подписку"
2700
 
2701
- #: dashboard.php:838
2702
  msgid "User login"
2703
  msgstr "Имя пользователя"
2704
 
2705
- #: dashboard.php:3549
2706
  msgid "IP address"
2707
  msgstr "IP адрес"
2708
 
2709
- #: dashboard.php:1107 dashboard.php:4039
2710
  msgid "Export"
2711
  msgstr "Экспорт"
2712
 
2713
- #: dashboard.php:839 dashboard.php:3555
2714
  msgid "User ID"
2715
  msgstr "ID пользователя"
2716
 
@@ -2718,7 +2860,7 @@ msgstr "ID пользователя"
2718
  msgid "Cerber Dashboard"
2719
  msgstr "Консоль Cerber"
2720
 
2721
- #: dashboard.php:1159
2722
  msgid "Filter"
2723
  msgstr "Фильтр"
2724
 
@@ -2726,111 +2868,111 @@ msgstr "Фильтр"
2726
  msgid "Cerber tools"
2727
  msgstr "Инструменты Cerber"
2728
 
2729
- #: cerber-load.php:4170 cerber-load.php:4171
2730
  msgid "A new activity has been recorded"
2731
  msgstr "Отмечена новая активность"
2732
 
2733
- #: settings.php:311
2734
  msgid "if empty, the default format %s will be used"
2735
  msgstr "Если пусто, будет использован формат по умолчанию %s"
2736
 
2737
- #: cerber-load.php:4836 cerber-users.php:969
2738
  msgid "User"
2739
  msgstr "Пользователь"
2740
 
2741
- #: cerber-load.php:4844
2742
  msgid "Search string"
2743
  msgstr "Строка поиска"
2744
 
2745
- #: settings.php:302
2746
  msgid "Preferences"
2747
  msgstr "Настройки"
2748
 
2749
- #: settings.php:310
2750
  msgid "Date format"
2751
  msgstr "Формат даты"
2752
 
2753
- #: dashboard.php:54 dashboard.php:1778 dashboard.php:2681 dashboard.php:4556
2754
  msgid "Dashboard"
2755
  msgstr "Консоль"
2756
 
2757
- #: settings.php:1102
2758
  msgid "Enable reCAPTCHA for WooCommerce login form"
2759
  msgstr "Включить reCAPTCHA для формы входа WooCommerce"
2760
 
2761
- #: settings.php:1097
2762
  msgid "Enable reCAPTCHA for WordPress login form"
2763
  msgstr "Включить reCAPTCHA для формы входа WordPress"
2764
 
2765
- #: settings.php:1092
2766
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
2767
  msgstr "Включить reCAPTCHA для формы восстановления пароля WooCommerce"
2768
 
2769
- #: settings.php:1087
2770
  msgid "Enable reCAPTCHA for WordPress lost password form"
2771
  msgstr "Включить reCAPTCHA для формы восстановления пароля WordPress"
2772
 
2773
- #: settings.php:1082
2774
  msgid "Enable reCAPTCHA for WooCommerce registration form"
2775
  msgstr "Включить reCAPTCHA для формы регистрации WooCommerce"
2776
 
2777
- #: settings.php:1077
2778
  msgid "Enable reCAPTCHA for WordPress registration form"
2779
  msgstr "Включить reCAPTCHA для формы регистрации WordPress"
2780
 
2781
- #: settings.php:1003 settings.php:1076
2782
  msgid "Registration form"
2783
  msgstr "Форма регистрации"
2784
 
2785
- #: settings.php:287
2786
  msgid "Cerber Lab protocol"
2787
  msgstr "протокол Cerber Lab"
2788
 
2789
- #: settings.php:282
2790
  msgid "Send malicious IP addresses to the Cerber Lab"
2791
  msgstr "Посылать вредоносные IP адреса в Cerber Lab"
2792
 
2793
- #: settings.php:281
2794
  msgid "Cerber Lab connection"
2795
  msgstr "Подключение Cerber Lab"
2796
 
2797
- #: dashboard.php:2344
2798
  msgid "Recently locked out IP addresses"
2799
  msgstr "Недавно заблокированые IP адреса"
2800
 
2801
- #: dashboard.php:931 dashboard.php:2341
2802
  msgid "View all"
2803
  msgstr "Просмотреть все"
2804
 
2805
- #: dashboard.php:1441
2806
  msgid "Add network to the Black List"
2807
  msgstr "Добавить сеть в черный список"
2808
 
2809
- #: dashboard.php:1427
2810
  msgid "Network:"
2811
  msgstr "Сеть:"
2812
 
2813
- #: dashboard.php:4871
2814
  msgid "Incorrect IP address or IP range"
2815
  msgstr "Неверный IP адрес или диапазон адресов"
2816
 
2817
- #: common.php:1323
2818
  msgid "Request to the Google reCAPTCHA service failed"
2819
  msgstr "Запрос к сервису Google reCAPTCHA не удался"
2820
 
2821
- #: cerber-lab.php:827
2822
  msgid "NO, maybe later"
2823
  msgstr "НЕТ, возможно позже"
2824
 
2825
- #: cerber-lab.php:826
2826
  msgid "OK, nail them all"
2827
  msgstr "ОК, прибьем их всех"
2828
 
2829
- #: cerber-lab.php:825
2830
  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."
2831
  msgstr "Разрешить WP Cerber посылать заблокированные IP адреса в Cerber Lab. Это помогает команде плагина разрабатывать новые алгоритмы для WP Cerber, которые будут защищать WordPress против новых угроз и ботнетов появляюшихся каждый день. Вы всегда можете отключить отсылку в настройках плагина, в любой момент."
2832
 
2833
- #: cerber-lab.php:824
2834
  msgid "Want to make WP Cerber even more powerful?"
2835
  msgstr "Хотите сделать WP Cerber еще мощнее ?"
2836
 
@@ -2839,546 +2981,530 @@ msgstr "Хотите сделать WP Cerber еще мощнее ?"
2839
  msgid "https://wpcerber.com"
2840
  msgstr "https://wpcerber.com"
2841
 
2842
- #: cerber-load.php:5135
2843
  msgid "Import settings"
2844
  msgstr "Импорт настроек"
2845
 
2846
- #: cerber-load.php:5119
2847
  msgid "Your IP address is added to the"
2848
  msgstr "Ваш IP адрес добавлен к"
2849
 
2850
- #: cerber-load.php:5096
2851
  msgid "Can't activate WP Cerber due to a database error."
2852
  msgstr "Невозможно активировать плагин WP Cerber из-за ошибки в базе данных."
2853
 
2854
- #: cerber-load.php:5087
2855
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
2856
  msgstr "WP Cerber требует WordPress версии %s или выше. У вас версия"
2857
 
2858
- #: cerber-load.php:5083
2859
  msgid "The WP Cerber requires PHP %s or higher. You are running"
2860
  msgstr "WP Cerber требует PHP версии %s или выше. У вас версия"
2861
 
2862
- #: cerber-load.php:4219
2863
  msgid "This message was sent by"
2864
  msgstr "Это сообщение было отправлено"
2865
 
2866
- #: cerber-load.php:4166
2867
  msgid "New Custom login URL"
2868
  msgstr "Новый URL для входа на сайт"
2869
 
2870
- #: cerber-load.php:4159 cerber-load.php:5118
2871
  msgid "WP Cerber is now active and has started protecting your site"
2872
  msgstr "WP Cerber активен и начал защищать ваш сайт"
2873
 
2874
- #: cerber-load.php:4158
2875
  msgid "The WP Cerber security plugin is now active"
2876
  msgstr "WP Cerber плагин безопасности активен"
2877
 
2878
- #: cerber-load.php:4154
2879
  msgid "From country"
2880
  msgstr "Из страны"
2881
 
2882
- #: cerber-load.php:4151
2883
  msgid "From IP address"
2884
  msgstr "С IP адреса"
2885
 
2886
- #: cerber-load.php:4150
2887
  msgid "By user"
2888
  msgstr "По пользователю"
2889
 
2890
- #: cerber-load.php:4144
2891
  msgid "Not logged in"
2892
  msgstr "Нет авторизации"
2893
 
2894
- #: cerber-load.php:4141 cerber-load.php:4142
2895
  msgid "The WP Cerber security plugin has been deactivated"
2896
  msgstr "WP Cerber плагин деактивирован"
2897
 
2898
- #: cerber-load.php:4138 cerber-load.php:4149 nexus/cerber-slave-list.php:44
2899
  msgid "Website"
2900
  msgstr "Сайт"
2901
 
2902
- #: cerber-load.php:4135
2903
  msgid "Hi!"
2904
  msgstr "Привет!"
2905
 
2906
- #: cerber-load.php:4134 cerber-load.php:4136
2907
  msgid "A new version of WP Cerber is available to install"
2908
  msgstr "Доступна новая версия WP Cerber!"
2909
 
2910
- #: cerber-load.php:4131
2911
  msgid "View lockouts in dashboard"
2912
  msgstr "Просмотреть список заблокированных IP"
2913
 
2914
- #: cerber-load.php:4130
2915
  msgid "View activity for this IP"
2916
  msgstr "Посмотреть активность для этого IP"
2917
 
2918
- #: cerber-load.php:4128
2919
  msgid "Last lockout was added: %s for IP %s"
2920
  msgstr "Последняя блокировка была добавлена %s для IP %s"
2921
 
2922
- #: cerber-load.php:4127
2923
  msgid "Number of active lockouts"
2924
  msgstr "Число активных блокировок на данный момент"
2925
 
2926
- #: cerber-load.php:4125
2927
  msgid "Number of lockouts is increasing"
2928
  msgstr "Число блокировок увеличилось"
2929
 
2930
- #: cerber-load.php:4122
2931
  msgid "unspecified"
2932
  msgstr "неуказано"
2933
 
2934
- #: cerber-load.php:4098 cerber-load.php:4864
2935
  msgid "View activity in dashboard"
2936
  msgstr "Просмотреть журнал активности"
2937
 
2938
- #: cerber-load.php:4097
2939
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
2940
  msgstr "Последняя неудачная попытка была в %s с IP адреса %s с логином %s."
2941
 
2942
- #: cerber-load.php:4096
2943
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
2944
  msgstr "Режим Цитадель активирован после %d неудачных попыток за %d минут."
2945
 
2946
- #: cerber-load.php:4094
2947
  msgid "Citadel mode is activated"
2948
  msgstr "Активирован режим Цитадель"
2949
 
2950
- #: cerber-load.php:4070
2951
  msgid "WP Cerber notify"
2952
  msgstr "Уведомление WP Cerber"
2953
 
2954
- #: common.php:1413
2955
  msgid "Limit on login attempts is reached"
2956
  msgstr "Количество попыток исчерпано"
2957
 
2958
- #: common.php:1414
2959
  msgid "Attempt to access"
2960
  msgstr "Попытка доступа к"
2961
 
2962
- #: cerber-load.php:1567
2963
  msgid "Username is not allowed. Please choose another one."
2964
  msgstr "Имя пользователя недопустимо. Выберите другое."
2965
 
2966
- #: cerber-load.php:1126
2967
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
2968
  msgstr "<strong>ОШИБКА</strong>: Пароль введенный для пользователя %s is некорректен."
2969
 
2970
- #: cerber-load.php:678
2971
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
2972
  msgstr "Антибот проверка неудачна. Пожалуйста тыкните в квадратную отметку блока reCAPTCHA ниже"
2973
 
2974
- #: admin/cerber-settings.php:624 admin/cerber-settings.php:644
2975
- #: admin/cerber-settings.php:725 cerber-load.php:649 cerber-load.php:661
2976
- #: cerber-load.php:668 cerber-load.php:1017 cerber-load.php:1548
2977
- #: cerber-load.php:1554 cerber-load.php:1559 cerber-load.php:1566
2978
- #: cerber-load.php:1573 cerber-load.php:1579 cerber-load.php:1586
2979
- #: cerber-load.php:1737 cerber-load.php:1874 nexus/cerber-nexus-slave.php:219
2980
- #: nexus/cerber-nexus-slave.php:230 cerber-scanner.php:5870 common.php:343
2981
- #: common.php:421 common.php:426 common.php:432 common.php:437
 
2982
  msgid "ERROR:"
2983
  msgstr "ОШИБКА:"
2984
 
2985
- #: cerber-load.php:366
2986
  msgid "You have only one attempt remaining."
2987
  msgid_plural "You have %d attempts remaining."
2988
  msgstr[0] "У вас есть только одна попытка для входа"
2989
  msgstr[1] "У вас осталось %d попытки для входа."
2990
  msgstr[2] "У вас осталось %d попыток для входа."
2991
 
2992
- #: cerber-load.php:341
2993
  msgid "You are not allowed to log in. Ask your administrator for assistance."
2994
  msgstr "Вход на сайт невозможен. Обратитесь к администратору сайта."
2995
 
2996
- #: dashboard.php:427 dashboard.php:3662 whois.php:222 whois.php:253
2997
- #: nexus/cerber-slave-list.php:330 common.php:1438 common.php:1822
2998
- #: common.php:1887
2999
  msgid "Unknown"
3000
  msgstr "Неизвестен"
3001
 
3002
- #: admin/cerber-settings.php:749 admin/cerber-settings.php:761
3003
- #: admin/cerber-settings.php:918
3004
  msgid "<strong>ERROR</strong>: please enter a valid email address."
3005
  msgstr "<strong>ОШИБКА</strong>: Введите действительный адрес эл.почты."
3006
 
3007
- #: admin/cerber-settings.php:652 admin/cerber-settings.php:653
3008
  msgid "Attention! You have changed the login URL! The new login URL is"
3009
  msgstr "Внимание! Вы изменили URL страницы авторизации. Новый адрес"
3010
 
3011
- #: admin/cerber-settings.php:376
3012
  msgid "Enable after %s failed login attempts in the last %s minutes"
3013
  msgstr "Активировать после %s неудачных авторизаций за последние %s минут"
3014
 
3015
- #: admin/cerber-settings.php:367
3016
  msgid "Notify admin if the number of active lockouts above"
3017
  msgstr "Уведомить администратора, если число заблокированных IP более"
3018
 
3019
- #: admin/cerber-settings.php:359
3020
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
3021
  msgstr "Увеличить длительность блокировки до %s часов после %s блокировок в течение последних %s часов"
3022
 
3023
- #: dashboard.php:4825
3024
  msgid "Help"
3025
  msgstr "Помощь"
3026
 
3027
- #: dashboard.php:82 dashboard.php:4718
3028
  msgid "Tools"
3029
  msgstr "Инструменты"
3030
 
3031
- #: dashboard.php:4562
3032
  msgid "Hardening"
3033
  msgstr "Панцирь"
3034
 
3035
- #: dashboard.php:4560
3036
  msgid "Main Settings"
3037
  msgstr "Основные настройки"
3038
 
3039
- #: admin/cerber-settings.php:94 admin/cerber-settings.php:271
3040
- #: cerber-lab.php:828
3041
  msgid "Know more"
3042
  msgstr "Узнать больше"
3043
 
3044
- #: settings.php:1059
3045
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
3046
  msgstr "Перед использованием reCAPTCHA вам нужно получить ключ сайта и секретный ключ на сайте Google"
3047
 
3048
- #: settings.php:116
3049
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
3050
  msgstr "Для использования этой настройки необходимо активировать Постоянные ссылки в настройках сайта."
3051
 
3052
- #: settings.php:163
3053
  msgid "Make your protection smarter!"
3054
  msgstr "Сделайте защиту от злоумышленников еще умнее"
3055
 
3056
- #: settings.php:1096
3057
  msgid "Login form"
3058
  msgstr "Форма входа"
3059
 
3060
- #: settings.php:1086
3061
  msgid "Lost password form"
3062
  msgstr "Форма восстановления пароля"
3063
 
3064
- #: settings.php:1067
3065
  msgid "Secret key"
3066
  msgstr "Секретный ключ"
3067
 
3068
- #: settings.php:1063
3069
  msgid "Site key"
3070
  msgstr "Ключ сайта"
3071
 
3072
- #: settings.php:1058
3073
  msgid "reCAPTCHA settings"
3074
  msgstr "Настройки reCAPTCHA"
3075
 
3076
- #: settings.php:558
3077
- msgid "in minutes (leave empty to use default WP value)"
3078
- msgstr "В минутах (оставьте пустым для значения WP по умолчанию)"
3079
-
3080
- #: settings.php:550
3081
  msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
3082
  msgstr "Имена пользователей из этого списка не разрешены для входа или регистрации. Любой IP адрес пытающийся использовать эти имена будет автоматически заблокирован. Испольуйте запятую как разделитель."
3083
 
3084
- #: settings.php:549
3085
  msgid "Prohibited usernames"
3086
  msgstr "Запрещеные имена пользователей"
3087
 
3088
- #: settings.php:369
3089
  msgid "Disable REST API"
3090
  msgstr "Отключить REST API"
3091
 
3092
- #: settings.php:353
3093
  msgid "Block access to the RSS, Atom and RDF feeds"
3094
  msgstr "Закрыть доступ к RSS, Atom и RDF лентам"
3095
 
3096
- #: settings.php:352
3097
  msgid "Disable feeds"
3098
  msgstr "Отключить ленты"
3099
 
3100
- #: settings.php:348
3101
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
3102
  msgstr "Закрыть доступ к функциям XML-RPC, включая уведомления и обратные ссылки"
3103
 
3104
- #: settings.php:347
3105
  msgid "Disable XML-RPC"
3106
  msgstr "Отключить XML-RPC"
3107
 
3108
- #: settings.php:329
3109
  msgid "Block access to user pages like /?author=n"
3110
  msgstr "Закрыть доступ к страницам авторов наподобие /?author=n"
3111
 
3112
- #: settings.php:328 settings.php:364
3113
  msgid "Stop user enumeration"
3114
  msgstr "Заблокировать сбор имен"
3115
 
3116
- #: settings.php:324
3117
  msgid "Hardening WordPress"
3118
  msgstr "Усиление защиты WordPress"
3119
 
3120
- #: settings.php:296
3121
  msgid "Write failed login attempts to the file"
3122
  msgstr "Записывать попытки входа в файл"
3123
 
3124
- #: settings.php:295
3125
  msgid "Use file"
3126
  msgstr "Использовать файл"
3127
 
3128
- #: settings.php:306
3129
  msgid "Retrieve extra WHOIS information for IP"
3130
  msgstr "Получить дополнительную информацию об IP используя WHOIS"
3131
 
3132
- #: settings.php:305
3133
  msgid "Drill down IP"
3134
  msgstr "Изучать IP"
3135
 
3136
- #: settings.php:270 settings.php:276 settings.php:789 settings.php:794
3137
- #: settings.php:859 settings.php:1051
3138
  msgid "days"
3139
  msgstr "дней"
3140
 
3141
- #: settings.php:637
3142
  msgid "notifications are allowed per hour (0 means unlimited)"
3143
  msgstr "разрешенное число писем с уведомлениями в час (0 - без ограничений)"
3144
 
3145
- #: settings.php:636
3146
  msgid "Notification limit"
3147
  msgstr "Ограничение уведомлений"
3148
 
3149
- #: settings.php:628 settings.php:676 settings.php:915
3150
  msgid "Email Address"
3151
  msgstr "Адрес email"
3152
 
3153
- #: settings.php:260 admin/cerber-settings.php:372
3154
  msgid "Click to send test"
3155
  msgstr "Нажмите, чтобы протестировать отправку"
3156
 
3157
- #: settings.php:256
3158
  msgid "Send notification to admin email"
3159
  msgstr "Отправить уведомление на адрес email администратора сайта"
3160
 
3161
- #: settings.php:248 cerber-scanner.php:3958
3162
  msgid "Duration"
3163
  msgstr "Длительность"
3164
 
3165
- #: settings.php:243
3166
  msgid "Threshold"
3167
  msgstr "Порог"
3168
 
3169
- #: settings.php:210
3170
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
3171
  msgstr "Заблокировать доступ к wp-login.php и возвращать HTTP 404 Страница не найдена"
3172
 
3173
- #: settings.php:209
3174
  msgid "Disable wp-login.php"
3175
  msgstr "Доступ к wp-login.php"
3176
 
3177
- #: settings.php:202
3178
  msgid "must not overlap with the existing pages or posts slug"
3179
  msgstr "не должно совпадать с URL существующих страниц или записей"
3180
 
3181
- #: settings.php:201
3182
  msgid "Custom login URL"
3183
  msgstr "Адрес страницы авторизации"
3184
 
3185
- #: settings.php:197
3186
  msgid "Custom login page"
3187
  msgstr "Смена URL страницы авторизации"
3188
 
3189
- #: settings.php:182
3190
  msgid "Immediately block IP after any request to wp-login.php"
3191
  msgstr "Блокировать IP при любом запросе wp-login.php"
3192
 
3193
- #: settings.php:181
3194
  msgid "Request wp-login.php"
3195
  msgstr "Запрос wp-login.php"
3196
 
3197
- #: settings.php:177
3198
  msgid "Disable automatic redirection to the login page when /wp-admin/ is requested by an unauthorized request"
3199
  msgstr "Отключить автоматическую переадресацию при запросе /wp-admin/ неавторизованным пользователем"
3200
 
3201
- #: settings.php:172
3202
  msgid "Immediately block IP when attempting to log in with a non-existing username"
3203
  msgstr "Блокировать IP при попытке авторизации с логином несуществующего пользователя"
3204
 
3205
- #: settings.php:171
3206
  msgid "Non-existing users"
3207
  msgstr "Несуществующие пользователи"
3208
 
3209
- #: settings.php:167
3210
  msgid "Always block entire subnet Class C of intruders IP"
3211
  msgstr "Всегда блокировать подсеть класса С вместо IP адреса"
3212
 
3213
- #: settings.php:166
3214
  msgid "Block subnet"
3215
  msgstr "Блокировка подсети"
3216
 
3217
- #: settings.php:162
3218
  msgid "Proactive security rules"
3219
  msgstr "Проактивные правила безопасности"
3220
 
3221
- #: settings.php:220 dashboard.php:2144
3222
  msgid "My site is behind a reverse proxy"
3223
  msgstr "Мой сайт подключен к сети через прокси-сервер"
3224
 
3225
- #: settings.php:219
3226
  msgid "Site connection"
3227
  msgstr "Подключение к сети"
3228
 
3229
- #: settings.php:254 dashboard.php:4564
3230
  msgid "Notifications"
3231
  msgstr "Уведомления"
3232
 
3233
- #: settings.php:151
3234
  msgid "Aggressive lockout"
3235
  msgstr "Ужесточение"
3236
 
3237
- #: settings.php:147 settings.php:249
3238
  msgid "minutes"
3239
  msgstr "минут"
3240
 
3241
- #: settings.php:146
3242
  msgid "Lockout duration"
3243
  msgstr "Длительность блокировки"
3244
 
3245
- #: settings.php:139
3246
  msgid "Limit login attempts"
3247
  msgstr "Ограничение числа попыток авторизации"
3248
 
3249
- #: dashboard.php:1422
3250
  msgid "Abuse email:"
3251
  msgstr "Адрес email для жалоб:"
3252
 
3253
- #: settings.php:642
3254
  msgid "New version is available"
3255
  msgstr "Доступна новая версия"
3256
 
3257
- #: dashboard.php:2485 dashboard.php:2872
3258
  msgid "View Activity"
3259
  msgstr "Что происходит?"
3260
 
3261
- #: dashboard.php:2484
3262
  msgid "Deactivate"
3263
  msgstr "Деактивировать"
3264
 
3265
- #: dashboard.php:2483
3266
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
3267
  msgstr "Внимание! Режим Цитадель активен. Авторизация на сайте заблокирована."
3268
 
3269
- #: dashboard.php:2379
3270
- msgid "doesn't affect Custom login URL and Access Lists"
3271
- msgstr "не затронет настройки URL страницы авторизации и списки доступа"
3272
-
3273
- #: dashboard.php:2373 dashboard.php:5025 cerber-scanner.php:5739
3274
- #: cerber-scanner.php:5900
3275
  msgid "Are you sure?"
3276
  msgstr "Вы уверены?"
3277
 
3278
- #: dashboard.php:2371
3279
  msgid "Load default settings"
3280
  msgstr "Загрузить настройки"
3281
 
3282
- #: dashboard.php:2369
3283
- msgid "You can easily load default recommended settings using button below"
3284
- msgstr "Вы можете загрузить рекомендованные настройки с помощью всего одной кнопки"
3285
-
3286
- #: dashboard.php:2368
3287
- msgid "Confused about some settings?"
3288
- msgstr "Сомневаетесь какие настройки оптимальны?"
3289
-
3290
- #: dashboard.php:4559
3291
  msgid "Lockouts"
3292
  msgstr "Блокировки"
3293
 
3294
- #: settings.php:233 dashboard.php:1738
3295
  msgid "Citadel mode"
3296
  msgstr "Режим Цитадель"
3297
 
3298
- #: dashboard.php:1736 dashboard.php:1737 dashboard.php:2663
3299
  msgid "entry"
3300
  msgid_plural "entries"
3301
  msgstr[0] "элемент"
3302
  msgstr[1] "элемента"
3303
  msgstr[2] "элементов"
3304
 
3305
- #: dashboard.php:1732
3306
  msgid "Last lockout"
3307
  msgstr "Последняя блокировка"
3308
 
3309
- #: dashboard.php:1731
3310
  msgid "Lockouts at the moment"
3311
  msgstr "Сейчас заблокировано"
3312
 
3313
- #: dashboard.php:1729
3314
  msgid "lockouts"
3315
  msgstr "блокировок"
3316
 
3317
- #: dashboard.php:1728 dashboard.php:1729
3318
  msgid "view all"
3319
  msgstr "просмотреть все"
3320
 
3321
- #: dashboard.php:1728 dashboard.php:1729
3322
  msgid "in 24 hours"
3323
  msgstr "за 24 часа"
3324
 
3325
- #: dashboard.php:1728
3326
  msgid "failed attempts"
3327
  msgstr "ошибок авторизации"
3328
 
3329
- #: dashboard.php:1722 dashboard.php:1740
3330
  msgid "disabled"
3331
  msgstr "отключен"
3332
 
3333
- #: dashboard.php:1719
3334
  msgid "not active"
3335
  msgstr "неактивен"
3336
 
3337
- #: dashboard.php:1715
3338
  msgid "deactivate"
3339
  msgstr "деактивировать"
3340
 
3341
- #: dashboard.php:1715 dashboard.php:1745
3342
  msgid "active"
3343
  msgstr "активен"
3344
 
3345
- #: dashboard.php:1676
3346
  msgid "Cerber Quick View"
3347
  msgstr "Сводка от Cerber"
3348
 
3349
- #: cerber-tools.php:154
3350
  msgid "Error while parsing file"
3351
  msgstr "Возникла ошибка при обработке файла"
3352
 
3353
- #: cerber-tools.php:147
3354
  msgid "Settings has imported successfully from"
3355
  msgstr "Все настройки успешно загружены"
3356
 
3357
- #: cerber-tools.php:100
3358
  msgid "No file was uploaded or file is corrupted"
3359
  msgstr "Файл не был загружен или имеет неверный формат"
3360
 
3361
- #: cerber-tools.php:48 cerber-scanner.php:4109
3362
  msgid "Upload file"
3363
  msgstr "Загрузить файл"
3364
 
3365
- #: cerber-tools.php:46
3366
  msgid "What do you want to import?"
3367
  msgstr "Что вы хотите импортировать?"
3368
 
3369
- #: cerber-tools.php:43 cerber-scanner.php:4106
3370
  msgid "Maximum upload file size: %s."
3371
  msgstr "Максимальный размер загружаемого файла: %s."
3372
 
3373
- #: cerber-tools.php:43
3374
  msgid "Select file to import."
3375
  msgstr "Выберите файл для загрузки."
3376
 
3377
- #: cerber-tools.php:42
3378
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
3379
  msgstr "Когда вы нажмете на кнопку, все настройки из файла будут загружены на сайт"
3380
 
3381
- #: cerber-tools.php:41
3382
  msgid "Import settings from the file"
3383
  msgstr "Импорт настроек из файла"
3384
 
@@ -3386,12 +3512,12 @@ msgstr "Импорт настроек из файла"
3386
  msgid "Download file"
3387
  msgstr "Скачать файл"
3388
 
3389
- #: cerber-tools.php:38 cerber-tools.php:47 dashboard.php:4561
3390
  msgid "Access Lists"
3391
  msgstr "Списки доступа"
3392
 
3393
- #: cerber-tools.php:37 cerber-tools.php:46 dashboard.php:4625
3394
- #: dashboard.php:4686 nexus/cerber-nexus.php:93
3395
  msgid "Settings"
3396
  msgstr "Настройки"
3397
 
@@ -3407,179 +3533,179 @@ msgstr "Когда вы нажмете на кнопку, то получите
3407
  msgid "Export settings to the file"
3408
  msgstr "Экспорт настроек в файл"
3409
 
3410
- #: dashboard.php:1619 dashboard.php:1710 dashboard.php:1759
3411
- #: nexus/cerber-slave-list.php:344 common.php:1575
3412
  msgid "Never"
3413
  msgstr "Никогда"
3414
 
3415
- #: common.php:1294
3416
  msgid "User created"
3417
  msgstr "Пользователь создан"
3418
 
3419
- #: common.php:1295
3420
  msgid "User registered"
3421
  msgstr "Пользователь зарегистрирован"
3422
 
3423
- #: common.php:1296
3424
  msgid "Logged in"
3425
  msgstr "Вход"
3426
 
3427
- #: common.php:1297
3428
  msgid "Logged out"
3429
  msgstr "Выход"
3430
 
3431
- #: common.php:1298
3432
  msgid "Login failed"
3433
  msgstr "Ошибка авторизации"
3434
 
3435
- #: dashboard.php:950 common.php:1301
3436
  msgid "IP blocked"
3437
  msgstr "IP заблокирован"
3438
 
3439
- #: common.php:1305
3440
  msgid "Citadel activated!"
3441
  msgstr "Режим Цитадель активирован!"
3442
 
3443
- #: dashboard.php:1349 dashboard.php:1385 dashboard.php:3762 common.php:1359
3444
  msgid "Locked out"
3445
  msgstr "Заблокировано"
3446
 
3447
- #: common.php:1318
3448
  msgid "Password changed"
3449
  msgstr "Пароль изменен"
3450
 
3451
- #: common.php:1361
3452
  msgid "IP blacklisted"
3453
  msgstr "IP в черном списке"
3454
 
3455
- #: common.php:1321
3456
  msgid "reCAPTCHA verification failed"
3457
  msgstr "проверка reCAPTCHA неудачна"
3458
 
3459
- #: common.php:1322
3460
  msgid "reCAPTCHA settings are incorrect"
3461
  msgstr "настройки reCAPTCHA неверны"
3462
 
3463
- #: common.php:1325 common.php:1415
3464
  msgid "Attempt to access prohibited URL"
3465
  msgstr "Попытка доступа к запрещенному URL"
3466
 
3467
- #: common.php:1326 common.php:1416
3468
  msgid "Attempt to log in with non-existing username"
3469
  msgstr "Попытка войти с несуществующим именем пользователя"
3470
 
3471
- #: common.php:1327 common.php:1417
3472
  msgid "Attempt to log in with prohibited username"
3473
  msgstr "Попытка входа с запрещенным именем"
3474
 
3475
- #: dashboard.php:186 dashboard.php:302
3476
  msgid "Remove"
3477
  msgstr "Удалить"
3478
 
3479
- #: cerber-load.php:4832 dashboard.php:191
3480
  msgid "IP"
3481
  msgstr "IP"
3482
 
3483
- #: dashboard.php:192 dashboard.php:1080
3484
  msgid "Hostname"
3485
  msgstr "Имя узла"
3486
 
3487
- #: dashboard.php:194 cerber-users.php:972
3488
  msgid "Expires"
3489
  msgstr "Истекает"
3490
 
3491
- #: cerber-load.php:4129 dashboard.php:195
3492
  msgid "Reason"
3493
  msgstr "Причина"
3494
 
3495
- #: dashboard.php:196 cerber-users.php:975 cerber-scanner.php:5768
3496
- #: cerber-scanner.php:5916
3497
  msgid "Action"
3498
  msgstr "Действие"
3499
 
3500
- #: dashboard.php:212
3501
  msgid "Showing last %d records from %d"
3502
  msgstr "Отображены последние %d строк из %d"
3503
 
3504
- #: dashboard.php:214
3505
  msgid "Hint"
3506
  msgstr "Подсказка"
3507
 
3508
- #: dashboard.php:214
3509
  msgid "To view activity, click on the IP"
3510
  msgstr "Чтобы увидеть активность, нажмите на адрес IP"
3511
 
3512
- #: dashboard.php:218
3513
  msgid "No lockouts at the moment. The sky is clear."
3514
  msgstr "Блокировок нет. Все в порядке."
3515
 
3516
- #: cerber-load.php:5119 dashboard.php:250 dashboard.php:1341 dashboard.php:1378
3517
- #: dashboard.php:1736 dashboard.php:3754
3518
  msgid "White IP Access List"
3519
  msgstr "Белый список доступа по IP"
3520
 
3521
- #: dashboard.php:253 dashboard.php:1344 dashboard.php:1381 dashboard.php:1737
3522
- #: dashboard.php:3757
3523
  msgid "Black IP Access List"
3524
  msgstr "Черный список доступа по IP"
3525
 
3526
- #: dashboard.php:260
3527
  msgid "Your IP"
3528
  msgstr "Ваш адрес IP"
3529
 
3530
- #: dashboard.php:298 dashboard.php:1392 dashboard.php:1427 dashboard.php:1550
3531
  msgid "Check for activities"
3532
  msgstr "Проверить активность"
3533
 
3534
- #: dashboard.php:308
3535
  msgid "List is empty"
3536
  msgstr "Список пуст"
3537
 
3538
- #: dashboard.php:500
3539
  msgid "unknown"
3540
  msgstr "неизвестно"
3541
 
3542
- #: dashboard.php:563
3543
  msgid "Lockout for %s was removed"
3544
  msgstr "Удалена блокировка для %s"
3545
 
3546
- #: dashboard.php:2500
3547
  msgid "Settings saved"
3548
  msgstr "Настройки сохранены."
3549
 
3550
- #: dashboard.php:834 dashboard.php:1082 dashboard.php:3550 dashboard.php:3974
3551
  msgid "Date"
3552
  msgstr "Дата"
3553
 
3554
- #: settings.php:266 cerber-load.php:4823 dashboard.php:1779 dashboard.php:2327
3555
- #: dashboard.php:4557 cerber-users.php:1139
3556
  msgid "Activity"
3557
  msgstr "Активность"
3558
 
3559
- #: dashboard.php:1112
3560
  msgid "No activity has been logged."
3561
  msgstr "Ни одного события не зафиксировано."
3562
 
3563
- #: cerber-load.php:4840
3564
  msgid "Username used"
3565
  msgstr "Использован логин"
3566
 
3567
- #: dashboard.php:837 dashboard.php:1084 dashboard.php:3979
3568
  msgid "Local User"
3569
  msgstr "Пользователь"
3570
 
3571
- #: dashboard.php:1447
3572
  msgid "Add IP to the Black List"
3573
  msgstr "Добавить IP в черный список"
3574
 
3575
- #: dashboard.php:1585
3576
  msgid "Comments"
3577
  msgstr "Комментарии"
3578
 
3579
- #: dashboard.php:1586
3580
  msgid "Last login"
3581
  msgstr "Последний вход"
3582
 
3583
- #: settings.php:565
3584
  msgid "by date of registration"
3585
  msgstr "по дате регистрации"
1
+ # Translation of Plugins - Cerber Security, Anti-spam &amp; Malware Scan - Stable (latest release) in Russian
2
+ # This file is distributed under the same license as the Plugins - Cerber Security, Anti-spam &amp; Malware Scan - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2020-06-10 23:21:54+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=3; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);\n"
10
+ "X-Generator: GlotPress/3.0.0-alpha\n"
11
  "Language: ru\n"
12
+ "Project-Id-Version: Plugins - Cerber Security, Anti-spam &amp; Malware Scan - Stable (latest release)\n"
13
 
14
+ #: settings.php:338
15
+ msgid "Do not add my IP address to the White IP Access List upon plugin activation"
16
+ msgstr "Не добавлять мой IP адрес в белый список при активации плагина"
17
+
18
+ #: settings.php:337
19
+ msgid "My IP address"
20
+ msgstr "Мой адрес IP"
21
+
22
+ #: settings.php:332
23
+ msgid "Use English"
24
+ msgstr "Использовать английский язык (Use English)"
25
+
26
+ #: settings.php:328
27
+ msgid "Use ISO 8601 date format for CSV export files"
28
+ msgstr "Использовать ISO 8601 формат даты для экспорта в CSV"
29
+
30
+ #: settings.php:327
31
+ msgid "Date format for CSV export"
32
+ msgstr "Формат даты для экспорта в CSV"
33
+
34
+ #: admin/cerber-admin.php:1317
35
+ msgid "File Name"
36
+ msgstr "Имя файла"
37
+
38
+ #: admin/cerber-admin.php:1213
39
+ msgid "Top 10 largest files"
40
+ msgstr "10 самых больших файлов"
41
+
42
+ #: admin/cerber-admin.php:1197
43
+ msgid "Newest"
44
+ msgstr "Самые новые"
45
+
46
+ #: admin/cerber-admin.php:1196
47
+ msgid "Oldest"
48
+ msgstr "Самые старые"
49
+
50
+ #: admin/cerber-admin.php:1195
51
+ msgid "Average Size"
52
+ msgstr "Средний размер"
53
+
54
+ #: admin/cerber-admin.php:1194
55
+ msgid "Largest"
56
+ msgstr "Самые большие"
57
+
58
+ #: admin/cerber-admin.php:1193
59
+ msgid "Smallest"
60
+ msgstr "Самые маленькие"
61
+
62
+ #: admin/cerber-admin.php:1190
63
+ msgid "Extension"
64
+ msgstr "Расширение"
65
+
66
+ #: admin/cerber-admin.php:1187
67
+ msgid "File extensions statistics"
68
+ msgstr "Статистика по расширениям файлов"
69
+
70
+ #: admin/cerber-admin.php:1162
71
+ msgid "No extension"
72
+ msgstr "Без расширения"
73
+
74
+ #: admin/cerber-admin.php:1098 admin/cerber-admin.php:1192
75
+ msgid "Space Occupied"
76
+ msgstr "Занятое место"
77
+
78
+ #: admin/cerber-admin.php:1097 admin/cerber-admin.php:1191
79
+ msgid "Files"
80
+ msgstr "Файлы"
81
+
82
+ #: admin/cerber-admin.php:1096
83
+ msgid "Path"
84
+ msgstr "Путь"
85
+
86
+ #: admin/cerber-admin.php:1095
87
+ msgid "Folder"
88
+ msgstr "Папка"
89
+
90
+ #: admin/cerber-admin.php:1044
91
+ msgid "Brief summary"
92
+ msgstr "Краткое обобщение"
93
+
94
+ #: admin/cerber-admin.php:984
95
+ msgid "Back to list"
96
+ msgstr "Назад к списку"
97
+
98
+ #: admin/cerber-admin.php:983
99
+ msgid "Files without extension"
100
+ msgstr "Файлы без расширений"
101
+
102
+ #: admin/cerber-admin.php:909 admin/cerber-admin.php:1319
103
+ msgid "Modified"
104
+ msgstr "Изменено"
105
+
106
+ #: admin/cerber-admin.php:753
107
+ msgid "Quarantined"
108
+ msgstr "На карантине"
109
+
110
+ #: common.php:1420
111
+ msgid "IP whitelisted"
112
+ msgstr "IP в белом списке"
113
+
114
+ #: common.php:1412
115
+ msgid "Email address is prohibited"
116
+ msgstr "Адрес email запрещён"
117
+
118
+ #: common.php:1328
119
+ msgid "User deleted"
120
+ msgstr "Пользователь удален"
121
+
122
+ #: cerber-tools.php:54
123
+ msgid "To get the most out of WP Cerber, follow these steps:"
124
+ msgstr "Для достижения максимальной эффективности использования WP Cerber, сделайте следующее:"
125
+
126
+ #: cerber-tools.php:53
127
+ msgid "When you click the button below, the default WP Cerber settings will be loaded. The Custom login URL and Access Lists will not be changed."
128
+ msgstr "При нажатии на кнопку ниже будут загружены настройки WP Cerber по умолчанию. URL пользовательской страницы входа и списки доступа изменены не будут."
129
+
130
+ #: cerber-tools.php:52
131
+ msgid "Load the default plugin settings"
132
+ msgstr "Загрузить настройки плагина по умолчанию"
133
+
134
+ #: dashboard.php:4780
135
+ msgid "Diagnostic Log"
136
+ msgstr "Журнал диагностики"
137
+
138
+ #: dashboard.php:4778
139
+ msgid "Manage Settings"
140
+ msgstr "Управление настройками"
141
+
142
+ #: dashboard.php:4729
143
+ msgid "Analytics"
144
+ msgstr "Аналитика"
145
+
146
+ #: dashboard.php:4052
147
+ msgid "My requests"
148
+ msgstr "Мои запросы"
149
+
150
+ #: dashboard.php:983 dashboard.php:4053
151
+ msgid "My IP"
152
+ msgstr "Мой IP"
153
+
154
+ #: dashboard.php:1559
155
+ msgid "Active sessions"
156
+ msgstr "Активные сессии"
157
+
158
+ #: cerber-tools.php:72
159
+ msgid "Load entries"
160
+ msgstr "Загрузка записей"
161
+
162
+ #: settings.php:872
163
+ msgid "Change file permissions when necessary"
164
+ msgstr "Измените права на файлы при необходимости"
165
+
166
+ #: settings.php:583
167
+ msgid "minutes (leave empty to use the default WordPress value)"
168
+ msgstr "минут (оставьте пустым для использования значения WordPress по умолчанию)"
169
+
170
+ #: common.php:1464
171
  msgid "Multiple erroneous requests"
172
  msgstr "Множественные ошибочные запросы"
173
 
174
+ #: nexus/cerber-nexus-slave.php:436
175
  msgid "Settings updated"
176
  msgstr "Настройки обновлены"
177
 
178
+ #: dashboard.php:1155
179
  msgid "Search in URL"
180
  msgstr "Поиск URL"
181
 
182
+ #: dashboard.php:1154
183
  msgid "Request ID"
184
  msgstr "ID запроса"
185
 
186
+ #: admin/cerber-settings.php:358
187
  msgid "%s registrations are allowed within %s minutes from one IP address"
188
  msgstr "Допустимо %s регистраций в течении %s минут с одного IP-адреса"
189
 
190
+ #: admin/cerber-settings.php:352
191
  msgid "%s retries are allowed within %s minutes"
192
  msgstr "Допустимо %s попыток в течении %s минут"
193
 
194
+ #: dashboard.php:79 cerber-addons.php:289
195
  msgid "Add-ons"
196
  msgstr "Дополнения"
197
 
198
+ #: settings.php:1071
199
  msgid "How the plugin processes comments submitted through the standard comment form"
200
  msgstr "То, как плагин обрабатывает комментарии через стандартную форму комментариев"
201
 
202
+ #: settings.php:1047
203
  msgid "These settings enable you to fine-tune the behavior of anti-spam algorithms and avoid false positives"
204
  msgstr "Эти настройки позволяют тонко настроить поведение алгоритмов защиты от спама и избежать ложных срабатываний"
205
 
206
+ #: settings.php:1025
207
  msgid "Spam protection for comment, registration and contact forms on a website"
208
  msgstr "Антиспам защита для комментариев, форм регистрации и контактов на сайте"
209
 
210
+ #: settings.php:958
211
  msgid "These policies are automatically enforced at the end of every scheduled scan based on its results. All affected files are moved to the quarantine"
212
  msgstr "Эти правила автоматически применяются в конце каждой запланированной проверки, в зависимости от её результатов. Все затронутые файлы перемещаются в карантин"
213
 
214
+ #: settings.php:916
215
  msgid "Configure what issues to include in the email report and the condition for sending reports"
216
  msgstr "Настройте то, о чем хотите получать отчёт, а также условия для отправки отчёта"
217
 
218
+ #: settings.php:899
219
  msgid "The scanner automatically scans the website, removes malware and sends email reports with the results of a scan"
220
  msgstr "Сканер автоматически проверяет сайт, удаляет вредоносный код и посылает отчет по email с результатами сканирования"
221
 
222
+ #: settings.php:859 settings.php:868
223
  msgid "All files"
224
  msgstr "Все файлы"
225
 
226
+ #: settings.php:858 settings.php:867
227
  msgid "Executable files"
228
  msgstr "Исполняемые файлы"
229
 
230
+ #: settings.php:829
231
  msgid "The scanner monitors file changes, verifies the integrity of WordPress, plugins, and themes, and detects malware"
232
  msgstr "Сканер следит за изменениями файлов, проверяет целостность файлов WordPress, плагинов, тем. Определяет вредоносный код."
233
 
234
+ #: settings.php:762
235
  msgid "Enable optional traffic logging if you need to monitor suspicious and malicious activity or solve security issues"
236
  msgstr "Включите дополнительную запись трафика в журнал, если вам требуется отслеживать подозрительную или вредоносную активность или решить проблемы с безопасностью"
237
 
238
+ #: settings.php:761
239
  msgid "Traffic Logging"
240
  msgstr "Журналирование трафика"
241
 
242
+ #: settings.php:742
243
  msgid "Block IP addresses that send excessive requests for non-existing pages or scan website for security breaches"
244
  msgstr "Блокировка IP-адресов посылающих избыточные запросы на несуществующие страницы или проверяющих сайт на уязвимости в безопасности"
245
 
246
+ #: settings.php:713
247
  msgid "Traffic Inspector is a context-aware web application firewall (WAF) that protects your website by recognizing and denying malicious HTTP requests"
248
  msgstr "Инспектор трафика - фаерволл уровня веб-приложения, защищающий ваш сайт распознавая и блокируя вредоносные HTTP запросы"
249
 
250
+ #: settings.php:701 settings.php:947
251
  msgid "if empty, the email addresses from the notification settings will be used"
252
  msgstr "Если не задано, то будет использован email администратора из настроек уведомлений"
253
 
254
+ #: settings.php:688
255
  msgid "Weekly report is a summary of all activities and suspicious events occurred during the last seven days"
256
  msgstr "Еженедельный отчет представляет собой обобщение активности и подозрительных событий за последние 7 дней."
257
 
258
+ #: settings.php:673
259
  msgid "Get notified instantly with mobile and desktop notifications"
260
  msgstr "Получайте немедленные уведомления на мобильные и стационарные устройства"
261
 
262
+ #: settings.php:658
263
  msgid "if empty, the website administrator email %s will be used"
264
  msgstr "Если не задано, то будет использован email администратора %s"
265
 
266
+ #: settings.php:600
267
  msgid "These features help your organization to be in compliance with personal data protection laws"
268
  msgstr "Эти возможности позволяют вашему сайту соответствовать нормативам защиты персональных данных"
269
 
270
+ #: settings.php:385
271
  msgid "Restrict or completely block access to the WordPress REST API according to your needs"
272
  msgstr "Ограничение или полная блокировка WP REST-API"
273
 
274
+ #: settings.php:152
275
  msgid "Limit"
276
  msgstr "Предел"
277
 
278
+ #: settings.php:851
279
  msgid "Specify directories to exclude from scanning. One directory per line."
280
  msgstr "Задайте папки для исключения при сканировании. Одна папка на строку."
281
 
282
+ #: cerber-users.php:951
283
  msgid "WP Cerber Personal Data Eraser"
284
  msgstr "WP Cerber удаление персональных данных"
285
 
287
  msgid "Admin Note"
288
  msgstr "Заметка администратора"
289
 
290
+ #: settings.php:636
291
  msgid "Cookies"
292
  msgstr "Куки"
293
 
294
+ #: settings.php:635
295
  msgid "Form fields data"
296
  msgstr "Данные полей формы"
297
 
298
+ #: settings.php:634
299
  msgid "Request URL"
300
  msgstr "URL запроса"
301
 
302
+ #: settings.php:631
303
  msgid "Include traffic log entries"
304
  msgstr "Включить записи журнала трафика"
305
 
306
+ #: settings.php:625
307
  msgid "Include activity log events"
308
  msgstr "Включить события журнала активности"
309
 
310
+ #: settings.php:618
311
  msgid "Enable data export"
312
  msgstr "Включить экспорт данных"
313
 
314
+ #: settings.php:612
315
  msgid "Delete user sessions data when user data is erased"
316
  msgstr "Удалить пользовательские сессии при уничтожении данных пользователя"
317
 
318
+ #: settings.php:611
319
  msgid "Terminate user sessions"
320
  msgstr "Завершение пользовательских сессий"
321
 
322
+ #: settings.php:604
323
  msgid "Enable data erase"
324
  msgstr "Включить уничтожение данных"
325
 
326
+ #: settings.php:598
327
  msgid "Personal Data"
328
  msgstr "Персональные данные"
329
 
330
+ #: settings.php:285 settings.php:819
331
  msgid "Keep log records of logged in users for"
332
  msgstr "Сохранять записи журнала для авторизованных пользователей"
333
 
334
+ #: settings.php:279 settings.php:813
335
  msgid "Keep log records of not logged in visitors for"
336
  msgstr "Сохранять записи журнала для неавторизованных пользователей"
337
 
338
+ #: settings.php:247
339
  msgid "Enable authentication log monitoring"
340
  msgstr "Включить наблюдение над журналом авторизации"
341
 
342
+ #: settings.php:1297
343
  msgid "Any activity"
344
  msgstr "Любая активность"
345
 
346
+ #: common.php:1374
347
  msgid "User metadata update denied"
348
  msgstr "Изменение метаданных пользователя запрещено"
349
 
350
+ #: common.php:1371
351
  msgid "User row update denied"
352
  msgstr "Изменение пользователя запрещено"
353
 
354
+ #: common.php:1335
355
  msgid "IP subnet blocked"
356
  msgstr "Подсеть IP заблокирована"
357
 
358
+ #: cerber-tools.php:228
359
  msgid "A database error occurred while importing access list entries"
360
  msgstr "Возникла ошибка базы данных при импорте списка адресов"
361
 
362
+ #: dashboard.php:4936
363
  msgid "The IP address you are trying to add is already in the list"
364
  msgstr "Этот IP адрес уже присутствует в списке"
365
 
366
+ #: dashboard.php:321
367
  msgid "Add Entry"
368
  msgstr "Добавить запись"
369
 
370
+ #: dashboard.php:320
371
  msgid "IP address, range, wildcard, or CIDR"
372
  msgstr "IP адрес, диапазон, маска или CIDR"
373
 
391
  msgid "Hide server IP address"
392
  msgstr "Спрятать IP адрес сервера"
393
 
394
+ #: settings.php:448 settings.php:476 settings.php:505
395
  msgid "Do not apply these policies to the IP addresses in the White IP Access List"
396
  msgstr "Не применять эти политики к IP адресам из белого списка"
397
 
399
  msgid "Server"
400
  msgstr "Сервер"
401
 
402
+ #: dashboard.php:4679
403
  msgid "Site Settings"
404
  msgstr "Настройки сайта"
405
 
406
+ #: dashboard.php:4678
407
  msgid "Accounts & Roles"
408
  msgstr "Учетные записи и роли"
409
 
410
+ #: dashboard.php:4676
411
  msgid "Data Shield Policies"
412
  msgstr "Политики защиты данных"
413
 
415
  msgid "Data Shield"
416
  msgstr "Защита данных"
417
 
418
+ #: settings.php:499
419
  msgid "Protected settings"
420
  msgstr "Защищенные настройки"
421
 
422
+ #: settings.php:494
423
  msgid "Users with these roles are permitted to change protected settings"
424
  msgstr "Пользователи с этими ролями могут изменять защищенные настройки"
425
 
426
+ #: settings.php:488
427
  msgid "Restrict updating site settings with the following policies"
428
  msgstr "Ограничить изменение настроек сайта следующими правилами"
429
 
430
+ #: settings.php:484
431
  msgid "Protect site settings"
432
  msgstr "Защита настроек сайта"
433
 
434
+ #: settings.php:471
435
  msgid "Users with these roles are permitted to change role capabilities"
436
  msgstr "Пользователи с этими ролями могут изменять возможности ролей"
437
 
438
+ #: settings.php:466
439
  msgid "Users with these roles are permitted to add new roles"
440
  msgstr "Пользователи с этими ролями могут добавлять новые роли"
441
 
442
+ #: settings.php:460
443
  msgid "Restrict roles and capabilities management with the following policies"
444
  msgstr "Ограничить управление ролями и возможностями следующими правилами"
445
 
446
+ #: settings.php:456
447
  msgid "Protect user roles"
448
  msgstr "Защита ролей пользователей"
449
 
451
  msgid "Cerber Data Shield Policies"
452
  msgstr "Cerber политики защиты данных"
453
 
454
+ #: settings.php:443
455
  msgid "Users with these roles are permitted to change sensitive user data"
456
  msgstr "Пользователи с этими ролями могут изменять важные пользовательские данные"
457
 
458
+ #: settings.php:438
459
  msgid "Users with these roles are permitted to create new accounts"
460
  msgstr "Пользователи с этими ролями могут создавать новые учетные записи"
461
 
462
+ #: settings.php:432
463
  msgid "User registrations are limited to these roles"
464
  msgstr "Регистрация ограничена следующими ролями"
465
 
466
+ #: settings.php:426
467
  msgid "Restrict user account creation and user management with the following policies"
468
  msgstr "Ограничить создание учетных записей и управление пользователями следующими правилами"
469
 
470
+ #: settings.php:421
471
  msgid "Protect user accounts"
472
  msgstr "Защита учетных записей пользователей"
473
 
474
+ #: common.php:1417
475
  msgid "Incorrect password"
476
  msgstr "Неверный пароль"
477
 
478
+ #: common.php:1416
479
  msgid "Invalid user"
480
  msgstr "Неверный пользователь"
481
 
482
+ #: common.php:1414
483
  msgid "Permission denied"
484
  msgstr "Доступ запрещен"
485
 
486
+ #: common.php:1373
487
  msgid "Setting update denied"
488
  msgstr "Изменение настройки запрещено"
489
 
490
+ #: common.php:1372
491
  msgid "Role update denied"
492
  msgstr "Изменение роли запрещено"
493
 
494
+ #: common.php:1370
495
  msgid "User creation denied"
496
  msgstr "Создание пользователя запрещено"
497
 
523
  msgid "Administration Email Address"
524
  msgstr "Адрес email администратора"
525
 
526
+ #: cerber-scanner.php:1472
527
  msgid "Unable to delete"
528
  msgstr "Невозможно удалить"
529
 
530
+ #: cerber-users.php:1172
531
  msgid "Terminate"
532
  msgstr "Принудительно завершить"
533
 
534
+ #: cerber-users.php:1126
535
  msgid "User Activity"
536
  msgstr "Активность пользователя"
537
 
538
+ #: cerber-users.php:1125
539
  msgid "All Logins"
540
  msgstr "Все входы"
541
 
542
+ #: cerber-users.php:1112
543
  msgid "Profile"
544
  msgstr "Профиль"
545
 
546
+ #: cerber-users.php:1002
547
  msgid "Block user"
548
  msgstr "Заблокировать пользователя"
549
 
550
+ #: cerber-users.php:1001
551
  msgid "Terminate session"
552
  msgstr "Завершить сессию"
553
 
554
+ #: cerber-users.php:980
555
  msgid "Created"
556
  msgstr "Создана"
557
 
558
+ #: cerber-users.php:615
559
  msgid "Session has been terminated"
560
  msgid_plural "%s sessions have been terminated"
561
  msgstr[0] "Сессия завершена"
566
  msgid "The code is valid for %s minutes."
567
  msgstr "Этот код действителен в течении %s минут."
568
 
569
+ #: dashboard.php:4596
570
  msgid "Sessions"
571
  msgstr "Сессии"
572
 
573
+ #: dashboard.php:3411
574
  msgid "All Users"
575
  msgstr "Все пользователи"
576
 
577
+ #: dashboard.php:3299
578
  msgid "Any country is permitted"
579
  msgstr "Разрешены все страны"
580
 
581
+ #: dashboard.php:3217
582
  msgid "Role-based rules are configured"
583
  msgstr "Правила на основе ролей настроены"
584
 
585
+ #: dashboard.php:1759
586
  msgid "user"
587
  msgid_plural "users"
588
  msgstr[0] "пользователь"
589
  msgstr[1] "пользователя"
590
  msgstr[2] "пользователей"
591
 
592
+ #: dashboard.php:852 dashboard.php:1113
593
  msgid "Username"
594
  msgstr "Имя пользователя"
595
 
596
+ #: dashboard.php:195 dashboard.php:845 dashboard.php:1107 dashboard.php:4011
597
+ #: cerber-users.php:982
598
  msgid "IP Address"
599
  msgstr "IP-адрес"
600
 
601
+ #: dashboard.php:348
602
  msgid "IP address %s has been added to Black IP Access List"
603
  msgstr "IP адрес %s был добавлен в черный список доступа по IP"
604
 
605
+ #: dashboard.php:351
606
  msgid "IP address %s has been added to White IP Access List"
607
  msgstr "IP адрес %s был добавлен в белый список доступа по IP"
608
 
609
+ #: dashboard.php:2609
610
  msgid "The alert has been deleted"
611
  msgstr "Тревожное предупреждение удалено"
612
 
614
  msgid "Cerber Tech Inc."
615
  msgstr "Cerber Tech Inc."
616
 
617
+ #: common.php:1407
618
  msgid "Site policy enforcement"
619
  msgstr "Форсирование политики сайта"
620
 
621
+ #: common.php:1408
622
  msgid "2FA code verified"
623
  msgstr "2ФА код проверен"
624
 
625
+ #: common.php:1409
626
  msgid "Initiated by the user"
627
  msgstr "Начато пользователем"
628
 
629
+ #: common.php:1822
 
 
 
 
630
  msgid "A new version of %s is available. Please install it."
631
  msgstr "Доступна новая версия %s, пожалуйста, установите её."
632
 
633
+ #: cerber-users.php:10 cerber-users.php:439
634
  msgid "Two-Factor Authentication"
635
  msgstr "Двухфакторная авторизация"
636
 
638
  msgid "Determined by user role policies"
639
  msgstr "Определяется политиками ролей пользователей"
640
 
641
+ #: cerber-users.php:19 cerber-users.php:447
642
  msgid "Always enabled"
643
  msgstr "Включена всегда"
644
 
654
  msgid "Save All Changes"
655
  msgstr "Сохранить все изменения"
656
 
657
+ #: cerber-users.php:401
658
  msgid "Block access to WordPress Dashboard"
659
  msgstr "Заблокировать доступ в консоль WordPress"
660
 
661
+ #: cerber-users.php:406
662
  msgid "Hide Toolbar when viewing site"
663
  msgstr "Спрятать панель инструментов при просмотре сайта"
664
 
665
+ #: cerber-users.php:412
666
  msgid "Redirection rules"
667
  msgstr "Правила перенаправления"
668
 
669
+ #: cerber-users.php:416
670
  msgid "Redirect user after login"
671
  msgstr "Перенаправить пользователя после входа"
672
 
673
+ #: cerber-users.php:432 settings.php:582
674
  msgid "User session expiration time"
675
  msgstr "Время до истечения сессии пользователя"
676
 
677
+ #: cerber-users.php:443
678
  msgid "Two-factor authentication"
679
  msgstr "Двухфакторная авторизация"
680
 
681
+ #: cerber-users.php:448
682
  msgid "Advanced mode"
683
  msgstr "Расширенный режим"
684
 
685
+ #: cerber-users.php:452
686
  msgid "Enforce two-factor authentication if any of the following conditions is true"
687
  msgstr "Принудительно использовать 2ФА при выполнении любого из условий"
688
 
689
+ #: cerber-users.php:458
690
  msgid "Login from a different country"
691
  msgstr "Вход из другой страны"
692
 
693
+ #: cerber-users.php:490
694
  msgid "days interval"
695
  msgstr "интервал в днях"
696
 
697
+ #: cerber-scanner.php:4926
698
  msgid "Automatically deleted"
699
  msgstr "Автоматически удалено"
700
 
701
+ #: cerber-scanner.php:4876
702
  msgid "Recovered"
703
  msgstr "Восстановлено"
704
 
705
+ #: cerber-scanner.php:4929
706
  msgid "Automatically recovered"
707
  msgstr "Автоматически восстановлено"
708
 
710
  msgid "Cerber User Security"
711
  msgstr "Безопасность пользователей"
712
 
713
+ #: dashboard.php:64 dashboard.php:4686
714
  msgid "User Policies"
715
  msgstr "Политики пользователей"
716
 
717
+ #: dashboard.php:969
718
  msgid "New users"
719
  msgstr "Новые пользователи"
720
 
721
+ #: dashboard.php:982
722
  msgid "My activity"
723
  msgstr "Моя активность"
724
 
725
+ #: dashboard.php:1809
726
  msgid "A new version is available"
727
  msgstr "Доступна новая версия"
728
 
729
+ #: dashboard.php:2568
730
  msgid "Create Alert"
731
  msgstr "Создать тревожное предупреждение"
732
 
733
+ #: dashboard.php:2572
734
  msgid "Delete Alert"
735
  msgstr "Удалить тревожное предупреждение"
736
 
737
+ #: dashboard.php:2605
738
  msgid "The alert has been created"
739
  msgstr "Тревожное предупреждение создано"
740
 
741
+ #: dashboard.php:4689
742
  msgid "Global"
743
  msgstr "Глобальная"
744
 
745
+ #: settings.php:214
746
  msgid "Custom login URL may contain Latin alphanumeric characters, dashes and underscores only"
747
  msgstr "Пользовательский URL входа может содержать только латинские буквы, цифры, тире и знак подчеркивания."
748
 
749
+ #: settings.php:226
750
  msgid "Site-specific settings"
751
  msgstr "Специфические настройки сайта"
752
 
753
+ #: settings.php:234
754
  msgid "Prefix for plugin cookies"
755
  msgstr "Префикс для куки плагинов"
756
 
757
+ #: settings.php:235
758
  msgid "Prefix may contain only Latin alphanumeric characters and underscores"
759
  msgstr "Префикс может содержать только латинские буквы, цифры и знак подчеркивания"
760
 
761
+ #: settings.php:557
762
  msgid "Restrict email addresses"
763
  msgstr "Ограничение адресов email"
764
 
765
+ #: settings.php:560
766
  msgid "No restrictions"
767
  msgstr "Без ограничений"
768
 
769
+ #: settings.php:561
770
  msgid "Deny all email addresses that match the following"
771
  msgstr "Запретить все адреса email совпадающие со следующим"
772
 
773
+ #: settings.php:562
774
  msgid "Permit only email addresses that match the following"
775
  msgstr "Разрешить только адреса совпадающие со следующим"
776
 
777
+ #: settings.php:567
778
  msgid "Specify email addresses, wildcards or REGEX patterns. Use comma to separate items."
779
  msgstr "Укажите адреса email, маску или регулярные выражения. Элементы разделяются запятой."
780
 
781
+ #: settings.php:649
782
  msgid "Lockout notifications"
783
  msgstr "Уведомления о блокировках"
784
 
785
+ #: settings.php:680
786
  msgid "Pushbullet device"
787
  msgstr "Устройство Pushbullet"
788
 
789
+ #: settings.php:962
790
  msgid "Delete unattended files"
791
  msgstr "Удалить несопровождаемые файлы"
792
 
793
+ #: settings.php:988
794
  msgid "Recover plugins files"
795
  msgstr "Восстановление файлов плагинов"
796
 
797
+ #: settings.php:995
798
  msgid "These files will never be deleted during automatic cleanup."
799
  msgstr "Эти файлы никогда не будут удалены при автоматической очистке."
800
 
801
+ #: cerber-load.php:1575
802
  msgid "Email address is not permitted."
803
  msgstr "Email адрес недопустим."
804
 
805
+ #: cerber-load.php:1575
806
  msgid "Please choose another one."
807
  msgstr "Выберите другой."
808
 
809
+ #: cerber-load.php:4986
810
  msgid "To delete the alert, click here"
811
  msgstr "Для удаления этого тревожного предупреждения нажмите тут"
812
 
846
  msgid "Enter the code from the email in the field below."
847
  msgstr "Введите код из почтового сообщение в поле ниже."
848
 
849
+ #: cerber-users.php:464
850
  msgid "Login from a different network Class C"
851
  msgstr "Вход из другой подсети класса C"
852
 
853
+ #: cerber-users.php:470
854
  msgid "Login from a different IP address"
855
  msgstr "Вход с другого IP адреса"
856
 
857
+ #: cerber-users.php:476
858
  msgid "Using a different browser or device"
859
  msgstr "Использование другого браузера или устройства"
860
 
861
+ #: cerber-users.php:482
862
  msgid "Enforce two-factor authentication with fixed intervals"
863
  msgstr "Принудительно использовать 2ФА через определенный период"
864
 
865
+ #: cerber-users.php:488
866
  msgid "Regular time intervals (days)"
867
  msgstr "Период времени (дней)"
868
 
869
+ #: cerber-users.php:495
870
  msgid "Fixed number of logins"
871
  msgstr "Определенное число входов"
872
 
873
+ #: cerber-users.php:497
874
  msgid "number of logins"
875
  msgstr "число входов"
876
 
877
+ #: cerber-users.php:541
878
  msgid "Policies have been updated"
879
  msgstr "Политики обновлены"
880
 
881
+ #: cerber-scanner.php:1473
882
  msgid "File deleted"
883
  msgstr "Файл удален"
884
 
885
+ #: cerber-scanner.php:1474
886
  msgid "File recovered"
887
  msgstr "Файл восстановлен"
888
 
889
+ #: cerber-scanner.php:3765
890
  msgid "Recovering WordPress files"
891
  msgstr "Восстановление файлов WordPress"
892
 
893
+ #: cerber-scanner.php:3767
894
  msgid "Recovering plugins files"
895
  msgstr "Восстановление файлов плагинов"
896
 
897
+ #: settings.php:981
898
  msgid "Automatic recovery of modified and infected files"
899
  msgstr "Автоматическое восстановление измененных и зараженных файлов"
900
 
901
+ #: settings.php:984
902
  msgid "Recover WordPress files"
903
  msgstr "Восстановление файлов WordPress"
904
 
926
  msgid "Verify"
927
  msgstr "Проверить"
928
 
929
+ #: dashboard.php:4688
930
  msgid "Role-based"
931
  msgstr "Основана на ролях"
932
 
933
+ #: cerber-users.php:421
934
  msgid "Redirect user after logout"
935
  msgstr "Перенаправить пользователя после выхода"
936
 
937
+ #: settings.php:677
938
  msgid "Pushbullet access token"
939
  msgstr "Токен доступа Pushbullet"
940
 
941
+ #: cerber-load.php:353
942
  msgid "You are not allowed to log in"
943
  msgstr "Вам не разрешено войти"
944
 
945
+ #: admin/cerber-settings.php:513
946
  msgid "Select one or more roles"
947
  msgstr "Выберите одну или несколько ролей"
948
 
949
+ #: settings.php:132
950
  msgid "These restrictions do not apply to IP addresses in the White IP Access List"
951
  msgstr "Эти ограничения не применяются к IP адресам из белого списка"
952
 
953
+ #: settings.php:695
954
  msgid "Send reports on"
955
  msgstr "Отправлять отчеты в"
956
 
957
+ #: settings.php:410
958
  msgid "Allow these namespaces"
959
  msgstr "Разрешить эти пространства имен"
960
 
961
+ #: settings.php:405
962
  msgid "Allow REST API for these roles"
963
  msgstr "Разрешить REST API для следующих ролей"
964
 
965
+ #: settings.php:390
966
  msgid "Block access to users' data via REST API"
967
  msgstr "Блокировать доступ к данным пользователей через REST API"
968
 
969
+ #: settings.php:384
970
  msgid "Access to WordPress REST API"
971
  msgstr "Доступ к WordPress REST API"
972
 
973
+ #: settings.php:1229
974
  msgid "The full access mode requires the PRO version of WP Cerber"
975
  msgstr "Полный доступ требует PRO версии WP Cerber"
976
 
977
+ #: settings.php:1208
978
  msgid "Read-only mode"
979
  msgstr "Доступ только для чтения"
980
 
981
+ #: settings.php:1207
982
  msgid "Full access mode"
983
  msgstr "Полный доступ"
984
 
985
+ #: settings.php:1204
986
  msgid "Access to this website"
987
  msgstr "Доступ к этому сайту"
988
 
989
+ #: settings.php:1198
990
  msgid "Limit access by IP address"
991
  msgstr "Ограничить доступ IP адресом"
992
 
993
+ #: settings.php:1174
994
  msgid "Use master language"
995
  msgstr "Использовать основной язык"
996
 
997
+ #: settings.php:1170
998
  msgid "Add @ site to the page title"
999
  msgstr "Добавить @ сайт к заголовку страницы"
1000
 
1001
+ #: settings.php:1166
1002
  msgid "Show \"Switched to\" notification"
1003
  msgstr "Показывать уведомление о переходах"
1004
 
1005
+ #: settings.php:1162
1006
  msgid "Return to the website list"
1007
  msgstr "Вернуться к списку сайтов"
1008
 
1009
+ #: settings.php:1154
1010
  msgid "Master settings"
1011
  msgstr "Настройки режима основного сайта"
1012
 
1013
+ #: settings.php:542
1014
  msgid "Redirect to URL"
1015
  msgstr "Перенаправление на URL"
1016
 
1017
+ #: settings.php:537 settings.php:1454
1018
  msgid "Only registered and logged in users are allowed to view this website"
1019
  msgstr "Только зарегистрированные и авторизованные пользователи могут просматривать этот сайт"
1020
 
1021
+ #: settings.php:527
1022
  msgid "Do not apply these policy to the IP addresses in the White IP Access List"
1023
  msgstr "Не применять эти политики к IP адресам из белого списка"
1024
 
1025
+ #: settings.php:520
1026
  msgid "Only registered and logged in website users have access to the website"
1027
  msgstr "Только зарегистрированные и авторизованные пользователи могут получить доступ к этому сайту"
1028
 
1029
+ #: settings.php:519
1030
  msgid "Authorized users only"
1031
  msgstr "Только для авторизованных пользователей"
1032
 
1033
+ #: dashboard.php:4781
1034
  msgid "Changelog"
1035
  msgstr "Журнал изменений"
1036
 
1037
+ #: dashboard.php:3274
1038
  msgid "Save all rules"
1039
  msgstr "Сохранить все правила"
1040
 
1041
+ #: dashboard.php:1150
1042
  msgid "Filter by registered user"
1043
  msgstr "Фильтровать по зарегистрированным пользователям"
1044
 
1045
+ #: dashboard.php:641
1046
  msgid "Default settings have been loaded"
1047
  msgstr "Загружены настройки по умолчанию"
1048
 
1102
  msgid "This website can be managed from a master website"
1103
  msgstr "Этот сайт может управляться с основного сайта"
1104
 
1105
+ #: cerber-load.php:5277 nexus/cerber-nexus.php:64
1106
  msgid "Enable slave mode"
1107
  msgstr "Включить зависимый режим"
1108
 
1109
+ #: nexus/cerber-nexus-master.php:1396 nexus/cerber-nexus-master.php:1404
1110
  msgid "Active plugins and updates on"
1111
  msgstr "Активные плагины и обновления на"
1112
 
1113
+ #: nexus/cerber-nexus-master.php:1374
1114
  msgid "A newer version is available"
1115
  msgstr "Доступна новая версия"
1116
 
1117
+ #: nexus/cerber-nexus-master.php:1330
1118
  msgid "Are you sure you want to delete selected websites?"
1119
  msgstr "Вы точно хотите удалить выделенные сайты?"
1120
 
1121
+ #: nexus/cerber-nexus-master.php:1264
1122
  msgid "Visit Site"
1123
  msgstr "Посетить сайт"
1124
 
1125
+ #: nexus/cerber-nexus.php:92 nexus/cerber-nexus.php:102
1126
+ #: nexus/cerber-nexus-master.php:1249
1127
  msgid "My Websites"
1128
  msgstr "Мои сайты"
1129
 
1130
+ #: nexus/cerber-nexus-master.php:1246
1131
  msgid "You are here:"
1132
  msgstr "Вы здесь:"
1133
 
1134
+ #: nexus/cerber-nexus-master.php:1030
1135
  msgid "You have switched back to the master website"
1136
  msgstr "Вы перешли назад на основной сайт"
1137
 
1138
+ #: nexus/cerber-nexus-master.php:1020
1139
  msgid "You have switched to %s"
1140
  msgstr "Вы перешли к %s"
1141
 
1142
+ #: nexus/cerber-nexus-master.php:688
1143
  msgid "Invalid response from the slave website"
1144
  msgstr "Неверный ответ с зависимого сайта"
1145
 
1146
+ #: nexus/cerber-nexus-master.php:444
1147
  msgid "Website has been deleted"
1148
  msgid_plural "%s websites have been deleted"
1149
  msgstr[0] "Сайт удален"
1150
  msgstr[1] "%s сайта удалено"
1151
  msgstr[2] "%s сайтов удалено"
1152
 
1153
+ #: nexus/cerber-nexus-master.php:325
1154
  msgid "Keep in mind: You have added the website that does not support SSL encryption. This may lead to data leakage."
1155
  msgstr "Имейте ввиду: Вы добавили сайт, который не поддерживает SSL. Это может привести к утечке данных."
1156
 
1157
+ #: nexus/cerber-nexus-master.php:322
1158
  msgid "Switch to the Dashboard"
1159
  msgstr "Перейти в консоль"
1160
 
1161
+ #: nexus/cerber-nexus-master.php:321
1162
  msgid "Click to edit"
1163
  msgstr "Нажмите для редактирования"
1164
 
1165
+ #: nexus/cerber-nexus-master.php:320
1166
  msgid "The website has been added successfully"
1167
  msgstr "Сайт добавлен"
1168
 
1169
+ #: nexus/cerber-nexus-master.php:311
1170
  msgid "The website you are trying to add is already in the list"
1171
  msgstr "Добавляемый вами сайт уже присутствует в списке"
1172
 
1173
+ #: nexus/cerber-nexus-master.php:281
1174
  msgid "Security access token is invalid"
1175
  msgstr "Токен безопасного доступа не верен"
1176
 
1238
  msgid "Edit"
1239
  msgstr "Редактировать"
1240
 
1241
+ #: nexus/cerber-slave-list.php:244 cerber-users.php:1070
1242
  msgid "Search results for:"
1243
  msgstr "Результаты поиска для:"
1244
 
1298
  msgid "An optional message for this user"
1299
  msgstr "Необязательное сообщение для этого пользователя"
1300
 
1301
+ #: cerber-users.php:68 settings.php:533
1302
  msgid "User Message"
1303
  msgstr "Сообщение пользователю"
1304
 
1317
 
1318
  #. translators: Time difference between two dates, in seconds (sec=second). 1:
1319
  #. Number of seconds
1320
+ #: common.php:1602
1321
  msgid "%s sec"
1322
  msgid_plural "%s secs"
1323
  msgstr[0] "%s сек."
1324
  msgstr[1] "%s сек."
1325
  msgstr[2] "%s сек."
1326
 
1327
+ #: common.php:1406
1328
  msgid "Blocked by administrator"
1329
  msgstr "Заблокирован администратором"
1330
 
1331
+ #: common.php:1382
1332
  msgid "Invalid master credentials"
1333
  msgstr "Неверная мастер пара логин/пароль"
1334
 
1335
+ #: dashboard.php:3145 admin/cerber-settings.php:624
1336
  msgid "Save Changes"
1337
  msgstr "Сохранить изменения"
1338
 
1339
+ #: common.php:1393
1340
  msgid "IP address is locked out"
1341
  msgstr "IP адрес заблокирован"
1342
 
1343
+ #: dashboard.php:848
1344
  msgid "Additional Details"
1345
  msgstr "Дополнительная информация"
1346
 
1347
+ #: settings.php:754
1348
  msgid "Ignore logged in users"
1349
  msgstr "Игнорировать авторизованных пользователей"
1350
 
1351
+ #: settings.php:740
1352
  msgid "Erroneous Request Shielding"
1353
  msgstr "Защита от ошибочных запросов"
1354
 
1355
+ #: settings.php:722 settings.php:750
1356
  msgid "Maximum security"
1357
  msgstr "Максимальная безопасность"
1358
 
1359
+ #: settings.php:721 settings.php:749
1360
  msgid "Maximum compatibility"
1361
  msgstr "Максимальная совместимость"
1362
 
1363
+ #: settings.php:803
1364
  msgid "Save software errors"
1365
  msgstr "Сохранять ошибки ПО"
1366
 
1367
+ #: settings.php:745
1368
  msgid "Enable error shielding"
1369
  msgstr "Включить защиту от ошибок"
1370
 
1371
+ #: settings.php:712
1372
  msgid "Traffic Inspection"
1373
  msgstr "Инспектор трафика"
1374
 
1375
+ #: dashboard.php:5152 dashboard.php:5153
1376
  msgid "Add to menu"
1377
  msgstr "Добавить в меню"
1378
 
1379
+ #: dashboard.php:5113
1380
  msgid "WooCommerce Log Out"
1381
  msgstr "Выход WooCommerce"
1382
 
1383
+ #: dashboard.php:5112
1384
  msgid "WooCommerce Log In"
1385
  msgstr "Вход WooCommerce"
1386
 
1387
+ #: dashboard.php:5109
1388
  msgid "Register"
1389
  msgstr "Регистрация"
1390
 
1391
+ #: dashboard.php:5108
1392
  msgid "Log Out"
1393
  msgstr "Выход"
1394
 
1395
+ #: dashboard.php:5107
1396
  msgid "Log In"
1397
  msgstr "Вход"
1398
 
1399
+ #: dashboard.php:3566
1400
  msgid "Page generation time"
1401
  msgstr "Время генерации страницы"
1402
 
1403
+ #: common.php:1465
1404
  msgid "Multiple suspicious requests"
1405
  msgstr "Множественные подозрительные запросы"
1406
 
1407
+ #: dashboard.php:5072
1408
  msgid "Know more about all advantages at"
1409
  msgstr "Узнайте больше о всех преимуществах на"
1410
 
1411
+ #: dashboard.php:5071
1412
  msgid "These features are available in a professional version of the plugin."
1413
  msgstr "Эти возможности доступны в профессиональной версии плагина."
1414
 
1415
+ #: common.php:1405
1416
  msgid "Suspicious JavaScript code detected"
1417
  msgstr "Найден подозрительный код JavaScript"
1418
 
1419
+ #: admin/cerber-admin.php:767
1420
  msgid "All scans"
1421
  msgstr "Все проверки"
1422
 
1423
+ #: admin/cerber-admin.php:713
1424
  msgid "Click here to see the full list of files"
1425
  msgstr "Нажмите здесь для просмотра полного списка файлов"
1426
 
1427
+ #: admin/cerber-admin.php:713
1428
  msgid "No files match the specified filter."
1429
  msgstr "Нет файлов подходящих к указанному фильтру."
1430
 
1431
+ #: cerber-scanner.php:3757
1432
  msgid "Preparing for the scan"
1433
  msgstr "Подготовка сканирования"
1434
 
1435
+ #: settings.php:884 settings.php:1187 settings.php:1215
1436
  msgid "Enable diagnostic logging"
1437
  msgstr "Включить журнал диагностики"
1438
 
1439
+ #: settings.php:368
1440
  msgid "Disable PHP error displaying"
1441
  msgstr "Отключить отображение ошибок PHP"
1442
 
1443
+ #: settings.php:364
1444
  msgid "Block execution of PHP scripts in the WordPress media folder"
1445
  msgstr "Отключить исполнение PHP скриптов в папке медиафайлов WordPress"
1446
 
1447
+ #: settings.php:363
1448
  msgid "Disable PHP in uploads"
1449
  msgstr "Отключить PHP в папке загрузок"
1450
 
1451
+ #: settings.php:333
1452
  msgid "Use English for admin interface"
1453
  msgstr "Use English for admin interface (использовать английский язык для интерфейса администрирования)"
1454
 
1455
+ #: dashboard.php:2808
1456
  msgid "All files have been processed"
1457
  msgstr "Все файлы обработаны"
1458
 
1459
+ #: dashboard.php:2807
1460
  msgid "Some errors occurred"
1461
  msgstr "Возникли ошибки"
1462
 
1463
+ #: dashboard.php:2805
1464
  msgid "These files have been added to the ignore list"
1465
  msgstr "Эти файлы были добавлены в список игнорирования"
1466
 
1467
+ #: dashboard.php:2804
1468
  msgid "Do you want to add selected files to the ignore list?"
1469
  msgstr "Вы точно хотите добавить выбранные файлы в список игнорирования?"
1470
 
1471
+ #: dashboard.php:2801
1472
  msgid "These files have been moved to the quarantine"
1473
  msgstr "Эти файлы были перемещены в карантин"
1474
 
1475
+ #: dashboard.php:2800
1476
  msgid "Are you sure you want to delete selected files?"
1477
  msgstr "Вы точно хотите удалить выбранные файлы?"
1478
 
1479
+ #: admin/cerber-admin.php:908
 
 
 
 
1480
  msgid "Added"
1481
  msgstr "Добавлено"
1482
 
1483
+ #: admin/cerber-admin.php:874
1484
  msgid "The list is empty."
1485
  msgstr "Список пуст."
1486
 
1487
+ #: admin/cerber-admin.php:872
1488
  msgid "Activity Insights"
1489
  msgstr "На виду: активность"
1490
 
1491
+ #: admin/cerber-admin.php:871
1492
  msgid "Traffic Insights"
1493
  msgstr "На виду: трафик"
1494
 
1495
+ #: admin/cerber-admin.php:870
1496
  msgid "User Insights"
1497
  msgstr "На виду: пользователи"
1498
 
1499
+ #: admin/cerber-admin.php:869 admin/cerber-admin.php:896
1500
  msgid "Remove from the list"
1501
  msgstr "Удалить из списка"
1502
 
1503
+ #: admin/cerber-admin.php:868
1504
  msgid "Apply"
1505
  msgstr "Применить"
1506
 
1507
+ #: dashboard.php:4727
1508
  msgid "Ignore List"
1509
  msgstr "Список игнорируемого"
1510
 
1511
+ #: admin/cerber-admin.php:222
1512
  msgid "Ignore"
1513
  msgstr "Игнорировать"
1514
 
1515
+ #: settings.php:1017
1516
  msgid "Use comma to separate items."
1517
  msgstr "Используйте запятую для разделения элементов."
1518
 
1519
+ #: settings.php:1013
1520
  msgid "Files with these extensions"
1521
  msgstr "Файлы с этими расширениями"
1522
 
1523
+ #: settings.php:1010
1524
  msgid "Use absolute paths. One item per line."
1525
  msgstr "Используйте абсолютные пути. Один элемент на строку."
1526
 
1527
+ #: settings.php:1006
1528
  msgid "Files in these directories"
1529
  msgstr "Файлы в этих папках"
1530
 
1531
+ #: settings.php:1002
1532
  msgid "Files in the sessions directory"
1533
  msgstr "Файлы в папке сессий"
1534
 
1535
+ #: settings.php:998
1536
  msgid "Files in the temporary directory"
1537
  msgstr "Файлы в временной папке"
1538
 
1539
+ #: settings.php:994
1540
  msgid "Exclusions"
1541
  msgstr "Исключения"
1542
 
1543
+ #: settings.php:975
1544
  msgid "Files with unwanted extensions"
1545
  msgstr "Файлы с нежелательными расширениями"
1546
 
1547
+ #: settings.php:966
1548
  msgid "Files in the uploads folder"
1549
  msgstr "Файлы в папке загрузки"
1550
 
1551
+ #: settings.php:957
1552
  msgid "Automatic cleanup of malware and suspicious files"
1553
  msgstr "Автоматическая очистка вредоносных и подозрительных файлов"
1554
 
1555
+ #: dashboard.php:1806
1556
  msgid "Integrity"
1557
  msgstr "Целостность"
1558
 
1559
+ #: dashboard.php:1787
1560
  msgctxt "Example: Last malware scan: 23 Jan 2018"
1561
  msgid "Last malware scan"
1562
  msgstr "Последняя проверка на вредоносное ПО"
1563
 
1564
+ #: common.php:1404
1565
  msgid "Suspicious SQL code detected"
1566
  msgstr "Обнаружен подозрительный SQL код"
1567
 
1568
+ #: common.php:1365
1569
  msgid "Attempt to upload malicious file denied"
1570
  msgstr "Заблокирована попытка загрузки вредоносного файла"
1571
 
1572
+ #: cerber-scanner.php:4925
1573
  msgid "Automatically moved to quarantine"
1574
  msgstr "Автоматически перемещен в карантин"
1575
 
1576
+ #: cerber-scanner.php:4872
1577
  msgid "Deleted"
1578
  msgstr "Удален"
1579
 
1580
+ #: cerber-scanner.php:2707
1581
  msgid "The contents of the file have been changed and do not match what exists in the official WordPress repository or a reference file you have uploaded earlier. The file may have been altered by malware, infected by a virus or has been tampered with."
1582
  msgstr "Содержимое файы было изменено и не совпадает с оригиналом из репозитория WordPress или образцом загруженным вами ранее. Файл был изменен, возможно вредоносным кодом или вирусом."
1583
 
1584
+ #: cerber-scanner.php:2703
1585
  msgid "It may remain after upgrading to a newer version of %s. It also may be a piece of obfuscated malware. In a rare case it might be a part of a custom-made (bespoke) plugin or theme."
1586
  msgstr "Он мог остаться после обновления до свежей версии %s. Он также может быть частью скрытого вредоносного ПО. В редких случаях это может быть часть сделанного под заказ плагина или темы."
1587
 
1588
+ #: cerber-scanner.php:2702
1589
  msgid "The scanner recognizes this file as \"ownerless\" or \"not bundled\" because it does not belong to any known part of the website and should not be here."
1590
  msgstr "Сканер определил этот файл как \"ничей\" или непривязаный, поскольку он не относится ни к одной известной части сайта, его скорее всего вообще быть не должно."
1591
 
1592
+ #: cerber-scanner.php:2701
1593
  msgid "This file contains executable code and may contain obfuscated malware. If this file is a part of a theme or a plugin, it must be located in the theme or the plugin folder. No exception, no excuses."
1594
  msgstr "Этот файл содержит исполняемый код и может включать скрытый вредоносный код. Если этот файл часть темы или плагина, он должен быть в папке с темой или плагином, никаких исключений."
1595
 
1596
+ #: cerber-scanner.php:1461
1597
  msgid "Malicious code found"
1598
  msgstr "Найден вредоносный код"
1599
 
1600
+ #: dashboard.php:4726
1601
  msgid "Cleaning up"
1602
  msgstr "Очистка"
1603
 
1604
+ #: cerber-news.php:133
1605
  msgid "Awesome!"
1606
  msgstr "Замечательно!"
1607
 
1609
  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."
1610
  msgstr "Защищает WordPress от атак хакеров, спама, троянов и вирусов. Включает сканер вредоносного ПО и проверку целостности. Усиление защиты WordPress набором комплексных алгоритмов безопасности. Защита от спама тонким определением ботов и reCAPTCHA. Отслеживание пользовательской активности и вторжений с уведомлением по email, а также через уведомления браузера или на мобильные устройства."
1611
 
1612
+ #: admin/cerber-settings.php:553
1613
  msgctxt "preposition of time like: at 11:00"
1614
  msgid "at"
1615
  msgstr "в"
1616
 
1617
+ #: dashboard.php:4642
1618
  msgid "Anti-spam engine"
1619
  msgstr "Антиспам защита"
1620
 
1621
+ #: common.php:1609
1622
  msgctxt "preposition of a period of time like: in 6 hours"
1623
  msgid "in %s"
1624
  msgstr "Через %s"
1625
 
1626
+ #: admin/cerber-admin.php:844
1627
  msgid "The file has been restored to its original location."
1628
  msgstr "Файл был восстановлен по оригинальному местоположению."
1629
 
1630
+ #: admin/cerber-admin.php:829
1631
  msgid "The file has been deleted permanently."
1632
  msgstr "Файл удален навсегда."
1633
 
1634
+ #: admin/cerber-admin.php:756 admin/cerber-admin.php:911
1635
  msgid "File"
1636
  msgstr "Файл"
1637
 
1638
+ #: admin/cerber-admin.php:755 admin/cerber-admin.php:910
1639
+ #: admin/cerber-admin.php:1318
1640
  msgid "Size"
1641
  msgstr "Размер"
1642
 
1643
+ #: admin/cerber-admin.php:754
1644
  msgid "Automatic deletion"
1645
  msgstr "Автоматическое удаление"
1646
 
1647
+ #: admin/cerber-admin.php:731
 
 
 
 
1648
  msgid "Delete permanently"
1649
  msgstr "Удалить навсегда"
1650
 
1651
+ #: admin/cerber-admin.php:734
1652
  msgid "Restore"
1653
  msgstr "Восстановить"
1654
 
1655
+ #: admin/cerber-admin.php:696
1656
  msgid "There are no files in the quarantine at the moment."
1657
  msgstr "В карантине сейчас нет файлов."
1658
 
1659
+ #: admin/cerber-admin.php:96 admin/cerber-admin.php:752
1660
  msgid "Scanned"
1661
  msgstr "Проверено"
1662
 
1663
+ #: admin/cerber-admin.php:87
1664
  msgid "Unattended files"
1665
  msgstr "Несопровождаемые файлы"
1666
 
1667
+ #: admin/cerber-admin.php:75
1668
  msgid "Changed files"
1669
  msgstr "Измененные файлы"
1670
 
1671
+ #: admin/cerber-admin.php:71
1672
  msgid "New files"
1673
  msgstr "Новые файлы"
1674
 
1675
+ #: nexus/cerber-slave-list.php:337 admin/cerber-admin.php:67
1676
  msgid "Vulnerabilities"
1677
  msgstr "Уязвимости"
1678
 
1679
+ #: admin/cerber-admin.php:55
1680
  msgid "Performance"
1681
  msgstr "Производительность"
1682
 
1683
+ #: admin/cerber-admin.php:47
1684
  msgid "Finished"
1685
  msgstr "Завершено"
1686
 
1687
+ #: admin/cerber-admin.php:43
1688
  msgid "Started"
1689
  msgstr "Начато"
1690
 
1691
+ #: dashboard.php:4728
1692
  msgid "Quarantine"
1693
  msgstr "Карантин"
1694
 
1695
+ #: cerber-load.php:349
1696
  msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
1697
  msgstr "Вы исчерпали максимально допустимое количество попыток входа. Попробуйте снова через %d минут."
1698
 
1699
+ #: settings.php:915
1700
  msgid "Scan results reporting"
1701
  msgstr "Отчет о результатах проверки"
1702
 
1703
+ #: settings.php:898
1704
  msgid "Automated recurring scan schedule"
1705
  msgstr "План автоматической повторной проверки"
1706
 
1707
+ #: dashboard.php:4041
1708
  msgid "Errors"
1709
  msgstr "Ошибки"
1710
 
1711
+ #: dashboard.php:975 dashboard.php:4040
1712
  msgid "Suspicious activity"
1713
  msgstr "Подозрительная активность"
1714
 
1715
+ #: dashboard.php:1535
1716
  msgid "Activated"
1717
  msgstr "Активация"
1718
 
1719
+ #: common.php:1716
1720
  msgid "Bytes"
1721
  msgstr "Байт"
1722
 
1723
+ #: common.php:1462
1724
  msgid "Attempt to upload a file with malicious code"
1725
  msgstr "Попытка загрузки файла с вредоносным кодом"
1726
 
1727
+ #: common.php:1403 common.php:1461
1728
  msgid "Malicious code detected"
1729
  msgstr "Обнаружен вредоносный код"
1730
 
1731
+ #: common.php:1402
1732
  msgid "Suspicious number of nested values"
1733
  msgstr "Подозрительное количество вложенных значений"
1734
 
1735
+ #: common.php:1401
1736
  msgid "Suspicious number of fields"
1737
  msgstr "Подозрительное число полей"
1738
 
1739
+ #: common.php:1379
1740
  msgid "User activated"
1741
  msgstr "Пользователь активирован"
1742
 
1743
+ #: common.php:1376
1744
  msgid "Malicious request denied"
1745
  msgstr "Заблокирован вредоносный запрос"
1746
 
1747
+ #: cerber-scanner.php:3761
1748
  msgid "Scanning the session folder for files"
1749
  msgstr "Поиск файлов в каталоге сессий"
1750
 
1751
+ #: cerber-scanner.php:3760
1752
  msgid "Scanning the temp folder for files"
1753
  msgstr "Поиск файлов в временном каталоге"
1754
 
1755
+ #: cerber-scanner.php:3759
1756
  msgid "Scanning the upload folder for files"
1757
  msgstr "Поиск файлов в каталоге uploads"
1758
 
1759
+ #: cerber-scanner.php:1450
1760
  msgid "Unable to check the integrity due to a DB error"
1761
  msgstr "Невозможно проверить целостность из-за ошибки БД"
1762
 
1763
+ #: cerber-scanner.php:1445
1764
  msgid "Vulnerability found"
1765
  msgstr "Обнаружена уязвимость"
1766
 
1767
+ #: admin/cerber-settings.php:951
1768
  msgid "Unable to update the schedule"
1769
  msgstr "Невозможно обновить запланированное"
1770
 
1771
+ #: admin/cerber-settings.php:948
1772
  msgid "The schedule has been updated"
1773
  msgstr "Запланированное обновлено"
1774
 
1775
+ #: settings.php:942
1776
  msgid "Include scan errors"
1777
  msgstr "Включать ошибки сканера"
1778
 
1779
+ #: settings.php:938
1780
  msgid "Include file sizes"
1781
  msgstr "Включать размеры файлов"
1782
 
1783
+ #: settings.php:934
1784
  msgid "If new issues found"
1785
  msgstr "Если найдены новые проблемы"
1786
 
1787
+ #: settings.php:933
1788
  msgid "If any changes in scan results occurred"
1789
  msgstr "Если найдены изменения в результатах сканирования"
1790
 
1791
+ #: settings.php:932
1792
  msgid "After every scan"
1793
  msgstr "После каждого сканирования"
1794
 
1795
+ #: settings.php:929
1796
  msgid "Send email report"
1797
  msgstr "Отсылать отчет по эл.почте"
1798
 
1799
+ #: settings.php:920
1800
  msgid "Report an issue if any of the following is true"
1801
  msgstr "Отчитываться о проблемах, если нижеперечисленное верно"
1802
 
1803
+ #: settings.php:925 settings.php:971
1804
  msgid "High severity"
1805
  msgstr "Высокая тяжесть"
1806
 
1807
+ #: settings.php:924 settings.php:970
1808
  msgid "Medium severity"
1809
  msgstr "Средняя тяжесть"
1810
 
1811
+ #: settings.php:923 settings.php:969
1812
  msgid "Low severity"
1813
  msgstr "Низкая тяжесть"
1814
 
1815
+ #: settings.php:908
1816
  msgid "Launch Full Scan"
1817
  msgstr "Запуск полной проверки"
1818
 
1819
+ #: settings.php:903
1820
  msgid "Launch Quick Scan"
1821
  msgstr "Запуск быстрой проверки"
1822
 
1823
+ #: settings.php:863
1824
  msgid "Monitor modified files"
1825
  msgstr "Наблюдать за изменением файлов"
1826
 
1827
+ #: settings.php:854
1828
  msgid "Monitor new files"
1829
  msgstr "Наблюдать за новыми файлами"
1830
 
1831
+ #: cerber-scanner.php:4941
1832
  msgid "To view full report visit"
1833
  msgstr "Для просмотра полного отчета зайдите на"
1834
 
1835
+ #: cerber-scanner.php:4787
1836
  msgid "Files scanned"
1837
  msgstr "Проверено файлов"
1838
 
1839
+ #: cerber-scanner.php:4774
1840
  msgid "Quick Scan Report"
1841
  msgstr "Отчет быстрой проверки"
1842
 
1843
+ #: cerber-scanner.php:4774
1844
  msgid "Full Scan Report"
1845
  msgstr "Отчет полной проверки"
1846
 
1847
+ #: admin/cerber-admin.php:344
1848
  msgid "File access error. Possibly scan results are outdated. Please run Quick or Full Scan."
1849
  msgstr "Ошибка доступа к файлу. Возможно результаты проверки устарели. Запустите быструю или полную проверку."
1850
 
1851
+ #: admin/cerber-admin.php:245
1852
  msgid "You have to upload a ZIP archive from which you've installed it. This enables the security scanner to verify the integrity of the code and detect malware."
1853
  msgstr "Вам нужно загрузить zip-архив, из которого вы это установили. Это даст возможность сканеру безопасности проверить целостность файлов, кода и определить вредоносный код."
1854
 
1855
+ #: admin/cerber-admin.php:243
1856
  msgid "We have not found any integrity data to verify"
1857
  msgstr "Не найдены данные о целостности для проверки"
1858
 
1859
+ #: cerber-scanner.php:3770
1860
  msgid "Finalizing the scan"
1861
  msgstr "Завершение проверки"
1862
 
1863
+ #: cerber-scanner.php:3769
1864
  msgid "Searching for malicious code"
1865
  msgstr "Поиск вредоносного кода"
1866
 
1867
+ #: cerber-scanner.php:3768
1868
  msgid "Verifying the integrity of the themes"
1869
  msgstr "Проверка целостности тем"
1870
 
1871
+ #: cerber-scanner.php:3766
1872
  msgid "Verifying the integrity of the plugins"
1873
  msgstr "Проверка целостности плагинов"
1874
 
1875
+ #: cerber-scanner.php:3764
1876
  msgid "Verifying the integrity of WordPress"
1877
  msgstr "Проверка целостности WordPress"
1878
 
1879
+ #: cerber-scanner.php:3763
1880
  msgid "Checking for new and modified files"
1881
  msgstr "Поиск новых и измененных файлов"
1882
 
1883
+ #: cerber-scanner.php:3762
1884
  msgid "Parsing the list of files"
1885
  msgstr "Обработка списка файлов"
1886
 
1887
+ #: cerber-scanner.php:3758
1888
  msgid "Scanning folders for files"
1889
  msgstr "Поиск файлов в каталогах"
1890
 
1891
+ #: cerber-scanner.php:2710
1892
  msgid "Resolve issue"
1893
  msgstr "Решить проблему"
1894
 
1895
+ #: cerber-scanner.php:2709
1896
  msgid "Please upload a reference ZIP archive"
1897
  msgstr "Пожалуйста, загрузите установочный zip-архив"
1898
 
1899
+ #: cerber-scanner.php:2708
1900
  msgid "To solve this issue you have to reinstall %s or update it to the latest version."
1901
  msgstr "Для решения этой проблемы нужно переустановить %s или обновить до последней версии."
1902
 
1903
+ #: cerber-scanner.php:2705
1904
  msgid "Suspicious code signatures found"
1905
  msgstr "Найдены подозрительные отпечатки кода"
1906
 
1907
+ #: cerber-scanner.php:2704
1908
  msgid "Suspicious code instruction found"
1909
  msgstr "Найдены подозрительные инструкции в коде"
1910
 
1911
+ #: cerber-scanner.php:1496
1912
  msgid "Every 6 hours"
1913
  msgstr "Каждые 6 часов"
1914
 
1915
+ #: cerber-scanner.php:1495
1916
  msgid "Every 3 hours"
1917
  msgstr "Каждые 3 часа"
1918
 
1919
+ #: cerber-scanner.php:1494
1920
  msgid "Every hour"
1921
  msgstr "Каждый час"
1922
 
1923
+ #: dashboard.php:1790 dashboard.php:1792 cerber-scanner.php:1493
1924
+ #: cerber-users.php:20 cerber-users.php:446 settings.php:720 settings.php:748
1925
+ #: settings.php:857 settings.php:866 settings.php:1209
1926
  msgid "Disabled"
1927
  msgstr "Отключено"
1928
 
1929
+ #: cerber-scanner.php:1470
1930
  msgid "New file"
1931
  msgstr "Новый файл"
1932
 
1933
+ #: cerber-scanner.php:1467
1934
  msgid "Unwanted file extension"
1935
  msgstr "Файл с нежелательным расширением"
1936
 
1937
+ #: cerber-scanner.php:1466 cerber-scanner.php:2706
1938
  msgid "Suspicious directives found"
1939
  msgstr "Найдены подозрительные директивы"
1940
 
1941
+ #: cerber-scanner.php:1457 admin/cerber-admin.php:79
1942
  msgid "Checksum mismatch"
1943
  msgstr "Несовпадение контрольной суммы"
1944
 
1945
+ #: dashboard.php:1791 cerber-scanner.php:938
1946
  msgid "Quick Scan"
1947
  msgstr "Быстрая проверка"
1948
 
1949
+ #: dashboard.php:1793 cerber-scanner.php:938
1950
  msgid "Full Scan"
1951
  msgstr "Полная проверка"
1952
 
1953
+ #: admin/cerber-admin.php:177
1954
  msgid "It seems this website has never been scanned. To start scanning click the button below."
1955
  msgstr "Похоже этот сайт еще не проверялся, нажмите кнопку ниже для начала проверки."
1956
 
1957
+ #: admin/cerber-admin.php:168
1958
  msgid "Previous scan started %s has not been completed. Continue scanning?"
1959
  msgstr "Предыдущая попытка проверки, начатая %s, не завершена. Продолжить проверку?"
1960
 
1961
+ #: admin/cerber-admin.php:164
1962
  msgid "Currently a scheduled scan in progress. Please wait until it is finished."
1963
  msgstr "Сейчас выполняется запланированная проверка. Дождитесь пока она завершится."
1964
 
1965
+ #: cerber-load.php:4265
1966
  msgid "Scanner Report"
1967
  msgstr "Отчет проверки"
1968
 
1969
+ #: dashboard.php:4725
1970
  msgid "Scheduling"
1971
  msgstr "Планирование"
1972
 
1974
  msgid "WP Cerber Security, Antispam & Malware Scan"
1975
  msgstr "WP Cerber Security, Antispam & Malware Scan"
1976
 
1977
+ #: settings.php:889
1978
  msgid "Delete quarantined files after"
1979
  msgstr "Удалять файлы карантина через"
1980
 
1981
+ #: settings.php:880
1982
  msgid "Scan session directory"
1983
  msgstr "Проверять каталог файлов сессий"
1984
 
1985
+ #: settings.php:876
1986
  msgid "Scan temporary directory"
1987
  msgstr "Проверять каталог временных файлов"
1988
 
1989
+ #: settings.php:847
1990
  msgid "Directories to exclude"
1991
  msgstr "Каталоги для исключения"
1992
 
1993
+ #: settings.php:844
1994
  msgid "Specify file extensions to search for. Full scan only. Use comma to separate items."
1995
  msgstr "Укажите расширения файлов для поиска. Используется только при полной проверке. Испольуйте запятую для разделения элементов."
1996
 
1997
+ #: settings.php:840
1998
  msgid "Unwanted file extensions"
1999
  msgstr "Нежелательные расширения файлов"
2000
 
2001
+ #: settings.php:837
2002
  msgid "Specify custom PHP code signatures. One item per line. To specify a REGEX pattern, enclose a whole line in two braces."
2003
  msgstr "Укажите пользовательские подписи PHP кода. Один элемент на строку. Для использования регулярных выражений, включите строку в фигурные скобки { }."
2004
 
2005
+ #: settings.php:833
2006
  msgid "Custom signatures"
2007
  msgstr "Пользовательские отпечатки"
2008
 
2009
+ #: settings.php:828
2010
  msgid "Scanner settings"
2011
  msgstr "Настройки сканера"
2012
 
2013
+ #: settings.php:186
2014
  msgid "Disable dashboard redirection"
2015
  msgstr "Отключить перенаправление с консоли"
2016
 
2017
+ #: settings.php:165 settings.php:526 settings.php:726
2018
  msgid "Use White IP Access List"
2019
  msgstr "Использовать белый список IP"
2020
 
2021
+ #: cerber-scanner.php:4818 admin/cerber-admin.php:103
2022
  msgid "Issues total"
2023
  msgstr "Всего проблем"
2024
 
2025
+ #: admin/cerber-admin.php:103
2026
  msgid "Critical issues"
2027
  msgstr "Критические проблемы"
2028
 
2029
+ #: admin/cerber-admin.php:96
2030
  msgid "Files to scan"
2031
  msgstr "Файлы для проверки"
2032
 
2033
+ #: cerber-scanner.php:2526
2034
  msgid "Custom signature found"
2035
  msgstr "Найден пользовательский отпечаток"
2036
 
2037
+ #: admin/cerber-admin.php:83
2038
  msgid "Unwanted extensions"
2039
  msgstr "Нежелательные расширения"
2040
 
2041
+ #: cerber-scanner.php:1463
2042
  msgid "Executable code found"
2043
  msgstr "Обнаружен исполняемый код"
2044
 
2045
+ #: cerber-scanner.php:1462
2046
  msgid "Unattended suspicious file"
2047
  msgstr "Нештатный подозрительный файл"
2048
 
2049
+ #: cerber-scanner.php:1460
2050
  msgid "Suspicious code found"
2051
  msgstr "Найден подозрительный код"
2052
 
2053
+ #: cerber-scanner.php:1469
2054
  msgid "Content has been modified"
2055
  msgstr "Содержимое изменено"
2056
 
2057
+ #: cerber-scanner.php:1455 cerber-scanner.php:4645
2058
  msgid "Unable to open file"
2059
  msgstr "Невозможно открыть файл"
2060
 
2061
+ #: cerber-scanner.php:1454
2062
  msgid "Unable to process file"
2063
  msgstr "Невозможно обработать файл"
2064
 
2065
+ #: cerber-scanner.php:1452
2066
  msgid "Local file doesn't exist"
2067
  msgstr "Локальный файл отсутствует"
2068
 
2069
+ #: cerber-scanner.php:1449
2070
  msgid "Unable to check the integrity of the theme due to a network error"
2071
  msgstr "Невозможно проверить целостность темы из-за ошибки сети"
2072
 
2073
+ #: cerber-scanner.php:1448
2074
  msgid "Unable to check the integrity of WordPress files due to a network error"
2075
  msgstr "Невозможно проверить целостность WordPress из-за ошибки сети"
2076
 
2077
+ #: cerber-scanner.php:1447
2078
  msgid "Unable to check the integrity of the plugin due to a network error"
2079
  msgstr "Невозможно проверить целостность плагина из-за ошибки сети"
2080
 
2081
+ #: cerber-scanner.php:1446
2082
  msgid "Integrity data not found"
2083
  msgstr "Данные о целостности не найдены"
2084
 
2085
+ #: cerber-scanner.php:1439
2086
  msgid "Verified"
2087
  msgstr "Проверено"
2088
 
2089
+ #: admin/cerber-admin.php:219
2090
  msgid "Delete"
2091
  msgstr "Удалить"
2092
 
2093
+ #: admin/cerber-admin.php:183
2094
  msgid "Continue Scanning"
2095
  msgstr "Продолжить проверку"
2096
 
2097
+ #: admin/cerber-admin.php:182
2098
  msgid "Stop Scanning"
2099
  msgstr "Остановить проверку"
2100
 
2101
+ #: admin/cerber-admin.php:181
2102
  msgid "Start Full Scan"
2103
  msgstr "Начать полную проверку"
2104
 
2105
+ #: admin/cerber-admin.php:180
2106
  msgid "Start Quick Scan"
2107
  msgstr "Начать быструю проверку"
2108
 
2109
+ #: dashboard.php:4723
2110
  msgid "Security Scanner"
2111
  msgstr "Сканер безопасности"
2112
 
2113
+ #: dashboard.php:67 dashboard.php:4721
2114
  msgid "Site Integrity"
2115
  msgstr "Целостность сайта"
2116
 
2117
+ #: settings.php:129
2118
  msgid "If you forget your Custom login URL, you will be unable to log in."
2119
  msgstr "Если вы забудете ваш пользовательский URL входа, то вы не сможете войти."
2120
 
2121
+ #: settings.php:129
2122
  msgid "Be careful about enabling these options."
2123
  msgstr "Будьте осторожны при включении этих настроек."
2124
 
2125
+ #: common.php:1399
2126
  msgid "Denied"
2127
  msgstr "Запрещено"
2128
 
2129
+ #: settings.php:734
2130
  msgid "To specify a REGEX pattern, enclose a whole line in two braces."
2131
  msgstr "Для использования регулярных выражений заключите строку целиком в фигурные скобки { }."
2132
 
2133
+ #: admin/cerber-settings.php:650
2134
  msgid "Plugin initialization mode has not been changed"
2135
  msgstr "Режим инициализации плагина не был изменен"
2136
 
2137
+ #: settings.php:143
2138
  msgid "Standard mode"
2139
  msgstr "Стандартный режим"
2140
 
2141
+ #: settings.php:142
2142
  msgid "Legacy mode"
2143
  msgstr "Старый режим"
2144
 
2145
+ #: settings.php:139
2146
  msgid "Load security engine"
2147
  msgstr "Загрузка движка безопасности"
2148
 
2149
+ #: settings.php:136
2150
  msgid "Plugin initialization"
2151
  msgstr "Инициализация плагина"
2152
 
2153
+ #: common.php:2784
2154
  msgid "Unable to delete the file"
2155
  msgstr "Невозможно удалить файл"
2156
 
2157
+ #: common.php:2778
2158
  msgid "Unable to copy the file"
2159
  msgstr "Невозможно скопировать файл"
2160
 
2161
+ #: common.php:2775
2162
  msgid "File not found"
2163
  msgstr "Файл не найден"
2164
 
2165
+ #: common.php:2772
2166
  msgid "Destination folder access denied"
2167
  msgstr "Доступ к каталогу назначения закрыт"
2168
 
2169
+ #: common.php:2767
2170
  msgid "Unable to create the directory"
2171
  msgstr "Невозможно создать каталог"
2172
 
2173
+ #: common.php:1366
2174
  msgid "File upload denied"
2175
  msgstr "Предотвращена загрузка файла"
2176
 
2177
+ #: settings.php:359
2178
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
2179
  msgstr "Блокировка неавторизованного доступа к load-scripts.php и load-styles.php"
2180
 
2181
+ #: settings.php:358
2182
  msgid "Protect admin scripts"
2183
  msgstr "Защита скриптов администратора"
2184
 
2185
+ #: cerber-load.php:4029
2186
  msgid "We're sorry, you are not allowed to proceed"
2187
  msgstr "Извините, вам не разрешено продолжить"
2188
 
2189
+ #: settings.php:734
2190
  msgid "Enter a request URI to exclude the request from inspection. One item per line."
2191
  msgstr "Введите URI запроса для исключения из инспекции. Один элемент на строку."
2192
 
2193
+ #: settings.php:730
2194
  msgid "Request whitelist"
2195
  msgstr "Белый список запросов"
2196
 
2197
+ #: settings.php:808
2198
  msgid "milliseconds"
2199
  msgstr "миллисекунд"
2200
 
2201
+ #: settings.php:807
2202
  msgid "Page generation time threshold"
2203
  msgstr "Порог времени генерации страницы"
2204
 
2205
+ #: settings.php:799
2206
  msgid "Save request cookies"
2207
  msgstr "Сохранять куки запроса"
2208
 
2209
+ #: settings.php:795
2210
  msgid "Save $_SERVER"
2211
  msgstr "Сохранять $_SERVER"
2212
 
2213
+ #: settings.php:790
2214
  msgid "Save request headers"
2215
  msgstr "Сохранять заголовки запроса"
2216
 
2217
+ #: settings.php:783
2218
  msgid "Mask these form fields"
2219
  msgstr "Маскировать эти поля форм"
2220
 
2221
+ #: settings.php:779
2222
  msgid "Save request fields"
2223
  msgstr "Сохранять поля запросов"
2224
 
2225
+ #: settings.php:775
2226
  msgid "Ignore crawlers"
2227
  msgstr "Игнорировать веб-пауков"
2228
 
2229
+ #: settings.php:771
2230
  msgid "All traffic"
2231
  msgstr "Весь трафик"
2232
 
2233
+ #: settings.php:770
2234
  msgid "Smart"
2235
  msgstr "Умная выборка"
2236
 
2237
+ #: settings.php:769
2238
  msgid "Logging disabled"
2239
  msgstr "Журнал отключен"
2240
 
2241
+ #: settings.php:766
2242
  msgid "Logging mode"
2243
  msgstr "Режим журнала"
2244
 
2245
+ #: settings.php:717
2246
  msgid "Enable traffic inspection"
2247
  msgstr "Включить инспектирование трафика"
2248
 
2249
+ #: dashboard.php:4070
2250
  msgid "Advanced Search"
2251
  msgstr "Улучшенный поиск"
2252
 
2253
+ #: dashboard.php:4083
2254
  msgid "Refresh"
2255
  msgstr "Обновить"
2256
 
2257
+ #: dashboard.php:4060
2258
  msgid "Longer than"
2259
  msgstr "Дольше чем"
2260
 
2261
+ #: dashboard.php:4048
2262
  msgid "Page Not Found"
2263
  msgstr "Страница не найдена"
2264
 
2265
+ #: dashboard.php:4046
2266
  msgid "Form submissions"
2267
  msgstr "Отправки форм"
2268
 
2269
+ #: dashboard.php:980 dashboard.php:4043
2270
  msgid "Not logged in visitors"
2271
  msgstr "Неавторизованные посетители"
2272
 
2273
+ #: dashboard.php:4038
2274
  msgid "All requests"
2275
  msgstr "Все запросы"
2276
 
2277
+ #: dashboard.php:4030
2278
  msgid "No requests have been logged."
2279
  msgstr "В журнале нет данных о запросах."
2280
 
2281
+ #: dashboard.php:4013
2282
  msgid "User Agent"
2283
  msgstr "User Agent"
2284
 
2285
+ #: dashboard.php:4012 cerber-users.php:983
2286
  msgid "Host Info"
2287
  msgstr "Информация о хосте"
2288
 
2289
+ #: dashboard.php:4010
2290
  msgid "Request"
2291
  msgstr "Запрос"
2292
 
2293
+ #: dashboard.php:4662
2294
  msgid "Live Traffic"
2295
  msgstr "Живой трафик"
2296
 
2297
+ #: dashboard.php:1805 cerber-users.php:1149
2298
  msgid "Traffic"
2299
  msgstr "Трафик"
2300
 
2301
+ #: dashboard.php:1770
2302
  msgid "no connection"
2303
  msgstr "нет подключения"
2304
 
2305
+ #: dashboard.php:1765
2306
  msgid "enabled"
2307
  msgstr "включено"
2308
 
2309
+ #: dashboard.php:56 dashboard.php:1766 dashboard.php:4660
2310
  msgid "Traffic Inspector"
2311
  msgstr "Инспектор трафика"
2312
 
2314
  msgid "Cerber Traffic Inspector"
2315
  msgstr "Цербер-инспектор трафика"
2316
 
2317
+ #: dashboard.php:1555
2318
  msgid "Last seen"
2319
  msgstr "Последний раз"
2320
 
2321
+ #: common.php:1842
2322
  msgid "Not specified"
2323
  msgstr "Не указано"
2324
 
2325
+ #: common.php:1364 common.php:1460
2326
  msgid "Probing for vulnerable PHP code"
2327
  msgstr "Проверка на уязвимый PHP-код"
2328
 
2329
+ #: common.php:210
2330
  msgid "Check for requests"
2331
  msgstr "Проверить запросы"
2332
 
2333
+ #: dashboard.php:344
2334
  msgid "You cannot add your IP address or network"
2335
  msgstr "Вы не можете добавить ваш IP-адрес или сеть"
2336
 
2337
+ #: dashboard.php:322
2338
  msgid "Optional comment for this entry"
2339
  msgstr "Необязательный комментарий к этой записи"
2340
 
2341
+ #: cerber-load.php:4419
2342
  msgid "Attempts to log in with non-existing usernames"
2343
  msgstr "Попытка войти с несуществующим именем пользователя"
2344
 
2345
+ #: cerber-load.php:4393
2346
  msgid "Weekly Report"
2347
  msgstr "Недельный отчет"
2348
 
2349
+ #: cerber-load.php:4323
2350
  msgid "Your last sign-in was %s from %s"
2351
  msgstr "Ваш последний вход был %s с %s"
2352
 
2353
+ #: settings.php:691
2354
  msgid "Enable reporting"
2355
  msgstr "Включить отчеты"
2356
 
2357
+ #: settings.php:1061
2358
  msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
2359
  msgstr "Введите часть строки или пути запроса для исключения запроса из проверки движком. Один элемент на строку."
2360
 
2361
+ #: settings.php:567 settings.php:575
2362
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
2363
  msgstr "Для использования регулярных выражений оберните их в два прямых слеша."
2364
 
2365
+ #: settings.php:200
2366
  msgid "Display simple 404 page"
2367
  msgstr "Показать простую страницу 404"
2368
 
2369
+ #: settings.php:199
2370
  msgid "Use 404 template from the active theme"
2371
  msgstr "Использовать шаблон 404 активной темы"
2372
 
2373
+ #: dashboard.php:3389
2374
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
2375
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
2376
  msgstr "Выбранным странам не разрешено %s, остальным странам разрешено"
2377
 
2378
+ #: dashboard.php:3386
2379
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
2380
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
2381
  msgstr "Выбранным странам разрешено %s, остальным странам - нет"
2382
 
2383
+ #: dashboard.php:3290
2384
  msgid "Not permitted for one country"
2385
  msgid_plural "Not permitted for %d countries"
2386
  msgstr[0] "Не разрешено в одной стране"
2387
  msgstr[1] "Не разрешено в %d странах"
2388
  msgstr[2] "Не разрешено в %d странах"
2389
 
2390
+ #: dashboard.php:586
2391
  msgid "Unable to send email to"
2392
  msgstr "Невозможно отправить email на"
2393
 
2394
+ #: dashboard.php:583
2395
  msgid "Email has been sent to"
2396
  msgstr "Сообщение было отправлено на электронный адрес"
2397
 
2398
+ #: cerber-load.php:4405
2399
  msgid "Activity details"
2400
  msgstr "Подробно об активности"
2401
 
2402
+ #: cerber-load.php:4299
2403
  msgid "Your license is valid until"
2404
  msgstr "Ваша лицензия действительна до"
2405
 
2406
+ #: cerber-load.php:4294
2407
  msgid "Your login page:"
2408
  msgstr "Ваша страница входа:"
2409
 
2410
+ #: cerber-load.php:4258 cerber-load.php:4268
2411
  msgid "To change reporting settings visit"
2412
  msgstr "Для смены настроек отчетности зайдите"
2413
 
2414
+ #: cerber-load.php:4255
2415
  msgid "Weekly report"
2416
  msgstr "Недельный отчет"
2417
 
2419
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
2420
  msgstr ">>> Переводите WP Cerber? Получите PRO лицензию бесплатно, оставьте контакты здесь: https://wpcerber.com/contact/"
2421
 
2422
+ #: admin/cerber-settings.php:572
2423
  msgid "Click to send now"
2424
  msgstr "Нажмите для отправки сейчас"
2425
 
2426
+ #: admin/cerber-settings.php:543
2427
  msgid "Saturday"
2428
  msgstr "Суббота"
2429
 
2430
+ #: admin/cerber-settings.php:542
2431
  msgid "Friday"
2432
  msgstr "Пятница"
2433
 
2434
+ #: admin/cerber-settings.php:541
2435
  msgid "Thursday"
2436
  msgstr "Четверг"
2437
 
2438
+ #: admin/cerber-settings.php:540
2439
  msgid "Wednesday"
2440
  msgstr "Среда"
2441
 
2442
+ #: admin/cerber-settings.php:539
2443
  msgid "Tuesday"
2444
  msgstr "Вторник"
2445
 
2446
+ #: admin/cerber-settings.php:538
2447
  msgid "Monday"
2448
  msgstr "Понедельник"
2449
 
2450
+ #: admin/cerber-settings.php:537
2451
  msgid "Sunday"
2452
  msgstr "Воскресенье"
2453
 
2454
+ #: settings.php:687
2455
  msgid "Weekly reports"
2456
  msgstr "Недельные отчеты"
2457
 
2458
+ #: dashboard.php:2683
2459
  msgid "Main settings"
2460
  msgstr "Основные настройки"
2461
 
2462
+ #: admin/cerber-settings.php:679 admin/cerber-settings.php:680
2463
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
2464
  msgstr "Если вы используете плагин кеширования, вам нужно добавить новый URL входа в список исключений кеширования"
2465
 
2466
+ #: settings.php:1076
2467
  msgid "Mark it as spam"
2468
  msgstr "Пометить как спам"
2469
 
2470
+ #: settings.php:1076
2471
  msgid "Deny it completely"
2472
  msgstr "Полностью запретить"
2473
 
2474
+ #: settings.php:589
2475
  msgid "Sort users in dashboard"
2476
  msgstr "Сортировать пользователей в консоли"
2477
 
2478
+ #: settings.php:551
2479
  msgid "Registration limit"
2480
  msgstr "Предел регистраций"
2481
 
2482
+ #: settings.php:400
2483
  msgid "Allow REST API for logged in users"
2484
  msgstr "Разрешить REST API для авторизованных пользователей"
2485
 
2486
+ #: dashboard.php:3417
2487
  msgid "Use REST API"
2488
  msgstr "использование REST API"
2489
 
2490
+ #: dashboard.php:3416
2491
  msgid "Use XML-RPC"
2492
  msgstr "использование XML-RPC"
2493
 
2494
+ #: dashboard.php:3413
2495
  msgid "Register on the website"
2496
  msgstr "регистрация на сайте"
2497
 
2498
+ #: dashboard.php:3409
2499
  msgid "Log in to the website"
2500
  msgstr "авторизация на сайте"
2501
 
2502
+ #: dashboard.php:3415
2503
  msgid "Post comments"
2504
  msgstr "отправка комментариев"
2505
 
2506
+ #: dashboard.php:3414
2507
  msgid "Submit forms"
2508
  msgstr "отправка форм"
2509
 
2510
+ #: dashboard.php:3382
2511
  msgid "Click on a country name to add it to the list of selected countries"
2512
  msgstr "Нажмите на страну чтобы добавить ее в список выбранных"
2513
 
2514
+ #: dashboard.php:3267
2515
  msgid "Start typing here to find a country"
2516
  msgstr "Начните печатать тут чтобы найти страну"
2517
 
2518
+ #: cerber-load.php:4236 cerber-load.php:5262
2519
  msgid "Getting Started Guide"
2520
  msgstr "Руководство с чего начать"
2521
 
2522
+ #: dashboard.php:2345
2523
  msgid "in the last 24 hours"
2524
  msgstr "В последние 24 часа"
2525
 
2526
+ #: dashboard.php:1683 cerber-users.php:52 cerber-users.php:1115
2527
  msgid "You"
2528
  msgstr "Вы"
2529
 
2530
+ #: dashboard.php:1523 dashboard.php:1613
2531
  msgid "Registered"
2532
  msgstr "Зарегистрирован"
2533
 
2534
+ #: dashboard.php:1612
2535
  msgid "Failed login attempts"
2536
  msgstr "Неудачные попытки входа"
2537
 
2538
+ #: common.php:1459
2539
  msgid "Multiple suspicious activities were detected"
2540
  msgstr "Обнаружена множественная подозрительная активность"
2541
 
2542
+ #: common.php:1398
2543
  msgid "Multiple suspicious activities"
2544
  msgstr "Множественная подозрительная активность"
2545
 
2546
+ #: common.php:1397
2547
  msgid "Limit reached"
2548
  msgstr "Предел достигнут"
2549
 
2550
+ #: settings.php:1060
2551
  msgid "Query whitelist"
2552
  msgstr "Белый список запросов"
2553
 
2554
+ #: settings.php:414
2555
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
2556
  msgstr "Укажите пространства имен REST API разрешенных при отключении REST API, одно имя на строку."
2557
 
2558
+ #: settings.php:395
2559
  msgid "Block access to WordPress REST API except any of the following"
2560
  msgstr "Блокировать доступ к REST API кроме следующего"
2561
 
2562
+ #: dashboard.php:3459
2563
  msgid "Security rules have been updated"
2564
  msgstr "Правила безопасности обновлены"
2565
 
2566
+ #: dashboard.php:3298
2567
  msgid "No rule"
2568
  msgstr "Нет правила"
2569
 
2570
+ #: dashboard.php:3287
2571
  msgid "Permitted for one country"
2572
  msgid_plural "Permitted for %d countries"
2573
  msgstr[0] "Разрешается для одной страны"
2574
  msgstr[1] "Разрешается для %d стран"
2575
  msgstr[2] "Разрешается для %d стран"
2576
 
2577
+ #: dashboard.php:4708
2578
  msgid "Countries"
2579
  msgstr "Страны"
2580
 
2581
+ #: common.php:284
2582
  msgid "Spam form submissions denied"
2583
  msgstr "Заблокированы отправки форм спама"
2584
 
2585
+ #: dashboard.php:61 dashboard.php:4706
2586
  msgid "Security Rules"
2587
  msgstr "Правила безопасности"
2588
 
2590
  msgid "Cerber Security Rules"
2591
  msgstr "Правила безопасности Цербер"
2592
 
2593
+ #: dashboard.php:197 dashboard.php:1109
2594
  msgid "Country"
2595
  msgstr "Страна"
2596
 
2597
+ #: common.php:1396
2598
  msgid "Blocked by country rule"
2599
  msgstr "Заблокирован по ограничению для страны"
2600
 
2601
+ #: common.php:1395
2602
  msgid "Malicious activity detected"
2603
  msgstr "Обнаружена вредоносная активность"
2604
 
2605
+ #: common.php:1391
2606
  msgid "Citadel mode is active"
2607
  msgstr "Режим цитадель активен"
2608
 
2609
+ #: common.php:1390
2610
  msgid "Bot detected"
2611
  msgstr "Обнаружен бот"
2612
 
2613
+ #: common.php:1369
2614
  msgid "XML-RPC request denied"
2615
  msgstr "Запрос XML-RPC заблокирован"
2616
 
2617
+ #: common.php:1368
2618
  msgid "Request to REST API denied"
2619
  msgstr "Запрос к REST API заблокирован"
2620
 
2621
+ #: common.php:1342
2622
  msgid "Comment denied"
2623
  msgstr "Комментарий заблокирован"
2624
 
2625
+ #: common.php:1341
2626
  msgid "Form submission denied"
2627
  msgstr "Отправка формы заблокирована"
2628
 
2629
+ #: dashboard.php:4782
2630
  msgid "License"
2631
  msgstr "Лицензия"
2632
 
2633
+ #: settings.php:1056
2634
  msgid "Disable bot detection engine for logged in users"
2635
  msgstr "Отключить определение ботов для авторизованных пользователей"
2636
 
2637
+ #: dashboard.php:979 dashboard.php:1759 dashboard.php:4042 settings.php:399
2638
+ #: settings.php:1055
2639
  msgid "Logged in users"
2640
  msgstr "Авторизованные пользователи"
2641
 
2642
+ #: settings.php:1051
2643
  msgid "Use less restrictive policies (allow AJAX)"
2644
  msgstr "Использовать менее жесткую политику (разрешить AJAX)"
2645
 
2646
+ #: settings.php:1050
2647
  msgid "Safe mode"
2648
  msgstr "Безопасный режим"
2649
 
2650
+ #: settings.php:1046
2651
  msgid "Adjust anti-spam engine"
2652
  msgstr "Настроить антиспам-движок"
2653
 
2654
+ #: settings.php:1040
2655
  msgid "Protect all forms on the website with bot detection engine"
2656
  msgstr "Защитить все формы на сайте через определение ботов"
2657
 
2658
+ #: settings.php:1039
2659
  msgid "Other forms"
2660
  msgstr "Другие формы"
2661
 
2662
+ #: common.php:1340
2663
  msgid "Spam form submission denied"
2664
  msgstr "Отправка формы со спамом заблокирована"
2665
 
2666
+ #: cerber-load.php:1889
2667
  msgid "Sorry, human verification failed."
2668
  msgstr "Извините, проверка на человека не удалась."
2669
 
2670
+ #: settings.php:1081
2671
  msgid "Move spam comments to trash after"
2672
  msgstr "Удалить спам комментарии в корзину после"
2673
 
2674
+ #: settings.php:1079
2675
  msgid "Trash spam comments"
2676
  msgstr "Удалить спам комментарии в корзину"
2677
 
2678
+ #: settings.php:1074
2679
  msgid "If a spam comment detected"
2680
  msgstr "Если обнаружен спам комментарий"
2681
 
2682
+ #: settings.php:1070
2683
  msgid "Comment processing"
2684
  msgstr "Обработка комментария"
2685
 
2686
+ #: settings.php:1035
2687
  msgid "Protect registration form with bot detection engine"
2688
  msgstr "Защита регистрации через определение ботов"
2689
 
2690
+ #: settings.php:1030
2691
  msgid "Protect comment form with bot detection engine"
2692
  msgstr "Защита комментариев через определение ботов"
2693
 
2694
+ #: settings.php:1024
2695
  msgid "Cerber anti-spam engine"
2696
  msgstr "Движок Цербер-антиспам"
2697
 
2699
  msgid "Cerber anti-spam settings"
2700
  msgstr "Настройка Цербер-антиспам"
2701
 
2702
+ #: common.php:1458
2703
  msgid "Bot activity is detected"
2704
  msgstr "Обнаружена активность ботов"
2705
 
2706
+ #: dashboard.php:4640
2707
  msgid "Anti-spam and bot detection settings"
2708
  msgstr "Антиспам и настройки определения ботов"
2709
 
2710
+ #: dashboard.php:4779
2711
  msgid "Diagnostic"
2712
  msgstr "Диагностика"
2713
 
2714
+ #: cerber-load.php:1550 cerber-load.php:1556 cerber-load.php:1581
2715
+ #: cerber-load.php:1588
 
 
 
 
2716
  msgid "You are not allowed to register."
2717
  msgstr "Вам не разрешено зарегистрироваться."
2718
 
2719
+ #: common.php:286
2720
  msgid "Lockouts occurred"
2721
  msgstr "Блокировок произошло"
2722
 
2723
+ #: common.php:285
2724
  msgid "Malicious IP addresses detected"
2725
  msgstr "Найдены вредоносные IP адреса"
2726
 
2727
+ #: common.php:283
2728
  msgid "Spam comments denied"
2729
  msgstr "Спам-комментарии отклонены"
2730
 
2731
+ #: common.php:280
2732
  msgid "Malicious activities mitigated"
2733
  msgstr "Вредоносная активность снижена"
2734
 
2735
+ #: dashboard.php:847 dashboard.php:1111
2736
  msgid "Event"
2737
  msgstr "Событие"
2738
 
2739
+ #: common.php:1363
2740
  msgid "Attempt to register denied"
2741
  msgstr "Попытка регистрации отклонена"
2742
 
2743
+ #: common.php:1362
2744
  msgid "Attempt to log in denied"
2745
  msgstr "Попытка входа отклонена"
2746
 
2747
+ #: common.php:1339
2748
  msgid "Spam comment denied"
2749
  msgstr "Спам коммнтарий отклонен"
2750
 
2751
+ #: settings.php:244
2752
  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."
2753
  msgstr "В режиме Цитадель никто не может войти кроме как с IP в белом списке. Активные сессии пользователей не будут затронуты."
2754
 
2755
+ #: settings.php:1147
2756
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
2757
  msgstr "Блокировать IP адрес на %s минут после %s неудачных попыток в течении %s минут"
2758
 
2759
+ #: settings.php:1146
2760
  msgid "Limit attempts"
2761
  msgstr "Ограничение попыток"
2762
 
2763
+ #: dashboard.php:71 settings.php:1136
2764
  msgid "Anti-spam"
2765
  msgstr "Антиспам"
2766
 
2767
+ #: settings.php:166
2768
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
2769
  msgstr "Применить правила входа для IP адресов в белом списке"
2770
 
2771
+ #: common.php:1457
2772
  msgid "Limit on failed reCAPTCHA verifications is reached"
2773
  msgstr "Достигнут предел проверки reCAPTCHA"
2774
 
2775
+ #: common.php:1352
2776
  msgid "Password reset requested"
2777
  msgstr "Запрошен сброс пароля"
2778
 
2779
+ #: settings.php:1102
2780
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
2781
  msgstr "(не включайте, если у вас нет или вы не вводили ключ сайта и секретный ключ для невидимой версии)"
2782
 
2783
+ #: settings.php:1142
2784
  msgid "Disable reCAPTCHA for logged in users"
2785
  msgstr "Отключить reCAPTCHA для авторизованных пользователей"
2786
 
2787
+ #: settings.php:1137
2788
  msgid "Enable reCAPTCHA for WordPress comment form"
2789
  msgstr "Включить reCAPTCHA в форме комментариев WordPress"
2790
 
2791
+ #: settings.php:1029
2792
  msgid "Comment form"
2793
  msgstr "Форма комментариев"
2794
 
2795
+ #: settings.php:1102
2796
  msgid "Enable invisible reCAPTCHA"
2797
  msgstr "Включить невидимую reCAPTCHA"
2798
 
2799
+ #: settings.php:1101
2800
  msgid "Invisible reCAPTCHA"
2801
  msgstr "невидимая reCAPTCHA"
2802
 
2803
+ #: common.php:1609
2804
  msgid "%s ago"
2805
  msgstr "%s назад"
2806
 
2807
+ #: settings.php:120
2808
  msgid "Not available"
2809
  msgstr "Недоступно"
2810
 
2811
+ #: settings.php:116
2812
  msgid "No devices found"
2813
  msgstr "Устройства не найдены"
2814
 
2815
+ #: settings.php:113
2816
  msgid "All connected devices"
2817
  msgstr "Все подключенные устройства"
2818
 
2819
+ #: settings.php:654 settings.php:702 settings.php:785 settings.php:948
2820
  msgid "Use comma to specify multiple values"
2821
  msgstr "Используйте запятую для разделения множественных значений"
2822
 
2823
+ #: settings.php:644
2824
  msgid "Email notifications"
2825
  msgstr "Уведомления по эл.почте"
2826
 
2827
+ #: settings.php:196
2828
  msgid "Display 404 page"
2829
  msgstr "Показывать страницу 404"
2830
 
2831
+ #: settings.php:672
2832
  msgid "Push notifications"
2833
  msgstr "Push уведомления"
2834
 
2835
+ #: dashboard.php:1151
2836
  msgid "Search for IP or username"
2837
  msgstr "Поиск IP или имени пользователя"
2838
 
2839
+ #: cerber-tools.php:320
2840
  msgid "Unsubscribe"
2841
  msgstr "Отменить подписку"
2842
 
2843
+ #: dashboard.php:850
2844
  msgid "User login"
2845
  msgstr "Имя пользователя"
2846
 
2847
+ #: dashboard.php:3559
2848
  msgid "IP address"
2849
  msgstr "IP адрес"
2850
 
2851
+ #: dashboard.php:1135 dashboard.php:4077
2852
  msgid "Export"
2853
  msgstr "Экспорт"
2854
 
2855
+ #: dashboard.php:851 dashboard.php:3565
2856
  msgid "User ID"
2857
  msgstr "ID пользователя"
2858
 
2860
  msgid "Cerber Dashboard"
2861
  msgstr "Консоль Cerber"
2862
 
2863
+ #: dashboard.php:1162
2864
  msgid "Filter"
2865
  msgstr "Фильтр"
2866
 
2868
  msgid "Cerber tools"
2869
  msgstr "Инструменты Cerber"
2870
 
2871
+ #: cerber-load.php:4249 cerber-load.php:4250
2872
  msgid "A new activity has been recorded"
2873
  msgstr "Отмечена новая активность"
2874
 
2875
+ #: settings.php:321
2876
  msgid "if empty, the default format %s will be used"
2877
  msgstr "Если пусто, будет использован формат по умолчанию %s"
2878
 
2879
+ #: cerber-load.php:4957 cerber-users.php:978
2880
  msgid "User"
2881
  msgstr "Пользователь"
2882
 
2883
+ #: cerber-load.php:4965
2884
  msgid "Search string"
2885
  msgstr "Строка поиска"
2886
 
2887
+ #: settings.php:312
2888
  msgid "Preferences"
2889
  msgstr "Настройки"
2890
 
2891
+ #: settings.php:320
2892
  msgid "Date format"
2893
  msgstr "Формат даты"
2894
 
2895
+ #: dashboard.php:54 dashboard.php:1803 dashboard.php:2682 dashboard.php:4594
2896
  msgid "Dashboard"
2897
  msgstr "Консоль"
2898
 
2899
+ #: settings.php:1132
2900
  msgid "Enable reCAPTCHA for WooCommerce login form"
2901
  msgstr "Включить reCAPTCHA для формы входа WooCommerce"
2902
 
2903
+ #: settings.php:1127
2904
  msgid "Enable reCAPTCHA for WordPress login form"
2905
  msgstr "Включить reCAPTCHA для формы входа WordPress"
2906
 
2907
+ #: settings.php:1122
2908
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
2909
  msgstr "Включить reCAPTCHA для формы восстановления пароля WooCommerce"
2910
 
2911
+ #: settings.php:1117
2912
  msgid "Enable reCAPTCHA for WordPress lost password form"
2913
  msgstr "Включить reCAPTCHA для формы восстановления пароля WordPress"
2914
 
2915
+ #: settings.php:1112
2916
  msgid "Enable reCAPTCHA for WooCommerce registration form"
2917
  msgstr "Включить reCAPTCHA для формы регистрации WooCommerce"
2918
 
2919
+ #: settings.php:1107
2920
  msgid "Enable reCAPTCHA for WordPress registration form"
2921
  msgstr "Включить reCAPTCHA для формы регистрации WordPress"
2922
 
2923
+ #: settings.php:1034 settings.php:1106
2924
  msgid "Registration form"
2925
  msgstr "Форма регистрации"
2926
 
2927
+ #: settings.php:297
2928
  msgid "Cerber Lab protocol"
2929
  msgstr "протокол Cerber Lab"
2930
 
2931
+ #: settings.php:292
2932
  msgid "Send malicious IP addresses to the Cerber Lab"
2933
  msgstr "Посылать вредоносные IP адреса в Cerber Lab"
2934
 
2935
+ #: settings.php:291
2936
  msgid "Cerber Lab connection"
2937
  msgstr "Подключение Cerber Lab"
2938
 
2939
+ #: dashboard.php:2369
2940
  msgid "Recently locked out IP addresses"
2941
  msgstr "Недавно заблокированые IP адреса"
2942
 
2943
+ #: dashboard.php:958 dashboard.php:2366
2944
  msgid "View all"
2945
  msgstr "Просмотреть все"
2946
 
2947
+ #: dashboard.php:1449
2948
  msgid "Add network to the Black List"
2949
  msgstr "Добавить сеть в черный список"
2950
 
2951
+ #: dashboard.php:1434
2952
  msgid "Network:"
2953
  msgstr "Сеть:"
2954
 
2955
+ #: dashboard.php:4932
2956
  msgid "Incorrect IP address or IP range"
2957
  msgstr "Неверный IP адрес или диапазон адресов"
2958
 
2959
+ #: common.php:1356
2960
  msgid "Request to the Google reCAPTCHA service failed"
2961
  msgstr "Запрос к сервису Google reCAPTCHA не удался"
2962
 
2963
+ #: cerber-lab.php:839
2964
  msgid "NO, maybe later"
2965
  msgstr "НЕТ, возможно позже"
2966
 
2967
+ #: cerber-lab.php:838
2968
  msgid "OK, nail them all"
2969
  msgstr "ОК, прибьем их всех"
2970
 
2971
+ #: cerber-lab.php:837
2972
  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."
2973
  msgstr "Разрешить WP Cerber посылать заблокированные IP адреса в Cerber Lab. Это помогает команде плагина разрабатывать новые алгоритмы для WP Cerber, которые будут защищать WordPress против новых угроз и ботнетов появляюшихся каждый день. Вы всегда можете отключить отсылку в настройках плагина, в любой момент."
2974
 
2975
+ #: cerber-lab.php:836
2976
  msgid "Want to make WP Cerber even more powerful?"
2977
  msgstr "Хотите сделать WP Cerber еще мощнее ?"
2978
 
2981
  msgid "https://wpcerber.com"
2982
  msgstr "https://wpcerber.com"
2983
 
2984
+ #: cerber-load.php:5276
2985
  msgid "Import settings"
2986
  msgstr "Импорт настроек"
2987
 
2988
+ #: cerber-load.php:5244
2989
  msgid "Your IP address is added to the"
2990
  msgstr "Ваш IP адрес добавлен к"
2991
 
2992
+ #: cerber-load.php:5218
2993
  msgid "Can't activate WP Cerber due to a database error."
2994
  msgstr "Невозможно активировать плагин WP Cerber из-за ошибки в базе данных."
2995
 
2996
+ #: cerber-load.php:5208
2997
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
2998
  msgstr "WP Cerber требует WordPress версии %s или выше. У вас версия"
2999
 
3000
+ #: cerber-load.php:5204
3001
  msgid "The WP Cerber requires PHP %s or higher. You are running"
3002
  msgstr "WP Cerber требует PHP версии %s или выше. У вас версия"
3003
 
3004
+ #: cerber-load.php:4302
3005
  msgid "This message was sent by"
3006
  msgstr "Это сообщение было отправлено"
3007
 
3008
+ #: cerber-load.php:4245
3009
  msgid "New Custom login URL"
3010
  msgstr "Новый URL для входа на сайт"
3011
 
3012
+ #: cerber-load.php:4234 cerber-load.php:5259
3013
  msgid "WP Cerber is now active and has started protecting your site"
3014
  msgstr "WP Cerber активен и начал защищать ваш сайт"
3015
 
3016
+ #: cerber-load.php:4233
3017
  msgid "The WP Cerber security plugin is now active"
3018
  msgstr "WP Cerber плагин безопасности активен"
3019
 
3020
+ #: cerber-load.php:4229
3021
  msgid "From country"
3022
  msgstr "Из страны"
3023
 
3024
+ #: cerber-load.php:4226
3025
  msgid "From IP address"
3026
  msgstr "С IP адреса"
3027
 
3028
+ #: cerber-load.php:4225
3029
  msgid "By user"
3030
  msgstr "По пользователю"
3031
 
3032
+ #: cerber-load.php:4219
3033
  msgid "Not logged in"
3034
  msgstr "Нет авторизации"
3035
 
3036
+ #: cerber-load.php:4216 cerber-load.php:4217
3037
  msgid "The WP Cerber security plugin has been deactivated"
3038
  msgstr "WP Cerber плагин деактивирован"
3039
 
3040
+ #: cerber-load.php:4213 cerber-load.php:4224 nexus/cerber-slave-list.php:44
3041
  msgid "Website"
3042
  msgstr "Сайт"
3043
 
3044
+ #: cerber-load.php:4210
3045
  msgid "Hi!"
3046
  msgstr "Привет!"
3047
 
3048
+ #: cerber-load.php:4209 cerber-load.php:4211
3049
  msgid "A new version of WP Cerber is available to install"
3050
  msgstr "Доступна новая версия WP Cerber!"
3051
 
3052
+ #: cerber-load.php:4206
3053
  msgid "View lockouts in dashboard"
3054
  msgstr "Просмотреть список заблокированных IP"
3055
 
3056
+ #: cerber-load.php:4205
3057
  msgid "View activity for this IP"
3058
  msgstr "Посмотреть активность для этого IP"
3059
 
3060
+ #: cerber-load.php:4203
3061
  msgid "Last lockout was added: %s for IP %s"
3062
  msgstr "Последняя блокировка была добавлена %s для IP %s"
3063
 
3064
+ #: cerber-load.php:4202
3065
  msgid "Number of active lockouts"
3066
  msgstr "Число активных блокировок на данный момент"
3067
 
3068
+ #: cerber-load.php:4200
3069
  msgid "Number of lockouts is increasing"
3070
  msgstr "Число блокировок увеличилось"
3071
 
3072
+ #: cerber-load.php:4197
3073
  msgid "unspecified"
3074
  msgstr "неуказано"
3075
 
3076
+ #: cerber-load.php:4173 cerber-load.php:4985
3077
  msgid "View activity in dashboard"
3078
  msgstr "Просмотреть журнал активности"
3079
 
3080
+ #: cerber-load.php:4172
3081
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
3082
  msgstr "Последняя неудачная попытка была в %s с IP адреса %s с логином %s."
3083
 
3084
+ #: cerber-load.php:4171
3085
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
3086
  msgstr "Режим Цитадель активирован после %d неудачных попыток за %d минут."
3087
 
3088
+ #: cerber-load.php:4169
3089
  msgid "Citadel mode is activated"
3090
  msgstr "Активирован режим Цитадель"
3091
 
3092
+ #: cerber-load.php:4145
3093
  msgid "WP Cerber notify"
3094
  msgstr "Уведомление WP Cerber"
3095
 
3096
+ #: common.php:1452
3097
  msgid "Limit on login attempts is reached"
3098
  msgstr "Количество попыток исчерпано"
3099
 
3100
+ #: common.php:1453
3101
  msgid "Attempt to access"
3102
  msgstr "Попытка доступа к"
3103
 
3104
+ #: cerber-load.php:1568
3105
  msgid "Username is not allowed. Please choose another one."
3106
  msgstr "Имя пользователя недопустимо. Выберите другое."
3107
 
3108
+ #: cerber-load.php:1127
3109
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
3110
  msgstr "<strong>ОШИБКА</strong>: Пароль введенный для пользователя %s is некорректен."
3111
 
3112
+ #: cerber-load.php:680
3113
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
3114
  msgstr "Антибот проверка неудачна. Пожалуйста тыкните в квадратную отметку блока reCAPTCHA ниже"
3115
 
3116
+ #: cerber-load.php:651 cerber-load.php:663 cerber-load.php:670
3117
+ #: cerber-load.php:1018 cerber-load.php:1549 cerber-load.php:1555
3118
+ #: cerber-load.php:1560 cerber-load.php:1567 cerber-load.php:1574
3119
+ #: cerber-load.php:1580 cerber-load.php:1587 cerber-load.php:1752
3120
+ #: cerber-load.php:1889 nexus/cerber-nexus-slave.php:204
3121
+ #: nexus/cerber-nexus-slave.php:215 common.php:340 common.php:418
3122
+ #: common.php:423 common.php:429 common.php:434 admin/cerber-settings.php:649
3123
+ #: admin/cerber-settings.php:669 admin/cerber-settings.php:749
3124
+ #: admin/cerber-admin.php:858
3125
  msgid "ERROR:"
3126
  msgstr "ОШИБКА:"
3127
 
3128
+ #: cerber-load.php:368
3129
  msgid "You have only one attempt remaining."
3130
  msgid_plural "You have %d attempts remaining."
3131
  msgstr[0] "У вас есть только одна попытка для входа"
3132
  msgstr[1] "У вас осталось %d попытки для входа."
3133
  msgstr[2] "У вас осталось %d попыток для входа."
3134
 
3135
+ #: cerber-load.php:343
3136
  msgid "You are not allowed to log in. Ask your administrator for assistance."
3137
  msgstr "Вход на сайт невозможен. Обратитесь к администратору сайта."
3138
 
3139
+ #: dashboard.php:433 dashboard.php:3689 nexus/cerber-slave-list.php:330
3140
+ #: common.php:1477 common.php:1882 common.php:1950 whois.php:222 whois.php:253
 
3141
  msgid "Unknown"
3142
  msgstr "Неизвестен"
3143
 
3144
+ #: admin/cerber-settings.php:773 admin/cerber-settings.php:785
3145
+ #: admin/cerber-settings.php:942
3146
  msgid "<strong>ERROR</strong>: please enter a valid email address."
3147
  msgstr "<strong>ОШИБКА</strong>: Введите действительный адрес эл.почты."
3148
 
3149
+ #: admin/cerber-settings.php:677 admin/cerber-settings.php:678
3150
  msgid "Attention! You have changed the login URL! The new login URL is"
3151
  msgstr "Внимание! Вы изменили URL страницы авторизации. Новый адрес"
3152
 
3153
+ #: admin/cerber-settings.php:381
3154
  msgid "Enable after %s failed login attempts in the last %s minutes"
3155
  msgstr "Активировать после %s неудачных авторизаций за последние %s минут"
3156
 
3157
+ #: admin/cerber-settings.php:372
3158
  msgid "Notify admin if the number of active lockouts above"
3159
  msgstr "Уведомить администратора, если число заблокированных IP более"
3160
 
3161
+ #: admin/cerber-settings.php:364
3162
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
3163
  msgstr "Увеличить длительность блокировки до %s часов после %s блокировок в течение последних %s часов"
3164
 
3165
+ #: dashboard.php:4883
3166
  msgid "Help"
3167
  msgstr "Помощь"
3168
 
3169
+ #: dashboard.php:82 dashboard.php:4775
3170
  msgid "Tools"
3171
  msgstr "Инструменты"
3172
 
3173
+ #: dashboard.php:4600
3174
  msgid "Hardening"
3175
  msgstr "Панцирь"
3176
 
3177
+ #: dashboard.php:4598
3178
  msgid "Main Settings"
3179
  msgstr "Основные настройки"
3180
 
3181
+ #: admin/cerber-settings.php:100 admin/cerber-settings.php:270
3182
+ #: cerber-lab.php:840
3183
  msgid "Know more"
3184
  msgstr "Узнать больше"
3185
 
3186
+ #: settings.php:1089
3187
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
3188
  msgstr "Перед использованием reCAPTCHA вам нужно получить ключ сайта и секретный ключ на сайте Google"
3189
 
3190
+ #: settings.php:126
3191
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
3192
  msgstr "Для использования этой настройки необходимо активировать Постоянные ссылки в настройках сайта."
3193
 
3194
+ #: settings.php:173
3195
  msgid "Make your protection smarter!"
3196
  msgstr "Сделайте защиту от злоумышленников еще умнее"
3197
 
3198
+ #: settings.php:1126
3199
  msgid "Login form"
3200
  msgstr "Форма входа"
3201
 
3202
+ #: settings.php:1116
3203
  msgid "Lost password form"
3204
  msgstr "Форма восстановления пароля"
3205
 
3206
+ #: settings.php:1097
3207
  msgid "Secret key"
3208
  msgstr "Секретный ключ"
3209
 
3210
+ #: settings.php:1093
3211
  msgid "Site key"
3212
  msgstr "Ключ сайта"
3213
 
3214
+ #: settings.php:1088
3215
  msgid "reCAPTCHA settings"
3216
  msgstr "Настройки reCAPTCHA"
3217
 
3218
+ #: settings.php:575
 
 
 
 
3219
  msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
3220
  msgstr "Имена пользователей из этого списка не разрешены для входа или регистрации. Любой IP адрес пытающийся использовать эти имена будет автоматически заблокирован. Испольуйте запятую как разделитель."
3221
 
3222
+ #: settings.php:574
3223
  msgid "Prohibited usernames"
3224
  msgstr "Запрещеные имена пользователей"
3225
 
3226
+ #: settings.php:394
3227
  msgid "Disable REST API"
3228
  msgstr "Отключить REST API"
3229
 
3230
+ #: settings.php:378
3231
  msgid "Block access to the RSS, Atom and RDF feeds"
3232
  msgstr "Закрыть доступ к RSS, Atom и RDF лентам"
3233
 
3234
+ #: settings.php:377
3235
  msgid "Disable feeds"
3236
  msgstr "Отключить ленты"
3237
 
3238
+ #: settings.php:373
3239
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
3240
  msgstr "Закрыть доступ к функциям XML-RPC, включая уведомления и обратные ссылки"
3241
 
3242
+ #: settings.php:372
3243
  msgid "Disable XML-RPC"
3244
  msgstr "Отключить XML-RPC"
3245
 
3246
+ #: settings.php:354
3247
  msgid "Block access to user pages like /?author=n"
3248
  msgstr "Закрыть доступ к страницам авторов наподобие /?author=n"
3249
 
3250
+ #: settings.php:353 settings.php:389
3251
  msgid "Stop user enumeration"
3252
  msgstr "Заблокировать сбор имен"
3253
 
3254
+ #: settings.php:349
3255
  msgid "Hardening WordPress"
3256
  msgstr "Усиление защиты WordPress"
3257
 
3258
+ #: settings.php:306
3259
  msgid "Write failed login attempts to the file"
3260
  msgstr "Записывать попытки входа в файл"
3261
 
3262
+ #: settings.php:305
3263
  msgid "Use file"
3264
  msgstr "Использовать файл"
3265
 
3266
+ #: settings.php:316
3267
  msgid "Retrieve extra WHOIS information for IP"
3268
  msgstr "Получить дополнительную информацию об IP используя WHOIS"
3269
 
3270
+ #: settings.php:315
3271
  msgid "Drill down IP"
3272
  msgstr "Изучать IP"
3273
 
3274
+ #: settings.php:280 settings.php:286 settings.php:814 settings.php:820
3275
+ #: settings.php:891 settings.php:1082
3276
  msgid "days"
3277
  msgstr "дней"
3278
 
3279
+ #: settings.php:662
3280
  msgid "notifications are allowed per hour (0 means unlimited)"
3281
  msgstr "разрешенное число писем с уведомлениями в час (0 - без ограничений)"
3282
 
3283
+ #: settings.php:661
3284
  msgid "Notification limit"
3285
  msgstr "Ограничение уведомлений"
3286
 
3287
+ #: settings.php:653 settings.php:700 settings.php:946
3288
  msgid "Email Address"
3289
  msgstr "Адрес email"
3290
 
3291
+ #: admin/cerber-settings.php:377 settings.php:270
3292
  msgid "Click to send test"
3293
  msgstr "Нажмите, чтобы протестировать отправку"
3294
 
3295
+ #: settings.php:266
3296
  msgid "Send notification to admin email"
3297
  msgstr "Отправить уведомление на адрес email администратора сайта"
3298
 
3299
+ #: admin/cerber-admin.php:51 settings.php:258
3300
  msgid "Duration"
3301
  msgstr "Длительность"
3302
 
3303
+ #: settings.php:253
3304
  msgid "Threshold"
3305
  msgstr "Порог"
3306
 
3307
+ #: settings.php:220
3308
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
3309
  msgstr "Заблокировать доступ к wp-login.php и возвращать HTTP 404 Страница не найдена"
3310
 
3311
+ #: settings.php:219
3312
  msgid "Disable wp-login.php"
3313
  msgstr "Доступ к wp-login.php"
3314
 
3315
+ #: settings.php:212
3316
  msgid "must not overlap with the existing pages or posts slug"
3317
  msgstr "не должно совпадать с URL существующих страниц или записей"
3318
 
3319
+ #: settings.php:211
3320
  msgid "Custom login URL"
3321
  msgstr "Адрес страницы авторизации"
3322
 
3323
+ #: settings.php:207
3324
  msgid "Custom login page"
3325
  msgstr "Смена URL страницы авторизации"
3326
 
3327
+ #: settings.php:192
3328
  msgid "Immediately block IP after any request to wp-login.php"
3329
  msgstr "Блокировать IP при любом запросе wp-login.php"
3330
 
3331
+ #: settings.php:191
3332
  msgid "Request wp-login.php"
3333
  msgstr "Запрос wp-login.php"
3334
 
3335
+ #: settings.php:187
3336
  msgid "Disable automatic redirection to the login page when /wp-admin/ is requested by an unauthorized request"
3337
  msgstr "Отключить автоматическую переадресацию при запросе /wp-admin/ неавторизованным пользователем"
3338
 
3339
+ #: settings.php:182
3340
  msgid "Immediately block IP when attempting to log in with a non-existing username"
3341
  msgstr "Блокировать IP при попытке авторизации с логином несуществующего пользователя"
3342
 
3343
+ #: settings.php:181
3344
  msgid "Non-existing users"
3345
  msgstr "Несуществующие пользователи"
3346
 
3347
+ #: settings.php:177
3348
  msgid "Always block entire subnet Class C of intruders IP"
3349
  msgstr "Всегда блокировать подсеть класса С вместо IP адреса"
3350
 
3351
+ #: settings.php:176
3352
  msgid "Block subnet"
3353
  msgstr "Блокировка подсети"
3354
 
3355
+ #: settings.php:172
3356
  msgid "Proactive security rules"
3357
  msgstr "Проактивные правила безопасности"
3358
 
3359
+ #: dashboard.php:2169 settings.php:230
3360
  msgid "My site is behind a reverse proxy"
3361
  msgstr "Мой сайт подключен к сети через прокси-сервер"
3362
 
3363
+ #: settings.php:229
3364
  msgid "Site connection"
3365
  msgstr "Подключение к сети"
3366
 
3367
+ #: dashboard.php:4602 settings.php:264
3368
  msgid "Notifications"
3369
  msgstr "Уведомления"
3370
 
3371
+ #: settings.php:161
3372
  msgid "Aggressive lockout"
3373
  msgstr "Ужесточение"
3374
 
3375
+ #: settings.php:158 settings.php:259
3376
  msgid "minutes"
3377
  msgstr "минут"
3378
 
3379
+ #: settings.php:157
3380
  msgid "Lockout duration"
3381
  msgstr "Длительность блокировки"
3382
 
3383
+ #: settings.php:149
3384
  msgid "Limit login attempts"
3385
  msgstr "Ограничение числа попыток авторизации"
3386
 
3387
+ #: dashboard.php:1428
3388
  msgid "Abuse email:"
3389
  msgstr "Адрес email для жалоб:"
3390
 
3391
+ #: settings.php:666
3392
  msgid "New version is available"
3393
  msgstr "Доступна новая версия"
3394
 
3395
+ #: dashboard.php:2482 dashboard.php:2881
3396
  msgid "View Activity"
3397
  msgstr "Что происходит?"
3398
 
3399
+ #: dashboard.php:2481
3400
  msgid "Deactivate"
3401
  msgstr "Деактивировать"
3402
 
3403
+ #: dashboard.php:2480
3404
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
3405
  msgstr "Внимание! Режим Цитадель активен. Авторизация на сайте заблокирована."
3406
 
3407
+ #: dashboard.php:5086 cerber-tools.php:59 admin/cerber-admin.php:721
3408
+ #: admin/cerber-admin.php:888
 
 
 
 
3409
  msgid "Are you sure?"
3410
  msgstr "Вы уверены?"
3411
 
3412
+ #: cerber-tools.php:57
3413
  msgid "Load default settings"
3414
  msgstr "Загрузить настройки"
3415
 
3416
+ #: dashboard.php:4597
 
 
 
 
 
 
 
 
3417
  msgid "Lockouts"
3418
  msgstr "Блокировки"
3419
 
3420
+ #: dashboard.php:1763 settings.php:243
3421
  msgid "Citadel mode"
3422
  msgstr "Режим Цитадель"
3423
 
3424
+ #: dashboard.php:1761 dashboard.php:1762 dashboard.php:2660
3425
  msgid "entry"
3426
  msgid_plural "entries"
3427
  msgstr[0] "элемент"
3428
  msgstr[1] "элемента"
3429
  msgstr[2] "элементов"
3430
 
3431
+ #: dashboard.php:1757
3432
  msgid "Last lockout"
3433
  msgstr "Последняя блокировка"
3434
 
3435
+ #: dashboard.php:1756
3436
  msgid "Lockouts at the moment"
3437
  msgstr "Сейчас заблокировано"
3438
 
3439
+ #: dashboard.php:1754
3440
  msgid "lockouts"
3441
  msgstr "блокировок"
3442
 
3443
+ #: dashboard.php:1753 dashboard.php:1754
3444
  msgid "view all"
3445
  msgstr "просмотреть все"
3446
 
3447
+ #: dashboard.php:1753 dashboard.php:1754
3448
  msgid "in 24 hours"
3449
  msgstr "за 24 часа"
3450
 
3451
+ #: dashboard.php:1753
3452
  msgid "failed attempts"
3453
  msgstr "ошибок авторизации"
3454
 
3455
+ #: dashboard.php:1747 dashboard.php:1765
3456
  msgid "disabled"
3457
  msgstr "отключен"
3458
 
3459
+ #: dashboard.php:1744
3460
  msgid "not active"
3461
  msgstr "неактивен"
3462
 
3463
+ #: dashboard.php:1740
3464
  msgid "deactivate"
3465
  msgstr "деактивировать"
3466
 
3467
+ #: dashboard.php:1740 dashboard.php:1770
3468
  msgid "active"
3469
  msgstr "активен"
3470
 
3471
+ #: dashboard.php:1701
3472
  msgid "Cerber Quick View"
3473
  msgstr "Сводка от Cerber"
3474
 
3475
+ #: cerber-tools.php:243
3476
  msgid "Error while parsing file"
3477
  msgstr "Возникла ошибка при обработке файла"
3478
 
3479
+ #: cerber-tools.php:236
3480
  msgid "Settings has imported successfully from"
3481
  msgstr "Все настройки успешно загружены"
3482
 
3483
+ #: cerber-tools.php:189
3484
  msgid "No file was uploaded or file is corrupted"
3485
  msgstr "Файл не был загружен или имеет неверный формат"
3486
 
3487
+ #: cerber-tools.php:50 admin/cerber-admin.php:249
3488
  msgid "Upload file"
3489
  msgstr "Загрузить файл"
3490
 
3491
+ #: cerber-tools.php:48
3492
  msgid "What do you want to import?"
3493
  msgstr "Что вы хотите импортировать?"
3494
 
3495
+ #: cerber-tools.php:45 admin/cerber-admin.php:246
3496
  msgid "Maximum upload file size: %s."
3497
  msgstr "Максимальный размер загружаемого файла: %s."
3498
 
3499
+ #: cerber-tools.php:45
3500
  msgid "Select file to import."
3501
  msgstr "Выберите файл для загрузки."
3502
 
3503
+ #: cerber-tools.php:44
3504
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
3505
  msgstr "Когда вы нажмете на кнопку, все настройки из файла будут загружены на сайт"
3506
 
3507
+ #: cerber-tools.php:43
3508
  msgid "Import settings from the file"
3509
  msgstr "Импорт настроек из файла"
3510
 
3512
  msgid "Download file"
3513
  msgstr "Скачать файл"
3514
 
3515
+ #: dashboard.php:4599 cerber-tools.php:38 cerber-tools.php:49
3516
  msgid "Access Lists"
3517
  msgstr "Списки доступа"
3518
 
3519
+ #: dashboard.php:4663 dashboard.php:4724 nexus/cerber-nexus.php:93
3520
+ #: cerber-tools.php:37 cerber-tools.php:48
3521
  msgid "Settings"
3522
  msgstr "Настройки"
3523
 
3533
  msgid "Export settings to the file"
3534
  msgstr "Экспорт настроек в файл"
3535
 
3536
+ #: dashboard.php:1644 dashboard.php:1735 dashboard.php:1784
3537
+ #: nexus/cerber-slave-list.php:344 common.php:1614
3538
  msgid "Never"
3539
  msgstr "Никогда"
3540
 
3541
+ #: common.php:1326
3542
  msgid "User created"
3543
  msgstr "Пользователь создан"
3544
 
3545
+ #: common.php:1327
3546
  msgid "User registered"
3547
  msgstr "Пользователь зарегистрирован"
3548
 
3549
+ #: common.php:1329
3550
  msgid "Logged in"
3551
  msgstr "Вход"
3552
 
3553
+ #: common.php:1330
3554
  msgid "Logged out"
3555
  msgstr "Выход"
3556
 
3557
+ #: common.php:1331
3558
  msgid "Login failed"
3559
  msgstr "Ошибка авторизации"
3560
 
3561
+ #: dashboard.php:977 common.php:1334
3562
  msgid "IP blocked"
3563
  msgstr "IP заблокирован"
3564
 
3565
+ #: common.php:1338
3566
  msgid "Citadel activated!"
3567
  msgstr "Режим Цитадель активирован!"
3568
 
3569
+ #: dashboard.php:1352 dashboard.php:1396 dashboard.php:3789 common.php:1392
3570
  msgid "Locked out"
3571
  msgstr "Заблокировано"
3572
 
3573
+ #: common.php:1351
3574
  msgid "Password changed"
3575
  msgstr "Пароль изменен"
3576
 
3577
+ #: common.php:1394
3578
  msgid "IP blacklisted"
3579
  msgstr "IP в черном списке"
3580
 
3581
+ #: common.php:1354
3582
  msgid "reCAPTCHA verification failed"
3583
  msgstr "проверка reCAPTCHA неудачна"
3584
 
3585
+ #: common.php:1355
3586
  msgid "reCAPTCHA settings are incorrect"
3587
  msgstr "настройки reCAPTCHA неверны"
3588
 
3589
+ #: common.php:1358 common.php:1454
3590
  msgid "Attempt to access prohibited URL"
3591
  msgstr "Попытка доступа к запрещенному URL"
3592
 
3593
+ #: common.php:1359 common.php:1455
3594
  msgid "Attempt to log in with non-existing username"
3595
  msgstr "Попытка войти с несуществующим именем пользователя"
3596
 
3597
+ #: common.php:1360 common.php:1456
3598
  msgid "Attempt to log in with prohibited username"
3599
  msgstr "Попытка входа с запрещенным именем"
3600
 
3601
+ #: dashboard.php:190 dashboard.php:308
3602
  msgid "Remove"
3603
  msgstr "Удалить"
3604
 
3605
+ #: cerber-load.php:4953
3606
  msgid "IP"
3607
  msgstr "IP"
3608
 
3609
+ #: dashboard.php:196 dashboard.php:1108
3610
  msgid "Hostname"
3611
  msgstr "Имя узла"
3612
 
3613
+ #: dashboard.php:198 cerber-users.php:981
3614
  msgid "Expires"
3615
  msgstr "Истекает"
3616
 
3617
+ #: dashboard.php:199 cerber-load.php:4204
3618
  msgid "Reason"
3619
  msgstr "Причина"
3620
 
3621
+ #: dashboard.php:200 admin/cerber-admin.php:757 admin/cerber-admin.php:912
3622
+ #: cerber-users.php:984
3623
  msgid "Action"
3624
  msgstr "Действие"
3625
 
3626
+ #: dashboard.php:216
3627
  msgid "Showing last %d records from %d"
3628
  msgstr "Отображены последние %d строк из %d"
3629
 
3630
+ #: dashboard.php:218
3631
  msgid "Hint"
3632
  msgstr "Подсказка"
3633
 
3634
+ #: dashboard.php:218
3635
  msgid "To view activity, click on the IP"
3636
  msgstr "Чтобы увидеть активность, нажмите на адрес IP"
3637
 
3638
+ #: dashboard.php:222
3639
  msgid "No lockouts at the moment. The sky is clear."
3640
  msgstr "Блокировок нет. Все в порядке."
3641
 
3642
+ #: dashboard.php:254 dashboard.php:1344 dashboard.php:1389 dashboard.php:1761
3643
+ #: dashboard.php:3781 cerber-load.php:5244 cerber-tools.php:69
3644
  msgid "White IP Access List"
3645
  msgstr "Белый список доступа по IP"
3646
 
3647
+ #: dashboard.php:257 dashboard.php:1347 dashboard.php:1392 dashboard.php:1762
3648
+ #: dashboard.php:3784 cerber-tools.php:70
3649
  msgid "Black IP Access List"
3650
  msgstr "Черный список доступа по IP"
3651
 
3652
+ #: dashboard.php:264
3653
  msgid "Your IP"
3654
  msgstr "Ваш адрес IP"
3655
 
3656
+ #: dashboard.php:304 dashboard.php:1383 dashboard.php:1435 dashboard.php:1575
3657
  msgid "Check for activities"
3658
  msgstr "Проверить активность"
3659
 
3660
+ #: dashboard.php:314
3661
  msgid "List is empty"
3662
  msgstr "Список пуст"
3663
 
3664
+ #: dashboard.php:513
3665
  msgid "unknown"
3666
  msgstr "неизвестно"
3667
 
3668
+ #: dashboard.php:575
3669
  msgid "Lockout for %s was removed"
3670
  msgstr "Удалена блокировка для %s"
3671
 
3672
+ #: dashboard.php:2497
3673
  msgid "Settings saved"
3674
  msgstr "Настройки сохранены."
3675
 
3676
+ #: dashboard.php:846 dashboard.php:1110 dashboard.php:3560 dashboard.php:4009
3677
  msgid "Date"
3678
  msgstr "Дата"
3679
 
3680
+ #: dashboard.php:1804 dashboard.php:2352 dashboard.php:4595
3681
+ #: cerber-load.php:4944 cerber-users.php:1148 settings.php:276
3682
  msgid "Activity"
3683
  msgstr "Активность"
3684
 
3685
+ #: dashboard.php:1140
3686
  msgid "No activity has been logged."
3687
  msgstr "Ни одного события не зафиксировано."
3688
 
3689
+ #: cerber-load.php:4961
3690
  msgid "Username used"
3691
  msgstr "Использован логин"
3692
 
3693
+ #: dashboard.php:849 dashboard.php:1112 dashboard.php:4014
3694
  msgid "Local User"
3695
  msgstr "Пользователь"
3696
 
3697
+ #: dashboard.php:1455
3698
  msgid "Add IP to the Black List"
3699
  msgstr "Добавить IP в черный список"
3700
 
3701
+ #: dashboard.php:1610
3702
  msgid "Comments"
3703
  msgstr "Комментарии"
3704
 
3705
+ #: dashboard.php:1611
3706
  msgid "Last login"
3707
  msgstr "Последний вход"
3708
 
3709
+ #: settings.php:590
3710
  msgid "by date of registration"
3711
  msgstr "по дате регистрации"
languages/wp-cerber-sv_SE.mo CHANGED
Binary file
languages/wp-cerber-sv_SE.po CHANGED
@@ -8,219 +8,219 @@ msgstr ""
8
  "Language: sv\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
 
11
- #: ../settings.php:139
12
  msgid "Limit login attempts"
13
  msgstr "Begränsa inloggningsförsök"
14
 
15
- #: ../settings.php:146
16
  msgid "Lockout duration"
17
  msgstr "Utlåsningstidens varaktighet"
18
 
19
- #: ../settings.php:147 ../settings.php:249
20
  msgid "minutes"
21
  msgstr "minuter"
22
 
23
- #: ../settings.php:151
24
  msgid "Aggressive lockout"
25
  msgstr "Aggressiv utlåsning"
26
 
27
- #: ../settings.php:219
28
  msgid "Site connection"
29
  msgstr "Webbplatsanslutning"
30
 
31
- #: ../settings.php:162
32
  msgid "Proactive security rules"
33
  msgstr "Proaktiva säkerhetsregler"
34
 
35
- #: ../settings.php:166
36
  msgid "Block subnet"
37
  msgstr "Blockera undernät"
38
 
39
- #: ../settings.php:181
40
  msgid "Request wp-login.php"
41
  msgstr "Begär wp-login.php"
42
 
43
- #: ../settings.php:182
44
  msgid "Immediately block IP after any request to wp-login.php"
45
  msgstr "Blockera omedelbart IP efter en förfrågan till wp-login.php"
46
 
47
- #: ../settings.php:197
48
  msgid "Custom login page"
49
  msgstr "Anpassad inloggningssida"
50
 
51
- #: ../settings.php:201
52
  msgid "Custom login URL"
53
  msgstr "Anpassad URL för inloggning"
54
 
55
- #: ../settings.php:202
56
  msgid "must not overlap with the existing pages or posts slug"
57
  msgstr "får inte överlappa med befintliga sidor eller permalänkar för inlägg"
58
 
59
- #: ../settings.php:209
60
  msgid "Disable wp-login.php"
61
  msgstr "Inaktivera wp-login.php"
62
 
63
- #: ../settings.php:210
64
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
65
  msgstr "Blockera direktåtkomst till wp-login.php och returnera HTTP 404 inte hittade fel"
66
 
67
- #: ../dashboard.php:1738 ../settings.php:233
68
  msgid "Citadel mode"
69
  msgstr "Citadelläge"
70
 
71
- #: ../settings.php:243
72
  msgid "Threshold"
73
  msgstr "Gränsvärde"
74
 
75
- #: ../settings.php:248 ../cerber-scanner.php:3958
76
  msgid "Duration"
77
  msgstr "Varaktighet"
78
 
79
- #: ../dashboard.php:4564 ../settings.php:254
80
  msgid "Notifications"
81
  msgstr "Notiser"
82
 
83
- #: ../settings.php:256
84
  msgid "Send notification to admin email"
85
  msgstr "Skicka meddelande till admins e-post"
86
 
87
- #: ../dashboard.php:4561 ../cerber-tools.php:38 ../cerber-tools.php:47
88
  msgid "Access Lists"
89
  msgstr "Åtkomstlistor"
90
 
91
- #: ../dashboard.php:1779 ../dashboard.php:2327 ../dashboard.php:4557 ../cerber-
92
- #: load.php:4823 ../cerber-users.php:1139 ../settings.php:266
93
  msgid "Activity"
94
  msgstr "Aktivitet"
95
 
96
- #: ../dashboard.php:4559
97
  msgid "Lockouts"
98
  msgstr "Utlåsningar"
99
 
100
- #: ../dashboard.php:191 ../cerber-load.php:4832
101
  msgid "IP"
102
  msgstr "IP"
103
 
104
- #: ../dashboard.php:834 ../dashboard.php:1082 ../dashboard.php:3550 ../dashboard.
105
- #: php:3974
106
  msgid "Date"
107
  msgstr "Datum"
108
 
109
- #: ../dashboard.php:837 ../dashboard.php:1084 ../dashboard.php:3979
110
  msgid "Local User"
111
  msgstr "Lokal användare"
112
 
113
- #: ../cerber-load.php:4840
114
  msgid "Username used"
115
  msgstr "Användarnamn används"
116
 
117
- #: ../dashboard.php:212
118
  msgid "Showing last %d records from %d"
119
  msgstr "Visar senaste %d poster från %d"
120
 
121
- #: ../common.php:1296
122
  msgid "Logged in"
123
  msgstr "Inloggad"
124
 
125
- #: ../common.php:1297
126
  msgid "Logged out"
127
  msgstr "Utloggad"
128
 
129
- #: ../common.php:1298
130
  msgid "Login failed"
131
  msgstr "Inloggning misslyckades"
132
 
133
- #: ../dashboard.php:950 ../common.php:1301
134
  msgid "IP blocked"
135
  msgstr "IP blockerat"
136
 
137
- #: ../common.php:1305
138
  msgid "Citadel activated!"
139
  msgstr "Citadel aktiverat!"
140
 
141
- #: ../dashboard.php:1349 ../dashboard.php:1385 ../dashboard.php:3762 ../common.
142
- #: php:1359
143
  msgid "Locked out"
144
  msgstr "Utlåst"
145
 
146
- #: ../common.php:1361
147
  msgid "IP blacklisted"
148
  msgstr "IP svartlistat"
149
 
150
- #: ../common.php:1318
151
  msgid "Password changed"
152
  msgstr "Lösenord ändrat"
153
 
154
- #: ../dashboard.php:186 ../dashboard.php:302
155
  msgid "Remove"
156
  msgstr "Ta bort"
157
 
158
- #: ../dashboard.php:563
159
  msgid "Lockout for %s was removed"
160
  msgstr "Utlåsning för %s borttagen"
161
 
162
- #: ../dashboard.php:250 ../dashboard.php:1341 ../dashboard.php:1378 ../dashboard.
163
- #: php:1736 ../dashboard.php:3754 ../cerber-load.php:5119
164
  msgid "White IP Access List"
165
  msgstr "Vita IP-åtkomstlistan"
166
 
167
- #: ../dashboard.php:253 ../dashboard.php:1344 ../dashboard.php:1381 ../dashboard.
168
- #: php:1737 ../dashboard.php:3757
169
  msgid "Black IP Access List"
170
  msgstr "Svarta IP-åtkomstlistan"
171
 
172
- #: ../dashboard.php:308
173
  msgid "List is empty"
174
  msgstr "Listan är tom"
175
 
176
- #: ../cerber-load.php:4096
177
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
178
  msgstr "Citadelläge är aktiverad efter %d misslyckades inloggningsförsök inom %d minuter."
179
 
180
- #: ../dashboard.php:2485 ../dashboard.php:2872
181
  msgid "View Activity"
182
  msgstr "Visa aktivitet"
183
 
184
- #: ../dashboard.php:4625 ../dashboard.php:4686 ../cerber-tools.php:37 ../cerber-
185
- #: tools.php:46 ../nexus/cerber-nexus.php:93
186
  msgid "Settings"
187
  msgstr "Inställningar"
188
 
189
- #: ../dashboard.php:1586
190
  msgid "Last login"
191
  msgstr "Senaste inloggning"
192
 
193
- #: ../dashboard.php:1619 ../dashboard.php:1710 ../dashboard.php:1759 ../common.
194
- #: php:1575 ../nexus/cerber-slave-list.php:344
195
  msgid "Never"
196
  msgstr "Aldrig"
197
 
198
- #: ../dashboard.php:2373 ../dashboard.php:5025 ../cerber-scanner.php:5739 ..
199
- #: /cerber-scanner.php:5900
200
  msgid "Are you sure?"
201
  msgstr "Är du säker?"
202
 
203
- #: ../dashboard.php:2144 ../settings.php:220
204
  msgid "My site is behind a reverse proxy"
205
  msgstr "Min webbplats är bakom en omvänd proxy"
206
 
207
- #: ../settings.php:163
208
  msgid "Make your protection smarter!"
209
  msgstr "Gör ditt skydd smartare!"
210
 
211
- #: ../settings.php:116
212
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
213
  msgstr "Aktivera permalänkar för att använda denna funktion. Ställ in inställningar för permalänkar till något annat än standard."
214
 
215
- #: ../dashboard.php:4560
216
  msgid "Main Settings"
217
  msgstr "Huvudinställningar"
218
 
219
- #: ../dashboard.php:4825
220
  msgid "Help"
221
  msgstr "Hjälp"
222
 
223
- #: ../admin/cerber-settings.php:359
224
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
225
  msgstr "Öka utlåsningens varaktighet till %s timmar efter %s utlåsningar under de senaste %s timmarna"
226
 
@@ -234,84 +234,84 @@ msgid_plural "You have %d attempts remaining."
234
  msgstr[0] "Du har bara ett försök kvar."
235
  msgstr[1] "Du har %d försök kvar."
236
 
237
- #: ../dashboard.php:1112
238
  msgid "No activity has been logged."
239
  msgstr "Ingen aktivitet har loggats."
240
 
241
- #: ../dashboard.php:194 ../cerber-users.php:972
242
  msgid "Expires"
243
  msgstr "Löper ut"
244
 
245
- #: ../dashboard.php:218
246
  msgid "No lockouts at the moment. The sky is clear."
247
  msgstr "Inga utlåsningar för tillfället. Kusten är klar."
248
 
249
- #: ../dashboard.php:260
250
  msgid "Your IP"
251
  msgstr "Ditt IP"
252
 
253
- #: ../cerber-load.php:4097
254
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
255
  msgstr "Senast misslyckat försök var %s från IP %s med användarinloggning: %s."
256
 
257
- #: ../cerber-load.php:5096
258
  msgid "Can't activate WP Cerber due to a database error."
259
  msgstr "Kan inte aktivera WP Cerber på grund av ett databasfel."
260
 
261
- #: ../admin/cerber-settings.php:367
262
  msgid "Notify admin if the number of active lockouts above"
263
  msgstr "Meddela admin om antalet aktiva utlåsningar ovan"
264
 
265
- #: ../settings.php:270 ../settings.php:276 ../settings.php:789 ../settings.php:
266
- #: 794 ../settings.php:859 ../settings.php:1051
267
  msgid "days"
268
  msgstr "dagar"
269
 
270
- #: ../dashboard.php:1676
271
  msgid "Cerber Quick View"
272
  msgstr "Cerber snabböversikt"
273
 
274
- #: ../dashboard.php:214
275
  msgid "Hint"
276
  msgstr "Ledtråd"
277
 
278
- #: ../dashboard.php:214
279
  msgid "To view activity, click on the IP"
280
  msgstr "För att visa aktivitet, klicka på IP"
281
 
282
- #: ../settings.php:167
283
  msgid "Always block entire subnet Class C of intruders IP"
284
  msgstr "Blockera alltid hela undernätet Klass C av inkräktande IP"
285
 
286
- #: ../admin/cerber-settings.php:372 ../settings.php:260
287
  msgid "Click to send test"
288
  msgstr "Klicka för att skicka test"
289
 
290
- #: ../admin/cerber-settings.php:652 ../admin/cerber-settings.php:653
291
  msgid "Attention! You have changed the login URL! The new login URL is"
292
  msgstr "Observera! Du har ändrat URL för inloggning! Den nya URL:en för inloggning är"
293
 
294
- #: ../dashboard.php:1585
295
  msgid "Comments"
296
  msgstr "Kommentarer"
297
 
298
- #: ../cerber-load.php:4098 ../cerber-load.php:4864
299
  msgid "View activity in dashboard"
300
  msgstr "Visa aktivitet i adminpanel"
301
 
302
- #: ../cerber-load.php:4127
303
  msgid "Number of active lockouts"
304
  msgstr "Antal aktiva utlåsningar"
305
 
306
- #: ../cerber-load.php:4131
307
  msgid "View lockouts in dashboard"
308
  msgstr "Visa utlåsningar i adminpanelen"
309
 
310
- #: ../cerber-load.php:4219
311
  msgid "This message was sent by"
312
  msgstr "Detta meddelande skickades av"
313
 
314
- #: ../dashboard.php:82 ../dashboard.php:4718
315
  msgid "Tools"
316
  msgstr "Verktyg"
317
 
@@ -331,264 +331,252 @@ msgstr "Vad vill du exportera?"
331
  msgid "Download file"
332
  msgstr "Ladda ner fil"
333
 
334
- #: ../cerber-tools.php:41
335
  msgid "Import settings from the file"
336
  msgstr "Importera inställningar från fil"
337
 
338
- #: ../cerber-tools.php:42
339
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
340
  msgstr "När du klickar på knappen nedan kommer filen att laddas upp och alla befintliga inställningar kommer att åsidosättas"
341
 
342
- #: ../cerber-tools.php:43
343
  msgid "Select file to import."
344
  msgstr "Välj fil att importera."
345
 
346
- #: ../cerber-tools.php:43 ../cerber-scanner.php:4106
347
  msgid "Maximum upload file size: %s."
348
  msgstr "Maximal filstorlek för uppladdning: %s."
349
 
350
- #: ../cerber-tools.php:46
351
  msgid "What do you want to import?"
352
  msgstr "Vad vill du importera?"
353
 
354
- #: ../cerber-tools.php:48 ../cerber-scanner.php:4109
355
  msgid "Upload file"
356
  msgstr "Ladda upp fil"
357
 
358
- #: ../cerber-tools.php:100
359
  msgid "No file was uploaded or file is corrupted"
360
  msgstr "Ingen fil har laddats upp eller filen är skadad"
361
 
362
- #: ../cerber-tools.php:147
363
  msgid "Settings has imported successfully from"
364
  msgstr "Inställningar har importerats utan problem från"
365
 
366
- #: ../cerber-tools.php:154
367
  msgid "Error while parsing file"
368
  msgstr "Fel uppstod vid analyseringen av fil"
369
 
370
- #: ../dashboard.php:192 ../dashboard.php:1080
371
  msgid "Hostname"
372
  msgstr "Värdnamn"
373
 
374
- #: ../dashboard.php:500
375
  msgid "unknown"
376
  msgstr "okänt"
377
 
378
- #: ../dashboard.php:1715 ../dashboard.php:1745
379
  msgid "active"
380
  msgstr "aktivt"
381
 
382
- #: ../dashboard.php:1715
383
  msgid "deactivate"
384
  msgstr "inaktivera"
385
 
386
- #: ../dashboard.php:1719
387
  msgid "not active"
388
  msgstr "Inte aktiv"
389
 
390
- #: ../dashboard.php:1722 ../dashboard.php:1740
391
  msgid "disabled"
392
  msgstr "inaktiverad"
393
 
394
- #: ../dashboard.php:1728
395
  msgid "failed attempts"
396
  msgstr "misslyckade försök"
397
 
398
- #: ../dashboard.php:1728 ../dashboard.php:1729
399
  msgid "in 24 hours"
400
  msgstr "om 24 timmar"
401
 
402
- #: ../dashboard.php:1728 ../dashboard.php:1729
403
  msgid "view all"
404
  msgstr "visa alla"
405
 
406
- #: ../dashboard.php:1729
407
  msgid "lockouts"
408
  msgstr "Utlåsningar"
409
 
410
- #: ../dashboard.php:1731
411
  msgid "Lockouts at the moment"
412
  msgstr "Utlåsningar just nu"
413
 
414
- #: ../dashboard.php:1732
415
  msgid "Last lockout"
416
  msgstr "Senaste utlåsning"
417
 
418
- #: ../dashboard.php:1736 ../dashboard.php:1737 ../dashboard.php:2663
419
  msgid "entry"
420
  msgid_plural "entries"
421
  msgstr[0] ""
422
  msgstr[1] ""
423
 
424
- #: ../dashboard.php:2368
425
- msgid "Confused about some settings?"
426
- msgstr "Förvirrad på några inställningar?"
427
-
428
- #: ../dashboard.php:2369
429
- msgid "You can easily load default recommended settings using button below"
430
- msgstr "Du kan enkelt ladda de rekommenderade standardinställningarna med knappen nedan"
431
-
432
- #: ../dashboard.php:2371
433
  msgid "Load default settings"
434
  msgstr "Ladda standardinställningar"
435
 
436
- #: ../dashboard.php:2379
437
- msgid "doesn't affect Custom login URL and Access Lists"
438
- msgstr "påverkar inte anpassad URL för inloggning och åtkomstlistor"
439
-
440
- #: ../settings.php:642
441
  msgid "New version is available"
442
  msgstr "Ny version är tillgänglig"
443
 
444
- #: ../cerber-load.php:4070
445
  msgid "WP Cerber notify"
446
  msgstr "WP Cerber meddelar"
447
 
448
- #: ../cerber-load.php:4094
449
  msgid "Citadel mode is activated"
450
  msgstr "Citadelläge är aktiverat"
451
 
452
- #: ../cerber-load.php:4166
453
  msgid "New Custom login URL"
454
  msgstr "Ny anpassad URL för inloggning"
455
 
456
- #: ../cerber-load.php:5083
457
  msgid "The WP Cerber requires PHP %s or higher. You are running"
458
  msgstr "WP Cerber kräver PHP %s eller högre. Du kör"
459
 
460
- #: ../cerber-load.php:5087
461
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
462
  msgstr "WP Cerber kräver WordPress %s eller högre. Du kör"
463
 
464
- #: ../settings.php:295
465
  msgid "Use file"
466
  msgstr "Använd fil"
467
 
468
- #: ../settings.php:296
469
  msgid "Write failed login attempts to the file"
470
  msgstr "Skriv misslyckade inloggningsförsök till fil"
471
 
472
- #: ../dashboard.php:2484
473
  msgid "Deactivate"
474
  msgstr "Inaktivera"
475
 
476
- #: ../dashboard.php:195 ../cerber-load.php:4129
477
  msgid "Reason"
478
  msgstr "Anledning"
479
 
480
- #: ../dashboard.php:1447
481
  msgid "Add IP to the Black List"
482
  msgstr "Lägg till IP i svartlistan"
483
 
484
- #: ../common.php:1414
485
  msgid "Attempt to access"
486
  msgstr "Försök att komma åt"
487
 
488
- #: ../common.php:1413
489
  msgid "Limit on login attempts is reached"
490
  msgstr "Gränsen för inloggningsförsök är nådd"
491
 
492
- #: ../cerber-load.php:4128
493
  msgid "Last lockout was added: %s for IP %s"
494
  msgstr "Senaste utlåsningen lades till: %s för IP %s"
495
 
496
- #: ../dashboard.php:4562
497
  msgid "Hardening"
498
  msgstr "Förstärk"
499
 
500
- #: ../dashboard.php:1422
501
  msgid "Abuse email:"
502
  msgstr "E-post för missbruk:"
503
 
504
- #: ../settings.php:628 ../settings.php:676 ../settings.php:915
505
  msgid "Email Address"
506
  msgstr "E-postadress"
507
 
508
- #: ../settings.php:305
509
  msgid "Drill down IP"
510
  msgstr "Rulla ner IP"
511
 
512
- #: ../settings.php:306
513
  msgid "Retrieve extra WHOIS information for IP"
514
  msgstr "Hämta extra WHOIS-information för IP"
515
 
516
- #: ../settings.php:324
517
  msgid "Hardening WordPress"
518
  msgstr "Förstärk WordPress"
519
 
520
- #: ../settings.php:328 ../settings.php:364
521
  msgid "Stop user enumeration"
522
  msgstr "Stoppa uppräkning av användare"
523
 
524
- #: ../settings.php:347
525
  msgid "Disable XML-RPC"
526
  msgstr "Inaktivera XML-RPC"
527
 
528
- #: ../settings.php:348
529
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
530
  msgstr "Blockera åtkomst till XML-RPC-servern (inklusive pingbacks och trackbacks)"
531
 
532
- #: ../settings.php:352
533
  msgid "Disable feeds"
534
  msgstr "Inaktivera flöden"
535
 
536
- #: ../settings.php:353
537
  msgid "Block access to the RSS, Atom and RDF feeds"
538
  msgstr "Blockera åtkomst till RSS, Atom och RDF-flöden"
539
 
540
- #: ../settings.php:369
541
  msgid "Disable REST API"
542
  msgstr "Inaktivera REST API"
543
 
544
- #: ../admin/cerber-settings.php:749 ../admin/cerber-settings.php:761 ..
545
- #: /admin/cerber-settings.php:918
546
  msgid "<strong>ERROR</strong>: please enter a valid email address."
547
  msgstr "<strong>FEL</strong>: Ange en giltig e-postadress."
548
 
549
- #: ../cerber-load.php:4159 ../cerber-load.php:5118
550
  msgid "WP Cerber is now active and has started protecting your site"
551
  msgstr "WP Cerber är nu aktiv och har börjat skydda din webbplats"
552
 
553
- #: ../dashboard.php:196 ../cerber-users.php:975 ../cerber-scanner.php:5768 ..
554
- #: /cerber-scanner.php:5916
555
  msgid "Action"
556
  msgstr "Åtgärd"
557
 
558
- #: ../dashboard.php:4871
559
  msgid "Incorrect IP address or IP range"
560
  msgstr "Felaktig IP-adress eller IP-intervall"
561
 
562
- #: ../dashboard.php:2500
563
  msgid "Settings saved"
564
  msgstr "Inställningar sparade"
565
 
566
- #: ../dashboard.php:1427
567
  msgid "Network:"
568
  msgstr "Nätverk:"
569
 
570
- #: ../dashboard.php:1441
571
  msgid "Add network to the Black List"
572
  msgstr "Lägg till nätverk i svartlistan"
573
 
574
- #: ../dashboard.php:2483
575
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
576
  msgstr "Observera! Citadelläget är nu aktivt. Ingen kan logga in."
577
 
578
- #: ../dashboard.php:427 ../dashboard.php:3662 ../whois.php:222 ../whois.php:253 ..
579
- #: /common.php:1438 ../common.php:1822 ../common.php:1887 ../nexus/cerber-slave-
580
- #: list.php:330
581
  msgid "Unknown"
582
  msgstr "Okänt"
583
 
584
- #: ../common.php:343 ../common.php:421 ../common.php:426 ../common.php:432 ..
585
- #: /common.php:437 ../admin/cerber-settings.php:624 ../admin/cerber-settings.php:
586
- #: 644 ../admin/cerber-settings.php:725 ../cerber-load.php:649 ../cerber-load.php:
587
- #: 661 ../cerber-load.php:668 ../cerber-load.php:1017 ../cerber-load.php:1548 ..
588
- #: /cerber-load.php:1554 ../cerber-load.php:1559 ../cerber-load.php:1566 ..
589
- #: /cerber-load.php:1573 ../cerber-load.php:1579 ../cerber-load.php:1586 ..
590
- #: /cerber-load.php:1737 ../cerber-load.php:1874 ../nexus/cerber-nexus-slave.php:
591
- #: 219 ../nexus/cerber-nexus-slave.php:230 ../cerber-scanner.php:5870
592
  msgid "ERROR:"
593
  msgstr "FEL:"
594
 
@@ -596,234 +584,226 @@ msgstr "FEL:"
596
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
597
  msgstr "Mänsklig verifikation misslyckades. Klicka på rutan i reCAPTCHA-blocket nedan."
598
 
599
- #: ../cerber-load.php:1126
600
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
601
  msgstr "<strong>FEL</strong>: Lösenordet du angav för användarnamnet %s är felaktigt."
602
 
603
- #: ../cerber-load.php:1567
604
  msgid "Username is not allowed. Please choose another one."
605
  msgstr "Användarnamn är inte tillåtet. Välj ett annat."
606
 
607
- #: ../cerber-load.php:4122
608
  msgid "unspecified"
609
  msgstr "ospecificerat"
610
 
611
- #: ../cerber-load.php:4125
612
  msgid "Number of lockouts is increasing"
613
  msgstr "Antal utlåsningar är stigande"
614
 
615
- #: ../cerber-load.php:4130
616
  msgid "View activity for this IP"
617
  msgstr "Visa aktivitet för detta IP"
618
 
619
- #: ../cerber-load.php:4134 ../cerber-load.php:4136
620
  msgid "A new version of WP Cerber is available to install"
621
  msgstr "En ny version av WP Cerber är tillgänglig att installeras"
622
 
623
- #: ../cerber-load.php:4135
624
  msgid "Hi!"
625
  msgstr "Hej!"
626
 
627
- #: ../cerber-load.php:4138 ../cerber-load.php:4149 ../nexus/cerber-slave-list.php:
628
  #: 44
629
  msgid "Website"
630
  msgstr "Webbplats"
631
 
632
- #: ../cerber-load.php:4141 ../cerber-load.php:4142
633
  msgid "The WP Cerber security plugin has been deactivated"
634
  msgstr "Säkerhetstillägget WP Cerber har blivit avaktiverat"
635
 
636
- #: ../cerber-load.php:4144
637
  msgid "Not logged in"
638
  msgstr "Inte inloggad"
639
 
640
- #: ../cerber-load.php:4150
641
  msgid "By user"
642
  msgstr "Efter användare"
643
 
644
- #: ../cerber-load.php:4151
645
  msgid "From IP address"
646
  msgstr "Från IP-adress"
647
 
648
- #: ../cerber-load.php:4154
649
  msgid "From country"
650
  msgstr "Från land"
651
 
652
- #: ../cerber-load.php:4158
653
  msgid "The WP Cerber security plugin is now active"
654
  msgstr "Säkerhetstillägget WP Cerber är nu aktivt"
655
 
656
- #: ../cerber-load.php:5119
657
- msgid "Your IP address is added to the"
658
- msgstr "Din IP-adress läggs till i"
659
-
660
- #: ../cerber-load.php:5135
661
  msgid "Import settings"
662
  msgstr "Importera inställningar"
663
 
664
- #: ../settings.php:636
665
  msgid "Notification limit"
666
  msgstr "Gräns för notiser"
667
 
668
- #: ../settings.php:549
669
  msgid "Prohibited usernames"
670
  msgstr "Förbjudna användarnamn"
671
 
672
- #: ../settings.php:550
673
  msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
674
  msgstr "Användarnamn från denna lista får inte logga in eller registrera sig. Alla IP-adresser, som försökt använda någon av dessa användarnamn, kommer omedelbart att blockeras. Använd komma för att separera inloggningar."
675
 
676
- #: ../settings.php:558
677
- msgid "in minutes (leave empty to use default WP value)"
678
- msgstr "i minuter (lämna tomt för att använda standard WP-värde)"
679
-
680
- #: ../settings.php:1058
681
  msgid "reCAPTCHA settings"
682
  msgstr "reCaptcha-inställningar"
683
 
684
- #: ../settings.php:1063
685
  msgid "Site key"
686
  msgstr "Webbplatsnyckel"
687
 
688
- #: ../settings.php:1067
689
  msgid "Secret key"
690
  msgstr "Hemlig nyckel"
691
 
692
- #: ../settings.php:1077
693
  msgid "Enable reCAPTCHA for WordPress registration form"
694
  msgstr "Aktivera reCAPTCHA för WordPress registreringsformulär"
695
 
696
- #: ../settings.php:1086
697
  msgid "Lost password form"
698
  msgstr "Formulär för glömt lösenord"
699
 
700
- #: ../settings.php:1096
701
  msgid "Login form"
702
  msgstr "Inloggningsformulär"
703
 
704
- #: ../settings.php:1097
705
  msgid "Enable reCAPTCHA for WordPress login form"
706
  msgstr "Aktivera reCAPTCHA för WordPress inloggningsformulär"
707
 
708
- #: ../settings.php:1059
709
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
710
  msgstr "Innan du kan börja använda reCAPTCHA måste du skaffa webbplatsnyckel och hemlig nyckel på Googles webbplats"
711
 
712
- #: ../admin/cerber-settings.php:94 ../admin/cerber-settings.php:271 ../cerber-lab.
713
- #: php:828
714
  msgid "Know more"
715
  msgstr "Läs mer"
716
 
717
- #: ../common.php:1294
718
  msgid "User created"
719
  msgstr "Användare skapad"
720
 
721
- #: ../common.php:1295
722
  msgid "User registered"
723
  msgstr "Användare registrerad"
724
 
725
- #: ../common.php:1321
726
  msgid "reCAPTCHA verification failed"
727
  msgstr "reCAPTCHA-verifiering misslyckades"
728
 
729
- #: ../common.php:1322
730
  msgid "reCAPTCHA settings are incorrect"
731
  msgstr "reCAPTCHA-inställningarna är felaktiga"
732
 
733
- #: ../common.php:1325 ../common.php:1415
734
  msgid "Attempt to access prohibited URL"
735
  msgstr "Försök att få tillgång till förbjuden URL"
736
 
737
- #: ../common.php:1327 ../common.php:1417
738
  msgid "Attempt to log in with prohibited username"
739
  msgstr "Försök att logga in med förbjudna användarnamn"
740
 
741
- #: ../settings.php:281
742
  msgid "Cerber Lab connection"
743
  msgstr "Cerber Lab-anslutning"
744
 
745
- #: ../settings.php:282
746
  msgid "Send malicious IP addresses to the Cerber Lab"
747
  msgstr "Skicka skadliga IP-adresser till Cerber Lab"
748
 
749
- #: ../settings.php:287
750
  msgid "Cerber Lab protocol"
751
  msgstr "Cerber Lab-protokoll"
752
 
753
- #: ../settings.php:1003 ../settings.php:1076
754
  msgid "Registration form"
755
  msgstr "Registreringsformulär"
756
 
757
- #: ../settings.php:1082
758
  msgid "Enable reCAPTCHA for WooCommerce registration form"
759
  msgstr "Aktivera reCAPTCHA för WooCommerce registreringsformulär"
760
 
761
- #: ../settings.php:1087
762
  msgid "Enable reCAPTCHA for WordPress lost password form"
763
  msgstr "Aktivera reCAPTCHA för WordPress på formuläret för förlorat lösenord"
764
 
765
- #: ../settings.php:1092
766
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
767
  msgstr "Aktivera reCAPTCHA för WooCommerce på formuläret för förlorat lösenord"
768
 
769
- #: ../settings.php:1102
770
  msgid "Enable reCAPTCHA for WooCommerce login form"
771
  msgstr "Aktivera reCAPTCHA för WooCommerce inloggningsformulär"
772
 
773
- #: ../common.php:1323
774
  msgid "Request to the Google reCAPTCHA service failed"
775
  msgstr "Begäran om Google reCAPTCHA-tjänsten misslyckades"
776
 
777
- #: ../dashboard.php:931 ../dashboard.php:2341
778
  msgid "View all"
779
  msgstr "Visa alla"
780
 
781
- #: ../dashboard.php:2344
782
  msgid "Recently locked out IP addresses"
783
  msgstr "Nyligen utlåsta IP-adresser"
784
 
785
- #: ../cerber-lab.php:826
786
  msgid "OK, nail them all"
787
  msgstr "OK, sätt fast dem alla"
788
 
789
- #: ../cerber-lab.php:827
790
  msgid "NO, maybe later"
791
  msgstr "Nej, kanske senare"
792
 
793
- #: ../dashboard.php:54 ../dashboard.php:1778 ../dashboard.php:2681 ../dashboard.
794
- #: php:4556
795
  msgid "Dashboard"
796
  msgstr "Adminpanel"
797
 
798
- #: ../cerber-lab.php:824
799
  msgid "Want to make WP Cerber even more powerful?"
800
  msgstr "Vill du göra WP Cerber ännu mer kraftfull?"
801
 
802
- #: ../cerber-lab.php:825
803
  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."
804
  msgstr "Tillåt WP Cerber att skicka utlåsta skadliga IP-adresser till Cerber Lab. Detta hjälper teamet för tillägget att utveckla nya algoritmer för WP Cerber som kommer att försvara WordPress mot nya hot och botnets som dyker upp varje dag. Du kan när som helst inaktivera sändningen i inställningarna för tillägget."
805
 
806
- #: ../dashboard.php:3549
807
  msgid "IP address"
808
  msgstr "IP-adress"
809
 
810
- #: ../dashboard.php:838
811
  msgid "User login"
812
  msgstr "Användarinloggning"
813
 
814
- #: ../dashboard.php:839 ../dashboard.php:3555
815
  msgid "User ID"
816
  msgstr "Användar-ID"
817
 
818
- #: ../dashboard.php:1107 ../dashboard.php:4039
819
  msgid "Export"
820
  msgstr "Exportera"
821
 
822
- #: ../dashboard.php:1148
823
  msgid "Search for IP or username"
824
  msgstr "Sök efter IP eller användarnamn"
825
 
826
- #: ../dashboard.php:1159
827
  msgid "Filter"
828
  msgstr "Filter"
829
 
@@ -835,225 +815,221 @@ msgstr "Cerber adminpanel"
835
  msgid "Cerber tools"
836
  msgstr "Cerber verktyg"
837
 
838
- #: ../cerber-tools.php:242
839
  msgid "Unsubscribe"
840
  msgstr "Avregistrera prenumeration"
841
 
842
- #: ../cerber-load.php:4170 ../cerber-load.php:4171
843
  msgid "A new activity has been recorded"
844
  msgstr "En ny aktivitet har registrerats"
845
 
846
- #: ../cerber-load.php:4836 ../cerber-users.php:969
847
  msgid "User"
848
  msgstr "Användare"
849
 
850
- #: ../cerber-load.php:4844
851
  msgid "Search string"
852
  msgstr "Söksträng"
853
 
854
- #: ../settings.php:302
855
  msgid "Preferences"
856
  msgstr "Preferenser"
857
 
858
- #: ../settings.php:310
859
  msgid "Date format"
860
  msgstr "Datumformat"
861
 
862
- #: ../settings.php:311
863
  msgid "if empty, the default format %s will be used"
864
  msgstr "om det är tomt, kommer standardformatet %s att användas"
865
 
866
- #: ../settings.php:648
867
  msgid "Push notifications"
868
  msgstr "Pushmeddelanden"
869
 
870
- #: ../settings.php:619
871
  msgid "Email notifications"
872
  msgstr "E-postmeddelanden"
873
 
874
- #: ../settings.php:629 ../settings.php:678 ../settings.php:761 ../settings.php:917
875
  msgid "Use comma to specify multiple values"
876
  msgstr "Använd komma för att ange flera värden"
877
 
878
- #: ../settings.php:103
879
  msgid "All connected devices"
880
  msgstr "Alla anslutna enheter"
881
 
882
- #: ../settings.php:106
883
  msgid "No devices found"
884
  msgstr "Hittade inga enheter"
885
 
886
- #: ../settings.php:110
887
  msgid "Not available"
888
  msgstr "Inte tillgänglig"
889
 
890
- #: ../common.php:1319
891
  msgid "Password reset requested"
892
  msgstr "Lösenordsåterställning begärd"
893
 
894
- #: ../common.php:1418
895
  msgid "Limit on failed reCAPTCHA verifications is reached"
896
  msgstr "Gräns för om misslyckade reCAPTCHA-verifieringar uppnås"
897
 
898
- #: ../common.php:1570
899
  msgid "%s ago"
900
  msgstr "%s sedan"
901
 
902
- #: ../settings.php:156
903
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
904
  msgstr "Tillämpa gränser för inloggningsregler till IP-adresser i den vita IP-åtkomstlistan"
905
 
906
- #: ../settings.php:186
907
  msgid "Display 404 page"
908
  msgstr "Visa 404 sida"
909
 
910
- #: ../settings.php:1071
911
  msgid "Invisible reCAPTCHA"
912
  msgstr "Osynlig reCAPTCHA"
913
 
914
- #: ../settings.php:1072
915
  msgid "Enable invisible reCAPTCHA"
916
  msgstr "Aktivera osynlig reCAPTCHA"
917
 
918
- #: ../settings.php:1072
919
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
920
  msgstr "(aktivera det inte om du inte skaffar och anger webbplatsen och hemliga nycklar för den osynliga versionen)"
921
 
922
- #: ../settings.php:1107
923
  msgid "Enable reCAPTCHA for WordPress comment form"
924
  msgstr "Aktivera reCAPTCHA för WordPress-kommentarformulär"
925
 
926
- #: ../settings.php:1112
927
  msgid "Disable reCAPTCHA for logged in users"
928
  msgstr "Inaktivera reCAPTCHA för inloggade användare"
929
 
930
- #: ../settings.php:1116
931
  msgid "Limit attempts"
932
  msgstr "Begränsa försök"
933
 
934
- #: ../settings.php:1117
935
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
936
  msgstr "Lås ut IP-adress i %s minuter efter %s misslyckade försök inom %s minuter"
937
 
938
- #: ../settings.php:234
939
  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."
940
  msgstr "I Citadel-läget kan ingen logga in utom IP-adresser från den vita IP-åtkomstlistan. Aktiva användarsessioner påverkas inte."
941
 
942
- #: ../dashboard.php:835 ../dashboard.php:1083
943
  msgid "Event"
944
  msgstr "Händelse"
945
 
946
- #: ../common.php:286
947
  msgid "Spam comments denied"
948
  msgstr "Skräppostkommentarer nekades"
949
 
950
- #: ../common.php:288
951
  msgid "Malicious IP addresses detected"
952
  msgstr "Skadliga IP-adresser upptäcktes"
953
 
954
- #: ../common.php:289
955
  msgid "Lockouts occurred"
956
  msgstr "Utlåsningar inträffade"
957
 
958
- #: ../cerber-load.php:1549 ../cerber-load.php:1555 ../cerber-load.php:1580 ..
959
- #: /cerber-load.php:1587
960
  msgid "You are not allowed to register."
961
  msgstr "Du har inte behörighet att registrera."
962
 
963
- #: ../common.php:1306
964
  msgid "Spam comment denied"
965
  msgstr "Skräppostkommentar nekad"
966
 
967
- #: ../common.php:1329
968
  msgid "Attempt to log in denied"
969
  msgstr "Försök att logga in nekad"
970
 
971
- #: ../common.php:1330
972
  msgid "Attempt to register denied"
973
  msgstr "Försök att registrera nekad"
974
 
975
- #: ../common.php:283
976
  msgid "Malicious activities mitigated"
977
  msgstr "Skadliga aktiviteter mildrades"
978
 
979
- #: ../settings.php:998
980
  msgid "Comment form"
981
  msgstr "Kommentarsformulär"
982
 
983
- #: ../settings.php:999
984
  msgid "Protect comment form with bot detection engine"
985
  msgstr "Skydda kommentarformulär med botdetekteringsmotor"
986
 
987
- #: ../settings.php:1004
988
  msgid "Protect registration form with bot detection engine"
989
  msgstr "Skydda registreringsformulär med botdetekteringsmotor"
990
 
991
- #: ../dashboard.php:4720
992
- msgid "Export & Import"
993
- msgstr "Exportera och importera"
994
-
995
- #: ../dashboard.php:4721
996
  msgid "Diagnostic"
997
  msgstr "Diagnostik"
998
 
999
- #: ../dashboard.php:4724
1000
  msgid "License"
1001
  msgstr "Licens"
1002
 
1003
- #: ../cerber-load.php:1874
1004
  msgid "Sorry, human verification failed."
1005
  msgstr "Tyvärr, mänsklig verifiering misslyckades."
1006
 
1007
- #: ../common.php:1419
1008
  msgid "Bot activity is detected"
1009
  msgstr "Botaktivitet är upptäckt"
1010
 
1011
- #: ../settings.php:1039
1012
  msgid "Comment processing"
1013
  msgstr "Kommentarbehandling"
1014
 
1015
- #: ../settings.php:1043
1016
  msgid "If a spam comment detected"
1017
  msgstr "Om en skräppostkommentar upptäcks"
1018
 
1019
- #: ../settings.php:1048
1020
  msgid "Trash spam comments"
1021
  msgstr "Släng skräppostkommentarer"
1022
 
1023
- #: ../settings.php:1050
1024
  msgid "Move spam comments to trash after"
1025
  msgstr "Flytta skräppostkommentarer till papperskorgen efter"
1026
 
1027
- #: ../common.php:1307
1028
  msgid "Spam form submission denied"
1029
  msgstr "Skräppost nekades att skickas in via formulär"
1030
 
1031
- #: ../settings.php:1008
1032
  msgid "Other forms"
1033
  msgstr "Andra formulär"
1034
 
1035
- #: ../settings.php:1009
1036
  msgid "Protect all forms on the website with bot detection engine"
1037
  msgstr "Skydda alla formulär på webbplatsen med botdetekteringsmotor"
1038
 
1039
- #: ../settings.php:1019
1040
  msgid "Safe mode"
1041
  msgstr "Säkert läge"
1042
 
1043
- #: ../settings.php:1020
1044
  msgid "Use less restrictive policies (allow AJAX)"
1045
  msgstr "Använd mindre restriktiva policyer (tillåt AJAX)"
1046
 
1047
- #: ../dashboard.php:952 ../dashboard.php:1734 ../dashboard.php:4007 ../settings.
1048
- #: php:374 ../settings.php:1024
1049
  msgid "Logged in users"
1050
  msgstr "Inloggade användare"
1051
 
1052
- #: ../settings.php:1025
1053
  msgid "Disable bot detection engine for logged in users"
1054
  msgstr "Inaktivera botdetekteringsmotor för inloggade användare"
1055
 
1056
- #: ../dashboard.php:193 ../dashboard.php:1081
1057
  msgid "Country"
1058
  msgstr "Land"
1059
 
@@ -1061,45 +1037,45 @@ msgstr "Land"
1061
  msgid "Cerber Security Rules"
1062
  msgstr "Cerber säkerhetsregler"
1063
 
1064
- #: ../dashboard.php:61 ../dashboard.php:4668
1065
  msgid "Security Rules"
1066
  msgstr "Säkerhetsregler"
1067
 
1068
- #: ../dashboard.php:1587
1069
  msgid "Failed login attempts"
1070
  msgstr "Misslyckade inloggningsförsök"
1071
 
1072
- #: ../dashboard.php:1544 ../dashboard.php:1588
1073
  msgid "Registered"
1074
  msgstr "Registrerad"
1075
 
1076
- #: ../dashboard.php:1658 ../cerber-users.php:52 ../cerber-users.php:1106
1077
  msgid "You"
1078
  msgstr "Du"
1079
 
1080
- #: ../common.php:287
1081
  msgid "Spam form submissions denied"
1082
  msgstr "Inskickning av skräppostformulär nekad"
1083
 
1084
- #: ../dashboard.php:2380 ../cerber-load.php:4161 ../cerber-load.php:5121
1085
  msgid "Getting Started Guide"
1086
  msgstr "Komma igång guiden"
1087
 
1088
- #: ../dashboard.php:4670
1089
  msgid "Countries"
1090
  msgstr "Länder"
1091
 
1092
- #: ../dashboard.php:3277
1093
  msgid "Permitted for one country"
1094
  msgid_plural "Permitted for %d countries"
1095
  msgstr[0] "Tillåtet för ett land"
1096
  msgstr[1] "Tillåtet för %d länder"
1097
 
1098
- #: ../dashboard.php:3288
1099
  msgid "No rule"
1100
  msgstr "Ingen regel"
1101
 
1102
- #: ../dashboard.php:3449
1103
  msgid "Security rules have been updated"
1104
  msgstr "Säkerhetsregler har uppdaterats"
1105
 
@@ -1108,243 +1084,239 @@ msgstr "Säkerhetsregler har uppdaterats"
1108
  msgid "https://wpcerber.com"
1109
  msgstr "https://wpcerber.com"
1110
 
1111
- #: ../common.php:1308
1112
  msgid "Form submission denied"
1113
  msgstr "Formulärinlämning nekad"
1114
 
1115
- #: ../common.php:1309
1116
  msgid "Comment denied"
1117
  msgstr "Kommentar nekad"
1118
 
1119
- #: ../common.php:1335
1120
  msgid "Request to REST API denied"
1121
  msgstr "Begäran till REST API nekad"
1122
 
1123
- #: ../common.php:1336
1124
  msgid "XML-RPC request denied"
1125
  msgstr "XML-RPC-förfråga nekad"
1126
 
1127
- #: ../common.php:1357
1128
  msgid "Bot detected"
1129
  msgstr "Bot upptäckt"
1130
 
1131
- #: ../common.php:1358
1132
  msgid "Citadel mode is active"
1133
  msgstr "Citadelläget är aktivt"
1134
 
1135
- #: ../common.php:1362
1136
  msgid "Malicious activity detected"
1137
  msgstr "Skadlig aktivitet upptäckt"
1138
 
1139
- #: ../common.php:1363
1140
  msgid "Blocked by country rule"
1141
  msgstr "Blockerad av landsregeln"
1142
 
1143
- #: ../common.php:1364
1144
  msgid "Limit reached"
1145
  msgstr "Gräns nådd"
1146
 
1147
- #: ../common.php:1365
1148
  msgid "Multiple suspicious activities"
1149
  msgstr "Flera misstänkta aktiviteter"
1150
 
1151
- #: ../common.php:1420
1152
  msgid "Multiple suspicious activities were detected"
1153
  msgstr "Flera misstänkta aktiviteter upptäcktes"
1154
 
1155
- #: ../settings.php:375
1156
  msgid "Allow REST API for logged in users"
1157
  msgstr "Tillåt REST API för inloggade användare"
1158
 
1159
- #: ../settings.php:389
1160
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
1161
  msgstr "Ange REST API-namnområden för att tillåtas om REST API är inaktiverat. En sträng per rad."
1162
 
1163
- #: ../settings.php:526
1164
  msgid "Registration limit"
1165
  msgstr "Registreringsgräns"
1166
 
1167
- #: ../settings.php:564
1168
  msgid "Sort users in dashboard"
1169
  msgstr "Sortera användare i adminpanelen"
1170
 
1171
- #: ../settings.php:565
1172
  msgid "by date of registration"
1173
  msgstr "efter registreringsdatum"
1174
 
1175
- #: ../settings.php:1029
1176
  msgid "Query whitelist"
1177
  msgstr ""
1178
 
1179
- #: ../dashboard.php:3257
1180
  msgid "Start typing here to find a country"
1181
  msgstr "Börja skriva här för att hitta ett land"
1182
 
1183
- #: ../dashboard.php:3372
1184
  msgid "Click on a country name to add it to the list of selected countries"
1185
  msgstr "Klicka på ett landsnamn för att lägga till det i listan över valda länder"
1186
 
1187
- #: ../dashboard.php:3404
1188
  msgid "Submit forms"
1189
  msgstr "Skicka formulär"
1190
 
1191
- #: ../dashboard.php:3405
1192
  msgid "Post comments"
1193
  msgstr "Publicera kommentarer"
1194
 
1195
- #: ../dashboard.php:3399
1196
- msgid "Log in to the website"
1197
- msgstr "Logga in på webbplatsen"
1198
-
1199
- #: ../dashboard.php:3403
1200
  msgid "Register on the website"
1201
  msgstr "Registrera på webbplatsen"
1202
 
1203
- #: ../dashboard.php:3406
1204
  msgid "Use XML-RPC"
1205
  msgstr "Använd XML-RPC"
1206
 
1207
- #: ../dashboard.php:3407
1208
  msgid "Use REST API"
1209
  msgstr "Använd REST API"
1210
 
1211
- #: ../settings.php:1045
1212
  msgid "Deny it completely"
1213
  msgstr "Förneka det fullständigt"
1214
 
1215
- #: ../settings.php:1045
1216
  msgid "Mark it as spam"
1217
  msgstr "Markera det som skräppost"
1218
 
1219
- #: ../dashboard.php:2320
1220
  msgid "in the last 24 hours"
1221
  msgstr "under de senaste 24 timmarna"
1222
 
1223
- #: ../dashboard.php:2682
1224
  msgid "Main settings"
1225
  msgstr "Huvudinställningar"
1226
 
1227
- #: ../settings.php:663
1228
  msgid "Weekly reports"
1229
  msgstr "Veckovisa rapporter"
1230
 
1231
- #: ../admin/cerber-settings.php:522
1232
  msgid "Sunday"
1233
  msgstr "Söndag"
1234
 
1235
- #: ../admin/cerber-settings.php:523
1236
  msgid "Monday"
1237
  msgstr "Måndag"
1238
 
1239
- #: ../admin/cerber-settings.php:524
1240
  msgid "Tuesday"
1241
  msgstr "Tisdag"
1242
 
1243
- #: ../admin/cerber-settings.php:525
1244
  msgid "Wednesday"
1245
  msgstr "Onsdag"
1246
 
1247
- #: ../admin/cerber-settings.php:526
1248
  msgid "Thursday"
1249
  msgstr "Torsdag"
1250
 
1251
- #: ../admin/cerber-settings.php:527
1252
  msgid "Friday"
1253
  msgstr "Fredag"
1254
 
1255
- #: ../admin/cerber-settings.php:528
1256
  msgid "Saturday"
1257
  msgstr "Lördag"
1258
 
1259
- #: ../admin/cerber-settings.php:654 ../admin/cerber-settings.php:655
1260
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1261
  msgstr "Om du använder ett cachetillägg måste du lägga till din nya URL för inloggning till listan över sidor som inte ska caches."
1262
 
1263
- #: ../cerber-load.php:4176
1264
  msgid "Weekly report"
1265
  msgstr "Veckorapport"
1266
 
1267
- #: ../cerber-load.php:4179 ../cerber-load.php:4189
1268
  msgid "To change reporting settings visit"
1269
  msgstr "För att ändra rapporteringsinställningar besök"
1270
 
1271
- #: ../cerber-load.php:4212
1272
  msgid "Your login page:"
1273
  msgstr "Din inloggningssida:"
1274
 
1275
- #: ../cerber-load.php:4216
1276
  msgid "Your license is valid until"
1277
  msgstr "Din licens är giltig till"
1278
 
1279
- #: ../cerber-load.php:4322
1280
  msgid "Activity details"
1281
  msgstr "Aktivitetsdetaljer"
1282
 
1283
- #: ../admin/cerber-settings.php:557
1284
  msgid "Click to send now"
1285
  msgstr "Klicka för att skicka nu"
1286
 
1287
- #: ../cerber-load.php:818
1288
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1289
  msgstr ">>> Översättare av WP Cerber? För att få PRO-licens gratis, uppge dina kontaktuppgifter här: https://wpcerber.com/contact/"
1290
 
1291
- #: ../dashboard.php:571
1292
  msgid "Email has been sent to"
1293
  msgstr "E-post har skickats till"
1294
 
1295
- #: ../dashboard.php:574
1296
  msgid "Unable to send email to"
1297
  msgstr "Det går inte att skicka e-post till"
1298
 
1299
- #: ../dashboard.php:3280
1300
  msgid "Not permitted for one country"
1301
  msgid_plural "Not permitted for %d countries"
1302
  msgstr[0] "Inte tillåtet för ett land"
1303
  msgstr[1] "Inte tillåtet för %d länder"
1304
 
1305
- #: ../dashboard.php:3376
1306
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1307
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1308
  msgstr "Valda länder är tillåtna att %s, andra länder är inte tillåtna att"
1309
 
1310
- #: ../dashboard.php:3379
1311
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1312
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1313
  msgstr "Valda länder är inte tillåtna att %s, andra länder har tillåtelse att"
1314
 
1315
- #: ../cerber-load.php:4310
1316
  msgid "Weekly Report"
1317
  msgstr "Veckorapport"
1318
 
1319
- #: ../settings.php:189
1320
  msgid "Use 404 template from the active theme"
1321
  msgstr "Använd 404 mall från det aktiva temat"
1322
 
1323
- #: ../settings.php:190
1324
  msgid "Display simple 404 page"
1325
  msgstr "Visa enkel 404 sida"
1326
 
1327
- #: ../settings.php:1030
1328
  msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
1329
  msgstr "Ange en del av frågesträngen eller sökvägen för att exkludera en begäran från inspektion av sökmotor. Ett objekt per rad."
1330
 
1331
- #: ../settings.php:667
1332
  msgid "Enable reporting"
1333
  msgstr "Aktivera rapportering"
1334
 
1335
- #: ../cerber-load.php:4240
1336
  msgid "Your last sign-in was %s from %s"
1337
  msgstr "Din senaste inloggning var %s från %s"
1338
 
1339
- #: ../dashboard.php:316
1340
  msgid "Optional comment for this entry"
1341
  msgstr "Valfri kommentar för detta inlägg"
1342
 
1343
- #: ../dashboard.php:338
1344
  msgid "You cannot add your IP address or network"
1345
  msgstr "Du kan inte lägga till din IP-adress eller ditt nätverk"
1346
 
1347
- #: ../settings.php:542 ../settings.php:550
1348
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1349
  msgstr "För specifiera ett REGEX-mönster, omslut ett mönster i två snedstreck."
1350
 
@@ -1352,187 +1324,179 @@ msgstr "För specifiera ett REGEX-mönster, omslut ett mönster i två snedstrec
1352
  msgid "Cerber Traffic Inspector"
1353
  msgstr "Cerber trafikkontroll"
1354
 
1355
- #: ../dashboard.php:56 ../dashboard.php:1741 ../dashboard.php:4622
1356
  msgid "Traffic Inspector"
1357
  msgstr "Trafikinspektion"
1358
 
1359
- #: ../dashboard.php:1780 ../cerber-users.php:1140
1360
  msgid "Traffic"
1361
  msgstr "Trafik"
1362
 
1363
- #: ../dashboard.php:3975
1364
  msgid "Request"
1365
  msgstr "Förfrågan"
1366
 
1367
- #: ../dashboard.php:3977 ../cerber-users.php:974
1368
  msgid "Host Info"
1369
  msgstr "Server information"
1370
 
1371
- #: ../dashboard.php:3978
1372
  msgid "User Agent"
1373
  msgstr "Användaragent"
1374
 
1375
- #: ../dashboard.php:4003
1376
  msgid "All requests"
1377
  msgstr "Alla förfrågningar"
1378
 
1379
- #: ../dashboard.php:953 ../dashboard.php:4008
1380
  msgid "Not logged in visitors"
1381
  msgstr "Inte inloggade besökare"
1382
 
1383
- #: ../dashboard.php:4011
1384
  msgid "Form submissions"
1385
  msgstr "Formulärinlämningar"
1386
 
1387
- #: ../dashboard.php:4013
1388
  msgid "Page Not Found"
1389
  msgstr "Sidan hittades inte"
1390
 
1391
- #: ../dashboard.php:4022
1392
  msgid "Longer than"
1393
  msgstr "Längre än"
1394
 
1395
- #: ../dashboard.php:4045
1396
  msgid "Refresh"
1397
  msgstr "Uppdatera"
1398
 
1399
- #: ../common.php:213
1400
  msgid "Check for requests"
1401
  msgstr "Kontrollera efter förfrågningar"
1402
 
1403
- #: ../common.php:1782
1404
  msgid "Not specified"
1405
  msgstr "Inte specificerad"
1406
 
1407
- #: ../settings.php:742
1408
  msgid "Logging mode"
1409
  msgstr "Loggningsläge"
1410
 
1411
- #: ../settings.php:745
1412
  msgid "Logging disabled"
1413
  msgstr "Loggning inaktiverad"
1414
 
1415
- #: ../settings.php:746
1416
  msgid "Smart"
1417
  msgstr "Smart"
1418
 
1419
- #: ../settings.php:747
1420
  msgid "All traffic"
1421
  msgstr "All trafik"
1422
 
1423
- #: ../settings.php:751
1424
- msgid "Ignore crawlers"
1425
- msgstr "Ignorera sökrobotar"
1426
-
1427
- #: ../settings.php:759
1428
  msgid "Mask these form fields"
1429
  msgstr "Maskera dessa formulärfält"
1430
 
1431
- #: ../settings.php:784
1432
  msgid "milliseconds"
1433
  msgstr "millisekunder"
1434
 
1435
- #: ../settings.php:693
1436
  msgid "Enable traffic inspection"
1437
  msgstr "Aktivera trafikinspektion"
1438
 
1439
- #: ../settings.php:755
1440
  msgid "Save request fields"
1441
  msgstr "Spara förfrågningsfält"
1442
 
1443
- #: ../settings.php:783
1444
  msgid "Page generation time threshold"
1445
  msgstr "Tidsgräns för sidgenerering"
1446
 
1447
- #: ../dashboard.php:3995
1448
  msgid "No requests have been logged."
1449
  msgstr "Inga förfrågningar har loggats."
1450
 
1451
- #: ../dashboard.php:1740
1452
  msgid "enabled"
1453
  msgstr "aktiverad"
1454
 
1455
- #: ../dashboard.php:1745
1456
  msgid "no connection"
1457
  msgstr "Ingen anslutning"
1458
 
1459
- #: ../dashboard.php:1534
1460
  msgid "Last seen"
1461
  msgstr "Senast sedd"
1462
 
1463
- #: ../common.php:1331 ../common.php:1421
1464
- msgid "Probing for vulnerable PHP code"
1465
- msgstr "Söker efter sårbar PHP-kod"
1466
-
1467
- #: ../cerber-load.php:3954
1468
  msgid "We're sorry, you are not allowed to proceed"
1469
  msgstr "Vi är ledsna, du saknar behörighet att fortsätta"
1470
 
1471
- #: ../settings.php:706
1472
  msgid "Request whitelist"
1473
  msgstr "Begär vitlista"
1474
 
1475
- #: ../settings.php:710
1476
  msgid "Enter a request URI to exclude the request from inspection. One item per line."
1477
  msgstr "Ange en URI-begäran för att utesluta begäran från inspektion. Ett objekt per rad."
1478
 
1479
- #: ../settings.php:766
1480
  msgid "Save request headers"
1481
  msgstr ""
1482
 
1483
- #: ../settings.php:771
1484
  msgid "Save $_SERVER"
1485
  msgstr "Spara $_SERVER"
1486
 
1487
- #: ../settings.php:775
1488
  msgid "Save request cookies"
1489
  msgstr ""
1490
 
1491
- #: ../settings.php:333
1492
  msgid "Protect admin scripts"
1493
  msgstr "Skydda adminskript"
1494
 
1495
- #: ../settings.php:334
1496
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1497
  msgstr "Blockera obehörig åtkomst till load-scripts.php och load-styles.php"
1498
 
1499
- #: ../common.php:2765
1500
  msgid "Unable to create the directory"
1501
  msgstr "Det går inte att skapa katalogen"
1502
 
1503
- #: ../common.php:2770
1504
  msgid "Destination folder access denied"
1505
  msgstr "Åtkomst till destinationsmapp nekad"
1506
 
1507
- #: ../common.php:2773
1508
  msgid "File not found"
1509
  msgstr "Filen hittades inte"
1510
 
1511
- #: ../common.php:2776
1512
  msgid "Unable to copy the file"
1513
  msgstr "Det går inte att kopiera filen"
1514
 
1515
- #: ../common.php:2782
1516
  msgid "Unable to delete the file"
1517
  msgstr "Det går inte att ta bort filen."
1518
 
1519
- #: ../settings.php:126
1520
  msgid "Plugin initialization"
1521
  msgstr "Initialisering av tillägg"
1522
 
1523
- #: ../settings.php:129
1524
  msgid "Load security engine"
1525
  msgstr "Ladda säkerhetsmotor"
1526
 
1527
- #: ../settings.php:132
1528
  msgid "Legacy mode"
1529
  msgstr "Bakåtkompatibelt läge"
1530
 
1531
- #: ../settings.php:133
1532
  msgid "Standard mode"
1533
  msgstr "Standardläge"
1534
 
1535
- #: ../admin/cerber-settings.php:625
1536
  msgid "Plugin initialization mode has not been changed"
1537
  msgstr "Tilläggets initialiseringsläge har inte ändrats"
1538
 
@@ -1541,443 +1505,438 @@ msgstr "Tilläggets initialiseringsläge har inte ändrats"
1541
  msgid "This is a standard boot module for WP Cerber Security & Antispam plugin. It was installed when you set the plugin initialization mode to Standard. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1542
  msgstr "Detta är en standardstartmodul för tillägget WP Cerber Security & Antispam. Det installerades när du ställde in initieringsläget för tillägget till standard. Läs mer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1543
 
1544
- #: ../common.php:1333
1545
  msgid "File upload denied"
1546
  msgstr "Filuppladdning nekad"
1547
 
1548
- #: ../settings.php:710
1549
  msgid "To specify a REGEX pattern, enclose a whole line in two braces."
1550
  msgstr "För att ange ett REGEX-mönster, omslut en hel rad i två klammerparenteser."
1551
 
1552
- #: ../settings.php:119
1553
  msgid "Be careful about enabling these options."
1554
  msgstr "Var försiktig med att aktivera dessa alternativ."
1555
 
1556
- #: ../settings.php:119
1557
  msgid "If you forget your Custom login URL, you will be unable to log in."
1558
  msgstr "Om du glömmer din anpassade URL för inloggning kommer du inte att kunna logga in."
1559
 
1560
- #: ../dashboard.php:67 ../dashboard.php:4683
1561
  msgid "Site Integrity"
1562
  msgstr "Webbplatsintegritet"
1563
 
1564
- #: ../dashboard.php:1765 ../dashboard.php:1767 ../cerber-users.php:20 ../cerber-
1565
- #: users.php:445 ../settings.php:696 ../settings.php:724 ../settings.php:830 ..
1566
- #: /settings.php:839 ../settings.php:1178 ../cerber-scanner.php:1622
1567
  msgid "Disabled"
1568
  msgstr "Inaktiverad"
1569
 
1570
- #: ../dashboard.php:1766 ../cerber-scanner.php:1065
1571
  msgid "Quick Scan"
1572
  msgstr "Snabb skanning"
1573
 
1574
- #: ../dashboard.php:1768 ../cerber-scanner.php:1065
1575
  msgid "Full Scan"
1576
  msgstr "Fullständig skanning"
1577
 
1578
- #. Name of the plugin
1579
- #:
1580
- msgid "WP Cerber Security, Antispam & Malware Scan"
1581
- msgstr "WP Cerber Security, Antispam & Malware Scan"
1582
-
1583
- #: ../common.php:1366
1584
  msgid "Denied"
1585
  msgstr "Nekad"
1586
 
1587
- #: ../settings.php:155 ../settings.php:501 ../settings.php:702
1588
  msgid "Use White IP Access List"
1589
  msgstr "Använd vit IP-åtkomstlista"
1590
 
1591
- #: ../settings.php:176
1592
  msgid "Disable dashboard redirection"
1593
  msgstr "Inaktivera omdirigering av adminpanel"
1594
 
1595
- #: ../settings.php:177
1596
  msgid "Disable automatic redirection to the login page when /wp-admin/ is requested by an unauthorized request"
1597
  msgstr "Inaktivera automatisk omdirigering till inloggningssidan när /wp-admin/ begärs av en obehörig förfrågan"
1598
 
1599
- #: ../settings.php:801
1600
  msgid "Scanner settings"
1601
  msgstr "Skanningsinställningar"
1602
 
1603
- #: ../settings.php:806
1604
  msgid "Custom signatures"
1605
  msgstr "Anpassade signaturer"
1606
 
1607
- #: ../settings.php:810
1608
  msgid "Specify custom PHP code signatures. One item per line. To specify a REGEX pattern, enclose a whole line in two braces."
1609
  msgstr "Specifiera anpassade PHP-kodsignaturer. Ett objekt per rad. För att ange ett REGEX-mönster, omslut en hel rad i två klammerparenteser."
1610
 
1611
- #: ../settings.php:813
1612
  msgid "Unwanted file extensions"
1613
  msgstr "Oönskade filtillägg"
1614
 
1615
- #: ../settings.php:817
1616
  msgid "Specify file extensions to search for. Full scan only. Use comma to separate items."
1617
  msgstr "Specifiera filtillägg att söka efter. Endast fullständig skanning. Använd komma för att separera objekt."
1618
 
1619
- #: ../settings.php:820
1620
  msgid "Directories to exclude"
1621
  msgstr "Kataloger att exkludera"
1622
 
1623
- #: ../settings.php:845
1624
  msgid "Scan temporary directory"
1625
  msgstr "Skanna tillfällig katalog"
1626
 
1627
- #: ../settings.php:849
1628
  msgid "Scan session directory"
1629
  msgstr "Skanna sessionskatalog"
1630
 
1631
- #: ../settings.php:857
1632
  msgid "Delete quarantined files after"
1633
  msgstr "Ta bort filer i karantän efter"
1634
 
1635
- #: ../settings.php:872
1636
  msgid "Launch Quick Scan"
1637
  msgstr "Starta snabbskanning"
1638
 
1639
- #: ../cerber-scanner.php:1623
1640
  msgid "Every hour"
1641
  msgstr "Varje timme"
1642
 
1643
- #: ../cerber-scanner.php:1624
1644
  msgid "Every 3 hours"
1645
  msgstr "Var 3:e timme"
1646
 
1647
- #: ../cerber-scanner.php:1625
1648
  msgid "Every 6 hours"
1649
  msgstr "Var 6:e timme"
1650
 
1651
- #: ../settings.php:877
1652
  msgid "Launch Full Scan"
1653
  msgstr "Starta fullständig skanning"
1654
 
1655
- #: ../settings.php:892 ../settings.php:938
1656
  msgid "Low severity"
1657
  msgstr "Låg allvarlighet"
1658
 
1659
- #: ../settings.php:893 ../settings.php:939
1660
  msgid "Medium severity"
1661
  msgstr "Medel allvarlighet"
1662
 
1663
- #: ../settings.php:894 ../settings.php:940
1664
  msgid "High severity"
1665
  msgstr "Hög allvarlighet"
1666
 
1667
- #: ../settings.php:889
1668
  msgid "Report an issue if any of the following is true"
1669
  msgstr "Rapportera ett problem om något av följande är sant"
1670
 
1671
- #: ../settings.php:898
1672
  msgid "Send email report"
1673
  msgstr "Skicka e-postrapport"
1674
 
1675
- #: ../settings.php:901
1676
  msgid "After every scan"
1677
  msgstr "Efter varje skanning"
1678
 
1679
- #: ../settings.php:902
1680
  msgid "If any changes in scan results occurred"
1681
  msgstr "Om några ändringar i skanningsresultat uppstod"
1682
 
1683
- #: ../settings.php:907
1684
  msgid "Include file sizes"
1685
  msgstr "Inkludera filstorlekar"
1686
 
1687
- #: ../settings.php:911
1688
  msgid "Include scan errors"
1689
  msgstr "Inkludera skanningsfel"
1690
 
1691
- #: ../dashboard.php:4685
1692
  msgid "Security Scanner"
1693
  msgstr "Säkerhetsskanning"
1694
 
1695
- #: ../dashboard.php:4687
1696
  msgid "Scheduling"
1697
  msgstr "Schemaläggning"
1698
 
1699
- #: ../cerber-scanner.php:95
1700
  msgid "Currently a scheduled scan in progress. Please wait until it is finished."
1701
  msgstr "För närvarande pågår en schemalagd skanning. Vänta tills det är klart."
1702
 
1703
- #: ../cerber-scanner.php:99
1704
  msgid "Previous scan started %s has not been completed. Continue scanning?"
1705
  msgstr "Föregående skanning startad %s har inte slutförts. Fortsätt skanning?"
1706
 
1707
- #: ../cerber-scanner.php:108
1708
  msgid "It seems this website has never been scanned. To start scanning click the button below."
1709
  msgstr "Det verkar som om denna webbplats aldrig har skannats. För att börja skanna, klicka på knappen nedan."
1710
 
1711
- #: ../cerber-scanner.php:111
1712
  msgid "Start Quick Scan"
1713
  msgstr "Starta snabb skanning"
1714
 
1715
- #: ../cerber-scanner.php:112
1716
  msgid "Start Full Scan"
1717
  msgstr "Starta fullständig skanning"
1718
 
1719
- #: ../cerber-scanner.php:113
1720
  msgid "Stop Scanning"
1721
  msgstr "Sluta skanna"
1722
 
1723
- #: ../cerber-scanner.php:114
1724
  msgid "Continue Scanning"
1725
  msgstr "Fortsätter skanning"
1726
 
1727
- #: ../cerber-scanner.php:150
1728
  msgid "Delete"
1729
  msgstr "Ta bort"
1730
 
1731
- #: ../cerber-scanner.php:1568
1732
  msgid "Verified"
1733
  msgstr "Verifierad"
1734
 
1735
- #: ../cerber-scanner.php:1575
1736
  msgid "Integrity data not found"
1737
  msgstr "Integritetsdata hittades inte"
1738
 
1739
- #: ../cerber-scanner.php:1576
1740
  msgid "Unable to check the integrity of the plugin due to a network error"
1741
  msgstr "Kan inte kontrollera tilläggets integritet på grund av ett nätverksfel"
1742
 
1743
- #: ../cerber-scanner.php:1577
1744
  msgid "Unable to check the integrity of WordPress files due to a network error"
1745
  msgstr "Kan inte kontrollera integriteten för WordPress-filer på grund av ett nätverksfel"
1746
 
1747
- #: ../cerber-scanner.php:1578
1748
  msgid "Unable to check the integrity of the theme due to a network error"
1749
  msgstr "Kan inte kontrollera integriteten för tema på grund av ett nätverksfel"
1750
 
1751
- #: ../cerber-scanner.php:1581
1752
  msgid "Local file doesn't exist"
1753
  msgstr "Lokal fil finns inte"
1754
 
1755
- #: ../cerber-scanner.php:1583
1756
  msgid "Unable to process file"
1757
  msgstr "Kan inte bearbeta fil"
1758
 
1759
- #: ../cerber-scanner.php:1584 ../cerber-scanner.php:5104
1760
  msgid "Unable to open file"
1761
  msgstr "Kan inte öppna fil"
1762
 
1763
- #: ../cerber-scanner.php:1586 ../cerber-scanner.php:3986
1764
  msgid "Checksum mismatch"
1765
  msgstr "Kontrollsumma matchar inte"
1766
 
1767
- #: ../cerber-scanner.php:1589
1768
  msgid "Suspicious code found"
1769
  msgstr "Misstänkt kod hittad"
1770
 
1771
- #: ../cerber-scanner.php:1591
1772
  msgid "Unattended suspicious file"
1773
  msgstr "Obevakad misstänkt fil"
1774
 
1775
- #: ../cerber-scanner.php:1592
1776
  msgid "Executable code found"
1777
  msgstr "Körbar kod hittad"
1778
 
1779
- #: ../cerber-scanner.php:1596
1780
  msgid "Unwanted file extension"
1781
  msgstr "Oönskade filtillägg"
1782
 
1783
- #: ../cerber-scanner.php:1598
1784
  msgid "Content has been modified"
1785
  msgstr "Innehållet har blivit ändrat"
1786
 
1787
- #: ../cerber-scanner.php:1599
1788
  msgid "New file"
1789
  msgstr "Ny fil"
1790
 
1791
- #: ../cerber-scanner.php:2645
1792
  msgid "Custom signature found"
1793
  msgstr "Anpassad signatur hittad"
1794
 
1795
- #: ../cerber-scanner.php:3863
1796
  msgid "Scanning folders for files"
1797
  msgstr "Skanna mappar efter filer"
1798
 
1799
- #: ../cerber-scanner.php:3867
1800
  msgid "Parsing the list of files"
1801
  msgstr "Analysera listan över filer"
1802
 
1803
- #: ../cerber-scanner.php:3868
1804
  msgid "Checking for new and modified files"
1805
  msgstr "Söker efter nya och ändrade filer"
1806
 
1807
- #: ../cerber-scanner.php:3869
1808
  msgid "Verifying the integrity of WordPress"
1809
  msgstr "Verifierar integriteten av WordPress"
1810
 
1811
- #: ../cerber-scanner.php:3871
1812
  msgid "Verifying the integrity of the plugins"
1813
  msgstr "Verifierar integriteten av tilläggen"
1814
 
1815
- #: ../cerber-scanner.php:3873
1816
  msgid "Verifying the integrity of the themes"
1817
  msgstr "Verifierar integriteten av teman"
1818
 
1819
- #: ../cerber-scanner.php:3874
1820
  msgid "Searching for malicious code"
1821
  msgstr "Söker efter skadlig kod"
1822
 
1823
- #: ../cerber-scanner.php:3875
1824
  msgid "Finalizing the scan"
1825
  msgstr "Slutför skanningen"
1826
 
1827
- #: ../cerber-scanner.php:4003
1828
  msgid "Files to scan"
1829
  msgstr "Filer att skanna"
1830
 
1831
- #: ../cerber-scanner.php:4010
1832
  msgid "Critical issues"
1833
  msgstr "Kritiska problem"
1834
 
1835
- #: ../cerber-scanner.php:4010 ../cerber-scanner.php:5295
1836
  msgid "Issues total"
1837
  msgstr "Problem totalt"
1838
 
1839
- #: ../cerber-scanner.php:4704
1840
  msgid "File access error. Possibly scan results are outdated. Please run Quick or Full Scan."
1841
  msgstr "Filåtkomstfel. Möjliga skanningsresultat är föråldrade. Kör snabb eller full skanning."
1842
 
1843
- #: ../cerber-scanner.php:5418
1844
  msgid "To view full report visit"
1845
  msgstr "För att visa fullständigt rapport besök"
1846
 
1847
- #: ../cerber-load.php:4186
1848
  msgid "Scanner Report"
1849
  msgstr "Skanningsrapport"
1850
 
1851
- #: ../settings.php:827
1852
  msgid "Monitor new files"
1853
  msgstr "Övervaka nya filer"
1854
 
1855
- #: ../settings.php:836
1856
  msgid "Monitor modified files"
1857
  msgstr "Övervaka ändrade filer"
1858
 
1859
- #: ../settings.php:903
1860
  msgid "If new issues found"
1861
  msgstr "Om nya problem hittas"
1862
 
1863
- #: ../admin/cerber-settings.php:924
1864
  msgid "The schedule has been updated"
1865
  msgstr "Schemat har uppdaterats"
1866
 
1867
- #: ../cerber-scanner.php:1595 ../cerber-scanner.php:2825
1868
  msgid "Suspicious directives found"
1869
  msgstr "Suspekta direktiv hittades"
1870
 
1871
- #: ../cerber-scanner.php:2823
1872
  msgid "Suspicious code instruction found"
1873
  msgstr "Misstänkt kodinstruktion hittades"
1874
 
1875
- #: ../cerber-scanner.php:2824
1876
  msgid "Suspicious code signatures found"
1877
  msgstr "Misstänkta kodsignaturer hittades"
1878
 
1879
- #: ../cerber-scanner.php:2827
1880
  msgid "To solve this issue you have to reinstall %s or update it to the latest version."
1881
  msgstr "För att lösa problemet måste du installera om %s eller uppdatera den till den senaste versionen."
1882
 
1883
- #: ../cerber-scanner.php:2828
1884
  msgid "Please upload a reference ZIP archive"
1885
  msgstr "Ladda upp ett referens-ZIP-arkiv"
1886
 
1887
- #: ../cerber-scanner.php:2829
1888
  msgid "Resolve issue"
1889
  msgstr "Lös problemet"
1890
 
1891
- #: ../cerber-scanner.php:4103
1892
  msgid "We have not found any integrity data to verify"
1893
  msgstr "Vi har inte hittat några integritetsdata att verifiera"
1894
 
1895
- #: ../cerber-scanner.php:4105
1896
  msgid "You have to upload a ZIP archive from which you've installed it. This enables the security scanner to verify the integrity of the code and detect malware."
1897
  msgstr "Du måste ladda upp ett ZIP-arkiv från där du har installerat det. Detta gör det möjligt för säkerhetsskannern att verifiera kodens integritet och upptäcka skadlig kod."
1898
 
1899
- #: ../cerber-scanner.php:5251
1900
  msgid "Full Scan Report"
1901
  msgstr "Fullständig skanningsrapport"
1902
 
1903
- #: ../cerber-scanner.php:5251
1904
  msgid "Quick Scan Report"
1905
  msgstr "Snabbskanningsrapport"
1906
 
1907
- #: ../cerber-scanner.php:5264
1908
  msgid "Files scanned"
1909
  msgstr "Filerna skannas"
1910
 
1911
- #: ../dashboard.php:298 ../dashboard.php:1392 ../dashboard.php:1427 ../dashboard.
1912
- #: php:1550
1913
  msgid "Check for activities"
1914
  msgstr "Kontrollera efter aktiviteter"
1915
 
1916
- #: ../dashboard.php:1512
1917
  msgid "Activated"
1918
  msgstr "Aktiverad"
1919
 
1920
- #: ../common.php:1343
1921
  msgid "Malicious request denied"
1922
  msgstr "Skadlig begäran nekad"
1923
 
1924
- #: ../common.php:1346
1925
  msgid "User activated"
1926
  msgstr ""
1927
 
1928
- #: ../common.php:1368
1929
  msgid "Suspicious number of fields"
1930
  msgstr "Misstänkt antal fält"
1931
 
1932
- #: ../common.php:1369
1933
  msgid "Suspicious number of nested values"
1934
  msgstr ""
1935
 
1936
- #: ../common.php:1370 ../common.php:1422
1937
  msgid "Malicious code detected"
1938
  msgstr "Skadlig kod upptäckt"
1939
 
1940
- #: ../common.php:1423
1941
  msgid "Attempt to upload a file with malicious code"
1942
  msgstr "Försök att ladda upp en fil med skadlig kod"
1943
 
1944
- #: ../common.php:1656
1945
  msgid "Bytes"
1946
  msgstr "Bytes"
1947
 
1948
- #: ../cerber-scanner.php:1574
1949
  msgid "Vulnerability found"
1950
  msgstr "Sårbarhet hittad"
1951
 
1952
- #: ../cerber-scanner.php:1579
1953
  msgid "Unable to check the integrity due to a DB error"
1954
  msgstr "Det går inte att kontrollera integriteten på grund av ett DB-fel"
1955
 
1956
- #: ../cerber-scanner.php:3864
1957
  msgid "Scanning the upload folder for files"
1958
  msgstr "Skannar uppladdningsmappen efter filer"
1959
 
1960
- #: ../cerber-scanner.php:3865
1961
  msgid "Scanning the temp folder for files"
1962
  msgstr "Skannar temp-mappen efter filer"
1963
 
1964
- #: ../cerber-scanner.php:3866
1965
  msgid "Scanning the session folder for files"
1966
  msgstr "Skannar sessionsmappen efter filer"
1967
 
1968
- #: ../settings.php:867
1969
  msgid "Automated recurring scan schedule"
1970
  msgstr "Automatiserat återkommande scanningsschema"
1971
 
1972
- #: ../settings.php:884
1973
  msgid "Scan results reporting"
1974
  msgstr "Resultatrapportering av skanning"
1975
 
1976
- #: ../dashboard.php:948 ../dashboard.php:4005
1977
  msgid "Suspicious activity"
1978
  msgstr "Misstänkt aktivitet"
1979
 
1980
- #: ../dashboard.php:4006
1981
  msgid "Errors"
1982
  msgstr "Fel"
1983
 
@@ -1990,362 +1949,355 @@ msgstr ""
1990
  msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
1991
  msgstr "Du har överskridit antalet tillåtna inloggningsförsök. Försök igen om %d minuter."
1992
 
1993
- #: ../common.php:1570
1994
  msgctxt "preposition of a period of time like: in 6 hours"
1995
  msgid "in %s"
1996
  msgstr "om %s"
1997
 
1998
- #: ../admin/cerber-settings.php:538
1999
  msgctxt "preposition of time like: at 11:00"
2000
  msgid "at"
2001
  msgstr "kl."
2002
 
2003
- #: ../dashboard.php:4690
2004
  msgid "Quarantine"
2005
  msgstr "Karantän"
2006
 
2007
- #: ../cerber-scanner.php:3950
2008
  msgid "Started"
2009
  msgstr "Startade"
2010
 
2011
- #: ../cerber-scanner.php:3954
2012
  msgid "Finished"
2013
  msgstr "Slutförda"
2014
 
2015
- #: ../cerber-scanner.php:3962
2016
  msgid "Performance"
2017
  msgstr "Prestanda"
2018
 
2019
- #: ../nexus/cerber-slave-list.php:337 ../cerber-scanner.php:3974
2020
  msgid "Vulnerabilities"
2021
  msgstr "Sårbarheter"
2022
 
2023
- #: ../cerber-scanner.php:3978
2024
  msgid "New files"
2025
  msgstr "Nya filer"
2026
 
2027
- #: ../cerber-scanner.php:3982
2028
  msgid "Changed files"
2029
  msgstr "Ändrade filer"
2030
 
2031
- #: ../cerber-scanner.php:3990
2032
  msgid "Unwanted extensions"
2033
  msgstr "Oönskade utökningar"
2034
 
2035
- #: ../cerber-scanner.php:3994
2036
  msgid "Unattended files"
2037
  msgstr "Obevakade filer"
2038
 
2039
- #: ../cerber-scanner.php:4003 ../cerber-scanner.php:5763
2040
  msgid "Scanned"
2041
  msgstr "Skannade"
2042
 
2043
- #: ../cerber-scanner.php:5662
2044
  msgid "There are no files in the quarantine at the moment."
2045
  msgstr "Det finns inga filer i karantän för tillfället."
2046
 
2047
- #: ../cerber-scanner.php:5752
2048
  msgid "Restore"
2049
  msgstr "Återställ"
2050
 
2051
- #: ../cerber-scanner.php:5749
2052
  msgid "Delete permanently"
2053
  msgstr "Ta bort permanent"
2054
 
2055
- #: ../cerber-scanner.php:5764
2056
- msgid "Moved to quarantine"
2057
- msgstr "Flyttad till karantän"
2058
-
2059
- #: ../cerber-scanner.php:5765
2060
  msgid "Automatic deletion"
2061
  msgstr "Automatisk borttagning"
2062
 
2063
- #: ../cerber-scanner.php:5766
 
2064
  msgid "Size"
2065
  msgstr "Storlek"
2066
 
2067
- #: ../cerber-scanner.php:5767 ../cerber-scanner.php:5915
2068
  msgid "File"
2069
  msgstr "Fil"
2070
 
2071
- #: ../cerber-scanner.php:5843
2072
  msgid "The file has been deleted permanently."
2073
  msgstr "Filen har tagits bort permanent."
2074
 
2075
- #: ../cerber-scanner.php:5857
2076
  msgid "The file has been restored to its original location."
2077
  msgstr "Filen har återställts till sin ursprungliga plats."
2078
 
2079
- #: ../dashboard.php:1781
2080
  msgid "Integrity"
2081
  msgstr "Integritet"
2082
 
2083
- #: ../common.php:1332
2084
  msgid "Attempt to upload malicious file denied"
2085
  msgstr "Försök att ladda upp skadlig fil nekad"
2086
 
2087
- #: ../cerber-news.php:148
2088
  msgid "Awesome!"
2089
  msgstr "Grymt bra!"
2090
 
2091
- #: ../settings.php:926
2092
  msgid "Automatic cleanup of malware and suspicious files"
2093
  msgstr "Automatisk upprensing av skadlig kod och misstänkta filer"
2094
 
2095
- #: ../settings.php:935
2096
  msgid "Files in the uploads folder"
2097
  msgstr "Filer i uppladdningsmappen"
2098
 
2099
- #: ../settings.php:944
2100
  msgid "Files with unwanted extensions"
2101
  msgstr "Filer med oönskade tillägg"
2102
 
2103
- #: ../settings.php:963
2104
  msgid "Exclusions"
2105
  msgstr "Uteslutningar"
2106
 
2107
- #: ../settings.php:967
2108
  msgid "Files in the temporary directory"
2109
  msgstr "Filer i den temporära katalogen"
2110
 
2111
- #: ../settings.php:971
2112
  msgid "Files in the sessions directory"
2113
  msgstr "Filer i sessions-katalogen"
2114
 
2115
- #: ../settings.php:975
2116
  msgid "Files in these directories"
2117
  msgstr "Filer i dessa kataloger"
2118
 
2119
- #: ../settings.php:979
2120
  msgid "Use absolute paths. One item per line."
2121
  msgstr "Använd absoluta sökvägar. Ett objekt per rad."
2122
 
2123
- #: ../settings.php:982
2124
  msgid "Files with these extensions"
2125
  msgstr "Filer med dessa tillägg"
2126
 
2127
- #: ../settings.php:986
2128
  msgid "Use comma to separate items."
2129
  msgstr "Use comma to separate items."
2130
 
2131
- #: ../dashboard.php:4688
2132
  msgid "Cleaning up"
2133
  msgstr "Uppstädning"
2134
 
2135
- #: ../cerber-scanner.php:1590
2136
  msgid "Malicious code found"
2137
  msgstr "Skadlig kod hittad"
2138
 
2139
- #: ../cerber-scanner.php:2820
2140
  msgid "This file contains executable code and may contain obfuscated malware. If this file is a part of a theme or a plugin, it must be located in the theme or the plugin folder. No exception, no excuses."
2141
  msgstr "Denna fil innehåller körbar kod och kan innehålla förvrängd skadlig kod. Om denna fil är en del av ett tema eller ett tillägg måste det vara beläget i mappen för temat eller tillägget. Inget undantag, inga ursäkter."
2142
 
2143
- #: ../cerber-scanner.php:2821
2144
  msgid "The scanner recognizes this file as \"ownerless\" or \"not bundled\" because it does not belong to any known part of the website and should not be here."
2145
  msgstr "Skannern känner igen denna fil som ”ägarlös” eller ”inte bunden” eftersom den inte hör till någon känd del av webbplatsen och borde inte vara här."
2146
 
2147
- #: ../cerber-scanner.php:2822
2148
  msgid "It may remain after upgrading to a newer version of %s. It also may be a piece of obfuscated malware. In a rare case it might be a part of a custom-made (bespoke) plugin or theme."
2149
  msgstr ""
2150
 
2151
- #: ../cerber-scanner.php:2826
2152
  msgid "The contents of the file have been changed and do not match what exists in the official WordPress repository or a reference file you have uploaded earlier. The file may have been altered by malware, infected by a virus or has been tampered with."
2153
  msgstr "Innehållet i filen har ändrats och matchar inte det som finns i det officiella WordPress-arkivet eller en referensfil som du har laddat upp tidigare. Filen kan ha förändrats av skadlig kod, infekterad av virus eller har manipulerats."
2154
 
2155
- #: ../cerber-scanner.php:5349
2156
  msgid "Deleted"
2157
  msgstr "Borttaget"
2158
 
2159
- #: ../cerber-scanner.php:5402
2160
  msgid "Automatically moved to quarantine"
2161
  msgstr "Automatiskt flyttad till karantän"
2162
 
2163
- #: ../common.php:1371
2164
  msgid "Suspicious SQL code detected"
2165
  msgstr "Misstänkt SQL-kod upptäckt"
2166
 
2167
- #: ../dashboard.php:1762
2168
  msgctxt "Example: Last malware scan: 23 Jan 2018"
2169
  msgid "Last malware scan"
2170
  msgstr "Senaste skanningen efter skadlig kod"
2171
 
2172
- #: ../dashboard.php:4624
2173
  msgid "Live Traffic"
2174
  msgstr "Live-trafik"
2175
 
2176
- #: ../settings.php:317
2177
  msgid "Use English for admin interface"
2178
  msgstr "Använd engelska för administratörsgränssnitt"
2179
 
2180
- #: ../dashboard.php:4722
2181
- msgid "Log"
2182
- msgstr "Logg"
2183
-
2184
- #: ../settings.php:338
2185
  msgid "Disable PHP in uploads"
2186
  msgstr "Inaktivera PHP i uppladdningar"
2187
 
2188
- #: ../settings.php:343
2189
  msgid "Disable PHP error displaying"
2190
  msgstr "Inaktivera visning av PHP-fel"
2191
 
2192
- #: ../dashboard.php:4689
2193
  msgid "Ignore List"
2194
  msgstr "Ignoreringslista"
2195
 
2196
- #: ../cerber-scanner.php:153
2197
  msgid "Ignore"
2198
  msgstr "Ignorera"
2199
 
2200
- #: ../cerber-scanner.php:5880
2201
  msgid "Apply"
2202
  msgstr "Tillämpa"
2203
 
2204
- #: ../cerber-scanner.php:5914
2205
  msgid "Added"
2206
  msgstr "Tillagd"
2207
 
2208
- #: ../cerber-scanner.php:5881 ../cerber-scanner.php:5908
2209
  msgid "Remove from the list"
2210
  msgstr "Ta bort från listan"
2211
 
2212
- #: ../cerber-scanner.php:5882
2213
  msgid "User Insights"
2214
  msgstr "Användarinsikt"
2215
 
2216
- #: ../cerber-scanner.php:5883
2217
  msgid "Traffic Insights"
2218
  msgstr "Trafikinsikt"
2219
 
2220
- #: ../cerber-scanner.php:5884
2221
  msgid "Activity Insights"
2222
  msgstr "Aktivitetsinsikt"
2223
 
2224
- #: ../dashboard.php:2791
2225
  msgid "Are you sure you want to delete selected files?"
2226
  msgstr "Är du säker på att du vill ta bort valda filer?"
2227
 
2228
- #: ../dashboard.php:2792
2229
  msgid "These files have been moved to the quarantine"
2230
  msgstr "Dessa filer har flyttats till karantänen"
2231
 
2232
- #: ../dashboard.php:2795
2233
  msgid "Do you want to add selected files to the ignore list?"
2234
  msgstr "Vill du lägga till valda filer på ignoreringslistan?"
2235
 
2236
- #: ../dashboard.php:2796
2237
  msgid "These files have been added to the ignore list"
2238
  msgstr "Dessa filer har lagts till i ignoreringslistan"
2239
 
2240
- #: ../dashboard.php:2798
2241
  msgid "Some errors occurred"
2242
  msgstr "Några fel uppstod"
2243
 
2244
- #: ../dashboard.php:2799
2245
  msgid "All files have been processed"
2246
  msgstr "Alla filer har bearbetats"
2247
 
2248
- #: ../dashboard.php:5010
2249
  msgid "These features are available in a professional version of the plugin."
2250
  msgstr "Dessa funktioner är tillgängliga i en professionell version av tillägget"
2251
 
2252
- #: ../dashboard.php:5011
2253
  msgid "Know more about all advantages at"
2254
  msgstr "Läs mer om alla fördelar på"
2255
 
2256
- #: ../common.php:1372
2257
  msgid "Suspicious JavaScript code detected"
2258
  msgstr "Misstänkt JavaScript-kod upptäckt"
2259
 
2260
- #: ../admin/cerber-settings.php:927
2261
  msgid "Unable to update the schedule"
2262
  msgstr "Kan inte uppdatera schemat"
2263
 
2264
- #: ../cerber-scanner.php:5781
2265
  msgid "All scans"
2266
  msgstr "Alla skanningar"
2267
 
2268
- #: ../cerber-scanner.php:5886
2269
  msgid "The list is empty."
2270
  msgstr "Listan är tom."
2271
 
2272
- #: ../cerber-scanner.php:5729
2273
  msgid "No files match the specified filter."
2274
  msgstr "Inga filer matchar det specifierade filtret"
2275
 
2276
- #: ../cerber-scanner.php:5729
2277
  msgid "Click here to see the full list of files"
2278
  msgstr "Klicka här för att se hela listan med filer"
2279
 
2280
- #: ../dashboard.php:836
2281
  msgid "Additional Details"
2282
  msgstr "Ytterligare detaljer"
2283
 
2284
- #: ../dashboard.php:3556
2285
  msgid "Page generation time"
2286
  msgstr "Tid för generering av sidan"
2287
 
2288
- #: ../dashboard.php:5046
2289
  msgid "Log In"
2290
  msgstr "Logga in"
2291
 
2292
- #: ../dashboard.php:5047
2293
  msgid "Log Out"
2294
  msgstr "Logga ut"
2295
 
2296
- #: ../dashboard.php:5048
2297
  msgid "Register"
2298
  msgstr "Registrera"
2299
 
2300
- #: ../dashboard.php:5051
2301
  msgid "WooCommerce Log In"
2302
  msgstr "WooCommerce-inloggning"
2303
 
2304
- #: ../dashboard.php:5052
2305
  msgid "WooCommerce Log Out"
2306
  msgstr "WooCommerce-utloggning"
2307
 
2308
- #: ../dashboard.php:5091 ../dashboard.php:5092
2309
  msgid "Add to menu"
2310
  msgstr "Lägg till i meny"
2311
 
2312
- #: ../common.php:1360
2313
  msgid "IP address is locked out"
2314
  msgstr "IP-adress är utelåst"
2315
 
2316
- #: ../common.php:1426
2317
  msgid "Multiple suspicious requests"
2318
  msgstr "Flera misstänkta förfrågningar"
2319
 
2320
- #: ../settings.php:688
2321
  msgid "Traffic Inspection"
2322
  msgstr "Trafikinspektion"
2323
 
2324
- #: ../settings.php:697 ../settings.php:725
2325
  msgid "Maximum compatibility"
2326
  msgstr "Maximal kompatibilitet"
2327
 
2328
- #: ../settings.php:698 ../settings.php:726
2329
  msgid "Maximum security"
2330
  msgstr "Maximal säkerhet"
2331
 
2332
- #: ../settings.php:716
2333
  msgid "Erroneous Request Shielding"
2334
  msgstr ""
2335
 
2336
- #: ../settings.php:721
2337
  msgid "Enable error shielding"
2338
  msgstr ""
2339
 
2340
- #: ../settings.php:779
2341
  msgid "Save software errors"
2342
  msgstr "Spara programfel"
2343
 
2344
- #: ../cerber-scanner.php:3862
2345
  msgid "Preparing for the scan"
2346
  msgstr "Förbereder för skanningen"
2347
 
2348
- #: ../common.php:1373
2349
  msgid "Blocked by administrator"
2350
  msgstr "Blockerad av administratör"
2351
 
@@ -2361,7 +2313,7 @@ msgstr "Blockera användare"
2361
  msgid "User is not permitted to log into the website"
2362
  msgstr "Användare har inte tillåtelse att logga in på webbplatsen"
2363
 
2364
- #: ../cerber-users.php:68 ../settings.php:508
2365
  msgid "User Message"
2366
  msgstr "Användarmeddelande"
2367
 
@@ -2373,115 +2325,115 @@ msgstr "Ett valfritt meddelande för denna användare"
2373
  msgid "Blocked Users"
2374
  msgstr "Blockerade användare"
2375
 
2376
- #: ../settings.php:329
2377
  msgid "Block access to user pages like /?author=n"
2378
  msgstr "Blockera åtkomst till användarsidor som /?Author=n"
2379
 
2380
- #: ../settings.php:359
2381
  msgid "Access to WordPress REST API"
2382
  msgstr "Åtkomst till WordPress REST API"
2383
 
2384
- #: ../settings.php:370
2385
  msgid "Block access to WordPress REST API except any of the following"
2386
  msgstr "Blockera åtkomst till WordPress REST API utom något av följande"
2387
 
2388
- #: ../settings.php:380
2389
  msgid "Allow REST API for these roles"
2390
  msgstr "Tillåt REST API för dessa roller"
2391
 
2392
- #: ../settings.php:385
2393
  msgid "Allow these namespaces"
2394
  msgstr "Tillåt dessa namnrymder"
2395
 
2396
- #: ../settings.php:730
2397
  msgid "Ignore logged in users"
2398
  msgstr "Ignorera inloggade användare"
2399
 
2400
- #: ../settings.php:122
2401
  msgid "These restrictions do not apply to IP addresses in the White IP Access List"
2402
  msgstr "Dessa begränsningar tillämpas inte på IP-adresser i den vita IP-åtkomstlistan"
2403
 
2404
- #: ../admin/cerber-settings.php:498
2405
  msgid "Select one or more roles"
2406
  msgstr "Välj en eller flera roller"
2407
 
2408
- #: ../dashboard.php:1147
2409
  msgid "Filter by registered user"
2410
  msgstr "Filtrera efter registrerad användare"
2411
 
2412
- #: ../settings.php:494
2413
  msgid "Authorized users only"
2414
  msgstr "Endast auktoriserade användare"
2415
 
2416
- #: ../settings.php:495
2417
  msgid "Only registered and logged in website users have access to the website"
2418
  msgstr "Endast registrerade och inloggade användare har åtkomst till webbplatsen"
2419
 
2420
- #: ../settings.php:512 ../settings.php:1419
2421
  msgid "Only registered and logged in users are allowed to view this website"
2422
  msgstr "Endast registrerade och inloggade användare har tillåtelse visa denna webbplats"
2423
 
2424
- #: ../settings.php:517
2425
  msgid "Redirect to URL"
2426
  msgstr "Omdirigera till URL"
2427
 
2428
- #: ../dashboard.php:4723
2429
  msgid "Changelog"
2430
  msgstr "Ändringslogg"
2431
 
2432
- #: ../dashboard.php:629
2433
  msgid "Default settings have been loaded"
2434
  msgstr "Standardinställningarna har laddats"
2435
 
2436
- #: ../dashboard.php:3264
2437
  msgid "Save all rules"
2438
  msgstr "Spara alla regler"
2439
 
2440
- #: ../dashboard.php:3135 ../admin/cerber-settings.php:599
2441
  msgid "Save Changes"
2442
  msgstr "Spara ändringar"
2443
 
2444
- #: ../common.php:1349
2445
  msgid "Invalid master credentials"
2446
  msgstr "Ogiltiga master-uppgifter"
2447
 
2448
- #: ../settings.php:1124
2449
  msgid "Master settings"
2450
  msgstr "Master-inställningar"
2451
 
2452
- #: ../settings.php:1132
2453
  msgid "Return to the website list"
2454
  msgstr "Tillbaka till webbplatslistan"
2455
 
2456
- #: ../settings.php:1136
2457
  msgid "Show \"Switched to\" notification"
2458
  msgstr "Visa ”Bytt till”-notis"
2459
 
2460
- #: ../settings.php:1140
2461
  msgid "Add @ site to the page title"
2462
  msgstr ""
2463
 
2464
- #: ../settings.php:853 ../settings.php:1157 ../settings.php:1184
2465
  msgid "Enable diagnostic logging"
2466
  msgstr "Aktivera diagnostisk loggning"
2467
 
2468
- #: ../settings.php:1167
2469
  msgid "Limit access by IP address"
2470
  msgstr "Begränsa åtkomst med IP-adress"
2471
 
2472
- #: ../settings.php:1173
2473
  msgid "Access to this website"
2474
  msgstr "Åtkomst till denna webbplats"
2475
 
2476
- #: ../settings.php:1176
2477
  msgid "Full access mode"
2478
  msgstr "Fullt åtkomstläge"
2479
 
2480
- #: ../settings.php:1177
2481
  msgid "Read-only mode"
2482
  msgstr "Endast läsläge"
2483
 
2484
- #: ../settings.php:1197
2485
  msgid "The full access mode requires the PRO version of WP Cerber"
2486
  msgstr "Fullt åtkomstläge kräver PRO-versionen av WP Cerber"
2487
 
@@ -2497,27 +2449,27 @@ msgstr "Skanna efter skadlig kod"
2497
  msgid "Notes"
2498
  msgstr "Noteringar"
2499
 
2500
- #: ../nexus/cerber-slave-list.php:160
2501
  msgid "Add a slave website"
2502
  msgstr "Lägg till en slav-webbplats"
2503
 
2504
- #: ../cerber-users.php:1061 ../nexus/cerber-slave-list.php:244
2505
  msgid "Search results for:"
2506
  msgstr "Sökresultat för:"
2507
 
2508
- #: ../nexus/cerber-slave-list.php:279
2509
  msgid "Edit"
2510
  msgstr "Redigera"
2511
 
2512
- #: ../nexus/cerber-slave-list.php:285
2513
  msgid "Switch to"
2514
  msgstr "Byt till"
2515
 
2516
- #: ../nexus/cerber-slave-list.php:413
2517
  msgid "No websites configured."
2518
  msgstr "Inga webbplatser konfigurerade."
2519
 
2520
- #: ../nexus/cerber-slave-list.php:413
2521
  msgid "Add a new one"
2522
  msgstr "Lägg till en ny"
2523
 
@@ -2608,7 +2560,7 @@ msgstr "Mina webbplatser"
2608
  msgid "Visit Site"
2609
  msgstr "Besök webbplats"
2610
 
2611
- #: ../cerber-load.php:5136 ../nexus/cerber-nexus.php:64
2612
  msgid "Enable slave mode"
2613
  msgstr "Aktivera slavläge"
2614
 
@@ -2665,13 +2617,13 @@ msgid "Install the access token on the master website."
2665
  msgstr "Installera åtkomsttoken på master-webbplatsen."
2666
 
2667
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
2668
- #: ../common.php:1563
2669
  msgid "%s sec"
2670
  msgid_plural "%s secs"
2671
  msgstr[0] "%s sekund"
2672
  msgstr[1] "%s sekunder"
2673
 
2674
- #: ../settings.php:671
2675
  msgid "Send reports on"
2676
  msgstr "Skicka rapporter på"
2677
 
@@ -2695,7 +2647,7 @@ msgstr "Uppgradera alla aktiva tillägg"
2695
  msgid "Delete website"
2696
  msgstr "Ta bort webbplats"
2697
 
2698
- #: ../nexus/cerber-slave-list.php:134
2699
  msgid "All groups"
2700
  msgstr "Alla grupper"
2701
 
@@ -2719,23 +2671,23 @@ msgstr "Företag"
2719
  msgid "Invalid response from the slave website"
2720
  msgstr "Ogiltigt svar från slav-webbplatsen"
2721
 
2722
- #: ../common.php:1326 ../common.php:1416
2723
  msgid "Attempt to log in with non-existing username"
2724
  msgstr "Försök att logga in med icke-existerande användarnamn"
2725
 
2726
- #: ../cerber-load.php:4336
2727
  msgid "Attempts to log in with non-existing usernames"
2728
  msgstr "Försök att logga in med icke-existerande användarnamn"
2729
 
2730
- #: ../settings.php:1144
2731
  msgid "Use master language"
2732
  msgstr "Använd master-språk"
2733
 
2734
- #: ../settings.php:171
2735
  msgid "Non-existing users"
2736
  msgstr "Icke-existerande användare"
2737
 
2738
- #: ../settings.php:172
2739
  msgid "Immediately block IP when attempting to log in with a non-existing username"
2740
  msgstr "Blockera omedelbart IP vid försök att logga in med ett icke-existerande användarnamn"
2741
 
@@ -2743,7 +2695,7 @@ msgstr "Blockera omedelbart IP vid försök att logga in med ett icke-existerand
2743
  msgid "Owner"
2744
  msgstr "Ägare"
2745
 
2746
- #: ../nexus/cerber-slave-list.php:413
2747
  msgid "Disable master mode"
2748
  msgstr "Inaktivera master-läge"
2749
 
@@ -2751,7 +2703,7 @@ msgstr "Inaktivera master-läge"
2751
  msgid "To revoke the token and disable remote management, click here:"
2752
  msgstr "För att återkalla token och inaktivera fjärrhantering, klicka här:"
2753
 
2754
- #: ../settings.php:339
2755
  msgid "Block execution of PHP scripts in the WordPress media folder"
2756
  msgstr "Blockera exekvering av PHP-skript i WordPress media-mapp"
2757
 
@@ -2763,31 +2715,31 @@ msgstr "Aktiva tillägg och uppdateringar på"
2763
  msgid "A newer version is available"
2764
  msgstr "En nyare version är tillgänglig"
2765
 
2766
- #: ../dashboard.php:942
2767
  msgid "New users"
2768
  msgstr "Nya användare"
2769
 
2770
- #: ../dashboard.php:955
2771
  msgid "My activity"
2772
  msgstr "Min aktivitet"
2773
 
2774
- #: ../dashboard.php:2571
2775
  msgid "Create Alert"
2776
  msgstr "Skapa varning"
2777
 
2778
- #: ../dashboard.php:2575
2779
  msgid "Delete Alert"
2780
  msgstr "Ta bort varning"
2781
 
2782
- #: ../dashboard.php:2608
2783
  msgid "The alert has been created"
2784
  msgstr "Varningen har skapats"
2785
 
2786
- #: ../dashboard.php:2612
2787
  msgid "The alert has been deleted"
2788
  msgstr "Varningen har tagits bort"
2789
 
2790
- #: ../dashboard.php:4032
2791
  msgid "Advanced Search"
2792
  msgstr "Avancerad sökning"
2793
 
@@ -2796,79 +2748,79 @@ msgstr "Avancerad sökning"
2796
  msgid "Cerber Tech Inc."
2797
  msgstr "Cerber Tech Inc."
2798
 
2799
- #: ../cerber-load.php:4865
2800
  msgid "To delete the alert, click here"
2801
  msgstr "För att ta bort varningen, klicka här"
2802
 
2803
- #: ../settings.php:204
2804
  msgid "Custom login URL may contain Latin alphanumeric characters, dashes and underscores only"
2805
  msgstr "Anpassad URL för inloggning kan endast innehålla latinska alfanumeriska tecken, bindestreck och understreck"
2806
 
2807
- #: ../settings.php:216
2808
  msgid "Site-specific settings"
2809
  msgstr "Webbplatsspecifika inställningar"
2810
 
2811
- #: ../settings.php:224
2812
  msgid "Prefix for plugin cookies"
2813
  msgstr ""
2814
 
2815
- #: ../settings.php:225
2816
  msgid "Prefix may contain only Latin alphanumeric characters and underscores"
2817
  msgstr "Prefix får bara innehålla latinska alfanumeriska tecken och understreck"
2818
 
2819
- #: ../settings.php:624
2820
  msgid "Lockout notifications"
2821
  msgstr "Aviseringar för utlåsning"
2822
 
2823
- #: ../settings.php:653
2824
  msgid "Pushbullet access token"
2825
  msgstr "Pushbullet åtkomst-token"
2826
 
2827
- #: ../settings.php:656
2828
  msgid "Pushbullet device"
2829
  msgstr "Pushbullet-enhet"
2830
 
2831
- #: ../settings.php:931
2832
  msgid "Delete unattended files"
2833
  msgstr ""
2834
 
2835
- #: ../settings.php:950
2836
  msgid "Automatic recovery of modified and infected files"
2837
  msgstr "Automatisk återskapning av modifierade och infekterade filer"
2838
 
2839
- #: ../settings.php:953
2840
  msgid "Recover WordPress files"
2841
  msgstr "Återskapa WordPress-filer"
2842
 
2843
- #: ../settings.php:957
2844
  msgid "Recover plugins files"
2845
  msgstr "Återskapa tilläggs-filer"
2846
 
2847
- #: ../cerber-scanner.php:1602
2848
  msgid "File deleted"
2849
  msgstr "Fil borttagen"
2850
 
2851
- #: ../cerber-scanner.php:1603
2852
  msgid "File recovered"
2853
  msgstr "Fil återskapad"
2854
 
2855
- #: ../cerber-scanner.php:3870
2856
  msgid "Recovering WordPress files"
2857
  msgstr "Återskapar WordPress-filer"
2858
 
2859
- #: ../cerber-scanner.php:3872
2860
  msgid "Recovering plugins files"
2861
  msgstr "Återskapar tilläggs-filer"
2862
 
2863
- #: ../cerber-scanner.php:5353
2864
  msgid "Recovered"
2865
  msgstr "Återskapad"
2866
 
2867
- #: ../cerber-scanner.php:5403
2868
  msgid "Automatically deleted"
2869
  msgstr "Automatiskt borttagen"
2870
 
2871
- #: ../cerber-scanner.php:5406
2872
  msgid "Automatically recovered"
2873
  msgstr "Automatiskt återskapad"
2874
 
@@ -2876,51 +2828,47 @@ msgstr "Automatiskt återskapad"
2876
  msgid "Cerber User Security"
2877
  msgstr "Cerber användarsäkerhet"
2878
 
2879
- #: ../dashboard.php:64 ../dashboard.php:4648
2880
  msgid "User Policies"
2881
  msgstr "Användarpolicyer"
2882
 
2883
- #: ../dashboard.php:1784
2884
  msgid "A new version is available"
2885
  msgstr "En ny version är tillgänglig"
2886
 
2887
- #: ../dashboard.php:4650
2888
  msgid "Role-based"
2889
  msgstr "Rollbaserad"
2890
 
2891
- #: ../dashboard.php:4651
2892
  msgid "Global"
2893
  msgstr "Global"
2894
 
2895
- #: ../common.php:1374
2896
  msgid "Site policy enforcement"
2897
  msgstr ""
2898
 
2899
- #: ../common.php:1375
2900
  msgid "2FA code verified"
2901
  msgstr "2FA-kod verifierad"
2902
 
2903
- #: ../common.php:1376
2904
  msgid "Initiated by the user"
2905
  msgstr "Initierad av användaren"
2906
 
2907
- #: ../common.php:1379
2908
- msgid "Email address is not permitted"
2909
- msgstr "E-postadress är inte tillåtet"
2910
-
2911
- #: ../common.php:1762
2912
  msgid "A new version of %s is available. Please install it."
2913
  msgstr "En ny version av %s är tillgänglig. Vänligen installera den."
2914
 
2915
- #: ../cerber-load.php:1574
2916
  msgid "Email address is not permitted."
2917
  msgstr "E-postadress är inte tillåten."
2918
 
2919
- #: ../cerber-load.php:1574
2920
  msgid "Please choose another one."
2921
  msgstr "Välj en annan."
2922
 
2923
- #: ../cerber-users.php:10 ../cerber-users.php:438
2924
  msgid "Two-Factor Authentication"
2925
  msgstr "Tvåfaktorautentisering"
2926
 
@@ -2928,7 +2876,7 @@ msgstr "Tvåfaktorautentisering"
2928
  msgid "Determined by user role policies"
2929
  msgstr ""
2930
 
2931
- #: ../cerber-users.php:19 ../cerber-users.php:446
2932
  msgid "Always enabled"
2933
  msgstr "Alltid aktiverad"
2934
 
@@ -2940,103 +2888,103 @@ msgstr "2FA PIN-kod"
2940
  msgid "Save All Changes"
2941
  msgstr "Spara alla ändringar"
2942
 
2943
- #: ../cerber-users.php:400
2944
  msgid "Block access to WordPress Dashboard"
2945
  msgstr "Blockera åtkomst till WordPress-adminpanel"
2946
 
2947
- #: ../cerber-users.php:405
2948
  msgid "Hide Toolbar when viewing site"
2949
  msgstr "Dölj verktygsfält när du tittar på webbplats"
2950
 
2951
- #: ../cerber-users.php:411
2952
  msgid "Redirection rules"
2953
  msgstr "Omdirigeringsregler"
2954
 
2955
- #: ../cerber-users.php:415
2956
  msgid "Redirect user after login"
2957
  msgstr "Omdirigera användare efter inloggning"
2958
 
2959
- #: ../cerber-users.php:420
2960
  msgid "Redirect user after logout"
2961
  msgstr "Omdirigera användare efter utloggning"
2962
 
2963
- #: ../cerber-users.php:431 ../settings.php:557
2964
  msgid "User session expiration time"
2965
  msgstr "Användarsessionens utlöpningstid"
2966
 
2967
- #: ../cerber-users.php:442
2968
  msgid "Two-factor authentication"
2969
  msgstr "Tvåfaktorsautentisering"
2970
 
2971
- #: ../cerber-users.php:447
2972
  msgid "Advanced mode"
2973
  msgstr "Avancerat läge"
2974
 
2975
- #: ../cerber-users.php:451
2976
  msgid "Enforce two-factor authentication if any of the following conditions is true"
2977
  msgstr "Tvinga tvåfaktorsautentisering om något av följande villkor är sant"
2978
 
2979
- #: ../cerber-users.php:457
2980
  msgid "Login from a different country"
2981
  msgstr "Inloggning från ett annat land"
2982
 
2983
- #: ../cerber-users.php:463
2984
  msgid "Login from a different network Class C"
2985
  msgstr "Inloggning från från ett annat nätverk klass C"
2986
 
2987
- #: ../cerber-users.php:469
2988
  msgid "Login from a different IP address"
2989
  msgstr "Inloggning från en annan IP-adress"
2990
 
2991
- #: ../cerber-users.php:475
2992
  msgid "Using a different browser or device"
2993
  msgstr "Använder en annan webbläsare eller enhet"
2994
 
2995
- #: ../cerber-users.php:481
2996
  msgid "Enforce two-factor authentication with fixed intervals"
2997
  msgstr "Tvinga tvåfaktorsautentisering med fasta intervaller"
2998
 
2999
- #: ../cerber-users.php:487
3000
  msgid "Regular time intervals (days)"
3001
  msgstr "Vanliga tidsintervaller (dagar)"
3002
 
3003
- #: ../cerber-users.php:489
3004
  msgid "days interval"
3005
  msgstr "dagintervall"
3006
 
3007
- #: ../cerber-users.php:494
3008
  msgid "Fixed number of logins"
3009
  msgstr "Fast antal inloggningar"
3010
 
3011
- #: ../cerber-users.php:496
3012
  msgid "number of logins"
3013
  msgstr "antal inloggningar"
3014
 
3015
- #: ../cerber-users.php:538
3016
  msgid "Policies have been updated"
3017
  msgstr "Policies har uppdaterats"
3018
 
3019
- #: ../settings.php:532
3020
  msgid "Restrict email addresses"
3021
  msgstr "Begränsa e-postadresser"
3022
 
3023
- #: ../settings.php:535
3024
  msgid "No restrictions"
3025
  msgstr "Inga begränsningar"
3026
 
3027
- #: ../settings.php:536
3028
  msgid "Deny all email addresses that match the following"
3029
  msgstr "Neka alla e-postadresser som matchar följande"
3030
 
3031
- #: ../settings.php:537
3032
  msgid "Permit only email addresses that match the following"
3033
  msgstr "Tillåt endast e-postadresser som matchar följande"
3034
 
3035
- #: ../settings.php:542
3036
  msgid "Specify email addresses, wildcards or REGEX patterns. Use comma to separate items."
3037
  msgstr "Ange e-postadresser, jokertecken eller REGEX-mönster. Använd komma för att separera objekt."
3038
 
3039
- #: ../settings.php:964
3040
  msgid "These files will never be deleted during automatic cleanup."
3041
  msgstr "Dessa filer kommer aldrig att tas bort under automatisk upprensning."
3042
 
@@ -3104,11 +3052,11 @@ msgstr "Verifiera"
3104
  msgid "Two-Factor Authentication Email"
3105
  msgstr "E-post för tvåfaktorsautentisering"
3106
 
3107
- #: ../dashboard.php:3207
3108
  msgid "Role-based rules are configured"
3109
  msgstr "Rollbaserade regler är konfigurerade"
3110
 
3111
- #: ../dashboard.php:3401
3112
  msgid "All Users"
3113
  msgstr "Alla användare"
3114
 
@@ -3121,76 +3069,76 @@ msgstr "blockerad av %s kl. %s"
3121
  msgid "The code is valid for %s minutes."
3122
  msgstr "Koden är giltig i %s minuter."
3123
 
3124
- #: ../dashboard.php:345
3125
  msgid "IP address %s has been added to White IP Access List"
3126
  msgstr "IP-adress %s har lagts till i vit IP-åtkomstlista"
3127
 
3128
- #: ../dashboard.php:342
3129
  msgid "IP address %s has been added to Black IP Access List"
3130
  msgstr "IP-adress %s har lagts till i svart IP-åtkomstlista"
3131
 
3132
- #: ../dashboard.php:833 ../dashboard.php:1079 ../dashboard.php:3976 ../cerber-
3133
- #: users.php:973
3134
  msgid "IP Address"
3135
  msgstr "IP-adress"
3136
 
3137
- #: ../dashboard.php:840 ../dashboard.php:1085
3138
  msgid "Username"
3139
  msgstr "Användarnamn"
3140
 
3141
- #: ../dashboard.php:3289
3142
  msgid "Any country is permitted"
3143
  msgstr "Vilket land som helst är tillåtet"
3144
 
3145
- #: ../dashboard.php:4558
3146
  msgid "Sessions"
3147
  msgstr "Sessioner"
3148
 
3149
- #: ../cerber-users.php:612
3150
  msgid "Session has been terminated"
3151
  msgid_plural "%s sessions have been terminated"
3152
  msgstr[0] "Sessionen har avslutats"
3153
  msgstr[1] "%s sessioner har avslutats"
3154
 
3155
- #: ../cerber-users.php:971
3156
  msgid "Created"
3157
  msgstr "Skapad"
3158
 
3159
- #: ../cerber-users.php:992
3160
  msgid "Terminate session"
3161
  msgstr "Avsluta sessionen"
3162
 
3163
- #: ../cerber-users.php:993
3164
  msgid "Block user"
3165
  msgstr "Blockera användare"
3166
 
3167
- #: ../cerber-users.php:1103
3168
  msgid "Profile"
3169
  msgstr "Profil"
3170
 
3171
- #: ../cerber-users.php:1116
3172
  msgid "All Logins"
3173
  msgstr "Alla inloggningar"
3174
 
3175
- #: ../cerber-users.php:1117
3176
  msgid "User Activity"
3177
  msgstr "Användaraktivitet"
3178
 
3179
- #: ../cerber-users.php:1163
3180
  msgid "Terminate"
3181
  msgstr "Avsluta"
3182
 
3183
- #: ../dashboard.php:1734
3184
  msgid "user"
3185
  msgid_plural "users"
3186
  msgstr[0] "användare"
3187
  msgstr[1] "användare"
3188
 
3189
- #: ../settings.php:365
3190
  msgid "Block access to users' data via REST API"
3191
  msgstr "Blockera åtkomst till användarnas data via REST API"
3192
 
3193
- #: ../cerber-scanner.php:1601
3194
  msgid "Unable to delete"
3195
  msgstr "Kan inte ta bort"
3196
 
@@ -3202,99 +3150,99 @@ msgstr ""
3202
  msgid "Data Shield"
3203
  msgstr ""
3204
 
3205
- #: ../dashboard.php:4638
3206
  msgid "Data Shield Policies"
3207
  msgstr ""
3208
 
3209
- #: ../dashboard.php:4640
3210
  msgid "Accounts & Roles"
3211
  msgstr "Konton och roller"
3212
 
3213
- #: ../dashboard.php:4641
3214
  msgid "Site Settings"
3215
  msgstr "Webbplatsinställningar"
3216
 
3217
- #: ../common.php:1337
3218
  msgid "User creation denied"
3219
  msgstr "Användarskapande nekad"
3220
 
3221
- #: ../common.php:1339
3222
  msgid "Role update denied"
3223
  msgstr "Rolluppdatering nekad"
3224
 
3225
- #: ../common.php:1340
3226
  msgid "Setting update denied"
3227
  msgstr "Inställningsuppdatering nekad"
3228
 
3229
- #: ../common.php:1381
3230
  msgid "Permission denied"
3231
  msgstr "Behörighet nekad"
3232
 
3233
- #: ../common.php:1383
3234
  msgid "Invalid user"
3235
  msgstr "Ogiltig användare"
3236
 
3237
- #: ../common.php:1384
3238
  msgid "Incorrect password"
3239
  msgstr "Felaktigt lösenord"
3240
 
3241
- #: ../settings.php:396
3242
  msgid "Protect user accounts"
3243
  msgstr "Skydda användarkonton"
3244
 
3245
- #: ../settings.php:401
3246
  msgid "Restrict user account creation and user management with the following policies"
3247
  msgstr "Begränsa skapandet av användarkonton och användarhantering med följande policyer"
3248
 
3249
- #: ../settings.php:407
3250
  msgid "User registrations are limited to these roles"
3251
  msgstr "Användarregistreringar är begränsade till dessa roller"
3252
 
3253
- #: ../settings.php:413
3254
  msgid "Users with these roles are permitted to create new accounts"
3255
  msgstr "Användare med dessa roller tillåts att skapa nya konton"
3256
 
3257
- #: ../settings.php:418
3258
  msgid "Users with these roles are permitted to change sensitive user data"
3259
  msgstr "Användare med dessa roller tillåts att ändra känslig användardata"
3260
 
3261
- #: ../settings.php:423 ../settings.php:451 ../settings.php:480
3262
  msgid "Do not apply these policies to the IP addresses in the White IP Access List"
3263
  msgstr "Tillämpa inte dessa policyer på IP-adresserna i den vita IP-åtkomstlistan"
3264
 
3265
- #: ../settings.php:431
3266
  msgid "Protect user roles"
3267
  msgstr "Skydda användarroller"
3268
 
3269
- #: ../settings.php:435
3270
  msgid "Restrict roles and capabilities management with the following policies"
3271
  msgstr "Begränsa roller och behörighetshantering med följande policyer"
3272
 
3273
- #: ../settings.php:441
3274
  msgid "Users with these roles are permitted to add new roles"
3275
  msgstr "Användare med dessa roller tillåts att lägga till nya roller"
3276
 
3277
- #: ../settings.php:446
3278
  msgid "Users with these roles are permitted to change role capabilities"
3279
  msgstr "Användare med dessa roller tillåts att ändra rollbehörigheter"
3280
 
3281
- #: ../settings.php:459
3282
  msgid "Protect site settings"
3283
  msgstr "Skydda webbplatsinställningar"
3284
 
3285
- #: ../settings.php:463
3286
  msgid "Restrict updating site settings with the following policies"
3287
  msgstr "Begränsa uppdateringen av webbplatsinställningarna med följande policyer"
3288
 
3289
- #: ../settings.php:469
3290
  msgid "Users with these roles are permitted to change protected settings"
3291
  msgstr "Användare med dessa roller tillåts att ändra skyddade inställningar"
3292
 
3293
- #: ../settings.php:474
3294
  msgid "Protected settings"
3295
  msgstr "Skyddade inställningar"
3296
 
3297
- #: ../settings.php:502
3298
  msgid "Do not apply these policy to the IP addresses in the White IP Access List"
3299
  msgstr "Tillämpa inte denna policy på IP-adresserna i den vita IP-åtkomstlistan"
3300
 
@@ -3334,11 +3282,11 @@ msgstr "Server"
3334
  msgid "Server Country"
3335
  msgstr "Serverland"
3336
 
3337
- #: ../nexus/cerber-slave-list.php:144
3338
  msgid "All servers"
3339
  msgstr "Alla servrar"
3340
 
3341
- #: ../nexus/cerber-slave-list.php:151
3342
  msgid "All countries"
3343
  msgstr "Alla länder"
3344
 
@@ -3350,47 +3298,47 @@ msgstr ""
3350
  msgid "Hide server IP address"
3351
  msgstr "Dölj serverns IP-adress"
3352
 
3353
- #: ../dashboard.php:314
3354
  msgid "IP address, range, wildcard, or CIDR"
3355
  msgstr "IP-adress, intervall, jokertecken eller CIDR"
3356
 
3357
- #: ../dashboard.php:315
3358
  msgid "Add Entry"
3359
  msgstr ""
3360
 
3361
- #: ../dashboard.php:4875
3362
  msgid "The IP address you are trying to add is already in the list"
3363
  msgstr "IP-adressen som du försöker lägga till finns redan i listan"
3364
 
3365
- #: ../common.php:1302
3366
  msgid "IP subnet blocked"
3367
  msgstr "IP-undernät blockerat"
3368
 
3369
- #: ../common.php:1338
3370
  msgid "User row update denied"
3371
  msgstr "Uppdatering av användarrad nekad"
3372
 
3373
- #: ../common.php:1341
3374
  msgid "User metadata update denied"
3375
  msgstr ""
3376
 
3377
- #: ../settings.php:1265
3378
  msgid "Any activity"
3379
  msgstr ""
3380
 
3381
- #: ../cerber-tools.php:139
3382
  msgid "A database error occurred while importing access list entries"
3383
  msgstr ""
3384
 
3385
- #: ../settings.php:237
3386
  msgid "Enable authentication log monitoring"
3387
  msgstr ""
3388
 
3389
- #: ../settings.php:269 ../settings.php:788
3390
  msgid "Keep log records of not logged in visitors for"
3391
  msgstr ""
3392
 
3393
- #: ../settings.php:275 ../settings.php:793
3394
  msgid "Keep log records of logged in users for"
3395
  msgstr ""
3396
 
@@ -3398,47 +3346,47 @@ msgstr ""
3398
  msgid "Admin Note"
3399
  msgstr ""
3400
 
3401
- #: ../cerber-users.php:942
3402
  msgid "WP Cerber Personal Data Eraser"
3403
  msgstr ""
3404
 
3405
- #: ../settings.php:573
3406
  msgid "Personal Data"
3407
  msgstr "Personlig data"
3408
 
3409
- #: ../settings.php:579
3410
  msgid "Enable data erase"
3411
  msgstr "Aktivera dataradering"
3412
 
3413
- #: ../settings.php:586
3414
  msgid "Terminate user sessions"
3415
  msgstr "Avsluta användarsessioner"
3416
 
3417
- #: ../settings.php:587
3418
  msgid "Delete user sessions data when user data is erased"
3419
  msgstr "Ta bort användarsessionsdata när användardata raderas"
3420
 
3421
- #: ../settings.php:593
3422
  msgid "Enable data export"
3423
  msgstr "Aktivera dataexport"
3424
 
3425
- #: ../settings.php:600
3426
  msgid "Include activity log events"
3427
  msgstr "Inkludera aktivitetslogghändelser"
3428
 
3429
- #: ../settings.php:606
3430
  msgid "Include traffic log entries"
3431
  msgstr ""
3432
 
3433
- #: ../settings.php:609
3434
  msgid "Request URL"
3435
  msgstr ""
3436
 
3437
- #: ../settings.php:610
3438
  msgid "Form fields data"
3439
  msgstr ""
3440
 
3441
- #: ../settings.php:611
3442
  msgid "Cookies"
3443
  msgstr "Cookies"
3444
 
@@ -3446,7 +3394,7 @@ msgstr "Cookies"
3446
  msgid "Cerber anti-spam settings"
3447
  msgstr ""
3448
 
3449
- #: ../dashboard.php:71 ../settings.php:1106
3450
  msgid "Anti-spam"
3451
  msgstr ""
3452
 
@@ -3454,135 +3402,336 @@ msgstr ""
3454
  msgid "Add-ons"
3455
  msgstr "Utökningar"
3456
 
3457
- #: ../dashboard.php:4602
3458
  msgid "Anti-spam and bot detection settings"
3459
  msgstr ""
3460
 
3461
- #: ../dashboard.php:4604
3462
  msgid "Anti-spam engine"
3463
  msgstr ""
3464
 
3465
- #: ../common.php:1425
3466
  msgid "Multiple erroneous requests"
3467
  msgstr "Flera felaktiga förfrågningar"
3468
 
3469
- #: ../admin/cerber-settings.php:347
3470
  msgid "%s retries are allowed within %s minutes"
3471
  msgstr "%s försök är tillåtna inom %s minuter"
3472
 
3473
- #: ../admin/cerber-settings.php:353
3474
  msgid "%s registrations are allowed within %s minutes from one IP address"
3475
  msgstr "%s registreringar är tillåtna inom %s minuter från en IP-adress"
3476
 
3477
- #: ../admin/cerber-settings.php:376
3478
  msgid "Enable after %s failed login attempts in the last %s minutes"
3479
  msgstr "Aktivera efter %s misslyckade inloggningsförsök under de senaste %s minuterna"
3480
 
3481
- #: ../settings.php:142
3482
  msgid "Limit"
3483
  msgstr "Gräns"
3484
 
3485
- #: ../settings.php:360
3486
  msgid "Restrict or completely block access to the WordPress REST API according to your needs"
3487
  msgstr "Begränsa eller blockera åtkomst fullständigt till WordPress REST API enligt dina behov"
3488
 
3489
- #: ../settings.php:575
3490
  msgid "These features help your organization to be in compliance with personal data protection laws"
3491
  msgstr ""
3492
 
3493
- #: ../settings.php:633
3494
  msgid "if empty, the website administrator email %s will be used"
3495
  msgstr "om tom, kommer webbplatsadministratörens e-postadress %s att användas"
3496
 
3497
- #: ../settings.php:637
3498
  msgid "notifications are allowed per hour (0 means unlimited)"
3499
  msgstr "aviseringar är tillåtna per timme (0 betyder obegränsat)"
3500
 
3501
- #: ../settings.php:649
3502
  msgid "Get notified instantly with mobile and desktop notifications"
3503
  msgstr "Bli aviserad omedelbart med aviseringar på mobil och stationär dator"
3504
 
3505
- #: ../settings.php:664
3506
  msgid "Weekly report is a summary of all activities and suspicious events occurred during the last seven days"
3507
  msgstr "Veckorapport är en sammanfattning av alla aktiviteter och misstänkta händelser inträffade under de senaste sju dagarna"
3508
 
3509
- #: ../settings.php:677 ../settings.php:916
3510
  msgid "if empty, the email addresses from the notification settings will be used"
3511
  msgstr "om tom, kommer e-postadresserna från aviseringsinställningarna att användas"
3512
 
3513
- #: ../settings.php:689
3514
  msgid "Traffic Inspector is a context-aware web application firewall (WAF) that protects your website by recognizing and denying malicious HTTP requests"
3515
  msgstr ""
3516
 
3517
- #: ../settings.php:718
3518
  msgid "Block IP addresses that send excessive requests for non-existing pages or scan website for security breaches"
3519
  msgstr ""
3520
 
3521
- #: ../settings.php:737
3522
  msgid "Traffic Logging"
3523
  msgstr "Trafikloggning"
3524
 
3525
- #: ../settings.php:738
3526
  msgid "Enable optional traffic logging if you need to monitor suspicious and malicious activity or solve security issues"
3527
  msgstr "Aktivera valfri trafikloggning om du behöver övervaka misstänksam och skadlig aktivitet eller lösa säkerhetsproblem"
3528
 
3529
- #: ../settings.php:802
3530
  msgid "The scanner monitors file changes, verifies the integrity of WordPress, plugins, and themes, and detects malware"
3531
  msgstr "Skannern övervakar filändringar, verifierar integriteten i WordPress, tillägg och teman och upptäcker skadlig kod"
3532
 
3533
- #: ../settings.php:824
3534
  msgid "Specify directories to exclude from scanning. One directory per line."
3535
  msgstr "Specificera kataloger att exkludera från skanning. En katalog per rad."
3536
 
3537
- #: ../settings.php:868
3538
  msgid "The scanner automatically scans the website, removes malware and sends email reports with the results of a scan"
3539
  msgstr "Skannern skannar automatiskt webbplatsen, tar bort skadlig kod och skickar e-postrapporter med resultatet av en skanning"
3540
 
3541
- #: ../settings.php:885
3542
  msgid "Configure what issues to include in the email report and the condition for sending reports"
3543
  msgstr "Konfigurera vilka problem som ska inkluderas i e-postrapporten och villkoret för att skicka rapporter"
3544
 
3545
- #: ../settings.php:927
3546
  msgid "These policies are automatically enforced at the end of every scheduled scan based on its results. All affected files are moved to the quarantine"
3547
  msgstr ""
3548
 
3549
- #: ../settings.php:993
3550
  msgid "Cerber anti-spam engine"
3551
  msgstr ""
3552
 
3553
- #: ../settings.php:994
3554
  msgid "Spam protection for comment, registration and contact forms on a website"
3555
  msgstr "Skräppostskydd för kommentarer, registrering och kontaktformulär på en webbplats"
3556
 
3557
- #: ../settings.php:1015
3558
  msgid "Adjust anti-spam engine"
3559
  msgstr ""
3560
 
3561
- #: ../settings.php:1016
3562
  msgid "These settings enable you to fine-tune the behavior of anti-spam algorithms and avoid false positives"
3563
  msgstr ""
3564
 
3565
- #: ../settings.php:1040
3566
  msgid "How the plugin processes comments submitted through the standard comment form"
3567
  msgstr "Hur tillägget bearbetar kommentarer som skickats in via standardformuläret för kommentarer"
3568
 
3569
- #: ../nexus/cerber-nexus-slave.php:451
3570
  msgid "Settings updated"
3571
  msgstr "Inställningar uppdaterade"
3572
 
3573
- #: ../dashboard.php:1151
3574
  msgid "Request ID"
3575
  msgstr ""
3576
 
3577
- #: ../dashboard.php:1152
3578
  msgid "Search in URL"
3579
  msgstr "Sök i URL"
3580
 
3581
- #: ../settings.php:831 ../settings.php:840
3582
  msgid "Executable files"
3583
- msgstr ""
3584
 
3585
- #: ../settings.php:832 ../settings.php:841
3586
  msgid "All files"
3587
  msgstr "Alla filer"
3588
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  "Language: sv\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
 
11
+ #: ../settings.php:149
12
  msgid "Limit login attempts"
13
  msgstr "Begränsa inloggningsförsök"
14
 
15
+ #: ../settings.php:157
16
  msgid "Lockout duration"
17
  msgstr "Utlåsningstidens varaktighet"
18
 
19
+ #: ../settings.php:158 ../settings.php:259
20
  msgid "minutes"
21
  msgstr "minuter"
22
 
23
+ #: ../settings.php:161
24
  msgid "Aggressive lockout"
25
  msgstr "Aggressiv utlåsning"
26
 
27
+ #: ../settings.php:229
28
  msgid "Site connection"
29
  msgstr "Webbplatsanslutning"
30
 
31
+ #: ../settings.php:172
32
  msgid "Proactive security rules"
33
  msgstr "Proaktiva säkerhetsregler"
34
 
35
+ #: ../settings.php:176
36
  msgid "Block subnet"
37
  msgstr "Blockera undernät"
38
 
39
+ #: ../settings.php:191
40
  msgid "Request wp-login.php"
41
  msgstr "Begär wp-login.php"
42
 
43
+ #: ../settings.php:192
44
  msgid "Immediately block IP after any request to wp-login.php"
45
  msgstr "Blockera omedelbart IP efter en förfrågan till wp-login.php"
46
 
47
+ #: ../settings.php:207
48
  msgid "Custom login page"
49
  msgstr "Anpassad inloggningssida"
50
 
51
+ #: ../settings.php:211
52
  msgid "Custom login URL"
53
  msgstr "Anpassad URL för inloggning"
54
 
55
+ #: ../settings.php:212
56
  msgid "must not overlap with the existing pages or posts slug"
57
  msgstr "får inte överlappa med befintliga sidor eller permalänkar för inlägg"
58
 
59
+ #: ../settings.php:219
60
  msgid "Disable wp-login.php"
61
  msgstr "Inaktivera wp-login.php"
62
 
63
+ #: ../settings.php:220
64
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
65
  msgstr "Blockera direktåtkomst till wp-login.php och returnera HTTP 404 inte hittade fel"
66
 
67
+ #: ../dashboard.php:1763 ../settings.php:243
68
  msgid "Citadel mode"
69
  msgstr "Citadelläge"
70
 
71
+ #: ../settings.php:253
72
  msgid "Threshold"
73
  msgstr "Gränsvärde"
74
 
75
+ #: ../admin/cerber-admin.php:51 ../settings.php:258
76
  msgid "Duration"
77
  msgstr "Varaktighet"
78
 
79
+ #: ../dashboard.php:4611 ../settings.php:264
80
  msgid "Notifications"
81
  msgstr "Notiser"
82
 
83
+ #: ../settings.php:266
84
  msgid "Send notification to admin email"
85
  msgstr "Skicka meddelande till admins e-post"
86
 
87
+ #: ../dashboard.php:4608 ../cerber-tools.php:38 ../cerber-tools.php:49
88
  msgid "Access Lists"
89
  msgstr "Åtkomstlistor"
90
 
91
+ #: ../dashboard.php:1804 ../dashboard.php:2351 ../dashboard.php:4604 ../cerber-
92
+ #: load.php:4965 ../cerber-users.php:1163 ../settings.php:276
93
  msgid "Activity"
94
  msgstr "Aktivitet"
95
 
96
+ #: ../dashboard.php:4606
97
  msgid "Lockouts"
98
  msgstr "Utlåsningar"
99
 
100
+ #: ../cerber-load.php:4974
101
  msgid "IP"
102
  msgstr "IP"
103
 
104
+ #: ../dashboard.php:846 ../dashboard.php:1110 ../dashboard.php:3567 ../dashboard.
105
+ #: php:4018
106
  msgid "Date"
107
  msgstr "Datum"
108
 
109
+ #: ../dashboard.php:849 ../dashboard.php:1112 ../dashboard.php:4023
110
  msgid "Local User"
111
  msgstr "Lokal användare"
112
 
113
+ #: ../cerber-load.php:4982
114
  msgid "Username used"
115
  msgstr "Användarnamn används"
116
 
117
+ #: ../dashboard.php:216
118
  msgid "Showing last %d records from %d"
119
  msgstr "Visar senaste %d poster från %d"
120
 
121
+ #: ../common.php:1328
122
  msgid "Logged in"
123
  msgstr "Inloggad"
124
 
125
+ #: ../common.php:1329
126
  msgid "Logged out"
127
  msgstr "Utloggad"
128
 
129
+ #: ../common.php:1330
130
  msgid "Login failed"
131
  msgstr "Inloggning misslyckades"
132
 
133
+ #: ../dashboard.php:977 ../common.php:1333
134
  msgid "IP blocked"
135
  msgstr "IP blockerat"
136
 
137
+ #: ../common.php:1337
138
  msgid "Citadel activated!"
139
  msgstr "Citadel aktiverat!"
140
 
141
+ #: ../dashboard.php:1352 ../dashboard.php:1396 ../dashboard.php:3800 ../common.
142
+ #: php:1391
143
  msgid "Locked out"
144
  msgstr "Utlåst"
145
 
146
+ #: ../common.php:1393
147
  msgid "IP blacklisted"
148
  msgstr "IP svartlistat"
149
 
150
+ #: ../common.php:1350
151
  msgid "Password changed"
152
  msgstr "Lösenord ändrat"
153
 
154
+ #: ../dashboard.php:190 ../dashboard.php:308
155
  msgid "Remove"
156
  msgstr "Ta bort"
157
 
158
+ #: ../dashboard.php:575
159
  msgid "Lockout for %s was removed"
160
  msgstr "Utlåsning för %s borttagen"
161
 
162
+ #: ../dashboard.php:254 ../dashboard.php:1344 ../dashboard.php:1389 ../dashboard.
163
+ #: php:1761 ../dashboard.php:3792 ../cerber-tools.php:69
164
  msgid "White IP Access List"
165
  msgstr "Vita IP-åtkomstlistan"
166
 
167
+ #: ../dashboard.php:257 ../dashboard.php:1347 ../dashboard.php:1392 ../dashboard.
168
+ #: php:1762 ../dashboard.php:3795 ../cerber-tools.php:70
169
  msgid "Black IP Access List"
170
  msgstr "Svarta IP-åtkomstlistan"
171
 
172
+ #: ../dashboard.php:314
173
  msgid "List is empty"
174
  msgstr "Listan är tom"
175
 
176
+ #: ../cerber-load.php:4191
177
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
178
  msgstr "Citadelläge är aktiverad efter %d misslyckades inloggningsförsök inom %d minuter."
179
 
180
+ #: ../dashboard.php:2481 ../dashboard.php:2885
181
  msgid "View Activity"
182
  msgstr "Visa aktivitet"
183
 
184
+ #: ../dashboard.php:4677 ../dashboard.php:4738 ../cerber-tools.php:37 ../cerber-
185
+ #: tools.php:48 ../nexus/cerber-nexus.php:93
186
  msgid "Settings"
187
  msgstr "Inställningar"
188
 
189
+ #: ../dashboard.php:1611
190
  msgid "Last login"
191
  msgstr "Senaste inloggning"
192
 
193
+ #: ../dashboard.php:1644 ../dashboard.php:1735 ../dashboard.php:1784 ../common.
194
+ #: php:1627 ../nexus/cerber-slave-list.php:346
195
  msgid "Never"
196
  msgstr "Aldrig"
197
 
198
+ #: ../dashboard.php:5100 ../admin/cerber-admin.php:721 ../admin/cerber-admin.php:
199
+ #: 888 ../cerber-tools.php:59
200
  msgid "Are you sure?"
201
  msgstr "Är du säker?"
202
 
203
+ #: ../dashboard.php:2169 ../settings.php:230
204
  msgid "My site is behind a reverse proxy"
205
  msgstr "Min webbplats är bakom en omvänd proxy"
206
 
207
+ #: ../settings.php:173
208
  msgid "Make your protection smarter!"
209
  msgstr "Gör ditt skydd smartare!"
210
 
211
+ #: ../settings.php:126
212
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
213
  msgstr "Aktivera permalänkar för att använda denna funktion. Ställ in inställningar för permalänkar till något annat än standard."
214
 
215
+ #: ../dashboard.php:4607
216
  msgid "Main Settings"
217
  msgstr "Huvudinställningar"
218
 
219
+ #: ../dashboard.php:4897
220
  msgid "Help"
221
  msgstr "Hjälp"
222
 
223
+ #: ../admin/cerber-settings.php:364
224
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
225
  msgstr "Öka utlåsningens varaktighet till %s timmar efter %s utlåsningar under de senaste %s timmarna"
226
 
234
  msgstr[0] "Du har bara ett försök kvar."
235
  msgstr[1] "Du har %d försök kvar."
236
 
237
+ #: ../dashboard.php:1140
238
  msgid "No activity has been logged."
239
  msgstr "Ingen aktivitet har loggats."
240
 
241
+ #: ../dashboard.php:198 ../cerber-users.php:974
242
  msgid "Expires"
243
  msgstr "Löper ut"
244
 
245
+ #: ../dashboard.php:222
246
  msgid "No lockouts at the moment. The sky is clear."
247
  msgstr "Inga utlåsningar för tillfället. Kusten är klar."
248
 
249
+ #: ../dashboard.php:264
250
  msgid "Your IP"
251
  msgstr "Ditt IP"
252
 
253
+ #: ../cerber-load.php:4192
254
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
255
  msgstr "Senast misslyckat försök var %s från IP %s med användarinloggning: %s."
256
 
257
+ #: ../cerber-load.php:5239
258
  msgid "Can't activate WP Cerber due to a database error."
259
  msgstr "Kan inte aktivera WP Cerber på grund av ett databasfel."
260
 
261
+ #: ../admin/cerber-settings.php:372
262
  msgid "Notify admin if the number of active lockouts above"
263
  msgstr "Meddela admin om antalet aktiva utlåsningar ovan"
264
 
265
+ #: ../settings.php:280 ../settings.php:286 ../settings.php:830 ../settings.php:
266
+ #: 836 ../settings.php:907 ../settings.php:1098
267
  msgid "days"
268
  msgstr "dagar"
269
 
270
+ #: ../dashboard.php:1701
271
  msgid "Cerber Quick View"
272
  msgstr "Cerber snabböversikt"
273
 
274
+ #: ../dashboard.php:218
275
  msgid "Hint"
276
  msgstr "Ledtråd"
277
 
278
+ #: ../dashboard.php:218
279
  msgid "To view activity, click on the IP"
280
  msgstr "För att visa aktivitet, klicka på IP"
281
 
282
+ #: ../settings.php:177
283
  msgid "Always block entire subnet Class C of intruders IP"
284
  msgstr "Blockera alltid hela undernätet Klass C av inkräktande IP"
285
 
286
+ #: ../admin/cerber-settings.php:377 ../settings.php:270
287
  msgid "Click to send test"
288
  msgstr "Klicka för att skicka test"
289
 
290
+ #: ../admin/cerber-settings.php:681 ../admin/cerber-settings.php:682
291
  msgid "Attention! You have changed the login URL! The new login URL is"
292
  msgstr "Observera! Du har ändrat URL för inloggning! Den nya URL:en för inloggning är"
293
 
294
+ #: ../dashboard.php:1610
295
  msgid "Comments"
296
  msgstr "Kommentarer"
297
 
298
+ #: ../cerber-load.php:4193 ../cerber-load.php:5006
299
  msgid "View activity in dashboard"
300
  msgstr "Visa aktivitet i adminpanel"
301
 
302
+ #: ../cerber-load.php:4222
303
  msgid "Number of active lockouts"
304
  msgstr "Antal aktiva utlåsningar"
305
 
306
+ #: ../cerber-load.php:4226
307
  msgid "View lockouts in dashboard"
308
  msgstr "Visa utlåsningar i adminpanelen"
309
 
310
+ #: ../cerber-load.php:4322
311
  msgid "This message was sent by"
312
  msgstr "Detta meddelande skickades av"
313
 
314
+ #: ../dashboard.php:82 ../dashboard.php:4789
315
  msgid "Tools"
316
  msgstr "Verktyg"
317
 
331
  msgid "Download file"
332
  msgstr "Ladda ner fil"
333
 
334
+ #: ../cerber-tools.php:43
335
  msgid "Import settings from the file"
336
  msgstr "Importera inställningar från fil"
337
 
338
+ #: ../cerber-tools.php:44
339
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
340
  msgstr "När du klickar på knappen nedan kommer filen att laddas upp och alla befintliga inställningar kommer att åsidosättas"
341
 
342
+ #: ../cerber-tools.php:45
343
  msgid "Select file to import."
344
  msgstr "Välj fil att importera."
345
 
346
+ #: ../admin/cerber-admin.php:246 ../cerber-tools.php:45
347
  msgid "Maximum upload file size: %s."
348
  msgstr "Maximal filstorlek för uppladdning: %s."
349
 
350
+ #: ../cerber-tools.php:48
351
  msgid "What do you want to import?"
352
  msgstr "Vad vill du importera?"
353
 
354
+ #: ../admin/cerber-admin.php:249 ../cerber-tools.php:50
355
  msgid "Upload file"
356
  msgstr "Ladda upp fil"
357
 
358
+ #: ../cerber-tools.php:189
359
  msgid "No file was uploaded or file is corrupted"
360
  msgstr "Ingen fil har laddats upp eller filen är skadad"
361
 
362
+ #: ../cerber-tools.php:236
363
  msgid "Settings has imported successfully from"
364
  msgstr "Inställningar har importerats utan problem från"
365
 
366
+ #: ../cerber-tools.php:243
367
  msgid "Error while parsing file"
368
  msgstr "Fel uppstod vid analyseringen av fil"
369
 
370
+ #: ../dashboard.php:196 ../dashboard.php:1108
371
  msgid "Hostname"
372
  msgstr "Värdnamn"
373
 
374
+ #: ../dashboard.php:513
375
  msgid "unknown"
376
  msgstr "okänt"
377
 
378
+ #: ../dashboard.php:1740 ../dashboard.php:1770
379
  msgid "active"
380
  msgstr "aktivt"
381
 
382
+ #: ../dashboard.php:1740
383
  msgid "deactivate"
384
  msgstr "inaktivera"
385
 
386
+ #: ../dashboard.php:1744
387
  msgid "not active"
388
  msgstr "Inte aktiv"
389
 
390
+ #: ../dashboard.php:1747 ../dashboard.php:1765
391
  msgid "disabled"
392
  msgstr "inaktiverad"
393
 
394
+ #: ../dashboard.php:1753
395
  msgid "failed attempts"
396
  msgstr "misslyckade försök"
397
 
398
+ #: ../dashboard.php:1753 ../dashboard.php:1754
399
  msgid "in 24 hours"
400
  msgstr "om 24 timmar"
401
 
402
+ #: ../dashboard.php:1753 ../dashboard.php:1754
403
  msgid "view all"
404
  msgstr "visa alla"
405
 
406
+ #: ../dashboard.php:1754
407
  msgid "lockouts"
408
  msgstr "Utlåsningar"
409
 
410
+ #: ../dashboard.php:1756
411
  msgid "Lockouts at the moment"
412
  msgstr "Utlåsningar just nu"
413
 
414
+ #: ../dashboard.php:1757
415
  msgid "Last lockout"
416
  msgstr "Senaste utlåsning"
417
 
418
+ #: ../dashboard.php:1761 ../dashboard.php:1762 ../dashboard.php:2664
419
  msgid "entry"
420
  msgid_plural "entries"
421
  msgstr[0] ""
422
  msgstr[1] ""
423
 
424
+ #: ../cerber-tools.php:57
 
 
 
 
 
 
 
 
425
  msgid "Load default settings"
426
  msgstr "Ladda standardinställningar"
427
 
428
+ #: ../settings.php:667
 
 
 
 
429
  msgid "New version is available"
430
  msgstr "Ny version är tillgänglig"
431
 
432
+ #: ../cerber-load.php:4165
433
  msgid "WP Cerber notify"
434
  msgstr "WP Cerber meddelar"
435
 
436
+ #: ../cerber-load.php:4189
437
  msgid "Citadel mode is activated"
438
  msgstr "Citadelläge är aktiverat"
439
 
440
+ #: ../cerber-load.php:4265
441
  msgid "New Custom login URL"
442
  msgstr "Ny anpassad URL för inloggning"
443
 
444
+ #: ../cerber-load.php:5225
445
  msgid "The WP Cerber requires PHP %s or higher. You are running"
446
  msgstr "WP Cerber kräver PHP %s eller högre. Du kör"
447
 
448
+ #: ../cerber-load.php:5229
449
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
450
  msgstr "WP Cerber kräver WordPress %s eller högre. Du kör"
451
 
452
+ #: ../settings.php:305
453
  msgid "Use file"
454
  msgstr "Använd fil"
455
 
456
+ #: ../settings.php:306
457
  msgid "Write failed login attempts to the file"
458
  msgstr "Skriv misslyckade inloggningsförsök till fil"
459
 
460
+ #: ../dashboard.php:2480
461
  msgid "Deactivate"
462
  msgstr "Inaktivera"
463
 
464
+ #: ../dashboard.php:199 ../cerber-load.php:4224
465
  msgid "Reason"
466
  msgstr "Anledning"
467
 
468
+ #: ../dashboard.php:1455
469
  msgid "Add IP to the Black List"
470
  msgstr "Lägg till IP i svartlistan"
471
 
472
+ #: ../common.php:1465
473
  msgid "Attempt to access"
474
  msgstr "Försök att komma åt"
475
 
476
+ #: ../common.php:1464
477
  msgid "Limit on login attempts is reached"
478
  msgstr "Gränsen för inloggningsförsök är nådd"
479
 
480
+ #: ../cerber-load.php:4223
481
  msgid "Last lockout was added: %s for IP %s"
482
  msgstr "Senaste utlåsningen lades till: %s för IP %s"
483
 
484
+ #: ../dashboard.php:4609
485
  msgid "Hardening"
486
  msgstr "Förstärk"
487
 
488
+ #: ../dashboard.php:1428
489
  msgid "Abuse email:"
490
  msgstr "E-post för missbruk:"
491
 
492
+ #: ../settings.php:654 ../settings.php:701 ../settings.php:962
493
  msgid "Email Address"
494
  msgstr "E-postadress"
495
 
496
+ #: ../settings.php:315
497
  msgid "Drill down IP"
498
  msgstr "Rulla ner IP"
499
 
500
+ #: ../settings.php:316
501
  msgid "Retrieve extra WHOIS information for IP"
502
  msgstr "Hämta extra WHOIS-information för IP"
503
 
504
+ #: ../settings.php:349
505
  msgid "Hardening WordPress"
506
  msgstr "Förstärk WordPress"
507
 
508
+ #: ../settings.php:353 ../settings.php:389
509
  msgid "Stop user enumeration"
510
  msgstr "Stoppa uppräkning av användare"
511
 
512
+ #: ../settings.php:372
513
  msgid "Disable XML-RPC"
514
  msgstr "Inaktivera XML-RPC"
515
 
516
+ #: ../settings.php:373
517
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
518
  msgstr "Blockera åtkomst till XML-RPC-servern (inklusive pingbacks och trackbacks)"
519
 
520
+ #: ../settings.php:377
521
  msgid "Disable feeds"
522
  msgstr "Inaktivera flöden"
523
 
524
+ #: ../settings.php:378
525
  msgid "Block access to the RSS, Atom and RDF feeds"
526
  msgstr "Blockera åtkomst till RSS, Atom och RDF-flöden"
527
 
528
+ #: ../settings.php:394
529
  msgid "Disable REST API"
530
  msgstr "Inaktivera REST API"
531
 
532
+ #: ../admin/cerber-settings.php:777 ../admin/cerber-settings.php:789 ..
533
+ #: /admin/cerber-settings.php:949
534
  msgid "<strong>ERROR</strong>: please enter a valid email address."
535
  msgstr "<strong>FEL</strong>: Ange en giltig e-postadress."
536
 
537
+ #: ../cerber-load.php:4254 ../cerber-load.php:5284
538
  msgid "WP Cerber is now active and has started protecting your site"
539
  msgstr "WP Cerber är nu aktiv och har börjat skydda din webbplats"
540
 
541
+ #: ../dashboard.php:200 ../admin/cerber-admin.php:757 ../admin/cerber-admin.php:
542
+ #: 912 ../cerber-users.php:977
543
  msgid "Action"
544
  msgstr "Åtgärd"
545
 
546
+ #: ../dashboard.php:4946
547
  msgid "Incorrect IP address or IP range"
548
  msgstr "Felaktig IP-adress eller IP-intervall"
549
 
550
+ #: ../dashboard.php:2496
551
  msgid "Settings saved"
552
  msgstr "Inställningar sparade"
553
 
554
+ #: ../dashboard.php:1434
555
  msgid "Network:"
556
  msgstr "Nätverk:"
557
 
558
+ #: ../dashboard.php:1449
559
  msgid "Add network to the Black List"
560
  msgstr "Lägg till nätverk i svartlistan"
561
 
562
+ #: ../dashboard.php:2479
563
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
564
  msgstr "Observera! Citadelläget är nu aktivt. Ingen kan logga in."
565
 
566
+ #: ../dashboard.php:433 ../dashboard.php:3700 ../whois.php:222 ../whois.php:253 ..
567
+ #: /common.php:1489 ../common.php:1895 ../common.php:1963 ../nexus/cerber-slave-
568
+ #: list.php:332
569
  msgid "Unknown"
570
  msgstr "Okänt"
571
 
572
+ #: ../common.php:339 ../common.php:417 ../common.php:422 ../common.php:428 ..
573
+ #: /common.php:433 ../admin/cerber-settings.php:653 ../admin/cerber-settings.php:
574
+ #: 673 ../admin/cerber-settings.php:753 ../admin/cerber-admin.php:858 ../cerber-
575
+ #: load.php:649 ../cerber-load.php:661 ../cerber-load.php:668 ../cerber-load.php:
576
+ #: 1008 ../cerber-load.php:1549 ../cerber-load.php:1555 ../cerber-load.php:1560 ..
577
+ #: /cerber-load.php:1567 ../cerber-load.php:1574 ../cerber-load.php:1580 ..
578
+ #: /cerber-load.php:1587 ../cerber-load.php:1752 ../cerber-load.php:1889 ..
579
+ #: /nexus/cerber-nexus-slave.php:204 ../nexus/cerber-nexus-slave.php:215
580
  msgid "ERROR:"
581
  msgstr "FEL:"
582
 
584
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
585
  msgstr "Mänsklig verifikation misslyckades. Klicka på rutan i reCAPTCHA-blocket nedan."
586
 
587
+ #: ../cerber-load.php:1117
588
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
589
  msgstr "<strong>FEL</strong>: Lösenordet du angav för användarnamnet %s är felaktigt."
590
 
591
+ #: ../cerber-load.php:1568
592
  msgid "Username is not allowed. Please choose another one."
593
  msgstr "Användarnamn är inte tillåtet. Välj ett annat."
594
 
595
+ #: ../cerber-load.php:4217
596
  msgid "unspecified"
597
  msgstr "ospecificerat"
598
 
599
+ #: ../cerber-load.php:4220
600
  msgid "Number of lockouts is increasing"
601
  msgstr "Antal utlåsningar är stigande"
602
 
603
+ #: ../cerber-load.php:4225
604
  msgid "View activity for this IP"
605
  msgstr "Visa aktivitet för detta IP"
606
 
607
+ #: ../cerber-load.php:4229 ../cerber-load.php:4231
608
  msgid "A new version of WP Cerber is available to install"
609
  msgstr "En ny version av WP Cerber är tillgänglig att installeras"
610
 
611
+ #: ../cerber-load.php:4230
612
  msgid "Hi!"
613
  msgstr "Hej!"
614
 
615
+ #: ../cerber-load.php:4233 ../cerber-load.php:4244 ../nexus/cerber-slave-list.php:
616
  #: 44
617
  msgid "Website"
618
  msgstr "Webbplats"
619
 
620
+ #: ../cerber-load.php:4236 ../cerber-load.php:4237
621
  msgid "The WP Cerber security plugin has been deactivated"
622
  msgstr "Säkerhetstillägget WP Cerber har blivit avaktiverat"
623
 
624
+ #: ../cerber-load.php:4239
625
  msgid "Not logged in"
626
  msgstr "Inte inloggad"
627
 
628
+ #: ../cerber-load.php:4245
629
  msgid "By user"
630
  msgstr "Efter användare"
631
 
632
+ #: ../cerber-load.php:4246
633
  msgid "From IP address"
634
  msgstr "Från IP-adress"
635
 
636
+ #: ../cerber-load.php:4249
637
  msgid "From country"
638
  msgstr "Från land"
639
 
640
+ #: ../cerber-load.php:4253
641
  msgid "The WP Cerber security plugin is now active"
642
  msgstr "Säkerhetstillägget WP Cerber är nu aktivt"
643
 
644
+ #: ../cerber-load.php:5297
 
 
 
 
645
  msgid "Import settings"
646
  msgstr "Importera inställningar"
647
 
648
+ #: ../settings.php:662
649
  msgid "Notification limit"
650
  msgstr "Gräns för notiser"
651
 
652
+ #: ../settings.php:575
653
  msgid "Prohibited usernames"
654
  msgstr "Förbjudna användarnamn"
655
 
656
+ #: ../settings.php:576
657
  msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
658
  msgstr "Användarnamn från denna lista får inte logga in eller registrera sig. Alla IP-adresser, som försökt använda någon av dessa användarnamn, kommer omedelbart att blockeras. Använd komma för att separera inloggningar."
659
 
660
+ #: ../settings.php:1104
 
 
 
 
661
  msgid "reCAPTCHA settings"
662
  msgstr "reCaptcha-inställningar"
663
 
664
+ #: ../settings.php:1109
665
  msgid "Site key"
666
  msgstr "Webbplatsnyckel"
667
 
668
+ #: ../settings.php:1113
669
  msgid "Secret key"
670
  msgstr "Hemlig nyckel"
671
 
672
+ #: ../settings.php:1123
673
  msgid "Enable reCAPTCHA for WordPress registration form"
674
  msgstr "Aktivera reCAPTCHA för WordPress registreringsformulär"
675
 
676
+ #: ../settings.php:1132
677
  msgid "Lost password form"
678
  msgstr "Formulär för glömt lösenord"
679
 
680
+ #: ../settings.php:1142
681
  msgid "Login form"
682
  msgstr "Inloggningsformulär"
683
 
684
+ #: ../settings.php:1143
685
  msgid "Enable reCAPTCHA for WordPress login form"
686
  msgstr "Aktivera reCAPTCHA för WordPress inloggningsformulär"
687
 
688
+ #: ../settings.php:1105
689
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
690
  msgstr "Innan du kan börja använda reCAPTCHA måste du skaffa webbplatsnyckel och hemlig nyckel på Googles webbplats"
691
 
692
+ #: ../admin/cerber-settings.php:100 ../admin/cerber-settings.php:270 ../cerber-
693
+ #: lab.php:839
694
  msgid "Know more"
695
  msgstr "Läs mer"
696
 
697
+ #: ../common.php:1325
698
  msgid "User created"
699
  msgstr "Användare skapad"
700
 
701
+ #: ../common.php:1326
702
  msgid "User registered"
703
  msgstr "Användare registrerad"
704
 
705
+ #: ../common.php:1353
706
  msgid "reCAPTCHA verification failed"
707
  msgstr "reCAPTCHA-verifiering misslyckades"
708
 
709
+ #: ../common.php:1354
710
  msgid "reCAPTCHA settings are incorrect"
711
  msgstr "reCAPTCHA-inställningarna är felaktiga"
712
 
713
+ #: ../common.php:1357 ../common.php:1466
714
  msgid "Attempt to access prohibited URL"
715
  msgstr "Försök att få tillgång till förbjuden URL"
716
 
717
+ #: ../common.php:1359 ../common.php:1468
718
  msgid "Attempt to log in with prohibited username"
719
  msgstr "Försök att logga in med förbjudna användarnamn"
720
 
721
+ #: ../settings.php:291
722
  msgid "Cerber Lab connection"
723
  msgstr "Cerber Lab-anslutning"
724
 
725
+ #: ../settings.php:292
726
  msgid "Send malicious IP addresses to the Cerber Lab"
727
  msgstr "Skicka skadliga IP-adresser till Cerber Lab"
728
 
729
+ #: ../settings.php:297
730
  msgid "Cerber Lab protocol"
731
  msgstr "Cerber Lab-protokoll"
732
 
733
+ #: ../settings.php:1050 ../settings.php:1122
734
  msgid "Registration form"
735
  msgstr "Registreringsformulär"
736
 
737
+ #: ../settings.php:1128
738
  msgid "Enable reCAPTCHA for WooCommerce registration form"
739
  msgstr "Aktivera reCAPTCHA för WooCommerce registreringsformulär"
740
 
741
+ #: ../settings.php:1133
742
  msgid "Enable reCAPTCHA for WordPress lost password form"
743
  msgstr "Aktivera reCAPTCHA för WordPress på formuläret för förlorat lösenord"
744
 
745
+ #: ../settings.php:1138
746
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
747
  msgstr "Aktivera reCAPTCHA för WooCommerce på formuläret för förlorat lösenord"
748
 
749
+ #: ../settings.php:1148
750
  msgid "Enable reCAPTCHA for WooCommerce login form"
751
  msgstr "Aktivera reCAPTCHA för WooCommerce inloggningsformulär"
752
 
753
+ #: ../common.php:1355
754
  msgid "Request to the Google reCAPTCHA service failed"
755
  msgstr "Begäran om Google reCAPTCHA-tjänsten misslyckades"
756
 
757
+ #: ../dashboard.php:958 ../dashboard.php:2365
758
  msgid "View all"
759
  msgstr "Visa alla"
760
 
761
+ #: ../dashboard.php:2368
762
  msgid "Recently locked out IP addresses"
763
  msgstr "Nyligen utlåsta IP-adresser"
764
 
765
+ #: ../cerber-lab.php:837
766
  msgid "OK, nail them all"
767
  msgstr "OK, sätt fast dem alla"
768
 
769
+ #: ../cerber-lab.php:838
770
  msgid "NO, maybe later"
771
  msgstr "Nej, kanske senare"
772
 
773
+ #: ../dashboard.php:54 ../dashboard.php:1803 ../dashboard.php:2686 ../dashboard.
774
+ #: php:4603
775
  msgid "Dashboard"
776
  msgstr "Adminpanel"
777
 
778
+ #: ../cerber-lab.php:835
779
  msgid "Want to make WP Cerber even more powerful?"
780
  msgstr "Vill du göra WP Cerber ännu mer kraftfull?"
781
 
782
+ #: ../cerber-lab.php:836
783
  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."
784
  msgstr "Tillåt WP Cerber att skicka utlåsta skadliga IP-adresser till Cerber Lab. Detta hjälper teamet för tillägget att utveckla nya algoritmer för WP Cerber som kommer att försvara WordPress mot nya hot och botnets som dyker upp varje dag. Du kan när som helst inaktivera sändningen i inställningarna för tillägget."
785
 
786
+ #: ../dashboard.php:3566
787
  msgid "IP address"
788
  msgstr "IP-adress"
789
 
790
+ #: ../dashboard.php:850
791
  msgid "User login"
792
  msgstr "Användarinloggning"
793
 
794
+ #: ../dashboard.php:851 ../dashboard.php:3572
795
  msgid "User ID"
796
  msgstr "Användar-ID"
797
 
798
+ #: ../dashboard.php:1135 ../dashboard.php:4086
799
  msgid "Export"
800
  msgstr "Exportera"
801
 
802
+ #: ../dashboard.php:1151
803
  msgid "Search for IP or username"
804
  msgstr "Sök efter IP eller användarnamn"
805
 
806
+ #: ../dashboard.php:1162
807
  msgid "Filter"
808
  msgstr "Filter"
809
 
815
  msgid "Cerber tools"
816
  msgstr "Cerber verktyg"
817
 
818
+ #: ../cerber-tools.php:320
819
  msgid "Unsubscribe"
820
  msgstr "Avregistrera prenumeration"
821
 
822
+ #: ../cerber-load.php:4269 ../cerber-load.php:4270
823
  msgid "A new activity has been recorded"
824
  msgstr "En ny aktivitet har registrerats"
825
 
826
+ #: ../cerber-load.php:4978 ../cerber-users.php:971
827
  msgid "User"
828
  msgstr "Användare"
829
 
830
+ #: ../cerber-load.php:4986
831
  msgid "Search string"
832
  msgstr "Söksträng"
833
 
834
+ #: ../settings.php:312
835
  msgid "Preferences"
836
  msgstr "Preferenser"
837
 
838
+ #: ../settings.php:320
839
  msgid "Date format"
840
  msgstr "Datumformat"
841
 
842
+ #: ../settings.php:321
843
  msgid "if empty, the default format %s will be used"
844
  msgstr "om det är tomt, kommer standardformatet %s att användas"
845
 
846
+ #: ../settings.php:673
847
  msgid "Push notifications"
848
  msgstr "Pushmeddelanden"
849
 
850
+ #: ../settings.php:645
851
  msgid "Email notifications"
852
  msgstr "E-postmeddelanden"
853
 
854
+ #: ../settings.php:655 ../settings.php:703 ../settings.php:801 ../settings.php:964
855
  msgid "Use comma to specify multiple values"
856
  msgstr "Använd komma för att ange flera värden"
857
 
858
+ #: ../settings.php:113
859
  msgid "All connected devices"
860
  msgstr "Alla anslutna enheter"
861
 
862
+ #: ../settings.php:116
863
  msgid "No devices found"
864
  msgstr "Hittade inga enheter"
865
 
866
+ #: ../settings.php:120
867
  msgid "Not available"
868
  msgstr "Inte tillgänglig"
869
 
870
+ #: ../common.php:1351
871
  msgid "Password reset requested"
872
  msgstr "Lösenordsåterställning begärd"
873
 
874
+ #: ../common.php:1469
875
  msgid "Limit on failed reCAPTCHA verifications is reached"
876
  msgstr "Gräns för om misslyckade reCAPTCHA-verifieringar uppnås"
877
 
878
+ #: ../common.php:1622
879
  msgid "%s ago"
880
  msgstr "%s sedan"
881
 
882
+ #: ../settings.php:166
883
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
884
  msgstr "Tillämpa gränser för inloggningsregler till IP-adresser i den vita IP-åtkomstlistan"
885
 
886
+ #: ../settings.php:196
887
  msgid "Display 404 page"
888
  msgstr "Visa 404 sida"
889
 
890
+ #: ../settings.php:1117
891
  msgid "Invisible reCAPTCHA"
892
  msgstr "Osynlig reCAPTCHA"
893
 
894
+ #: ../settings.php:1118
895
  msgid "Enable invisible reCAPTCHA"
896
  msgstr "Aktivera osynlig reCAPTCHA"
897
 
898
+ #: ../settings.php:1118
899
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
900
  msgstr "(aktivera det inte om du inte skaffar och anger webbplatsen och hemliga nycklar för den osynliga versionen)"
901
 
902
+ #: ../settings.php:1153
903
  msgid "Enable reCAPTCHA for WordPress comment form"
904
  msgstr "Aktivera reCAPTCHA för WordPress-kommentarformulär"
905
 
906
+ #: ../settings.php:1158
907
  msgid "Disable reCAPTCHA for logged in users"
908
  msgstr "Inaktivera reCAPTCHA för inloggade användare"
909
 
910
+ #: ../settings.php:1162
911
  msgid "Limit attempts"
912
  msgstr "Begränsa försök"
913
 
914
+ #: ../settings.php:1163
915
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
916
  msgstr "Lås ut IP-adress i %s minuter efter %s misslyckade försök inom %s minuter"
917
 
918
+ #: ../settings.php:244
919
  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."
920
  msgstr "I Citadel-läget kan ingen logga in utom IP-adresser från den vita IP-åtkomstlistan. Aktiva användarsessioner påverkas inte."
921
 
922
+ #: ../dashboard.php:847 ../dashboard.php:1111
923
  msgid "Event"
924
  msgstr "Händelse"
925
 
926
+ #: ../common.php:282
927
  msgid "Spam comments denied"
928
  msgstr "Skräppostkommentarer nekades"
929
 
930
+ #: ../common.php:284
931
  msgid "Malicious IP addresses detected"
932
  msgstr "Skadliga IP-adresser upptäcktes"
933
 
934
+ #: ../common.php:285
935
  msgid "Lockouts occurred"
936
  msgstr "Utlåsningar inträffade"
937
 
938
+ #: ../cerber-load.php:1550 ../cerber-load.php:1556 ../cerber-load.php:1581 ..
939
+ #: /cerber-load.php:1588
940
  msgid "You are not allowed to register."
941
  msgstr "Du har inte behörighet att registrera."
942
 
943
+ #: ../common.php:1338
944
  msgid "Spam comment denied"
945
  msgstr "Skräppostkommentar nekad"
946
 
947
+ #: ../common.php:1361
948
  msgid "Attempt to log in denied"
949
  msgstr "Försök att logga in nekad"
950
 
951
+ #: ../common.php:1362
952
  msgid "Attempt to register denied"
953
  msgstr "Försök att registrera nekad"
954
 
955
+ #: ../common.php:279
956
  msgid "Malicious activities mitigated"
957
  msgstr "Skadliga aktiviteter mildrades"
958
 
959
+ #: ../settings.php:1045
960
  msgid "Comment form"
961
  msgstr "Kommentarsformulär"
962
 
963
+ #: ../settings.php:1046
964
  msgid "Protect comment form with bot detection engine"
965
  msgstr "Skydda kommentarformulär med botdetekteringsmotor"
966
 
967
+ #: ../settings.php:1051
968
  msgid "Protect registration form with bot detection engine"
969
  msgstr "Skydda registreringsformulär med botdetekteringsmotor"
970
 
971
+ #: ../dashboard.php:4793
 
 
 
 
972
  msgid "Diagnostic"
973
  msgstr "Diagnostik"
974
 
975
+ #: ../dashboard.php:4796
976
  msgid "License"
977
  msgstr "Licens"
978
 
979
+ #: ../cerber-load.php:1889
980
  msgid "Sorry, human verification failed."
981
  msgstr "Tyvärr, mänsklig verifiering misslyckades."
982
 
983
+ #: ../common.php:1470
984
  msgid "Bot activity is detected"
985
  msgstr "Botaktivitet är upptäckt"
986
 
987
+ #: ../settings.php:1086
988
  msgid "Comment processing"
989
  msgstr "Kommentarbehandling"
990
 
991
+ #: ../settings.php:1090
992
  msgid "If a spam comment detected"
993
  msgstr "Om en skräppostkommentar upptäcks"
994
 
995
+ #: ../settings.php:1095
996
  msgid "Trash spam comments"
997
  msgstr "Släng skräppostkommentarer"
998
 
999
+ #: ../settings.php:1097
1000
  msgid "Move spam comments to trash after"
1001
  msgstr "Flytta skräppostkommentarer till papperskorgen efter"
1002
 
1003
+ #: ../common.php:1339
1004
  msgid "Spam form submission denied"
1005
  msgstr "Skräppost nekades att skickas in via formulär"
1006
 
1007
+ #: ../settings.php:1055
1008
  msgid "Other forms"
1009
  msgstr "Andra formulär"
1010
 
1011
+ #: ../settings.php:1056
1012
  msgid "Protect all forms on the website with bot detection engine"
1013
  msgstr "Skydda alla formulär på webbplatsen med botdetekteringsmotor"
1014
 
1015
+ #: ../settings.php:1066
1016
  msgid "Safe mode"
1017
  msgstr "Säkert läge"
1018
 
1019
+ #: ../settings.php:1067
1020
  msgid "Use less restrictive policies (allow AJAX)"
1021
  msgstr "Använd mindre restriktiva policyer (tillåt AJAX)"
1022
 
1023
+ #: ../dashboard.php:979 ../dashboard.php:1759 ../dashboard.php:4051 ../settings.
1024
+ #: php:399 ../settings.php:1071
1025
  msgid "Logged in users"
1026
  msgstr "Inloggade användare"
1027
 
1028
+ #: ../settings.php:1072
1029
  msgid "Disable bot detection engine for logged in users"
1030
  msgstr "Inaktivera botdetekteringsmotor för inloggade användare"
1031
 
1032
+ #: ../dashboard.php:197 ../dashboard.php:1109
1033
  msgid "Country"
1034
  msgstr "Land"
1035
 
1037
  msgid "Cerber Security Rules"
1038
  msgstr "Cerber säkerhetsregler"
1039
 
1040
+ #: ../dashboard.php:61 ../dashboard.php:4720
1041
  msgid "Security Rules"
1042
  msgstr "Säkerhetsregler"
1043
 
1044
+ #: ../dashboard.php:1612
1045
  msgid "Failed login attempts"
1046
  msgstr "Misslyckade inloggningsförsök"
1047
 
1048
+ #: ../dashboard.php:1523 ../dashboard.php:1613
1049
  msgid "Registered"
1050
  msgstr "Registrerad"
1051
 
1052
+ #: ../dashboard.php:1683 ../cerber-users.php:52 ../cerber-users.php:1130
1053
  msgid "You"
1054
  msgstr "Du"
1055
 
1056
+ #: ../common.php:283
1057
  msgid "Spam form submissions denied"
1058
  msgstr "Inskickning av skräppostformulär nekad"
1059
 
1060
+ #: ../cerber-load.php:4256 ../cerber-load.php:5288
1061
  msgid "Getting Started Guide"
1062
  msgstr "Komma igång guiden"
1063
 
1064
+ #: ../dashboard.php:4722
1065
  msgid "Countries"
1066
  msgstr "Länder"
1067
 
1068
+ #: ../dashboard.php:3294
1069
  msgid "Permitted for one country"
1070
  msgid_plural "Permitted for %d countries"
1071
  msgstr[0] "Tillåtet för ett land"
1072
  msgstr[1] "Tillåtet för %d länder"
1073
 
1074
+ #: ../dashboard.php:3305
1075
  msgid "No rule"
1076
  msgstr "Ingen regel"
1077
 
1078
+ #: ../dashboard.php:3466
1079
  msgid "Security rules have been updated"
1080
  msgstr "Säkerhetsregler har uppdaterats"
1081
 
1084
  msgid "https://wpcerber.com"
1085
  msgstr "https://wpcerber.com"
1086
 
1087
+ #: ../common.php:1340
1088
  msgid "Form submission denied"
1089
  msgstr "Formulärinlämning nekad"
1090
 
1091
+ #: ../common.php:1341
1092
  msgid "Comment denied"
1093
  msgstr "Kommentar nekad"
1094
 
1095
+ #: ../common.php:1367
1096
  msgid "Request to REST API denied"
1097
  msgstr "Begäran till REST API nekad"
1098
 
1099
+ #: ../common.php:1368
1100
  msgid "XML-RPC request denied"
1101
  msgstr "XML-RPC-förfråga nekad"
1102
 
1103
+ #: ../common.php:1389
1104
  msgid "Bot detected"
1105
  msgstr "Bot upptäckt"
1106
 
1107
+ #: ../common.php:1390
1108
  msgid "Citadel mode is active"
1109
  msgstr "Citadelläget är aktivt"
1110
 
1111
+ #: ../common.php:1394
1112
  msgid "Malicious activity detected"
1113
  msgstr "Skadlig aktivitet upptäckt"
1114
 
1115
+ #: ../common.php:1395
1116
  msgid "Blocked by country rule"
1117
  msgstr "Blockerad av landsregeln"
1118
 
1119
+ #: ../common.php:1396
1120
  msgid "Limit reached"
1121
  msgstr "Gräns nådd"
1122
 
1123
+ #: ../common.php:1397
1124
  msgid "Multiple suspicious activities"
1125
  msgstr "Flera misstänkta aktiviteter"
1126
 
1127
+ #: ../common.php:1471
1128
  msgid "Multiple suspicious activities were detected"
1129
  msgstr "Flera misstänkta aktiviteter upptäcktes"
1130
 
1131
+ #: ../settings.php:400
1132
  msgid "Allow REST API for logged in users"
1133
  msgstr "Tillåt REST API för inloggade användare"
1134
 
1135
+ #: ../settings.php:414
1136
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
1137
  msgstr "Ange REST API-namnområden för att tillåtas om REST API är inaktiverat. En sträng per rad."
1138
 
1139
+ #: ../settings.php:552
1140
  msgid "Registration limit"
1141
  msgstr "Registreringsgräns"
1142
 
1143
+ #: ../settings.php:590
1144
  msgid "Sort users in dashboard"
1145
  msgstr "Sortera användare i adminpanelen"
1146
 
1147
+ #: ../settings.php:591
1148
  msgid "by date of registration"
1149
  msgstr "efter registreringsdatum"
1150
 
1151
+ #: ../settings.php:1076
1152
  msgid "Query whitelist"
1153
  msgstr ""
1154
 
1155
+ #: ../dashboard.php:3274
1156
  msgid "Start typing here to find a country"
1157
  msgstr "Börja skriva här för att hitta ett land"
1158
 
1159
+ #: ../dashboard.php:3389
1160
  msgid "Click on a country name to add it to the list of selected countries"
1161
  msgstr "Klicka på ett landsnamn för att lägga till det i listan över valda länder"
1162
 
1163
+ #: ../dashboard.php:3421
1164
  msgid "Submit forms"
1165
  msgstr "Skicka formulär"
1166
 
1167
+ #: ../dashboard.php:3422
1168
  msgid "Post comments"
1169
  msgstr "Publicera kommentarer"
1170
 
1171
+ #: ../dashboard.php:3420
 
 
 
 
1172
  msgid "Register on the website"
1173
  msgstr "Registrera på webbplatsen"
1174
 
1175
+ #: ../dashboard.php:3423
1176
  msgid "Use XML-RPC"
1177
  msgstr "Använd XML-RPC"
1178
 
1179
+ #: ../dashboard.php:3424
1180
  msgid "Use REST API"
1181
  msgstr "Använd REST API"
1182
 
1183
+ #: ../settings.php:1092
1184
  msgid "Deny it completely"
1185
  msgstr "Förneka det fullständigt"
1186
 
1187
+ #: ../settings.php:1092
1188
  msgid "Mark it as spam"
1189
  msgstr "Markera det som skräppost"
1190
 
1191
+ #: ../dashboard.php:2345
1192
  msgid "in the last 24 hours"
1193
  msgstr "under de senaste 24 timmarna"
1194
 
1195
+ #: ../dashboard.php:2687
1196
  msgid "Main settings"
1197
  msgstr "Huvudinställningar"
1198
 
1199
+ #: ../settings.php:688
1200
  msgid "Weekly reports"
1201
  msgstr "Veckovisa rapporter"
1202
 
1203
+ #: ../admin/cerber-settings.php:541
1204
  msgid "Sunday"
1205
  msgstr "Söndag"
1206
 
1207
+ #: ../admin/cerber-settings.php:542
1208
  msgid "Monday"
1209
  msgstr "Måndag"
1210
 
1211
+ #: ../admin/cerber-settings.php:543
1212
  msgid "Tuesday"
1213
  msgstr "Tisdag"
1214
 
1215
+ #: ../admin/cerber-settings.php:544
1216
  msgid "Wednesday"
1217
  msgstr "Onsdag"
1218
 
1219
+ #: ../admin/cerber-settings.php:545
1220
  msgid "Thursday"
1221
  msgstr "Torsdag"
1222
 
1223
+ #: ../admin/cerber-settings.php:546
1224
  msgid "Friday"
1225
  msgstr "Fredag"
1226
 
1227
+ #: ../admin/cerber-settings.php:547
1228
  msgid "Saturday"
1229
  msgstr "Lördag"
1230
 
1231
+ #: ../admin/cerber-settings.php:683 ../admin/cerber-settings.php:684
1232
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1233
  msgstr "Om du använder ett cachetillägg måste du lägga till din nya URL för inloggning till listan över sidor som inte ska caches."
1234
 
1235
+ #: ../cerber-load.php:4275
1236
  msgid "Weekly report"
1237
  msgstr "Veckorapport"
1238
 
1239
+ #: ../cerber-load.php:4278 ../cerber-load.php:4288
1240
  msgid "To change reporting settings visit"
1241
  msgstr "För att ändra rapporteringsinställningar besök"
1242
 
1243
+ #: ../cerber-load.php:4314
1244
  msgid "Your login page:"
1245
  msgstr "Din inloggningssida:"
1246
 
1247
+ #: ../cerber-load.php:4319
1248
  msgid "Your license is valid until"
1249
  msgstr "Din licens är giltig till"
1250
 
1251
+ #: ../cerber-load.php:4425
1252
  msgid "Activity details"
1253
  msgstr "Aktivitetsdetaljer"
1254
 
1255
+ #: ../admin/cerber-settings.php:576
1256
  msgid "Click to send now"
1257
  msgstr "Klicka för att skicka nu"
1258
 
1259
+ #: ../cerber-load.php:808
1260
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1261
  msgstr ">>> Översättare av WP Cerber? För att få PRO-licens gratis, uppge dina kontaktuppgifter här: https://wpcerber.com/contact/"
1262
 
1263
+ #: ../dashboard.php:583
1264
  msgid "Email has been sent to"
1265
  msgstr "E-post har skickats till"
1266
 
1267
+ #: ../dashboard.php:586
1268
  msgid "Unable to send email to"
1269
  msgstr "Det går inte att skicka e-post till"
1270
 
1271
+ #: ../dashboard.php:3297
1272
  msgid "Not permitted for one country"
1273
  msgid_plural "Not permitted for %d countries"
1274
  msgstr[0] "Inte tillåtet för ett land"
1275
  msgstr[1] "Inte tillåtet för %d länder"
1276
 
1277
+ #: ../dashboard.php:3393
1278
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1279
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1280
  msgstr "Valda länder är tillåtna att %s, andra länder är inte tillåtna att"
1281
 
1282
+ #: ../dashboard.php:3396
1283
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1284
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1285
  msgstr "Valda länder är inte tillåtna att %s, andra länder har tillåtelse att"
1286
 
1287
+ #: ../cerber-load.php:4413
1288
  msgid "Weekly Report"
1289
  msgstr "Veckorapport"
1290
 
1291
+ #: ../settings.php:199
1292
  msgid "Use 404 template from the active theme"
1293
  msgstr "Använd 404 mall från det aktiva temat"
1294
 
1295
+ #: ../settings.php:200
1296
  msgid "Display simple 404 page"
1297
  msgstr "Visa enkel 404 sida"
1298
 
1299
+ #: ../settings.php:1077
1300
  msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
1301
  msgstr "Ange en del av frågesträngen eller sökvägen för att exkludera en begäran från inspektion av sökmotor. Ett objekt per rad."
1302
 
1303
+ #: ../settings.php:692
1304
  msgid "Enable reporting"
1305
  msgstr "Aktivera rapportering"
1306
 
1307
+ #: ../cerber-load.php:4343
1308
  msgid "Your last sign-in was %s from %s"
1309
  msgstr "Din senaste inloggning var %s från %s"
1310
 
1311
+ #: ../dashboard.php:322
1312
  msgid "Optional comment for this entry"
1313
  msgstr "Valfri kommentar för detta inlägg"
1314
 
1315
+ #: ../dashboard.php:344
1316
  msgid "You cannot add your IP address or network"
1317
  msgstr "Du kan inte lägga till din IP-adress eller ditt nätverk"
1318
 
1319
+ #: ../settings.php:568 ../settings.php:576
1320
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1321
  msgstr "För specifiera ett REGEX-mönster, omslut ett mönster i två snedstreck."
1322
 
1324
  msgid "Cerber Traffic Inspector"
1325
  msgstr "Cerber trafikkontroll"
1326
 
1327
+ #: ../dashboard.php:56 ../dashboard.php:1766 ../dashboard.php:4674
1328
  msgid "Traffic Inspector"
1329
  msgstr "Trafikinspektion"
1330
 
1331
+ #: ../dashboard.php:1805 ../cerber-users.php:1164
1332
  msgid "Traffic"
1333
  msgstr "Trafik"
1334
 
1335
+ #: ../dashboard.php:4019
1336
  msgid "Request"
1337
  msgstr "Förfrågan"
1338
 
1339
+ #: ../dashboard.php:4021 ../cerber-users.php:976
1340
  msgid "Host Info"
1341
  msgstr "Server information"
1342
 
1343
+ #: ../dashboard.php:4022
1344
  msgid "User Agent"
1345
  msgstr "Användaragent"
1346
 
1347
+ #: ../dashboard.php:4047
1348
  msgid "All requests"
1349
  msgstr "Alla förfrågningar"
1350
 
1351
+ #: ../dashboard.php:980 ../dashboard.php:4052
1352
  msgid "Not logged in visitors"
1353
  msgstr "Inte inloggade besökare"
1354
 
1355
+ #: ../dashboard.php:4055
1356
  msgid "Form submissions"
1357
  msgstr "Formulärinlämningar"
1358
 
1359
+ #: ../dashboard.php:4057
1360
  msgid "Page Not Found"
1361
  msgstr "Sidan hittades inte"
1362
 
1363
+ #: ../dashboard.php:4069
1364
  msgid "Longer than"
1365
  msgstr "Längre än"
1366
 
1367
+ #: ../dashboard.php:4092
1368
  msgid "Refresh"
1369
  msgstr "Uppdatera"
1370
 
1371
+ #: ../common.php:210
1372
  msgid "Check for requests"
1373
  msgstr "Kontrollera efter förfrågningar"
1374
 
1375
+ #: ../common.php:1855
1376
  msgid "Not specified"
1377
  msgstr "Inte specificerad"
1378
 
1379
+ #: ../settings.php:767
1380
  msgid "Logging mode"
1381
  msgstr "Loggningsläge"
1382
 
1383
+ #: ../settings.php:770
1384
  msgid "Logging disabled"
1385
  msgstr "Loggning inaktiverad"
1386
 
1387
+ #: ../settings.php:772
1388
  msgid "Smart"
1389
  msgstr "Smart"
1390
 
1391
+ #: ../settings.php:773
1392
  msgid "All traffic"
1393
  msgstr "All trafik"
1394
 
1395
+ #: ../settings.php:799
 
 
 
 
1396
  msgid "Mask these form fields"
1397
  msgstr "Maskera dessa formulärfält"
1398
 
1399
+ #: ../settings.php:824
1400
  msgid "milliseconds"
1401
  msgstr "millisekunder"
1402
 
1403
+ #: ../settings.php:718
1404
  msgid "Enable traffic inspection"
1405
  msgstr "Aktivera trafikinspektion"
1406
 
1407
+ #: ../settings.php:795
1408
  msgid "Save request fields"
1409
  msgstr "Spara förfrågningsfält"
1410
 
1411
+ #: ../settings.php:823
1412
  msgid "Page generation time threshold"
1413
  msgstr "Tidsgräns för sidgenerering"
1414
 
1415
+ #: ../dashboard.php:4039
1416
  msgid "No requests have been logged."
1417
  msgstr "Inga förfrågningar har loggats."
1418
 
1419
+ #: ../dashboard.php:1765
1420
  msgid "enabled"
1421
  msgstr "aktiverad"
1422
 
1423
+ #: ../dashboard.php:1770
1424
  msgid "no connection"
1425
  msgstr "Ingen anslutning"
1426
 
1427
+ #: ../dashboard.php:1555
1428
  msgid "Last seen"
1429
  msgstr "Senast sedd"
1430
 
1431
+ #: ../cerber-load.php:4049
 
 
 
 
1432
  msgid "We're sorry, you are not allowed to proceed"
1433
  msgstr "Vi är ledsna, du saknar behörighet att fortsätta"
1434
 
1435
+ #: ../settings.php:731
1436
  msgid "Request whitelist"
1437
  msgstr "Begär vitlista"
1438
 
1439
+ #: ../settings.php:735
1440
  msgid "Enter a request URI to exclude the request from inspection. One item per line."
1441
  msgstr "Ange en URI-begäran för att utesluta begäran från inspektion. Ett objekt per rad."
1442
 
1443
+ #: ../settings.php:806
1444
  msgid "Save request headers"
1445
  msgstr ""
1446
 
1447
+ #: ../settings.php:811
1448
  msgid "Save $_SERVER"
1449
  msgstr "Spara $_SERVER"
1450
 
1451
+ #: ../settings.php:815
1452
  msgid "Save request cookies"
1453
  msgstr ""
1454
 
1455
+ #: ../settings.php:358
1456
  msgid "Protect admin scripts"
1457
  msgstr "Skydda adminskript"
1458
 
1459
+ #: ../settings.php:359
1460
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1461
  msgstr "Blockera obehörig åtkomst till load-scripts.php och load-styles.php"
1462
 
1463
+ #: ../common.php:2780
1464
  msgid "Unable to create the directory"
1465
  msgstr "Det går inte att skapa katalogen"
1466
 
1467
+ #: ../common.php:2785
1468
  msgid "Destination folder access denied"
1469
  msgstr "Åtkomst till destinationsmapp nekad"
1470
 
1471
+ #: ../common.php:2788
1472
  msgid "File not found"
1473
  msgstr "Filen hittades inte"
1474
 
1475
+ #: ../common.php:2791
1476
  msgid "Unable to copy the file"
1477
  msgstr "Det går inte att kopiera filen"
1478
 
1479
+ #: ../common.php:2797
1480
  msgid "Unable to delete the file"
1481
  msgstr "Det går inte att ta bort filen."
1482
 
1483
+ #: ../settings.php:136
1484
  msgid "Plugin initialization"
1485
  msgstr "Initialisering av tillägg"
1486
 
1487
+ #: ../settings.php:139
1488
  msgid "Load security engine"
1489
  msgstr "Ladda säkerhetsmotor"
1490
 
1491
+ #: ../settings.php:142
1492
  msgid "Legacy mode"
1493
  msgstr "Bakåtkompatibelt läge"
1494
 
1495
+ #: ../settings.php:143
1496
  msgid "Standard mode"
1497
  msgstr "Standardläge"
1498
 
1499
+ #: ../admin/cerber-settings.php:654
1500
  msgid "Plugin initialization mode has not been changed"
1501
  msgstr "Tilläggets initialiseringsläge har inte ändrats"
1502
 
1505
  msgid "This is a standard boot module for WP Cerber Security & Antispam plugin. It was installed when you set the plugin initialization mode to Standard. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1506
  msgstr "Detta är en standardstartmodul för tillägget WP Cerber Security & Antispam. Det installerades när du ställde in initieringsläget för tillägget till standard. Läs mer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1507
 
1508
+ #: ../common.php:1365
1509
  msgid "File upload denied"
1510
  msgstr "Filuppladdning nekad"
1511
 
1512
+ #: ../settings.php:735 ../settings.php:785
1513
  msgid "To specify a REGEX pattern, enclose a whole line in two braces."
1514
  msgstr "För att ange ett REGEX-mönster, omslut en hel rad i två klammerparenteser."
1515
 
1516
+ #: ../settings.php:129
1517
  msgid "Be careful about enabling these options."
1518
  msgstr "Var försiktig med att aktivera dessa alternativ."
1519
 
1520
+ #: ../settings.php:129
1521
  msgid "If you forget your Custom login URL, you will be unable to log in."
1522
  msgstr "Om du glömmer din anpassade URL för inloggning kommer du inte att kunna logga in."
1523
 
1524
+ #: ../dashboard.php:67 ../dashboard.php:4735
1525
  msgid "Site Integrity"
1526
  msgstr "Webbplatsintegritet"
1527
 
1528
+ #: ../dashboard.php:1790 ../dashboard.php:1792 ../cerber-users.php:20 ../cerber-
1529
+ #: users.php:446 ../settings.php:721 ../settings.php:749 ../settings.php:873 ..
1530
+ #: /settings.php:882 ../settings.php:1225 ../cerber-scanner.php:1493
1531
  msgid "Disabled"
1532
  msgstr "Inaktiverad"
1533
 
1534
+ #: ../dashboard.php:1791 ../cerber-scanner.php:938
1535
  msgid "Quick Scan"
1536
  msgstr "Snabb skanning"
1537
 
1538
+ #: ../dashboard.php:1793 ../cerber-scanner.php:938
1539
  msgid "Full Scan"
1540
  msgstr "Fullständig skanning"
1541
 
1542
+ #: ../common.php:1398
 
 
 
 
 
1543
  msgid "Denied"
1544
  msgstr "Nekad"
1545
 
1546
+ #: ../settings.php:165 ../settings.php:527 ../settings.php:727
1547
  msgid "Use White IP Access List"
1548
  msgstr "Använd vit IP-åtkomstlista"
1549
 
1550
+ #: ../settings.php:186
1551
  msgid "Disable dashboard redirection"
1552
  msgstr "Inaktivera omdirigering av adminpanel"
1553
 
1554
+ #: ../settings.php:187
1555
  msgid "Disable automatic redirection to the login page when /wp-admin/ is requested by an unauthorized request"
1556
  msgstr "Inaktivera automatisk omdirigering till inloggningssidan när /wp-admin/ begärs av en obehörig förfrågan"
1557
 
1558
+ #: ../settings.php:844
1559
  msgid "Scanner settings"
1560
  msgstr "Skanningsinställningar"
1561
 
1562
+ #: ../settings.php:849
1563
  msgid "Custom signatures"
1564
  msgstr "Anpassade signaturer"
1565
 
1566
+ #: ../settings.php:853
1567
  msgid "Specify custom PHP code signatures. One item per line. To specify a REGEX pattern, enclose a whole line in two braces."
1568
  msgstr "Specifiera anpassade PHP-kodsignaturer. Ett objekt per rad. För att ange ett REGEX-mönster, omslut en hel rad i två klammerparenteser."
1569
 
1570
+ #: ../settings.php:856
1571
  msgid "Unwanted file extensions"
1572
  msgstr "Oönskade filtillägg"
1573
 
1574
+ #: ../settings.php:860
1575
  msgid "Specify file extensions to search for. Full scan only. Use comma to separate items."
1576
  msgstr "Specifiera filtillägg att söka efter. Endast fullständig skanning. Använd komma för att separera objekt."
1577
 
1578
+ #: ../settings.php:863
1579
  msgid "Directories to exclude"
1580
  msgstr "Kataloger att exkludera"
1581
 
1582
+ #: ../settings.php:892
1583
  msgid "Scan temporary directory"
1584
  msgstr "Skanna tillfällig katalog"
1585
 
1586
+ #: ../settings.php:896
1587
  msgid "Scan session directory"
1588
  msgstr "Skanna sessionskatalog"
1589
 
1590
+ #: ../settings.php:905
1591
  msgid "Delete quarantined files after"
1592
  msgstr "Ta bort filer i karantän efter"
1593
 
1594
+ #: ../settings.php:919
1595
  msgid "Launch Quick Scan"
1596
  msgstr "Starta snabbskanning"
1597
 
1598
+ #: ../cerber-scanner.php:1494
1599
  msgid "Every hour"
1600
  msgstr "Varje timme"
1601
 
1602
+ #: ../cerber-scanner.php:1495
1603
  msgid "Every 3 hours"
1604
  msgstr "Var 3:e timme"
1605
 
1606
+ #: ../cerber-scanner.php:1496
1607
  msgid "Every 6 hours"
1608
  msgstr "Var 6:e timme"
1609
 
1610
+ #: ../settings.php:924
1611
  msgid "Launch Full Scan"
1612
  msgstr "Starta fullständig skanning"
1613
 
1614
+ #: ../settings.php:939 ../settings.php:985
1615
  msgid "Low severity"
1616
  msgstr "Låg allvarlighet"
1617
 
1618
+ #: ../settings.php:940 ../settings.php:986
1619
  msgid "Medium severity"
1620
  msgstr "Medel allvarlighet"
1621
 
1622
+ #: ../settings.php:941 ../settings.php:987
1623
  msgid "High severity"
1624
  msgstr "Hög allvarlighet"
1625
 
1626
+ #: ../settings.php:936
1627
  msgid "Report an issue if any of the following is true"
1628
  msgstr "Rapportera ett problem om något av följande är sant"
1629
 
1630
+ #: ../settings.php:945
1631
  msgid "Send email report"
1632
  msgstr "Skicka e-postrapport"
1633
 
1634
+ #: ../settings.php:948
1635
  msgid "After every scan"
1636
  msgstr "Efter varje skanning"
1637
 
1638
+ #: ../settings.php:949
1639
  msgid "If any changes in scan results occurred"
1640
  msgstr "Om några ändringar i skanningsresultat uppstod"
1641
 
1642
+ #: ../settings.php:954
1643
  msgid "Include file sizes"
1644
  msgstr "Inkludera filstorlekar"
1645
 
1646
+ #: ../settings.php:958
1647
  msgid "Include scan errors"
1648
  msgstr "Inkludera skanningsfel"
1649
 
1650
+ #: ../dashboard.php:4737
1651
  msgid "Security Scanner"
1652
  msgstr "Säkerhetsskanning"
1653
 
1654
+ #: ../dashboard.php:4739
1655
  msgid "Scheduling"
1656
  msgstr "Schemaläggning"
1657
 
1658
+ #: ../admin/cerber-admin.php:164
1659
  msgid "Currently a scheduled scan in progress. Please wait until it is finished."
1660
  msgstr "För närvarande pågår en schemalagd skanning. Vänta tills det är klart."
1661
 
1662
+ #: ../admin/cerber-admin.php:168
1663
  msgid "Previous scan started %s has not been completed. Continue scanning?"
1664
  msgstr "Föregående skanning startad %s har inte slutförts. Fortsätt skanning?"
1665
 
1666
+ #: ../admin/cerber-admin.php:177
1667
  msgid "It seems this website has never been scanned. To start scanning click the button below."
1668
  msgstr "Det verkar som om denna webbplats aldrig har skannats. För att börja skanna, klicka på knappen nedan."
1669
 
1670
+ #: ../admin/cerber-admin.php:180
1671
  msgid "Start Quick Scan"
1672
  msgstr "Starta snabb skanning"
1673
 
1674
+ #: ../admin/cerber-admin.php:181
1675
  msgid "Start Full Scan"
1676
  msgstr "Starta fullständig skanning"
1677
 
1678
+ #: ../admin/cerber-admin.php:182
1679
  msgid "Stop Scanning"
1680
  msgstr "Sluta skanna"
1681
 
1682
+ #: ../admin/cerber-admin.php:183
1683
  msgid "Continue Scanning"
1684
  msgstr "Fortsätter skanning"
1685
 
1686
+ #: ../admin/cerber-admin.php:219
1687
  msgid "Delete"
1688
  msgstr "Ta bort"
1689
 
1690
+ #: ../cerber-scanner.php:1439
1691
  msgid "Verified"
1692
  msgstr "Verifierad"
1693
 
1694
+ #: ../cerber-scanner.php:1446
1695
  msgid "Integrity data not found"
1696
  msgstr "Integritetsdata hittades inte"
1697
 
1698
+ #: ../cerber-scanner.php:1447
1699
  msgid "Unable to check the integrity of the plugin due to a network error"
1700
  msgstr "Kan inte kontrollera tilläggets integritet på grund av ett nätverksfel"
1701
 
1702
+ #: ../cerber-scanner.php:1448
1703
  msgid "Unable to check the integrity of WordPress files due to a network error"
1704
  msgstr "Kan inte kontrollera integriteten för WordPress-filer på grund av ett nätverksfel"
1705
 
1706
+ #: ../cerber-scanner.php:1449
1707
  msgid "Unable to check the integrity of the theme due to a network error"
1708
  msgstr "Kan inte kontrollera integriteten för tema på grund av ett nätverksfel"
1709
 
1710
+ #: ../cerber-scanner.php:1452
1711
  msgid "Local file doesn't exist"
1712
  msgstr "Lokal fil finns inte"
1713
 
1714
+ #: ../cerber-scanner.php:1454
1715
  msgid "Unable to process file"
1716
  msgstr "Kan inte bearbeta fil"
1717
 
1718
+ #: ../cerber-scanner.php:1455 ../cerber-scanner.php:4645
1719
  msgid "Unable to open file"
1720
  msgstr "Kan inte öppna fil"
1721
 
1722
+ #: ../admin/cerber-admin.php:79 ../cerber-scanner.php:1457
1723
  msgid "Checksum mismatch"
1724
  msgstr "Kontrollsumma matchar inte"
1725
 
1726
+ #: ../cerber-scanner.php:1460
1727
  msgid "Suspicious code found"
1728
  msgstr "Misstänkt kod hittad"
1729
 
1730
+ #: ../cerber-scanner.php:1462
1731
  msgid "Unattended suspicious file"
1732
  msgstr "Obevakad misstänkt fil"
1733
 
1734
+ #: ../cerber-scanner.php:1463
1735
  msgid "Executable code found"
1736
  msgstr "Körbar kod hittad"
1737
 
1738
+ #: ../cerber-scanner.php:1467
1739
  msgid "Unwanted file extension"
1740
  msgstr "Oönskade filtillägg"
1741
 
1742
+ #: ../cerber-scanner.php:1469
1743
  msgid "Content has been modified"
1744
  msgstr "Innehållet har blivit ändrat"
1745
 
1746
+ #: ../cerber-scanner.php:1470
1747
  msgid "New file"
1748
  msgstr "Ny fil"
1749
 
1750
+ #: ../cerber-scanner.php:2526
1751
  msgid "Custom signature found"
1752
  msgstr "Anpassad signatur hittad"
1753
 
1754
+ #: ../cerber-scanner.php:3758
1755
  msgid "Scanning folders for files"
1756
  msgstr "Skanna mappar efter filer"
1757
 
1758
+ #: ../cerber-scanner.php:3762
1759
  msgid "Parsing the list of files"
1760
  msgstr "Analysera listan över filer"
1761
 
1762
+ #: ../cerber-scanner.php:3763
1763
  msgid "Checking for new and modified files"
1764
  msgstr "Söker efter nya och ändrade filer"
1765
 
1766
+ #: ../cerber-scanner.php:3764
1767
  msgid "Verifying the integrity of WordPress"
1768
  msgstr "Verifierar integriteten av WordPress"
1769
 
1770
+ #: ../cerber-scanner.php:3766
1771
  msgid "Verifying the integrity of the plugins"
1772
  msgstr "Verifierar integriteten av tilläggen"
1773
 
1774
+ #: ../cerber-scanner.php:3768
1775
  msgid "Verifying the integrity of the themes"
1776
  msgstr "Verifierar integriteten av teman"
1777
 
1778
+ #: ../cerber-scanner.php:3769
1779
  msgid "Searching for malicious code"
1780
  msgstr "Söker efter skadlig kod"
1781
 
1782
+ #: ../cerber-scanner.php:3770
1783
  msgid "Finalizing the scan"
1784
  msgstr "Slutför skanningen"
1785
 
1786
+ #: ../admin/cerber-admin.php:96
1787
  msgid "Files to scan"
1788
  msgstr "Filer att skanna"
1789
 
1790
+ #: ../admin/cerber-admin.php:103
1791
  msgid "Critical issues"
1792
  msgstr "Kritiska problem"
1793
 
1794
+ #: ../admin/cerber-admin.php:103 ../cerber-scanner.php:4818
1795
  msgid "Issues total"
1796
  msgstr "Problem totalt"
1797
 
1798
+ #: ../admin/cerber-admin.php:344
1799
  msgid "File access error. Possibly scan results are outdated. Please run Quick or Full Scan."
1800
  msgstr "Filåtkomstfel. Möjliga skanningsresultat är föråldrade. Kör snabb eller full skanning."
1801
 
1802
+ #: ../cerber-scanner.php:4941
1803
  msgid "To view full report visit"
1804
  msgstr "För att visa fullständigt rapport besök"
1805
 
1806
+ #: ../cerber-load.php:4285
1807
  msgid "Scanner Report"
1808
  msgstr "Skanningsrapport"
1809
 
1810
+ #: ../settings.php:870
1811
  msgid "Monitor new files"
1812
  msgstr "Övervaka nya filer"
1813
 
1814
+ #: ../settings.php:879
1815
  msgid "Monitor modified files"
1816
  msgstr "Övervaka ändrade filer"
1817
 
1818
+ #: ../settings.php:950
1819
  msgid "If new issues found"
1820
  msgstr "Om nya problem hittas"
1821
 
1822
+ #: ../admin/cerber-settings.php:955
1823
  msgid "The schedule has been updated"
1824
  msgstr "Schemat har uppdaterats"
1825
 
1826
+ #: ../cerber-scanner.php:1466 ../cerber-scanner.php:2706
1827
  msgid "Suspicious directives found"
1828
  msgstr "Suspekta direktiv hittades"
1829
 
1830
+ #: ../cerber-scanner.php:2704
1831
  msgid "Suspicious code instruction found"
1832
  msgstr "Misstänkt kodinstruktion hittades"
1833
 
1834
+ #: ../cerber-scanner.php:2705
1835
  msgid "Suspicious code signatures found"
1836
  msgstr "Misstänkta kodsignaturer hittades"
1837
 
1838
+ #: ../cerber-scanner.php:2708
1839
  msgid "To solve this issue you have to reinstall %s or update it to the latest version."
1840
  msgstr "För att lösa problemet måste du installera om %s eller uppdatera den till den senaste versionen."
1841
 
1842
+ #: ../cerber-scanner.php:2709
1843
  msgid "Please upload a reference ZIP archive"
1844
  msgstr "Ladda upp ett referens-ZIP-arkiv"
1845
 
1846
+ #: ../cerber-scanner.php:2710
1847
  msgid "Resolve issue"
1848
  msgstr "Lös problemet"
1849
 
1850
+ #: ../admin/cerber-admin.php:243
1851
  msgid "We have not found any integrity data to verify"
1852
  msgstr "Vi har inte hittat några integritetsdata att verifiera"
1853
 
1854
+ #: ../admin/cerber-admin.php:245
1855
  msgid "You have to upload a ZIP archive from which you've installed it. This enables the security scanner to verify the integrity of the code and detect malware."
1856
  msgstr "Du måste ladda upp ett ZIP-arkiv från där du har installerat det. Detta gör det möjligt för säkerhetsskannern att verifiera kodens integritet och upptäcka skadlig kod."
1857
 
1858
+ #: ../cerber-scanner.php:4774
1859
  msgid "Full Scan Report"
1860
  msgstr "Fullständig skanningsrapport"
1861
 
1862
+ #: ../cerber-scanner.php:4774
1863
  msgid "Quick Scan Report"
1864
  msgstr "Snabbskanningsrapport"
1865
 
1866
+ #: ../cerber-scanner.php:4787
1867
  msgid "Files scanned"
1868
  msgstr "Filerna skannas"
1869
 
1870
+ #: ../dashboard.php:304 ../dashboard.php:1383 ../dashboard.php:1435 ../dashboard.
1871
+ #: php:1575
1872
  msgid "Check for activities"
1873
  msgstr "Kontrollera efter aktiviteter"
1874
 
1875
+ #: ../dashboard.php:1535
1876
  msgid "Activated"
1877
  msgstr "Aktiverad"
1878
 
1879
+ #: ../common.php:1375
1880
  msgid "Malicious request denied"
1881
  msgstr "Skadlig begäran nekad"
1882
 
1883
+ #: ../common.php:1378
1884
  msgid "User activated"
1885
  msgstr ""
1886
 
1887
+ #: ../common.php:1400
1888
  msgid "Suspicious number of fields"
1889
  msgstr "Misstänkt antal fält"
1890
 
1891
+ #: ../common.php:1401
1892
  msgid "Suspicious number of nested values"
1893
  msgstr ""
1894
 
1895
+ #: ../common.php:1402 ../common.php:1473
1896
  msgid "Malicious code detected"
1897
  msgstr "Skadlig kod upptäckt"
1898
 
1899
+ #: ../common.php:1474
1900
  msgid "Attempt to upload a file with malicious code"
1901
  msgstr "Försök att ladda upp en fil med skadlig kod"
1902
 
1903
+ #: ../common.php:1729
1904
  msgid "Bytes"
1905
  msgstr "Bytes"
1906
 
1907
+ #: ../cerber-scanner.php:1445
1908
  msgid "Vulnerability found"
1909
  msgstr "Sårbarhet hittad"
1910
 
1911
+ #: ../cerber-scanner.php:1450
1912
  msgid "Unable to check the integrity due to a DB error"
1913
  msgstr "Det går inte att kontrollera integriteten på grund av ett DB-fel"
1914
 
1915
+ #: ../cerber-scanner.php:3759
1916
  msgid "Scanning the upload folder for files"
1917
  msgstr "Skannar uppladdningsmappen efter filer"
1918
 
1919
+ #: ../cerber-scanner.php:3760
1920
  msgid "Scanning the temp folder for files"
1921
  msgstr "Skannar temp-mappen efter filer"
1922
 
1923
+ #: ../cerber-scanner.php:3761
1924
  msgid "Scanning the session folder for files"
1925
  msgstr "Skannar sessionsmappen efter filer"
1926
 
1927
+ #: ../settings.php:914
1928
  msgid "Automated recurring scan schedule"
1929
  msgstr "Automatiserat återkommande scanningsschema"
1930
 
1931
+ #: ../settings.php:931
1932
  msgid "Scan results reporting"
1933
  msgstr "Resultatrapportering av skanning"
1934
 
1935
+ #: ../dashboard.php:975 ../dashboard.php:4049
1936
  msgid "Suspicious activity"
1937
  msgstr "Misstänkt aktivitet"
1938
 
1939
+ #: ../dashboard.php:4050
1940
  msgid "Errors"
1941
  msgstr "Fel"
1942
 
1949
  msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
1950
  msgstr "Du har överskridit antalet tillåtna inloggningsförsök. Försök igen om %d minuter."
1951
 
1952
+ #: ../common.php:1622
1953
  msgctxt "preposition of a period of time like: in 6 hours"
1954
  msgid "in %s"
1955
  msgstr "om %s"
1956
 
1957
+ #: ../admin/cerber-settings.php:557
1958
  msgctxt "preposition of time like: at 11:00"
1959
  msgid "at"
1960
  msgstr "kl."
1961
 
1962
+ #: ../dashboard.php:4742
1963
  msgid "Quarantine"
1964
  msgstr "Karantän"
1965
 
1966
+ #: ../admin/cerber-admin.php:43
1967
  msgid "Started"
1968
  msgstr "Startade"
1969
 
1970
+ #: ../admin/cerber-admin.php:47
1971
  msgid "Finished"
1972
  msgstr "Slutförda"
1973
 
1974
+ #: ../admin/cerber-admin.php:55
1975
  msgid "Performance"
1976
  msgstr "Prestanda"
1977
 
1978
+ #: ../admin/cerber-admin.php:67 ../nexus/cerber-slave-list.php:339
1979
  msgid "Vulnerabilities"
1980
  msgstr "Sårbarheter"
1981
 
1982
+ #: ../admin/cerber-admin.php:71
1983
  msgid "New files"
1984
  msgstr "Nya filer"
1985
 
1986
+ #: ../admin/cerber-admin.php:75
1987
  msgid "Changed files"
1988
  msgstr "Ändrade filer"
1989
 
1990
+ #: ../admin/cerber-admin.php:83
1991
  msgid "Unwanted extensions"
1992
  msgstr "Oönskade utökningar"
1993
 
1994
+ #: ../admin/cerber-admin.php:87
1995
  msgid "Unattended files"
1996
  msgstr "Obevakade filer"
1997
 
1998
+ #: ../admin/cerber-admin.php:96 ../admin/cerber-admin.php:752
1999
  msgid "Scanned"
2000
  msgstr "Skannade"
2001
 
2002
+ #: ../admin/cerber-admin.php:696
2003
  msgid "There are no files in the quarantine at the moment."
2004
  msgstr "Det finns inga filer i karantän för tillfället."
2005
 
2006
+ #: ../admin/cerber-admin.php:734
2007
  msgid "Restore"
2008
  msgstr "Återställ"
2009
 
2010
+ #: ../admin/cerber-admin.php:731
2011
  msgid "Delete permanently"
2012
  msgstr "Ta bort permanent"
2013
 
2014
+ #: ../admin/cerber-admin.php:754
 
 
 
 
2015
  msgid "Automatic deletion"
2016
  msgstr "Automatisk borttagning"
2017
 
2018
+ #: ../admin/cerber-admin.php:755 ../admin/cerber-admin.php:910 ../admin/cerber-
2019
+ #: admin.php:1318
2020
  msgid "Size"
2021
  msgstr "Storlek"
2022
 
2023
+ #: ../admin/cerber-admin.php:756 ../admin/cerber-admin.php:911
2024
  msgid "File"
2025
  msgstr "Fil"
2026
 
2027
+ #: ../admin/cerber-admin.php:829
2028
  msgid "The file has been deleted permanently."
2029
  msgstr "Filen har tagits bort permanent."
2030
 
2031
+ #: ../admin/cerber-admin.php:844
2032
  msgid "The file has been restored to its original location."
2033
  msgstr "Filen har återställts till sin ursprungliga plats."
2034
 
2035
+ #: ../dashboard.php:1806
2036
  msgid "Integrity"
2037
  msgstr "Integritet"
2038
 
2039
+ #: ../common.php:1364
2040
  msgid "Attempt to upload malicious file denied"
2041
  msgstr "Försök att ladda upp skadlig fil nekad"
2042
 
2043
+ #: ../cerber-load.php:7176
2044
  msgid "Awesome!"
2045
  msgstr "Grymt bra!"
2046
 
2047
+ #: ../settings.php:973
2048
  msgid "Automatic cleanup of malware and suspicious files"
2049
  msgstr "Automatisk upprensing av skadlig kod och misstänkta filer"
2050
 
2051
+ #: ../settings.php:982
2052
  msgid "Files in the uploads folder"
2053
  msgstr "Filer i uppladdningsmappen"
2054
 
2055
+ #: ../settings.php:991
2056
  msgid "Files with unwanted extensions"
2057
  msgstr "Filer med oönskade tillägg"
2058
 
2059
+ #: ../settings.php:1010
2060
  msgid "Exclusions"
2061
  msgstr "Uteslutningar"
2062
 
2063
+ #: ../settings.php:1014
2064
  msgid "Files in the temporary directory"
2065
  msgstr "Filer i den temporära katalogen"
2066
 
2067
+ #: ../settings.php:1018
2068
  msgid "Files in the sessions directory"
2069
  msgstr "Filer i sessions-katalogen"
2070
 
2071
+ #: ../settings.php:1022
2072
  msgid "Files in these directories"
2073
  msgstr "Filer i dessa kataloger"
2074
 
2075
+ #: ../settings.php:1026
2076
  msgid "Use absolute paths. One item per line."
2077
  msgstr "Använd absoluta sökvägar. Ett objekt per rad."
2078
 
2079
+ #: ../settings.php:1029
2080
  msgid "Files with these extensions"
2081
  msgstr "Filer med dessa tillägg"
2082
 
2083
+ #: ../settings.php:1033
2084
  msgid "Use comma to separate items."
2085
  msgstr "Use comma to separate items."
2086
 
2087
+ #: ../dashboard.php:4740
2088
  msgid "Cleaning up"
2089
  msgstr "Uppstädning"
2090
 
2091
+ #: ../cerber-scanner.php:1461
2092
  msgid "Malicious code found"
2093
  msgstr "Skadlig kod hittad"
2094
 
2095
+ #: ../cerber-scanner.php:2701
2096
  msgid "This file contains executable code and may contain obfuscated malware. If this file is a part of a theme or a plugin, it must be located in the theme or the plugin folder. No exception, no excuses."
2097
  msgstr "Denna fil innehåller körbar kod och kan innehålla förvrängd skadlig kod. Om denna fil är en del av ett tema eller ett tillägg måste det vara beläget i mappen för temat eller tillägget. Inget undantag, inga ursäkter."
2098
 
2099
+ #: ../cerber-scanner.php:2702
2100
  msgid "The scanner recognizes this file as \"ownerless\" or \"not bundled\" because it does not belong to any known part of the website and should not be here."
2101
  msgstr "Skannern känner igen denna fil som ”ägarlös” eller ”inte bunden” eftersom den inte hör till någon känd del av webbplatsen och borde inte vara här."
2102
 
2103
+ #: ../cerber-scanner.php:2703
2104
  msgid "It may remain after upgrading to a newer version of %s. It also may be a piece of obfuscated malware. In a rare case it might be a part of a custom-made (bespoke) plugin or theme."
2105
  msgstr ""
2106
 
2107
+ #: ../cerber-scanner.php:2707
2108
  msgid "The contents of the file have been changed and do not match what exists in the official WordPress repository or a reference file you have uploaded earlier. The file may have been altered by malware, infected by a virus or has been tampered with."
2109
  msgstr "Innehållet i filen har ändrats och matchar inte det som finns i det officiella WordPress-arkivet eller en referensfil som du har laddat upp tidigare. Filen kan ha förändrats av skadlig kod, infekterad av virus eller har manipulerats."
2110
 
2111
+ #: ../cerber-scanner.php:4872
2112
  msgid "Deleted"
2113
  msgstr "Borttaget"
2114
 
2115
+ #: ../cerber-scanner.php:4925
2116
  msgid "Automatically moved to quarantine"
2117
  msgstr "Automatiskt flyttad till karantän"
2118
 
2119
+ #: ../common.php:1403
2120
  msgid "Suspicious SQL code detected"
2121
  msgstr "Misstänkt SQL-kod upptäckt"
2122
 
2123
+ #: ../dashboard.php:1787
2124
  msgctxt "Example: Last malware scan: 23 Jan 2018"
2125
  msgid "Last malware scan"
2126
  msgstr "Senaste skanningen efter skadlig kod"
2127
 
2128
+ #: ../dashboard.php:4676
2129
  msgid "Live Traffic"
2130
  msgstr "Live-trafik"
2131
 
2132
+ #: ../settings.php:333
2133
  msgid "Use English for admin interface"
2134
  msgstr "Använd engelska för administratörsgränssnitt"
2135
 
2136
+ #: ../settings.php:363
 
 
 
 
2137
  msgid "Disable PHP in uploads"
2138
  msgstr "Inaktivera PHP i uppladdningar"
2139
 
2140
+ #: ../settings.php:368
2141
  msgid "Disable PHP error displaying"
2142
  msgstr "Inaktivera visning av PHP-fel"
2143
 
2144
+ #: ../dashboard.php:4741
2145
  msgid "Ignore List"
2146
  msgstr "Ignoreringslista"
2147
 
2148
+ #: ../admin/cerber-admin.php:222
2149
  msgid "Ignore"
2150
  msgstr "Ignorera"
2151
 
2152
+ #: ../admin/cerber-admin.php:868
2153
  msgid "Apply"
2154
  msgstr "Tillämpa"
2155
 
2156
+ #: ../admin/cerber-admin.php:908
2157
  msgid "Added"
2158
  msgstr "Tillagd"
2159
 
2160
+ #: ../admin/cerber-admin.php:869 ../admin/cerber-admin.php:896
2161
  msgid "Remove from the list"
2162
  msgstr "Ta bort från listan"
2163
 
2164
+ #: ../admin/cerber-admin.php:870
2165
  msgid "User Insights"
2166
  msgstr "Användarinsikt"
2167
 
2168
+ #: ../admin/cerber-admin.php:871
2169
  msgid "Traffic Insights"
2170
  msgstr "Trafikinsikt"
2171
 
2172
+ #: ../admin/cerber-admin.php:872
2173
  msgid "Activity Insights"
2174
  msgstr "Aktivitetsinsikt"
2175
 
2176
+ #: ../dashboard.php:2804
2177
  msgid "Are you sure you want to delete selected files?"
2178
  msgstr "Är du säker på att du vill ta bort valda filer?"
2179
 
2180
+ #: ../dashboard.php:2805
2181
  msgid "These files have been moved to the quarantine"
2182
  msgstr "Dessa filer har flyttats till karantänen"
2183
 
2184
+ #: ../dashboard.php:2808
2185
  msgid "Do you want to add selected files to the ignore list?"
2186
  msgstr "Vill du lägga till valda filer på ignoreringslistan?"
2187
 
2188
+ #: ../dashboard.php:2809
2189
  msgid "These files have been added to the ignore list"
2190
  msgstr "Dessa filer har lagts till i ignoreringslistan"
2191
 
2192
+ #: ../dashboard.php:2811
2193
  msgid "Some errors occurred"
2194
  msgstr "Några fel uppstod"
2195
 
2196
+ #: ../dashboard.php:2812
2197
  msgid "All files have been processed"
2198
  msgstr "Alla filer har bearbetats"
2199
 
2200
+ #: ../dashboard.php:5085
2201
  msgid "These features are available in a professional version of the plugin."
2202
  msgstr "Dessa funktioner är tillgängliga i en professionell version av tillägget"
2203
 
2204
+ #: ../dashboard.php:5086
2205
  msgid "Know more about all advantages at"
2206
  msgstr "Läs mer om alla fördelar på"
2207
 
2208
+ #: ../common.php:1404
2209
  msgid "Suspicious JavaScript code detected"
2210
  msgstr "Misstänkt JavaScript-kod upptäckt"
2211
 
2212
+ #: ../admin/cerber-settings.php:958
2213
  msgid "Unable to update the schedule"
2214
  msgstr "Kan inte uppdatera schemat"
2215
 
2216
+ #: ../admin/cerber-admin.php:767
2217
  msgid "All scans"
2218
  msgstr "Alla skanningar"
2219
 
2220
+ #: ../admin/cerber-admin.php:874
2221
  msgid "The list is empty."
2222
  msgstr "Listan är tom."
2223
 
2224
+ #: ../admin/cerber-admin.php:713
2225
  msgid "No files match the specified filter."
2226
  msgstr "Inga filer matchar det specifierade filtret"
2227
 
2228
+ #: ../admin/cerber-admin.php:713
2229
  msgid "Click here to see the full list of files"
2230
  msgstr "Klicka här för att se hela listan med filer"
2231
 
2232
+ #: ../dashboard.php:848
2233
  msgid "Additional Details"
2234
  msgstr "Ytterligare detaljer"
2235
 
2236
+ #: ../dashboard.php:3573
2237
  msgid "Page generation time"
2238
  msgstr "Tid för generering av sidan"
2239
 
2240
+ #: ../dashboard.php:5121
2241
  msgid "Log In"
2242
  msgstr "Logga in"
2243
 
2244
+ #: ../dashboard.php:5122
2245
  msgid "Log Out"
2246
  msgstr "Logga ut"
2247
 
2248
+ #: ../dashboard.php:5123
2249
  msgid "Register"
2250
  msgstr "Registrera"
2251
 
2252
+ #: ../dashboard.php:5126
2253
  msgid "WooCommerce Log In"
2254
  msgstr "WooCommerce-inloggning"
2255
 
2256
+ #: ../dashboard.php:5127
2257
  msgid "WooCommerce Log Out"
2258
  msgstr "WooCommerce-utloggning"
2259
 
2260
+ #: ../dashboard.php:5166 ../dashboard.php:5167
2261
  msgid "Add to menu"
2262
  msgstr "Lägg till i meny"
2263
 
2264
+ #: ../common.php:1392
2265
  msgid "IP address is locked out"
2266
  msgstr "IP-adress är utelåst"
2267
 
2268
+ #: ../common.php:1477
2269
  msgid "Multiple suspicious requests"
2270
  msgstr "Flera misstänkta förfrågningar"
2271
 
2272
+ #: ../settings.php:713
2273
  msgid "Traffic Inspection"
2274
  msgstr "Trafikinspektion"
2275
 
2276
+ #: ../settings.php:722 ../settings.php:750
2277
  msgid "Maximum compatibility"
2278
  msgstr "Maximal kompatibilitet"
2279
 
2280
+ #: ../settings.php:723 ../settings.php:751
2281
  msgid "Maximum security"
2282
  msgstr "Maximal säkerhet"
2283
 
2284
+ #: ../settings.php:741
2285
  msgid "Erroneous Request Shielding"
2286
  msgstr ""
2287
 
2288
+ #: ../settings.php:746
2289
  msgid "Enable error shielding"
2290
  msgstr ""
2291
 
2292
+ #: ../settings.php:819
2293
  msgid "Save software errors"
2294
  msgstr "Spara programfel"
2295
 
2296
+ #: ../cerber-scanner.php:3757
2297
  msgid "Preparing for the scan"
2298
  msgstr "Förbereder för skanningen"
2299
 
2300
+ #: ../common.php:1405
2301
  msgid "Blocked by administrator"
2302
  msgstr "Blockerad av administratör"
2303
 
2313
  msgid "User is not permitted to log into the website"
2314
  msgstr "Användare har inte tillåtelse att logga in på webbplatsen"
2315
 
2316
+ #: ../cerber-users.php:68 ../settings.php:534
2317
  msgid "User Message"
2318
  msgstr "Användarmeddelande"
2319
 
2325
  msgid "Blocked Users"
2326
  msgstr "Blockerade användare"
2327
 
2328
+ #: ../settings.php:354
2329
  msgid "Block access to user pages like /?author=n"
2330
  msgstr "Blockera åtkomst till användarsidor som /?Author=n"
2331
 
2332
+ #: ../settings.php:384
2333
  msgid "Access to WordPress REST API"
2334
  msgstr "Åtkomst till WordPress REST API"
2335
 
2336
+ #: ../settings.php:395
2337
  msgid "Block access to WordPress REST API except any of the following"
2338
  msgstr "Blockera åtkomst till WordPress REST API utom något av följande"
2339
 
2340
+ #: ../settings.php:405
2341
  msgid "Allow REST API for these roles"
2342
  msgstr "Tillåt REST API för dessa roller"
2343
 
2344
+ #: ../settings.php:410
2345
  msgid "Allow these namespaces"
2346
  msgstr "Tillåt dessa namnrymder"
2347
 
2348
+ #: ../settings.php:755
2349
  msgid "Ignore logged in users"
2350
  msgstr "Ignorera inloggade användare"
2351
 
2352
+ #: ../settings.php:132
2353
  msgid "These restrictions do not apply to IP addresses in the White IP Access List"
2354
  msgstr "Dessa begränsningar tillämpas inte på IP-adresser i den vita IP-åtkomstlistan"
2355
 
2356
+ #: ../admin/cerber-settings.php:517
2357
  msgid "Select one or more roles"
2358
  msgstr "Välj en eller flera roller"
2359
 
2360
+ #: ../dashboard.php:1150 ../cerber-users.php:1019
2361
  msgid "Filter by registered user"
2362
  msgstr "Filtrera efter registrerad användare"
2363
 
2364
+ #: ../settings.php:520
2365
  msgid "Authorized users only"
2366
  msgstr "Endast auktoriserade användare"
2367
 
2368
+ #: ../settings.php:521
2369
  msgid "Only registered and logged in website users have access to the website"
2370
  msgstr "Endast registrerade och inloggade användare har åtkomst till webbplatsen"
2371
 
2372
+ #: ../settings.php:538 ../settings.php:1470
2373
  msgid "Only registered and logged in users are allowed to view this website"
2374
  msgstr "Endast registrerade och inloggade användare har tillåtelse visa denna webbplats"
2375
 
2376
+ #: ../settings.php:543
2377
  msgid "Redirect to URL"
2378
  msgstr "Omdirigera till URL"
2379
 
2380
+ #: ../dashboard.php:4795
2381
  msgid "Changelog"
2382
  msgstr "Ändringslogg"
2383
 
2384
+ #: ../dashboard.php:652
2385
  msgid "Default settings have been loaded"
2386
  msgstr "Standardinställningarna har laddats"
2387
 
2388
+ #: ../dashboard.php:3281
2389
  msgid "Save all rules"
2390
  msgstr "Spara alla regler"
2391
 
2392
+ #: ../dashboard.php:3152 ../admin/cerber-settings.php:628
2393
  msgid "Save Changes"
2394
  msgstr "Spara ändringar"
2395
 
2396
+ #: ../common.php:1381
2397
  msgid "Invalid master credentials"
2398
  msgstr "Ogiltiga master-uppgifter"
2399
 
2400
+ #: ../settings.php:1170
2401
  msgid "Master settings"
2402
  msgstr "Master-inställningar"
2403
 
2404
+ #: ../settings.php:1178
2405
  msgid "Return to the website list"
2406
  msgstr "Tillbaka till webbplatslistan"
2407
 
2408
+ #: ../settings.php:1182
2409
  msgid "Show \"Switched to\" notification"
2410
  msgstr "Visa ”Bytt till”-notis"
2411
 
2412
+ #: ../settings.php:1186
2413
  msgid "Add @ site to the page title"
2414
  msgstr ""
2415
 
2416
+ #: ../settings.php:900 ../settings.php:1203 ../settings.php:1231
2417
  msgid "Enable diagnostic logging"
2418
  msgstr "Aktivera diagnostisk loggning"
2419
 
2420
+ #: ../settings.php:1214
2421
  msgid "Limit access by IP address"
2422
  msgstr "Begränsa åtkomst med IP-adress"
2423
 
2424
+ #: ../settings.php:1220
2425
  msgid "Access to this website"
2426
  msgstr "Åtkomst till denna webbplats"
2427
 
2428
+ #: ../settings.php:1223
2429
  msgid "Full access mode"
2430
  msgstr "Fullt åtkomstläge"
2431
 
2432
+ #: ../settings.php:1224
2433
  msgid "Read-only mode"
2434
  msgstr "Endast läsläge"
2435
 
2436
+ #: ../settings.php:1245
2437
  msgid "The full access mode requires the PRO version of WP Cerber"
2438
  msgstr "Fullt åtkomstläge kräver PRO-versionen av WP Cerber"
2439
 
2449
  msgid "Notes"
2450
  msgstr "Noteringar"
2451
 
2452
+ #: ../nexus/cerber-slave-list.php:161
2453
  msgid "Add a slave website"
2454
  msgstr "Lägg till en slav-webbplats"
2455
 
2456
+ #: ../cerber-users.php:1085 ../nexus/cerber-slave-list.php:246
2457
  msgid "Search results for:"
2458
  msgstr "Sökresultat för:"
2459
 
2460
+ #: ../nexus/cerber-slave-list.php:281
2461
  msgid "Edit"
2462
  msgstr "Redigera"
2463
 
2464
+ #: ../nexus/cerber-slave-list.php:287
2465
  msgid "Switch to"
2466
  msgstr "Byt till"
2467
 
2468
+ #: ../nexus/cerber-slave-list.php:415
2469
  msgid "No websites configured."
2470
  msgstr "Inga webbplatser konfigurerade."
2471
 
2472
+ #: ../nexus/cerber-slave-list.php:415
2473
  msgid "Add a new one"
2474
  msgstr "Lägg till en ny"
2475
 
2560
  msgid "Visit Site"
2561
  msgstr "Besök webbplats"
2562
 
2563
+ #: ../cerber-load.php:5281 ../nexus/cerber-nexus.php:64
2564
  msgid "Enable slave mode"
2565
  msgstr "Aktivera slavläge"
2566
 
2617
  msgstr "Installera åtkomsttoken på master-webbplatsen."
2618
 
2619
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
2620
+ #: ../common.php:1615
2621
  msgid "%s sec"
2622
  msgid_plural "%s secs"
2623
  msgstr[0] "%s sekund"
2624
  msgstr[1] "%s sekunder"
2625
 
2626
+ #: ../settings.php:696
2627
  msgid "Send reports on"
2628
  msgstr "Skicka rapporter på"
2629
 
2647
  msgid "Delete website"
2648
  msgstr "Ta bort webbplats"
2649
 
2650
+ #: ../nexus/cerber-slave-list.php:135
2651
  msgid "All groups"
2652
  msgstr "Alla grupper"
2653
 
2671
  msgid "Invalid response from the slave website"
2672
  msgstr "Ogiltigt svar från slav-webbplatsen"
2673
 
2674
+ #: ../common.php:1358 ../common.php:1467
2675
  msgid "Attempt to log in with non-existing username"
2676
  msgstr "Försök att logga in med icke-existerande användarnamn"
2677
 
2678
+ #: ../cerber-load.php:4439
2679
  msgid "Attempts to log in with non-existing usernames"
2680
  msgstr "Försök att logga in med icke-existerande användarnamn"
2681
 
2682
+ #: ../settings.php:1190
2683
  msgid "Use master language"
2684
  msgstr "Använd master-språk"
2685
 
2686
+ #: ../settings.php:181
2687
  msgid "Non-existing users"
2688
  msgstr "Icke-existerande användare"
2689
 
2690
+ #: ../settings.php:182
2691
  msgid "Immediately block IP when attempting to log in with a non-existing username"
2692
  msgstr "Blockera omedelbart IP vid försök att logga in med ett icke-existerande användarnamn"
2693
 
2695
  msgid "Owner"
2696
  msgstr "Ägare"
2697
 
2698
+ #: ../nexus/cerber-slave-list.php:415
2699
  msgid "Disable master mode"
2700
  msgstr "Inaktivera master-läge"
2701
 
2703
  msgid "To revoke the token and disable remote management, click here:"
2704
  msgstr "För att återkalla token och inaktivera fjärrhantering, klicka här:"
2705
 
2706
+ #: ../settings.php:364
2707
  msgid "Block execution of PHP scripts in the WordPress media folder"
2708
  msgstr "Blockera exekvering av PHP-skript i WordPress media-mapp"
2709
 
2715
  msgid "A newer version is available"
2716
  msgstr "En nyare version är tillgänglig"
2717
 
2718
+ #: ../dashboard.php:969
2719
  msgid "New users"
2720
  msgstr "Nya användare"
2721
 
2722
+ #: ../dashboard.php:982
2723
  msgid "My activity"
2724
  msgstr "Min aktivitet"
2725
 
2726
+ #: ../dashboard.php:2572
2727
  msgid "Create Alert"
2728
  msgstr "Skapa varning"
2729
 
2730
+ #: ../dashboard.php:2576
2731
  msgid "Delete Alert"
2732
  msgstr "Ta bort varning"
2733
 
2734
+ #: ../dashboard.php:2609
2735
  msgid "The alert has been created"
2736
  msgstr "Varningen har skapats"
2737
 
2738
+ #: ../dashboard.php:2613
2739
  msgid "The alert has been deleted"
2740
  msgstr "Varningen har tagits bort"
2741
 
2742
+ #: ../dashboard.php:4079
2743
  msgid "Advanced Search"
2744
  msgstr "Avancerad sökning"
2745
 
2748
  msgid "Cerber Tech Inc."
2749
  msgstr "Cerber Tech Inc."
2750
 
2751
+ #: ../cerber-load.php:5007
2752
  msgid "To delete the alert, click here"
2753
  msgstr "För att ta bort varningen, klicka här"
2754
 
2755
+ #: ../settings.php:214
2756
  msgid "Custom login URL may contain Latin alphanumeric characters, dashes and underscores only"
2757
  msgstr "Anpassad URL för inloggning kan endast innehålla latinska alfanumeriska tecken, bindestreck och understreck"
2758
 
2759
+ #: ../settings.php:226
2760
  msgid "Site-specific settings"
2761
  msgstr "Webbplatsspecifika inställningar"
2762
 
2763
+ #: ../settings.php:234
2764
  msgid "Prefix for plugin cookies"
2765
  msgstr ""
2766
 
2767
+ #: ../settings.php:235
2768
  msgid "Prefix may contain only Latin alphanumeric characters and underscores"
2769
  msgstr "Prefix får bara innehålla latinska alfanumeriska tecken och understreck"
2770
 
2771
+ #: ../settings.php:650
2772
  msgid "Lockout notifications"
2773
  msgstr "Aviseringar för utlåsning"
2774
 
2775
+ #: ../settings.php:678
2776
  msgid "Pushbullet access token"
2777
  msgstr "Pushbullet åtkomst-token"
2778
 
2779
+ #: ../settings.php:681
2780
  msgid "Pushbullet device"
2781
  msgstr "Pushbullet-enhet"
2782
 
2783
+ #: ../settings.php:978
2784
  msgid "Delete unattended files"
2785
  msgstr ""
2786
 
2787
+ #: ../settings.php:997
2788
  msgid "Automatic recovery of modified and infected files"
2789
  msgstr "Automatisk återskapning av modifierade och infekterade filer"
2790
 
2791
+ #: ../settings.php:1000
2792
  msgid "Recover WordPress files"
2793
  msgstr "Återskapa WordPress-filer"
2794
 
2795
+ #: ../settings.php:1004
2796
  msgid "Recover plugins files"
2797
  msgstr "Återskapa tilläggs-filer"
2798
 
2799
+ #: ../cerber-scanner.php:1473
2800
  msgid "File deleted"
2801
  msgstr "Fil borttagen"
2802
 
2803
+ #: ../cerber-scanner.php:1474
2804
  msgid "File recovered"
2805
  msgstr "Fil återskapad"
2806
 
2807
+ #: ../cerber-scanner.php:3765
2808
  msgid "Recovering WordPress files"
2809
  msgstr "Återskapar WordPress-filer"
2810
 
2811
+ #: ../cerber-scanner.php:3767
2812
  msgid "Recovering plugins files"
2813
  msgstr "Återskapar tilläggs-filer"
2814
 
2815
+ #: ../cerber-scanner.php:4876
2816
  msgid "Recovered"
2817
  msgstr "Återskapad"
2818
 
2819
+ #: ../cerber-scanner.php:4926
2820
  msgid "Automatically deleted"
2821
  msgstr "Automatiskt borttagen"
2822
 
2823
+ #: ../cerber-scanner.php:4929
2824
  msgid "Automatically recovered"
2825
  msgstr "Automatiskt återskapad"
2826
 
2828
  msgid "Cerber User Security"
2829
  msgstr "Cerber användarsäkerhet"
2830
 
2831
+ #: ../dashboard.php:64 ../dashboard.php:4700
2832
  msgid "User Policies"
2833
  msgstr "Användarpolicyer"
2834
 
2835
+ #: ../dashboard.php:1809
2836
  msgid "A new version is available"
2837
  msgstr "En ny version är tillgänglig"
2838
 
2839
+ #: ../dashboard.php:4702
2840
  msgid "Role-based"
2841
  msgstr "Rollbaserad"
2842
 
2843
+ #: ../dashboard.php:4703
2844
  msgid "Global"
2845
  msgstr "Global"
2846
 
2847
+ #: ../common.php:1406
2848
  msgid "Site policy enforcement"
2849
  msgstr ""
2850
 
2851
+ #: ../common.php:1407
2852
  msgid "2FA code verified"
2853
  msgstr "2FA-kod verifierad"
2854
 
2855
+ #: ../common.php:1408
2856
  msgid "Initiated by the user"
2857
  msgstr "Initierad av användaren"
2858
 
2859
+ #: ../common.php:1835
 
 
 
 
2860
  msgid "A new version of %s is available. Please install it."
2861
  msgstr "En ny version av %s är tillgänglig. Vänligen installera den."
2862
 
2863
+ #: ../cerber-load.php:1575
2864
  msgid "Email address is not permitted."
2865
  msgstr "E-postadress är inte tillåten."
2866
 
2867
+ #: ../cerber-load.php:1575
2868
  msgid "Please choose another one."
2869
  msgstr "Välj en annan."
2870
 
2871
+ #: ../cerber-users.php:10 ../cerber-users.php:439
2872
  msgid "Two-Factor Authentication"
2873
  msgstr "Tvåfaktorautentisering"
2874
 
2876
  msgid "Determined by user role policies"
2877
  msgstr ""
2878
 
2879
+ #: ../cerber-users.php:19 ../cerber-users.php:447
2880
  msgid "Always enabled"
2881
  msgstr "Alltid aktiverad"
2882
 
2888
  msgid "Save All Changes"
2889
  msgstr "Spara alla ändringar"
2890
 
2891
+ #: ../cerber-users.php:401
2892
  msgid "Block access to WordPress Dashboard"
2893
  msgstr "Blockera åtkomst till WordPress-adminpanel"
2894
 
2895
+ #: ../cerber-users.php:406
2896
  msgid "Hide Toolbar when viewing site"
2897
  msgstr "Dölj verktygsfält när du tittar på webbplats"
2898
 
2899
+ #: ../cerber-users.php:412
2900
  msgid "Redirection rules"
2901
  msgstr "Omdirigeringsregler"
2902
 
2903
+ #: ../cerber-users.php:416
2904
  msgid "Redirect user after login"
2905
  msgstr "Omdirigera användare efter inloggning"
2906
 
2907
+ #: ../cerber-users.php:421
2908
  msgid "Redirect user after logout"
2909
  msgstr "Omdirigera användare efter utloggning"
2910
 
2911
+ #: ../cerber-users.php:432 ../settings.php:583
2912
  msgid "User session expiration time"
2913
  msgstr "Användarsessionens utlöpningstid"
2914
 
2915
+ #: ../cerber-users.php:443
2916
  msgid "Two-factor authentication"
2917
  msgstr "Tvåfaktorsautentisering"
2918
 
2919
+ #: ../cerber-users.php:448
2920
  msgid "Advanced mode"
2921
  msgstr "Avancerat läge"
2922
 
2923
+ #: ../cerber-users.php:452
2924
  msgid "Enforce two-factor authentication if any of the following conditions is true"
2925
  msgstr "Tvinga tvåfaktorsautentisering om något av följande villkor är sant"
2926
 
2927
+ #: ../cerber-users.php:458
2928
  msgid "Login from a different country"
2929
  msgstr "Inloggning från ett annat land"
2930
 
2931
+ #: ../cerber-users.php:464
2932
  msgid "Login from a different network Class C"
2933
  msgstr "Inloggning från från ett annat nätverk klass C"
2934
 
2935
+ #: ../cerber-users.php:470
2936
  msgid "Login from a different IP address"
2937
  msgstr "Inloggning från en annan IP-adress"
2938
 
2939
+ #: ../cerber-users.php:476
2940
  msgid "Using a different browser or device"
2941
  msgstr "Använder en annan webbläsare eller enhet"
2942
 
2943
+ #: ../cerber-users.php:482
2944
  msgid "Enforce two-factor authentication with fixed intervals"
2945
  msgstr "Tvinga tvåfaktorsautentisering med fasta intervaller"
2946
 
2947
+ #: ../cerber-users.php:488
2948
  msgid "Regular time intervals (days)"
2949
  msgstr "Vanliga tidsintervaller (dagar)"
2950
 
2951
+ #: ../cerber-users.php:490
2952
  msgid "days interval"
2953
  msgstr "dagintervall"
2954
 
2955
+ #: ../cerber-users.php:495
2956
  msgid "Fixed number of logins"
2957
  msgstr "Fast antal inloggningar"
2958
 
2959
+ #: ../cerber-users.php:497
2960
  msgid "number of logins"
2961
  msgstr "antal inloggningar"
2962
 
2963
+ #: ../cerber-users.php:541
2964
  msgid "Policies have been updated"
2965
  msgstr "Policies har uppdaterats"
2966
 
2967
+ #: ../settings.php:558
2968
  msgid "Restrict email addresses"
2969
  msgstr "Begränsa e-postadresser"
2970
 
2971
+ #: ../settings.php:561
2972
  msgid "No restrictions"
2973
  msgstr "Inga begränsningar"
2974
 
2975
+ #: ../settings.php:562
2976
  msgid "Deny all email addresses that match the following"
2977
  msgstr "Neka alla e-postadresser som matchar följande"
2978
 
2979
+ #: ../settings.php:563
2980
  msgid "Permit only email addresses that match the following"
2981
  msgstr "Tillåt endast e-postadresser som matchar följande"
2982
 
2983
+ #: ../settings.php:568
2984
  msgid "Specify email addresses, wildcards or REGEX patterns. Use comma to separate items."
2985
  msgstr "Ange e-postadresser, jokertecken eller REGEX-mönster. Använd komma för att separera objekt."
2986
 
2987
+ #: ../settings.php:1011
2988
  msgid "These files will never be deleted during automatic cleanup."
2989
  msgstr "Dessa filer kommer aldrig att tas bort under automatisk upprensning."
2990
 
3052
  msgid "Two-Factor Authentication Email"
3053
  msgstr "E-post för tvåfaktorsautentisering"
3054
 
3055
+ #: ../dashboard.php:3224
3056
  msgid "Role-based rules are configured"
3057
  msgstr "Rollbaserade regler är konfigurerade"
3058
 
3059
+ #: ../dashboard.php:3418
3060
  msgid "All Users"
3061
  msgstr "Alla användare"
3062
 
3069
  msgid "The code is valid for %s minutes."
3070
  msgstr "Koden är giltig i %s minuter."
3071
 
3072
+ #: ../dashboard.php:351
3073
  msgid "IP address %s has been added to White IP Access List"
3074
  msgstr "IP-adress %s har lagts till i vit IP-åtkomstlista"
3075
 
3076
+ #: ../dashboard.php:348
3077
  msgid "IP address %s has been added to Black IP Access List"
3078
  msgstr "IP-adress %s har lagts till i svart IP-åtkomstlista"
3079
 
3080
+ #: ../dashboard.php:195 ../dashboard.php:845 ../dashboard.php:1107 ../dashboard.
3081
+ #: php:4020 ../cerber-users.php:975
3082
  msgid "IP Address"
3083
  msgstr "IP-adress"
3084
 
3085
+ #: ../dashboard.php:852 ../dashboard.php:1113
3086
  msgid "Username"
3087
  msgstr "Användarnamn"
3088
 
3089
+ #: ../dashboard.php:3306
3090
  msgid "Any country is permitted"
3091
  msgstr "Vilket land som helst är tillåtet"
3092
 
3093
+ #: ../dashboard.php:2887 ../dashboard.php:4605
3094
  msgid "Sessions"
3095
  msgstr "Sessioner"
3096
 
3097
+ #: ../cerber-users.php:613
3098
  msgid "Session has been terminated"
3099
  msgid_plural "%s sessions have been terminated"
3100
  msgstr[0] "Sessionen har avslutats"
3101
  msgstr[1] "%s sessioner har avslutats"
3102
 
3103
+ #: ../cerber-users.php:973
3104
  msgid "Created"
3105
  msgstr "Skapad"
3106
 
3107
+ #: ../cerber-users.php:994
3108
  msgid "Terminate session"
3109
  msgstr "Avsluta sessionen"
3110
 
3111
+ #: ../cerber-users.php:995
3112
  msgid "Block user"
3113
  msgstr "Blockera användare"
3114
 
3115
+ #: ../cerber-users.php:1127
3116
  msgid "Profile"
3117
  msgstr "Profil"
3118
 
3119
+ #: ../cerber-users.php:1140
3120
  msgid "All Logins"
3121
  msgstr "Alla inloggningar"
3122
 
3123
+ #: ../cerber-users.php:1141
3124
  msgid "User Activity"
3125
  msgstr "Användaraktivitet"
3126
 
3127
+ #: ../cerber-users.php:1187
3128
  msgid "Terminate"
3129
  msgstr "Avsluta"
3130
 
3131
+ #: ../dashboard.php:1759
3132
  msgid "user"
3133
  msgid_plural "users"
3134
  msgstr[0] "användare"
3135
  msgstr[1] "användare"
3136
 
3137
+ #: ../settings.php:390
3138
  msgid "Block access to users' data via REST API"
3139
  msgstr "Blockera åtkomst till användarnas data via REST API"
3140
 
3141
+ #: ../cerber-scanner.php:1472
3142
  msgid "Unable to delete"
3143
  msgstr "Kan inte ta bort"
3144
 
3150
  msgid "Data Shield"
3151
  msgstr ""
3152
 
3153
+ #: ../dashboard.php:4690
3154
  msgid "Data Shield Policies"
3155
  msgstr ""
3156
 
3157
+ #: ../dashboard.php:4692
3158
  msgid "Accounts & Roles"
3159
  msgstr "Konton och roller"
3160
 
3161
+ #: ../dashboard.php:4693
3162
  msgid "Site Settings"
3163
  msgstr "Webbplatsinställningar"
3164
 
3165
+ #: ../common.php:1369
3166
  msgid "User creation denied"
3167
  msgstr "Användarskapande nekad"
3168
 
3169
+ #: ../common.php:1371
3170
  msgid "Role update denied"
3171
  msgstr "Rolluppdatering nekad"
3172
 
3173
+ #: ../common.php:1372
3174
  msgid "Setting update denied"
3175
  msgstr "Inställningsuppdatering nekad"
3176
 
3177
+ #: ../common.php:1413
3178
  msgid "Permission denied"
3179
  msgstr "Behörighet nekad"
3180
 
3181
+ #: ../common.php:1415
3182
  msgid "Invalid user"
3183
  msgstr "Ogiltig användare"
3184
 
3185
+ #: ../common.php:1416
3186
  msgid "Incorrect password"
3187
  msgstr "Felaktigt lösenord"
3188
 
3189
+ #: ../settings.php:422
3190
  msgid "Protect user accounts"
3191
  msgstr "Skydda användarkonton"
3192
 
3193
+ #: ../settings.php:427
3194
  msgid "Restrict user account creation and user management with the following policies"
3195
  msgstr "Begränsa skapandet av användarkonton och användarhantering med följande policyer"
3196
 
3197
+ #: ../settings.php:433
3198
  msgid "User registrations are limited to these roles"
3199
  msgstr "Användarregistreringar är begränsade till dessa roller"
3200
 
3201
+ #: ../settings.php:439
3202
  msgid "Users with these roles are permitted to create new accounts"
3203
  msgstr "Användare med dessa roller tillåts att skapa nya konton"
3204
 
3205
+ #: ../settings.php:444
3206
  msgid "Users with these roles are permitted to change sensitive user data"
3207
  msgstr "Användare med dessa roller tillåts att ändra känslig användardata"
3208
 
3209
+ #: ../settings.php:449 ../settings.php:477 ../settings.php:506
3210
  msgid "Do not apply these policies to the IP addresses in the White IP Access List"
3211
  msgstr "Tillämpa inte dessa policyer på IP-adresserna i den vita IP-åtkomstlistan"
3212
 
3213
+ #: ../settings.php:457
3214
  msgid "Protect user roles"
3215
  msgstr "Skydda användarroller"
3216
 
3217
+ #: ../settings.php:461
3218
  msgid "Restrict roles and capabilities management with the following policies"
3219
  msgstr "Begränsa roller och behörighetshantering med följande policyer"
3220
 
3221
+ #: ../settings.php:467
3222
  msgid "Users with these roles are permitted to add new roles"
3223
  msgstr "Användare med dessa roller tillåts att lägga till nya roller"
3224
 
3225
+ #: ../settings.php:472
3226
  msgid "Users with these roles are permitted to change role capabilities"
3227
  msgstr "Användare med dessa roller tillåts att ändra rollbehörigheter"
3228
 
3229
+ #: ../settings.php:485
3230
  msgid "Protect site settings"
3231
  msgstr "Skydda webbplatsinställningar"
3232
 
3233
+ #: ../settings.php:489
3234
  msgid "Restrict updating site settings with the following policies"
3235
  msgstr "Begränsa uppdateringen av webbplatsinställningarna med följande policyer"
3236
 
3237
+ #: ../settings.php:495
3238
  msgid "Users with these roles are permitted to change protected settings"
3239
  msgstr "Användare med dessa roller tillåts att ändra skyddade inställningar"
3240
 
3241
+ #: ../settings.php:500
3242
  msgid "Protected settings"
3243
  msgstr "Skyddade inställningar"
3244
 
3245
+ #: ../settings.php:528
3246
  msgid "Do not apply these policy to the IP addresses in the White IP Access List"
3247
  msgstr "Tillämpa inte denna policy på IP-adresserna i den vita IP-åtkomstlistan"
3248
 
3282
  msgid "Server Country"
3283
  msgstr "Serverland"
3284
 
3285
+ #: ../nexus/cerber-slave-list.php:145
3286
  msgid "All servers"
3287
  msgstr "Alla servrar"
3288
 
3289
+ #: ../nexus/cerber-slave-list.php:152
3290
  msgid "All countries"
3291
  msgstr "Alla länder"
3292
 
3298
  msgid "Hide server IP address"
3299
  msgstr "Dölj serverns IP-adress"
3300
 
3301
+ #: ../dashboard.php:320
3302
  msgid "IP address, range, wildcard, or CIDR"
3303
  msgstr "IP-adress, intervall, jokertecken eller CIDR"
3304
 
3305
+ #: ../dashboard.php:321
3306
  msgid "Add Entry"
3307
  msgstr ""
3308
 
3309
+ #: ../dashboard.php:4950
3310
  msgid "The IP address you are trying to add is already in the list"
3311
  msgstr "IP-adressen som du försöker lägga till finns redan i listan"
3312
 
3313
+ #: ../common.php:1334
3314
  msgid "IP subnet blocked"
3315
  msgstr "IP-undernät blockerat"
3316
 
3317
+ #: ../common.php:1370
3318
  msgid "User row update denied"
3319
  msgstr "Uppdatering av användarrad nekad"
3320
 
3321
+ #: ../common.php:1373
3322
  msgid "User metadata update denied"
3323
  msgstr ""
3324
 
3325
+ #: ../settings.php:1313
3326
  msgid "Any activity"
3327
  msgstr ""
3328
 
3329
+ #: ../cerber-tools.php:228
3330
  msgid "A database error occurred while importing access list entries"
3331
  msgstr ""
3332
 
3333
+ #: ../settings.php:247
3334
  msgid "Enable authentication log monitoring"
3335
  msgstr ""
3336
 
3337
+ #: ../settings.php:279 ../settings.php:829
3338
  msgid "Keep log records of not logged in visitors for"
3339
  msgstr ""
3340
 
3341
+ #: ../settings.php:285 ../settings.php:835
3342
  msgid "Keep log records of logged in users for"
3343
  msgstr ""
3344
 
3346
  msgid "Admin Note"
3347
  msgstr ""
3348
 
3349
+ #: ../cerber-users.php:944
3350
  msgid "WP Cerber Personal Data Eraser"
3351
  msgstr ""
3352
 
3353
+ #: ../settings.php:599
3354
  msgid "Personal Data"
3355
  msgstr "Personlig data"
3356
 
3357
+ #: ../settings.php:605
3358
  msgid "Enable data erase"
3359
  msgstr "Aktivera dataradering"
3360
 
3361
+ #: ../settings.php:612
3362
  msgid "Terminate user sessions"
3363
  msgstr "Avsluta användarsessioner"
3364
 
3365
+ #: ../settings.php:613
3366
  msgid "Delete user sessions data when user data is erased"
3367
  msgstr "Ta bort användarsessionsdata när användardata raderas"
3368
 
3369
+ #: ../settings.php:619
3370
  msgid "Enable data export"
3371
  msgstr "Aktivera dataexport"
3372
 
3373
+ #: ../settings.php:626
3374
  msgid "Include activity log events"
3375
  msgstr "Inkludera aktivitetslogghändelser"
3376
 
3377
+ #: ../settings.php:632
3378
  msgid "Include traffic log entries"
3379
  msgstr ""
3380
 
3381
+ #: ../settings.php:635
3382
  msgid "Request URL"
3383
  msgstr ""
3384
 
3385
+ #: ../settings.php:636
3386
  msgid "Form fields data"
3387
  msgstr ""
3388
 
3389
+ #: ../settings.php:637
3390
  msgid "Cookies"
3391
  msgstr "Cookies"
3392
 
3394
  msgid "Cerber anti-spam settings"
3395
  msgstr ""
3396
 
3397
+ #: ../dashboard.php:71 ../settings.php:1152
3398
  msgid "Anti-spam"
3399
  msgstr ""
3400
 
3402
  msgid "Add-ons"
3403
  msgstr "Utökningar"
3404
 
3405
+ #: ../dashboard.php:4654
3406
  msgid "Anti-spam and bot detection settings"
3407
  msgstr ""
3408
 
3409
+ #: ../dashboard.php:4656
3410
  msgid "Anti-spam engine"
3411
  msgstr ""
3412
 
3413
+ #: ../common.php:1476
3414
  msgid "Multiple erroneous requests"
3415
  msgstr "Flera felaktiga förfrågningar"
3416
 
3417
+ #: ../admin/cerber-settings.php:352
3418
  msgid "%s retries are allowed within %s minutes"
3419
  msgstr "%s försök är tillåtna inom %s minuter"
3420
 
3421
+ #: ../admin/cerber-settings.php:358
3422
  msgid "%s registrations are allowed within %s minutes from one IP address"
3423
  msgstr "%s registreringar är tillåtna inom %s minuter från en IP-adress"
3424
 
3425
+ #: ../admin/cerber-settings.php:381
3426
  msgid "Enable after %s failed login attempts in the last %s minutes"
3427
  msgstr "Aktivera efter %s misslyckade inloggningsförsök under de senaste %s minuterna"
3428
 
3429
+ #: ../settings.php:152
3430
  msgid "Limit"
3431
  msgstr "Gräns"
3432
 
3433
+ #: ../settings.php:385
3434
  msgid "Restrict or completely block access to the WordPress REST API according to your needs"
3435
  msgstr "Begränsa eller blockera åtkomst fullständigt till WordPress REST API enligt dina behov"
3436
 
3437
+ #: ../settings.php:601
3438
  msgid "These features help your organization to be in compliance with personal data protection laws"
3439
  msgstr ""
3440
 
3441
+ #: ../settings.php:659
3442
  msgid "if empty, the website administrator email %s will be used"
3443
  msgstr "om tom, kommer webbplatsadministratörens e-postadress %s att användas"
3444
 
3445
+ #: ../settings.php:663
3446
  msgid "notifications are allowed per hour (0 means unlimited)"
3447
  msgstr "aviseringar är tillåtna per timme (0 betyder obegränsat)"
3448
 
3449
+ #: ../settings.php:674
3450
  msgid "Get notified instantly with mobile and desktop notifications"
3451
  msgstr "Bli aviserad omedelbart med aviseringar på mobil och stationär dator"
3452
 
3453
+ #: ../settings.php:689
3454
  msgid "Weekly report is a summary of all activities and suspicious events occurred during the last seven days"
3455
  msgstr "Veckorapport är en sammanfattning av alla aktiviteter och misstänkta händelser inträffade under de senaste sju dagarna"
3456
 
3457
+ #: ../settings.php:702 ../settings.php:963
3458
  msgid "if empty, the email addresses from the notification settings will be used"
3459
  msgstr "om tom, kommer e-postadresserna från aviseringsinställningarna att användas"
3460
 
3461
+ #: ../settings.php:714
3462
  msgid "Traffic Inspector is a context-aware web application firewall (WAF) that protects your website by recognizing and denying malicious HTTP requests"
3463
  msgstr ""
3464
 
3465
+ #: ../settings.php:743
3466
  msgid "Block IP addresses that send excessive requests for non-existing pages or scan website for security breaches"
3467
  msgstr ""
3468
 
3469
+ #: ../settings.php:762
3470
  msgid "Traffic Logging"
3471
  msgstr "Trafikloggning"
3472
 
3473
+ #: ../settings.php:763
3474
  msgid "Enable optional traffic logging if you need to monitor suspicious and malicious activity or solve security issues"
3475
  msgstr "Aktivera valfri trafikloggning om du behöver övervaka misstänksam och skadlig aktivitet eller lösa säkerhetsproblem"
3476
 
3477
+ #: ../settings.php:845
3478
  msgid "The scanner monitors file changes, verifies the integrity of WordPress, plugins, and themes, and detects malware"
3479
  msgstr "Skannern övervakar filändringar, verifierar integriteten i WordPress, tillägg och teman och upptäcker skadlig kod"
3480
 
3481
+ #: ../settings.php:867
3482
  msgid "Specify directories to exclude from scanning. One directory per line."
3483
  msgstr "Specificera kataloger att exkludera från skanning. En katalog per rad."
3484
 
3485
+ #: ../settings.php:915
3486
  msgid "The scanner automatically scans the website, removes malware and sends email reports with the results of a scan"
3487
  msgstr "Skannern skannar automatiskt webbplatsen, tar bort skadlig kod och skickar e-postrapporter med resultatet av en skanning"
3488
 
3489
+ #: ../settings.php:932
3490
  msgid "Configure what issues to include in the email report and the condition for sending reports"
3491
  msgstr "Konfigurera vilka problem som ska inkluderas i e-postrapporten och villkoret för att skicka rapporter"
3492
 
3493
+ #: ../settings.php:974
3494
  msgid "These policies are automatically enforced at the end of every scheduled scan based on its results. All affected files are moved to the quarantine"
3495
  msgstr ""
3496
 
3497
+ #: ../settings.php:1040
3498
  msgid "Cerber anti-spam engine"
3499
  msgstr ""
3500
 
3501
+ #: ../settings.php:1041
3502
  msgid "Spam protection for comment, registration and contact forms on a website"
3503
  msgstr "Skräppostskydd för kommentarer, registrering och kontaktformulär på en webbplats"
3504
 
3505
+ #: ../settings.php:1062
3506
  msgid "Adjust anti-spam engine"
3507
  msgstr ""
3508
 
3509
+ #: ../settings.php:1063
3510
  msgid "These settings enable you to fine-tune the behavior of anti-spam algorithms and avoid false positives"
3511
  msgstr ""
3512
 
3513
+ #: ../settings.php:1087
3514
  msgid "How the plugin processes comments submitted through the standard comment form"
3515
  msgstr "Hur tillägget bearbetar kommentarer som skickats in via standardformuläret för kommentarer"
3516
 
3517
+ #: ../nexus/cerber-nexus-slave.php:436
3518
  msgid "Settings updated"
3519
  msgstr "Inställningar uppdaterade"
3520
 
3521
+ #: ../dashboard.php:1154
3522
  msgid "Request ID"
3523
  msgstr ""
3524
 
3525
+ #: ../dashboard.php:1155
3526
  msgid "Search in URL"
3527
  msgstr "Sök i URL"
3528
 
3529
+ #: ../settings.php:874 ../settings.php:883
3530
  msgid "Executable files"
3531
+ msgstr "Körbara filer"
3532
 
3533
+ #: ../settings.php:875 ../settings.php:884
3534
  msgid "All files"
3535
  msgstr "Alla filer"
3536
 
3537
+ #: ../dashboard.php:1559
3538
+ msgid "Active sessions"
3539
+ msgstr "Aktiva sessioner"
3540
+
3541
+ #: ../settings.php:584
3542
+ msgid "minutes (leave empty to use the default WordPress value)"
3543
+ msgstr "minuter (lämna tomt för att använda standardvärdet för WordPress)"
3544
+
3545
+ #: ../settings.php:888
3546
+ msgid "Change file permissions when necessary"
3547
+ msgstr "Ändra filbehörigheter när det är nödvändigt"
3548
+
3549
+ #: ../cerber-tools.php:72
3550
+ msgid "Load entries"
3551
+ msgstr ""
3552
+
3553
+ #: ../dashboard.php:983 ../dashboard.php:4062
3554
+ msgid "My IP"
3555
+ msgstr "Mitt IP"
3556
+
3557
+ #: ../dashboard.php:4743
3558
+ msgid "Analytics"
3559
+ msgstr ""
3560
+
3561
+ #: ../dashboard.php:4792
3562
+ msgid "Manage Settings"
3563
+ msgstr "Hantera inställningar"
3564
+
3565
+ #: ../dashboard.php:4794
3566
+ msgid "Diagnostic Log"
3567
+ msgstr "Diagnoslogg"
3568
+
3569
+ #: ../common.php:1327
3570
+ msgid "User deleted"
3571
+ msgstr "Användare borttagen"
3572
+
3573
+ #: ../common.php:1411
3574
+ msgid "Email address is prohibited"
3575
+ msgstr "E-postadress är förbjuden"
3576
+
3577
+ #: ../admin/cerber-admin.php:753
3578
+ msgid "Quarantined"
3579
+ msgstr ""
3580
+
3581
+ #: ../admin/cerber-admin.php:909 ../admin/cerber-admin.php:1319
3582
+ msgid "Modified"
3583
+ msgstr "Ändrad"
3584
+
3585
+ #: ../admin/cerber-admin.php:983
3586
+ msgid "Files without extension"
3587
+ msgstr ""
3588
+
3589
+ #: ../admin/cerber-admin.php:984
3590
+ msgid "Back to list"
3591
+ msgstr "Tillbaka till listan"
3592
+
3593
+ #: ../admin/cerber-admin.php:1044
3594
+ msgid "Brief summary"
3595
+ msgstr "Kort sammanfattning"
3596
+
3597
+ #: ../admin/cerber-admin.php:1095
3598
+ msgid "Folder"
3599
+ msgstr "Mapp"
3600
+
3601
+ #: ../admin/cerber-admin.php:1096
3602
+ msgid "Path"
3603
+ msgstr "Sökväg"
3604
+
3605
+ #: ../admin/cerber-admin.php:1097 ../admin/cerber-admin.php:1191
3606
+ msgid "Files"
3607
+ msgstr "Filer"
3608
+
3609
+ #: ../admin/cerber-admin.php:1098 ../admin/cerber-admin.php:1192
3610
+ msgid "Space Occupied"
3611
+ msgstr "Utrymme ockuperat"
3612
+
3613
+ #: ../admin/cerber-admin.php:1162
3614
+ msgid "No extension"
3615
+ msgstr ""
3616
+
3617
+ #: ../admin/cerber-admin.php:1187
3618
+ msgid "File extensions statistics"
3619
+ msgstr ""
3620
+
3621
+ #: ../admin/cerber-admin.php:1190
3622
+ msgid "Extension"
3623
+ msgstr ""
3624
+
3625
+ #: ../admin/cerber-admin.php:1193
3626
+ msgid "Smallest"
3627
+ msgstr "Minsta"
3628
+
3629
+ #: ../admin/cerber-admin.php:1194
3630
+ msgid "Largest"
3631
+ msgstr "Största"
3632
+
3633
+ #: ../admin/cerber-admin.php:1195
3634
+ msgid "Average Size"
3635
+ msgstr ""
3636
+
3637
+ #: ../admin/cerber-admin.php:1196
3638
+ msgid "Oldest"
3639
+ msgstr "Äldsta"
3640
+
3641
+ #: ../admin/cerber-admin.php:1197
3642
+ msgid "Newest"
3643
+ msgstr "Nyaste"
3644
+
3645
+ #: ../admin/cerber-admin.php:1213
3646
+ msgid "Top 10 largest files"
3647
+ msgstr ""
3648
+
3649
+ #: ../admin/cerber-admin.php:1317
3650
+ msgid "File Name"
3651
+ msgstr "Filnamn"
3652
+
3653
+ #: ../settings.php:327
3654
+ msgid "Date format for CSV export"
3655
+ msgstr "Datumformat för CSV-export"
3656
+
3657
+ #: ../settings.php:328
3658
+ msgid "Use ISO 8601 date format for CSV export files"
3659
+ msgstr "Använd ISO 8601-datumformat för CSV-exportfiler"
3660
+
3661
+ #: ../settings.php:332
3662
+ msgid "Use English"
3663
+ msgstr "Använd engelska"
3664
+
3665
+ #: ../settings.php:337
3666
+ msgid "My IP address"
3667
+ msgstr "Min IP-adress"
3668
+
3669
+ #: ../settings.php:338
3670
+ msgid "Do not add my IP address to the White IP Access List upon plugin activation"
3671
+ msgstr ""
3672
+
3673
+ #: ../cerber-tools.php:52
3674
+ msgid "Load the default plugin settings"
3675
+ msgstr "Ladda standardinställningarna för tillägget"
3676
+
3677
+ #: ../cerber-tools.php:53
3678
+ msgid "When you click the button below, the default WP Cerber settings will be loaded. The Custom login URL and Access Lists will not be changed."
3679
+ msgstr ""
3680
+
3681
+ #: ../cerber-tools.php:54
3682
+ msgid "To get the most out of WP Cerber, follow these steps:"
3683
+ msgstr "Följ de här stegen för att få ut mesta möjliga av WP Cerber:"
3684
+
3685
+ #: ../common.php:1419
3686
+ msgid "IP whitelisted"
3687
+ msgstr ""
3688
+
3689
+ #: ../dashboard.php:4061
3690
+ msgid "My requests"
3691
+ msgstr ""
3692
+
3693
+ #: ../dashboard.php:3416
3694
+ msgid "Log into the website"
3695
+ msgstr ""
3696
+
3697
+ #. Name of the plugin
3698
+ #:
3699
+ msgid "WP Cerber Security, Anti-spam & Malware Scan"
3700
+ msgstr ""
3701
+
3702
+ #: ../common.php:1363 ../common.php:1472
3703
+ msgid "Probing for vulnerable code"
3704
+ msgstr ""
3705
+
3706
+ #: ../cerber-load.php:5268
3707
+ msgid "Your IP address %s has been added to the White IP Access List"
3708
+ msgstr ""
3709
+
3710
+ #: ../cerber-users.php:1022
3711
+ msgid "Search for IP address"
3712
+ msgstr ""
3713
+
3714
+ #: ../settings.php:771
3715
+ msgid "Minimal"
3716
+ msgstr ""
3717
+
3718
+ #: ../settings.php:777
3719
+ msgid "Do not log known crawlers"
3720
+ msgstr ""
3721
+
3722
+ #: ../settings.php:781
3723
+ msgid "Do not log these locations"
3724
+ msgstr ""
3725
+
3726
+ #: ../settings.php:785
3727
+ msgid "Specify URL paths to exclude requests from logging. One item per line."
3728
+ msgstr ""
3729
+
3730
+ #: ../settings.php:788
3731
+ msgid "Do not log these User-Agents"
3732
+ msgstr ""
3733
+
3734
+ #: ../settings.php:792
3735
+ msgid "Specify User-Agents to exclude requests from logging. One item per line."
3736
+ msgstr ""
3737
+
languages/wp-cerber.pot CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: WP Cerber\n"
6
  "Report-Msgid-Bugs-To: \n"
7
  "POT-Creation-Date: Tue Sep 08 2015 21:38:11 GMT+0300\n"
8
- "POT-Revision-Date: Wed Jun 10 2020 13:11:10 GMT+0300 (Moscow Standard Time)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
@@ -28,8 +28,8 @@ msgstr ""
28
  msgid "Cerber Dashboard"
29
  msgstr ""
30
 
31
- #: ../dashboard.php:54 ../dashboard.php:1803 ../dashboard.php:2682 ../dashboard.
32
- #: php:4594
33
  msgid "Dashboard"
34
  msgstr ""
35
 
@@ -37,7 +37,7 @@ msgstr ""
37
  msgid "Cerber Traffic Inspector"
38
  msgstr ""
39
 
40
- #: ../dashboard.php:56 ../dashboard.php:1766 ../dashboard.php:4660
41
  msgid "Traffic Inspector"
42
  msgstr ""
43
 
@@ -53,7 +53,7 @@ msgstr ""
53
  msgid "Cerber Security Rules"
54
  msgstr ""
55
 
56
- #: ../dashboard.php:61 ../dashboard.php:4706
57
  msgid "Security Rules"
58
  msgstr ""
59
 
@@ -61,11 +61,11 @@ msgstr ""
61
  msgid "Cerber User Security"
62
  msgstr ""
63
 
64
- #: ../dashboard.php:64 ../dashboard.php:4686
65
  msgid "User Policies"
66
  msgstr ""
67
 
68
- #: ../dashboard.php:67 ../dashboard.php:4721
69
  msgid "Site Integrity"
70
  msgstr ""
71
 
@@ -73,7 +73,7 @@ msgstr ""
73
  msgid "Cerber anti-spam settings"
74
  msgstr ""
75
 
76
- #: ../dashboard.php:71 ../settings.php:1136
77
  msgid "Anti-spam"
78
  msgstr ""
79
 
@@ -85,7 +85,7 @@ msgstr ""
85
  msgid "Cerber tools"
86
  msgstr ""
87
 
88
- #: ../dashboard.php:82 ../dashboard.php:4775
89
  msgid "Tools"
90
  msgstr ""
91
 
@@ -94,7 +94,7 @@ msgid "Remove"
94
  msgstr ""
95
 
96
  #: ../dashboard.php:195 ../dashboard.php:845 ../dashboard.php:1107 ../dashboard.
97
- #: php:4011 ../cerber-users.php:982
98
  msgid "IP Address"
99
  msgstr ""
100
 
@@ -106,16 +106,16 @@ msgstr ""
106
  msgid "Country"
107
  msgstr ""
108
 
109
- #: ../dashboard.php:198 ../cerber-users.php:981
110
  msgid "Expires"
111
  msgstr ""
112
 
113
- #: ../dashboard.php:199 ../cerber-load.php:4204
114
  msgid "Reason"
115
  msgstr ""
116
 
117
  #: ../dashboard.php:200 ../admin/cerber-admin.php:757 ../admin/cerber-admin.php:
118
- #: 912 ../cerber-users.php:984
119
  msgid "Action"
120
  msgstr ""
121
 
@@ -137,12 +137,12 @@ msgid "No lockouts at the moment. The sky is clear."
137
  msgstr ""
138
 
139
  #: ../dashboard.php:254 ../dashboard.php:1344 ../dashboard.php:1389 ../dashboard.
140
- #: php:1761 ../dashboard.php:3781 ../cerber-load.php:5244 ../cerber-tools.php:69
141
  msgid "White IP Access List"
142
  msgstr ""
143
 
144
  #: ../dashboard.php:257 ../dashboard.php:1347 ../dashboard.php:1392 ../dashboard.
145
- #: php:1762 ../dashboard.php:3784 ../cerber-tools.php:70
146
  msgid "Black IP Access List"
147
  msgstr ""
148
 
@@ -185,9 +185,9 @@ msgstr ""
185
  msgid "IP address %s has been added to White IP Access List"
186
  msgstr ""
187
 
188
- #: ../dashboard.php:433 ../dashboard.php:3689 ../whois.php:222 ../whois.php:253 ..
189
- #: /common.php:1477 ../common.php:1882 ../common.php:1950 ../nexus/cerber-slave-
190
- #: list.php:330
191
  msgid "Unknown"
192
  msgstr ""
193
 
@@ -208,12 +208,12 @@ msgstr ""
208
  msgid "Unable to send email to"
209
  msgstr ""
210
 
211
- #: ../dashboard.php:641
212
  msgid "Default settings have been loaded"
213
  msgstr ""
214
 
215
- #: ../dashboard.php:846 ../dashboard.php:1110 ../dashboard.php:3560 ../dashboard.
216
- #: php:4009
217
  msgid "Date"
218
  msgstr ""
219
 
@@ -225,7 +225,7 @@ msgstr ""
225
  msgid "Additional Details"
226
  msgstr ""
227
 
228
- #: ../dashboard.php:849 ../dashboard.php:1112 ../dashboard.php:4014
229
  msgid "Local User"
230
  msgstr ""
231
 
@@ -233,7 +233,7 @@ msgstr ""
233
  msgid "User login"
234
  msgstr ""
235
 
236
- #: ../dashboard.php:851 ../dashboard.php:3565
237
  msgid "User ID"
238
  msgstr ""
239
 
@@ -241,7 +241,7 @@ msgstr ""
241
  msgid "Username"
242
  msgstr ""
243
 
244
- #: ../dashboard.php:958 ../dashboard.php:2366
245
  msgid "View all"
246
  msgstr ""
247
 
@@ -249,20 +249,20 @@ msgstr ""
249
  msgid "New users"
250
  msgstr ""
251
 
252
- #: ../dashboard.php:975 ../dashboard.php:4040
253
  msgid "Suspicious activity"
254
  msgstr ""
255
 
256
- #: ../dashboard.php:977 ../common.php:1334
257
  msgid "IP blocked"
258
  msgstr ""
259
 
260
- #: ../dashboard.php:979 ../dashboard.php:1759 ../dashboard.php:4042 ../settings.
261
- #: php:399 ../settings.php:1055
262
  msgid "Logged in users"
263
  msgstr ""
264
 
265
- #: ../dashboard.php:980 ../dashboard.php:4043
266
  msgid "Not logged in visitors"
267
  msgstr ""
268
 
@@ -270,11 +270,11 @@ msgstr ""
270
  msgid "My activity"
271
  msgstr ""
272
 
273
- #: ../dashboard.php:983 ../dashboard.php:4053
274
  msgid "My IP"
275
  msgstr ""
276
 
277
- #: ../dashboard.php:1135 ../dashboard.php:4077
278
  msgid "Export"
279
  msgstr ""
280
 
@@ -282,7 +282,7 @@ msgstr ""
282
  msgid "No activity has been logged."
283
  msgstr ""
284
 
285
- #: ../dashboard.php:1150
286
  msgid "Filter by registered user"
287
  msgstr ""
288
 
@@ -302,8 +302,8 @@ msgstr ""
302
  msgid "Filter"
303
  msgstr ""
304
 
305
- #: ../dashboard.php:1352 ../dashboard.php:1396 ../dashboard.php:3789 ../common.
306
- #: php:1392
307
  msgid "Locked out"
308
  msgstr ""
309
 
@@ -352,11 +352,11 @@ msgid "Failed login attempts"
352
  msgstr ""
353
 
354
  #: ../dashboard.php:1644 ../dashboard.php:1735 ../dashboard.php:1784 ../common.
355
- #: php:1614 ../nexus/cerber-slave-list.php:344
356
  msgid "Never"
357
  msgstr ""
358
 
359
- #: ../dashboard.php:1683 ../cerber-users.php:52 ../cerber-users.php:1115
360
  msgid "You"
361
  msgstr ""
362
 
@@ -410,7 +410,7 @@ msgid_plural "users"
410
  msgstr[0] ""
411
  msgstr[1] ""
412
 
413
- #: ../dashboard.php:1761 ../dashboard.php:1762 ../dashboard.php:2660
414
  msgid "entry"
415
  msgid_plural "entries"
416
  msgstr[0] ""
@@ -434,8 +434,8 @@ msgid "Last malware scan"
434
  msgstr ""
435
 
436
  #: ../dashboard.php:1790 ../dashboard.php:1792 ../cerber-users.php:20 ../cerber-
437
- #: users.php:446 ../settings.php:720 ../settings.php:748 ../settings.php:857 ..
438
- #: /settings.php:866 ../settings.php:1209 ../cerber-scanner.php:1493
439
  msgid "Disabled"
440
  msgstr ""
441
 
@@ -447,12 +447,12 @@ msgstr ""
447
  msgid "Full Scan"
448
  msgstr ""
449
 
450
- #: ../dashboard.php:1804 ../dashboard.php:2352 ../dashboard.php:4595 ../cerber-
451
- #: load.php:4944 ../cerber-users.php:1148 ../settings.php:276
452
  msgid "Activity"
453
  msgstr ""
454
 
455
- #: ../dashboard.php:1805 ../cerber-users.php:1149
456
  msgid "Traffic"
457
  msgstr ""
458
 
@@ -472,372 +472,372 @@ msgstr ""
472
  msgid "in the last 24 hours"
473
  msgstr ""
474
 
475
- #: ../dashboard.php:2369
476
  msgid "Recently locked out IP addresses"
477
  msgstr ""
478
 
479
- #: ../dashboard.php:2480
480
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
481
  msgstr ""
482
 
483
- #: ../dashboard.php:2481
484
  msgid "Deactivate"
485
  msgstr ""
486
 
487
- #: ../dashboard.php:2482 ../dashboard.php:2881
488
  msgid "View Activity"
489
  msgstr ""
490
 
491
- #: ../dashboard.php:2497
492
  msgid "Settings saved"
493
  msgstr ""
494
 
495
- #: ../dashboard.php:2568
496
  msgid "Create Alert"
497
  msgstr ""
498
 
499
- #: ../dashboard.php:2572
500
  msgid "Delete Alert"
501
  msgstr ""
502
 
503
- #: ../dashboard.php:2605
504
  msgid "The alert has been created"
505
  msgstr ""
506
 
507
- #: ../dashboard.php:2609
508
  msgid "The alert has been deleted"
509
  msgstr ""
510
 
511
- #: ../dashboard.php:2683
512
  msgid "Main settings"
513
  msgstr ""
514
 
515
- #: ../dashboard.php:2800
516
  msgid "Are you sure you want to delete selected files?"
517
  msgstr ""
518
 
519
- #: ../dashboard.php:2801
520
  msgid "These files have been moved to the quarantine"
521
  msgstr ""
522
 
523
- #: ../dashboard.php:2804
524
  msgid "Do you want to add selected files to the ignore list?"
525
  msgstr ""
526
 
527
- #: ../dashboard.php:2805
528
  msgid "These files have been added to the ignore list"
529
  msgstr ""
530
 
531
- #: ../dashboard.php:2807
532
  msgid "Some errors occurred"
533
  msgstr ""
534
 
535
- #: ../dashboard.php:2808
536
  msgid "All files have been processed"
537
  msgstr ""
538
 
539
- #: ../dashboard.php:3145 ../admin/cerber-settings.php:624
 
 
 
 
540
  msgid "Save Changes"
541
  msgstr ""
542
 
543
- #: ../dashboard.php:3217
544
  msgid "Role-based rules are configured"
545
  msgstr ""
546
 
547
- #: ../dashboard.php:3267
548
  msgid "Start typing here to find a country"
549
  msgstr ""
550
 
551
- #: ../dashboard.php:3274
552
  msgid "Save all rules"
553
  msgstr ""
554
 
555
- #: ../dashboard.php:3287
556
  #, php-format
557
  msgid "Permitted for one country"
558
  msgid_plural "Permitted for %d countries"
559
  msgstr[0] ""
560
  msgstr[1] ""
561
 
562
- #: ../dashboard.php:3290
563
  #, php-format
564
  msgid "Not permitted for one country"
565
  msgid_plural "Not permitted for %d countries"
566
  msgstr[0] ""
567
  msgstr[1] ""
568
 
569
- #: ../dashboard.php:3298
570
  msgid "No rule"
571
  msgstr ""
572
 
573
- #: ../dashboard.php:3299
574
  msgid "Any country is permitted"
575
  msgstr ""
576
 
577
- #: ../dashboard.php:3382
578
  msgid "Click on a country name to add it to the list of selected countries"
579
  msgstr ""
580
 
581
- #: ../dashboard.php:3386
582
  #, php-format
583
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
584
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
585
  msgstr ""
586
 
587
- #: ../dashboard.php:3389
588
  #, php-format
589
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
590
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
591
  msgstr ""
592
 
593
- #: ../dashboard.php:3409
594
- msgid "Log in to the website"
595
  msgstr ""
596
 
597
- #: ../dashboard.php:3411
598
  msgid "All Users"
599
  msgstr ""
600
 
601
- #: ../dashboard.php:3413
602
  msgid "Register on the website"
603
  msgstr ""
604
 
605
- #: ../dashboard.php:3414
606
  msgid "Submit forms"
607
  msgstr ""
608
 
609
- #: ../dashboard.php:3415
610
  msgid "Post comments"
611
  msgstr ""
612
 
613
- #: ../dashboard.php:3416
614
  msgid "Use XML-RPC"
615
  msgstr ""
616
 
617
- #: ../dashboard.php:3417
618
  msgid "Use REST API"
619
  msgstr ""
620
 
621
- #: ../dashboard.php:3459
622
  msgid "Security rules have been updated"
623
  msgstr ""
624
 
625
- #: ../dashboard.php:3559
626
  msgid "IP address"
627
  msgstr ""
628
 
629
- #: ../dashboard.php:3566
630
  msgid "Page generation time"
631
  msgstr ""
632
 
633
- #: ../dashboard.php:4010
634
  msgid "Request"
635
  msgstr ""
636
 
637
- #: ../dashboard.php:4012 ../cerber-users.php:983
638
  msgid "Host Info"
639
  msgstr ""
640
 
641
- #: ../dashboard.php:4013
642
  msgid "User Agent"
643
  msgstr ""
644
 
645
- #: ../dashboard.php:4030
646
  msgid "No requests have been logged."
647
  msgstr ""
648
 
649
- #: ../dashboard.php:4038
650
  msgid "All requests"
651
  msgstr ""
652
 
653
- #: ../dashboard.php:4041
654
  msgid "Errors"
655
  msgstr ""
656
 
657
- #: ../dashboard.php:4046
658
  msgid "Form submissions"
659
  msgstr ""
660
 
661
- #: ../dashboard.php:4048
662
  msgid "Page Not Found"
663
  msgstr ""
664
 
665
- #: ../dashboard.php:4052
666
  msgid "My requests"
667
  msgstr ""
668
 
669
- #: ../dashboard.php:4060
670
  msgid "Longer than"
671
  msgstr ""
672
 
673
- #: ../dashboard.php:4070
674
  msgid "Advanced Search"
675
  msgstr ""
676
 
677
- #: ../dashboard.php:4083
678
  msgid "Refresh"
679
  msgstr ""
680
 
681
- #: ../dashboard.php:4596
682
- msgid "Sessions"
683
- msgstr ""
684
-
685
- #: ../dashboard.php:4597
686
  msgid "Lockouts"
687
  msgstr ""
688
 
689
- #: ../dashboard.php:4598
690
  msgid "Main Settings"
691
  msgstr ""
692
 
693
- #: ../dashboard.php:4599 ../cerber-tools.php:38 ../cerber-tools.php:49
694
  msgid "Access Lists"
695
  msgstr ""
696
 
697
- #: ../dashboard.php:4600
698
  msgid "Hardening"
699
  msgstr ""
700
 
701
- #: ../dashboard.php:4602 ../settings.php:264
702
  msgid "Notifications"
703
  msgstr ""
704
 
705
- #: ../dashboard.php:4640
706
  msgid "Anti-spam and bot detection settings"
707
  msgstr ""
708
 
709
- #: ../dashboard.php:4642
710
  msgid "Anti-spam engine"
711
  msgstr ""
712
 
713
- #: ../dashboard.php:4662
714
  msgid "Live Traffic"
715
  msgstr ""
716
 
717
- #: ../dashboard.php:4663 ../dashboard.php:4724 ../cerber-tools.php:37 ../cerber-
718
  #: tools.php:48 ../nexus/cerber-nexus.php:93
719
  msgid "Settings"
720
  msgstr ""
721
 
722
- #: ../dashboard.php:4676
723
  msgid "Data Shield Policies"
724
  msgstr ""
725
 
726
- #: ../dashboard.php:4678
727
  msgid "Accounts & Roles"
728
  msgstr ""
729
 
730
- #: ../dashboard.php:4679
731
  msgid "Site Settings"
732
  msgstr ""
733
 
734
- #: ../dashboard.php:4688
735
  msgid "Role-based"
736
  msgstr ""
737
 
738
- #: ../dashboard.php:4689
739
  msgid "Global"
740
  msgstr ""
741
 
742
- #: ../dashboard.php:4708
743
  msgid "Countries"
744
  msgstr ""
745
 
746
- #: ../dashboard.php:4723
747
  msgid "Security Scanner"
748
  msgstr ""
749
 
750
- #: ../dashboard.php:4725
751
  msgid "Scheduling"
752
  msgstr ""
753
 
754
- #: ../dashboard.php:4726
755
  msgid "Cleaning up"
756
  msgstr ""
757
 
758
- #: ../dashboard.php:4727
759
  msgid "Ignore List"
760
  msgstr ""
761
 
762
- #: ../dashboard.php:4728
763
  msgid "Quarantine"
764
  msgstr ""
765
 
766
- #: ../dashboard.php:4729
767
  msgid "Analytics"
768
  msgstr ""
769
 
770
- #: ../dashboard.php:4778
771
  msgid "Manage Settings"
772
  msgstr ""
773
 
774
- #: ../dashboard.php:4779
775
  msgid "Diagnostic"
776
  msgstr ""
777
 
778
- #: ../dashboard.php:4780
779
  msgid "Diagnostic Log"
780
  msgstr ""
781
 
782
- #: ../dashboard.php:4781
783
  msgid "Changelog"
784
  msgstr ""
785
 
786
- #: ../dashboard.php:4782
787
  msgid "License"
788
  msgstr ""
789
 
790
- #: ../dashboard.php:4883
791
  msgid "Help"
792
  msgstr ""
793
 
794
- #: ../dashboard.php:4932
795
  msgid "Incorrect IP address or IP range"
796
  msgstr ""
797
 
798
- #: ../dashboard.php:4936
799
  msgid "The IP address you are trying to add is already in the list"
800
  msgstr ""
801
 
802
- #: ../dashboard.php:5071
803
  msgid "These features are available in a professional version of the plugin."
804
  msgstr ""
805
 
806
- #: ../dashboard.php:5072
807
  msgid "Know more about all advantages at"
808
  msgstr ""
809
 
810
- #: ../dashboard.php:5086 ../admin/cerber-admin.php:721 ../admin/cerber-admin.php:
811
  #: 888 ../cerber-tools.php:59
812
  msgid "Are you sure?"
813
  msgstr ""
814
 
815
- #: ../dashboard.php:5107
816
  msgid "Log In"
817
  msgstr ""
818
 
819
- #: ../dashboard.php:5108
820
  msgid "Log Out"
821
  msgstr ""
822
 
823
- #: ../dashboard.php:5109
824
  msgid "Register"
825
  msgstr ""
826
 
827
- #: ../dashboard.php:5112
828
  msgid "WooCommerce Log In"
829
  msgstr ""
830
 
831
- #: ../dashboard.php:5113
832
  msgid "WooCommerce Log Out"
833
  msgstr ""
834
 
835
- #: ../dashboard.php:5152 ../dashboard.php:5153
836
  msgid "Add to menu"
837
  msgstr ""
838
 
839
  #. Name of the plugin
840
- msgid "WP Cerber Security, Antispam & Malware Scan"
841
  msgstr ""
842
 
843
  #. URI of the plugin
@@ -861,350 +861,350 @@ msgstr ""
861
  msgid "Check for requests"
862
  msgstr ""
863
 
864
- #: ../common.php:280
865
  msgid "Malicious activities mitigated"
866
  msgstr ""
867
 
868
- #: ../common.php:283
869
  msgid "Spam comments denied"
870
  msgstr ""
871
 
872
- #: ../common.php:284
873
  msgid "Spam form submissions denied"
874
  msgstr ""
875
 
876
- #: ../common.php:285
877
  msgid "Malicious IP addresses detected"
878
  msgstr ""
879
 
880
- #: ../common.php:286
881
  msgid "Lockouts occurred"
882
  msgstr ""
883
 
884
- #: ../common.php:340 ../common.php:418 ../common.php:423 ../common.php:429 ..
885
- #: /common.php:434 ../admin/cerber-settings.php:649 ../admin/cerber-settings.php:
886
- #: 669 ../admin/cerber-settings.php:749 ../admin/cerber-admin.php:858 ../cerber-
887
- #: load.php:651 ../cerber-load.php:663 ../cerber-load.php:670 ../cerber-load.php:
888
- #: 1018 ../cerber-load.php:1549 ../cerber-load.php:1555 ../cerber-load.php:1560 ..
889
  #: /cerber-load.php:1567 ../cerber-load.php:1574 ../cerber-load.php:1580 ..
890
  #: /cerber-load.php:1587 ../cerber-load.php:1752 ../cerber-load.php:1889 ..
891
  #: /nexus/cerber-nexus-slave.php:204 ../nexus/cerber-nexus-slave.php:215
892
  msgid "ERROR:"
893
  msgstr ""
894
 
895
- #: ../common.php:1326
896
  msgid "User created"
897
  msgstr ""
898
 
899
- #: ../common.php:1327
900
  msgid "User registered"
901
  msgstr ""
902
 
903
- #: ../common.php:1328
904
  msgid "User deleted"
905
  msgstr ""
906
 
907
- #: ../common.php:1329
908
  msgid "Logged in"
909
  msgstr ""
910
 
911
- #: ../common.php:1330
912
  msgid "Logged out"
913
  msgstr ""
914
 
915
- #: ../common.php:1331
916
  msgid "Login failed"
917
  msgstr ""
918
 
919
- #: ../common.php:1335
920
  msgid "IP subnet blocked"
921
  msgstr ""
922
 
923
- #: ../common.php:1338
924
  msgid "Citadel activated!"
925
  msgstr ""
926
 
927
- #: ../common.php:1339
928
  msgid "Spam comment denied"
929
  msgstr ""
930
 
931
- #: ../common.php:1340
932
  msgid "Spam form submission denied"
933
  msgstr ""
934
 
935
- #: ../common.php:1341
936
  msgid "Form submission denied"
937
  msgstr ""
938
 
939
- #: ../common.php:1342
940
  msgid "Comment denied"
941
  msgstr ""
942
 
943
- #: ../common.php:1351
944
  msgid "Password changed"
945
  msgstr ""
946
 
947
- #: ../common.php:1352
948
  msgid "Password reset requested"
949
  msgstr ""
950
 
951
- #: ../common.php:1354
952
  msgid "reCAPTCHA verification failed"
953
  msgstr ""
954
 
955
- #: ../common.php:1355
956
  msgid "reCAPTCHA settings are incorrect"
957
  msgstr ""
958
 
959
- #: ../common.php:1356
960
  msgid "Request to the Google reCAPTCHA service failed"
961
  msgstr ""
962
 
963
- #: ../common.php:1358 ../common.php:1454
964
  msgid "Attempt to access prohibited URL"
965
  msgstr ""
966
 
967
- #: ../common.php:1359 ../common.php:1455
968
  msgid "Attempt to log in with non-existing username"
969
  msgstr ""
970
 
971
- #: ../common.php:1360 ../common.php:1456
972
  msgid "Attempt to log in with prohibited username"
973
  msgstr ""
974
 
975
- #: ../common.php:1362
976
  msgid "Attempt to log in denied"
977
  msgstr ""
978
 
979
- #: ../common.php:1363
980
  msgid "Attempt to register denied"
981
  msgstr ""
982
 
983
- #: ../common.php:1364 ../common.php:1460
984
- msgid "Probing for vulnerable PHP code"
985
  msgstr ""
986
 
987
- #: ../common.php:1365
988
  msgid "Attempt to upload malicious file denied"
989
  msgstr ""
990
 
991
- #: ../common.php:1366
992
  msgid "File upload denied"
993
  msgstr ""
994
 
995
- #: ../common.php:1368
996
  msgid "Request to REST API denied"
997
  msgstr ""
998
 
999
- #: ../common.php:1369
1000
  msgid "XML-RPC request denied"
1001
  msgstr ""
1002
 
1003
- #: ../common.php:1370
1004
  msgid "User creation denied"
1005
  msgstr ""
1006
 
1007
- #: ../common.php:1371
1008
  msgid "User row update denied"
1009
  msgstr ""
1010
 
1011
- #: ../common.php:1372
1012
  msgid "Role update denied"
1013
  msgstr ""
1014
 
1015
- #: ../common.php:1373
1016
  msgid "Setting update denied"
1017
  msgstr ""
1018
 
1019
- #: ../common.php:1374
1020
  msgid "User metadata update denied"
1021
  msgstr ""
1022
 
1023
- #: ../common.php:1376
1024
  msgid "Malicious request denied"
1025
  msgstr ""
1026
 
1027
- #: ../common.php:1379
1028
  msgid "User activated"
1029
  msgstr ""
1030
 
1031
- #: ../common.php:1382
1032
  msgid "Invalid master credentials"
1033
  msgstr ""
1034
 
1035
- #: ../common.php:1390
1036
  msgid "Bot detected"
1037
  msgstr ""
1038
 
1039
- #: ../common.php:1391
1040
  msgid "Citadel mode is active"
1041
  msgstr ""
1042
 
1043
- #: ../common.php:1393
1044
  msgid "IP address is locked out"
1045
  msgstr ""
1046
 
1047
- #: ../common.php:1394
1048
  msgid "IP blacklisted"
1049
  msgstr ""
1050
 
1051
- #: ../common.php:1395
1052
  msgid "Malicious activity detected"
1053
  msgstr ""
1054
 
1055
- #: ../common.php:1396
1056
  msgid "Blocked by country rule"
1057
  msgstr ""
1058
 
1059
- #: ../common.php:1397
1060
  msgid "Limit reached"
1061
  msgstr ""
1062
 
1063
- #: ../common.php:1398
1064
  msgid "Multiple suspicious activities"
1065
  msgstr ""
1066
 
1067
- #: ../common.php:1399
1068
  msgid "Denied"
1069
  msgstr ""
1070
 
1071
- #: ../common.php:1401
1072
  msgid "Suspicious number of fields"
1073
  msgstr ""
1074
 
1075
- #: ../common.php:1402
1076
  msgid "Suspicious number of nested values"
1077
  msgstr ""
1078
 
1079
- #: ../common.php:1403 ../common.php:1461
1080
  msgid "Malicious code detected"
1081
  msgstr ""
1082
 
1083
- #: ../common.php:1404
1084
  msgid "Suspicious SQL code detected"
1085
  msgstr ""
1086
 
1087
- #: ../common.php:1405
1088
  msgid "Suspicious JavaScript code detected"
1089
  msgstr ""
1090
 
1091
- #: ../common.php:1406
1092
  msgid "Blocked by administrator"
1093
  msgstr ""
1094
 
1095
- #: ../common.php:1407
1096
  msgid "Site policy enforcement"
1097
  msgstr ""
1098
 
1099
- #: ../common.php:1408
1100
  msgid "2FA code verified"
1101
  msgstr ""
1102
 
1103
- #: ../common.php:1409
1104
  msgid "Initiated by the user"
1105
  msgstr ""
1106
 
1107
- #: ../common.php:1412
1108
  msgid "Email address is prohibited"
1109
  msgstr ""
1110
 
1111
- #: ../common.php:1414
1112
  msgid "Permission denied"
1113
  msgstr ""
1114
 
1115
- #: ../common.php:1416
1116
  msgid "Invalid user"
1117
  msgstr ""
1118
 
1119
- #: ../common.php:1417
1120
  msgid "Incorrect password"
1121
  msgstr ""
1122
 
1123
- #: ../common.php:1420
1124
  msgid "IP whitelisted"
1125
  msgstr ""
1126
 
1127
- #: ../common.php:1452
1128
  msgid "Limit on login attempts is reached"
1129
  msgstr ""
1130
 
1131
- #: ../common.php:1453
1132
  msgid "Attempt to access"
1133
  msgstr ""
1134
 
1135
- #: ../common.php:1457
1136
  msgid "Limit on failed reCAPTCHA verifications is reached"
1137
  msgstr ""
1138
 
1139
- #: ../common.php:1458
1140
  msgid "Bot activity is detected"
1141
  msgstr ""
1142
 
1143
- #: ../common.php:1459
1144
  msgid "Multiple suspicious activities were detected"
1145
  msgstr ""
1146
 
1147
- #: ../common.php:1462
1148
  msgid "Attempt to upload a file with malicious code"
1149
  msgstr ""
1150
 
1151
- #: ../common.php:1464
1152
  msgid "Multiple erroneous requests"
1153
  msgstr ""
1154
 
1155
- #: ../common.php:1465
1156
  msgid "Multiple suspicious requests"
1157
  msgstr ""
1158
 
1159
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
1160
- #: ../common.php:1602
1161
  #, php-format
1162
  msgid "%s sec"
1163
  msgid_plural "%s secs"
1164
  msgstr[0] ""
1165
  msgstr[1] ""
1166
 
1167
- #: ../common.php:1609
1168
  #, php-format
1169
  msgid "%s ago"
1170
  msgstr ""
1171
 
1172
- #: ../common.php:1609
1173
  #, php-format
1174
  msgctxt "preposition of a period of time like: in 6 hours"
1175
  msgid "in %s"
1176
  msgstr ""
1177
 
1178
- #: ../common.php:1716
1179
  msgid "Bytes"
1180
  msgstr ""
1181
 
1182
- #: ../common.php:1822
1183
  #, php-format
1184
  msgid "A new version of %s is available. Please install it."
1185
  msgstr ""
1186
 
1187
- #: ../common.php:1842
1188
  msgid "Not specified"
1189
  msgstr ""
1190
 
1191
- #: ../common.php:2767
1192
  msgid "Unable to create the directory"
1193
  msgstr ""
1194
 
1195
- #: ../common.php:2772
1196
  msgid "Destination folder access denied"
1197
  msgstr ""
1198
 
1199
- #: ../common.php:2775
1200
  msgid "File not found"
1201
  msgstr ""
1202
 
1203
- #: ../common.php:2778
1204
  msgid "Unable to copy the file"
1205
  msgstr ""
1206
 
1207
- #: ../common.php:2784
1208
  msgid "Unable to delete the file"
1209
  msgstr ""
1210
 
@@ -1215,12 +1215,8 @@ msgid ""
1215
  "more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1216
  msgstr ""
1217
 
1218
- #: ../cerber-news.php:126
1219
- msgid "Awesome!"
1220
- msgstr ""
1221
-
1222
  #: ../admin/cerber-settings.php:100 ../admin/cerber-settings.php:270 ../cerber-
1223
- #: lab.php:840
1224
  msgid "Know more"
1225
  msgstr ""
1226
 
@@ -1252,71 +1248,71 @@ msgstr ""
1252
  msgid "Enable after %s failed login attempts in the last %s minutes"
1253
  msgstr ""
1254
 
1255
- #: ../admin/cerber-settings.php:513
1256
  msgid "Select one or more roles"
1257
  msgstr ""
1258
 
1259
- #: ../admin/cerber-settings.php:537
1260
  msgid "Sunday"
1261
  msgstr ""
1262
 
1263
- #: ../admin/cerber-settings.php:538
1264
  msgid "Monday"
1265
  msgstr ""
1266
 
1267
- #: ../admin/cerber-settings.php:539
1268
  msgid "Tuesday"
1269
  msgstr ""
1270
 
1271
- #: ../admin/cerber-settings.php:540
1272
  msgid "Wednesday"
1273
  msgstr ""
1274
 
1275
- #: ../admin/cerber-settings.php:541
1276
  msgid "Thursday"
1277
  msgstr ""
1278
 
1279
- #: ../admin/cerber-settings.php:542
1280
  msgid "Friday"
1281
  msgstr ""
1282
 
1283
- #: ../admin/cerber-settings.php:543
1284
  msgid "Saturday"
1285
  msgstr ""
1286
 
1287
- #: ../admin/cerber-settings.php:553
1288
  msgctxt "preposition of time like: at 11:00"
1289
  msgid "at"
1290
  msgstr ""
1291
 
1292
- #: ../admin/cerber-settings.php:572
1293
  msgid "Click to send now"
1294
  msgstr ""
1295
 
1296
- #: ../admin/cerber-settings.php:650
1297
  msgid "Plugin initialization mode has not been changed"
1298
  msgstr ""
1299
 
1300
- #: ../admin/cerber-settings.php:677 ../admin/cerber-settings.php:678
1301
  msgid "Attention! You have changed the login URL! The new login URL is"
1302
  msgstr ""
1303
 
1304
- #: ../admin/cerber-settings.php:679 ../admin/cerber-settings.php:680
1305
  msgid ""
1306
  "If you use a caching plugin, you have to add your new login URL to the list "
1307
  "of pages not to cache."
1308
  msgstr ""
1309
 
1310
- #: ../admin/cerber-settings.php:773 ../admin/cerber-settings.php:785 ..
1311
- #: /admin/cerber-settings.php:942
1312
  msgid "<strong>ERROR</strong>: please enter a valid email address."
1313
  msgstr ""
1314
 
1315
- #: ../admin/cerber-settings.php:948
1316
  msgid "The schedule has been updated"
1317
  msgstr ""
1318
 
1319
- #: ../admin/cerber-settings.php:951
1320
  msgid "Unable to update the schedule"
1321
  msgstr ""
1322
 
@@ -1336,7 +1332,7 @@ msgstr ""
1336
  msgid "Performance"
1337
  msgstr ""
1338
 
1339
- #: ../admin/cerber-admin.php:67 ../nexus/cerber-slave-list.php:337
1340
  msgid "Vulnerabilities"
1341
  msgstr ""
1342
 
@@ -1372,7 +1368,7 @@ msgstr ""
1372
  msgid "Critical issues"
1373
  msgstr ""
1374
 
1375
- #: ../admin/cerber-admin.php:103 ../cerber-scanner.php:4781
1376
  msgid "Issues total"
1377
  msgstr ""
1378
 
@@ -1470,7 +1466,7 @@ msgid "Automatic deletion"
1470
  msgstr ""
1471
 
1472
  #: ../admin/cerber-admin.php:755 ../admin/cerber-admin.php:910 ../admin/cerber-
1473
- #: admin.php:1355
1474
  msgid "Size"
1475
  msgstr ""
1476
 
@@ -1518,83 +1514,83 @@ msgstr ""
1518
  msgid "Added"
1519
  msgstr ""
1520
 
1521
- #: ../admin/cerber-admin.php:909 ../admin/cerber-admin.php:1356
1522
  msgid "Modified"
1523
  msgstr ""
1524
 
1525
- #: ../admin/cerber-admin.php:1020
1526
  msgid "Files without extension"
1527
  msgstr ""
1528
 
1529
- #: ../admin/cerber-admin.php:1021
1530
  msgid "Back to list"
1531
  msgstr ""
1532
 
1533
- #: ../admin/cerber-admin.php:1081
1534
  msgid "Brief summary"
1535
  msgstr ""
1536
 
1537
- #: ../admin/cerber-admin.php:1132
1538
  msgid "Folder"
1539
  msgstr ""
1540
 
1541
- #: ../admin/cerber-admin.php:1133
1542
  msgid "Path"
1543
  msgstr ""
1544
 
1545
- #: ../admin/cerber-admin.php:1134 ../admin/cerber-admin.php:1228
1546
  msgid "Files"
1547
  msgstr ""
1548
 
1549
- #: ../admin/cerber-admin.php:1135 ../admin/cerber-admin.php:1229
1550
  msgid "Space Occupied"
1551
  msgstr ""
1552
 
1553
- #: ../admin/cerber-admin.php:1199
1554
  msgid "No extension"
1555
  msgstr ""
1556
 
1557
- #: ../admin/cerber-admin.php:1224
1558
  msgid "File extensions statistics"
1559
  msgstr ""
1560
 
1561
- #: ../admin/cerber-admin.php:1227
1562
  msgid "Extension"
1563
  msgstr ""
1564
 
1565
- #: ../admin/cerber-admin.php:1230
1566
  msgid "Smallest"
1567
  msgstr ""
1568
 
1569
- #: ../admin/cerber-admin.php:1231
1570
  msgid "Largest"
1571
  msgstr ""
1572
 
1573
- #: ../admin/cerber-admin.php:1232
1574
  msgid "Average Size"
1575
  msgstr ""
1576
 
1577
- #: ../admin/cerber-admin.php:1233
1578
  msgid "Oldest"
1579
  msgstr ""
1580
 
1581
- #: ../admin/cerber-admin.php:1234
1582
  msgid "Newest"
1583
  msgstr ""
1584
 
1585
- #: ../admin/cerber-admin.php:1250
1586
  msgid "Top 10 largest files"
1587
  msgstr ""
1588
 
1589
- #: ../admin/cerber-admin.php:1354
1590
  msgid "File Name"
1591
  msgstr ""
1592
 
1593
- #: ../cerber-lab.php:836
1594
  msgid "Want to make WP Cerber even more powerful?"
1595
  msgstr ""
1596
 
1597
- #: ../cerber-lab.php:837
1598
  msgid ""
1599
  "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. "
1600
  "This helps the plugin team to develop new algorithms for WP Cerber that will "
@@ -1602,49 +1598,49 @@ msgid ""
1602
  "everyday. You can disable the sending in the plugin settings at any time."
1603
  msgstr ""
1604
 
1605
- #: ../cerber-lab.php:838
1606
  msgid "OK, nail them all"
1607
  msgstr ""
1608
 
1609
- #: ../cerber-lab.php:839
1610
  msgid "NO, maybe later"
1611
  msgstr ""
1612
 
1613
- #: ../cerber-load.php:343
1614
  msgid "You are not allowed to log in. Ask your administrator for assistance."
1615
  msgstr ""
1616
 
1617
- #: ../cerber-load.php:349
1618
  #, php-format
1619
  msgid ""
1620
  "You have exceeded the number of allowed login attempts. Please try again in "
1621
  "%d minutes."
1622
  msgstr ""
1623
 
1624
- #: ../cerber-load.php:353
1625
  msgid "You are not allowed to log in"
1626
  msgstr ""
1627
 
1628
- #: ../cerber-load.php:368
1629
  #, php-format
1630
  msgid "You have only one attempt remaining."
1631
  msgid_plural "You have %d attempts remaining."
1632
  msgstr[0] ""
1633
  msgstr[1] ""
1634
 
1635
- #: ../cerber-load.php:680
1636
  msgid ""
1637
  "Human verification failed. Please click the square box in the reCAPTCHA "
1638
  "block below."
1639
  msgstr ""
1640
 
1641
- #: ../cerber-load.php:818
1642
  msgid ""
1643
  "> > > Translator of WP Cerber? To get the PRO license for free, drop your "
1644
  "contacts here: https://wpcerber.com/contact/"
1645
  msgstr ""
1646
 
1647
- #: ../cerber-load.php:1127
1648
  #, php-format
1649
  msgid ""
1650
  "<strong>ERROR</strong>: The password you entered for the username %s is "
@@ -1672,195 +1668,200 @@ msgstr ""
1672
  msgid "Sorry, human verification failed."
1673
  msgstr ""
1674
 
1675
- #: ../cerber-load.php:4029
1676
  msgid "We're sorry, you are not allowed to proceed"
1677
  msgstr ""
1678
 
1679
- #: ../cerber-load.php:4145
1680
  msgid "WP Cerber notify"
1681
  msgstr ""
1682
 
1683
- #: ../cerber-load.php:4169
1684
  msgid "Citadel mode is activated"
1685
  msgstr ""
1686
 
1687
- #: ../cerber-load.php:4171
1688
  #, php-format
1689
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
1690
  msgstr ""
1691
 
1692
- #: ../cerber-load.php:4172
1693
  #, php-format
1694
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
1695
  msgstr ""
1696
 
1697
- #: ../cerber-load.php:4173 ../cerber-load.php:4985
1698
  msgid "View activity in dashboard"
1699
  msgstr ""
1700
 
1701
- #: ../cerber-load.php:4197
1702
  msgid "unspecified"
1703
  msgstr ""
1704
 
1705
- #: ../cerber-load.php:4200
1706
  msgid "Number of lockouts is increasing"
1707
  msgstr ""
1708
 
1709
- #: ../cerber-load.php:4202
1710
  msgid "Number of active lockouts"
1711
  msgstr ""
1712
 
1713
- #: ../cerber-load.php:4203
1714
  #, php-format
1715
  msgid "Last lockout was added: %s for IP %s"
1716
  msgstr ""
1717
 
1718
- #: ../cerber-load.php:4205
1719
  msgid "View activity for this IP"
1720
  msgstr ""
1721
 
1722
- #: ../cerber-load.php:4206
1723
  msgid "View lockouts in dashboard"
1724
  msgstr ""
1725
 
1726
- #: ../cerber-load.php:4209 ../cerber-load.php:4211
1727
  msgid "A new version of WP Cerber is available to install"
1728
  msgstr ""
1729
 
1730
- #: ../cerber-load.php:4210
1731
  msgid "Hi!"
1732
  msgstr ""
1733
 
1734
- #: ../cerber-load.php:4213 ../cerber-load.php:4224 ../nexus/cerber-slave-list.php:
1735
  #: 44
1736
  msgid "Website"
1737
  msgstr ""
1738
 
1739
- #: ../cerber-load.php:4216 ../cerber-load.php:4217
1740
  msgid "The WP Cerber security plugin has been deactivated"
1741
  msgstr ""
1742
 
1743
- #: ../cerber-load.php:4219
1744
  msgid "Not logged in"
1745
  msgstr ""
1746
 
1747
- #: ../cerber-load.php:4225
1748
  msgid "By user"
1749
  msgstr ""
1750
 
1751
- #: ../cerber-load.php:4226
1752
  msgid "From IP address"
1753
  msgstr ""
1754
 
1755
- #: ../cerber-load.php:4229
1756
  msgid "From country"
1757
  msgstr ""
1758
 
1759
- #: ../cerber-load.php:4233
1760
  msgid "The WP Cerber security plugin is now active"
1761
  msgstr ""
1762
 
1763
- #: ../cerber-load.php:4234 ../cerber-load.php:5259
1764
  msgid "WP Cerber is now active and has started protecting your site"
1765
  msgstr ""
1766
 
1767
- #: ../cerber-load.php:4236 ../cerber-load.php:5262
1768
  msgid "Getting Started Guide"
1769
  msgstr ""
1770
 
1771
- #: ../cerber-load.php:4245
1772
  msgid "New Custom login URL"
1773
  msgstr ""
1774
 
1775
- #: ../cerber-load.php:4249 ../cerber-load.php:4250
1776
  msgid "A new activity has been recorded"
1777
  msgstr ""
1778
 
1779
- #: ../cerber-load.php:4255
1780
  msgid "Weekly report"
1781
  msgstr ""
1782
 
1783
- #: ../cerber-load.php:4258 ../cerber-load.php:4268
1784
  msgid "To change reporting settings visit"
1785
  msgstr ""
1786
 
1787
- #: ../cerber-load.php:4265
1788
  msgid "Scanner Report"
1789
  msgstr ""
1790
 
1791
- #: ../cerber-load.php:4294
1792
  msgid "Your login page:"
1793
  msgstr ""
1794
 
1795
- #: ../cerber-load.php:4299
1796
  msgid "Your license is valid until"
1797
  msgstr ""
1798
 
1799
- #: ../cerber-load.php:4302
1800
  msgid "This message was sent by"
1801
  msgstr ""
1802
 
1803
- #: ../cerber-load.php:4323
1804
  #, php-format
1805
  msgid "Your last sign-in was %s from %s"
1806
  msgstr ""
1807
 
1808
- #: ../cerber-load.php:4393
1809
  msgid "Weekly Report"
1810
  msgstr ""
1811
 
1812
- #: ../cerber-load.php:4405
1813
  msgid "Activity details"
1814
  msgstr ""
1815
 
1816
- #: ../cerber-load.php:4419
1817
  msgid "Attempts to log in with non-existing usernames"
1818
  msgstr ""
1819
 
1820
- #: ../cerber-load.php:4953
1821
  msgid "IP"
1822
  msgstr ""
1823
 
1824
- #: ../cerber-load.php:4957 ../cerber-users.php:978
1825
  msgid "User"
1826
  msgstr ""
1827
 
1828
- #: ../cerber-load.php:4961
1829
  msgid "Username used"
1830
  msgstr ""
1831
 
1832
- #: ../cerber-load.php:4965
1833
  msgid "Search string"
1834
  msgstr ""
1835
 
1836
- #: ../cerber-load.php:4986
1837
  msgid "To delete the alert, click here"
1838
  msgstr ""
1839
 
1840
- #: ../cerber-load.php:5204
1841
  #, php-format
1842
  msgid "The WP Cerber requires PHP %s or higher. You are running"
1843
  msgstr ""
1844
 
1845
- #: ../cerber-load.php:5208
1846
  #, php-format
1847
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
1848
  msgstr ""
1849
 
1850
- #: ../cerber-load.php:5218
1851
  msgid "Can't activate WP Cerber due to a database error."
1852
  msgstr ""
1853
 
1854
- #: ../cerber-load.php:5244
1855
- msgid "Your IP address is added to the"
 
 
 
 
 
1856
  msgstr ""
1857
 
1858
- #: ../cerber-load.php:5276
1859
  msgid "Import settings"
1860
  msgstr ""
1861
 
1862
- #: ../cerber-load.php:5277 ../nexus/cerber-nexus.php:64
1863
- msgid "Enable slave mode"
1864
  msgstr ""
1865
 
1866
  #: ../cerber-users.php:10 ../cerber-users.php:439
@@ -1889,7 +1890,7 @@ msgctxt "e.g. blocked by John at 11:00"
1889
  msgid "blocked by %s at %s"
1890
  msgstr ""
1891
 
1892
- #: ../cerber-users.php:68 ../settings.php:533
1893
  msgid "User Message"
1894
  msgstr ""
1895
 
@@ -1941,7 +1942,7 @@ msgstr ""
1941
  msgid "Redirect user after logout"
1942
  msgstr ""
1943
 
1944
- #: ../cerber-users.php:432 ../settings.php:582
1945
  msgid "User session expiration time"
1946
  msgstr ""
1947
 
@@ -1997,46 +1998,50 @@ msgstr ""
1997
  msgid "Policies have been updated"
1998
  msgstr ""
1999
 
2000
- #: ../cerber-users.php:615
2001
  #, php-format
2002
  msgid "Session has been terminated"
2003
  msgid_plural "%s sessions have been terminated"
2004
  msgstr[0] ""
2005
  msgstr[1] ""
2006
 
2007
- #: ../cerber-users.php:951
2008
  msgid "WP Cerber Personal Data Eraser"
2009
  msgstr ""
2010
 
2011
- #: ../cerber-users.php:980
2012
  msgid "Created"
2013
  msgstr ""
2014
 
2015
- #: ../cerber-users.php:1001
2016
  msgid "Terminate session"
2017
  msgstr ""
2018
 
2019
- #: ../cerber-users.php:1002
2020
  msgid "Block user"
2021
  msgstr ""
2022
 
2023
- #: ../cerber-users.php:1070 ../nexus/cerber-slave-list.php:244
 
 
 
 
2024
  msgid "Search results for:"
2025
  msgstr ""
2026
 
2027
- #: ../cerber-users.php:1112
2028
  msgid "Profile"
2029
  msgstr ""
2030
 
2031
- #: ../cerber-users.php:1125
2032
  msgid "All Logins"
2033
  msgstr ""
2034
 
2035
- #: ../cerber-users.php:1126
2036
  msgid "User Activity"
2037
  msgstr ""
2038
 
2039
- #: ../cerber-users.php:1172
2040
  msgid "Terminate"
2041
  msgstr ""
2042
 
@@ -2106,7 +2111,7 @@ msgstr ""
2106
  msgid "Aggressive lockout"
2107
  msgstr ""
2108
 
2109
- #: ../settings.php:165 ../settings.php:526 ../settings.php:726
2110
  msgid "Use White IP Access List"
2111
  msgstr ""
2112
 
@@ -2228,16 +2233,16 @@ msgstr ""
2228
  msgid "Send notification to admin email"
2229
  msgstr ""
2230
 
2231
- #: ../settings.php:279 ../settings.php:813
2232
  msgid "Keep log records of not logged in visitors for"
2233
  msgstr ""
2234
 
2235
- #: ../settings.php:280 ../settings.php:286 ../settings.php:814 ../settings.php:
2236
- #: 820 ../settings.php:891 ../settings.php:1082
2237
  msgid "days"
2238
  msgstr ""
2239
 
2240
- #: ../settings.php:285 ../settings.php:819
2241
  msgid "Keep log records of logged in users for"
2242
  msgstr ""
2243
 
@@ -2394,792 +2399,812 @@ msgid ""
2394
  "string per line."
2395
  msgstr ""
2396
 
2397
- #: ../settings.php:421
2398
  msgid "Protect user accounts"
2399
  msgstr ""
2400
 
2401
- #: ../settings.php:426
2402
  msgid ""
2403
  "Restrict user account creation and user management with the following "
2404
  "policies"
2405
  msgstr ""
2406
 
2407
- #: ../settings.php:432
2408
  msgid "User registrations are limited to these roles"
2409
  msgstr ""
2410
 
2411
- #: ../settings.php:438
2412
  msgid "Users with these roles are permitted to create new accounts"
2413
  msgstr ""
2414
 
2415
- #: ../settings.php:443
2416
  msgid "Users with these roles are permitted to change sensitive user data"
2417
  msgstr ""
2418
 
2419
- #: ../settings.php:448 ../settings.php:476 ../settings.php:505
2420
  msgid "Do not apply these policies to the IP addresses in the White IP Access List"
2421
  msgstr ""
2422
 
2423
- #: ../settings.php:456
2424
  msgid "Protect user roles"
2425
  msgstr ""
2426
 
2427
- #: ../settings.php:460
2428
  msgid "Restrict roles and capabilities management with the following policies"
2429
  msgstr ""
2430
 
2431
- #: ../settings.php:466
2432
  msgid "Users with these roles are permitted to add new roles"
2433
  msgstr ""
2434
 
2435
- #: ../settings.php:471
2436
  msgid "Users with these roles are permitted to change role capabilities"
2437
  msgstr ""
2438
 
2439
- #: ../settings.php:484
2440
  msgid "Protect site settings"
2441
  msgstr ""
2442
 
2443
- #: ../settings.php:488
2444
  msgid "Restrict updating site settings with the following policies"
2445
  msgstr ""
2446
 
2447
- #: ../settings.php:494
2448
  msgid "Users with these roles are permitted to change protected settings"
2449
  msgstr ""
2450
 
2451
- #: ../settings.php:499
2452
  msgid "Protected settings"
2453
  msgstr ""
2454
 
2455
- #: ../settings.php:519
2456
  msgid "Authorized users only"
2457
  msgstr ""
2458
 
2459
- #: ../settings.php:520
2460
  msgid "Only registered and logged in website users have access to the website"
2461
  msgstr ""
2462
 
2463
- #: ../settings.php:527
2464
  msgid "Do not apply these policy to the IP addresses in the White IP Access List"
2465
  msgstr ""
2466
 
2467
- #: ../settings.php:537 ../settings.php:1454
2468
  msgid "Only registered and logged in users are allowed to view this website"
2469
  msgstr ""
2470
 
2471
- #: ../settings.php:542
2472
  msgid "Redirect to URL"
2473
  msgstr ""
2474
 
2475
- #: ../settings.php:551
2476
  msgid "Registration limit"
2477
  msgstr ""
2478
 
2479
- #: ../settings.php:557
2480
  msgid "Restrict email addresses"
2481
  msgstr ""
2482
 
2483
- #: ../settings.php:560
2484
  msgid "No restrictions"
2485
  msgstr ""
2486
 
2487
- #: ../settings.php:561
2488
  msgid "Deny all email addresses that match the following"
2489
  msgstr ""
2490
 
2491
- #: ../settings.php:562
2492
  msgid "Permit only email addresses that match the following"
2493
  msgstr ""
2494
 
2495
- #: ../settings.php:567
2496
  msgid ""
2497
  "Specify email addresses, wildcards or REGEX patterns. Use comma to separate "
2498
  "items."
2499
  msgstr ""
2500
 
2501
- #: ../settings.php:567 ../settings.php:575
2502
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
2503
  msgstr ""
2504
 
2505
- #: ../settings.php:574
2506
  msgid "Prohibited usernames"
2507
  msgstr ""
2508
 
2509
- #: ../settings.php:575
2510
  msgid ""
2511
  "Usernames from this list are not allowed to log in or register. Any IP "
2512
  "address, have tried to use any of these usernames, will be immediately "
2513
  "blocked. Use comma to separate logins."
2514
  msgstr ""
2515
 
2516
- #: ../settings.php:583
2517
  msgid "minutes (leave empty to use the default WordPress value)"
2518
  msgstr ""
2519
 
2520
- #: ../settings.php:589
2521
  msgid "Sort users in dashboard"
2522
  msgstr ""
2523
 
2524
- #: ../settings.php:590
2525
  msgid "by date of registration"
2526
  msgstr ""
2527
 
2528
- #: ../settings.php:598
2529
  msgid "Personal Data"
2530
  msgstr ""
2531
 
2532
- #: ../settings.php:600
2533
  msgid ""
2534
  "These features help your organization to be in compliance with personal data "
2535
  "protection laws"
2536
  msgstr ""
2537
 
2538
- #: ../settings.php:604
2539
  msgid "Enable data erase"
2540
  msgstr ""
2541
 
2542
- #: ../settings.php:611
2543
  msgid "Terminate user sessions"
2544
  msgstr ""
2545
 
2546
- #: ../settings.php:612
2547
  msgid "Delete user sessions data when user data is erased"
2548
  msgstr ""
2549
 
2550
- #: ../settings.php:618
2551
  msgid "Enable data export"
2552
  msgstr ""
2553
 
2554
- #: ../settings.php:625
2555
  msgid "Include activity log events"
2556
  msgstr ""
2557
 
2558
- #: ../settings.php:631
2559
  msgid "Include traffic log entries"
2560
  msgstr ""
2561
 
2562
- #: ../settings.php:634
2563
  msgid "Request URL"
2564
  msgstr ""
2565
 
2566
- #: ../settings.php:635
2567
  msgid "Form fields data"
2568
  msgstr ""
2569
 
2570
- #: ../settings.php:636
2571
  msgid "Cookies"
2572
  msgstr ""
2573
 
2574
- #: ../settings.php:644
2575
  msgid "Email notifications"
2576
  msgstr ""
2577
 
2578
- #: ../settings.php:649
2579
  msgid "Lockout notifications"
2580
  msgstr ""
2581
 
2582
- #: ../settings.php:653 ../settings.php:700 ../settings.php:946
2583
  msgid "Email Address"
2584
  msgstr ""
2585
 
2586
- #: ../settings.php:654 ../settings.php:702 ../settings.php:785 ../settings.php:948
2587
  msgid "Use comma to specify multiple values"
2588
  msgstr ""
2589
 
2590
- #: ../settings.php:658
2591
  #, php-format
2592
  msgid "if empty, the website administrator email %s will be used"
2593
  msgstr ""
2594
 
2595
- #: ../settings.php:661
2596
  msgid "Notification limit"
2597
  msgstr ""
2598
 
2599
- #: ../settings.php:662
2600
  msgid "notifications are allowed per hour (0 means unlimited)"
2601
  msgstr ""
2602
 
2603
- #: ../settings.php:666
2604
  msgid "New version is available"
2605
  msgstr ""
2606
 
2607
- #: ../settings.php:672
2608
  msgid "Push notifications"
2609
  msgstr ""
2610
 
2611
- #: ../settings.php:673
2612
  msgid "Get notified instantly with mobile and desktop notifications"
2613
  msgstr ""
2614
 
2615
- #: ../settings.php:677
2616
  msgid "Pushbullet access token"
2617
  msgstr ""
2618
 
2619
- #: ../settings.php:680
2620
  msgid "Pushbullet device"
2621
  msgstr ""
2622
 
2623
- #: ../settings.php:687
2624
  msgid "Weekly reports"
2625
  msgstr ""
2626
 
2627
- #: ../settings.php:688
2628
  msgid ""
2629
  "Weekly report is a summary of all activities and suspicious events occurred "
2630
  "during the last seven days"
2631
  msgstr ""
2632
 
2633
- #: ../settings.php:691
2634
  msgid "Enable reporting"
2635
  msgstr ""
2636
 
2637
- #: ../settings.php:695
2638
  msgid "Send reports on"
2639
  msgstr ""
2640
 
2641
- #: ../settings.php:701 ../settings.php:947
2642
  msgid "if empty, the email addresses from the notification settings will be used"
2643
  msgstr ""
2644
 
2645
- #: ../settings.php:712
2646
  msgid "Traffic Inspection"
2647
  msgstr ""
2648
 
2649
- #: ../settings.php:713
2650
  msgid ""
2651
  "Traffic Inspector is a context-aware web application firewall (WAF) that "
2652
  "protects your website by recognizing and denying malicious HTTP requests"
2653
  msgstr ""
2654
 
2655
- #: ../settings.php:717
2656
  msgid "Enable traffic inspection"
2657
  msgstr ""
2658
 
2659
- #: ../settings.php:721 ../settings.php:749
2660
  msgid "Maximum compatibility"
2661
  msgstr ""
2662
 
2663
- #: ../settings.php:722 ../settings.php:750
2664
  msgid "Maximum security"
2665
  msgstr ""
2666
 
2667
- #: ../settings.php:730
2668
  msgid "Request whitelist"
2669
  msgstr ""
2670
 
2671
- #: ../settings.php:734
2672
  msgid ""
2673
  "Enter a request URI to exclude the request from inspection. One item per "
2674
  "line."
2675
  msgstr ""
2676
 
2677
- #: ../settings.php:734
2678
  msgid "To specify a REGEX pattern, enclose a whole line in two braces."
2679
  msgstr ""
2680
 
2681
- #: ../settings.php:740
2682
  msgid "Erroneous Request Shielding"
2683
  msgstr ""
2684
 
2685
- #: ../settings.php:742
2686
  msgid ""
2687
  "Block IP addresses that send excessive requests for non-existing pages or "
2688
  "scan website for security breaches"
2689
  msgstr ""
2690
 
2691
- #: ../settings.php:745
2692
  msgid "Enable error shielding"
2693
  msgstr ""
2694
 
2695
- #: ../settings.php:754
2696
  msgid "Ignore logged in users"
2697
  msgstr ""
2698
 
2699
- #: ../settings.php:761
2700
  msgid "Traffic Logging"
2701
  msgstr ""
2702
 
2703
- #: ../settings.php:762
2704
  msgid ""
2705
  "Enable optional traffic logging if you need to monitor suspicious and "
2706
  "malicious activity or solve security issues"
2707
  msgstr ""
2708
 
2709
- #: ../settings.php:766
2710
  msgid "Logging mode"
2711
  msgstr ""
2712
 
2713
- #: ../settings.php:769
2714
  msgid "Logging disabled"
2715
  msgstr ""
2716
 
2717
- #: ../settings.php:770
 
 
 
 
2718
  msgid "Smart"
2719
  msgstr ""
2720
 
2721
- #: ../settings.php:771
2722
  msgid "All traffic"
2723
  msgstr ""
2724
 
2725
- #: ../settings.php:775
2726
- msgid "Ignore crawlers"
 
 
 
 
2727
  msgstr ""
2728
 
2729
- #: ../settings.php:779
 
 
 
 
 
 
 
 
 
 
 
 
2730
  msgid "Save request fields"
2731
  msgstr ""
2732
 
2733
- #: ../settings.php:783
2734
  msgid "Mask these form fields"
2735
  msgstr ""
2736
 
2737
- #: ../settings.php:790
2738
  msgid "Save request headers"
2739
  msgstr ""
2740
 
2741
- #: ../settings.php:795
2742
  msgid "Save $_SERVER"
2743
  msgstr ""
2744
 
2745
- #: ../settings.php:799
2746
  msgid "Save request cookies"
2747
  msgstr ""
2748
 
2749
- #: ../settings.php:803
2750
  msgid "Save software errors"
2751
  msgstr ""
2752
 
2753
- #: ../settings.php:807
2754
  msgid "Page generation time threshold"
2755
  msgstr ""
2756
 
2757
- #: ../settings.php:808
2758
  msgid "milliseconds"
2759
  msgstr ""
2760
 
2761
- #: ../settings.php:828
2762
  msgid "Scanner settings"
2763
  msgstr ""
2764
 
2765
- #: ../settings.php:829
2766
  msgid ""
2767
  "The scanner monitors file changes, verifies the integrity of WordPress, "
2768
  "plugins, and themes, and detects malware"
2769
  msgstr ""
2770
 
2771
- #: ../settings.php:833
2772
  msgid "Custom signatures"
2773
  msgstr ""
2774
 
2775
- #: ../settings.php:837
2776
  msgid ""
2777
  "Specify custom PHP code signatures. One item per line. To specify a REGEX "
2778
  "pattern, enclose a whole line in two braces."
2779
  msgstr ""
2780
 
2781
- #: ../settings.php:840
2782
  msgid "Unwanted file extensions"
2783
  msgstr ""
2784
 
2785
- #: ../settings.php:844
2786
  msgid ""
2787
  "Specify file extensions to search for. Full scan only. Use comma to separate "
2788
  "items."
2789
  msgstr ""
2790
 
2791
- #: ../settings.php:847
2792
  msgid "Directories to exclude"
2793
  msgstr ""
2794
 
2795
- #: ../settings.php:851
2796
  msgid "Specify directories to exclude from scanning. One directory per line."
2797
  msgstr ""
2798
 
2799
- #: ../settings.php:854
2800
  msgid "Monitor new files"
2801
  msgstr ""
2802
 
2803
- #: ../settings.php:858 ../settings.php:867
2804
  msgid "Executable files"
2805
  msgstr ""
2806
 
2807
- #: ../settings.php:859 ../settings.php:868
2808
  msgid "All files"
2809
  msgstr ""
2810
 
2811
- #: ../settings.php:863
2812
  msgid "Monitor modified files"
2813
  msgstr ""
2814
 
2815
- #: ../settings.php:872
2816
  msgid "Change file permissions when necessary"
2817
  msgstr ""
2818
 
2819
- #: ../settings.php:876
2820
  msgid "Scan temporary directory"
2821
  msgstr ""
2822
 
2823
- #: ../settings.php:880
2824
  msgid "Scan session directory"
2825
  msgstr ""
2826
 
2827
- #: ../settings.php:884 ../settings.php:1187 ../settings.php:1215
2828
  msgid "Enable diagnostic logging"
2829
  msgstr ""
2830
 
2831
- #: ../settings.php:889
2832
  msgid "Delete quarantined files after"
2833
  msgstr ""
2834
 
2835
- #: ../settings.php:898
2836
  msgid "Automated recurring scan schedule"
2837
  msgstr ""
2838
 
2839
- #: ../settings.php:899
2840
  msgid ""
2841
  "The scanner automatically scans the website, removes malware and sends email "
2842
  "reports with the results of a scan"
2843
  msgstr ""
2844
 
2845
- #: ../settings.php:903
2846
  msgid "Launch Quick Scan"
2847
  msgstr ""
2848
 
2849
- #: ../settings.php:908
2850
  msgid "Launch Full Scan"
2851
  msgstr ""
2852
 
2853
- #: ../settings.php:915
2854
  msgid "Scan results reporting"
2855
  msgstr ""
2856
 
2857
- #: ../settings.php:916
2858
  msgid ""
2859
  "Configure what issues to include in the email report and the condition for "
2860
  "sending reports"
2861
  msgstr ""
2862
 
2863
- #: ../settings.php:920
2864
  msgid "Report an issue if any of the following is true"
2865
  msgstr ""
2866
 
2867
- #: ../settings.php:923 ../settings.php:969
2868
  msgid "Low severity"
2869
  msgstr ""
2870
 
2871
- #: ../settings.php:924 ../settings.php:970
2872
  msgid "Medium severity"
2873
  msgstr ""
2874
 
2875
- #: ../settings.php:925 ../settings.php:971
2876
  msgid "High severity"
2877
  msgstr ""
2878
 
2879
- #: ../settings.php:929
2880
  msgid "Send email report"
2881
  msgstr ""
2882
 
2883
- #: ../settings.php:932
2884
  msgid "After every scan"
2885
  msgstr ""
2886
 
2887
- #: ../settings.php:933
2888
  msgid "If any changes in scan results occurred"
2889
  msgstr ""
2890
 
2891
- #: ../settings.php:934
2892
  msgid "If new issues found"
2893
  msgstr ""
2894
 
2895
- #: ../settings.php:938
2896
  msgid "Include file sizes"
2897
  msgstr ""
2898
 
2899
- #: ../settings.php:942
2900
  msgid "Include scan errors"
2901
  msgstr ""
2902
 
2903
- #: ../settings.php:957
2904
  msgid "Automatic cleanup of malware and suspicious files"
2905
  msgstr ""
2906
 
2907
- #: ../settings.php:958
2908
  msgid ""
2909
  "These policies are automatically enforced at the end of every scheduled scan "
2910
  "based on its results. All affected files are moved to the quarantine"
2911
  msgstr ""
2912
 
2913
- #: ../settings.php:962
2914
  msgid "Delete unattended files"
2915
  msgstr ""
2916
 
2917
- #: ../settings.php:966
2918
  msgid "Files in the uploads folder"
2919
  msgstr ""
2920
 
2921
- #: ../settings.php:975
2922
  msgid "Files with unwanted extensions"
2923
  msgstr ""
2924
 
2925
- #: ../settings.php:981
2926
  msgid "Automatic recovery of modified and infected files"
2927
  msgstr ""
2928
 
2929
- #: ../settings.php:984
2930
  msgid "Recover WordPress files"
2931
  msgstr ""
2932
 
2933
- #: ../settings.php:988
2934
  msgid "Recover plugins files"
2935
  msgstr ""
2936
 
2937
- #: ../settings.php:994
2938
  msgid "Exclusions"
2939
  msgstr ""
2940
 
2941
- #: ../settings.php:995
2942
  msgid "These files will never be deleted during automatic cleanup."
2943
  msgstr ""
2944
 
2945
- #: ../settings.php:998
2946
  msgid "Files in the temporary directory"
2947
  msgstr ""
2948
 
2949
- #: ../settings.php:1002
2950
  msgid "Files in the sessions directory"
2951
  msgstr ""
2952
 
2953
- #: ../settings.php:1006
2954
  msgid "Files in these directories"
2955
  msgstr ""
2956
 
2957
- #: ../settings.php:1010
2958
  msgid "Use absolute paths. One item per line."
2959
  msgstr ""
2960
 
2961
- #: ../settings.php:1013
2962
  msgid "Files with these extensions"
2963
  msgstr ""
2964
 
2965
- #: ../settings.php:1017
2966
  msgid "Use comma to separate items."
2967
  msgstr ""
2968
 
2969
- #: ../settings.php:1024
2970
  msgid "Cerber anti-spam engine"
2971
  msgstr ""
2972
 
2973
- #: ../settings.php:1025
2974
  msgid "Spam protection for comment, registration and contact forms on a website"
2975
  msgstr ""
2976
 
2977
- #: ../settings.php:1029
2978
  msgid "Comment form"
2979
  msgstr ""
2980
 
2981
- #: ../settings.php:1030
2982
  msgid "Protect comment form with bot detection engine"
2983
  msgstr ""
2984
 
2985
- #: ../settings.php:1034 ../settings.php:1106
2986
  msgid "Registration form"
2987
  msgstr ""
2988
 
2989
- #: ../settings.php:1035
2990
  msgid "Protect registration form with bot detection engine"
2991
  msgstr ""
2992
 
2993
- #: ../settings.php:1039
2994
  msgid "Other forms"
2995
  msgstr ""
2996
 
2997
- #: ../settings.php:1040
2998
  msgid "Protect all forms on the website with bot detection engine"
2999
  msgstr ""
3000
 
3001
- #: ../settings.php:1046
3002
  msgid "Adjust anti-spam engine"
3003
  msgstr ""
3004
 
3005
- #: ../settings.php:1047
3006
  msgid ""
3007
  "These settings enable you to fine-tune the behavior of anti-spam algorithms "
3008
  "and avoid false positives"
3009
  msgstr ""
3010
 
3011
- #: ../settings.php:1050
3012
  msgid "Safe mode"
3013
  msgstr ""
3014
 
3015
- #: ../settings.php:1051
3016
  msgid "Use less restrictive policies (allow AJAX)"
3017
  msgstr ""
3018
 
3019
- #: ../settings.php:1056
3020
  msgid "Disable bot detection engine for logged in users"
3021
  msgstr ""
3022
 
3023
- #: ../settings.php:1060
3024
  msgid "Query whitelist"
3025
  msgstr ""
3026
 
3027
- #: ../settings.php:1061
3028
  msgid ""
3029
  "Enter a part of query string or query path to exclude a request from "
3030
  "inspection by the engine. One item per line."
3031
  msgstr ""
3032
 
3033
- #: ../settings.php:1070
3034
  msgid "Comment processing"
3035
  msgstr ""
3036
 
3037
- #: ../settings.php:1071
3038
  msgid "How the plugin processes comments submitted through the standard comment form"
3039
  msgstr ""
3040
 
3041
- #: ../settings.php:1074
3042
  msgid "If a spam comment detected"
3043
  msgstr ""
3044
 
3045
- #: ../settings.php:1076
3046
  msgid "Deny it completely"
3047
  msgstr ""
3048
 
3049
- #: ../settings.php:1076
3050
  msgid "Mark it as spam"
3051
  msgstr ""
3052
 
3053
- #: ../settings.php:1079
3054
  msgid "Trash spam comments"
3055
  msgstr ""
3056
 
3057
- #: ../settings.php:1081
3058
  msgid "Move spam comments to trash after"
3059
  msgstr ""
3060
 
3061
- #: ../settings.php:1088
3062
  msgid "reCAPTCHA settings"
3063
  msgstr ""
3064
 
3065
- #: ../settings.php:1089
3066
  msgid ""
3067
  "Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
3068
  "key on the Google website"
3069
  msgstr ""
3070
 
3071
- #: ../settings.php:1093
3072
  msgid "Site key"
3073
  msgstr ""
3074
 
3075
- #: ../settings.php:1097
3076
  msgid "Secret key"
3077
  msgstr ""
3078
 
3079
- #: ../settings.php:1101
3080
  msgid "Invisible reCAPTCHA"
3081
  msgstr ""
3082
 
3083
- #: ../settings.php:1102
3084
  msgid "Enable invisible reCAPTCHA"
3085
  msgstr ""
3086
 
3087
- #: ../settings.php:1102
3088
  msgid ""
3089
  "(do not enable it unless you get and enter the Site and Secret keys for the "
3090
  "invisible version)"
3091
  msgstr ""
3092
 
3093
- #: ../settings.php:1107
3094
  msgid "Enable reCAPTCHA for WordPress registration form"
3095
  msgstr ""
3096
 
3097
- #: ../settings.php:1112
3098
  msgid "Enable reCAPTCHA for WooCommerce registration form"
3099
  msgstr ""
3100
 
3101
- #: ../settings.php:1116
3102
  msgid "Lost password form"
3103
  msgstr ""
3104
 
3105
- #: ../settings.php:1117
3106
  msgid "Enable reCAPTCHA for WordPress lost password form"
3107
  msgstr ""
3108
 
3109
- #: ../settings.php:1122
3110
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
3111
  msgstr ""
3112
 
3113
- #: ../settings.php:1126
3114
  msgid "Login form"
3115
  msgstr ""
3116
 
3117
- #: ../settings.php:1127
3118
  msgid "Enable reCAPTCHA for WordPress login form"
3119
  msgstr ""
3120
 
3121
- #: ../settings.php:1132
3122
  msgid "Enable reCAPTCHA for WooCommerce login form"
3123
  msgstr ""
3124
 
3125
- #: ../settings.php:1137
3126
  msgid "Enable reCAPTCHA for WordPress comment form"
3127
  msgstr ""
3128
 
3129
- #: ../settings.php:1142
3130
  msgid "Disable reCAPTCHA for logged in users"
3131
  msgstr ""
3132
 
3133
- #: ../settings.php:1146
3134
  msgid "Limit attempts"
3135
  msgstr ""
3136
 
3137
- #: ../settings.php:1147
3138
  #, php-format
3139
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
3140
  msgstr ""
3141
 
3142
- #: ../settings.php:1154
3143
  msgid "Master settings"
3144
  msgstr ""
3145
 
3146
- #: ../settings.php:1162
3147
  msgid "Return to the website list"
3148
  msgstr ""
3149
 
3150
- #: ../settings.php:1166
3151
  msgid "Show \"Switched to\" notification"
3152
  msgstr ""
3153
 
3154
- #: ../settings.php:1170
3155
  msgid "Add @ site to the page title"
3156
  msgstr ""
3157
 
3158
- #: ../settings.php:1174
3159
  msgid "Use master language"
3160
  msgstr ""
3161
 
3162
- #: ../settings.php:1198
3163
  msgid "Limit access by IP address"
3164
  msgstr ""
3165
 
3166
- #: ../settings.php:1204
3167
  msgid "Access to this website"
3168
  msgstr ""
3169
 
3170
- #: ../settings.php:1207
3171
  msgid "Full access mode"
3172
  msgstr ""
3173
 
3174
- #: ../settings.php:1208
3175
  msgid "Read-only mode"
3176
  msgstr ""
3177
 
3178
- #: ../settings.php:1229
3179
  msgid "The full access mode requires the PRO version of WP Cerber"
3180
  msgstr ""
3181
 
3182
- #: ../settings.php:1297
3183
  msgid "Any activity"
3184
  msgstr ""
3185
 
@@ -3400,39 +3425,39 @@ msgstr ""
3400
  msgid "Delete website"
3401
  msgstr ""
3402
 
3403
- #: ../nexus/cerber-slave-list.php:134
3404
  msgid "All groups"
3405
  msgstr ""
3406
 
3407
- #: ../nexus/cerber-slave-list.php:144
3408
  msgid "All servers"
3409
  msgstr ""
3410
 
3411
- #: ../nexus/cerber-slave-list.php:151
3412
  msgid "All countries"
3413
  msgstr ""
3414
 
3415
- #: ../nexus/cerber-slave-list.php:160
3416
  msgid "Add a slave website"
3417
  msgstr ""
3418
 
3419
- #: ../nexus/cerber-slave-list.php:279
3420
  msgid "Edit"
3421
  msgstr ""
3422
 
3423
- #: ../nexus/cerber-slave-list.php:285
3424
  msgid "Switch to"
3425
  msgstr ""
3426
 
3427
- #: ../nexus/cerber-slave-list.php:413
3428
  msgid "No websites configured."
3429
  msgstr ""
3430
 
3431
- #: ../nexus/cerber-slave-list.php:413
3432
  msgid "Add a new one"
3433
  msgstr ""
3434
 
3435
- #: ../nexus/cerber-slave-list.php:413
3436
  msgid "Disable master mode"
3437
  msgstr ""
3438
 
@@ -3488,74 +3513,74 @@ msgstr ""
3488
  msgid "Address"
3489
  msgstr ""
3490
 
3491
- #: ../nexus/cerber-nexus-master.php:281
3492
  msgid "Security access token is invalid"
3493
  msgstr ""
3494
 
3495
- #: ../nexus/cerber-nexus-master.php:311
3496
  msgid "The website you are trying to add is already in the list"
3497
  msgstr ""
3498
 
3499
- #: ../nexus/cerber-nexus-master.php:320
3500
  msgid "The website has been added successfully"
3501
  msgstr ""
3502
 
3503
- #: ../nexus/cerber-nexus-master.php:321
3504
  msgid "Click to edit"
3505
  msgstr ""
3506
 
3507
- #: ../nexus/cerber-nexus-master.php:322
3508
  msgid "Switch to the Dashboard"
3509
  msgstr ""
3510
 
3511
- #: ../nexus/cerber-nexus-master.php:325
3512
  msgid ""
3513
  "Keep in mind: You have added the website that does not support SSL "
3514
  "encryption. This may lead to data leakage."
3515
  msgstr ""
3516
 
3517
- #: ../nexus/cerber-nexus-master.php:444
3518
  #, php-format
3519
  msgid "Website has been deleted"
3520
  msgid_plural "%s websites have been deleted"
3521
  msgstr[0] ""
3522
  msgstr[1] ""
3523
 
3524
- #: ../nexus/cerber-nexus-master.php:688
3525
  msgid "Invalid response from the slave website"
3526
  msgstr ""
3527
 
3528
- #: ../nexus/cerber-nexus-master.php:1020
3529
  #, php-format
3530
  msgid "You have switched to %s"
3531
  msgstr ""
3532
 
3533
- #: ../nexus/cerber-nexus-master.php:1030
3534
  msgid "You have switched back to the master website"
3535
  msgstr ""
3536
 
3537
- #: ../nexus/cerber-nexus-master.php:1246
3538
  msgid "You are here:"
3539
  msgstr ""
3540
 
3541
- #: ../nexus/cerber-nexus-master.php:1249 ../nexus/cerber-nexus.php:92 ..
3542
  #: /nexus/cerber-nexus.php:102
3543
  msgid "My Websites"
3544
  msgstr ""
3545
 
3546
- #: ../nexus/cerber-nexus-master.php:1264
3547
  msgid "Visit Site"
3548
  msgstr ""
3549
 
3550
- #: ../nexus/cerber-nexus-master.php:1330
3551
  msgid "Are you sure you want to delete selected websites?"
3552
  msgstr ""
3553
 
3554
- #: ../nexus/cerber-nexus-master.php:1374
3555
  msgid "A newer version is available"
3556
  msgstr ""
3557
 
3558
- #: ../nexus/cerber-nexus-master.php:1396 ../nexus/cerber-nexus-master.php:1404
3559
  msgid "Active plugins and updates on"
3560
  msgstr ""
3561
 
@@ -3657,7 +3682,7 @@ msgstr ""
3657
  msgid "Unable to process file"
3658
  msgstr ""
3659
 
3660
- #: ../cerber-scanner.php:1455 ../cerber-scanner.php:4608
3661
  msgid "Unable to open file"
3662
  msgstr ""
3663
 
@@ -3829,38 +3854,38 @@ msgstr ""
3829
  msgid "Finalizing the scan"
3830
  msgstr ""
3831
 
3832
- #: ../cerber-scanner.php:4737
3833
  msgid "Full Scan Report"
3834
  msgstr ""
3835
 
3836
- #: ../cerber-scanner.php:4737
3837
  msgid "Quick Scan Report"
3838
  msgstr ""
3839
 
3840
- #: ../cerber-scanner.php:4750
3841
  msgid "Files scanned"
3842
  msgstr ""
3843
 
3844
- #: ../cerber-scanner.php:4835
3845
  msgid "Deleted"
3846
  msgstr ""
3847
 
3848
- #: ../cerber-scanner.php:4839
3849
  msgid "Recovered"
3850
  msgstr ""
3851
 
3852
- #: ../cerber-scanner.php:4888
3853
  msgid "Automatically moved to quarantine"
3854
  msgstr ""
3855
 
3856
- #: ../cerber-scanner.php:4889
3857
  msgid "Automatically deleted"
3858
  msgstr ""
3859
 
3860
- #: ../cerber-scanner.php:4892
3861
  msgid "Automatically recovered"
3862
  msgstr ""
3863
 
3864
- #: ../cerber-scanner.php:4904
3865
  msgid "To view full report visit"
3866
  msgstr ""
5
  "Project-Id-Version: WP Cerber\n"
6
  "Report-Msgid-Bugs-To: \n"
7
  "POT-Creation-Date: Tue Sep 08 2015 21:38:11 GMT+0300\n"
8
+ "POT-Revision-Date: Wed Jul 22 2020 11:06:23 GMT+0300 (Moscow Standard Time)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
28
  msgid "Cerber Dashboard"
29
  msgstr ""
30
 
31
+ #: ../dashboard.php:54 ../dashboard.php:1803 ../dashboard.php:2686 ../dashboard.
32
+ #: php:4603
33
  msgid "Dashboard"
34
  msgstr ""
35
 
37
  msgid "Cerber Traffic Inspector"
38
  msgstr ""
39
 
40
+ #: ../dashboard.php:56 ../dashboard.php:1766 ../dashboard.php:4674
41
  msgid "Traffic Inspector"
42
  msgstr ""
43
 
53
  msgid "Cerber Security Rules"
54
  msgstr ""
55
 
56
+ #: ../dashboard.php:61 ../dashboard.php:4720
57
  msgid "Security Rules"
58
  msgstr ""
59
 
61
  msgid "Cerber User Security"
62
  msgstr ""
63
 
64
+ #: ../dashboard.php:64 ../dashboard.php:4700
65
  msgid "User Policies"
66
  msgstr ""
67
 
68
+ #: ../dashboard.php:67 ../dashboard.php:4735
69
  msgid "Site Integrity"
70
  msgstr ""
71
 
73
  msgid "Cerber anti-spam settings"
74
  msgstr ""
75
 
76
+ #: ../dashboard.php:71 ../settings.php:1152
77
  msgid "Anti-spam"
78
  msgstr ""
79
 
85
  msgid "Cerber tools"
86
  msgstr ""
87
 
88
+ #: ../dashboard.php:82 ../dashboard.php:4789
89
  msgid "Tools"
90
  msgstr ""
91
 
94
  msgstr ""
95
 
96
  #: ../dashboard.php:195 ../dashboard.php:845 ../dashboard.php:1107 ../dashboard.
97
+ #: php:4020 ../cerber-users.php:975
98
  msgid "IP Address"
99
  msgstr ""
100
 
106
  msgid "Country"
107
  msgstr ""
108
 
109
+ #: ../dashboard.php:198 ../cerber-users.php:974
110
  msgid "Expires"
111
  msgstr ""
112
 
113
+ #: ../dashboard.php:199 ../cerber-load.php:4224
114
  msgid "Reason"
115
  msgstr ""
116
 
117
  #: ../dashboard.php:200 ../admin/cerber-admin.php:757 ../admin/cerber-admin.php:
118
+ #: 912 ../cerber-users.php:977
119
  msgid "Action"
120
  msgstr ""
121
 
137
  msgstr ""
138
 
139
  #: ../dashboard.php:254 ../dashboard.php:1344 ../dashboard.php:1389 ../dashboard.
140
+ #: php:1761 ../dashboard.php:3792 ../cerber-tools.php:69
141
  msgid "White IP Access List"
142
  msgstr ""
143
 
144
  #: ../dashboard.php:257 ../dashboard.php:1347 ../dashboard.php:1392 ../dashboard.
145
+ #: php:1762 ../dashboard.php:3795 ../cerber-tools.php:70
146
  msgid "Black IP Access List"
147
  msgstr ""
148
 
185
  msgid "IP address %s has been added to White IP Access List"
186
  msgstr ""
187
 
188
+ #: ../dashboard.php:433 ../dashboard.php:3700 ../whois.php:222 ../whois.php:253 ..
189
+ #: /common.php:1489 ../common.php:1895 ../common.php:1963 ../nexus/cerber-slave-
190
+ #: list.php:332
191
  msgid "Unknown"
192
  msgstr ""
193
 
208
  msgid "Unable to send email to"
209
  msgstr ""
210
 
211
+ #: ../dashboard.php:652
212
  msgid "Default settings have been loaded"
213
  msgstr ""
214
 
215
+ #: ../dashboard.php:846 ../dashboard.php:1110 ../dashboard.php:3567 ../dashboard.
216
+ #: php:4018
217
  msgid "Date"
218
  msgstr ""
219
 
225
  msgid "Additional Details"
226
  msgstr ""
227
 
228
+ #: ../dashboard.php:849 ../dashboard.php:1112 ../dashboard.php:4023
229
  msgid "Local User"
230
  msgstr ""
231
 
233
  msgid "User login"
234
  msgstr ""
235
 
236
+ #: ../dashboard.php:851 ../dashboard.php:3572
237
  msgid "User ID"
238
  msgstr ""
239
 
241
  msgid "Username"
242
  msgstr ""
243
 
244
+ #: ../dashboard.php:958 ../dashboard.php:2365
245
  msgid "View all"
246
  msgstr ""
247
 
249
  msgid "New users"
250
  msgstr ""
251
 
252
+ #: ../dashboard.php:975 ../dashboard.php:4049
253
  msgid "Suspicious activity"
254
  msgstr ""
255
 
256
+ #: ../dashboard.php:977 ../common.php:1333
257
  msgid "IP blocked"
258
  msgstr ""
259
 
260
+ #: ../dashboard.php:979 ../dashboard.php:1759 ../dashboard.php:4051 ../settings.
261
+ #: php:399 ../settings.php:1071
262
  msgid "Logged in users"
263
  msgstr ""
264
 
265
+ #: ../dashboard.php:980 ../dashboard.php:4052
266
  msgid "Not logged in visitors"
267
  msgstr ""
268
 
270
  msgid "My activity"
271
  msgstr ""
272
 
273
+ #: ../dashboard.php:983 ../dashboard.php:4062
274
  msgid "My IP"
275
  msgstr ""
276
 
277
+ #: ../dashboard.php:1135 ../dashboard.php:4086
278
  msgid "Export"
279
  msgstr ""
280
 
282
  msgid "No activity has been logged."
283
  msgstr ""
284
 
285
+ #: ../dashboard.php:1150 ../cerber-users.php:1019
286
  msgid "Filter by registered user"
287
  msgstr ""
288
 
302
  msgid "Filter"
303
  msgstr ""
304
 
305
+ #: ../dashboard.php:1352 ../dashboard.php:1396 ../dashboard.php:3800 ../common.
306
+ #: php:1391
307
  msgid "Locked out"
308
  msgstr ""
309
 
352
  msgstr ""
353
 
354
  #: ../dashboard.php:1644 ../dashboard.php:1735 ../dashboard.php:1784 ../common.
355
+ #: php:1627 ../nexus/cerber-slave-list.php:346
356
  msgid "Never"
357
  msgstr ""
358
 
359
+ #: ../dashboard.php:1683 ../cerber-users.php:52 ../cerber-users.php:1130
360
  msgid "You"
361
  msgstr ""
362
 
410
  msgstr[0] ""
411
  msgstr[1] ""
412
 
413
+ #: ../dashboard.php:1761 ../dashboard.php:1762 ../dashboard.php:2664
414
  msgid "entry"
415
  msgid_plural "entries"
416
  msgstr[0] ""
434
  msgstr ""
435
 
436
  #: ../dashboard.php:1790 ../dashboard.php:1792 ../cerber-users.php:20 ../cerber-
437
+ #: users.php:446 ../settings.php:721 ../settings.php:749 ../settings.php:873 ..
438
+ #: /settings.php:882 ../settings.php:1225 ../cerber-scanner.php:1493
439
  msgid "Disabled"
440
  msgstr ""
441
 
447
  msgid "Full Scan"
448
  msgstr ""
449
 
450
+ #: ../dashboard.php:1804 ../dashboard.php:2351 ../dashboard.php:4604 ../cerber-
451
+ #: load.php:4965 ../cerber-users.php:1163 ../settings.php:276
452
  msgid "Activity"
453
  msgstr ""
454
 
455
+ #: ../dashboard.php:1805 ../cerber-users.php:1164
456
  msgid "Traffic"
457
  msgstr ""
458
 
472
  msgid "in the last 24 hours"
473
  msgstr ""
474
 
475
+ #: ../dashboard.php:2368
476
  msgid "Recently locked out IP addresses"
477
  msgstr ""
478
 
479
+ #: ../dashboard.php:2479
480
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
481
  msgstr ""
482
 
483
+ #: ../dashboard.php:2480
484
  msgid "Deactivate"
485
  msgstr ""
486
 
487
+ #: ../dashboard.php:2481 ../dashboard.php:2885
488
  msgid "View Activity"
489
  msgstr ""
490
 
491
+ #: ../dashboard.php:2496
492
  msgid "Settings saved"
493
  msgstr ""
494
 
495
+ #: ../dashboard.php:2572
496
  msgid "Create Alert"
497
  msgstr ""
498
 
499
+ #: ../dashboard.php:2576
500
  msgid "Delete Alert"
501
  msgstr ""
502
 
503
+ #: ../dashboard.php:2609
504
  msgid "The alert has been created"
505
  msgstr ""
506
 
507
+ #: ../dashboard.php:2613
508
  msgid "The alert has been deleted"
509
  msgstr ""
510
 
511
+ #: ../dashboard.php:2687
512
  msgid "Main settings"
513
  msgstr ""
514
 
515
+ #: ../dashboard.php:2804
516
  msgid "Are you sure you want to delete selected files?"
517
  msgstr ""
518
 
519
+ #: ../dashboard.php:2805
520
  msgid "These files have been moved to the quarantine"
521
  msgstr ""
522
 
523
+ #: ../dashboard.php:2808
524
  msgid "Do you want to add selected files to the ignore list?"
525
  msgstr ""
526
 
527
+ #: ../dashboard.php:2809
528
  msgid "These files have been added to the ignore list"
529
  msgstr ""
530
 
531
+ #: ../dashboard.php:2811
532
  msgid "Some errors occurred"
533
  msgstr ""
534
 
535
+ #: ../dashboard.php:2812
536
  msgid "All files have been processed"
537
  msgstr ""
538
 
539
+ #: ../dashboard.php:2887 ../dashboard.php:4605
540
+ msgid "Sessions"
541
+ msgstr ""
542
+
543
+ #: ../dashboard.php:3152 ../admin/cerber-settings.php:628
544
  msgid "Save Changes"
545
  msgstr ""
546
 
547
+ #: ../dashboard.php:3224
548
  msgid "Role-based rules are configured"
549
  msgstr ""
550
 
551
+ #: ../dashboard.php:3274
552
  msgid "Start typing here to find a country"
553
  msgstr ""
554
 
555
+ #: ../dashboard.php:3281
556
  msgid "Save all rules"
557
  msgstr ""
558
 
559
+ #: ../dashboard.php:3294
560
  #, php-format
561
  msgid "Permitted for one country"
562
  msgid_plural "Permitted for %d countries"
563
  msgstr[0] ""
564
  msgstr[1] ""
565
 
566
+ #: ../dashboard.php:3297
567
  #, php-format
568
  msgid "Not permitted for one country"
569
  msgid_plural "Not permitted for %d countries"
570
  msgstr[0] ""
571
  msgstr[1] ""
572
 
573
+ #: ../dashboard.php:3305
574
  msgid "No rule"
575
  msgstr ""
576
 
577
+ #: ../dashboard.php:3306
578
  msgid "Any country is permitted"
579
  msgstr ""
580
 
581
+ #: ../dashboard.php:3389
582
  msgid "Click on a country name to add it to the list of selected countries"
583
  msgstr ""
584
 
585
+ #: ../dashboard.php:3393
586
  #, php-format
587
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
588
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
589
  msgstr ""
590
 
591
+ #: ../dashboard.php:3396
592
  #, php-format
593
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
594
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
595
  msgstr ""
596
 
597
+ #: ../dashboard.php:3416
598
+ msgid "Log into the website"
599
  msgstr ""
600
 
601
+ #: ../dashboard.php:3418
602
  msgid "All Users"
603
  msgstr ""
604
 
605
+ #: ../dashboard.php:3420
606
  msgid "Register on the website"
607
  msgstr ""
608
 
609
+ #: ../dashboard.php:3421
610
  msgid "Submit forms"
611
  msgstr ""
612
 
613
+ #: ../dashboard.php:3422
614
  msgid "Post comments"
615
  msgstr ""
616
 
617
+ #: ../dashboard.php:3423
618
  msgid "Use XML-RPC"
619
  msgstr ""
620
 
621
+ #: ../dashboard.php:3424
622
  msgid "Use REST API"
623
  msgstr ""
624
 
625
+ #: ../dashboard.php:3466
626
  msgid "Security rules have been updated"
627
  msgstr ""
628
 
629
+ #: ../dashboard.php:3566
630
  msgid "IP address"
631
  msgstr ""
632
 
633
+ #: ../dashboard.php:3573
634
  msgid "Page generation time"
635
  msgstr ""
636
 
637
+ #: ../dashboard.php:4019
638
  msgid "Request"
639
  msgstr ""
640
 
641
+ #: ../dashboard.php:4021 ../cerber-users.php:976
642
  msgid "Host Info"
643
  msgstr ""
644
 
645
+ #: ../dashboard.php:4022
646
  msgid "User Agent"
647
  msgstr ""
648
 
649
+ #: ../dashboard.php:4039
650
  msgid "No requests have been logged."
651
  msgstr ""
652
 
653
+ #: ../dashboard.php:4047
654
  msgid "All requests"
655
  msgstr ""
656
 
657
+ #: ../dashboard.php:4050
658
  msgid "Errors"
659
  msgstr ""
660
 
661
+ #: ../dashboard.php:4055
662
  msgid "Form submissions"
663
  msgstr ""
664
 
665
+ #: ../dashboard.php:4057
666
  msgid "Page Not Found"
667
  msgstr ""
668
 
669
+ #: ../dashboard.php:4061
670
  msgid "My requests"
671
  msgstr ""
672
 
673
+ #: ../dashboard.php:4069
674
  msgid "Longer than"
675
  msgstr ""
676
 
677
+ #: ../dashboard.php:4079
678
  msgid "Advanced Search"
679
  msgstr ""
680
 
681
+ #: ../dashboard.php:4092
682
  msgid "Refresh"
683
  msgstr ""
684
 
685
+ #: ../dashboard.php:4606
 
 
 
 
686
  msgid "Lockouts"
687
  msgstr ""
688
 
689
+ #: ../dashboard.php:4607
690
  msgid "Main Settings"
691
  msgstr ""
692
 
693
+ #: ../dashboard.php:4608 ../cerber-tools.php:38 ../cerber-tools.php:49
694
  msgid "Access Lists"
695
  msgstr ""
696
 
697
+ #: ../dashboard.php:4609
698
  msgid "Hardening"
699
  msgstr ""
700
 
701
+ #: ../dashboard.php:4611 ../settings.php:264
702
  msgid "Notifications"
703
  msgstr ""
704
 
705
+ #: ../dashboard.php:4654
706
  msgid "Anti-spam and bot detection settings"
707
  msgstr ""
708
 
709
+ #: ../dashboard.php:4656
710
  msgid "Anti-spam engine"
711
  msgstr ""
712
 
713
+ #: ../dashboard.php:4676
714
  msgid "Live Traffic"
715
  msgstr ""
716
 
717
+ #: ../dashboard.php:4677 ../dashboard.php:4738 ../cerber-tools.php:37 ../cerber-
718
  #: tools.php:48 ../nexus/cerber-nexus.php:93
719
  msgid "Settings"
720
  msgstr ""
721
 
722
+ #: ../dashboard.php:4690
723
  msgid "Data Shield Policies"
724
  msgstr ""
725
 
726
+ #: ../dashboard.php:4692
727
  msgid "Accounts & Roles"
728
  msgstr ""
729
 
730
+ #: ../dashboard.php:4693
731
  msgid "Site Settings"
732
  msgstr ""
733
 
734
+ #: ../dashboard.php:4702
735
  msgid "Role-based"
736
  msgstr ""
737
 
738
+ #: ../dashboard.php:4703
739
  msgid "Global"
740
  msgstr ""
741
 
742
+ #: ../dashboard.php:4722
743
  msgid "Countries"
744
  msgstr ""
745
 
746
+ #: ../dashboard.php:4737
747
  msgid "Security Scanner"
748
  msgstr ""
749
 
750
+ #: ../dashboard.php:4739
751
  msgid "Scheduling"
752
  msgstr ""
753
 
754
+ #: ../dashboard.php:4740
755
  msgid "Cleaning up"
756
  msgstr ""
757
 
758
+ #: ../dashboard.php:4741
759
  msgid "Ignore List"
760
  msgstr ""
761
 
762
+ #: ../dashboard.php:4742
763
  msgid "Quarantine"
764
  msgstr ""
765
 
766
+ #: ../dashboard.php:4743
767
  msgid "Analytics"
768
  msgstr ""
769
 
770
+ #: ../dashboard.php:4792
771
  msgid "Manage Settings"
772
  msgstr ""
773
 
774
+ #: ../dashboard.php:4793
775
  msgid "Diagnostic"
776
  msgstr ""
777
 
778
+ #: ../dashboard.php:4794
779
  msgid "Diagnostic Log"
780
  msgstr ""
781
 
782
+ #: ../dashboard.php:4795
783
  msgid "Changelog"
784
  msgstr ""
785
 
786
+ #: ../dashboard.php:4796
787
  msgid "License"
788
  msgstr ""
789
 
790
+ #: ../dashboard.php:4897
791
  msgid "Help"
792
  msgstr ""
793
 
794
+ #: ../dashboard.php:4946
795
  msgid "Incorrect IP address or IP range"
796
  msgstr ""
797
 
798
+ #: ../dashboard.php:4950
799
  msgid "The IP address you are trying to add is already in the list"
800
  msgstr ""
801
 
802
+ #: ../dashboard.php:5085
803
  msgid "These features are available in a professional version of the plugin."
804
  msgstr ""
805
 
806
+ #: ../dashboard.php:5086
807
  msgid "Know more about all advantages at"
808
  msgstr ""
809
 
810
+ #: ../dashboard.php:5100 ../admin/cerber-admin.php:721 ../admin/cerber-admin.php:
811
  #: 888 ../cerber-tools.php:59
812
  msgid "Are you sure?"
813
  msgstr ""
814
 
815
+ #: ../dashboard.php:5121
816
  msgid "Log In"
817
  msgstr ""
818
 
819
+ #: ../dashboard.php:5122
820
  msgid "Log Out"
821
  msgstr ""
822
 
823
+ #: ../dashboard.php:5123
824
  msgid "Register"
825
  msgstr ""
826
 
827
+ #: ../dashboard.php:5126
828
  msgid "WooCommerce Log In"
829
  msgstr ""
830
 
831
+ #: ../dashboard.php:5127
832
  msgid "WooCommerce Log Out"
833
  msgstr ""
834
 
835
+ #: ../dashboard.php:5166 ../dashboard.php:5167
836
  msgid "Add to menu"
837
  msgstr ""
838
 
839
  #. Name of the plugin
840
+ msgid "WP Cerber Security, Anti-spam & Malware Scan"
841
  msgstr ""
842
 
843
  #. URI of the plugin
861
  msgid "Check for requests"
862
  msgstr ""
863
 
864
+ #: ../common.php:279
865
  msgid "Malicious activities mitigated"
866
  msgstr ""
867
 
868
+ #: ../common.php:282
869
  msgid "Spam comments denied"
870
  msgstr ""
871
 
872
+ #: ../common.php:283
873
  msgid "Spam form submissions denied"
874
  msgstr ""
875
 
876
+ #: ../common.php:284
877
  msgid "Malicious IP addresses detected"
878
  msgstr ""
879
 
880
+ #: ../common.php:285
881
  msgid "Lockouts occurred"
882
  msgstr ""
883
 
884
+ #: ../common.php:339 ../common.php:417 ../common.php:422 ../common.php:428 ..
885
+ #: /common.php:433 ../admin/cerber-settings.php:653 ../admin/cerber-settings.php:
886
+ #: 673 ../admin/cerber-settings.php:753 ../admin/cerber-admin.php:858 ../cerber-
887
+ #: load.php:649 ../cerber-load.php:661 ../cerber-load.php:668 ../cerber-load.php:
888
+ #: 1008 ../cerber-load.php:1549 ../cerber-load.php:1555 ../cerber-load.php:1560 ..
889
  #: /cerber-load.php:1567 ../cerber-load.php:1574 ../cerber-load.php:1580 ..
890
  #: /cerber-load.php:1587 ../cerber-load.php:1752 ../cerber-load.php:1889 ..
891
  #: /nexus/cerber-nexus-slave.php:204 ../nexus/cerber-nexus-slave.php:215
892
  msgid "ERROR:"
893
  msgstr ""
894
 
895
+ #: ../common.php:1325
896
  msgid "User created"
897
  msgstr ""
898
 
899
+ #: ../common.php:1326
900
  msgid "User registered"
901
  msgstr ""
902
 
903
+ #: ../common.php:1327
904
  msgid "User deleted"
905
  msgstr ""
906
 
907
+ #: ../common.php:1328
908
  msgid "Logged in"
909
  msgstr ""
910
 
911
+ #: ../common.php:1329
912
  msgid "Logged out"
913
  msgstr ""
914
 
915
+ #: ../common.php:1330
916
  msgid "Login failed"
917
  msgstr ""
918
 
919
+ #: ../common.php:1334
920
  msgid "IP subnet blocked"
921
  msgstr ""
922
 
923
+ #: ../common.php:1337
924
  msgid "Citadel activated!"
925
  msgstr ""
926
 
927
+ #: ../common.php:1338
928
  msgid "Spam comment denied"
929
  msgstr ""
930
 
931
+ #: ../common.php:1339
932
  msgid "Spam form submission denied"
933
  msgstr ""
934
 
935
+ #: ../common.php:1340
936
  msgid "Form submission denied"
937
  msgstr ""
938
 
939
+ #: ../common.php:1341
940
  msgid "Comment denied"
941
  msgstr ""
942
 
943
+ #: ../common.php:1350
944
  msgid "Password changed"
945
  msgstr ""
946
 
947
+ #: ../common.php:1351
948
  msgid "Password reset requested"
949
  msgstr ""
950
 
951
+ #: ../common.php:1353
952
  msgid "reCAPTCHA verification failed"
953
  msgstr ""
954
 
955
+ #: ../common.php:1354
956
  msgid "reCAPTCHA settings are incorrect"
957
  msgstr ""
958
 
959
+ #: ../common.php:1355
960
  msgid "Request to the Google reCAPTCHA service failed"
961
  msgstr ""
962
 
963
+ #: ../common.php:1357 ../common.php:1466
964
  msgid "Attempt to access prohibited URL"
965
  msgstr ""
966
 
967
+ #: ../common.php:1358 ../common.php:1467
968
  msgid "Attempt to log in with non-existing username"
969
  msgstr ""
970
 
971
+ #: ../common.php:1359 ../common.php:1468
972
  msgid "Attempt to log in with prohibited username"
973
  msgstr ""
974
 
975
+ #: ../common.php:1361
976
  msgid "Attempt to log in denied"
977
  msgstr ""
978
 
979
+ #: ../common.php:1362
980
  msgid "Attempt to register denied"
981
  msgstr ""
982
 
983
+ #: ../common.php:1363 ../common.php:1472
984
+ msgid "Probing for vulnerable code"
985
  msgstr ""
986
 
987
+ #: ../common.php:1364
988
  msgid "Attempt to upload malicious file denied"
989
  msgstr ""
990
 
991
+ #: ../common.php:1365
992
  msgid "File upload denied"
993
  msgstr ""
994
 
995
+ #: ../common.php:1367
996
  msgid "Request to REST API denied"
997
  msgstr ""
998
 
999
+ #: ../common.php:1368
1000
  msgid "XML-RPC request denied"
1001
  msgstr ""
1002
 
1003
+ #: ../common.php:1369
1004
  msgid "User creation denied"
1005
  msgstr ""
1006
 
1007
+ #: ../common.php:1370
1008
  msgid "User row update denied"
1009
  msgstr ""
1010
 
1011
+ #: ../common.php:1371
1012
  msgid "Role update denied"
1013
  msgstr ""
1014
 
1015
+ #: ../common.php:1372
1016
  msgid "Setting update denied"
1017
  msgstr ""
1018
 
1019
+ #: ../common.php:1373
1020
  msgid "User metadata update denied"
1021
  msgstr ""
1022
 
1023
+ #: ../common.php:1375
1024
  msgid "Malicious request denied"
1025
  msgstr ""
1026
 
1027
+ #: ../common.php:1378
1028
  msgid "User activated"
1029
  msgstr ""
1030
 
1031
+ #: ../common.php:1381
1032
  msgid "Invalid master credentials"
1033
  msgstr ""
1034
 
1035
+ #: ../common.php:1389
1036
  msgid "Bot detected"
1037
  msgstr ""
1038
 
1039
+ #: ../common.php:1390
1040
  msgid "Citadel mode is active"
1041
  msgstr ""
1042
 
1043
+ #: ../common.php:1392
1044
  msgid "IP address is locked out"
1045
  msgstr ""
1046
 
1047
+ #: ../common.php:1393
1048
  msgid "IP blacklisted"
1049
  msgstr ""
1050
 
1051
+ #: ../common.php:1394
1052
  msgid "Malicious activity detected"
1053
  msgstr ""
1054
 
1055
+ #: ../common.php:1395
1056
  msgid "Blocked by country rule"
1057
  msgstr ""
1058
 
1059
+ #: ../common.php:1396
1060
  msgid "Limit reached"
1061
  msgstr ""
1062
 
1063
+ #: ../common.php:1397
1064
  msgid "Multiple suspicious activities"
1065
  msgstr ""
1066
 
1067
+ #: ../common.php:1398
1068
  msgid "Denied"
1069
  msgstr ""
1070
 
1071
+ #: ../common.php:1400
1072
  msgid "Suspicious number of fields"
1073
  msgstr ""
1074
 
1075
+ #: ../common.php:1401
1076
  msgid "Suspicious number of nested values"
1077
  msgstr ""
1078
 
1079
+ #: ../common.php:1402 ../common.php:1473
1080
  msgid "Malicious code detected"
1081
  msgstr ""
1082
 
1083
+ #: ../common.php:1403
1084
  msgid "Suspicious SQL code detected"
1085
  msgstr ""
1086
 
1087
+ #: ../common.php:1404
1088
  msgid "Suspicious JavaScript code detected"
1089
  msgstr ""
1090
 
1091
+ #: ../common.php:1405
1092
  msgid "Blocked by administrator"
1093
  msgstr ""
1094
 
1095
+ #: ../common.php:1406
1096
  msgid "Site policy enforcement"
1097
  msgstr ""
1098
 
1099
+ #: ../common.php:1407
1100
  msgid "2FA code verified"
1101
  msgstr ""
1102
 
1103
+ #: ../common.php:1408
1104
  msgid "Initiated by the user"
1105
  msgstr ""
1106
 
1107
+ #: ../common.php:1411
1108
  msgid "Email address is prohibited"
1109
  msgstr ""
1110
 
1111
+ #: ../common.php:1413
1112
  msgid "Permission denied"
1113
  msgstr ""
1114
 
1115
+ #: ../common.php:1415
1116
  msgid "Invalid user"
1117
  msgstr ""
1118
 
1119
+ #: ../common.php:1416
1120
  msgid "Incorrect password"
1121
  msgstr ""
1122
 
1123
+ #: ../common.php:1419
1124
  msgid "IP whitelisted"
1125
  msgstr ""
1126
 
1127
+ #: ../common.php:1464
1128
  msgid "Limit on login attempts is reached"
1129
  msgstr ""
1130
 
1131
+ #: ../common.php:1465
1132
  msgid "Attempt to access"
1133
  msgstr ""
1134
 
1135
+ #: ../common.php:1469
1136
  msgid "Limit on failed reCAPTCHA verifications is reached"
1137
  msgstr ""
1138
 
1139
+ #: ../common.php:1470
1140
  msgid "Bot activity is detected"
1141
  msgstr ""
1142
 
1143
+ #: ../common.php:1471
1144
  msgid "Multiple suspicious activities were detected"
1145
  msgstr ""
1146
 
1147
+ #: ../common.php:1474
1148
  msgid "Attempt to upload a file with malicious code"
1149
  msgstr ""
1150
 
1151
+ #: ../common.php:1476
1152
  msgid "Multiple erroneous requests"
1153
  msgstr ""
1154
 
1155
+ #: ../common.php:1477
1156
  msgid "Multiple suspicious requests"
1157
  msgstr ""
1158
 
1159
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
1160
+ #: ../common.php:1615
1161
  #, php-format
1162
  msgid "%s sec"
1163
  msgid_plural "%s secs"
1164
  msgstr[0] ""
1165
  msgstr[1] ""
1166
 
1167
+ #: ../common.php:1622
1168
  #, php-format
1169
  msgid "%s ago"
1170
  msgstr ""
1171
 
1172
+ #: ../common.php:1622
1173
  #, php-format
1174
  msgctxt "preposition of a period of time like: in 6 hours"
1175
  msgid "in %s"
1176
  msgstr ""
1177
 
1178
+ #: ../common.php:1729
1179
  msgid "Bytes"
1180
  msgstr ""
1181
 
1182
+ #: ../common.php:1835
1183
  #, php-format
1184
  msgid "A new version of %s is available. Please install it."
1185
  msgstr ""
1186
 
1187
+ #: ../common.php:1855
1188
  msgid "Not specified"
1189
  msgstr ""
1190
 
1191
+ #: ../common.php:2780
1192
  msgid "Unable to create the directory"
1193
  msgstr ""
1194
 
1195
+ #: ../common.php:2785
1196
  msgid "Destination folder access denied"
1197
  msgstr ""
1198
 
1199
+ #: ../common.php:2788
1200
  msgid "File not found"
1201
  msgstr ""
1202
 
1203
+ #: ../common.php:2791
1204
  msgid "Unable to copy the file"
1205
  msgstr ""
1206
 
1207
+ #: ../common.php:2797
1208
  msgid "Unable to delete the file"
1209
  msgstr ""
1210
 
1215
  "more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1216
  msgstr ""
1217
 
 
 
 
 
1218
  #: ../admin/cerber-settings.php:100 ../admin/cerber-settings.php:270 ../cerber-
1219
+ #: lab.php:839
1220
  msgid "Know more"
1221
  msgstr ""
1222
 
1248
  msgid "Enable after %s failed login attempts in the last %s minutes"
1249
  msgstr ""
1250
 
1251
+ #: ../admin/cerber-settings.php:517
1252
  msgid "Select one or more roles"
1253
  msgstr ""
1254
 
1255
+ #: ../admin/cerber-settings.php:541
1256
  msgid "Sunday"
1257
  msgstr ""
1258
 
1259
+ #: ../admin/cerber-settings.php:542
1260
  msgid "Monday"
1261
  msgstr ""
1262
 
1263
+ #: ../admin/cerber-settings.php:543
1264
  msgid "Tuesday"
1265
  msgstr ""
1266
 
1267
+ #: ../admin/cerber-settings.php:544
1268
  msgid "Wednesday"
1269
  msgstr ""
1270
 
1271
+ #: ../admin/cerber-settings.php:545
1272
  msgid "Thursday"
1273
  msgstr ""
1274
 
1275
+ #: ../admin/cerber-settings.php:546
1276
  msgid "Friday"
1277
  msgstr ""
1278
 
1279
+ #: ../admin/cerber-settings.php:547
1280
  msgid "Saturday"
1281
  msgstr ""
1282
 
1283
+ #: ../admin/cerber-settings.php:557
1284
  msgctxt "preposition of time like: at 11:00"
1285
  msgid "at"
1286
  msgstr ""
1287
 
1288
+ #: ../admin/cerber-settings.php:576
1289
  msgid "Click to send now"
1290
  msgstr ""
1291
 
1292
+ #: ../admin/cerber-settings.php:654
1293
  msgid "Plugin initialization mode has not been changed"
1294
  msgstr ""
1295
 
1296
+ #: ../admin/cerber-settings.php:681 ../admin/cerber-settings.php:682
1297
  msgid "Attention! You have changed the login URL! The new login URL is"
1298
  msgstr ""
1299
 
1300
+ #: ../admin/cerber-settings.php:683 ../admin/cerber-settings.php:684
1301
  msgid ""
1302
  "If you use a caching plugin, you have to add your new login URL to the list "
1303
  "of pages not to cache."
1304
  msgstr ""
1305
 
1306
+ #: ../admin/cerber-settings.php:777 ../admin/cerber-settings.php:789 ..
1307
+ #: /admin/cerber-settings.php:949
1308
  msgid "<strong>ERROR</strong>: please enter a valid email address."
1309
  msgstr ""
1310
 
1311
+ #: ../admin/cerber-settings.php:955
1312
  msgid "The schedule has been updated"
1313
  msgstr ""
1314
 
1315
+ #: ../admin/cerber-settings.php:958
1316
  msgid "Unable to update the schedule"
1317
  msgstr ""
1318
 
1332
  msgid "Performance"
1333
  msgstr ""
1334
 
1335
+ #: ../admin/cerber-admin.php:67 ../nexus/cerber-slave-list.php:339
1336
  msgid "Vulnerabilities"
1337
  msgstr ""
1338
 
1368
  msgid "Critical issues"
1369
  msgstr ""
1370
 
1371
+ #: ../admin/cerber-admin.php:103 ../cerber-scanner.php:4818
1372
  msgid "Issues total"
1373
  msgstr ""
1374
 
1466
  msgstr ""
1467
 
1468
  #: ../admin/cerber-admin.php:755 ../admin/cerber-admin.php:910 ../admin/cerber-
1469
+ #: admin.php:1318
1470
  msgid "Size"
1471
  msgstr ""
1472
 
1514
  msgid "Added"
1515
  msgstr ""
1516
 
1517
+ #: ../admin/cerber-admin.php:909 ../admin/cerber-admin.php:1319
1518
  msgid "Modified"
1519
  msgstr ""
1520
 
1521
+ #: ../admin/cerber-admin.php:983
1522
  msgid "Files without extension"
1523
  msgstr ""
1524
 
1525
+ #: ../admin/cerber-admin.php:984
1526
  msgid "Back to list"
1527
  msgstr ""
1528
 
1529
+ #: ../admin/cerber-admin.php:1044
1530
  msgid "Brief summary"
1531
  msgstr ""
1532
 
1533
+ #: ../admin/cerber-admin.php:1095
1534
  msgid "Folder"
1535
  msgstr ""
1536
 
1537
+ #: ../admin/cerber-admin.php:1096
1538
  msgid "Path"
1539
  msgstr ""
1540
 
1541
+ #: ../admin/cerber-admin.php:1097 ../admin/cerber-admin.php:1191
1542
  msgid "Files"
1543
  msgstr ""
1544
 
1545
+ #: ../admin/cerber-admin.php:1098 ../admin/cerber-admin.php:1192
1546
  msgid "Space Occupied"
1547
  msgstr ""
1548
 
1549
+ #: ../admin/cerber-admin.php:1162
1550
  msgid "No extension"
1551
  msgstr ""
1552
 
1553
+ #: ../admin/cerber-admin.php:1187
1554
  msgid "File extensions statistics"
1555
  msgstr ""
1556
 
1557
+ #: ../admin/cerber-admin.php:1190
1558
  msgid "Extension"
1559
  msgstr ""
1560
 
1561
+ #: ../admin/cerber-admin.php:1193
1562
  msgid "Smallest"
1563
  msgstr ""
1564
 
1565
+ #: ../admin/cerber-admin.php:1194
1566
  msgid "Largest"
1567
  msgstr ""
1568
 
1569
+ #: ../admin/cerber-admin.php:1195
1570
  msgid "Average Size"
1571
  msgstr ""
1572
 
1573
+ #: ../admin/cerber-admin.php:1196
1574
  msgid "Oldest"
1575
  msgstr ""
1576
 
1577
+ #: ../admin/cerber-admin.php:1197
1578
  msgid "Newest"
1579
  msgstr ""
1580
 
1581
+ #: ../admin/cerber-admin.php:1213
1582
  msgid "Top 10 largest files"
1583
  msgstr ""
1584
 
1585
+ #: ../admin/cerber-admin.php:1317
1586
  msgid "File Name"
1587
  msgstr ""
1588
 
1589
+ #: ../cerber-lab.php:835
1590
  msgid "Want to make WP Cerber even more powerful?"
1591
  msgstr ""
1592
 
1593
+ #: ../cerber-lab.php:836
1594
  msgid ""
1595
  "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. "
1596
  "This helps the plugin team to develop new algorithms for WP Cerber that will "
1598
  "everyday. You can disable the sending in the plugin settings at any time."
1599
  msgstr ""
1600
 
1601
+ #: ../cerber-lab.php:837
1602
  msgid "OK, nail them all"
1603
  msgstr ""
1604
 
1605
+ #: ../cerber-lab.php:838
1606
  msgid "NO, maybe later"
1607
  msgstr ""
1608
 
1609
+ #: ../cerber-load.php:341
1610
  msgid "You are not allowed to log in. Ask your administrator for assistance."
1611
  msgstr ""
1612
 
1613
+ #: ../cerber-load.php:347
1614
  #, php-format
1615
  msgid ""
1616
  "You have exceeded the number of allowed login attempts. Please try again in "
1617
  "%d minutes."
1618
  msgstr ""
1619
 
1620
+ #: ../cerber-load.php:351
1621
  msgid "You are not allowed to log in"
1622
  msgstr ""
1623
 
1624
+ #: ../cerber-load.php:366
1625
  #, php-format
1626
  msgid "You have only one attempt remaining."
1627
  msgid_plural "You have %d attempts remaining."
1628
  msgstr[0] ""
1629
  msgstr[1] ""
1630
 
1631
+ #: ../cerber-load.php:678
1632
  msgid ""
1633
  "Human verification failed. Please click the square box in the reCAPTCHA "
1634
  "block below."
1635
  msgstr ""
1636
 
1637
+ #: ../cerber-load.php:808
1638
  msgid ""
1639
  "> > > Translator of WP Cerber? To get the PRO license for free, drop your "
1640
  "contacts here: https://wpcerber.com/contact/"
1641
  msgstr ""
1642
 
1643
+ #: ../cerber-load.php:1117
1644
  #, php-format
1645
  msgid ""
1646
  "<strong>ERROR</strong>: The password you entered for the username %s is "
1668
  msgid "Sorry, human verification failed."
1669
  msgstr ""
1670
 
1671
+ #: ../cerber-load.php:4049
1672
  msgid "We're sorry, you are not allowed to proceed"
1673
  msgstr ""
1674
 
1675
+ #: ../cerber-load.php:4165
1676
  msgid "WP Cerber notify"
1677
  msgstr ""
1678
 
1679
+ #: ../cerber-load.php:4189
1680
  msgid "Citadel mode is activated"
1681
  msgstr ""
1682
 
1683
+ #: ../cerber-load.php:4191
1684
  #, php-format
1685
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
1686
  msgstr ""
1687
 
1688
+ #: ../cerber-load.php:4192
1689
  #, php-format
1690
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
1691
  msgstr ""
1692
 
1693
+ #: ../cerber-load.php:4193 ../cerber-load.php:5006
1694
  msgid "View activity in dashboard"
1695
  msgstr ""
1696
 
1697
+ #: ../cerber-load.php:4217
1698
  msgid "unspecified"
1699
  msgstr ""
1700
 
1701
+ #: ../cerber-load.php:4220
1702
  msgid "Number of lockouts is increasing"
1703
  msgstr ""
1704
 
1705
+ #: ../cerber-load.php:4222
1706
  msgid "Number of active lockouts"
1707
  msgstr ""
1708
 
1709
+ #: ../cerber-load.php:4223
1710
  #, php-format
1711
  msgid "Last lockout was added: %s for IP %s"
1712
  msgstr ""
1713
 
1714
+ #: ../cerber-load.php:4225
1715
  msgid "View activity for this IP"
1716
  msgstr ""
1717
 
1718
+ #: ../cerber-load.php:4226
1719
  msgid "View lockouts in dashboard"
1720
  msgstr ""
1721
 
1722
+ #: ../cerber-load.php:4229 ../cerber-load.php:4231
1723
  msgid "A new version of WP Cerber is available to install"
1724
  msgstr ""
1725
 
1726
+ #: ../cerber-load.php:4230
1727
  msgid "Hi!"
1728
  msgstr ""
1729
 
1730
+ #: ../cerber-load.php:4233 ../cerber-load.php:4244 ../nexus/cerber-slave-list.php:
1731
  #: 44
1732
  msgid "Website"
1733
  msgstr ""
1734
 
1735
+ #: ../cerber-load.php:4236 ../cerber-load.php:4237
1736
  msgid "The WP Cerber security plugin has been deactivated"
1737
  msgstr ""
1738
 
1739
+ #: ../cerber-load.php:4239
1740
  msgid "Not logged in"
1741
  msgstr ""
1742
 
1743
+ #: ../cerber-load.php:4245
1744
  msgid "By user"
1745
  msgstr ""
1746
 
1747
+ #: ../cerber-load.php:4246
1748
  msgid "From IP address"
1749
  msgstr ""
1750
 
1751
+ #: ../cerber-load.php:4249
1752
  msgid "From country"
1753
  msgstr ""
1754
 
1755
+ #: ../cerber-load.php:4253
1756
  msgid "The WP Cerber security plugin is now active"
1757
  msgstr ""
1758
 
1759
+ #: ../cerber-load.php:4254 ../cerber-load.php:5284
1760
  msgid "WP Cerber is now active and has started protecting your site"
1761
  msgstr ""
1762
 
1763
+ #: ../cerber-load.php:4256 ../cerber-load.php:5288
1764
  msgid "Getting Started Guide"
1765
  msgstr ""
1766
 
1767
+ #: ../cerber-load.php:4265
1768
  msgid "New Custom login URL"
1769
  msgstr ""
1770
 
1771
+ #: ../cerber-load.php:4269 ../cerber-load.php:4270
1772
  msgid "A new activity has been recorded"
1773
  msgstr ""
1774
 
1775
+ #: ../cerber-load.php:4275
1776
  msgid "Weekly report"
1777
  msgstr ""
1778
 
1779
+ #: ../cerber-load.php:4278 ../cerber-load.php:4288
1780
  msgid "To change reporting settings visit"
1781
  msgstr ""
1782
 
1783
+ #: ../cerber-load.php:4285
1784
  msgid "Scanner Report"
1785
  msgstr ""
1786
 
1787
+ #: ../cerber-load.php:4314
1788
  msgid "Your login page:"
1789
  msgstr ""
1790
 
1791
+ #: ../cerber-load.php:4319
1792
  msgid "Your license is valid until"
1793
  msgstr ""
1794
 
1795
+ #: ../cerber-load.php:4322
1796
  msgid "This message was sent by"
1797
  msgstr ""
1798
 
1799
+ #: ../cerber-load.php:4343
1800
  #, php-format
1801
  msgid "Your last sign-in was %s from %s"
1802
  msgstr ""
1803
 
1804
+ #: ../cerber-load.php:4413
1805
  msgid "Weekly Report"
1806
  msgstr ""
1807
 
1808
+ #: ../cerber-load.php:4425
1809
  msgid "Activity details"
1810
  msgstr ""
1811
 
1812
+ #: ../cerber-load.php:4439
1813
  msgid "Attempts to log in with non-existing usernames"
1814
  msgstr ""
1815
 
1816
+ #: ../cerber-load.php:4974
1817
  msgid "IP"
1818
  msgstr ""
1819
 
1820
+ #: ../cerber-load.php:4978 ../cerber-users.php:971
1821
  msgid "User"
1822
  msgstr ""
1823
 
1824
+ #: ../cerber-load.php:4982
1825
  msgid "Username used"
1826
  msgstr ""
1827
 
1828
+ #: ../cerber-load.php:4986
1829
  msgid "Search string"
1830
  msgstr ""
1831
 
1832
+ #: ../cerber-load.php:5007
1833
  msgid "To delete the alert, click here"
1834
  msgstr ""
1835
 
1836
+ #: ../cerber-load.php:5225
1837
  #, php-format
1838
  msgid "The WP Cerber requires PHP %s or higher. You are running"
1839
  msgstr ""
1840
 
1841
+ #: ../cerber-load.php:5229
1842
  #, php-format
1843
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
1844
  msgstr ""
1845
 
1846
+ #: ../cerber-load.php:5239
1847
  msgid "Can't activate WP Cerber due to a database error."
1848
  msgstr ""
1849
 
1850
+ #: ../cerber-load.php:5268
1851
+ #, php-format
1852
+ msgid "Your IP address %s has been added to the White IP Access List"
1853
+ msgstr ""
1854
+
1855
+ #: ../cerber-load.php:5281 ../nexus/cerber-nexus.php:64
1856
+ msgid "Enable slave mode"
1857
  msgstr ""
1858
 
1859
+ #: ../cerber-load.php:5297
1860
  msgid "Import settings"
1861
  msgstr ""
1862
 
1863
+ #: ../cerber-load.php:7176
1864
+ msgid "Awesome!"
1865
  msgstr ""
1866
 
1867
  #: ../cerber-users.php:10 ../cerber-users.php:439
1890
  msgid "blocked by %s at %s"
1891
  msgstr ""
1892
 
1893
+ #: ../cerber-users.php:68 ../settings.php:534
1894
  msgid "User Message"
1895
  msgstr ""
1896
 
1942
  msgid "Redirect user after logout"
1943
  msgstr ""
1944
 
1945
+ #: ../cerber-users.php:432 ../settings.php:583
1946
  msgid "User session expiration time"
1947
  msgstr ""
1948
 
1998
  msgid "Policies have been updated"
1999
  msgstr ""
2000
 
2001
+ #: ../cerber-users.php:613
2002
  #, php-format
2003
  msgid "Session has been terminated"
2004
  msgid_plural "%s sessions have been terminated"
2005
  msgstr[0] ""
2006
  msgstr[1] ""
2007
 
2008
+ #: ../cerber-users.php:944
2009
  msgid "WP Cerber Personal Data Eraser"
2010
  msgstr ""
2011
 
2012
+ #: ../cerber-users.php:973
2013
  msgid "Created"
2014
  msgstr ""
2015
 
2016
+ #: ../cerber-users.php:994
2017
  msgid "Terminate session"
2018
  msgstr ""
2019
 
2020
+ #: ../cerber-users.php:995
2021
  msgid "Block user"
2022
  msgstr ""
2023
 
2024
+ #: ../cerber-users.php:1022
2025
+ msgid "Search for IP address"
2026
+ msgstr ""
2027
+
2028
+ #: ../cerber-users.php:1085 ../nexus/cerber-slave-list.php:246
2029
  msgid "Search results for:"
2030
  msgstr ""
2031
 
2032
+ #: ../cerber-users.php:1127
2033
  msgid "Profile"
2034
  msgstr ""
2035
 
2036
+ #: ../cerber-users.php:1140
2037
  msgid "All Logins"
2038
  msgstr ""
2039
 
2040
+ #: ../cerber-users.php:1141
2041
  msgid "User Activity"
2042
  msgstr ""
2043
 
2044
+ #: ../cerber-users.php:1187
2045
  msgid "Terminate"
2046
  msgstr ""
2047
 
2111
  msgid "Aggressive lockout"
2112
  msgstr ""
2113
 
2114
+ #: ../settings.php:165 ../settings.php:527 ../settings.php:727
2115
  msgid "Use White IP Access List"
2116
  msgstr ""
2117
 
2233
  msgid "Send notification to admin email"
2234
  msgstr ""
2235
 
2236
+ #: ../settings.php:279 ../settings.php:829
2237
  msgid "Keep log records of not logged in visitors for"
2238
  msgstr ""
2239
 
2240
+ #: ../settings.php:280 ../settings.php:286 ../settings.php:830 ../settings.php:
2241
+ #: 836 ../settings.php:907 ../settings.php:1098
2242
  msgid "days"
2243
  msgstr ""
2244
 
2245
+ #: ../settings.php:285 ../settings.php:835
2246
  msgid "Keep log records of logged in users for"
2247
  msgstr ""
2248
 
2399
  "string per line."
2400
  msgstr ""
2401
 
2402
+ #: ../settings.php:422
2403
  msgid "Protect user accounts"
2404
  msgstr ""
2405
 
2406
+ #: ../settings.php:427
2407
  msgid ""
2408
  "Restrict user account creation and user management with the following "
2409
  "policies"
2410
  msgstr ""
2411
 
2412
+ #: ../settings.php:433
2413
  msgid "User registrations are limited to these roles"
2414
  msgstr ""
2415
 
2416
+ #: ../settings.php:439
2417
  msgid "Users with these roles are permitted to create new accounts"
2418
  msgstr ""
2419
 
2420
+ #: ../settings.php:444
2421
  msgid "Users with these roles are permitted to change sensitive user data"
2422
  msgstr ""
2423
 
2424
+ #: ../settings.php:449 ../settings.php:477 ../settings.php:506
2425
  msgid "Do not apply these policies to the IP addresses in the White IP Access List"
2426
  msgstr ""
2427
 
2428
+ #: ../settings.php:457
2429
  msgid "Protect user roles"
2430
  msgstr ""
2431
 
2432
+ #: ../settings.php:461
2433
  msgid "Restrict roles and capabilities management with the following policies"
2434
  msgstr ""
2435
 
2436
+ #: ../settings.php:467
2437
  msgid "Users with these roles are permitted to add new roles"
2438
  msgstr ""
2439
 
2440
+ #: ../settings.php:472
2441
  msgid "Users with these roles are permitted to change role capabilities"
2442
  msgstr ""
2443
 
2444
+ #: ../settings.php:485
2445
  msgid "Protect site settings"
2446
  msgstr ""
2447
 
2448
+ #: ../settings.php:489
2449
  msgid "Restrict updating site settings with the following policies"
2450
  msgstr ""
2451
 
2452
+ #: ../settings.php:495
2453
  msgid "Users with these roles are permitted to change protected settings"
2454
  msgstr ""
2455
 
2456
+ #: ../settings.php:500
2457
  msgid "Protected settings"
2458
  msgstr ""
2459
 
2460
+ #: ../settings.php:520
2461
  msgid "Authorized users only"
2462
  msgstr ""
2463
 
2464
+ #: ../settings.php:521
2465
  msgid "Only registered and logged in website users have access to the website"
2466
  msgstr ""
2467
 
2468
+ #: ../settings.php:528
2469
  msgid "Do not apply these policy to the IP addresses in the White IP Access List"
2470
  msgstr ""
2471
 
2472
+ #: ../settings.php:538 ../settings.php:1470
2473
  msgid "Only registered and logged in users are allowed to view this website"
2474
  msgstr ""
2475
 
2476
+ #: ../settings.php:543
2477
  msgid "Redirect to URL"
2478
  msgstr ""
2479
 
2480
+ #: ../settings.php:552
2481
  msgid "Registration limit"
2482
  msgstr ""
2483
 
2484
+ #: ../settings.php:558
2485
  msgid "Restrict email addresses"
2486
  msgstr ""
2487
 
2488
+ #: ../settings.php:561
2489
  msgid "No restrictions"
2490
  msgstr ""
2491
 
2492
+ #: ../settings.php:562
2493
  msgid "Deny all email addresses that match the following"
2494
  msgstr ""
2495
 
2496
+ #: ../settings.php:563
2497
  msgid "Permit only email addresses that match the following"
2498
  msgstr ""
2499
 
2500
+ #: ../settings.php:568
2501
  msgid ""
2502
  "Specify email addresses, wildcards or REGEX patterns. Use comma to separate "
2503
  "items."
2504
  msgstr ""
2505
 
2506
+ #: ../settings.php:568 ../settings.php:576
2507
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
2508
  msgstr ""
2509
 
2510
+ #: ../settings.php:575
2511
  msgid "Prohibited usernames"
2512
  msgstr ""
2513
 
2514
+ #: ../settings.php:576
2515
  msgid ""
2516
  "Usernames from this list are not allowed to log in or register. Any IP "
2517
  "address, have tried to use any of these usernames, will be immediately "
2518
  "blocked. Use comma to separate logins."
2519
  msgstr ""
2520
 
2521
+ #: ../settings.php:584
2522
  msgid "minutes (leave empty to use the default WordPress value)"
2523
  msgstr ""
2524
 
2525
+ #: ../settings.php:590
2526
  msgid "Sort users in dashboard"
2527
  msgstr ""
2528
 
2529
+ #: ../settings.php:591
2530
  msgid "by date of registration"
2531
  msgstr ""
2532
 
2533
+ #: ../settings.php:599
2534
  msgid "Personal Data"
2535
  msgstr ""
2536
 
2537
+ #: ../settings.php:601
2538
  msgid ""
2539
  "These features help your organization to be in compliance with personal data "
2540
  "protection laws"
2541
  msgstr ""
2542
 
2543
+ #: ../settings.php:605
2544
  msgid "Enable data erase"
2545
  msgstr ""
2546
 
2547
+ #: ../settings.php:612
2548
  msgid "Terminate user sessions"
2549
  msgstr ""
2550
 
2551
+ #: ../settings.php:613
2552
  msgid "Delete user sessions data when user data is erased"
2553
  msgstr ""
2554
 
2555
+ #: ../settings.php:619
2556
  msgid "Enable data export"
2557
  msgstr ""
2558
 
2559
+ #: ../settings.php:626
2560
  msgid "Include activity log events"
2561
  msgstr ""
2562
 
2563
+ #: ../settings.php:632
2564
  msgid "Include traffic log entries"
2565
  msgstr ""
2566
 
2567
+ #: ../settings.php:635
2568
  msgid "Request URL"
2569
  msgstr ""
2570
 
2571
+ #: ../settings.php:636
2572
  msgid "Form fields data"
2573
  msgstr ""
2574
 
2575
+ #: ../settings.php:637
2576
  msgid "Cookies"
2577
  msgstr ""
2578
 
2579
+ #: ../settings.php:645
2580
  msgid "Email notifications"
2581
  msgstr ""
2582
 
2583
+ #: ../settings.php:650
2584
  msgid "Lockout notifications"
2585
  msgstr ""
2586
 
2587
+ #: ../settings.php:654 ../settings.php:701 ../settings.php:962
2588
  msgid "Email Address"
2589
  msgstr ""
2590
 
2591
+ #: ../settings.php:655 ../settings.php:703 ../settings.php:801 ../settings.php:964
2592
  msgid "Use comma to specify multiple values"
2593
  msgstr ""
2594
 
2595
+ #: ../settings.php:659
2596
  #, php-format
2597
  msgid "if empty, the website administrator email %s will be used"
2598
  msgstr ""
2599
 
2600
+ #: ../settings.php:662
2601
  msgid "Notification limit"
2602
  msgstr ""
2603
 
2604
+ #: ../settings.php:663
2605
  msgid "notifications are allowed per hour (0 means unlimited)"
2606
  msgstr ""
2607
 
2608
+ #: ../settings.php:667
2609
  msgid "New version is available"
2610
  msgstr ""
2611
 
2612
+ #: ../settings.php:673
2613
  msgid "Push notifications"
2614
  msgstr ""
2615
 
2616
+ #: ../settings.php:674
2617
  msgid "Get notified instantly with mobile and desktop notifications"
2618
  msgstr ""
2619
 
2620
+ #: ../settings.php:678
2621
  msgid "Pushbullet access token"
2622
  msgstr ""
2623
 
2624
+ #: ../settings.php:681
2625
  msgid "Pushbullet device"
2626
  msgstr ""
2627
 
2628
+ #: ../settings.php:688
2629
  msgid "Weekly reports"
2630
  msgstr ""
2631
 
2632
+ #: ../settings.php:689
2633
  msgid ""
2634
  "Weekly report is a summary of all activities and suspicious events occurred "
2635
  "during the last seven days"
2636
  msgstr ""
2637
 
2638
+ #: ../settings.php:692
2639
  msgid "Enable reporting"
2640
  msgstr ""
2641
 
2642
+ #: ../settings.php:696
2643
  msgid "Send reports on"
2644
  msgstr ""
2645
 
2646
+ #: ../settings.php:702 ../settings.php:963
2647
  msgid "if empty, the email addresses from the notification settings will be used"
2648
  msgstr ""
2649
 
2650
+ #: ../settings.php:713
2651
  msgid "Traffic Inspection"
2652
  msgstr ""
2653
 
2654
+ #: ../settings.php:714
2655
  msgid ""
2656
  "Traffic Inspector is a context-aware web application firewall (WAF) that "
2657
  "protects your website by recognizing and denying malicious HTTP requests"
2658
  msgstr ""
2659
 
2660
+ #: ../settings.php:718
2661
  msgid "Enable traffic inspection"
2662
  msgstr ""
2663
 
2664
+ #: ../settings.php:722 ../settings.php:750
2665
  msgid "Maximum compatibility"
2666
  msgstr ""
2667
 
2668
+ #: ../settings.php:723 ../settings.php:751
2669
  msgid "Maximum security"
2670
  msgstr ""
2671
 
2672
+ #: ../settings.php:731
2673
  msgid "Request whitelist"
2674
  msgstr ""
2675
 
2676
+ #: ../settings.php:735
2677
  msgid ""
2678
  "Enter a request URI to exclude the request from inspection. One item per "
2679
  "line."
2680
  msgstr ""
2681
 
2682
+ #: ../settings.php:735 ../settings.php:785
2683
  msgid "To specify a REGEX pattern, enclose a whole line in two braces."
2684
  msgstr ""
2685
 
2686
+ #: ../settings.php:741
2687
  msgid "Erroneous Request Shielding"
2688
  msgstr ""
2689
 
2690
+ #: ../settings.php:743
2691
  msgid ""
2692
  "Block IP addresses that send excessive requests for non-existing pages or "
2693
  "scan website for security breaches"
2694
  msgstr ""
2695
 
2696
+ #: ../settings.php:746
2697
  msgid "Enable error shielding"
2698
  msgstr ""
2699
 
2700
+ #: ../settings.php:755
2701
  msgid "Ignore logged in users"
2702
  msgstr ""
2703
 
2704
+ #: ../settings.php:762
2705
  msgid "Traffic Logging"
2706
  msgstr ""
2707
 
2708
+ #: ../settings.php:763
2709
  msgid ""
2710
  "Enable optional traffic logging if you need to monitor suspicious and "
2711
  "malicious activity or solve security issues"
2712
  msgstr ""
2713
 
2714
+ #: ../settings.php:767
2715
  msgid "Logging mode"
2716
  msgstr ""
2717
 
2718
+ #: ../settings.php:770
2719
  msgid "Logging disabled"
2720
  msgstr ""
2721
 
2722
+ #: ../settings.php:771
2723
+ msgid "Minimal"
2724
+ msgstr ""
2725
+
2726
+ #: ../settings.php:772
2727
  msgid "Smart"
2728
  msgstr ""
2729
 
2730
+ #: ../settings.php:773
2731
  msgid "All traffic"
2732
  msgstr ""
2733
 
2734
+ #: ../settings.php:777
2735
+ msgid "Do not log known crawlers"
2736
+ msgstr ""
2737
+
2738
+ #: ../settings.php:781
2739
+ msgid "Do not log these locations"
2740
  msgstr ""
2741
 
2742
+ #: ../settings.php:785
2743
+ msgid "Specify URL paths to exclude requests from logging. One item per line."
2744
+ msgstr ""
2745
+
2746
+ #: ../settings.php:788
2747
+ msgid "Do not log these User-Agents"
2748
+ msgstr ""
2749
+
2750
+ #: ../settings.php:792
2751
+ msgid "Specify User-Agents to exclude requests from logging. One item per line."
2752
+ msgstr ""
2753
+
2754
+ #: ../settings.php:795
2755
  msgid "Save request fields"
2756
  msgstr ""
2757
 
2758
+ #: ../settings.php:799
2759
  msgid "Mask these form fields"
2760
  msgstr ""
2761
 
2762
+ #: ../settings.php:806
2763
  msgid "Save request headers"
2764
  msgstr ""
2765
 
2766
+ #: ../settings.php:811
2767
  msgid "Save $_SERVER"
2768
  msgstr ""
2769
 
2770
+ #: ../settings.php:815
2771
  msgid "Save request cookies"
2772
  msgstr ""
2773
 
2774
+ #: ../settings.php:819
2775
  msgid "Save software errors"
2776
  msgstr ""
2777
 
2778
+ #: ../settings.php:823
2779
  msgid "Page generation time threshold"
2780
  msgstr ""
2781
 
2782
+ #: ../settings.php:824
2783
  msgid "milliseconds"
2784
  msgstr ""
2785
 
2786
+ #: ../settings.php:844
2787
  msgid "Scanner settings"
2788
  msgstr ""
2789
 
2790
+ #: ../settings.php:845
2791
  msgid ""
2792
  "The scanner monitors file changes, verifies the integrity of WordPress, "
2793
  "plugins, and themes, and detects malware"
2794
  msgstr ""
2795
 
2796
+ #: ../settings.php:849
2797
  msgid "Custom signatures"
2798
  msgstr ""
2799
 
2800
+ #: ../settings.php:853
2801
  msgid ""
2802
  "Specify custom PHP code signatures. One item per line. To specify a REGEX "
2803
  "pattern, enclose a whole line in two braces."
2804
  msgstr ""
2805
 
2806
+ #: ../settings.php:856
2807
  msgid "Unwanted file extensions"
2808
  msgstr ""
2809
 
2810
+ #: ../settings.php:860
2811
  msgid ""
2812
  "Specify file extensions to search for. Full scan only. Use comma to separate "
2813
  "items."
2814
  msgstr ""
2815
 
2816
+ #: ../settings.php:863
2817
  msgid "Directories to exclude"
2818
  msgstr ""
2819
 
2820
+ #: ../settings.php:867
2821
  msgid "Specify directories to exclude from scanning. One directory per line."
2822
  msgstr ""
2823
 
2824
+ #: ../settings.php:870
2825
  msgid "Monitor new files"
2826
  msgstr ""
2827
 
2828
+ #: ../settings.php:874 ../settings.php:883
2829
  msgid "Executable files"
2830
  msgstr ""
2831
 
2832
+ #: ../settings.php:875 ../settings.php:884
2833
  msgid "All files"
2834
  msgstr ""
2835
 
2836
+ #: ../settings.php:879
2837
  msgid "Monitor modified files"
2838
  msgstr ""
2839
 
2840
+ #: ../settings.php:888
2841
  msgid "Change file permissions when necessary"
2842
  msgstr ""
2843
 
2844
+ #: ../settings.php:892
2845
  msgid "Scan temporary directory"
2846
  msgstr ""
2847
 
2848
+ #: ../settings.php:896
2849
  msgid "Scan session directory"
2850
  msgstr ""
2851
 
2852
+ #: ../settings.php:900 ../settings.php:1203 ../settings.php:1231
2853
  msgid "Enable diagnostic logging"
2854
  msgstr ""
2855
 
2856
+ #: ../settings.php:905
2857
  msgid "Delete quarantined files after"
2858
  msgstr ""
2859
 
2860
+ #: ../settings.php:914
2861
  msgid "Automated recurring scan schedule"
2862
  msgstr ""
2863
 
2864
+ #: ../settings.php:915
2865
  msgid ""
2866
  "The scanner automatically scans the website, removes malware and sends email "
2867
  "reports with the results of a scan"
2868
  msgstr ""
2869
 
2870
+ #: ../settings.php:919
2871
  msgid "Launch Quick Scan"
2872
  msgstr ""
2873
 
2874
+ #: ../settings.php:924
2875
  msgid "Launch Full Scan"
2876
  msgstr ""
2877
 
2878
+ #: ../settings.php:931
2879
  msgid "Scan results reporting"
2880
  msgstr ""
2881
 
2882
+ #: ../settings.php:932
2883
  msgid ""
2884
  "Configure what issues to include in the email report and the condition for "
2885
  "sending reports"
2886
  msgstr ""
2887
 
2888
+ #: ../settings.php:936
2889
  msgid "Report an issue if any of the following is true"
2890
  msgstr ""
2891
 
2892
+ #: ../settings.php:939 ../settings.php:985
2893
  msgid "Low severity"
2894
  msgstr ""
2895
 
2896
+ #: ../settings.php:940 ../settings.php:986
2897
  msgid "Medium severity"
2898
  msgstr ""
2899
 
2900
+ #: ../settings.php:941 ../settings.php:987
2901
  msgid "High severity"
2902
  msgstr ""
2903
 
2904
+ #: ../settings.php:945
2905
  msgid "Send email report"
2906
  msgstr ""
2907
 
2908
+ #: ../settings.php:948
2909
  msgid "After every scan"
2910
  msgstr ""
2911
 
2912
+ #: ../settings.php:949
2913
  msgid "If any changes in scan results occurred"
2914
  msgstr ""
2915
 
2916
+ #: ../settings.php:950
2917
  msgid "If new issues found"
2918
  msgstr ""
2919
 
2920
+ #: ../settings.php:954
2921
  msgid "Include file sizes"
2922
  msgstr ""
2923
 
2924
+ #: ../settings.php:958
2925
  msgid "Include scan errors"
2926
  msgstr ""
2927
 
2928
+ #: ../settings.php:973
2929
  msgid "Automatic cleanup of malware and suspicious files"
2930
  msgstr ""
2931
 
2932
+ #: ../settings.php:974
2933
  msgid ""
2934
  "These policies are automatically enforced at the end of every scheduled scan "
2935
  "based on its results. All affected files are moved to the quarantine"
2936
  msgstr ""
2937
 
2938
+ #: ../settings.php:978
2939
  msgid "Delete unattended files"
2940
  msgstr ""
2941
 
2942
+ #: ../settings.php:982
2943
  msgid "Files in the uploads folder"
2944
  msgstr ""
2945
 
2946
+ #: ../settings.php:991
2947
  msgid "Files with unwanted extensions"
2948
  msgstr ""
2949
 
2950
+ #: ../settings.php:997
2951
  msgid "Automatic recovery of modified and infected files"
2952
  msgstr ""
2953
 
2954
+ #: ../settings.php:1000
2955
  msgid "Recover WordPress files"
2956
  msgstr ""
2957
 
2958
+ #: ../settings.php:1004
2959
  msgid "Recover plugins files"
2960
  msgstr ""
2961
 
2962
+ #: ../settings.php:1010
2963
  msgid "Exclusions"
2964
  msgstr ""
2965
 
2966
+ #: ../settings.php:1011
2967
  msgid "These files will never be deleted during automatic cleanup."
2968
  msgstr ""
2969
 
2970
+ #: ../settings.php:1014
2971
  msgid "Files in the temporary directory"
2972
  msgstr ""
2973
 
2974
+ #: ../settings.php:1018
2975
  msgid "Files in the sessions directory"
2976
  msgstr ""
2977
 
2978
+ #: ../settings.php:1022
2979
  msgid "Files in these directories"
2980
  msgstr ""
2981
 
2982
+ #: ../settings.php:1026
2983
  msgid "Use absolute paths. One item per line."
2984
  msgstr ""
2985
 
2986
+ #: ../settings.php:1029
2987
  msgid "Files with these extensions"
2988
  msgstr ""
2989
 
2990
+ #: ../settings.php:1033
2991
  msgid "Use comma to separate items."
2992
  msgstr ""
2993
 
2994
+ #: ../settings.php:1040
2995
  msgid "Cerber anti-spam engine"
2996
  msgstr ""
2997
 
2998
+ #: ../settings.php:1041
2999
  msgid "Spam protection for comment, registration and contact forms on a website"
3000
  msgstr ""
3001
 
3002
+ #: ../settings.php:1045
3003
  msgid "Comment form"
3004
  msgstr ""
3005
 
3006
+ #: ../settings.php:1046
3007
  msgid "Protect comment form with bot detection engine"
3008
  msgstr ""
3009
 
3010
+ #: ../settings.php:1050 ../settings.php:1122
3011
  msgid "Registration form"
3012
  msgstr ""
3013
 
3014
+ #: ../settings.php:1051
3015
  msgid "Protect registration form with bot detection engine"
3016
  msgstr ""
3017
 
3018
+ #: ../settings.php:1055
3019
  msgid "Other forms"
3020
  msgstr ""
3021
 
3022
+ #: ../settings.php:1056
3023
  msgid "Protect all forms on the website with bot detection engine"
3024
  msgstr ""
3025
 
3026
+ #: ../settings.php:1062
3027
  msgid "Adjust anti-spam engine"
3028
  msgstr ""
3029
 
3030
+ #: ../settings.php:1063
3031
  msgid ""
3032
  "These settings enable you to fine-tune the behavior of anti-spam algorithms "
3033
  "and avoid false positives"
3034
  msgstr ""
3035
 
3036
+ #: ../settings.php:1066
3037
  msgid "Safe mode"
3038
  msgstr ""
3039
 
3040
+ #: ../settings.php:1067
3041
  msgid "Use less restrictive policies (allow AJAX)"
3042
  msgstr ""
3043
 
3044
+ #: ../settings.php:1072
3045
  msgid "Disable bot detection engine for logged in users"
3046
  msgstr ""
3047
 
3048
+ #: ../settings.php:1076
3049
  msgid "Query whitelist"
3050
  msgstr ""
3051
 
3052
+ #: ../settings.php:1077
3053
  msgid ""
3054
  "Enter a part of query string or query path to exclude a request from "
3055
  "inspection by the engine. One item per line."
3056
  msgstr ""
3057
 
3058
+ #: ../settings.php:1086
3059
  msgid "Comment processing"
3060
  msgstr ""
3061
 
3062
+ #: ../settings.php:1087
3063
  msgid "How the plugin processes comments submitted through the standard comment form"
3064
  msgstr ""
3065
 
3066
+ #: ../settings.php:1090
3067
  msgid "If a spam comment detected"
3068
  msgstr ""
3069
 
3070
+ #: ../settings.php:1092
3071
  msgid "Deny it completely"
3072
  msgstr ""
3073
 
3074
+ #: ../settings.php:1092
3075
  msgid "Mark it as spam"
3076
  msgstr ""
3077
 
3078
+ #: ../settings.php:1095
3079
  msgid "Trash spam comments"
3080
  msgstr ""
3081
 
3082
+ #: ../settings.php:1097
3083
  msgid "Move spam comments to trash after"
3084
  msgstr ""
3085
 
3086
+ #: ../settings.php:1104
3087
  msgid "reCAPTCHA settings"
3088
  msgstr ""
3089
 
3090
+ #: ../settings.php:1105
3091
  msgid ""
3092
  "Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
3093
  "key on the Google website"
3094
  msgstr ""
3095
 
3096
+ #: ../settings.php:1109
3097
  msgid "Site key"
3098
  msgstr ""
3099
 
3100
+ #: ../settings.php:1113
3101
  msgid "Secret key"
3102
  msgstr ""
3103
 
3104
+ #: ../settings.php:1117
3105
  msgid "Invisible reCAPTCHA"
3106
  msgstr ""
3107
 
3108
+ #: ../settings.php:1118
3109
  msgid "Enable invisible reCAPTCHA"
3110
  msgstr ""
3111
 
3112
+ #: ../settings.php:1118
3113
  msgid ""
3114
  "(do not enable it unless you get and enter the Site and Secret keys for the "
3115
  "invisible version)"
3116
  msgstr ""
3117
 
3118
+ #: ../settings.php:1123
3119
  msgid "Enable reCAPTCHA for WordPress registration form"
3120
  msgstr ""
3121
 
3122
+ #: ../settings.php:1128
3123
  msgid "Enable reCAPTCHA for WooCommerce registration form"
3124
  msgstr ""
3125
 
3126
+ #: ../settings.php:1132
3127
  msgid "Lost password form"
3128
  msgstr ""
3129
 
3130
+ #: ../settings.php:1133
3131
  msgid "Enable reCAPTCHA for WordPress lost password form"
3132
  msgstr ""
3133
 
3134
+ #: ../settings.php:1138
3135
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
3136
  msgstr ""
3137
 
3138
+ #: ../settings.php:1142
3139
  msgid "Login form"
3140
  msgstr ""
3141
 
3142
+ #: ../settings.php:1143
3143
  msgid "Enable reCAPTCHA for WordPress login form"
3144
  msgstr ""
3145
 
3146
+ #: ../settings.php:1148
3147
  msgid "Enable reCAPTCHA for WooCommerce login form"
3148
  msgstr ""
3149
 
3150
+ #: ../settings.php:1153
3151
  msgid "Enable reCAPTCHA for WordPress comment form"
3152
  msgstr ""
3153
 
3154
+ #: ../settings.php:1158
3155
  msgid "Disable reCAPTCHA for logged in users"
3156
  msgstr ""
3157
 
3158
+ #: ../settings.php:1162
3159
  msgid "Limit attempts"
3160
  msgstr ""
3161
 
3162
+ #: ../settings.php:1163
3163
  #, php-format
3164
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
3165
  msgstr ""
3166
 
3167
+ #: ../settings.php:1170
3168
  msgid "Master settings"
3169
  msgstr ""
3170
 
3171
+ #: ../settings.php:1178
3172
  msgid "Return to the website list"
3173
  msgstr ""
3174
 
3175
+ #: ../settings.php:1182
3176
  msgid "Show \"Switched to\" notification"
3177
  msgstr ""
3178
 
3179
+ #: ../settings.php:1186
3180
  msgid "Add @ site to the page title"
3181
  msgstr ""
3182
 
3183
+ #: ../settings.php:1190
3184
  msgid "Use master language"
3185
  msgstr ""
3186
 
3187
+ #: ../settings.php:1214
3188
  msgid "Limit access by IP address"
3189
  msgstr ""
3190
 
3191
+ #: ../settings.php:1220
3192
  msgid "Access to this website"
3193
  msgstr ""
3194
 
3195
+ #: ../settings.php:1223
3196
  msgid "Full access mode"
3197
  msgstr ""
3198
 
3199
+ #: ../settings.php:1224
3200
  msgid "Read-only mode"
3201
  msgstr ""
3202
 
3203
+ #: ../settings.php:1245
3204
  msgid "The full access mode requires the PRO version of WP Cerber"
3205
  msgstr ""
3206
 
3207
+ #: ../settings.php:1313
3208
  msgid "Any activity"
3209
  msgstr ""
3210
 
3425
  msgid "Delete website"
3426
  msgstr ""
3427
 
3428
+ #: ../nexus/cerber-slave-list.php:135
3429
  msgid "All groups"
3430
  msgstr ""
3431
 
3432
+ #: ../nexus/cerber-slave-list.php:145
3433
  msgid "All servers"
3434
  msgstr ""
3435
 
3436
+ #: ../nexus/cerber-slave-list.php:152
3437
  msgid "All countries"
3438
  msgstr ""
3439
 
3440
+ #: ../nexus/cerber-slave-list.php:161
3441
  msgid "Add a slave website"
3442
  msgstr ""
3443
 
3444
+ #: ../nexus/cerber-slave-list.php:281
3445
  msgid "Edit"
3446
  msgstr ""
3447
 
3448
+ #: ../nexus/cerber-slave-list.php:287
3449
  msgid "Switch to"
3450
  msgstr ""
3451
 
3452
+ #: ../nexus/cerber-slave-list.php:415
3453
  msgid "No websites configured."
3454
  msgstr ""
3455
 
3456
+ #: ../nexus/cerber-slave-list.php:415
3457
  msgid "Add a new one"
3458
  msgstr ""
3459
 
3460
+ #: ../nexus/cerber-slave-list.php:415
3461
  msgid "Disable master mode"
3462
  msgstr ""
3463
 
3513
  msgid "Address"
3514
  msgstr ""
3515
 
3516
+ #: ../nexus/cerber-nexus-master.php:285
3517
  msgid "Security access token is invalid"
3518
  msgstr ""
3519
 
3520
+ #: ../nexus/cerber-nexus-master.php:315
3521
  msgid "The website you are trying to add is already in the list"
3522
  msgstr ""
3523
 
3524
+ #: ../nexus/cerber-nexus-master.php:324
3525
  msgid "The website has been added successfully"
3526
  msgstr ""
3527
 
3528
+ #: ../nexus/cerber-nexus-master.php:325
3529
  msgid "Click to edit"
3530
  msgstr ""
3531
 
3532
+ #: ../nexus/cerber-nexus-master.php:326
3533
  msgid "Switch to the Dashboard"
3534
  msgstr ""
3535
 
3536
+ #: ../nexus/cerber-nexus-master.php:329
3537
  msgid ""
3538
  "Keep in mind: You have added the website that does not support SSL "
3539
  "encryption. This may lead to data leakage."
3540
  msgstr ""
3541
 
3542
+ #: ../nexus/cerber-nexus-master.php:448
3543
  #, php-format
3544
  msgid "Website has been deleted"
3545
  msgid_plural "%s websites have been deleted"
3546
  msgstr[0] ""
3547
  msgstr[1] ""
3548
 
3549
+ #: ../nexus/cerber-nexus-master.php:692
3550
  msgid "Invalid response from the slave website"
3551
  msgstr ""
3552
 
3553
+ #: ../nexus/cerber-nexus-master.php:1024
3554
  #, php-format
3555
  msgid "You have switched to %s"
3556
  msgstr ""
3557
 
3558
+ #: ../nexus/cerber-nexus-master.php:1034
3559
  msgid "You have switched back to the master website"
3560
  msgstr ""
3561
 
3562
+ #: ../nexus/cerber-nexus-master.php:1250
3563
  msgid "You are here:"
3564
  msgstr ""
3565
 
3566
+ #: ../nexus/cerber-nexus-master.php:1253 ../nexus/cerber-nexus.php:92 ..
3567
  #: /nexus/cerber-nexus.php:102
3568
  msgid "My Websites"
3569
  msgstr ""
3570
 
3571
+ #: ../nexus/cerber-nexus-master.php:1268
3572
  msgid "Visit Site"
3573
  msgstr ""
3574
 
3575
+ #: ../nexus/cerber-nexus-master.php:1334
3576
  msgid "Are you sure you want to delete selected websites?"
3577
  msgstr ""
3578
 
3579
+ #: ../nexus/cerber-nexus-master.php:1378
3580
  msgid "A newer version is available"
3581
  msgstr ""
3582
 
3583
+ #: ../nexus/cerber-nexus-master.php:1400 ../nexus/cerber-nexus-master.php:1408
3584
  msgid "Active plugins and updates on"
3585
  msgstr ""
3586
 
3682
  msgid "Unable to process file"
3683
  msgstr ""
3684
 
3685
+ #: ../cerber-scanner.php:1455 ../cerber-scanner.php:4645
3686
  msgid "Unable to open file"
3687
  msgstr ""
3688
 
3854
  msgid "Finalizing the scan"
3855
  msgstr ""
3856
 
3857
+ #: ../cerber-scanner.php:4774
3858
  msgid "Full Scan Report"
3859
  msgstr ""
3860
 
3861
+ #: ../cerber-scanner.php:4774
3862
  msgid "Quick Scan Report"
3863
  msgstr ""
3864
 
3865
+ #: ../cerber-scanner.php:4787
3866
  msgid "Files scanned"
3867
  msgstr ""
3868
 
3869
+ #: ../cerber-scanner.php:4872
3870
  msgid "Deleted"
3871
  msgstr ""
3872
 
3873
+ #: ../cerber-scanner.php:4876
3874
  msgid "Recovered"
3875
  msgstr ""
3876
 
3877
+ #: ../cerber-scanner.php:4925
3878
  msgid "Automatically moved to quarantine"
3879
  msgstr ""
3880
 
3881
+ #: ../cerber-scanner.php:4926
3882
  msgid "Automatically deleted"
3883
  msgstr ""
3884
 
3885
+ #: ../cerber-scanner.php:4929
3886
  msgid "Automatically recovered"
3887
  msgstr ""
3888
 
3889
+ #: ../cerber-scanner.php:4941
3890
  msgid "To view full report visit"
3891
  msgstr ""
nexus/cerber-nexus-master.php CHANGED
@@ -45,7 +45,7 @@ function nexus_show_slaves() {
45
  cerber_cache_enable();
46
  echo '<form id="crb-nexus-sites" method="get" action="">';
47
  wp_nonce_field( 'control', 'cerber_nonce' );
48
- echo '<input type="hidden" name="page" value="' . esc_attr( $_REQUEST['page'] ) . '">';
49
  echo '<input type="hidden" name="cerber_admin_do" value="nexus_site_table">';
50
  $slaves = new CRB_Slave_Table();
51
  $slaves->prepare_items();
@@ -124,7 +124,7 @@ function nexus_show_slave_form( $site_id ) {
124
  'site_group' => array(
125
  'class' => 'crb-wide crb-select2-tags',
126
  'title' => __( 'Group', 'wp-cerber' ),
127
- 'set' => nexus_get_groups(),
128
  'value' => $site->group_id,
129
  'db_field' => 'group_id',
130
  'type' => 'select',
@@ -189,11 +189,15 @@ function nexus_slave_form_fields() { // TODO implement this
189
  return array( 'first_name', 'last_name', 'owner_email', 'owner_phone', 'owner_biz', 'owner_address' );
190
  }
191
 
192
- function nexus_get_groups() {
193
  if ( ! $groups = cerber_get_set( 'nexus_groups' ) ) {
194
  $groups = array( 'Default' );
195
  }
196
 
 
 
 
 
197
  return $groups;
198
  }
199
 
45
  cerber_cache_enable();
46
  echo '<form id="crb-nexus-sites" method="get" action="">';
47
  wp_nonce_field( 'control', 'cerber_nonce' );
48
+ echo '<input type="hidden" name="page" value="' . crb_admin_get_page() . '">';
49
  echo '<input type="hidden" name="cerber_admin_do" value="nexus_site_table">';
50
  $slaves = new CRB_Slave_Table();
51
  $slaves->prepare_items();
124
  'site_group' => array(
125
  'class' => 'crb-wide crb-select2-tags',
126
  'title' => __( 'Group', 'wp-cerber' ),
127
+ 'set' => nexus_get_groups( true ),
128
  'value' => $site->group_id,
129
  'db_field' => 'group_id',
130
  'type' => 'select',
189
  return array( 'first_name', 'last_name', 'owner_email', 'owner_phone', 'owner_biz', 'owner_address' );
190
  }
191
 
192
+ function nexus_get_groups( $sort = false ) {
193
  if ( ! $groups = cerber_get_set( 'nexus_groups' ) ) {
194
  $groups = array( 'Default' );
195
  }
196
 
197
+ if ( $sort ) {
198
+ asort( $groups );
199
+ }
200
+
201
  return $groups;
202
  }
203
 
nexus/cerber-slave-list.php CHANGED
@@ -121,54 +121,56 @@ class CRB_Slave_Table extends WP_List_Table {
121
  }
122
 
123
  protected function extra_tablenav( $which ) {
124
- ?>
125
- <div class="alignleft actions">
126
- <?php
127
 
128
  if ( $which == 'top' ) {
 
129
 
130
- $filter = '';
 
131
 
132
- $groups = nexus_get_groups();
133
- if ( count( $groups ) > 1 ) {
134
- $groups = array( '-1' => __( 'All groups', 'wp-cerber' ) ) + $groups;
135
- $filter .= cerber_select( 'filter_group_id', $groups, crb_array_get( $_GET, 'filter_group_id', '-1', '\d+' ) );
136
- }
137
 
138
- $servers = cerber_get_set( 'nexus_servers' );
139
- if ( count( $servers ) > 1 ) {
140
- $list = array();
141
- foreach ( $servers as $id => $server ) {
142
- $list[ $id ] = $server[1];
143
  }
144
- $list = array( '*' => __( 'All servers', 'wp-cerber' ) ) + $list;
145
- $filter .= cerber_select( 'filter_server_id', $list, crb_array_get( $_GET, 'filter_server_id', '*', '[\w\.\:]+' ) );
146
- }
147
 
148
- //$countries = wp_cache_get( 'cerber_nexus', 'countries' );
149
- $countries = cerber_get_set( 'nexus_countries' );
150
- if ( count( $countries ) > 1 ) {
151
- $list = array( '*' => __( 'All countries', 'wp-cerber' ) ) + $countries;
152
- $filter .= cerber_select( 'filter_country', $list, crb_array_get( $_GET, 'filter_country', '*', '\w+' ) );
153
- }
 
 
 
154
 
155
- if ( $filter ) {
156
- echo '<div id="crb-top-filter">' . $filter . '<input type="submit" value="Filter" class="button button-primary action"></div>';
157
- }
 
 
 
158
 
159
- // for_tb_blur is for removing focus from closing button
160
- echo '<input type="button" alt="' . CRB_ADD_SLAVE_LNK . '" title="' . __( 'Add a slave website', 'wp-cerber' ) . '" class="thickbox button" value="Add">';
161
- ?>
162
- <script>
163
- jQuery(document).ready(function ($) {
164
- $('.thickbox').on('click', function () {
165
- setTimeout(function () {
166
- $('#TB_closeWindowButton').blur();
167
- }, 50);
 
 
 
 
 
168
  });
169
- });
170
- </script>
171
  </div>
 
172
  <?php
173
  }
174
  }
121
  }
122
 
123
  protected function extra_tablenav( $which ) {
 
 
 
124
 
125
  if ( $which == 'top' ) {
126
+ ?>
127
 
128
+ <div class="alignleft actions">
129
+ <?php
130
 
131
+ $filter = '';
 
 
 
 
132
 
133
+ $groups = nexus_get_groups( true );
134
+ if ( count( $groups ) > 1 ) {
135
+ $groups = array( '-1' => __( 'All groups', 'wp-cerber' ) ) + $groups;
136
+ $filter .= cerber_select( 'filter_group_id', $groups, crb_array_get( $_GET, 'filter_group_id', '-1', '\d+' ) );
 
137
  }
 
 
 
138
 
139
+ $servers = cerber_get_set( 'nexus_servers' );
140
+ if ( count( $servers ) > 1 ) {
141
+ $list = array();
142
+ foreach ( $servers as $id => $server ) {
143
+ $list[ $id ] = $server[1];
144
+ }
145
+ $list = array( '*' => __( 'All servers', 'wp-cerber' ) ) + $list;
146
+ $filter .= cerber_select( 'filter_server_id', $list, crb_array_get( $_GET, 'filter_server_id', '*', '[\w\.\:]+' ) );
147
+ }
148
 
149
+ //$countries = wp_cache_get( 'cerber_nexus', 'countries' );
150
+ $countries = cerber_get_set( 'nexus_countries' );
151
+ if ( count( $countries ) > 1 ) {
152
+ $list = array( '*' => __( 'All countries', 'wp-cerber' ) ) + $countries;
153
+ $filter .= cerber_select( 'filter_country', $list, crb_array_get( $_GET, 'filter_country', '*', '\w+' ) );
154
+ }
155
 
156
+ if ( $filter ) {
157
+ echo '<div id="crb-top-filter">' . $filter . '<input type="submit" value="Filter" class="button button-primary action"></div>';
158
+ }
159
+
160
+ // for_tb_blur is for removing focus from closing button
161
+ echo '<input type="button" alt="' . CRB_ADD_SLAVE_LNK . '" title="' . __( 'Add a slave website', 'wp-cerber' ) . '" class="thickbox button" value="Add">';
162
+ ?>
163
+ <script>
164
+ jQuery(document).ready(function ($) {
165
+ $('.thickbox').on('click', function () {
166
+ setTimeout(function () {
167
+ $('#TB_closeWindowButton').blur();
168
+ }, 50);
169
+ });
170
  });
171
+ </script>
 
172
  </div>
173
+
174
  <?php
175
  }
176
  }
readme.txt CHANGED
@@ -1,10 +1,11 @@
1
  === Cerber Security, Anti-spam & Malware Scan ===
2
  Contributors: gioni
3
  Tags: security, malware scanner, antispam, firewall, limit login attempts, custom login url, login, recaptcha, captcha, activity, log, logging, whitelist, blacklist, access list
 
4
  Requires at least: 4.9
5
  Requires PHP: 5.6
6
- Tested up to: 5.4
7
- Stable tag: 8.6.5
8
  License: GPLv2
9
 
10
  Protection against hacker attacks and bots. Malware scanner & integrity checker. User activity log. Antispam reCAPTCHA. Limit login attempts.
@@ -330,6 +331,18 @@ To get access to your dashboard you need to copy the WP Cerber Reset folder to t
330
 
331
  == Changelog ==
332
 
 
 
 
 
 
 
 
 
 
 
 
 
333
  = 8.6.5 =
334
  * New: File system analytics. It's generated based on the results of the last full integrity scan.
335
  * New: Logging user deletions. The user’s display name and roles are temporarily stored until all log entries related to the user are deleted.
1
  === Cerber Security, Anti-spam & Malware Scan ===
2
  Contributors: gioni
3
  Tags: security, malware scanner, antispam, firewall, limit login attempts, custom login url, login, recaptcha, captcha, activity, log, logging, whitelist, blacklist, access list
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: 5.6
7
+ Tested up to: 5.5
8
+ Stable tag: 8.6.6
9
  License: GPLv2
10
 
11
  Protection against hacker attacks and bots. Malware scanner & integrity checker. User activity log. Antispam reCAPTCHA. Limit login attempts.
331
 
332
  == Changelog ==
333
 
334
+ = 8.6.6 =
335
+ * New: On the user sessions page, you can now search sessions by a user name, email, and the IP address from which a user has logged in.
336
+ * New: You can specify locations (URL Paths) to exclude requests from logging. They can be either exact matches or regular expressions (REGEX).
337
+ * New: You can exclude requests from logging based on the value of the User-Agent (UA) header.
338
+ * New: A new, minimal logging mode. When it is set, only HTTP requests related to known activities are logged.
339
+ * Improved: The layout of the Live Traffic log has been improved: now all events that are logged during a particular request are shown as an event list sorted in reverse order.
340
+ * Improved: The user sessions page has been optimized for performance and compatibility and now works blazingly fast.
341
+ * Improved: If your website is behind a proxy, IP addresses of user sessions now are detected more precisely.
342
+ * Improved: When you configure the request whitelist in the Traffic Inspector settings, you can now specify rules with or without trailing slash.
343
+ * Improved: A new version of [Cloudflare add-on for WP Cerber](https://wpcerber.com/cloudflare-add-on-wp-cerber/) is available: the performance of the add-on has been optimized.
344
+ * [Read more](https://wpcerber.com/wp-cerber-security-8-6-6/)
345
+
346
  = 8.6.5 =
347
  * New: File system analytics. It's generated based on the results of the last full integrity scan.
348
  * New: Logging user deletions. The user’s display name and roles are temporarily stored until all log entries related to the user are deleted.
settings.php CHANGED
@@ -411,7 +411,8 @@ function cerber_settings_config( $args = array() ) {
411
  'type' => 'textarea',
412
  'delimiter' => "\n",
413
  'list' => true,
414
- 'label' => __( 'Specify REST API namespaces to be allowed if REST API is disabled. One string per line.', 'wp-cerber' ) . ' <a target="_blank" href="https://wpcerber.com/restrict-access-to-wordpress-rest-api/">Read more</a>',
 
415
  'enabler' => array( 'norest' ),
416
  ),
417
  ),
@@ -766,15 +767,30 @@ function cerber_settings_config( $args = array() ) {
766
  'title' => __( 'Logging mode', 'wp-cerber' ),
767
  'type' => 'select',
768
  'set' => array(
769
- __( 'Logging disabled', 'wp-cerber' ),
770
- __( 'Smart', 'wp-cerber' ),
771
- __( 'All traffic', 'wp-cerber' )
 
772
  ),
773
  ),
774
  'tinocrabs' => array(
775
- 'title' => __( 'Ignore crawlers', 'wp-cerber' ),
776
  'type' => 'checkbox',
777
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
778
  'tifields' => array(
779
  'title' => __( 'Save request fields', 'wp-cerber' ),
780
  'type' => 'checkbox',
@@ -1513,8 +1529,10 @@ function cerber_get_defaults( $setting = null ) {
1513
  'tiwhite' => '',
1514
  'tierrmon' => '1',
1515
  'tierrnoauth' => 0,
1516
- 'timode' => '1',
1517
  'tinocrabs' => '1',
 
 
1518
  'tifields' => 0,
1519
  'timask' => '',
1520
  'tihdrs' => 0,
411
  'type' => 'textarea',
412
  'delimiter' => "\n",
413
  'list' => true,
414
+ 'label' => __( 'Specify REST API namespaces to be allowed if REST API is disabled. One string per line.', 'wp-cerber' ),
415
+ 'doclink' => 'https://wpcerber.com/restrict-access-to-wordpress-rest-api/',
416
  'enabler' => array( 'norest' ),
417
  ),
418
  ),
767
  'title' => __( 'Logging mode', 'wp-cerber' ),
768
  'type' => 'select',
769
  'set' => array(
770
+ 0 => __( 'Logging disabled', 'wp-cerber' ),
771
+ 3 => __( 'Minimal', 'wp-cerber' ),
772
+ 1 => __( 'Smart', 'wp-cerber' ),
773
+ 2 => __( 'All traffic', 'wp-cerber' )
774
  ),
775
  ),
776
  'tinocrabs' => array(
777
+ 'title' => __( 'Do not log known crawlers', 'wp-cerber' ),
778
  'type' => 'checkbox',
779
  ),
780
+ 'tinolocs' => array(
781
+ 'title' => __( 'Do not log these locations', 'wp-cerber' ),
782
+ 'type' => 'textarea',
783
+ 'delimiter' => "\n",
784
+ 'list' => true,
785
+ 'label' => __( 'Specify URL paths to exclude requests from logging. One item per line.', 'wp-cerber' ) . ' ' . __( 'To specify a REGEX pattern, enclose a whole line in two braces.', 'wp-cerber' ),
786
+ ),
787
+ 'tinoua' => array(
788
+ 'title' => __( 'Do not log these User-Agents', 'wp-cerber' ),
789
+ 'type' => 'textarea',
790
+ 'delimiter' => "\n",
791
+ 'list' => true,
792
+ 'label' => __( 'Specify User-Agents to exclude requests from logging. One item per line.', 'wp-cerber' ),
793
+ ),
794
  'tifields' => array(
795
  'title' => __( 'Save request fields', 'wp-cerber' ),
796
  'type' => 'checkbox',
1529
  'tiwhite' => '',
1530
  'tierrmon' => '1',
1531
  'tierrnoauth' => 0,
1532
+ 'timode' => '3',
1533
  'tinocrabs' => '1',
1534
+ 'tinolocs' => array(),
1535
+ 'tinoua' => array(),
1536
  'tifields' => 0,
1537
  'timask' => '',
1538
  'tihdrs' => 0,
wp-cerber.php CHANGED
@@ -1,11 +1,11 @@
1
  <?php
2
  /*
3
- Plugin Name: WP Cerber Security, Antispam & Malware Scan
4
  Plugin URI: https://wpcerber.com
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.6.5
9
  Text Domain: wp-cerber
10
  Domain Path: /languages
11
  Network: true
@@ -31,7 +31,7 @@
31
 
32
  */
33
 
34
- define( 'CERBER_VER', '8.6.5' );
35
  define( 'CERBER_PLUGIN_ID', 'wp-cerber/wp-cerber.php' );
36
 
37
  function cerber_plugin_file() {
1
  <?php
2
  /*
3
+ Plugin Name: WP Cerber Security, Anti-spam & Malware Scan
4
  Plugin URI: https://wpcerber.com
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.6.6
9
  Text Domain: wp-cerber
10
  Domain Path: /languages
11
  Network: true
31
 
32
  */
33
 
34
+ define( 'CERBER_VER', '8.6.6' );
35
  define( 'CERBER_PLUGIN_ID', 'wp-cerber/wp-cerber.php' );
36
 
37
  function cerber_plugin_file() {