Cerber Security & Antispam - Version 6.2

Version Description

  • New: Protection against (DoS) attacks that exploit recently discovered vulnerability (CVE-2018-6389).
  • New: The Traffic Inspector algorithm detects malformed and double extensions like .php.jpg more precisely.
  • New: The Access Lists now accept IPv6 addresses in any form and handle them in a shortened form. All existing IPs will be converted.
  • Bug fixed: If the WP REST API is blocked, a request with a specially malformed URL can bypass protection. Thanks to Tomasz Wasiak.
  • Bug fixed: An IPv4 range in the Access Lists might not work as expected, depending on server/site settings.
Download this release

Release Info

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

Code changes from version 6.1 to 6.2

cerber-lab.php CHANGED
@@ -643,7 +643,7 @@ function lab_validate_lic( $lic = '' ) {
643
  return date_i18n( $df, $gmt_offset + $expires );
644
  }
645
 
646
- function lab_lab($with_date = false) {
647
  $key = lab_get_key();
648
  if ( empty( $key[2] ) || empty( $key[3] ) ) {
649
  return false;
643
  return date_i18n( $df, $gmt_offset + $expires );
644
  }
645
 
646
+ function lab_lab( $with_date = false ) {
647
  $key = lab_get_key();
648
  if ( empty( $key[2] ) || empty( $key[3] ) ) {
649
  return false;
cerber-news.php CHANGED
@@ -120,8 +120,14 @@ function cerber_push_the_news( $version ) {
120
 
121
  $news['6.1'][] = 'Traffic Inspector has got a Request White List setting. To exclude a particular request from inspection specify a request string without the website domain and query string (GET parameters).';
122
  $news['6.1'][] = 'An Activity filter has been added to the Advanced search form on the Traffic Inspector page.';
123
- $news['6.1'][] = 'Bugs fixed: Two reCAPTCHA widgets on login/registration forms.';
124
- $news['6.1'][] = 'Bugs fixed: A legitimate IP address can be locked out by Traffic Inspector on a Windows hosting (server).';
 
 
 
 
 
 
125
 
126
 
127
  if ( ! empty( $news[ $version ] ) ) {
@@ -131,7 +137,7 @@ function cerber_push_the_news( $version ) {
131
 
132
  $text .= '<ul><li>'.implode('</li><li>', $news[ $version ]).'</li></ul>';
133
 
134
- $text .= ' <p style="margin-top: 18px; font-weight: bold;"><a href="https://wpcerber.com/?plugin_version='.$version.'" target="_blank">Read more</a></p>';
135
 
136
  $text .= ' <p style="margin-top: 24px;"><span class="dashicons-before dashicons-email-alt"></span> &nbsp; <a href="https://wpcerber.com/subscribe-newsletter/">Subscribe to Cerber\'s newsletter</a></p>
137
  <p><span class="dashicons-before dashicons-twitter"></span> &nbsp; <a href="https://twitter.com/wpcerber">Follow Cerber on Twitter</a></p>
120
 
121
  $news['6.1'][] = 'Traffic Inspector has got a Request White List setting. To exclude a particular request from inspection specify a request string without the website domain and query string (GET parameters).';
122
  $news['6.1'][] = 'An Activity filter has been added to the Advanced search form on the Traffic Inspector page.';
123
+ $news['6.1'][] = 'Bug fixed: Two reCAPTCHA widgets on login/registration forms.';
124
+ $news['6.1'][] = 'Bug fixed: A legitimate IP address can be locked out by Traffic Inspector on a Windows hosting (server).';
125
+
126
+ $news['6.2'][] = 'Protection against (DoS) attacks that exploit recently discovered vulnerability (CVE-2018-6389). The protection mechanism is disabled by default. To enable it navigate to the Hardening tab and enable Block unauthorized access to load-scripts.php and load-styles.php. After enabling this setting a set of security rules will be added to the .htaccess file.';
127
+ $news['6.2'][] = 'The Traffic Inspector algorithm detects malformed and double extensions like .php.jpg more precisely';
128
+ $news['6.2'][] = 'The access Lists now accept IPv6 addresses in any form. You can enter a shortened IPv6 (short form) or a full IPv6. A full IPv6 will be shortened to the short IPv6 address representation. All existing in access lists IP addresses are converted to the short form.';
129
+ $news['6.2'][] = 'Bug fixed: If the WP REST API is blocked, a request with specially malformed URL can bypass protection. Thanks to Tomasz Wasiak.';
130
+ $news['6.2'][] = 'Bug fixed: An IPv4 range in the Access Lists might not work as expected, depending on server/site settings.';
131
 
132
 
133
  if ( ! empty( $news[ $version ] ) ) {
137
 
138
  $text .= '<ul><li>'.implode('</li><li>', $news[ $version ]).'</li></ul>';
139
 
140
+ $text .= ' <p style="margin-top: 18px; font-weight: bold;"><a href="https://wpcerber.com/?plugin_version='.$version.'" target="_blank">Read more on wpcerber.com</a></p>';
141
 
142
  $text .= ' <p style="margin-top: 24px;"><span class="dashicons-before dashicons-email-alt"></span> &nbsp; <a href="https://wpcerber.com/subscribe-newsletter/">Subscribe to Cerber\'s newsletter</a></p>
143
  <p><span class="dashicons-before dashicons-twitter"></span> &nbsp; <a href="https://twitter.com/wpcerber">Follow Cerber on Twitter</a></p>
cerber-tools.php CHANGED
@@ -250,7 +250,7 @@ function cerber_show_diag(){
250
  echo '<div class="diag-section"><h3>Reports</h3>';
251
  echo cerber_ago_time($report[0]).' ('.cerber_date($report[0]).')';
252
  if ($report[1]) {
253
- echo ' OK';
254
  }
255
  else {
256
  echo ' Unable to send email';
250
  echo '<div class="diag-section"><h3>Reports</h3>';
251
  echo cerber_ago_time($report[0]).' ('.cerber_date($report[0]).')';
252
  if ($report[1]) {
253
+ echo ' OK / '.get_site_transient( 'crb_hourly_2' );
254
  }
255
  else {
256
  echo ' Unable to send email';
common.php CHANGED
@@ -31,7 +31,7 @@
31
  */
32
 
33
  // If this file is called directly, abort executing.
34
- if ( ! defined( 'WPINC' ) ) { exit; }
35
 
36
  /**
37
  * Known WP scripts
@@ -323,6 +323,8 @@ function cerber_get_remote_ip(){
323
  $remote_ip = '127.0.0.1';
324
  }
325
 
 
 
326
  return $remote_ip;
327
  }
328
 
@@ -358,7 +360,7 @@ function cerber_get_ip_id( $ip_id ) {
358
  return $ip;
359
  }
360
  /**
361
- * Check if given IP address is an valid single IP v4 address
362
  *
363
  * @param $ip
364
  *
@@ -388,6 +390,37 @@ function is_ip_private($ip) {
388
  return false;
389
  }
390
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
391
 
392
  /**
393
  * Convert multilevel object or array of objects to associative array recursively
@@ -443,17 +476,18 @@ function cerber_is_rest_url(){
443
  return true;
444
  }
445
 
 
 
 
 
446
  if (isset($cache)) {
447
  return $cache;
448
  }
449
 
450
- if ( isset( $_REQUEST['rest_route'] ) ) {
451
- $cache = true;
452
- return true;
453
- }
454
 
455
- if ( 0 === strpos( trim( $_SERVER['REQUEST_URI'], '/' ) . '/', rest_get_url_prefix() . '/' ) ) {
456
- if (0 === strpos(get_home_url().urldecode($_SERVER['REQUEST_URI']),get_rest_url())) {
457
  $cache = true;
458
  return true;
459
  }
@@ -594,10 +628,15 @@ function cerber_last_uri( $check_php = false ) {
594
  * @return bool|string
595
  */
596
  function cerber_get_uri_script(){
597
- static $executable = array( 'phtm', 'phtml', 'phps', 'asp', 'aspx' );
598
 
599
  $last = cerber_last_uri();
600
- $ext = substr( strrchr( $last, '.' ), 1 );
 
 
 
 
 
601
 
602
  if ( ! $ext ) {
603
  return false;
@@ -1054,4 +1093,238 @@ function cerber_is_crawler( $ua ) {
1054
  }
1055
 
1056
  return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1057
  }
31
  */
32
 
33
  // If this file is called directly, abort executing.
34
+ //if ( ! defined( 'WPINC' ) ) { exit; }
35
 
36
  /**
37
  * Known WP scripts
323
  $remote_ip = '127.0.0.1';
324
  }
325
 
326
+ $remote_ip = cerber_short_ipv6( $remote_ip );
327
+
328
  return $remote_ip;
329
  }
330
 
360
  return $ip;
361
  }
362
  /**
363
+ * Check if given IP address is a valid single IP v4 address
364
  *
365
  * @param $ip
366
  *
390
  return false;
391
  }
392
 
393
+ /**
394
+ * Expands shortened IPv6 to full IPv6 address
395
+ *
396
+ * @param $ip string IPv6 address
397
+ *
398
+ * @return string Full IPv6 address
399
+ */
400
+ function cerber_expand_ipv6( $ip ) {
401
+ if ( ! filter_var( $ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6 ) ) {
402
+ return $ip;
403
+ }
404
+ $hex = unpack( "H*hex", inet_pton( $ip ) );
405
+
406
+ //return substr(preg_replace("/([A-f0-9]{4})/", "$1:", $hex['hex']), 0, -1);
407
+ return implode( ':', str_split( $hex['hex'], 4 ) );
408
+ }
409
+
410
+ /**
411
+ * Compress full IPv6 to shortened
412
+ *
413
+ * @param $ip string IPv6 address
414
+ *
415
+ * @return string Full IPv6 address
416
+ */
417
+ function cerber_short_ipv6( $ip ) {
418
+ if ( ! filter_var( $ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6 ) ) {
419
+ return $ip;
420
+ }
421
+
422
+ return inet_ntop( inet_pton( $ip ) );
423
+ }
424
 
425
  /**
426
  * Convert multilevel object or array of objects to associative array recursively
476
  return true;
477
  }
478
 
479
+ if ( isset( $_REQUEST['rest_route'] ) ) {
480
+ return true;
481
+ }
482
+
483
  if (isset($cache)) {
484
  return $cache;
485
  }
486
 
487
+ $uri = '/' . trim( $_SERVER['REQUEST_URI'], '/' ) . '/';
 
 
 
488
 
489
+ if ( 0 === strpos( $uri, '/' . rest_get_url_prefix() . '/' ) ) {
490
+ if ( 0 === strpos( get_home_url() . urldecode( $uri ), get_rest_url() ) ) {
491
  $cache = true;
492
  return true;
493
  }
628
  * @return bool|string
629
  */
630
  function cerber_get_uri_script(){
631
+ static $executable = array( 'phtm', 'phtml', 'phps', 'asp', 'aspx', 'shtm', 'shtml' );
632
 
633
  $last = cerber_last_uri();
634
+ //$ext = substr( strrchr( $last, '.' ), 1 );
635
+ // Get real extension for any set of additional fake extensions (aka double extensions)
636
+ $ext = substr( strstr( $last, '.' ), 1 );
637
+ if ( $second_dot = strpos( $ext, '.' ) ) {
638
+ $ext = substr( $ext, 0, $second_dot );
639
+ }
640
 
641
  if ( ! $ext ) {
642
  return false;
1093
  }
1094
 
1095
  return 0;
1096
+ }
1097
+
1098
+
1099
+ /**
1100
+ * Natively escape an SQL query
1101
+ * Based on $wpdb->_real_escape()
1102
+ *
1103
+ * The reason: https://make.wordpress.org/core/2017/10/31/changed-behaviour-of-esc_sql-in-wordpress-4-8-3/
1104
+ *
1105
+ * @param $string
1106
+ *
1107
+ * @return string
1108
+ * @since 6.0
1109
+ */
1110
+ function cerber_real_escape($string){
1111
+ global $wpdb;
1112
+ if ( $wpdb->use_mysqli ) {
1113
+ $escaped = mysqli_real_escape_string( $wpdb->dbh, $string );
1114
+ }
1115
+ else {
1116
+ $escaped = mysql_real_escape_string( $string, $wpdb->dbh );
1117
+ }
1118
+
1119
+ return $escaped;
1120
+ }
1121
+
1122
+ /**
1123
+ * Direct SQL query to the DB
1124
+ *
1125
+ * The reason: https://make.wordpress.org/core/2017/10/31/changed-behaviour-of-esc_sql-in-wordpress-4-8-3/
1126
+ *
1127
+ * @param $query
1128
+ *
1129
+ * @return bool|mysqli_result|resource
1130
+ * @since 6.0
1131
+ */
1132
+ function cerber_direct_db_query( $query ) {
1133
+ global $wpdb;
1134
+ // Check for connected DB handler
1135
+ if ( ! is_object( $wpdb ) || empty( $wpdb->dbh ) ) {
1136
+ if ( ! $db = cerber_direct_db_connect() ) {
1137
+ return false;
1138
+ }
1139
+ }
1140
+ else {
1141
+ $db = $wpdb;
1142
+ }
1143
+ if ( $db->use_mysqli ) {
1144
+ $ret = mysqli_query( $db->dbh, $query );
1145
+ }
1146
+ else {
1147
+ $ret = mysql_query( $query, $db->dbh );
1148
+ }
1149
+
1150
+ return $ret;
1151
+ }
1152
+
1153
+ /**
1154
+ * Create a WP DB handler
1155
+ *
1156
+ * @return bool|wpdb
1157
+ */
1158
+ function cerber_direct_db_connect(){
1159
+ if ( ! defined( 'CRB_ABSPATH' ) ) {
1160
+ define( 'CRB_ABSPATH', dirname( __FILE__, 4 ) );
1161
+ }
1162
+ $db_class = CRB_ABSPATH . '/wp-includes/wp-db.php';
1163
+ $wp_config = CRB_ABSPATH . '/wp-config.php';
1164
+ if ( file_exists( $db_class ) && $config = @file( $wp_config ) ) {
1165
+ $list = array();
1166
+ foreach ( $config as $line ) {
1167
+ if ( false !== strpos( $line, 'define' ) ) {
1168
+ $list[] = $line;
1169
+ }
1170
+ }
1171
+ if ($list) {
1172
+ ob_start();
1173
+ @eval( implode( ' ', $list ) ); // TODO: replace with REGEX extracting
1174
+ ob_end_clean();
1175
+ if ( defined( 'DB_USER' ) && defined( 'DB_PASSWORD' ) && defined( 'DB_NAME' ) && defined( 'DB_HOST' ) ) {
1176
+ include_once( $db_class );
1177
+ return new wpdb( DB_USER, DB_PASSWORD, DB_NAME, DB_HOST );
1178
+ }
1179
+ }
1180
+ }
1181
+
1182
+ return false;
1183
+ }
1184
+
1185
+ /**
1186
+ * Set Cerber Groove to logged in user browser
1187
+ *
1188
+ * @param $expire
1189
+ */
1190
+ function cerber_set_groove( $expire ) {
1191
+ if ( ! headers_sent() ) {
1192
+ setcookie( 'cerber_groove', md5( cerber_get_groove() ), $expire + 1, COOKIEPATH );
1193
+
1194
+ $groove_x = cerber_get_groove_x();
1195
+ setcookie( 'cerber_groove_x_'.$groove_x[0], $groove_x[1], $expire + 1, COOKIEPATH );
1196
+ }
1197
+ }
1198
+
1199
+ /*
1200
+ Get the special Cerber Sign for using with cookies
1201
+ */
1202
+ function cerber_get_groove() {
1203
+ $groove = cerber_get_site_option( 'cerber-groove', false );
1204
+
1205
+ if ( empty( $groove ) ) {
1206
+ //$groove = wp_generate_password( 16, false );
1207
+ $groove = substr( str_shuffle( '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' ), 0, 16 );
1208
+ update_site_option( 'cerber-groove', $groove );
1209
+ }
1210
+
1211
+ return $groove;
1212
+ }
1213
+
1214
+ /*
1215
+ Check if the special Cerber Sign valid
1216
+ */
1217
+ function cerber_check_groove( $hash = '' ) {
1218
+ if ( ! $hash ) {
1219
+ if ( ! isset( $_COOKIE['cerber_groove'] ) ) {
1220
+ return false;
1221
+ }
1222
+ $hash = $_COOKIE['cerber_groove'];
1223
+ }
1224
+ $groove = cerber_get_groove();
1225
+ if ( $hash == md5( $groove ) ) {
1226
+ return true;
1227
+ }
1228
+
1229
+ return false;
1230
+ }
1231
+
1232
+ /*
1233
+ Get the special public Cerber Sign for using with cookies
1234
+ */
1235
+ function cerber_get_groove_x( $regenerate = false ) {
1236
+ if ( ! $regenerate ) {
1237
+ $groove_x = cerber_get_site_option( 'cerber-groove-x' );
1238
+ }
1239
+
1240
+ if ( $regenerate || empty( $groove_x ) ) {
1241
+ $groove_0 = substr( str_shuffle( '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' ), 0, rand( 24, 32 ) );
1242
+ $groove_1 = substr( str_shuffle( '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' ), 0, rand( 24, 32 ) );
1243
+ $groove_x = array( $groove_0, $groove_1 );
1244
+ update_site_option( 'cerber-groove-x', $groove_x );
1245
+ add_action('init', function () {
1246
+ cerber_htaccess_sync(); // keep the .htaccess rule is up to date
1247
+ });
1248
+ }
1249
+
1250
+ return $groove_x;
1251
+ }
1252
+
1253
+ /**
1254
+ * Synchronize plugin settings with rules in the .htaccess file
1255
+ *
1256
+ * @param array $settings
1257
+ *
1258
+ * @return bool
1259
+ */
1260
+ function cerber_htaccess_sync( $settings = array() ) {
1261
+
1262
+ if ( ! $settings ) {
1263
+ $settings = crb_get_settings();
1264
+ }
1265
+
1266
+ $rules = array();
1267
+
1268
+ if ( $settings['adminphp'] ) {
1269
+ // https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-6389
1270
+ $groove_x = cerber_get_groove_x();
1271
+ $cookie = 'cerber_groove_x_'.$groove_x[0];
1272
+ $rules [] = '# Protection of admin scripts is enabled (CVE-2018-6389)';
1273
+ $rules [] = '<IfModule mod_rewrite.c>';
1274
+ $rules [] = 'RewriteEngine On';
1275
+ $rules [] = 'RewriteBase /';
1276
+ $rules [] = 'RewriteCond %{REQUEST_URI} ^(.*)wp-admin/load-scripts\.php$ [OR,NC]';
1277
+ $rules [] = 'RewriteCond %{REQUEST_URI} ^(.*)wp-admin/load-styles\.php$ [NC]';
1278
+ $rules [] = 'RewriteCond %{HTTP_COOKIE} !' . $cookie . '=' . $groove_x[1];
1279
+ $rules [] = 'RewriteRule (.*) - [R=403,L]';
1280
+ $rules [] = '</IfModule>';
1281
+ }
1282
+
1283
+ // Update all rules in a section - adding/deleting
1284
+ //return insert_with_markers( $htaccess_file, 'WP CERBER GROOVE', $rules );
1285
+ return cerber_update_htaccess( 'WP CERBER GROOVE', $rules );
1286
+ }
1287
+
1288
+ /**
1289
+ * Update the .htaccess file
1290
+ *
1291
+ * @param $marker string A section name
1292
+ * @param array $rules A set of rules (array of strings) for the section. If empty, the section will be cleaned.
1293
+ *
1294
+ * @return bool|string True on success, string with error message on failure
1295
+ */
1296
+ function cerber_update_htaccess($marker, $rules = array()){
1297
+ if ( ! $marker ) {
1298
+ return false;
1299
+ }
1300
+ if ( ! $htaccess_file = cerber_get_htaccess() ) {
1301
+ return 'ERROR: Unable to modify the .htaccess file';
1302
+ }
1303
+ require_once( ABSPATH . 'wp-admin/includes/misc.php' );
1304
+ if ( ! got_mod_rewrite() ) {
1305
+ return 'ERROR: Apache mod_rewrite is not enabled';
1306
+ }
1307
+
1308
+ $result = insert_with_markers( $htaccess_file, 'WP CERBER GROOVE', $rules );
1309
+
1310
+ if ( $result || $result === 0 ) {
1311
+ $result = true;
1312
+ }
1313
+ else {
1314
+ return 'ERROR: Unable to modify the .htaccess file';
1315
+ }
1316
+
1317
+ return $result;
1318
+ }
1319
+
1320
+ function cerber_get_htaccess() {
1321
+ require_once( ABSPATH . 'wp-admin/includes/file.php' );
1322
+ $home_path = get_home_path();
1323
+ $htaccess = $home_path . '.htaccess';
1324
+ if ( ! is_writable( $htaccess ) ) {
1325
+ // should we create the file?
1326
+ return false;
1327
+ }
1328
+
1329
+ return $htaccess;
1330
  }
dashboard.php CHANGED
@@ -1467,7 +1467,9 @@ function cerber_show_dashboard() {
1467
  function cerber_show_aside($page){
1468
  global $crb_assets_url;
1469
 
1470
- if (in_array($page,array('activity','lockouts','traffic'))) return;
 
 
1471
 
1472
  $aside = array();
1473
 
@@ -1502,6 +1504,7 @@ function cerber_show_aside($page){
1502
  </div>
1503
  ';*/
1504
 
 
1505
  $aside[] = '
1506
  <a class="crb-button-one" href="https://wpcerber.com/subscribe-newsletter/" target="_blank"><span class="dashicons dashicons-email-alt"></span> Subscribe to Cerber\'s newsletter</a>
1507
  <a class="crb-button-one" style="background-color: #1DA1F2;" href="https://twitter.com/wpcerber" target="_blank"><span class="dashicons dashicons-twitter"></span> Follow Cerber on Twitter</a>
@@ -1509,9 +1512,11 @@ function cerber_show_aside($page){
1509
  ';
1510
 
1511
  // 22.01.2017
1512
- if (!lab_lab()) $aside[] = '<a class="crb-button-one" style="text-align:center; padding-top: 1.5em; padding-bottom: 1.5em; background-color: #C92E5C;" href="https://wpcerber.com/pro/" target="_blank">
1513
  <span class="dashicons dashicons-awards"></span><span class="dashicons dashicons-awards"></span><span class="dashicons dashicons-awards"></span><br><br>UPGRADE TO PROFESSIONAL VERSION</a>';
1514
 
 
 
1515
  /*
1516
  if (!lab_lab() && !in_array($page,array('geo'))) {
1517
  $aside[] = '<div class="crb-box" id = "crb-donate">
@@ -1544,7 +1549,10 @@ function cerber_show_aside($page){
1544
  $aside[] = '<div class="crb-box" id = "crb-blog">
1545
  <div class="crb-box-inner">
1546
  <!-- <h3><span class="dashicons-before dashicons-lightbulb"></span> Read Cerber\'s blog</h3> -->
1547
- <h3>WordPress security blog</h3>
 
 
 
1548
  <p><a href="https://wpcerber.com/wordpress-ip-address-detection/" target="_blank">Solving problem with incorrect IP address detection</a>
1549
  <p><a href="https://wpcerber.com/antispam-for-wordpress-contact-forms/" target="_blank">Antispam protection for WordPress forms</a>
1550
  <p><a href="https://wpcerber.com/wordpress-mobile-and-browser-notifications-pushbullet/" target="_blank">Instant mobile and browser notifications</a>
1467
  function cerber_show_aside($page){
1468
  global $crb_assets_url;
1469
 
1470
+ if (in_array($page,array('activity','lockouts','traffic'))) {
1471
+ return;
1472
+ }
1473
 
1474
  $aside = array();
1475
 
1504
  </div>
1505
  ';*/
1506
 
1507
+ if (!lab_lab()) {
1508
  $aside[] = '
1509
  <a class="crb-button-one" href="https://wpcerber.com/subscribe-newsletter/" target="_blank"><span class="dashicons dashicons-email-alt"></span> Subscribe to Cerber\'s newsletter</a>
1510
  <a class="crb-button-one" style="background-color: #1DA1F2;" href="https://twitter.com/wpcerber" target="_blank"><span class="dashicons dashicons-twitter"></span> Follow Cerber on Twitter</a>
1512
  ';
1513
 
1514
  // 22.01.2017
1515
+ $aside[] = '<a class="crb-button-one" style="text-align:center; padding-top: 1.5em; padding-bottom: 1.5em; background-color: #C92E5C;" href="https://wpcerber.com/pro/" target="_blank">
1516
  <span class="dashicons dashicons-awards"></span><span class="dashicons dashicons-awards"></span><span class="dashicons dashicons-awards"></span><br><br>UPGRADE TO PROFESSIONAL VERSION</a>';
1517
 
1518
+ }
1519
+
1520
  /*
1521
  if (!lab_lab() && !in_array($page,array('geo'))) {
1522
  $aside[] = '<div class="crb-box" id = "crb-donate">
1549
  $aside[] = '<div class="crb-box" id = "crb-blog">
1550
  <div class="crb-box-inner">
1551
  <!-- <h3><span class="dashicons-before dashicons-lightbulb"></span> Read Cerber\'s blog</h3> -->
1552
+ <h3>Security tips & recipes</h3>
1553
+
1554
+ <p><a href="https://wpcerber.com/wordpress-traffic-inspector-how-to/" target="_blank">Quick tips for Traffic Inspector</a>
1555
+ <p><a href="https://wpcerber.com/traffic-inspector-in-a-nutshell/" target="_blank">Traffic Inspector in a nutshell</a>
1556
  <p><a href="https://wpcerber.com/wordpress-ip-address-detection/" target="_blank">Solving problem with incorrect IP address detection</a>
1557
  <p><a href="https://wpcerber.com/antispam-for-wordpress-contact-forms/" target="_blank">Antispam protection for WordPress forms</a>
1558
  <p><a href="https://wpcerber.com/wordpress-mobile-and-browser-notifications-pushbullet/" target="_blank">Instant mobile and browser notifications</a>
languages/wp-cerber-de_DE.po CHANGED
@@ -74,7 +74,7 @@ msgstr "Deaktiviere wp-login.php"
74
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
75
  msgstr "Blockiere direkten Zugriff zu wp-login.php und gib HTTP 404 Not Found Error zurück"
76
 
77
- #: ../dashboard.php:1135 ../settings.php:89
78
  msgid "Citadel mode"
79
  msgstr "Citadel Modus"
80
 
@@ -86,7 +86,7 @@ msgstr "Schwelle"
86
  msgid "Duration"
87
  msgstr "Dauer"
88
 
89
- #: ../wp-cerber.php:3891 ../settings.php:75 ../settings.php:92 ../settings.php:368
90
  msgid "Notifications"
91
  msgstr "Benachrichtigungen"
92
 
@@ -94,42 +94,42 @@ msgstr "Benachrichtigungen"
94
  msgid "Send notification to admin email"
95
  msgstr "Sende eine Benachrichtigung an die Emailadresse des Admins"
96
 
97
- #: ../wp-cerber.php:3888 ../settings.php:361 ../cerber-tools.php:88 ../cerber-
98
  #: tools.php:97 ../cerber-tools.php:178
99
  msgid "Access Lists"
100
  msgstr "Zugriffslisten"
101
 
102
- #: ../dashboard.php:1142 ../dashboard.php:1339 ../wp-cerber.php:3652 ../settings.
103
- #: php:94 ../settings.php:352
104
  msgid "Activity"
105
  msgstr "Aktivität"
106
 
107
- #: ../settings.php:356
108
  msgid "Lockouts"
109
  msgstr "Sperren"
110
 
111
- #: ../settings.php:477 ../settings.php:599
112
  msgid "%s allowed retries in %s minutes"
113
  msgstr "%s erlaubte Wiederholungen in %s Minuten"
114
 
115
- #: ../settings.php:499 ../settings.php:621
116
  msgid "Enable after %s failed login attempts in last %s minutes"
117
  msgstr "Aktiviere nach %s fehlgeschlagenen Anmeldeversuchen in den letzten %s Minuten"
118
 
119
- #: ../dashboard.php:93 ../dashboard.php:643 ../dashboard.php:2674 ../wp-cerber.
120
- #: php:3661
121
  msgid "IP"
122
  msgstr "IP"
123
 
124
- #: ../dashboard.php:489 ../dashboard.php:646 ../dashboard.php:2672
125
  msgid "Date"
126
  msgstr "Datum"
127
 
128
- #: ../dashboard.php:489 ../dashboard.php:648 ../dashboard.php:2677
129
  msgid "Local User"
130
  msgstr "Lokaler Benutzer"
131
 
132
- #: ../dashboard.php:489 ../dashboard.php:649 ../wp-cerber.php:3669
133
  msgid "Username used"
134
  msgstr "Benutzername wird bereits verwendet"
135
 
@@ -137,103 +137,103 @@ msgstr "Benutzername wird bereits verwendet"
137
  msgid "Showing last %d records from %d"
138
  msgstr "Zeige die letzten %d Einträge von %d"
139
 
140
- #: ../common.php:613
141
  msgid "Logged in"
142
  msgstr "Eingeloggt"
143
 
144
- #: ../common.php:614
145
  msgid "Logged out"
146
  msgstr "Ausgeloggt"
147
 
148
- #: ../common.php:615
149
  msgid "Login failed"
150
  msgstr "Login fehlgeschlagen"
151
 
152
- #: ../common.php:618
153
  msgid "IP blocked"
154
  msgstr "IP geblockt"
155
 
156
- #: ../common.php:619
157
  msgid "Subnet blocked"
158
  msgstr "Subnetz geblockt"
159
 
160
- #: ../common.php:621
161
  msgid "Citadel activated!"
162
  msgstr "Citadel-Modus aktiviert!"
163
 
164
- #: ../dashboard.php:623 ../dashboard.php:833 ../dashboard.php:2526 ../common.php:
165
- #: 658
166
  msgid "Locked out"
167
  msgstr "Ausgesperrt"
168
 
169
  #. Only correct if "IP blacklisted" is used as indicative. Otherwise it would not translate "IP auf der schwarzen Liste" but "IP auf die schwarze Liste gesetzt" (if it states that the IP was just blacklisted).
170
- #: ../common.php:659
171
  #, fuzzy
172
  msgid "IP blacklisted"
173
  msgstr "IP blockiert"
174
 
175
- #: ../common.php:636
176
  msgid "Password changed"
177
  msgstr "Passwort geändert"
178
 
179
- #: ../dashboard.php:86 ../dashboard.php:158
180
  msgid "Remove"
181
  msgstr "Entfernen"
182
 
183
- #: ../dashboard.php:388
184
  msgid "Lockout for %s was removed"
185
  msgstr "Die Sperre für %s wurde entfernt"
186
 
187
- #: ../dashboard.php:131 ../dashboard.php:618 ../dashboard.php:827 ../dashboard.
188
- #: php:1133 ../dashboard.php:2521 ../wp-cerber.php:3880 ../settings.php:74 ..
189
- #: /settings.php:322
190
  #, fuzzy
191
  msgid "White IP Access List"
192
  msgstr "Weiße Liste (erlaubten IPs)"
193
 
194
- #: ../dashboard.php:133 ../dashboard.php:619 ../dashboard.php:830 ../dashboard.
195
- #: php:1134 ../dashboard.php:2522
196
  #, fuzzy
197
  msgid "Black IP Access List"
198
  msgstr "Schwarze Liste (verbotenen IPs)"
199
 
200
- #: ../dashboard.php:163
201
  msgid "List is empty"
202
  msgstr "Liste ist leer"
203
 
204
- #: ../dashboard.php:200
205
  msgid "Address %s was added to White IP Access List"
206
  msgstr "Adresse %s wurde zur Liste der erlaubten IPs hinzugefügt"
207
 
208
- #: ../dashboard.php:214
209
  msgid "Address %s was added to Black IP Access List"
210
  msgstr "Adresse %s wurde zur Liste der verbotenen IPs hinzugefügt"
211
 
212
- #: ../wp-cerber.php:3127
213
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
214
  msgstr "Citadel-Modus ist aktiviert nach %d fehlgeschlagenen Logins in %d Minuten."
215
 
216
- #: ../dashboard.php:1481
217
  msgid "View Activity"
218
  msgstr "Aktivitäten anzeigen"
219
 
220
- #: ../dashboard.php:2386 ../cerber-tools.php:87 ../cerber-tools.php:96
221
  msgid "Settings"
222
  msgstr "Einstellungen"
223
 
224
- #: ../dashboard.php:999
225
  msgid "Last login"
226
  msgstr "Letzte Anmeldung"
227
 
228
- #: ../dashboard.php:1032 ../dashboard.php:1116
229
  msgid "Never"
230
  msgstr "Niemals"
231
 
232
- #: ../dashboard.php:1383
233
  msgid "Are you sure?"
234
  msgstr "Sind Sie sicher?"
235
 
236
- #: ../dashboard.php:1190 ../settings.php:76
237
  msgid "My site is behind a reverse proxy"
238
  msgstr "Meine Website ist hinter einem Reverse-Proxy"
239
 
@@ -250,49 +250,49 @@ msgid "Disable automatic redirecting to the login page when /wp-admin/ is reques
250
  msgstr "Die automatische Umleitung auf die Anmeldeseite deaktivieren, wenn /wp-admin/ von einer nicht autorisierten Anfrage aufgerufen wird"
251
 
252
  #. A fuzzy translation that is mostly used in this context would be "Machen Sie Ihren Schutz intelligenter!"
253
- #: ../settings.php:308
254
  msgid "Make your protection smarter!"
255
  msgstr "Machen Sie Ihren Schutz schlauer!"
256
 
257
- #: ../settings.php:312
258
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
259
  msgstr "Bitte aktivieren Sie Permalinks um dieses Merkmal zu verwenden. Setzen Sie die Permalink-Einstellungen auf etwas anderes als Standard."
260
 
261
- #: ../settings.php:315
262
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
263
  msgstr "Seien Sie vorsichtig bei der Aktivierung dieser Optionen. Wenn Sie die benutzerdefinierte Login-URL vergessen, können Sie sich nicht mehr anmelden."
264
 
265
- #: ../wp-cerber.php:3887 ../settings.php:358
266
  msgid "Main Settings"
267
  msgstr "Haupteinstellungen"
268
 
269
- #: ../settings.php:370
270
  msgid "Help"
271
  msgstr "Hilfe"
272
 
273
  #. "Aussperrungen" is used in plural because there are more likely several lockouts in the last hours. One single lockout would demand the use of the singular "Aussperrung". We could use "Aussperrung(en)" to cover all cases.
274
- #: ../settings.php:487 ../settings.php:609
275
  #, fuzzy
276
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
277
  msgstr "Erhöhe die Sperrdauer um %s Stunden nach %s Aussperrungen in den letzten %s Stunden"
278
 
279
- #: ../wp-cerber.php:297
280
  msgid "You are not allowed to log in. Ask your administrator for assistance."
281
  msgstr "Sie sind nicht berechtigt, sich anzumelden. Fragen Sie Ihren Administrator nach Unterstützung."
282
 
283
  #. One "Minute", two/three/four/... "Minuten".
284
- #: ../wp-cerber.php:303
285
  #, fuzzy
286
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
287
  msgstr "Sie haben die maximale Anzahl an Login-Versuchen erreicht. Bitte versuchen Sie es in %d Minuten noch einmal."
288
 
289
- #: ../wp-cerber.php:322
290
  msgid "You have only one attempt remaining."
291
  msgid_plural "You have %d attempts remaining."
292
  msgstr[0] "Sie haben nur noch einen Versuch."
293
  msgstr[1] "Sie haben nur noch %d Versuche."
294
 
295
- #: ../dashboard.php:674
296
  msgid "No activity has been logged."
297
  msgstr "Keine Aktivität wurde protokolliert."
298
 
@@ -312,23 +312,23 @@ msgstr "Diese IPs werden nie gesperrt"
312
  msgid "Your IP"
313
  msgstr "Ihre IP"
314
 
315
- #: ../wp-cerber.php:3128
316
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
317
  msgstr "Der letzte gescheiterte Versuch war um %s von der IP %s mit der Benutzeranmeldung: %s."
318
 
319
- #: ../wp-cerber.php:3863
320
  msgid "Can't activate WP Cerber due to a database error."
321
  msgstr "Kann WP Cerber aufgrund eines Datenbankfehlers nicht aktivieren."
322
 
323
- #: ../settings.php:494 ../settings.php:616
324
  msgid "Notify admin if the number of active lockouts above"
325
  msgstr "Benachrichtige den Admin, wenn die Anzahl von aktiven Aussperrungen größer ist als"
326
 
327
- #: ../settings.php:95 ../settings.php:168 ../settings.php:298
328
  msgid "days"
329
  msgstr "Tage"
330
 
331
- #: ../dashboard.php:1086
332
  msgid "Cerber Quick View"
333
  msgstr "Cerber Schnellansicht"
334
 
@@ -340,7 +340,8 @@ msgstr "Hinweis"
340
  msgid "To view activity, click on the IP"
341
  msgstr "Um die Aktivität sehen zu können, klicken Sie auf die IP"
342
 
343
- #: ../dashboard.php:158 ../dashboard.php:840 ../dashboard.php:867
 
344
  msgid "Check for activity"
345
  msgstr "Auf Aktivität überprüfen"
346
 
@@ -348,40 +349,40 @@ msgstr "Auf Aktivität überprüfen"
348
  msgid "Always block entire subnet Class C of intruders IP"
349
  msgstr "Immer das gesamte Subnetz Klasse C der IP des Eindringlings blockieren"
350
 
351
- #: ../settings.php:92 ../settings.php:496 ../settings.php:618
352
  msgid "Click to send test"
353
  msgstr "Klicken für Sendungstest"
354
 
355
- #: ../settings.php:758 ../settings.php:759
356
  msgid "Attention! You have changed the login URL! The new login URL is"
357
  msgstr "Achtung! Sie haben die Anmelde-URL geändert! Die neue Login-URL ist"
358
 
359
- #: ../dashboard.php:998
360
  msgid "Comments"
361
  msgstr "Kommentare"
362
 
363
- #: ../common.php:891
364
  msgid "Update to version %s of WP Cerber"
365
  msgstr "Update auf Version %s von WP Cerber"
366
 
367
- #: ../wp-cerber.php:3129 ../wp-cerber.php:3693
368
  msgid "View activity in dashboard"
369
  msgstr "Zeige Aktivität im Dashboard"
370
 
371
- #: ../wp-cerber.php:3159
372
  msgid "Number of active lockouts"
373
  msgstr "Anzahl der aktiven Sperren"
374
 
375
- #: ../wp-cerber.php:3163
376
  msgid "View lockouts in dashboard"
377
  msgstr "Zeige Sperren im Dashboard"
378
 
379
- #: ../wp-cerber.php:3245
380
  msgid "This message was sent by"
381
  msgstr "Diese Nachricht wurde gesendet von"
382
 
383
  #. Used to be "Import/Export" but this is a fuzzy translation. Exact translation that WordPress also uses is "Werkzeuge".
384
- #: ../dashboard.php:927 ../cerber-tools.php:43
385
  msgid "Tools"
386
  msgstr "Werkzeuge"
387
 
@@ -445,109 +446,109 @@ msgstr "Einstellungen erfolgreich importiert von"
445
  msgid "Error while parsing file"
446
  msgstr "Fehler beim Parsen der Datei"
447
 
448
- #: ../dashboard.php:94 ../dashboard.php:644
449
  msgid "Hostname"
450
  msgstr "Hostname"
451
 
452
- #: ../dashboard.php:353
453
  #, fuzzy
454
  msgid "unknown"
455
  msgstr "unbekannt"
456
 
457
- #: ../settings.php:95 ../settings.php:294
458
  msgid "Keep records for"
459
  msgstr "Behalte Aufzeichnungen für"
460
 
461
- #: ../dashboard.php:1120
462
  msgid "active"
463
  msgstr "aktiv"
464
 
465
- #: ../dashboard.php:1120
466
  msgid "deactivate"
467
  msgstr "deaktiviert"
468
 
469
- #: ../dashboard.php:1122
470
  msgid "not active"
471
  msgstr "nicht aktiv"
472
 
473
  #. "deactive" and "disabled" mean exactly the same in German.
474
- #: ../dashboard.php:1123
475
  msgid "disabled"
476
  msgstr "deaktiviert"
477
 
478
- #: ../dashboard.php:1128
479
  msgid "failed attempts"
480
  msgstr "Fehlversuche"
481
 
482
- #: ../dashboard.php:1128 ../dashboard.php:1129
483
  msgid "in 24 hours"
484
  msgstr "in 24 Stunden"
485
 
486
- #: ../dashboard.php:1128 ../dashboard.php:1129
487
  msgid "view all"
488
  msgstr "Zeige alle"
489
 
490
- #: ../dashboard.php:1129
491
  msgid "lockouts"
492
  msgstr "Sperren"
493
 
494
- #: ../dashboard.php:1131
495
  msgid "Lockouts at the moment"
496
  msgstr "Momentane Sperren"
497
 
498
- #: ../dashboard.php:1132
499
  msgid "Last lockout"
500
  msgstr "Letzte Sperre"
501
 
502
- #: ../dashboard.php:1133 ../dashboard.php:1134 ../dashboard.php:1652
503
  msgid "entry"
504
  msgid_plural "entries"
505
  msgstr[0] "Eintrag"
506
  msgstr[1] "Einträge"
507
 
508
- #: ../dashboard.php:1378
509
  #, fuzzy
510
  msgid "Confused about some settings?"
511
  msgstr "Verwirrende Einstellungen?"
512
 
513
- #: ../dashboard.php:1379
514
  msgid "You can easily load default recommended settings using button below"
515
  msgstr "Sie können ganz einfach mit dem unteren Button empfohlene Standardeinstellungen laden"
516
 
517
- #: ../dashboard.php:1381
518
  msgid "Load default settings"
519
  msgstr "Standardeinstellung laden"
520
 
521
- #: ../dashboard.php:1389
522
  msgid "doesn't affect Custom login URL and Access Lists"
523
  msgstr "hat keinen Einfluss auf benutzerdefinierte Login-URL und Zugriffslisten"
524
 
525
- #: ../common.php:884
526
  msgid "New version is available"
527
  msgstr "Eine neue Version ist verfügbar"
528
 
529
  #. Name of the plugin
530
- #: ../dashboard.php:915 ../dashboard.php:937
531
  msgid "WP Cerber"
532
  msgstr "WP Cerber"
533
 
534
- #: ../wp-cerber.php:3103
535
  msgid "WP Cerber notify"
536
  msgstr "WP Cerber benachrichtigen"
537
 
538
- #: ../wp-cerber.php:3125
539
  msgid "Citadel mode is activated"
540
  msgstr "Citadel-Modus ist aktiviert"
541
 
542
- #: ../wp-cerber.php:3199
543
  msgid "New Custom login URL"
544
  msgstr "Neue benutzerdefinierte Login-URL"
545
 
546
- #: ../wp-cerber.php:3850
547
  msgid "The WP Cerber requires PHP %s or higher. You are running"
548
  msgstr "WP Cerber benötigt PHP Version %s oder höher. Sie haben"
549
 
550
- #: ../wp-cerber.php:3854
551
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
552
  msgstr "WP Cerber benötigt Wordpress Version %s oder höher. Sie haben"
553
 
@@ -561,44 +562,44 @@ msgstr "Verwende Logdatei"
561
  msgid "Write failed login attempts to the file"
562
  msgstr "Schreibe fehlgeschlagene Anmeldungen in die Datei."
563
 
564
- #: ../dashboard.php:1480
565
  msgid "Deactivate"
566
  msgstr "Deaktivieren"
567
 
568
- #: ../dashboard.php:97 ../wp-cerber.php:3161
569
  msgid "Reason"
570
  msgstr "Grund"
571
 
572
- #: ../dashboard.php:168
573
  msgid "Add IP to the list"
574
  msgstr "Füge IP zur Liste hinzu"
575
 
576
- #: ../dashboard.php:885
577
  msgid "Add IP to the Black List"
578
  msgstr "Füge IP zur Schwarzen Liste hinzu"
579
 
580
- #: ../common.php:689
581
  msgid "Attempt to access"
582
  msgstr "Zugriffsversuch"
583
 
584
- #: ../common.php:688
585
  msgid "Limit on login attempts is reached"
586
  msgstr "Limit für Anmeldeversuche ist erreicht"
587
 
588
- #: ../common.php:644 ../common.php:690
589
  msgid "Attempt to log in with non-existent username"
590
  msgstr "Anmeldeversuch mit nicht existierendem Nutzernamen"
591
 
592
- #: ../wp-cerber.php:3160
593
  msgid "Last lockout was added: %s for IP %s"
594
  msgstr "Letzte Sperre wurde hinzugefügt: %s für IP %s"
595
 
596
  #. "Abhärtung" is the medical translation for "hardening" which fits best in this case.
597
- #: ../wp-cerber.php:3890 ../settings.php:363
598
  msgid "Hardening"
599
  msgstr "Abhärtung"
600
 
601
- #: ../dashboard.php:863
602
  msgid "Abuse email:"
603
  msgstr "Missbrauch Email:"
604
 
@@ -650,16 +651,16 @@ msgstr "Zugriff auf den RSS-, den Atom- und den RDF-Feed blockieren"
650
  msgid "Disable REST API"
651
  msgstr "REST API deaktivieren"
652
 
653
- #: ../settings.php:322
654
  #, fuzzy
655
  msgid "These settings do not affect hosts from the "
656
  msgstr "Diese Einstellungen beeinflussen keine Hosts von"
657
 
658
- #: ../settings.php:839 ../settings.php:851
659
  msgid "<strong>ERROR</strong>: please enter a valid email address."
660
  msgstr "<strong>FEHLER</strong>: Bitte eine gültige E-Mail-Adresse eingeben"
661
 
662
- #: ../wp-cerber.php:3191 ../wp-cerber.php:3879
663
  #, fuzzy
664
  msgid "WP Cerber is now active and has started protecting your site"
665
  msgstr "WP Cerber ist nun aktiv und schützt ihre Website"
@@ -672,28 +673,28 @@ msgstr "Aktion"
672
  msgid "Nobody can log in or register from these IPs"
673
  msgstr "Niemand kann sich von diesen IPs anmelden oder registrieren"
674
 
675
- #: ../dashboard.php:194 ../dashboard.php:206
676
  msgid "Incorrect IP address or IP range"
677
  msgstr "Falsche IP-Adresse oder falscher IP-Bereich"
678
 
679
- #: ../dashboard.php:405 ../dashboard.php:1496
680
  msgid "Settings saved"
681
  msgstr "Einstellungen gespeichert"
682
 
683
- #: ../dashboard.php:867
684
  msgid "Network:"
685
  msgstr "Netzwerk:"
686
 
687
- #: ../dashboard.php:881
688
  msgid "Add network to the Black List"
689
  msgstr "Netzwerk zur schwarzen Liste hinzufügen"
690
 
691
- #: ../dashboard.php:1479
692
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
693
  msgstr "Achtung! Citadel-Modus ist nun aktiv. Niemand kann sich anmelden."
694
 
695
- #: ../dashboard.php:311 ../dashboard.php:2457 ../whois.php:221 ../whois.php:252 ..
696
- #: /common.php:687 ../common.php:966
697
  msgid "Unknown"
698
  msgstr "Unbekannt"
699
 
@@ -702,84 +703,84 @@ msgstr "Unbekannt"
702
  msgid "Gregory"
703
  msgstr "Gregory"
704
 
705
- #: ../wp-cerber.php:605 ../wp-cerber.php:617 ../wp-cerber.php:624 ../wp-cerber.
706
- #: php:826 ../wp-cerber.php:1042 ../wp-cerber.php:1048 ../wp-cerber.php:1053 ..
707
- #: /wp-cerber.php:1058 ../wp-cerber.php:1064 ../wp-cerber.php:1071 ../wp-cerber.
708
- #: php:1171 ../wp-cerber.php:1308 ../common.php:194 ../common.php:251 ../common.
709
- #: php:255 ../settings.php:808
710
  msgid "ERROR:"
711
  msgstr "FEHLER:"
712
 
713
- #: ../wp-cerber.php:634
714
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
715
  msgstr "Menschlichkeitsnachweis gescheitert. Bitte klicken Sie das quadratische Kästchen im reCAPTCHA-Block unten."
716
 
717
- #: ../wp-cerber.php:838
718
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
719
  msgstr "<strong>FEHLER</strong>: Das eingegebene Passwort für den Benutzernamen %s ist falsch."
720
 
721
- #: ../wp-cerber.php:1059
722
  msgid "Username is not allowed. Please choose another one."
723
  msgstr "Benutzername ist nicht erlaubt. Bitte einen anderen wählen."
724
 
725
- #: ../wp-cerber.php:3154
726
  msgid "unspecified"
727
  msgstr "nicht spezifiziert"
728
 
729
- #: ../wp-cerber.php:3157
730
  msgid "Number of lockouts is increasing"
731
  msgstr "Anzahl an Sperren steigt an"
732
 
733
- #: ../wp-cerber.php:3162
734
  msgid "View activity for this IP"
735
  msgstr "Zeige Aktivität für diese IP"
736
 
737
- #: ../wp-cerber.php:3166 ../wp-cerber.php:3168
738
  msgid "A new version of WP Cerber is available to install"
739
  msgstr "Eine neue Version von WP Cerber ist zur Installation verfügbar"
740
 
741
- #: ../wp-cerber.php:3167
742
  msgid "Hi!"
743
  msgstr "Hallo!"
744
 
745
  #. Original translation is "Internetseite" but this translation is not up to time.
746
- #: ../wp-cerber.php:3170 ../wp-cerber.php:3181
747
  msgid "Website"
748
  msgstr "Website"
749
 
750
- #: ../wp-cerber.php:3173 ../wp-cerber.php:3174
751
  msgid "The WP Cerber security plugin has been deactivated"
752
  msgstr "Das WP Cerber Sicherheits-Plugin wurde deaktiviert"
753
 
754
- #: ../wp-cerber.php:3176
755
  msgid "Not logged in"
756
  msgstr "Nicht angemeldet"
757
 
758
- #: ../wp-cerber.php:3182
759
  #, fuzzy
760
  msgid "By user"
761
  msgstr "Von Nutzer"
762
 
763
- #: ../wp-cerber.php:3183
764
  #, fuzzy
765
  msgid "From IP address"
766
  msgstr "Von IP-Adresse"
767
 
768
- #: ../wp-cerber.php:3186
769
  #, fuzzy
770
  msgid "From country"
771
  msgstr "Vom Land"
772
 
773
- #: ../wp-cerber.php:3190
774
  msgid "The WP Cerber security plugin is now active"
775
  msgstr "Das WP Cerber Sicherheits-Plugin ist nun aktiv"
776
 
777
- #: ../wp-cerber.php:3880
778
  #, fuzzy
779
  msgid "Your IP address is added to the"
780
  msgstr "Ihre IP-Adresse wurde hinzugefügt zu"
781
 
782
- #: ../wp-cerber.php:3892
783
  msgid "Import settings"
784
  msgstr "Import-Einstellungen"
785
 
@@ -842,43 +843,43 @@ msgstr "Anmeldeforumlar"
842
  msgid "Enable reCAPTCHA for WordPress login form"
843
  msgstr "Aktiviere reCAPTCHA für das WordPress Anmeldeformular"
844
 
845
- #: ../settings.php:325
846
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
847
  msgstr "Bevor Sie reCAPTCHA nutzen können, müssen Sie einen Site key und einen Secret key von der Google Website beziehen."
848
 
849
- #: ../cerber-lab.php:669 ../settings.php:326
850
  msgid "Know more"
851
  msgstr "Mehr erfahren"
852
 
853
- #: ../dashboard.php:915 ../settings.php:345
854
  msgid "WP Cerber Security"
855
  msgstr "WP Cerber Sicherheit"
856
 
857
- #: ../settings.php:365
858
  msgid "Users"
859
  msgstr "Benutzer"
860
 
861
- #: ../common.php:611
862
  msgid "User created"
863
  msgstr "Benutzer erstellt"
864
 
865
- #: ../dashboard.php:1332 ../common.php:612
866
  msgid "User registered"
867
  msgstr "Benutzer registriert"
868
 
869
- #: ../common.php:639
870
  msgid "reCAPTCHA verification failed"
871
  msgstr "reCAPTCHA-Bestätigung gescheitert"
872
 
873
- #: ../common.php:640
874
  msgid "reCAPTCHA settings are incorrect"
875
  msgstr "reCAPTCHA-Einstellungen sind falsch"
876
 
877
- #: ../common.php:643
878
  msgid "Attempt to access prohibited URL"
879
  msgstr "Zugriffsversuch auf verbotene URL"
880
 
881
- #: ../common.php:645 ../common.php:691
882
  msgid "Attempt to log in with prohibited username"
883
  msgstr "Anmeldeversuch mit verbotenem Benutzernamen"
884
 
@@ -914,106 +915,106 @@ msgstr "Aktiviere reCAPTCHA für das WooCommerce Passwort-Vergessen-Formular"
914
  msgid "Enable reCAPTCHA for WooCommerce login form"
915
  msgstr "Aktiviere reCAPTCHA für das WooCommerce Anmeldeformular"
916
 
917
- #: ../common.php:641
918
  msgid "Request to the Google reCAPTCHA service failed"
919
  msgstr "Anfrage an den Google reCAPTCHA Dienst gescheitert"
920
 
921
- #: ../dashboard.php:1324 ../dashboard.php:1354
922
  msgid "View all"
923
  msgstr "Zeige alle"
924
 
925
- #: ../dashboard.php:1355
926
  msgid "Recently locked out IP addresses"
927
  msgstr "Kürzlich ausgesperrte IP-Adressen"
928
 
929
  #. "OK, vernichte sie alle" is a nicer translation for "OK, kill them all" ... too harsh or does it fit?
930
- #: ../cerber-lab.php:667
931
  #, fuzzy
932
  msgid "OK, nail them all"
933
  msgstr "OK, vernichte sie alle"
934
 
935
- #: ../cerber-lab.php:668
936
  msgid "NO, maybe later"
937
  msgstr "NEIN, vielleicht später"
938
 
939
  #. Dashboard is in German more common in this context as the actual translation "Amaturenbrett" which is only used for non-digital things like in cars!
940
- #: ../dashboard.php:917 ../dashboard.php:1141 ../dashboard.php:1672 ../settings.
941
- #: php:350
942
  #, fuzzy
943
  msgid "Dashboard"
944
  msgstr "Dashboard"
945
 
946
- #: ../cerber-lab.php:665
947
  msgid "Want to make WP Cerber even more powerful?"
948
  msgstr "Wollen Sie WP Cerber noch stärker machen?"
949
 
950
- #: ../cerber-lab.php:666
951
  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."
952
  msgstr "Erlaube WP Cerber ausgesperrte bösartige IP-Adressen an das Cerber Lab zu senden. Dies hilft dem Plugin-Team neue Algorithmen für WP Cerber zu entwickeln, die WordPress gegen täglich auftretende neue Bedrohungen und Botnets verteidigen. Sie können das Senden jederzeit in den Plugin-Einstellungen deaktivieren."
953
 
954
- #: ../dashboard.php:489
955
  msgid "IP address"
956
  msgstr "IP-Adresse"
957
 
958
- #: ../dashboard.php:489
959
  msgid "User login"
960
  msgstr "Benutzer-Anmeldung"
961
 
962
- #: ../dashboard.php:489
963
  msgid "User ID"
964
  msgstr "Benutzer-ID"
965
 
966
- #: ../dashboard.php:669
967
  msgid "Export"
968
  msgstr "Export"
969
 
970
- #: ../dashboard.php:689
971
  msgid "Search for IP or username"
972
  msgstr "Suche nach IP oder Nutzernamen"
973
 
974
- #: ../dashboard.php:689
975
  msgid "Filter"
976
  msgstr "Filter"
977
 
978
- #: ../dashboard.php:917
979
  msgid "Cerber Dashboard"
980
  msgstr "Cerber Dashboard"
981
 
982
- #: ../dashboard.php:927
983
  msgid "Cerber tools"
984
  msgstr "Cerber Werkzeuge"
985
 
986
- #: ../dashboard.php:1582
987
  msgid "Subscribe"
988
  msgstr "Abonnieren"
989
 
990
- #: ../dashboard.php:1583 ../cerber-tools.php:266
991
  msgid "Unsubscribe"
992
  msgstr "Abmelden"
993
 
994
- #: ../dashboard.php:1611
995
  #, fuzzy
996
  msgid "You've subscribed"
997
  msgstr "Erfolgreich abonniert"
998
 
999
- #: ../dashboard.php:1614
1000
  #, fuzzy
1001
  msgid "You've unsubscribed"
1002
  msgstr "Erfolgreich abgemeldet"
1003
 
1004
- #: ../wp-cerber.php:3203 ../wp-cerber.php:3204
1005
  msgid "A new activity has been recorded"
1006
  msgstr "Eine neue Aktivität wurde aufgezeichnet"
1007
 
1008
- #: ../wp-cerber.php:3665
1009
  msgid "User"
1010
  msgstr "Benutzer"
1011
 
1012
- #: ../wp-cerber.php:3673
1013
  msgid "Search string"
1014
  msgstr "Such-String"
1015
 
1016
- #: ../wp-cerber.php:3694
1017
  msgid "To unsubscribe click here"
1018
  msgstr "Zum Abmelden hier klicken"
1019
 
@@ -1029,7 +1030,7 @@ msgstr "Datumsformat"
1029
  msgid "if empty, the default format %s will be used"
1030
  msgstr "wenn leer, dann wird das Standard Format %s verwendet"
1031
 
1032
- #: ../dashboard.php:1137 ../settings.php:211
1033
  msgid "Push notifications"
1034
  msgstr "Push-Benachrichtigungen"
1035
 
@@ -1037,7 +1038,7 @@ msgstr "Push-Benachrichtigungen"
1037
  msgid "Email notifications"
1038
  msgstr "Email-Benachrichtigungen"
1039
 
1040
- #: ../settings.php:201 ../settings.php:233 ../settings.php:282
1041
  msgid "Use comma to specify multiple values"
1042
  msgstr "Mit Komma mehrere Werte trennen"
1043
 
@@ -1053,15 +1054,15 @@ msgstr "Kein Gerät gefunden"
1053
  msgid "Not available"
1054
  msgstr "Nicht verfügbar"
1055
 
1056
- #: ../common.php:637
1057
  msgid "Password reset requested"
1058
  msgstr "Passwort Zurücksetzung angefordert"
1059
 
1060
- #: ../common.php:692
1061
  msgid "Limit on failed reCAPTCHA verifications is reached"
1062
  msgstr "Grenze an fehlgeschlagenen reCAPTCHA ist erreicht"
1063
 
1064
- #: ../common.php:750
1065
  msgid "%s ago"
1066
  msgstr "vor %s"
1067
 
@@ -1101,11 +1102,11 @@ msgstr "Versuche Einschränken"
1101
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1102
  msgstr "IP Adresse für %s Minuten nach %s fehlgeschlagenen Versuchen innerhalb von %s Minuten sperren"
1103
 
1104
- #: ../settings.php:319
1105
  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."
1106
  msgstr "Im Citadel Modus kann sich niemand einloggen, außer IPs auf der White IP Zugangsliste. Laufende Sitzungen werden nicht beeinflusst."
1107
 
1108
- #: ../dashboard.php:489 ../dashboard.php:647
1109
  msgid "Event"
1110
  msgstr "Ereignis"
1111
 
@@ -1121,24 +1122,24 @@ msgstr "Schadhafte IP Adresse gefunden"
1121
  msgid "Lockouts occurred"
1122
  msgstr "Sperre aufgetreten"
1123
 
1124
- #: ../dashboard.php:1333
1125
  msgid "All suspicious activity"
1126
  msgstr "Alle verdächtigen Aktivitäten"
1127
 
1128
- #: ../wp-cerber.php:1043 ../wp-cerber.php:1049 ../wp-cerber.php:1065 ../wp-cerber.
1129
- #: php:1072
1130
  msgid "You are not allowed to register."
1131
  msgstr "Registrierung nicht erlaubt."
1132
 
1133
- #: ../common.php:622
1134
  msgid "Spam comment denied"
1135
  msgstr "Spam Kommentar verweigert"
1136
 
1137
- #: ../common.php:647
1138
  msgid "Attempt to log in denied"
1139
  msgstr "Loginversuch verweigert"
1140
 
1141
- #: ../common.php:648
1142
  msgid "Attempt to register denied"
1143
  msgstr "Registrierungsversuch verweigert"
1144
 
@@ -1146,11 +1147,11 @@ msgstr "Registrierungsversuch verweigert"
1146
  msgid "Malicious activities mitigated"
1147
  msgstr "Schadhafte Aktivitäten gemildert"
1148
 
1149
- #: ../dashboard.php:926
1150
  msgid "Cerber antispam settings"
1151
  msgstr "Cerber Antispam-Einstellungen"
1152
 
1153
- #: ../dashboard.php:926 ../dashboard.php:1144 ../wp-cerber.php:3889 ../settings.
1154
  #: php:185
1155
  msgid "Antispam"
1156
  msgstr "Spam-Schutz"
@@ -1187,12 +1188,12 @@ msgstr "Lizenz"
1187
  msgid "Antispam and bot detection settings"
1188
  msgstr "Antispam- und Bot-Erkennungseinstellungen"
1189
 
1190
- #: ../wp-cerber.php:1308
1191
  msgid "Sorry, human verification failed."
1192
  msgstr "Entschuldigung, der Menschlichkeitsnachweis ist fehlgeschlagen.\n"
1193
  ""
1194
 
1195
- #: ../common.php:693
1196
  msgid "Bot activity is detected"
1197
  msgstr "Bot-Aktivität wurde erkannt"
1198
 
@@ -1212,7 +1213,7 @@ msgstr "Spam-Kommentar in den Papierkorb legen"
1212
  msgid "Move spam comments to trash after"
1213
  msgstr "Verschieben Sie die Spam-Kommentare anschließend in den Papierkorb"
1214
 
1215
- #: ../common.php:623
1216
  msgid "Spam form submission denied"
1217
  msgstr "Spam in Formular geblockt"
1218
 
@@ -1236,7 +1237,7 @@ msgstr "Abgesicherter Modus"
1236
  msgid "Use less restrictive policies (allow AJAX)"
1237
  msgstr "Weniger restriktive Richtlinien verwenden (AJAX zulassen)"
1238
 
1239
- #: ../dashboard.php:2705 ../settings.php:156
1240
  msgid "Logged in users"
1241
  msgstr "Angemeldete Benutzer"
1242
 
@@ -1249,31 +1250,31 @@ msgstr "Deaktivieren der Bot-Erkennungs-Engine für eingeloggte Benutzer"
1249
  msgid "WP Cerber Security & Antispam"
1250
  msgstr "WP Cerber Security & Antispam"
1251
 
1252
- #: ../dashboard.php:95 ../dashboard.php:645
1253
  msgid "Country"
1254
  msgstr "Land"
1255
 
1256
- #: ../dashboard.php:680
1257
  msgid "All events"
1258
  msgstr "Alle Ereignisse"
1259
 
1260
- #: ../dashboard.php:923
1261
  msgid "Cerber Security Rules"
1262
  msgstr "Cerber Sicherheitsregeln"
1263
 
1264
- #: ../dashboard.php:923 ../dashboard.php:2040
1265
  msgid "Security Rules"
1266
  msgstr "Sicherheitsregeln"
1267
 
1268
- #: ../dashboard.php:1000
1269
  msgid "Failed login attempts"
1270
  msgstr "Fehlgeschlagene Anmeldeversuche"
1271
 
1272
- #: ../dashboard.php:1001
1273
  msgid "Registered"
1274
  msgstr "Registriert"
1275
 
1276
- #: ../dashboard.php:1068
1277
  msgid "You"
1278
  msgstr "Du"
1279
 
@@ -1282,25 +1283,25 @@ msgid "Spam form submissions denied"
1282
  msgstr "Spam Formular-Übermittlungen verweigert\n"
1283
  ""
1284
 
1285
- #: ../dashboard.php:1390 ../wp-cerber.php:3193 ../wp-cerber.php:3882
1286
  msgid "Getting Started Guide"
1287
  msgstr "Leitfaden für den Einstieg"
1288
 
1289
- #: ../dashboard.php:2045
1290
  msgid "Countries"
1291
  msgstr "Länder"
1292
 
1293
- #: ../dashboard.php:2108
1294
  msgid "Permitted for one country"
1295
  msgid_plural "Permitted for %d countries"
1296
  msgstr[0] "Erlaubt für ein Land"
1297
  msgstr[1] "Erlaubt für %d Länder"
1298
 
1299
- #: ../dashboard.php:2119
1300
  msgid "No rule"
1301
  msgstr "Keine Regel"
1302
 
1303
- #: ../dashboard.php:2331
1304
  msgid "Security rules have been updated"
1305
  msgstr "Sicherheitsregeln wurden aktualisiert"
1306
 
@@ -1309,47 +1310,47 @@ msgstr "Sicherheitsregeln wurden aktualisiert"
1309
  msgid "https://wpcerber.com"
1310
  msgstr "https://wpcerber.com"
1311
 
1312
- #: ../common.php:624
1313
  msgid "Form submission denied"
1314
  msgstr "Formular-Übermittlung verweigert"
1315
 
1316
- #: ../common.php:625
1317
  msgid "Comment denied"
1318
  msgstr "Kommentar verweigert"
1319
 
1320
- #: ../common.php:651
1321
  msgid "Request to REST API denied"
1322
  msgstr "Anfrage an REST API verweigert"
1323
 
1324
- #: ../common.php:652
1325
  msgid "XML-RPC request denied"
1326
  msgstr "XML-RPC-Anfrage verweigert"
1327
 
1328
- #: ../common.php:656
1329
  msgid "Bot detected"
1330
  msgstr "Bot erkannt"
1331
 
1332
- #: ../common.php:657
1333
  msgid "Citadel mode is active"
1334
  msgstr "Citadel-Modus ist aktiv"
1335
 
1336
- #: ../common.php:662
1337
  msgid "Malicious activity detected"
1338
  msgstr "Bösartige Aktivität entdeckt"
1339
 
1340
- #: ../common.php:663
1341
  msgid "Blocked by country rule"
1342
  msgstr "Gesperrt durch Länderregel"
1343
 
1344
- #: ../common.php:664
1345
  msgid "Limit reached"
1346
  msgstr "Limit erreicht"
1347
 
1348
- #: ../common.php:665
1349
  msgid "Multiple suspicious activities"
1350
  msgstr "Mehrere verdächtige Aktivitäten"
1351
 
1352
- #: ../common.php:694
1353
  msgid "Multiple suspicious activities were detected"
1354
  msgstr "Mehrere verdächtige Aktivitäten erkannt"
1355
 
@@ -1385,39 +1386,39 @@ msgstr "nach Registrierungsdatum"
1385
  msgid "Query whitelist"
1386
  msgstr "IP Whitelist abfragen"
1387
 
1388
- #: ../settings.php:482 ../settings.php:604
1389
  msgid "%s allowed registrations in %s minutes from one IP"
1390
  msgstr "%s erlaubte Registrierungen innerhalb von %s Minuten von derselben IP"
1391
 
1392
- #: ../dashboard.php:2175
1393
  msgid "Start typing here to find a country"
1394
  msgstr "Beginnen Sie hier mit der Eingabe, um ein Land zu finden"
1395
 
1396
- #: ../dashboard.php:2258
1397
  msgid "Click on a country name to add it to the list of selected countries"
1398
  msgstr "Klicken Sie auf einen Ländernamen, um ihn zur Liste der ausgewählten Länder hinzuzufügen"
1399
 
1400
- #: ../dashboard.php:2282
1401
  msgid "Submit forms"
1402
  msgstr "Formulare absenden"
1403
 
1404
- #: ../dashboard.php:2283
1405
  msgid "Post comments"
1406
  msgstr "Kommentare veröffentlichen"
1407
 
1408
- #: ../dashboard.php:2284
1409
  msgid "Log in to the website"
1410
  msgstr "Auf der Website anmelden"
1411
 
1412
- #: ../dashboard.php:2285
1413
  msgid "Register on the website"
1414
  msgstr "Auf der Website registrieren"
1415
 
1416
- #: ../dashboard.php:2286
1417
  msgid "Use XML-RPC"
1418
  msgstr "XML-RPC benutzen"
1419
 
1420
- #: ../dashboard.php:2287
1421
  msgid "Use REST API"
1422
  msgstr "REST API benutzen"
1423
 
@@ -1429,11 +1430,11 @@ msgstr "Alles verbieten"
1429
  msgid "Mark it as spam"
1430
  msgstr "Als Spam markieren"
1431
 
1432
- #: ../dashboard.php:1318
1433
  msgid "in the last 24 hours"
1434
  msgstr "in den letzten 24 Stunden"
1435
 
1436
- #: ../dashboard.php:1673
1437
  msgid "Main settings"
1438
  msgstr "Haupteinstellungen"
1439
 
@@ -1441,92 +1442,92 @@ msgstr "Haupteinstellungen"
1441
  msgid "Weekly reports"
1442
  msgstr "Wöchentliche Berichte"
1443
 
1444
- #: ../settings.php:701
1445
  msgid "Sunday"
1446
  msgstr "Sonntag"
1447
 
1448
- #: ../settings.php:702
1449
  msgid "Monday"
1450
  msgstr "Montag"
1451
 
1452
- #: ../settings.php:703
1453
  msgid "Tuesday"
1454
  msgstr "Dienstag"
1455
 
1456
- #: ../settings.php:704
1457
  msgid "Wednesday"
1458
  msgstr "Mittwoch"
1459
 
1460
- #: ../settings.php:705
1461
  msgid "Thursday"
1462
  msgstr "Donnerstag"
1463
 
1464
- #: ../settings.php:706
1465
  msgid "Friday"
1466
  msgstr "Freitag"
1467
 
1468
- #: ../settings.php:707
1469
  msgid "Saturday"
1470
  msgstr "Samstag"
1471
 
1472
- #: ../settings.php:760 ../settings.php:761
1473
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1474
  msgstr "Wenn Sie ein Caching-Plugin verwenden, müssen Sie Ihre neue Anmelde-URL zur Liste der Seiten hinzufügen, die nicht gecached werden sollen."
1475
 
1476
  #. translators: preposition of time
1477
- #: ../settings.php:717
1478
  msgctxt "preposition of time"
1479
  msgid "at"
1480
  msgstr "um"
1481
 
1482
- #: ../wp-cerber.php:3209
1483
  msgid "Weekly report"
1484
  msgstr "Wöchentlicher Bericht"
1485
 
1486
- #: ../wp-cerber.php:3212
1487
  msgid "To change reporting settings visit"
1488
  msgstr "Um die Einstellungen für die Berichte zu ändern besuchen Sie"
1489
 
1490
- #: ../wp-cerber.php:3238
1491
  msgid "Your login page:"
1492
  msgstr "Ihre Anmeldeseite:"
1493
 
1494
- #: ../wp-cerber.php:3242
1495
  msgid "Your license is valid until"
1496
  msgstr "Ihre Lizenz ist gültig bis"
1497
 
1498
- #: ../wp-cerber.php:3355
1499
  msgid "Activity details"
1500
  msgstr "Aktivitätsdetails"
1501
 
1502
- #: ../settings.php:733
1503
  msgid "Click to send now"
1504
  msgstr "Klicken Sie, um jetzt zu senden"
1505
 
1506
- #: ../wp-cerber.php:705
1507
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1508
  msgstr "> > > Sind Sie ein Übersetzer von WP Cerber? Um eine kostenlose PRO-Lizenz zu erhalten, kontaktieren Sie uns über https://wpcerber.com/contact/"
1509
 
1510
- #: ../dashboard.php:378
1511
  msgid "Email has been sent to"
1512
  msgstr "E-Mail wurde gesendet an"
1513
 
1514
- #: ../dashboard.php:381
1515
  msgid "Unable to send email to"
1516
  msgstr "E-Mail kann nicht gesendet werden an"
1517
 
1518
- #: ../dashboard.php:2111
1519
  msgid "Not permitted for one country"
1520
  msgid_plural "Not permitted for %d countries"
1521
  msgstr[0] "Nicht erlaubt für 1 Land"
1522
  msgstr[1] "Nicht erlaubt für %d Länder"
1523
 
1524
- #: ../dashboard.php:2262
1525
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1526
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1527
  msgstr ""
1528
 
1529
- #: ../dashboard.php:2265
1530
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1531
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1532
  msgstr ""
@@ -1536,7 +1537,7 @@ msgstr ""
1536
  msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1537
  msgstr "Schützt die Website vor Bruteforce-Angriffen, Bots und Hackern. Schutz gegen Spam durch die Cerber Antispam Engine und reCAPTCHA. Umfassende Kontrolle der Benutzeraktivitäten. Anmeldebeschränkung über IP-Zugangslisten. Limitiert die Anzahl der Anmeldeversuche. Mehr Informationen: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1538
 
1539
- #: ../wp-cerber.php:3343
1540
  msgid "Weekly Report"
1541
  msgstr "Wöchentlicher Bericht"
1542
 
@@ -1560,27 +1561,27 @@ msgstr "leer lassen, um die E-Mail-Adresse von den Benachrichtigungseinstellunge
1560
  msgid "Enable reporting"
1561
  msgstr "Berichte aktivieren"
1562
 
1563
- #: ../wp-cerber.php:3265
1564
  msgid "Your last sign-in was %s from %s"
1565
  msgstr "Ihre letzte Anmeldung war am %s von %s aus"
1566
 
1567
- #: ../wp-cerber.php:3369
1568
  msgid "Attempts to log in with non-existent username"
1569
  msgstr "Anmeldeversuche mit nicht existierendem Benutzernamen"
1570
 
1571
- #: ../dashboard.php:167
1572
  msgid "IP address, IPv4 address range or subnet"
1573
  msgstr "IP-Adresse, IPv4-Adressbereich oder Subnetz"
1574
 
1575
- #: ../dashboard.php:169
1576
  msgid "Optional comment for this entry"
1577
  msgstr "Optionaler Kommentar zu diesem Eintrag"
1578
 
1579
- #: ../dashboard.php:210
1580
  msgid "You cannot add your IP address or network"
1581
  msgstr "Sie können Ihre IP-Adresse oder Ihr Netzwerk nicht hinzufügen."
1582
 
1583
- #: ../cerber-news.php:141
1584
  msgid "Cool!"
1585
  msgstr "Cool!"
1586
 
@@ -1588,67 +1589,63 @@ msgstr "Cool!"
1588
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1589
  msgstr "Um einen REGEX-Ausdruck zu definieren umschliessen Sie diesen mit zwei Vorwärts-Schrägstrichen"
1590
 
1591
- #: ../dashboard.php:919
1592
  msgid "Cerber Traffic Inspector"
1593
  msgstr ""
1594
 
1595
- #: ../dashboard.php:919 ../dashboard.php:2380
1596
  msgid "Traffic Inspector"
1597
  msgstr ""
1598
 
1599
- #: ../dashboard.php:1143
1600
  msgid "Traffic"
1601
  msgstr ""
1602
 
1603
- #: ../dashboard.php:2385
1604
  msgid "Live traffic"
1605
  msgstr ""
1606
 
1607
- #: ../dashboard.php:2673
1608
  msgid "Request"
1609
  msgstr ""
1610
 
1611
- #: ../dashboard.php:2675
1612
  msgid "Host Info"
1613
  msgstr ""
1614
 
1615
- #: ../dashboard.php:2676
1616
  msgid "User Agent"
1617
  msgstr ""
1618
 
1619
- #: ../dashboard.php:2696
1620
- msgid "No requests has been logged."
1621
- msgstr ""
1622
-
1623
- #: ../dashboard.php:2704
1624
  msgid "All requests"
1625
  msgstr ""
1626
 
1627
- #: ../dashboard.php:2706
1628
  msgid "Not logged in visitors"
1629
  msgstr ""
1630
 
1631
- #: ../dashboard.php:2707
1632
  msgid "Form submissions"
1633
  msgstr ""
1634
 
1635
- #: ../dashboard.php:2708
1636
  msgid "Page Not Found"
1637
  msgstr ""
1638
 
1639
- #: ../dashboard.php:2709
1640
  msgid "REST API"
1641
  msgstr ""
1642
 
1643
- #: ../dashboard.php:2710
1644
  msgid "XML-RPC"
1645
  msgstr ""
1646
 
1647
- #: ../dashboard.php:2714
1648
  msgid "Longer than"
1649
  msgstr ""
1650
 
1651
- #: ../dashboard.php:2725
1652
  msgid "Refresh"
1653
  msgstr ""
1654
 
@@ -1656,43 +1653,35 @@ msgstr ""
1656
  msgid "Check for requests"
1657
  msgstr ""
1658
 
1659
- #: ../common.php:649 ../common.php:695
1660
- msgid "Probing for vulnerable PHP script"
1661
- msgstr ""
1662
-
1663
- #: ../common.php:910
1664
  msgid "Not specified"
1665
  msgstr ""
1666
 
1667
- #: ../settings.php:245
1668
- msgid "Logging settings"
1669
- msgstr ""
1670
-
1671
- #: ../settings.php:254
1672
  msgid "Logging mode"
1673
  msgstr ""
1674
 
1675
- #: ../settings.php:260
1676
  msgid "Logging disabled"
1677
  msgstr ""
1678
 
1679
- #: ../settings.php:261
1680
  msgid "Smart"
1681
  msgstr ""
1682
 
1683
- #: ../settings.php:262
1684
  msgid "All traffic"
1685
  msgstr ""
1686
 
1687
- #: ../settings.php:266
1688
  msgid "Ignore crawlers"
1689
  msgstr ""
1690
 
1691
- #: ../settings.php:276
1692
  msgid "Mask these form fields"
1693
  msgstr ""
1694
 
1695
- #: ../settings.php:291
1696
  msgid "milliseconds"
1697
  msgstr ""
1698
 
@@ -1704,15 +1693,67 @@ msgstr ""
1704
  msgid "Enable traffic inspection"
1705
  msgstr ""
1706
 
1707
- #: ../settings.php:253
1708
  msgid "Logging"
1709
  msgstr ""
1710
 
1711
- #: ../settings.php:271
1712
  msgid "Save request fields"
1713
  msgstr ""
1714
 
1715
- #: ../settings.php:286
1716
  msgid "Page generation time threshold"
1717
  msgstr ""
1718
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
75
  msgstr "Blockiere direkten Zugriff zu wp-login.php und gib HTTP 404 Not Found Error zurück"
76
 
77
+ #: ../dashboard.php:1209 ../settings.php:89
78
  msgid "Citadel mode"
79
  msgstr "Citadel Modus"
80
 
86
  msgid "Duration"
87
  msgstr "Dauer"
88
 
89
+ #: ../wp-cerber.php:3863 ../settings.php:75 ../settings.php:92 ../settings.php:396
90
  msgid "Notifications"
91
  msgstr "Benachrichtigungen"
92
 
94
  msgid "Send notification to admin email"
95
  msgstr "Sende eine Benachrichtigung an die Emailadresse des Admins"
96
 
97
+ #: ../wp-cerber.php:3860 ../settings.php:389 ../cerber-tools.php:88 ../cerber-
98
  #: tools.php:97 ../cerber-tools.php:178
99
  msgid "Access Lists"
100
  msgstr "Zugriffslisten"
101
 
102
+ #: ../dashboard.php:1227 ../dashboard.php:1437 ../wp-cerber.php:3624 ../settings.
103
+ #: php:94 ../settings.php:380
104
  msgid "Activity"
105
  msgstr "Aktivität"
106
 
107
+ #: ../settings.php:384
108
  msgid "Lockouts"
109
  msgstr "Sperren"
110
 
111
+ #: ../settings.php:505 ../settings.php:627
112
  msgid "%s allowed retries in %s minutes"
113
  msgstr "%s erlaubte Wiederholungen in %s Minuten"
114
 
115
+ #: ../settings.php:527 ../settings.php:649
116
  msgid "Enable after %s failed login attempts in last %s minutes"
117
  msgstr "Aktiviere nach %s fehlgeschlagenen Anmeldeversuchen in den letzten %s Minuten"
118
 
119
+ #: ../dashboard.php:93 ../dashboard.php:652 ../dashboard.php:2812 ../wp-cerber.
120
+ #: php:3633
121
  msgid "IP"
122
  msgstr "IP"
123
 
124
+ #: ../dashboard.php:491 ../dashboard.php:655 ../dashboard.php:2810
125
  msgid "Date"
126
  msgstr "Datum"
127
 
128
+ #: ../dashboard.php:491 ../dashboard.php:657 ../dashboard.php:2815
129
  msgid "Local User"
130
  msgstr "Lokaler Benutzer"
131
 
132
+ #: ../dashboard.php:491 ../dashboard.php:658 ../wp-cerber.php:3641
133
  msgid "Username used"
134
  msgstr "Benutzername wird bereits verwendet"
135
 
137
  msgid "Showing last %d records from %d"
138
  msgstr "Zeige die letzten %d Einträge von %d"
139
 
140
+ #: ../common.php:690
141
  msgid "Logged in"
142
  msgstr "Eingeloggt"
143
 
144
+ #: ../common.php:691
145
  msgid "Logged out"
146
  msgstr "Ausgeloggt"
147
 
148
+ #: ../common.php:692
149
  msgid "Login failed"
150
  msgstr "Login fehlgeschlagen"
151
 
152
+ #: ../common.php:695
153
  msgid "IP blocked"
154
  msgstr "IP geblockt"
155
 
156
+ #: ../common.php:696
157
  msgid "Subnet blocked"
158
  msgstr "Subnetz geblockt"
159
 
160
+ #: ../common.php:698
161
  msgid "Citadel activated!"
162
  msgstr "Citadel-Modus aktiviert!"
163
 
164
+ #: ../dashboard.php:632 ../dashboard.php:836 ../dashboard.php:2648 ../common.php:
165
+ #: 735
166
  msgid "Locked out"
167
  msgstr "Ausgesperrt"
168
 
169
  #. Only correct if "IP blacklisted" is used as indicative. Otherwise it would not translate "IP auf der schwarzen Liste" but "IP auf die schwarze Liste gesetzt" (if it states that the IP was just blacklisted).
170
+ #: ../common.php:736
171
  #, fuzzy
172
  msgid "IP blacklisted"
173
  msgstr "IP blockiert"
174
 
175
+ #: ../common.php:713
176
  msgid "Password changed"
177
  msgstr "Passwort geändert"
178
 
179
+ #: ../dashboard.php:86 ../dashboard.php:159
180
  msgid "Remove"
181
  msgstr "Entfernen"
182
 
183
+ #: ../dashboard.php:390
184
  msgid "Lockout for %s was removed"
185
  msgstr "Die Sperre für %s wurde entfernt"
186
 
187
+ #: ../dashboard.php:131 ../dashboard.php:627 ../dashboard.php:830 ../dashboard.
188
+ #: php:1207 ../dashboard.php:2643 ../wp-cerber.php:3852 ../settings.php:74 ..
189
+ #: settings.php:350
190
  #, fuzzy
191
  msgid "White IP Access List"
192
  msgstr "Weiße Liste (erlaubten IPs)"
193
 
194
+ #: ../dashboard.php:133 ../dashboard.php:628 ../dashboard.php:833 ../dashboard.
195
+ #: php:1208 ../dashboard.php:2644
196
  #, fuzzy
197
  msgid "Black IP Access List"
198
  msgstr "Schwarze Liste (verbotenen IPs)"
199
 
200
+ #: ../dashboard.php:165
201
  msgid "List is empty"
202
  msgstr "Liste ist leer"
203
 
204
+ #: ../dashboard.php:202
205
  msgid "Address %s was added to White IP Access List"
206
  msgstr "Adresse %s wurde zur Liste der erlaubten IPs hinzugefügt"
207
 
208
+ #: ../dashboard.php:216
209
  msgid "Address %s was added to Black IP Access List"
210
  msgstr "Adresse %s wurde zur Liste der verbotenen IPs hinzugefügt"
211
 
212
+ #: ../wp-cerber.php:3097
213
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
214
  msgstr "Citadel-Modus ist aktiviert nach %d fehlgeschlagenen Logins in %d Minuten."
215
 
216
+ #: ../dashboard.php:1584
217
  msgid "View Activity"
218
  msgstr "Aktivitäten anzeigen"
219
 
220
+ #: ../dashboard.php:2500 ../cerber-tools.php:87 ../cerber-tools.php:96
221
  msgid "Settings"
222
  msgstr "Einstellungen"
223
 
224
+ #: ../dashboard.php:1073
225
  msgid "Last login"
226
  msgstr "Letzte Anmeldung"
227
 
228
+ #: ../dashboard.php:1106 ../dashboard.php:1190
229
  msgid "Never"
230
  msgstr "Niemals"
231
 
232
+ #: ../dashboard.php:1481
233
  msgid "Are you sure?"
234
  msgstr "Sind Sie sicher?"
235
 
236
+ #: ../dashboard.php:1284 ../settings.php:76
237
  msgid "My site is behind a reverse proxy"
238
  msgstr "Meine Website ist hinter einem Reverse-Proxy"
239
 
250
  msgstr "Die automatische Umleitung auf die Anmeldeseite deaktivieren, wenn /wp-admin/ von einer nicht autorisierten Anfrage aufgerufen wird"
251
 
252
  #. A fuzzy translation that is mostly used in this context would be "Machen Sie Ihren Schutz intelligenter!"
253
+ #: ../settings.php:336
254
  msgid "Make your protection smarter!"
255
  msgstr "Machen Sie Ihren Schutz schlauer!"
256
 
257
+ #: ../settings.php:340
258
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
259
  msgstr "Bitte aktivieren Sie Permalinks um dieses Merkmal zu verwenden. Setzen Sie die Permalink-Einstellungen auf etwas anderes als Standard."
260
 
261
+ #: ../settings.php:343
262
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
263
  msgstr "Seien Sie vorsichtig bei der Aktivierung dieser Optionen. Wenn Sie die benutzerdefinierte Login-URL vergessen, können Sie sich nicht mehr anmelden."
264
 
265
+ #: ../wp-cerber.php:3859 ../settings.php:386
266
  msgid "Main Settings"
267
  msgstr "Haupteinstellungen"
268
 
269
+ #: ../settings.php:398
270
  msgid "Help"
271
  msgstr "Hilfe"
272
 
273
  #. "Aussperrungen" is used in plural because there are more likely several lockouts in the last hours. One single lockout would demand the use of the singular "Aussperrung". We could use "Aussperrung(en)" to cover all cases.
274
+ #: ../settings.php:515 ../settings.php:637
275
  #, fuzzy
276
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
277
  msgstr "Erhöhe die Sperrdauer um %s Stunden nach %s Aussperrungen in den letzten %s Stunden"
278
 
279
+ #: ../wp-cerber.php:237
280
  msgid "You are not allowed to log in. Ask your administrator for assistance."
281
  msgstr "Sie sind nicht berechtigt, sich anzumelden. Fragen Sie Ihren Administrator nach Unterstützung."
282
 
283
  #. One "Minute", two/three/four/... "Minuten".
284
+ #: ../wp-cerber.php:243
285
  #, fuzzy
286
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
287
  msgstr "Sie haben die maximale Anzahl an Login-Versuchen erreicht. Bitte versuchen Sie es in %d Minuten noch einmal."
288
 
289
+ #: ../wp-cerber.php:262
290
  msgid "You have only one attempt remaining."
291
  msgid_plural "You have %d attempts remaining."
292
  msgstr[0] "Sie haben nur noch einen Versuch."
293
  msgstr[1] "Sie haben nur noch %d Versuche."
294
 
295
+ #: ../dashboard.php:680
296
  msgid "No activity has been logged."
297
  msgstr "Keine Aktivität wurde protokolliert."
298
 
312
  msgid "Your IP"
313
  msgstr "Ihre IP"
314
 
315
+ #: ../wp-cerber.php:3098
316
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
317
  msgstr "Der letzte gescheiterte Versuch war um %s von der IP %s mit der Benutzeranmeldung: %s."
318
 
319
+ #: ../wp-cerber.php:3835
320
  msgid "Can't activate WP Cerber due to a database error."
321
  msgstr "Kann WP Cerber aufgrund eines Datenbankfehlers nicht aktivieren."
322
 
323
+ #: ../settings.php:522 ../settings.php:644
324
  msgid "Notify admin if the number of active lockouts above"
325
  msgstr "Benachrichtige den Admin, wenn die Anzahl von aktiven Aussperrungen größer ist als"
326
 
327
+ #: ../settings.php:95 ../settings.php:168 ../settings.php:326
328
  msgid "days"
329
  msgstr "Tage"
330
 
331
+ #: ../dashboard.php:1160
332
  msgid "Cerber Quick View"
333
  msgstr "Cerber Schnellansicht"
334
 
340
  msgid "To view activity, click on the IP"
341
  msgstr "Um die Aktivität sehen zu können, klicken Sie auf die IP"
342
 
343
+ #: ../dashboard.php:158 ../dashboard.php:843 ../dashboard.php:870 ../dashboard.
344
+ #: php:962
345
  msgid "Check for activity"
346
  msgstr "Auf Aktivität überprüfen"
347
 
349
  msgid "Always block entire subnet Class C of intruders IP"
350
  msgstr "Immer das gesamte Subnetz Klasse C der IP des Eindringlings blockieren"
351
 
352
+ #: ../settings.php:92 ../settings.php:524 ../settings.php:646
353
  msgid "Click to send test"
354
  msgstr "Klicken für Sendungstest"
355
 
356
+ #: ../settings.php:786 ../settings.php:787
357
  msgid "Attention! You have changed the login URL! The new login URL is"
358
  msgstr "Achtung! Sie haben die Anmelde-URL geändert! Die neue Login-URL ist"
359
 
360
+ #: ../dashboard.php:1072
361
  msgid "Comments"
362
  msgstr "Kommentare"
363
 
364
+ #: ../common.php:968
365
  msgid "Update to version %s of WP Cerber"
366
  msgstr "Update auf Version %s von WP Cerber"
367
 
368
+ #: ../wp-cerber.php:3099 ../wp-cerber.php:3665
369
  msgid "View activity in dashboard"
370
  msgstr "Zeige Aktivität im Dashboard"
371
 
372
+ #: ../wp-cerber.php:3129
373
  msgid "Number of active lockouts"
374
  msgstr "Anzahl der aktiven Sperren"
375
 
376
+ #: ../wp-cerber.php:3133
377
  msgid "View lockouts in dashboard"
378
  msgstr "Zeige Sperren im Dashboard"
379
 
380
+ #: ../wp-cerber.php:3215
381
  msgid "This message was sent by"
382
  msgstr "Diese Nachricht wurde gesendet von"
383
 
384
  #. Used to be "Import/Export" but this is a fuzzy translation. Exact translation that WordPress also uses is "Werkzeuge".
385
+ #: ../dashboard.php:1001 ../cerber-tools.php:43
386
  msgid "Tools"
387
  msgstr "Werkzeuge"
388
 
446
  msgid "Error while parsing file"
447
  msgstr "Fehler beim Parsen der Datei"
448
 
449
+ #: ../dashboard.php:94 ../dashboard.php:653
450
  msgid "Hostname"
451
  msgstr "Hostname"
452
 
453
+ #: ../dashboard.php:355
454
  #, fuzzy
455
  msgid "unknown"
456
  msgstr "unbekannt"
457
 
458
+ #: ../settings.php:95 ../settings.php:322
459
  msgid "Keep records for"
460
  msgstr "Behalte Aufzeichnungen für"
461
 
462
+ #: ../dashboard.php:1194 ../dashboard.php:1215
463
  msgid "active"
464
  msgstr "aktiv"
465
 
466
+ #: ../dashboard.php:1194
467
  msgid "deactivate"
468
  msgstr "deaktiviert"
469
 
470
+ #: ../dashboard.php:1196
471
  msgid "not active"
472
  msgstr "nicht aktiv"
473
 
474
  #. "deactive" and "disabled" mean exactly the same in German.
475
+ #: ../dashboard.php:1197 ../dashboard.php:1211
476
  msgid "disabled"
477
  msgstr "deaktiviert"
478
 
479
+ #: ../dashboard.php:1202
480
  msgid "failed attempts"
481
  msgstr "Fehlversuche"
482
 
483
+ #: ../dashboard.php:1202 ../dashboard.php:1203
484
  msgid "in 24 hours"
485
  msgstr "in 24 Stunden"
486
 
487
+ #: ../dashboard.php:1202 ../dashboard.php:1203
488
  msgid "view all"
489
  msgstr "Zeige alle"
490
 
491
+ #: ../dashboard.php:1203
492
  msgid "lockouts"
493
  msgstr "Sperren"
494
 
495
+ #: ../dashboard.php:1205
496
  msgid "Lockouts at the moment"
497
  msgstr "Momentane Sperren"
498
 
499
+ #: ../dashboard.php:1206
500
  msgid "Last lockout"
501
  msgstr "Letzte Sperre"
502
 
503
+ #: ../dashboard.php:1207 ../dashboard.php:1208 ../dashboard.php:1755
504
  msgid "entry"
505
  msgid_plural "entries"
506
  msgstr[0] "Eintrag"
507
  msgstr[1] "Einträge"
508
 
509
+ #: ../dashboard.php:1476
510
  #, fuzzy
511
  msgid "Confused about some settings?"
512
  msgstr "Verwirrende Einstellungen?"
513
 
514
+ #: ../dashboard.php:1477
515
  msgid "You can easily load default recommended settings using button below"
516
  msgstr "Sie können ganz einfach mit dem unteren Button empfohlene Standardeinstellungen laden"
517
 
518
+ #: ../dashboard.php:1479
519
  msgid "Load default settings"
520
  msgstr "Standardeinstellung laden"
521
 
522
+ #: ../dashboard.php:1487
523
  msgid "doesn't affect Custom login URL and Access Lists"
524
  msgstr "hat keinen Einfluss auf benutzerdefinierte Login-URL und Zugriffslisten"
525
 
526
+ #: ../common.php:961
527
  msgid "New version is available"
528
  msgstr "Eine neue Version ist verfügbar"
529
 
530
  #. Name of the plugin
531
+ #: ../dashboard.php:989 ../dashboard.php:1011
532
  msgid "WP Cerber"
533
  msgstr "WP Cerber"
534
 
535
+ #: ../wp-cerber.php:3073
536
  msgid "WP Cerber notify"
537
  msgstr "WP Cerber benachrichtigen"
538
 
539
+ #: ../wp-cerber.php:3095
540
  msgid "Citadel mode is activated"
541
  msgstr "Citadel-Modus ist aktiviert"
542
 
543
+ #: ../wp-cerber.php:3169
544
  msgid "New Custom login URL"
545
  msgstr "Neue benutzerdefinierte Login-URL"
546
 
547
+ #: ../wp-cerber.php:3822
548
  msgid "The WP Cerber requires PHP %s or higher. You are running"
549
  msgstr "WP Cerber benötigt PHP Version %s oder höher. Sie haben"
550
 
551
+ #: ../wp-cerber.php:3826
552
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
553
  msgstr "WP Cerber benötigt Wordpress Version %s oder höher. Sie haben"
554
 
562
  msgid "Write failed login attempts to the file"
563
  msgstr "Schreibe fehlgeschlagene Anmeldungen in die Datei."
564
 
565
+ #: ../dashboard.php:1583
566
  msgid "Deactivate"
567
  msgstr "Deaktivieren"
568
 
569
+ #: ../dashboard.php:97 ../wp-cerber.php:3131
570
  msgid "Reason"
571
  msgstr "Grund"
572
 
573
+ #: ../dashboard.php:170
574
  msgid "Add IP to the list"
575
  msgstr "Füge IP zur Liste hinzu"
576
 
577
+ #: ../dashboard.php:889
578
  msgid "Add IP to the Black List"
579
  msgstr "Füge IP zur Schwarzen Liste hinzu"
580
 
581
+ #: ../common.php:766
582
  msgid "Attempt to access"
583
  msgstr "Zugriffsversuch"
584
 
585
+ #: ../common.php:765
586
  msgid "Limit on login attempts is reached"
587
  msgstr "Limit für Anmeldeversuche ist erreicht"
588
 
589
+ #: ../common.php:721 ../common.php:767
590
  msgid "Attempt to log in with non-existent username"
591
  msgstr "Anmeldeversuch mit nicht existierendem Nutzernamen"
592
 
593
+ #: ../wp-cerber.php:3130
594
  msgid "Last lockout was added: %s for IP %s"
595
  msgstr "Letzte Sperre wurde hinzugefügt: %s für IP %s"
596
 
597
  #. "Abhärtung" is the medical translation for "hardening" which fits best in this case.
598
+ #: ../wp-cerber.php:3862 ../settings.php:391
599
  msgid "Hardening"
600
  msgstr "Abhärtung"
601
 
602
+ #: ../dashboard.php:866
603
  msgid "Abuse email:"
604
  msgstr "Missbrauch Email:"
605
 
651
  msgid "Disable REST API"
652
  msgstr "REST API deaktivieren"
653
 
654
+ #: ../settings.php:350
655
  #, fuzzy
656
  msgid "These settings do not affect hosts from the "
657
  msgstr "Diese Einstellungen beeinflussen keine Hosts von"
658
 
659
+ #: ../settings.php:867 ../settings.php:879
660
  msgid "<strong>ERROR</strong>: please enter a valid email address."
661
  msgstr "<strong>FEHLER</strong>: Bitte eine gültige E-Mail-Adresse eingeben"
662
 
663
+ #: ../wp-cerber.php:3161 ../wp-cerber.php:3851
664
  #, fuzzy
665
  msgid "WP Cerber is now active and has started protecting your site"
666
  msgstr "WP Cerber ist nun aktiv und schützt ihre Website"
673
  msgid "Nobody can log in or register from these IPs"
674
  msgstr "Niemand kann sich von diesen IPs anmelden oder registrieren"
675
 
676
+ #: ../dashboard.php:196 ../dashboard.php:208
677
  msgid "Incorrect IP address or IP range"
678
  msgstr "Falsche IP-Adresse oder falscher IP-Bereich"
679
 
680
+ #: ../dashboard.php:407 ../dashboard.php:1599
681
  msgid "Settings saved"
682
  msgstr "Einstellungen gespeichert"
683
 
684
+ #: ../dashboard.php:870
685
  msgid "Network:"
686
  msgstr "Netzwerk:"
687
 
688
+ #: ../dashboard.php:884
689
  msgid "Add network to the Black List"
690
  msgstr "Netzwerk zur schwarzen Liste hinzufügen"
691
 
692
+ #: ../dashboard.php:1582
693
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
694
  msgstr "Achtung! Citadel-Modus ist nun aktiv. Niemand kann sich anmelden."
695
 
696
+ #: ../dashboard.php:313 ../dashboard.php:2573 ../whois.php:221 ../whois.php:252 ..
697
+ #: common.php:764 ../common.php:1043
698
  msgid "Unknown"
699
  msgstr "Unbekannt"
700
 
703
  msgid "Gregory"
704
  msgstr "Gregory"
705
 
706
+ #: ../wp-cerber.php:545 ../wp-cerber.php:557 ../wp-cerber.php:564 ../wp-cerber.
707
+ #: php:760 ../wp-cerber.php:976 ../wp-cerber.php:982 ../wp-cerber.php:987 ../wp-
708
+ #: cerber.php:992 ../wp-cerber.php:998 ../wp-cerber.php:1005 ../wp-cerber.php:
709
+ #: 1105 ../wp-cerber.php:1242 ../common.php:194 ../common.php:251 ../common.php:
710
+ #: 255 ../settings.php:836
711
  msgid "ERROR:"
712
  msgstr "FEHLER:"
713
 
714
+ #: ../wp-cerber.php:574
715
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
716
  msgstr "Menschlichkeitsnachweis gescheitert. Bitte klicken Sie das quadratische Kästchen im reCAPTCHA-Block unten."
717
 
718
+ #: ../wp-cerber.php:772
719
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
720
  msgstr "<strong>FEHLER</strong>: Das eingegebene Passwort für den Benutzernamen %s ist falsch."
721
 
722
+ #: ../wp-cerber.php:993
723
  msgid "Username is not allowed. Please choose another one."
724
  msgstr "Benutzername ist nicht erlaubt. Bitte einen anderen wählen."
725
 
726
+ #: ../wp-cerber.php:3124
727
  msgid "unspecified"
728
  msgstr "nicht spezifiziert"
729
 
730
+ #: ../wp-cerber.php:3127
731
  msgid "Number of lockouts is increasing"
732
  msgstr "Anzahl an Sperren steigt an"
733
 
734
+ #: ../wp-cerber.php:3132
735
  msgid "View activity for this IP"
736
  msgstr "Zeige Aktivität für diese IP"
737
 
738
+ #: ../wp-cerber.php:3136 ../wp-cerber.php:3138
739
  msgid "A new version of WP Cerber is available to install"
740
  msgstr "Eine neue Version von WP Cerber ist zur Installation verfügbar"
741
 
742
+ #: ../wp-cerber.php:3137
743
  msgid "Hi!"
744
  msgstr "Hallo!"
745
 
746
  #. Original translation is "Internetseite" but this translation is not up to time.
747
+ #: ../wp-cerber.php:3140 ../wp-cerber.php:3151
748
  msgid "Website"
749
  msgstr "Website"
750
 
751
+ #: ../wp-cerber.php:3143 ../wp-cerber.php:3144
752
  msgid "The WP Cerber security plugin has been deactivated"
753
  msgstr "Das WP Cerber Sicherheits-Plugin wurde deaktiviert"
754
 
755
+ #: ../wp-cerber.php:3146
756
  msgid "Not logged in"
757
  msgstr "Nicht angemeldet"
758
 
759
+ #: ../wp-cerber.php:3152
760
  #, fuzzy
761
  msgid "By user"
762
  msgstr "Von Nutzer"
763
 
764
+ #: ../wp-cerber.php:3153
765
  #, fuzzy
766
  msgid "From IP address"
767
  msgstr "Von IP-Adresse"
768
 
769
+ #: ../wp-cerber.php:3156
770
  #, fuzzy
771
  msgid "From country"
772
  msgstr "Vom Land"
773
 
774
+ #: ../wp-cerber.php:3160
775
  msgid "The WP Cerber security plugin is now active"
776
  msgstr "Das WP Cerber Sicherheits-Plugin ist nun aktiv"
777
 
778
+ #: ../wp-cerber.php:3852
779
  #, fuzzy
780
  msgid "Your IP address is added to the"
781
  msgstr "Ihre IP-Adresse wurde hinzugefügt zu"
782
 
783
+ #: ../wp-cerber.php:3864
784
  msgid "Import settings"
785
  msgstr "Import-Einstellungen"
786
 
843
  msgid "Enable reCAPTCHA for WordPress login form"
844
  msgstr "Aktiviere reCAPTCHA für das WordPress Anmeldeformular"
845
 
846
+ #: ../settings.php:353
847
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
848
  msgstr "Bevor Sie reCAPTCHA nutzen können, müssen Sie einen Site key und einen Secret key von der Google Website beziehen."
849
 
850
+ #: ../cerber-lab.php:709 ../settings.php:354
851
  msgid "Know more"
852
  msgstr "Mehr erfahren"
853
 
854
+ #: ../dashboard.php:989 ../settings.php:373
855
  msgid "WP Cerber Security"
856
  msgstr "WP Cerber Sicherheit"
857
 
858
+ #: ../settings.php:393
859
  msgid "Users"
860
  msgstr "Benutzer"
861
 
862
+ #: ../common.php:688
863
  msgid "User created"
864
  msgstr "Benutzer erstellt"
865
 
866
+ #: ../dashboard.php:1430 ../common.php:689
867
  msgid "User registered"
868
  msgstr "Benutzer registriert"
869
 
870
+ #: ../common.php:716
871
  msgid "reCAPTCHA verification failed"
872
  msgstr "reCAPTCHA-Bestätigung gescheitert"
873
 
874
+ #: ../common.php:717
875
  msgid "reCAPTCHA settings are incorrect"
876
  msgstr "reCAPTCHA-Einstellungen sind falsch"
877
 
878
+ #: ../common.php:720
879
  msgid "Attempt to access prohibited URL"
880
  msgstr "Zugriffsversuch auf verbotene URL"
881
 
882
+ #: ../common.php:722 ../common.php:768
883
  msgid "Attempt to log in with prohibited username"
884
  msgstr "Anmeldeversuch mit verbotenem Benutzernamen"
885
 
915
  msgid "Enable reCAPTCHA for WooCommerce login form"
916
  msgstr "Aktiviere reCAPTCHA für das WooCommerce Anmeldeformular"
917
 
918
+ #: ../common.php:718
919
  msgid "Request to the Google reCAPTCHA service failed"
920
  msgstr "Anfrage an den Google reCAPTCHA Dienst gescheitert"
921
 
922
+ #: ../dashboard.php:1422 ../dashboard.php:1452
923
  msgid "View all"
924
  msgstr "Zeige alle"
925
 
926
+ #: ../dashboard.php:1453
927
  msgid "Recently locked out IP addresses"
928
  msgstr "Kürzlich ausgesperrte IP-Adressen"
929
 
930
  #. "OK, vernichte sie alle" is a nicer translation for "OK, kill them all" ... too harsh or does it fit?
931
+ #: ../cerber-lab.php:707
932
  #, fuzzy
933
  msgid "OK, nail them all"
934
  msgstr "OK, vernichte sie alle"
935
 
936
+ #: ../cerber-lab.php:708
937
  msgid "NO, maybe later"
938
  msgstr "NEIN, vielleicht später"
939
 
940
  #. Dashboard is in German more common in this context as the actual translation "Amaturenbrett" which is only used for non-digital things like in cars!
941
+ #: ../dashboard.php:991 ../dashboard.php:1226 ../dashboard.php:1775 ../settings.
942
+ #: php:378
943
  #, fuzzy
944
  msgid "Dashboard"
945
  msgstr "Dashboard"
946
 
947
+ #: ../cerber-lab.php:705
948
  msgid "Want to make WP Cerber even more powerful?"
949
  msgstr "Wollen Sie WP Cerber noch stärker machen?"
950
 
951
+ #: ../cerber-lab.php:706
952
  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."
953
  msgstr "Erlaube WP Cerber ausgesperrte bösartige IP-Adressen an das Cerber Lab zu senden. Dies hilft dem Plugin-Team neue Algorithmen für WP Cerber zu entwickeln, die WordPress gegen täglich auftretende neue Bedrohungen und Botnets verteidigen. Sie können das Senden jederzeit in den Plugin-Einstellungen deaktivieren."
954
 
955
+ #: ../dashboard.php:491
956
  msgid "IP address"
957
  msgstr "IP-Adresse"
958
 
959
+ #: ../dashboard.php:491
960
  msgid "User login"
961
  msgstr "Benutzer-Anmeldung"
962
 
963
+ #: ../dashboard.php:491
964
  msgid "User ID"
965
  msgstr "Benutzer-ID"
966
 
967
+ #: ../dashboard.php:676
968
  msgid "Export"
969
  msgstr "Export"
970
 
971
+ #: ../dashboard.php:695
972
  msgid "Search for IP or username"
973
  msgstr "Suche nach IP oder Nutzernamen"
974
 
975
+ #: ../dashboard.php:695
976
  msgid "Filter"
977
  msgstr "Filter"
978
 
979
+ #: ../dashboard.php:991
980
  msgid "Cerber Dashboard"
981
  msgstr "Cerber Dashboard"
982
 
983
+ #: ../dashboard.php:1001
984
  msgid "Cerber tools"
985
  msgstr "Cerber Werkzeuge"
986
 
987
+ #: ../dashboard.php:1685
988
  msgid "Subscribe"
989
  msgstr "Abonnieren"
990
 
991
+ #: ../dashboard.php:1686 ../cerber-tools.php:266
992
  msgid "Unsubscribe"
993
  msgstr "Abmelden"
994
 
995
+ #: ../dashboard.php:1714
996
  #, fuzzy
997
  msgid "You've subscribed"
998
  msgstr "Erfolgreich abonniert"
999
 
1000
+ #: ../dashboard.php:1717
1001
  #, fuzzy
1002
  msgid "You've unsubscribed"
1003
  msgstr "Erfolgreich abgemeldet"
1004
 
1005
+ #: ../wp-cerber.php:3173 ../wp-cerber.php:3174
1006
  msgid "A new activity has been recorded"
1007
  msgstr "Eine neue Aktivität wurde aufgezeichnet"
1008
 
1009
+ #: ../wp-cerber.php:3637
1010
  msgid "User"
1011
  msgstr "Benutzer"
1012
 
1013
+ #: ../wp-cerber.php:3645
1014
  msgid "Search string"
1015
  msgstr "Such-String"
1016
 
1017
+ #: ../wp-cerber.php:3666
1018
  msgid "To unsubscribe click here"
1019
  msgstr "Zum Abmelden hier klicken"
1020
 
1030
  msgid "if empty, the default format %s will be used"
1031
  msgstr "wenn leer, dann wird das Standard Format %s verwendet"
1032
 
1033
+ #: ../settings.php:211
1034
  msgid "Push notifications"
1035
  msgstr "Push-Benachrichtigungen"
1036
 
1038
  msgid "Email notifications"
1039
  msgstr "Email-Benachrichtigungen"
1040
 
1041
+ #: ../settings.php:201 ../settings.php:233 ../settings.php:290
1042
  msgid "Use comma to specify multiple values"
1043
  msgstr "Mit Komma mehrere Werte trennen"
1044
 
1054
  msgid "Not available"
1055
  msgstr "Nicht verfügbar"
1056
 
1057
+ #: ../common.php:714
1058
  msgid "Password reset requested"
1059
  msgstr "Passwort Zurücksetzung angefordert"
1060
 
1061
+ #: ../common.php:769
1062
  msgid "Limit on failed reCAPTCHA verifications is reached"
1063
  msgstr "Grenze an fehlgeschlagenen reCAPTCHA ist erreicht"
1064
 
1065
+ #: ../common.php:827
1066
  msgid "%s ago"
1067
  msgstr "vor %s"
1068
 
1102
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1103
  msgstr "IP Adresse für %s Minuten nach %s fehlgeschlagenen Versuchen innerhalb von %s Minuten sperren"
1104
 
1105
+ #: ../settings.php:347
1106
  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."
1107
  msgstr "Im Citadel Modus kann sich niemand einloggen, außer IPs auf der White IP Zugangsliste. Laufende Sitzungen werden nicht beeinflusst."
1108
 
1109
+ #: ../dashboard.php:491 ../dashboard.php:656
1110
  msgid "Event"
1111
  msgstr "Ereignis"
1112
 
1122
  msgid "Lockouts occurred"
1123
  msgstr "Sperre aufgetreten"
1124
 
1125
+ #: ../dashboard.php:1431
1126
  msgid "All suspicious activity"
1127
  msgstr "Alle verdächtigen Aktivitäten"
1128
 
1129
+ #: ../wp-cerber.php:977 ../wp-cerber.php:983 ../wp-cerber.php:999 ../wp-cerber.
1130
+ #: php:1006
1131
  msgid "You are not allowed to register."
1132
  msgstr "Registrierung nicht erlaubt."
1133
 
1134
+ #: ../common.php:699
1135
  msgid "Spam comment denied"
1136
  msgstr "Spam Kommentar verweigert"
1137
 
1138
+ #: ../common.php:724
1139
  msgid "Attempt to log in denied"
1140
  msgstr "Loginversuch verweigert"
1141
 
1142
+ #: ../common.php:725
1143
  msgid "Attempt to register denied"
1144
  msgstr "Registrierungsversuch verweigert"
1145
 
1147
  msgid "Malicious activities mitigated"
1148
  msgstr "Schadhafte Aktivitäten gemildert"
1149
 
1150
+ #: ../dashboard.php:1000
1151
  msgid "Cerber antispam settings"
1152
  msgstr "Cerber Antispam-Einstellungen"
1153
 
1154
+ #: ../dashboard.php:1000 ../dashboard.php:1229 ../wp-cerber.php:3861 ../settings.
1155
  #: php:185
1156
  msgid "Antispam"
1157
  msgstr "Spam-Schutz"
1188
  msgid "Antispam and bot detection settings"
1189
  msgstr "Antispam- und Bot-Erkennungseinstellungen"
1190
 
1191
+ #: ../wp-cerber.php:1242
1192
  msgid "Sorry, human verification failed."
1193
  msgstr "Entschuldigung, der Menschlichkeitsnachweis ist fehlgeschlagen.\n"
1194
  ""
1195
 
1196
+ #: ../common.php:770
1197
  msgid "Bot activity is detected"
1198
  msgstr "Bot-Aktivität wurde erkannt"
1199
 
1213
  msgid "Move spam comments to trash after"
1214
  msgstr "Verschieben Sie die Spam-Kommentare anschließend in den Papierkorb"
1215
 
1216
+ #: ../common.php:700
1217
  msgid "Spam form submission denied"
1218
  msgstr "Spam in Formular geblockt"
1219
 
1237
  msgid "Use less restrictive policies (allow AJAX)"
1238
  msgstr "Weniger restriktive Richtlinien verwenden (AJAX zulassen)"
1239
 
1240
+ #: ../dashboard.php:2840 ../settings.php:156
1241
  msgid "Logged in users"
1242
  msgstr "Angemeldete Benutzer"
1243
 
1250
  msgid "WP Cerber Security & Antispam"
1251
  msgstr "WP Cerber Security & Antispam"
1252
 
1253
+ #: ../dashboard.php:95 ../dashboard.php:654
1254
  msgid "Country"
1255
  msgstr "Land"
1256
 
1257
+ #: ../dashboard.php:686
1258
  msgid "All events"
1259
  msgstr "Alle Ereignisse"
1260
 
1261
+ #: ../dashboard.php:997
1262
  msgid "Cerber Security Rules"
1263
  msgstr "Cerber Sicherheitsregeln"
1264
 
1265
+ #: ../dashboard.php:997 ../dashboard.php:2154
1266
  msgid "Security Rules"
1267
  msgstr "Sicherheitsregeln"
1268
 
1269
+ #: ../dashboard.php:1074
1270
  msgid "Failed login attempts"
1271
  msgstr "Fehlgeschlagene Anmeldeversuche"
1272
 
1273
+ #: ../dashboard.php:956 ../dashboard.php:1075
1274
  msgid "Registered"
1275
  msgstr "Registriert"
1276
 
1277
+ #: ../dashboard.php:1142
1278
  msgid "You"
1279
  msgstr "Du"
1280
 
1283
  msgstr "Spam Formular-Übermittlungen verweigert\n"
1284
  ""
1285
 
1286
+ #: ../dashboard.php:1488 ../wp-cerber.php:3163 ../wp-cerber.php:3854
1287
  msgid "Getting Started Guide"
1288
  msgstr "Leitfaden für den Einstieg"
1289
 
1290
+ #: ../dashboard.php:2159
1291
  msgid "Countries"
1292
  msgstr "Länder"
1293
 
1294
+ #: ../dashboard.php:2222
1295
  msgid "Permitted for one country"
1296
  msgid_plural "Permitted for %d countries"
1297
  msgstr[0] "Erlaubt für ein Land"
1298
  msgstr[1] "Erlaubt für %d Länder"
1299
 
1300
+ #: ../dashboard.php:2233
1301
  msgid "No rule"
1302
  msgstr "Keine Regel"
1303
 
1304
+ #: ../dashboard.php:2445
1305
  msgid "Security rules have been updated"
1306
  msgstr "Sicherheitsregeln wurden aktualisiert"
1307
 
1310
  msgid "https://wpcerber.com"
1311
  msgstr "https://wpcerber.com"
1312
 
1313
+ #: ../common.php:701
1314
  msgid "Form submission denied"
1315
  msgstr "Formular-Übermittlung verweigert"
1316
 
1317
+ #: ../common.php:702
1318
  msgid "Comment denied"
1319
  msgstr "Kommentar verweigert"
1320
 
1321
+ #: ../common.php:728
1322
  msgid "Request to REST API denied"
1323
  msgstr "Anfrage an REST API verweigert"
1324
 
1325
+ #: ../common.php:729
1326
  msgid "XML-RPC request denied"
1327
  msgstr "XML-RPC-Anfrage verweigert"
1328
 
1329
+ #: ../common.php:733
1330
  msgid "Bot detected"
1331
  msgstr "Bot erkannt"
1332
 
1333
+ #: ../common.php:734
1334
  msgid "Citadel mode is active"
1335
  msgstr "Citadel-Modus ist aktiv"
1336
 
1337
+ #: ../common.php:739
1338
  msgid "Malicious activity detected"
1339
  msgstr "Bösartige Aktivität entdeckt"
1340
 
1341
+ #: ../common.php:740
1342
  msgid "Blocked by country rule"
1343
  msgstr "Gesperrt durch Länderregel"
1344
 
1345
+ #: ../common.php:741
1346
  msgid "Limit reached"
1347
  msgstr "Limit erreicht"
1348
 
1349
+ #: ../common.php:742
1350
  msgid "Multiple suspicious activities"
1351
  msgstr "Mehrere verdächtige Aktivitäten"
1352
 
1353
+ #: ../common.php:771
1354
  msgid "Multiple suspicious activities were detected"
1355
  msgstr "Mehrere verdächtige Aktivitäten erkannt"
1356
 
1386
  msgid "Query whitelist"
1387
  msgstr "IP Whitelist abfragen"
1388
 
1389
+ #: ../settings.php:510 ../settings.php:632
1390
  msgid "%s allowed registrations in %s minutes from one IP"
1391
  msgstr "%s erlaubte Registrierungen innerhalb von %s Minuten von derselben IP"
1392
 
1393
+ #: ../dashboard.php:2289
1394
  msgid "Start typing here to find a country"
1395
  msgstr "Beginnen Sie hier mit der Eingabe, um ein Land zu finden"
1396
 
1397
+ #: ../dashboard.php:2372
1398
  msgid "Click on a country name to add it to the list of selected countries"
1399
  msgstr "Klicken Sie auf einen Ländernamen, um ihn zur Liste der ausgewählten Länder hinzuzufügen"
1400
 
1401
+ #: ../dashboard.php:2396
1402
  msgid "Submit forms"
1403
  msgstr "Formulare absenden"
1404
 
1405
+ #: ../dashboard.php:2397
1406
  msgid "Post comments"
1407
  msgstr "Kommentare veröffentlichen"
1408
 
1409
+ #: ../dashboard.php:2398
1410
  msgid "Log in to the website"
1411
  msgstr "Auf der Website anmelden"
1412
 
1413
+ #: ../dashboard.php:2399
1414
  msgid "Register on the website"
1415
  msgstr "Auf der Website registrieren"
1416
 
1417
+ #: ../dashboard.php:2400
1418
  msgid "Use XML-RPC"
1419
  msgstr "XML-RPC benutzen"
1420
 
1421
+ #: ../dashboard.php:2401
1422
  msgid "Use REST API"
1423
  msgstr "REST API benutzen"
1424
 
1430
  msgid "Mark it as spam"
1431
  msgstr "Als Spam markieren"
1432
 
1433
+ #: ../dashboard.php:1416
1434
  msgid "in the last 24 hours"
1435
  msgstr "in den letzten 24 Stunden"
1436
 
1437
+ #: ../dashboard.php:1776
1438
  msgid "Main settings"
1439
  msgstr "Haupteinstellungen"
1440
 
1442
  msgid "Weekly reports"
1443
  msgstr "Wöchentliche Berichte"
1444
 
1445
+ #: ../settings.php:729
1446
  msgid "Sunday"
1447
  msgstr "Sonntag"
1448
 
1449
+ #: ../settings.php:730
1450
  msgid "Monday"
1451
  msgstr "Montag"
1452
 
1453
+ #: ../settings.php:731
1454
  msgid "Tuesday"
1455
  msgstr "Dienstag"
1456
 
1457
+ #: ../settings.php:732
1458
  msgid "Wednesday"
1459
  msgstr "Mittwoch"
1460
 
1461
+ #: ../settings.php:733
1462
  msgid "Thursday"
1463
  msgstr "Donnerstag"
1464
 
1465
+ #: ../settings.php:734
1466
  msgid "Friday"
1467
  msgstr "Freitag"
1468
 
1469
+ #: ../settings.php:735
1470
  msgid "Saturday"
1471
  msgstr "Samstag"
1472
 
1473
+ #: ../settings.php:788 ../settings.php:789
1474
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1475
  msgstr "Wenn Sie ein Caching-Plugin verwenden, müssen Sie Ihre neue Anmelde-URL zur Liste der Seiten hinzufügen, die nicht gecached werden sollen."
1476
 
1477
  #. translators: preposition of time
1478
+ #: ../settings.php:745
1479
  msgctxt "preposition of time"
1480
  msgid "at"
1481
  msgstr "um"
1482
 
1483
+ #: ../wp-cerber.php:3179
1484
  msgid "Weekly report"
1485
  msgstr "Wöchentlicher Bericht"
1486
 
1487
+ #: ../wp-cerber.php:3182
1488
  msgid "To change reporting settings visit"
1489
  msgstr "Um die Einstellungen für die Berichte zu ändern besuchen Sie"
1490
 
1491
+ #: ../wp-cerber.php:3208
1492
  msgid "Your login page:"
1493
  msgstr "Ihre Anmeldeseite:"
1494
 
1495
+ #: ../wp-cerber.php:3212
1496
  msgid "Your license is valid until"
1497
  msgstr "Ihre Lizenz ist gültig bis"
1498
 
1499
+ #: ../wp-cerber.php:3323
1500
  msgid "Activity details"
1501
  msgstr "Aktivitätsdetails"
1502
 
1503
+ #: ../settings.php:761
1504
  msgid "Click to send now"
1505
  msgstr "Klicken Sie, um jetzt zu senden"
1506
 
1507
+ #: ../wp-cerber.php:639
1508
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1509
  msgstr "> > > Sind Sie ein Übersetzer von WP Cerber? Um eine kostenlose PRO-Lizenz zu erhalten, kontaktieren Sie uns über https://wpcerber.com/contact/"
1510
 
1511
+ #: ../dashboard.php:380
1512
  msgid "Email has been sent to"
1513
  msgstr "E-Mail wurde gesendet an"
1514
 
1515
+ #: ../dashboard.php:383
1516
  msgid "Unable to send email to"
1517
  msgstr "E-Mail kann nicht gesendet werden an"
1518
 
1519
+ #: ../dashboard.php:2225
1520
  msgid "Not permitted for one country"
1521
  msgid_plural "Not permitted for %d countries"
1522
  msgstr[0] "Nicht erlaubt für 1 Land"
1523
  msgstr[1] "Nicht erlaubt für %d Länder"
1524
 
1525
+ #: ../dashboard.php:2376
1526
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1527
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1528
  msgstr ""
1529
 
1530
+ #: ../dashboard.php:2379
1531
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1532
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1533
  msgstr ""
1537
  msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1538
  msgstr "Schützt die Website vor Bruteforce-Angriffen, Bots und Hackern. Schutz gegen Spam durch die Cerber Antispam Engine und reCAPTCHA. Umfassende Kontrolle der Benutzeraktivitäten. Anmeldebeschränkung über IP-Zugangslisten. Limitiert die Anzahl der Anmeldeversuche. Mehr Informationen: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1539
 
1540
+ #: ../wp-cerber.php:3311
1541
  msgid "Weekly Report"
1542
  msgstr "Wöchentlicher Bericht"
1543
 
1561
  msgid "Enable reporting"
1562
  msgstr "Berichte aktivieren"
1563
 
1564
+ #: ../wp-cerber.php:3236
1565
  msgid "Your last sign-in was %s from %s"
1566
  msgstr "Ihre letzte Anmeldung war am %s von %s aus"
1567
 
1568
+ #: ../wp-cerber.php:3337
1569
  msgid "Attempts to log in with non-existent username"
1570
  msgstr "Anmeldeversuche mit nicht existierendem Benutzernamen"
1571
 
1572
+ #: ../dashboard.php:169
1573
  msgid "IP address, IPv4 address range or subnet"
1574
  msgstr "IP-Adresse, IPv4-Adressbereich oder Subnetz"
1575
 
1576
+ #: ../dashboard.php:171
1577
  msgid "Optional comment for this entry"
1578
  msgstr "Optionaler Kommentar zu diesem Eintrag"
1579
 
1580
+ #: ../dashboard.php:212
1581
  msgid "You cannot add your IP address or network"
1582
  msgstr "Sie können Ihre IP-Adresse oder Ihr Netzwerk nicht hinzufügen."
1583
 
1584
+ #: ../cerber-news.php:153
1585
  msgid "Cool!"
1586
  msgstr "Cool!"
1587
 
1589
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1590
  msgstr "Um einen REGEX-Ausdruck zu definieren umschliessen Sie diesen mit zwei Vorwärts-Schrägstrichen"
1591
 
1592
+ #: ../dashboard.php:993
1593
  msgid "Cerber Traffic Inspector"
1594
  msgstr ""
1595
 
1596
+ #: ../dashboard.php:993 ../dashboard.php:1212 ../dashboard.php:2494
1597
  msgid "Traffic Inspector"
1598
  msgstr ""
1599
 
1600
+ #: ../dashboard.php:1228
1601
  msgid "Traffic"
1602
  msgstr ""
1603
 
1604
+ #: ../dashboard.php:2499
1605
  msgid "Live traffic"
1606
  msgstr ""
1607
 
1608
+ #: ../dashboard.php:2811
1609
  msgid "Request"
1610
  msgstr ""
1611
 
1612
+ #: ../dashboard.php:2813
1613
  msgid "Host Info"
1614
  msgstr ""
1615
 
1616
+ #: ../dashboard.php:2814
1617
  msgid "User Agent"
1618
  msgstr ""
1619
 
1620
+ #: ../dashboard.php:2839
 
 
 
 
1621
  msgid "All requests"
1622
  msgstr ""
1623
 
1624
+ #: ../dashboard.php:2841
1625
  msgid "Not logged in visitors"
1626
  msgstr ""
1627
 
1628
+ #: ../dashboard.php:2842
1629
  msgid "Form submissions"
1630
  msgstr ""
1631
 
1632
+ #: ../dashboard.php:2843
1633
  msgid "Page Not Found"
1634
  msgstr ""
1635
 
1636
+ #: ../dashboard.php:2844
1637
  msgid "REST API"
1638
  msgstr ""
1639
 
1640
+ #: ../dashboard.php:2845
1641
  msgid "XML-RPC"
1642
  msgstr ""
1643
 
1644
+ #: ../dashboard.php:2849
1645
  msgid "Longer than"
1646
  msgstr ""
1647
 
1648
+ #: ../dashboard.php:2862
1649
  msgid "Refresh"
1650
  msgstr ""
1651
 
1653
  msgid "Check for requests"
1654
  msgstr ""
1655
 
1656
+ #: ../common.php:987
 
 
 
 
1657
  msgid "Not specified"
1658
  msgstr ""
1659
 
1660
+ #: ../settings.php:262
 
 
 
 
1661
  msgid "Logging mode"
1662
  msgstr ""
1663
 
1664
+ #: ../settings.php:268
1665
  msgid "Logging disabled"
1666
  msgstr ""
1667
 
1668
+ #: ../settings.php:269
1669
  msgid "Smart"
1670
  msgstr ""
1671
 
1672
+ #: ../settings.php:270
1673
  msgid "All traffic"
1674
  msgstr ""
1675
 
1676
+ #: ../settings.php:274
1677
  msgid "Ignore crawlers"
1678
  msgstr ""
1679
 
1680
+ #: ../settings.php:284
1681
  msgid "Mask these form fields"
1682
  msgstr ""
1683
 
1684
+ #: ../settings.php:319
1685
  msgid "milliseconds"
1686
  msgstr ""
1687
 
1693
  msgid "Enable traffic inspection"
1694
  msgstr ""
1695
 
1696
+ #: ../settings.php:261
1697
  msgid "Logging"
1698
  msgstr ""
1699
 
1700
+ #: ../settings.php:279
1701
  msgid "Save request fields"
1702
  msgstr ""
1703
 
1704
+ #: ../settings.php:314
1705
  msgid "Page generation time threshold"
1706
  msgstr ""
1707
 
1708
+ #: ../dashboard.php:2831
1709
+ msgid "No requests have been logged."
1710
+ msgstr ""
1711
+
1712
+ #: ../dashboard.php:1211
1713
+ msgid "enabled"
1714
+ msgstr ""
1715
+
1716
+ #: ../dashboard.php:1215
1717
+ msgid "no connection"
1718
+ msgstr ""
1719
+
1720
+ #: ../dashboard.php:3116
1721
+ msgid "Advanced search"
1722
+ msgstr ""
1723
+
1724
+ #: ../dashboard.php:949
1725
+ msgid "Last seen"
1726
+ msgstr ""
1727
+
1728
+ #: ../common.php:726 ../common.php:772
1729
+ msgid "Probing for vulnerable PHP code"
1730
+ msgstr ""
1731
+
1732
+ #: ../dashboard.php:3097
1733
+ msgid "Any"
1734
+ msgstr ""
1735
+
1736
+ #: ../wp-cerber.php:2963
1737
+ msgid "We're sorry, you are not allowed to proceed"
1738
+ msgstr ""
1739
+
1740
+ #: ../settings.php:252
1741
+ msgid "Request whitelist"
1742
+ msgstr ""
1743
+
1744
+ #: ../settings.php:258
1745
+ msgid "Enter a request URI to exclude the request from inspection. One item per line."
1746
+ msgstr ""
1747
+
1748
+ #: ../settings.php:295
1749
+ msgid "Save request headers"
1750
+ msgstr ""
1751
+
1752
+ #: ../settings.php:301
1753
+ msgid "Save $_SERVER"
1754
+ msgstr ""
1755
+
1756
+ #: ../settings.php:307
1757
+ msgid "Save request cookies"
1758
+ msgstr ""
1759
+
languages/wp-cerber-nl_NL.mo CHANGED
Binary file
languages/wp-cerber-nl_NL.po CHANGED
@@ -72,7 +72,7 @@ msgstr "Wp-login.php uitschakelen"
72
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
73
  msgstr "Directe toegang tot wp-login.php blokkeren en HTTP 404 Not Found Error teruggeven"
74
 
75
- #: ../dashboard.php:1208 ../settings.php:89
76
  msgid "Citadel mode"
77
  msgstr "Citadelmodus"
78
 
@@ -84,7 +84,7 @@ msgstr "Drempelwaarde"
84
  msgid "Duration"
85
  msgstr "Duur"
86
 
87
- #: ../wp-cerber.php:3910 ../settings.php:75 ../settings.php:92 ../settings.php:368
88
  msgid "Notifications"
89
  msgstr "Meldingen"
90
 
@@ -92,42 +92,42 @@ msgstr "Meldingen"
92
  msgid "Send notification to admin email"
93
  msgstr "Melding versturen naar admin e-mailadres"
94
 
95
- #: ../wp-cerber.php:3907 ../settings.php:361 ../cerber-tools.php:88 ../cerber-
96
  #: tools.php:97 ../cerber-tools.php:178
97
  msgid "Access Lists"
98
  msgstr "Toegangslijsten"
99
 
100
- #: ../dashboard.php:1226 ../dashboard.php:1423 ../wp-cerber.php:3671 ../settings.
101
- #: php:94 ../settings.php:352
102
  msgid "Activity"
103
  msgstr "Activiteit"
104
 
105
- #: ../settings.php:356
106
  msgid "Lockouts"
107
  msgstr "Uitsluitingen"
108
 
109
- #: ../settings.php:477 ../settings.php:599
110
  msgid "%s allowed retries in %s minutes"
111
  msgstr "%s toegestane pogingen in %s minuten"
112
 
113
- #: ../settings.php:499 ../settings.php:621
114
  msgid "Enable after %s failed login attempts in last %s minutes"
115
  msgstr "Aanzetten na %s mislukte inlogpogingen binnen %s minuten"
116
 
117
- #: ../dashboard.php:93 ../dashboard.php:652 ../dashboard.php:2784 ../wp-cerber.
118
- #: php:3680
119
  msgid "IP"
120
  msgstr "IP"
121
 
122
- #: ../dashboard.php:491 ../dashboard.php:655 ../dashboard.php:2782
123
  msgid "Date"
124
  msgstr "Datum"
125
 
126
- #: ../dashboard.php:491 ../dashboard.php:657 ../dashboard.php:2787
127
  msgid "Local User"
128
  msgstr "Lokale gebruiker"
129
 
130
- #: ../dashboard.php:491 ../dashboard.php:658 ../wp-cerber.php:3688
131
  msgid "Username used"
132
  msgstr "Toegepaste gebruikersnaam"
133
 
@@ -135,41 +135,41 @@ msgstr "Toegepaste gebruikersnaam"
135
  msgid "Showing last %d records from %d"
136
  msgstr "Laatste %d records van %d"
137
 
138
- #: ../common.php:613
139
  msgid "Logged in"
140
  msgstr "Ingelogd"
141
 
142
- #: ../common.php:614
143
  msgid "Logged out"
144
  msgstr "Uitgelogd"
145
 
146
- #: ../common.php:615
147
  msgid "Login failed"
148
  msgstr "Inloggen mislukt"
149
 
150
- #: ../common.php:618
151
  msgid "IP blocked"
152
  msgstr "IP geblokkeerd"
153
 
154
- #: ../common.php:619
155
  msgid "Subnet blocked"
156
  msgstr "Subnet geblokkeerd"
157
 
158
- #: ../common.php:621
159
  msgid "Citadel activated!"
160
  msgstr "Citadelmodus geactiveerd!"
161
 
162
- #: ../dashboard.php:632 ../dashboard.php:836 ../dashboard.php:2630 ../common.php:
163
- #: 658
164
  #, fuzzy
165
  msgid "Locked out"
166
  msgstr "Buitengesloten"
167
 
168
- #: ../common.php:659
169
  msgid "IP blacklisted"
170
  msgstr "IP uitgesloten"
171
 
172
- #: ../common.php:636
173
  msgid "Password changed"
174
  msgstr "Wachtwoord veranderd"
175
 
@@ -182,14 +182,14 @@ msgid "Lockout for %s was removed"
182
  msgstr "Uitsluiting voor %s is verwijderd"
183
 
184
  #: ../dashboard.php:131 ../dashboard.php:627 ../dashboard.php:830 ../dashboard.
185
- #: php:1206 ../dashboard.php:2625 ../wp-cerber.php:3899 ../settings.php:74 ..
186
- #: /settings.php:322
187
  #, fuzzy
188
  msgid "White IP Access List"
189
  msgstr "Toegelaten IP-adressen"
190
 
191
  #: ../dashboard.php:133 ../dashboard.php:628 ../dashboard.php:833 ../dashboard.
192
- #: php:1207 ../dashboard.php:2626
193
  #, fuzzy
194
  msgid "Black IP Access List"
195
  msgstr "Uitgesloten IP-adressen"
@@ -208,33 +208,33 @@ msgstr "Adres %s toegevoegd aan de Lijst Toegelaten IP-adressen"
208
  msgid "Address %s was added to Black IP Access List"
209
  msgstr "Adres %s toegevoegd aan de Lijst Uitgesloten IP-adressen "
210
 
211
- #: ../wp-cerber.php:3142
212
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
213
  msgstr "Citadelmodus geactiveerd na %d mislukte inlogpogingen binnen %d minuten"
214
 
215
- #: ../dashboard.php:1566
216
  #, fuzzy
217
  msgid "View Activity"
218
  msgstr "Activiteit bekijken"
219
 
220
- #: ../dashboard.php:2482 ../cerber-tools.php:87 ../cerber-tools.php:96
221
  msgid "Settings"
222
  msgstr "Instellingen"
223
 
224
- #: ../dashboard.php:1072
225
  #, fuzzy
226
  msgid "Last login"
227
  msgstr "Laatst ingelogd"
228
 
229
- #: ../dashboard.php:1105 ../dashboard.php:1189
230
  msgid "Never"
231
  msgstr "Nooit"
232
 
233
- #: ../dashboard.php:1467
234
  msgid "Are you sure?"
235
  msgstr "Weet je het zeker?"
236
 
237
- #: ../dashboard.php:1274 ../settings.php:76
238
  msgid "My site is behind a reverse proxy"
239
  msgstr "Mijn website draait achter een reverse proxy"
240
 
@@ -250,39 +250,39 @@ msgstr "IP meteen blokkeren bij inlogpoging op niet-bestaande gebruiker"
250
  msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
251
  msgstr "Uitschakelen omleiding naar de inlogpagina bij ongeautoriseerde verzoeken aan /wp-admin/"
252
 
253
- #: ../settings.php:308
254
  msgid "Make your protection smarter!"
255
  msgstr "Maak je bescherming slimmer!"
256
 
257
- #: ../settings.php:312
258
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
259
  msgstr "Schakel Permalinks in om deze functionaliteit te gebruiken. Stel de Permalinks instelling in op iets anders dan Standaard."
260
 
261
- #: ../settings.php:315
262
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
263
  msgstr "Pas op als je deze opties inschakelt! Vergeet je de aangepaste inlog-URL, dan kun je niet meer inloggen."
264
 
265
- #: ../wp-cerber.php:3906 ../settings.php:358
266
  msgid "Main Settings"
267
  msgstr "Hoofdinstellingen"
268
 
269
- #: ../settings.php:370
270
  msgid "Help"
271
  msgstr "Hulp"
272
 
273
- #: ../settings.php:487 ../settings.php:609
274
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
275
  msgstr "Uitsluitingsduur ophogen naar %s uren na %s uitsluitingen in de laatste %s uren"
276
 
277
- #: ../wp-cerber.php:299
278
  msgid "You are not allowed to log in. Ask your administrator for assistance."
279
  msgstr "Je hebt geen toestemming om in te loggen. Vraag je beheerder om informatie."
280
 
281
- #: ../wp-cerber.php:305
282
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
283
  msgstr "Je hebt de limiet voor inlogpogingen bereikt. Probeer het opnieuw na %d minuten."
284
 
285
- #: ../wp-cerber.php:324
286
  msgid "You have only one attempt remaining."
287
  msgid_plural "You have %d attempts remaining."
288
  msgstr[0] "Slechts één inlogpoging resterend!"
@@ -309,23 +309,23 @@ msgstr "Deze IP's worden nooit geblokkeerd."
309
  msgid "Your IP"
310
  msgstr "Jouw IP"
311
 
312
- #: ../wp-cerber.php:3143
313
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
314
  msgstr "Laatste mislukte inlogpoging was op %s vanaf IP %s op gebruiker %s."
315
 
316
- #: ../wp-cerber.php:3882
317
  msgid "Can't activate WP Cerber due to a database error."
318
  msgstr "Kan WP Cerber niet activeren door een fout in de database"
319
 
320
- #: ../settings.php:494 ../settings.php:616
321
  msgid "Notify admin if the number of active lockouts above"
322
  msgstr "Waarschuw de beheerder als het aantal actieve uitsluitingen stijgt tot boven"
323
 
324
- #: ../settings.php:95 ../settings.php:168 ../settings.php:298
325
  msgid "days"
326
  msgstr "dagen"
327
 
328
- #: ../dashboard.php:1159
329
  msgid "Cerber Quick View"
330
  msgstr "Cerber Quick View"
331
 
@@ -338,7 +338,7 @@ msgid "To view activity, click on the IP"
338
  msgstr "Klik op het IP om activiteiten te bekijken"
339
 
340
  #: ../dashboard.php:158 ../dashboard.php:843 ../dashboard.php:870 ../dashboard.
341
- #: php:961
342
  msgid "Check for activity"
343
  msgstr "Check voor activiteit"
344
 
@@ -346,39 +346,39 @@ msgstr "Check voor activiteit"
346
  msgid "Always block entire subnet Class C of intruders IP"
347
  msgstr "Altijd gehele IP Class C subnet blokkeren van aanvaller"
348
 
349
- #: ../settings.php:92 ../settings.php:496 ../settings.php:618
350
  msgid "Click to send test"
351
  msgstr "Klik om test te verzenden"
352
 
353
- #: ../settings.php:758 ../settings.php:759
354
  msgid "Attention! You have changed the login URL! The new login URL is"
355
  msgstr "Let op! Je hebt de inlog-URL veranderd. De nieuwe inlog-URL is"
356
 
357
- #: ../dashboard.php:1071
358
  msgid "Comments"
359
  msgstr "Reacties"
360
 
361
- #: ../common.php:891
362
  msgid "Update to version %s of WP Cerber"
363
  msgstr "WP Cerber updaten naar versie %s"
364
 
365
- #: ../wp-cerber.php:3144 ../wp-cerber.php:3712
366
  msgid "View activity in dashboard"
367
  msgstr "Activiteiten bekijken in dashboard"
368
 
369
- #: ../wp-cerber.php:3174
370
  msgid "Number of active lockouts"
371
  msgstr "Aantal actieve uitsluitingen"
372
 
373
- #: ../wp-cerber.php:3178
374
  msgid "View lockouts in dashboard"
375
  msgstr "Uitsluitingen bekijken in dashboard"
376
 
377
- #: ../wp-cerber.php:3260
378
  msgid "This message was sent by"
379
  msgstr "Dit bericht is verzonden door"
380
 
381
- #: ../dashboard.php:1000 ../cerber-tools.php:43
382
  msgid "Tools"
383
  msgstr "Gereedschap"
384
 
@@ -446,103 +446,103 @@ msgstr "Hostnaam"
446
  msgid "unknown"
447
  msgstr "onbekend"
448
 
449
- #: ../settings.php:95 ../settings.php:294
450
  #, fuzzy
451
  msgid "Keep records for"
452
  msgstr "Gegevens behouden tot"
453
 
454
- #: ../dashboard.php:1193 ../dashboard.php:1214
455
  msgid "active"
456
  msgstr "actief"
457
 
458
- #: ../dashboard.php:1193
459
  msgid "deactivate"
460
  msgstr "deactiveren"
461
 
462
- #: ../dashboard.php:1195
463
  msgid "not active"
464
  msgstr "niet actief"
465
 
466
- #: ../dashboard.php:1196 ../dashboard.php:1210
467
  msgid "disabled"
468
  msgstr "gedeactiveerd"
469
 
470
- #: ../dashboard.php:1201
471
  msgid "failed attempts"
472
  msgstr "mislukte pogingen"
473
 
474
- #: ../dashboard.php:1201 ../dashboard.php:1202
475
  msgid "in 24 hours"
476
  msgstr "in 24 uur"
477
 
478
- #: ../dashboard.php:1201 ../dashboard.php:1202
479
  msgid "view all"
480
  msgstr "bekijk alles"
481
 
482
- #: ../dashboard.php:1202
483
  msgid "lockouts"
484
  msgstr "uitsluitingen"
485
 
486
- #: ../dashboard.php:1204
487
  msgid "Lockouts at the moment"
488
  msgstr "Uitsluitingen op dit moment"
489
 
490
- #: ../dashboard.php:1205
491
  #, fuzzy
492
  msgid "Last lockout"
493
  msgstr "Recente uitsluiting"
494
 
495
- #: ../dashboard.php:1206 ../dashboard.php:1207 ../dashboard.php:1737
496
  msgid "entry"
497
  msgid_plural "entries"
498
  msgstr[0] "item"
499
  msgstr[1] "items"
500
 
501
- #: ../dashboard.php:1462
502
  #, fuzzy
503
  msgid "Confused about some settings?"
504
  msgstr "Verward over sommige instellingen?"
505
 
506
- #: ../dashboard.php:1463
507
  #, fuzzy
508
  msgid "You can easily load default recommended settings using button below"
509
  msgstr "Met onderstaande knop laad je de aanbevolen instellingen"
510
 
511
- #: ../dashboard.php:1465
512
  #, fuzzy
513
  msgid "Load default settings"
514
  msgstr "Aanbevolen instellingen laden"
515
 
516
- #: ../dashboard.php:1473
517
  msgid "doesn't affect Custom login URL and Access Lists"
518
  msgstr "heeft geen invloed op Aangepaste inlog-URL en Toegangslijsten"
519
 
520
- #: ../common.php:884
521
  msgid "New version is available"
522
  msgstr "Nieuwe versie beschikbaar"
523
 
524
  #. Name of the plugin
525
- #: ../dashboard.php:988 ../dashboard.php:1010
526
  msgid "WP Cerber"
527
  msgstr "WP Cerber"
528
 
529
- #: ../wp-cerber.php:3118
530
  msgid "WP Cerber notify"
531
  msgstr "WP Cerber melding"
532
 
533
- #: ../wp-cerber.php:3140
534
  msgid "Citadel mode is activated"
535
  msgstr "Citadel modus is actief"
536
 
537
- #: ../wp-cerber.php:3214
538
  msgid "New Custom login URL"
539
  msgstr "Nieuwe Aangepaste inlog-URL"
540
 
541
- #: ../wp-cerber.php:3869
542
  msgid "The WP Cerber requires PHP %s or higher. You are running"
543
  msgstr "WP Cerber vereist PHP %s of hoger. Je gebruikt nu"
544
 
545
- #: ../wp-cerber.php:3873
546
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
547
  msgstr "WP Cerber vereist WordPress %s of hoger. Je gebruikt nu"
548
 
@@ -554,11 +554,11 @@ msgstr "Bestand gebruiken"
554
  msgid "Write failed login attempts to the file"
555
  msgstr "Mislukte pogingen opslaan in bestand"
556
 
557
- #: ../dashboard.php:1565
558
  msgid "Deactivate"
559
  msgstr "Deactiveren"
560
 
561
- #: ../dashboard.php:97 ../wp-cerber.php:3176
562
  msgid "Reason"
563
  msgstr "Reden"
564
 
@@ -566,27 +566,27 @@ msgstr "Reden"
566
  msgid "Add IP to the list"
567
  msgstr "IP-adres toevoegen aan lijst"
568
 
569
- #: ../dashboard.php:888
570
  msgid "Add IP to the Black List"
571
  msgstr "IP-adres toevoegen aan Uitsluitingslijst"
572
 
573
- #: ../common.php:689
574
  msgid "Attempt to access"
575
  msgstr "Poging tot toegang"
576
 
577
- #: ../common.php:688
578
  msgid "Limit on login attempts is reached"
579
  msgstr "Limiet voor aantal inlogpogingen is bereikt"
580
 
581
- #: ../common.php:644 ../common.php:690
582
  msgid "Attempt to log in with non-existent username"
583
  msgstr "Inlogpoging met onbekende gebruikersnaam"
584
 
585
- #: ../wp-cerber.php:3175
586
  msgid "Last lockout was added: %s for IP %s"
587
  msgstr "Laatste uitsluiting was toegevoegd: %s voor IP-adres %s"
588
 
589
- #: ../wp-cerber.php:3909 ../settings.php:363
590
  msgid "Hardening"
591
  msgstr "Versterking"
592
 
@@ -638,15 +638,15 @@ msgstr "Blokkeer toegang tot de RSS-, Atom- en RDF-feeds"
638
  msgid "Disable REST API"
639
  msgstr "REST API uitschakelen"
640
 
641
- #: ../settings.php:322
642
  msgid "These settings do not affect hosts from the "
643
  msgstr "Deze instellingen gelden niet voor hosts van de␣"
644
 
645
- #: ../settings.php:839 ../settings.php:851
646
  msgid "<strong>ERROR</strong>: please enter a valid email address."
647
  msgstr "<strong>LET OP</strong>: voer een geldig e-mailadres in."
648
 
649
- #: ../wp-cerber.php:3206 ../wp-cerber.php:3898
650
  msgid "WP Cerber is now active and has started protecting your site"
651
  msgstr "WP Cerber is actief en beschermt nu je website"
652
 
@@ -662,7 +662,7 @@ msgstr "Niemand kan aanmelden of inloggen vanaf deze IP's"
662
  msgid "Incorrect IP address or IP range"
663
  msgstr "IP-adres of -reeks is incorrect"
664
 
665
- #: ../dashboard.php:407 ../dashboard.php:1581
666
  msgid "Settings saved"
667
  msgstr "Instellingen opgeslagen"
668
 
@@ -674,12 +674,12 @@ msgstr "Netwerk:"
674
  msgid "Add network to the Black List"
675
  msgstr "Netwerk toevoegen aan Uitsluitingslijst"
676
 
677
- #: ../dashboard.php:1564
678
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
679
  msgstr "Let op! Citadelmodus is actief; niemand kan inloggen."
680
 
681
- #: ../dashboard.php:313 ../dashboard.php:2555 ../whois.php:221 ../whois.php:252 ..
682
- #: /common.php:687 ../common.php:966
683
  msgid "Unknown"
684
  msgstr "Onbekend"
685
 
@@ -688,79 +688,79 @@ msgstr "Onbekend"
688
  msgid "Gregory"
689
  msgstr "Gregory"
690
 
691
- #: ../wp-cerber.php:607 ../wp-cerber.php:619 ../wp-cerber.php:626 ../wp-cerber.
692
- #: php:828 ../wp-cerber.php:1044 ../wp-cerber.php:1050 ../wp-cerber.php:1055 ..
693
- #: /wp-cerber.php:1060 ../wp-cerber.php:1066 ../wp-cerber.php:1073 ../wp-cerber.
694
- #: php:1173 ../wp-cerber.php:1310 ../common.php:194 ../common.php:251 ../common.
695
- #: php:255 ../settings.php:808
696
  msgid "ERROR:"
697
  msgstr "FOUT:"
698
 
699
- #: ../wp-cerber.php:636
700
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
701
  msgstr "Menselijke verificatie mislukt. Klik het vierkant in onderstaand reCAPTCHA-blok."
702
 
703
- #: ../wp-cerber.php:840
704
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
705
  msgstr "<strong>LET OP</strong>: je geeft een foutief wachtwoord op voor gebruiker %s."
706
 
707
- #: ../wp-cerber.php:1061
708
  msgid "Username is not allowed. Please choose another one."
709
  msgstr "Gebruikersnaam is niet toegestaan, kies een andere."
710
 
711
- #: ../wp-cerber.php:3169
712
  msgid "unspecified"
713
  msgstr "niet gespecificeerd"
714
 
715
- #: ../wp-cerber.php:3172
716
  msgid "Number of lockouts is increasing"
717
  msgstr "Aantal uitsluitingen loopt op"
718
 
719
- #: ../wp-cerber.php:3177
720
  msgid "View activity for this IP"
721
  msgstr "Bekijk activiteit voor dit adres"
722
 
723
- #: ../wp-cerber.php:3181 ../wp-cerber.php:3183
724
  msgid "A new version of WP Cerber is available to install"
725
  msgstr "Nieuwe versie WP Cerber is klaar voor installatie"
726
 
727
- #: ../wp-cerber.php:3182
728
  msgid "Hi!"
729
  msgstr "Hallo!"
730
 
731
- #: ../wp-cerber.php:3185 ../wp-cerber.php:3196
732
  msgid "Website"
733
  msgstr "Website"
734
 
735
- #: ../wp-cerber.php:3188 ../wp-cerber.php:3189
736
  msgid "The WP Cerber security plugin has been deactivated"
737
  msgstr "WP Cerber is gedeactiveerd"
738
 
739
- #: ../wp-cerber.php:3191
740
  msgid "Not logged in"
741
  msgstr "Niet ingelogd"
742
 
743
- #: ../wp-cerber.php:3197
744
  msgid "By user"
745
  msgstr "Door gebruiker"
746
 
747
- #: ../wp-cerber.php:3198
748
  msgid "From IP address"
749
  msgstr "Van IP-adres"
750
 
751
- #: ../wp-cerber.php:3201
752
  msgid "From country"
753
  msgstr "Uit land"
754
 
755
- #: ../wp-cerber.php:3205
756
  msgid "The WP Cerber security plugin is now active"
757
  msgstr "WP Cerber is actief"
758
 
759
- #: ../wp-cerber.php:3899
760
  msgid "Your IP address is added to the"
761
  msgstr "Je IP-adres is toegevoegd aan de "
762
 
763
- #: ../wp-cerber.php:3911
764
  msgid "Import settings"
765
  msgstr "Instellingen importeren"
766
 
@@ -820,44 +820,44 @@ msgstr "Login-formulier"
820
  msgid "Enable reCAPTCHA for WordPress login form"
821
  msgstr "ReCAPTCHA inschakelen voor WordPress inlogpagina"
822
 
823
- #: ../settings.php:325
824
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
825
  msgstr "Haal eerst een Site-sleutel en Geheime Sleutel op van Google om reCAPTCHA te kunnen gebruiken"
826
 
827
- #: ../cerber-lab.php:697 ../settings.php:326
828
  msgid "Know more"
829
  msgstr "Meer weten"
830
 
831
- #: ../dashboard.php:988 ../settings.php:345
832
  msgid "WP Cerber Security"
833
  msgstr "WP Cerber Security"
834
 
835
- #: ../settings.php:365
836
  msgid "Users"
837
  msgstr "Gebruikers"
838
 
839
- #: ../common.php:611
840
  msgid "User created"
841
  msgstr "Gebruiker toegevoegd"
842
 
843
- #: ../dashboard.php:1416 ../common.php:612
844
  msgid "User registered"
845
  msgstr "Gebruiker geregistreerd"
846
 
847
- #: ../common.php:639
848
  msgid "reCAPTCHA verification failed"
849
  msgstr "reCAPTCHA verificatie mislukt"
850
 
851
- #: ../common.php:640
852
  msgid "reCAPTCHA settings are incorrect"
853
  msgstr "foutieve reCAPTCHA-instellingen"
854
 
855
  #. 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" ?
856
- #: ../common.php:643
857
  msgid "Attempt to access prohibited URL"
858
  msgstr "Poging verboden URL te benaderen"
859
 
860
- #: ../common.php:645 ../common.php:691
861
  msgid "Attempt to log in with prohibited username"
862
  msgstr "Inlogpoging met verboden gebruikersnaam"
863
 
@@ -893,36 +893,36 @@ msgstr "ReCAPTCHA inschakelen om nieuw WooCommerce wachtwoord op te vragen"
893
  msgid "Enable reCAPTCHA for WooCommerce login form"
894
  msgstr "ReCAPTCHA inschakelen voor WooCommerce inlogpagina"
895
 
896
- #: ../common.php:641
897
  msgid "Request to the Google reCAPTCHA service failed"
898
  msgstr "Verzoek aan Google ReCAPTCHA-service"
899
 
900
- #: ../dashboard.php:1408 ../dashboard.php:1438
901
  msgid "View all"
902
  msgstr "Zie alle"
903
 
904
- #: ../dashboard.php:1439
905
  msgid "Recently locked out IP addresses"
906
  msgstr "Recent buitengesloten IP-adressen"
907
 
908
- #: ../cerber-lab.php:695
909
  msgid "OK, nail them all"
910
  msgstr "OK, zet ze allemaal vast"
911
 
912
- #: ../cerber-lab.php:696
913
  msgid "NO, maybe later"
914
  msgstr "Nee, misschien later"
915
 
916
- #: ../dashboard.php:990 ../dashboard.php:1225 ../dashboard.php:1757 ../settings.
917
- #: php:350
918
  msgid "Dashboard"
919
  msgstr "Dashboard"
920
 
921
- #: ../cerber-lab.php:693
922
  msgid "Want to make WP Cerber even more powerful?"
923
  msgstr "Wil je WP Cerber nog beter maken?"
924
 
925
- #: ../cerber-lab.php:694
926
  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."
927
  msgstr "Sta WP Cerber toe om kwaadaardige IP-adressen te delen met Cerber Lab. Zo kunnen we algoritmes ontwikkelen om WordPress steeds te beschermen tegen nieuwe bedreigingen en botnets. Je kunt je toestemming elk moment intrekken."
928
 
@@ -950,43 +950,43 @@ msgstr "Zoek IP of gebruikersnaam"
950
  msgid "Filter"
951
  msgstr "Filter"
952
 
953
- #: ../dashboard.php:990
954
  msgid "Cerber Dashboard"
955
  msgstr "Cerber Dashboard"
956
 
957
- #: ../dashboard.php:1000
958
  msgid "Cerber tools"
959
  msgstr "Cerber tools"
960
 
961
- #: ../dashboard.php:1667
962
  msgid "Subscribe"
963
  msgstr "Inschrijven"
964
 
965
- #: ../dashboard.php:1668 ../cerber-tools.php:266
966
  msgid "Unsubscribe"
967
  msgstr "Uitschrijven"
968
 
969
- #: ../dashboard.php:1696
970
  msgid "You've subscribed"
971
  msgstr "Je bent ingeschreven"
972
 
973
- #: ../dashboard.php:1699
974
  msgid "You've unsubscribed"
975
  msgstr "Je bent uitgeschreven"
976
 
977
- #: ../wp-cerber.php:3218 ../wp-cerber.php:3219
978
  msgid "A new activity has been recorded"
979
  msgstr "Er is nieuwe activiteit waargenomen"
980
 
981
- #: ../wp-cerber.php:3684
982
  msgid "User"
983
  msgstr "Gebruiker"
984
 
985
- #: ../wp-cerber.php:3692
986
  msgid "Search string"
987
  msgstr "Zoekfrase"
988
 
989
- #: ../wp-cerber.php:3713
990
  msgid "To unsubscribe click here"
991
  msgstr "Klik om uit te schrijven"
992
 
@@ -1010,7 +1010,7 @@ msgstr "Push meldingen"
1010
  msgid "Email notifications"
1011
  msgstr "E-mail meldingen"
1012
 
1013
- #: ../settings.php:201 ../settings.php:233 ../settings.php:282
1014
  msgid "Use comma to specify multiple values"
1015
  msgstr "Scheid meer waarden met komma's"
1016
 
@@ -1026,15 +1026,15 @@ msgstr "Geen apparaten gevonden"
1026
  msgid "Not available"
1027
  msgstr "Niet beschikbaar"
1028
 
1029
- #: ../common.php:637
1030
  msgid "Password reset requested"
1031
  msgstr "Wachtwoordvernieuwing aangevraagd"
1032
 
1033
- #: ../common.php:692
1034
  msgid "Limit on failed reCAPTCHA verifications is reached"
1035
  msgstr "Grens bereikt van foutieve reCAPTCHA's"
1036
 
1037
- #: ../common.php:750
1038
  msgid "%s ago"
1039
  msgstr "%s geleden"
1040
 
@@ -1074,7 +1074,7 @@ msgstr "Beperk aantal pogingen"
1074
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1075
  msgstr "Sluit IP-adressen uit voor %s minuten na %s mislukte pogingen in %s minuten"
1076
 
1077
- #: ../settings.php:319
1078
  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."
1079
  msgstr "In de Citadelmodus kunnen alleen adressen van de Lijst Toegelaten IP-adressen inloggen. Heeft geen effect op reeds ingelogde gebruikers."
1080
 
@@ -1094,24 +1094,24 @@ msgstr "Kwaadaardige IP-adressen gevonden"
1094
  msgid "Lockouts occurred"
1095
  msgstr "Uitsluitingen"
1096
 
1097
- #: ../dashboard.php:1417
1098
  msgid "All suspicious activity"
1099
  msgstr "Alle verdachte activiteit"
1100
 
1101
- #: ../wp-cerber.php:1045 ../wp-cerber.php:1051 ../wp-cerber.php:1067 ../wp-cerber.
1102
- #: php:1074
1103
  msgid "You are not allowed to register."
1104
  msgstr "Je mag niet aanmelden."
1105
 
1106
- #: ../common.php:622
1107
  msgid "Spam comment denied"
1108
  msgstr "Spamreactie afgewezen."
1109
 
1110
- #: ../common.php:647
1111
  msgid "Attempt to log in denied"
1112
  msgstr "Inlogpoging afgewezen"
1113
 
1114
- #: ../common.php:648
1115
  msgid "Attempt to register denied"
1116
  msgstr "Aanmeldingspoging afgewezen"
1117
 
@@ -1119,11 +1119,11 @@ msgstr "Aanmeldingspoging afgewezen"
1119
  msgid "Malicious activities mitigated"
1120
  msgstr "Verdachte activiteiten afgevangen"
1121
 
1122
- #: ../dashboard.php:999
1123
  msgid "Cerber antispam settings"
1124
  msgstr "Cerber Antispam-instellingen"
1125
 
1126
- #: ../dashboard.php:999 ../dashboard.php:1228 ../wp-cerber.php:3908 ../settings.
1127
  #: php:185
1128
  msgid "Antispam"
1129
  msgstr "Antispam"
@@ -1160,11 +1160,11 @@ msgstr "Licentie"
1160
  msgid "Antispam and bot detection settings"
1161
  msgstr "Antispam- en botdetectie-instellingen"
1162
 
1163
- #: ../wp-cerber.php:1310
1164
  msgid "Sorry, human verification failed."
1165
  msgstr "Sorry, de verificatie faalt."
1166
 
1167
- #: ../common.php:693
1168
  msgid "Bot activity is detected"
1169
  msgstr "Bot-activiteit getedecteerd"
1170
 
@@ -1184,7 +1184,7 @@ msgstr "Spamreacties weggooien"
1184
  msgid "Move spam comments to trash after"
1185
  msgstr "Verwijder spamreacties na"
1186
 
1187
- #: ../common.php:623
1188
  msgid "Spam form submission denied"
1189
  msgstr "Geweigerd wegens spam"
1190
 
@@ -1208,7 +1208,7 @@ msgstr "Veilige modus"
1208
  msgid "Use less restrictive policies (allow AJAX)"
1209
  msgstr "Minder restricties (sta AJAX toe)"
1210
 
1211
- #: ../dashboard.php:2812 ../settings.php:156
1212
  msgid "Logged in users"
1213
  msgstr "Ingelogde gebruikers"
1214
 
@@ -1229,23 +1229,23 @@ msgstr "Land"
1229
  msgid "All events"
1230
  msgstr "Alle gebeurtenissen"
1231
 
1232
- #: ../dashboard.php:996
1233
  msgid "Cerber Security Rules"
1234
  msgstr "Cerber Beveiligingsregels"
1235
 
1236
- #: ../dashboard.php:996 ../dashboard.php:2136
1237
  msgid "Security Rules"
1238
  msgstr "Beveiligingsregels"
1239
 
1240
- #: ../dashboard.php:1073
1241
  msgid "Failed login attempts"
1242
  msgstr "Gefaalde loginpogingen"
1243
 
1244
- #: ../dashboard.php:955 ../dashboard.php:1074
1245
  msgid "Registered"
1246
  msgstr "Geregistreerd"
1247
 
1248
- #: ../dashboard.php:1141
1249
  msgid "You"
1250
  msgstr "Jij"
1251
 
@@ -1253,25 +1253,25 @@ msgstr "Jij"
1253
  msgid "Spam form submissions denied"
1254
  msgstr "Spam formulierafgifte afgewezen "
1255
 
1256
- #: ../dashboard.php:1474 ../wp-cerber.php:3208 ../wp-cerber.php:3901
1257
  msgid "Getting Started Guide"
1258
  msgstr "Startgids"
1259
 
1260
- #: ../dashboard.php:2141
1261
  msgid "Countries"
1262
  msgstr "Landen"
1263
 
1264
- #: ../dashboard.php:2204
1265
  msgid "Permitted for one country"
1266
  msgid_plural "Permitted for %d countries"
1267
  msgstr[0] "Toegestaan voor één land"
1268
  msgstr[1] "Toegestaan voor %d landen"
1269
 
1270
- #: ../dashboard.php:2215
1271
  msgid "No rule"
1272
  msgstr "Geen regel"
1273
 
1274
- #: ../dashboard.php:2427
1275
  msgid "Security rules have been updated"
1276
  msgstr "Beveiligingsregels zijn vernieuwd"
1277
 
@@ -1280,47 +1280,47 @@ msgstr "Beveiligingsregels zijn vernieuwd"
1280
  msgid "https://wpcerber.com"
1281
  msgstr "https://wpcerber.com"
1282
 
1283
- #: ../common.php:624
1284
  msgid "Form submission denied"
1285
  msgstr "Formulierafgifte afgewezen"
1286
 
1287
- #: ../common.php:625
1288
  msgid "Comment denied"
1289
  msgstr "Commentaar afgewezen"
1290
 
1291
- #: ../common.php:651
1292
  msgid "Request to REST API denied"
1293
  msgstr "Verzoek aan REST API afgewezen"
1294
 
1295
- #: ../common.php:652
1296
  msgid "XML-RPC request denied"
1297
  msgstr "XML-RPC-verzoek afgewezen"
1298
 
1299
- #: ../common.php:656
1300
  msgid "Bot detected"
1301
  msgstr "Bot gedetecteerd"
1302
 
1303
- #: ../common.php:657
1304
  msgid "Citadel mode is active"
1305
  msgstr "Citadelmodus actief"
1306
 
1307
- #: ../common.php:662
1308
  msgid "Malicious activity detected"
1309
  msgstr "Verdachte activiteit gedetecteerd "
1310
 
1311
- #: ../common.php:663
1312
  msgid "Blocked by country rule"
1313
  msgstr "Geblokkeerd door landenregel"
1314
 
1315
- #: ../common.php:664
1316
  msgid "Limit reached"
1317
  msgstr "Limiet bereikt"
1318
 
1319
- #: ../common.php:665
1320
  msgid "Multiple suspicious activities"
1321
  msgstr "Meerdere verdachte activiteiten"
1322
 
1323
- #: ../common.php:694
1324
  msgid "Multiple suspicious activities were detected"
1325
  msgstr "Meerdere verdachte activiteiten gedetecteerd"
1326
 
@@ -1356,39 +1356,39 @@ msgstr "per registratiedatum"
1356
  msgid "Query whitelist"
1357
  msgstr "Toegestane queries"
1358
 
1359
- #: ../settings.php:482 ../settings.php:604
1360
  msgid "%s allowed registrations in %s minutes from one IP"
1361
  msgstr "%s toegestane registraties in %s minuten van één IP"
1362
 
1363
- #: ../dashboard.php:2271
1364
  msgid "Start typing here to find a country"
1365
  msgstr "Begin te typen om een land te vinden"
1366
 
1367
- #: ../dashboard.php:2354
1368
  msgid "Click on a country name to add it to the list of selected countries"
1369
  msgstr "Klik op een landnaam om toe te voegen aan de lijst gekozen landen"
1370
 
1371
- #: ../dashboard.php:2378
1372
  msgid "Submit forms"
1373
  msgstr "Formulieren versturen"
1374
 
1375
- #: ../dashboard.php:2379
1376
  msgid "Post comments"
1377
  msgstr "Commentaar plaatsen"
1378
 
1379
- #: ../dashboard.php:2380
1380
  msgid "Log in to the website"
1381
  msgstr "Inloggen bij de website"
1382
 
1383
- #: ../dashboard.php:2381
1384
  msgid "Register on the website"
1385
  msgstr "Registreren bij de website"
1386
 
1387
- #: ../dashboard.php:2382
1388
  msgid "Use XML-RPC"
1389
  msgstr "Benut XML-RPC"
1390
 
1391
- #: ../dashboard.php:2383
1392
  msgid "Use REST API"
1393
  msgstr "Benut REST API"
1394
 
@@ -1400,11 +1400,11 @@ msgstr "Volledig negeren"
1400
  msgid "Mark it as spam"
1401
  msgstr "Markeren als spam"
1402
 
1403
- #: ../dashboard.php:1402
1404
  msgid "in the last 24 hours"
1405
  msgstr "in de afgelopen 24 uur"
1406
 
1407
- #: ../dashboard.php:1758
1408
  msgid "Main settings"
1409
  msgstr "Hoofdinstellingen"
1410
 
@@ -1412,69 +1412,69 @@ msgstr "Hoofdinstellingen"
1412
  msgid "Weekly reports"
1413
  msgstr "Weekrapporten"
1414
 
1415
- #: ../settings.php:701
1416
  msgid "Sunday"
1417
  msgstr "zondag"
1418
 
1419
- #: ../settings.php:702
1420
  msgid "Monday"
1421
  msgstr "maandag"
1422
 
1423
- #: ../settings.php:703
1424
  msgid "Tuesday"
1425
  msgstr "dinsdag"
1426
 
1427
- #: ../settings.php:704
1428
  msgid "Wednesday"
1429
  msgstr "woensdag"
1430
 
1431
- #: ../settings.php:705
1432
  msgid "Thursday"
1433
  msgstr "donderdag"
1434
 
1435
- #: ../settings.php:706
1436
  msgid "Friday"
1437
  msgstr "vrijdag"
1438
 
1439
- #: ../settings.php:707
1440
  msgid "Saturday"
1441
  msgstr "zaterdag"
1442
 
1443
- #: ../settings.php:760 ../settings.php:761
1444
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1445
  msgstr "Gebruik je een caching plugin, dan moet je je nieuwe login URL toevoegen aan de niet te cachen pagina's."
1446
 
1447
  #. translators: preposition of time
1448
- #: ../settings.php:717
1449
  msgctxt "preposition of time"
1450
  msgid "at"
1451
  msgstr "op"
1452
 
1453
- #: ../wp-cerber.php:3224
1454
  msgid "Weekly report"
1455
  msgstr "Weekrapport"
1456
 
1457
- #: ../wp-cerber.php:3227
1458
  msgid "To change reporting settings visit"
1459
  msgstr "Om je rapportageinstellingen aan te passen, ga naar"
1460
 
1461
- #: ../wp-cerber.php:3253
1462
  msgid "Your login page:"
1463
  msgstr "Je login-pagina:"
1464
 
1465
- #: ../wp-cerber.php:3257
1466
  msgid "Your license is valid until"
1467
  msgstr "Je licentie geldt tot"
1468
 
1469
- #: ../wp-cerber.php:3370
1470
  msgid "Activity details"
1471
  msgstr "Details van activiteiten"
1472
 
1473
- #: ../settings.php:733
1474
  msgid "Click to send now"
1475
  msgstr "Klik om nu te versturen"
1476
 
1477
- #: ../wp-cerber.php:707
1478
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1479
  msgstr ">>> Vertaler van WP Cerber? Om een gratis Pro-licentie te krijgen, geef je contactinformatie op bij: https://wpcerber.com/contact/"
1480
 
@@ -1486,18 +1486,18 @@ msgstr "E-mail is verzonden naar"
1486
  msgid "Unable to send email to"
1487
  msgstr "Kan geen e-mail verzenden naar"
1488
 
1489
- #: ../dashboard.php:2207
1490
  msgid "Not permitted for one country"
1491
  msgid_plural "Not permitted for %d countries"
1492
  msgstr[0] "Niet toegestaan voor één land"
1493
  msgstr[1] "Niet toegestaan voor %d landen"
1494
 
1495
- #: ../dashboard.php:2358
1496
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1497
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1498
  msgstr "Gekozen landen mogen %s, overige landen niet"
1499
 
1500
- #: ../dashboard.php:2361
1501
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1502
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1503
  msgstr "Gekozen landen mogen niet %s, overige landen wel"
@@ -1507,7 +1507,7 @@ msgstr "Gekozen landen mogen niet %s, overige landen wel"
1507
  msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1508
  msgstr "Beschermt site tegen brute force-aanvallen, bots en hackers. Spambescherming met Cerber's antispamprogramma en reCAPTCHA. Uitgebreid beheer van gebruikersactiviteit. Beperk login op IP-adres. Limiteer login-pogingen. Meer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1509
 
1510
- #: ../wp-cerber.php:3358
1511
  msgid "Weekly Report"
1512
  msgstr "Weekrapport"
1513
 
@@ -1532,11 +1532,11 @@ msgid "Enable reporting"
1532
  msgstr "Rapporteren aanzetten"
1533
 
1534
  #. How to interpret this line? Do you mean 'was DATE/TIME from IP ADDRESS' ?
1535
- #: ../wp-cerber.php:3280
1536
  msgid "Your last sign-in was %s from %s"
1537
  msgstr "Je laatste inlog was op %s vanaf %s"
1538
 
1539
- #: ../wp-cerber.php:3384
1540
  msgid "Attempts to log in with non-existent username"
1541
  msgstr "Pogingen om in te loggen met een onbekende gebruikersnaam"
1542
 
@@ -1552,7 +1552,7 @@ msgstr "Opmerking hierbij"
1552
  msgid "You cannot add your IP address or network"
1553
  msgstr "Je kunt je eigen IP of netwerk niet toevoegen"
1554
 
1555
- #: ../cerber-news.php:141
1556
  msgid "Cool!"
1557
  msgstr "Mooi!"
1558
 
@@ -1560,64 +1560,64 @@ msgstr "Mooi!"
1560
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1561
  msgstr "Sluit een patroon op in twee voorwaartse slashes om er een REGEX patroon van te maken."
1562
 
1563
- #: ../dashboard.php:992
1564
  msgid "Cerber Traffic Inspector"
1565
  msgstr "Cerber Verkeersinspectie"
1566
 
1567
- #: ../dashboard.php:992 ../dashboard.php:1211 ../dashboard.php:2476
1568
  msgid "Traffic Inspector"
1569
  msgstr "Verkeersinspectie"
1570
 
1571
- #: ../dashboard.php:1227
1572
  msgid "Traffic"
1573
  msgstr "Verkeer"
1574
 
1575
- #: ../dashboard.php:2481
1576
  msgid "Live traffic"
1577
  msgstr "Live verkeer"
1578
 
1579
- #: ../dashboard.php:2783
1580
  msgid "Request"
1581
  msgstr "Verzoek"
1582
 
1583
- #: ../dashboard.php:2785
1584
  msgid "Host Info"
1585
  msgstr "Host Info"
1586
 
1587
  #. Do you mean a program for browsing the web like Chrome? Or a ftp user agent or so?
1588
- #: ../dashboard.php:2786
1589
  msgid "User Agent"
1590
  msgstr "Webbrowser"
1591
 
1592
- #: ../dashboard.php:2811
1593
  msgid "All requests"
1594
  msgstr "Alle verzoeken"
1595
 
1596
- #: ../dashboard.php:2813
1597
  msgid "Not logged in visitors"
1598
  msgstr "Niet-ingelogde bezoekers"
1599
 
1600
- #: ../dashboard.php:2814
1601
  msgid "Form submissions"
1602
  msgstr "Formulierverzendingen"
1603
 
1604
- #: ../dashboard.php:2815
1605
  msgid "Page Not Found"
1606
- msgstr "Pagina Niet Gevonden"
1607
 
1608
- #: ../dashboard.php:2816
1609
  msgid "REST API"
1610
  msgstr "REST API"
1611
 
1612
- #: ../dashboard.php:2817
1613
  msgid "XML-RPC"
1614
  msgstr "XML-RPC"
1615
 
1616
- #: ../dashboard.php:2821
1617
  msgid "Longer than"
1618
  msgstr "Langer dan"
1619
 
1620
- #: ../dashboard.php:2834
1621
  msgid "Refresh"
1622
  msgstr "Ververs"
1623
 
@@ -1625,35 +1625,35 @@ msgstr "Ververs"
1625
  msgid "Check for requests"
1626
  msgstr "Controleer op verzoeken"
1627
 
1628
- #: ../common.php:910
1629
  msgid "Not specified"
1630
  msgstr "Niet gespecificeerd"
1631
 
1632
- #: ../settings.php:254
1633
  msgid "Logging mode"
1634
  msgstr "Rapportagestand"
1635
 
1636
- #: ../settings.php:260
1637
  msgid "Logging disabled"
1638
  msgstr "Rapportage uit"
1639
 
1640
- #: ../settings.php:261
1641
  msgid "Smart"
1642
  msgstr "Slim"
1643
 
1644
- #: ../settings.php:262
1645
  msgid "All traffic"
1646
  msgstr "Alle verkeer"
1647
 
1648
- #: ../settings.php:266
1649
  msgid "Ignore crawlers"
1650
  msgstr "Negeer crawlers"
1651
 
1652
- #: ../settings.php:276
1653
  msgid "Mask these form fields"
1654
  msgstr "Verberg deze formuliervelden"
1655
 
1656
- #: ../settings.php:291
1657
  msgid "milliseconds"
1658
  msgstr "milliseconden"
1659
 
@@ -1665,40 +1665,68 @@ msgstr "Inspectie"
1665
  msgid "Enable traffic inspection"
1666
  msgstr "Verkeersinspectie aanzetten"
1667
 
1668
- #: ../settings.php:253
1669
  msgid "Logging"
1670
  msgstr "Rapporteren"
1671
 
1672
- #: ../settings.php:271
1673
  msgid "Save request fields"
1674
  msgstr "Bewaar verzoekvelden"
1675
 
1676
- #: ../settings.php:286
1677
  msgid "Page generation time threshold"
1678
  msgstr "Drempeltijd paginaopbouw"
1679
 
1680
- #: ../dashboard.php:2803
1681
  msgid "No requests have been logged."
1682
  msgstr "Er zijn geen verzoeken geregistreerd."
1683
 
1684
- #: ../dashboard.php:1210
1685
  msgid "enabled"
1686
  msgstr "aan"
1687
 
1688
- #: ../dashboard.php:1214
1689
  msgid "no connection"
1690
  msgstr "geen verbinding"
1691
 
1692
- #: ../dashboard.php:3050
1693
  msgid "Advanced search"
1694
  msgstr "Geavanceerd zoeken"
1695
 
1696
- #: ../dashboard.php:948
1697
  msgid "Last seen"
1698
  msgstr "Laatst gezien"
1699
 
1700
  #. A fix for "Probing for vulnerable PHP script".
1701
- #: ../common.php:649 ../common.php:695
1702
  msgid "Probing for vulnerable PHP code"
1703
  msgstr "Op zoek naar kwetsbare PHP-code"
1704
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
73
  msgstr "Directe toegang tot wp-login.php blokkeren en HTTP 404 Not Found Error teruggeven"
74
 
75
+ #: ../dashboard.php:1209 ../settings.php:89
76
  msgid "Citadel mode"
77
  msgstr "Citadelmodus"
78
 
84
  msgid "Duration"
85
  msgstr "Duur"
86
 
87
+ #: ../wp-cerber.php:3863 ../settings.php:75 ../settings.php:92 ../settings.php:396
88
  msgid "Notifications"
89
  msgstr "Meldingen"
90
 
92
  msgid "Send notification to admin email"
93
  msgstr "Melding versturen naar admin e-mailadres"
94
 
95
+ #: ../wp-cerber.php:3860 ../settings.php:389 ../cerber-tools.php:88 ../cerber-
96
  #: tools.php:97 ../cerber-tools.php:178
97
  msgid "Access Lists"
98
  msgstr "Toegangslijsten"
99
 
100
+ #: ../dashboard.php:1227 ../dashboard.php:1437 ../wp-cerber.php:3624 ../settings.
101
+ #: php:94 ../settings.php:380
102
  msgid "Activity"
103
  msgstr "Activiteit"
104
 
105
+ #: ../settings.php:384
106
  msgid "Lockouts"
107
  msgstr "Uitsluitingen"
108
 
109
+ #: ../settings.php:505 ../settings.php:627
110
  msgid "%s allowed retries in %s minutes"
111
  msgstr "%s toegestane pogingen in %s minuten"
112
 
113
+ #: ../settings.php:527 ../settings.php:649
114
  msgid "Enable after %s failed login attempts in last %s minutes"
115
  msgstr "Aanzetten na %s mislukte inlogpogingen binnen %s minuten"
116
 
117
+ #: ../dashboard.php:93 ../dashboard.php:652 ../dashboard.php:2812 ../wp-cerber.
118
+ #: php:3633
119
  msgid "IP"
120
  msgstr "IP"
121
 
122
+ #: ../dashboard.php:491 ../dashboard.php:655 ../dashboard.php:2810
123
  msgid "Date"
124
  msgstr "Datum"
125
 
126
+ #: ../dashboard.php:491 ../dashboard.php:657 ../dashboard.php:2815
127
  msgid "Local User"
128
  msgstr "Lokale gebruiker"
129
 
130
+ #: ../dashboard.php:491 ../dashboard.php:658 ../wp-cerber.php:3641
131
  msgid "Username used"
132
  msgstr "Toegepaste gebruikersnaam"
133
 
135
  msgid "Showing last %d records from %d"
136
  msgstr "Laatste %d records van %d"
137
 
138
+ #: ../common.php:690
139
  msgid "Logged in"
140
  msgstr "Ingelogd"
141
 
142
+ #: ../common.php:691
143
  msgid "Logged out"
144
  msgstr "Uitgelogd"
145
 
146
+ #: ../common.php:692
147
  msgid "Login failed"
148
  msgstr "Inloggen mislukt"
149
 
150
+ #: ../common.php:695
151
  msgid "IP blocked"
152
  msgstr "IP geblokkeerd"
153
 
154
+ #: ../common.php:696
155
  msgid "Subnet blocked"
156
  msgstr "Subnet geblokkeerd"
157
 
158
+ #: ../common.php:698
159
  msgid "Citadel activated!"
160
  msgstr "Citadelmodus geactiveerd!"
161
 
162
+ #: ../dashboard.php:632 ../dashboard.php:836 ../dashboard.php:2648 ../common.php:
163
+ #: 735
164
  #, fuzzy
165
  msgid "Locked out"
166
  msgstr "Buitengesloten"
167
 
168
+ #: ../common.php:736
169
  msgid "IP blacklisted"
170
  msgstr "IP uitgesloten"
171
 
172
+ #: ../common.php:713
173
  msgid "Password changed"
174
  msgstr "Wachtwoord veranderd"
175
 
182
  msgstr "Uitsluiting voor %s is verwijderd"
183
 
184
  #: ../dashboard.php:131 ../dashboard.php:627 ../dashboard.php:830 ../dashboard.
185
+ #: php:1207 ../dashboard.php:2643 ../wp-cerber.php:3852 ../settings.php:74 ..
186
+ #: settings.php:350
187
  #, fuzzy
188
  msgid "White IP Access List"
189
  msgstr "Toegelaten IP-adressen"
190
 
191
  #: ../dashboard.php:133 ../dashboard.php:628 ../dashboard.php:833 ../dashboard.
192
+ #: php:1208 ../dashboard.php:2644
193
  #, fuzzy
194
  msgid "Black IP Access List"
195
  msgstr "Uitgesloten IP-adressen"
208
  msgid "Address %s was added to Black IP Access List"
209
  msgstr "Adres %s toegevoegd aan de Lijst Uitgesloten IP-adressen "
210
 
211
+ #: ../wp-cerber.php:3097
212
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
213
  msgstr "Citadelmodus geactiveerd na %d mislukte inlogpogingen binnen %d minuten"
214
 
215
+ #: ../dashboard.php:1584
216
  #, fuzzy
217
  msgid "View Activity"
218
  msgstr "Activiteit bekijken"
219
 
220
+ #: ../dashboard.php:2500 ../cerber-tools.php:87 ../cerber-tools.php:96
221
  msgid "Settings"
222
  msgstr "Instellingen"
223
 
224
+ #: ../dashboard.php:1073
225
  #, fuzzy
226
  msgid "Last login"
227
  msgstr "Laatst ingelogd"
228
 
229
+ #: ../dashboard.php:1106 ../dashboard.php:1190
230
  msgid "Never"
231
  msgstr "Nooit"
232
 
233
+ #: ../dashboard.php:1481
234
  msgid "Are you sure?"
235
  msgstr "Weet je het zeker?"
236
 
237
+ #: ../dashboard.php:1284 ../settings.php:76
238
  msgid "My site is behind a reverse proxy"
239
  msgstr "Mijn website draait achter een reverse proxy"
240
 
250
  msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
251
  msgstr "Uitschakelen omleiding naar de inlogpagina bij ongeautoriseerde verzoeken aan /wp-admin/"
252
 
253
+ #: ../settings.php:336
254
  msgid "Make your protection smarter!"
255
  msgstr "Maak je bescherming slimmer!"
256
 
257
+ #: ../settings.php:340
258
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
259
  msgstr "Schakel Permalinks in om deze functionaliteit te gebruiken. Stel de Permalinks instelling in op iets anders dan Standaard."
260
 
261
+ #: ../settings.php:343
262
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
263
  msgstr "Pas op als je deze opties inschakelt! Vergeet je de aangepaste inlog-URL, dan kun je niet meer inloggen."
264
 
265
+ #: ../wp-cerber.php:3859 ../settings.php:386
266
  msgid "Main Settings"
267
  msgstr "Hoofdinstellingen"
268
 
269
+ #: ../settings.php:398
270
  msgid "Help"
271
  msgstr "Hulp"
272
 
273
+ #: ../settings.php:515 ../settings.php:637
274
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
275
  msgstr "Uitsluitingsduur ophogen naar %s uren na %s uitsluitingen in de laatste %s uren"
276
 
277
+ #: ../wp-cerber.php:237
278
  msgid "You are not allowed to log in. Ask your administrator for assistance."
279
  msgstr "Je hebt geen toestemming om in te loggen. Vraag je beheerder om informatie."
280
 
281
+ #: ../wp-cerber.php:243
282
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
283
  msgstr "Je hebt de limiet voor inlogpogingen bereikt. Probeer het opnieuw na %d minuten."
284
 
285
+ #: ../wp-cerber.php:262
286
  msgid "You have only one attempt remaining."
287
  msgid_plural "You have %d attempts remaining."
288
  msgstr[0] "Slechts één inlogpoging resterend!"
309
  msgid "Your IP"
310
  msgstr "Jouw IP"
311
 
312
+ #: ../wp-cerber.php:3098
313
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
314
  msgstr "Laatste mislukte inlogpoging was op %s vanaf IP %s op gebruiker %s."
315
 
316
+ #: ../wp-cerber.php:3835
317
  msgid "Can't activate WP Cerber due to a database error."
318
  msgstr "Kan WP Cerber niet activeren door een fout in de database"
319
 
320
+ #: ../settings.php:522 ../settings.php:644
321
  msgid "Notify admin if the number of active lockouts above"
322
  msgstr "Waarschuw de beheerder als het aantal actieve uitsluitingen stijgt tot boven"
323
 
324
+ #: ../settings.php:95 ../settings.php:168 ../settings.php:326
325
  msgid "days"
326
  msgstr "dagen"
327
 
328
+ #: ../dashboard.php:1160
329
  msgid "Cerber Quick View"
330
  msgstr "Cerber Quick View"
331
 
338
  msgstr "Klik op het IP om activiteiten te bekijken"
339
 
340
  #: ../dashboard.php:158 ../dashboard.php:843 ../dashboard.php:870 ../dashboard.
341
+ #: php:962
342
  msgid "Check for activity"
343
  msgstr "Check voor activiteit"
344
 
346
  msgid "Always block entire subnet Class C of intruders IP"
347
  msgstr "Altijd gehele IP Class C subnet blokkeren van aanvaller"
348
 
349
+ #: ../settings.php:92 ../settings.php:524 ../settings.php:646
350
  msgid "Click to send test"
351
  msgstr "Klik om test te verzenden"
352
 
353
+ #: ../settings.php:786 ../settings.php:787
354
  msgid "Attention! You have changed the login URL! The new login URL is"
355
  msgstr "Let op! Je hebt de inlog-URL veranderd. De nieuwe inlog-URL is"
356
 
357
+ #: ../dashboard.php:1072
358
  msgid "Comments"
359
  msgstr "Reacties"
360
 
361
+ #: ../common.php:968
362
  msgid "Update to version %s of WP Cerber"
363
  msgstr "WP Cerber updaten naar versie %s"
364
 
365
+ #: ../wp-cerber.php:3099 ../wp-cerber.php:3665
366
  msgid "View activity in dashboard"
367
  msgstr "Activiteiten bekijken in dashboard"
368
 
369
+ #: ../wp-cerber.php:3129
370
  msgid "Number of active lockouts"
371
  msgstr "Aantal actieve uitsluitingen"
372
 
373
+ #: ../wp-cerber.php:3133
374
  msgid "View lockouts in dashboard"
375
  msgstr "Uitsluitingen bekijken in dashboard"
376
 
377
+ #: ../wp-cerber.php:3215
378
  msgid "This message was sent by"
379
  msgstr "Dit bericht is verzonden door"
380
 
381
+ #: ../dashboard.php:1001 ../cerber-tools.php:43
382
  msgid "Tools"
383
  msgstr "Gereedschap"
384
 
446
  msgid "unknown"
447
  msgstr "onbekend"
448
 
449
+ #: ../settings.php:95 ../settings.php:322
450
  #, fuzzy
451
  msgid "Keep records for"
452
  msgstr "Gegevens behouden tot"
453
 
454
+ #: ../dashboard.php:1194 ../dashboard.php:1215
455
  msgid "active"
456
  msgstr "actief"
457
 
458
+ #: ../dashboard.php:1194
459
  msgid "deactivate"
460
  msgstr "deactiveren"
461
 
462
+ #: ../dashboard.php:1196
463
  msgid "not active"
464
  msgstr "niet actief"
465
 
466
+ #: ../dashboard.php:1197 ../dashboard.php:1211
467
  msgid "disabled"
468
  msgstr "gedeactiveerd"
469
 
470
+ #: ../dashboard.php:1202
471
  msgid "failed attempts"
472
  msgstr "mislukte pogingen"
473
 
474
+ #: ../dashboard.php:1202 ../dashboard.php:1203
475
  msgid "in 24 hours"
476
  msgstr "in 24 uur"
477
 
478
+ #: ../dashboard.php:1202 ../dashboard.php:1203
479
  msgid "view all"
480
  msgstr "bekijk alles"
481
 
482
+ #: ../dashboard.php:1203
483
  msgid "lockouts"
484
  msgstr "uitsluitingen"
485
 
486
+ #: ../dashboard.php:1205
487
  msgid "Lockouts at the moment"
488
  msgstr "Uitsluitingen op dit moment"
489
 
490
+ #: ../dashboard.php:1206
491
  #, fuzzy
492
  msgid "Last lockout"
493
  msgstr "Recente uitsluiting"
494
 
495
+ #: ../dashboard.php:1207 ../dashboard.php:1208 ../dashboard.php:1755
496
  msgid "entry"
497
  msgid_plural "entries"
498
  msgstr[0] "item"
499
  msgstr[1] "items"
500
 
501
+ #: ../dashboard.php:1476
502
  #, fuzzy
503
  msgid "Confused about some settings?"
504
  msgstr "Verward over sommige instellingen?"
505
 
506
+ #: ../dashboard.php:1477
507
  #, fuzzy
508
  msgid "You can easily load default recommended settings using button below"
509
  msgstr "Met onderstaande knop laad je de aanbevolen instellingen"
510
 
511
+ #: ../dashboard.php:1479
512
  #, fuzzy
513
  msgid "Load default settings"
514
  msgstr "Aanbevolen instellingen laden"
515
 
516
+ #: ../dashboard.php:1487
517
  msgid "doesn't affect Custom login URL and Access Lists"
518
  msgstr "heeft geen invloed op Aangepaste inlog-URL en Toegangslijsten"
519
 
520
+ #: ../common.php:961
521
  msgid "New version is available"
522
  msgstr "Nieuwe versie beschikbaar"
523
 
524
  #. Name of the plugin
525
+ #: ../dashboard.php:989 ../dashboard.php:1011
526
  msgid "WP Cerber"
527
  msgstr "WP Cerber"
528
 
529
+ #: ../wp-cerber.php:3073
530
  msgid "WP Cerber notify"
531
  msgstr "WP Cerber melding"
532
 
533
+ #: ../wp-cerber.php:3095
534
  msgid "Citadel mode is activated"
535
  msgstr "Citadel modus is actief"
536
 
537
+ #: ../wp-cerber.php:3169
538
  msgid "New Custom login URL"
539
  msgstr "Nieuwe Aangepaste inlog-URL"
540
 
541
+ #: ../wp-cerber.php:3822
542
  msgid "The WP Cerber requires PHP %s or higher. You are running"
543
  msgstr "WP Cerber vereist PHP %s of hoger. Je gebruikt nu"
544
 
545
+ #: ../wp-cerber.php:3826
546
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
547
  msgstr "WP Cerber vereist WordPress %s of hoger. Je gebruikt nu"
548
 
554
  msgid "Write failed login attempts to the file"
555
  msgstr "Mislukte pogingen opslaan in bestand"
556
 
557
+ #: ../dashboard.php:1583
558
  msgid "Deactivate"
559
  msgstr "Deactiveren"
560
 
561
+ #: ../dashboard.php:97 ../wp-cerber.php:3131
562
  msgid "Reason"
563
  msgstr "Reden"
564
 
566
  msgid "Add IP to the list"
567
  msgstr "IP-adres toevoegen aan lijst"
568
 
569
+ #: ../dashboard.php:889
570
  msgid "Add IP to the Black List"
571
  msgstr "IP-adres toevoegen aan Uitsluitingslijst"
572
 
573
+ #: ../common.php:766
574
  msgid "Attempt to access"
575
  msgstr "Poging tot toegang"
576
 
577
+ #: ../common.php:765
578
  msgid "Limit on login attempts is reached"
579
  msgstr "Limiet voor aantal inlogpogingen is bereikt"
580
 
581
+ #: ../common.php:721 ../common.php:767
582
  msgid "Attempt to log in with non-existent username"
583
  msgstr "Inlogpoging met onbekende gebruikersnaam"
584
 
585
+ #: ../wp-cerber.php:3130
586
  msgid "Last lockout was added: %s for IP %s"
587
  msgstr "Laatste uitsluiting was toegevoegd: %s voor IP-adres %s"
588
 
589
+ #: ../wp-cerber.php:3862 ../settings.php:391
590
  msgid "Hardening"
591
  msgstr "Versterking"
592
 
638
  msgid "Disable REST API"
639
  msgstr "REST API uitschakelen"
640
 
641
+ #: ../settings.php:350
642
  msgid "These settings do not affect hosts from the "
643
  msgstr "Deze instellingen gelden niet voor hosts van de␣"
644
 
645
+ #: ../settings.php:867 ../settings.php:879
646
  msgid "<strong>ERROR</strong>: please enter a valid email address."
647
  msgstr "<strong>LET OP</strong>: voer een geldig e-mailadres in."
648
 
649
+ #: ../wp-cerber.php:3161 ../wp-cerber.php:3851
650
  msgid "WP Cerber is now active and has started protecting your site"
651
  msgstr "WP Cerber is actief en beschermt nu je website"
652
 
662
  msgid "Incorrect IP address or IP range"
663
  msgstr "IP-adres of -reeks is incorrect"
664
 
665
+ #: ../dashboard.php:407 ../dashboard.php:1599
666
  msgid "Settings saved"
667
  msgstr "Instellingen opgeslagen"
668
 
674
  msgid "Add network to the Black List"
675
  msgstr "Netwerk toevoegen aan Uitsluitingslijst"
676
 
677
+ #: ../dashboard.php:1582
678
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
679
  msgstr "Let op! Citadelmodus is actief; niemand kan inloggen."
680
 
681
+ #: ../dashboard.php:313 ../dashboard.php:2573 ../whois.php:221 ../whois.php:252 ..
682
+ #: common.php:764 ../common.php:1043
683
  msgid "Unknown"
684
  msgstr "Onbekend"
685
 
688
  msgid "Gregory"
689
  msgstr "Gregory"
690
 
691
+ #: ../wp-cerber.php:545 ../wp-cerber.php:557 ../wp-cerber.php:564 ../wp-cerber.
692
+ #: php:760 ../wp-cerber.php:976 ../wp-cerber.php:982 ../wp-cerber.php:987 ../wp-
693
+ #: cerber.php:992 ../wp-cerber.php:998 ../wp-cerber.php:1005 ../wp-cerber.php:
694
+ #: 1105 ../wp-cerber.php:1242 ../common.php:194 ../common.php:251 ../common.php:
695
+ #: 255 ../settings.php:836
696
  msgid "ERROR:"
697
  msgstr "FOUT:"
698
 
699
+ #: ../wp-cerber.php:574
700
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
701
  msgstr "Menselijke verificatie mislukt. Klik het vierkant in onderstaand reCAPTCHA-blok."
702
 
703
+ #: ../wp-cerber.php:772
704
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
705
  msgstr "<strong>LET OP</strong>: je geeft een foutief wachtwoord op voor gebruiker %s."
706
 
707
+ #: ../wp-cerber.php:993
708
  msgid "Username is not allowed. Please choose another one."
709
  msgstr "Gebruikersnaam is niet toegestaan, kies een andere."
710
 
711
+ #: ../wp-cerber.php:3124
712
  msgid "unspecified"
713
  msgstr "niet gespecificeerd"
714
 
715
+ #: ../wp-cerber.php:3127
716
  msgid "Number of lockouts is increasing"
717
  msgstr "Aantal uitsluitingen loopt op"
718
 
719
+ #: ../wp-cerber.php:3132
720
  msgid "View activity for this IP"
721
  msgstr "Bekijk activiteit voor dit adres"
722
 
723
+ #: ../wp-cerber.php:3136 ../wp-cerber.php:3138
724
  msgid "A new version of WP Cerber is available to install"
725
  msgstr "Nieuwe versie WP Cerber is klaar voor installatie"
726
 
727
+ #: ../wp-cerber.php:3137
728
  msgid "Hi!"
729
  msgstr "Hallo!"
730
 
731
+ #: ../wp-cerber.php:3140 ../wp-cerber.php:3151
732
  msgid "Website"
733
  msgstr "Website"
734
 
735
+ #: ../wp-cerber.php:3143 ../wp-cerber.php:3144
736
  msgid "The WP Cerber security plugin has been deactivated"
737
  msgstr "WP Cerber is gedeactiveerd"
738
 
739
+ #: ../wp-cerber.php:3146
740
  msgid "Not logged in"
741
  msgstr "Niet ingelogd"
742
 
743
+ #: ../wp-cerber.php:3152
744
  msgid "By user"
745
  msgstr "Door gebruiker"
746
 
747
+ #: ../wp-cerber.php:3153
748
  msgid "From IP address"
749
  msgstr "Van IP-adres"
750
 
751
+ #: ../wp-cerber.php:3156
752
  msgid "From country"
753
  msgstr "Uit land"
754
 
755
+ #: ../wp-cerber.php:3160
756
  msgid "The WP Cerber security plugin is now active"
757
  msgstr "WP Cerber is actief"
758
 
759
+ #: ../wp-cerber.php:3852
760
  msgid "Your IP address is added to the"
761
  msgstr "Je IP-adres is toegevoegd aan de "
762
 
763
+ #: ../wp-cerber.php:3864
764
  msgid "Import settings"
765
  msgstr "Instellingen importeren"
766
 
820
  msgid "Enable reCAPTCHA for WordPress login form"
821
  msgstr "ReCAPTCHA inschakelen voor WordPress inlogpagina"
822
 
823
+ #: ../settings.php:353
824
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
825
  msgstr "Haal eerst een Site-sleutel en Geheime Sleutel op van Google om reCAPTCHA te kunnen gebruiken"
826
 
827
+ #: ../cerber-lab.php:709 ../settings.php:354
828
  msgid "Know more"
829
  msgstr "Meer weten"
830
 
831
+ #: ../dashboard.php:989 ../settings.php:373
832
  msgid "WP Cerber Security"
833
  msgstr "WP Cerber Security"
834
 
835
+ #: ../settings.php:393
836
  msgid "Users"
837
  msgstr "Gebruikers"
838
 
839
+ #: ../common.php:688
840
  msgid "User created"
841
  msgstr "Gebruiker toegevoegd"
842
 
843
+ #: ../dashboard.php:1430 ../common.php:689
844
  msgid "User registered"
845
  msgstr "Gebruiker geregistreerd"
846
 
847
+ #: ../common.php:716
848
  msgid "reCAPTCHA verification failed"
849
  msgstr "reCAPTCHA verificatie mislukt"
850
 
851
+ #: ../common.php:717
852
  msgid "reCAPTCHA settings are incorrect"
853
  msgstr "foutieve reCAPTCHA-instellingen"
854
 
855
  #. 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" ?
856
+ #: ../common.php:720
857
  msgid "Attempt to access prohibited URL"
858
  msgstr "Poging verboden URL te benaderen"
859
 
860
+ #: ../common.php:722 ../common.php:768
861
  msgid "Attempt to log in with prohibited username"
862
  msgstr "Inlogpoging met verboden gebruikersnaam"
863
 
893
  msgid "Enable reCAPTCHA for WooCommerce login form"
894
  msgstr "ReCAPTCHA inschakelen voor WooCommerce inlogpagina"
895
 
896
+ #: ../common.php:718
897
  msgid "Request to the Google reCAPTCHA service failed"
898
  msgstr "Verzoek aan Google ReCAPTCHA-service"
899
 
900
+ #: ../dashboard.php:1422 ../dashboard.php:1452
901
  msgid "View all"
902
  msgstr "Zie alle"
903
 
904
+ #: ../dashboard.php:1453
905
  msgid "Recently locked out IP addresses"
906
  msgstr "Recent buitengesloten IP-adressen"
907
 
908
+ #: ../cerber-lab.php:707
909
  msgid "OK, nail them all"
910
  msgstr "OK, zet ze allemaal vast"
911
 
912
+ #: ../cerber-lab.php:708
913
  msgid "NO, maybe later"
914
  msgstr "Nee, misschien later"
915
 
916
+ #: ../dashboard.php:991 ../dashboard.php:1226 ../dashboard.php:1775 ../settings.
917
+ #: php:378
918
  msgid "Dashboard"
919
  msgstr "Dashboard"
920
 
921
+ #: ../cerber-lab.php:705
922
  msgid "Want to make WP Cerber even more powerful?"
923
  msgstr "Wil je WP Cerber nog beter maken?"
924
 
925
+ #: ../cerber-lab.php:706
926
  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."
927
  msgstr "Sta WP Cerber toe om kwaadaardige IP-adressen te delen met Cerber Lab. Zo kunnen we algoritmes ontwikkelen om WordPress steeds te beschermen tegen nieuwe bedreigingen en botnets. Je kunt je toestemming elk moment intrekken."
928
 
950
  msgid "Filter"
951
  msgstr "Filter"
952
 
953
+ #: ../dashboard.php:991
954
  msgid "Cerber Dashboard"
955
  msgstr "Cerber Dashboard"
956
 
957
+ #: ../dashboard.php:1001
958
  msgid "Cerber tools"
959
  msgstr "Cerber tools"
960
 
961
+ #: ../dashboard.php:1685
962
  msgid "Subscribe"
963
  msgstr "Inschrijven"
964
 
965
+ #: ../dashboard.php:1686 ../cerber-tools.php:266
966
  msgid "Unsubscribe"
967
  msgstr "Uitschrijven"
968
 
969
+ #: ../dashboard.php:1714
970
  msgid "You've subscribed"
971
  msgstr "Je bent ingeschreven"
972
 
973
+ #: ../dashboard.php:1717
974
  msgid "You've unsubscribed"
975
  msgstr "Je bent uitgeschreven"
976
 
977
+ #: ../wp-cerber.php:3173 ../wp-cerber.php:3174
978
  msgid "A new activity has been recorded"
979
  msgstr "Er is nieuwe activiteit waargenomen"
980
 
981
+ #: ../wp-cerber.php:3637
982
  msgid "User"
983
  msgstr "Gebruiker"
984
 
985
+ #: ../wp-cerber.php:3645
986
  msgid "Search string"
987
  msgstr "Zoekfrase"
988
 
989
+ #: ../wp-cerber.php:3666
990
  msgid "To unsubscribe click here"
991
  msgstr "Klik om uit te schrijven"
992
 
1010
  msgid "Email notifications"
1011
  msgstr "E-mail meldingen"
1012
 
1013
+ #: ../settings.php:201 ../settings.php:233 ../settings.php:290
1014
  msgid "Use comma to specify multiple values"
1015
  msgstr "Scheid meer waarden met komma's"
1016
 
1026
  msgid "Not available"
1027
  msgstr "Niet beschikbaar"
1028
 
1029
+ #: ../common.php:714
1030
  msgid "Password reset requested"
1031
  msgstr "Wachtwoordvernieuwing aangevraagd"
1032
 
1033
+ #: ../common.php:769
1034
  msgid "Limit on failed reCAPTCHA verifications is reached"
1035
  msgstr "Grens bereikt van foutieve reCAPTCHA's"
1036
 
1037
+ #: ../common.php:827
1038
  msgid "%s ago"
1039
  msgstr "%s geleden"
1040
 
1074
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1075
  msgstr "Sluit IP-adressen uit voor %s minuten na %s mislukte pogingen in %s minuten"
1076
 
1077
+ #: ../settings.php:347
1078
  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."
1079
  msgstr "In de Citadelmodus kunnen alleen adressen van de Lijst Toegelaten IP-adressen inloggen. Heeft geen effect op reeds ingelogde gebruikers."
1080
 
1094
  msgid "Lockouts occurred"
1095
  msgstr "Uitsluitingen"
1096
 
1097
+ #: ../dashboard.php:1431
1098
  msgid "All suspicious activity"
1099
  msgstr "Alle verdachte activiteit"
1100
 
1101
+ #: ../wp-cerber.php:977 ../wp-cerber.php:983 ../wp-cerber.php:999 ../wp-cerber.
1102
+ #: php:1006
1103
  msgid "You are not allowed to register."
1104
  msgstr "Je mag niet aanmelden."
1105
 
1106
+ #: ../common.php:699
1107
  msgid "Spam comment denied"
1108
  msgstr "Spamreactie afgewezen."
1109
 
1110
+ #: ../common.php:724
1111
  msgid "Attempt to log in denied"
1112
  msgstr "Inlogpoging afgewezen"
1113
 
1114
+ #: ../common.php:725
1115
  msgid "Attempt to register denied"
1116
  msgstr "Aanmeldingspoging afgewezen"
1117
 
1119
  msgid "Malicious activities mitigated"
1120
  msgstr "Verdachte activiteiten afgevangen"
1121
 
1122
+ #: ../dashboard.php:1000
1123
  msgid "Cerber antispam settings"
1124
  msgstr "Cerber Antispam-instellingen"
1125
 
1126
+ #: ../dashboard.php:1000 ../dashboard.php:1229 ../wp-cerber.php:3861 ../settings.
1127
  #: php:185
1128
  msgid "Antispam"
1129
  msgstr "Antispam"
1160
  msgid "Antispam and bot detection settings"
1161
  msgstr "Antispam- en botdetectie-instellingen"
1162
 
1163
+ #: ../wp-cerber.php:1242
1164
  msgid "Sorry, human verification failed."
1165
  msgstr "Sorry, de verificatie faalt."
1166
 
1167
+ #: ../common.php:770
1168
  msgid "Bot activity is detected"
1169
  msgstr "Bot-activiteit getedecteerd"
1170
 
1184
  msgid "Move spam comments to trash after"
1185
  msgstr "Verwijder spamreacties na"
1186
 
1187
+ #: ../common.php:700
1188
  msgid "Spam form submission denied"
1189
  msgstr "Geweigerd wegens spam"
1190
 
1208
  msgid "Use less restrictive policies (allow AJAX)"
1209
  msgstr "Minder restricties (sta AJAX toe)"
1210
 
1211
+ #: ../dashboard.php:2840 ../settings.php:156
1212
  msgid "Logged in users"
1213
  msgstr "Ingelogde gebruikers"
1214
 
1229
  msgid "All events"
1230
  msgstr "Alle gebeurtenissen"
1231
 
1232
+ #: ../dashboard.php:997
1233
  msgid "Cerber Security Rules"
1234
  msgstr "Cerber Beveiligingsregels"
1235
 
1236
+ #: ../dashboard.php:997 ../dashboard.php:2154
1237
  msgid "Security Rules"
1238
  msgstr "Beveiligingsregels"
1239
 
1240
+ #: ../dashboard.php:1074
1241
  msgid "Failed login attempts"
1242
  msgstr "Gefaalde loginpogingen"
1243
 
1244
+ #: ../dashboard.php:956 ../dashboard.php:1075
1245
  msgid "Registered"
1246
  msgstr "Geregistreerd"
1247
 
1248
+ #: ../dashboard.php:1142
1249
  msgid "You"
1250
  msgstr "Jij"
1251
 
1253
  msgid "Spam form submissions denied"
1254
  msgstr "Spam formulierafgifte afgewezen "
1255
 
1256
+ #: ../dashboard.php:1488 ../wp-cerber.php:3163 ../wp-cerber.php:3854
1257
  msgid "Getting Started Guide"
1258
  msgstr "Startgids"
1259
 
1260
+ #: ../dashboard.php:2159
1261
  msgid "Countries"
1262
  msgstr "Landen"
1263
 
1264
+ #: ../dashboard.php:2222
1265
  msgid "Permitted for one country"
1266
  msgid_plural "Permitted for %d countries"
1267
  msgstr[0] "Toegestaan voor één land"
1268
  msgstr[1] "Toegestaan voor %d landen"
1269
 
1270
+ #: ../dashboard.php:2233
1271
  msgid "No rule"
1272
  msgstr "Geen regel"
1273
 
1274
+ #: ../dashboard.php:2445
1275
  msgid "Security rules have been updated"
1276
  msgstr "Beveiligingsregels zijn vernieuwd"
1277
 
1280
  msgid "https://wpcerber.com"
1281
  msgstr "https://wpcerber.com"
1282
 
1283
+ #: ../common.php:701
1284
  msgid "Form submission denied"
1285
  msgstr "Formulierafgifte afgewezen"
1286
 
1287
+ #: ../common.php:702
1288
  msgid "Comment denied"
1289
  msgstr "Commentaar afgewezen"
1290
 
1291
+ #: ../common.php:728
1292
  msgid "Request to REST API denied"
1293
  msgstr "Verzoek aan REST API afgewezen"
1294
 
1295
+ #: ../common.php:729
1296
  msgid "XML-RPC request denied"
1297
  msgstr "XML-RPC-verzoek afgewezen"
1298
 
1299
+ #: ../common.php:733
1300
  msgid "Bot detected"
1301
  msgstr "Bot gedetecteerd"
1302
 
1303
+ #: ../common.php:734
1304
  msgid "Citadel mode is active"
1305
  msgstr "Citadelmodus actief"
1306
 
1307
+ #: ../common.php:739
1308
  msgid "Malicious activity detected"
1309
  msgstr "Verdachte activiteit gedetecteerd "
1310
 
1311
+ #: ../common.php:740
1312
  msgid "Blocked by country rule"
1313
  msgstr "Geblokkeerd door landenregel"
1314
 
1315
+ #: ../common.php:741
1316
  msgid "Limit reached"
1317
  msgstr "Limiet bereikt"
1318
 
1319
+ #: ../common.php:742
1320
  msgid "Multiple suspicious activities"
1321
  msgstr "Meerdere verdachte activiteiten"
1322
 
1323
+ #: ../common.php:771
1324
  msgid "Multiple suspicious activities were detected"
1325
  msgstr "Meerdere verdachte activiteiten gedetecteerd"
1326
 
1356
  msgid "Query whitelist"
1357
  msgstr "Toegestane queries"
1358
 
1359
+ #: ../settings.php:510 ../settings.php:632
1360
  msgid "%s allowed registrations in %s minutes from one IP"
1361
  msgstr "%s toegestane registraties in %s minuten van één IP"
1362
 
1363
+ #: ../dashboard.php:2289
1364
  msgid "Start typing here to find a country"
1365
  msgstr "Begin te typen om een land te vinden"
1366
 
1367
+ #: ../dashboard.php:2372
1368
  msgid "Click on a country name to add it to the list of selected countries"
1369
  msgstr "Klik op een landnaam om toe te voegen aan de lijst gekozen landen"
1370
 
1371
+ #: ../dashboard.php:2396
1372
  msgid "Submit forms"
1373
  msgstr "Formulieren versturen"
1374
 
1375
+ #: ../dashboard.php:2397
1376
  msgid "Post comments"
1377
  msgstr "Commentaar plaatsen"
1378
 
1379
+ #: ../dashboard.php:2398
1380
  msgid "Log in to the website"
1381
  msgstr "Inloggen bij de website"
1382
 
1383
+ #: ../dashboard.php:2399
1384
  msgid "Register on the website"
1385
  msgstr "Registreren bij de website"
1386
 
1387
+ #: ../dashboard.php:2400
1388
  msgid "Use XML-RPC"
1389
  msgstr "Benut XML-RPC"
1390
 
1391
+ #: ../dashboard.php:2401
1392
  msgid "Use REST API"
1393
  msgstr "Benut REST API"
1394
 
1400
  msgid "Mark it as spam"
1401
  msgstr "Markeren als spam"
1402
 
1403
+ #: ../dashboard.php:1416
1404
  msgid "in the last 24 hours"
1405
  msgstr "in de afgelopen 24 uur"
1406
 
1407
+ #: ../dashboard.php:1776
1408
  msgid "Main settings"
1409
  msgstr "Hoofdinstellingen"
1410
 
1412
  msgid "Weekly reports"
1413
  msgstr "Weekrapporten"
1414
 
1415
+ #: ../settings.php:729
1416
  msgid "Sunday"
1417
  msgstr "zondag"
1418
 
1419
+ #: ../settings.php:730
1420
  msgid "Monday"
1421
  msgstr "maandag"
1422
 
1423
+ #: ../settings.php:731
1424
  msgid "Tuesday"
1425
  msgstr "dinsdag"
1426
 
1427
+ #: ../settings.php:732
1428
  msgid "Wednesday"
1429
  msgstr "woensdag"
1430
 
1431
+ #: ../settings.php:733
1432
  msgid "Thursday"
1433
  msgstr "donderdag"
1434
 
1435
+ #: ../settings.php:734
1436
  msgid "Friday"
1437
  msgstr "vrijdag"
1438
 
1439
+ #: ../settings.php:735
1440
  msgid "Saturday"
1441
  msgstr "zaterdag"
1442
 
1443
+ #: ../settings.php:788 ../settings.php:789
1444
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1445
  msgstr "Gebruik je een caching plugin, dan moet je je nieuwe login URL toevoegen aan de niet te cachen pagina's."
1446
 
1447
  #. translators: preposition of time
1448
+ #: ../settings.php:745
1449
  msgctxt "preposition of time"
1450
  msgid "at"
1451
  msgstr "op"
1452
 
1453
+ #: ../wp-cerber.php:3179
1454
  msgid "Weekly report"
1455
  msgstr "Weekrapport"
1456
 
1457
+ #: ../wp-cerber.php:3182
1458
  msgid "To change reporting settings visit"
1459
  msgstr "Om je rapportageinstellingen aan te passen, ga naar"
1460
 
1461
+ #: ../wp-cerber.php:3208
1462
  msgid "Your login page:"
1463
  msgstr "Je login-pagina:"
1464
 
1465
+ #: ../wp-cerber.php:3212
1466
  msgid "Your license is valid until"
1467
  msgstr "Je licentie geldt tot"
1468
 
1469
+ #: ../wp-cerber.php:3323
1470
  msgid "Activity details"
1471
  msgstr "Details van activiteiten"
1472
 
1473
+ #: ../settings.php:761
1474
  msgid "Click to send now"
1475
  msgstr "Klik om nu te versturen"
1476
 
1477
+ #: ../wp-cerber.php:639
1478
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1479
  msgstr ">>> Vertaler van WP Cerber? Om een gratis Pro-licentie te krijgen, geef je contactinformatie op bij: https://wpcerber.com/contact/"
1480
 
1486
  msgid "Unable to send email to"
1487
  msgstr "Kan geen e-mail verzenden naar"
1488
 
1489
+ #: ../dashboard.php:2225
1490
  msgid "Not permitted for one country"
1491
  msgid_plural "Not permitted for %d countries"
1492
  msgstr[0] "Niet toegestaan voor één land"
1493
  msgstr[1] "Niet toegestaan voor %d landen"
1494
 
1495
+ #: ../dashboard.php:2376
1496
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1497
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1498
  msgstr "Gekozen landen mogen %s, overige landen niet"
1499
 
1500
+ #: ../dashboard.php:2379
1501
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1502
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1503
  msgstr "Gekozen landen mogen niet %s, overige landen wel"
1507
  msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1508
  msgstr "Beschermt site tegen brute force-aanvallen, bots en hackers. Spambescherming met Cerber's antispamprogramma en reCAPTCHA. Uitgebreid beheer van gebruikersactiviteit. Beperk login op IP-adres. Limiteer login-pogingen. Meer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1509
 
1510
+ #: ../wp-cerber.php:3311
1511
  msgid "Weekly Report"
1512
  msgstr "Weekrapport"
1513
 
1532
  msgstr "Rapporteren aanzetten"
1533
 
1534
  #. How to interpret this line? Do you mean 'was DATE/TIME from IP ADDRESS' ?
1535
+ #: ../wp-cerber.php:3236
1536
  msgid "Your last sign-in was %s from %s"
1537
  msgstr "Je laatste inlog was op %s vanaf %s"
1538
 
1539
+ #: ../wp-cerber.php:3337
1540
  msgid "Attempts to log in with non-existent username"
1541
  msgstr "Pogingen om in te loggen met een onbekende gebruikersnaam"
1542
 
1552
  msgid "You cannot add your IP address or network"
1553
  msgstr "Je kunt je eigen IP of netwerk niet toevoegen"
1554
 
1555
+ #: ../cerber-news.php:153
1556
  msgid "Cool!"
1557
  msgstr "Mooi!"
1558
 
1560
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1561
  msgstr "Sluit een patroon op in twee voorwaartse slashes om er een REGEX patroon van te maken."
1562
 
1563
+ #: ../dashboard.php:993
1564
  msgid "Cerber Traffic Inspector"
1565
  msgstr "Cerber Verkeersinspectie"
1566
 
1567
+ #: ../dashboard.php:993 ../dashboard.php:1212 ../dashboard.php:2494
1568
  msgid "Traffic Inspector"
1569
  msgstr "Verkeersinspectie"
1570
 
1571
+ #: ../dashboard.php:1228
1572
  msgid "Traffic"
1573
  msgstr "Verkeer"
1574
 
1575
+ #: ../dashboard.php:2499
1576
  msgid "Live traffic"
1577
  msgstr "Live verkeer"
1578
 
1579
+ #: ../dashboard.php:2811
1580
  msgid "Request"
1581
  msgstr "Verzoek"
1582
 
1583
+ #: ../dashboard.php:2813
1584
  msgid "Host Info"
1585
  msgstr "Host Info"
1586
 
1587
  #. Do you mean a program for browsing the web like Chrome? Or a ftp user agent or so?
1588
+ #: ../dashboard.php:2814
1589
  msgid "User Agent"
1590
  msgstr "Webbrowser"
1591
 
1592
+ #: ../dashboard.php:2839
1593
  msgid "All requests"
1594
  msgstr "Alle verzoeken"
1595
 
1596
+ #: ../dashboard.php:2841
1597
  msgid "Not logged in visitors"
1598
  msgstr "Niet-ingelogde bezoekers"
1599
 
1600
+ #: ../dashboard.php:2842
1601
  msgid "Form submissions"
1602
  msgstr "Formulierverzendingen"
1603
 
1604
+ #: ../dashboard.php:2843
1605
  msgid "Page Not Found"
1606
+ msgstr "Pagina niet gevonden"
1607
 
1608
+ #: ../dashboard.php:2844
1609
  msgid "REST API"
1610
  msgstr "REST API"
1611
 
1612
+ #: ../dashboard.php:2845
1613
  msgid "XML-RPC"
1614
  msgstr "XML-RPC"
1615
 
1616
+ #: ../dashboard.php:2849
1617
  msgid "Longer than"
1618
  msgstr "Langer dan"
1619
 
1620
+ #: ../dashboard.php:2862
1621
  msgid "Refresh"
1622
  msgstr "Ververs"
1623
 
1625
  msgid "Check for requests"
1626
  msgstr "Controleer op verzoeken"
1627
 
1628
+ #: ../common.php:987
1629
  msgid "Not specified"
1630
  msgstr "Niet gespecificeerd"
1631
 
1632
+ #: ../settings.php:262
1633
  msgid "Logging mode"
1634
  msgstr "Rapportagestand"
1635
 
1636
+ #: ../settings.php:268
1637
  msgid "Logging disabled"
1638
  msgstr "Rapportage uit"
1639
 
1640
+ #: ../settings.php:269
1641
  msgid "Smart"
1642
  msgstr "Slim"
1643
 
1644
+ #: ../settings.php:270
1645
  msgid "All traffic"
1646
  msgstr "Alle verkeer"
1647
 
1648
+ #: ../settings.php:274
1649
  msgid "Ignore crawlers"
1650
  msgstr "Negeer crawlers"
1651
 
1652
+ #: ../settings.php:284
1653
  msgid "Mask these form fields"
1654
  msgstr "Verberg deze formuliervelden"
1655
 
1656
+ #: ../settings.php:319
1657
  msgid "milliseconds"
1658
  msgstr "milliseconden"
1659
 
1665
  msgid "Enable traffic inspection"
1666
  msgstr "Verkeersinspectie aanzetten"
1667
 
1668
+ #: ../settings.php:261
1669
  msgid "Logging"
1670
  msgstr "Rapporteren"
1671
 
1672
+ #: ../settings.php:279
1673
  msgid "Save request fields"
1674
  msgstr "Bewaar verzoekvelden"
1675
 
1676
+ #: ../settings.php:314
1677
  msgid "Page generation time threshold"
1678
  msgstr "Drempeltijd paginaopbouw"
1679
 
1680
+ #: ../dashboard.php:2831
1681
  msgid "No requests have been logged."
1682
  msgstr "Er zijn geen verzoeken geregistreerd."
1683
 
1684
+ #: ../dashboard.php:1211
1685
  msgid "enabled"
1686
  msgstr "aan"
1687
 
1688
+ #: ../dashboard.php:1215
1689
  msgid "no connection"
1690
  msgstr "geen verbinding"
1691
 
1692
+ #: ../dashboard.php:3116
1693
  msgid "Advanced search"
1694
  msgstr "Geavanceerd zoeken"
1695
 
1696
+ #: ../dashboard.php:949
1697
  msgid "Last seen"
1698
  msgstr "Laatst gezien"
1699
 
1700
  #. A fix for "Probing for vulnerable PHP script".
1701
+ #: ../common.php:726 ../common.php:772
1702
  msgid "Probing for vulnerable PHP code"
1703
  msgstr "Op zoek naar kwetsbare PHP-code"
1704
 
1705
+ #: ../dashboard.php:3097
1706
+ msgid "Any"
1707
+ msgstr "Enig"
1708
+
1709
+ #: ../wp-cerber.php:2963
1710
+ msgid "We're sorry, you are not allowed to proceed"
1711
+ msgstr "Excuus, je mag niet doorgaan"
1712
+
1713
+ #: ../settings.php:252
1714
+ msgid "Request whitelist"
1715
+ msgstr "Verzoek om whitelist"
1716
+
1717
+ #: ../settings.php:258
1718
+ msgid "Enter a request URI to exclude the request from inspection. One item per line."
1719
+ msgstr "Voer een 'request URI' in om deze van inspectie uit te sluiten. Eén per regel."
1720
+
1721
+ #: ../settings.php:295
1722
+ msgid "Save request headers"
1723
+ msgstr "Sla 'request headers' op"
1724
+
1725
+ #: ../settings.php:301
1726
+ msgid "Save $_SERVER"
1727
+ msgstr "Sla $_SERVER op"
1728
+
1729
+ #: ../settings.php:307
1730
+ msgid "Save request cookies"
1731
+ msgstr "Sla 'request cookies' op"
1732
+
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: Sat Jan 27 2018 19:05:59 GMT+0300\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
@@ -28,8 +28,8 @@ msgstr ""
28
  msgid "Remove"
29
  msgstr ""
30
 
31
- #: ../dashboard.php:93 ../dashboard.php:652 ../dashboard.php:2812 ../wp-cerber.
32
- #: php:3623
33
  msgid "IP"
34
  msgstr ""
35
 
@@ -45,7 +45,7 @@ msgstr ""
45
  msgid "Expires"
46
  msgstr ""
47
 
48
- #: ../dashboard.php:97 ../wp-cerber.php:3121
49
  msgid "Reason"
50
  msgstr ""
51
 
@@ -71,8 +71,8 @@ msgid "No lockouts at the moment. The sky is clear."
71
  msgstr ""
72
 
73
  #: ../dashboard.php:131 ../dashboard.php:627 ../dashboard.php:830 ../dashboard.
74
- #: php:1207 ../dashboard.php:2643 ../wp-cerber.php:3842 ../settings.php:74 ..
75
- #: /settings.php:350
76
  msgid "White IP Access List"
77
  msgstr ""
78
 
@@ -81,7 +81,7 @@ msgid "These IPs will never be locked out"
81
  msgstr ""
82
 
83
  #: ../dashboard.php:133 ../dashboard.php:628 ../dashboard.php:833 ../dashboard.
84
- #: php:1208 ../dashboard.php:2644
85
  msgid "Black IP Access List"
86
  msgstr ""
87
 
@@ -132,8 +132,8 @@ msgstr ""
132
  msgid "Address %s was added to Black IP Access List"
133
  msgstr ""
134
 
135
- #: ../dashboard.php:313 ../dashboard.php:2573 ../whois.php:221 ../whois.php:252 ..
136
- #: /common.php:742 ../common.php:1021
137
  msgid "Unknown"
138
  msgstr ""
139
 
@@ -154,7 +154,7 @@ msgstr ""
154
  msgid "Lockout for %s was removed"
155
  msgstr ""
156
 
157
- #: ../dashboard.php:407 ../dashboard.php:1599
158
  msgid "Settings saved"
159
  msgstr ""
160
 
@@ -162,7 +162,7 @@ msgstr ""
162
  msgid "IP address"
163
  msgstr ""
164
 
165
- #: ../dashboard.php:491 ../dashboard.php:655 ../dashboard.php:2810
166
  msgid "Date"
167
  msgstr ""
168
 
@@ -170,7 +170,7 @@ msgstr ""
170
  msgid "Event"
171
  msgstr ""
172
 
173
- #: ../dashboard.php:491 ../dashboard.php:657 ../dashboard.php:2815
174
  msgid "Local User"
175
  msgstr ""
176
 
@@ -182,12 +182,12 @@ msgstr ""
182
  msgid "User ID"
183
  msgstr ""
184
 
185
- #: ../dashboard.php:491 ../dashboard.php:658 ../wp-cerber.php:3631
186
  msgid "Username used"
187
  msgstr ""
188
 
189
- #: ../dashboard.php:632 ../dashboard.php:836 ../dashboard.php:2648 ../common.php:
190
- #: 713
191
  msgid "Locked out"
192
  msgstr ""
193
 
@@ -235,7 +235,7 @@ msgstr ""
235
  msgid "Registered"
236
  msgstr ""
237
 
238
- #: ../dashboard.php:989 ../settings.php:373
239
  msgid "WP Cerber Security"
240
  msgstr ""
241
 
@@ -248,8 +248,8 @@ msgstr ""
248
  msgid "Cerber Dashboard"
249
  msgstr ""
250
 
251
- #: ../dashboard.php:991 ../dashboard.php:1226 ../dashboard.php:1775 ../settings.
252
- #: php:378
253
  msgid "Dashboard"
254
  msgstr ""
255
 
@@ -257,7 +257,7 @@ msgstr ""
257
  msgid "Cerber Traffic Inspector"
258
  msgstr ""
259
 
260
- #: ../dashboard.php:993 ../dashboard.php:1212 ../dashboard.php:2494
261
  msgid "Traffic Inspector"
262
  msgstr ""
263
 
@@ -265,7 +265,7 @@ msgstr ""
265
  msgid "Cerber Security Rules"
266
  msgstr ""
267
 
268
- #: ../dashboard.php:997 ../dashboard.php:2154
269
  msgid "Security Rules"
270
  msgstr ""
271
 
@@ -273,8 +273,8 @@ msgstr ""
273
  msgid "Cerber antispam settings"
274
  msgstr ""
275
 
276
- #: ../dashboard.php:1000 ../dashboard.php:1229 ../wp-cerber.php:3851 ../settings.
277
- #: php:185
278
  msgid "Antispam"
279
  msgstr ""
280
 
@@ -350,7 +350,7 @@ msgstr ""
350
  msgid "Last lockout"
351
  msgstr ""
352
 
353
- #: ../dashboard.php:1207 ../dashboard.php:1208 ../dashboard.php:1755
354
  msgid "entry"
355
  msgid_plural "entries"
356
  msgstr[0] ""
@@ -368,8 +368,8 @@ msgstr ""
368
  msgid "no connection"
369
  msgstr ""
370
 
371
- #: ../dashboard.php:1227 ../dashboard.php:1437 ../wp-cerber.php:3614 ../settings.
372
- #: php:94 ../settings.php:380
373
  msgid "Activity"
374
  msgstr ""
375
 
@@ -389,7 +389,7 @@ msgstr ""
389
  msgid "View all"
390
  msgstr ""
391
 
392
- #: ../dashboard.php:1430 ../common.php:667
393
  msgid "User registered"
394
  msgstr ""
395
 
@@ -401,197 +401,197 @@ msgstr ""
401
  msgid "Recently locked out IP addresses"
402
  msgstr ""
403
 
404
- #: ../dashboard.php:1476
405
  msgid "Confused about some settings?"
406
  msgstr ""
407
 
408
- #: ../dashboard.php:1477
409
  msgid "You can easily load default recommended settings using button below"
410
  msgstr ""
411
 
412
- #: ../dashboard.php:1479
413
  msgid "Load default settings"
414
  msgstr ""
415
 
416
- #: ../dashboard.php:1481
417
  msgid "Are you sure?"
418
  msgstr ""
419
 
420
- #: ../dashboard.php:1487
421
  msgid "doesn't affect Custom login URL and Access Lists"
422
  msgstr ""
423
 
424
- #: ../dashboard.php:1488 ../wp-cerber.php:3153 ../wp-cerber.php:3844
425
  msgid "Getting Started Guide"
426
  msgstr ""
427
 
428
- #: ../dashboard.php:1582
429
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
430
  msgstr ""
431
 
432
- #: ../dashboard.php:1583
433
  msgid "Deactivate"
434
  msgstr ""
435
 
436
- #: ../dashboard.php:1584
437
  msgid "View Activity"
438
  msgstr ""
439
 
440
- #: ../dashboard.php:1685
441
  msgid "Subscribe"
442
  msgstr ""
443
 
444
- #: ../dashboard.php:1686 ../cerber-tools.php:266
445
  msgid "Unsubscribe"
446
  msgstr ""
447
 
448
- #: ../dashboard.php:1714
449
  msgid "You've subscribed"
450
  msgstr ""
451
 
452
- #: ../dashboard.php:1717
453
  msgid "You've unsubscribed"
454
  msgstr ""
455
 
456
- #: ../dashboard.php:1776
457
  msgid "Main settings"
458
  msgstr ""
459
 
460
- #: ../dashboard.php:2159
461
  msgid "Countries"
462
  msgstr ""
463
 
464
- #: ../dashboard.php:2222
465
  #, php-format
466
  msgid "Permitted for one country"
467
  msgid_plural "Permitted for %d countries"
468
  msgstr[0] ""
469
  msgstr[1] ""
470
 
471
- #: ../dashboard.php:2225
472
  #, php-format
473
  msgid "Not permitted for one country"
474
  msgid_plural "Not permitted for %d countries"
475
  msgstr[0] ""
476
  msgstr[1] ""
477
 
478
- #: ../dashboard.php:2233
479
  msgid "No rule"
480
  msgstr ""
481
 
482
- #: ../dashboard.php:2289
483
  msgid "Start typing here to find a country"
484
  msgstr ""
485
 
486
- #: ../dashboard.php:2372
487
  msgid "Click on a country name to add it to the list of selected countries"
488
  msgstr ""
489
 
490
- #: ../dashboard.php:2376
491
  #, php-format
492
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
493
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
494
  msgstr ""
495
 
496
- #: ../dashboard.php:2379
497
  #, php-format
498
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
499
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
500
  msgstr ""
501
 
502
- #: ../dashboard.php:2396
503
  msgid "Submit forms"
504
  msgstr ""
505
 
506
- #: ../dashboard.php:2397
507
  msgid "Post comments"
508
  msgstr ""
509
 
510
- #: ../dashboard.php:2398
511
  msgid "Log in to the website"
512
  msgstr ""
513
 
514
- #: ../dashboard.php:2399
515
  msgid "Register on the website"
516
  msgstr ""
517
 
518
- #: ../dashboard.php:2400
519
  msgid "Use XML-RPC"
520
  msgstr ""
521
 
522
- #: ../dashboard.php:2401
523
  msgid "Use REST API"
524
  msgstr ""
525
 
526
- #: ../dashboard.php:2445
527
  msgid "Security rules have been updated"
528
  msgstr ""
529
 
530
- #: ../dashboard.php:2499
531
  msgid "Live traffic"
532
  msgstr ""
533
 
534
- #: ../dashboard.php:2500 ../cerber-tools.php:87 ../cerber-tools.php:96
535
  msgid "Settings"
536
  msgstr ""
537
 
538
- #: ../dashboard.php:2811
539
  msgid "Request"
540
  msgstr ""
541
 
542
- #: ../dashboard.php:2813
543
  msgid "Host Info"
544
  msgstr ""
545
 
546
- #: ../dashboard.php:2814
547
  msgid "User Agent"
548
  msgstr ""
549
 
550
- #: ../dashboard.php:2831
551
  msgid "No requests have been logged."
552
  msgstr ""
553
 
554
- #: ../dashboard.php:2839
555
  msgid "All requests"
556
  msgstr ""
557
 
558
- #: ../dashboard.php:2840 ../settings.php:156
559
  msgid "Logged in users"
560
  msgstr ""
561
 
562
- #: ../dashboard.php:2841
563
  msgid "Not logged in visitors"
564
  msgstr ""
565
 
566
- #: ../dashboard.php:2842
567
  msgid "Form submissions"
568
  msgstr ""
569
 
570
- #: ../dashboard.php:2843
571
  msgid "Page Not Found"
572
  msgstr ""
573
 
574
- #: ../dashboard.php:2844
575
  msgid "REST API"
576
  msgstr ""
577
 
578
- #: ../dashboard.php:2845
579
  msgid "XML-RPC"
580
  msgstr ""
581
 
582
- #: ../dashboard.php:2849
583
  msgid "Longer than"
584
  msgstr ""
585
 
586
- #: ../dashboard.php:2862
587
  msgid "Refresh"
588
  msgstr ""
589
 
590
- #: ../dashboard.php:3097
591
  msgid "Any"
592
  msgstr ""
593
 
594
- #: ../dashboard.php:3116
595
  msgid "Advanced search"
596
  msgstr ""
597
 
@@ -615,246 +615,246 @@ msgstr ""
615
  msgid "Gregory"
616
  msgstr ""
617
 
618
- #: ../wp-cerber.php:237
619
  msgid "You are not allowed to log in. Ask your administrator for assistance."
620
  msgstr ""
621
 
622
- #: ../wp-cerber.php:243
623
  #, php-format
624
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
625
  msgstr ""
626
 
627
- #: ../wp-cerber.php:262
628
  #, php-format
629
  msgid "You have only one attempt remaining."
630
  msgid_plural "You have %d attempts remaining."
631
  msgstr[0] ""
632
  msgstr[1] ""
633
 
634
- #: ../wp-cerber.php:545 ../wp-cerber.php:557 ../wp-cerber.php:564 ../wp-cerber.
635
- #: php:760 ../wp-cerber.php:976 ../wp-cerber.php:982 ../wp-cerber.php:987 ../wp-
636
- #: cerber.php:992 ../wp-cerber.php:998 ../wp-cerber.php:1005 ../wp-cerber.php:
637
- #: 1105 ../wp-cerber.php:1242 ../common.php:194 ../common.php:251 ../common.php:
638
- #: 255 ../settings.php:836
639
  msgid "ERROR:"
640
  msgstr ""
641
 
642
- #: ../wp-cerber.php:574
643
  msgid ""
644
  "Human verification failed. Please click the square box in the reCAPTCHA "
645
  "block below."
646
  msgstr ""
647
 
648
- #: ../wp-cerber.php:639
649
  msgid ""
650
  "> > > Translator of WP Cerber? To get the PRO license for free, drop your "
651
  "contacts here: https://wpcerber.com/contact/"
652
  msgstr ""
653
 
654
- #: ../wp-cerber.php:772
655
  #, php-format
656
  msgid ""
657
  "<strong>ERROR</strong>: The password you entered for the username %s is "
658
  "incorrect."
659
  msgstr ""
660
 
661
- #: ../wp-cerber.php:977 ../wp-cerber.php:983 ../wp-cerber.php:999 ../wp-cerber.
662
- #: php:1006
663
  msgid "You are not allowed to register."
664
  msgstr ""
665
 
666
- #: ../wp-cerber.php:993
667
  msgid "Username is not allowed. Please choose another one."
668
  msgstr ""
669
 
670
- #: ../wp-cerber.php:1242
671
  msgid "Sorry, human verification failed."
672
  msgstr ""
673
 
674
- #: ../wp-cerber.php:2953
675
  msgid "We're sorry, you are not allowed to proceed"
676
  msgstr ""
677
 
678
- #: ../wp-cerber.php:3063
679
  msgid "WP Cerber notify"
680
  msgstr ""
681
 
682
- #: ../wp-cerber.php:3085
683
  msgid "Citadel mode is activated"
684
  msgstr ""
685
 
686
- #: ../wp-cerber.php:3087
687
  #, php-format
688
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
689
  msgstr ""
690
 
691
- #: ../wp-cerber.php:3088
692
  #, php-format
693
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
694
  msgstr ""
695
 
696
- #: ../wp-cerber.php:3089 ../wp-cerber.php:3655
697
  msgid "View activity in dashboard"
698
  msgstr ""
699
 
700
- #: ../wp-cerber.php:3114
701
  msgid "unspecified"
702
  msgstr ""
703
 
704
- #: ../wp-cerber.php:3117
705
  msgid "Number of lockouts is increasing"
706
  msgstr ""
707
 
708
- #: ../wp-cerber.php:3119
709
  msgid "Number of active lockouts"
710
  msgstr ""
711
 
712
- #: ../wp-cerber.php:3120
713
  #, php-format
714
  msgid "Last lockout was added: %s for IP %s"
715
  msgstr ""
716
 
717
- #: ../wp-cerber.php:3122
718
  msgid "View activity for this IP"
719
  msgstr ""
720
 
721
- #: ../wp-cerber.php:3123
722
  msgid "View lockouts in dashboard"
723
  msgstr ""
724
 
725
- #: ../wp-cerber.php:3126 ../wp-cerber.php:3128
726
  msgid "A new version of WP Cerber is available to install"
727
  msgstr ""
728
 
729
- #: ../wp-cerber.php:3127
730
  msgid "Hi!"
731
  msgstr ""
732
 
733
- #: ../wp-cerber.php:3130 ../wp-cerber.php:3141
734
  msgid "Website"
735
  msgstr ""
736
 
737
- #: ../wp-cerber.php:3133 ../wp-cerber.php:3134
738
  msgid "The WP Cerber security plugin has been deactivated"
739
  msgstr ""
740
 
741
- #: ../wp-cerber.php:3136
742
  msgid "Not logged in"
743
  msgstr ""
744
 
745
- #: ../wp-cerber.php:3142
746
  msgid "By user"
747
  msgstr ""
748
 
749
- #: ../wp-cerber.php:3143
750
  msgid "From IP address"
751
  msgstr ""
752
 
753
- #: ../wp-cerber.php:3146
754
  msgid "From country"
755
  msgstr ""
756
 
757
- #: ../wp-cerber.php:3150
758
  msgid "The WP Cerber security plugin is now active"
759
  msgstr ""
760
 
761
- #: ../wp-cerber.php:3151 ../wp-cerber.php:3841
762
  msgid "WP Cerber is now active and has started protecting your site"
763
  msgstr ""
764
 
765
- #: ../wp-cerber.php:3159
766
  msgid "New Custom login URL"
767
  msgstr ""
768
 
769
- #: ../wp-cerber.php:3163 ../wp-cerber.php:3164
770
  msgid "A new activity has been recorded"
771
  msgstr ""
772
 
773
- #: ../wp-cerber.php:3169
774
  msgid "Weekly report"
775
  msgstr ""
776
 
777
- #: ../wp-cerber.php:3172
778
  msgid "To change reporting settings visit"
779
  msgstr ""
780
 
781
- #: ../wp-cerber.php:3198
782
  msgid "Your login page:"
783
  msgstr ""
784
 
785
- #: ../wp-cerber.php:3202
786
  msgid "Your license is valid until"
787
  msgstr ""
788
 
789
- #: ../wp-cerber.php:3205
790
  msgid "This message was sent by"
791
  msgstr ""
792
 
793
- #: ../wp-cerber.php:3226
794
  #, php-format
795
  msgid "Your last sign-in was %s from %s"
796
  msgstr ""
797
 
798
- #: ../wp-cerber.php:3301
799
  msgid "Weekly Report"
800
  msgstr ""
801
 
802
- #: ../wp-cerber.php:3313
803
  msgid "Activity details"
804
  msgstr ""
805
 
806
- #: ../wp-cerber.php:3327
807
  msgid "Attempts to log in with non-existent username"
808
  msgstr ""
809
 
810
- #: ../wp-cerber.php:3627
811
  msgid "User"
812
  msgstr ""
813
 
814
- #: ../wp-cerber.php:3635
815
  msgid "Search string"
816
  msgstr ""
817
 
818
- #: ../wp-cerber.php:3656
819
  msgid "To unsubscribe click here"
820
  msgstr ""
821
 
822
- #: ../wp-cerber.php:3812
823
  #, php-format
824
  msgid "The WP Cerber requires PHP %s or higher. You are running"
825
  msgstr ""
826
 
827
- #: ../wp-cerber.php:3816
828
  #, php-format
829
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
830
  msgstr ""
831
 
832
- #: ../wp-cerber.php:3825
833
  msgid "Can't activate WP Cerber due to a database error."
834
  msgstr ""
835
 
836
- #: ../wp-cerber.php:3842
837
  msgid "Your IP address is added to the"
838
  msgstr ""
839
 
840
- #: ../wp-cerber.php:3849 ../settings.php:386
841
  msgid "Main Settings"
842
  msgstr ""
843
 
844
- #: ../wp-cerber.php:3850 ../settings.php:389 ../cerber-tools.php:88 ../cerber-
845
  #: tools.php:97 ../cerber-tools.php:178
846
  msgid "Access Lists"
847
  msgstr ""
848
 
849
- #: ../wp-cerber.php:3852 ../settings.php:391
850
  msgid "Hardening"
851
  msgstr ""
852
 
853
- #: ../wp-cerber.php:3853 ../settings.php:75 ../settings.php:92 ../settings.php:396
854
  msgid "Notifications"
855
  msgstr ""
856
 
857
- #: ../wp-cerber.php:3854
858
  msgid "Import settings"
859
  msgstr ""
860
 
@@ -882,169 +882,169 @@ msgstr ""
882
  msgid "Lockouts occurred"
883
  msgstr ""
884
 
885
- #: ../common.php:666
886
  msgid "User created"
887
  msgstr ""
888
 
889
- #: ../common.php:668
890
  msgid "Logged in"
891
  msgstr ""
892
 
893
- #: ../common.php:669
894
  msgid "Logged out"
895
  msgstr ""
896
 
897
- #: ../common.php:670
898
  msgid "Login failed"
899
  msgstr ""
900
 
901
- #: ../common.php:673
902
  msgid "IP blocked"
903
  msgstr ""
904
 
905
- #: ../common.php:674
906
  msgid "Subnet blocked"
907
  msgstr ""
908
 
909
- #: ../common.php:676
910
  msgid "Citadel activated!"
911
  msgstr ""
912
 
913
- #: ../common.php:677
914
  msgid "Spam comment denied"
915
  msgstr ""
916
 
917
- #: ../common.php:678
918
  msgid "Spam form submission denied"
919
  msgstr ""
920
 
921
- #: ../common.php:679
922
  msgid "Form submission denied"
923
  msgstr ""
924
 
925
- #: ../common.php:680
926
  msgid "Comment denied"
927
  msgstr ""
928
 
929
- #: ../common.php:691
930
  msgid "Password changed"
931
  msgstr ""
932
 
933
- #: ../common.php:692
934
  msgid "Password reset requested"
935
  msgstr ""
936
 
937
- #: ../common.php:694
938
  msgid "reCAPTCHA verification failed"
939
  msgstr ""
940
 
941
- #: ../common.php:695
942
  msgid "reCAPTCHA settings are incorrect"
943
  msgstr ""
944
 
945
- #: ../common.php:696
946
  msgid "Request to the Google reCAPTCHA service failed"
947
  msgstr ""
948
 
949
- #: ../common.php:698
950
  msgid "Attempt to access prohibited URL"
951
  msgstr ""
952
 
953
- #: ../common.php:699 ../common.php:745
954
  msgid "Attempt to log in with non-existent username"
955
  msgstr ""
956
 
957
- #: ../common.php:700 ../common.php:746
958
  msgid "Attempt to log in with prohibited username"
959
  msgstr ""
960
 
961
- #: ../common.php:702
962
  msgid "Attempt to log in denied"
963
  msgstr ""
964
 
965
- #: ../common.php:703
966
  msgid "Attempt to register denied"
967
  msgstr ""
968
 
969
- #: ../common.php:704 ../common.php:750
970
  msgid "Probing for vulnerable PHP code"
971
  msgstr ""
972
 
973
- #: ../common.php:706
974
  msgid "Request to REST API denied"
975
  msgstr ""
976
 
977
- #: ../common.php:707
978
  msgid "XML-RPC request denied"
979
  msgstr ""
980
 
981
- #: ../common.php:711
982
  msgid "Bot detected"
983
  msgstr ""
984
 
985
- #: ../common.php:712
986
  msgid "Citadel mode is active"
987
  msgstr ""
988
 
989
- #: ../common.php:714
990
  msgid "IP blacklisted"
991
  msgstr ""
992
 
993
- #: ../common.php:717
994
  msgid "Malicious activity detected"
995
  msgstr ""
996
 
997
- #: ../common.php:718
998
  msgid "Blocked by country rule"
999
  msgstr ""
1000
 
1001
- #: ../common.php:719
1002
  msgid "Limit reached"
1003
  msgstr ""
1004
 
1005
- #: ../common.php:720
1006
  msgid "Multiple suspicious activities"
1007
  msgstr ""
1008
 
1009
- #: ../common.php:743
1010
  msgid "Limit on login attempts is reached"
1011
  msgstr ""
1012
 
1013
- #: ../common.php:744
1014
  msgid "Attempt to access"
1015
  msgstr ""
1016
 
1017
- #: ../common.php:747
1018
  msgid "Limit on failed reCAPTCHA verifications is reached"
1019
  msgstr ""
1020
 
1021
- #: ../common.php:748
1022
  msgid "Bot activity is detected"
1023
  msgstr ""
1024
 
1025
- #: ../common.php:749
1026
  msgid "Multiple suspicious activities were detected"
1027
  msgstr ""
1028
 
1029
- #: ../common.php:805
1030
  #, php-format
1031
  msgid "%s ago"
1032
  msgstr ""
1033
 
1034
- #: ../common.php:939
1035
  msgid "New version is available"
1036
  msgstr ""
1037
 
1038
- #: ../common.php:946
1039
  #, php-format
1040
  msgid "Update to version %s of WP Cerber"
1041
  msgstr ""
1042
 
1043
- #: ../common.php:965
1044
  msgid "Not specified"
1045
  msgstr ""
1046
 
1047
- #: ../cerber-news.php:147
1048
  msgid "Cool!"
1049
  msgstr ""
1050
 
@@ -1068,7 +1068,7 @@ msgstr ""
1068
  msgid "NO, maybe later"
1069
  msgstr ""
1070
 
1071
- #: ../cerber-lab.php:709 ../settings.php:354
1072
  msgid "Know more"
1073
  msgstr ""
1074
 
@@ -1182,15 +1182,15 @@ msgstr ""
1182
  msgid "Send notification to admin email"
1183
  msgstr ""
1184
 
1185
- #: ../settings.php:92 ../settings.php:524 ../settings.php:646
1186
  msgid "Click to send test"
1187
  msgstr ""
1188
 
1189
- #: ../settings.php:95 ../settings.php:322
1190
  msgid "Keep records for"
1191
  msgstr ""
1192
 
1193
- #: ../settings.php:95 ../settings.php:168 ../settings.php:326
1194
  msgid "days"
1195
  msgstr ""
1196
 
@@ -1248,471 +1248,479 @@ msgid "Block access to user pages like /?author=n and user data via REST API"
1248
  msgstr ""
1249
 
1250
  #: ../settings.php:111
1251
- msgid "Disable XML-RPC"
1252
  msgstr ""
1253
 
1254
  #: ../settings.php:111
1255
- msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
1256
  msgstr ""
1257
 
1258
  #: ../settings.php:112
1259
- msgid "Disable feeds"
1260
  msgstr ""
1261
 
1262
  #: ../settings.php:112
1263
- msgid "Block access to the RSS, Atom and RDF feeds"
1264
  msgstr ""
1265
 
1266
  #: ../settings.php:113
1267
- msgid "Disable REST API"
1268
  msgstr ""
1269
 
1270
  #: ../settings.php:113
1271
- msgid "Block access to the WordPress REST API except the following"
 
 
 
 
1272
  msgstr ""
1273
 
1274
  #: ../settings.php:114
 
 
 
 
1275
  msgid "Allow REST API for logged in users"
1276
  msgstr ""
1277
 
1278
- #: ../settings.php:121
1279
  msgid ""
1280
  "Specify REST API namespaces to be allowed if REST API is disabled. One "
1281
  "string per line."
1282
  msgstr ""
1283
 
1284
- #: ../settings.php:131
1285
  msgid "User related settings"
1286
  msgstr ""
1287
 
1288
- #: ../settings.php:132
1289
  msgid "Registration limit"
1290
  msgstr ""
1291
 
1292
- #: ../settings.php:133
1293
  msgid "Prohibited usernames"
1294
  msgstr ""
1295
 
1296
- #: ../settings.php:139
1297
  msgid ""
1298
  "Usernames from this list are not allowed to log in or register. Any IP "
1299
  "address, have tried to use any of these usernames, will be immediately "
1300
  "blocked. Use comma to separate logins."
1301
  msgstr ""
1302
 
1303
- #: ../settings.php:139
1304
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1305
  msgstr ""
1306
 
1307
- #: ../settings.php:141
1308
  msgid "User session expire"
1309
  msgstr ""
1310
 
1311
- #: ../settings.php:141
1312
  msgid "in minutes (leave empty to use default WP value)"
1313
  msgstr ""
1314
 
1315
- #: ../settings.php:142
1316
  msgid "Sort users in dashboard"
1317
  msgstr ""
1318
 
1319
- #: ../settings.php:142
1320
  msgid "by date of registration"
1321
  msgstr ""
1322
 
1323
- #: ../settings.php:149
1324
  msgid "Cerber antispam engine"
1325
  msgstr ""
1326
 
1327
- #: ../settings.php:150
1328
  msgid "Comment form"
1329
  msgstr ""
1330
 
1331
- #: ../settings.php:150
1332
  msgid "Protect comment form with bot detection engine"
1333
  msgstr ""
1334
 
1335
- #: ../settings.php:151 ../settings.php:176
1336
  msgid "Registration form"
1337
  msgstr ""
1338
 
1339
- #: ../settings.php:151
1340
  msgid "Protect registration form with bot detection engine"
1341
  msgstr ""
1342
 
1343
- #: ../settings.php:152
1344
  msgid "Other forms"
1345
  msgstr ""
1346
 
1347
- #: ../settings.php:152
1348
  msgid "Protect all forms on the website with bot detection engine"
1349
  msgstr ""
1350
 
1351
- #: ../settings.php:154
1352
  msgid "Adjust antispam engine"
1353
  msgstr ""
1354
 
1355
- #: ../settings.php:155
1356
  msgid "Safe mode"
1357
  msgstr ""
1358
 
1359
- #: ../settings.php:155
1360
  msgid "Use less restrictive policies (allow AJAX)"
1361
  msgstr ""
1362
 
1363
- #: ../settings.php:156
1364
  msgid "Disable bot detection engine for logged in users"
1365
  msgstr ""
1366
 
1367
- #: ../settings.php:157
1368
  msgid "Query whitelist"
1369
  msgstr ""
1370
 
1371
- #: ../settings.php:163
1372
  msgid ""
1373
  "Enter a part of query string or query path to exclude a request from "
1374
  "inspection by the engine. One item per line."
1375
  msgstr ""
1376
 
1377
- #: ../settings.php:166
1378
  msgid "Comment processing"
1379
  msgstr ""
1380
 
1381
- #: ../settings.php:167
1382
  msgid "If a spam comment detected"
1383
  msgstr ""
1384
 
1385
- #: ../settings.php:167
1386
  msgid "Deny it completely"
1387
  msgstr ""
1388
 
1389
- #: ../settings.php:167
1390
  msgid "Mark it as spam"
1391
  msgstr ""
1392
 
1393
- #: ../settings.php:168
1394
  msgid "Trash spam comments"
1395
  msgstr ""
1396
 
1397
- #: ../settings.php:168
1398
  msgid "Move spam comments to trash after"
1399
  msgstr ""
1400
 
1401
- #: ../settings.php:171
1402
  msgid "reCAPTCHA settings"
1403
  msgstr ""
1404
 
1405
- #: ../settings.php:172
1406
  msgid "Site key"
1407
  msgstr ""
1408
 
1409
- #: ../settings.php:173
1410
  msgid "Secret key"
1411
  msgstr ""
1412
 
1413
- #: ../settings.php:174
1414
  msgid "Invisible reCAPTCHA"
1415
  msgstr ""
1416
 
1417
- #: ../settings.php:174
1418
  msgid "Enable invisible reCAPTCHA"
1419
  msgstr ""
1420
 
1421
- #: ../settings.php:174
1422
  msgid ""
1423
  "(do not enable it unless you get and enter the Site and Secret keys for the "
1424
  "invisible version)"
1425
  msgstr ""
1426
 
1427
- #: ../settings.php:176
1428
  msgid "Enable reCAPTCHA for WordPress registration form"
1429
  msgstr ""
1430
 
1431
- #: ../settings.php:177
1432
  msgid "Enable reCAPTCHA for WooCommerce registration form"
1433
  msgstr ""
1434
 
1435
- #: ../settings.php:179
1436
  msgid "Lost password form"
1437
  msgstr ""
1438
 
1439
- #: ../settings.php:179
1440
  msgid "Enable reCAPTCHA for WordPress lost password form"
1441
  msgstr ""
1442
 
1443
- #: ../settings.php:180
1444
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
1445
  msgstr ""
1446
 
1447
- #: ../settings.php:182
1448
  msgid "Login form"
1449
  msgstr ""
1450
 
1451
- #: ../settings.php:182
1452
  msgid "Enable reCAPTCHA for WordPress login form"
1453
  msgstr ""
1454
 
1455
- #: ../settings.php:183
1456
  msgid "Enable reCAPTCHA for WooCommerce login form"
1457
  msgstr ""
1458
 
1459
- #: ../settings.php:185
1460
  msgid "Enable reCAPTCHA for WordPress comment form"
1461
  msgstr ""
1462
 
1463
- #: ../settings.php:186
1464
  msgid "Disable reCAPTCHA for logged in users"
1465
  msgstr ""
1466
 
1467
- #: ../settings.php:188
1468
  msgid "Limit attempts"
1469
  msgstr ""
1470
 
1471
- #: ../settings.php:188
1472
  #, php-format
1473
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1474
  msgstr ""
1475
 
1476
- #: ../settings.php:194
1477
  msgid "Email notifications"
1478
  msgstr ""
1479
 
1480
- #: ../settings.php:197 ../settings.php:228
1481
  msgid "Email Address"
1482
  msgstr ""
1483
 
1484
- #: ../settings.php:201 ../settings.php:233 ../settings.php:290
1485
  msgid "Use comma to specify multiple values"
1486
  msgstr ""
1487
 
1488
- #: ../settings.php:206
1489
  #, php-format
1490
  msgid "if empty, the admin email %s will be used"
1491
  msgstr ""
1492
 
1493
- #: ../settings.php:209
1494
  msgid "Notification limit"
1495
  msgstr ""
1496
 
1497
- #: ../settings.php:209
1498
  msgid "notification letters allowed per hour (0 means unlimited)"
1499
  msgstr ""
1500
 
1501
- #: ../settings.php:211
1502
  msgid "Push notifications"
1503
  msgstr ""
1504
 
1505
- #: ../settings.php:218
1506
  msgid "All connected devices"
1507
  msgstr ""
1508
 
1509
- #: ../settings.php:219
1510
  msgid "No devices found"
1511
  msgstr ""
1512
 
1513
- #: ../settings.php:221
1514
  msgid "Not available"
1515
  msgstr ""
1516
 
1517
- #: ../settings.php:225
1518
  msgid "Weekly reports"
1519
  msgstr ""
1520
 
1521
- #: ../settings.php:226
1522
  msgid "Enable reporting"
1523
  msgstr ""
1524
 
1525
- #: ../settings.php:238
1526
  msgid "if empty, email from notification settings will be used"
1527
  msgstr ""
1528
 
1529
- #: ../settings.php:246
1530
  msgid "Inspection"
1531
  msgstr ""
1532
 
1533
- #: ../settings.php:247
1534
  msgid "Enable traffic inspection"
1535
  msgstr ""
1536
 
1537
- #: ../settings.php:252
1538
  msgid "Request whitelist"
1539
  msgstr ""
1540
 
1541
- #: ../settings.php:258
1542
  msgid ""
1543
  "Enter a request URI to exclude the request from inspection. One item per "
1544
  "line."
1545
  msgstr ""
1546
 
1547
- #: ../settings.php:261
1548
  msgid "Logging"
1549
  msgstr ""
1550
 
1551
- #: ../settings.php:262
1552
  msgid "Logging mode"
1553
  msgstr ""
1554
 
1555
- #: ../settings.php:268
1556
  msgid "Logging disabled"
1557
  msgstr ""
1558
 
1559
- #: ../settings.php:269
1560
  msgid "Smart"
1561
  msgstr ""
1562
 
1563
- #: ../settings.php:270
1564
  msgid "All traffic"
1565
  msgstr ""
1566
 
1567
- #: ../settings.php:274
1568
  msgid "Ignore crawlers"
1569
  msgstr ""
1570
 
1571
- #: ../settings.php:279
1572
  msgid "Save request fields"
1573
  msgstr ""
1574
 
1575
- #: ../settings.php:284
1576
  msgid "Mask these form fields"
1577
  msgstr ""
1578
 
1579
- #: ../settings.php:295
1580
  msgid "Save request headers"
1581
  msgstr ""
1582
 
1583
- #: ../settings.php:301
1584
  msgid "Save $_SERVER"
1585
  msgstr ""
1586
 
1587
- #: ../settings.php:307
1588
  msgid "Save request cookies"
1589
  msgstr ""
1590
 
1591
- #: ../settings.php:314
1592
  msgid "Page generation time threshold"
1593
  msgstr ""
1594
 
1595
- #: ../settings.php:319
1596
  msgid "milliseconds"
1597
  msgstr ""
1598
 
1599
- #: ../settings.php:336
1600
  msgid "Make your protection smarter!"
1601
  msgstr ""
1602
 
1603
- #: ../settings.php:340
1604
  msgid ""
1605
  "Please enable Permalinks to use this feature. Set Permalink Settings to "
1606
  "something other than Default."
1607
  msgstr ""
1608
 
1609
- #: ../settings.php:343
1610
  msgid ""
1611
  "Be careful when enabling this options. If you forget the custom login URL "
1612
  "you will not be able to login."
1613
  msgstr ""
1614
 
1615
- #: ../settings.php:347
1616
  msgid ""
1617
  "In the Citadel mode nobody is able to log in except IPs from the White IP "
1618
  "Access List. Active user sessions will not be affected."
1619
  msgstr ""
1620
 
1621
- #: ../settings.php:350
1622
  msgid "These settings do not affect hosts from the "
1623
  msgstr ""
1624
 
1625
- #: ../settings.php:353
1626
  msgid ""
1627
  "Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
1628
  "key on the Google website"
1629
  msgstr ""
1630
 
1631
- #: ../settings.php:384
1632
  msgid "Lockouts"
1633
  msgstr ""
1634
 
1635
- #: ../settings.php:393
1636
  msgid "Users"
1637
  msgstr ""
1638
 
1639
- #: ../settings.php:398
1640
  msgid "Help"
1641
  msgstr ""
1642
 
1643
- #: ../settings.php:505 ../settings.php:627
1644
  #, php-format
1645
  msgid "%s allowed retries in %s minutes"
1646
  msgstr ""
1647
 
1648
- #: ../settings.php:510 ../settings.php:632
1649
  #, php-format
1650
  msgid "%s allowed registrations in %s minutes from one IP"
1651
  msgstr ""
1652
 
1653
- #: ../settings.php:515 ../settings.php:637
1654
  #, php-format
1655
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
1656
  msgstr ""
1657
 
1658
- #: ../settings.php:522 ../settings.php:644
1659
  msgid "Notify admin if the number of active lockouts above"
1660
  msgstr ""
1661
 
1662
- #: ../settings.php:527 ../settings.php:649
1663
  #, php-format
1664
  msgid "Enable after %s failed login attempts in last %s minutes"
1665
  msgstr ""
1666
 
1667
- #: ../settings.php:729
1668
  msgid "Sunday"
1669
  msgstr ""
1670
 
1671
- #: ../settings.php:730
1672
  msgid "Monday"
1673
  msgstr ""
1674
 
1675
- #: ../settings.php:731
1676
  msgid "Tuesday"
1677
  msgstr ""
1678
 
1679
- #: ../settings.php:732
1680
  msgid "Wednesday"
1681
  msgstr ""
1682
 
1683
- #: ../settings.php:733
1684
  msgid "Thursday"
1685
  msgstr ""
1686
 
1687
- #: ../settings.php:734
1688
  msgid "Friday"
1689
  msgstr ""
1690
 
1691
- #: ../settings.php:735
1692
  msgid "Saturday"
1693
  msgstr ""
1694
 
1695
  #. translators: preposition of time
1696
- #: ../settings.php:745
1697
  msgctxt "preposition of time"
1698
  msgid "at"
1699
  msgstr ""
1700
 
1701
- #: ../settings.php:761
1702
  msgid "Click to send now"
1703
  msgstr ""
1704
 
1705
- #: ../settings.php:786 ../settings.php:787
1706
  msgid "Attention! You have changed the login URL! The new login URL is"
1707
  msgstr ""
1708
 
1709
- #: ../settings.php:788 ../settings.php:789
1710
  msgid ""
1711
  "If you use a caching plugin, you have to add your new login URL to the list "
1712
  "of pages not to cache."
1713
  msgstr ""
1714
 
1715
- #: ../settings.php:867 ../settings.php:879
1716
  msgid "<strong>ERROR</strong>: please enter a valid email address."
1717
  msgstr ""
1718
 
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 Feb 07 2018 15:39:47 GMT+0300\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
28
  msgid "Remove"
29
  msgstr ""
30
 
31
+ #: ../dashboard.php:93 ../dashboard.php:652 ../dashboard.php:2820 ../wp-cerber.
32
+ #: php:3593
33
  msgid "IP"
34
  msgstr ""
35
 
45
  msgid "Expires"
46
  msgstr ""
47
 
48
+ #: ../dashboard.php:97 ../wp-cerber.php:3097
49
  msgid "Reason"
50
  msgstr ""
51
 
71
  msgstr ""
72
 
73
  #: ../dashboard.php:131 ../dashboard.php:627 ../dashboard.php:830 ../dashboard.
74
+ #: php:1207 ../dashboard.php:2651 ../wp-cerber.php:3812 ../settings.php:74 ..
75
+ #: /settings.php:351
76
  msgid "White IP Access List"
77
  msgstr ""
78
 
81
  msgstr ""
82
 
83
  #: ../dashboard.php:133 ../dashboard.php:628 ../dashboard.php:833 ../dashboard.
84
+ #: php:1208 ../dashboard.php:2652
85
  msgid "Black IP Access List"
86
  msgstr ""
87
 
132
  msgid "Address %s was added to Black IP Access List"
133
  msgstr ""
134
 
135
+ #: ../dashboard.php:313 ../dashboard.php:2581 ../whois.php:221 ../whois.php:252 ..
136
+ #: /common.php:781 ../common.php:1060
137
  msgid "Unknown"
138
  msgstr ""
139
 
154
  msgid "Lockout for %s was removed"
155
  msgstr ""
156
 
157
+ #: ../dashboard.php:407 ../dashboard.php:1607
158
  msgid "Settings saved"
159
  msgstr ""
160
 
162
  msgid "IP address"
163
  msgstr ""
164
 
165
+ #: ../dashboard.php:491 ../dashboard.php:655 ../dashboard.php:2818
166
  msgid "Date"
167
  msgstr ""
168
 
170
  msgid "Event"
171
  msgstr ""
172
 
173
+ #: ../dashboard.php:491 ../dashboard.php:657 ../dashboard.php:2823
174
  msgid "Local User"
175
  msgstr ""
176
 
182
  msgid "User ID"
183
  msgstr ""
184
 
185
+ #: ../dashboard.php:491 ../dashboard.php:658 ../wp-cerber.php:3601
186
  msgid "Username used"
187
  msgstr ""
188
 
189
+ #: ../dashboard.php:632 ../dashboard.php:836 ../dashboard.php:2656 ../common.php:
190
+ #: 752
191
  msgid "Locked out"
192
  msgstr ""
193
 
235
  msgid "Registered"
236
  msgstr ""
237
 
238
+ #: ../dashboard.php:989 ../settings.php:374
239
  msgid "WP Cerber Security"
240
  msgstr ""
241
 
248
  msgid "Cerber Dashboard"
249
  msgstr ""
250
 
251
+ #: ../dashboard.php:991 ../dashboard.php:1226 ../dashboard.php:1783 ../settings.
252
+ #: php:379
253
  msgid "Dashboard"
254
  msgstr ""
255
 
257
  msgid "Cerber Traffic Inspector"
258
  msgstr ""
259
 
260
+ #: ../dashboard.php:993 ../dashboard.php:1212 ../dashboard.php:2502
261
  msgid "Traffic Inspector"
262
  msgstr ""
263
 
265
  msgid "Cerber Security Rules"
266
  msgstr ""
267
 
268
+ #: ../dashboard.php:997 ../dashboard.php:2162
269
  msgid "Security Rules"
270
  msgstr ""
271
 
273
  msgid "Cerber antispam settings"
274
  msgstr ""
275
 
276
+ #: ../dashboard.php:1000 ../dashboard.php:1229 ../wp-cerber.php:3821 ../settings.
277
+ #: php:186
278
  msgid "Antispam"
279
  msgstr ""
280
 
350
  msgid "Last lockout"
351
  msgstr ""
352
 
353
+ #: ../dashboard.php:1207 ../dashboard.php:1208 ../dashboard.php:1763
354
  msgid "entry"
355
  msgid_plural "entries"
356
  msgstr[0] ""
368
  msgid "no connection"
369
  msgstr ""
370
 
371
+ #: ../dashboard.php:1227 ../dashboard.php:1437 ../wp-cerber.php:3584 ../settings.
372
+ #: php:94 ../settings.php:381
373
  msgid "Activity"
374
  msgstr ""
375
 
389
  msgid "View all"
390
  msgstr ""
391
 
392
+ #: ../dashboard.php:1430 ../common.php:706
393
  msgid "User registered"
394
  msgstr ""
395
 
401
  msgid "Recently locked out IP addresses"
402
  msgstr ""
403
 
404
+ #: ../dashboard.php:1478
405
  msgid "Confused about some settings?"
406
  msgstr ""
407
 
408
+ #: ../dashboard.php:1479
409
  msgid "You can easily load default recommended settings using button below"
410
  msgstr ""
411
 
412
+ #: ../dashboard.php:1481
413
  msgid "Load default settings"
414
  msgstr ""
415
 
416
+ #: ../dashboard.php:1483
417
  msgid "Are you sure?"
418
  msgstr ""
419
 
420
+ #: ../dashboard.php:1489
421
  msgid "doesn't affect Custom login URL and Access Lists"
422
  msgstr ""
423
 
424
+ #: ../dashboard.php:1490 ../wp-cerber.php:3129 ../wp-cerber.php:3814
425
  msgid "Getting Started Guide"
426
  msgstr ""
427
 
428
+ #: ../dashboard.php:1590
429
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
430
  msgstr ""
431
 
432
+ #: ../dashboard.php:1591
433
  msgid "Deactivate"
434
  msgstr ""
435
 
436
+ #: ../dashboard.php:1592
437
  msgid "View Activity"
438
  msgstr ""
439
 
440
+ #: ../dashboard.php:1693
441
  msgid "Subscribe"
442
  msgstr ""
443
 
444
+ #: ../dashboard.php:1694 ../cerber-tools.php:266
445
  msgid "Unsubscribe"
446
  msgstr ""
447
 
448
+ #: ../dashboard.php:1722
449
  msgid "You've subscribed"
450
  msgstr ""
451
 
452
+ #: ../dashboard.php:1725
453
  msgid "You've unsubscribed"
454
  msgstr ""
455
 
456
+ #: ../dashboard.php:1784
457
  msgid "Main settings"
458
  msgstr ""
459
 
460
+ #: ../dashboard.php:2167
461
  msgid "Countries"
462
  msgstr ""
463
 
464
+ #: ../dashboard.php:2230
465
  #, php-format
466
  msgid "Permitted for one country"
467
  msgid_plural "Permitted for %d countries"
468
  msgstr[0] ""
469
  msgstr[1] ""
470
 
471
+ #: ../dashboard.php:2233
472
  #, php-format
473
  msgid "Not permitted for one country"
474
  msgid_plural "Not permitted for %d countries"
475
  msgstr[0] ""
476
  msgstr[1] ""
477
 
478
+ #: ../dashboard.php:2241
479
  msgid "No rule"
480
  msgstr ""
481
 
482
+ #: ../dashboard.php:2297
483
  msgid "Start typing here to find a country"
484
  msgstr ""
485
 
486
+ #: ../dashboard.php:2380
487
  msgid "Click on a country name to add it to the list of selected countries"
488
  msgstr ""
489
 
490
+ #: ../dashboard.php:2384
491
  #, php-format
492
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
493
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
494
  msgstr ""
495
 
496
+ #: ../dashboard.php:2387
497
  #, php-format
498
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
499
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
500
  msgstr ""
501
 
502
+ #: ../dashboard.php:2404
503
  msgid "Submit forms"
504
  msgstr ""
505
 
506
+ #: ../dashboard.php:2405
507
  msgid "Post comments"
508
  msgstr ""
509
 
510
+ #: ../dashboard.php:2406
511
  msgid "Log in to the website"
512
  msgstr ""
513
 
514
+ #: ../dashboard.php:2407
515
  msgid "Register on the website"
516
  msgstr ""
517
 
518
+ #: ../dashboard.php:2408
519
  msgid "Use XML-RPC"
520
  msgstr ""
521
 
522
+ #: ../dashboard.php:2409
523
  msgid "Use REST API"
524
  msgstr ""
525
 
526
+ #: ../dashboard.php:2453
527
  msgid "Security rules have been updated"
528
  msgstr ""
529
 
530
+ #: ../dashboard.php:2507
531
  msgid "Live traffic"
532
  msgstr ""
533
 
534
+ #: ../dashboard.php:2508 ../cerber-tools.php:87 ../cerber-tools.php:96
535
  msgid "Settings"
536
  msgstr ""
537
 
538
+ #: ../dashboard.php:2819
539
  msgid "Request"
540
  msgstr ""
541
 
542
+ #: ../dashboard.php:2821
543
  msgid "Host Info"
544
  msgstr ""
545
 
546
+ #: ../dashboard.php:2822
547
  msgid "User Agent"
548
  msgstr ""
549
 
550
+ #: ../dashboard.php:2839
551
  msgid "No requests have been logged."
552
  msgstr ""
553
 
554
+ #: ../dashboard.php:2847
555
  msgid "All requests"
556
  msgstr ""
557
 
558
+ #: ../dashboard.php:2848 ../settings.php:157
559
  msgid "Logged in users"
560
  msgstr ""
561
 
562
+ #: ../dashboard.php:2849
563
  msgid "Not logged in visitors"
564
  msgstr ""
565
 
566
+ #: ../dashboard.php:2850
567
  msgid "Form submissions"
568
  msgstr ""
569
 
570
+ #: ../dashboard.php:2851
571
  msgid "Page Not Found"
572
  msgstr ""
573
 
574
+ #: ../dashboard.php:2852
575
  msgid "REST API"
576
  msgstr ""
577
 
578
+ #: ../dashboard.php:2853
579
  msgid "XML-RPC"
580
  msgstr ""
581
 
582
+ #: ../dashboard.php:2857
583
  msgid "Longer than"
584
  msgstr ""
585
 
586
+ #: ../dashboard.php:2870
587
  msgid "Refresh"
588
  msgstr ""
589
 
590
+ #: ../dashboard.php:3105
591
  msgid "Any"
592
  msgstr ""
593
 
594
+ #: ../dashboard.php:3124
595
  msgid "Advanced search"
596
  msgstr ""
597
 
615
  msgid "Gregory"
616
  msgstr ""
617
 
618
+ #: ../wp-cerber.php:238
619
  msgid "You are not allowed to log in. Ask your administrator for assistance."
620
  msgstr ""
621
 
622
+ #: ../wp-cerber.php:244
623
  #, php-format
624
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
625
  msgstr ""
626
 
627
+ #: ../wp-cerber.php:263
628
  #, php-format
629
  msgid "You have only one attempt remaining."
630
  msgid_plural "You have %d attempts remaining."
631
  msgstr[0] ""
632
  msgstr[1] ""
633
 
634
+ #: ../wp-cerber.php:546 ../wp-cerber.php:558 ../wp-cerber.php:565 ../wp-cerber.
635
+ #: php:761 ../wp-cerber.php:977 ../wp-cerber.php:983 ../wp-cerber.php:988 ../wp-
636
+ #: cerber.php:993 ../wp-cerber.php:999 ../wp-cerber.php:1006 ../wp-cerber.php:
637
+ #: 1106 ../wp-cerber.php:1243 ../common.php:194 ../common.php:251 ../common.php:
638
+ #: 255 ../settings.php:837
639
  msgid "ERROR:"
640
  msgstr ""
641
 
642
+ #: ../wp-cerber.php:575
643
  msgid ""
644
  "Human verification failed. Please click the square box in the reCAPTCHA "
645
  "block below."
646
  msgstr ""
647
 
648
+ #: ../wp-cerber.php:640
649
  msgid ""
650
  "> > > Translator of WP Cerber? To get the PRO license for free, drop your "
651
  "contacts here: https://wpcerber.com/contact/"
652
  msgstr ""
653
 
654
+ #: ../wp-cerber.php:773
655
  #, php-format
656
  msgid ""
657
  "<strong>ERROR</strong>: The password you entered for the username %s is "
658
  "incorrect."
659
  msgstr ""
660
 
661
+ #: ../wp-cerber.php:978 ../wp-cerber.php:984 ../wp-cerber.php:1000 ../wp-cerber.
662
+ #: php:1007
663
  msgid "You are not allowed to register."
664
  msgstr ""
665
 
666
+ #: ../wp-cerber.php:994
667
  msgid "Username is not allowed. Please choose another one."
668
  msgstr ""
669
 
670
+ #: ../wp-cerber.php:1243
671
  msgid "Sorry, human verification failed."
672
  msgstr ""
673
 
674
+ #: ../wp-cerber.php:2929
675
  msgid "We're sorry, you are not allowed to proceed"
676
  msgstr ""
677
 
678
+ #: ../wp-cerber.php:3039
679
  msgid "WP Cerber notify"
680
  msgstr ""
681
 
682
+ #: ../wp-cerber.php:3061
683
  msgid "Citadel mode is activated"
684
  msgstr ""
685
 
686
+ #: ../wp-cerber.php:3063
687
  #, php-format
688
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
689
  msgstr ""
690
 
691
+ #: ../wp-cerber.php:3064
692
  #, php-format
693
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
694
  msgstr ""
695
 
696
+ #: ../wp-cerber.php:3065 ../wp-cerber.php:3625
697
  msgid "View activity in dashboard"
698
  msgstr ""
699
 
700
+ #: ../wp-cerber.php:3090
701
  msgid "unspecified"
702
  msgstr ""
703
 
704
+ #: ../wp-cerber.php:3093
705
  msgid "Number of lockouts is increasing"
706
  msgstr ""
707
 
708
+ #: ../wp-cerber.php:3095
709
  msgid "Number of active lockouts"
710
  msgstr ""
711
 
712
+ #: ../wp-cerber.php:3096
713
  #, php-format
714
  msgid "Last lockout was added: %s for IP %s"
715
  msgstr ""
716
 
717
+ #: ../wp-cerber.php:3098
718
  msgid "View activity for this IP"
719
  msgstr ""
720
 
721
+ #: ../wp-cerber.php:3099
722
  msgid "View lockouts in dashboard"
723
  msgstr ""
724
 
725
+ #: ../wp-cerber.php:3102 ../wp-cerber.php:3104
726
  msgid "A new version of WP Cerber is available to install"
727
  msgstr ""
728
 
729
+ #: ../wp-cerber.php:3103
730
  msgid "Hi!"
731
  msgstr ""
732
 
733
+ #: ../wp-cerber.php:3106 ../wp-cerber.php:3117
734
  msgid "Website"
735
  msgstr ""
736
 
737
+ #: ../wp-cerber.php:3109 ../wp-cerber.php:3110
738
  msgid "The WP Cerber security plugin has been deactivated"
739
  msgstr ""
740
 
741
+ #: ../wp-cerber.php:3112
742
  msgid "Not logged in"
743
  msgstr ""
744
 
745
+ #: ../wp-cerber.php:3118
746
  msgid "By user"
747
  msgstr ""
748
 
749
+ #: ../wp-cerber.php:3119
750
  msgid "From IP address"
751
  msgstr ""
752
 
753
+ #: ../wp-cerber.php:3122
754
  msgid "From country"
755
  msgstr ""
756
 
757
+ #: ../wp-cerber.php:3126
758
  msgid "The WP Cerber security plugin is now active"
759
  msgstr ""
760
 
761
+ #: ../wp-cerber.php:3127 ../wp-cerber.php:3811
762
  msgid "WP Cerber is now active and has started protecting your site"
763
  msgstr ""
764
 
765
+ #: ../wp-cerber.php:3135
766
  msgid "New Custom login URL"
767
  msgstr ""
768
 
769
+ #: ../wp-cerber.php:3139 ../wp-cerber.php:3140
770
  msgid "A new activity has been recorded"
771
  msgstr ""
772
 
773
+ #: ../wp-cerber.php:3145
774
  msgid "Weekly report"
775
  msgstr ""
776
 
777
+ #: ../wp-cerber.php:3148
778
  msgid "To change reporting settings visit"
779
  msgstr ""
780
 
781
+ #: ../wp-cerber.php:3174
782
  msgid "Your login page:"
783
  msgstr ""
784
 
785
+ #: ../wp-cerber.php:3178
786
  msgid "Your license is valid until"
787
  msgstr ""
788
 
789
+ #: ../wp-cerber.php:3181
790
  msgid "This message was sent by"
791
  msgstr ""
792
 
793
+ #: ../wp-cerber.php:3202
794
  #, php-format
795
  msgid "Your last sign-in was %s from %s"
796
  msgstr ""
797
 
798
+ #: ../wp-cerber.php:3277
799
  msgid "Weekly Report"
800
  msgstr ""
801
 
802
+ #: ../wp-cerber.php:3289
803
  msgid "Activity details"
804
  msgstr ""
805
 
806
+ #: ../wp-cerber.php:3303
807
  msgid "Attempts to log in with non-existent username"
808
  msgstr ""
809
 
810
+ #: ../wp-cerber.php:3597
811
  msgid "User"
812
  msgstr ""
813
 
814
+ #: ../wp-cerber.php:3605
815
  msgid "Search string"
816
  msgstr ""
817
 
818
+ #: ../wp-cerber.php:3626
819
  msgid "To unsubscribe click here"
820
  msgstr ""
821
 
822
+ #: ../wp-cerber.php:3782
823
  #, php-format
824
  msgid "The WP Cerber requires PHP %s or higher. You are running"
825
  msgstr ""
826
 
827
+ #: ../wp-cerber.php:3786
828
  #, php-format
829
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
830
  msgstr ""
831
 
832
+ #: ../wp-cerber.php:3795
833
  msgid "Can't activate WP Cerber due to a database error."
834
  msgstr ""
835
 
836
+ #: ../wp-cerber.php:3812
837
  msgid "Your IP address is added to the"
838
  msgstr ""
839
 
840
+ #: ../wp-cerber.php:3819 ../settings.php:387
841
  msgid "Main Settings"
842
  msgstr ""
843
 
844
+ #: ../wp-cerber.php:3820 ../settings.php:390 ../cerber-tools.php:88 ../cerber-
845
  #: tools.php:97 ../cerber-tools.php:178
846
  msgid "Access Lists"
847
  msgstr ""
848
 
849
+ #: ../wp-cerber.php:3822 ../settings.php:392
850
  msgid "Hardening"
851
  msgstr ""
852
 
853
+ #: ../wp-cerber.php:3823 ../settings.php:75 ../settings.php:92 ../settings.php:397
854
  msgid "Notifications"
855
  msgstr ""
856
 
857
+ #: ../wp-cerber.php:3824
858
  msgid "Import settings"
859
  msgstr ""
860
 
882
  msgid "Lockouts occurred"
883
  msgstr ""
884
 
885
+ #: ../common.php:705
886
  msgid "User created"
887
  msgstr ""
888
 
889
+ #: ../common.php:707
890
  msgid "Logged in"
891
  msgstr ""
892
 
893
+ #: ../common.php:708
894
  msgid "Logged out"
895
  msgstr ""
896
 
897
+ #: ../common.php:709
898
  msgid "Login failed"
899
  msgstr ""
900
 
901
+ #: ../common.php:712
902
  msgid "IP blocked"
903
  msgstr ""
904
 
905
+ #: ../common.php:713
906
  msgid "Subnet blocked"
907
  msgstr ""
908
 
909
+ #: ../common.php:715
910
  msgid "Citadel activated!"
911
  msgstr ""
912
 
913
+ #: ../common.php:716
914
  msgid "Spam comment denied"
915
  msgstr ""
916
 
917
+ #: ../common.php:717
918
  msgid "Spam form submission denied"
919
  msgstr ""
920
 
921
+ #: ../common.php:718
922
  msgid "Form submission denied"
923
  msgstr ""
924
 
925
+ #: ../common.php:719
926
  msgid "Comment denied"
927
  msgstr ""
928
 
929
+ #: ../common.php:730
930
  msgid "Password changed"
931
  msgstr ""
932
 
933
+ #: ../common.php:731
934
  msgid "Password reset requested"
935
  msgstr ""
936
 
937
+ #: ../common.php:733
938
  msgid "reCAPTCHA verification failed"
939
  msgstr ""
940
 
941
+ #: ../common.php:734
942
  msgid "reCAPTCHA settings are incorrect"
943
  msgstr ""
944
 
945
+ #: ../common.php:735
946
  msgid "Request to the Google reCAPTCHA service failed"
947
  msgstr ""
948
 
949
+ #: ../common.php:737
950
  msgid "Attempt to access prohibited URL"
951
  msgstr ""
952
 
953
+ #: ../common.php:738 ../common.php:784
954
  msgid "Attempt to log in with non-existent username"
955
  msgstr ""
956
 
957
+ #: ../common.php:739 ../common.php:785
958
  msgid "Attempt to log in with prohibited username"
959
  msgstr ""
960
 
961
+ #: ../common.php:741
962
  msgid "Attempt to log in denied"
963
  msgstr ""
964
 
965
+ #: ../common.php:742
966
  msgid "Attempt to register denied"
967
  msgstr ""
968
 
969
+ #: ../common.php:743 ../common.php:789
970
  msgid "Probing for vulnerable PHP code"
971
  msgstr ""
972
 
973
+ #: ../common.php:745
974
  msgid "Request to REST API denied"
975
  msgstr ""
976
 
977
+ #: ../common.php:746
978
  msgid "XML-RPC request denied"
979
  msgstr ""
980
 
981
+ #: ../common.php:750
982
  msgid "Bot detected"
983
  msgstr ""
984
 
985
+ #: ../common.php:751
986
  msgid "Citadel mode is active"
987
  msgstr ""
988
 
989
+ #: ../common.php:753
990
  msgid "IP blacklisted"
991
  msgstr ""
992
 
993
+ #: ../common.php:756
994
  msgid "Malicious activity detected"
995
  msgstr ""
996
 
997
+ #: ../common.php:757
998
  msgid "Blocked by country rule"
999
  msgstr ""
1000
 
1001
+ #: ../common.php:758
1002
  msgid "Limit reached"
1003
  msgstr ""
1004
 
1005
+ #: ../common.php:759
1006
  msgid "Multiple suspicious activities"
1007
  msgstr ""
1008
 
1009
+ #: ../common.php:782
1010
  msgid "Limit on login attempts is reached"
1011
  msgstr ""
1012
 
1013
+ #: ../common.php:783
1014
  msgid "Attempt to access"
1015
  msgstr ""
1016
 
1017
+ #: ../common.php:786
1018
  msgid "Limit on failed reCAPTCHA verifications is reached"
1019
  msgstr ""
1020
 
1021
+ #: ../common.php:787
1022
  msgid "Bot activity is detected"
1023
  msgstr ""
1024
 
1025
+ #: ../common.php:788
1026
  msgid "Multiple suspicious activities were detected"
1027
  msgstr ""
1028
 
1029
+ #: ../common.php:844
1030
  #, php-format
1031
  msgid "%s ago"
1032
  msgstr ""
1033
 
1034
+ #: ../common.php:978
1035
  msgid "New version is available"
1036
  msgstr ""
1037
 
1038
+ #: ../common.php:985
1039
  #, php-format
1040
  msgid "Update to version %s of WP Cerber"
1041
  msgstr ""
1042
 
1043
+ #: ../common.php:1004
1044
  msgid "Not specified"
1045
  msgstr ""
1046
 
1047
+ #: ../cerber-news.php:159
1048
  msgid "Cool!"
1049
  msgstr ""
1050
 
1068
  msgid "NO, maybe later"
1069
  msgstr ""
1070
 
1071
+ #: ../cerber-lab.php:709 ../settings.php:355
1072
  msgid "Know more"
1073
  msgstr ""
1074
 
1182
  msgid "Send notification to admin email"
1183
  msgstr ""
1184
 
1185
+ #: ../settings.php:92 ../settings.php:525 ../settings.php:647
1186
  msgid "Click to send test"
1187
  msgstr ""
1188
 
1189
+ #: ../settings.php:95 ../settings.php:323
1190
  msgid "Keep records for"
1191
  msgstr ""
1192
 
1193
+ #: ../settings.php:95 ../settings.php:169 ../settings.php:327
1194
  msgid "days"
1195
  msgstr ""
1196
 
1248
  msgstr ""
1249
 
1250
  #: ../settings.php:111
1251
+ msgid "Protect admin scripts"
1252
  msgstr ""
1253
 
1254
  #: ../settings.php:111
1255
+ msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1256
  msgstr ""
1257
 
1258
  #: ../settings.php:112
1259
+ msgid "Disable XML-RPC"
1260
  msgstr ""
1261
 
1262
  #: ../settings.php:112
1263
+ msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
1264
  msgstr ""
1265
 
1266
  #: ../settings.php:113
1267
+ msgid "Disable feeds"
1268
  msgstr ""
1269
 
1270
  #: ../settings.php:113
1271
+ msgid "Block access to the RSS, Atom and RDF feeds"
1272
+ msgstr ""
1273
+
1274
+ #: ../settings.php:114
1275
+ msgid "Disable REST API"
1276
  msgstr ""
1277
 
1278
  #: ../settings.php:114
1279
+ msgid "Block access to the WordPress REST API except the following"
1280
+ msgstr ""
1281
+
1282
+ #: ../settings.php:115
1283
  msgid "Allow REST API for logged in users"
1284
  msgstr ""
1285
 
1286
+ #: ../settings.php:122
1287
  msgid ""
1288
  "Specify REST API namespaces to be allowed if REST API is disabled. One "
1289
  "string per line."
1290
  msgstr ""
1291
 
1292
+ #: ../settings.php:132
1293
  msgid "User related settings"
1294
  msgstr ""
1295
 
1296
+ #: ../settings.php:133
1297
  msgid "Registration limit"
1298
  msgstr ""
1299
 
1300
+ #: ../settings.php:134
1301
  msgid "Prohibited usernames"
1302
  msgstr ""
1303
 
1304
+ #: ../settings.php:140
1305
  msgid ""
1306
  "Usernames from this list are not allowed to log in or register. Any IP "
1307
  "address, have tried to use any of these usernames, will be immediately "
1308
  "blocked. Use comma to separate logins."
1309
  msgstr ""
1310
 
1311
+ #: ../settings.php:140
1312
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1313
  msgstr ""
1314
 
1315
+ #: ../settings.php:142
1316
  msgid "User session expire"
1317
  msgstr ""
1318
 
1319
+ #: ../settings.php:142
1320
  msgid "in minutes (leave empty to use default WP value)"
1321
  msgstr ""
1322
 
1323
+ #: ../settings.php:143
1324
  msgid "Sort users in dashboard"
1325
  msgstr ""
1326
 
1327
+ #: ../settings.php:143
1328
  msgid "by date of registration"
1329
  msgstr ""
1330
 
1331
+ #: ../settings.php:150
1332
  msgid "Cerber antispam engine"
1333
  msgstr ""
1334
 
1335
+ #: ../settings.php:151
1336
  msgid "Comment form"
1337
  msgstr ""
1338
 
1339
+ #: ../settings.php:151
1340
  msgid "Protect comment form with bot detection engine"
1341
  msgstr ""
1342
 
1343
+ #: ../settings.php:152 ../settings.php:177
1344
  msgid "Registration form"
1345
  msgstr ""
1346
 
1347
+ #: ../settings.php:152
1348
  msgid "Protect registration form with bot detection engine"
1349
  msgstr ""
1350
 
1351
+ #: ../settings.php:153
1352
  msgid "Other forms"
1353
  msgstr ""
1354
 
1355
+ #: ../settings.php:153
1356
  msgid "Protect all forms on the website with bot detection engine"
1357
  msgstr ""
1358
 
1359
+ #: ../settings.php:155
1360
  msgid "Adjust antispam engine"
1361
  msgstr ""
1362
 
1363
+ #: ../settings.php:156
1364
  msgid "Safe mode"
1365
  msgstr ""
1366
 
1367
+ #: ../settings.php:156
1368
  msgid "Use less restrictive policies (allow AJAX)"
1369
  msgstr ""
1370
 
1371
+ #: ../settings.php:157
1372
  msgid "Disable bot detection engine for logged in users"
1373
  msgstr ""
1374
 
1375
+ #: ../settings.php:158
1376
  msgid "Query whitelist"
1377
  msgstr ""
1378
 
1379
+ #: ../settings.php:164
1380
  msgid ""
1381
  "Enter a part of query string or query path to exclude a request from "
1382
  "inspection by the engine. One item per line."
1383
  msgstr ""
1384
 
1385
+ #: ../settings.php:167
1386
  msgid "Comment processing"
1387
  msgstr ""
1388
 
1389
+ #: ../settings.php:168
1390
  msgid "If a spam comment detected"
1391
  msgstr ""
1392
 
1393
+ #: ../settings.php:168
1394
  msgid "Deny it completely"
1395
  msgstr ""
1396
 
1397
+ #: ../settings.php:168
1398
  msgid "Mark it as spam"
1399
  msgstr ""
1400
 
1401
+ #: ../settings.php:169
1402
  msgid "Trash spam comments"
1403
  msgstr ""
1404
 
1405
+ #: ../settings.php:169
1406
  msgid "Move spam comments to trash after"
1407
  msgstr ""
1408
 
1409
+ #: ../settings.php:172
1410
  msgid "reCAPTCHA settings"
1411
  msgstr ""
1412
 
1413
+ #: ../settings.php:173
1414
  msgid "Site key"
1415
  msgstr ""
1416
 
1417
+ #: ../settings.php:174
1418
  msgid "Secret key"
1419
  msgstr ""
1420
 
1421
+ #: ../settings.php:175
1422
  msgid "Invisible reCAPTCHA"
1423
  msgstr ""
1424
 
1425
+ #: ../settings.php:175
1426
  msgid "Enable invisible reCAPTCHA"
1427
  msgstr ""
1428
 
1429
+ #: ../settings.php:175
1430
  msgid ""
1431
  "(do not enable it unless you get and enter the Site and Secret keys for the "
1432
  "invisible version)"
1433
  msgstr ""
1434
 
1435
+ #: ../settings.php:177
1436
  msgid "Enable reCAPTCHA for WordPress registration form"
1437
  msgstr ""
1438
 
1439
+ #: ../settings.php:178
1440
  msgid "Enable reCAPTCHA for WooCommerce registration form"
1441
  msgstr ""
1442
 
1443
+ #: ../settings.php:180
1444
  msgid "Lost password form"
1445
  msgstr ""
1446
 
1447
+ #: ../settings.php:180
1448
  msgid "Enable reCAPTCHA for WordPress lost password form"
1449
  msgstr ""
1450
 
1451
+ #: ../settings.php:181
1452
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
1453
  msgstr ""
1454
 
1455
+ #: ../settings.php:183
1456
  msgid "Login form"
1457
  msgstr ""
1458
 
1459
+ #: ../settings.php:183
1460
  msgid "Enable reCAPTCHA for WordPress login form"
1461
  msgstr ""
1462
 
1463
+ #: ../settings.php:184
1464
  msgid "Enable reCAPTCHA for WooCommerce login form"
1465
  msgstr ""
1466
 
1467
+ #: ../settings.php:186
1468
  msgid "Enable reCAPTCHA for WordPress comment form"
1469
  msgstr ""
1470
 
1471
+ #: ../settings.php:187
1472
  msgid "Disable reCAPTCHA for logged in users"
1473
  msgstr ""
1474
 
1475
+ #: ../settings.php:189
1476
  msgid "Limit attempts"
1477
  msgstr ""
1478
 
1479
+ #: ../settings.php:189
1480
  #, php-format
1481
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1482
  msgstr ""
1483
 
1484
+ #: ../settings.php:195
1485
  msgid "Email notifications"
1486
  msgstr ""
1487
 
1488
+ #: ../settings.php:198 ../settings.php:229
1489
  msgid "Email Address"
1490
  msgstr ""
1491
 
1492
+ #: ../settings.php:202 ../settings.php:234 ../settings.php:291
1493
  msgid "Use comma to specify multiple values"
1494
  msgstr ""
1495
 
1496
+ #: ../settings.php:207
1497
  #, php-format
1498
  msgid "if empty, the admin email %s will be used"
1499
  msgstr ""
1500
 
1501
+ #: ../settings.php:210
1502
  msgid "Notification limit"
1503
  msgstr ""
1504
 
1505
+ #: ../settings.php:210
1506
  msgid "notification letters allowed per hour (0 means unlimited)"
1507
  msgstr ""
1508
 
1509
+ #: ../settings.php:212
1510
  msgid "Push notifications"
1511
  msgstr ""
1512
 
1513
+ #: ../settings.php:219
1514
  msgid "All connected devices"
1515
  msgstr ""
1516
 
1517
+ #: ../settings.php:220
1518
  msgid "No devices found"
1519
  msgstr ""
1520
 
1521
+ #: ../settings.php:222
1522
  msgid "Not available"
1523
  msgstr ""
1524
 
1525
+ #: ../settings.php:226
1526
  msgid "Weekly reports"
1527
  msgstr ""
1528
 
1529
+ #: ../settings.php:227
1530
  msgid "Enable reporting"
1531
  msgstr ""
1532
 
1533
+ #: ../settings.php:239
1534
  msgid "if empty, email from notification settings will be used"
1535
  msgstr ""
1536
 
1537
+ #: ../settings.php:247
1538
  msgid "Inspection"
1539
  msgstr ""
1540
 
1541
+ #: ../settings.php:248
1542
  msgid "Enable traffic inspection"
1543
  msgstr ""
1544
 
1545
+ #: ../settings.php:253
1546
  msgid "Request whitelist"
1547
  msgstr ""
1548
 
1549
+ #: ../settings.php:259
1550
  msgid ""
1551
  "Enter a request URI to exclude the request from inspection. One item per "
1552
  "line."
1553
  msgstr ""
1554
 
1555
+ #: ../settings.php:262
1556
  msgid "Logging"
1557
  msgstr ""
1558
 
1559
+ #: ../settings.php:263
1560
  msgid "Logging mode"
1561
  msgstr ""
1562
 
1563
+ #: ../settings.php:269
1564
  msgid "Logging disabled"
1565
  msgstr ""
1566
 
1567
+ #: ../settings.php:270
1568
  msgid "Smart"
1569
  msgstr ""
1570
 
1571
+ #: ../settings.php:271
1572
  msgid "All traffic"
1573
  msgstr ""
1574
 
1575
+ #: ../settings.php:275
1576
  msgid "Ignore crawlers"
1577
  msgstr ""
1578
 
1579
+ #: ../settings.php:280
1580
  msgid "Save request fields"
1581
  msgstr ""
1582
 
1583
+ #: ../settings.php:285
1584
  msgid "Mask these form fields"
1585
  msgstr ""
1586
 
1587
+ #: ../settings.php:296
1588
  msgid "Save request headers"
1589
  msgstr ""
1590
 
1591
+ #: ../settings.php:302
1592
  msgid "Save $_SERVER"
1593
  msgstr ""
1594
 
1595
+ #: ../settings.php:308
1596
  msgid "Save request cookies"
1597
  msgstr ""
1598
 
1599
+ #: ../settings.php:315
1600
  msgid "Page generation time threshold"
1601
  msgstr ""
1602
 
1603
+ #: ../settings.php:320
1604
  msgid "milliseconds"
1605
  msgstr ""
1606
 
1607
+ #: ../settings.php:337
1608
  msgid "Make your protection smarter!"
1609
  msgstr ""
1610
 
1611
+ #: ../settings.php:341
1612
  msgid ""
1613
  "Please enable Permalinks to use this feature. Set Permalink Settings to "
1614
  "something other than Default."
1615
  msgstr ""
1616
 
1617
+ #: ../settings.php:344
1618
  msgid ""
1619
  "Be careful when enabling this options. If you forget the custom login URL "
1620
  "you will not be able to login."
1621
  msgstr ""
1622
 
1623
+ #: ../settings.php:348
1624
  msgid ""
1625
  "In the Citadel mode nobody is able to log in except IPs from the White IP "
1626
  "Access List. Active user sessions will not be affected."
1627
  msgstr ""
1628
 
1629
+ #: ../settings.php:351
1630
  msgid "These settings do not affect hosts from the "
1631
  msgstr ""
1632
 
1633
+ #: ../settings.php:354
1634
  msgid ""
1635
  "Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
1636
  "key on the Google website"
1637
  msgstr ""
1638
 
1639
+ #: ../settings.php:385
1640
  msgid "Lockouts"
1641
  msgstr ""
1642
 
1643
+ #: ../settings.php:394
1644
  msgid "Users"
1645
  msgstr ""
1646
 
1647
+ #: ../settings.php:399
1648
  msgid "Help"
1649
  msgstr ""
1650
 
1651
+ #: ../settings.php:506 ../settings.php:628
1652
  #, php-format
1653
  msgid "%s allowed retries in %s minutes"
1654
  msgstr ""
1655
 
1656
+ #: ../settings.php:511 ../settings.php:633
1657
  #, php-format
1658
  msgid "%s allowed registrations in %s minutes from one IP"
1659
  msgstr ""
1660
 
1661
+ #: ../settings.php:516 ../settings.php:638
1662
  #, php-format
1663
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
1664
  msgstr ""
1665
 
1666
+ #: ../settings.php:523 ../settings.php:645
1667
  msgid "Notify admin if the number of active lockouts above"
1668
  msgstr ""
1669
 
1670
+ #: ../settings.php:528 ../settings.php:650
1671
  #, php-format
1672
  msgid "Enable after %s failed login attempts in last %s minutes"
1673
  msgstr ""
1674
 
1675
+ #: ../settings.php:730
1676
  msgid "Sunday"
1677
  msgstr ""
1678
 
1679
+ #: ../settings.php:731
1680
  msgid "Monday"
1681
  msgstr ""
1682
 
1683
+ #: ../settings.php:732
1684
  msgid "Tuesday"
1685
  msgstr ""
1686
 
1687
+ #: ../settings.php:733
1688
  msgid "Wednesday"
1689
  msgstr ""
1690
 
1691
+ #: ../settings.php:734
1692
  msgid "Thursday"
1693
  msgstr ""
1694
 
1695
+ #: ../settings.php:735
1696
  msgid "Friday"
1697
  msgstr ""
1698
 
1699
+ #: ../settings.php:736
1700
  msgid "Saturday"
1701
  msgstr ""
1702
 
1703
  #. translators: preposition of time
1704
+ #: ../settings.php:746
1705
  msgctxt "preposition of time"
1706
  msgid "at"
1707
  msgstr ""
1708
 
1709
+ #: ../settings.php:762
1710
  msgid "Click to send now"
1711
  msgstr ""
1712
 
1713
+ #: ../settings.php:787 ../settings.php:788
1714
  msgid "Attention! You have changed the login URL! The new login URL is"
1715
  msgstr ""
1716
 
1717
+ #: ../settings.php:789 ../settings.php:790
1718
  msgid ""
1719
  "If you use a caching plugin, you have to add your new login URL to the list "
1720
  "of pages not to cache."
1721
  msgstr ""
1722
 
1723
+ #: ../settings.php:868 ../settings.php:880
1724
  msgid "<strong>ERROR</strong>: please enter a valid email address."
1725
  msgstr ""
1726
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: security, login, protect, antispam, limit login attempts, woocommerce, cus
5
  Requires at least: 4.4
6
  Requires PHP: 5.3
7
  Tested up to: 4.9
8
- Stable tag: 6.1
9
  License: GPLv2
10
 
11
  Protection against hacker attacks and bots. Restrict access with IP access lists, track user and bot activity. reCAPTCHA. Limit login attempts.
@@ -49,6 +49,7 @@ Hardening WordPress with a set of security settings.
49
  * Limit login attempts works on a site/server behind a reverse proxy.
50
  * [Get notifications by email or via mobile push notifications](https://wpcerber.com/wordpress-notifications-made-easy/).
51
  * Trigger and action for the [jetFlow.io automation plugin](http://jetflow.io).
 
52
 
53
  = Limit login attempts done right =
54
 
@@ -285,6 +286,13 @@ To get access to your dashboard you need to copy the WP Cerber Reset folder to t
285
 
286
  == Changelog ==
287
 
 
 
 
 
 
 
 
288
  = 6.1 =
289
  * New: Traffic Inspector has got a Request White List setting.
290
  * New: An Activity filter for the Advanced search form on the Traffic Inspector page.
5
  Requires at least: 4.4
6
  Requires PHP: 5.3
7
  Tested up to: 4.9
8
+ Stable tag: 6.2
9
  License: GPLv2
10
 
11
  Protection against hacker attacks and bots. Restrict access with IP access lists, track user and bot activity. reCAPTCHA. Limit login attempts.
49
  * Limit login attempts works on a site/server behind a reverse proxy.
50
  * [Get notifications by email or via mobile push notifications](https://wpcerber.com/wordpress-notifications-made-easy/).
51
  * Trigger and action for the [jetFlow.io automation plugin](http://jetflow.io).
52
+ * Protection against (DoS) attacks (CVE-2018-6389).
53
 
54
  = Limit login attempts done right =
55
 
286
 
287
  == Changelog ==
288
 
289
+ = 6.2 =
290
+ * New: Protection against (DoS) attacks that exploit recently discovered vulnerability (CVE-2018-6389).
291
+ * New: The Traffic Inspector algorithm detects malformed and double extensions like .php.jpg more precisely.
292
+ * New: The Access Lists now accept IPv6 addresses in any form and handle them in a shortened form. All existing IPs will be converted.
293
+ * Bug fixed: If the WP REST API is blocked, a request with a specially malformed URL can bypass protection. Thanks to Tomasz Wasiak.
294
+ * Bug fixed: An IPv4 range in the Access Lists might not work as expected, depending on server/site settings.
295
+
296
  = 6.1 =
297
  * New: Traffic Inspector has got a Request White List setting.
298
  * New: An Activity filter for the Advanced search form on the Traffic Inspector page.
settings.php CHANGED
@@ -108,6 +108,7 @@ function cerber_settings_init(){
108
  register_setting( 'cerberus-'.$tab, CERBER_OPT_H);
109
  add_settings_section('hwp', __('Hardening WordPress','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_H);
110
  add_settings_field('stopenum',__('Stop user enumeration','wp-cerber'),'cerberus_field_show',CERBER_OPT_H,'hwp',array('group'=>$tab,'option'=>'stopenum','type'=>'checkbox','label'=>__('Block access to user pages like /?author=n and user data via REST API','wp-cerber')));
 
111
  add_settings_field('xmlrpc',__('Disable XML-RPC','wp-cerber'),'cerberus_field_show',CERBER_OPT_H,'hwp',array('group'=>$tab,'option'=>'xmlrpc','type'=>'checkbox','label'=>__('Block access to the XML-RPC server (including Pingbacks and Trackbacks)','wp-cerber')));
112
  add_settings_field('nofeeds',__('Disable feeds','wp-cerber'),'cerberus_field_show',CERBER_OPT_H,'hwp',array('group'=>$tab,'option'=>'nofeeds','type'=>'checkbox','label'=>__('Block access to the RSS, Atom and RDF feeds','wp-cerber')));
113
  add_settings_field('norest',__('Disable REST API','wp-cerber'),'cerberus_field_show',CERBER_OPT_H,'hwp',array('group'=>$tab,'option'=>'norest','type'=>'checkbox','label'=>__('Block access to the WordPress REST API except the following','wp-cerber')));
@@ -905,6 +906,20 @@ function cerber_sanitize_h($new, $old, $option) {
905
  return trim( $v, '/' );
906
  }, $new['restwhite'] );
907
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
908
  return $new;
909
  }
910
  /*
@@ -1109,6 +1124,7 @@ function cerber_get_defaults($field = null) {
1109
  ),
1110
  CERBER_OPT_H => array(
1111
  'stopenum' => 1,
 
1112
  'xmlrpc' => 0,
1113
  'nofeeds' => 0,
1114
  'norest' => 0,
108
  register_setting( 'cerberus-'.$tab, CERBER_OPT_H);
109
  add_settings_section('hwp', __('Hardening WordPress','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_H);
110
  add_settings_field('stopenum',__('Stop user enumeration','wp-cerber'),'cerberus_field_show',CERBER_OPT_H,'hwp',array('group'=>$tab,'option'=>'stopenum','type'=>'checkbox','label'=>__('Block access to user pages like /?author=n and user data via REST API','wp-cerber')));
111
+ add_settings_field('adminphp',__('Protect admin scripts','wp-cerber'),'cerberus_field_show',CERBER_OPT_H,'hwp',array('group'=>$tab,'option'=>'adminphp','type'=>'checkbox','label'=>__('Block unauthorized access to load-scripts.php and load-styles.php','wp-cerber')));
112
  add_settings_field('xmlrpc',__('Disable XML-RPC','wp-cerber'),'cerberus_field_show',CERBER_OPT_H,'hwp',array('group'=>$tab,'option'=>'xmlrpc','type'=>'checkbox','label'=>__('Block access to the XML-RPC server (including Pingbacks and Trackbacks)','wp-cerber')));
113
  add_settings_field('nofeeds',__('Disable feeds','wp-cerber'),'cerberus_field_show',CERBER_OPT_H,'hwp',array('group'=>$tab,'option'=>'nofeeds','type'=>'checkbox','label'=>__('Block access to the RSS, Atom and RDF feeds','wp-cerber')));
114
  add_settings_field('norest',__('Disable REST API','wp-cerber'),'cerberus_field_show',CERBER_OPT_H,'hwp',array('group'=>$tab,'option'=>'norest','type'=>'checkbox','label'=>__('Block access to the WordPress REST API except the following','wp-cerber')));
906
  return trim( $v, '/' );
907
  }, $new['restwhite'] );
908
 
909
+ if ( empty( $new['adminphp'] ) ) {
910
+ $new['adminphp'] = 0;
911
+ }
912
+ if ( $new['adminphp'] != $old['adminphp'] ) {
913
+ $result = cerber_htaccess_sync( $new );
914
+ if ( $result === true ) {
915
+ cerber_admin_message( 'The .htaccess file has been modified' );
916
+ }
917
+ else {
918
+ $new['adminphp'] = $old['adminphp'];
919
+ cerber_admin_notice( $result );
920
+ }
921
+ }
922
+
923
  return $new;
924
  }
925
  /*
1124
  ),
1125
  CERBER_OPT_H => array(
1126
  'stopenum' => 1,
1127
+ 'adminphp' => 0,
1128
  'xmlrpc' => 0,
1129
  'nofeeds' => 0,
1130
  'norest' => 0,
wp-cerber.php CHANGED
@@ -5,7 +5,7 @@
5
  Description: Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href="https://wpcerber.com">wpcerber.com</a>.
6
  Author: Gregory
7
  Author URI: https://wpcerber.com
8
- Version: 6.1
9
  Text Domain: wp-cerber
10
  Domain Path: /languages
11
  Network: true
@@ -61,7 +61,7 @@ if ( ! defined( 'WPINC' ) ) {
61
  exit;
62
  }
63
 
64
- define( 'CERBER_VER', '6.1' );
65
  define( 'CERBER_LOG_TABLE', 'cerber_log' );
66
  define( 'CERBER_TRAF_TABLE', 'cerber_traffic' );
67
  define( 'CERBER_ACL_TABLE', 'cerber_acl' );
@@ -179,6 +179,7 @@ class WP_Cerber {
179
  $this->remote_ip = '127.0.0.1';
180
  } // including WP-CLI, other way is: if defined('WP_CLI')
181
 
 
182
 
183
  $this->reCaptchaInit();
184
 
@@ -1311,6 +1312,9 @@ function cerber_redirect( $location, $status ) {
1311
 
1312
  //add_action( 'init', 'cerber_access_control', 1 );
1313
  add_action( 'init', function () {
 
 
 
1314
  cerber_access_control();
1315
  cerber_post_control();
1316
  }, 1 );
@@ -1649,7 +1653,7 @@ function cerber_can_msg() {
1649
 
1650
  // Cookies ---------------------------------------------------------------------------------
1651
  /*
1652
- Mark user with groove
1653
  @since 1.3
1654
  */
1655
  add_action( 'auth_cookie_valid', 'cerber_cookie1', 10, 2 );
@@ -1659,22 +1663,16 @@ function cerber_cookie1( $cookie_elements = null, $user = null ) {
1659
  $user = wp_get_current_user();
1660
  }
1661
  $expire = time() + apply_filters( 'auth_cookie_expiration', 14 * 24 * 3600, $user->ID, true ) + ( 24 * 3600 );
1662
- cerber_set_cookie( $expire );
1663
  }
1664
 
1665
  /*
1666
- Mark switched user with groove
1667
  @since 1.6
1668
  */
1669
  add_action( 'set_logged_in_cookie', 'cerber_cookie2', 10, 5 );
1670
  function cerber_cookie2( $logged_in_cookie, $expire, $expiration, $user_id, $logged_in ) {
1671
- cerber_set_cookie( $expire );
1672
- }
1673
-
1674
- function cerber_set_cookie( $expire ) {
1675
- if ( ! headers_sent() ) {
1676
- setcookie( 'cerber_groove', md5( cerber_get_groove() ), $expire + 1, COOKIEPATH );
1677
- }
1678
  }
1679
 
1680
  /*
@@ -1686,38 +1684,6 @@ function cerber_cookie_bad( $cookie_elements ) {
1686
  cerber_login_failed( $cookie_elements['username'] );
1687
  }
1688
 
1689
- /*
1690
- Get special Cerber Sign for using with cookies
1691
- */
1692
- function cerber_get_groove() {
1693
- $groove = cerber_get_site_option( 'cerber-groove', false );
1694
-
1695
- if ( empty( $groove ) ) {
1696
- $groove = wp_generate_password( 16, false );
1697
- update_site_option( 'cerber-groove', $groove );
1698
- }
1699
-
1700
- return $groove;
1701
- }
1702
-
1703
- /*
1704
- Check if special Cerber Sign valid
1705
- */
1706
- function cerber_check_groove( $hash = '' ) {
1707
- if ( ! $hash ) {
1708
- if ( ! isset( $_COOKIE['cerber_groove'] ) ) {
1709
- return false;
1710
- }
1711
- $hash = $_COOKIE['cerber_groove'];
1712
- }
1713
- $groove = cerber_get_groove();
1714
- if ( $hash == md5( $groove ) ) {
1715
- return true;
1716
- }
1717
-
1718
- return false;
1719
- }
1720
-
1721
  /**
1722
  * Is bot detection engine enabled in a given rule_id
1723
  *
@@ -2482,6 +2448,9 @@ function cerber_get_status( $ip ) {
2482
  function cerber_acl_add( $ip, $tag, $comment = '') {
2483
  global $wpdb;
2484
  if ( is_string( $ip ) ) {
 
 
 
2485
  if ( $wpdb->get_var( $wpdb->prepare( 'SELECT COUNT(ip) FROM ' . CERBER_ACL_TABLE . ' WHERE ip = %s', $ip ) ) ) {
2486
  return false; //__( 'Element is already in list', 'wp-cerber' );
2487
  }
@@ -2489,9 +2458,16 @@ function cerber_acl_add( $ip, $tag, $comment = '') {
2489
  if ( is_array( $range ) ) {
2490
  $begin = $range['begin'];
2491
  $end = $range['end'];
2492
- } else {
2493
- $begin = ip2long( $ip );
2494
- $end = ip2long( $ip );
 
 
 
 
 
 
 
2495
  }
2496
 
2497
  $result = $wpdb->insert( CERBER_ACL_TABLE, array( 'ip' => $ip,
@@ -3399,23 +3375,17 @@ function cerber_do_hourly($force = false) {
3399
  }
3400
 
3401
  cerber_up_data();
 
 
3402
  }
3403
 
3404
  add_action( 'cerber_hourly_2', function () {
3405
 
3406
  // Avoid multiple executions on a weird hosting
3407
- if ( get_site_transient( 'crb_hourly_2' ) ) {
3408
  return;
3409
  }
3410
 
3411
- /*
3412
- if (is_multisite()) {
3413
- if ( get_site_transient( 'cerber_multisite2' ) ) {
3414
- return;
3415
- }
3416
- set_site_transient( 'cerber_multisite2', 'executed', 3600 );
3417
- }*/
3418
-
3419
  $gmt_offset = get_option( 'gmt_offset' ) * 3600;
3420
 
3421
  if ( crb_get_settings( 'enable-report' )
@@ -3430,7 +3400,7 @@ add_action( 'cerber_hourly_2', function () {
3430
 
3431
  cerber_watchdog( true );
3432
 
3433
- set_site_transient( 'crb_hourly_2', 'executed', 3600 );
3434
  });
3435
 
3436
  add_action( 'cerber_daily', 'cerber_do_daily' );
@@ -3891,8 +3861,8 @@ function cerber_upgrade_all() {
3891
  if ( ! $ver || $ver['v'] != CERBER_VER ) {
3892
  cerber_create_db();
3893
  cerber_upgrade_db();
 
3894
  cerber_push_the_news( CERBER_VER );
3895
- cerber_acl_fixer();
3896
  cerber_antibot_gene(true);
3897
  cerber_upgrade_options();
3898
  wp_clear_scheduled_hook( 'cerber_hourly' ); // @since 5.8
@@ -4098,28 +4068,8 @@ function cerber_upgrade_db( $force = false ) {
4098
  }
4099
 
4100
  // Convert existing data into the new format
4101
- $rows = $wpdb->get_results( 'SELECT * FROM ' . CERBER_ACL_TABLE );
4102
- if ( $rows ) {
4103
- foreach ( $rows as $row ) {
4104
- $range = cerber_wildcard2range( $row->ip );
4105
- if ( is_array( $range ) ) {
4106
- $begin = $range['begin'];
4107
- $end = $range['end'];
4108
- } elseif ( cerber_is_ipv4( $row->ip ) ) {
4109
- $begin = ip2long( $row->ip );
4110
- $end = ip2long( $row->ip );
4111
- } else {
4112
- $begin = 0;
4113
- $end = 0;
4114
- }
4115
- $query = $wpdb->prepare( 'UPDATE ' . CERBER_ACL_TABLE . ' SET ip_long_begin = %d, ip_long_end = %d WHERE ip = %s', $begin, $end, $row->ip );
4116
- if ( ! $wpdb->query( $query ) ) {
4117
- if ( $wpdb->last_error ) {
4118
- $db_errors[] = array( $wpdb->last_error, $wpdb->last_query );
4119
- }
4120
- }
4121
- }
4122
- }
4123
 
4124
  if ( $db_errors ) {
4125
  update_site_option( '_cerber_db_errors', $db_errors );
@@ -4154,28 +4104,51 @@ function cerber_up_data() {
4154
  }
4155
 
4156
  /**
4157
- * Just fix corrupted (have no long values) ACL entries
 
 
4158
  *
4159
  */
4160
- function cerber_acl_fixer(){
4161
  global $wpdb;
 
 
4162
  $rows = $wpdb->get_col( 'SELECT ip FROM ' . CERBER_ACL_TABLE . ' WHERE ip_long_begin = 0 OR ip_long_end = 0' );
4163
  if ( ! $rows ) {
4164
  return;
4165
  }
4166
  foreach ( $rows as $ip ) {
4167
- if (filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)) continue;
 
 
4168
  $range = cerber_any2range( $ip );
4169
  if ( is_array( $range ) ) {
4170
  $begin = $range['begin'];
4171
  $end = $range['end'];
4172
- } else {
 
4173
  $begin = ip2long( $ip );
4174
  $end = ip2long( $ip );
4175
  }
4176
 
4177
  $wpdb->query( 'UPDATE ' . CERBER_ACL_TABLE . ' SET ip_long_begin = ' . $begin . ', ip_long_end = ' . $end . ' WHERE ip = "' . $ip .'"');
4178
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4179
  }
4180
 
4181
  $file = plugin_basename( cerber_plugin_file() );
@@ -4570,51 +4543,6 @@ function cerber_traffic_log(){
4570
 
4571
  }
4572
 
4573
- /**
4574
- * Natively escape an SQL query
4575
- * Based on $wpdb->_real_escape()
4576
- *
4577
- * The reason: https://make.wordpress.org/core/2017/10/31/changed-behaviour-of-esc_sql-in-wordpress-4-8-3/
4578
- *
4579
- * @param $string
4580
- *
4581
- * @return string
4582
- * @since 6.0
4583
- */
4584
- function cerber_real_escape($string){
4585
- global $wpdb;
4586
- if ( $wpdb->use_mysqli ) {
4587
- $escaped = mysqli_real_escape_string( $wpdb->dbh, $string );
4588
- }
4589
- else {
4590
- $escaped = mysql_real_escape_string( $string, $wpdb->dbh );
4591
- }
4592
-
4593
- return $escaped;
4594
- }
4595
-
4596
- /**
4597
- * Direct SQL query to the DB
4598
- *
4599
- * The reason: https://make.wordpress.org/core/2017/10/31/changed-behaviour-of-esc_sql-in-wordpress-4-8-3/
4600
- *
4601
- * @param $query
4602
- *
4603
- * @return bool|mysqli_result|resource
4604
- * @since 6.0
4605
- */
4606
- function cerber_direct_db_query($query){
4607
- global $wpdb;
4608
- if ( $wpdb->use_mysqli ) {
4609
- $ret = mysqli_query($wpdb->dbh, $query);
4610
- }
4611
- else {
4612
- $ret = mysql_query($query, $wpdb->dbh);
4613
- }
4614
-
4615
- return $ret;
4616
- }
4617
-
4618
  /**
4619
  * To log or not to log current request?
4620
  *
5
  Description: Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href="https://wpcerber.com">wpcerber.com</a>.
6
  Author: Gregory
7
  Author URI: https://wpcerber.com
8
+ Version: 6.2
9
  Text Domain: wp-cerber
10
  Domain Path: /languages
11
  Network: true
61
  exit;
62
  }
63
 
64
+ define( 'CERBER_VER', '6.2' );
65
  define( 'CERBER_LOG_TABLE', 'cerber_log' );
66
  define( 'CERBER_TRAF_TABLE', 'cerber_traffic' );
67
  define( 'CERBER_ACL_TABLE', 'cerber_acl' );
179
  $this->remote_ip = '127.0.0.1';
180
  } // including WP-CLI, other way is: if defined('WP_CLI')
181
 
182
+ $this->remote_ip = cerber_short_ipv6( $this->remote_ip );
183
 
184
  $this->reCaptchaInit();
185
 
1312
 
1313
  //add_action( 'init', 'cerber_access_control', 1 );
1314
  add_action( 'init', function () {
1315
+ if ( crb_get_settings( 'adminphp' ) && ! is_user_logged_in() ) {
1316
+ define( 'CONCATENATE_SCRIPTS', false );
1317
+ }
1318
  cerber_access_control();
1319
  cerber_post_control();
1320
  }, 1 );
1653
 
1654
  // Cookies ---------------------------------------------------------------------------------
1655
  /*
1656
+ Mark user with Cerber Groove
1657
  @since 1.3
1658
  */
1659
  add_action( 'auth_cookie_valid', 'cerber_cookie1', 10, 2 );
1663
  $user = wp_get_current_user();
1664
  }
1665
  $expire = time() + apply_filters( 'auth_cookie_expiration', 14 * 24 * 3600, $user->ID, true ) + ( 24 * 3600 );
1666
+ cerber_set_groove( $expire );
1667
  }
1668
 
1669
  /*
1670
+ Mark switched user with Cerber Groove
1671
  @since 1.6
1672
  */
1673
  add_action( 'set_logged_in_cookie', 'cerber_cookie2', 10, 5 );
1674
  function cerber_cookie2( $logged_in_cookie, $expire, $expiration, $user_id, $logged_in ) {
1675
+ cerber_set_groove( $expire );
 
 
 
 
 
 
1676
  }
1677
 
1678
  /*
1684
  cerber_login_failed( $cookie_elements['username'] );
1685
  }
1686
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1687
  /**
1688
  * Is bot detection engine enabled in a given rule_id
1689
  *
2448
  function cerber_acl_add( $ip, $tag, $comment = '') {
2449
  global $wpdb;
2450
  if ( is_string( $ip ) ) {
2451
+ if ( ! cerber_is_ipv4( $ip ) ) {
2452
+ $ip = cerber_short_ipv6( $ip );
2453
+ }
2454
  if ( $wpdb->get_var( $wpdb->prepare( 'SELECT COUNT(ip) FROM ' . CERBER_ACL_TABLE . ' WHERE ip = %s', $ip ) ) ) {
2455
  return false; //__( 'Element is already in list', 'wp-cerber' );
2456
  }
2458
  if ( is_array( $range ) ) {
2459
  $begin = $range['begin'];
2460
  $end = $range['end'];
2461
+ }
2462
+ else {
2463
+ if (cerber_is_ipv4($ip)) {
2464
+ $begin = ip2long( $ip );
2465
+ $end = ip2long( $ip );
2466
+ }
2467
+ else{
2468
+ $begin = 0;
2469
+ $end = 0;
2470
+ }
2471
  }
2472
 
2473
  $result = $wpdb->insert( CERBER_ACL_TABLE, array( 'ip' => $ip,
3375
  }
3376
 
3377
  cerber_up_data();
3378
+
3379
+ set_site_transient( 'crb_hourly_1', date( 'G' ) , 3600 );
3380
  }
3381
 
3382
  add_action( 'cerber_hourly_2', function () {
3383
 
3384
  // Avoid multiple executions on a weird hosting
3385
+ if ( ( $hour = get_site_transient( 'crb_hourly_2' ) ) && $hour == date( 'G' ) ) {
3386
  return;
3387
  }
3388
 
 
 
 
 
 
 
 
 
3389
  $gmt_offset = get_option( 'gmt_offset' ) * 3600;
3390
 
3391
  if ( crb_get_settings( 'enable-report' )
3400
 
3401
  cerber_watchdog( true );
3402
 
3403
+ set_site_transient( 'crb_hourly_2', date( 'G' ) , 3600 );
3404
  });
3405
 
3406
  add_action( 'cerber_daily', 'cerber_do_daily' );
3861
  if ( ! $ver || $ver['v'] != CERBER_VER ) {
3862
  cerber_create_db();
3863
  cerber_upgrade_db();
3864
+ cerber_acl_fixer( true );
3865
  cerber_push_the_news( CERBER_VER );
 
3866
  cerber_antibot_gene(true);
3867
  cerber_upgrade_options();
3868
  wp_clear_scheduled_hook( 'cerber_hourly' ); // @since 5.8
4068
  }
4069
 
4070
  // Convert existing data into the new format
4071
+
4072
+ cerber_acl_fixer();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4073
 
4074
  if ( $db_errors ) {
4075
  update_site_option( '_cerber_db_errors', $db_errors );
4104
  }
4105
 
4106
  /**
4107
+ * Upgrade corrupted / from older versions of the plugin rows in ACL
4108
+ *
4109
+ * @param bool $ipv6 if true Process IPv6 addresses
4110
  *
4111
  */
4112
+ function cerber_acl_fixer($ipv6 = false){
4113
  global $wpdb;
4114
+
4115
+ // Repair/update IPs without long values
4116
  $rows = $wpdb->get_col( 'SELECT ip FROM ' . CERBER_ACL_TABLE . ' WHERE ip_long_begin = 0 OR ip_long_end = 0' );
4117
  if ( ! $rows ) {
4118
  return;
4119
  }
4120
  foreach ( $rows as $ip ) {
4121
+ if ( filter_var( $ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6 ) ) {
4122
+ continue;
4123
+ }
4124
  $range = cerber_any2range( $ip );
4125
  if ( is_array( $range ) ) {
4126
  $begin = $range['begin'];
4127
  $end = $range['end'];
4128
+ }
4129
+ else {
4130
  $begin = ip2long( $ip );
4131
  $end = ip2long( $ip );
4132
  }
4133
 
4134
  $wpdb->query( 'UPDATE ' . CERBER_ACL_TABLE . ' SET ip_long_begin = ' . $begin . ', ip_long_end = ' . $end . ' WHERE ip = "' . $ip .'"');
4135
  }
4136
+
4137
+ // Convert old IPv6 to all shortened
4138
+ if ( $ipv6 ) {
4139
+ $ips = $wpdb->get_col( 'SELECT ip FROM ' . CERBER_ACL_TABLE . ' WHERE ip_long_begin = 0' );
4140
+ if ( $ips ) {
4141
+ foreach ( $ips as $ip ) {
4142
+ if ( ! filter_var( $ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6 ) ) {
4143
+ continue;
4144
+ }
4145
+ $short_ip = cerber_short_ipv6( $ip );
4146
+ if ($short_ip != $ip) {
4147
+ $wpdb->query( 'UPDATE ' . CERBER_ACL_TABLE . ' SET ip = "' . $short_ip . '" WHERE ip = "' . $ip . '"' );
4148
+ }
4149
+ }
4150
+ }
4151
+ }
4152
  }
4153
 
4154
  $file = plugin_basename( cerber_plugin_file() );
4543
 
4544
  }
4545
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4546
  /**
4547
  * To log or not to log current request?
4548
  *