Cerber Security & Antispam - Version 8.6.8

Version Description

  • New: A shortcode to display WP Cerbers cookies. You can display a list of cookies set by WP Cerber on any page.
  • New: Deferred rendering of the custom login page. This new feature can help you if you need to solve plugin compatibility issues.
  • Improved: The style of the scanner email reports has been improved.
  • Fixed: A bug with displaying the status icon of an IP address on the Activity and Live Traffic admin pages.
  • Fixed: If the name of a commercial plugin contains a special HTML symbol like ampersand, it cannot be uploaded to verify the integrity of the plugin.
  • Read more
Download this release

Release Info

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

Code changes from version 8.6.7 to 8.6.8

assets/scanner.js CHANGED
@@ -5,6 +5,8 @@ jQuery(document).ready(function ($) {
5
 
6
  window.crb_scan_id = 0;
7
 
 
 
8
  var crb_req_min_delay = 1000; // ms, throttling - making requests to the server not often than
9
 
10
  var crb_scan_mode = '';
@@ -290,7 +292,7 @@ jQuery(document).ready(function ($) {
290
  name_classes += ' cursor-pointer';
291
  }
292
 
293
- if (issue_type_id < 10 ) {
294
  // Section -------------------------
295
 
296
  if (issue_type_id === 4) {
@@ -435,7 +437,7 @@ jQuery(document).ready(function ($) {
435
  if (issue.details.xdata && issue.details.xdata.length) {
436
  attr += ' data-idx="' + index + '" ';
437
  }
438
- if (attr || (issue[0] > 14 && issue[0] < 50)) {
439
  ret = '<a href="#" ' + attr + '>' + ret + '</a>';
440
  }
441
 
@@ -689,8 +691,8 @@ jQuery(document).ready(function ($) {
689
  var itype = cerber_get_itype(element);
690
  crb_the_file = cerber_get_ifile(element);
691
 
692
- if (itype === 15 || itype === 18) {
693
- var section_name = section.data('section-name');
694
  cerber_popup_show($(element).text(), cerber_get_issue_explain(itype, section_name), true);
695
  return;
696
  }
@@ -764,8 +766,19 @@ jQuery(document).ready(function ($) {
764
  subject = 'WordPress';
765
  }
766
  subject = '<b>' + subject + '</b>';
767
- var ret = [];
768
  switch (itype) {
 
 
 
 
 
 
 
 
 
 
 
769
  case 15:
770
  ret.push(crb_txt_strings['explain'][6]);
771
  ret.push(crb_txt_strings['explain'][7].replace('%s', subject));
@@ -865,8 +878,8 @@ jQuery(document).ready(function ($) {
865
 
866
  function crb_ref_errors(response) {
867
  if (response.error) {
868
- crb_upload_form_ul.append('<li>Error: ' + response.error + '</li>');
869
- crb_upload_form_ul.append('<li style="color: red;">Process aborted</li>');
870
  }
871
  }
872
 
@@ -888,7 +901,11 @@ jQuery(document).ready(function ($) {
888
  return;
889
  }
890
  //var file_name = $(this).data('file-name');
891
- var file_name = $(this).closest('tr').data('file_name');
 
 
 
 
892
 
893
  var view_width = window.innerWidth * 0.8;
894
  var view_height = window.innerHeight * 0.8;
5
 
6
  window.crb_scan_id = 0;
7
 
8
+ const CERBER_LDE = 10;
9
+
10
  var crb_req_min_delay = 1000; // ms, throttling - making requests to the server not often than
11
 
12
  var crb_scan_mode = '';
292
  name_classes += ' cursor-pointer';
293
  }
294
 
295
+ if (issue_type_id < CERBER_LDE ) {
296
  // Section -------------------------
297
 
298
  if (issue_type_id === 4) {
437
  if (issue.details.xdata && issue.details.xdata.length) {
438
  attr += ' data-idx="' + index + '" ';
439
  }
440
+ if (attr || (issue[0] === CERBER_LDE || (issue[0] > 14 && issue[0] < 50))) {
441
  ret = '<a href="#" ' + attr + '>' + ret + '</a>';
442
  }
443
 
691
  var itype = cerber_get_itype(element);
692
  crb_the_file = cerber_get_ifile(element);
693
 
694
+ if (itype === CERBER_LDE || itype === 15 || itype === 18) {
695
+ let section_name = section.data('section-name');
696
  cerber_popup_show($(element).text(), cerber_get_issue_explain(itype, section_name), true);
697
  return;
698
  }
766
  subject = 'WordPress';
767
  }
768
  subject = '<b>' + subject + '</b>';
769
+ let ret = [];
770
  switch (itype) {
771
+ case CERBER_LDE: // New way
772
+ let explainer = crb_txt_strings['explain_issue'][itype];
773
+ ret = explainer[0].map(item => {
774
+ return item.replace('%s', subject);
775
+ });
776
+ if (typeof explainer[1] !== 'undefined') {
777
+ ret = ret.concat(explainer[1].map(i => {
778
+ return crb_txt_strings['explain'][i].replace('%s', subject);
779
+ }));
780
+ }
781
+ break;
782
  case 15:
783
  ret.push(crb_txt_strings['explain'][6]);
784
  ret.push(crb_txt_strings['explain'][7].replace('%s', subject));
878
 
879
  function crb_ref_errors(response) {
880
  if (response.error) {
881
+ crb_upload_form_ul.append('<li style="color: #dd1320;">Process aborted</li>');
882
+ crb_upload_form_ul.append('<li style="color: #dd1320;">' + response.error + '</li>');
883
  }
884
  }
885
 
901
  return;
902
  }
903
  //var file_name = $(this).data('file-name');
904
+ let file_name = $(this).closest('tr').data('file_name');
905
+
906
+ if (!file_name.length) {
907
+ return;
908
+ }
909
 
910
  var view_width = window.innerWidth * 0.8;
911
  var view_height = window.innerHeight * 0.8;
cerber-lab.php CHANGED
@@ -188,6 +188,10 @@ function lab_api_send_request( $workload = array(), $payload_key = null ) {
188
  'time' => time(),
189
  );
190
 
 
 
 
 
191
  $ret = lab_send_request( $request );
192
 
193
  // If something goes wrong, take the next closest node
@@ -586,13 +590,19 @@ function lab_is_cloud_ok(){
586
  */
587
  function lab_save_push( $ip, $reason_id, $details = null ) {
588
  global $cerber_act_status;
 
 
 
 
 
 
589
  $ip = filter_var( $ip, FILTER_VALIDATE_IP );
590
  if ( ! $ip || is_ip_private( $ip ) || crb_acl_is_white( $ip ) || ! ( crb_get_settings( 'cerberlab' ) || lab_lab() ) ) {
591
  return;
592
  }
593
 
594
  $reason_id = absint( $reason_id );
595
- if ( $reason_id == 8 || $reason_id == 9 ) {
596
  $details = array( 'uri' => $_SERVER['REQUEST_URI'] );
597
  }
598
  elseif ( $reason_id == 100 ) {
@@ -602,9 +612,12 @@ function lab_save_push( $ip, $reason_id, $details = null ) {
602
  if ( is_array( $details ) ) {
603
  $details = serialize( $details );
604
  }
 
605
  $details = cerber_real_escape( $details );
606
 
607
  cerber_db_query( 'INSERT INTO ' . CERBER_LAB_TABLE . ' (ip, reason_id, details, stamp) VALUES ("' . $ip . '",' . $reason_id . ',"' . $details . '",' . time() . ')' );
 
 
608
  }
609
  /**
610
  * Get data for lab
188
  'time' => time(),
189
  );
190
 
191
+ if ( lab_lab() ) {
192
+ $request['site_url'] = cerber_get_site_url(); // @since 8.6.8
193
+ }
194
+
195
  $ret = lab_send_request( $request );
196
 
197
  // If something goes wrong, take the next closest node
590
  */
591
  function lab_save_push( $ip, $reason_id, $details = null ) {
592
  global $cerber_act_status;
593
+ static $done = false;
594
+
595
+ if ( $done || cerber_check_groove() ) {
596
+ return; // Known user
597
+ }
598
+
599
  $ip = filter_var( $ip, FILTER_VALIDATE_IP );
600
  if ( ! $ip || is_ip_private( $ip ) || crb_acl_is_white( $ip ) || ! ( crb_get_settings( 'cerberlab' ) || lab_lab() ) ) {
601
  return;
602
  }
603
 
604
  $reason_id = absint( $reason_id );
605
+ if ( in_array( $reason_id, array( 708, 709, 55 ) ) ) {
606
  $details = array( 'uri' => $_SERVER['REQUEST_URI'] );
607
  }
608
  elseif ( $reason_id == 100 ) {
612
  if ( is_array( $details ) ) {
613
  $details = serialize( $details );
614
  }
615
+
616
  $details = cerber_real_escape( $details );
617
 
618
  cerber_db_query( 'INSERT INTO ' . CERBER_LAB_TABLE . ' (ip, reason_id, details, stamp) VALUES ("' . $ip . '",' . $reason_id . ',"' . $details . '",' . time() . ')' );
619
+
620
+ $done = true;
621
  }
622
  /**
623
  * Get data for lab
cerber-load.php CHANGED
@@ -852,9 +852,6 @@ function cerber_extra_vision() {
852
  Display WordPress login form if the Custom login URL is requested
853
 
854
  */
855
- if ( defined( 'CERBER_OLD_LP' ) && CERBER_OLD_LP ) {
856
- add_action( 'init', 'cerber_wp_login_page', 20 ); // TODO: remove in the next version
857
- }
858
  function cerber_wp_login_page() {
859
  if ( $path = crb_get_settings( 'loginpath' ) ) {
860
  if ( cerber_is_login_request() ) {
@@ -1663,7 +1660,6 @@ function crb_is_reg_limit_reached() {
1663
  $stamp = absint( time() - 60 * crb_get_settings( 'reglimit_min' ) );
1664
  $count = cerber_db_get_var( 'SELECT count(ip) FROM ' . CERBER_LOG_TABLE . ' WHERE ip = "' . $ip . '" AND activity = 2 AND stamp > ' . $stamp );
1665
  if ( $count >= crb_get_settings( 'reglimit_num' ) ) {
1666
- lab_save_push( $ip, 344 );
1667
 
1668
  return true;
1669
  }
@@ -1977,12 +1973,18 @@ add_action( 'init', function () {
1977
 
1978
  cerber_post_control();
1979
 
1980
- if ( ! defined( 'CERBER_OLD_LP' ) || ! CERBER_OLD_LP ) { // TODO: remove in the next version
1981
- cerber_wp_login_page(); // @since 8.3.4
 
1982
  }
1983
 
1984
  }, 0 );
1985
 
 
 
 
 
 
1986
  /**
1987
  * Restrict access to some vital parts of WP
1988
  *
@@ -3034,13 +3036,13 @@ function cerber_block_add( $ip_address = '', $reason_id = 1, $details = '', $dur
3034
  * @return bool true if IP is locked out
3035
  */
3036
  function cerber_block_check( $ip = '' ) {
3037
- static $ret;
3038
 
3039
- if ( ! isset( $ret ) ) {
3040
- $ret = cerber_get_block( $ip );
3041
  }
3042
 
3043
- return $ret;
3044
  }
3045
 
3046
  /**
@@ -4311,9 +4313,7 @@ function cerber_send_email( $type = '', $msg = '', $ip = '' ) {
4311
  $body = cerber_generate_email_report();
4312
  $link = cerber_admin_link( 'notifications' );
4313
  $body .= '<br/>' . __( 'To change reporting settings visit', 'wp-cerber' ) . ' <a href="' . $link . '">' . $link . '</a>';
4314
- if ($msg) {
4315
- $body .= nl2br($msg);
4316
- }
4317
  break;
4318
  case 'scan':
4319
  $html_mode = true;
@@ -5050,7 +5050,7 @@ function cerber_log( $activity, $login = '', $user_id = 0, $ip = null ) {
5050
  }
5051
  }
5052
 
5053
- if ( in_array( $activity, array( 16, 17, 40, 56, 100 ) ) ) {
5054
  lab_save_push( $ip, $activity );
5055
  }
5056
 
@@ -7196,16 +7196,13 @@ function cerber_push_the_news() {
7196
  <p style="margin-top: 20px;">
7197
  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!
7198
  </p>
 
 
 
 
 
 
7199
 
7200
-
7201
- <p><a href="https://www.trustpilot.com/review/wpcerber.com" target="_blank">Trustpilot</a> &nbsp;/&nbsp;
7202
- <a href="https://www.g2crowd.com/products/cerber-security-antispam-malware-scan/" target="_blank">G2.COM</a> &nbsp;/&nbsp;
7203
- <!-- <a href="https://reviews.capterra.com/new/187653" target="_blank">Capterra</a></p> -->
7204
-
7205
- <!--<p><a href="https://www.trustpilot.com/review/wpcerber.com" target="_blank">Trustpilot</a></p>
7206
- <p><a href="https://www.g2crowd.com/products/cerber-security-antispam-malware-scan/" target="_blank">G2.COM</a></p>
7207
- <p><a href="https://reviews.capterra.com/new/187653" target="_blank">Capterra</a></p>
7208
- -->
7209
  ';
7210
  }
7211
  else {
@@ -7274,4 +7271,65 @@ function cerber_parse_change_log( $last_only = false ) {
7274
  }
7275
 
7276
  return $ret;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7277
  }
852
  Display WordPress login form if the Custom login URL is requested
853
 
854
  */
 
 
 
855
  function cerber_wp_login_page() {
856
  if ( $path = crb_get_settings( 'loginpath' ) ) {
857
  if ( cerber_is_login_request() ) {
1660
  $stamp = absint( time() - 60 * crb_get_settings( 'reglimit_min' ) );
1661
  $count = cerber_db_get_var( 'SELECT count(ip) FROM ' . CERBER_LOG_TABLE . ' WHERE ip = "' . $ip . '" AND activity = 2 AND stamp > ' . $stamp );
1662
  if ( $count >= crb_get_settings( 'reglimit_num' ) ) {
 
1663
 
1664
  return true;
1665
  }
1973
 
1974
  cerber_post_control();
1975
 
1976
+ if ( ( ! defined( 'CERBER_OLD_LP' ) || ! CERBER_OLD_LP )
1977
+ && ! crb_get_settings( 'logindeferred' ) ) {
1978
+ cerber_wp_login_page();
1979
  }
1980
 
1981
  }, 0 );
1982
 
1983
+ if ( ( defined( 'CERBER_OLD_LP' ) && CERBER_OLD_LP )
1984
+ || crb_get_settings( 'logindeferred' ) ) {
1985
+ add_action( 'init', 'cerber_wp_login_page', 20 );
1986
+ }
1987
+
1988
  /**
1989
  * Restrict access to some vital parts of WP
1990
  *
3036
  * @return bool true if IP is locked out
3037
  */
3038
  function cerber_block_check( $ip = '' ) {
3039
+ static $cache = array();
3040
 
3041
+ if ( ! isset( $cache[ $ip ] ) ) {
3042
+ $cache[ $ip ] = cerber_get_block( $ip );
3043
  }
3044
 
3045
+ return $cache[ $ip ];
3046
  }
3047
 
3048
  /**
4313
  $body = cerber_generate_email_report();
4314
  $link = cerber_admin_link( 'notifications' );
4315
  $body .= '<br/>' . __( 'To change reporting settings visit', 'wp-cerber' ) . ' <a href="' . $link . '">' . $link . '</a>';
4316
+ $body .= $msg;
 
 
4317
  break;
4318
  case 'scan':
4319
  $html_mode = true;
5050
  }
5051
  }
5052
 
5053
+ if ( in_array( $activity, array( 16, 17, 40, 55, 56, 100 ) ) ) {
5054
  lab_save_push( $ip, $activity );
5055
  }
5056
 
7196
  <p style="margin-top: 20px;">
7197
  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!
7198
  </p>
7199
+
7200
+ <p><a href="https://www.trustpilot.com/evaluate/wpcerber.com" target="_blank">Leave review on Trustpilot</a>
7201
+ &nbsp;|&nbsp;
7202
+ <a href="https://www.g2.com/products/cerber-security-antispam-malware-scan/reviews/start" target="_blank">Leave review on G2.COM</a>
7203
+ <!-- &nbsp;|&nbsp;
7204
+ <a href="https://reviews.capterra.com/new/187653" target="_blank">Capterra</a></p> -->
7205
 
 
 
 
 
 
 
 
 
 
7206
  ';
7207
  }
7208
  else {
7271
  }
7272
 
7273
  return $ret;
7274
+ }
7275
+
7276
+ add_shortcode( 'wp_cerber_cookies', 'cerber_show_cookies' );
7277
+ function cerber_show_cookies( $attr ) {
7278
+ global $wp_cerber_cookies;
7279
+
7280
+ $html_atts = '';
7281
+
7282
+ if ( isset( $attr['id'] ) ) {
7283
+ $html_atts .= ' id="' . esc_attr( $attr['id'] ) . '"';
7284
+ }
7285
+
7286
+ if ( isset( $attr['style'] ) ) {
7287
+ $html_atts .= ' style="' . esc_attr( $attr['style'] ) . '"';
7288
+ }
7289
+
7290
+ /*if ( ! $cookies = cerber_get_set( 'cerber_sweets' ) ) {
7291
+ return '';
7292
+ }*/
7293
+
7294
+ $cookies = $wp_cerber_cookies;
7295
+
7296
+ if ( ! is_user_logged_in() ) {
7297
+ foreach ( $cookies as $cookie => $data ) {
7298
+ if ( cerber_is_auth_cookie( $cookie ) ) {
7299
+ unset( $cookies[ $cookie ] );
7300
+ }
7301
+ }
7302
+ }
7303
+
7304
+ $ret = '';
7305
+
7306
+ if ( isset( $attr['text'] ) ) {
7307
+ $ret .= $attr['text'];
7308
+ }
7309
+
7310
+ $type = crb_array_get( $attr, 'type' );
7311
+
7312
+ switch ( $type ) {
7313
+ case 'comma':
7314
+ $ret .= implode( ', ', array_keys( $cookies ) );
7315
+ break;
7316
+ case 'table':
7317
+ $items = '';
7318
+ foreach ( $cookies as $cookie => $data ) {
7319
+ $items .= '<tr><td>' . $cookie . '</td></tr>';
7320
+ }
7321
+
7322
+ $ret .= '<table ' . $html_atts . '><tbody>' . $items . '</tbody></table>';
7323
+ break;
7324
+ case 'list':
7325
+ default:
7326
+ $items = '';
7327
+ foreach ( $cookies as $cookie => $data ) {
7328
+ $items .= '<li>' . $cookie . '</li>';
7329
+ }
7330
+
7331
+ $ret .= '<ul ' . $html_atts . '>' . $items . '</ul>';
7332
+ }
7333
+
7334
+ return $ret;
7335
  }
cerber-scanner.php CHANGED
@@ -53,6 +53,7 @@ const CERBER_MAX_SECONDS_CLOUD = 25;
53
  const CERBER_FOK = 1;
54
  const CERBER_VULN = 4;
55
  const CERBER_NOHASH = 5;
 
56
  const CERBER_IMD = 15;
57
  const CERBER_SCF = 16;
58
  const CERBER_PMC = 17;
@@ -1449,7 +1450,8 @@ function cerber_get_issue_label( $id = null ) {
1449
  8 => __( 'Unable to check the integrity of the theme due to a network error', 'wp-cerber' ),
1450
  9 => __( 'Unable to check the integrity due to a DB error', 'wp-cerber' ),
1451
 
1452
- 10 => __( "Local file doesn't exist", 'wp-cerber' ),
 
1453
  11 => 'No local hash found',
1454
  13 => __( 'Unable to process file', 'wp-cerber' ),
1455
  14 => __( 'Unable to open file', 'wp-cerber' ),
@@ -2710,6 +2712,17 @@ function cerber_get_strings() {
2710
  __( 'Resolve issue', 'wp-cerber' ),
2711
  );
2712
 
 
 
 
 
 
 
 
 
 
 
 
2713
  $data['complete'] = 1;
2714
 
2715
  return $data;
@@ -3995,8 +4008,18 @@ function crb_hash_maker( $zip_file, $zip_folder, $delete = true, $expires = 0 )
3995
  return new WP_Error( 'cerber-zip', 'Unable to unzip file ' . $zip_file . ' ' . $result->get_error_message() );
3996
  }
3997
 
3998
- if ( ! $obj = cerber_detect_object( $zip_folder ) ) {
3999
- return new WP_Error( 'cerber-file', 'File ' . basename( $zip_file ) . ' cannot be used. Proper program code not found or version mismatch. Please upload another file.' );
 
 
 
 
 
 
 
 
 
 
4000
  }
4001
 
4002
  $dir = $obj['src'] . DIRECTORY_SEPARATOR;
@@ -4229,7 +4252,12 @@ function cerber_detect_object( $folder = '' ) {
4229
  }
4230
  }
4231
 
4232
- if ( $result = cerber_check_theme_data( $the_folder ) ) {
 
 
 
 
 
4233
  return array(
4234
  'type' => CRB_HASH_THEME,
4235
  'name' => $result->get( 'Name' ),
@@ -4255,24 +4283,30 @@ function cerber_detect_object( $folder = '' ) {
4255
  }
4256
 
4257
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
 
 
4258
  foreach ( $files as $file_name ) {
4259
  $plugin_data = get_plugin_data( $file_name );
4260
  if ( ! empty ( $plugin_data['Name'] ) && ! empty ( $plugin_data['Version'] ) ) {
4261
- foreach ( get_plugins() as $key => $plugin ) {
4262
- if ( $plugin['Name'] == $plugin_data['Name'] && $plugin['Version'] == $plugin_data['Version'] ) {
4263
-
4264
- return array(
4265
- 'type' => CRB_HASH_PLUGIN,
4266
- 'name' => $plugin_data['Name'],
4267
- 'ver' => $plugin_data['Version'],
4268
- 'data' => $plugin_data,
4269
- 'src' => dirname( $file_name ),
4270
- 'single' => $single,
4271
- 'file' => $file_name
4272
- );
 
 
 
 
 
4273
  }
4274
  }
4275
-
4276
  }
4277
  }
4278
 
@@ -4283,7 +4317,7 @@ function cerber_detect_object( $folder = '' ) {
4283
  /**
4284
  * @param string $folder A folder with theme files
4285
  *
4286
- * @return bool|WP_Theme
4287
  */
4288
  function cerber_check_theme_data( $folder ) {
4289
 
@@ -4322,6 +4356,8 @@ function cerber_check_theme_data( $folder ) {
4322
  if ( ! empty ( $headers['Template'] ) && ( $headers['Template'] == $theme->get( 'Template' ) ) ) {
4323
  return $theme;
4324
  }
 
 
4325
  }
4326
  }
4327
  }
53
  const CERBER_FOK = 1;
54
  const CERBER_VULN = 4;
55
  const CERBER_NOHASH = 5;
56
+ const CERBER_LDE = 10;
57
  const CERBER_IMD = 15;
58
  const CERBER_SCF = 16;
59
  const CERBER_PMC = 17;
1450
  8 => __( 'Unable to check the integrity of the theme due to a network error', 'wp-cerber' ),
1451
  9 => __( 'Unable to check the integrity due to a DB error', 'wp-cerber' ),
1452
 
1453
+ //CERBER_LDE => __( "Local file doesn't exist", 'wp-cerber' ),
1454
+ CERBER_LDE => __( "File is missing", 'wp-cerber' ),
1455
  11 => 'No local hash found',
1456
  13 => __( 'Unable to process file', 'wp-cerber' ),
1457
  14 => __( 'Unable to open file', 'wp-cerber' ),
2712
  __( 'Resolve issue', 'wp-cerber' ),
2713
  );
2714
 
2715
+ // New way
2716
+ $data['explain_issue'] = array(
2717
+ CERBER_LDE => array(
2718
+ array( // Mandatory
2719
+ __( "This file is missing. It's been deleted or it's not been installed.", 'wp-cerber' ),
2720
+ 'The scanner identifies this file as missing based on the integrity data (checksums) provided by the developer of %s.'
2721
+ ),
2722
+ array( 7 ) // Refers to $data['explain'] strings. Optional
2723
+ ),
2724
+ );
2725
+
2726
  $data['complete'] = 1;
2727
 
2728
  return $data;
4008
  return new WP_Error( 'cerber-zip', 'Unable to unzip file ' . $zip_file . ' ' . $result->get_error_message() );
4009
  }
4010
 
4011
+ $obj = cerber_detect_object( $zip_folder );
4012
+ $err = '';
4013
+
4014
+ if ( is_wp_error( $obj ) ) {
4015
+ $err = $obj->get_error_message();
4016
+ }
4017
+ elseif ( ! $obj ) {
4018
+ $err = 'Proper program code not found.';
4019
+ }
4020
+
4021
+ if ( $err ) {
4022
+ return new WP_Error( 'cerber-file', sprintf( __( 'Error: file %s cannot be used.', 'wp-cerber' ), '<b>' . basename( $zip_file ) . '</b>' ) . ' ' . $err . ' ' . __( 'Please upload another file.', 'wp-cerber' ) );
4023
  }
4024
 
4025
  $dir = $obj['src'] . DIRECTORY_SEPARATOR;
4252
  }
4253
  }
4254
 
4255
+ $result = cerber_check_theme_data( $the_folder );
4256
+
4257
+ if ( is_wp_error( $result ) ) {
4258
+ return $result;
4259
+ }
4260
+ elseif ( $result ) {
4261
  return array(
4262
  'type' => CRB_HASH_THEME,
4263
  'name' => $result->get( 'Name' ),
4283
  }
4284
 
4285
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
4286
+ $plugins = get_plugins();
4287
+
4288
  foreach ( $files as $file_name ) {
4289
  $plugin_data = get_plugin_data( $file_name );
4290
  if ( ! empty ( $plugin_data['Name'] ) && ! empty ( $plugin_data['Version'] ) ) {
4291
+ $name = htmlspecialchars_decode( $plugin_data['Name'] ); // get_plugins() != get_plugin_data()
4292
+ foreach ( $plugins as $key => $plugin ) {
4293
+ if ( $plugin['Name'] == $name ) {
4294
+ if ( $plugin['Version'] == $plugin_data['Version'] ) {
4295
+
4296
+ return array(
4297
+ 'type' => CRB_HASH_PLUGIN,
4298
+ 'name' => $name,
4299
+ 'ver' => $plugin_data['Version'],
4300
+ 'data' => $plugin_data,
4301
+ 'src' => dirname( $file_name ),
4302
+ 'single' => $single,
4303
+ 'file' => $file_name
4304
+ );
4305
+ }
4306
+
4307
+ return new WP_Error( 'cerber-file', 'Plugin version mismatch.' );
4308
  }
4309
  }
 
4310
  }
4311
  }
4312
 
4317
  /**
4318
  * @param string $folder A folder with theme files
4319
  *
4320
+ * @return bool|WP_Theme|WP_Error
4321
  */
4322
  function cerber_check_theme_data( $folder ) {
4323
 
4356
  if ( ! empty ( $headers['Template'] ) && ( $headers['Template'] == $theme->get( 'Template' ) ) ) {
4357
  return $theme;
4358
  }
4359
+
4360
+ return new WP_Error( 'cerber-file', 'Theme version mismatch.' );
4361
  }
4362
  }
4363
  }
changelog.txt CHANGED
@@ -1,3 +1,10 @@
 
 
 
 
 
 
 
1
  = 8.6.7 =
2
  * New: In the professional version of WP Cerber, you can now permit user registrations for IP addresses in the White IP Access List only.
3
  * New: All URLs in the logs are displayed in a shortened form without the website’s domain. There is no much value having see known things.
1
+ = 8.6.8 =
2
+ * New: A shortcode to display WP Cerber’s cookies. You can display a list of cookies set by WP Cerber on any page.
3
+ * Improved: Deferred rendering of the custom login page. This new feature can help you if you need to solve plugin compatibility issues.
4
+ * Improved: The style of the scanner email reports has been improved.
5
+ * Fixed: A bug with displaying the status icon of an IP address on the Activity and Live Traffic admin pages.
6
+ * Fixed: If the name of a commercial plugin contains a special HTML symbol like ampersand, it cannot be uploaded to verify the integrity of the plugin.
7
+
8
  = 8.6.7 =
9
  * New: In the professional version of WP Cerber, you can now permit user registrations for IP addresses in the White IP Access List only.
10
  * New: All URLs in the logs are displayed in a shortened form without the website’s domain. There is no much value having see known things.
common.php CHANGED
@@ -40,6 +40,7 @@ const MYSQL_FETCH_OBJECT_K = 6;
40
  const CRB_IP_NET_RANGE = '/[^a-f\d\-\.\:\*\/]+/i';
41
  const CRB_SANITIZE_ID = '[a-z\d\_\-\.\:\*\/]+';
42
  const CRB_SANITIZE_KEY = '/[^a-z_\-\d.:\/]/i';
 
43
 
44
  /**
45
  * Known WP scripts
@@ -2362,13 +2363,17 @@ function cerber_remove_comments( $string = '' ) {
2362
  */
2363
  function cerber_set_groove( $expire ) {
2364
  if ( ! headers_sent() ) {
2365
- cerber_set_cookie( 'cerber_groove', md5( cerber_get_groove() ), $expire + 1 );
2366
 
2367
  $groove_x = cerber_get_groove_x();
2368
- cerber_set_cookie( 'cerber_groove_x_' . $groove_x[0], $groove_x[1], $expire + 1 );
2369
  }
2370
  }
2371
 
 
 
 
 
2372
  /*
2373
  Get the special Cerber Sign for using with cookies
2374
  */
@@ -2389,7 +2394,7 @@ function cerber_get_groove() {
2389
  */
2390
  function cerber_check_groove( $hash = '' ) {
2391
  if ( ! $hash ) {
2392
- if ( ! $hash = cerber_get_cookie( 'cerber_groove' ) ) {
2393
  return false;
2394
  }
2395
  }
@@ -2406,7 +2411,7 @@ function cerber_check_groove( $hash = '' ) {
2406
  */
2407
  function cerber_check_groove_x() {
2408
  $groove_x = cerber_get_groove_x();
2409
- if ( cerber_get_cookie( 'cerber_groove_x_' . $groove_x[0] ) == $groove_x[1] ) {
2410
  return true;
2411
  }
2412
 
@@ -2443,6 +2448,8 @@ function cerber_get_cookie_path(){
2443
  }
2444
 
2445
  function cerber_set_cookie( $name, $value, $expire = 0, $path = "", $domain = "" ) {
 
 
2446
  if ( cerber_is_wp_cron() ) {
2447
  return;
2448
  }
@@ -2463,6 +2470,17 @@ function cerber_set_cookie( $name, $value, $expire = 0, $path = "", $domain = ""
2463
  'httponly' => false,
2464
  'samesite' => 'Strict',
2465
  ) );*/
 
 
 
 
 
 
 
 
 
 
 
2466
  }
2467
 
2468
  /**
@@ -2482,7 +2500,7 @@ function cerber_get_cookie_prefix() {
2482
  && preg_match( '/^\w+$/', CERBER_COOKIE_PREFIX ) ) {
2483
  return CERBER_COOKIE_PREFIX;
2484
  }*/
2485
- if ( $p = crb_get_settings( 'cookiepref' ) ) {
2486
  return $p;
2487
  }
2488
 
@@ -2527,7 +2545,7 @@ function cerber_htaccess_sync( $file, $settings = array() ) {
2527
  return new WP_Error( 'no_mod', 'The Apache mod_rewrite module is not enabled on your web server. Ask your server administrator for assistance.' );
2528
  }
2529
  $groove_x = cerber_get_groove_x();
2530
- $cookie = cerber_get_cookie_prefix() . 'cerber_groove_x_' . $groove_x[0];
2531
  $rules [] = '# Protection of admin scripts is enabled (CVE-2018-6389)';
2532
  $rules [] = '<IfModule mod_rewrite.c>';
2533
  $rules [] = 'RewriteEngine On';
@@ -2874,24 +2892,11 @@ function crb_arrays_similar( &$arr, $fields ) {
2874
  }
2875
 
2876
  function cerber_get_html_label( $iid ) {
2877
- $css['scan-ilabel'] = '
2878
- color: #fff;
2879
- margin-left: 6px;
2880
- display: inline-block;
2881
- line-height: 1em;
2882
- padding: 3px 5px;
2883
- font-size: 92%;
2884
- ';
2885
-
2886
- if ( $iid == 1 ) {
2887
- $c = '#33be84;';
2888
- }
2889
- else {
2890
- $c = '#dc2f34;';
2891
- }
2892
 
2893
- return '<span style="background-color:' . $c . $css['scan-ilabel'] . '">' . cerber_get_issue_label( $iid ) . '</span>';
2894
 
 
2895
  }
2896
 
2897
  function crb_getallheaders() {
40
  const CRB_IP_NET_RANGE = '/[^a-f\d\-\.\:\*\/]+/i';
41
  const CRB_SANITIZE_ID = '[a-z\d\_\-\.\:\*\/]+';
42
  const CRB_SANITIZE_KEY = '/[^a-z_\-\d.:\/]/i';
43
+ const CRB_GROOVE = 'cerber_groove';
44
 
45
  /**
46
  * Known WP scripts
2363
  */
2364
  function cerber_set_groove( $expire ) {
2365
  if ( ! headers_sent() ) {
2366
+ cerber_set_cookie( CRB_GROOVE, md5( cerber_get_groove() ), $expire + 1 );
2367
 
2368
  $groove_x = cerber_get_groove_x();
2369
+ cerber_set_cookie( CRB_GROOVE . '_x_' . $groove_x[0], $groove_x[1], $expire + 1 );
2370
  }
2371
  }
2372
 
2373
+ function cerber_is_auth_cookie( $text ) {
2374
+ return ( 0 === strpos( $text, cerber_get_cookie_prefix() . CRB_GROOVE ) );
2375
+ }
2376
+
2377
  /*
2378
  Get the special Cerber Sign for using with cookies
2379
  */
2394
  */
2395
  function cerber_check_groove( $hash = '' ) {
2396
  if ( ! $hash ) {
2397
+ if ( ! $hash = cerber_get_cookie( CRB_GROOVE ) ) {
2398
  return false;
2399
  }
2400
  }
2411
  */
2412
  function cerber_check_groove_x() {
2413
  $groove_x = cerber_get_groove_x();
2414
+ if ( cerber_get_cookie( CRB_GROOVE . '_x_' . $groove_x[0] ) == $groove_x[1] ) {
2415
  return true;
2416
  }
2417
 
2448
  }
2449
 
2450
  function cerber_set_cookie( $name, $value, $expire = 0, $path = "", $domain = "" ) {
2451
+ global $wp_cerber_cookies;
2452
+
2453
  if ( cerber_is_wp_cron() ) {
2454
  return;
2455
  }
2470
  'httponly' => false,
2471
  'samesite' => 'Strict',
2472
  ) );*/
2473
+
2474
+ $wp_cerber_cookies[ cerber_get_cookie_prefix() . $name ] = array( $expire, $value );
2475
+
2476
+ /*if ( ( ! $cerber_cookies = cerber_get_set( 'cerber_sweets' ) )
2477
+ || ! is_array( $cerber_cookies ) ) {
2478
+ $cerber_cookies = array();
2479
+ }
2480
+ $cerber_cookies[ cerber_get_cookie_prefix() . $name ] = array( $expire, $value );
2481
+ cerber_update_set( 'cerber_sweets', $cerber_cookies );
2482
+ */
2483
+
2484
  }
2485
 
2486
  /**
2500
  && preg_match( '/^\w+$/', CERBER_COOKIE_PREFIX ) ) {
2501
  return CERBER_COOKIE_PREFIX;
2502
  }*/
2503
+ if ( $p = (string) crb_get_settings( 'cookiepref' ) ) {
2504
  return $p;
2505
  }
2506
 
2545
  return new WP_Error( 'no_mod', 'The Apache mod_rewrite module is not enabled on your web server. Ask your server administrator for assistance.' );
2546
  }
2547
  $groove_x = cerber_get_groove_x();
2548
+ $cookie = cerber_get_cookie_prefix() . CRB_GROOVE . '_x_' . $groove_x[0];
2549
  $rules [] = '# Protection of admin scripts is enabled (CVE-2018-6389)';
2550
  $rules [] = '<IfModule mod_rewrite.c>';
2551
  $rules [] = 'RewriteEngine On';
2892
  }
2893
 
2894
  function cerber_get_html_label( $iid ) {
2895
+ //$css['scan-ilabel'] = 'color: #fff; margin-left: 6px; display: inline-block; line-height: 1em; padding: 3px 5px; font-size: 92%;';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2896
 
2897
+ $c = ( $iid == 1 ) ? '#33be84' : '#dc2f34';
2898
 
2899
+ return '<span style="background-color: ' . $c . '; color: #fff; margin-left: 6px; display: inline-block; line-height: 1em; padding: 3px 5px; font-size: 92%;">' . cerber_get_issue_label( $iid ) . '</span>';
2900
  }
2901
 
2902
  function crb_getallheaders() {
dashboard.php CHANGED
@@ -578,7 +578,7 @@ function cerber_admin_request( $is_post = false ) {
578
  }
579
  break;
580
  case 'testnotify':
581
- $t = crb_array_get( $get, 'type' );
582
  $to = cerber_get_email( $t );
583
  if ( cerber_send_email( $t ) ) {
584
  cerber_admin_message( __( 'Email has been sent to', 'wp-cerber' ) . ' ' . $to );
578
  }
579
  break;
580
  case 'testnotify':
581
+ $t = crb_array_get( $get, 'type', '', '\w+' );
582
  $to = cerber_get_email( $t );
583
  if ( cerber_send_email( $t ) ) {
584
  cerber_admin_message( __( 'Email has been sent to', 'wp-cerber' ) . ' ' . $to );
languages/wp-cerber-nl_NL.mo CHANGED
Binary file
languages/wp-cerber-nl_NL.po CHANGED
@@ -8,215 +8,214 @@ msgstr ""
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
 
@@ -224,37 +223,37 @@ msgstr "Hulp"
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
 
227
- #: ../cerber-load.php:341
228
  msgid "You are not allowed to log in. Ask your administrator for assistance."
229
  msgstr "Je hebt geen toestemming om in te loggen. Vraag je beheerder om informatie."
230
 
231
- #: ../cerber-load.php:366
232
  msgid "You have only one attempt remaining."
233
  msgid_plural "You have %d attempts remaining."
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
 
@@ -262,28 +261,28 @@ msgstr "Kan WP Cerber niet activeren door een fout in de database."
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
 
@@ -291,27 +290,27 @@ msgstr "Klik om test te verzenden"
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
 
@@ -343,7 +342,7 @@ msgstr "Onderstaande knop laadt een bestand dat bestaande instellingen overschri
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
 
@@ -351,7 +350,7 @@ msgstr "Maximum bestandsgrootte: %s."
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
 
@@ -367,55 +366,55 @@ msgstr "Instellingen geïmporteerd van"
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"
@@ -425,394 +424,394 @@ msgstr[1] "items"
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
 
583
- #: ../cerber-load.php:678
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
 
811
- #: ../dashboard.php:54
812
  msgid "Cerber Dashboard"
813
  msgstr "Cerber Dashboard"
814
 
815
- #: ../dashboard.php:82
816
  msgid "Cerber tools"
817
  msgstr "Cerber tools"
818
 
@@ -820,263 +819,263 @@ msgstr "Cerber tools"
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
 
1037
- #: ../dashboard.php:61
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,119 +1084,119 @@ msgstr "Beveiligingsregels zijn vernieuwd"
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
 
@@ -1233,23 +1232,23 @@ msgstr "zaterdag"
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
 
@@ -1257,246 +1256,246 @@ msgstr "Details van activiteiten"
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
 
1325
- #: ../dashboard.php:56
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
 
@@ -1509,94 +1508,94 @@ msgstr "Plugin initialisatie is niet aangepast"
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
 
@@ -1612,51 +1611,51 @@ msgstr "Elke 3 uur"
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
 
@@ -1720,11 +1719,11 @@ msgstr "Lokaal bestand bestaat niet"
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
 
@@ -1796,31 +1795,31 @@ msgstr "Bestanden te scannen"
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
 
@@ -1861,52 +1860,52 @@ msgstr "We hebben geen integriteitsgegevens ter verificatie van"
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
 
@@ -1930,19 +1929,19 @@ msgstr "Scan de temp-map voor bestanden"
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
 
@@ -1951,11 +1950,11 @@ msgstr "Fouten"
1951
  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."
1952
  msgstr "Beschermt Wordpress tegen hack-aanvallen, spam, trojans en virussen. Malware scanner en integriteitscontrole. Versterkt Wordpress met uitgebreide veiligheidsalgoritmen. Beschermt tegen spam met reCAPTCHA en detectie van bot-activiteit. Maakt activiteit van gebruikers en indringers te volgen via meldingen per e-mail, mobiel of desktop."
1953
 
1954
- #: ../cerber-load.php:347
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"
@@ -1965,7 +1964,7 @@ 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
 
@@ -1981,7 +1980,7 @@ msgstr "Geëindigd"
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
 
@@ -2001,96 +2000,96 @@ msgstr "Ongewenste extensies"
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
 
@@ -2114,40 +2113,40 @@ msgstr "Mogelijk achtergebleven bij een upgrade van %s. Het kan ook deel uitmake
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
 
@@ -2155,63 +2154,63 @@ msgstr "Negeer-lijst"
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
 
@@ -2219,83 +2218,83 @@ msgstr "Verdachte JavaScript-code ontdekt"
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
 
@@ -2303,11 +2302,11 @@ msgstr "Softwarefouten opslaan"
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
 
2310
- #: ../cerber-load.php:351
2311
  msgid "You are not allowed to log in"
2312
  msgstr "Je mag niet inloggen"
2313
 
@@ -2319,7 +2318,7 @@ msgstr "Blokkeer gebruiker"
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,31 +2330,31 @@ msgstr "Een optioneel bericht voor deze gebruiker"
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
 
@@ -2363,83 +2362,83 @@ msgstr "Deze beperkingen gelden niet voor IP-adressen op de Toegelaten Lijst"
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
 
@@ -2451,7 +2450,7 @@ msgstr "WordPress"
2451
  msgid "Malware Scan"
2452
  msgstr "Malware Scan"
2453
 
2454
- #: ../nexus/cerber-slave-list.php:56 ../nexus/cerber-nexus-master.php:140
2455
  msgid "Notes"
2456
  msgstr "Aantekeningen"
2457
 
@@ -2459,114 +2458,114 @@ msgstr "Aantekeningen"
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
 
2482
- #: ../nexus/cerber-nexus-master.php:103
2483
  msgid "Website Properties"
2484
  msgstr "Website-eigenschappen"
2485
 
2486
- #: ../nexus/cerber-nexus-master.php:113
2487
  msgid "Website URL"
2488
  msgstr "Website URL"
2489
 
2490
- #: ../nexus/cerber-nexus-master.php:118
2491
  msgid "Display as"
2492
  msgstr "Toon als"
2493
 
2494
- #: ../nexus/cerber-nexus-master.php:148
2495
  msgid "Website Owner"
2496
  msgstr "Website-eigenaar"
2497
 
2498
- #: ../nexus/cerber-nexus-master.php:152
2499
  msgid "First Name"
2500
  msgstr "Voornaam"
2501
 
2502
- #: ../nexus/cerber-nexus-master.php:156
2503
  msgid "Last Name"
2504
  msgstr "Achternaam"
2505
 
2506
- #: ../nexus/cerber-nexus-master.php:160
2507
  msgid "Email"
2508
  msgstr "E-mail"
2509
 
2510
- #: ../nexus/cerber-nexus-master.php:164
2511
  msgid "Phone"
2512
  msgstr "Telefoon"
2513
 
2514
- #: ../nexus/cerber-nexus-master.php:172
2515
  msgid "Address"
2516
  msgstr "Adres"
2517
 
2518
- #: ../nexus/cerber-nexus-master.php:285
2519
  msgid "Security access token is invalid"
2520
  msgstr "Ongeldig veiligheids-toegangscertificaat"
2521
 
2522
- #: ../nexus/cerber-nexus-master.php:315
2523
  msgid "The website you are trying to add is already in the list"
2524
  msgstr "De website die je wilt toevoegen, staat al op de lijst"
2525
 
2526
- #: ../nexus/cerber-nexus-master.php:324
2527
  msgid "The website has been added successfully"
2528
  msgstr "De website is toegevoegd"
2529
 
2530
- #: ../nexus/cerber-nexus-master.php:325
2531
  msgid "Click to edit"
2532
  msgstr "Klik om aan te passen"
2533
 
2534
- #: ../nexus/cerber-nexus-master.php:326
2535
  msgid "Switch to the Dashboard"
2536
  msgstr "Ga naar het Dashboard"
2537
 
2538
- #: ../nexus/cerber-nexus-master.php:329
2539
  msgid "Keep in mind: You have added the website that does not support SSL encryption. This may lead to data leakage."
2540
  msgstr "Let op: je hebt een website toegevoegd die geen SSL-encryptie ondersteunt. Dat kan een datalek veroorzaken."
2541
 
2542
- #: ../nexus/cerber-nexus-master.php:448
2543
  msgid "Website has been deleted"
2544
  msgid_plural "%s websites have been deleted"
2545
  msgstr[0] "Website is verwijderd"
2546
  msgstr[1] "%s websites zijn verwijderd"
2547
 
2548
- #: ../nexus/cerber-nexus-master.php:1024
2549
  msgid "You have switched to %s"
2550
  msgstr "Je bent omgeschakeld naar %s"
2551
 
2552
- #: ../nexus/cerber-nexus-master.php:1034
2553
  msgid "You have switched back to the master website"
2554
  msgstr "Je bent teruggegaan naar de beheer-website"
2555
 
2556
- #: ../nexus/cerber-nexus-master.php:1250
2557
  msgid "You are here:"
2558
  msgstr "Je bent hier:"
2559
 
2560
- #: ../nexus/cerber-nexus-master.php:1253 ../nexus/cerber-nexus.php:92 ..
2561
- #: nexus/cerber-nexus.php:102
2562
  msgid "My Websites"
2563
  msgstr "Mijn Websites"
2564
 
2565
- #: ../nexus/cerber-nexus-master.php:1268
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,13 +2622,13 @@ msgid "Install the access token on the master website."
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
 
@@ -2637,7 +2636,7 @@ msgstr "Verstuur rapportages op"
2637
  msgid "Updates"
2638
  msgstr "Updates"
2639
 
2640
- #: ../nexus/cerber-slave-list.php:54 ../nexus/cerber-nexus-master.php:126
2641
  msgid "Group"
2642
  msgstr "Groep"
2643
 
@@ -2657,7 +2656,7 @@ msgstr "Verwijder website"
2657
  msgid "All groups"
2658
  msgstr "Alle groepen"
2659
 
2660
- #: ../nexus/cerber-nexus-master.php:1334
2661
  msgid "Are you sure you want to delete selected websites?"
2662
  msgstr "Wil je de gekozen websites zeker verwijderen?"
2663
 
@@ -2665,35 +2664,35 @@ msgstr "Wil je de gekozen websites zeker verwijderen?"
2665
  msgid "Block"
2666
  msgstr "Blokkeer"
2667
 
2668
- #: ../nexus/cerber-nexus-master.php:95
2669
  msgid "Select an existing group or enter a new one to add it"
2670
  msgstr "Kies een bestaande groep of voeg een nieuwe toe"
2671
 
2672
- #: ../nexus/cerber-nexus-master.php:168
2673
  msgid "Company"
2674
  msgstr "Organisatie"
2675
 
2676
- #: ../nexus/cerber-nexus-master.php:692
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,7 +2700,7 @@ msgstr "IP meteen blokkeren bij inlogpoging op niet-bestaande gebruiker"
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,43 +2708,43 @@ msgstr "Zet beheermodus uit"
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
 
2716
- #: ../nexus/cerber-nexus-master.php:1400 ../nexus/cerber-nexus-master.php:1408
2717
  msgid "Active plugins and updates on"
2718
  msgstr "Actieve plugins en updates op"
2719
 
2720
- #: ../nexus/cerber-nexus-master.php:1378
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,51 +2753,51 @@ msgstr "Geavanceerd zoeken"
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
 
@@ -2818,59 +2817,59 @@ msgstr "Wordpress-bestanden aan het herstellen"
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
 
2833
- #: ../dashboard.php:64
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
 
@@ -2914,7 +2913,7 @@ msgstr "Verwijs gebruiker door na login"
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
 
@@ -2970,27 +2969,27 @@ msgstr "aantal aanmeldingen"
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,11 +3057,11 @@ msgstr "Valideer"
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,28 +3074,28 @@ msgstr "geblokkeerd door %s om %s"
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
 
@@ -3134,13 +3133,13 @@ msgstr "Gebruikersactiviteit"
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
 
@@ -3148,135 +3147,135 @@ msgstr "Blokkeer toegang tot gebruikersdata via de REST API"
3148
  msgid "Unable to delete"
3149
  msgstr "Kan niet verwijderen"
3150
 
3151
- #: ../dashboard.php:60
3152
  msgid "Cerber Data Shield Policies"
3153
  msgstr "Cerber Data Shield instellingen"
3154
 
3155
- #: ../dashboard.php:60
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
 
3255
- #: ../cerber-ds.php:787
3256
  msgid "Administration Email Address"
3257
  msgstr "E-mailadres beheerder"
3258
 
3259
- #: ../cerber-ds.php:788
3260
  msgid "New User Default Role"
3261
  msgstr "Standaardrol nieuwe gebruiker"
3262
 
3263
- #: ../cerber-ds.php:789
3264
  msgid "Site Address (URL)"
3265
  msgstr "Website-adres (URL)"
3266
 
3267
- #: ../cerber-ds.php:790
3268
  msgid "WordPress Address (URL)"
3269
  msgstr "WordPress-adress (URL)"
3270
 
3271
- #: ../cerber-ds.php:791
3272
  msgid "Anyone can register"
3273
  msgstr "Iedereen kan zich aanmelden"
3274
 
3275
- #: ../cerber-ds.php:792
3276
  msgid "Active Plugins"
3277
  msgstr "Actieve Plugins"
3278
 
3279
- #: ../cerber-ds.php:793
3280
  msgid "Active Theme"
3281
  msgstr "Actief Thema"
3282
 
@@ -3296,39 +3295,39 @@ msgstr "Alle servers"
3296
  msgid "All countries"
3297
  msgstr "Alle landen"
3298
 
3299
- #: ../nexus/cerber-nexus-master.php:66
3300
  msgid "Show homepage in the Website column"
3301
  msgstr "Toon thuispagina in de Website-kolom"
3302
 
3303
- #: ../nexus/cerber-nexus-master.php:68
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
 
@@ -3336,15 +3335,15 @@ msgstr "Enige activiteit"
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
 
@@ -3356,67 +3355,67 @@ msgstr "Aantekening Admin"
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
 
3399
- #: ../dashboard.php:71
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
 
3407
- #: ../dashboard.php:79 ../dashboard.php:79 ../cerber-addons.php:289
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
 
@@ -3432,92 +3431,92 @@ msgstr "%s registraties binnen %s minuten vanaf één IP-adres toegestaan"
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
 
@@ -3525,31 +3524,31 @@ msgstr "Hoe de plugin opmerkingen verwerkt die binnenkomen via het opmerkingenfo
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
 
@@ -3557,123 +3556,123 @@ msgstr "Bestandspermissies aanpassen indien nodig"
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
 
@@ -3689,15 +3688,15 @@ msgstr "Onderstaande knop laadt WP Cerber's standaardinstellingen. Een aangepast
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 "Bij de website inloggen"
3703
 
@@ -3706,11 +3705,11 @@ msgstr "Bij de website inloggen"
3706
  msgid "WP Cerber Security, Anti-spam & Malware Scan"
3707
  msgstr "WP Cerber Security, Anti-spam & Malware Scan"
3708
 
3709
- #: ../common.php:1363 ../common.php:1472
3710
  msgid "Probing for vulnerable code"
3711
  msgstr "Op zoek naar kwetsbare code"
3712
 
3713
- #: ../cerber-load.php:5268
3714
  msgid "Your IP address %s has been added to the White IP Access List"
3715
  msgstr "Je IP-adres %s is toegevoegd aan de Lijst Toegestane Adressen"
3716
 
@@ -3718,27 +3717,43 @@ msgstr "Je IP-adres %s is toegevoegd aan de Lijst Toegestane Adressen"
3718
  msgid "Search for IP address"
3719
  msgstr "IP-adres zoeken"
3720
 
3721
- #: ../settings.php:771
3722
  msgid "Minimal"
3723
  msgstr "Minimaal"
3724
 
3725
- #: ../settings.php:777
3726
  msgid "Do not log known crawlers"
3727
  msgstr "Log bekende crawlers niet"
3728
 
3729
- #: ../settings.php:781
3730
  msgid "Do not log these locations"
3731
  msgstr "Log deze locaties niet"
3732
 
3733
- #: ../settings.php:785
3734
  msgid "Specify URL paths to exclude requests from logging. One item per line."
3735
  msgstr "Geef aan welke url-paden niet gelogd worden. Eén per regel."
3736
 
3737
- #: ../settings.php:788
3738
  msgid "Do not log these User-Agents"
3739
  msgstr "Log deze 'user-agents' niet"
3740
 
3741
- #: ../settings.php:792
3742
  msgid "Specify User-Agents to exclude requests from logging. One item per line."
3743
  msgstr "Geef aan welke 'user-agents' niet gelogd worden. Eén per regel."
3744
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  "Language: nl\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
 
11
+ #: ../settings.php:150
12
  msgid "Limit login attempts"
13
  msgstr "Inlogpogingen beperken"
14
 
15
+ #: ../settings.php:158
16
  msgid "Lockout duration"
17
  msgstr "Duur uitsluiting"
18
 
19
+ #: ../settings.php:159 ../settings.php:260
20
  msgid "minutes"
21
  msgstr "minuten"
22
 
23
+ #: ../settings.php:162
24
  msgid "Aggressive lockout"
25
  msgstr "Agressieve uitsluiting"
26
 
27
+ #: ../settings.php:230
28
  msgid "Site connection"
29
  msgstr "Websiteverbinding"
30
 
31
+ #: ../settings.php:173
32
  msgid "Proactive security rules"
33
  msgstr "Proactieve beveiligingsregels"
34
 
35
+ #: ../settings.php:177
36
  msgid "Block subnet"
37
  msgstr "Subnet blokkeren"
38
 
39
+ #: ../settings.php:192
40
  msgid "Request wp-login.php"
41
  msgstr "Verzoek wp-login.php"
42
 
43
+ #: ../settings.php:193
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:208
48
  msgid "Custom login page"
49
  msgstr "Aangepaste inlogpagina"
50
 
51
+ #: ../settings.php:212
52
  msgid "Custom login URL"
53
  msgstr "Aangepaste inlog-URL"
54
 
55
+ #: ../settings.php:213
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:220
60
  msgid "Disable wp-login.php"
61
  msgstr "Wp-login.php uitschakelen"
62
 
63
+ #: ../settings.php:221
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:1768 ../settings.php:244
68
  msgid "Citadel mode"
69
  msgstr "Citadelstand"
70
 
71
+ #: ../settings.php:254
72
  msgid "Threshold"
73
  msgstr "Drempelwaarde"
74
 
75
+ #: ../admin/cerber-admin.php:51 ../settings.php:259
76
  msgid "Duration"
77
  msgstr "Duur"
78
 
79
+ #: ../dashboard.php:4783 ../settings.php:265
80
  msgid "Notifications"
81
  msgstr "Meldingen"
82
 
83
+ #: ../settings.php:267
84
  msgid "Send notification to admin email"
85
  msgstr "Melding versturen naar admin e-mailadres"
86
 
87
+ #: ../cerber-tools.php:38 ../cerber-tools.php:49 ../dashboard.php:4780
88
  msgid "Access Lists"
89
  msgstr "Toegangslijsten"
90
 
91
+ #: ../cerber-load.php:5003 ../cerber-users.php:1163 ../dashboard.php:1809 ..
92
+ #: /dashboard.php:2356 ../dashboard.php:4776 ../settings.php:277
93
  msgid "Activity"
94
  msgstr "Activiteit"
95
 
96
+ #: ../dashboard.php:4778
97
  msgid "Lockouts"
98
  msgstr "Uitsluitingen"
99
 
100
+ #: ../cerber-load.php:5012
101
  msgid "IP"
102
  msgstr "IP"
103
 
104
+ #: ../dashboard.php:847 ../dashboard.php:1104 ../dashboard.php:3577 ../dashboard.
105
+ #: php:4031
106
  msgid "Date"
107
  msgstr "Datum"
108
 
109
+ #: ../dashboard.php:850 ../dashboard.php:1106 ../dashboard.php:4036
110
  msgid "Local User"
111
  msgstr "Lokale gebruiker"
112
 
113
+ #: ../cerber-load.php:5020
114
  msgid "Username used"
115
  msgstr "Toegepaste gebruikersnaam"
116
 
117
+ #: ../dashboard.php:217
118
  msgid "Showing last %d records from %d"
119
  msgstr "Laatste %d records van %d"
120
 
121
+ #: ../common.php:1360
122
  msgid "Logged in"
123
  msgstr "Ingelogd"
124
 
125
+ #: ../common.php:1361
126
  msgid "Logged out"
127
  msgstr "Uitgelogd"
128
 
129
+ #: ../common.php:1362
130
  msgid "Login failed"
131
  msgstr "Inloggen mislukt"
132
 
133
+ #: ../dashboard.php:978 ../common.php:1365
134
  msgid "IP blocked"
135
  msgstr "IP geblokkeerd"
136
 
137
+ #: ../common.php:1369
138
  msgid "Citadel activated!"
139
  msgstr "Citadelstand geactiveerd!"
140
 
141
+ #: ../dashboard.php:1400 ../common.php:1424
 
142
  msgid "Locked out"
143
  msgstr "Buitengesloten"
144
 
145
+ #: ../common.php:1426
146
  msgid "IP blacklisted"
147
  msgstr "IP uitgesloten"
148
 
149
+ #: ../common.php:1382
150
  msgid "Password changed"
151
  msgstr "Wachtwoord veranderd"
152
 
153
+ #: ../dashboard.php:191 ../dashboard.php:309
154
  msgid "Remove"
155
  msgstr "Verwijderen"
156
 
157
+ #: ../dashboard.php:576
158
  msgid "Lockout for %s was removed"
159
  msgstr "Uitsluiting voor %s is verwijderd"
160
 
161
+ #: ../cerber-tools.php:69 ../dashboard.php:255 ../dashboard.php:1344 ../dashboard.
162
+ #: php:1393 ../dashboard.php:1766
163
  msgid "White IP Access List"
164
  msgstr "Toegelaten IP-adressen"
165
 
166
+ #: ../cerber-tools.php:70 ../dashboard.php:258 ../dashboard.php:1347 ../dashboard.
167
+ #: php:1396 ../dashboard.php:1767
168
  msgid "Black IP Access List"
169
  msgstr "Uitgesloten IP-adressen"
170
 
171
+ #: ../dashboard.php:315
172
  msgid "List is empty"
173
  msgstr "Lijst is leeg"
174
 
175
+ #: ../cerber-load.php:4226
176
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
177
  msgstr "Citadelstand geactiveerd na %d mislukte inlogpogingen binnen %d minuten."
178
 
179
+ #: ../dashboard.php:2486 ../dashboard.php:2895
180
  msgid "View Activity"
181
  msgstr "Activiteit bekijken"
182
 
183
+ #: ../cerber-tools.php:37 ../cerber-tools.php:48 ../nexus/cerber-nexus.php:93 ..
184
+ #: /dashboard.php:4849 ../dashboard.php:4910
185
  msgid "Settings"
186
  msgstr "Instellingen"
187
 
188
+ #: ../dashboard.php:1616
189
  msgid "Last login"
190
  msgstr "Laatst ingelogd"
191
 
192
+ #: ../nexus/cerber-slave-list.php:347 ../dashboard.php:1649 ../dashboard.php:1740
193
+ #: ../dashboard.php:1789 ../common.php:1666
194
  msgid "Never"
195
  msgstr "Nooit"
196
 
197
+ #: ../cerber-tools.php:59 ../admin/cerber-admin.php:729 ../admin/cerber-admin.php:
198
+ #: 896 ../dashboard.php:5272
199
  msgid "Are you sure?"
200
  msgstr "Weet je het zeker?"
201
 
202
+ #: ../dashboard.php:2174 ../settings.php:231
203
  msgid "My site is behind a reverse proxy"
204
  msgstr "Mijn website draait achter een reverse proxy"
205
 
206
+ #: ../settings.php:174
207
  msgid "Make your protection smarter!"
208
  msgstr "Maak je bescherming slimmer!"
209
 
210
+ #: ../settings.php:127
211
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
212
  msgstr "Schakel Permalinks in om deze functionaliteit te gebruiken. Stel de Permalinks instelling in op iets anders dan Standaard."
213
 
214
+ #: ../dashboard.php:4779
215
  msgid "Main Settings"
216
  msgstr "Hoofdinstellingen"
217
 
218
+ #: ../dashboard.php:5069
219
  msgid "Help"
220
  msgstr "Hulp"
221
 
223
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
224
  msgstr "Uitsluiting verlengen naar %s uur na %s uitsluitingen in de afgelopen %s uur"
225
 
226
+ #: ../cerber-load.php:336
227
  msgid "You are not allowed to log in. Ask your administrator for assistance."
228
  msgstr "Je hebt geen toestemming om in te loggen. Vraag je beheerder om informatie."
229
 
230
+ #: ../cerber-load.php:361
231
  msgid "You have only one attempt remaining."
232
  msgid_plural "You have %d attempts remaining."
233
  msgstr[0] "Slechts één inlogpoging resterend!"
234
  msgstr[1] "%s inlogpogingen resterend."
235
 
236
+ #: ../dashboard.php:1134
237
  msgid "No activity has been logged."
238
  msgstr "Geen activiteit waargenomen."
239
 
240
+ #: ../cerber-users.php:974 ../dashboard.php:199
241
  msgid "Expires"
242
  msgstr "Verloopt"
243
 
244
+ #: ../dashboard.php:223
245
  msgid "No lockouts at the moment. The sky is clear."
246
  msgstr "Momenteel geen uitsluitingen."
247
 
248
+ #: ../dashboard.php:265
249
  msgid "Your IP"
250
  msgstr "Jouw IP"
251
 
252
+ #: ../cerber-load.php:4227
253
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
254
  msgstr "Laatste mislukte inlogpoging was op %s vanaf IP %s op gebruiker %s."
255
 
256
+ #: ../cerber-load.php:5277
257
  msgid "Can't activate WP Cerber due to a database error."
258
  msgstr "Kan WP Cerber niet activeren door een fout in de database."
259
 
261
  msgid "Notify admin if the number of active lockouts above"
262
  msgstr "Stuur admin een melding bij meer uitsluitingen dan"
263
 
264
+ #: ../settings.php:281 ../settings.php:287 ../settings.php:844 ../settings.php:
265
+ #: 850 ../settings.php:921 ../settings.php:1112
266
  msgid "days"
267
  msgstr "dagen"
268
 
269
+ #: ../dashboard.php:1706
270
  msgid "Cerber Quick View"
271
  msgstr "Cerber Quick View"
272
 
273
+ #: ../dashboard.php:219
274
  msgid "Hint"
275
  msgstr "Tip"
276
 
277
+ #: ../dashboard.php:219
278
  msgid "To view activity, click on the IP"
279
  msgstr "Klik het IP-adres om activiteit in te zien"
280
 
281
+ #: ../settings.php:178
282
  msgid "Always block entire subnet Class C of intruders IP"
283
  msgstr "Blokkeer altijd gehele IP Class C subnet van aanvaller"
284
 
285
+ #: ../admin/cerber-settings.php:377 ../settings.php:271
286
  msgid "Click to send test"
287
  msgstr "Klik om test te verzenden"
288
 
290
  msgid "Attention! You have changed the login URL! The new login URL is"
291
  msgstr "Let op! Je hebt de inlog-URL veranderd. De nieuwe inlog-URL is"
292
 
293
+ #: ../dashboard.php:1615
294
  msgid "Comments"
295
  msgstr "Reacties"
296
 
297
+ #: ../cerber-load.php:4228 ../cerber-load.php:5044
298
  msgid "View activity in dashboard"
299
  msgstr "Activiteiten bekijken in dashboard"
300
 
301
+ #: ../cerber-load.php:4257
302
  msgid "Number of active lockouts"
303
  msgstr "Aantal actieve uitsluitingen"
304
 
305
+ #: ../cerber-load.php:4261
306
  msgid "View lockouts in dashboard"
307
  msgstr "Uitsluitingen bekijken in dashboard"
308
 
309
+ #: ../cerber-load.php:4357
310
  msgid "This message was sent by"
311
  msgstr "Dit bericht is verzonden door"
312
 
313
+ #: ../dashboard.php:83 ../dashboard.php:4961
314
  msgid "Tools"
315
  msgstr "Gereedschap"
316
 
342
  msgid "Select file to import."
343
  msgstr "Kies bestand om te importeren."
344
 
345
+ #: ../cerber-tools.php:45 ../admin/cerber-admin.php:246
346
  msgid "Maximum upload file size: %s."
347
  msgstr "Maximum bestandsgrootte: %s."
348
 
350
  msgid "What do you want to import?"
351
  msgstr "Wat wil je importeren?"
352
 
353
+ #: ../cerber-tools.php:50 ../admin/cerber-admin.php:249
354
  msgid "Upload file"
355
  msgstr "Bestand uploaden"
356
 
366
  msgid "Error while parsing file"
367
  msgstr "Fout bij verwerken bestand"
368
 
369
+ #: ../dashboard.php:197 ../dashboard.php:1102
370
  msgid "Hostname"
371
  msgstr "Hostnaam"
372
 
373
+ #: ../dashboard.php:514
374
  msgid "unknown"
375
  msgstr "onbekend"
376
 
377
+ #: ../dashboard.php:1745 ../dashboard.php:1775
378
  msgid "active"
379
  msgstr "actief"
380
 
381
+ #: ../dashboard.php:1745
382
  msgid "deactivate"
383
  msgstr "deactiveren"
384
 
385
+ #: ../dashboard.php:1749
386
  msgid "not active"
387
  msgstr "niet actief"
388
 
389
+ #: ../dashboard.php:1752 ../dashboard.php:1770
390
  msgid "disabled"
391
  msgstr "gedeactiveerd"
392
 
393
+ #: ../dashboard.php:1758
394
  msgid "failed attempts"
395
  msgstr "mislukte pogingen"
396
 
397
+ #: ../dashboard.php:1758 ../dashboard.php:1759
398
  msgid "in 24 hours"
399
  msgstr "in 24 uur"
400
 
401
+ #: ../dashboard.php:1758 ../dashboard.php:1759
402
  msgid "view all"
403
  msgstr "bekijk alles"
404
 
405
+ #: ../dashboard.php:1759
406
  msgid "lockouts"
407
  msgstr "uitsluitingen"
408
 
409
+ #: ../dashboard.php:1761
410
  msgid "Lockouts at the moment"
411
  msgstr "Actuele uitsluitingen"
412
 
413
+ #: ../dashboard.php:1762
414
  msgid "Last lockout"
415
  msgstr "Recente uitsluiting"
416
 
417
+ #: ../dashboard.php:1766 ../dashboard.php:1767 ../dashboard.php:2669
418
  msgid "entry"
419
  msgid_plural "entries"
420
  msgstr[0] "item"
424
  msgid "Load default settings"
425
  msgstr "Aanbevolen instellingen laden"
426
 
427
+ #: ../settings.php:681
428
  msgid "New version is available"
429
  msgstr "Nieuwe versie beschikbaar"
430
 
431
+ #: ../cerber-load.php:4200
432
  msgid "WP Cerber notify"
433
  msgstr "WP Cerber melding"
434
 
435
+ #: ../cerber-load.php:4224
436
  msgid "Citadel mode is activated"
437
  msgstr "Citadelstand is actief"
438
 
439
+ #: ../cerber-load.php:4300
440
  msgid "New Custom login URL"
441
  msgstr "Nieuwe Aangepaste inlog-URL"
442
 
443
+ #: ../cerber-load.php:5263
444
  msgid "The WP Cerber requires PHP %s or higher. You are running"
445
  msgstr "WP Cerber vereist PHP %s of hoger. Je gebruikt nu"
446
 
447
+ #: ../cerber-load.php:5267
448
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
449
  msgstr "WP Cerber vereist WordPress %s of hoger. Je gebruikt nu"
450
 
451
+ #: ../settings.php:306
452
  msgid "Use file"
453
  msgstr "Bestand gebruiken"
454
 
455
+ #: ../settings.php:307
456
  msgid "Write failed login attempts to the file"
457
  msgstr "Mislukte pogingen opslaan in bestand"
458
 
459
+ #: ../dashboard.php:2485
460
  msgid "Deactivate"
461
  msgstr "Deactiveren"
462
 
463
+ #: ../cerber-load.php:4259 ../dashboard.php:200
464
  msgid "Reason"
465
  msgstr "Reden"
466
 
467
+ #: ../dashboard.php:1460
468
  msgid "Add IP to the Black List"
469
  msgstr "IP-adres toevoegen aan Uitsluitingslijst"
470
 
471
+ #: ../common.php:1504
472
  msgid "Attempt to access"
473
  msgstr "Poging tot toegang"
474
 
475
+ #: ../common.php:1503
476
  msgid "Limit on login attempts is reached"
477
  msgstr "Limiet voor aantal inlogpogingen is bereikt"
478
 
479
+ #: ../cerber-load.php:4258
480
  msgid "Last lockout was added: %s for IP %s"
481
  msgstr "Laatste uitsluiting was toegevoegd: %s voor IP-adres %s"
482
 
483
+ #: ../dashboard.php:4781
484
  msgid "Hardening"
485
  msgstr "Versterking"
486
 
487
+ #: ../dashboard.php:1432
488
  msgid "Abuse email:"
489
  msgstr "E-mail voor misbruik:"
490
 
491
+ #: ../settings.php:668 ../settings.php:715 ../settings.php:976
492
  msgid "Email Address"
493
  msgstr "E-mailadres"
494
 
495
+ #: ../settings.php:316
496
  msgid "Drill down IP"
497
  msgstr "IP-adres onderzoeken"
498
 
499
+ #: ../settings.php:317
500
  msgid "Retrieve extra WHOIS information for IP"
501
  msgstr "Haal extra WHOIS-informatie op voor IP-adres"
502
 
503
+ #: ../settings.php:350
504
  msgid "Hardening WordPress"
505
  msgstr "Wordpress versterken"
506
 
507
+ #: ../settings.php:354 ../settings.php:390
508
  msgid "Stop user enumeration"
509
  msgstr "Stop nummering gebruikers"
510
 
511
+ #: ../settings.php:373
512
  msgid "Disable XML-RPC"
513
  msgstr "XML-RPC uitschakelen"
514
 
515
+ #: ../settings.php:374
516
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
517
  msgstr "Toegang tot XML-RPC server uitschakelen (inclusief Pingbacks en Trackbacks)"
518
 
519
+ #: ../settings.php:378
520
  msgid "Disable feeds"
521
  msgstr "Feeds uitschakelen"
522
 
523
+ #: ../settings.php:379
524
  msgid "Block access to the RSS, Atom and RDF feeds"
525
  msgstr "Blokkeer toegang tot de RSS-, Atom- en RDF-feeds"
526
 
527
+ #: ../settings.php:395
528
  msgid "Disable REST API"
529
  msgstr "REST API uitschakelen"
530
 
531
  #: ../admin/cerber-settings.php:777 ../admin/cerber-settings.php:789 ..
532
+ #: /admin/cerber-settings.php:949
533
  msgid "<strong>ERROR</strong>: please enter a valid email address."
534
  msgstr "<strong>LET OP</strong>: voer een geldig e-mailadres in."
535
 
536
+ #: ../cerber-load.php:4289 ../cerber-load.php:5322
537
  msgid "WP Cerber is now active and has started protecting your site"
538
  msgstr "WP Cerber is actief en beschermt nu je website"
539
 
540
+ #: ../cerber-users.php:977 ../admin/cerber-admin.php:765 ../admin/cerber-admin.
541
+ #: php:920 ../dashboard.php:201
542
  msgid "Action"
543
  msgstr "Actie"
544
 
545
+ #: ../dashboard.php:5118
546
  msgid "Incorrect IP address or IP range"
547
  msgstr "IP-adres of -reeks is incorrect"
548
 
549
+ #: ../dashboard.php:2501
550
  msgid "Settings saved"
551
  msgstr "Instellingen opgeslagen"
552
 
553
+ #: ../dashboard.php:1438
554
  msgid "Network:"
555
  msgstr "Netwerk:"
556
 
557
+ #: ../dashboard.php:1454
558
  msgid "Add network to the Black List"
559
  msgstr "Netwerk toevoegen aan Uitsluitingslijst"
560
 
561
+ #: ../dashboard.php:2484
562
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
563
  msgstr "Let op! Citadelstand is actief; niemand kan inloggen."
564
 
565
+ #: ../nexus/cerber-slave-list.php:333 ../dashboard.php:434 ../dashboard.php:3710 .
566
+ #: ./dashboard.php:4277 ../common.php:1528 ../whois.php:222 ../whois.php:253
 
567
  msgid "Unknown"
568
  msgstr "Onbekend"
569
 
570
+ #: ../cerber-load.php:635 ../cerber-load.php:647 ../cerber-load.php:654 ../cerber-
571
+ #: load.php:996 ../cerber-load.php:1535 ../cerber-load.php:1542 ../cerber-load.
572
+ #: php:1548 ../cerber-load.php:1553 ../cerber-load.php:1560 ../cerber-load.php:
573
+ #: 1567 ../cerber-load.php:1573 ../cerber-load.php:1580 ../cerber-load.php:1751 ..
574
+ #: /cerber-load.php:1888 ../nexus/cerber-nexus-slave.php:204 ../nexus/cerber-
575
+ #: nexus-slave.php:215 ../admin/cerber-admin.php:866 ../admin/cerber-settings.php:
576
+ #: 653 ../admin/cerber-settings.php:673 ../admin/cerber-settings.php:753 ..
577
+ #: /common.php:367 ../common.php:445 ../common.php:450 ../common.php:456 ..
578
+ #: /common.php:460
579
  msgid "ERROR:"
580
  msgstr "FOUT:"
581
 
582
+ #: ../cerber-load.php:664
583
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
584
  msgstr "Menselijke verificatie mislukt. Klik het vierkant in onderstaand reCAPTCHA-blok."
585
 
586
+ #: ../cerber-load.php:1105
587
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
588
  msgstr "<strong>LET OP</strong>: je geeft een foutief wachtwoord op voor gebruiker %s."
589
 
590
+ #: ../cerber-load.php:1561
591
  msgid "Username is not allowed. Please choose another one."
592
  msgstr "Gebruikersnaam is niet toegestaan, kies een andere."
593
 
594
+ #: ../cerber-load.php:4252
595
  msgid "unspecified"
596
  msgstr "niet gespecificeerd"
597
 
598
+ #: ../cerber-load.php:4255
599
  msgid "Number of lockouts is increasing"
600
  msgstr "Aantal uitsluitingen loopt op"
601
 
602
+ #: ../cerber-load.php:4260
603
  msgid "View activity for this IP"
604
  msgstr "Bekijk activiteit voor dit adres"
605
 
606
+ #: ../cerber-load.php:4264 ../cerber-load.php:4266
607
  msgid "A new version of WP Cerber is available to install"
608
  msgstr "Nieuwe versie WP Cerber is klaar voor installatie"
609
 
610
+ #: ../cerber-load.php:4265
611
  msgid "Hi!"
612
  msgstr "Hallo!"
613
 
614
+ #: ../cerber-load.php:4268 ../cerber-load.php:4279 ../nexus/cerber-slave-list.php:
615
  #: 44
616
  msgid "Website"
617
  msgstr "Website"
618
 
619
+ #: ../cerber-load.php:4271 ../cerber-load.php:4272
620
  msgid "The WP Cerber security plugin has been deactivated"
621
  msgstr "WP Cerber is gedeactiveerd"
622
 
623
+ #: ../cerber-load.php:4274
624
  msgid "Not logged in"
625
  msgstr "Niet ingelogd"
626
 
627
+ #: ../cerber-load.php:4280
628
  msgid "By user"
629
  msgstr "Door gebruiker"
630
 
631
+ #: ../cerber-load.php:4281
632
  msgid "From IP address"
633
  msgstr "Van IP-adres"
634
 
635
+ #: ../cerber-load.php:4284
636
  msgid "From country"
637
  msgstr "Uit land"
638
 
639
+ #: ../cerber-load.php:4288
640
  msgid "The WP Cerber security plugin is now active"
641
  msgstr "WP Cerber is actief"
642
 
643
+ #: ../cerber-load.php:5335
644
  msgid "Import settings"
645
  msgstr "Instellingen importeren"
646
 
647
+ #: ../settings.php:676
648
  msgid "Notification limit"
649
  msgstr "Limiet aan meldingen"
650
 
651
+ #: ../settings.php:589
652
  msgid "Prohibited usernames"
653
  msgstr "Verboden gebruikersnamen"
654
 
655
+ #: ../settings.php:590
656
  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."
657
  msgstr "Gebruikersnamen op deze lijst kunnen niet aanmelden of inloggen. IP-adressen die deze namen gebruiken, worden direct uitgesloten. Scheid namen met een komma."
658
 
659
+ #: ../settings.php:1118
660
  msgid "reCAPTCHA settings"
661
  msgstr "reCAPTCHA-instellingen"
662
 
663
+ #: ../settings.php:1123
664
  msgid "Site key"
665
  msgstr "Site-sleutel"
666
 
667
+ #: ../settings.php:1127
668
  msgid "Secret key"
669
  msgstr "Geheime sleutel"
670
 
671
+ #: ../settings.php:1137
672
  msgid "Enable reCAPTCHA for WordPress registration form"
673
  msgstr "ReCAPTCHA instellen voor WordPress regstratieformulier"
674
 
675
+ #: ../settings.php:1146
676
  msgid "Lost password form"
677
  msgstr "Formulier voor zoekgeraakt wachtwoord"
678
 
679
+ #: ../settings.php:1156
680
  msgid "Login form"
681
  msgstr "Login-formulier"
682
 
683
+ #: ../settings.php:1157
684
  msgid "Enable reCAPTCHA for WordPress login form"
685
  msgstr "ReCAPTCHA inschakelen voor WordPress inlogpagina"
686
 
687
+ #: ../settings.php:1119
688
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
689
  msgstr "Haal eerst een Site-sleutel en Geheime Sleutel op van Google om reCAPTCHA te kunnen gebruiken"
690
 
691
+ #: ../cerber-lab.php:841 ../admin/cerber-settings.php:100 ../admin/cerber-
692
+ #: settings.php:270
693
  msgid "Know more"
694
  msgstr "Meer weten"
695
 
696
+ #: ../common.php:1357
697
  msgid "User created"
698
  msgstr "Gebruiker toegevoegd"
699
 
700
+ #: ../common.php:1358
701
  msgid "User registered"
702
  msgstr "Gebruiker aangemeld"
703
 
704
+ #: ../common.php:1385
705
  msgid "reCAPTCHA verification failed"
706
  msgstr "reCAPTCHA verificatie mislukt"
707
 
708
+ #: ../common.php:1386
709
  msgid "reCAPTCHA settings are incorrect"
710
  msgstr "foutieve reCAPTCHA-instellingen"
711
 
712
  #. 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" ?
713
+ #: ../common.php:1389 ../common.php:1505
714
  msgid "Attempt to access prohibited URL"
715
  msgstr "Poging verboden URL te benaderen"
716
 
717
+ #: ../common.php:1391 ../common.php:1507
718
  msgid "Attempt to log in with prohibited username"
719
  msgstr "Inlogpoging met verboden gebruikersnaam"
720
 
721
+ #: ../settings.php:292
722
  msgid "Cerber Lab connection"
723
  msgstr "Cerber Lab verbinding"
724
 
725
+ #: ../settings.php:293
726
  msgid "Send malicious IP addresses to the Cerber Lab"
727
  msgstr "Stuur kwaadaardige IP-adressen naar Cerber Lab"
728
 
729
+ #: ../settings.php:298
730
  msgid "Cerber Lab protocol"
731
  msgstr "Cerber Lab protocol"
732
 
733
+ #: ../settings.php:1064 ../settings.php:1136
734
  msgid "Registration form"
735
  msgstr "Registratieformulier"
736
 
737
+ #: ../settings.php:1142
738
  msgid "Enable reCAPTCHA for WooCommerce registration form"
739
  msgstr "ReCAPTCHA inschakelen voor WooCommerce registratie"
740
 
741
+ #: ../settings.php:1147
742
  msgid "Enable reCAPTCHA for WordPress lost password form"
743
  msgstr "ReCAPTCHA inschakelen om nieuw WordPress wachtwoord op te vragen"
744
 
745
+ #: ../settings.php:1152
746
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
747
  msgstr "ReCAPTCHA inschakelen om nieuw WooCommerce wachtwoord op te vragen"
748
 
749
+ #: ../settings.php:1162
750
  msgid "Enable reCAPTCHA for WooCommerce login form"
751
  msgstr "ReCAPTCHA inschakelen voor WooCommerce inlogpagina"
752
 
753
+ #: ../common.php:1387
754
  msgid "Request to the Google reCAPTCHA service failed"
755
  msgstr "Verzoek aan Google ReCAPTCHA-service mislukt"
756
 
757
+ #: ../dashboard.php:959 ../dashboard.php:2370
758
  msgid "View all"
759
  msgstr "Zie alle"
760
 
761
+ #: ../dashboard.php:2373
762
  msgid "Recently locked out IP addresses"
763
  msgstr "Recent buitengesloten IP-adressen"
764
 
765
+ #: ../cerber-lab.php:839
766
  msgid "OK, nail them all"
767
  msgstr "OK, gooi ze er allemaal uit"
768
 
769
+ #: ../cerber-lab.php:840
770
  msgid "NO, maybe later"
771
  msgstr "Nee, misschien later"
772
 
773
+ #: ../dashboard.php:55 ../dashboard.php:1808 ../dashboard.php:2691 ../dashboard.
774
+ #: php:4775
775
  msgid "Dashboard"
776
  msgstr "Dashboard"
777
 
778
+ #: ../cerber-lab.php:837
779
  msgid "Want to make WP Cerber even more powerful?"
780
  msgstr "Wil je WP Cerber nog beter maken?"
781
 
782
+ #: ../cerber-lab.php:838
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 "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."
785
 
786
+ #: ../dashboard.php:3576
787
  msgid "IP address"
788
  msgstr "IP-adres"
789
 
790
+ #: ../dashboard.php:851
791
  msgid "User login"
792
  msgstr "Gebruikers-login"
793
 
794
+ #: ../dashboard.php:852 ../dashboard.php:3582
795
  msgid "User ID"
796
  msgstr "Gebruikers-ID"
797
 
798
+ #: ../dashboard.php:1129 ../dashboard.php:4099
799
  msgid "Export"
800
  msgstr "Export"
801
 
802
+ #: ../dashboard.php:1145
803
  msgid "Search for IP or username"
804
  msgstr "Zoek IP of gebruikersnaam"
805
 
806
+ #: ../dashboard.php:1156
807
  msgid "Filter"
808
  msgstr "Filter"
809
 
810
+ #: ../dashboard.php:55
811
  msgid "Cerber Dashboard"
812
  msgstr "Cerber Dashboard"
813
 
814
+ #: ../dashboard.php:83
815
  msgid "Cerber tools"
816
  msgstr "Cerber tools"
817
 
819
  msgid "Unsubscribe"
820
  msgstr "Uitschrijven"
821
 
822
+ #: ../cerber-load.php:4304 ../cerber-load.php:4305
823
  msgid "A new activity has been recorded"
824
  msgstr "Er is nieuwe activiteit waargenomen"
825
 
826
+ #: ../cerber-load.php:5016 ../cerber-users.php:971
827
  msgid "User"
828
  msgstr "Gebruiker"
829
 
830
+ #: ../cerber-load.php:5024
831
  msgid "Search string"
832
  msgstr "Zoekfrase"
833
 
834
+ #: ../settings.php:313
835
  msgid "Preferences"
836
  msgstr "Voorkeuren"
837
 
838
+ #: ../settings.php:321
839
  msgid "Date format"
840
  msgstr "Datumformaat"
841
 
842
+ #: ../settings.php:322
843
  msgid "if empty, the default format %s will be used"
844
  msgstr "indien leeg, gebruiken we standaardinstelling %s"
845
 
846
+ #: ../settings.php:687
847
  msgid "Push notifications"
848
  msgstr "Push meldingen"
849
 
850
+ #: ../settings.php:659
851
  msgid "Email notifications"
852
  msgstr "E-mail meldingen"
853
 
854
+ #: ../settings.php:669 ../settings.php:717 ../settings.php:815 ../settings.php:978
855
  msgid "Use comma to specify multiple values"
856
  msgstr "Scheid meer waarden met komma's"
857
 
858
+ #: ../settings.php:114
859
  msgid "All connected devices"
860
  msgstr "Alle verbonden apparaten"
861
 
862
+ #: ../settings.php:117
863
  msgid "No devices found"
864
  msgstr "Geen apparaten gevonden"
865
 
866
+ #: ../settings.php:121
867
  msgid "Not available"
868
  msgstr "Niet beschikbaar"
869
 
870
+ #: ../common.php:1383
871
  msgid "Password reset requested"
872
  msgstr "Wachtwoordvernieuwing aangevraagd"
873
 
874
+ #: ../common.php:1508
875
  msgid "Limit on failed reCAPTCHA verifications is reached"
876
  msgstr "Grens bereikt van foutieve reCAPTCHA's"
877
 
878
+ #: ../common.php:1661
879
  msgid "%s ago"
880
  msgstr "%s geleden"
881
 
882
+ #: ../settings.php:167
883
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
884
  msgstr "Pas regels voor inlogbeperking toe op de Lijst Toegelaten IP-adressen"
885
 
886
+ #: ../settings.php:197
887
  msgid "Display 404 page"
888
  msgstr "Toon 404-pagina"
889
 
890
+ #: ../settings.php:1131
891
  msgid "Invisible reCAPTCHA"
892
  msgstr "Onzichtbare reCAPTCHA"
893
 
894
+ #: ../settings.php:1132
895
  msgid "Enable invisible reCAPTCHA"
896
  msgstr "Zet onzichtbare reCAPTCHA aan"
897
 
898
+ #: ../settings.php:1132
899
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
900
  msgstr "(zet pas aan als je de Sitesleutel en Geheime Sleutel voor de onzichtbare versie hebt ontvangen)"
901
 
902
+ #: ../settings.php:1167
903
  msgid "Enable reCAPTCHA for WordPress comment form"
904
  msgstr "Zet reCAPTCHA aan voor WordPress reacties"
905
 
906
+ #: ../settings.php:1172
907
  msgid "Disable reCAPTCHA for logged in users"
908
  msgstr "Zet reCAPTCHA uit voor ingelogde gebruikers"
909
 
910
+ #: ../settings.php:1176
911
  msgid "Limit attempts"
912
  msgstr "Beperk aantal pogingen"
913
 
914
+ #: ../settings.php:1177
915
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
916
  msgstr "Sluit IP-adressen uit voor %s minuten na %s mislukte pogingen in %s minuten"
917
 
918
+ #: ../settings.php:245
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 "In de Citadelstand kunnen alleen adressen van de Lijst Toegelaten IP-adressen inloggen. Heeft geen effect op reeds ingelogde gebruikers."
921
 
922
+ #: ../dashboard.php:848 ../dashboard.php:1105
923
  msgid "Event"
924
  msgstr "Gebeurtenis"
925
 
926
+ #: ../common.php:310
927
  msgid "Spam comments denied"
928
  msgstr "Spamreacties afgewezen"
929
 
930
+ #: ../common.php:312
931
  msgid "Malicious IP addresses detected"
932
  msgstr "Kwaadaardige IP-adressen gevonden"
933
 
934
+ #: ../common.php:313
935
  msgid "Lockouts occurred"
936
  msgstr "Uitsluitingen"
937
 
938
+ #: ../cerber-load.php:1535 ../cerber-load.php:1543 ../cerber-load.php:1549 ..
939
+ #: /cerber-load.php:1574 ../cerber-load.php:1581
940
  msgid "You are not allowed to register."
941
  msgstr "Je mag niet aanmelden."
942
 
943
+ #: ../common.php:1370
944
  msgid "Spam comment denied"
945
  msgstr "Spamreactie afgewezen"
946
 
947
+ #: ../common.php:1393
948
  msgid "Attempt to log in denied"
949
  msgstr "Inlogpoging afgewezen"
950
 
951
+ #: ../common.php:1394
952
  msgid "Attempt to register denied"
953
  msgstr "Aanmeldingspoging afgewezen"
954
 
955
+ #: ../common.php:307
956
  msgid "Malicious activities mitigated"
957
  msgstr "Verdachte activiteiten afgevangen"
958
 
959
+ #: ../settings.php:1059
960
  msgid "Comment form"
961
  msgstr "Reactiepagina"
962
 
963
+ #: ../settings.php:1060
964
  msgid "Protect comment form with bot detection engine"
965
  msgstr "Bescherm invoer reacties met bot-detectie"
966
 
967
+ #: ../settings.php:1065
968
  msgid "Protect registration form with bot detection engine"
969
  msgstr "Bescherm registratie met bot-detectie"
970
 
971
+ #: ../dashboard.php:4965
972
  msgid "Diagnostic"
973
  msgstr "Diagnose"
974
 
975
+ #: ../dashboard.php:4968
976
  msgid "License"
977
  msgstr "Licentie"
978
 
979
+ #: ../cerber-load.php:1888
980
  msgid "Sorry, human verification failed."
981
  msgstr "Sorry, je verificatie faalt."
982
 
983
+ #: ../common.php:1509
984
  msgid "Bot activity is detected"
985
  msgstr "Bot-activiteit getedecteerd"
986
 
987
+ #: ../settings.php:1100
988
  msgid "Comment processing"
989
  msgstr "Verwerking van reactie"
990
 
991
+ #: ../settings.php:1104
992
  msgid "If a spam comment detected"
993
  msgstr "Bij detectie van een spam-reactie"
994
 
995
+ #: ../settings.php:1109
996
  msgid "Trash spam comments"
997
  msgstr "Spamreacties weggooien"
998
 
999
+ #: ../settings.php:1111
1000
  msgid "Move spam comments to trash after"
1001
  msgstr "Verwijder spamreacties na"
1002
 
1003
+ #: ../common.php:1371
1004
  msgid "Spam form submission denied"
1005
  msgstr "Geweigerd wegens spam"
1006
 
1007
+ #: ../settings.php:1069
1008
  msgid "Other forms"
1009
  msgstr "Andere formulieren"
1010
 
1011
+ #: ../settings.php:1070
1012
  msgid "Protect all forms on the website with bot detection engine"
1013
  msgstr "Bescherm alle invoerformulieren met bot-detectie"
1014
 
1015
+ #: ../settings.php:1080
1016
  msgid "Safe mode"
1017
  msgstr "Veilige stand"
1018
 
1019
+ #: ../settings.php:1081
1020
  msgid "Use less restrictive policies (allow AJAX)"
1021
  msgstr "Minder restricties (sta AJAX toe)"
1022
 
1023
+ #: ../dashboard.php:980 ../dashboard.php:1764 ../dashboard.php:4064 ../settings.
1024
+ #: php:400 ../settings.php:1085
1025
  msgid "Logged in users"
1026
  msgstr "Ingelogde gebruikers"
1027
 
1028
+ #: ../settings.php:1086
1029
  msgid "Disable bot detection engine for logged in users"
1030
  msgstr "Zet bot-detectie uit voor ingelogde gebruikers"
1031
 
1032
+ #: ../dashboard.php:198 ../dashboard.php:1103
1033
  msgid "Country"
1034
  msgstr "Land"
1035
 
1036
+ #: ../dashboard.php:62
1037
  msgid "Cerber Security Rules"
1038
  msgstr "Cerber Beveiligingsregels"
1039
 
1040
+ #: ../dashboard.php:62 ../dashboard.php:4892
1041
  msgid "Security Rules"
1042
  msgstr "Beveiligingsregels"
1043
 
1044
+ #: ../dashboard.php:1617
1045
  msgid "Failed login attempts"
1046
  msgstr "Gefaalde loginpogingen"
1047
 
1048
+ #: ../dashboard.php:1528 ../dashboard.php:1618
1049
  msgid "Registered"
1050
  msgstr "Aangemeld"
1051
 
1052
+ #: ../cerber-users.php:52 ../cerber-users.php:1130 ../dashboard.php:1688
1053
  msgid "You"
1054
  msgstr "Jij"
1055
 
1056
+ #: ../common.php:311
1057
  msgid "Spam form submissions denied"
1058
  msgstr "Spam formulierafgifte afgewezen"
1059
 
1060
+ #: ../cerber-load.php:4291 ../cerber-load.php:5326
1061
  msgid "Getting Started Guide"
1062
  msgstr "Startgids"
1063
 
1064
+ #: ../dashboard.php:4894
1065
  msgid "Countries"
1066
  msgstr "Landen"
1067
 
1068
+ #: ../dashboard.php:3304
1069
  msgid "Permitted for one country"
1070
  msgid_plural "Permitted for %d countries"
1071
  msgstr[0] "Toegestaan voor één land"
1072
  msgstr[1] "Toegestaan voor %d landen"
1073
 
1074
+ #: ../dashboard.php:3315
1075
  msgid "No rule"
1076
  msgstr "Geen regel"
1077
 
1078
+ #: ../dashboard.php:3476
1079
  msgid "Security rules have been updated"
1080
  msgstr "Beveiligingsregels zijn vernieuwd"
1081
 
1084
  msgid "https://wpcerber.com"
1085
  msgstr "https://wpcerber.com"
1086
 
1087
+ #: ../common.php:1372
1088
  msgid "Form submission denied"
1089
  msgstr "Formulierafgifte afgewezen"
1090
 
1091
+ #: ../common.php:1373
1092
  msgid "Comment denied"
1093
  msgstr "Commentaar afgewezen"
1094
 
1095
+ #: ../common.php:1399
1096
  msgid "Request to REST API denied"
1097
  msgstr "Verzoek aan REST API afgewezen"
1098
 
1099
+ #: ../common.php:1400
1100
  msgid "XML-RPC request denied"
1101
  msgstr "XML-RPC-verzoek afgewezen"
1102
 
1103
+ #: ../common.php:1422
1104
  msgid "Bot detected"
1105
  msgstr "Bot gedetecteerd"
1106
 
1107
+ #: ../common.php:1423
1108
  msgid "Citadel mode is active"
1109
  msgstr "Citadelstand actief"
1110
 
1111
+ #: ../common.php:1427
1112
  msgid "Malicious activity detected"
1113
  msgstr "Kwaadaardige activiteit gedetecteerd"
1114
 
1115
+ #: ../common.php:1428
1116
  msgid "Blocked by country rule"
1117
  msgstr "Geblokkeerd door landenregel"
1118
 
1119
+ #: ../common.php:1429
1120
  msgid "Limit reached"
1121
  msgstr "Limiet bereikt"
1122
 
1123
+ #: ../common.php:1430
1124
  msgid "Multiple suspicious activities"
1125
  msgstr "Meerdere verdachte activiteiten"
1126
 
1127
+ #: ../common.php:1510
1128
  msgid "Multiple suspicious activities were detected"
1129
  msgstr "Meerdere verdachte activiteiten gedetecteerd"
1130
 
1131
+ #: ../settings.php:401
1132
  msgid "Allow REST API for logged in users"
1133
  msgstr "Sta REST API toe voor ingelogde gebruikers"
1134
 
1135
+ #: ../settings.php:415
1136
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
1137
  msgstr "Geef toegestane REST API-naamruimtes op als de REST API is uitgeschakeld. Eén tekenreeks per regel."
1138
 
1139
+ #: ../settings.php:566
1140
  msgid "Registration limit"
1141
  msgstr "Registratielimiet"
1142
 
1143
+ #: ../settings.php:604
1144
  msgid "Sort users in dashboard"
1145
  msgstr "Gebruikers in dashboard sorteren"
1146
 
1147
+ #: ../settings.php:605
1148
  msgid "by date of registration"
1149
  msgstr "per registratiedatum"
1150
 
1151
+ #: ../settings.php:1090
1152
  msgid "Query whitelist"
1153
  msgstr "Toegestane queries"
1154
 
1155
+ #: ../dashboard.php:3284
1156
  msgid "Start typing here to find a country"
1157
  msgstr "Begin te typen om een land te vinden"
1158
 
1159
+ #: ../dashboard.php:3399
1160
  msgid "Click on a country name to add it to the list of selected countries"
1161
  msgstr "Klik op een landnaam om toe te voegen aan de lijst gekozen landen"
1162
 
1163
+ #: ../dashboard.php:3431
1164
  msgid "Submit forms"
1165
  msgstr "Formulieren versturen"
1166
 
1167
+ #: ../dashboard.php:3432
1168
  msgid "Post comments"
1169
  msgstr "Commentaar plaatsen"
1170
 
1171
+ #: ../dashboard.php:3430
1172
  msgid "Register on the website"
1173
  msgstr "Aanmelden bij de website"
1174
 
1175
+ #: ../dashboard.php:3433
1176
  msgid "Use XML-RPC"
1177
  msgstr "Benut XML-RPC"
1178
 
1179
+ #: ../dashboard.php:3434
1180
  msgid "Use REST API"
1181
  msgstr "Benut REST API"
1182
 
1183
+ #: ../settings.php:1106
1184
  msgid "Deny it completely"
1185
  msgstr "Volledig negeren"
1186
 
1187
+ #: ../settings.php:1106
1188
  msgid "Mark it as spam"
1189
  msgstr "Markeren als spam"
1190
 
1191
+ #: ../dashboard.php:2350
1192
  msgid "in the last 24 hours"
1193
  msgstr "in de afgelopen 24 uur"
1194
 
1195
+ #: ../dashboard.php:2692
1196
  msgid "Main settings"
1197
  msgstr "Hoofdinstellingen"
1198
 
1199
+ #: ../settings.php:702
1200
  msgid "Weekly reports"
1201
  msgstr "Weekrapporten"
1202
 
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 "Gebruik je een caching plugin, dan moet je je nieuwe login URL toevoegen aan de niet te cachen pagina's."
1234
 
1235
+ #: ../cerber-load.php:4310
1236
  msgid "Weekly report"
1237
  msgstr "Weekrapport"
1238
 
1239
+ #: ../cerber-load.php:4313 ../cerber-load.php:4323
1240
  msgid "To change reporting settings visit"
1241
  msgstr "Om je rapportageinstellingen aan te passen, ga naar"
1242
 
1243
+ #: ../cerber-load.php:4349
1244
  msgid "Your login page:"
1245
  msgstr "Je login-pagina:"
1246
 
1247
+ #: ../cerber-load.php:4354
1248
  msgid "Your license is valid until"
1249
  msgstr "Je licentie geldt tot"
1250
 
1251
+ #: ../cerber-load.php:4460
1252
  msgid "Activity details"
1253
  msgstr "Details van activiteiten"
1254
 
1256
  msgid "Click to send now"
1257
  msgstr "Klik om nu te versturen"
1258
 
1259
+ #: ../cerber-load.php:794
1260
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1261
  msgstr ">>> Vertaler van WP Cerber? Om een gratis Pro-licentie te krijgen, geef je contactinformatie op bij: https://wpcerber.com/contact/"
1262
 
1263
+ #: ../dashboard.php:584
1264
  msgid "Email has been sent to"
1265
  msgstr "E-mail is verzonden naar"
1266
 
1267
+ #: ../dashboard.php:587
1268
  msgid "Unable to send email to"
1269
  msgstr "Kan geen e-mail verzenden naar"
1270
 
1271
+ #: ../dashboard.php:3307
1272
  msgid "Not permitted for one country"
1273
  msgid_plural "Not permitted for %d countries"
1274
  msgstr[0] "Niet toegestaan voor één land"
1275
  msgstr[1] "Niet toegestaan voor %d landen"
1276
 
1277
+ #: ../dashboard.php:3403
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 "Gekozen landen mogen %s, overige landen niet"
1281
 
1282
+ #: ../dashboard.php:3406
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 "Gekozen landen mogen niet %s, overige landen wel"
1286
 
1287
+ #: ../cerber-load.php:4448
1288
  msgid "Weekly Report"
1289
  msgstr "Weekrapport"
1290
 
1291
+ #: ../settings.php:200
1292
  msgid "Use 404 template from the active theme"
1293
  msgstr "Gebruik 404-sjabloon van het actieve thema"
1294
 
1295
+ #: ../settings.php:201
1296
  msgid "Display simple 404 page"
1297
  msgstr "Toon eenvoudige 404-pagina"
1298
 
1299
+ #: ../settings.php:1091
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 "Voer een deel van een query-tekenreeks of -pad in om een request uit te sluiten van inspectie. Eén item per regel."
1302
 
1303
+ #: ../settings.php:706
1304
  msgid "Enable reporting"
1305
  msgstr "Rapporteren aanzetten"
1306
 
1307
  #. How to interpret this line? Do you mean 'was DATE/TIME from IP ADDRESS' ?
1308
+ #: ../cerber-load.php:4378
1309
  msgid "Your last sign-in was %s from %s"
1310
  msgstr "Je laatste inlog was op %s vanaf %s"
1311
 
1312
+ #: ../dashboard.php:323
1313
  msgid "Optional comment for this entry"
1314
  msgstr "Opmerking hierbij"
1315
 
1316
+ #: ../dashboard.php:345
1317
  msgid "You cannot add your IP address or network"
1318
  msgstr "Je kunt je eigen IP of netwerk niet toevoegen"
1319
 
1320
+ #: ../settings.php:582 ../settings.php:590
1321
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1322
  msgstr "Je kunt REGEX-patronen gebruiken; sluit deze op in voorwaartse slashes zoals /admin.*/."
1323
 
1324
+ #: ../dashboard.php:57
1325
  msgid "Cerber Traffic Inspector"
1326
  msgstr "Cerber Verkeersinspectie"
1327
 
1328
+ #: ../dashboard.php:57 ../dashboard.php:1771 ../dashboard.php:4846
1329
  msgid "Traffic Inspector"
1330
  msgstr "Verkeersinspectie"
1331
 
1332
+ #: ../cerber-users.php:1164 ../dashboard.php:1810
1333
  msgid "Traffic"
1334
  msgstr "Verkeer"
1335
 
1336
+ #: ../dashboard.php:4032
1337
  msgid "Request"
1338
  msgstr "Verzoek"
1339
 
1340
+ #: ../cerber-users.php:976 ../dashboard.php:4034
1341
  msgid "Host Info"
1342
  msgstr "Host Info"
1343
 
1344
  #. Do you mean a program for browsing the web like Chrome? Or a ftp user agent or so?
1345
+ #: ../dashboard.php:4035
1346
  msgid "User Agent"
1347
  msgstr "Webbrowser"
1348
 
1349
+ #: ../dashboard.php:4060
1350
  msgid "All requests"
1351
  msgstr "Alle verzoeken"
1352
 
1353
+ #: ../dashboard.php:981 ../dashboard.php:4065
1354
  msgid "Not logged in visitors"
1355
  msgstr "Niet-ingelogde bezoekers"
1356
 
1357
+ #: ../dashboard.php:4068
1358
  msgid "Form submissions"
1359
  msgstr "Formulierverzendingen"
1360
 
1361
+ #: ../dashboard.php:4070
1362
  msgid "Page Not Found"
1363
  msgstr "Pagina niet gevonden"
1364
 
1365
+ #: ../dashboard.php:4082
1366
  msgid "Longer than"
1367
  msgstr "Langer dan"
1368
 
1369
+ #: ../dashboard.php:4105
1370
  msgid "Refresh"
1371
  msgstr "Ververs"
1372
 
1373
+ #: ../common.php:209
1374
  msgid "Check for requests"
1375
  msgstr "Controleer op verzoeken"
1376
 
1377
+ #: ../dashboard.php:4140
1378
  msgid "Not specified"
1379
  msgstr "Niet gespecificeerd"
1380
 
1381
+ #: ../settings.php:781
1382
  msgid "Logging mode"
1383
  msgstr "Rapportagestand"
1384
 
1385
+ #: ../settings.php:784
1386
  msgid "Logging disabled"
1387
  msgstr "Rapportage uit"
1388
 
1389
+ #: ../settings.php:786
1390
  msgid "Smart"
1391
  msgstr "Slim"
1392
 
1393
+ #: ../settings.php:787
1394
  msgid "All traffic"
1395
  msgstr "Alle verkeer"
1396
 
1397
+ #: ../settings.php:813
1398
  msgid "Mask these form fields"
1399
  msgstr "Verberg deze formuliervelden"
1400
 
1401
+ #: ../settings.php:838
1402
  msgid "milliseconds"
1403
  msgstr "milliseconden"
1404
 
1405
+ #: ../settings.php:732
1406
  msgid "Enable traffic inspection"
1407
  msgstr "Verkeersinspectie aanzetten"
1408
 
1409
+ #: ../settings.php:809
1410
  msgid "Save request fields"
1411
  msgstr "Bewaar verzoekvelden"
1412
 
1413
+ #: ../settings.php:837
1414
  msgid "Page generation time threshold"
1415
  msgstr "Drempeltijd paginaopbouw"
1416
 
1417
+ #: ../dashboard.php:4052
1418
  msgid "No requests have been logged."
1419
  msgstr "Er zijn geen verzoeken geregistreerd."
1420
 
1421
+ #: ../dashboard.php:1770
1422
  msgid "enabled"
1423
  msgstr "aan"
1424
 
1425
+ #: ../dashboard.php:1775
1426
  msgid "no connection"
1427
  msgstr "geen verbinding"
1428
 
1429
+ #: ../dashboard.php:1560
1430
  msgid "Last seen"
1431
  msgstr "Laatst gezien"
1432
 
1433
+ #: ../cerber-load.php:4084
1434
  msgid "We're sorry, you are not allowed to proceed"
1435
  msgstr "Excuus, je mag niet doorgaan"
1436
 
1437
+ #: ../settings.php:745
1438
  msgid "Request whitelist"
1439
  msgstr "Verzoek om whitelist"
1440
 
1441
+ #: ../settings.php:749
1442
  msgid "Enter a request URI to exclude the request from inspection. One item per line."
1443
  msgstr "Voer een 'request URI' in om deze van inspectie uit te sluiten. Eén per regel."
1444
 
1445
+ #: ../settings.php:820
1446
  msgid "Save request headers"
1447
  msgstr "Sla 'request headers' op"
1448
 
1449
+ #: ../settings.php:825
1450
  msgid "Save $_SERVER"
1451
  msgstr "Sla $_SERVER op"
1452
 
1453
+ #: ../settings.php:829
1454
  msgid "Save request cookies"
1455
  msgstr "Sla 'request cookies' op"
1456
 
1457
+ #: ../settings.php:359
1458
  msgid "Protect admin scripts"
1459
  msgstr "Bescherm admin scripts"
1460
 
1461
+ #: ../settings.php:360
1462
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1463
  msgstr "Blokkeer ongeoorloofde toegang tot load-scripts.php en load-styles.php\n"
1464
  ""
1465
 
1466
+ #: ../common.php:2704
1467
  msgid "Unable to create the directory"
1468
  msgstr "Kan map niet aanmaken"
1469
 
1470
+ #: ../common.php:2709
1471
  msgid "Destination folder access denied"
1472
  msgstr "Toegang bestemmingsmap afgewezen"
1473
 
1474
+ #: ../common.php:2712
1475
  msgid "File not found"
1476
  msgstr "Bestand niet gevonden"
1477
 
1478
+ #: ../common.php:2715
1479
  msgid "Unable to copy the file"
1480
  msgstr "Kan bestand niet kopiëren"
1481
 
1482
+ #: ../common.php:2721
1483
  msgid "Unable to delete the file"
1484
  msgstr "Kan bestand niet verwijderen"
1485
 
1486
+ #: ../settings.php:137
1487
  msgid "Plugin initialization"
1488
  msgstr "Plugin initialisatie"
1489
 
1490
+ #: ../settings.php:140
1491
  msgid "Load security engine"
1492
  msgstr "Start beveiligingskern"
1493
 
1494
+ #: ../settings.php:143
1495
  msgid "Legacy mode"
1496
  msgstr "Verouderde stand"
1497
 
1498
+ #: ../settings.php:144
1499
  msgid "Standard mode"
1500
  msgstr "Standaardinstelling"
1501
 
1508
  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>."
1509
  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>."
1510
 
1511
+ #: ../common.php:1397
1512
  msgid "File upload denied"
1513
  msgstr "Bestandsupload afgewezen"
1514
 
1515
  #. Shouldn't these 'braces' be 'brackets'?
1516
+ #: ../settings.php:749 ../settings.php:799
1517
  msgid "To specify a REGEX pattern, enclose a whole line in two braces."
1518
  msgstr "Zet bij een REGEX-patroon de hele regel tussen accolades { }."
1519
 
1520
+ #: ../settings.php:130
1521
  msgid "Be careful about enabling these options."
1522
  msgstr "Wees voorzichtig met deze opties!"
1523
 
1524
+ #: ../settings.php:130
1525
  msgid "If you forget your Custom login URL, you will be unable to log in."
1526
  msgstr "Als je de Aangepaste inlog-URL vergeet, kun je niet meer inloggen."
1527
 
1528
+ #: ../dashboard.php:68 ../dashboard.php:4907
1529
  msgid "Site Integrity"
1530
  msgstr "Site-integriteit"
1531
 
1532
+ #: ../cerber-scanner.php:1493 ../cerber-users.php:20 ../cerber-users.php:446 ..
1533
+ #: /dashboard.php:1795 ../dashboard.php:1797 ../settings.php:735 ../settings.php:
1534
+ #: 763 ../settings.php:887 ../settings.php:896 ../settings.php:1239
1535
  msgid "Disabled"
1536
  msgstr "Uitgeschakeld"
1537
 
1538
+ #: ../cerber-scanner.php:938 ../dashboard.php:1796
1539
  msgid "Quick Scan"
1540
  msgstr "Snelle Scan"
1541
 
1542
+ #: ../cerber-scanner.php:938 ../dashboard.php:1798
1543
  msgid "Full Scan"
1544
  msgstr "Volledige scan"
1545
 
1546
+ #: ../common.php:1431
1547
  msgid "Denied"
1548
  msgstr "Afgewezen"
1549
 
1550
+ #: ../settings.php:166 ../settings.php:528 ../settings.php:553 ../settings.php:741
1551
  msgid "Use White IP Access List"
1552
  msgstr "Lijst Toegelaten IP-adressen gebruiken"
1553
 
1554
+ #: ../settings.php:187
1555
  msgid "Disable dashboard redirection"
1556
  msgstr "Dashboard omleiding uitzetten"
1557
 
1558
+ #: ../settings.php:188
1559
  msgid "Disable automatic redirection to the login page when /wp-admin/ is requested by an unauthorized request"
1560
  msgstr "Automatische omleiding naar de loginpagina uitzetten als /wp-admin/ ongeautoriseerd wordt opgevraagd"
1561
 
1562
+ #: ../settings.php:858
1563
  msgid "Scanner settings"
1564
  msgstr "Scanner-instellingen"
1565
 
1566
+ #: ../settings.php:863
1567
  msgid "Custom signatures"
1568
  msgstr "Ondertekening op maat"
1569
 
1570
+ #: ../settings.php:867
1571
  msgid "Specify custom PHP code signatures. One item per line. To specify a REGEX pattern, enclose a whole line in two braces."
1572
  msgstr "Eigen PHP code ondertekeningen, één per regel. Zet bij een REGEX-patroon de hele regel tussen accolades { }."
1573
 
1574
+ #: ../settings.php:870
1575
  msgid "Unwanted file extensions"
1576
  msgstr "Ongewenste bestandsextensies"
1577
 
1578
+ #: ../settings.php:874
1579
  msgid "Specify file extensions to search for. Full scan only. Use comma to separate items."
1580
  msgstr "Geef bedoelde bestandsextensies op, komma-gescheiden. Alleen tbv de volledige scan."
1581
 
1582
+ #: ../settings.php:877
1583
  msgid "Directories to exclude"
1584
  msgstr "Uit te sluiten mappen"
1585
 
1586
+ #: ../settings.php:906
1587
  msgid "Scan temporary directory"
1588
  msgstr "Scan tijdelijke map"
1589
 
1590
+ #: ../settings.php:910
1591
  msgid "Scan session directory"
1592
  msgstr "Scan sessiemap"
1593
 
1594
+ #: ../settings.php:919
1595
  msgid "Delete quarantined files after"
1596
  msgstr "Wis bestanden in quarantaine na"
1597
 
1598
+ #: ../settings.php:933
1599
  msgid "Launch Quick Scan"
1600
  msgstr "Begin Snelle Scan"
1601
 
1611
  msgid "Every 6 hours"
1612
  msgstr "Elke 6 uur"
1613
 
1614
+ #: ../settings.php:938
1615
  msgid "Launch Full Scan"
1616
  msgstr "Start volledige scan"
1617
 
1618
+ #: ../settings.php:953 ../settings.php:999
1619
  msgid "Low severity"
1620
  msgstr "Niet ernstig"
1621
 
1622
+ #: ../settings.php:954 ../settings.php:1000
1623
  msgid "Medium severity"
1624
  msgstr "Ernstig"
1625
 
1626
+ #: ../settings.php:955 ../settings.php:1001
1627
  msgid "High severity"
1628
  msgstr "Zeer ernstig"
1629
 
1630
+ #: ../settings.php:950
1631
  msgid "Report an issue if any of the following is true"
1632
  msgstr "Rapporteer "
1633
 
1634
+ #: ../settings.php:959
1635
  msgid "Send email report"
1636
  msgstr "Stuur e-mail-rapport"
1637
 
1638
+ #: ../settings.php:962
1639
  msgid "After every scan"
1640
  msgstr "Na elke scan"
1641
 
1642
+ #: ../settings.php:963
1643
  msgid "If any changes in scan results occurred"
1644
  msgstr "Bij veranderingen in de scanresultaten"
1645
 
1646
+ #: ../settings.php:968
1647
  msgid "Include file sizes"
1648
  msgstr "Voeg bestandsgrootte toe"
1649
 
1650
+ #: ../settings.php:972
1651
  msgid "Include scan errors"
1652
  msgstr "Voeg scanfouten toe"
1653
 
1654
+ #: ../dashboard.php:4909
1655
  msgid "Security Scanner"
1656
  msgstr "Veiligheidsscanner"
1657
 
1658
+ #: ../dashboard.php:4911
1659
  msgid "Scheduling"
1660
  msgstr "Agenderen"
1661
 
1719
  msgid "Unable to process file"
1720
  msgstr "Kan bestand niet verwerken"
1721
 
1722
+ #: ../cerber-scanner.php:1455 ../cerber-scanner.php:4644
1723
  msgid "Unable to open file"
1724
  msgstr "Kan bestand niet openen"
1725
 
1726
+ #: ../cerber-scanner.php:1457 ../admin/cerber-admin.php:79
1727
  msgid "Checksum mismatch"
1728
  msgstr "Controlegetal klopt niet"
1729
 
1795
  msgid "Critical issues"
1796
  msgstr "Kritieke problemen"
1797
 
1798
+ #: ../cerber-scanner.php:4817 ../admin/cerber-admin.php:103
1799
  msgid "Issues total"
1800
  msgstr "Totaal aan problemen"
1801
 
1802
+ #: ../admin/cerber-admin.php:353
1803
  msgid "File access error. Possibly scan results are outdated. Please run Quick or Full Scan."
1804
  msgstr "Fout bij bestandstoegang. Scanresultaten zijn mogelijk verouderd. Scan opnieuw."
1805
 
1806
+ #: ../cerber-scanner.php:4940
1807
  msgid "To view full report visit"
1808
  msgstr "Ga voor volledig rapport naar"
1809
 
1810
+ #: ../cerber-load.php:4320
1811
  msgid "Scanner Report"
1812
  msgstr "Scannerrapport"
1813
 
1814
+ #: ../settings.php:884
1815
  msgid "Monitor new files"
1816
  msgstr "Nieuwe bestanden bewaken"
1817
 
1818
+ #: ../settings.php:893
1819
  msgid "Monitor modified files"
1820
  msgstr "Gewijzigde bestanden bewaken"
1821
 
1822
+ #: ../settings.php:964
1823
  msgid "If new issues found"
1824
  msgstr "Bij nieuw gevonden problemen"
1825
 
1860
  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."
1861
  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."
1862
 
1863
+ #: ../cerber-scanner.php:4773
1864
  msgid "Full Scan Report"
1865
  msgstr "Rapport Volledige Scan"
1866
 
1867
+ #: ../cerber-scanner.php:4773
1868
  msgid "Quick Scan Report"
1869
  msgstr "Rapportage Snelle Scan"
1870
 
1871
+ #: ../cerber-scanner.php:4786
1872
  msgid "Files scanned"
1873
  msgstr "Bestanden gescand"
1874
 
1875
+ #: ../dashboard.php:305 ../dashboard.php:1384 ../dashboard.php:1439 ../dashboard.
1876
+ #: php:1580
1877
  msgid "Check for activities"
1878
  msgstr "Check op activiteiten"
1879
 
1880
+ #: ../dashboard.php:1540
1881
  msgid "Activated"
1882
  msgstr "Geactiveerd"
1883
 
1884
+ #: ../common.php:1408
1885
  msgid "Malicious request denied"
1886
  msgstr "Kwaadaardige request afgewezen"
1887
 
1888
+ #: ../common.php:1411
1889
  msgid "User activated"
1890
  msgstr "Gebruiker-geactiveerd"
1891
 
1892
+ #: ../common.php:1433
1893
  msgid "Suspicious number of fields"
1894
  msgstr "Verdacht aantal velden"
1895
 
1896
+ #: ../common.php:1434
1897
  msgid "Suspicious number of nested values"
1898
  msgstr "Verdacht aantal geneste waarden"
1899
 
1900
+ #: ../common.php:1435 ../common.php:1512
1901
  msgid "Malicious code detected"
1902
  msgstr "Kwaadaardige code ontdekt"
1903
 
1904
+ #: ../common.php:1513
1905
  msgid "Attempt to upload a file with malicious code"
1906
  msgstr "Poging een bestand met kwaadaardige code te uploaden"
1907
 
1908
+ #: ../common.php:1768
1909
  msgid "Bytes"
1910
  msgstr "Bytes"
1911
 
1929
  msgid "Scanning the session folder for files"
1930
  msgstr "Scan de sessie-map voor bestanden"
1931
 
1932
+ #: ../settings.php:928
1933
  msgid "Automated recurring scan schedule"
1934
  msgstr "Schema voor geautomatiseerde scans"
1935
 
1936
+ #: ../settings.php:945
1937
  msgid "Scan results reporting"
1938
  msgstr "Rapportage scanresultaten"
1939
 
1940
+ #: ../dashboard.php:976 ../dashboard.php:4062
1941
  msgid "Suspicious activity"
1942
  msgstr "Verdachte activiteit"
1943
 
1944
+ #: ../dashboard.php:4063
1945
  msgid "Errors"
1946
  msgstr "Fouten"
1947
 
1950
  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."
1951
  msgstr "Beschermt Wordpress tegen hack-aanvallen, spam, trojans en virussen. Malware scanner en integriteitscontrole. Versterkt Wordpress met uitgebreide veiligheidsalgoritmen. Beschermt tegen spam met reCAPTCHA en detectie van bot-activiteit. Maakt activiteit van gebruikers en indringers te volgen via meldingen per e-mail, mobiel of desktop."
1952
 
1953
+ #: ../cerber-load.php:342
1954
  msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
1955
  msgstr "Je hebt de limiet aan loginpogingen bereikt. Probeer opnieuw na %d minuten."
1956
 
1957
+ #: ../common.php:1661
1958
  msgctxt "preposition of a period of time like: in 6 hours"
1959
  msgid "in %s"
1960
  msgstr "over %s"
1964
  msgid "at"
1965
  msgstr "om"
1966
 
1967
+ #: ../dashboard.php:4914
1968
  msgid "Quarantine"
1969
  msgstr "Quarantine"
1970
 
1980
  msgid "Performance"
1981
  msgstr "Prestatie"
1982
 
1983
+ #: ../nexus/cerber-slave-list.php:340 ../admin/cerber-admin.php:67
1984
  msgid "Vulnerabilities"
1985
  msgstr "Kwetsbaarheden"
1986
 
2000
  msgid "Unattended files"
2001
  msgstr "Losstaande bestanden"
2002
 
2003
+ #: ../admin/cerber-admin.php:96 ../admin/cerber-admin.php:760
2004
  msgid "Scanned"
2005
  msgstr "Gescand"
2006
 
2007
+ #: ../admin/cerber-admin.php:704
2008
  msgid "There are no files in the quarantine at the moment."
2009
  msgstr "Er staan nu geen bestanden in quarantaine."
2010
 
2011
+ #: ../admin/cerber-admin.php:742
2012
  msgid "Restore"
2013
  msgstr "Terugzetten"
2014
 
2015
+ #: ../admin/cerber-admin.php:739
2016
  msgid "Delete permanently"
2017
  msgstr "Verwijder definitief"
2018
 
2019
+ #: ../admin/cerber-admin.php:762
2020
  msgid "Automatic deletion"
2021
  msgstr "Automatische verwijdering"
2022
 
2023
+ #: ../admin/cerber-admin.php:763 ../admin/cerber-admin.php:918 ../admin/cerber-
2024
+ #: admin.php:1326
2025
  msgid "Size"
2026
  msgstr "Grootte"
2027
 
2028
+ #: ../admin/cerber-admin.php:764 ../admin/cerber-admin.php:919
2029
  msgid "File"
2030
  msgstr "Bestand"
2031
 
2032
+ #: ../admin/cerber-admin.php:837
2033
  msgid "The file has been deleted permanently."
2034
  msgstr "Het bestand is definitief verwijderd."
2035
 
2036
+ #: ../admin/cerber-admin.php:852
2037
  msgid "The file has been restored to its original location."
2038
  msgstr "Het bestand is teruggezet op de oorspronkelijke plek."
2039
 
2040
+ #: ../dashboard.php:1811
2041
  msgid "Integrity"
2042
  msgstr "Integriteit"
2043
 
2044
+ #: ../common.php:1396
2045
  msgid "Attempt to upload malicious file denied"
2046
  msgstr "Poging afgeweerd om kwaadaardig bestand te uploaden"
2047
 
2048
+ #: ../cerber-load.php:7220
2049
  msgid "Awesome!"
2050
  msgstr "Geweldig!"
2051
 
2052
+ #: ../settings.php:987
2053
  msgid "Automatic cleanup of malware and suspicious files"
2054
  msgstr "Automatisch opschonen van malware en verdachte bestanden"
2055
 
2056
+ #: ../settings.php:996
2057
  msgid "Files in the uploads folder"
2058
  msgstr "Bestanden in de upload-map"
2059
 
2060
+ #: ../settings.php:1005
2061
  msgid "Files with unwanted extensions"
2062
  msgstr "Bestanden met ongewenste extensies"
2063
 
2064
+ #: ../settings.php:1024
2065
  msgid "Exclusions"
2066
  msgstr "Uitsluitingen"
2067
 
2068
+ #: ../settings.php:1028
2069
  msgid "Files in the temporary directory"
2070
  msgstr "Bestanden in de tijdelijke map"
2071
 
2072
+ #: ../settings.php:1032
2073
  msgid "Files in the sessions directory"
2074
  msgstr "Bestanden in de sessie-map"
2075
 
2076
+ #: ../settings.php:1036
2077
  msgid "Files in these directories"
2078
  msgstr "Bestanden in deze mappen"
2079
 
2080
+ #: ../settings.php:1040
2081
  msgid "Use absolute paths. One item per line."
2082
  msgstr "Gebruik absolute paden; één item per regel."
2083
 
2084
+ #: ../settings.php:1043
2085
  msgid "Files with these extensions"
2086
  msgstr "Bestanden met deze extensies"
2087
 
2088
+ #: ../settings.php:1047
2089
  msgid "Use comma to separate items."
2090
  msgstr "Scheid items met komma's."
2091
 
2092
+ #: ../dashboard.php:4912
2093
  msgid "Cleaning up"
2094
  msgstr "Opschonen"
2095
 
2113
  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."
2114
  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."
2115
 
2116
+ #: ../cerber-scanner.php:4871
2117
  msgid "Deleted"
2118
  msgstr "Verwijderd"
2119
 
2120
+ #: ../cerber-scanner.php:4924
2121
  msgid "Automatically moved to quarantine"
2122
  msgstr "Automatisch in quarantaine gezet"
2123
 
2124
+ #: ../common.php:1436
2125
  msgid "Suspicious SQL code detected"
2126
  msgstr "Verdachte SQL-code gevonden"
2127
 
2128
+ #: ../dashboard.php:1792
2129
  msgctxt "Example: Last malware scan: 23 Jan 2018"
2130
  msgid "Last malware scan"
2131
  msgstr "Recente malware scan"
2132
 
2133
+ #: ../dashboard.php:4848
2134
  msgid "Live Traffic"
2135
  msgstr "Huidig verkeer"
2136
 
2137
+ #: ../settings.php:334
2138
  msgid "Use English for admin interface"
2139
  msgstr "Maak admin interface Engelstalig"
2140
 
2141
+ #: ../settings.php:364
2142
  msgid "Disable PHP in uploads"
2143
  msgstr "Zet PHP uit in uploads"
2144
 
2145
+ #: ../settings.php:369
2146
  msgid "Disable PHP error displaying"
2147
  msgstr "Zet PHP foutweergave uit"
2148
 
2149
+ #: ../dashboard.php:4913
2150
  msgid "Ignore List"
2151
  msgstr "Negeer-lijst"
2152
 
2154
  msgid "Ignore"
2155
  msgstr "Negeer"
2156
 
2157
+ #: ../admin/cerber-admin.php:876
2158
  msgid "Apply"
2159
  msgstr "Pas toe"
2160
 
2161
+ #: ../admin/cerber-admin.php:916
2162
  msgid "Added"
2163
  msgstr "Toegevoegd"
2164
 
2165
+ #: ../admin/cerber-admin.php:877 ../admin/cerber-admin.php:904
2166
  msgid "Remove from the list"
2167
  msgstr "Verwijder van de lijst"
2168
 
2169
+ #: ../admin/cerber-admin.php:878
2170
  msgid "User Insights"
2171
  msgstr "Gebruikersinzichten"
2172
 
2173
+ #: ../admin/cerber-admin.php:879
2174
  msgid "Traffic Insights"
2175
  msgstr "Verkeersinzichten"
2176
 
2177
+ #: ../admin/cerber-admin.php:880
2178
  msgid "Activity Insights"
2179
  msgstr "Activiteitsinzichten"
2180
 
2181
+ #: ../dashboard.php:2828
2182
  msgid "Are you sure you want to delete selected files?"
2183
  msgstr "Weet je zeker dat je de geselecteerde bestanden wilt wissen?"
2184
 
2185
+ #: ../dashboard.php:2829
2186
  msgid "These files have been moved to the quarantine"
2187
  msgstr "Deze bestanden zijn in quarantaine gezet"
2188
 
2189
+ #: ../dashboard.php:2832
2190
  msgid "Do you want to add selected files to the ignore list?"
2191
  msgstr "Wil je de geselecteerde bestanden toevoegen aan de negeer-lijst?"
2192
 
2193
+ #: ../dashboard.php:2833
2194
  msgid "These files have been added to the ignore list"
2195
  msgstr "Deze bestanden zijn toegevoegd aan de negeer-lijst"
2196
 
2197
+ #: ../dashboard.php:2835
2198
  msgid "Some errors occurred"
2199
  msgstr "Er zijn fouten opgetreden"
2200
 
2201
+ #: ../dashboard.php:2836
2202
  msgid "All files have been processed"
2203
  msgstr "Alle bestanden zijn verwerkt"
2204
 
2205
+ #: ../dashboard.php:5257
2206
  msgid "These features are available in a professional version of the plugin."
2207
  msgstr "Deze functies zijn beschikbaar in de betaalde versie van de plugin."
2208
 
2209
+ #: ../dashboard.php:5258
2210
  msgid "Know more about all advantages at"
2211
  msgstr "Leer alle voordelen kennen op"
2212
 
2213
+ #: ../common.php:1437
2214
  msgid "Suspicious JavaScript code detected"
2215
  msgstr "Verdachte JavaScript-code ontdekt"
2216
 
2218
  msgid "Unable to update the schedule"
2219
  msgstr "Kan het schema niet vernieuwen"
2220
 
2221
+ #: ../admin/cerber-admin.php:775
2222
  msgid "All scans"
2223
  msgstr "Alle scans"
2224
 
2225
+ #: ../admin/cerber-admin.php:882
2226
  msgid "The list is empty."
2227
  msgstr "De lijst is leeg."
2228
 
2229
+ #: ../admin/cerber-admin.php:721
2230
  msgid "No files match the specified filter."
2231
  msgstr "Het filter levert geen bestanden op."
2232
 
2233
+ #: ../admin/cerber-admin.php:721
2234
  msgid "Click here to see the full list of files"
2235
  msgstr "Klik hier om de hele bestandenlijst te zien"
2236
 
2237
+ #: ../dashboard.php:849
2238
  msgid "Additional Details"
2239
  msgstr "Aanvullende details"
2240
 
2241
+ #: ../dashboard.php:3583
2242
  msgid "Page generation time"
2243
  msgstr "Aanmaaktijd pagina"
2244
 
2245
+ #: ../dashboard.php:5293
2246
  msgid "Log In"
2247
  msgstr "Inloggen"
2248
 
2249
+ #: ../dashboard.php:5294
2250
  msgid "Log Out"
2251
  msgstr "Uitloggen"
2252
 
2253
+ #: ../dashboard.php:5295
2254
  msgid "Register"
2255
  msgstr "Aanmelden"
2256
 
2257
+ #: ../dashboard.php:5298
2258
  msgid "WooCommerce Log In"
2259
  msgstr "WooCommerce Log In"
2260
 
2261
+ #: ../dashboard.php:5299
2262
  msgid "WooCommerce Log Out"
2263
  msgstr "WooCommerce Log Out"
2264
 
2265
+ #: ../dashboard.php:5338 ../dashboard.php:5339
2266
  msgid "Add to menu"
2267
  msgstr "Aan menu toevoegen"
2268
 
2269
+ #: ../common.php:1425
2270
  msgid "IP address is locked out"
2271
  msgstr "IP-adres is uitgesloten"
2272
 
2273
+ #: ../common.php:1516
2274
  msgid "Multiple suspicious requests"
2275
  msgstr "Meerdere verdachte verzoeken"
2276
 
2277
+ #: ../settings.php:727
2278
  msgid "Traffic Inspection"
2279
  msgstr "Verkeersinspectie"
2280
 
2281
+ #: ../settings.php:736 ../settings.php:764
2282
  msgid "Maximum compatibility"
2283
  msgstr "Maximale compatibiliteit"
2284
 
2285
+ #: ../settings.php:737 ../settings.php:765
2286
  msgid "Maximum security"
2287
  msgstr "Maximale veiligheid"
2288
 
2289
+ #: ../settings.php:755
2290
  msgid "Erroneous Request Shielding"
2291
  msgstr "Afschermen foutieve requests"
2292
 
2293
+ #: ../settings.php:760
2294
  msgid "Enable error shielding"
2295
  msgstr "Foutafscherming aanzetten"
2296
 
2297
+ #: ../settings.php:833
2298
  msgid "Save software errors"
2299
  msgstr "Softwarefouten opslaan"
2300
 
2302
  msgid "Preparing for the scan"
2303
  msgstr "Scan voorbereiden"
2304
 
2305
+ #: ../common.php:1438
2306
  msgid "Blocked by administrator"
2307
  msgstr "Geblokkeerd door de beheerder"
2308
 
2309
+ #: ../cerber-load.php:346
2310
  msgid "You are not allowed to log in"
2311
  msgstr "Je mag niet inloggen"
2312
 
2318
  msgid "User is not permitted to log into the website"
2319
  msgstr "Gebruiker mag niet inloggen op de site"
2320
 
2321
+ #: ../cerber-users.php:68 ../settings.php:535
2322
  msgid "User Message"
2323
  msgstr "bericht van gebruiker"
2324
 
2330
  msgid "Blocked Users"
2331
  msgstr "Geblokkeerde Gebruikers"
2332
 
2333
+ #: ../settings.php:355
2334
  msgid "Block access to user pages like /?author=n"
2335
  msgstr "Blokkeer toegang tot gebruikerspagina's als /?author=n"
2336
 
2337
+ #: ../settings.php:385
2338
  msgid "Access to WordPress REST API"
2339
  msgstr "Toegang tot WordPress REST API"
2340
 
2341
+ #: ../settings.php:396
2342
  msgid "Block access to WordPress REST API except any of the following"
2343
  msgstr "Blokkeer toegang tot gebruikersdata via REST API behalve"
2344
 
2345
+ #: ../settings.php:406
2346
  msgid "Allow REST API for these roles"
2347
  msgstr "Sta REST API toe voor deze rollen"
2348
 
2349
+ #: ../settings.php:411
2350
  msgid "Allow these namespaces"
2351
  msgstr "Sta deze naamruimtes toe"
2352
 
2353
+ #: ../settings.php:769
2354
  msgid "Ignore logged in users"
2355
  msgstr "Negeer ingelogde gebruikers"
2356
 
2357
+ #: ../settings.php:133
2358
  msgid "These restrictions do not apply to IP addresses in the White IP Access List"
2359
  msgstr "Deze beperkingen gelden niet voor IP-adressen op de Toegelaten Lijst"
2360
 
2362
  msgid "Select one or more roles"
2363
  msgstr "Kies een of meer rollen"
2364
 
2365
+ #: ../cerber-users.php:1019 ../dashboard.php:1144
2366
  msgid "Filter by registered user"
2367
  msgstr "Gefilterd door een geregistreerde gebruiker"
2368
 
2369
+ #: ../settings.php:521
2370
  msgid "Authorized users only"
2371
  msgstr "Alleen bevoegde gebruikers"
2372
 
2373
+ #: ../settings.php:522
2374
  msgid "Only registered and logged in website users have access to the website"
2375
  msgstr "Alleen geregistreerde en ingelogde gebruikers hebben toegang tot de website"
2376
 
2377
+ #: ../settings.php:539 ../settings.php:1484
2378
  msgid "Only registered and logged in users are allowed to view this website"
2379
  msgstr "Alleen geregistreerde en ingelogde gebruikers mogen de website bekijken"
2380
 
2381
+ #: ../settings.php:544
2382
  msgid "Redirect to URL"
2383
  msgstr "Omleiding naar URL"
2384
 
2385
+ #: ../dashboard.php:4967
2386
  msgid "Changelog"
2387
  msgstr "Log van aanpassingen"
2388
 
2389
+ #: ../dashboard.php:653
2390
  msgid "Default settings have been loaded"
2391
  msgstr "Standaardinstellingen zijn geladen"
2392
 
2393
+ #: ../dashboard.php:3291
2394
  msgid "Save all rules"
2395
  msgstr "Alle regels opslaan"
2396
 
2397
+ #: ../admin/cerber-settings.php:628 ../dashboard.php:3162
2398
  msgid "Save Changes"
2399
  msgstr "Veranderingen opslaan"
2400
 
2401
+ #: ../common.php:1414
2402
  msgid "Invalid master credentials"
2403
  msgstr "Ongeldige hoofd-inloggegevens"
2404
 
2405
+ #: ../settings.php:1184
2406
  msgid "Master settings"
2407
  msgstr "Hoofdinstellingen"
2408
 
2409
+ #: ../settings.php:1192
2410
  msgid "Return to the website list"
2411
  msgstr "Terug naar de website-lijst"
2412
 
2413
+ #: ../settings.php:1196
2414
  msgid "Show \"Switched to\" notification"
2415
  msgstr "Toon 'Omgeschakeld naar'-melding"
2416
 
2417
+ #: ../settings.php:1200
2418
  msgid "Add @ site to the page title"
2419
  msgstr "Voeg '@site' toe aan de paginakop"
2420
 
2421
+ #: ../settings.php:914 ../settings.php:1217 ../settings.php:1245
2422
  msgid "Enable diagnostic logging"
2423
  msgstr "Diagnostische logging aanzetten"
2424
 
2425
+ #: ../settings.php:1228
2426
  msgid "Limit access by IP address"
2427
  msgstr "Toegang beperken op IP-adres"
2428
 
2429
+ #: ../settings.php:1234
2430
  msgid "Access to this website"
2431
  msgstr "Toegang tot deze website"
2432
 
2433
+ #: ../settings.php:1237
2434
  msgid "Full access mode"
2435
  msgstr "Volledige-toegangs-modus"
2436
 
2437
+ #: ../settings.php:1238
2438
  msgid "Read-only mode"
2439
  msgstr "Alleen-lezen-modus"
2440
 
2441
+ #: ../settings.php:1259
2442
  msgid "The full access mode requires the PRO version of WP Cerber"
2443
  msgstr "Volledige toegang tot alle functies vergt WP Cerber PRO"
2444
 
2450
  msgid "Malware Scan"
2451
  msgstr "Malware Scan"
2452
 
2453
+ #: ../nexus/cerber-nexus-master.php:141 ../nexus/cerber-slave-list.php:56
2454
  msgid "Notes"
2455
  msgstr "Aantekeningen"
2456
 
2458
  msgid "Add a slave website"
2459
  msgstr "Voeg een 'slave'-website toe"
2460
 
2461
+ #: ../nexus/cerber-slave-list.php:247 ../cerber-users.php:1085
2462
  msgid "Search results for:"
2463
  msgstr "Zoekresultaten voor:"
2464
 
2465
+ #: ../nexus/cerber-slave-list.php:282
2466
  msgid "Edit"
2467
  msgstr "Aanpassen"
2468
 
2469
+ #: ../nexus/cerber-slave-list.php:288
2470
  msgid "Switch to"
2471
  msgstr "Ga naar:"
2472
 
2473
+ #: ../nexus/cerber-slave-list.php:420
2474
  msgid "No websites configured."
2475
  msgstr "Geen website geconfigureerd."
2476
 
2477
+ #: ../nexus/cerber-slave-list.php:420
2478
  msgid "Add a new one"
2479
  msgstr "Voeg een nieuwe toe"
2480
 
2481
+ #: ../nexus/cerber-nexus-master.php:104
2482
  msgid "Website Properties"
2483
  msgstr "Website-eigenschappen"
2484
 
2485
+ #: ../nexus/cerber-nexus-master.php:114
2486
  msgid "Website URL"
2487
  msgstr "Website URL"
2488
 
2489
+ #: ../nexus/cerber-nexus-master.php:119
2490
  msgid "Display as"
2491
  msgstr "Toon als"
2492
 
2493
+ #: ../nexus/cerber-nexus-master.php:149
2494
  msgid "Website Owner"
2495
  msgstr "Website-eigenaar"
2496
 
2497
+ #: ../nexus/cerber-nexus-master.php:153
2498
  msgid "First Name"
2499
  msgstr "Voornaam"
2500
 
2501
+ #: ../nexus/cerber-nexus-master.php:157
2502
  msgid "Last Name"
2503
  msgstr "Achternaam"
2504
 
2505
+ #: ../nexus/cerber-nexus-master.php:161
2506
  msgid "Email"
2507
  msgstr "E-mail"
2508
 
2509
+ #: ../nexus/cerber-nexus-master.php:165
2510
  msgid "Phone"
2511
  msgstr "Telefoon"
2512
 
2513
+ #: ../nexus/cerber-nexus-master.php:173
2514
  msgid "Address"
2515
  msgstr "Adres"
2516
 
2517
+ #: ../nexus/cerber-nexus-master.php:286
2518
  msgid "Security access token is invalid"
2519
  msgstr "Ongeldig veiligheids-toegangscertificaat"
2520
 
2521
+ #: ../nexus/cerber-nexus-master.php:316
2522
  msgid "The website you are trying to add is already in the list"
2523
  msgstr "De website die je wilt toevoegen, staat al op de lijst"
2524
 
2525
+ #: ../nexus/cerber-nexus-master.php:325
2526
  msgid "The website has been added successfully"
2527
  msgstr "De website is toegevoegd"
2528
 
2529
+ #: ../nexus/cerber-nexus-master.php:326
2530
  msgid "Click to edit"
2531
  msgstr "Klik om aan te passen"
2532
 
2533
+ #: ../nexus/cerber-nexus-master.php:327
2534
  msgid "Switch to the Dashboard"
2535
  msgstr "Ga naar het Dashboard"
2536
 
2537
+ #: ../nexus/cerber-nexus-master.php:330
2538
  msgid "Keep in mind: You have added the website that does not support SSL encryption. This may lead to data leakage."
2539
  msgstr "Let op: je hebt een website toegevoegd die geen SSL-encryptie ondersteunt. Dat kan een datalek veroorzaken."
2540
 
2541
+ #: ../nexus/cerber-nexus-master.php:449
2542
  msgid "Website has been deleted"
2543
  msgid_plural "%s websites have been deleted"
2544
  msgstr[0] "Website is verwijderd"
2545
  msgstr[1] "%s websites zijn verwijderd"
2546
 
2547
+ #: ../nexus/cerber-nexus-master.php:1025
2548
  msgid "You have switched to %s"
2549
  msgstr "Je bent omgeschakeld naar %s"
2550
 
2551
+ #: ../nexus/cerber-nexus-master.php:1035
2552
  msgid "You have switched back to the master website"
2553
  msgstr "Je bent teruggegaan naar de beheer-website"
2554
 
2555
+ #: ../nexus/cerber-nexus-master.php:1251
2556
  msgid "You are here:"
2557
  msgstr "Je bent hier:"
2558
 
2559
+ #: ../nexus/cerber-nexus-master.php:1254 ../nexus/cerber-nexus.php:92 ..
2560
+ #: /nexus/cerber-nexus.php:102
2561
  msgid "My Websites"
2562
  msgstr "Mijn Websites"
2563
 
2564
+ #: ../nexus/cerber-nexus-master.php:1269
2565
  msgid "Visit Site"
2566
  msgstr "Bezoek Site"
2567
 
2568
+ #: ../nexus/cerber-nexus.php:64
2569
  msgid "Enable slave mode"
2570
  msgstr "'Slave'-modus aanzetten"
2571
 
2622
  msgstr "Installeer het toegangscertificaat op de hoofdwebsite."
2623
 
2624
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
2625
+ #: ../common.php:1654
2626
  msgid "%s sec"
2627
  msgid_plural "%s secs"
2628
  msgstr[0] "%s sec"
2629
  msgstr[1] "%s sec"
2630
 
2631
+ #: ../settings.php:710
2632
  msgid "Send reports on"
2633
  msgstr "Verstuur rapportages op"
2634
 
2636
  msgid "Updates"
2637
  msgstr "Updates"
2638
 
2639
+ #: ../nexus/cerber-nexus-master.php:127 ../nexus/cerber-slave-list.php:54
2640
  msgid "Group"
2641
  msgstr "Groep"
2642
 
2656
  msgid "All groups"
2657
  msgstr "Alle groepen"
2658
 
2659
+ #: ../nexus/cerber-nexus-master.php:1335
2660
  msgid "Are you sure you want to delete selected websites?"
2661
  msgstr "Wil je de gekozen websites zeker verwijderen?"
2662
 
2664
  msgid "Block"
2665
  msgstr "Blokkeer"
2666
 
2667
+ #: ../nexus/cerber-nexus-master.php:96
2668
  msgid "Select an existing group or enter a new one to add it"
2669
  msgstr "Kies een bestaande groep of voeg een nieuwe toe"
2670
 
2671
+ #: ../nexus/cerber-nexus-master.php:169
2672
  msgid "Company"
2673
  msgstr "Organisatie"
2674
 
2675
+ #: ../nexus/cerber-nexus-master.php:693
2676
  msgid "Invalid response from the slave website"
2677
  msgstr "Ongeldig antwoord van de 'slave'-website"
2678
 
2679
+ #: ../common.php:1390 ../common.php:1506
2680
  msgid "Attempt to log in with non-existing username"
2681
  msgstr "Inlogpoging met onbekende gebruikersnaam"
2682
 
2683
+ #: ../cerber-load.php:4474
2684
  msgid "Attempts to log in with non-existing usernames"
2685
  msgstr "Pogingen om in te loggen met een onbekende gebruikersnaam"
2686
 
2687
+ #: ../settings.php:1204
2688
  msgid "Use master language"
2689
  msgstr "Gebruik hoofdtaal"
2690
 
2691
+ #: ../settings.php:182
2692
  msgid "Non-existing users"
2693
  msgstr "Niet-bestaande gebruikers"
2694
 
2695
+ #: ../settings.php:183
2696
  msgid "Immediately block IP when attempting to log in with a non-existing username"
2697
  msgstr "IP meteen blokkeren bij inlogpoging op niet-bestaande gebruiker"
2698
 
2700
  msgid "Owner"
2701
  msgstr "Eigenaar"
2702
 
2703
+ #: ../nexus/cerber-slave-list.php:420
2704
  msgid "Disable master mode"
2705
  msgstr "Zet beheermodus uit"
2706
 
2708
  msgid "To revoke the token and disable remote management, click here:"
2709
  msgstr "Om het certificaat in te trekken en beheer op afstand te stoppen, klik hier:"
2710
 
2711
+ #: ../settings.php:365
2712
  msgid "Block execution of PHP scripts in the WordPress media folder"
2713
  msgstr "Voorkom uitvoeren van PHP-scripts in de WordPress media-map"
2714
 
2715
+ #: ../nexus/cerber-nexus-master.php:1401 ../nexus/cerber-nexus-master.php:1409
2716
  msgid "Active plugins and updates on"
2717
  msgstr "Actieve plugins en updates op"
2718
 
2719
+ #: ../nexus/cerber-nexus-master.php:1379
2720
  msgid "A newer version is available"
2721
  msgstr "Er staat een nieuwere versie klaar"
2722
 
2723
+ #: ../dashboard.php:970
2724
  msgid "New users"
2725
  msgstr "Nieuwe gebruikers"
2726
 
2727
+ #: ../dashboard.php:983
2728
  msgid "My activity"
2729
  msgstr "Mijn activiteiten"
2730
 
2731
+ #: ../dashboard.php:2577
2732
  msgid "Create Alert"
2733
  msgstr "Waarschuwing aanmaken"
2734
 
2735
+ #: ../dashboard.php:2581
2736
  msgid "Delete Alert"
2737
  msgstr "Waarschuwing verwijderen"
2738
 
2739
+ #: ../dashboard.php:2614
2740
  msgid "The alert has been created"
2741
  msgstr "Waarschuwing aangemaakt"
2742
 
2743
+ #: ../dashboard.php:2618
2744
  msgid "The alert has been deleted"
2745
  msgstr "Waarschuwing verwijderd"
2746
 
2747
+ #: ../dashboard.php:4092
2748
  msgid "Advanced Search"
2749
  msgstr "Geavanceerd zoeken"
2750
 
2753
  msgid "Cerber Tech Inc."
2754
  msgstr "Cerber Tech Inc."
2755
 
2756
+ #: ../cerber-load.php:5045
2757
  msgid "To delete the alert, click here"
2758
  msgstr "Klik om waarschuwing te verwijderen"
2759
 
2760
+ #: ../settings.php:215
2761
  msgid "Custom login URL may contain Latin alphanumeric characters, dashes and underscores only"
2762
  msgstr "Gebruik letters, cijfers, koppelstreepjes of onderstrepingen voor de eigen login-URL"
2763
 
2764
+ #: ../settings.php:227
2765
  msgid "Site-specific settings"
2766
  msgstr "Site-specifieke instellingen"
2767
 
2768
+ #: ../settings.php:235
2769
  msgid "Prefix for plugin cookies"
2770
  msgstr "Voorvoegsel voor plugin-cookies"
2771
 
2772
+ #: ../settings.php:236
2773
  msgid "Prefix may contain only Latin alphanumeric characters and underscores"
2774
  msgstr "Gebruik letters, cijfers of onderstrepingen voor het voorvoegsel"
2775
 
2776
+ #: ../settings.php:664
2777
  msgid "Lockout notifications"
2778
  msgstr "Melding van uitsluitingen"
2779
 
2780
+ #: ../settings.php:692
2781
  msgid "Pushbullet access token"
2782
  msgstr "Pushbullet access token"
2783
 
2784
+ #: ../settings.php:695
2785
  msgid "Pushbullet device"
2786
  msgstr "Pushbullet apparaat"
2787
 
2788
+ #: ../settings.php:992
2789
  msgid "Delete unattended files"
2790
  msgstr "Verwijder verweesde bestanden"
2791
 
2792
+ #: ../settings.php:1011
2793
  msgid "Automatic recovery of modified and infected files"
2794
  msgstr "Automatisch herstel van aangepaste en geïnfecteerde bestanden"
2795
 
2796
+ #: ../settings.php:1014
2797
  msgid "Recover WordPress files"
2798
  msgstr "Herstel Wordpress-bestanden"
2799
 
2800
+ #: ../settings.php:1018
2801
  msgid "Recover plugins files"
2802
  msgstr "Herstel plugin-bestanden"
2803
 
2817
  msgid "Recovering plugins files"
2818
  msgstr "Plugin-bestanden aan het herstellen"
2819
 
2820
+ #: ../cerber-scanner.php:4875
2821
  msgid "Recovered"
2822
  msgstr "Hersteld"
2823
 
2824
+ #: ../cerber-scanner.php:4925
2825
  msgid "Automatically deleted"
2826
  msgstr "Automatisch verwijderd"
2827
 
2828
+ #: ../cerber-scanner.php:4928
2829
  msgid "Automatically recovered"
2830
  msgstr "Automatisch hersteld"
2831
 
2832
+ #: ../dashboard.php:65
2833
  msgid "Cerber User Security"
2834
  msgstr "Cerber Gebruikersbeveiliging"
2835
 
2836
+ #: ../dashboard.php:65 ../dashboard.php:4872
2837
  msgid "User Policies"
2838
  msgstr "Gebruikersbeleid"
2839
 
2840
+ #: ../dashboard.php:1814
2841
  msgid "A new version is available"
2842
  msgstr "Er is een nieuwe versie beschikbaar"
2843
 
2844
+ #: ../dashboard.php:4874
2845
  msgid "Role-based"
2846
  msgstr "Rolgebaseerd"
2847
 
2848
+ #: ../dashboard.php:4875
2849
  msgid "Global"
2850
  msgstr "Mondiaal"
2851
 
2852
+ #: ../common.php:1439
2853
  msgid "Site policy enforcement"
2854
  msgstr "Afdwingen gebruiksvoorwaarden site"
2855
 
2856
+ #: ../common.php:1440
2857
  msgid "2FA code verified"
2858
  msgstr "2FA code geverifieerd"
2859
 
2860
+ #: ../common.php:1441
2861
  msgid "Initiated by the user"
2862
  msgstr "Gestart door gebruiker"
2863
 
2864
+ #: ../common.php:1874
2865
  msgid "A new version of %s is available. Please install it."
2866
  msgstr "Er is een nieuwe versie van %s. Installeer het."
2867
 
2868
+ #: ../cerber-load.php:1568
2869
  msgid "Email address is not permitted."
2870
  msgstr "E-mail-adres niet toegestaan."
2871
 
2872
+ #: ../cerber-load.php:1568
2873
  msgid "Please choose another one."
2874
  msgstr "Kies een andere."
2875
 
2913
  msgid "Redirect user after logout"
2914
  msgstr "Verwijs gebruiker door na logout"
2915
 
2916
+ #: ../cerber-users.php:432 ../settings.php:597
2917
  msgid "User session expiration time"
2918
  msgstr "Afkaptijd gebruikerssessie"
2919
 
2969
  msgid "Policies have been updated"
2970
  msgstr "Beleid is vernieuwd"
2971
 
2972
+ #: ../settings.php:572
2973
  msgid "Restrict email addresses"
2974
  msgstr "Beperk e-mail-adressen"
2975
 
2976
+ #: ../settings.php:575
2977
  msgid "No restrictions"
2978
  msgstr "Geen beperkingen"
2979
 
2980
+ #: ../settings.php:576
2981
  msgid "Deny all email addresses that match the following"
2982
  msgstr "Wijs mailadressen af die voldoen aan het volgende"
2983
 
2984
+ #: ../settings.php:577
2985
  msgid "Permit only email addresses that match the following"
2986
  msgstr "Sta alleen mailadressen toe die voldoen aan het volgende"
2987
 
2988
+ #: ../settings.php:582
2989
  msgid "Specify email addresses, wildcards or REGEX patterns. Use comma to separate items."
2990
  msgstr "Geef e-mailadressen, jokertekens of REGEX-patronen op. Scheid items met komma's."
2991
 
2992
+ #: ../settings.php:1025
2993
  msgid "These files will never be deleted during automatic cleanup."
2994
  msgstr "Deze bestanden worden nooit gewist bij een automatische schoonmaak."
2995
 
3057
  msgid "Two-Factor Authentication Email"
3058
  msgstr "E-mail voor dubbele authenticatie"
3059
 
3060
+ #: ../dashboard.php:3234
3061
  msgid "Role-based rules are configured"
3062
  msgstr "Rolgebaseerde regels worden ingesteld"
3063
 
3064
+ #: ../dashboard.php:3428
3065
  msgid "All Users"
3066
  msgstr "Alle gebruikers"
3067
 
3074
  msgid "The code is valid for %s minutes."
3075
  msgstr "De code is %s minuten geldig."
3076
 
3077
+ #: ../dashboard.php:352
3078
  msgid "IP address %s has been added to White IP Access List"
3079
  msgstr "IP-adres %s staat nu op de lijst toegelaten adressen"
3080
 
3081
+ #: ../dashboard.php:349
3082
  msgid "IP address %s has been added to Black IP Access List"
3083
  msgstr "IP-adres %s staat nu op de lijst verboden adressen"
3084
 
3085
+ #: ../cerber-users.php:975 ../dashboard.php:196 ../dashboard.php:846 ../dashboard.
3086
+ #: php:1101 ../dashboard.php:4033
3087
  msgid "IP Address"
3088
  msgstr "IP-adres"
3089
 
3090
+ #: ../dashboard.php:853 ../dashboard.php:1107
3091
  msgid "Username"
3092
  msgstr "Gebruikersnaam"
3093
 
3094
+ #: ../dashboard.php:3316
3095
  msgid "Any country is permitted"
3096
  msgstr "Elk land is toegestaan"
3097
 
3098
+ #: ../dashboard.php:2897 ../dashboard.php:4777
3099
  msgid "Sessions"
3100
  msgstr "Sessies"
3101
 
3133
  msgid "Terminate"
3134
  msgstr "Beëindig"
3135
 
3136
+ #: ../dashboard.php:1764
3137
  msgid "user"
3138
  msgid_plural "users"
3139
  msgstr[0] "gebruiker"
3140
  msgstr[1] "gebruikers"
3141
 
3142
+ #: ../settings.php:391
3143
  msgid "Block access to users' data via REST API"
3144
  msgstr "Blokkeer toegang tot gebruikersdata via de REST API"
3145
 
3147
  msgid "Unable to delete"
3148
  msgstr "Kan niet verwijderen"
3149
 
3150
+ #: ../dashboard.php:61
3151
  msgid "Cerber Data Shield Policies"
3152
  msgstr "Cerber Data Shield instellingen"
3153
 
3154
+ #: ../dashboard.php:61
3155
  msgid "Data Shield"
3156
  msgstr "Data Shield"
3157
 
3158
+ #: ../dashboard.php:4862
3159
  msgid "Data Shield Policies"
3160
  msgstr "Data Shield instellingen"
3161
 
3162
+ #: ../dashboard.php:4864
3163
  msgid "Accounts & Roles"
3164
  msgstr "Accounts & Rollen"
3165
 
3166
+ #: ../dashboard.php:4865
3167
  msgid "Site Settings"
3168
  msgstr "Site-instellingen"
3169
 
3170
+ #: ../common.php:1402
3171
  msgid "User creation denied"
3172
  msgstr "Gebruiker aanmaken afgewezen"
3173
 
3174
+ #: ../common.php:1404
3175
  msgid "Role update denied"
3176
  msgstr "Bijwerken Rol afgewezen"
3177
 
3178
+ #: ../common.php:1405
3179
  msgid "Setting update denied"
3180
  msgstr "Bijwerken instellingen afgewezen"
3181
 
3182
+ #: ../common.php:1446
3183
  msgid "Permission denied"
3184
  msgstr "Toestemming geweigerd"
3185
 
3186
+ #: ../common.php:1448
3187
  msgid "Invalid user"
3188
  msgstr "Ongeldige gebruiker"
3189
 
3190
+ #: ../common.php:1449
3191
  msgid "Incorrect password"
3192
  msgstr "Onjuist wachtwoord"
3193
 
3194
+ #: ../settings.php:423
3195
  msgid "Protect user accounts"
3196
  msgstr "Bescherm gebruiker-accounts"
3197
 
3198
+ #: ../settings.php:428
3199
  msgid "Restrict user account creation and user management with the following policies"
3200
  msgstr "Beperk aanmaak gebruikers-accounts en gebruikerbeheer met de volgende instellingen"
3201
 
3202
+ #: ../settings.php:434
3203
  msgid "User registrations are limited to these roles"
3204
  msgstr "Gebruikersregistratie is beperkt tot deze rollen"
3205
 
3206
+ #: ../settings.php:440
3207
  msgid "Users with these roles are permitted to create new accounts"
3208
  msgstr "Gebruikers in deze rol kunnen nieuwe accounts aanmaken"
3209
 
3210
+ #: ../settings.php:445
3211
  msgid "Users with these roles are permitted to change sensitive user data"
3212
  msgstr "Gebruikers in deze rol kunnen gebruikersdata aanpassen"
3213
 
3214
+ #: ../settings.php:450 ../settings.php:478 ../settings.php:507
3215
  msgid "Do not apply these policies to the IP addresses in the White IP Access List"
3216
  msgstr "Pas deze instellingen niet toe op de lijst toegelaten IP-adressen"
3217
 
3218
+ #: ../settings.php:458
3219
  msgid "Protect user roles"
3220
  msgstr "Bescherm gebruikersrollen"
3221
 
3222
+ #: ../settings.php:462
3223
  msgid "Restrict roles and capabilities management with the following policies"
3224
  msgstr "Beperk beheer van rollen en instellingen met deze maatregelen"
3225
 
3226
+ #: ../settings.php:468
3227
  msgid "Users with these roles are permitted to add new roles"
3228
  msgstr "Gebruikers in deze rol kunnen nieuwe rollen toevoegen"
3229
 
3230
+ #: ../settings.php:473
3231
  msgid "Users with these roles are permitted to change role capabilities"
3232
  msgstr "Gebruikers in deze rol kunnen rol-instellingen aanpassen"
3233
 
3234
+ #: ../settings.php:486
3235
  msgid "Protect site settings"
3236
  msgstr "Bescherm site-instellingen"
3237
 
3238
+ #: ../settings.php:490
3239
  msgid "Restrict updating site settings with the following policies"
3240
  msgstr "Beperk het bijwerken van site-instellingen met deze maatregelen"
3241
 
3242
+ #: ../settings.php:496
3243
  msgid "Users with these roles are permitted to change protected settings"
3244
  msgstr "Gebruikers in deze rol mogen beschermde instellingen aanpassen"
3245
 
3246
+ #: ../settings.php:501
3247
  msgid "Protected settings"
3248
  msgstr "Beschermde instellingen"
3249
 
3250
+ #: ../settings.php:529
3251
  msgid "Do not apply these policy to the IP addresses in the White IP Access List"
3252
  msgstr "Pas deze instelling niet toe op de lijst toegelaten IP-adressen"
3253
 
3254
+ #: ../cerber-ds.php:800
3255
  msgid "Administration Email Address"
3256
  msgstr "E-mailadres beheerder"
3257
 
3258
+ #: ../cerber-ds.php:801
3259
  msgid "New User Default Role"
3260
  msgstr "Standaardrol nieuwe gebruiker"
3261
 
3262
+ #: ../cerber-ds.php:802
3263
  msgid "Site Address (URL)"
3264
  msgstr "Website-adres (URL)"
3265
 
3266
+ #: ../cerber-ds.php:803
3267
  msgid "WordPress Address (URL)"
3268
  msgstr "WordPress-adress (URL)"
3269
 
3270
+ #: ../cerber-ds.php:804
3271
  msgid "Anyone can register"
3272
  msgstr "Iedereen kan zich aanmelden"
3273
 
3274
+ #: ../cerber-ds.php:805
3275
  msgid "Active Plugins"
3276
  msgstr "Actieve Plugins"
3277
 
3278
+ #: ../cerber-ds.php:806
3279
  msgid "Active Theme"
3280
  msgstr "Actief Thema"
3281
 
3295
  msgid "All countries"
3296
  msgstr "Alle landen"
3297
 
3298
+ #: ../nexus/cerber-nexus-master.php:67
3299
  msgid "Show homepage in the Website column"
3300
  msgstr "Toon thuispagina in de Website-kolom"
3301
 
3302
+ #: ../nexus/cerber-nexus-master.php:69
3303
  msgid "Hide server IP address"
3304
  msgstr "Verberg IP-adres server"
3305
 
3306
+ #: ../dashboard.php:321
3307
  msgid "IP address, range, wildcard, or CIDR"
3308
  msgstr "IP-adres, -reeks, -jokerteken of CIDR"
3309
 
3310
+ #: ../dashboard.php:322
3311
  msgid "Add Entry"
3312
  msgstr "Voeg toe"
3313
 
3314
+ #: ../dashboard.php:5122
3315
  msgid "The IP address you are trying to add is already in the list"
3316
  msgstr "Het IP-adres dat je wilt toevoegen, staat al in de lijst"
3317
 
3318
+ #: ../common.php:1366
3319
  msgid "IP subnet blocked"
3320
  msgstr "IP subnet geblokkeerd"
3321
 
3322
+ #: ../common.php:1403
3323
  msgid "User row update denied"
3324
  msgstr "Aanpassing rij van gebruiker geweigerd"
3325
 
3326
+ #: ../common.php:1406
3327
  msgid "User metadata update denied"
3328
  msgstr "Aanpassing metadata gebruiker geweigerd"
3329
 
3330
+ #: ../settings.php:1327
3331
  msgid "Any activity"
3332
  msgstr "Enige activiteit"
3333
 
3335
  msgid "A database error occurred while importing access list entries"
3336
  msgstr "Import van de toegangslijst leidde tot een database-fout"
3337
 
3338
+ #: ../settings.php:248
3339
  msgid "Enable authentication log monitoring"
3340
  msgstr "Houd logboek voor aanmeldingen bij"
3341
 
3342
+ #: ../settings.php:280 ../settings.php:843
3343
  msgid "Keep log records of not logged in visitors for"
3344
  msgstr "Leg niet-aangemelde bezoekers vast voor"
3345
 
3346
+ #: ../settings.php:286 ../settings.php:849
3347
  msgid "Keep log records of logged in users for"
3348
  msgstr "Leg aangemelde gebruikers vast voor"
3349
 
3355
  msgid "WP Cerber Personal Data Eraser"
3356
  msgstr "WP Cerber Persoonlijke Data Wisser"
3357
 
3358
+ #: ../settings.php:613
3359
  msgid "Personal Data"
3360
  msgstr "Persoonlijke Gegevens"
3361
 
3362
+ #: ../settings.php:619
3363
  msgid "Enable data erase"
3364
  msgstr "Gegevens wissen inschakelen"
3365
 
3366
+ #: ../settings.php:626
3367
  msgid "Terminate user sessions"
3368
  msgstr "Beëindig gebruikerssessies"
3369
 
3370
+ #: ../settings.php:627
3371
  msgid "Delete user sessions data when user data is erased"
3372
  msgstr "Verwijder gegevens gebruikerssessies als gebruikersinformatie wordt gewist"
3373
 
3374
+ #: ../settings.php:633
3375
  msgid "Enable data export"
3376
  msgstr "Gegevensexport inschakelen"
3377
 
3378
+ #: ../settings.php:640
3379
  msgid "Include activity log events"
3380
  msgstr "Voeg activiteitenlog toe"
3381
 
3382
+ #: ../settings.php:646
3383
  msgid "Include traffic log entries"
3384
  msgstr "Voeg verkeersinformatie toe"
3385
 
3386
+ #: ../settings.php:649
3387
  msgid "Request URL"
3388
  msgstr "URL opvragen"
3389
 
3390
+ #: ../settings.php:650
3391
  msgid "Form fields data"
3392
  msgstr "Gegevens formuliervelden"
3393
 
3394
+ #: ../settings.php:651
3395
  msgid "Cookies"
3396
  msgstr "Cookies"
3397
 
3398
+ #: ../dashboard.php:72
3399
  msgid "Cerber anti-spam settings"
3400
  msgstr "Cerber anti-spam-instellingen"
3401
 
3402
+ #: ../dashboard.php:72 ../settings.php:1166
3403
  msgid "Anti-spam"
3404
  msgstr "Anti-spam"
3405
 
3406
+ #: ../cerber-addons.php:289 ../dashboard.php:80 ../dashboard.php:80
3407
  msgid "Add-ons"
3408
  msgstr "Add-ons"
3409
 
3410
+ #: ../dashboard.php:4826
3411
  msgid "Anti-spam and bot detection settings"
3412
  msgstr "Anti-spam- en botdetectie-instellingen"
3413
 
3414
+ #: ../dashboard.php:4828
3415
  msgid "Anti-spam engine"
3416
  msgstr "Anti-spamroutine"
3417
 
3418
+ #: ../common.php:1515
3419
  msgid "Multiple erroneous requests"
3420
  msgstr "Meervoudige foutieve verzoeken"
3421
 
3431
  msgid "Enable after %s failed login attempts in the last %s minutes"
3432
  msgstr "Aanzetten na %s gefaalde inlogpogingen in de afgelopen %s minuten"
3433
 
3434
+ #: ../settings.php:153
3435
  msgid "Limit"
3436
  msgstr "Limiet"
3437
 
3438
+ #: ../settings.php:386
3439
  msgid "Restrict or completely block access to the WordPress REST API according to your needs"
3440
  msgstr "Naar behoefte toegang tot de WordPress REST API beperken of blokkeren"
3441
 
3442
+ #: ../settings.php:615
3443
  msgid "These features help your organization to be in compliance with personal data protection laws"
3444
  msgstr "Deze functies helpen u de privacywetgeving na te leven"
3445
 
3446
+ #: ../settings.php:673
3447
  msgid "if empty, the website administrator email %s will be used"
3448
  msgstr "indien leeg, wordt de email %s van de sitebeheerder gebruikt"
3449
 
3450
+ #: ../settings.php:677
3451
  msgid "notifications are allowed per hour (0 means unlimited)"
3452
  msgstr "meldingen per uur toegestaan (0 = onbeperkt)"
3453
 
3454
+ #: ../settings.php:688
3455
  msgid "Get notified instantly with mobile and desktop notifications"
3456
  msgstr "Meteen op de hoogte met desktop- en mobiele meldingen"
3457
 
3458
+ #: ../settings.php:703
3459
  msgid "Weekly report is a summary of all activities and suspicious events occurred during the last seven days"
3460
  msgstr "Het weekrapport is een overzicht van activiteiten en verdachte gebeurtenissen van de afgelopen zeven dagen"
3461
 
3462
+ #: ../settings.php:716 ../settings.php:977
3463
  msgid "if empty, the email addresses from the notification settings will be used"
3464
  msgstr "indien leeg, worden de mailadressen voor meldingen gebruikt"
3465
 
3466
+ #: ../settings.php:728
3467
  msgid "Traffic Inspector is a context-aware web application firewall (WAF) that protects your website by recognizing and denying malicious HTTP requests"
3468
  msgstr "VerkeerInspectie beschermt als contextuele WebApplicatie Firewall (WAF) de website door kwaadaardige HTTP-verzoeken te herkennen en te weigeren\n"
3469
  ""
3470
 
3471
+ #: ../settings.php:757
3472
  msgid "Block IP addresses that send excessive requests for non-existing pages or scan website for security breaches"
3473
  msgstr "Blokkeer IP-adressen die extreem veel niet-bestaande pagina's opvragen of die scannen voor beveiligingslekken"
3474
 
3475
+ #: ../settings.php:776
3476
  msgid "Traffic Logging"
3477
  msgstr "Verkeer Loggen"
3478
 
3479
+ #: ../settings.php:777
3480
  msgid "Enable optional traffic logging if you need to monitor suspicious and malicious activity or solve security issues"
3481
  msgstr "Ga het verkeer loggen als je verdachte of kwaadaardige activiteiten wilt volgen, of beveiligingsproblemen wilt oplossen"
3482
 
3483
+ #: ../settings.php:859
3484
  msgid "The scanner monitors file changes, verifies the integrity of WordPress, plugins, and themes, and detects malware"
3485
  msgstr "De scanner ziet bestandswijzigingen, controleert de integriteit van WordPress, plugins en thema's, en detecteert malware"
3486
 
3487
+ #: ../settings.php:881
3488
  msgid "Specify directories to exclude from scanning. One directory per line."
3489
  msgstr "Stel de mappen in die niet gescand worden. Eén map per regel."
3490
 
3491
+ #: ../settings.php:929
3492
  msgid "The scanner automatically scans the website, removes malware and sends email reports with the results of a scan"
3493
  msgstr "De scanner scant de site automatisch, verwijdert malware en mailt de resultaten van de scan"
3494
 
3495
+ #: ../settings.php:946
3496
  msgid "Configure what issues to include in the email report and the condition for sending reports"
3497
  msgstr "Instellen wat deel moet uitmaken van de email-rapportage, en waarom deze verzonden wordt"
3498
 
3499
+ #: ../settings.php:988
3500
  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"
3501
  msgstr "Deze maatregelen worden automatisch toegepast na elke scan, afhankelijk van de scan-resultaten. Getroffen bestanden gaan naar quarantaine"
3502
 
3503
+ #: ../settings.php:1054
3504
  msgid "Cerber anti-spam engine"
3505
  msgstr "Cerber anti-spam-routines"
3506
 
3507
+ #: ../settings.php:1055
3508
  msgid "Spam protection for comment, registration and contact forms on a website"
3509
  msgstr "Spambescherming voor registratie-, opmerkingen- en contactformulieren op de site"
3510
 
3511
+ #: ../settings.php:1076
3512
  msgid "Adjust anti-spam engine"
3513
  msgstr "Anti-spam-routine instellen"
3514
 
3515
+ #: ../settings.php:1077
3516
  msgid "These settings enable you to fine-tune the behavior of anti-spam algorithms and avoid false positives"
3517
  msgstr "Met deze instellingen stel je de anti-spam algoritmes precies in, en voorkom je valse meldingen"
3518
 
3519
+ #: ../settings.php:1101
3520
  msgid "How the plugin processes comments submitted through the standard comment form"
3521
  msgstr "Hoe de plugin opmerkingen verwerkt die binnenkomen via het opmerkingenformulier"
3522
 
3524
  msgid "Settings updated"
3525
  msgstr "Instellingen aangepast"
3526
 
3527
+ #: ../dashboard.php:1148
3528
  msgid "Request ID"
3529
  msgstr "ID van verzoek"
3530
 
3531
+ #: ../dashboard.php:1149
3532
  msgid "Search in URL"
3533
  msgstr "Zoek in URL"
3534
 
3535
+ #: ../settings.php:888 ../settings.php:897
3536
  msgid "Executable files"
3537
  msgstr "Uitvoerbare bestanden"
3538
 
3539
+ #: ../settings.php:889 ../settings.php:898
3540
  msgid "All files"
3541
  msgstr "Alle bestanden"
3542
 
3543
+ #: ../dashboard.php:1564
3544
  msgid "Active sessions"
3545
  msgstr "Actieve sessies"
3546
 
3547
+ #: ../settings.php:598
3548
  msgid "minutes (leave empty to use the default WordPress value)"
3549
  msgstr "minuten (leeg laten voor de standaard WordPress waarde)"
3550
 
3551
+ #: ../settings.php:902
3552
  msgid "Change file permissions when necessary"
3553
  msgstr "Bestandspermissies aanpassen indien nodig"
3554
 
3556
  msgid "Load entries"
3557
  msgstr "Waarden inladen"
3558
 
3559
+ #: ../dashboard.php:984 ../dashboard.php:4075
3560
  msgid "My IP"
3561
  msgstr "Mijn IP"
3562
 
3563
+ #: ../dashboard.php:4915
3564
  msgid "Analytics"
3565
  msgstr "Analyse"
3566
 
3567
+ #: ../dashboard.php:4964
3568
  msgid "Manage Settings"
3569
  msgstr "Instellingen beheren"
3570
 
3571
+ #: ../dashboard.php:4966
3572
  msgid "Diagnostic Log"
3573
  msgstr "Diagnostische log"
3574
 
3575
+ #: ../common.php:1359
3576
  msgid "User deleted"
3577
  msgstr "Verwijderd door gebruiker"
3578
 
3579
+ #: ../common.php:1444
3580
  msgid "Email address is prohibited"
3581
  msgstr "Email-adres is verboden"
3582
 
3583
+ #: ../admin/cerber-admin.php:761
3584
  msgid "Quarantined"
3585
  msgstr "Afgezonderd"
3586
 
3587
+ #: ../admin/cerber-admin.php:917 ../admin/cerber-admin.php:1327
3588
  msgid "Modified"
3589
  msgstr "Aangepast"
3590
 
3591
+ #: ../admin/cerber-admin.php:991
3592
  msgid "Files without extension"
3593
  msgstr "Bestanden zonder extensie"
3594
 
3595
+ #: ../admin/cerber-admin.php:992
3596
  msgid "Back to list"
3597
  msgstr "Terug naar de lijst"
3598
 
3599
+ #: ../admin/cerber-admin.php:1052
3600
  msgid "Brief summary"
3601
  msgstr "Samenvatting"
3602
 
3603
+ #: ../admin/cerber-admin.php:1103
3604
  msgid "Folder"
3605
  msgstr "Map"
3606
 
3607
+ #: ../admin/cerber-admin.php:1104
3608
  msgid "Path"
3609
  msgstr "Pas"
3610
 
3611
+ #: ../admin/cerber-admin.php:1105 ../admin/cerber-admin.php:1199
3612
  msgid "Files"
3613
  msgstr "Bestanden"
3614
 
3615
+ #: ../admin/cerber-admin.php:1106 ../admin/cerber-admin.php:1200
3616
  msgid "Space Occupied"
3617
  msgstr "Ruimte Gebruikt"
3618
 
3619
+ #: ../admin/cerber-admin.php:1170
3620
  msgid "No extension"
3621
  msgstr "Geen extensie"
3622
 
3623
+ #: ../admin/cerber-admin.php:1195
3624
  msgid "File extensions statistics"
3625
  msgstr "Statistiek Bestandsextensie"
3626
 
3627
+ #: ../admin/cerber-admin.php:1198
3628
  msgid "Extension"
3629
  msgstr "Extensie"
3630
 
3631
+ #: ../admin/cerber-admin.php:1201
3632
  msgid "Smallest"
3633
  msgstr "Kleinste"
3634
 
3635
+ #: ../admin/cerber-admin.php:1202
3636
  msgid "Largest"
3637
  msgstr "Grootste"
3638
 
3639
+ #: ../admin/cerber-admin.php:1203
3640
  msgid "Average Size"
3641
  msgstr "Gemiddelde Grootte"
3642
 
3643
+ #: ../admin/cerber-admin.php:1204
3644
  msgid "Oldest"
3645
  msgstr "Oudste"
3646
 
3647
+ #: ../admin/cerber-admin.php:1205
3648
  msgid "Newest"
3649
  msgstr "Nieuwste"
3650
 
3651
+ #: ../admin/cerber-admin.php:1221
3652
  msgid "Top 10 largest files"
3653
  msgstr "Top-10 grootste bestanden"
3654
 
3655
+ #: ../admin/cerber-admin.php:1325
3656
  msgid "File Name"
3657
  msgstr "Bestandsnaam"
3658
 
3659
+ #: ../settings.php:328
3660
  msgid "Date format for CSV export"
3661
  msgstr "Datumformaat voor CSV-export"
3662
 
3663
+ #: ../settings.php:329
3664
  msgid "Use ISO 8601 date format for CSV export files"
3665
  msgstr "Pas ISO 8601 datumformaat toe voor CSV-export"
3666
 
3667
+ #: ../settings.php:333
3668
  msgid "Use English"
3669
  msgstr "Gebruik Engels"
3670
 
3671
+ #: ../settings.php:338
3672
  msgid "My IP address"
3673
  msgstr "Mijn IP-adres"
3674
 
3675
+ #: ../settings.php:339
3676
  msgid "Do not add my IP address to the White IP Access List upon plugin activation"
3677
  msgstr "Zet mijn ip-adres niet op de lijst toegelaten ip-adressen bij activering plugin"
3678
 
3688
  msgid "To get the most out of WP Cerber, follow these steps:"
3689
  msgstr "Om het meeste baat bij WP Cerber te hebben, doe dit:"
3690
 
3691
+ #: ../common.php:1453
3692
  msgid "IP whitelisted"
3693
  msgstr "IP toegestaan"
3694
 
3695
+ #: ../dashboard.php:4074
3696
  msgid "My requests"
3697
  msgstr "Mijn verzoeken"
3698
 
3699
+ #: ../dashboard.php:3426
3700
  msgid "Log into the website"
3701
  msgstr "Bij de website inloggen"
3702
 
3705
  msgid "WP Cerber Security, Anti-spam & Malware Scan"
3706
  msgstr "WP Cerber Security, Anti-spam & Malware Scan"
3707
 
3708
+ #: ../common.php:1395 ../common.php:1511
3709
  msgid "Probing for vulnerable code"
3710
  msgstr "Op zoek naar kwetsbare code"
3711
 
3712
+ #: ../cerber-load.php:5306
3713
  msgid "Your IP address %s has been added to the White IP Access List"
3714
  msgstr "Je IP-adres %s is toegevoegd aan de Lijst Toegestane Adressen"
3715
 
3717
  msgid "Search for IP address"
3718
  msgstr "IP-adres zoeken"
3719
 
3720
+ #: ../settings.php:785
3721
  msgid "Minimal"
3722
  msgstr "Minimaal"
3723
 
3724
+ #: ../settings.php:791
3725
  msgid "Do not log known crawlers"
3726
  msgstr "Log bekende crawlers niet"
3727
 
3728
+ #: ../settings.php:795
3729
  msgid "Do not log these locations"
3730
  msgstr "Log deze locaties niet"
3731
 
3732
+ #: ../settings.php:799
3733
  msgid "Specify URL paths to exclude requests from logging. One item per line."
3734
  msgstr "Geef aan welke url-paden niet gelogd worden. Eén per regel."
3735
 
3736
+ #: ../settings.php:802
3737
  msgid "Do not log these User-Agents"
3738
  msgstr "Log deze 'user-agents' niet"
3739
 
3740
+ #: ../settings.php:806
3741
  msgid "Specify User-Agents to exclude requests from logging. One item per line."
3742
  msgstr "Geef aan welke 'user-agents' niet gelogd worden. Eén per regel."
3743
 
3744
+ #: ../dashboard.php:4200
3745
+ msgid "Unknown Google's bot"
3746
+ msgstr "Onbekende Google-bot"
3747
+
3748
+ #: ../common.php:1450
3749
+ msgid "IP address is not allowed"
3750
+ msgstr "IP-adres niet toegestaan"
3751
+
3752
+ #: ../settings.php:554
3753
+ msgid "Only users from IP addresses in the White IP Access List may register on the website"
3754
+ msgstr "Alleen IP-adressen uit de Toegestane Lijst kunnen registreren op de website."
3755
+
3756
+ #: ../settings.php:559
3757
+ msgid "User message"
3758
+ msgstr "Gebruikersbericht"
3759
+
languages/wp-cerber-sv_SE.mo CHANGED
Binary file
languages/wp-cerber-sv_SE.po CHANGED
@@ -8,215 +8,214 @@ msgstr ""
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
 
@@ -224,37 +223,37 @@ msgstr "Hjälp"
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
 
227
- #: ../cerber-load.php:341
228
  msgid "You are not allowed to log in. Ask your administrator for assistance."
229
  msgstr "Du har inte rätt att logga in. Fråga din administratör om hjälp."
230
 
231
- #: ../cerber-load.php:366
232
  msgid "You have only one attempt remaining."
233
  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: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
 
@@ -262,28 +261,28 @@ msgstr "Kan inte aktivera WP Cerber på grund av ett databasfel."
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
 
@@ -291,27 +290,27 @@ msgstr "Klicka för att skicka test"
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
 
@@ -343,7 +342,7 @@ msgstr "När du klickar på knappen nedan kommer filen att laddas upp och alla b
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
 
@@ -351,7 +350,7 @@ msgstr "Maximal filstorlek för uppladdning: %s."
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
 
@@ -367,55 +366,55 @@ msgstr "Inställningar har importerats utan problem från"
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] ""
@@ -425,107 +424,107 @@ msgstr[1] ""
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
 
@@ -534,284 +533,284 @@ msgstr "Inaktivera REST API"
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
 
583
- #: ../cerber-load.php:678
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
 
810
- #: ../dashboard.php:54
811
  msgid "Cerber Dashboard"
812
  msgstr "Cerber adminpanel"
813
 
814
- #: ../dashboard.php:82
815
  msgid "Cerber tools"
816
  msgstr "Cerber verktyg"
817
 
@@ -819,263 +818,263 @@ msgstr "Cerber verktyg"
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
 
1036
- #: ../dashboard.php:61
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,119 +1083,119 @@ msgstr "Säkerhetsregler har uppdaterats"
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
 
@@ -1232,23 +1231,23 @@ msgstr "Lördag"
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
 
@@ -1256,243 +1255,243 @@ msgstr "Aktivitetsdetaljer"
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
 
1323
- #: ../dashboard.php:56
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
 
@@ -1505,93 +1504,93 @@ msgstr "Tilläggets initialiseringsläge har inte ändrats"
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
 
@@ -1607,51 +1606,51 @@ msgstr "Var 3:e timme"
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
 
@@ -1715,11 +1714,11 @@ msgstr "Lokal fil finns inte"
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
 
@@ -1791,31 +1790,31 @@ msgstr "Filer att skanna"
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
 
@@ -1855,52 +1854,52 @@ msgstr "Vi har inte hittat några integritetsdata att verifiera"
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
 
@@ -1924,19 +1923,19 @@ msgstr "Skannar temp-mappen efter filer"
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
 
@@ -1945,11 +1944,11 @@ msgstr "Fel"
1945
  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."
1946
  msgstr ""
1947
 
1948
- #: ../cerber-load.php:347
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"
@@ -1959,7 +1958,7 @@ 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
 
@@ -1975,7 +1974,7 @@ msgstr "Slutförda"
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
 
@@ -1995,96 +1994,96 @@ msgstr "Oönskade utökningar"
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
 
@@ -2108,40 +2107,40 @@ msgstr ""
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
 
@@ -2149,63 +2148,63 @@ msgstr "Ignoreringslista"
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
 
@@ -2213,83 +2212,83 @@ msgstr "Misstänkt JavaScript-kod upptäckt"
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
 
@@ -2297,11 +2296,11 @@ msgstr "Spara programfel"
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
 
2304
- #: ../cerber-load.php:351
2305
  msgid "You are not allowed to log in"
2306
  msgstr "Du saknar behörighet att logga in"
2307
 
@@ -2313,7 +2312,7 @@ msgstr "Blockera användare"
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,31 +2324,31 @@ msgstr "Ett valfritt meddelande för denna användare"
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
 
@@ -2357,83 +2356,83 @@ msgstr "Dessa begränsningar tillämpas inte på IP-adresser i den vita IP-åtko
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
 
@@ -2445,7 +2444,7 @@ msgstr "WordPress"
2445
  msgid "Malware Scan"
2446
  msgstr "Skanna efter skadlig kod"
2447
 
2448
- #: ../nexus/cerber-slave-list.php:56 ../nexus/cerber-nexus-master.php:140
2449
  msgid "Notes"
2450
  msgstr "Noteringar"
2451
 
@@ -2453,114 +2452,114 @@ msgstr "Noteringar"
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
 
2476
- #: ../nexus/cerber-nexus-master.php:103
2477
  msgid "Website Properties"
2478
  msgstr "Webbplatsegenskaper"
2479
 
2480
- #: ../nexus/cerber-nexus-master.php:113
2481
  msgid "Website URL"
2482
  msgstr "URL till webbplats"
2483
 
2484
- #: ../nexus/cerber-nexus-master.php:118
2485
  msgid "Display as"
2486
  msgstr "Visa som"
2487
 
2488
- #: ../nexus/cerber-nexus-master.php:148
2489
  msgid "Website Owner"
2490
  msgstr "Webbplatsägare"
2491
 
2492
- #: ../nexus/cerber-nexus-master.php:152
2493
  msgid "First Name"
2494
  msgstr "Förnamn"
2495
 
2496
- #: ../nexus/cerber-nexus-master.php:156
2497
  msgid "Last Name"
2498
  msgstr "Efternamn"
2499
 
2500
- #: ../nexus/cerber-nexus-master.php:160
2501
  msgid "Email"
2502
  msgstr "E-post"
2503
 
2504
- #: ../nexus/cerber-nexus-master.php:164
2505
  msgid "Phone"
2506
  msgstr "Telefon"
2507
 
2508
- #: ../nexus/cerber-nexus-master.php:172
2509
  msgid "Address"
2510
  msgstr "Adress"
2511
 
2512
- #: ../nexus/cerber-nexus-master.php:285
2513
  msgid "Security access token is invalid"
2514
  msgstr "Säkerhetsåtkomsttoken är ogiltig"
2515
 
2516
- #: ../nexus/cerber-nexus-master.php:315
2517
  msgid "The website you are trying to add is already in the list"
2518
  msgstr "Den webbplats du försöker lägga till finns redan i listan"
2519
 
2520
- #: ../nexus/cerber-nexus-master.php:324
2521
  msgid "The website has been added successfully"
2522
  msgstr "Webbplatsen har lagts till utan problem"
2523
 
2524
- #: ../nexus/cerber-nexus-master.php:325
2525
  msgid "Click to edit"
2526
  msgstr "Klicka för att redigera"
2527
 
2528
- #: ../nexus/cerber-nexus-master.php:326
2529
  msgid "Switch to the Dashboard"
2530
  msgstr "Byt till adminpanelen"
2531
 
2532
- #: ../nexus/cerber-nexus-master.php:329
2533
  msgid "Keep in mind: You have added the website that does not support SSL encryption. This may lead to data leakage."
2534
  msgstr "Tänk på: Du har lagt till webbplatsen som inte stöder SSL-kryptering. Detta kan leda till dataläckage."
2535
 
2536
- #: ../nexus/cerber-nexus-master.php:448
2537
  msgid "Website has been deleted"
2538
  msgid_plural "%s websites have been deleted"
2539
  msgstr[0] "Webbplats har tagits bort"
2540
  msgstr[1] "%s webbplatser har tagits bort"
2541
 
2542
- #: ../nexus/cerber-nexus-master.php:1024
2543
  msgid "You have switched to %s"
2544
  msgstr "Du har bytt till %s"
2545
 
2546
- #: ../nexus/cerber-nexus-master.php:1034
2547
  msgid "You have switched back to the master website"
2548
  msgstr "Du har bytt tillbaka till master-webbplatsen"
2549
 
2550
- #: ../nexus/cerber-nexus-master.php:1250
2551
  msgid "You are here:"
2552
  msgstr "Du är här:"
2553
 
2554
- #: ../nexus/cerber-nexus-master.php:1253 ../nexus/cerber-nexus.php:92 ..
2555
  #: /nexus/cerber-nexus.php:102
2556
  msgid "My Websites"
2557
  msgstr "Mina webbplatser"
2558
 
2559
- #: ../nexus/cerber-nexus-master.php:1268
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,13 +2616,13 @@ msgid "Install the access token on the master website."
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
 
@@ -2631,7 +2630,7 @@ msgstr "Skicka rapporter på"
2631
  msgid "Updates"
2632
  msgstr "Uppdateringar"
2633
 
2634
- #: ../nexus/cerber-slave-list.php:54 ../nexus/cerber-nexus-master.php:126
2635
  msgid "Group"
2636
  msgstr "Grupp"
2637
 
@@ -2651,7 +2650,7 @@ msgstr "Ta bort webbplats"
2651
  msgid "All groups"
2652
  msgstr "Alla grupper"
2653
 
2654
- #: ../nexus/cerber-nexus-master.php:1334
2655
  msgid "Are you sure you want to delete selected websites?"
2656
  msgstr "Är du säker på att du vill ta bort valda webbplatser?"
2657
 
@@ -2659,35 +2658,35 @@ msgstr "Är du säker på att du vill ta bort valda webbplatser?"
2659
  msgid "Block"
2660
  msgstr "Blockera"
2661
 
2662
- #: ../nexus/cerber-nexus-master.php:95
2663
  msgid "Select an existing group or enter a new one to add it"
2664
  msgstr "Välj en befintlig grupp eller ange en ny för att lägga till den"
2665
 
2666
- #: ../nexus/cerber-nexus-master.php:168
2667
  msgid "Company"
2668
  msgstr "Företag"
2669
 
2670
- #: ../nexus/cerber-nexus-master.php:692
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,7 +2694,7 @@ msgstr "Blockera omedelbart IP vid försök att logga in med ett icke-existerand
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,43 +2702,43 @@ msgstr "Inaktivera master-läge"
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
 
2710
- #: ../nexus/cerber-nexus-master.php:1400 ../nexus/cerber-nexus-master.php:1408
2711
  msgid "Active plugins and updates on"
2712
  msgstr "Aktiva tillägg och uppdateringar på"
2713
 
2714
- #: ../nexus/cerber-nexus-master.php:1378
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,51 +2747,51 @@ msgstr "Avancerad sökning"
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
 
@@ -2812,59 +2811,59 @@ msgstr "Återskapar WordPress-filer"
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
 
2827
- #: ../dashboard.php:64
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
 
@@ -2908,7 +2907,7 @@ msgstr "Omdirigera användare efter inloggning"
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
 
@@ -2964,27 +2963,27 @@ msgstr "antal inloggningar"
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,11 +3051,11 @@ msgstr "Verifiera"
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,28 +3068,28 @@ msgstr "blockerad av %s kl. %s"
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
 
@@ -3128,13 +3127,13 @@ msgstr "Användaraktivitet"
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
 
@@ -3142,135 +3141,135 @@ msgstr "Blockera åtkomst till användarnas data via REST API"
3142
  msgid "Unable to delete"
3143
  msgstr "Kan inte ta bort"
3144
 
3145
- #: ../dashboard.php:60
3146
  msgid "Cerber Data Shield Policies"
3147
  msgstr ""
3148
 
3149
- #: ../dashboard.php:60
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
 
3249
- #: ../cerber-ds.php:787
3250
  msgid "Administration Email Address"
3251
  msgstr "E-postadress för administration"
3252
 
3253
- #: ../cerber-ds.php:788
3254
  msgid "New User Default Role"
3255
  msgstr "Standardroll för ny användare"
3256
 
3257
- #: ../cerber-ds.php:789
3258
  msgid "Site Address (URL)"
3259
  msgstr "Webbplatsadress (URL"
3260
 
3261
- #: ../cerber-ds.php:790
3262
  msgid "WordPress Address (URL)"
3263
  msgstr "WordPressadress (URL)"
3264
 
3265
- #: ../cerber-ds.php:791
3266
  msgid "Anyone can register"
3267
  msgstr "Vem som helst kan registrera"
3268
 
3269
- #: ../cerber-ds.php:792
3270
  msgid "Active Plugins"
3271
  msgstr "Aktiva tillägg"
3272
 
3273
- #: ../cerber-ds.php:793
3274
  msgid "Active Theme"
3275
  msgstr "Aktivt tema"
3276
 
@@ -3290,39 +3289,39 @@ msgstr "Alla servrar"
3290
  msgid "All countries"
3291
  msgstr "Alla länder"
3292
 
3293
- #: ../nexus/cerber-nexus-master.php:66
3294
  msgid "Show homepage in the Website column"
3295
  msgstr ""
3296
 
3297
- #: ../nexus/cerber-nexus-master.php:68
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
 
@@ -3330,15 +3329,15 @@ msgstr ""
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
 
@@ -3350,67 +3349,67 @@ msgstr ""
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
 
3393
- #: ../dashboard.php:71
3394
  msgid "Cerber anti-spam settings"
3395
  msgstr ""
3396
 
3397
- #: ../dashboard.php:71 ../settings.php:1152
3398
  msgid "Anti-spam"
3399
  msgstr ""
3400
 
3401
- #: ../dashboard.php:79 ../dashboard.php:79 ../cerber-addons.php:289
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
 
@@ -3426,91 +3425,91 @@ msgstr "%s registreringar är tillåtna inom %s minuter från en IP-adress"
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
 
@@ -3518,31 +3517,31 @@ msgstr "Hur tillägget bearbetar kommentarer som skickats in via standardformul
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
 
@@ -3550,125 +3549,125 @@ msgstr "Ändra filbehörigheter när det är nödvändigt"
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"
@@ -3676,62 +3675,78 @@ 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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  "Language: sv\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
 
11
+ #: ../settings.php:150
12
  msgid "Limit login attempts"
13
  msgstr "Begränsa inloggningsförsök"
14
 
15
+ #: ../settings.php:158
16
  msgid "Lockout duration"
17
  msgstr "Utlåsningstidens varaktighet"
18
 
19
+ #: ../settings.php:159 ../settings.php:260
20
  msgid "minutes"
21
  msgstr "minuter"
22
 
23
+ #: ../settings.php:162
24
  msgid "Aggressive lockout"
25
  msgstr "Aggressiv utlåsning"
26
 
27
+ #: ../settings.php:230
28
  msgid "Site connection"
29
  msgstr "Webbplatsanslutning"
30
 
31
+ #: ../settings.php:173
32
  msgid "Proactive security rules"
33
  msgstr "Proaktiva säkerhetsregler"
34
 
35
+ #: ../settings.php:177
36
  msgid "Block subnet"
37
  msgstr "Blockera undernät"
38
 
39
+ #: ../settings.php:192
40
  msgid "Request wp-login.php"
41
  msgstr "Begär wp-login.php"
42
 
43
+ #: ../settings.php:193
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:208
48
  msgid "Custom login page"
49
  msgstr "Anpassad inloggningssida"
50
 
51
+ #: ../settings.php:212
52
  msgid "Custom login URL"
53
  msgstr "Anpassad URL för inloggning"
54
 
55
+ #: ../settings.php:213
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:220
60
  msgid "Disable wp-login.php"
61
  msgstr "Inaktivera wp-login.php"
62
 
63
+ #: ../settings.php:221
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:1768 ../settings.php:244
68
  msgid "Citadel mode"
69
  msgstr "Citadelläge"
70
 
71
+ #: ../settings.php:254
72
  msgid "Threshold"
73
  msgstr "Gränsvärde"
74
 
75
+ #: ../admin/cerber-admin.php:51 ../settings.php:259
76
  msgid "Duration"
77
  msgstr "Varaktighet"
78
 
79
+ #: ../dashboard.php:4783 ../settings.php:265
80
  msgid "Notifications"
81
  msgstr "Notiser"
82
 
83
+ #: ../settings.php:267
84
  msgid "Send notification to admin email"
85
  msgstr "Skicka meddelande till admins e-post"
86
 
87
+ #: ../cerber-tools.php:38 ../cerber-tools.php:49 ../dashboard.php:4780
88
  msgid "Access Lists"
89
  msgstr "Åtkomstlistor"
90
 
91
+ #: ../cerber-load.php:5003 ../cerber-users.php:1163 ../dashboard.php:1809 ..
92
+ #: /dashboard.php:2356 ../dashboard.php:4776 ../settings.php:277
93
  msgid "Activity"
94
  msgstr "Aktivitet"
95
 
96
+ #: ../dashboard.php:4778
97
  msgid "Lockouts"
98
  msgstr "Utlåsningar"
99
 
100
+ #: ../cerber-load.php:5012
101
  msgid "IP"
102
  msgstr "IP"
103
 
104
+ #: ../dashboard.php:847 ../dashboard.php:1104 ../dashboard.php:3577 ../dashboard.
105
+ #: php:4031
106
  msgid "Date"
107
  msgstr "Datum"
108
 
109
+ #: ../dashboard.php:850 ../dashboard.php:1106 ../dashboard.php:4036
110
  msgid "Local User"
111
  msgstr "Lokal användare"
112
 
113
+ #: ../cerber-load.php:5020
114
  msgid "Username used"
115
  msgstr "Användarnamn används"
116
 
117
+ #: ../dashboard.php:217
118
  msgid "Showing last %d records from %d"
119
  msgstr "Visar senaste %d poster från %d"
120
 
121
+ #: ../common.php:1360
122
  msgid "Logged in"
123
  msgstr "Inloggad"
124
 
125
+ #: ../common.php:1361
126
  msgid "Logged out"
127
  msgstr "Utloggad"
128
 
129
+ #: ../common.php:1362
130
  msgid "Login failed"
131
  msgstr "Inloggning misslyckades"
132
 
133
+ #: ../dashboard.php:978 ../common.php:1365
134
  msgid "IP blocked"
135
  msgstr "IP blockerat"
136
 
137
+ #: ../common.php:1369
138
  msgid "Citadel activated!"
139
  msgstr "Citadel aktiverat!"
140
 
141
+ #: ../dashboard.php:1400 ../common.php:1424
 
142
  msgid "Locked out"
143
  msgstr "Utlåst"
144
 
145
+ #: ../common.php:1426
146
  msgid "IP blacklisted"
147
  msgstr "IP svartlistat"
148
 
149
+ #: ../common.php:1382
150
  msgid "Password changed"
151
  msgstr "Lösenord ändrat"
152
 
153
+ #: ../dashboard.php:191 ../dashboard.php:309
154
  msgid "Remove"
155
  msgstr "Ta bort"
156
 
157
+ #: ../dashboard.php:576
158
  msgid "Lockout for %s was removed"
159
  msgstr "Utlåsning för %s borttagen"
160
 
161
+ #: ../cerber-tools.php:69 ../dashboard.php:255 ../dashboard.php:1344 ../dashboard.
162
+ #: php:1393 ../dashboard.php:1766
163
  msgid "White IP Access List"
164
  msgstr "Vita IP-åtkomstlistan"
165
 
166
+ #: ../cerber-tools.php:70 ../dashboard.php:258 ../dashboard.php:1347 ../dashboard.
167
+ #: php:1396 ../dashboard.php:1767
168
  msgid "Black IP Access List"
169
  msgstr "Svarta IP-åtkomstlistan"
170
 
171
+ #: ../dashboard.php:315
172
  msgid "List is empty"
173
  msgstr "Listan är tom"
174
 
175
+ #: ../cerber-load.php:4226
176
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
177
  msgstr "Citadelläge är aktiverad efter %d misslyckades inloggningsförsök inom %d minuter."
178
 
179
+ #: ../dashboard.php:2486 ../dashboard.php:2895
180
  msgid "View Activity"
181
  msgstr "Visa aktivitet"
182
 
183
+ #: ../cerber-tools.php:37 ../cerber-tools.php:48 ../nexus/cerber-nexus.php:93 ..
184
+ #: /dashboard.php:4849 ../dashboard.php:4910
185
  msgid "Settings"
186
  msgstr "Inställningar"
187
 
188
+ #: ../dashboard.php:1616
189
  msgid "Last login"
190
  msgstr "Senaste inloggning"
191
 
192
+ #: ../nexus/cerber-slave-list.php:347 ../dashboard.php:1649 ../dashboard.php:1740
193
+ #: ../dashboard.php:1789 ../common.php:1666
194
  msgid "Never"
195
  msgstr "Aldrig"
196
 
197
+ #: ../cerber-tools.php:59 ../admin/cerber-admin.php:729 ../admin/cerber-admin.php:
198
+ #: 896 ../dashboard.php:5272
199
  msgid "Are you sure?"
200
  msgstr "Är du säker?"
201
 
202
+ #: ../dashboard.php:2174 ../settings.php:231
203
  msgid "My site is behind a reverse proxy"
204
  msgstr "Min webbplats är bakom en omvänd proxy"
205
 
206
+ #: ../settings.php:174
207
  msgid "Make your protection smarter!"
208
  msgstr "Gör ditt skydd smartare!"
209
 
210
+ #: ../settings.php:127
211
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
212
  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."
213
 
214
+ #: ../dashboard.php:4779
215
  msgid "Main Settings"
216
  msgstr "Huvudinställningar"
217
 
218
+ #: ../dashboard.php:5069
219
  msgid "Help"
220
  msgstr "Hjälp"
221
 
223
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
224
  msgstr "Öka utlåsningens varaktighet till %s timmar efter %s utlåsningar under de senaste %s timmarna"
225
 
226
+ #: ../cerber-load.php:336
227
  msgid "You are not allowed to log in. Ask your administrator for assistance."
228
  msgstr "Du har inte rätt att logga in. Fråga din administratör om hjälp."
229
 
230
+ #: ../cerber-load.php:361
231
  msgid "You have only one attempt remaining."
232
  msgid_plural "You have %d attempts remaining."
233
  msgstr[0] "Du har bara ett försök kvar."
234
  msgstr[1] "Du har %d försök kvar."
235
 
236
+ #: ../dashboard.php:1134
237
  msgid "No activity has been logged."
238
  msgstr "Ingen aktivitet har loggats."
239
 
240
+ #: ../cerber-users.php:974 ../dashboard.php:199
241
  msgid "Expires"
242
  msgstr "Löper ut"
243
 
244
+ #: ../dashboard.php:223
245
  msgid "No lockouts at the moment. The sky is clear."
246
  msgstr "Inga utlåsningar för tillfället. Kusten är klar."
247
 
248
+ #: ../dashboard.php:265
249
  msgid "Your IP"
250
  msgstr "Ditt IP"
251
 
252
+ #: ../cerber-load.php:4227
253
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
254
  msgstr "Senast misslyckat försök var %s från IP %s med användarinloggning: %s."
255
 
256
+ #: ../cerber-load.php:5277
257
  msgid "Can't activate WP Cerber due to a database error."
258
  msgstr "Kan inte aktivera WP Cerber på grund av ett databasfel."
259
 
261
  msgid "Notify admin if the number of active lockouts above"
262
  msgstr "Meddela admin om antalet aktiva utlåsningar ovan"
263
 
264
+ #: ../settings.php:281 ../settings.php:287 ../settings.php:844 ../settings.php:
265
+ #: 850 ../settings.php:921 ../settings.php:1112
266
  msgid "days"
267
  msgstr "dagar"
268
 
269
+ #: ../dashboard.php:1706
270
  msgid "Cerber Quick View"
271
  msgstr "Cerber snabböversikt"
272
 
273
+ #: ../dashboard.php:219
274
  msgid "Hint"
275
  msgstr "Ledtråd"
276
 
277
+ #: ../dashboard.php:219
278
  msgid "To view activity, click on the IP"
279
  msgstr "För att visa aktivitet, klicka på IP"
280
 
281
+ #: ../settings.php:178
282
  msgid "Always block entire subnet Class C of intruders IP"
283
  msgstr "Blockera alltid hela undernätet Klass C av inkräktande IP"
284
 
285
+ #: ../admin/cerber-settings.php:377 ../settings.php:271
286
  msgid "Click to send test"
287
  msgstr "Klicka för att skicka test"
288
 
290
  msgid "Attention! You have changed the login URL! The new login URL is"
291
  msgstr "Observera! Du har ändrat URL för inloggning! Den nya URL:en för inloggning är"
292
 
293
+ #: ../dashboard.php:1615
294
  msgid "Comments"
295
  msgstr "Kommentarer"
296
 
297
+ #: ../cerber-load.php:4228 ../cerber-load.php:5044
298
  msgid "View activity in dashboard"
299
  msgstr "Visa aktivitet i adminpanel"
300
 
301
+ #: ../cerber-load.php:4257
302
  msgid "Number of active lockouts"
303
  msgstr "Antal aktiva utlåsningar"
304
 
305
+ #: ../cerber-load.php:4261
306
  msgid "View lockouts in dashboard"
307
  msgstr "Visa utlåsningar i adminpanelen"
308
 
309
+ #: ../cerber-load.php:4357
310
  msgid "This message was sent by"
311
  msgstr "Detta meddelande skickades av"
312
 
313
+ #: ../dashboard.php:83 ../dashboard.php:4961
314
  msgid "Tools"
315
  msgstr "Verktyg"
316
 
342
  msgid "Select file to import."
343
  msgstr "Välj fil att importera."
344
 
345
+ #: ../cerber-tools.php:45 ../admin/cerber-admin.php:246
346
  msgid "Maximum upload file size: %s."
347
  msgstr "Maximal filstorlek för uppladdning: %s."
348
 
350
  msgid "What do you want to import?"
351
  msgstr "Vad vill du importera?"
352
 
353
+ #: ../cerber-tools.php:50 ../admin/cerber-admin.php:249
354
  msgid "Upload file"
355
  msgstr "Ladda upp fil"
356
 
366
  msgid "Error while parsing file"
367
  msgstr "Fel uppstod vid analyseringen av fil"
368
 
369
+ #: ../dashboard.php:197 ../dashboard.php:1102
370
  msgid "Hostname"
371
  msgstr "Värdnamn"
372
 
373
+ #: ../dashboard.php:514
374
  msgid "unknown"
375
  msgstr "okänt"
376
 
377
+ #: ../dashboard.php:1745 ../dashboard.php:1775
378
  msgid "active"
379
  msgstr "aktivt"
380
 
381
+ #: ../dashboard.php:1745
382
  msgid "deactivate"
383
  msgstr "inaktivera"
384
 
385
+ #: ../dashboard.php:1749
386
  msgid "not active"
387
  msgstr "Inte aktiv"
388
 
389
+ #: ../dashboard.php:1752 ../dashboard.php:1770
390
  msgid "disabled"
391
  msgstr "inaktiverad"
392
 
393
+ #: ../dashboard.php:1758
394
  msgid "failed attempts"
395
  msgstr "misslyckade försök"
396
 
397
+ #: ../dashboard.php:1758 ../dashboard.php:1759
398
  msgid "in 24 hours"
399
  msgstr "om 24 timmar"
400
 
401
+ #: ../dashboard.php:1758 ../dashboard.php:1759
402
  msgid "view all"
403
  msgstr "visa alla"
404
 
405
+ #: ../dashboard.php:1759
406
  msgid "lockouts"
407
  msgstr "Utlåsningar"
408
 
409
+ #: ../dashboard.php:1761
410
  msgid "Lockouts at the moment"
411
  msgstr "Utlåsningar just nu"
412
 
413
+ #: ../dashboard.php:1762
414
  msgid "Last lockout"
415
  msgstr "Senaste utlåsning"
416
 
417
+ #: ../dashboard.php:1766 ../dashboard.php:1767 ../dashboard.php:2669
418
  msgid "entry"
419
  msgid_plural "entries"
420
  msgstr[0] ""
424
  msgid "Load default settings"
425
  msgstr "Ladda standardinställningar"
426
 
427
+ #: ../settings.php:681
428
  msgid "New version is available"
429
  msgstr "Ny version är tillgänglig"
430
 
431
+ #: ../cerber-load.php:4200
432
  msgid "WP Cerber notify"
433
  msgstr "WP Cerber meddelar"
434
 
435
+ #: ../cerber-load.php:4224
436
  msgid "Citadel mode is activated"
437
  msgstr "Citadelläge är aktiverat"
438
 
439
+ #: ../cerber-load.php:4300
440
  msgid "New Custom login URL"
441
  msgstr "Ny anpassad URL för inloggning"
442
 
443
+ #: ../cerber-load.php:5263
444
  msgid "The WP Cerber requires PHP %s or higher. You are running"
445
  msgstr "WP Cerber kräver PHP %s eller högre. Du kör"
446
 
447
+ #: ../cerber-load.php:5267
448
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
449
  msgstr "WP Cerber kräver WordPress %s eller högre. Du kör"
450
 
451
+ #: ../settings.php:306
452
  msgid "Use file"
453
  msgstr "Använd fil"
454
 
455
+ #: ../settings.php:307
456
  msgid "Write failed login attempts to the file"
457
  msgstr "Skriv misslyckade inloggningsförsök till fil"
458
 
459
+ #: ../dashboard.php:2485
460
  msgid "Deactivate"
461
  msgstr "Inaktivera"
462
 
463
+ #: ../cerber-load.php:4259 ../dashboard.php:200
464
  msgid "Reason"
465
  msgstr "Anledning"
466
 
467
+ #: ../dashboard.php:1460
468
  msgid "Add IP to the Black List"
469
  msgstr "Lägg till IP i svartlistan"
470
 
471
+ #: ../common.php:1504
472
  msgid "Attempt to access"
473
  msgstr "Försök att komma åt"
474
 
475
+ #: ../common.php:1503
476
  msgid "Limit on login attempts is reached"
477
  msgstr "Gränsen för inloggningsförsök är nådd"
478
 
479
+ #: ../cerber-load.php:4258
480
  msgid "Last lockout was added: %s for IP %s"
481
  msgstr "Senaste utlåsningen lades till: %s för IP %s"
482
 
483
+ #: ../dashboard.php:4781
484
  msgid "Hardening"
485
  msgstr "Förstärk"
486
 
487
+ #: ../dashboard.php:1432
488
  msgid "Abuse email:"
489
  msgstr "E-post för missbruk:"
490
 
491
+ #: ../settings.php:668 ../settings.php:715 ../settings.php:976
492
  msgid "Email Address"
493
  msgstr "E-postadress"
494
 
495
+ #: ../settings.php:316
496
  msgid "Drill down IP"
497
  msgstr "Rulla ner IP"
498
 
499
+ #: ../settings.php:317
500
  msgid "Retrieve extra WHOIS information for IP"
501
  msgstr "Hämta extra WHOIS-information för IP"
502
 
503
+ #: ../settings.php:350
504
  msgid "Hardening WordPress"
505
  msgstr "Förstärk WordPress"
506
 
507
+ #: ../settings.php:354 ../settings.php:390
508
  msgid "Stop user enumeration"
509
  msgstr "Stoppa uppräkning av användare"
510
 
511
+ #: ../settings.php:373
512
  msgid "Disable XML-RPC"
513
  msgstr "Inaktivera XML-RPC"
514
 
515
+ #: ../settings.php:374
516
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
517
  msgstr "Blockera åtkomst till XML-RPC-servern (inklusive pingbacks och trackbacks)"
518
 
519
+ #: ../settings.php:378
520
  msgid "Disable feeds"
521
  msgstr "Inaktivera flöden"
522
 
523
+ #: ../settings.php:379
524
  msgid "Block access to the RSS, Atom and RDF feeds"
525
  msgstr "Blockera åtkomst till RSS, Atom och RDF-flöden"
526
 
527
+ #: ../settings.php:395
528
  msgid "Disable REST API"
529
  msgstr "Inaktivera REST API"
530
 
533
  msgid "<strong>ERROR</strong>: please enter a valid email address."
534
  msgstr "<strong>FEL</strong>: Ange en giltig e-postadress."
535
 
536
+ #: ../cerber-load.php:4289 ../cerber-load.php:5322
537
  msgid "WP Cerber is now active and has started protecting your site"
538
  msgstr "WP Cerber är nu aktiv och har börjat skydda din webbplats"
539
 
540
+ #: ../cerber-users.php:977 ../admin/cerber-admin.php:765 ../admin/cerber-admin.
541
+ #: php:920 ../dashboard.php:201
542
  msgid "Action"
543
  msgstr "Åtgärd"
544
 
545
+ #: ../dashboard.php:5118
546
  msgid "Incorrect IP address or IP range"
547
  msgstr "Felaktig IP-adress eller IP-intervall"
548
 
549
+ #: ../dashboard.php:2501
550
  msgid "Settings saved"
551
  msgstr "Inställningar sparade"
552
 
553
+ #: ../dashboard.php:1438
554
  msgid "Network:"
555
  msgstr "Nätverk:"
556
 
557
+ #: ../dashboard.php:1454
558
  msgid "Add network to the Black List"
559
  msgstr "Lägg till nätverk i svartlistan"
560
 
561
+ #: ../dashboard.php:2484
562
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
563
  msgstr "Observera! Citadelläget är nu aktivt. Ingen kan logga in."
564
 
565
+ #: ../nexus/cerber-slave-list.php:333 ../dashboard.php:434 ../dashboard.php:3710 .
566
+ #: ./dashboard.php:4277 ../common.php:1528 ../whois.php:222 ../whois.php:253
 
567
  msgid "Unknown"
568
  msgstr "Okänt"
569
 
570
+ #: ../cerber-load.php:635 ../cerber-load.php:647 ../cerber-load.php:654 ../cerber-
571
+ #: load.php:996 ../cerber-load.php:1535 ../cerber-load.php:1542 ../cerber-load.
572
+ #: php:1548 ../cerber-load.php:1553 ../cerber-load.php:1560 ../cerber-load.php:
573
+ #: 1567 ../cerber-load.php:1573 ../cerber-load.php:1580 ../cerber-load.php:1751 ..
574
+ #: /cerber-load.php:1888 ../nexus/cerber-nexus-slave.php:204 ../nexus/cerber-
575
+ #: nexus-slave.php:215 ../admin/cerber-admin.php:866 ../admin/cerber-settings.php:
576
+ #: 653 ../admin/cerber-settings.php:673 ../admin/cerber-settings.php:753 ..
577
+ #: /common.php:367 ../common.php:445 ../common.php:450 ../common.php:456 ..
578
+ #: /common.php:460
579
  msgid "ERROR:"
580
  msgstr "FEL:"
581
 
582
+ #: ../cerber-load.php:664
583
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
584
  msgstr "Mänsklig verifikation misslyckades. Klicka på rutan i reCAPTCHA-blocket nedan."
585
 
586
+ #: ../cerber-load.php:1105
587
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
588
  msgstr "<strong>FEL</strong>: Lösenordet du angav för användarnamnet %s är felaktigt."
589
 
590
+ #: ../cerber-load.php:1561
591
  msgid "Username is not allowed. Please choose another one."
592
  msgstr "Användarnamn är inte tillåtet. Välj ett annat."
593
 
594
+ #: ../cerber-load.php:4252
595
  msgid "unspecified"
596
  msgstr "ospecificerat"
597
 
598
+ #: ../cerber-load.php:4255
599
  msgid "Number of lockouts is increasing"
600
  msgstr "Antal utlåsningar är stigande"
601
 
602
+ #: ../cerber-load.php:4260
603
  msgid "View activity for this IP"
604
  msgstr "Visa aktivitet för detta IP"
605
 
606
+ #: ../cerber-load.php:4264 ../cerber-load.php:4266
607
  msgid "A new version of WP Cerber is available to install"
608
  msgstr "En ny version av WP Cerber är tillgänglig att installeras"
609
 
610
+ #: ../cerber-load.php:4265
611
  msgid "Hi!"
612
  msgstr "Hej!"
613
 
614
+ #: ../cerber-load.php:4268 ../cerber-load.php:4279 ../nexus/cerber-slave-list.php:
615
  #: 44
616
  msgid "Website"
617
  msgstr "Webbplats"
618
 
619
+ #: ../cerber-load.php:4271 ../cerber-load.php:4272
620
  msgid "The WP Cerber security plugin has been deactivated"
621
  msgstr "Säkerhetstillägget WP Cerber har blivit avaktiverat"
622
 
623
+ #: ../cerber-load.php:4274
624
  msgid "Not logged in"
625
  msgstr "Inte inloggad"
626
 
627
+ #: ../cerber-load.php:4280
628
  msgid "By user"
629
  msgstr "Efter användare"
630
 
631
+ #: ../cerber-load.php:4281
632
  msgid "From IP address"
633
  msgstr "Från IP-adress"
634
 
635
+ #: ../cerber-load.php:4284
636
  msgid "From country"
637
  msgstr "Från land"
638
 
639
+ #: ../cerber-load.php:4288
640
  msgid "The WP Cerber security plugin is now active"
641
  msgstr "Säkerhetstillägget WP Cerber är nu aktivt"
642
 
643
+ #: ../cerber-load.php:5335
644
  msgid "Import settings"
645
  msgstr "Importera inställningar"
646
 
647
+ #: ../settings.php:676
648
  msgid "Notification limit"
649
  msgstr "Gräns för notiser"
650
 
651
+ #: ../settings.php:589
652
  msgid "Prohibited usernames"
653
  msgstr "Förbjudna användarnamn"
654
 
655
+ #: ../settings.php:590
656
  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."
657
  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."
658
 
659
+ #: ../settings.php:1118
660
  msgid "reCAPTCHA settings"
661
  msgstr "reCaptcha-inställningar"
662
 
663
+ #: ../settings.php:1123
664
  msgid "Site key"
665
  msgstr "Webbplatsnyckel"
666
 
667
+ #: ../settings.php:1127
668
  msgid "Secret key"
669
  msgstr "Hemlig nyckel"
670
 
671
+ #: ../settings.php:1137
672
  msgid "Enable reCAPTCHA for WordPress registration form"
673
  msgstr "Aktivera reCAPTCHA för WordPress registreringsformulär"
674
 
675
+ #: ../settings.php:1146
676
  msgid "Lost password form"
677
  msgstr "Formulär för glömt lösenord"
678
 
679
+ #: ../settings.php:1156
680
  msgid "Login form"
681
  msgstr "Inloggningsformulär"
682
 
683
+ #: ../settings.php:1157
684
  msgid "Enable reCAPTCHA for WordPress login form"
685
  msgstr "Aktivera reCAPTCHA för WordPress inloggningsformulär"
686
 
687
+ #: ../settings.php:1119
688
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
689
  msgstr "Innan du kan börja använda reCAPTCHA måste du skaffa webbplatsnyckel och hemlig nyckel på Googles webbplats"
690
 
691
+ #: ../cerber-lab.php:841 ../admin/cerber-settings.php:100 ../admin/cerber-
692
+ #: settings.php:270
693
  msgid "Know more"
694
  msgstr "Läs mer"
695
 
696
+ #: ../common.php:1357
697
  msgid "User created"
698
  msgstr "Användare skapad"
699
 
700
+ #: ../common.php:1358
701
  msgid "User registered"
702
  msgstr "Användare registrerad"
703
 
704
+ #: ../common.php:1385
705
  msgid "reCAPTCHA verification failed"
706
  msgstr "reCAPTCHA-verifiering misslyckades"
707
 
708
+ #: ../common.php:1386
709
  msgid "reCAPTCHA settings are incorrect"
710
  msgstr "reCAPTCHA-inställningarna är felaktiga"
711
 
712
+ #: ../common.php:1389 ../common.php:1505
713
  msgid "Attempt to access prohibited URL"
714
  msgstr "Försök att få tillgång till förbjuden URL"
715
 
716
+ #: ../common.php:1391 ../common.php:1507
717
  msgid "Attempt to log in with prohibited username"
718
  msgstr "Försök att logga in med förbjudna användarnamn"
719
 
720
+ #: ../settings.php:292
721
  msgid "Cerber Lab connection"
722
  msgstr "Cerber Lab-anslutning"
723
 
724
+ #: ../settings.php:293
725
  msgid "Send malicious IP addresses to the Cerber Lab"
726
  msgstr "Skicka skadliga IP-adresser till Cerber Lab"
727
 
728
+ #: ../settings.php:298
729
  msgid "Cerber Lab protocol"
730
  msgstr "Cerber Lab-protokoll"
731
 
732
+ #: ../settings.php:1064 ../settings.php:1136
733
  msgid "Registration form"
734
  msgstr "Registreringsformulär"
735
 
736
+ #: ../settings.php:1142
737
  msgid "Enable reCAPTCHA for WooCommerce registration form"
738
  msgstr "Aktivera reCAPTCHA för WooCommerce registreringsformulär"
739
 
740
+ #: ../settings.php:1147
741
  msgid "Enable reCAPTCHA for WordPress lost password form"
742
  msgstr "Aktivera reCAPTCHA för WordPress på formuläret för förlorat lösenord"
743
 
744
+ #: ../settings.php:1152
745
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
746
  msgstr "Aktivera reCAPTCHA för WooCommerce på formuläret för förlorat lösenord"
747
 
748
+ #: ../settings.php:1162
749
  msgid "Enable reCAPTCHA for WooCommerce login form"
750
  msgstr "Aktivera reCAPTCHA för WooCommerce inloggningsformulär"
751
 
752
+ #: ../common.php:1387
753
  msgid "Request to the Google reCAPTCHA service failed"
754
  msgstr "Begäran om Google reCAPTCHA-tjänsten misslyckades"
755
 
756
+ #: ../dashboard.php:959 ../dashboard.php:2370
757
  msgid "View all"
758
  msgstr "Visa alla"
759
 
760
+ #: ../dashboard.php:2373
761
  msgid "Recently locked out IP addresses"
762
  msgstr "Nyligen utlåsta IP-adresser"
763
 
764
+ #: ../cerber-lab.php:839
765
  msgid "OK, nail them all"
766
  msgstr "OK, sätt fast dem alla"
767
 
768
+ #: ../cerber-lab.php:840
769
  msgid "NO, maybe later"
770
  msgstr "Nej, kanske senare"
771
 
772
+ #: ../dashboard.php:55 ../dashboard.php:1808 ../dashboard.php:2691 ../dashboard.
773
+ #: php:4775
774
  msgid "Dashboard"
775
  msgstr "Adminpanel"
776
 
777
+ #: ../cerber-lab.php:837
778
  msgid "Want to make WP Cerber even more powerful?"
779
  msgstr "Vill du göra WP Cerber ännu mer kraftfull?"
780
 
781
+ #: ../cerber-lab.php:838
782
  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."
783
  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."
784
 
785
+ #: ../dashboard.php:3576
786
  msgid "IP address"
787
  msgstr "IP-adress"
788
 
789
+ #: ../dashboard.php:851
790
  msgid "User login"
791
  msgstr "Användarinloggning"
792
 
793
+ #: ../dashboard.php:852 ../dashboard.php:3582
794
  msgid "User ID"
795
  msgstr "Användar-ID"
796
 
797
+ #: ../dashboard.php:1129 ../dashboard.php:4099
798
  msgid "Export"
799
  msgstr "Exportera"
800
 
801
+ #: ../dashboard.php:1145
802
  msgid "Search for IP or username"
803
  msgstr "Sök efter IP eller användarnamn"
804
 
805
+ #: ../dashboard.php:1156
806
  msgid "Filter"
807
  msgstr "Filter"
808
 
809
+ #: ../dashboard.php:55
810
  msgid "Cerber Dashboard"
811
  msgstr "Cerber adminpanel"
812
 
813
+ #: ../dashboard.php:83
814
  msgid "Cerber tools"
815
  msgstr "Cerber verktyg"
816
 
818
  msgid "Unsubscribe"
819
  msgstr "Avregistrera prenumeration"
820
 
821
+ #: ../cerber-load.php:4304 ../cerber-load.php:4305
822
  msgid "A new activity has been recorded"
823
  msgstr "En ny aktivitet har registrerats"
824
 
825
+ #: ../cerber-load.php:5016 ../cerber-users.php:971
826
  msgid "User"
827
  msgstr "Användare"
828
 
829
+ #: ../cerber-load.php:5024
830
  msgid "Search string"
831
  msgstr "Söksträng"
832
 
833
+ #: ../settings.php:313
834
  msgid "Preferences"
835
  msgstr "Preferenser"
836
 
837
+ #: ../settings.php:321
838
  msgid "Date format"
839
  msgstr "Datumformat"
840
 
841
+ #: ../settings.php:322
842
  msgid "if empty, the default format %s will be used"
843
  msgstr "om det är tomt, kommer standardformatet %s att användas"
844
 
845
+ #: ../settings.php:687
846
  msgid "Push notifications"
847
  msgstr "Pushmeddelanden"
848
 
849
+ #: ../settings.php:659
850
  msgid "Email notifications"
851
  msgstr "E-postmeddelanden"
852
 
853
+ #: ../settings.php:669 ../settings.php:717 ../settings.php:815 ../settings.php:978
854
  msgid "Use comma to specify multiple values"
855
  msgstr "Använd komma för att ange flera värden"
856
 
857
+ #: ../settings.php:114
858
  msgid "All connected devices"
859
  msgstr "Alla anslutna enheter"
860
 
861
+ #: ../settings.php:117
862
  msgid "No devices found"
863
  msgstr "Hittade inga enheter"
864
 
865
+ #: ../settings.php:121
866
  msgid "Not available"
867
  msgstr "Inte tillgänglig"
868
 
869
+ #: ../common.php:1383
870
  msgid "Password reset requested"
871
  msgstr "Lösenordsåterställning begärd"
872
 
873
+ #: ../common.php:1508
874
  msgid "Limit on failed reCAPTCHA verifications is reached"
875
  msgstr "Gräns för om misslyckade reCAPTCHA-verifieringar uppnås"
876
 
877
+ #: ../common.php:1661
878
  msgid "%s ago"
879
  msgstr "%s sedan"
880
 
881
+ #: ../settings.php:167
882
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
883
  msgstr "Tillämpa gränser för inloggningsregler till IP-adresser i den vita IP-åtkomstlistan"
884
 
885
+ #: ../settings.php:197
886
  msgid "Display 404 page"
887
  msgstr "Visa 404 sida"
888
 
889
+ #: ../settings.php:1131
890
  msgid "Invisible reCAPTCHA"
891
  msgstr "Osynlig reCAPTCHA"
892
 
893
+ #: ../settings.php:1132
894
  msgid "Enable invisible reCAPTCHA"
895
  msgstr "Aktivera osynlig reCAPTCHA"
896
 
897
+ #: ../settings.php:1132
898
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
899
  msgstr "(aktivera det inte om du inte skaffar och anger webbplatsen och hemliga nycklar för den osynliga versionen)"
900
 
901
+ #: ../settings.php:1167
902
  msgid "Enable reCAPTCHA for WordPress comment form"
903
  msgstr "Aktivera reCAPTCHA för WordPress-kommentarformulär"
904
 
905
+ #: ../settings.php:1172
906
  msgid "Disable reCAPTCHA for logged in users"
907
  msgstr "Inaktivera reCAPTCHA för inloggade användare"
908
 
909
+ #: ../settings.php:1176
910
  msgid "Limit attempts"
911
  msgstr "Begränsa försök"
912
 
913
+ #: ../settings.php:1177
914
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
915
  msgstr "Lås ut IP-adress i %s minuter efter %s misslyckade försök inom %s minuter"
916
 
917
+ #: ../settings.php:245
918
  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."
919
  msgstr "I Citadel-läget kan ingen logga in utom IP-adresser från den vita IP-åtkomstlistan. Aktiva användarsessioner påverkas inte."
920
 
921
+ #: ../dashboard.php:848 ../dashboard.php:1105
922
  msgid "Event"
923
  msgstr "Händelse"
924
 
925
+ #: ../common.php:310
926
  msgid "Spam comments denied"
927
  msgstr "Skräppostkommentarer nekades"
928
 
929
+ #: ../common.php:312
930
  msgid "Malicious IP addresses detected"
931
  msgstr "Skadliga IP-adresser upptäcktes"
932
 
933
+ #: ../common.php:313
934
  msgid "Lockouts occurred"
935
  msgstr "Utlåsningar inträffade"
936
 
937
+ #: ../cerber-load.php:1535 ../cerber-load.php:1543 ../cerber-load.php:1549 ..
938
+ #: /cerber-load.php:1574 ../cerber-load.php:1581
939
  msgid "You are not allowed to register."
940
  msgstr "Du har inte behörighet att registrera."
941
 
942
+ #: ../common.php:1370
943
  msgid "Spam comment denied"
944
  msgstr "Skräppostkommentar nekad"
945
 
946
+ #: ../common.php:1393
947
  msgid "Attempt to log in denied"
948
  msgstr "Försök att logga in nekad"
949
 
950
+ #: ../common.php:1394
951
  msgid "Attempt to register denied"
952
  msgstr "Försök att registrera nekad"
953
 
954
+ #: ../common.php:307
955
  msgid "Malicious activities mitigated"
956
  msgstr "Skadliga aktiviteter mildrades"
957
 
958
+ #: ../settings.php:1059
959
  msgid "Comment form"
960
  msgstr "Kommentarsformulär"
961
 
962
+ #: ../settings.php:1060
963
  msgid "Protect comment form with bot detection engine"
964
  msgstr "Skydda kommentarformulär med botdetekteringsmotor"
965
 
966
+ #: ../settings.php:1065
967
  msgid "Protect registration form with bot detection engine"
968
  msgstr "Skydda registreringsformulär med botdetekteringsmotor"
969
 
970
+ #: ../dashboard.php:4965
971
  msgid "Diagnostic"
972
  msgstr "Diagnostik"
973
 
974
+ #: ../dashboard.php:4968
975
  msgid "License"
976
  msgstr "Licens"
977
 
978
+ #: ../cerber-load.php:1888
979
  msgid "Sorry, human verification failed."
980
  msgstr "Tyvärr, mänsklig verifiering misslyckades."
981
 
982
+ #: ../common.php:1509
983
  msgid "Bot activity is detected"
984
  msgstr "Botaktivitet är upptäckt"
985
 
986
+ #: ../settings.php:1100
987
  msgid "Comment processing"
988
  msgstr "Kommentarbehandling"
989
 
990
+ #: ../settings.php:1104
991
  msgid "If a spam comment detected"
992
  msgstr "Om en skräppostkommentar upptäcks"
993
 
994
+ #: ../settings.php:1109
995
  msgid "Trash spam comments"
996
  msgstr "Släng skräppostkommentarer"
997
 
998
+ #: ../settings.php:1111
999
  msgid "Move spam comments to trash after"
1000
  msgstr "Flytta skräppostkommentarer till papperskorgen efter"
1001
 
1002
+ #: ../common.php:1371
1003
  msgid "Spam form submission denied"
1004
  msgstr "Skräppost nekades att skickas in via formulär"
1005
 
1006
+ #: ../settings.php:1069
1007
  msgid "Other forms"
1008
  msgstr "Andra formulär"
1009
 
1010
+ #: ../settings.php:1070
1011
  msgid "Protect all forms on the website with bot detection engine"
1012
  msgstr "Skydda alla formulär på webbplatsen med botdetekteringsmotor"
1013
 
1014
+ #: ../settings.php:1080
1015
  msgid "Safe mode"
1016
  msgstr "Säkert läge"
1017
 
1018
+ #: ../settings.php:1081
1019
  msgid "Use less restrictive policies (allow AJAX)"
1020
  msgstr "Använd mindre restriktiva policyer (tillåt AJAX)"
1021
 
1022
+ #: ../dashboard.php:980 ../dashboard.php:1764 ../dashboard.php:4064 ../settings.
1023
+ #: php:400 ../settings.php:1085
1024
  msgid "Logged in users"
1025
  msgstr "Inloggade användare"
1026
 
1027
+ #: ../settings.php:1086
1028
  msgid "Disable bot detection engine for logged in users"
1029
  msgstr "Inaktivera botdetekteringsmotor för inloggade användare"
1030
 
1031
+ #: ../dashboard.php:198 ../dashboard.php:1103
1032
  msgid "Country"
1033
  msgstr "Land"
1034
 
1035
+ #: ../dashboard.php:62
1036
  msgid "Cerber Security Rules"
1037
  msgstr "Cerber säkerhetsregler"
1038
 
1039
+ #: ../dashboard.php:62 ../dashboard.php:4892
1040
  msgid "Security Rules"
1041
  msgstr "Säkerhetsregler"
1042
 
1043
+ #: ../dashboard.php:1617
1044
  msgid "Failed login attempts"
1045
  msgstr "Misslyckade inloggningsförsök"
1046
 
1047
+ #: ../dashboard.php:1528 ../dashboard.php:1618
1048
  msgid "Registered"
1049
  msgstr "Registrerad"
1050
 
1051
+ #: ../cerber-users.php:52 ../cerber-users.php:1130 ../dashboard.php:1688
1052
  msgid "You"
1053
  msgstr "Du"
1054
 
1055
+ #: ../common.php:311
1056
  msgid "Spam form submissions denied"
1057
  msgstr "Inskickning av skräppostformulär nekad"
1058
 
1059
+ #: ../cerber-load.php:4291 ../cerber-load.php:5326
1060
  msgid "Getting Started Guide"
1061
  msgstr "Komma igång guiden"
1062
 
1063
+ #: ../dashboard.php:4894
1064
  msgid "Countries"
1065
  msgstr "Länder"
1066
 
1067
+ #: ../dashboard.php:3304
1068
  msgid "Permitted for one country"
1069
  msgid_plural "Permitted for %d countries"
1070
  msgstr[0] "Tillåtet för ett land"
1071
  msgstr[1] "Tillåtet för %d länder"
1072
 
1073
+ #: ../dashboard.php:3315
1074
  msgid "No rule"
1075
  msgstr "Ingen regel"
1076
 
1077
+ #: ../dashboard.php:3476
1078
  msgid "Security rules have been updated"
1079
  msgstr "Säkerhetsregler har uppdaterats"
1080
 
1083
  msgid "https://wpcerber.com"
1084
  msgstr "https://wpcerber.com"
1085
 
1086
+ #: ../common.php:1372
1087
  msgid "Form submission denied"
1088
  msgstr "Formulärinlämning nekad"
1089
 
1090
+ #: ../common.php:1373
1091
  msgid "Comment denied"
1092
  msgstr "Kommentar nekad"
1093
 
1094
+ #: ../common.php:1399
1095
  msgid "Request to REST API denied"
1096
  msgstr "Begäran till REST API nekad"
1097
 
1098
+ #: ../common.php:1400
1099
  msgid "XML-RPC request denied"
1100
  msgstr "XML-RPC-förfråga nekad"
1101
 
1102
+ #: ../common.php:1422
1103
  msgid "Bot detected"
1104
  msgstr "Bot upptäckt"
1105
 
1106
+ #: ../common.php:1423
1107
  msgid "Citadel mode is active"
1108
  msgstr "Citadelläget är aktivt"
1109
 
1110
+ #: ../common.php:1427
1111
  msgid "Malicious activity detected"
1112
  msgstr "Skadlig aktivitet upptäckt"
1113
 
1114
+ #: ../common.php:1428
1115
  msgid "Blocked by country rule"
1116
  msgstr "Blockerad av landsregeln"
1117
 
1118
+ #: ../common.php:1429
1119
  msgid "Limit reached"
1120
  msgstr "Gräns nådd"
1121
 
1122
+ #: ../common.php:1430
1123
  msgid "Multiple suspicious activities"
1124
  msgstr "Flera misstänkta aktiviteter"
1125
 
1126
+ #: ../common.php:1510
1127
  msgid "Multiple suspicious activities were detected"
1128
  msgstr "Flera misstänkta aktiviteter upptäcktes"
1129
 
1130
+ #: ../settings.php:401
1131
  msgid "Allow REST API for logged in users"
1132
  msgstr "Tillåt REST API för inloggade användare"
1133
 
1134
+ #: ../settings.php:415
1135
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
1136
  msgstr "Ange REST API-namnområden för att tillåtas om REST API är inaktiverat. En sträng per rad."
1137
 
1138
+ #: ../settings.php:566
1139
  msgid "Registration limit"
1140
  msgstr "Registreringsgräns"
1141
 
1142
+ #: ../settings.php:604
1143
  msgid "Sort users in dashboard"
1144
  msgstr "Sortera användare i adminpanelen"
1145
 
1146
+ #: ../settings.php:605
1147
  msgid "by date of registration"
1148
  msgstr "efter registreringsdatum"
1149
 
1150
+ #: ../settings.php:1090
1151
  msgid "Query whitelist"
1152
  msgstr ""
1153
 
1154
+ #: ../dashboard.php:3284
1155
  msgid "Start typing here to find a country"
1156
  msgstr "Börja skriva här för att hitta ett land"
1157
 
1158
+ #: ../dashboard.php:3399
1159
  msgid "Click on a country name to add it to the list of selected countries"
1160
  msgstr "Klicka på ett landsnamn för att lägga till det i listan över valda länder"
1161
 
1162
+ #: ../dashboard.php:3431
1163
  msgid "Submit forms"
1164
  msgstr "Skicka formulär"
1165
 
1166
+ #: ../dashboard.php:3432
1167
  msgid "Post comments"
1168
  msgstr "Publicera kommentarer"
1169
 
1170
+ #: ../dashboard.php:3430
1171
  msgid "Register on the website"
1172
  msgstr "Registrera på webbplatsen"
1173
 
1174
+ #: ../dashboard.php:3433
1175
  msgid "Use XML-RPC"
1176
  msgstr "Använd XML-RPC"
1177
 
1178
+ #: ../dashboard.php:3434
1179
  msgid "Use REST API"
1180
  msgstr "Använd REST API"
1181
 
1182
+ #: ../settings.php:1106
1183
  msgid "Deny it completely"
1184
  msgstr "Förneka det fullständigt"
1185
 
1186
+ #: ../settings.php:1106
1187
  msgid "Mark it as spam"
1188
  msgstr "Markera det som skräppost"
1189
 
1190
+ #: ../dashboard.php:2350
1191
  msgid "in the last 24 hours"
1192
  msgstr "under de senaste 24 timmarna"
1193
 
1194
+ #: ../dashboard.php:2692
1195
  msgid "Main settings"
1196
  msgstr "Huvudinställningar"
1197
 
1198
+ #: ../settings.php:702
1199
  msgid "Weekly reports"
1200
  msgstr "Veckovisa rapporter"
1201
 
1231
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1232
  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."
1233
 
1234
+ #: ../cerber-load.php:4310
1235
  msgid "Weekly report"
1236
  msgstr "Veckorapport"
1237
 
1238
+ #: ../cerber-load.php:4313 ../cerber-load.php:4323
1239
  msgid "To change reporting settings visit"
1240
  msgstr "För att ändra rapporteringsinställningar besök"
1241
 
1242
+ #: ../cerber-load.php:4349
1243
  msgid "Your login page:"
1244
  msgstr "Din inloggningssida:"
1245
 
1246
+ #: ../cerber-load.php:4354
1247
  msgid "Your license is valid until"
1248
  msgstr "Din licens är giltig till"
1249
 
1250
+ #: ../cerber-load.php:4460
1251
  msgid "Activity details"
1252
  msgstr "Aktivitetsdetaljer"
1253
 
1255
  msgid "Click to send now"
1256
  msgstr "Klicka för att skicka nu"
1257
 
1258
+ #: ../cerber-load.php:794
1259
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1260
  msgstr ">>> Översättare av WP Cerber? För att få PRO-licens gratis, uppge dina kontaktuppgifter här: https://wpcerber.com/contact/"
1261
 
1262
+ #: ../dashboard.php:584
1263
  msgid "Email has been sent to"
1264
  msgstr "E-post har skickats till"
1265
 
1266
+ #: ../dashboard.php:587
1267
  msgid "Unable to send email to"
1268
  msgstr "Det går inte att skicka e-post till"
1269
 
1270
+ #: ../dashboard.php:3307
1271
  msgid "Not permitted for one country"
1272
  msgid_plural "Not permitted for %d countries"
1273
  msgstr[0] "Inte tillåtet för ett land"
1274
  msgstr[1] "Inte tillåtet för %d länder"
1275
 
1276
+ #: ../dashboard.php:3403
1277
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1278
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1279
  msgstr "Valda länder är tillåtna att %s, andra länder är inte tillåtna att"
1280
 
1281
+ #: ../dashboard.php:3406
1282
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1283
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1284
  msgstr "Valda länder är inte tillåtna att %s, andra länder har tillåtelse att"
1285
 
1286
+ #: ../cerber-load.php:4448
1287
  msgid "Weekly Report"
1288
  msgstr "Veckorapport"
1289
 
1290
+ #: ../settings.php:200
1291
  msgid "Use 404 template from the active theme"
1292
  msgstr "Använd 404 mall från det aktiva temat"
1293
 
1294
+ #: ../settings.php:201
1295
  msgid "Display simple 404 page"
1296
  msgstr "Visa enkel 404 sida"
1297
 
1298
+ #: ../settings.php:1091
1299
  msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
1300
  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."
1301
 
1302
+ #: ../settings.php:706
1303
  msgid "Enable reporting"
1304
  msgstr "Aktivera rapportering"
1305
 
1306
+ #: ../cerber-load.php:4378
1307
  msgid "Your last sign-in was %s from %s"
1308
  msgstr "Din senaste inloggning var %s från %s"
1309
 
1310
+ #: ../dashboard.php:323
1311
  msgid "Optional comment for this entry"
1312
  msgstr "Valfri kommentar för detta inlägg"
1313
 
1314
+ #: ../dashboard.php:345
1315
  msgid "You cannot add your IP address or network"
1316
  msgstr "Du kan inte lägga till din IP-adress eller ditt nätverk"
1317
 
1318
+ #: ../settings.php:582 ../settings.php:590
1319
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1320
  msgstr "För specifiera ett REGEX-mönster, omslut ett mönster i två snedstreck."
1321
 
1322
+ #: ../dashboard.php:57
1323
  msgid "Cerber Traffic Inspector"
1324
  msgstr "Cerber trafikkontroll"
1325
 
1326
+ #: ../dashboard.php:57 ../dashboard.php:1771 ../dashboard.php:4846
1327
  msgid "Traffic Inspector"
1328
  msgstr "Trafikinspektion"
1329
 
1330
+ #: ../cerber-users.php:1164 ../dashboard.php:1810
1331
  msgid "Traffic"
1332
  msgstr "Trafik"
1333
 
1334
+ #: ../dashboard.php:4032
1335
  msgid "Request"
1336
  msgstr "Förfrågan"
1337
 
1338
+ #: ../cerber-users.php:976 ../dashboard.php:4034
1339
  msgid "Host Info"
1340
  msgstr "Server information"
1341
 
1342
+ #: ../dashboard.php:4035
1343
  msgid "User Agent"
1344
  msgstr "Användaragent"
1345
 
1346
+ #: ../dashboard.php:4060
1347
  msgid "All requests"
1348
  msgstr "Alla förfrågningar"
1349
 
1350
+ #: ../dashboard.php:981 ../dashboard.php:4065
1351
  msgid "Not logged in visitors"
1352
  msgstr "Inte inloggade besökare"
1353
 
1354
+ #: ../dashboard.php:4068
1355
  msgid "Form submissions"
1356
  msgstr "Formulärinlämningar"
1357
 
1358
+ #: ../dashboard.php:4070
1359
  msgid "Page Not Found"
1360
  msgstr "Sidan hittades inte"
1361
 
1362
+ #: ../dashboard.php:4082
1363
  msgid "Longer than"
1364
  msgstr "Längre än"
1365
 
1366
+ #: ../dashboard.php:4105
1367
  msgid "Refresh"
1368
  msgstr "Uppdatera"
1369
 
1370
+ #: ../common.php:209
1371
  msgid "Check for requests"
1372
  msgstr "Kontrollera efter förfrågningar"
1373
 
1374
+ #: ../dashboard.php:4140
1375
  msgid "Not specified"
1376
  msgstr "Inte specificerad"
1377
 
1378
+ #: ../settings.php:781
1379
  msgid "Logging mode"
1380
  msgstr "Loggningsläge"
1381
 
1382
+ #: ../settings.php:784
1383
  msgid "Logging disabled"
1384
  msgstr "Loggning inaktiverad"
1385
 
1386
+ #: ../settings.php:786
1387
  msgid "Smart"
1388
  msgstr "Smart"
1389
 
1390
+ #: ../settings.php:787
1391
  msgid "All traffic"
1392
  msgstr "All trafik"
1393
 
1394
+ #: ../settings.php:813
1395
  msgid "Mask these form fields"
1396
  msgstr "Maskera dessa formulärfält"
1397
 
1398
+ #: ../settings.php:838
1399
  msgid "milliseconds"
1400
  msgstr "millisekunder"
1401
 
1402
+ #: ../settings.php:732
1403
  msgid "Enable traffic inspection"
1404
  msgstr "Aktivera trafikinspektion"
1405
 
1406
+ #: ../settings.php:809
1407
  msgid "Save request fields"
1408
  msgstr "Spara förfrågningsfält"
1409
 
1410
+ #: ../settings.php:837
1411
  msgid "Page generation time threshold"
1412
  msgstr "Tidsgräns för sidgenerering"
1413
 
1414
+ #: ../dashboard.php:4052
1415
  msgid "No requests have been logged."
1416
  msgstr "Inga förfrågningar har loggats."
1417
 
1418
+ #: ../dashboard.php:1770
1419
  msgid "enabled"
1420
  msgstr "aktiverad"
1421
 
1422
+ #: ../dashboard.php:1775
1423
  msgid "no connection"
1424
  msgstr "Ingen anslutning"
1425
 
1426
+ #: ../dashboard.php:1560
1427
  msgid "Last seen"
1428
  msgstr "Senast sedd"
1429
 
1430
+ #: ../cerber-load.php:4084
1431
  msgid "We're sorry, you are not allowed to proceed"
1432
  msgstr "Vi är ledsna, du saknar behörighet att fortsätta"
1433
 
1434
+ #: ../settings.php:745
1435
  msgid "Request whitelist"
1436
  msgstr "Begär vitlista"
1437
 
1438
+ #: ../settings.php:749
1439
  msgid "Enter a request URI to exclude the request from inspection. One item per line."
1440
  msgstr "Ange en URI-begäran för att utesluta begäran från inspektion. Ett objekt per rad."
1441
 
1442
+ #: ../settings.php:820
1443
  msgid "Save request headers"
1444
  msgstr ""
1445
 
1446
+ #: ../settings.php:825
1447
  msgid "Save $_SERVER"
1448
  msgstr "Spara $_SERVER"
1449
 
1450
+ #: ../settings.php:829
1451
  msgid "Save request cookies"
1452
  msgstr ""
1453
 
1454
+ #: ../settings.php:359
1455
  msgid "Protect admin scripts"
1456
  msgstr "Skydda adminskript"
1457
 
1458
+ #: ../settings.php:360
1459
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1460
  msgstr "Blockera obehörig åtkomst till load-scripts.php och load-styles.php"
1461
 
1462
+ #: ../common.php:2704
1463
  msgid "Unable to create the directory"
1464
  msgstr "Det går inte att skapa katalogen"
1465
 
1466
+ #: ../common.php:2709
1467
  msgid "Destination folder access denied"
1468
  msgstr "Åtkomst till destinationsmapp nekad"
1469
 
1470
+ #: ../common.php:2712
1471
  msgid "File not found"
1472
  msgstr "Filen hittades inte"
1473
 
1474
+ #: ../common.php:2715
1475
  msgid "Unable to copy the file"
1476
  msgstr "Det går inte att kopiera filen"
1477
 
1478
+ #: ../common.php:2721
1479
  msgid "Unable to delete the file"
1480
  msgstr "Det går inte att ta bort filen."
1481
 
1482
+ #: ../settings.php:137
1483
  msgid "Plugin initialization"
1484
  msgstr "Initialisering av tillägg"
1485
 
1486
+ #: ../settings.php:140
1487
  msgid "Load security engine"
1488
  msgstr "Ladda säkerhetsmotor"
1489
 
1490
+ #: ../settings.php:143
1491
  msgid "Legacy mode"
1492
  msgstr "Bakåtkompatibelt läge"
1493
 
1494
+ #: ../settings.php:144
1495
  msgid "Standard mode"
1496
  msgstr "Standardläge"
1497
 
1504
  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>."
1505
  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>."
1506
 
1507
+ #: ../common.php:1397
1508
  msgid "File upload denied"
1509
  msgstr "Filuppladdning nekad"
1510
 
1511
+ #: ../settings.php:749 ../settings.php:799
1512
  msgid "To specify a REGEX pattern, enclose a whole line in two braces."
1513
  msgstr "För att ange ett REGEX-mönster, omslut en hel rad i två klammerparenteser."
1514
 
1515
+ #: ../settings.php:130
1516
  msgid "Be careful about enabling these options."
1517
  msgstr "Var försiktig med att aktivera dessa alternativ."
1518
 
1519
+ #: ../settings.php:130
1520
  msgid "If you forget your Custom login URL, you will be unable to log in."
1521
  msgstr "Om du glömmer din anpassade URL för inloggning kommer du inte att kunna logga in."
1522
 
1523
+ #: ../dashboard.php:68 ../dashboard.php:4907
1524
  msgid "Site Integrity"
1525
  msgstr "Webbplatsintegritet"
1526
 
1527
+ #: ../cerber-scanner.php:1493 ../cerber-users.php:20 ../cerber-users.php:446 ..
1528
+ #: /dashboard.php:1795 ../dashboard.php:1797 ../settings.php:735 ../settings.php:
1529
+ #: 763 ../settings.php:887 ../settings.php:896 ../settings.php:1239
1530
  msgid "Disabled"
1531
  msgstr "Inaktiverad"
1532
 
1533
+ #: ../cerber-scanner.php:938 ../dashboard.php:1796
1534
  msgid "Quick Scan"
1535
  msgstr "Snabb skanning"
1536
 
1537
+ #: ../cerber-scanner.php:938 ../dashboard.php:1798
1538
  msgid "Full Scan"
1539
  msgstr "Fullständig skanning"
1540
 
1541
+ #: ../common.php:1431
1542
  msgid "Denied"
1543
  msgstr "Nekad"
1544
 
1545
+ #: ../settings.php:166 ../settings.php:528 ../settings.php:553 ../settings.php:741
1546
  msgid "Use White IP Access List"
1547
  msgstr "Använd vit IP-åtkomstlista"
1548
 
1549
+ #: ../settings.php:187
1550
  msgid "Disable dashboard redirection"
1551
  msgstr "Inaktivera omdirigering av adminpanel"
1552
 
1553
+ #: ../settings.php:188
1554
  msgid "Disable automatic redirection to the login page when /wp-admin/ is requested by an unauthorized request"
1555
  msgstr "Inaktivera automatisk omdirigering till inloggningssidan när /wp-admin/ begärs av en obehörig förfrågan"
1556
 
1557
+ #: ../settings.php:858
1558
  msgid "Scanner settings"
1559
  msgstr "Skanningsinställningar"
1560
 
1561
+ #: ../settings.php:863
1562
  msgid "Custom signatures"
1563
  msgstr "Anpassade signaturer"
1564
 
1565
+ #: ../settings.php:867
1566
  msgid "Specify custom PHP code signatures. One item per line. To specify a REGEX pattern, enclose a whole line in two braces."
1567
  msgstr "Specifiera anpassade PHP-kodsignaturer. Ett objekt per rad. För att ange ett REGEX-mönster, omslut en hel rad i två klammerparenteser."
1568
 
1569
+ #: ../settings.php:870
1570
  msgid "Unwanted file extensions"
1571
  msgstr "Oönskade filtillägg"
1572
 
1573
+ #: ../settings.php:874
1574
  msgid "Specify file extensions to search for. Full scan only. Use comma to separate items."
1575
  msgstr "Specifiera filtillägg att söka efter. Endast fullständig skanning. Använd komma för att separera objekt."
1576
 
1577
+ #: ../settings.php:877
1578
  msgid "Directories to exclude"
1579
  msgstr "Kataloger att exkludera"
1580
 
1581
+ #: ../settings.php:906
1582
  msgid "Scan temporary directory"
1583
  msgstr "Skanna tillfällig katalog"
1584
 
1585
+ #: ../settings.php:910
1586
  msgid "Scan session directory"
1587
  msgstr "Skanna sessionskatalog"
1588
 
1589
+ #: ../settings.php:919
1590
  msgid "Delete quarantined files after"
1591
  msgstr "Ta bort filer i karantän efter"
1592
 
1593
+ #: ../settings.php:933
1594
  msgid "Launch Quick Scan"
1595
  msgstr "Starta snabbskanning"
1596
 
1606
  msgid "Every 6 hours"
1607
  msgstr "Var 6:e timme"
1608
 
1609
+ #: ../settings.php:938
1610
  msgid "Launch Full Scan"
1611
  msgstr "Starta fullständig skanning"
1612
 
1613
+ #: ../settings.php:953 ../settings.php:999
1614
  msgid "Low severity"
1615
  msgstr "Låg allvarlighet"
1616
 
1617
+ #: ../settings.php:954 ../settings.php:1000
1618
  msgid "Medium severity"
1619
  msgstr "Medel allvarlighet"
1620
 
1621
+ #: ../settings.php:955 ../settings.php:1001
1622
  msgid "High severity"
1623
  msgstr "Hög allvarlighet"
1624
 
1625
+ #: ../settings.php:950
1626
  msgid "Report an issue if any of the following is true"
1627
  msgstr "Rapportera ett problem om något av följande är sant"
1628
 
1629
+ #: ../settings.php:959
1630
  msgid "Send email report"
1631
  msgstr "Skicka e-postrapport"
1632
 
1633
+ #: ../settings.php:962
1634
  msgid "After every scan"
1635
  msgstr "Efter varje skanning"
1636
 
1637
+ #: ../settings.php:963
1638
  msgid "If any changes in scan results occurred"
1639
  msgstr "Om några ändringar i skanningsresultat uppstod"
1640
 
1641
+ #: ../settings.php:968
1642
  msgid "Include file sizes"
1643
  msgstr "Inkludera filstorlekar"
1644
 
1645
+ #: ../settings.php:972
1646
  msgid "Include scan errors"
1647
  msgstr "Inkludera skanningsfel"
1648
 
1649
+ #: ../dashboard.php:4909
1650
  msgid "Security Scanner"
1651
  msgstr "Säkerhetsskanning"
1652
 
1653
+ #: ../dashboard.php:4911
1654
  msgid "Scheduling"
1655
  msgstr "Schemaläggning"
1656
 
1714
  msgid "Unable to process file"
1715
  msgstr "Kan inte bearbeta fil"
1716
 
1717
+ #: ../cerber-scanner.php:1455 ../cerber-scanner.php:4644
1718
  msgid "Unable to open file"
1719
  msgstr "Kan inte öppna fil"
1720
 
1721
+ #: ../cerber-scanner.php:1457 ../admin/cerber-admin.php:79
1722
  msgid "Checksum mismatch"
1723
  msgstr "Kontrollsumma matchar inte"
1724
 
1790
  msgid "Critical issues"
1791
  msgstr "Kritiska problem"
1792
 
1793
+ #: ../cerber-scanner.php:4817 ../admin/cerber-admin.php:103
1794
  msgid "Issues total"
1795
  msgstr "Problem totalt"
1796
 
1797
+ #: ../admin/cerber-admin.php:353
1798
  msgid "File access error. Possibly scan results are outdated. Please run Quick or Full Scan."
1799
  msgstr "Filåtkomstfel. Möjliga skanningsresultat är föråldrade. Kör snabb eller full skanning."
1800
 
1801
+ #: ../cerber-scanner.php:4940
1802
  msgid "To view full report visit"
1803
  msgstr "För att visa fullständigt rapport besök"
1804
 
1805
+ #: ../cerber-load.php:4320
1806
  msgid "Scanner Report"
1807
  msgstr "Skanningsrapport"
1808
 
1809
+ #: ../settings.php:884
1810
  msgid "Monitor new files"
1811
  msgstr "Övervaka nya filer"
1812
 
1813
+ #: ../settings.php:893
1814
  msgid "Monitor modified files"
1815
  msgstr "Övervaka ändrade filer"
1816
 
1817
+ #: ../settings.php:964
1818
  msgid "If new issues found"
1819
  msgstr "Om nya problem hittas"
1820
 
1854
  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."
1855
  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."
1856
 
1857
+ #: ../cerber-scanner.php:4773
1858
  msgid "Full Scan Report"
1859
  msgstr "Fullständig skanningsrapport"
1860
 
1861
+ #: ../cerber-scanner.php:4773
1862
  msgid "Quick Scan Report"
1863
  msgstr "Snabbskanningsrapport"
1864
 
1865
+ #: ../cerber-scanner.php:4786
1866
  msgid "Files scanned"
1867
  msgstr "Filerna skannas"
1868
 
1869
+ #: ../dashboard.php:305 ../dashboard.php:1384 ../dashboard.php:1439 ../dashboard.
1870
+ #: php:1580
1871
  msgid "Check for activities"
1872
  msgstr "Kontrollera efter aktiviteter"
1873
 
1874
+ #: ../dashboard.php:1540
1875
  msgid "Activated"
1876
  msgstr "Aktiverad"
1877
 
1878
+ #: ../common.php:1408
1879
  msgid "Malicious request denied"
1880
  msgstr "Skadlig begäran nekad"
1881
 
1882
+ #: ../common.php:1411
1883
  msgid "User activated"
1884
  msgstr ""
1885
 
1886
+ #: ../common.php:1433
1887
  msgid "Suspicious number of fields"
1888
  msgstr "Misstänkt antal fält"
1889
 
1890
+ #: ../common.php:1434
1891
  msgid "Suspicious number of nested values"
1892
  msgstr ""
1893
 
1894
+ #: ../common.php:1435 ../common.php:1512
1895
  msgid "Malicious code detected"
1896
  msgstr "Skadlig kod upptäckt"
1897
 
1898
+ #: ../common.php:1513
1899
  msgid "Attempt to upload a file with malicious code"
1900
  msgstr "Försök att ladda upp en fil med skadlig kod"
1901
 
1902
+ #: ../common.php:1768
1903
  msgid "Bytes"
1904
  msgstr "Bytes"
1905
 
1923
  msgid "Scanning the session folder for files"
1924
  msgstr "Skannar sessionsmappen efter filer"
1925
 
1926
+ #: ../settings.php:928
1927
  msgid "Automated recurring scan schedule"
1928
  msgstr "Automatiserat återkommande scanningsschema"
1929
 
1930
+ #: ../settings.php:945
1931
  msgid "Scan results reporting"
1932
  msgstr "Resultatrapportering av skanning"
1933
 
1934
+ #: ../dashboard.php:976 ../dashboard.php:4062
1935
  msgid "Suspicious activity"
1936
  msgstr "Misstänkt aktivitet"
1937
 
1938
+ #: ../dashboard.php:4063
1939
  msgid "Errors"
1940
  msgstr "Fel"
1941
 
1944
  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."
1945
  msgstr ""
1946
 
1947
+ #: ../cerber-load.php:342
1948
  msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
1949
  msgstr "Du har överskridit antalet tillåtna inloggningsförsök. Försök igen om %d minuter."
1950
 
1951
+ #: ../common.php:1661
1952
  msgctxt "preposition of a period of time like: in 6 hours"
1953
  msgid "in %s"
1954
  msgstr "om %s"
1958
  msgid "at"
1959
  msgstr "kl."
1960
 
1961
+ #: ../dashboard.php:4914
1962
  msgid "Quarantine"
1963
  msgstr "Karantän"
1964
 
1974
  msgid "Performance"
1975
  msgstr "Prestanda"
1976
 
1977
+ #: ../nexus/cerber-slave-list.php:340 ../admin/cerber-admin.php:67
1978
  msgid "Vulnerabilities"
1979
  msgstr "Sårbarheter"
1980
 
1994
  msgid "Unattended files"
1995
  msgstr "Obevakade filer"
1996
 
1997
+ #: ../admin/cerber-admin.php:96 ../admin/cerber-admin.php:760
1998
  msgid "Scanned"
1999
  msgstr "Skannade"
2000
 
2001
+ #: ../admin/cerber-admin.php:704
2002
  msgid "There are no files in the quarantine at the moment."
2003
  msgstr "Det finns inga filer i karantän för tillfället."
2004
 
2005
+ #: ../admin/cerber-admin.php:742
2006
  msgid "Restore"
2007
  msgstr "Återställ"
2008
 
2009
+ #: ../admin/cerber-admin.php:739
2010
  msgid "Delete permanently"
2011
  msgstr "Ta bort permanent"
2012
 
2013
+ #: ../admin/cerber-admin.php:762
2014
  msgid "Automatic deletion"
2015
  msgstr "Automatisk borttagning"
2016
 
2017
+ #: ../admin/cerber-admin.php:763 ../admin/cerber-admin.php:918 ../admin/cerber-
2018
+ #: admin.php:1326
2019
  msgid "Size"
2020
  msgstr "Storlek"
2021
 
2022
+ #: ../admin/cerber-admin.php:764 ../admin/cerber-admin.php:919
2023
  msgid "File"
2024
  msgstr "Fil"
2025
 
2026
+ #: ../admin/cerber-admin.php:837
2027
  msgid "The file has been deleted permanently."
2028
  msgstr "Filen har tagits bort permanent."
2029
 
2030
+ #: ../admin/cerber-admin.php:852
2031
  msgid "The file has been restored to its original location."
2032
  msgstr "Filen har återställts till sin ursprungliga plats."
2033
 
2034
+ #: ../dashboard.php:1811
2035
  msgid "Integrity"
2036
  msgstr "Integritet"
2037
 
2038
+ #: ../common.php:1396
2039
  msgid "Attempt to upload malicious file denied"
2040
  msgstr "Försök att ladda upp skadlig fil nekad"
2041
 
2042
+ #: ../cerber-load.php:7220
2043
  msgid "Awesome!"
2044
  msgstr "Grymt bra!"
2045
 
2046
+ #: ../settings.php:987
2047
  msgid "Automatic cleanup of malware and suspicious files"
2048
  msgstr "Automatisk upprensing av skadlig kod och misstänkta filer"
2049
 
2050
+ #: ../settings.php:996
2051
  msgid "Files in the uploads folder"
2052
  msgstr "Filer i uppladdningsmappen"
2053
 
2054
+ #: ../settings.php:1005
2055
  msgid "Files with unwanted extensions"
2056
  msgstr "Filer med oönskade tillägg"
2057
 
2058
+ #: ../settings.php:1024
2059
  msgid "Exclusions"
2060
  msgstr "Uteslutningar"
2061
 
2062
+ #: ../settings.php:1028
2063
  msgid "Files in the temporary directory"
2064
  msgstr "Filer i den temporära katalogen"
2065
 
2066
+ #: ../settings.php:1032
2067
  msgid "Files in the sessions directory"
2068
  msgstr "Filer i sessions-katalogen"
2069
 
2070
+ #: ../settings.php:1036
2071
  msgid "Files in these directories"
2072
  msgstr "Filer i dessa kataloger"
2073
 
2074
+ #: ../settings.php:1040
2075
  msgid "Use absolute paths. One item per line."
2076
  msgstr "Använd absoluta sökvägar. Ett objekt per rad."
2077
 
2078
+ #: ../settings.php:1043
2079
  msgid "Files with these extensions"
2080
  msgstr "Filer med dessa tillägg"
2081
 
2082
+ #: ../settings.php:1047
2083
  msgid "Use comma to separate items."
2084
  msgstr "Use comma to separate items."
2085
 
2086
+ #: ../dashboard.php:4912
2087
  msgid "Cleaning up"
2088
  msgstr "Uppstädning"
2089
 
2107
  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."
2108
  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."
2109
 
2110
+ #: ../cerber-scanner.php:4871
2111
  msgid "Deleted"
2112
  msgstr "Borttaget"
2113
 
2114
+ #: ../cerber-scanner.php:4924
2115
  msgid "Automatically moved to quarantine"
2116
  msgstr "Automatiskt flyttad till karantän"
2117
 
2118
+ #: ../common.php:1436
2119
  msgid "Suspicious SQL code detected"
2120
  msgstr "Misstänkt SQL-kod upptäckt"
2121
 
2122
+ #: ../dashboard.php:1792
2123
  msgctxt "Example: Last malware scan: 23 Jan 2018"
2124
  msgid "Last malware scan"
2125
  msgstr "Senaste skanningen efter skadlig kod"
2126
 
2127
+ #: ../dashboard.php:4848
2128
  msgid "Live Traffic"
2129
  msgstr "Live-trafik"
2130
 
2131
+ #: ../settings.php:334
2132
  msgid "Use English for admin interface"
2133
  msgstr "Använd engelska för administratörsgränssnitt"
2134
 
2135
+ #: ../settings.php:364
2136
  msgid "Disable PHP in uploads"
2137
  msgstr "Inaktivera PHP i uppladdningar"
2138
 
2139
+ #: ../settings.php:369
2140
  msgid "Disable PHP error displaying"
2141
  msgstr "Inaktivera visning av PHP-fel"
2142
 
2143
+ #: ../dashboard.php:4913
2144
  msgid "Ignore List"
2145
  msgstr "Ignoreringslista"
2146
 
2148
  msgid "Ignore"
2149
  msgstr "Ignorera"
2150
 
2151
+ #: ../admin/cerber-admin.php:876
2152
  msgid "Apply"
2153
  msgstr "Tillämpa"
2154
 
2155
+ #: ../admin/cerber-admin.php:916
2156
  msgid "Added"
2157
  msgstr "Tillagd"
2158
 
2159
+ #: ../admin/cerber-admin.php:877 ../admin/cerber-admin.php:904
2160
  msgid "Remove from the list"
2161
  msgstr "Ta bort från listan"
2162
 
2163
+ #: ../admin/cerber-admin.php:878
2164
  msgid "User Insights"
2165
  msgstr "Användarinsikt"
2166
 
2167
+ #: ../admin/cerber-admin.php:879
2168
  msgid "Traffic Insights"
2169
  msgstr "Trafikinsikt"
2170
 
2171
+ #: ../admin/cerber-admin.php:880
2172
  msgid "Activity Insights"
2173
  msgstr "Aktivitetsinsikt"
2174
 
2175
+ #: ../dashboard.php:2828
2176
  msgid "Are you sure you want to delete selected files?"
2177
  msgstr "Är du säker på att du vill ta bort valda filer?"
2178
 
2179
+ #: ../dashboard.php:2829
2180
  msgid "These files have been moved to the quarantine"
2181
  msgstr "Dessa filer har flyttats till karantänen"
2182
 
2183
+ #: ../dashboard.php:2832
2184
  msgid "Do you want to add selected files to the ignore list?"
2185
  msgstr "Vill du lägga till valda filer på ignoreringslistan?"
2186
 
2187
+ #: ../dashboard.php:2833
2188
  msgid "These files have been added to the ignore list"
2189
  msgstr "Dessa filer har lagts till i ignoreringslistan"
2190
 
2191
+ #: ../dashboard.php:2835
2192
  msgid "Some errors occurred"
2193
  msgstr "Några fel uppstod"
2194
 
2195
+ #: ../dashboard.php:2836
2196
  msgid "All files have been processed"
2197
  msgstr "Alla filer har bearbetats"
2198
 
2199
+ #: ../dashboard.php:5257
2200
  msgid "These features are available in a professional version of the plugin."
2201
  msgstr "Dessa funktioner är tillgängliga i en professionell version av tillägget"
2202
 
2203
+ #: ../dashboard.php:5258
2204
  msgid "Know more about all advantages at"
2205
  msgstr "Läs mer om alla fördelar på"
2206
 
2207
+ #: ../common.php:1437
2208
  msgid "Suspicious JavaScript code detected"
2209
  msgstr "Misstänkt JavaScript-kod upptäckt"
2210
 
2212
  msgid "Unable to update the schedule"
2213
  msgstr "Kan inte uppdatera schemat"
2214
 
2215
+ #: ../admin/cerber-admin.php:775
2216
  msgid "All scans"
2217
  msgstr "Alla skanningar"
2218
 
2219
+ #: ../admin/cerber-admin.php:882
2220
  msgid "The list is empty."
2221
  msgstr "Listan är tom."
2222
 
2223
+ #: ../admin/cerber-admin.php:721
2224
  msgid "No files match the specified filter."
2225
  msgstr "Inga filer matchar det specifierade filtret"
2226
 
2227
+ #: ../admin/cerber-admin.php:721
2228
  msgid "Click here to see the full list of files"
2229
  msgstr "Klicka här för att se hela listan med filer"
2230
 
2231
+ #: ../dashboard.php:849
2232
  msgid "Additional Details"
2233
  msgstr "Ytterligare detaljer"
2234
 
2235
+ #: ../dashboard.php:3583
2236
  msgid "Page generation time"
2237
  msgstr "Tid för generering av sidan"
2238
 
2239
+ #: ../dashboard.php:5293
2240
  msgid "Log In"
2241
  msgstr "Logga in"
2242
 
2243
+ #: ../dashboard.php:5294
2244
  msgid "Log Out"
2245
  msgstr "Logga ut"
2246
 
2247
+ #: ../dashboard.php:5295
2248
  msgid "Register"
2249
  msgstr "Registrera"
2250
 
2251
+ #: ../dashboard.php:5298
2252
  msgid "WooCommerce Log In"
2253
  msgstr "WooCommerce-inloggning"
2254
 
2255
+ #: ../dashboard.php:5299
2256
  msgid "WooCommerce Log Out"
2257
  msgstr "WooCommerce-utloggning"
2258
 
2259
+ #: ../dashboard.php:5338 ../dashboard.php:5339
2260
  msgid "Add to menu"
2261
  msgstr "Lägg till i meny"
2262
 
2263
+ #: ../common.php:1425
2264
  msgid "IP address is locked out"
2265
  msgstr "IP-adress är utelåst"
2266
 
2267
+ #: ../common.php:1516
2268
  msgid "Multiple suspicious requests"
2269
  msgstr "Flera misstänkta förfrågningar"
2270
 
2271
+ #: ../settings.php:727
2272
  msgid "Traffic Inspection"
2273
  msgstr "Trafikinspektion"
2274
 
2275
+ #: ../settings.php:736 ../settings.php:764
2276
  msgid "Maximum compatibility"
2277
  msgstr "Maximal kompatibilitet"
2278
 
2279
+ #: ../settings.php:737 ../settings.php:765
2280
  msgid "Maximum security"
2281
  msgstr "Maximal säkerhet"
2282
 
2283
+ #: ../settings.php:755
2284
  msgid "Erroneous Request Shielding"
2285
  msgstr ""
2286
 
2287
+ #: ../settings.php:760
2288
  msgid "Enable error shielding"
2289
  msgstr ""
2290
 
2291
+ #: ../settings.php:833
2292
  msgid "Save software errors"
2293
  msgstr "Spara programfel"
2294
 
2296
  msgid "Preparing for the scan"
2297
  msgstr "Förbereder för skanningen"
2298
 
2299
+ #: ../common.php:1438
2300
  msgid "Blocked by administrator"
2301
  msgstr "Blockerad av administratör"
2302
 
2303
+ #: ../cerber-load.php:346
2304
  msgid "You are not allowed to log in"
2305
  msgstr "Du saknar behörighet att logga in"
2306
 
2312
  msgid "User is not permitted to log into the website"
2313
  msgstr "Användare har inte tillåtelse att logga in på webbplatsen"
2314
 
2315
+ #: ../cerber-users.php:68 ../settings.php:535
2316
  msgid "User Message"
2317
  msgstr "Användarmeddelande"
2318
 
2324
  msgid "Blocked Users"
2325
  msgstr "Blockerade användare"
2326
 
2327
+ #: ../settings.php:355
2328
  msgid "Block access to user pages like /?author=n"
2329
  msgstr "Blockera åtkomst till användarsidor som /?Author=n"
2330
 
2331
+ #: ../settings.php:385
2332
  msgid "Access to WordPress REST API"
2333
  msgstr "Åtkomst till WordPress REST API"
2334
 
2335
+ #: ../settings.php:396
2336
  msgid "Block access to WordPress REST API except any of the following"
2337
  msgstr "Blockera åtkomst till WordPress REST API utom något av följande"
2338
 
2339
+ #: ../settings.php:406
2340
  msgid "Allow REST API for these roles"
2341
  msgstr "Tillåt REST API för dessa roller"
2342
 
2343
+ #: ../settings.php:411
2344
  msgid "Allow these namespaces"
2345
  msgstr "Tillåt dessa namnrymder"
2346
 
2347
+ #: ../settings.php:769
2348
  msgid "Ignore logged in users"
2349
  msgstr "Ignorera inloggade användare"
2350
 
2351
+ #: ../settings.php:133
2352
  msgid "These restrictions do not apply to IP addresses in the White IP Access List"
2353
  msgstr "Dessa begränsningar tillämpas inte på IP-adresser i den vita IP-åtkomstlistan"
2354
 
2356
  msgid "Select one or more roles"
2357
  msgstr "Välj en eller flera roller"
2358
 
2359
+ #: ../cerber-users.php:1019 ../dashboard.php:1144
2360
  msgid "Filter by registered user"
2361
  msgstr "Filtrera efter registrerad användare"
2362
 
2363
+ #: ../settings.php:521
2364
  msgid "Authorized users only"
2365
  msgstr "Endast auktoriserade användare"
2366
 
2367
+ #: ../settings.php:522
2368
  msgid "Only registered and logged in website users have access to the website"
2369
  msgstr "Endast registrerade och inloggade användare har åtkomst till webbplatsen"
2370
 
2371
+ #: ../settings.php:539 ../settings.php:1484
2372
  msgid "Only registered and logged in users are allowed to view this website"
2373
  msgstr "Endast registrerade och inloggade användare har tillåtelse visa denna webbplats"
2374
 
2375
+ #: ../settings.php:544
2376
  msgid "Redirect to URL"
2377
  msgstr "Omdirigera till URL"
2378
 
2379
+ #: ../dashboard.php:4967
2380
  msgid "Changelog"
2381
  msgstr "Ändringslogg"
2382
 
2383
+ #: ../dashboard.php:653
2384
  msgid "Default settings have been loaded"
2385
  msgstr "Standardinställningarna har laddats"
2386
 
2387
+ #: ../dashboard.php:3291
2388
  msgid "Save all rules"
2389
  msgstr "Spara alla regler"
2390
 
2391
+ #: ../admin/cerber-settings.php:628 ../dashboard.php:3162
2392
  msgid "Save Changes"
2393
  msgstr "Spara ändringar"
2394
 
2395
+ #: ../common.php:1414
2396
  msgid "Invalid master credentials"
2397
  msgstr "Ogiltiga master-uppgifter"
2398
 
2399
+ #: ../settings.php:1184
2400
  msgid "Master settings"
2401
  msgstr "Master-inställningar"
2402
 
2403
+ #: ../settings.php:1192
2404
  msgid "Return to the website list"
2405
  msgstr "Tillbaka till webbplatslistan"
2406
 
2407
+ #: ../settings.php:1196
2408
  msgid "Show \"Switched to\" notification"
2409
  msgstr "Visa ”Bytt till”-notis"
2410
 
2411
+ #: ../settings.php:1200
2412
  msgid "Add @ site to the page title"
2413
  msgstr ""
2414
 
2415
+ #: ../settings.php:914 ../settings.php:1217 ../settings.php:1245
2416
  msgid "Enable diagnostic logging"
2417
  msgstr "Aktivera diagnostisk loggning"
2418
 
2419
+ #: ../settings.php:1228
2420
  msgid "Limit access by IP address"
2421
  msgstr "Begränsa åtkomst med IP-adress"
2422
 
2423
+ #: ../settings.php:1234
2424
  msgid "Access to this website"
2425
  msgstr "Åtkomst till denna webbplats"
2426
 
2427
+ #: ../settings.php:1237
2428
  msgid "Full access mode"
2429
  msgstr "Fullt åtkomstläge"
2430
 
2431
+ #: ../settings.php:1238
2432
  msgid "Read-only mode"
2433
  msgstr "Endast läsläge"
2434
 
2435
+ #: ../settings.php:1259
2436
  msgid "The full access mode requires the PRO version of WP Cerber"
2437
  msgstr "Fullt åtkomstläge kräver PRO-versionen av WP Cerber"
2438
 
2444
  msgid "Malware Scan"
2445
  msgstr "Skanna efter skadlig kod"
2446
 
2447
+ #: ../nexus/cerber-nexus-master.php:141 ../nexus/cerber-slave-list.php:56
2448
  msgid "Notes"
2449
  msgstr "Noteringar"
2450
 
2452
  msgid "Add a slave website"
2453
  msgstr "Lägg till en slav-webbplats"
2454
 
2455
+ #: ../nexus/cerber-slave-list.php:247 ../cerber-users.php:1085
2456
  msgid "Search results for:"
2457
  msgstr "Sökresultat för:"
2458
 
2459
+ #: ../nexus/cerber-slave-list.php:282
2460
  msgid "Edit"
2461
  msgstr "Redigera"
2462
 
2463
+ #: ../nexus/cerber-slave-list.php:288
2464
  msgid "Switch to"
2465
  msgstr "Byt till"
2466
 
2467
+ #: ../nexus/cerber-slave-list.php:420
2468
  msgid "No websites configured."
2469
  msgstr "Inga webbplatser konfigurerade."
2470
 
2471
+ #: ../nexus/cerber-slave-list.php:420
2472
  msgid "Add a new one"
2473
  msgstr "Lägg till en ny"
2474
 
2475
+ #: ../nexus/cerber-nexus-master.php:104
2476
  msgid "Website Properties"
2477
  msgstr "Webbplatsegenskaper"
2478
 
2479
+ #: ../nexus/cerber-nexus-master.php:114
2480
  msgid "Website URL"
2481
  msgstr "URL till webbplats"
2482
 
2483
+ #: ../nexus/cerber-nexus-master.php:119
2484
  msgid "Display as"
2485
  msgstr "Visa som"
2486
 
2487
+ #: ../nexus/cerber-nexus-master.php:149
2488
  msgid "Website Owner"
2489
  msgstr "Webbplatsägare"
2490
 
2491
+ #: ../nexus/cerber-nexus-master.php:153
2492
  msgid "First Name"
2493
  msgstr "Förnamn"
2494
 
2495
+ #: ../nexus/cerber-nexus-master.php:157
2496
  msgid "Last Name"
2497
  msgstr "Efternamn"
2498
 
2499
+ #: ../nexus/cerber-nexus-master.php:161
2500
  msgid "Email"
2501
  msgstr "E-post"
2502
 
2503
+ #: ../nexus/cerber-nexus-master.php:165
2504
  msgid "Phone"
2505
  msgstr "Telefon"
2506
 
2507
+ #: ../nexus/cerber-nexus-master.php:173
2508
  msgid "Address"
2509
  msgstr "Adress"
2510
 
2511
+ #: ../nexus/cerber-nexus-master.php:286
2512
  msgid "Security access token is invalid"
2513
  msgstr "Säkerhetsåtkomsttoken är ogiltig"
2514
 
2515
+ #: ../nexus/cerber-nexus-master.php:316
2516
  msgid "The website you are trying to add is already in the list"
2517
  msgstr "Den webbplats du försöker lägga till finns redan i listan"
2518
 
2519
+ #: ../nexus/cerber-nexus-master.php:325
2520
  msgid "The website has been added successfully"
2521
  msgstr "Webbplatsen har lagts till utan problem"
2522
 
2523
+ #: ../nexus/cerber-nexus-master.php:326
2524
  msgid "Click to edit"
2525
  msgstr "Klicka för att redigera"
2526
 
2527
+ #: ../nexus/cerber-nexus-master.php:327
2528
  msgid "Switch to the Dashboard"
2529
  msgstr "Byt till adminpanelen"
2530
 
2531
+ #: ../nexus/cerber-nexus-master.php:330
2532
  msgid "Keep in mind: You have added the website that does not support SSL encryption. This may lead to data leakage."
2533
  msgstr "Tänk på: Du har lagt till webbplatsen som inte stöder SSL-kryptering. Detta kan leda till dataläckage."
2534
 
2535
+ #: ../nexus/cerber-nexus-master.php:449
2536
  msgid "Website has been deleted"
2537
  msgid_plural "%s websites have been deleted"
2538
  msgstr[0] "Webbplats har tagits bort"
2539
  msgstr[1] "%s webbplatser har tagits bort"
2540
 
2541
+ #: ../nexus/cerber-nexus-master.php:1025
2542
  msgid "You have switched to %s"
2543
  msgstr "Du har bytt till %s"
2544
 
2545
+ #: ../nexus/cerber-nexus-master.php:1035
2546
  msgid "You have switched back to the master website"
2547
  msgstr "Du har bytt tillbaka till master-webbplatsen"
2548
 
2549
+ #: ../nexus/cerber-nexus-master.php:1251
2550
  msgid "You are here:"
2551
  msgstr "Du är här:"
2552
 
2553
+ #: ../nexus/cerber-nexus-master.php:1254 ../nexus/cerber-nexus.php:92 ..
2554
  #: /nexus/cerber-nexus.php:102
2555
  msgid "My Websites"
2556
  msgstr "Mina webbplatser"
2557
 
2558
+ #: ../nexus/cerber-nexus-master.php:1269
2559
  msgid "Visit Site"
2560
  msgstr "Besök webbplats"
2561
 
2562
+ #: ../nexus/cerber-nexus.php:64
2563
  msgid "Enable slave mode"
2564
  msgstr "Aktivera slavläge"
2565
 
2616
  msgstr "Installera åtkomsttoken på master-webbplatsen."
2617
 
2618
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
2619
+ #: ../common.php:1654
2620
  msgid "%s sec"
2621
  msgid_plural "%s secs"
2622
  msgstr[0] "%s sekund"
2623
  msgstr[1] "%s sekunder"
2624
 
2625
+ #: ../settings.php:710
2626
  msgid "Send reports on"
2627
  msgstr "Skicka rapporter på"
2628
 
2630
  msgid "Updates"
2631
  msgstr "Uppdateringar"
2632
 
2633
+ #: ../nexus/cerber-nexus-master.php:127 ../nexus/cerber-slave-list.php:54
2634
  msgid "Group"
2635
  msgstr "Grupp"
2636
 
2650
  msgid "All groups"
2651
  msgstr "Alla grupper"
2652
 
2653
+ #: ../nexus/cerber-nexus-master.php:1335
2654
  msgid "Are you sure you want to delete selected websites?"
2655
  msgstr "Är du säker på att du vill ta bort valda webbplatser?"
2656
 
2658
  msgid "Block"
2659
  msgstr "Blockera"
2660
 
2661
+ #: ../nexus/cerber-nexus-master.php:96
2662
  msgid "Select an existing group or enter a new one to add it"
2663
  msgstr "Välj en befintlig grupp eller ange en ny för att lägga till den"
2664
 
2665
+ #: ../nexus/cerber-nexus-master.php:169
2666
  msgid "Company"
2667
  msgstr "Företag"
2668
 
2669
+ #: ../nexus/cerber-nexus-master.php:693
2670
  msgid "Invalid response from the slave website"
2671
  msgstr "Ogiltigt svar från slav-webbplatsen"
2672
 
2673
+ #: ../common.php:1390 ../common.php:1506
2674
  msgid "Attempt to log in with non-existing username"
2675
  msgstr "Försök att logga in med icke-existerande användarnamn"
2676
 
2677
+ #: ../cerber-load.php:4474
2678
  msgid "Attempts to log in with non-existing usernames"
2679
  msgstr "Försök att logga in med icke-existerande användarnamn"
2680
 
2681
+ #: ../settings.php:1204
2682
  msgid "Use master language"
2683
  msgstr "Använd master-språk"
2684
 
2685
+ #: ../settings.php:182
2686
  msgid "Non-existing users"
2687
  msgstr "Icke-existerande användare"
2688
 
2689
+ #: ../settings.php:183
2690
  msgid "Immediately block IP when attempting to log in with a non-existing username"
2691
  msgstr "Blockera omedelbart IP vid försök att logga in med ett icke-existerande användarnamn"
2692
 
2694
  msgid "Owner"
2695
  msgstr "Ägare"
2696
 
2697
+ #: ../nexus/cerber-slave-list.php:420
2698
  msgid "Disable master mode"
2699
  msgstr "Inaktivera master-läge"
2700
 
2702
  msgid "To revoke the token and disable remote management, click here:"
2703
  msgstr "För att återkalla token och inaktivera fjärrhantering, klicka här:"
2704
 
2705
+ #: ../settings.php:365
2706
  msgid "Block execution of PHP scripts in the WordPress media folder"
2707
  msgstr "Blockera exekvering av PHP-skript i WordPress media-mapp"
2708
 
2709
+ #: ../nexus/cerber-nexus-master.php:1401 ../nexus/cerber-nexus-master.php:1409
2710
  msgid "Active plugins and updates on"
2711
  msgstr "Aktiva tillägg och uppdateringar på"
2712
 
2713
+ #: ../nexus/cerber-nexus-master.php:1379
2714
  msgid "A newer version is available"
2715
  msgstr "En nyare version är tillgänglig"
2716
 
2717
+ #: ../dashboard.php:970
2718
  msgid "New users"
2719
  msgstr "Nya användare"
2720
 
2721
+ #: ../dashboard.php:983
2722
  msgid "My activity"
2723
  msgstr "Min aktivitet"
2724
 
2725
+ #: ../dashboard.php:2577
2726
  msgid "Create Alert"
2727
  msgstr "Skapa varning"
2728
 
2729
+ #: ../dashboard.php:2581
2730
  msgid "Delete Alert"
2731
  msgstr "Ta bort varning"
2732
 
2733
+ #: ../dashboard.php:2614
2734
  msgid "The alert has been created"
2735
  msgstr "Varningen har skapats"
2736
 
2737
+ #: ../dashboard.php:2618
2738
  msgid "The alert has been deleted"
2739
  msgstr "Varningen har tagits bort"
2740
 
2741
+ #: ../dashboard.php:4092
2742
  msgid "Advanced Search"
2743
  msgstr "Avancerad sökning"
2744
 
2747
  msgid "Cerber Tech Inc."
2748
  msgstr "Cerber Tech Inc."
2749
 
2750
+ #: ../cerber-load.php:5045
2751
  msgid "To delete the alert, click here"
2752
  msgstr "För att ta bort varningen, klicka här"
2753
 
2754
+ #: ../settings.php:215
2755
  msgid "Custom login URL may contain Latin alphanumeric characters, dashes and underscores only"
2756
  msgstr "Anpassad URL för inloggning kan endast innehålla latinska alfanumeriska tecken, bindestreck och understreck"
2757
 
2758
+ #: ../settings.php:227
2759
  msgid "Site-specific settings"
2760
  msgstr "Webbplatsspecifika inställningar"
2761
 
2762
+ #: ../settings.php:235
2763
  msgid "Prefix for plugin cookies"
2764
  msgstr ""
2765
 
2766
+ #: ../settings.php:236
2767
  msgid "Prefix may contain only Latin alphanumeric characters and underscores"
2768
  msgstr "Prefix får bara innehålla latinska alfanumeriska tecken och understreck"
2769
 
2770
+ #: ../settings.php:664
2771
  msgid "Lockout notifications"
2772
  msgstr "Aviseringar för utlåsning"
2773
 
2774
+ #: ../settings.php:692
2775
  msgid "Pushbullet access token"
2776
  msgstr "Pushbullet åtkomst-token"
2777
 
2778
+ #: ../settings.php:695
2779
  msgid "Pushbullet device"
2780
  msgstr "Pushbullet-enhet"
2781
 
2782
+ #: ../settings.php:992
2783
  msgid "Delete unattended files"
2784
  msgstr ""
2785
 
2786
+ #: ../settings.php:1011
2787
  msgid "Automatic recovery of modified and infected files"
2788
  msgstr "Automatisk återskapning av modifierade och infekterade filer"
2789
 
2790
+ #: ../settings.php:1014
2791
  msgid "Recover WordPress files"
2792
  msgstr "Återskapa WordPress-filer"
2793
 
2794
+ #: ../settings.php:1018
2795
  msgid "Recover plugins files"
2796
  msgstr "Återskapa tilläggs-filer"
2797
 
2811
  msgid "Recovering plugins files"
2812
  msgstr "Återskapar tilläggs-filer"
2813
 
2814
+ #: ../cerber-scanner.php:4875
2815
  msgid "Recovered"
2816
  msgstr "Återskapad"
2817
 
2818
+ #: ../cerber-scanner.php:4925
2819
  msgid "Automatically deleted"
2820
  msgstr "Automatiskt borttagen"
2821
 
2822
+ #: ../cerber-scanner.php:4928
2823
  msgid "Automatically recovered"
2824
  msgstr "Automatiskt återskapad"
2825
 
2826
+ #: ../dashboard.php:65
2827
  msgid "Cerber User Security"
2828
  msgstr "Cerber användarsäkerhet"
2829
 
2830
+ #: ../dashboard.php:65 ../dashboard.php:4872
2831
  msgid "User Policies"
2832
  msgstr "Användarpolicyer"
2833
 
2834
+ #: ../dashboard.php:1814
2835
  msgid "A new version is available"
2836
  msgstr "En ny version är tillgänglig"
2837
 
2838
+ #: ../dashboard.php:4874
2839
  msgid "Role-based"
2840
  msgstr "Rollbaserad"
2841
 
2842
+ #: ../dashboard.php:4875
2843
  msgid "Global"
2844
  msgstr "Global"
2845
 
2846
+ #: ../common.php:1439
2847
  msgid "Site policy enforcement"
2848
  msgstr ""
2849
 
2850
+ #: ../common.php:1440
2851
  msgid "2FA code verified"
2852
  msgstr "2FA-kod verifierad"
2853
 
2854
+ #: ../common.php:1441
2855
  msgid "Initiated by the user"
2856
  msgstr "Initierad av användaren"
2857
 
2858
+ #: ../common.php:1874
2859
  msgid "A new version of %s is available. Please install it."
2860
  msgstr "En ny version av %s är tillgänglig. Vänligen installera den."
2861
 
2862
+ #: ../cerber-load.php:1568
2863
  msgid "Email address is not permitted."
2864
  msgstr "E-postadress är inte tillåten."
2865
 
2866
+ #: ../cerber-load.php:1568
2867
  msgid "Please choose another one."
2868
  msgstr "Välj en annan."
2869
 
2907
  msgid "Redirect user after logout"
2908
  msgstr "Omdirigera användare efter utloggning"
2909
 
2910
+ #: ../cerber-users.php:432 ../settings.php:597
2911
  msgid "User session expiration time"
2912
  msgstr "Användarsessionens utlöpningstid"
2913
 
2963
  msgid "Policies have been updated"
2964
  msgstr "Policies har uppdaterats"
2965
 
2966
+ #: ../settings.php:572
2967
  msgid "Restrict email addresses"
2968
  msgstr "Begränsa e-postadresser"
2969
 
2970
+ #: ../settings.php:575
2971
  msgid "No restrictions"
2972
  msgstr "Inga begränsningar"
2973
 
2974
+ #: ../settings.php:576
2975
  msgid "Deny all email addresses that match the following"
2976
  msgstr "Neka alla e-postadresser som matchar följande"
2977
 
2978
+ #: ../settings.php:577
2979
  msgid "Permit only email addresses that match the following"
2980
  msgstr "Tillåt endast e-postadresser som matchar följande"
2981
 
2982
+ #: ../settings.php:582
2983
  msgid "Specify email addresses, wildcards or REGEX patterns. Use comma to separate items."
2984
  msgstr "Ange e-postadresser, jokertecken eller REGEX-mönster. Använd komma för att separera objekt."
2985
 
2986
+ #: ../settings.php:1025
2987
  msgid "These files will never be deleted during automatic cleanup."
2988
  msgstr "Dessa filer kommer aldrig att tas bort under automatisk upprensning."
2989
 
3051
  msgid "Two-Factor Authentication Email"
3052
  msgstr "E-post för tvåfaktorsautentisering"
3053
 
3054
+ #: ../dashboard.php:3234
3055
  msgid "Role-based rules are configured"
3056
  msgstr "Rollbaserade regler är konfigurerade"
3057
 
3058
+ #: ../dashboard.php:3428
3059
  msgid "All Users"
3060
  msgstr "Alla användare"
3061
 
3068
  msgid "The code is valid for %s minutes."
3069
  msgstr "Koden är giltig i %s minuter."
3070
 
3071
+ #: ../dashboard.php:352
3072
  msgid "IP address %s has been added to White IP Access List"
3073
  msgstr "IP-adress %s har lagts till i vit IP-åtkomstlista"
3074
 
3075
+ #: ../dashboard.php:349
3076
  msgid "IP address %s has been added to Black IP Access List"
3077
  msgstr "IP-adress %s har lagts till i svart IP-åtkomstlista"
3078
 
3079
+ #: ../cerber-users.php:975 ../dashboard.php:196 ../dashboard.php:846 ../dashboard.
3080
+ #: php:1101 ../dashboard.php:4033
3081
  msgid "IP Address"
3082
  msgstr "IP-adress"
3083
 
3084
+ #: ../dashboard.php:853 ../dashboard.php:1107
3085
  msgid "Username"
3086
  msgstr "Användarnamn"
3087
 
3088
+ #: ../dashboard.php:3316
3089
  msgid "Any country is permitted"
3090
  msgstr "Vilket land som helst är tillåtet"
3091
 
3092
+ #: ../dashboard.php:2897 ../dashboard.php:4777
3093
  msgid "Sessions"
3094
  msgstr "Sessioner"
3095
 
3127
  msgid "Terminate"
3128
  msgstr "Avsluta"
3129
 
3130
+ #: ../dashboard.php:1764
3131
  msgid "user"
3132
  msgid_plural "users"
3133
  msgstr[0] "användare"
3134
  msgstr[1] "användare"
3135
 
3136
+ #: ../settings.php:391
3137
  msgid "Block access to users' data via REST API"
3138
  msgstr "Blockera åtkomst till användarnas data via REST API"
3139
 
3141
  msgid "Unable to delete"
3142
  msgstr "Kan inte ta bort"
3143
 
3144
+ #: ../dashboard.php:61
3145
  msgid "Cerber Data Shield Policies"
3146
  msgstr ""
3147
 
3148
+ #: ../dashboard.php:61
3149
  msgid "Data Shield"
3150
  msgstr ""
3151
 
3152
+ #: ../dashboard.php:4862
3153
  msgid "Data Shield Policies"
3154
  msgstr ""
3155
 
3156
+ #: ../dashboard.php:4864
3157
  msgid "Accounts & Roles"
3158
  msgstr "Konton och roller"
3159
 
3160
+ #: ../dashboard.php:4865
3161
  msgid "Site Settings"
3162
  msgstr "Webbplatsinställningar"
3163
 
3164
+ #: ../common.php:1402
3165
  msgid "User creation denied"
3166
  msgstr "Användarskapande nekad"
3167
 
3168
+ #: ../common.php:1404
3169
  msgid "Role update denied"
3170
  msgstr "Rolluppdatering nekad"
3171
 
3172
+ #: ../common.php:1405
3173
  msgid "Setting update denied"
3174
  msgstr "Inställningsuppdatering nekad"
3175
 
3176
+ #: ../common.php:1446
3177
  msgid "Permission denied"
3178
  msgstr "Behörighet nekad"
3179
 
3180
+ #: ../common.php:1448
3181
  msgid "Invalid user"
3182
  msgstr "Ogiltig användare"
3183
 
3184
+ #: ../common.php:1449
3185
  msgid "Incorrect password"
3186
  msgstr "Felaktigt lösenord"
3187
 
3188
+ #: ../settings.php:423
3189
  msgid "Protect user accounts"
3190
  msgstr "Skydda användarkonton"
3191
 
3192
+ #: ../settings.php:428
3193
  msgid "Restrict user account creation and user management with the following policies"
3194
  msgstr "Begränsa skapandet av användarkonton och användarhantering med följande policyer"
3195
 
3196
+ #: ../settings.php:434
3197
  msgid "User registrations are limited to these roles"
3198
  msgstr "Användarregistreringar är begränsade till dessa roller"
3199
 
3200
+ #: ../settings.php:440
3201
  msgid "Users with these roles are permitted to create new accounts"
3202
  msgstr "Användare med dessa roller tillåts att skapa nya konton"
3203
 
3204
+ #: ../settings.php:445
3205
  msgid "Users with these roles are permitted to change sensitive user data"
3206
  msgstr "Användare med dessa roller tillåts att ändra känslig användardata"
3207
 
3208
+ #: ../settings.php:450 ../settings.php:478 ../settings.php:507
3209
  msgid "Do not apply these policies to the IP addresses in the White IP Access List"
3210
  msgstr "Tillämpa inte dessa policyer på IP-adresserna i den vita IP-åtkomstlistan"
3211
 
3212
+ #: ../settings.php:458
3213
  msgid "Protect user roles"
3214
  msgstr "Skydda användarroller"
3215
 
3216
+ #: ../settings.php:462
3217
  msgid "Restrict roles and capabilities management with the following policies"
3218
  msgstr "Begränsa roller och behörighetshantering med följande policyer"
3219
 
3220
+ #: ../settings.php:468
3221
  msgid "Users with these roles are permitted to add new roles"
3222
  msgstr "Användare med dessa roller tillåts att lägga till nya roller"
3223
 
3224
+ #: ../settings.php:473
3225
  msgid "Users with these roles are permitted to change role capabilities"
3226
  msgstr "Användare med dessa roller tillåts att ändra rollbehörigheter"
3227
 
3228
+ #: ../settings.php:486
3229
  msgid "Protect site settings"
3230
  msgstr "Skydda webbplatsinställningar"
3231
 
3232
+ #: ../settings.php:490
3233
  msgid "Restrict updating site settings with the following policies"
3234
  msgstr "Begränsa uppdateringen av webbplatsinställningarna med följande policyer"
3235
 
3236
+ #: ../settings.php:496
3237
  msgid "Users with these roles are permitted to change protected settings"
3238
  msgstr "Användare med dessa roller tillåts att ändra skyddade inställningar"
3239
 
3240
+ #: ../settings.php:501
3241
  msgid "Protected settings"
3242
  msgstr "Skyddade inställningar"
3243
 
3244
+ #: ../settings.php:529
3245
  msgid "Do not apply these policy to the IP addresses in the White IP Access List"
3246
  msgstr "Tillämpa inte denna policy på IP-adresserna i den vita IP-åtkomstlistan"
3247
 
3248
+ #: ../cerber-ds.php:800
3249
  msgid "Administration Email Address"
3250
  msgstr "E-postadress för administration"
3251
 
3252
+ #: ../cerber-ds.php:801
3253
  msgid "New User Default Role"
3254
  msgstr "Standardroll för ny användare"
3255
 
3256
+ #: ../cerber-ds.php:802
3257
  msgid "Site Address (URL)"
3258
  msgstr "Webbplatsadress (URL"
3259
 
3260
+ #: ../cerber-ds.php:803
3261
  msgid "WordPress Address (URL)"
3262
  msgstr "WordPressadress (URL)"
3263
 
3264
+ #: ../cerber-ds.php:804
3265
  msgid "Anyone can register"
3266
  msgstr "Vem som helst kan registrera"
3267
 
3268
+ #: ../cerber-ds.php:805
3269
  msgid "Active Plugins"
3270
  msgstr "Aktiva tillägg"
3271
 
3272
+ #: ../cerber-ds.php:806
3273
  msgid "Active Theme"
3274
  msgstr "Aktivt tema"
3275
 
3289
  msgid "All countries"
3290
  msgstr "Alla länder"
3291
 
3292
+ #: ../nexus/cerber-nexus-master.php:67
3293
  msgid "Show homepage in the Website column"
3294
  msgstr ""
3295
 
3296
+ #: ../nexus/cerber-nexus-master.php:69
3297
  msgid "Hide server IP address"
3298
  msgstr "Dölj serverns IP-adress"
3299
 
3300
+ #: ../dashboard.php:321
3301
  msgid "IP address, range, wildcard, or CIDR"
3302
  msgstr "IP-adress, intervall, jokertecken eller CIDR"
3303
 
3304
+ #: ../dashboard.php:322
3305
  msgid "Add Entry"
3306
  msgstr ""
3307
 
3308
+ #: ../dashboard.php:5122
3309
  msgid "The IP address you are trying to add is already in the list"
3310
  msgstr "IP-adressen som du försöker lägga till finns redan i listan"
3311
 
3312
+ #: ../common.php:1366
3313
  msgid "IP subnet blocked"
3314
  msgstr "IP-undernät blockerat"
3315
 
3316
+ #: ../common.php:1403
3317
  msgid "User row update denied"
3318
  msgstr "Uppdatering av användarrad nekad"
3319
 
3320
+ #: ../common.php:1406
3321
  msgid "User metadata update denied"
3322
  msgstr ""
3323
 
3324
+ #: ../settings.php:1327
3325
  msgid "Any activity"
3326
  msgstr ""
3327
 
3329
  msgid "A database error occurred while importing access list entries"
3330
  msgstr ""
3331
 
3332
+ #: ../settings.php:248
3333
  msgid "Enable authentication log monitoring"
3334
  msgstr ""
3335
 
3336
+ #: ../settings.php:280 ../settings.php:843
3337
  msgid "Keep log records of not logged in visitors for"
3338
  msgstr ""
3339
 
3340
+ #: ../settings.php:286 ../settings.php:849
3341
  msgid "Keep log records of logged in users for"
3342
  msgstr ""
3343
 
3349
  msgid "WP Cerber Personal Data Eraser"
3350
  msgstr ""
3351
 
3352
+ #: ../settings.php:613
3353
  msgid "Personal Data"
3354
  msgstr "Personlig data"
3355
 
3356
+ #: ../settings.php:619
3357
  msgid "Enable data erase"
3358
  msgstr "Aktivera dataradering"
3359
 
3360
+ #: ../settings.php:626
3361
  msgid "Terminate user sessions"
3362
  msgstr "Avsluta användarsessioner"
3363
 
3364
+ #: ../settings.php:627
3365
  msgid "Delete user sessions data when user data is erased"
3366
  msgstr "Ta bort användarsessionsdata när användardata raderas"
3367
 
3368
+ #: ../settings.php:633
3369
  msgid "Enable data export"
3370
  msgstr "Aktivera dataexport"
3371
 
3372
+ #: ../settings.php:640
3373
  msgid "Include activity log events"
3374
  msgstr "Inkludera aktivitetslogghändelser"
3375
 
3376
+ #: ../settings.php:646
3377
  msgid "Include traffic log entries"
3378
  msgstr ""
3379
 
3380
+ #: ../settings.php:649
3381
  msgid "Request URL"
3382
  msgstr ""
3383
 
3384
+ #: ../settings.php:650
3385
  msgid "Form fields data"
3386
  msgstr ""
3387
 
3388
+ #: ../settings.php:651
3389
  msgid "Cookies"
3390
  msgstr "Cookies"
3391
 
3392
+ #: ../dashboard.php:72
3393
  msgid "Cerber anti-spam settings"
3394
  msgstr ""
3395
 
3396
+ #: ../dashboard.php:72 ../settings.php:1166
3397
  msgid "Anti-spam"
3398
  msgstr ""
3399
 
3400
+ #: ../cerber-addons.php:289 ../dashboard.php:80 ../dashboard.php:80
3401
  msgid "Add-ons"
3402
  msgstr "Utökningar"
3403
 
3404
+ #: ../dashboard.php:4826
3405
  msgid "Anti-spam and bot detection settings"
3406
  msgstr ""
3407
 
3408
+ #: ../dashboard.php:4828
3409
  msgid "Anti-spam engine"
3410
  msgstr ""
3411
 
3412
+ #: ../common.php:1515
3413
  msgid "Multiple erroneous requests"
3414
  msgstr "Flera felaktiga förfrågningar"
3415
 
3425
  msgid "Enable after %s failed login attempts in the last %s minutes"
3426
  msgstr "Aktivera efter %s misslyckade inloggningsförsök under de senaste %s minuterna"
3427
 
3428
+ #: ../settings.php:153
3429
  msgid "Limit"
3430
  msgstr "Gräns"
3431
 
3432
+ #: ../settings.php:386
3433
  msgid "Restrict or completely block access to the WordPress REST API according to your needs"
3434
  msgstr "Begränsa eller blockera åtkomst fullständigt till WordPress REST API enligt dina behov"
3435
 
3436
+ #: ../settings.php:615
3437
  msgid "These features help your organization to be in compliance with personal data protection laws"
3438
  msgstr ""
3439
 
3440
+ #: ../settings.php:673
3441
  msgid "if empty, the website administrator email %s will be used"
3442
  msgstr "om tom, kommer webbplatsadministratörens e-postadress %s att användas"
3443
 
3444
+ #: ../settings.php:677
3445
  msgid "notifications are allowed per hour (0 means unlimited)"
3446
  msgstr "aviseringar är tillåtna per timme (0 betyder obegränsat)"
3447
 
3448
+ #: ../settings.php:688
3449
  msgid "Get notified instantly with mobile and desktop notifications"
3450
  msgstr "Bli aviserad omedelbart med aviseringar på mobil och stationär dator"
3451
 
3452
+ #: ../settings.php:703
3453
  msgid "Weekly report is a summary of all activities and suspicious events occurred during the last seven days"
3454
  msgstr "Veckorapport är en sammanfattning av alla aktiviteter och misstänkta händelser inträffade under de senaste sju dagarna"
3455
 
3456
+ #: ../settings.php:716 ../settings.php:977
3457
  msgid "if empty, the email addresses from the notification settings will be used"
3458
  msgstr "om tom, kommer e-postadresserna från aviseringsinställningarna att användas"
3459
 
3460
+ #: ../settings.php:728
3461
  msgid "Traffic Inspector is a context-aware web application firewall (WAF) that protects your website by recognizing and denying malicious HTTP requests"
3462
  msgstr ""
3463
 
3464
+ #: ../settings.php:757
3465
  msgid "Block IP addresses that send excessive requests for non-existing pages or scan website for security breaches"
3466
  msgstr ""
3467
 
3468
+ #: ../settings.php:776
3469
  msgid "Traffic Logging"
3470
  msgstr "Trafikloggning"
3471
 
3472
+ #: ../settings.php:777
3473
  msgid "Enable optional traffic logging if you need to monitor suspicious and malicious activity or solve security issues"
3474
  msgstr "Aktivera valfri trafikloggning om du behöver övervaka misstänksam och skadlig aktivitet eller lösa säkerhetsproblem"
3475
 
3476
+ #: ../settings.php:859
3477
  msgid "The scanner monitors file changes, verifies the integrity of WordPress, plugins, and themes, and detects malware"
3478
  msgstr "Skannern övervakar filändringar, verifierar integriteten i WordPress, tillägg och teman och upptäcker skadlig kod"
3479
 
3480
+ #: ../settings.php:881
3481
  msgid "Specify directories to exclude from scanning. One directory per line."
3482
  msgstr "Specificera kataloger att exkludera från skanning. En katalog per rad."
3483
 
3484
+ #: ../settings.php:929
3485
  msgid "The scanner automatically scans the website, removes malware and sends email reports with the results of a scan"
3486
  msgstr "Skannern skannar automatiskt webbplatsen, tar bort skadlig kod och skickar e-postrapporter med resultatet av en skanning"
3487
 
3488
+ #: ../settings.php:946
3489
  msgid "Configure what issues to include in the email report and the condition for sending reports"
3490
  msgstr "Konfigurera vilka problem som ska inkluderas i e-postrapporten och villkoret för att skicka rapporter"
3491
 
3492
+ #: ../settings.php:988
3493
  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"
3494
  msgstr ""
3495
 
3496
+ #: ../settings.php:1054
3497
  msgid "Cerber anti-spam engine"
3498
  msgstr ""
3499
 
3500
+ #: ../settings.php:1055
3501
  msgid "Spam protection for comment, registration and contact forms on a website"
3502
  msgstr "Skräppostskydd för kommentarer, registrering och kontaktformulär på en webbplats"
3503
 
3504
+ #: ../settings.php:1076
3505
  msgid "Adjust anti-spam engine"
3506
  msgstr ""
3507
 
3508
+ #: ../settings.php:1077
3509
  msgid "These settings enable you to fine-tune the behavior of anti-spam algorithms and avoid false positives"
3510
  msgstr ""
3511
 
3512
+ #: ../settings.php:1101
3513
  msgid "How the plugin processes comments submitted through the standard comment form"
3514
  msgstr "Hur tillägget bearbetar kommentarer som skickats in via standardformuläret för kommentarer"
3515
 
3517
  msgid "Settings updated"
3518
  msgstr "Inställningar uppdaterade"
3519
 
3520
+ #: ../dashboard.php:1148
3521
  msgid "Request ID"
3522
  msgstr ""
3523
 
3524
+ #: ../dashboard.php:1149
3525
  msgid "Search in URL"
3526
  msgstr "Sök i URL"
3527
 
3528
+ #: ../settings.php:888 ../settings.php:897
3529
  msgid "Executable files"
3530
  msgstr "Körbara filer"
3531
 
3532
+ #: ../settings.php:889 ../settings.php:898
3533
  msgid "All files"
3534
  msgstr "Alla filer"
3535
 
3536
+ #: ../dashboard.php:1564
3537
  msgid "Active sessions"
3538
  msgstr "Aktiva sessioner"
3539
 
3540
+ #: ../settings.php:598
3541
  msgid "minutes (leave empty to use the default WordPress value)"
3542
  msgstr "minuter (lämna tomt för att använda standardvärdet för WordPress)"
3543
 
3544
+ #: ../settings.php:902
3545
  msgid "Change file permissions when necessary"
3546
  msgstr "Ändra filbehörigheter när det är nödvändigt"
3547
 
3549
  msgid "Load entries"
3550
  msgstr ""
3551
 
3552
+ #: ../dashboard.php:984 ../dashboard.php:4075
3553
  msgid "My IP"
3554
  msgstr "Mitt IP"
3555
 
3556
+ #: ../dashboard.php:4915
3557
  msgid "Analytics"
3558
  msgstr ""
3559
 
3560
+ #: ../dashboard.php:4964
3561
  msgid "Manage Settings"
3562
  msgstr "Hantera inställningar"
3563
 
3564
+ #: ../dashboard.php:4966
3565
  msgid "Diagnostic Log"
3566
  msgstr "Diagnoslogg"
3567
 
3568
+ #: ../common.php:1359
3569
  msgid "User deleted"
3570
  msgstr "Användare borttagen"
3571
 
3572
+ #: ../common.php:1444
3573
  msgid "Email address is prohibited"
3574
  msgstr "E-postadress är förbjuden"
3575
 
3576
+ #: ../admin/cerber-admin.php:761
3577
  msgid "Quarantined"
3578
  msgstr ""
3579
 
3580
+ #: ../admin/cerber-admin.php:917 ../admin/cerber-admin.php:1327
3581
  msgid "Modified"
3582
  msgstr "Ändrad"
3583
 
3584
+ #: ../admin/cerber-admin.php:991
3585
  msgid "Files without extension"
3586
  msgstr ""
3587
 
3588
+ #: ../admin/cerber-admin.php:992
3589
  msgid "Back to list"
3590
  msgstr "Tillbaka till listan"
3591
 
3592
+ #: ../admin/cerber-admin.php:1052
3593
  msgid "Brief summary"
3594
  msgstr "Kort sammanfattning"
3595
 
3596
+ #: ../admin/cerber-admin.php:1103
3597
  msgid "Folder"
3598
  msgstr "Mapp"
3599
 
3600
+ #: ../admin/cerber-admin.php:1104
3601
  msgid "Path"
3602
  msgstr "Sökväg"
3603
 
3604
+ #: ../admin/cerber-admin.php:1105 ../admin/cerber-admin.php:1199
3605
  msgid "Files"
3606
  msgstr "Filer"
3607
 
3608
+ #: ../admin/cerber-admin.php:1106 ../admin/cerber-admin.php:1200
3609
  msgid "Space Occupied"
3610
  msgstr "Utrymme ockuperat"
3611
 
3612
+ #: ../admin/cerber-admin.php:1170
3613
  msgid "No extension"
3614
  msgstr ""
3615
 
3616
+ #: ../admin/cerber-admin.php:1195
3617
  msgid "File extensions statistics"
3618
  msgstr ""
3619
 
3620
+ #: ../admin/cerber-admin.php:1198
3621
  msgid "Extension"
3622
  msgstr ""
3623
 
3624
+ #: ../admin/cerber-admin.php:1201
3625
  msgid "Smallest"
3626
  msgstr "Minsta"
3627
 
3628
+ #: ../admin/cerber-admin.php:1202
3629
  msgid "Largest"
3630
  msgstr "Största"
3631
 
3632
+ #: ../admin/cerber-admin.php:1203
3633
  msgid "Average Size"
3634
  msgstr ""
3635
 
3636
+ #: ../admin/cerber-admin.php:1204
3637
  msgid "Oldest"
3638
  msgstr "Äldsta"
3639
 
3640
+ #: ../admin/cerber-admin.php:1205
3641
  msgid "Newest"
3642
  msgstr "Nyaste"
3643
 
3644
+ #: ../admin/cerber-admin.php:1221
3645
  msgid "Top 10 largest files"
3646
  msgstr ""
3647
 
3648
+ #: ../admin/cerber-admin.php:1325
3649
  msgid "File Name"
3650
  msgstr "Filnamn"
3651
 
3652
+ #: ../settings.php:328
3653
  msgid "Date format for CSV export"
3654
  msgstr "Datumformat för CSV-export"
3655
 
3656
+ #: ../settings.php:329
3657
  msgid "Use ISO 8601 date format for CSV export files"
3658
  msgstr "Använd ISO 8601-datumformat för CSV-exportfiler"
3659
 
3660
+ #: ../settings.php:333
3661
  msgid "Use English"
3662
  msgstr "Använd engelska"
3663
 
3664
+ #: ../settings.php:338
3665
  msgid "My IP address"
3666
  msgstr "Min IP-adress"
3667
 
3668
+ #: ../settings.php:339
3669
  msgid "Do not add my IP address to the White IP Access List upon plugin activation"
3670
+ msgstr "Lägg inte till min IP-adress i den vita IP-åtkomstlistan när tillägget aktiveras"
3671
 
3672
  #: ../cerber-tools.php:52
3673
  msgid "Load the default plugin settings"
3675
 
3676
  #: ../cerber-tools.php:53
3677
  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."
3678
+ msgstr "När du klickar på knappen nedan laddas standardinställningarna för WP Cerber. Den anpassade URL:en för inloggning och åtkomstlistorna kommer inte att ändras."
3679
 
3680
  #: ../cerber-tools.php:54
3681
  msgid "To get the most out of WP Cerber, follow these steps:"
3682
  msgstr "Följ de här stegen för att få ut mesta möjliga av WP Cerber:"
3683
 
3684
+ #: ../common.php:1453
3685
  msgid "IP whitelisted"
3686
+ msgstr "IP vitlistad"
3687
 
3688
+ #: ../dashboard.php:4074
3689
  msgid "My requests"
3690
  msgstr ""
3691
 
3692
+ #: ../dashboard.php:3426
3693
  msgid "Log into the website"
3694
+ msgstr "Logga in på webbplatsen"
3695
 
3696
  #. Name of the plugin
3697
  #:
3698
  msgid "WP Cerber Security, Anti-spam & Malware Scan"
3699
  msgstr ""
3700
 
3701
+ #: ../common.php:1395 ../common.php:1511
3702
  msgid "Probing for vulnerable code"
3703
+ msgstr "Sonderar efter sårbar kod"
3704
 
3705
+ #: ../cerber-load.php:5306
3706
  msgid "Your IP address %s has been added to the White IP Access List"
3707
+ msgstr "Din IP-adress %s har lagts till i den vita IP-åtkomstlistan"
3708
 
3709
  #: ../cerber-users.php:1022
3710
  msgid "Search for IP address"
3711
+ msgstr "Sök efter IP-adress"
3712
 
3713
+ #: ../settings.php:785
3714
  msgid "Minimal"
3715
  msgstr ""
3716
 
3717
+ #: ../settings.php:791
3718
  msgid "Do not log known crawlers"
3719
  msgstr ""
3720
 
3721
+ #: ../settings.php:795
3722
  msgid "Do not log these locations"
3723
+ msgstr "Logga inte dessa platser"
3724
 
3725
+ #: ../settings.php:799
3726
  msgid "Specify URL paths to exclude requests from logging. One item per line."
3727
  msgstr ""
3728
 
3729
+ #: ../settings.php:802
3730
  msgid "Do not log these User-Agents"
3731
  msgstr ""
3732
 
3733
+ #: ../settings.php:806
3734
  msgid "Specify User-Agents to exclude requests from logging. One item per line."
3735
  msgstr ""
3736
 
3737
+ #: ../dashboard.php:4200
3738
+ msgid "Unknown Google's bot"
3739
+ msgstr ""
3740
+
3741
+ #: ../common.php:1450
3742
+ msgid "IP address is not allowed"
3743
+ msgstr "IP-adress är inte tillåten"
3744
+
3745
+ #: ../settings.php:554
3746
+ msgid "Only users from IP addresses in the White IP Access List may register on the website"
3747
+ msgstr "Endast användare från IP-adresser i den vita IP-åtkomstlistan får registrera sig på webbplatsen"
3748
+
3749
+ #: ../settings.php:559
3750
+ msgid "User message"
3751
+ msgstr ""
3752
+
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 Aug 12 2020 13:22:49 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"
@@ -96,14 +96,14 @@ msgstr[0] ""
96
  msgstr[1] ""
97
 
98
  #: ../cerber-load.php:635 ../cerber-load.php:647 ../cerber-load.php:654 ../cerber-
99
- #: load.php:996 ../cerber-load.php:1535 ../cerber-load.php:1542 ../cerber-load.
100
- #: php:1548 ../cerber-load.php:1553 ../cerber-load.php:1560 ../cerber-load.php:
101
- #: 1567 ../cerber-load.php:1573 ../cerber-load.php:1580 ../cerber-load.php:1751 ..
102
- #: /cerber-load.php:1888 ../nexus/cerber-nexus-slave.php:204 ../nexus/cerber-
103
  #: nexus-slave.php:215 ../admin/cerber-admin.php:866 ../admin/cerber-settings.php:
104
  #: 653 ../admin/cerber-settings.php:673 ../admin/cerber-settings.php:753 ..
105
- #: /common.php:367 ../common.php:445 ../common.php:450 ../common.php:456 ..
106
- #: /common.php:460
107
  msgid "ERROR:"
108
  msgstr ""
109
 
@@ -119,147 +119,147 @@ msgid ""
119
  "contacts here: https://wpcerber.com/contact/"
120
  msgstr ""
121
 
122
- #: ../cerber-load.php:1105
123
  #, php-format
124
  msgid ""
125
  "<strong>ERROR</strong>: The password you entered for the username %s is "
126
  "incorrect."
127
  msgstr ""
128
 
129
- #: ../cerber-load.php:1535 ../cerber-load.php:1543 ../cerber-load.php:1549 ..
130
- #: /cerber-load.php:1574 ../cerber-load.php:1581
131
  msgid "You are not allowed to register."
132
  msgstr ""
133
 
134
- #: ../cerber-load.php:1561
135
  msgid "Username is not allowed. Please choose another one."
136
  msgstr ""
137
 
138
- #: ../cerber-load.php:1568
139
  msgid "Email address is not permitted."
140
  msgstr ""
141
 
142
- #: ../cerber-load.php:1568
143
  msgid "Please choose another one."
144
  msgstr ""
145
 
146
- #: ../cerber-load.php:1888
147
  msgid "Sorry, human verification failed."
148
  msgstr ""
149
 
150
- #: ../cerber-load.php:4084
151
  msgid "We're sorry, you are not allowed to proceed"
152
  msgstr ""
153
 
154
- #: ../cerber-load.php:4200
155
  msgid "WP Cerber notify"
156
  msgstr ""
157
 
158
- #: ../cerber-load.php:4224
159
  msgid "Citadel mode is activated"
160
  msgstr ""
161
 
162
- #: ../cerber-load.php:4226
163
  #, php-format
164
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
165
  msgstr ""
166
 
167
- #: ../cerber-load.php:4227
168
  #, php-format
169
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
170
  msgstr ""
171
 
172
- #: ../cerber-load.php:4228 ../cerber-load.php:5044
173
  msgid "View activity in dashboard"
174
  msgstr ""
175
 
176
- #: ../cerber-load.php:4252
177
  msgid "unspecified"
178
  msgstr ""
179
 
180
- #: ../cerber-load.php:4255
181
  msgid "Number of lockouts is increasing"
182
  msgstr ""
183
 
184
- #: ../cerber-load.php:4257
185
  msgid "Number of active lockouts"
186
  msgstr ""
187
 
188
- #: ../cerber-load.php:4258
189
  #, php-format
190
  msgid "Last lockout was added: %s for IP %s"
191
  msgstr ""
192
 
193
- #: ../cerber-load.php:4259 ../dashboard.php:200
194
  msgid "Reason"
195
  msgstr ""
196
 
197
- #: ../cerber-load.php:4260
198
  msgid "View activity for this IP"
199
  msgstr ""
200
 
201
- #: ../cerber-load.php:4261
202
  msgid "View lockouts in dashboard"
203
  msgstr ""
204
 
205
- #: ../cerber-load.php:4264 ../cerber-load.php:4266
206
  msgid "A new version of WP Cerber is available to install"
207
  msgstr ""
208
 
209
- #: ../cerber-load.php:4265
210
  msgid "Hi!"
211
  msgstr ""
212
 
213
- #: ../cerber-load.php:4268 ../cerber-load.php:4279 ../nexus/cerber-slave-list.php:
214
  #: 44
215
  msgid "Website"
216
  msgstr ""
217
 
218
- #: ../cerber-load.php:4271 ../cerber-load.php:4272
219
  msgid "The WP Cerber security plugin has been deactivated"
220
  msgstr ""
221
 
222
- #: ../cerber-load.php:4274
223
  msgid "Not logged in"
224
  msgstr ""
225
 
226
- #: ../cerber-load.php:4280
227
  msgid "By user"
228
  msgstr ""
229
 
230
- #: ../cerber-load.php:4281
231
  msgid "From IP address"
232
  msgstr ""
233
 
234
- #: ../cerber-load.php:4284
235
  msgid "From country"
236
  msgstr ""
237
 
238
- #: ../cerber-load.php:4288
239
  msgid "The WP Cerber security plugin is now active"
240
  msgstr ""
241
 
242
- #: ../cerber-load.php:4289 ../cerber-load.php:5322
243
  msgid "WP Cerber is now active and has started protecting your site"
244
  msgstr ""
245
 
246
- #: ../cerber-load.php:4291 ../cerber-load.php:5326
247
  msgid "Getting Started Guide"
248
  msgstr ""
249
 
250
- #: ../cerber-load.php:4300
251
  msgid "New Custom login URL"
252
  msgstr ""
253
 
254
- #: ../cerber-load.php:4304 ../cerber-load.php:4305
255
  msgid "A new activity has been recorded"
256
  msgstr ""
257
 
258
- #: ../cerber-load.php:4310
259
  msgid "Weekly report"
260
  msgstr ""
261
 
262
- #: ../cerber-load.php:4313 ../cerber-load.php:4323
263
  msgid "To change reporting settings visit"
264
  msgstr ""
265
 
@@ -297,7 +297,7 @@ msgid "Attempts to log in with non-existing usernames"
297
  msgstr ""
298
 
299
  #: ../cerber-load.php:5003 ../cerber-users.php:1163 ../dashboard.php:1809 ..
300
- #: /dashboard.php:2356 ../dashboard.php:4776 ../settings.php:277
301
  msgid "Activity"
302
  msgstr ""
303
 
@@ -344,142 +344,142 @@ msgstr ""
344
  msgid "Import settings"
345
  msgstr ""
346
 
347
- #: ../cerber-load.php:7220
348
  msgid "Awesome!"
349
  msgstr ""
350
 
351
- #: ../cerber-scanner.php:938 ../dashboard.php:1798
352
  msgid "Full Scan"
353
  msgstr ""
354
 
355
- #: ../cerber-scanner.php:938 ../dashboard.php:1796
356
  msgid "Quick Scan"
357
  msgstr ""
358
 
359
- #: ../cerber-scanner.php:1439
360
  msgid "Verified"
361
  msgstr ""
362
 
363
- #: ../cerber-scanner.php:1445
364
  msgid "Vulnerability found"
365
  msgstr ""
366
 
367
- #: ../cerber-scanner.php:1446
368
  msgid "Integrity data not found"
369
  msgstr ""
370
 
371
- #: ../cerber-scanner.php:1447
372
  msgid "Unable to check the integrity of the plugin due to a network error"
373
  msgstr ""
374
 
375
- #: ../cerber-scanner.php:1448
376
  msgid "Unable to check the integrity of WordPress files due to a network error"
377
  msgstr ""
378
 
379
- #: ../cerber-scanner.php:1449
380
  msgid "Unable to check the integrity of the theme due to a network error"
381
  msgstr ""
382
 
383
- #: ../cerber-scanner.php:1450
384
  msgid "Unable to check the integrity due to a DB error"
385
  msgstr ""
386
 
387
- #: ../cerber-scanner.php:1452
388
- msgid "Local file doesn't exist"
389
  msgstr ""
390
 
391
- #: ../cerber-scanner.php:1454
392
  msgid "Unable to process file"
393
  msgstr ""
394
 
395
- #: ../cerber-scanner.php:1455 ../cerber-scanner.php:4644
396
  msgid "Unable to open file"
397
  msgstr ""
398
 
399
- #: ../cerber-scanner.php:1457 ../admin/cerber-admin.php:79
400
  msgid "Checksum mismatch"
401
  msgstr ""
402
 
403
- #: ../cerber-scanner.php:1460
404
  msgid "Suspicious code found"
405
  msgstr ""
406
 
407
- #: ../cerber-scanner.php:1461
408
  msgid "Malicious code found"
409
  msgstr ""
410
 
411
- #: ../cerber-scanner.php:1462
412
  msgid "Unattended suspicious file"
413
  msgstr ""
414
 
415
- #: ../cerber-scanner.php:1463
416
  msgid "Executable code found"
417
  msgstr ""
418
 
419
- #: ../cerber-scanner.php:1466 ../cerber-scanner.php:2706
420
  msgid "Suspicious directives found"
421
  msgstr ""
422
 
423
- #: ../cerber-scanner.php:1467
424
  msgid "Unwanted file extension"
425
  msgstr ""
426
 
427
- #: ../cerber-scanner.php:1469
428
  msgid "Content has been modified"
429
  msgstr ""
430
 
431
- #: ../cerber-scanner.php:1470
432
  msgid "New file"
433
  msgstr ""
434
 
435
- #: ../cerber-scanner.php:1472
436
  msgid "Unable to delete"
437
  msgstr ""
438
 
439
- #: ../cerber-scanner.php:1473
440
  msgid "File deleted"
441
  msgstr ""
442
 
443
- #: ../cerber-scanner.php:1474
444
  msgid "File recovered"
445
  msgstr ""
446
 
447
- #: ../cerber-scanner.php:1493 ../cerber-users.php:20 ../cerber-users.php:446 ..
448
- #: /dashboard.php:1795 ../dashboard.php:1797 ../settings.php:735 ../settings.php:
449
- #: 763 ../settings.php:887 ../settings.php:896 ../settings.php:1239
450
  msgid "Disabled"
451
  msgstr ""
452
 
453
- #: ../cerber-scanner.php:1494
454
  msgid "Every hour"
455
  msgstr ""
456
 
457
- #: ../cerber-scanner.php:1495
458
  msgid "Every 3 hours"
459
  msgstr ""
460
 
461
- #: ../cerber-scanner.php:1496
462
  msgid "Every 6 hours"
463
  msgstr ""
464
 
465
- #: ../cerber-scanner.php:2526
466
  msgid "Custom signature found"
467
  msgstr ""
468
 
469
- #: ../cerber-scanner.php:2701
470
  msgid ""
471
  "This file contains executable code and may contain obfuscated malware. If "
472
  "this file is a part of a theme or a plugin, it must be located in the theme "
473
  "or the plugin folder. No exception, no excuses."
474
  msgstr ""
475
 
476
- #: ../cerber-scanner.php:2702
477
  msgid ""
478
  "The scanner recognizes this file as \"ownerless\" or \"not bundled\" because it "
479
  "does not belong to any known part of the website and should not be here."
480
  msgstr ""
481
 
482
- #: ../cerber-scanner.php:2703
483
  #, php-format
484
  msgid ""
485
  "It may remain after upgrading to a newer version of %s. It also may be a "
@@ -487,15 +487,15 @@ msgid ""
487
  "made (bespoke) plugin or theme."
488
  msgstr ""
489
 
490
- #: ../cerber-scanner.php:2704
491
  msgid "Suspicious code instruction found"
492
  msgstr ""
493
 
494
- #: ../cerber-scanner.php:2705
495
  msgid "Suspicious code signatures found"
496
  msgstr ""
497
 
498
- #: ../cerber-scanner.php:2707
499
  msgid ""
500
  "The contents of the file have been changed and do not match what exists in "
501
  "the official WordPress repository or a reference file you have uploaded "
@@ -503,114 +503,128 @@ msgid ""
503
  "has been tampered with."
504
  msgstr ""
505
 
506
- #: ../cerber-scanner.php:2708
507
  #, php-format
508
  msgid ""
509
  "To solve this issue you have to reinstall %s or update it to the latest "
510
  "version."
511
  msgstr ""
512
 
513
- #: ../cerber-scanner.php:2709
514
  msgid "Please upload a reference ZIP archive"
515
  msgstr ""
516
 
517
- #: ../cerber-scanner.php:2710
518
  msgid "Resolve issue"
519
  msgstr ""
520
 
521
- #: ../cerber-scanner.php:3757
 
 
 
 
 
522
  msgid "Preparing for the scan"
523
  msgstr ""
524
 
525
- #: ../cerber-scanner.php:3758
526
  msgid "Scanning folders for files"
527
  msgstr ""
528
 
529
- #: ../cerber-scanner.php:3759
530
  msgid "Scanning the upload folder for files"
531
  msgstr ""
532
 
533
- #: ../cerber-scanner.php:3760
534
  msgid "Scanning the temp folder for files"
535
  msgstr ""
536
 
537
- #: ../cerber-scanner.php:3761
538
  msgid "Scanning the session folder for files"
539
  msgstr ""
540
 
541
- #: ../cerber-scanner.php:3762
542
  msgid "Parsing the list of files"
543
  msgstr ""
544
 
545
- #: ../cerber-scanner.php:3763
546
  msgid "Checking for new and modified files"
547
  msgstr ""
548
 
549
- #: ../cerber-scanner.php:3764
550
  msgid "Verifying the integrity of WordPress"
551
  msgstr ""
552
 
553
- #: ../cerber-scanner.php:3765
554
  msgid "Recovering WordPress files"
555
  msgstr ""
556
 
557
- #: ../cerber-scanner.php:3766
558
  msgid "Verifying the integrity of the plugins"
559
  msgstr ""
560
 
561
- #: ../cerber-scanner.php:3767
562
  msgid "Recovering plugins files"
563
  msgstr ""
564
 
565
- #: ../cerber-scanner.php:3768
566
  msgid "Verifying the integrity of the themes"
567
  msgstr ""
568
 
569
- #: ../cerber-scanner.php:3769
570
  msgid "Searching for malicious code"
571
  msgstr ""
572
 
573
- #: ../cerber-scanner.php:3770
574
  msgid "Finalizing the scan"
575
  msgstr ""
576
 
577
- #: ../cerber-scanner.php:4773
 
 
 
 
 
 
 
 
 
578
  msgid "Full Scan Report"
579
  msgstr ""
580
 
581
- #: ../cerber-scanner.php:4773
582
  msgid "Quick Scan Report"
583
  msgstr ""
584
 
585
- #: ../cerber-scanner.php:4786
586
  msgid "Files scanned"
587
  msgstr ""
588
 
589
- #: ../cerber-scanner.php:4817 ../admin/cerber-admin.php:103
590
  msgid "Issues total"
591
  msgstr ""
592
 
593
- #: ../cerber-scanner.php:4871
594
  msgid "Deleted"
595
  msgstr ""
596
 
597
- #: ../cerber-scanner.php:4875
598
  msgid "Recovered"
599
  msgstr ""
600
 
601
- #: ../cerber-scanner.php:4924
602
  msgid "Automatically moved to quarantine"
603
  msgstr ""
604
 
605
- #: ../cerber-scanner.php:4925
606
  msgid "Automatically deleted"
607
  msgstr ""
608
 
609
- #: ../cerber-scanner.php:4928
610
  msgid "Automatically recovered"
611
  msgstr ""
612
 
613
- #: ../cerber-scanner.php:4940
614
  msgid "To view full report visit"
615
  msgstr ""
616
 
@@ -725,11 +739,11 @@ msgstr ""
725
  msgid "Unsubscribe"
726
  msgstr ""
727
 
728
- #: ../cerber-lab.php:837
729
  msgid "Want to make WP Cerber even more powerful?"
730
  msgstr ""
731
 
732
- #: ../cerber-lab.php:838
733
  msgid ""
734
  "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. "
735
  "This helps the plugin team to develop new algorithms for WP Cerber that will "
@@ -737,15 +751,15 @@ msgid ""
737
  "everyday. You can disable the sending in the plugin settings at any time."
738
  msgstr ""
739
 
740
- #: ../cerber-lab.php:839
741
  msgid "OK, nail them all"
742
  msgstr ""
743
 
744
- #: ../cerber-lab.php:840
745
  msgid "NO, maybe later"
746
  msgstr ""
747
 
748
- #: ../cerber-lab.php:841 ../admin/cerber-settings.php:100 ../admin/cerber-
749
  #: settings.php:270
750
  msgid "Know more"
751
  msgstr ""
@@ -946,7 +960,7 @@ msgid "Switch to"
946
  msgstr ""
947
 
948
  #: ../nexus/cerber-slave-list.php:333 ../dashboard.php:434 ../dashboard.php:3710 .
949
- #: ./dashboard.php:4277 ../common.php:1528 ../whois.php:222 ../whois.php:253
950
  msgid "Unknown"
951
  msgstr ""
952
 
@@ -955,7 +969,7 @@ msgid "Vulnerabilities"
955
  msgstr ""
956
 
957
  #: ../nexus/cerber-slave-list.php:347 ../dashboard.php:1649 ../dashboard.php:1740
958
- #: ../dashboard.php:1789 ../common.php:1666
959
  msgid "Never"
960
  msgstr ""
961
 
@@ -1071,7 +1085,7 @@ msgctxt "e.g. blocked by John at 11:00"
1071
  msgid "blocked by %s at %s"
1072
  msgstr ""
1073
 
1074
- #: ../cerber-users.php:68 ../settings.php:535
1075
  msgid "User Message"
1076
  msgstr ""
1077
 
@@ -1123,7 +1137,7 @@ msgstr ""
1123
  msgid "Redirect user after logout"
1124
  msgstr ""
1125
 
1126
- #: ../cerber-users.php:432 ../settings.php:597
1127
  msgid "User session expiration time"
1128
  msgstr ""
1129
 
@@ -1256,7 +1270,7 @@ msgstr ""
1256
  msgid "Finished"
1257
  msgstr ""
1258
 
1259
- #: ../admin/cerber-admin.php:51 ../settings.php:259
1260
  msgid "Duration"
1261
  msgstr ""
1262
 
@@ -1516,7 +1530,7 @@ msgstr ""
1516
  msgid "Notify admin if the number of active lockouts above"
1517
  msgstr ""
1518
 
1519
- #: ../admin/cerber-settings.php:377 ../settings.php:271
1520
  msgid "Click to send test"
1521
  msgstr ""
1522
 
@@ -1653,7 +1667,7 @@ msgstr ""
1653
  msgid "Cerber anti-spam settings"
1654
  msgstr ""
1655
 
1656
- #: ../dashboard.php:72 ../settings.php:1166
1657
  msgid "Anti-spam"
1658
  msgstr ""
1659
 
@@ -1795,12 +1809,12 @@ msgstr ""
1795
  msgid "Suspicious activity"
1796
  msgstr ""
1797
 
1798
- #: ../dashboard.php:978 ../common.php:1365
1799
  msgid "IP blocked"
1800
  msgstr ""
1801
 
1802
  #: ../dashboard.php:980 ../dashboard.php:1764 ../dashboard.php:4064 ../settings.
1803
- #: php:400 ../settings.php:1085
1804
  msgid "Logged in users"
1805
  msgstr ""
1806
 
@@ -1840,7 +1854,7 @@ msgstr ""
1840
  msgid "Filter"
1841
  msgstr ""
1842
 
1843
- #: ../dashboard.php:1400 ../common.php:1424
1844
  msgid "Locked out"
1845
  msgstr ""
1846
 
@@ -1944,7 +1958,7 @@ msgid_plural "entries"
1944
  msgstr[0] ""
1945
  msgstr[1] ""
1946
 
1947
- #: ../dashboard.php:1768 ../settings.php:244
1948
  msgid "Citadel mode"
1949
  msgstr ""
1950
 
@@ -1969,7 +1983,7 @@ msgstr ""
1969
  msgid "A new version is available"
1970
  msgstr ""
1971
 
1972
- #: ../dashboard.php:2174 ../settings.php:231
1973
  msgid "My site is behind a reverse proxy"
1974
  msgstr ""
1975
 
@@ -2199,7 +2213,7 @@ msgstr ""
2199
  msgid "Hardening"
2200
  msgstr ""
2201
 
2202
- #: ../dashboard.php:4783 ../settings.php:265
2203
  msgid "Notifications"
2204
  msgstr ""
2205
 
@@ -2327,343 +2341,343 @@ msgstr ""
2327
  msgid "Add to menu"
2328
  msgstr ""
2329
 
2330
- #: ../common.php:209
2331
  msgid "Check for requests"
2332
  msgstr ""
2333
 
2334
- #: ../common.php:307
2335
  msgid "Malicious activities mitigated"
2336
  msgstr ""
2337
 
2338
- #: ../common.php:310
2339
  msgid "Spam comments denied"
2340
  msgstr ""
2341
 
2342
- #: ../common.php:311
2343
  msgid "Spam form submissions denied"
2344
  msgstr ""
2345
 
2346
- #: ../common.php:312
2347
  msgid "Malicious IP addresses detected"
2348
  msgstr ""
2349
 
2350
- #: ../common.php:313
2351
  msgid "Lockouts occurred"
2352
  msgstr ""
2353
 
2354
- #: ../common.php:1357
2355
  msgid "User created"
2356
  msgstr ""
2357
 
2358
- #: ../common.php:1358
2359
  msgid "User registered"
2360
  msgstr ""
2361
 
2362
- #: ../common.php:1359
2363
  msgid "User deleted"
2364
  msgstr ""
2365
 
2366
- #: ../common.php:1360
2367
  msgid "Logged in"
2368
  msgstr ""
2369
 
2370
- #: ../common.php:1361
2371
  msgid "Logged out"
2372
  msgstr ""
2373
 
2374
- #: ../common.php:1362
2375
  msgid "Login failed"
2376
  msgstr ""
2377
 
2378
- #: ../common.php:1366
2379
  msgid "IP subnet blocked"
2380
  msgstr ""
2381
 
2382
- #: ../common.php:1369
2383
  msgid "Citadel activated!"
2384
  msgstr ""
2385
 
2386
- #: ../common.php:1370
2387
  msgid "Spam comment denied"
2388
  msgstr ""
2389
 
2390
- #: ../common.php:1371
2391
  msgid "Spam form submission denied"
2392
  msgstr ""
2393
 
2394
- #: ../common.php:1372
2395
  msgid "Form submission denied"
2396
  msgstr ""
2397
 
2398
- #: ../common.php:1373
2399
  msgid "Comment denied"
2400
  msgstr ""
2401
 
2402
- #: ../common.php:1382
2403
  msgid "Password changed"
2404
  msgstr ""
2405
 
2406
- #: ../common.php:1383
2407
  msgid "Password reset requested"
2408
  msgstr ""
2409
 
2410
- #: ../common.php:1385
2411
  msgid "reCAPTCHA verification failed"
2412
  msgstr ""
2413
 
2414
- #: ../common.php:1386
2415
  msgid "reCAPTCHA settings are incorrect"
2416
  msgstr ""
2417
 
2418
- #: ../common.php:1387
2419
  msgid "Request to the Google reCAPTCHA service failed"
2420
  msgstr ""
2421
 
2422
- #: ../common.php:1389 ../common.php:1505
2423
  msgid "Attempt to access prohibited URL"
2424
  msgstr ""
2425
 
2426
- #: ../common.php:1390 ../common.php:1506
2427
  msgid "Attempt to log in with non-existing username"
2428
  msgstr ""
2429
 
2430
- #: ../common.php:1391 ../common.php:1507
2431
  msgid "Attempt to log in with prohibited username"
2432
  msgstr ""
2433
 
2434
- #: ../common.php:1393
2435
  msgid "Attempt to log in denied"
2436
  msgstr ""
2437
 
2438
- #: ../common.php:1394
2439
  msgid "Attempt to register denied"
2440
  msgstr ""
2441
 
2442
- #: ../common.php:1395 ../common.php:1511
2443
  msgid "Probing for vulnerable code"
2444
  msgstr ""
2445
 
2446
- #: ../common.php:1396
2447
  msgid "Attempt to upload malicious file denied"
2448
  msgstr ""
2449
 
2450
- #: ../common.php:1397
2451
  msgid "File upload denied"
2452
  msgstr ""
2453
 
2454
- #: ../common.php:1399
2455
  msgid "Request to REST API denied"
2456
  msgstr ""
2457
 
2458
- #: ../common.php:1400
2459
  msgid "XML-RPC request denied"
2460
  msgstr ""
2461
 
2462
- #: ../common.php:1402
2463
  msgid "User creation denied"
2464
  msgstr ""
2465
 
2466
- #: ../common.php:1403
2467
  msgid "User row update denied"
2468
  msgstr ""
2469
 
2470
- #: ../common.php:1404
2471
  msgid "Role update denied"
2472
  msgstr ""
2473
 
2474
- #: ../common.php:1405
2475
  msgid "Setting update denied"
2476
  msgstr ""
2477
 
2478
- #: ../common.php:1406
2479
  msgid "User metadata update denied"
2480
  msgstr ""
2481
 
2482
- #: ../common.php:1408
2483
  msgid "Malicious request denied"
2484
  msgstr ""
2485
 
2486
- #: ../common.php:1411
2487
  msgid "User activated"
2488
  msgstr ""
2489
 
2490
- #: ../common.php:1414
2491
  msgid "Invalid master credentials"
2492
  msgstr ""
2493
 
2494
- #: ../common.php:1422
2495
  msgid "Bot detected"
2496
  msgstr ""
2497
 
2498
- #: ../common.php:1423
2499
  msgid "Citadel mode is active"
2500
  msgstr ""
2501
 
2502
- #: ../common.php:1425
2503
  msgid "IP address is locked out"
2504
  msgstr ""
2505
 
2506
- #: ../common.php:1426
2507
  msgid "IP blacklisted"
2508
  msgstr ""
2509
 
2510
- #: ../common.php:1427
2511
  msgid "Malicious activity detected"
2512
  msgstr ""
2513
 
2514
- #: ../common.php:1428
2515
  msgid "Blocked by country rule"
2516
  msgstr ""
2517
 
2518
- #: ../common.php:1429
2519
  msgid "Limit reached"
2520
  msgstr ""
2521
 
2522
- #: ../common.php:1430
2523
  msgid "Multiple suspicious activities"
2524
  msgstr ""
2525
 
2526
- #: ../common.php:1431
2527
  msgid "Denied"
2528
  msgstr ""
2529
 
2530
- #: ../common.php:1433
2531
  msgid "Suspicious number of fields"
2532
  msgstr ""
2533
 
2534
- #: ../common.php:1434
2535
  msgid "Suspicious number of nested values"
2536
  msgstr ""
2537
 
2538
- #: ../common.php:1435 ../common.php:1512
2539
  msgid "Malicious code detected"
2540
  msgstr ""
2541
 
2542
- #: ../common.php:1436
2543
  msgid "Suspicious SQL code detected"
2544
  msgstr ""
2545
 
2546
- #: ../common.php:1437
2547
  msgid "Suspicious JavaScript code detected"
2548
  msgstr ""
2549
 
2550
- #: ../common.php:1438
2551
  msgid "Blocked by administrator"
2552
  msgstr ""
2553
 
2554
- #: ../common.php:1439
2555
  msgid "Site policy enforcement"
2556
  msgstr ""
2557
 
2558
- #: ../common.php:1440
2559
  msgid "2FA code verified"
2560
  msgstr ""
2561
 
2562
- #: ../common.php:1441
2563
  msgid "Initiated by the user"
2564
  msgstr ""
2565
 
2566
- #: ../common.php:1444
2567
  msgid "Email address is prohibited"
2568
  msgstr ""
2569
 
2570
- #: ../common.php:1446
2571
  msgid "Permission denied"
2572
  msgstr ""
2573
 
2574
- #: ../common.php:1448
2575
  msgid "Invalid user"
2576
  msgstr ""
2577
 
2578
- #: ../common.php:1449
2579
  msgid "Incorrect password"
2580
  msgstr ""
2581
 
2582
- #: ../common.php:1450
2583
  msgid "IP address is not allowed"
2584
  msgstr ""
2585
 
2586
- #: ../common.php:1453
2587
  msgid "IP whitelisted"
2588
  msgstr ""
2589
 
2590
- #: ../common.php:1503
2591
  msgid "Limit on login attempts is reached"
2592
  msgstr ""
2593
 
2594
- #: ../common.php:1504
2595
  msgid "Attempt to access"
2596
  msgstr ""
2597
 
2598
- #: ../common.php:1508
2599
  msgid "Limit on failed reCAPTCHA verifications is reached"
2600
  msgstr ""
2601
 
2602
- #: ../common.php:1509
2603
  msgid "Bot activity is detected"
2604
  msgstr ""
2605
 
2606
- #: ../common.php:1510
2607
  msgid "Multiple suspicious activities were detected"
2608
  msgstr ""
2609
 
2610
- #: ../common.php:1513
2611
  msgid "Attempt to upload a file with malicious code"
2612
  msgstr ""
2613
 
2614
- #: ../common.php:1515
2615
  msgid "Multiple erroneous requests"
2616
  msgstr ""
2617
 
2618
- #: ../common.php:1516
2619
  msgid "Multiple suspicious requests"
2620
  msgstr ""
2621
 
2622
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
2623
- #: ../common.php:1654
2624
  #, php-format
2625
  msgid "%s sec"
2626
  msgid_plural "%s secs"
2627
  msgstr[0] ""
2628
  msgstr[1] ""
2629
 
2630
- #: ../common.php:1661
2631
  #, php-format
2632
  msgid "%s ago"
2633
  msgstr ""
2634
 
2635
- #: ../common.php:1661
2636
  #, php-format
2637
  msgctxt "preposition of a period of time like: in 6 hours"
2638
  msgid "in %s"
2639
  msgstr ""
2640
 
2641
- #: ../common.php:1768
2642
  msgid "Bytes"
2643
  msgstr ""
2644
 
2645
- #: ../common.php:1874
2646
  #, php-format
2647
  msgid "A new version of %s is available. Please install it."
2648
  msgstr ""
2649
 
2650
- #: ../common.php:2704
2651
  msgid "Unable to create the directory"
2652
  msgstr ""
2653
 
2654
- #: ../common.php:2709
2655
  msgid "Destination folder access denied"
2656
  msgstr ""
2657
 
2658
- #: ../common.php:2712
2659
  msgid "File not found"
2660
  msgstr ""
2661
 
2662
- #: ../common.php:2715
2663
  msgid "Unable to copy the file"
2664
  msgstr ""
2665
 
2666
- #: ../common.php:2721
2667
  msgid "Unable to delete the file"
2668
  msgstr ""
2669
 
@@ -2725,7 +2739,7 @@ msgstr ""
2725
  msgid "Lockout duration"
2726
  msgstr ""
2727
 
2728
- #: ../settings.php:159 ../settings.php:260
2729
  msgid "minutes"
2730
  msgstr ""
2731
 
@@ -2733,7 +2747,7 @@ msgstr ""
2733
  msgid "Aggressive lockout"
2734
  msgstr ""
2735
 
2736
- #: ../settings.php:166 ../settings.php:528 ../settings.php:553 ../settings.php:741
2737
  msgid "Use White IP Access List"
2738
  msgstr ""
2739
 
@@ -2821,1022 +2835,1030 @@ msgstr ""
2821
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
2822
  msgstr ""
2823
 
2824
- #: ../settings.php:227
 
 
 
 
 
 
 
 
2825
  msgid "Site-specific settings"
2826
  msgstr ""
2827
 
2828
- #: ../settings.php:230
2829
  msgid "Site connection"
2830
  msgstr ""
2831
 
2832
- #: ../settings.php:235
2833
  msgid "Prefix for plugin cookies"
2834
  msgstr ""
2835
 
2836
- #: ../settings.php:236
2837
  msgid "Prefix may contain only Latin alphanumeric characters and underscores"
2838
  msgstr ""
2839
 
2840
- #: ../settings.php:245
2841
  msgid ""
2842
  "In the Citadel mode nobody is able to log in except IPs from the White IP "
2843
  "Access List. Active user sessions will not be affected."
2844
  msgstr ""
2845
 
2846
- #: ../settings.php:248
2847
  msgid "Enable authentication log monitoring"
2848
  msgstr ""
2849
 
2850
- #: ../settings.php:254
2851
  msgid "Threshold"
2852
  msgstr ""
2853
 
2854
- #: ../settings.php:267
2855
  msgid "Send notification to admin email"
2856
  msgstr ""
2857
 
2858
- #: ../settings.php:280 ../settings.php:843
2859
  msgid "Keep log records of not logged in visitors for"
2860
  msgstr ""
2861
 
2862
- #: ../settings.php:281 ../settings.php:287 ../settings.php:844 ../settings.php:
2863
- #: 850 ../settings.php:921 ../settings.php:1112
2864
  msgid "days"
2865
  msgstr ""
2866
 
2867
- #: ../settings.php:286 ../settings.php:849
2868
  msgid "Keep log records of logged in users for"
2869
  msgstr ""
2870
 
2871
- #: ../settings.php:292
2872
  msgid "Cerber Lab connection"
2873
  msgstr ""
2874
 
2875
- #: ../settings.php:293
2876
  msgid "Send malicious IP addresses to the Cerber Lab"
2877
  msgstr ""
2878
 
2879
- #: ../settings.php:298
2880
  msgid "Cerber Lab protocol"
2881
  msgstr ""
2882
 
2883
- #: ../settings.php:306
2884
  msgid "Use file"
2885
  msgstr ""
2886
 
2887
- #: ../settings.php:307
2888
  msgid "Write failed login attempts to the file"
2889
  msgstr ""
2890
 
2891
- #: ../settings.php:313
2892
  msgid "Preferences"
2893
  msgstr ""
2894
 
2895
- #: ../settings.php:316
2896
  msgid "Drill down IP"
2897
  msgstr ""
2898
 
2899
- #: ../settings.php:317
2900
  msgid "Retrieve extra WHOIS information for IP"
2901
  msgstr ""
2902
 
2903
- #: ../settings.php:321
2904
  msgid "Date format"
2905
  msgstr ""
2906
 
2907
- #: ../settings.php:322
2908
  #, php-format
2909
  msgid "if empty, the default format %s will be used"
2910
  msgstr ""
2911
 
2912
- #: ../settings.php:328
2913
  msgid "Date format for CSV export"
2914
  msgstr ""
2915
 
2916
- #: ../settings.php:329
2917
  msgid "Use ISO 8601 date format for CSV export files"
2918
  msgstr ""
2919
 
2920
- #: ../settings.php:333
2921
  msgid "Use English"
2922
  msgstr ""
2923
 
2924
- #: ../settings.php:334
2925
  msgid "Use English for admin interface"
2926
  msgstr ""
2927
 
2928
- #: ../settings.php:338
2929
  msgid "My IP address"
2930
  msgstr ""
2931
 
2932
- #: ../settings.php:339
2933
  msgid "Do not add my IP address to the White IP Access List upon plugin activation"
2934
  msgstr ""
2935
 
2936
- #: ../settings.php:350
2937
  msgid "Hardening WordPress"
2938
  msgstr ""
2939
 
2940
- #: ../settings.php:354 ../settings.php:390
2941
  msgid "Stop user enumeration"
2942
  msgstr ""
2943
 
2944
- #: ../settings.php:355
2945
  msgid "Block access to user pages like /?author=n"
2946
  msgstr ""
2947
 
2948
- #: ../settings.php:359
2949
  msgid "Protect admin scripts"
2950
  msgstr ""
2951
 
2952
- #: ../settings.php:360
2953
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
2954
  msgstr ""
2955
 
2956
- #: ../settings.php:364
2957
  msgid "Disable PHP in uploads"
2958
  msgstr ""
2959
 
2960
- #: ../settings.php:365
2961
  msgid "Block execution of PHP scripts in the WordPress media folder"
2962
  msgstr ""
2963
 
2964
- #: ../settings.php:369
2965
  msgid "Disable PHP error displaying"
2966
  msgstr ""
2967
 
2968
- #: ../settings.php:373
2969
  msgid "Disable XML-RPC"
2970
  msgstr ""
2971
 
2972
- #: ../settings.php:374
2973
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
2974
  msgstr ""
2975
 
2976
- #: ../settings.php:378
2977
  msgid "Disable feeds"
2978
  msgstr ""
2979
 
2980
- #: ../settings.php:379
2981
  msgid "Block access to the RSS, Atom and RDF feeds"
2982
  msgstr ""
2983
 
2984
- #: ../settings.php:385
2985
  msgid "Access to WordPress REST API"
2986
  msgstr ""
2987
 
2988
- #: ../settings.php:386
2989
  msgid ""
2990
  "Restrict or completely block access to the WordPress REST API according to "
2991
  "your needs"
2992
  msgstr ""
2993
 
2994
- #: ../settings.php:391
2995
  msgid "Block access to users' data via REST API"
2996
  msgstr ""
2997
 
2998
- #: ../settings.php:395
2999
  msgid "Disable REST API"
3000
  msgstr ""
3001
 
3002
- #: ../settings.php:396
3003
  msgid "Block access to WordPress REST API except any of the following"
3004
  msgstr ""
3005
 
3006
- #: ../settings.php:401
3007
  msgid "Allow REST API for logged in users"
3008
  msgstr ""
3009
 
3010
- #: ../settings.php:406
3011
  msgid "Allow REST API for these roles"
3012
  msgstr ""
3013
 
3014
- #: ../settings.php:411
3015
  msgid "Allow these namespaces"
3016
  msgstr ""
3017
 
3018
- #: ../settings.php:415
3019
  msgid ""
3020
  "Specify REST API namespaces to be allowed if REST API is disabled. One "
3021
  "string per line."
3022
  msgstr ""
3023
 
3024
- #: ../settings.php:423
3025
  msgid "Protect user accounts"
3026
  msgstr ""
3027
 
3028
- #: ../settings.php:428
3029
  msgid ""
3030
  "Restrict user account creation and user management with the following "
3031
  "policies"
3032
  msgstr ""
3033
 
3034
- #: ../settings.php:434
3035
  msgid "User registrations are limited to these roles"
3036
  msgstr ""
3037
 
3038
- #: ../settings.php:440
3039
  msgid "Users with these roles are permitted to create new accounts"
3040
  msgstr ""
3041
 
3042
- #: ../settings.php:445
3043
  msgid "Users with these roles are permitted to change sensitive user data"
3044
  msgstr ""
3045
 
3046
- #: ../settings.php:450 ../settings.php:478 ../settings.php:507
3047
  msgid "Do not apply these policies to the IP addresses in the White IP Access List"
3048
  msgstr ""
3049
 
3050
- #: ../settings.php:458
3051
  msgid "Protect user roles"
3052
  msgstr ""
3053
 
3054
- #: ../settings.php:462
3055
  msgid "Restrict roles and capabilities management with the following policies"
3056
  msgstr ""
3057
 
3058
- #: ../settings.php:468
3059
  msgid "Users with these roles are permitted to add new roles"
3060
  msgstr ""
3061
 
3062
- #: ../settings.php:473
3063
  msgid "Users with these roles are permitted to change role capabilities"
3064
  msgstr ""
3065
 
3066
- #: ../settings.php:486
3067
  msgid "Protect site settings"
3068
  msgstr ""
3069
 
3070
- #: ../settings.php:490
3071
  msgid "Restrict updating site settings with the following policies"
3072
  msgstr ""
3073
 
3074
- #: ../settings.php:496
3075
  msgid "Users with these roles are permitted to change protected settings"
3076
  msgstr ""
3077
 
3078
- #: ../settings.php:501
3079
  msgid "Protected settings"
3080
  msgstr ""
3081
 
3082
- #: ../settings.php:521
3083
  msgid "Authorized users only"
3084
  msgstr ""
3085
 
3086
- #: ../settings.php:522
3087
  msgid "Only registered and logged in website users have access to the website"
3088
  msgstr ""
3089
 
3090
- #: ../settings.php:529
3091
  msgid "Do not apply these policy to the IP addresses in the White IP Access List"
3092
  msgstr ""
3093
 
3094
- #: ../settings.php:539 ../settings.php:1484
3095
  msgid "Only registered and logged in users are allowed to view this website"
3096
  msgstr ""
3097
 
3098
- #: ../settings.php:544
3099
  msgid "Redirect to URL"
3100
  msgstr ""
3101
 
3102
- #: ../settings.php:554
3103
  msgid ""
3104
  "Only users from IP addresses in the White IP Access List may register on the "
3105
  "website"
3106
  msgstr ""
3107
 
3108
- #: ../settings.php:559
3109
  msgid "User message"
3110
  msgstr ""
3111
 
3112
- #: ../settings.php:566
3113
  msgid "Registration limit"
3114
  msgstr ""
3115
 
3116
- #: ../settings.php:572
3117
  msgid "Restrict email addresses"
3118
  msgstr ""
3119
 
3120
- #: ../settings.php:575
3121
  msgid "No restrictions"
3122
  msgstr ""
3123
 
3124
- #: ../settings.php:576
3125
  msgid "Deny all email addresses that match the following"
3126
  msgstr ""
3127
 
3128
- #: ../settings.php:577
3129
  msgid "Permit only email addresses that match the following"
3130
  msgstr ""
3131
 
3132
- #: ../settings.php:582
3133
  msgid ""
3134
  "Specify email addresses, wildcards or REGEX patterns. Use comma to separate "
3135
  "items."
3136
  msgstr ""
3137
 
3138
- #: ../settings.php:582 ../settings.php:590
3139
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
3140
  msgstr ""
3141
 
3142
- #: ../settings.php:589
3143
  msgid "Prohibited usernames"
3144
  msgstr ""
3145
 
3146
- #: ../settings.php:590
3147
  msgid ""
3148
  "Usernames from this list are not allowed to log in or register. Any IP "
3149
  "address, have tried to use any of these usernames, will be immediately "
3150
  "blocked. Use comma to separate logins."
3151
  msgstr ""
3152
 
3153
- #: ../settings.php:598
3154
  msgid "minutes (leave empty to use the default WordPress value)"
3155
  msgstr ""
3156
 
3157
- #: ../settings.php:604
3158
  msgid "Sort users in dashboard"
3159
  msgstr ""
3160
 
3161
- #: ../settings.php:605
3162
  msgid "by date of registration"
3163
  msgstr ""
3164
 
3165
- #: ../settings.php:613
3166
  msgid "Personal Data"
3167
  msgstr ""
3168
 
3169
- #: ../settings.php:615
3170
  msgid ""
3171
  "These features help your organization to be in compliance with personal data "
3172
  "protection laws"
3173
  msgstr ""
3174
 
3175
- #: ../settings.php:619
3176
  msgid "Enable data erase"
3177
  msgstr ""
3178
 
3179
- #: ../settings.php:626
3180
  msgid "Terminate user sessions"
3181
  msgstr ""
3182
 
3183
- #: ../settings.php:627
3184
  msgid "Delete user sessions data when user data is erased"
3185
  msgstr ""
3186
 
3187
- #: ../settings.php:633
3188
  msgid "Enable data export"
3189
  msgstr ""
3190
 
3191
- #: ../settings.php:640
3192
  msgid "Include activity log events"
3193
  msgstr ""
3194
 
3195
- #: ../settings.php:646
3196
  msgid "Include traffic log entries"
3197
  msgstr ""
3198
 
3199
- #: ../settings.php:649
3200
  msgid "Request URL"
3201
  msgstr ""
3202
 
3203
- #: ../settings.php:650
3204
  msgid "Form fields data"
3205
  msgstr ""
3206
 
3207
- #: ../settings.php:651
3208
  msgid "Cookies"
3209
  msgstr ""
3210
 
3211
- #: ../settings.php:659
3212
  msgid "Email notifications"
3213
  msgstr ""
3214
 
3215
- #: ../settings.php:664
3216
  msgid "Lockout notifications"
3217
  msgstr ""
3218
 
3219
- #: ../settings.php:668 ../settings.php:715 ../settings.php:976
3220
  msgid "Email Address"
3221
  msgstr ""
3222
 
3223
- #: ../settings.php:669 ../settings.php:717 ../settings.php:815 ../settings.php:978
3224
  msgid "Use comma to specify multiple values"
3225
  msgstr ""
3226
 
3227
- #: ../settings.php:673
3228
  #, php-format
3229
  msgid "if empty, the website administrator email %s will be used"
3230
  msgstr ""
3231
 
3232
- #: ../settings.php:676
3233
  msgid "Notification limit"
3234
  msgstr ""
3235
 
3236
- #: ../settings.php:677
3237
  msgid "notifications are allowed per hour (0 means unlimited)"
3238
  msgstr ""
3239
 
3240
- #: ../settings.php:681
3241
  msgid "New version is available"
3242
  msgstr ""
3243
 
3244
- #: ../settings.php:687
3245
  msgid "Push notifications"
3246
  msgstr ""
3247
 
3248
- #: ../settings.php:688
3249
  msgid "Get notified instantly with mobile and desktop notifications"
3250
  msgstr ""
3251
 
3252
- #: ../settings.php:692
3253
  msgid "Pushbullet access token"
3254
  msgstr ""
3255
 
3256
- #: ../settings.php:695
3257
  msgid "Pushbullet device"
3258
  msgstr ""
3259
 
3260
- #: ../settings.php:702
3261
  msgid "Weekly reports"
3262
  msgstr ""
3263
 
3264
- #: ../settings.php:703
3265
  msgid ""
3266
  "Weekly report is a summary of all activities and suspicious events occurred "
3267
  "during the last seven days"
3268
  msgstr ""
3269
 
3270
- #: ../settings.php:706
3271
  msgid "Enable reporting"
3272
  msgstr ""
3273
 
3274
- #: ../settings.php:710
3275
  msgid "Send reports on"
3276
  msgstr ""
3277
 
3278
- #: ../settings.php:716 ../settings.php:977
3279
  msgid "if empty, the email addresses from the notification settings will be used"
3280
  msgstr ""
3281
 
3282
- #: ../settings.php:727
3283
  msgid "Traffic Inspection"
3284
  msgstr ""
3285
 
3286
- #: ../settings.php:728
3287
  msgid ""
3288
  "Traffic Inspector is a context-aware web application firewall (WAF) that "
3289
  "protects your website by recognizing and denying malicious HTTP requests"
3290
  msgstr ""
3291
 
3292
- #: ../settings.php:732
3293
  msgid "Enable traffic inspection"
3294
  msgstr ""
3295
 
3296
- #: ../settings.php:736 ../settings.php:764
3297
  msgid "Maximum compatibility"
3298
  msgstr ""
3299
 
3300
- #: ../settings.php:737 ../settings.php:765
3301
  msgid "Maximum security"
3302
  msgstr ""
3303
 
3304
- #: ../settings.php:745
3305
  msgid "Request whitelist"
3306
  msgstr ""
3307
 
3308
- #: ../settings.php:749
3309
  msgid ""
3310
  "Enter a request URI to exclude the request from inspection. One item per "
3311
  "line."
3312
  msgstr ""
3313
 
3314
- #: ../settings.php:749 ../settings.php:799
3315
  msgid "To specify a REGEX pattern, enclose a whole line in two braces."
3316
  msgstr ""
3317
 
3318
- #: ../settings.php:755
3319
  msgid "Erroneous Request Shielding"
3320
  msgstr ""
3321
 
3322
- #: ../settings.php:757
3323
  msgid ""
3324
  "Block IP addresses that send excessive requests for non-existing pages or "
3325
  "scan website for security breaches"
3326
  msgstr ""
3327
 
3328
- #: ../settings.php:760
3329
  msgid "Enable error shielding"
3330
  msgstr ""
3331
 
3332
- #: ../settings.php:769
3333
  msgid "Ignore logged in users"
3334
  msgstr ""
3335
 
3336
- #: ../settings.php:776
3337
  msgid "Traffic Logging"
3338
  msgstr ""
3339
 
3340
- #: ../settings.php:777
3341
  msgid ""
3342
  "Enable optional traffic logging if you need to monitor suspicious and "
3343
  "malicious activity or solve security issues"
3344
  msgstr ""
3345
 
3346
- #: ../settings.php:781
3347
  msgid "Logging mode"
3348
  msgstr ""
3349
 
3350
- #: ../settings.php:784
3351
  msgid "Logging disabled"
3352
  msgstr ""
3353
 
3354
- #: ../settings.php:785
3355
  msgid "Minimal"
3356
  msgstr ""
3357
 
3358
- #: ../settings.php:786
3359
  msgid "Smart"
3360
  msgstr ""
3361
 
3362
- #: ../settings.php:787
3363
  msgid "All traffic"
3364
  msgstr ""
3365
 
3366
- #: ../settings.php:791
3367
  msgid "Do not log known crawlers"
3368
  msgstr ""
3369
 
3370
- #: ../settings.php:795
3371
  msgid "Do not log these locations"
3372
  msgstr ""
3373
 
3374
- #: ../settings.php:799
3375
  msgid "Specify URL paths to exclude requests from logging. One item per line."
3376
  msgstr ""
3377
 
3378
- #: ../settings.php:802
3379
  msgid "Do not log these User-Agents"
3380
  msgstr ""
3381
 
3382
- #: ../settings.php:806
3383
  msgid "Specify User-Agents to exclude requests from logging. One item per line."
3384
  msgstr ""
3385
 
3386
- #: ../settings.php:809
3387
  msgid "Save request fields"
3388
  msgstr ""
3389
 
3390
- #: ../settings.php:813
3391
  msgid "Mask these form fields"
3392
  msgstr ""
3393
 
3394
- #: ../settings.php:820
3395
  msgid "Save request headers"
3396
  msgstr ""
3397
 
3398
- #: ../settings.php:825
3399
  msgid "Save $_SERVER"
3400
  msgstr ""
3401
 
3402
- #: ../settings.php:829
3403
  msgid "Save request cookies"
3404
  msgstr ""
3405
 
3406
- #: ../settings.php:833
3407
  msgid "Save software errors"
3408
  msgstr ""
3409
 
3410
- #: ../settings.php:837
3411
  msgid "Page generation time threshold"
3412
  msgstr ""
3413
 
3414
- #: ../settings.php:838
3415
  msgid "milliseconds"
3416
  msgstr ""
3417
 
3418
- #: ../settings.php:858
3419
  msgid "Scanner settings"
3420
  msgstr ""
3421
 
3422
- #: ../settings.php:859
3423
  msgid ""
3424
  "The scanner monitors file changes, verifies the integrity of WordPress, "
3425
  "plugins, and themes, and detects malware"
3426
  msgstr ""
3427
 
3428
- #: ../settings.php:863
3429
  msgid "Custom signatures"
3430
  msgstr ""
3431
 
3432
- #: ../settings.php:867
3433
  msgid ""
3434
  "Specify custom PHP code signatures. One item per line. To specify a REGEX "
3435
  "pattern, enclose a whole line in two braces."
3436
  msgstr ""
3437
 
3438
- #: ../settings.php:870
3439
  msgid "Unwanted file extensions"
3440
  msgstr ""
3441
 
3442
- #: ../settings.php:874
3443
  msgid ""
3444
  "Specify file extensions to search for. Full scan only. Use comma to separate "
3445
  "items."
3446
  msgstr ""
3447
 
3448
- #: ../settings.php:877
3449
  msgid "Directories to exclude"
3450
  msgstr ""
3451
 
3452
- #: ../settings.php:881
3453
  msgid "Specify directories to exclude from scanning. One directory per line."
3454
  msgstr ""
3455
 
3456
- #: ../settings.php:884
3457
  msgid "Monitor new files"
3458
  msgstr ""
3459
 
3460
- #: ../settings.php:888 ../settings.php:897
3461
  msgid "Executable files"
3462
  msgstr ""
3463
 
3464
- #: ../settings.php:889 ../settings.php:898
3465
  msgid "All files"
3466
  msgstr ""
3467
 
3468
- #: ../settings.php:893
3469
  msgid "Monitor modified files"
3470
  msgstr ""
3471
 
3472
- #: ../settings.php:902
3473
  msgid "Change file permissions when necessary"
3474
  msgstr ""
3475
 
3476
- #: ../settings.php:906
3477
  msgid "Scan temporary directory"
3478
  msgstr ""
3479
 
3480
- #: ../settings.php:910
3481
  msgid "Scan session directory"
3482
  msgstr ""
3483
 
3484
- #: ../settings.php:914 ../settings.php:1217 ../settings.php:1245
3485
  msgid "Enable diagnostic logging"
3486
  msgstr ""
3487
 
3488
- #: ../settings.php:919
3489
  msgid "Delete quarantined files after"
3490
  msgstr ""
3491
 
3492
- #: ../settings.php:928
3493
  msgid "Automated recurring scan schedule"
3494
  msgstr ""
3495
 
3496
- #: ../settings.php:929
3497
  msgid ""
3498
  "The scanner automatically scans the website, removes malware and sends email "
3499
  "reports with the results of a scan"
3500
  msgstr ""
3501
 
3502
- #: ../settings.php:933
3503
  msgid "Launch Quick Scan"
3504
  msgstr ""
3505
 
3506
- #: ../settings.php:938
3507
  msgid "Launch Full Scan"
3508
  msgstr ""
3509
 
3510
- #: ../settings.php:945
3511
  msgid "Scan results reporting"
3512
  msgstr ""
3513
 
3514
- #: ../settings.php:946
3515
  msgid ""
3516
  "Configure what issues to include in the email report and the condition for "
3517
  "sending reports"
3518
  msgstr ""
3519
 
3520
- #: ../settings.php:950
3521
  msgid "Report an issue if any of the following is true"
3522
  msgstr ""
3523
 
3524
- #: ../settings.php:953 ../settings.php:999
3525
  msgid "Low severity"
3526
  msgstr ""
3527
 
3528
- #: ../settings.php:954 ../settings.php:1000
3529
  msgid "Medium severity"
3530
  msgstr ""
3531
 
3532
- #: ../settings.php:955 ../settings.php:1001
3533
  msgid "High severity"
3534
  msgstr ""
3535
 
3536
- #: ../settings.php:959
3537
  msgid "Send email report"
3538
  msgstr ""
3539
 
3540
- #: ../settings.php:962
3541
  msgid "After every scan"
3542
  msgstr ""
3543
 
3544
- #: ../settings.php:963
3545
  msgid "If any changes in scan results occurred"
3546
  msgstr ""
3547
 
3548
- #: ../settings.php:964
3549
  msgid "If new issues found"
3550
  msgstr ""
3551
 
3552
- #: ../settings.php:968
3553
  msgid "Include file sizes"
3554
  msgstr ""
3555
 
3556
- #: ../settings.php:972
3557
  msgid "Include scan errors"
3558
  msgstr ""
3559
 
3560
- #: ../settings.php:987
3561
  msgid "Automatic cleanup of malware and suspicious files"
3562
  msgstr ""
3563
 
3564
- #: ../settings.php:988
3565
  msgid ""
3566
  "These policies are automatically enforced at the end of every scheduled scan "
3567
  "based on its results. All affected files are moved to the quarantine"
3568
  msgstr ""
3569
 
3570
- #: ../settings.php:992
3571
  msgid "Delete unattended files"
3572
  msgstr ""
3573
 
3574
- #: ../settings.php:996
3575
  msgid "Files in the uploads folder"
3576
  msgstr ""
3577
 
3578
- #: ../settings.php:1005
3579
  msgid "Files with unwanted extensions"
3580
  msgstr ""
3581
 
3582
- #: ../settings.php:1011
3583
  msgid "Automatic recovery of modified and infected files"
3584
  msgstr ""
3585
 
3586
- #: ../settings.php:1014
3587
  msgid "Recover WordPress files"
3588
  msgstr ""
3589
 
3590
- #: ../settings.php:1018
3591
  msgid "Recover plugins files"
3592
  msgstr ""
3593
 
3594
- #: ../settings.php:1024
3595
  msgid "Exclusions"
3596
  msgstr ""
3597
 
3598
- #: ../settings.php:1025
3599
  msgid "These files will never be deleted during automatic cleanup."
3600
  msgstr ""
3601
 
3602
- #: ../settings.php:1028
3603
  msgid "Files in the temporary directory"
3604
  msgstr ""
3605
 
3606
- #: ../settings.php:1032
3607
  msgid "Files in the sessions directory"
3608
  msgstr ""
3609
 
3610
- #: ../settings.php:1036
3611
  msgid "Files in these directories"
3612
  msgstr ""
3613
 
3614
- #: ../settings.php:1040
3615
  msgid "Use absolute paths. One item per line."
3616
  msgstr ""
3617
 
3618
- #: ../settings.php:1043
3619
  msgid "Files with these extensions"
3620
  msgstr ""
3621
 
3622
- #: ../settings.php:1047
3623
  msgid "Use comma to separate items."
3624
  msgstr ""
3625
 
3626
- #: ../settings.php:1054
3627
  msgid "Cerber anti-spam engine"
3628
  msgstr ""
3629
 
3630
- #: ../settings.php:1055
3631
  msgid "Spam protection for comment, registration and contact forms on a website"
3632
  msgstr ""
3633
 
3634
- #: ../settings.php:1059
3635
  msgid "Comment form"
3636
  msgstr ""
3637
 
3638
- #: ../settings.php:1060
3639
  msgid "Protect comment form with bot detection engine"
3640
  msgstr ""
3641
 
3642
- #: ../settings.php:1064 ../settings.php:1136
3643
  msgid "Registration form"
3644
  msgstr ""
3645
 
3646
- #: ../settings.php:1065
3647
  msgid "Protect registration form with bot detection engine"
3648
  msgstr ""
3649
 
3650
- #: ../settings.php:1069
3651
  msgid "Other forms"
3652
  msgstr ""
3653
 
3654
- #: ../settings.php:1070
3655
  msgid "Protect all forms on the website with bot detection engine"
3656
  msgstr ""
3657
 
3658
- #: ../settings.php:1076
3659
  msgid "Adjust anti-spam engine"
3660
  msgstr ""
3661
 
3662
- #: ../settings.php:1077
3663
  msgid ""
3664
  "These settings enable you to fine-tune the behavior of anti-spam algorithms "
3665
  "and avoid false positives"
3666
  msgstr ""
3667
 
3668
- #: ../settings.php:1080
3669
  msgid "Safe mode"
3670
  msgstr ""
3671
 
3672
- #: ../settings.php:1081
3673
  msgid "Use less restrictive policies (allow AJAX)"
3674
  msgstr ""
3675
 
3676
- #: ../settings.php:1086
3677
  msgid "Disable bot detection engine for logged in users"
3678
  msgstr ""
3679
 
3680
- #: ../settings.php:1090
3681
  msgid "Query whitelist"
3682
  msgstr ""
3683
 
3684
- #: ../settings.php:1091
3685
  msgid ""
3686
  "Enter a part of query string or query path to exclude a request from "
3687
  "inspection by the engine. One item per line."
3688
  msgstr ""
3689
 
3690
- #: ../settings.php:1100
3691
  msgid "Comment processing"
3692
  msgstr ""
3693
 
3694
- #: ../settings.php:1101
3695
  msgid "How the plugin processes comments submitted through the standard comment form"
3696
  msgstr ""
3697
 
3698
- #: ../settings.php:1104
3699
  msgid "If a spam comment detected"
3700
  msgstr ""
3701
 
3702
- #: ../settings.php:1106
3703
  msgid "Deny it completely"
3704
  msgstr ""
3705
 
3706
- #: ../settings.php:1106
3707
  msgid "Mark it as spam"
3708
  msgstr ""
3709
 
3710
- #: ../settings.php:1109
3711
  msgid "Trash spam comments"
3712
  msgstr ""
3713
 
3714
- #: ../settings.php:1111
3715
  msgid "Move spam comments to trash after"
3716
  msgstr ""
3717
 
3718
- #: ../settings.php:1118
3719
  msgid "reCAPTCHA settings"
3720
  msgstr ""
3721
 
3722
- #: ../settings.php:1119
3723
  msgid ""
3724
  "Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
3725
  "key on the Google website"
3726
  msgstr ""
3727
 
3728
- #: ../settings.php:1123
3729
  msgid "Site key"
3730
  msgstr ""
3731
 
3732
- #: ../settings.php:1127
3733
  msgid "Secret key"
3734
  msgstr ""
3735
 
3736
- #: ../settings.php:1131
3737
  msgid "Invisible reCAPTCHA"
3738
  msgstr ""
3739
 
3740
- #: ../settings.php:1132
3741
  msgid "Enable invisible reCAPTCHA"
3742
  msgstr ""
3743
 
3744
- #: ../settings.php:1132
3745
  msgid ""
3746
  "(do not enable it unless you get and enter the Site and Secret keys for the "
3747
  "invisible version)"
3748
  msgstr ""
3749
 
3750
- #: ../settings.php:1137
3751
  msgid "Enable reCAPTCHA for WordPress registration form"
3752
  msgstr ""
3753
 
3754
- #: ../settings.php:1142
3755
  msgid "Enable reCAPTCHA for WooCommerce registration form"
3756
  msgstr ""
3757
 
3758
- #: ../settings.php:1146
3759
  msgid "Lost password form"
3760
  msgstr ""
3761
 
3762
- #: ../settings.php:1147
3763
  msgid "Enable reCAPTCHA for WordPress lost password form"
3764
  msgstr ""
3765
 
3766
- #: ../settings.php:1152
3767
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
3768
  msgstr ""
3769
 
3770
- #: ../settings.php:1156
3771
  msgid "Login form"
3772
  msgstr ""
3773
 
3774
- #: ../settings.php:1157
3775
  msgid "Enable reCAPTCHA for WordPress login form"
3776
  msgstr ""
3777
 
3778
- #: ../settings.php:1162
3779
  msgid "Enable reCAPTCHA for WooCommerce login form"
3780
  msgstr ""
3781
 
3782
- #: ../settings.php:1167
3783
  msgid "Enable reCAPTCHA for WordPress comment form"
3784
  msgstr ""
3785
 
3786
- #: ../settings.php:1172
3787
  msgid "Disable reCAPTCHA for logged in users"
3788
  msgstr ""
3789
 
3790
- #: ../settings.php:1176
3791
  msgid "Limit attempts"
3792
  msgstr ""
3793
 
3794
- #: ../settings.php:1177
3795
  #, php-format
3796
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
3797
  msgstr ""
3798
 
3799
- #: ../settings.php:1184
3800
  msgid "Master settings"
3801
  msgstr ""
3802
 
3803
- #: ../settings.php:1192
3804
  msgid "Return to the website list"
3805
  msgstr ""
3806
 
3807
- #: ../settings.php:1196
3808
  msgid "Show \"Switched to\" notification"
3809
  msgstr ""
3810
 
3811
- #: ../settings.php:1200
3812
  msgid "Add @ site to the page title"
3813
  msgstr ""
3814
 
3815
- #: ../settings.php:1204
3816
  msgid "Use master language"
3817
  msgstr ""
3818
 
3819
- #: ../settings.php:1228
3820
  msgid "Limit access by IP address"
3821
  msgstr ""
3822
 
3823
- #: ../settings.php:1234
3824
  msgid "Access to this website"
3825
  msgstr ""
3826
 
3827
- #: ../settings.php:1237
3828
  msgid "Full access mode"
3829
  msgstr ""
3830
 
3831
- #: ../settings.php:1238
3832
  msgid "Read-only mode"
3833
  msgstr ""
3834
 
3835
- #: ../settings.php:1259
3836
  msgid "The full access mode requires the PRO version of WP Cerber"
3837
  msgstr ""
3838
 
3839
- #: ../settings.php:1327
3840
  msgid "Any activity"
3841
  msgstr ""
3842
 
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: Sun Nov 08 2020 21:03:27 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"
96
  msgstr[1] ""
97
 
98
  #: ../cerber-load.php:635 ../cerber-load.php:647 ../cerber-load.php:654 ../cerber-
99
+ #: load.php:993 ../cerber-load.php:1532 ../cerber-load.php:1539 ../cerber-load.
100
+ #: php:1545 ../cerber-load.php:1550 ../cerber-load.php:1557 ../cerber-load.php:
101
+ #: 1564 ../cerber-load.php:1570 ../cerber-load.php:1577 ../cerber-load.php:1747 ..
102
+ #: /cerber-load.php:1884 ../nexus/cerber-nexus-slave.php:204 ../nexus/cerber-
103
  #: nexus-slave.php:215 ../admin/cerber-admin.php:866 ../admin/cerber-settings.php:
104
  #: 653 ../admin/cerber-settings.php:673 ../admin/cerber-settings.php:753 ..
105
+ #: /common.php:368 ../common.php:446 ../common.php:451 ../common.php:457 ..
106
+ #: /common.php:461
107
  msgid "ERROR:"
108
  msgstr ""
109
 
119
  "contacts here: https://wpcerber.com/contact/"
120
  msgstr ""
121
 
122
+ #: ../cerber-load.php:1102
123
  #, php-format
124
  msgid ""
125
  "<strong>ERROR</strong>: The password you entered for the username %s is "
126
  "incorrect."
127
  msgstr ""
128
 
129
+ #: ../cerber-load.php:1532 ../cerber-load.php:1540 ../cerber-load.php:1546 ..
130
+ #: /cerber-load.php:1571 ../cerber-load.php:1578
131
  msgid "You are not allowed to register."
132
  msgstr ""
133
 
134
+ #: ../cerber-load.php:1558
135
  msgid "Username is not allowed. Please choose another one."
136
  msgstr ""
137
 
138
+ #: ../cerber-load.php:1565
139
  msgid "Email address is not permitted."
140
  msgstr ""
141
 
142
+ #: ../cerber-load.php:1565
143
  msgid "Please choose another one."
144
  msgstr ""
145
 
146
+ #: ../cerber-load.php:1884
147
  msgid "Sorry, human verification failed."
148
  msgstr ""
149
 
150
+ #: ../cerber-load.php:4086
151
  msgid "We're sorry, you are not allowed to proceed"
152
  msgstr ""
153
 
154
+ #: ../cerber-load.php:4202
155
  msgid "WP Cerber notify"
156
  msgstr ""
157
 
158
+ #: ../cerber-load.php:4226
159
  msgid "Citadel mode is activated"
160
  msgstr ""
161
 
162
+ #: ../cerber-load.php:4228
163
  #, php-format
164
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
165
  msgstr ""
166
 
167
+ #: ../cerber-load.php:4229
168
  #, php-format
169
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
170
  msgstr ""
171
 
172
+ #: ../cerber-load.php:4230 ../cerber-load.php:5044
173
  msgid "View activity in dashboard"
174
  msgstr ""
175
 
176
+ #: ../cerber-load.php:4254
177
  msgid "unspecified"
178
  msgstr ""
179
 
180
+ #: ../cerber-load.php:4257
181
  msgid "Number of lockouts is increasing"
182
  msgstr ""
183
 
184
+ #: ../cerber-load.php:4259
185
  msgid "Number of active lockouts"
186
  msgstr ""
187
 
188
+ #: ../cerber-load.php:4260
189
  #, php-format
190
  msgid "Last lockout was added: %s for IP %s"
191
  msgstr ""
192
 
193
+ #: ../cerber-load.php:4261 ../dashboard.php:200
194
  msgid "Reason"
195
  msgstr ""
196
 
197
+ #: ../cerber-load.php:4262
198
  msgid "View activity for this IP"
199
  msgstr ""
200
 
201
+ #: ../cerber-load.php:4263
202
  msgid "View lockouts in dashboard"
203
  msgstr ""
204
 
205
+ #: ../cerber-load.php:4266 ../cerber-load.php:4268
206
  msgid "A new version of WP Cerber is available to install"
207
  msgstr ""
208
 
209
+ #: ../cerber-load.php:4267
210
  msgid "Hi!"
211
  msgstr ""
212
 
213
+ #: ../cerber-load.php:4270 ../cerber-load.php:4281 ../nexus/cerber-slave-list.php:
214
  #: 44
215
  msgid "Website"
216
  msgstr ""
217
 
218
+ #: ../cerber-load.php:4273 ../cerber-load.php:4274
219
  msgid "The WP Cerber security plugin has been deactivated"
220
  msgstr ""
221
 
222
+ #: ../cerber-load.php:4276
223
  msgid "Not logged in"
224
  msgstr ""
225
 
226
+ #: ../cerber-load.php:4282
227
  msgid "By user"
228
  msgstr ""
229
 
230
+ #: ../cerber-load.php:4283
231
  msgid "From IP address"
232
  msgstr ""
233
 
234
+ #: ../cerber-load.php:4286
235
  msgid "From country"
236
  msgstr ""
237
 
238
+ #: ../cerber-load.php:4290
239
  msgid "The WP Cerber security plugin is now active"
240
  msgstr ""
241
 
242
+ #: ../cerber-load.php:4291 ../cerber-load.php:5322
243
  msgid "WP Cerber is now active and has started protecting your site"
244
  msgstr ""
245
 
246
+ #: ../cerber-load.php:4293 ../cerber-load.php:5326
247
  msgid "Getting Started Guide"
248
  msgstr ""
249
 
250
+ #: ../cerber-load.php:4302
251
  msgid "New Custom login URL"
252
  msgstr ""
253
 
254
+ #: ../cerber-load.php:4306 ../cerber-load.php:4307
255
  msgid "A new activity has been recorded"
256
  msgstr ""
257
 
258
+ #: ../cerber-load.php:4312
259
  msgid "Weekly report"
260
  msgstr ""
261
 
262
+ #: ../cerber-load.php:4315 ../cerber-load.php:4323
263
  msgid "To change reporting settings visit"
264
  msgstr ""
265
 
297
  msgstr ""
298
 
299
  #: ../cerber-load.php:5003 ../cerber-users.php:1163 ../dashboard.php:1809 ..
300
+ #: /dashboard.php:2356 ../dashboard.php:4776 ../settings.php:282
301
  msgid "Activity"
302
  msgstr ""
303
 
344
  msgid "Import settings"
345
  msgstr ""
346
 
347
+ #: ../cerber-load.php:7217
348
  msgid "Awesome!"
349
  msgstr ""
350
 
351
+ #: ../cerber-scanner.php:939 ../dashboard.php:1798
352
  msgid "Full Scan"
353
  msgstr ""
354
 
355
+ #: ../cerber-scanner.php:939 ../dashboard.php:1796
356
  msgid "Quick Scan"
357
  msgstr ""
358
 
359
+ #: ../cerber-scanner.php:1440
360
  msgid "Verified"
361
  msgstr ""
362
 
363
+ #: ../cerber-scanner.php:1446
364
  msgid "Vulnerability found"
365
  msgstr ""
366
 
367
+ #: ../cerber-scanner.php:1447
368
  msgid "Integrity data not found"
369
  msgstr ""
370
 
371
+ #: ../cerber-scanner.php:1448
372
  msgid "Unable to check the integrity of the plugin due to a network error"
373
  msgstr ""
374
 
375
+ #: ../cerber-scanner.php:1449
376
  msgid "Unable to check the integrity of WordPress files due to a network error"
377
  msgstr ""
378
 
379
+ #: ../cerber-scanner.php:1450
380
  msgid "Unable to check the integrity of the theme due to a network error"
381
  msgstr ""
382
 
383
+ #: ../cerber-scanner.php:1451
384
  msgid "Unable to check the integrity due to a DB error"
385
  msgstr ""
386
 
387
+ #: ../cerber-scanner.php:1454
388
+ msgid "File is missing"
389
  msgstr ""
390
 
391
+ #: ../cerber-scanner.php:1456
392
  msgid "Unable to process file"
393
  msgstr ""
394
 
395
+ #: ../cerber-scanner.php:1457 ../cerber-scanner.php:4680
396
  msgid "Unable to open file"
397
  msgstr ""
398
 
399
+ #: ../cerber-scanner.php:1459 ../admin/cerber-admin.php:79
400
  msgid "Checksum mismatch"
401
  msgstr ""
402
 
403
+ #: ../cerber-scanner.php:1462
404
  msgid "Suspicious code found"
405
  msgstr ""
406
 
407
+ #: ../cerber-scanner.php:1463
408
  msgid "Malicious code found"
409
  msgstr ""
410
 
411
+ #: ../cerber-scanner.php:1464
412
  msgid "Unattended suspicious file"
413
  msgstr ""
414
 
415
+ #: ../cerber-scanner.php:1465
416
  msgid "Executable code found"
417
  msgstr ""
418
 
419
+ #: ../cerber-scanner.php:1468 ../cerber-scanner.php:2708
420
  msgid "Suspicious directives found"
421
  msgstr ""
422
 
423
+ #: ../cerber-scanner.php:1469
424
  msgid "Unwanted file extension"
425
  msgstr ""
426
 
427
+ #: ../cerber-scanner.php:1471
428
  msgid "Content has been modified"
429
  msgstr ""
430
 
431
+ #: ../cerber-scanner.php:1472
432
  msgid "New file"
433
  msgstr ""
434
 
435
+ #: ../cerber-scanner.php:1474
436
  msgid "Unable to delete"
437
  msgstr ""
438
 
439
+ #: ../cerber-scanner.php:1475
440
  msgid "File deleted"
441
  msgstr ""
442
 
443
+ #: ../cerber-scanner.php:1476
444
  msgid "File recovered"
445
  msgstr ""
446
 
447
+ #: ../cerber-scanner.php:1495 ../cerber-users.php:20 ../cerber-users.php:446 ..
448
+ #: /dashboard.php:1795 ../dashboard.php:1797 ../settings.php:740 ../settings.php:
449
+ #: 768 ../settings.php:892 ../settings.php:901 ../settings.php:1244
450
  msgid "Disabled"
451
  msgstr ""
452
 
453
+ #: ../cerber-scanner.php:1496
454
  msgid "Every hour"
455
  msgstr ""
456
 
457
+ #: ../cerber-scanner.php:1497
458
  msgid "Every 3 hours"
459
  msgstr ""
460
 
461
+ #: ../cerber-scanner.php:1498
462
  msgid "Every 6 hours"
463
  msgstr ""
464
 
465
+ #: ../cerber-scanner.php:2528
466
  msgid "Custom signature found"
467
  msgstr ""
468
 
469
+ #: ../cerber-scanner.php:2703
470
  msgid ""
471
  "This file contains executable code and may contain obfuscated malware. If "
472
  "this file is a part of a theme or a plugin, it must be located in the theme "
473
  "or the plugin folder. No exception, no excuses."
474
  msgstr ""
475
 
476
+ #: ../cerber-scanner.php:2704
477
  msgid ""
478
  "The scanner recognizes this file as \"ownerless\" or \"not bundled\" because it "
479
  "does not belong to any known part of the website and should not be here."
480
  msgstr ""
481
 
482
+ #: ../cerber-scanner.php:2705
483
  #, php-format
484
  msgid ""
485
  "It may remain after upgrading to a newer version of %s. It also may be a "
487
  "made (bespoke) plugin or theme."
488
  msgstr ""
489
 
490
+ #: ../cerber-scanner.php:2706
491
  msgid "Suspicious code instruction found"
492
  msgstr ""
493
 
494
+ #: ../cerber-scanner.php:2707
495
  msgid "Suspicious code signatures found"
496
  msgstr ""
497
 
498
+ #: ../cerber-scanner.php:2709
499
  msgid ""
500
  "The contents of the file have been changed and do not match what exists in "
501
  "the official WordPress repository or a reference file you have uploaded "
503
  "has been tampered with."
504
  msgstr ""
505
 
506
+ #: ../cerber-scanner.php:2710
507
  #, php-format
508
  msgid ""
509
  "To solve this issue you have to reinstall %s or update it to the latest "
510
  "version."
511
  msgstr ""
512
 
513
+ #: ../cerber-scanner.php:2711
514
  msgid "Please upload a reference ZIP archive"
515
  msgstr ""
516
 
517
+ #: ../cerber-scanner.php:2712
518
  msgid "Resolve issue"
519
  msgstr ""
520
 
521
+ #. Mandatory
522
+ #: ../cerber-scanner.php:2719
523
+ msgid "This file is missing. It's been deleted or it's not been installed."
524
+ msgstr ""
525
+
526
+ #: ../cerber-scanner.php:3770
527
  msgid "Preparing for the scan"
528
  msgstr ""
529
 
530
+ #: ../cerber-scanner.php:3771
531
  msgid "Scanning folders for files"
532
  msgstr ""
533
 
534
+ #: ../cerber-scanner.php:3772
535
  msgid "Scanning the upload folder for files"
536
  msgstr ""
537
 
538
+ #: ../cerber-scanner.php:3773
539
  msgid "Scanning the temp folder for files"
540
  msgstr ""
541
 
542
+ #: ../cerber-scanner.php:3774
543
  msgid "Scanning the session folder for files"
544
  msgstr ""
545
 
546
+ #: ../cerber-scanner.php:3775
547
  msgid "Parsing the list of files"
548
  msgstr ""
549
 
550
+ #: ../cerber-scanner.php:3776
551
  msgid "Checking for new and modified files"
552
  msgstr ""
553
 
554
+ #: ../cerber-scanner.php:3777
555
  msgid "Verifying the integrity of WordPress"
556
  msgstr ""
557
 
558
+ #: ../cerber-scanner.php:3778
559
  msgid "Recovering WordPress files"
560
  msgstr ""
561
 
562
+ #: ../cerber-scanner.php:3779
563
  msgid "Verifying the integrity of the plugins"
564
  msgstr ""
565
 
566
+ #: ../cerber-scanner.php:3780
567
  msgid "Recovering plugins files"
568
  msgstr ""
569
 
570
+ #: ../cerber-scanner.php:3781
571
  msgid "Verifying the integrity of the themes"
572
  msgstr ""
573
 
574
+ #: ../cerber-scanner.php:3782
575
  msgid "Searching for malicious code"
576
  msgstr ""
577
 
578
+ #: ../cerber-scanner.php:3783
579
  msgid "Finalizing the scan"
580
  msgstr ""
581
 
582
+ #: ../cerber-scanner.php:4022
583
+ #, php-format
584
+ msgid "Error: file %s cannot be used."
585
+ msgstr ""
586
+
587
+ #: ../cerber-scanner.php:4022
588
+ msgid "Please upload another file."
589
+ msgstr ""
590
+
591
+ #: ../cerber-scanner.php:4809
592
  msgid "Full Scan Report"
593
  msgstr ""
594
 
595
+ #: ../cerber-scanner.php:4809
596
  msgid "Quick Scan Report"
597
  msgstr ""
598
 
599
+ #: ../cerber-scanner.php:4822
600
  msgid "Files scanned"
601
  msgstr ""
602
 
603
+ #: ../cerber-scanner.php:4853 ../admin/cerber-admin.php:103
604
  msgid "Issues total"
605
  msgstr ""
606
 
607
+ #: ../cerber-scanner.php:4907
608
  msgid "Deleted"
609
  msgstr ""
610
 
611
+ #: ../cerber-scanner.php:4911
612
  msgid "Recovered"
613
  msgstr ""
614
 
615
+ #: ../cerber-scanner.php:4960
616
  msgid "Automatically moved to quarantine"
617
  msgstr ""
618
 
619
+ #: ../cerber-scanner.php:4961
620
  msgid "Automatically deleted"
621
  msgstr ""
622
 
623
+ #: ../cerber-scanner.php:4964
624
  msgid "Automatically recovered"
625
  msgstr ""
626
 
627
+ #: ../cerber-scanner.php:4976
628
  msgid "To view full report visit"
629
  msgstr ""
630
 
739
  msgid "Unsubscribe"
740
  msgstr ""
741
 
742
+ #: ../cerber-lab.php:850
743
  msgid "Want to make WP Cerber even more powerful?"
744
  msgstr ""
745
 
746
+ #: ../cerber-lab.php:851
747
  msgid ""
748
  "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. "
749
  "This helps the plugin team to develop new algorithms for WP Cerber that will "
751
  "everyday. You can disable the sending in the plugin settings at any time."
752
  msgstr ""
753
 
754
+ #: ../cerber-lab.php:852
755
  msgid "OK, nail them all"
756
  msgstr ""
757
 
758
+ #: ../cerber-lab.php:853
759
  msgid "NO, maybe later"
760
  msgstr ""
761
 
762
+ #: ../cerber-lab.php:854 ../admin/cerber-settings.php:100 ../admin/cerber-
763
  #: settings.php:270
764
  msgid "Know more"
765
  msgstr ""
960
  msgstr ""
961
 
962
  #: ../nexus/cerber-slave-list.php:333 ../dashboard.php:434 ../dashboard.php:3710 .
963
+ #: ./dashboard.php:4277 ../common.php:1529 ../whois.php:222 ../whois.php:253
964
  msgid "Unknown"
965
  msgstr ""
966
 
969
  msgstr ""
970
 
971
  #: ../nexus/cerber-slave-list.php:347 ../dashboard.php:1649 ../dashboard.php:1740
972
+ #: ../dashboard.php:1789 ../common.php:1667
973
  msgid "Never"
974
  msgstr ""
975
 
1085
  msgid "blocked by %s at %s"
1086
  msgstr ""
1087
 
1088
+ #: ../cerber-users.php:68 ../settings.php:540
1089
  msgid "User Message"
1090
  msgstr ""
1091
 
1137
  msgid "Redirect user after logout"
1138
  msgstr ""
1139
 
1140
+ #: ../cerber-users.php:432 ../settings.php:602
1141
  msgid "User session expiration time"
1142
  msgstr ""
1143
 
1270
  msgid "Finished"
1271
  msgstr ""
1272
 
1273
+ #: ../admin/cerber-admin.php:51 ../settings.php:264
1274
  msgid "Duration"
1275
  msgstr ""
1276
 
1530
  msgid "Notify admin if the number of active lockouts above"
1531
  msgstr ""
1532
 
1533
+ #: ../admin/cerber-settings.php:377 ../settings.php:276
1534
  msgid "Click to send test"
1535
  msgstr ""
1536
 
1667
  msgid "Cerber anti-spam settings"
1668
  msgstr ""
1669
 
1670
+ #: ../dashboard.php:72 ../settings.php:1171
1671
  msgid "Anti-spam"
1672
  msgstr ""
1673
 
1809
  msgid "Suspicious activity"
1810
  msgstr ""
1811
 
1812
+ #: ../dashboard.php:978 ../common.php:1366
1813
  msgid "IP blocked"
1814
  msgstr ""
1815
 
1816
  #: ../dashboard.php:980 ../dashboard.php:1764 ../dashboard.php:4064 ../settings.
1817
+ #: php:405 ../settings.php:1090
1818
  msgid "Logged in users"
1819
  msgstr ""
1820
 
1854
  msgid "Filter"
1855
  msgstr ""
1856
 
1857
+ #: ../dashboard.php:1400 ../common.php:1425
1858
  msgid "Locked out"
1859
  msgstr ""
1860
 
1958
  msgstr[0] ""
1959
  msgstr[1] ""
1960
 
1961
+ #: ../dashboard.php:1768 ../settings.php:249
1962
  msgid "Citadel mode"
1963
  msgstr ""
1964
 
1983
  msgid "A new version is available"
1984
  msgstr ""
1985
 
1986
+ #: ../dashboard.php:2174 ../settings.php:236
1987
  msgid "My site is behind a reverse proxy"
1988
  msgstr ""
1989
 
2213
  msgid "Hardening"
2214
  msgstr ""
2215
 
2216
+ #: ../dashboard.php:4783 ../settings.php:270
2217
  msgid "Notifications"
2218
  msgstr ""
2219
 
2341
  msgid "Add to menu"
2342
  msgstr ""
2343
 
2344
+ #: ../common.php:210
2345
  msgid "Check for requests"
2346
  msgstr ""
2347
 
2348
+ #: ../common.php:308
2349
  msgid "Malicious activities mitigated"
2350
  msgstr ""
2351
 
2352
+ #: ../common.php:311
2353
  msgid "Spam comments denied"
2354
  msgstr ""
2355
 
2356
+ #: ../common.php:312
2357
  msgid "Spam form submissions denied"
2358
  msgstr ""
2359
 
2360
+ #: ../common.php:313
2361
  msgid "Malicious IP addresses detected"
2362
  msgstr ""
2363
 
2364
+ #: ../common.php:314
2365
  msgid "Lockouts occurred"
2366
  msgstr ""
2367
 
2368
+ #: ../common.php:1358
2369
  msgid "User created"
2370
  msgstr ""
2371
 
2372
+ #: ../common.php:1359
2373
  msgid "User registered"
2374
  msgstr ""
2375
 
2376
+ #: ../common.php:1360
2377
  msgid "User deleted"
2378
  msgstr ""
2379
 
2380
+ #: ../common.php:1361
2381
  msgid "Logged in"
2382
  msgstr ""
2383
 
2384
+ #: ../common.php:1362
2385
  msgid "Logged out"
2386
  msgstr ""
2387
 
2388
+ #: ../common.php:1363
2389
  msgid "Login failed"
2390
  msgstr ""
2391
 
2392
+ #: ../common.php:1367
2393
  msgid "IP subnet blocked"
2394
  msgstr ""
2395
 
2396
+ #: ../common.php:1370
2397
  msgid "Citadel activated!"
2398
  msgstr ""
2399
 
2400
+ #: ../common.php:1371
2401
  msgid "Spam comment denied"
2402
  msgstr ""
2403
 
2404
+ #: ../common.php:1372
2405
  msgid "Spam form submission denied"
2406
  msgstr ""
2407
 
2408
+ #: ../common.php:1373
2409
  msgid "Form submission denied"
2410
  msgstr ""
2411
 
2412
+ #: ../common.php:1374
2413
  msgid "Comment denied"
2414
  msgstr ""
2415
 
2416
+ #: ../common.php:1383
2417
  msgid "Password changed"
2418
  msgstr ""
2419
 
2420
+ #: ../common.php:1384
2421
  msgid "Password reset requested"
2422
  msgstr ""
2423
 
2424
+ #: ../common.php:1386
2425
  msgid "reCAPTCHA verification failed"
2426
  msgstr ""
2427
 
2428
+ #: ../common.php:1387
2429
  msgid "reCAPTCHA settings are incorrect"
2430
  msgstr ""
2431
 
2432
+ #: ../common.php:1388
2433
  msgid "Request to the Google reCAPTCHA service failed"
2434
  msgstr ""
2435
 
2436
+ #: ../common.php:1390 ../common.php:1506
2437
  msgid "Attempt to access prohibited URL"
2438
  msgstr ""
2439
 
2440
+ #: ../common.php:1391 ../common.php:1507
2441
  msgid "Attempt to log in with non-existing username"
2442
  msgstr ""
2443
 
2444
+ #: ../common.php:1392 ../common.php:1508
2445
  msgid "Attempt to log in with prohibited username"
2446
  msgstr ""
2447
 
2448
+ #: ../common.php:1394
2449
  msgid "Attempt to log in denied"
2450
  msgstr ""
2451
 
2452
+ #: ../common.php:1395
2453
  msgid "Attempt to register denied"
2454
  msgstr ""
2455
 
2456
+ #: ../common.php:1396 ../common.php:1512
2457
  msgid "Probing for vulnerable code"
2458
  msgstr ""
2459
 
2460
+ #: ../common.php:1397
2461
  msgid "Attempt to upload malicious file denied"
2462
  msgstr ""
2463
 
2464
+ #: ../common.php:1398
2465
  msgid "File upload denied"
2466
  msgstr ""
2467
 
2468
+ #: ../common.php:1400
2469
  msgid "Request to REST API denied"
2470
  msgstr ""
2471
 
2472
+ #: ../common.php:1401
2473
  msgid "XML-RPC request denied"
2474
  msgstr ""
2475
 
2476
+ #: ../common.php:1403
2477
  msgid "User creation denied"
2478
  msgstr ""
2479
 
2480
+ #: ../common.php:1404
2481
  msgid "User row update denied"
2482
  msgstr ""
2483
 
2484
+ #: ../common.php:1405
2485
  msgid "Role update denied"
2486
  msgstr ""
2487
 
2488
+ #: ../common.php:1406
2489
  msgid "Setting update denied"
2490
  msgstr ""
2491
 
2492
+ #: ../common.php:1407
2493
  msgid "User metadata update denied"
2494
  msgstr ""
2495
 
2496
+ #: ../common.php:1409
2497
  msgid "Malicious request denied"
2498
  msgstr ""
2499
 
2500
+ #: ../common.php:1412
2501
  msgid "User activated"
2502
  msgstr ""
2503
 
2504
+ #: ../common.php:1415
2505
  msgid "Invalid master credentials"
2506
  msgstr ""
2507
 
2508
+ #: ../common.php:1423
2509
  msgid "Bot detected"
2510
  msgstr ""
2511
 
2512
+ #: ../common.php:1424
2513
  msgid "Citadel mode is active"
2514
  msgstr ""
2515
 
2516
+ #: ../common.php:1426
2517
  msgid "IP address is locked out"
2518
  msgstr ""
2519
 
2520
+ #: ../common.php:1427
2521
  msgid "IP blacklisted"
2522
  msgstr ""
2523
 
2524
+ #: ../common.php:1428
2525
  msgid "Malicious activity detected"
2526
  msgstr ""
2527
 
2528
+ #: ../common.php:1429
2529
  msgid "Blocked by country rule"
2530
  msgstr ""
2531
 
2532
+ #: ../common.php:1430
2533
  msgid "Limit reached"
2534
  msgstr ""
2535
 
2536
+ #: ../common.php:1431
2537
  msgid "Multiple suspicious activities"
2538
  msgstr ""
2539
 
2540
+ #: ../common.php:1432
2541
  msgid "Denied"
2542
  msgstr ""
2543
 
2544
+ #: ../common.php:1434
2545
  msgid "Suspicious number of fields"
2546
  msgstr ""
2547
 
2548
+ #: ../common.php:1435
2549
  msgid "Suspicious number of nested values"
2550
  msgstr ""
2551
 
2552
+ #: ../common.php:1436 ../common.php:1513
2553
  msgid "Malicious code detected"
2554
  msgstr ""
2555
 
2556
+ #: ../common.php:1437
2557
  msgid "Suspicious SQL code detected"
2558
  msgstr ""
2559
 
2560
+ #: ../common.php:1438
2561
  msgid "Suspicious JavaScript code detected"
2562
  msgstr ""
2563
 
2564
+ #: ../common.php:1439
2565
  msgid "Blocked by administrator"
2566
  msgstr ""
2567
 
2568
+ #: ../common.php:1440
2569
  msgid "Site policy enforcement"
2570
  msgstr ""
2571
 
2572
+ #: ../common.php:1441
2573
  msgid "2FA code verified"
2574
  msgstr ""
2575
 
2576
+ #: ../common.php:1442
2577
  msgid "Initiated by the user"
2578
  msgstr ""
2579
 
2580
+ #: ../common.php:1445
2581
  msgid "Email address is prohibited"
2582
  msgstr ""
2583
 
2584
+ #: ../common.php:1447
2585
  msgid "Permission denied"
2586
  msgstr ""
2587
 
2588
+ #: ../common.php:1449
2589
  msgid "Invalid user"
2590
  msgstr ""
2591
 
2592
+ #: ../common.php:1450
2593
  msgid "Incorrect password"
2594
  msgstr ""
2595
 
2596
+ #: ../common.php:1451
2597
  msgid "IP address is not allowed"
2598
  msgstr ""
2599
 
2600
+ #: ../common.php:1454
2601
  msgid "IP whitelisted"
2602
  msgstr ""
2603
 
2604
+ #: ../common.php:1504
2605
  msgid "Limit on login attempts is reached"
2606
  msgstr ""
2607
 
2608
+ #: ../common.php:1505
2609
  msgid "Attempt to access"
2610
  msgstr ""
2611
 
2612
+ #: ../common.php:1509
2613
  msgid "Limit on failed reCAPTCHA verifications is reached"
2614
  msgstr ""
2615
 
2616
+ #: ../common.php:1510
2617
  msgid "Bot activity is detected"
2618
  msgstr ""
2619
 
2620
+ #: ../common.php:1511
2621
  msgid "Multiple suspicious activities were detected"
2622
  msgstr ""
2623
 
2624
+ #: ../common.php:1514
2625
  msgid "Attempt to upload a file with malicious code"
2626
  msgstr ""
2627
 
2628
+ #: ../common.php:1516
2629
  msgid "Multiple erroneous requests"
2630
  msgstr ""
2631
 
2632
+ #: ../common.php:1517
2633
  msgid "Multiple suspicious requests"
2634
  msgstr ""
2635
 
2636
  #. translators: Time difference between two dates, in seconds (sec=second). 1: Number of seconds
2637
+ #: ../common.php:1655
2638
  #, php-format
2639
  msgid "%s sec"
2640
  msgid_plural "%s secs"
2641
  msgstr[0] ""
2642
  msgstr[1] ""
2643
 
2644
+ #: ../common.php:1662
2645
  #, php-format
2646
  msgid "%s ago"
2647
  msgstr ""
2648
 
2649
+ #: ../common.php:1662
2650
  #, php-format
2651
  msgctxt "preposition of a period of time like: in 6 hours"
2652
  msgid "in %s"
2653
  msgstr ""
2654
 
2655
+ #: ../common.php:1769
2656
  msgid "Bytes"
2657
  msgstr ""
2658
 
2659
+ #: ../common.php:1875
2660
  #, php-format
2661
  msgid "A new version of %s is available. Please install it."
2662
  msgstr ""
2663
 
2664
+ #: ../common.php:2722
2665
  msgid "Unable to create the directory"
2666
  msgstr ""
2667
 
2668
+ #: ../common.php:2727
2669
  msgid "Destination folder access denied"
2670
  msgstr ""
2671
 
2672
+ #: ../common.php:2730
2673
  msgid "File not found"
2674
  msgstr ""
2675
 
2676
+ #: ../common.php:2733
2677
  msgid "Unable to copy the file"
2678
  msgstr ""
2679
 
2680
+ #: ../common.php:2739
2681
  msgid "Unable to delete the file"
2682
  msgstr ""
2683
 
2739
  msgid "Lockout duration"
2740
  msgstr ""
2741
 
2742
+ #: ../settings.php:159 ../settings.php:265
2743
  msgid "minutes"
2744
  msgstr ""
2745
 
2747
  msgid "Aggressive lockout"
2748
  msgstr ""
2749
 
2750
+ #: ../settings.php:166 ../settings.php:533 ../settings.php:558 ../settings.php:746
2751
  msgid "Use White IP Access List"
2752
  msgstr ""
2753
 
2835
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
2836
  msgstr ""
2837
 
2838
+ #: ../settings.php:225
2839
+ msgid "Deferred rendering"
2840
+ msgstr ""
2841
+
2842
+ #: ../settings.php:226
2843
+ msgid "Defer rendering the custom login page"
2844
+ msgstr ""
2845
+
2846
+ #: ../settings.php:232
2847
  msgid "Site-specific settings"
2848
  msgstr ""
2849
 
2850
+ #: ../settings.php:235
2851
  msgid "Site connection"
2852
  msgstr ""
2853
 
2854
+ #: ../settings.php:240
2855
  msgid "Prefix for plugin cookies"
2856
  msgstr ""
2857
 
2858
+ #: ../settings.php:241
2859
  msgid "Prefix may contain only Latin alphanumeric characters and underscores"
2860
  msgstr ""
2861
 
2862
+ #: ../settings.php:250
2863
  msgid ""
2864
  "In the Citadel mode nobody is able to log in except IPs from the White IP "
2865
  "Access List. Active user sessions will not be affected."
2866
  msgstr ""
2867
 
2868
+ #: ../settings.php:253
2869
  msgid "Enable authentication log monitoring"
2870
  msgstr ""
2871
 
2872
+ #: ../settings.php:259
2873
  msgid "Threshold"
2874
  msgstr ""
2875
 
2876
+ #: ../settings.php:272
2877
  msgid "Send notification to admin email"
2878
  msgstr ""
2879
 
2880
+ #: ../settings.php:285 ../settings.php:848
2881
  msgid "Keep log records of not logged in visitors for"
2882
  msgstr ""
2883
 
2884
+ #: ../settings.php:286 ../settings.php:292 ../settings.php:849 ../settings.php:
2885
+ #: 855 ../settings.php:926 ../settings.php:1117
2886
  msgid "days"
2887
  msgstr ""
2888
 
2889
+ #: ../settings.php:291 ../settings.php:854
2890
  msgid "Keep log records of logged in users for"
2891
  msgstr ""
2892
 
2893
+ #: ../settings.php:297
2894
  msgid "Cerber Lab connection"
2895
  msgstr ""
2896
 
2897
+ #: ../settings.php:298
2898
  msgid "Send malicious IP addresses to the Cerber Lab"
2899
  msgstr ""
2900
 
2901
+ #: ../settings.php:303
2902
  msgid "Cerber Lab protocol"
2903
  msgstr ""
2904
 
2905
+ #: ../settings.php:311
2906
  msgid "Use file"
2907
  msgstr ""
2908
 
2909
+ #: ../settings.php:312
2910
  msgid "Write failed login attempts to the file"
2911
  msgstr ""
2912
 
2913
+ #: ../settings.php:318
2914
  msgid "Preferences"
2915
  msgstr ""
2916
 
2917
+ #: ../settings.php:321
2918
  msgid "Drill down IP"
2919
  msgstr ""
2920
 
2921
+ #: ../settings.php:322
2922
  msgid "Retrieve extra WHOIS information for IP"
2923
  msgstr ""
2924
 
2925
+ #: ../settings.php:326
2926
  msgid "Date format"
2927
  msgstr ""
2928
 
2929
+ #: ../settings.php:327
2930
  #, php-format
2931
  msgid "if empty, the default format %s will be used"
2932
  msgstr ""
2933
 
2934
+ #: ../settings.php:333
2935
  msgid "Date format for CSV export"
2936
  msgstr ""
2937
 
2938
+ #: ../settings.php:334
2939
  msgid "Use ISO 8601 date format for CSV export files"
2940
  msgstr ""
2941
 
2942
+ #: ../settings.php:338
2943
  msgid "Use English"
2944
  msgstr ""
2945
 
2946
+ #: ../settings.php:339
2947
  msgid "Use English for admin interface"
2948
  msgstr ""
2949
 
2950
+ #: ../settings.php:343
2951
  msgid "My IP address"
2952
  msgstr ""
2953
 
2954
+ #: ../settings.php:344
2955
  msgid "Do not add my IP address to the White IP Access List upon plugin activation"
2956
  msgstr ""
2957
 
2958
+ #: ../settings.php:355
2959
  msgid "Hardening WordPress"
2960
  msgstr ""
2961
 
2962
+ #: ../settings.php:359 ../settings.php:395
2963
  msgid "Stop user enumeration"
2964
  msgstr ""
2965
 
2966
+ #: ../settings.php:360
2967
  msgid "Block access to user pages like /?author=n"
2968
  msgstr ""
2969
 
2970
+ #: ../settings.php:364
2971
  msgid "Protect admin scripts"
2972
  msgstr ""
2973
 
2974
+ #: ../settings.php:365
2975
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
2976
  msgstr ""
2977
 
2978
+ #: ../settings.php:369
2979
  msgid "Disable PHP in uploads"
2980
  msgstr ""
2981
 
2982
+ #: ../settings.php:370
2983
  msgid "Block execution of PHP scripts in the WordPress media folder"
2984
  msgstr ""
2985
 
2986
+ #: ../settings.php:374
2987
  msgid "Disable PHP error displaying"
2988
  msgstr ""
2989
 
2990
+ #: ../settings.php:378
2991
  msgid "Disable XML-RPC"
2992
  msgstr ""
2993
 
2994
+ #: ../settings.php:379
2995
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
2996
  msgstr ""
2997
 
2998
+ #: ../settings.php:383
2999
  msgid "Disable feeds"
3000
  msgstr ""
3001
 
3002
+ #: ../settings.php:384
3003
  msgid "Block access to the RSS, Atom and RDF feeds"
3004
  msgstr ""
3005
 
3006
+ #: ../settings.php:390
3007
  msgid "Access to WordPress REST API"
3008
  msgstr ""
3009
 
3010
+ #: ../settings.php:391
3011
  msgid ""
3012
  "Restrict or completely block access to the WordPress REST API according to "
3013
  "your needs"
3014
  msgstr ""
3015
 
3016
+ #: ../settings.php:396
3017
  msgid "Block access to users' data via REST API"
3018
  msgstr ""
3019
 
3020
+ #: ../settings.php:400
3021
  msgid "Disable REST API"
3022
  msgstr ""
3023
 
3024
+ #: ../settings.php:401
3025
  msgid "Block access to WordPress REST API except any of the following"
3026
  msgstr ""
3027
 
3028
+ #: ../settings.php:406
3029
  msgid "Allow REST API for logged in users"
3030
  msgstr ""
3031
 
3032
+ #: ../settings.php:411
3033
  msgid "Allow REST API for these roles"
3034
  msgstr ""
3035
 
3036
+ #: ../settings.php:416
3037
  msgid "Allow these namespaces"
3038
  msgstr ""
3039
 
3040
+ #: ../settings.php:420
3041
  msgid ""
3042
  "Specify REST API namespaces to be allowed if REST API is disabled. One "
3043
  "string per line."
3044
  msgstr ""
3045
 
3046
+ #: ../settings.php:428
3047
  msgid "Protect user accounts"
3048
  msgstr ""
3049
 
3050
+ #: ../settings.php:433
3051
  msgid ""
3052
  "Restrict user account creation and user management with the following "
3053
  "policies"
3054
  msgstr ""
3055
 
3056
+ #: ../settings.php:439
3057
  msgid "User registrations are limited to these roles"
3058
  msgstr ""
3059
 
3060
+ #: ../settings.php:445
3061
  msgid "Users with these roles are permitted to create new accounts"
3062
  msgstr ""
3063
 
3064
+ #: ../settings.php:450
3065
  msgid "Users with these roles are permitted to change sensitive user data"
3066
  msgstr ""
3067
 
3068
+ #: ../settings.php:455 ../settings.php:483 ../settings.php:512
3069
  msgid "Do not apply these policies to the IP addresses in the White IP Access List"
3070
  msgstr ""
3071
 
3072
+ #: ../settings.php:463
3073
  msgid "Protect user roles"
3074
  msgstr ""
3075
 
3076
+ #: ../settings.php:467
3077
  msgid "Restrict roles and capabilities management with the following policies"
3078
  msgstr ""
3079
 
3080
+ #: ../settings.php:473
3081
  msgid "Users with these roles are permitted to add new roles"
3082
  msgstr ""
3083
 
3084
+ #: ../settings.php:478
3085
  msgid "Users with these roles are permitted to change role capabilities"
3086
  msgstr ""
3087
 
3088
+ #: ../settings.php:491
3089
  msgid "Protect site settings"
3090
  msgstr ""
3091
 
3092
+ #: ../settings.php:495
3093
  msgid "Restrict updating site settings with the following policies"
3094
  msgstr ""
3095
 
3096
+ #: ../settings.php:501
3097
  msgid "Users with these roles are permitted to change protected settings"
3098
  msgstr ""
3099
 
3100
+ #: ../settings.php:506
3101
  msgid "Protected settings"
3102
  msgstr ""
3103
 
3104
+ #: ../settings.php:526
3105
  msgid "Authorized users only"
3106
  msgstr ""
3107
 
3108
+ #: ../settings.php:527
3109
  msgid "Only registered and logged in website users have access to the website"
3110
  msgstr ""
3111
 
3112
+ #: ../settings.php:534
3113
  msgid "Do not apply these policy to the IP addresses in the White IP Access List"
3114
  msgstr ""
3115
 
3116
+ #: ../settings.php:544 ../settings.php:1490
3117
  msgid "Only registered and logged in users are allowed to view this website"
3118
  msgstr ""
3119
 
3120
+ #: ../settings.php:549
3121
  msgid "Redirect to URL"
3122
  msgstr ""
3123
 
3124
+ #: ../settings.php:559
3125
  msgid ""
3126
  "Only users from IP addresses in the White IP Access List may register on the "
3127
  "website"
3128
  msgstr ""
3129
 
3130
+ #: ../settings.php:564
3131
  msgid "User message"
3132
  msgstr ""
3133
 
3134
+ #: ../settings.php:571
3135
  msgid "Registration limit"
3136
  msgstr ""
3137
 
3138
+ #: ../settings.php:577
3139
  msgid "Restrict email addresses"
3140
  msgstr ""
3141
 
3142
+ #: ../settings.php:580
3143
  msgid "No restrictions"
3144
  msgstr ""
3145
 
3146
+ #: ../settings.php:581
3147
  msgid "Deny all email addresses that match the following"
3148
  msgstr ""
3149
 
3150
+ #: ../settings.php:582
3151
  msgid "Permit only email addresses that match the following"
3152
  msgstr ""
3153
 
3154
+ #: ../settings.php:587
3155
  msgid ""
3156
  "Specify email addresses, wildcards or REGEX patterns. Use comma to separate "
3157
  "items."
3158
  msgstr ""
3159
 
3160
+ #: ../settings.php:587 ../settings.php:595
3161
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
3162
  msgstr ""
3163
 
3164
+ #: ../settings.php:594
3165
  msgid "Prohibited usernames"
3166
  msgstr ""
3167
 
3168
+ #: ../settings.php:595
3169
  msgid ""
3170
  "Usernames from this list are not allowed to log in or register. Any IP "
3171
  "address, have tried to use any of these usernames, will be immediately "
3172
  "blocked. Use comma to separate logins."
3173
  msgstr ""
3174
 
3175
+ #: ../settings.php:603
3176
  msgid "minutes (leave empty to use the default WordPress value)"
3177
  msgstr ""
3178
 
3179
+ #: ../settings.php:609
3180
  msgid "Sort users in dashboard"
3181
  msgstr ""
3182
 
3183
+ #: ../settings.php:610
3184
  msgid "by date of registration"
3185
  msgstr ""
3186
 
3187
+ #: ../settings.php:618
3188
  msgid "Personal Data"
3189
  msgstr ""
3190
 
3191
+ #: ../settings.php:620
3192
  msgid ""
3193
  "These features help your organization to be in compliance with personal data "
3194
  "protection laws"
3195
  msgstr ""
3196
 
3197
+ #: ../settings.php:624
3198
  msgid "Enable data erase"
3199
  msgstr ""
3200
 
3201
+ #: ../settings.php:631
3202
  msgid "Terminate user sessions"
3203
  msgstr ""
3204
 
3205
+ #: ../settings.php:632
3206
  msgid "Delete user sessions data when user data is erased"
3207
  msgstr ""
3208
 
3209
+ #: ../settings.php:638
3210
  msgid "Enable data export"
3211
  msgstr ""
3212
 
3213
+ #: ../settings.php:645
3214
  msgid "Include activity log events"
3215
  msgstr ""
3216
 
3217
+ #: ../settings.php:651
3218
  msgid "Include traffic log entries"
3219
  msgstr ""
3220
 
3221
+ #: ../settings.php:654
3222
  msgid "Request URL"
3223
  msgstr ""
3224
 
3225
+ #: ../settings.php:655
3226
  msgid "Form fields data"
3227
  msgstr ""
3228
 
3229
+ #: ../settings.php:656
3230
  msgid "Cookies"
3231
  msgstr ""
3232
 
3233
+ #: ../settings.php:664
3234
  msgid "Email notifications"
3235
  msgstr ""
3236
 
3237
+ #: ../settings.php:669
3238
  msgid "Lockout notifications"
3239
  msgstr ""
3240
 
3241
+ #: ../settings.php:673 ../settings.php:720 ../settings.php:981
3242
  msgid "Email Address"
3243
  msgstr ""
3244
 
3245
+ #: ../settings.php:674 ../settings.php:722 ../settings.php:820 ../settings.php:983
3246
  msgid "Use comma to specify multiple values"
3247
  msgstr ""
3248
 
3249
+ #: ../settings.php:678
3250
  #, php-format
3251
  msgid "if empty, the website administrator email %s will be used"
3252
  msgstr ""
3253
 
3254
+ #: ../settings.php:681
3255
  msgid "Notification limit"
3256
  msgstr ""
3257
 
3258
+ #: ../settings.php:682
3259
  msgid "notifications are allowed per hour (0 means unlimited)"
3260
  msgstr ""
3261
 
3262
+ #: ../settings.php:686
3263
  msgid "New version is available"
3264
  msgstr ""
3265
 
3266
+ #: ../settings.php:692
3267
  msgid "Push notifications"
3268
  msgstr ""
3269
 
3270
+ #: ../settings.php:693
3271
  msgid "Get notified instantly with mobile and desktop notifications"
3272
  msgstr ""
3273
 
3274
+ #: ../settings.php:697
3275
  msgid "Pushbullet access token"
3276
  msgstr ""
3277
 
3278
+ #: ../settings.php:700
3279
  msgid "Pushbullet device"
3280
  msgstr ""
3281
 
3282
+ #: ../settings.php:707
3283
  msgid "Weekly reports"
3284
  msgstr ""
3285
 
3286
+ #: ../settings.php:708
3287
  msgid ""
3288
  "Weekly report is a summary of all activities and suspicious events occurred "
3289
  "during the last seven days"
3290
  msgstr ""
3291
 
3292
+ #: ../settings.php:711
3293
  msgid "Enable reporting"
3294
  msgstr ""
3295
 
3296
+ #: ../settings.php:715
3297
  msgid "Send reports on"
3298
  msgstr ""
3299
 
3300
+ #: ../settings.php:721 ../settings.php:982
3301
  msgid "if empty, the email addresses from the notification settings will be used"
3302
  msgstr ""
3303
 
3304
+ #: ../settings.php:732
3305
  msgid "Traffic Inspection"
3306
  msgstr ""
3307
 
3308
+ #: ../settings.php:733
3309
  msgid ""
3310
  "Traffic Inspector is a context-aware web application firewall (WAF) that "
3311
  "protects your website by recognizing and denying malicious HTTP requests"
3312
  msgstr ""
3313
 
3314
+ #: ../settings.php:737
3315
  msgid "Enable traffic inspection"
3316
  msgstr ""
3317
 
3318
+ #: ../settings.php:741 ../settings.php:769
3319
  msgid "Maximum compatibility"
3320
  msgstr ""
3321
 
3322
+ #: ../settings.php:742 ../settings.php:770
3323
  msgid "Maximum security"
3324
  msgstr ""
3325
 
3326
+ #: ../settings.php:750
3327
  msgid "Request whitelist"
3328
  msgstr ""
3329
 
3330
+ #: ../settings.php:754
3331
  msgid ""
3332
  "Enter a request URI to exclude the request from inspection. One item per "
3333
  "line."
3334
  msgstr ""
3335
 
3336
+ #: ../settings.php:754 ../settings.php:804
3337
  msgid "To specify a REGEX pattern, enclose a whole line in two braces."
3338
  msgstr ""
3339
 
3340
+ #: ../settings.php:760
3341
  msgid "Erroneous Request Shielding"
3342
  msgstr ""
3343
 
3344
+ #: ../settings.php:762
3345
  msgid ""
3346
  "Block IP addresses that send excessive requests for non-existing pages or "
3347
  "scan website for security breaches"
3348
  msgstr ""
3349
 
3350
+ #: ../settings.php:765
3351
  msgid "Enable error shielding"
3352
  msgstr ""
3353
 
3354
+ #: ../settings.php:774
3355
  msgid "Ignore logged in users"
3356
  msgstr ""
3357
 
3358
+ #: ../settings.php:781
3359
  msgid "Traffic Logging"
3360
  msgstr ""
3361
 
3362
+ #: ../settings.php:782
3363
  msgid ""
3364
  "Enable optional traffic logging if you need to monitor suspicious and "
3365
  "malicious activity or solve security issues"
3366
  msgstr ""
3367
 
3368
+ #: ../settings.php:786
3369
  msgid "Logging mode"
3370
  msgstr ""
3371
 
3372
+ #: ../settings.php:789
3373
  msgid "Logging disabled"
3374
  msgstr ""
3375
 
3376
+ #: ../settings.php:790
3377
  msgid "Minimal"
3378
  msgstr ""
3379
 
3380
+ #: ../settings.php:791
3381
  msgid "Smart"
3382
  msgstr ""
3383
 
3384
+ #: ../settings.php:792
3385
  msgid "All traffic"
3386
  msgstr ""
3387
 
3388
+ #: ../settings.php:796
3389
  msgid "Do not log known crawlers"
3390
  msgstr ""
3391
 
3392
+ #: ../settings.php:800
3393
  msgid "Do not log these locations"
3394
  msgstr ""
3395
 
3396
+ #: ../settings.php:804
3397
  msgid "Specify URL paths to exclude requests from logging. One item per line."
3398
  msgstr ""
3399
 
3400
+ #: ../settings.php:807
3401
  msgid "Do not log these User-Agents"
3402
  msgstr ""
3403
 
3404
+ #: ../settings.php:811
3405
  msgid "Specify User-Agents to exclude requests from logging. One item per line."
3406
  msgstr ""
3407
 
3408
+ #: ../settings.php:814
3409
  msgid "Save request fields"
3410
  msgstr ""
3411
 
3412
+ #: ../settings.php:818
3413
  msgid "Mask these form fields"
3414
  msgstr ""
3415
 
3416
+ #: ../settings.php:825
3417
  msgid "Save request headers"
3418
  msgstr ""
3419
 
3420
+ #: ../settings.php:830
3421
  msgid "Save $_SERVER"
3422
  msgstr ""
3423
 
3424
+ #: ../settings.php:834
3425
  msgid "Save request cookies"
3426
  msgstr ""
3427
 
3428
+ #: ../settings.php:838
3429
  msgid "Save software errors"
3430
  msgstr ""
3431
 
3432
+ #: ../settings.php:842
3433
  msgid "Page generation time threshold"
3434
  msgstr ""
3435
 
3436
+ #: ../settings.php:843
3437
  msgid "milliseconds"
3438
  msgstr ""
3439
 
3440
+ #: ../settings.php:863
3441
  msgid "Scanner settings"
3442
  msgstr ""
3443
 
3444
+ #: ../settings.php:864
3445
  msgid ""
3446
  "The scanner monitors file changes, verifies the integrity of WordPress, "
3447
  "plugins, and themes, and detects malware"
3448
  msgstr ""
3449
 
3450
+ #: ../settings.php:868
3451
  msgid "Custom signatures"
3452
  msgstr ""
3453
 
3454
+ #: ../settings.php:872
3455
  msgid ""
3456
  "Specify custom PHP code signatures. One item per line. To specify a REGEX "
3457
  "pattern, enclose a whole line in two braces."
3458
  msgstr ""
3459
 
3460
+ #: ../settings.php:875
3461
  msgid "Unwanted file extensions"
3462
  msgstr ""
3463
 
3464
+ #: ../settings.php:879
3465
  msgid ""
3466
  "Specify file extensions to search for. Full scan only. Use comma to separate "
3467
  "items."
3468
  msgstr ""
3469
 
3470
+ #: ../settings.php:882
3471
  msgid "Directories to exclude"
3472
  msgstr ""
3473
 
3474
+ #: ../settings.php:886
3475
  msgid "Specify directories to exclude from scanning. One directory per line."
3476
  msgstr ""
3477
 
3478
+ #: ../settings.php:889
3479
  msgid "Monitor new files"
3480
  msgstr ""
3481
 
3482
+ #: ../settings.php:893 ../settings.php:902
3483
  msgid "Executable files"
3484
  msgstr ""
3485
 
3486
+ #: ../settings.php:894 ../settings.php:903
3487
  msgid "All files"
3488
  msgstr ""
3489
 
3490
+ #: ../settings.php:898
3491
  msgid "Monitor modified files"
3492
  msgstr ""
3493
 
3494
+ #: ../settings.php:907
3495
  msgid "Change file permissions when necessary"
3496
  msgstr ""
3497
 
3498
+ #: ../settings.php:911
3499
  msgid "Scan temporary directory"
3500
  msgstr ""
3501
 
3502
+ #: ../settings.php:915
3503
  msgid "Scan session directory"
3504
  msgstr ""
3505
 
3506
+ #: ../settings.php:919 ../settings.php:1222 ../settings.php:1250
3507
  msgid "Enable diagnostic logging"
3508
  msgstr ""
3509
 
3510
+ #: ../settings.php:924
3511
  msgid "Delete quarantined files after"
3512
  msgstr ""
3513
 
3514
+ #: ../settings.php:933
3515
  msgid "Automated recurring scan schedule"
3516
  msgstr ""
3517
 
3518
+ #: ../settings.php:934
3519
  msgid ""
3520
  "The scanner automatically scans the website, removes malware and sends email "
3521
  "reports with the results of a scan"
3522
  msgstr ""
3523
 
3524
+ #: ../settings.php:938
3525
  msgid "Launch Quick Scan"
3526
  msgstr ""
3527
 
3528
+ #: ../settings.php:943
3529
  msgid "Launch Full Scan"
3530
  msgstr ""
3531
 
3532
+ #: ../settings.php:950
3533
  msgid "Scan results reporting"
3534
  msgstr ""
3535
 
3536
+ #: ../settings.php:951
3537
  msgid ""
3538
  "Configure what issues to include in the email report and the condition for "
3539
  "sending reports"
3540
  msgstr ""
3541
 
3542
+ #: ../settings.php:955
3543
  msgid "Report an issue if any of the following is true"
3544
  msgstr ""
3545
 
3546
+ #: ../settings.php:958 ../settings.php:1004
3547
  msgid "Low severity"
3548
  msgstr ""
3549
 
3550
+ #: ../settings.php:959 ../settings.php:1005
3551
  msgid "Medium severity"
3552
  msgstr ""
3553
 
3554
+ #: ../settings.php:960 ../settings.php:1006
3555
  msgid "High severity"
3556
  msgstr ""
3557
 
3558
+ #: ../settings.php:964
3559
  msgid "Send email report"
3560
  msgstr ""
3561
 
3562
+ #: ../settings.php:967
3563
  msgid "After every scan"
3564
  msgstr ""
3565
 
3566
+ #: ../settings.php:968
3567
  msgid "If any changes in scan results occurred"
3568
  msgstr ""
3569
 
3570
+ #: ../settings.php:969
3571
  msgid "If new issues found"
3572
  msgstr ""
3573
 
3574
+ #: ../settings.php:973
3575
  msgid "Include file sizes"
3576
  msgstr ""
3577
 
3578
+ #: ../settings.php:977
3579
  msgid "Include scan errors"
3580
  msgstr ""
3581
 
3582
+ #: ../settings.php:992
3583
  msgid "Automatic cleanup of malware and suspicious files"
3584
  msgstr ""
3585
 
3586
+ #: ../settings.php:993
3587
  msgid ""
3588
  "These policies are automatically enforced at the end of every scheduled scan "
3589
  "based on its results. All affected files are moved to the quarantine"
3590
  msgstr ""
3591
 
3592
+ #: ../settings.php:997
3593
  msgid "Delete unattended files"
3594
  msgstr ""
3595
 
3596
+ #: ../settings.php:1001
3597
  msgid "Files in the uploads folder"
3598
  msgstr ""
3599
 
3600
+ #: ../settings.php:1010
3601
  msgid "Files with unwanted extensions"
3602
  msgstr ""
3603
 
3604
+ #: ../settings.php:1016
3605
  msgid "Automatic recovery of modified and infected files"
3606
  msgstr ""
3607
 
3608
+ #: ../settings.php:1019
3609
  msgid "Recover WordPress files"
3610
  msgstr ""
3611
 
3612
+ #: ../settings.php:1023
3613
  msgid "Recover plugins files"
3614
  msgstr ""
3615
 
3616
+ #: ../settings.php:1029
3617
  msgid "Exclusions"
3618
  msgstr ""
3619
 
3620
+ #: ../settings.php:1030
3621
  msgid "These files will never be deleted during automatic cleanup."
3622
  msgstr ""
3623
 
3624
+ #: ../settings.php:1033
3625
  msgid "Files in the temporary directory"
3626
  msgstr ""
3627
 
3628
+ #: ../settings.php:1037
3629
  msgid "Files in the sessions directory"
3630
  msgstr ""
3631
 
3632
+ #: ../settings.php:1041
3633
  msgid "Files in these directories"
3634
  msgstr ""
3635
 
3636
+ #: ../settings.php:1045
3637
  msgid "Use absolute paths. One item per line."
3638
  msgstr ""
3639
 
3640
+ #: ../settings.php:1048
3641
  msgid "Files with these extensions"
3642
  msgstr ""
3643
 
3644
+ #: ../settings.php:1052
3645
  msgid "Use comma to separate items."
3646
  msgstr ""
3647
 
3648
+ #: ../settings.php:1059
3649
  msgid "Cerber anti-spam engine"
3650
  msgstr ""
3651
 
3652
+ #: ../settings.php:1060
3653
  msgid "Spam protection for comment, registration and contact forms on a website"
3654
  msgstr ""
3655
 
3656
+ #: ../settings.php:1064
3657
  msgid "Comment form"
3658
  msgstr ""
3659
 
3660
+ #: ../settings.php:1065
3661
  msgid "Protect comment form with bot detection engine"
3662
  msgstr ""
3663
 
3664
+ #: ../settings.php:1069 ../settings.php:1141
3665
  msgid "Registration form"
3666
  msgstr ""
3667
 
3668
+ #: ../settings.php:1070
3669
  msgid "Protect registration form with bot detection engine"
3670
  msgstr ""
3671
 
3672
+ #: ../settings.php:1074
3673
  msgid "Other forms"
3674
  msgstr ""
3675
 
3676
+ #: ../settings.php:1075
3677
  msgid "Protect all forms on the website with bot detection engine"
3678
  msgstr ""
3679
 
3680
+ #: ../settings.php:1081
3681
  msgid "Adjust anti-spam engine"
3682
  msgstr ""
3683
 
3684
+ #: ../settings.php:1082
3685
  msgid ""
3686
  "These settings enable you to fine-tune the behavior of anti-spam algorithms "
3687
  "and avoid false positives"
3688
  msgstr ""
3689
 
3690
+ #: ../settings.php:1085
3691
  msgid "Safe mode"
3692
  msgstr ""
3693
 
3694
+ #: ../settings.php:1086
3695
  msgid "Use less restrictive policies (allow AJAX)"
3696
  msgstr ""
3697
 
3698
+ #: ../settings.php:1091
3699
  msgid "Disable bot detection engine for logged in users"
3700
  msgstr ""
3701
 
3702
+ #: ../settings.php:1095
3703
  msgid "Query whitelist"
3704
  msgstr ""
3705
 
3706
+ #: ../settings.php:1096
3707
  msgid ""
3708
  "Enter a part of query string or query path to exclude a request from "
3709
  "inspection by the engine. One item per line."
3710
  msgstr ""
3711
 
3712
+ #: ../settings.php:1105
3713
  msgid "Comment processing"
3714
  msgstr ""
3715
 
3716
+ #: ../settings.php:1106
3717
  msgid "How the plugin processes comments submitted through the standard comment form"
3718
  msgstr ""
3719
 
3720
+ #: ../settings.php:1109
3721
  msgid "If a spam comment detected"
3722
  msgstr ""
3723
 
3724
+ #: ../settings.php:1111
3725
  msgid "Deny it completely"
3726
  msgstr ""
3727
 
3728
+ #: ../settings.php:1111
3729
  msgid "Mark it as spam"
3730
  msgstr ""
3731
 
3732
+ #: ../settings.php:1114
3733
  msgid "Trash spam comments"
3734
  msgstr ""
3735
 
3736
+ #: ../settings.php:1116
3737
  msgid "Move spam comments to trash after"
3738
  msgstr ""
3739
 
3740
+ #: ../settings.php:1123
3741
  msgid "reCAPTCHA settings"
3742
  msgstr ""
3743
 
3744
+ #: ../settings.php:1124
3745
  msgid ""
3746
  "Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
3747
  "key on the Google website"
3748
  msgstr ""
3749
 
3750
+ #: ../settings.php:1128
3751
  msgid "Site key"
3752
  msgstr ""
3753
 
3754
+ #: ../settings.php:1132
3755
  msgid "Secret key"
3756
  msgstr ""
3757
 
3758
+ #: ../settings.php:1136
3759
  msgid "Invisible reCAPTCHA"
3760
  msgstr ""
3761
 
3762
+ #: ../settings.php:1137
3763
  msgid "Enable invisible reCAPTCHA"
3764
  msgstr ""
3765
 
3766
+ #: ../settings.php:1137
3767
  msgid ""
3768
  "(do not enable it unless you get and enter the Site and Secret keys for the "
3769
  "invisible version)"
3770
  msgstr ""
3771
 
3772
+ #: ../settings.php:1142
3773
  msgid "Enable reCAPTCHA for WordPress registration form"
3774
  msgstr ""
3775
 
3776
+ #: ../settings.php:1147
3777
  msgid "Enable reCAPTCHA for WooCommerce registration form"
3778
  msgstr ""
3779
 
3780
+ #: ../settings.php:1151
3781
  msgid "Lost password form"
3782
  msgstr ""
3783
 
3784
+ #: ../settings.php:1152
3785
  msgid "Enable reCAPTCHA for WordPress lost password form"
3786
  msgstr ""
3787
 
3788
+ #: ../settings.php:1157
3789
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
3790
  msgstr ""
3791
 
3792
+ #: ../settings.php:1161
3793
  msgid "Login form"
3794
  msgstr ""
3795
 
3796
+ #: ../settings.php:1162
3797
  msgid "Enable reCAPTCHA for WordPress login form"
3798
  msgstr ""
3799
 
3800
+ #: ../settings.php:1167
3801
  msgid "Enable reCAPTCHA for WooCommerce login form"
3802
  msgstr ""
3803
 
3804
+ #: ../settings.php:1172
3805
  msgid "Enable reCAPTCHA for WordPress comment form"
3806
  msgstr ""
3807
 
3808
+ #: ../settings.php:1177
3809
  msgid "Disable reCAPTCHA for logged in users"
3810
  msgstr ""
3811
 
3812
+ #: ../settings.php:1181
3813
  msgid "Limit attempts"
3814
  msgstr ""
3815
 
3816
+ #: ../settings.php:1182
3817
  #, php-format
3818
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
3819
  msgstr ""
3820
 
3821
+ #: ../settings.php:1189
3822
  msgid "Master settings"
3823
  msgstr ""
3824
 
3825
+ #: ../settings.php:1197
3826
  msgid "Return to the website list"
3827
  msgstr ""
3828
 
3829
+ #: ../settings.php:1201
3830
  msgid "Show \"Switched to\" notification"
3831
  msgstr ""
3832
 
3833
+ #: ../settings.php:1205
3834
  msgid "Add @ site to the page title"
3835
  msgstr ""
3836
 
3837
+ #: ../settings.php:1209
3838
  msgid "Use master language"
3839
  msgstr ""
3840
 
3841
+ #: ../settings.php:1233
3842
  msgid "Limit access by IP address"
3843
  msgstr ""
3844
 
3845
+ #: ../settings.php:1239
3846
  msgid "Access to this website"
3847
  msgstr ""
3848
 
3849
+ #: ../settings.php:1242
3850
  msgid "Full access mode"
3851
  msgstr ""
3852
 
3853
+ #: ../settings.php:1243
3854
  msgid "Read-only mode"
3855
  msgstr ""
3856
 
3857
+ #: ../settings.php:1264
3858
  msgid "The full access mode requires the PRO version of WP Cerber"
3859
  msgstr ""
3860
 
3861
+ #: ../settings.php:1332
3862
  msgid "Any activity"
3863
  msgstr ""
3864
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
5
  Requires at least: 4.9
6
  Requires PHP: 5.6
7
  Tested up to: 5.5
8
- Stable tag: 8.6.7
9
  License: GPLv2
10
 
11
  Protection against hacker attacks and bots. Malware scanner & integrity checker. User activity log. Antispam reCAPTCHA. Limit login attempts.
@@ -308,9 +308,9 @@ There is a special version of the plugin called **WP Cerber Reset**. This versio
308
  To get access to your dashboard you need to copy the WP Cerber Reset folder to the plugins folder. Follow these simple steps.
309
 
310
  1. Download the wp-cerber-reset.zip archive to your computer using this link: [https://wpcerber.com/downloads/wp-cerber-reset.zip](https://wpcerber.com/downloads/wp-cerber-reset.zip)
311
- 2. Unpack wp-cerber folder from the archive.
312
- 3. Upload the wp-cerber folder to the **plugins** folder of your site using any FTP client or a file manager from your hosting control panel. If you see a question about overwriting files, click Yes.
313
- 4. Log in to your site as usually. Now WP Cerber is disabled completely.
314
  5. Reinstall the WP Cerber plugin again. You need to do that, because **WP Cerber Reset** cannot work as a normal plugin.
315
 
316
  == Screenshots ==
@@ -331,6 +331,14 @@ To get access to your dashboard you need to copy the WP Cerber Reset folder to t
331
 
332
  == Changelog ==
333
 
 
 
 
 
 
 
 
 
334
  = 8.6.7 =
335
  * New: In the professional version of WP Cerber, you can now permit user registrations for IP addresses in the White IP Access List only.
336
  * New: All URLs in the logs are displayed in a shortened form without the website’s domain. There is no much value having see known things.
@@ -343,6 +351,7 @@ To get access to your dashboard you need to copy the WP Cerber Reset folder to t
343
  * Fixed: Configured [REST API restrictions](https://wpcerber.com/restrict-access-to-wordpress-rest-api/) have no effect if a WordPress is installed not in the root folder of a website (there is a path in the site URL). Affected versions: 8.6.1 and newer.
344
  * Fixed: A bug in the logging subsystem: depending on server configuration, submitted form fields are not saved into the DB (if it is enabled in the logging settings).
345
  * Fixed: A bug with Cerber’s admin CSS styles that were added in the previous version and hid the top pagination links on the "All posts" and "All posts" admin pages.
 
346
 
347
  = 8.6.6 =
348
  * 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.
5
  Requires at least: 4.9
6
  Requires PHP: 5.6
7
  Tested up to: 5.5
8
+ Stable tag: 8.6.8
9
  License: GPLv2
10
 
11
  Protection against hacker attacks and bots. Malware scanner & integrity checker. User activity log. Antispam reCAPTCHA. Limit login attempts.
308
  To get access to your dashboard you need to copy the WP Cerber Reset folder to the plugins folder. Follow these simple steps.
309
 
310
  1. Download the wp-cerber-reset.zip archive to your computer using this link: [https://wpcerber.com/downloads/wp-cerber-reset.zip](https://wpcerber.com/downloads/wp-cerber-reset.zip)
311
+ 2. Unpack the wp-cerber folder from the archive.
312
+ 3. Upload the wp-cerber folder to the **plugins** folder of your WordPress using any FTP client or a file manager in your hosting control panel. If you see a question about overwriting files, click Yes.
313
+ 4. Log in to your website as usual. Now WP Cerber is disabled completely.
314
  5. Reinstall the WP Cerber plugin again. You need to do that, because **WP Cerber Reset** cannot work as a normal plugin.
315
 
316
  == Screenshots ==
331
 
332
  == Changelog ==
333
 
334
+ = 8.6.8 =
335
+ * New: A shortcode to display WP Cerber’s cookies. You can display a list of cookies set by WP Cerber on any page.
336
+ * New: Deferred rendering of the custom login page. This new feature can help you if you need to solve plugin compatibility issues.
337
+ * Improved: The style of the scanner email reports has been improved.
338
+ * Fixed: A bug with displaying the status icon of an IP address on the Activity and Live Traffic admin pages.
339
+ * Fixed: If the name of a commercial plugin contains a special HTML symbol like ampersand, it cannot be uploaded to verify the integrity of the plugin.
340
+ * [Read more](https://wpcerber.com/wp-cerber-security-8-6-8/)
341
+
342
  = 8.6.7 =
343
  * New: In the professional version of WP Cerber, you can now permit user registrations for IP addresses in the White IP Access List only.
344
  * New: All URLs in the logs are displayed in a shortened form without the website’s domain. There is no much value having see known things.
351
  * Fixed: Configured [REST API restrictions](https://wpcerber.com/restrict-access-to-wordpress-rest-api/) have no effect if a WordPress is installed not in the root folder of a website (there is a path in the site URL). Affected versions: 8.6.1 and newer.
352
  * Fixed: A bug in the logging subsystem: depending on server configuration, submitted form fields are not saved into the DB (if it is enabled in the logging settings).
353
  * Fixed: A bug with Cerber’s admin CSS styles that were added in the previous version and hid the top pagination links on the "All posts" and "All posts" admin pages.
354
+ * [Read more](https://wpcerber.com/wp-cerber-security-8-6-7/)
355
 
356
  = 8.6.6 =
357
  * 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.
settings.php CHANGED
@@ -221,6 +221,11 @@ function cerber_settings_config( $args = array() ) {
221
  'label' => __( 'Block direct access to wp-login.php and return HTTP 404 Not Found Error', 'wp-cerber' ),
222
  'type' => 'checkbox',
223
  ),
 
 
 
 
 
224
  ),
225
  ),
226
  'stspec' => array(
@@ -1443,6 +1448,7 @@ function cerber_get_defaults( $setting = null ) {
1443
 
1444
  'loginpath' => '',
1445
  'loginnowp' => 0,
 
1446
 
1447
  'citadel_on' => '1',
1448
  'cilimit' => 200,
@@ -1544,7 +1550,7 @@ function cerber_get_defaults( $setting = null ) {
1544
  'tiipwhite' => 0,
1545
  'tiwhite' => '',
1546
  'tierrmon' => '1',
1547
- 'tierrnoauth' => 0,
1548
  'timode' => '3',
1549
  'tinocrabs' => '1',
1550
  'tinolocs' => array(),
221
  'label' => __( 'Block direct access to wp-login.php and return HTTP 404 Not Found Error', 'wp-cerber' ),
222
  'type' => 'checkbox',
223
  ),
224
+ 'logindeferred' => array(
225
+ 'title' => __( 'Deferred rendering', 'wp-cerber' ),
226
+ 'label' => __( 'Defer rendering the custom login page', 'wp-cerber' ),
227
+ 'type' => 'checkbox',
228
+ ),
229
  ),
230
  ),
231
  'stspec' => array(
1448
 
1449
  'loginpath' => '',
1450
  'loginnowp' => 0,
1451
+ 'logindeferred' => 0,
1452
 
1453
  'citadel_on' => '1',
1454
  'cilimit' => 200,
1550
  'tiipwhite' => 0,
1551
  'tiwhite' => '',
1552
  'tierrmon' => '1',
1553
+ 'tierrnoauth' => 1,
1554
  'timode' => '3',
1555
  'tinocrabs' => '1',
1556
  'tinolocs' => array(),
wp-cerber.php CHANGED
@@ -5,7 +5,7 @@
5
  Description: Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications.
6
  Author: Cerber Tech Inc.
7
  Author URI: https://wpcerber.com
8
- Version: 8.6.7
9
  Text Domain: wp-cerber
10
  Domain Path: /languages
11
  Network: true
@@ -31,7 +31,7 @@
31
 
32
  */
33
 
34
- const CERBER_VER = '8.6.7';
35
  const CERBER_PLUGIN_ID = 'wp-cerber/wp-cerber.php';
36
 
37
  function cerber_plugin_file() {
5
  Description: Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications.
6
  Author: Cerber Tech Inc.
7
  Author URI: https://wpcerber.com
8
+ Version: 8.6.8
9
  Text Domain: wp-cerber
10
  Domain Path: /languages
11
  Network: true
31
 
32
  */
33
 
34
+ const CERBER_VER = '8.6.8';
35
  const CERBER_PLUGIN_ID = 'wp-cerber/wp-cerber.php';
36
 
37
  function cerber_plugin_file() {