Cerber Security & Antispam - Version 5.8.6

Version Description

  • New: Regular expressions (REGEX) in the list of prohibited usernames.
  • New: Enable/disable weekly reports, a new setting to specify email addresses for weekly reports.
  • Improved compatibility with non-standard authentication processes, WooCommerce and exotic/outdated hosting environments.
  • Bug fixed: Some interface elements of WordPress Customizer might not work.
  • Read more
Download this release

Release Info

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

Code changes from version 5.8 to 5.8.6

assets/admin.js CHANGED
@@ -16,15 +16,14 @@ jQuery(document).ready(function ($) {
16
 
17
  /* Load data with AJAX */
18
 
19
- //if ($(".crb-table").length) {
20
- if ($(".crb-no-hostname").length) {
21
- cerberLoadData('hostname');
22
- }
23
-
24
  if ($(".crb-no-country").length) {
25
  cerberLoadData('country');
26
  }
27
 
 
 
 
 
28
  function cerberLoadData(slug) {
29
  var ip_list = $(".crb-no-" + slug).map(
30
  function () {
16
 
17
  /* Load data with AJAX */
18
 
 
 
 
 
 
19
  if ($(".crb-no-country").length) {
20
  cerberLoadData('country');
21
  }
22
 
23
+ if ($(".crb-no-hostname").length) {
24
+ cerberLoadData('hostname');
25
+ }
26
+
27
  function cerberLoadData(slug) {
28
  var ip_list = $(".crb-no-" + slug).map(
29
  function () {
cerber-lab.php CHANGED
@@ -218,14 +218,20 @@ function lab_api_send_request($workload = array()) {
218
  * @return array|bool
219
  */
220
  function lab_send_request($request, $node_id = null, $scheme = null) {
221
- global $node_delay, $wp_cerber;
222
 
223
  $node = lab_get_node($node_id);
224
- if (!$scheme) {
225
- if ($wp_cerber->getSettings('cerberproto')) $scheme = 'https';
226
- else $scheme = 'http';
 
 
 
 
 
 
 
227
  }
228
- elseif ($scheme != 'http' || $scheme != 'https') $scheme = 'https';
229
 
230
  $body = array();
231
  $body['container'] = $request;
@@ -431,11 +437,12 @@ function lab_get_nodes() {
431
  * @return string Report to show in Dashboard
432
  */
433
  function lab_status(){
434
- global $wp_cerber;
435
 
436
  $ret = '';
437
 
438
- if (!$wp_cerber->getSettings('cerberlab')) $ret .= '<p><b>Cerber Lab connection is disabled</b></p>';
 
 
439
 
440
  $nodes = lab_get_nodes();
441
  if (empty($nodes['nodes'])) return $ret . '<p>No information. No request has been made yet.</p>';
@@ -473,11 +480,11 @@ function lab_status(){
473
  * @param $details
474
  */
475
  function lab_save_push( $ip, $reason_id, $details ) {
476
- global $wpdb, $wp_cerber;
477
  if ( is_ip_private( $ip ) || cerber_acl_check( $ip, 'W' ) ) {
478
  return;
479
  }
480
- if ( $wp_cerber->getSettings( 'cerberlab' ) ) {
481
  $wpdb->insert( CERBER_LAB_TABLE, array(
482
  'ip' => $ip,
483
  'reason_id' => $reason_id,
@@ -618,21 +625,20 @@ function lab_indicator(){
618
  if (lab_lab()){
619
  $key = lab_get_key();
620
  $sid = 'Site ID: '.$key[0];
621
- return '<div title="'.$sid.'" style="float: right; font-weight: normal; font-size: 80%; padding: 0.35em 0.6em 0.35em 0.6em; color: #fff; background-color: #51AE43;"><span style="vertical-align: top; line-height: 1;" class="dashicons dashicons-yes"></span> Cerber cloud protection is active</div>';
622
  }
623
  }
624
 
625
  /**
626
  * Opt in for the connection to Cerber Lab
627
  *
628
- *
629
  */
630
  add_action( 'admin_notices', 'lab_opt_in');
631
  add_action( 'network_admin_notices', 'lab_opt_in' );
632
  function lab_opt_in(){
633
- global $wp_cerber, $cerber_shown;
634
 
635
- if ($cerber_shown || $wp_cerber->getSettings('cerberlab')) return;
636
  if (!cerber_is_admin_page(false)) return;
637
 
638
  // Avoid more than one message on the screen
@@ -661,9 +667,8 @@ function lab_opt_in(){
661
 
662
  $msg = '<h3>' . $h . '</h3><p>' . $text . '</p>';
663
 
664
- $assets_url = plugin_dir_url( CERBER_FILE ) . 'assets';
665
  $notice =
666
- '<table><tr><td><img style="width:100px; float:left; margin-left:-10px;" src="' . $assets_url . '/icon-128x128.png"></td>' .
667
  '<td style ="max-width: 850px;">' . $msg .
668
  '<p style="float:left;">' . $more . '</p>
669
  <p style="text-align:right;">
218
  * @return array|bool
219
  */
220
  function lab_send_request($request, $node_id = null, $scheme = null) {
221
+ global $node_delay;
222
 
223
  $node = lab_get_node($node_id);
224
+ if ( ! $scheme ) {
225
+ if ( crb_get_settings( 'cerberproto' ) ) {
226
+ $scheme = 'https';
227
+ }
228
+ else {
229
+ $scheme = 'http';
230
+ }
231
+ }
232
+ elseif ($scheme != 'http' || $scheme != 'https') {
233
+ $scheme = 'https';
234
  }
 
235
 
236
  $body = array();
237
  $body['container'] = $request;
437
  * @return string Report to show in Dashboard
438
  */
439
  function lab_status(){
 
440
 
441
  $ret = '';
442
 
443
+ if ( ! crb_get_settings( 'cerberlab' ) ) {
444
+ $ret .= '<p><b>Cerber Lab connection is disabled</b></p>';
445
+ }
446
 
447
  $nodes = lab_get_nodes();
448
  if (empty($nodes['nodes'])) return $ret . '<p>No information. No request has been made yet.</p>';
480
  * @param $details
481
  */
482
  function lab_save_push( $ip, $reason_id, $details ) {
483
+ global $wpdb;
484
  if ( is_ip_private( $ip ) || cerber_acl_check( $ip, 'W' ) ) {
485
  return;
486
  }
487
+ if ( crb_get_settings( 'cerberlab' ) ) {
488
  $wpdb->insert( CERBER_LAB_TABLE, array(
489
  'ip' => $ip,
490
  'reason_id' => $reason_id,
625
  if (lab_lab()){
626
  $key = lab_get_key();
627
  $sid = 'Site ID: '.$key[0];
628
+ return '<div title="'.$sid.'" style="float: right; font-weight: normal; font-size: 80%; padding: 0.35em 0.6em 0.35em 0.6em; color: #fff; background-color: #51AE43;"><span style="vertical-align: top; line-height: 1;" class="dashicons dashicons-yes"></span> Cerber Security Cloud Protection is active</div>';
629
  }
630
  }
631
 
632
  /**
633
  * Opt in for the connection to Cerber Lab
634
  *
 
635
  */
636
  add_action( 'admin_notices', 'lab_opt_in');
637
  add_action( 'network_admin_notices', 'lab_opt_in' );
638
  function lab_opt_in(){
639
+ global $cerber_shown, $crb_assets_url;
640
 
641
+ if ($cerber_shown || crb_get_settings('cerberlab')) return;
642
  if (!cerber_is_admin_page(false)) return;
643
 
644
  // Avoid more than one message on the screen
667
 
668
  $msg = '<h3>' . $h . '</h3><p>' . $text . '</p>';
669
 
 
670
  $notice =
671
+ '<table><tr><td><img style="width:100px; float:left; margin-left:-10px;" src="' . $crb_assets_url . 'icon-128x128.png"></td>' .
672
  '<td style ="max-width: 850px;">' . $msg .
673
  '<p style="float:left;">' . $more . '</p>
674
  <p style="text-align:right;">
cerber-news.php CHANGED
@@ -98,7 +98,13 @@ function cerber_push_the_news( $version ) {
98
  $news['5.8'][] = 'Weekly reports. Now the plugin will send a brief performance report (activity for past seven days) to specified email addresses. Weekly reports are sent once a week. Set desired reporting time on the Notification admin page.';
99
  $news['5.8'][] = 'Plugin admin interface pages: compatibility with screen readers has been improved.';
100
  $news['5.8'][] = 'Compatibility with caching plugins is improved: define( ‘DONOTCACHEPAGE’, true ) is added for Custom login page.';
101
- $news['5.8'][] = 'REST API: the deprecated rest_enabled filter is used for WordPress older than 4.7.';
 
 
 
 
 
 
102
 
103
  if ( ! empty( $news[ $version ] ) ) {
104
  //$text = '<h3>What\'s new in WP Cerber '.$version.'</h3>';
@@ -126,7 +132,7 @@ function cerber_admin_info($msg, $type = 'normal'){
126
  '<table><tr><td><img style="float:left; margin-left:-10px;" src="'.$crb_assets_url.'icon-128x128.png"></td>'.
127
  '<td>'.$msg.
128
  '<p style="text-align:right;">
129
- <input type="button" class="button button-primary cerber-dismiss" value=" &nbsp; OK &nbsp; "/></p></td></tr></table>');
130
  }
131
 
132
 
98
  $news['5.8'][] = 'Weekly reports. Now the plugin will send a brief performance report (activity for past seven days) to specified email addresses. Weekly reports are sent once a week. Set desired reporting time on the Notification admin page.';
99
  $news['5.8'][] = 'Plugin admin interface pages: compatibility with screen readers has been improved.';
100
  $news['5.8'][] = 'Compatibility with caching plugins is improved: define( ‘DONOTCACHEPAGE’, true ) is added for Custom login page.';
101
+ $news['5.8.2'][] = 'REST API: the deprecated rest_enabled filter is used for WordPress older than 4.7.';
102
+
103
+ $news['5.8.6'][] = 'Regular expressions (REGEX) in the list of prohibited usernames.';
104
+ $news['5.8.6'][] = 'Ability to enable/disable weekly reports, a new field to specify email addresses for weekly reports.';
105
+ $news['5.8.6'][] = 'Your last login date, IP address, and country will be shown in a report email.';
106
+ $news['5.8.6'][] = 'Improved compatibility with non-standard authentication processes, WooCommerce and exotic/outdated hosting environments.';
107
+ $news['5.8.6'][] = 'Bug fixed: Some interface elements of WordPress Customizer might not work, depending on the theme you use.';
108
 
109
  if ( ! empty( $news[ $version ] ) ) {
110
  //$text = '<h3>What\'s new in WP Cerber '.$version.'</h3>';
132
  '<table><tr><td><img style="float:left; margin-left:-10px;" src="'.$crb_assets_url.'icon-128x128.png"></td>'.
133
  '<td>'.$msg.
134
  '<p style="text-align:right;">
135
+ <input type="button" class="button button-primary cerber-dismiss" value=" &nbsp; '.__('Cool!','wp-cerber').' &nbsp; "/></p></td></tr></table>');
136
  }
137
 
138
 
cerber-tools.php CHANGED
@@ -103,13 +103,16 @@ function cerber_show_imex(){
103
  */
104
  add_action('admin_init','cerber_export');
105
  function cerber_export(){
106
- global $wpdb;
107
- if ($_SERVER['REQUEST_METHOD']!='GET' || !isset($_GET['cerber_export'])) return;
108
- if (!current_user_can('manage_options')) wp_die('Error!');
 
 
 
109
  $p = cerber_plugin_data();
110
  $data = array('cerber_version' => $p['Version'],'home'=> get_home_url(),'date'=>date('d M Y H:i:s'));
111
  if (!empty($_GET['exportset'])) {
112
- $data ['options'] = cerber_get_options();
113
  $data ['geo-rules'] = cerber_geo_rules();
114
  }
115
  if ( ! empty( $_GET['exportacl'] ) ) {
@@ -145,7 +148,7 @@ function cerber_import(){
145
  if ($sys[3] == 'EOF' && crc32($data) == $sys[2] && ($data = json_decode($data, true))) {
146
 
147
  if ($_POST['importset'] && $data['options'] && !empty($data['options']) && is_array($data['options'])) {
148
- $data['options']['loginpath'] = urldecode($data['options']['loginpath']); // needed for filter cerber_sanitize_options()
149
  if ($data['home'] != get_home_url()) {
150
  $data['options']['sitekey'] = $wp_cerber->getSettings('sitekey');
151
  $data['options']['secretkey'] = $wp_cerber->getSettings('secretkey');
103
  */
104
  add_action('admin_init','cerber_export');
105
  function cerber_export(){
106
+ if ( $_SERVER['REQUEST_METHOD'] != 'GET' || ! isset( $_GET['cerber_export'] ) ) {
107
+ return;
108
+ }
109
+ if ( ! current_user_can( 'manage_options' ) ) {
110
+ wp_die( 'Error!' );
111
+ }
112
  $p = cerber_plugin_data();
113
  $data = array('cerber_version' => $p['Version'],'home'=> get_home_url(),'date'=>date('d M Y H:i:s'));
114
  if (!empty($_GET['exportset'])) {
115
+ $data ['options'] = crb_get_settings();
116
  $data ['geo-rules'] = cerber_geo_rules();
117
  }
118
  if ( ! empty( $_GET['exportacl'] ) ) {
148
  if ($sys[3] == 'EOF' && crc32($data) == $sys[2] && ($data = json_decode($data, true))) {
149
 
150
  if ($_POST['importset'] && $data['options'] && !empty($data['options']) && is_array($data['options'])) {
151
+ $data['options']['loginpath'] = urldecode($data['options']['loginpath']); // needed for filter cerber_sanitize_m()
152
  if ($data['home'] != get_home_url()) {
153
  $data['options']['sitekey'] = $wp_cerber->getSettings('sitekey');
154
  $data['options']['secretkey'] = $wp_cerber->getSettings('secretkey');
common.php CHANGED
@@ -125,11 +125,13 @@ function cerber_calculate_kpi($period = 1){
125
 
126
 
127
  function cerber_pb_get_devices($token = ''){
128
- global $wp_cerber;
129
  $ret = array();
130
 
131
- if (!$token){
132
- if (!$token = $wp_cerber->getSettings('pbtoken')) return false;
 
 
133
  }
134
 
135
  $curl = @curl_init();
@@ -183,14 +185,15 @@ function cerber_pb_get_devices($token = ''){
183
  * @return bool
184
  */
185
  function cerber_pb_send($title, $body){
186
- global $wp_cerber;
187
 
188
  if (!$body) return false;
189
- if (!$token = $wp_cerber->getSettings('pbtoken')) return false;
 
 
190
 
191
  $params = array('type' => 'note', 'title' => $title, 'body' => $body, 'sender_name' => 'WP Cerber');
192
 
193
- if ($device = $wp_cerber->getSettings('pbdevice')) {
194
  if ($device && $device != 'all' && $device != 'N') $params['device_iden'] = $device;
195
  }
196
 
@@ -384,9 +387,8 @@ function cerber_is_rest_url(){
384
  * @return bool
385
  */
386
  function cerber_is_route_allowed() {
387
- global $wp_cerber;
388
 
389
- $list = $wp_cerber->getSettings( 'restwhite' );
390
 
391
  if ( ! is_array( $list ) || empty( $list ) ) {
392
  return false;
@@ -410,8 +412,7 @@ function cerber_is_route_allowed() {
410
  * @return bool
411
  */
412
  function cerber_is_route_blocked() {
413
- global $wp_cerber;
414
- if ( $wp_cerber->getSettings( 'stopenum' ) ) {
415
  $path = explode( '/', crb_get_rest_path() );
416
  if ( $path && count( $path ) > 2 && $path[0] == 'wp' && $path[2] == 'users' ) {
417
  return true;
125
 
126
 
127
  function cerber_pb_get_devices($token = ''){
128
+
129
  $ret = array();
130
 
131
+ if ( ! $token ) {
132
+ if ( ! $token = crb_get_settings( 'pbtoken' ) ) {
133
+ return false;
134
+ }
135
  }
136
 
137
  $curl = @curl_init();
185
  * @return bool
186
  */
187
  function cerber_pb_send($title, $body){
 
188
 
189
  if (!$body) return false;
190
+ if ( ! $token = crb_get_settings( 'pbtoken' ) ) {
191
+ return false;
192
+ }
193
 
194
  $params = array('type' => 'note', 'title' => $title, 'body' => $body, 'sender_name' => 'WP Cerber');
195
 
196
+ if ($device = crb_get_settings('pbdevice')) {
197
  if ($device && $device != 'all' && $device != 'N') $params['device_iden'] = $device;
198
  }
199
 
387
  * @return bool
388
  */
389
  function cerber_is_route_allowed() {
 
390
 
391
+ $list = crb_get_settings( 'restwhite' );
392
 
393
  if ( ! is_array( $list ) || empty( $list ) ) {
394
  return false;
412
  * @return bool
413
  */
414
  function cerber_is_route_blocked() {
415
+ if ( crb_get_settings( 'stopenum' ) ) {
 
416
  $path = explode( '/', crb_get_rest_path() );
417
  if ( $path && count( $path ) > 2 && $path[0] == 'wp' && $path[2] == 'users' ) {
418
  return true;
dashboard.php CHANGED
@@ -47,7 +47,7 @@ require_once( dirname( __FILE__ ) . '/cerber-tools.php' );
47
  Display lockouts in dashboard for admins
48
  */
49
  function cerber_show_lockouts($args = array(), $echo = true){
50
- global $wpdb, $crb_assets_url;
51
 
52
  //$wp_cerber->deleteGarbage();
53
 
@@ -72,7 +72,7 @@ function cerber_show_lockouts($args = array(), $echo = true){
72
  }
73
  else {
74
  $ip_id = cerber_get_id_ip( $row->ip );
75
- $hostname = '<img data-ip-id="' . $ip_id . '" class="crb-no-hostname" src="' . $crb_assets_url . 'ajax-loader.gif" />' . "\n";
76
  }
77
 
78
  if ( lab_lab() ) {
@@ -352,12 +352,12 @@ function cerber_admin_request(){
352
  if ( $_SERVER['REQUEST_METHOD'] == 'GET') {
353
  if ( isset( $_GET['testnotify'] ) ) {
354
  //$to = implode(', ',cerber_get_email());
355
- $to = cerber_get_email();
356
  if ( cerber_send_notify( $_GET['testnotify'] ) ) {
357
- cerber_admin_message( __( 'Message has been sent to ', 'wp-cerber' ) . ' ' . $to );
358
  }
359
  else {
360
- cerber_admin_notice( __( 'Unable to send notification email', 'wp-cerber' ) . ' ' . $to );
361
  }
362
  wp_safe_redirect( remove_query_arg( 'testnotify' ) ); // mandatory!
363
  exit; // mandatory!
@@ -497,7 +497,7 @@ function cerber_export_activity() {
497
  *
498
  */
499
  function cerber_show_activity($args = array(), $echo = true){
500
- global $wpdb, $crb_assets_url, $wp_cerber, $wp_roles;
501
 
502
  $labels = cerber_get_labels('activity');
503
  $status_labels = cerber_get_labels('status');
@@ -516,8 +516,6 @@ function cerber_show_activity($args = array(), $echo = true){
516
  if ( $rows = $wpdb->get_results( $query ) ) {
517
 
518
  $total = $wpdb->get_var( "SELECT FOUND_ROWS()" );
519
- //$crb_assets_url = plugin_dir_url( CERBER_FILE ) . 'assets/';
520
- $list = array();
521
  $tbody = '';
522
  $roles = $wp_roles->roles;
523
  $country = '';
@@ -581,7 +579,7 @@ function cerber_show_activity($args = array(), $echo = true){
581
  $ip_info = cerber_get_ip_info($row->ip,true);
582
  if (isset($ip_info['hostname'])) $hostname = $ip_info['hostname'];
583
  else {
584
- $hostname = '<img data-ip-id="'.$ip_id .'" class="crb-no-hostname" src="'.$crb_assets_url.'ajax-loader.gif" />'."\n";
585
  }
586
 
587
  $tip='';
@@ -604,30 +602,12 @@ function cerber_show_activity($args = array(), $echo = true){
604
  }
605
 
606
  if ( $geo ) {
607
- /*
608
- if ( $row->country ) {
609
- $code = $row->country;
610
- } else {
611
- $code = lab_get_country( $row->ip );
612
- }
613
-
614
- if ( $code ) {
615
- //$country = cerber_get_flag_html( $code ) . '<a href="'.$base_url.'&filter_country='.$code.'">'.cerber_country_name( $code ).'</a>';
616
- $country = cerber_get_flag_html( $code ) . cerber_country_name( $code );
617
- } else {
618
- $country = '<img data-ip-id="' . $ip_id . '" class="crb-no-country" src="' . $crb_assets_url . 'ajax-loader.gif" />' . "\n";
619
- }
620
-
621
- $country = '</td><td>' . $country;
622
- */
623
  $country = '</td><td>' . crb_country_html($row->country, $row->ip);
624
  }
625
 
626
  $tbody .= '<tr class="acrow'.$row->activity.'"><td><div class="act-icon ip-acl' . $acl . ' ' . $block . '" title="' . $tip . '"></div>' . $ip . '</td><td>' . $hostname . $country . '</td><td>' . $date . '</td><td class="acinfo">' . $activity . '</td><td>' . $name . '</td><td>' . $username . '</td></tr>';
627
  }
628
 
629
- //$titles = '<tr><th><div class="act-icon"></div>' . __( 'IP', 'wp-cerber' ) . '</th><th>' . __( 'Hostname', 'wp-cerber' ) . '</th><th>' . __( 'Date', 'wp-cerber' ) . '</th><th>' . __( 'Event', 'wp-cerber' ) . '</th><th>' . __( 'Local User', 'wp-cerber' ) . '</th><th>' . __( 'Username used', 'wp-cerber' ) . '</th></tr>';
630
-
631
  $heading = array(
632
  '<div class="act-icon"></div>' . __( 'IP', 'wp-cerber' ),
633
  __( 'Hostname', 'wp-cerber' ),
@@ -957,8 +937,7 @@ function cerber_is_admin_page( $force = true, $params = array() ) {
957
  // Users -------------------------------------------------------------------------------------
958
 
959
  add_filter('users_list_table_query_args' , function ($args) {
960
- global $wp_cerber;
961
- if ( $wp_cerber->getSettings( 'usersort' ) && empty( $args['orderby'] ) ) {
962
  $args['orderby'] = 'user_registered';
963
  $args['order'] = 'desc';
964
  }
@@ -1066,7 +1045,7 @@ function cerber_widgets() {
1066
  Cerber Quick View widget
1067
  */
1068
  function cerber_quick_w(){
1069
- global $wpdb, $wp_cerber;
1070
 
1071
  $dash = cerber_admin_link();
1072
  $act = cerber_admin_link('activity');
@@ -1087,7 +1066,6 @@ function cerber_quick_w(){
1087
 
1088
  $lockouts = cerber_blocked_num();
1089
  if ($last = $wpdb->get_var('SELECT MAX(stamp) FROM '.CERBER_LOG_TABLE.' WHERE activity IN (10,11)')) {
1090
- //$last = cerber_date($last);
1091
  $last = cerber_ago_time( $last );
1092
  }
1093
  else $last = __('Never','wp-cerber');
@@ -1096,7 +1074,7 @@ function cerber_quick_w(){
1096
 
1097
  if (cerber_is_citadel()) $citadel = '<span style="color:#FF0000;">'.__('active','wp-cerber').'</span> (<a href="'.wp_nonce_url(add_query_arg(array('citadel' => 'deactivate')),'control','cerber_nonce').'">'.__('deactivate','wp-cerber').'</a>)';
1098
  else {
1099
- if ($wp_cerber->getSettings('ciperiod')) $citadel = __('not active','wp-cerber');
1100
  else $citadel = __('disabled','wp-cerber');
1101
  }
1102
 
@@ -1110,7 +1088,7 @@ function cerber_quick_w(){
1110
  echo '<tr><td style="padding-top:15px;">'.__('White IP Access List','wp-cerber').'</td><td style="padding-top:15px;"><b>'.$w_count.' '._n('entry','entries',$w_count,'wp-cerber').'</b></td></tr>';
1111
  echo '<tr><td>'.__('Black IP Access List','wp-cerber').'</td><td><b>'.$b_count.' '._n('entry','entries',$b_count,'wp-cerber').'</b></td></tr>';
1112
  echo '<tr><td style="padding-top:15px;">'.__('Citadel mode','wp-cerber').'</td><td style="padding-top:15px;"><b>'.$citadel.'</b></td></tr>';
1113
- $dev = $wp_cerber->getSettings('pbdevice');
1114
  if (!$dev || $dev == 'N') echo '<tr><td style="padding-top:15px;">'.__('Push notifications','wp-cerber').'</td><td style="padding-top:15px;"><b>not configured</b></td></tr>';
1115
  echo '</table></div>';
1116
 
@@ -1458,7 +1436,9 @@ function cerber_show_admin_notice(){
1458
  '</p></div>';
1459
  }
1460
 
1461
- if (!cerber_is_admin_page()) return;
 
 
1462
 
1463
  //if ($notices = get_site_option('cerber_admin_notice'))
1464
  // echo '<div class="update-nag crb-note"><p>'.$notices.'</p></div>'; // class="updated" - green, class="update-nag" - yellow and above the page title,
@@ -1496,6 +1476,10 @@ function cerber_show_admin_notice(){
1496
  update_site_option('cerber_admin_notice', null);
1497
  update_site_option('cerber_admin_message', null);
1498
 
 
 
 
 
1499
  if ($notice = get_site_option('cerber_admin_info')) { // need to be dismissed manually
1500
  $cerber_shown = true;
1501
  echo '<div class="updated cerber-msg" style="overflow: auto;"><p>'.$notice.'</p></div>';
@@ -1761,27 +1745,27 @@ function cerber_admin_enqueue($hook) {
1761
  add_action( 'admin_enqueue_scripts', 'cerber_admin_assets', 9999 );
1762
  function cerber_admin_assets() {
1763
 
1764
- $assets_url = plugin_dir_url( __FILE__ ) . 'assets';
1765
 
1766
  if ( cerber_is_admin_page() ) {
1767
 
1768
- wp_register_style( 'crb_multi_css', $assets_url . '/multi/multi.css', null, CERBER_VER );
1769
  wp_enqueue_style( 'crb_multi_css' );
1770
- wp_enqueue_script( 'crb_multi_js', $assets_url . '/multi/multi.min.js', array(), CERBER_VER );
1771
 
1772
  }
1773
 
1774
  if ( ! defined( 'CERBER_BETA' ) ) {
1775
- wp_enqueue_script( 'cerber_js', $assets_url . '/admin.js', array( 'jquery' ), CERBER_VER, true );
1776
  }
1777
 
1778
- wp_register_style( 'cerber_css', $assets_url . '/admin.css', null, CERBER_VER );
1779
  wp_enqueue_style( 'cerber_css' );
1780
 
1781
  // Select2
1782
- //wp_register_style( 'select2css', $assets_url . '/select2/dist/css/select2.min.css' );
1783
  //wp_enqueue_style( 'select2css' );
1784
- //wp_enqueue_script( 'select2js', $assets_url . '/select2/dist/js/select2.min.js', null, null, true );
1785
 
1786
  }
1787
 
@@ -1790,12 +1774,32 @@ function cerber_admin_assets() {
1790
  *
1791
  */
1792
  add_action('admin_head', 'cerber_admin_head' );
 
1793
  function cerber_admin_head(){
1794
  global $assets_url, $crb_assets_url, $crb_ajax_loader;
1795
 
1796
  $assets_url = plugin_dir_url( CERBER_FILE ) . 'assets/';
1797
- $crb_assets_url = plugin_dir_url( CERBER_FILE ) . 'assets/';
 
1798
  $crb_ajax_loader = $crb_assets_url . 'ajax-loader.gif';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1799
 
1800
  if (defined('CERBER_BETA')) :
1801
  ?>
@@ -1870,24 +1874,8 @@ function cerber_admin_head(){
1870
  */
1871
  add_action( 'admin_footer', 'cerber_admin_footer' );
1872
  function cerber_admin_footer() {
1873
- global $crb_ajax_loader;
1874
- //add_some_pointers();
1875
-
1876
- $ajax_nonce = wp_create_nonce( 'crb-ajax-admin' );
1877
- if (lab_lab()) {
1878
- $crb_lab_available = 'true';
1879
- }
1880
- else {
1881
- $crb_lab_available = 'false';
1882
- }
1883
- ?>
1884
- <script type="text/javascript">
1885
- crb_ajax_nonce = '<?php echo $ajax_nonce; ?>';
1886
- crb_ajax_loader = '<?php echo $crb_ajax_loader; ?>';
1887
- crb_lab_available = <?php echo $crb_lab_available; ?>;
1888
- </script>
1889
 
1890
- <?php
1891
 
1892
  if ( defined( 'CERBER_BETA' ) && cerber_is_admin_page( false ) ) :
1893
  ?>
@@ -2048,7 +2036,7 @@ function cerber_show_geo_rules(){
2048
  $info = sprintf( _n( 'Permitted for one country', 'Permitted for %d countries', $num, 'wp-cerber' ), $num );
2049
  }
2050
  else {
2051
- $info = sprintf( _n( 'Blocked for one country', 'Blocked for %d countries', $num, 'wp-cerber' ), $num );
2052
  }
2053
  if ($num == 1) {
2054
  $info .= ' (' . current( $config['list'] ) . ')';
@@ -2197,10 +2185,10 @@ function cerber_country_form( $config = array(), $rule_id = '', $rule = array()
2197
 
2198
  <p style="margin-top: 2em;">
2199
  <input type="radio" value="W" name="crb-'.$rule_id.'-type" id="geo-type-'.$rule_id.'-W" '.$w.'>
2200
- <label for="geo-type-' . $rule_id . '-W">' . sprintf( __( 'Selected countries are allowed to %s other countries are not allowed', 'wp-cerber' ), $desc ) . '</label>
2201
  <p>
2202
  <input type="radio" value="B" name="crb-'.$rule_id.'-type" id="geo-type-'.$rule_id.'-B" '.$b.'>
2203
- <label for="geo-type-' . $rule_id . '-B">' . sprintf( __( 'Selected countries are not allowed to %s other countries are allowed', 'wp-cerber' ), $desc ) . '</label>
2204
  </p>';
2205
 
2206
  //$ret .= '<p style="text-align: right;"><input type="submit" class="button button-primary" value="Save the rule"></p>'.wp_nonce_field('cerber_dashboard','cerber_nonce');
@@ -2262,7 +2250,7 @@ function crb_save_geo_rules(){
2262
  }
2263
 
2264
  function crb_country_html($code = null, $ip = null){
2265
- global $assets_url;
2266
 
2267
  if (!lab_lab()){
2268
  return '';
@@ -2271,7 +2259,8 @@ function crb_country_html($code = null, $ip = null){
2271
  if ( ! $code ) {
2272
  if ( $ip ) {
2273
  $code = lab_get_country( $ip );
2274
- } else {
 
2275
  return '';
2276
  }
2277
  }
@@ -2282,7 +2271,7 @@ function crb_country_html($code = null, $ip = null){
2282
  }
2283
  else {
2284
  $ip_id = cerber_get_id_ip($ip);
2285
- $ret = '<img data-ip-id="' . $ip_id . '" class="crb-no-country" src="' . $assets_url . 'ajax-loader.gif" />' . "\n";
2286
  }
2287
 
2288
  return $ret;
47
  Display lockouts in dashboard for admins
48
  */
49
  function cerber_show_lockouts($args = array(), $echo = true){
50
+ global $wpdb, $crb_ajax_loader;
51
 
52
  //$wp_cerber->deleteGarbage();
53
 
72
  }
73
  else {
74
  $ip_id = cerber_get_id_ip( $row->ip );
75
+ $hostname = '<img data-ip-id="' . $ip_id . '" class="crb-no-hostname" src="' . $crb_ajax_loader . '" />' . "\n";
76
  }
77
 
78
  if ( lab_lab() ) {
352
  if ( $_SERVER['REQUEST_METHOD'] == 'GET') {
353
  if ( isset( $_GET['testnotify'] ) ) {
354
  //$to = implode(', ',cerber_get_email());
355
+ $to = cerber_get_email($_GET['testnotify']);
356
  if ( cerber_send_notify( $_GET['testnotify'] ) ) {
357
+ cerber_admin_message( __( 'Email has been sent to', 'wp-cerber' ) . ' ' . $to );
358
  }
359
  else {
360
+ cerber_admin_notice( __( 'Unable to send email to', 'wp-cerber' ) . ' ' . $to );
361
  }
362
  wp_safe_redirect( remove_query_arg( 'testnotify' ) ); // mandatory!
363
  exit; // mandatory!
497
  *
498
  */
499
  function cerber_show_activity($args = array(), $echo = true){
500
+ global $wpdb, $crb_ajax_loader, $wp_roles;
501
 
502
  $labels = cerber_get_labels('activity');
503
  $status_labels = cerber_get_labels('status');
516
  if ( $rows = $wpdb->get_results( $query ) ) {
517
 
518
  $total = $wpdb->get_var( "SELECT FOUND_ROWS()" );
 
 
519
  $tbody = '';
520
  $roles = $wp_roles->roles;
521
  $country = '';
579
  $ip_info = cerber_get_ip_info($row->ip,true);
580
  if (isset($ip_info['hostname'])) $hostname = $ip_info['hostname'];
581
  else {
582
+ $hostname = '<img data-ip-id="' . $ip_id . '" class="crb-no-hostname" src="' . $crb_ajax_loader . '" />' . "\n";
583
  }
584
 
585
  $tip='';
602
  }
603
 
604
  if ( $geo ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
605
  $country = '</td><td>' . crb_country_html($row->country, $row->ip);
606
  }
607
 
608
  $tbody .= '<tr class="acrow'.$row->activity.'"><td><div class="act-icon ip-acl' . $acl . ' ' . $block . '" title="' . $tip . '"></div>' . $ip . '</td><td>' . $hostname . $country . '</td><td>' . $date . '</td><td class="acinfo">' . $activity . '</td><td>' . $name . '</td><td>' . $username . '</td></tr>';
609
  }
610
 
 
 
611
  $heading = array(
612
  '<div class="act-icon"></div>' . __( 'IP', 'wp-cerber' ),
613
  __( 'Hostname', 'wp-cerber' ),
937
  // Users -------------------------------------------------------------------------------------
938
 
939
  add_filter('users_list_table_query_args' , function ($args) {
940
+ if ( crb_get_settings( 'usersort' ) && empty( $args['orderby'] ) ) {
 
941
  $args['orderby'] = 'user_registered';
942
  $args['order'] = 'desc';
943
  }
1045
  Cerber Quick View widget
1046
  */
1047
  function cerber_quick_w(){
1048
+ global $wpdb;
1049
 
1050
  $dash = cerber_admin_link();
1051
  $act = cerber_admin_link('activity');
1066
 
1067
  $lockouts = cerber_blocked_num();
1068
  if ($last = $wpdb->get_var('SELECT MAX(stamp) FROM '.CERBER_LOG_TABLE.' WHERE activity IN (10,11)')) {
 
1069
  $last = cerber_ago_time( $last );
1070
  }
1071
  else $last = __('Never','wp-cerber');
1074
 
1075
  if (cerber_is_citadel()) $citadel = '<span style="color:#FF0000;">'.__('active','wp-cerber').'</span> (<a href="'.wp_nonce_url(add_query_arg(array('citadel' => 'deactivate')),'control','cerber_nonce').'">'.__('deactivate','wp-cerber').'</a>)';
1076
  else {
1077
+ if (crb_get_settings('ciperiod')) $citadel = __('not active','wp-cerber');
1078
  else $citadel = __('disabled','wp-cerber');
1079
  }
1080
 
1088
  echo '<tr><td style="padding-top:15px;">'.__('White IP Access List','wp-cerber').'</td><td style="padding-top:15px;"><b>'.$w_count.' '._n('entry','entries',$w_count,'wp-cerber').'</b></td></tr>';
1089
  echo '<tr><td>'.__('Black IP Access List','wp-cerber').'</td><td><b>'.$b_count.' '._n('entry','entries',$b_count,'wp-cerber').'</b></td></tr>';
1090
  echo '<tr><td style="padding-top:15px;">'.__('Citadel mode','wp-cerber').'</td><td style="padding-top:15px;"><b>'.$citadel.'</b></td></tr>';
1091
+ $dev = crb_get_settings('pbdevice');
1092
  if (!$dev || $dev == 'N') echo '<tr><td style="padding-top:15px;">'.__('Push notifications','wp-cerber').'</td><td style="padding-top:15px;"><b>not configured</b></td></tr>';
1093
  echo '</table></div>';
1094
 
1436
  '</p></div>';
1437
  }
1438
 
1439
+ if ( ! cerber_is_admin_page() ) {
1440
+ return;
1441
+ }
1442
 
1443
  //if ($notices = get_site_option('cerber_admin_notice'))
1444
  // echo '<div class="update-nag crb-note"><p>'.$notices.'</p></div>'; // class="updated" - green, class="update-nag" - yellow and above the page title,
1476
  update_site_option('cerber_admin_notice', null);
1477
  update_site_option('cerber_admin_message', null);
1478
 
1479
+ if ( ! cerber_is_admin_page( false ) ) {
1480
+ return;
1481
+ }
1482
+
1483
  if ($notice = get_site_option('cerber_admin_info')) { // need to be dismissed manually
1484
  $cerber_shown = true;
1485
  echo '<div class="updated cerber-msg" style="overflow: auto;"><p>'.$notice.'</p></div>';
1745
  add_action( 'admin_enqueue_scripts', 'cerber_admin_assets', 9999 );
1746
  function cerber_admin_assets() {
1747
 
1748
+ $crb_assets_url = plugin_dir_url( __FILE__ ) . 'assets/';
1749
 
1750
  if ( cerber_is_admin_page() ) {
1751
 
1752
+ wp_register_style( 'crb_multi_css', $crb_assets_url . 'multi/multi.css', null, CERBER_VER );
1753
  wp_enqueue_style( 'crb_multi_css' );
1754
+ wp_enqueue_script( 'crb_multi_js', $crb_assets_url . 'multi/multi.min.js', array(), CERBER_VER );
1755
 
1756
  }
1757
 
1758
  if ( ! defined( 'CERBER_BETA' ) ) {
1759
+ wp_enqueue_script( 'cerber_js', $crb_assets_url . 'admin.js', array( 'jquery' ), CERBER_VER, true );
1760
  }
1761
 
1762
+ wp_register_style( 'cerber_css', $crb_assets_url . 'admin.css', null, CERBER_VER );
1763
  wp_enqueue_style( 'cerber_css' );
1764
 
1765
  // Select2
1766
+ //wp_register_style( 'select2css', $crb_assets_url . 'select2/dist/css/select2.min.css' );
1767
  //wp_enqueue_style( 'select2css' );
1768
+ //wp_enqueue_script( 'select2js', $crb_assets_url . 'select2/dist/js/select2.min.js', null, null, true );
1769
 
1770
  }
1771
 
1774
  *
1775
  */
1776
  add_action('admin_head', 'cerber_admin_head' );
1777
+ add_action('customize_controls_print_scripts', 'cerber_admin_head' ); // @since 5.8.1
1778
  function cerber_admin_head(){
1779
  global $assets_url, $crb_assets_url, $crb_ajax_loader;
1780
 
1781
  $assets_url = plugin_dir_url( CERBER_FILE ) . 'assets/';
1782
+
1783
+ $crb_assets_url = plugin_dir_url( CERBER_FILE ) . 'assets/';
1784
  $crb_ajax_loader = $crb_assets_url . 'ajax-loader.gif';
1785
+ $crb_ajax_nonce = wp_create_nonce( 'crb-ajax-admin' );
1786
+
1787
+ if (lab_lab()) {
1788
+ $crb_lab_available = 'true';
1789
+ }
1790
+ else {
1791
+ $crb_lab_available = 'false';
1792
+ }
1793
+
1794
+ ?>
1795
+
1796
+ <script type="text/javascript">
1797
+ crb_ajax_nonce = '<?php echo $crb_ajax_nonce; ?>';
1798
+ crb_ajax_loader = '<?php echo $crb_ajax_loader; ?>';
1799
+ crb_lab_available = <?php echo $crb_lab_available; ?>;
1800
+ </script>
1801
+
1802
+ <?php
1803
 
1804
  if (defined('CERBER_BETA')) :
1805
  ?>
1874
  */
1875
  add_action( 'admin_footer', 'cerber_admin_footer' );
1876
  function cerber_admin_footer() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1877
 
1878
+ //add_some_pointers();
1879
 
1880
  if ( defined( 'CERBER_BETA' ) && cerber_is_admin_page( false ) ) :
1881
  ?>
2036
  $info = sprintf( _n( 'Permitted for one country', 'Permitted for %d countries', $num, 'wp-cerber' ), $num );
2037
  }
2038
  else {
2039
+ $info = sprintf( _n( 'Not permitted for one country', 'Not permitted for %d countries', $num, 'wp-cerber' ), $num );
2040
  }
2041
  if ($num == 1) {
2042
  $info .= ' (' . current( $config['list'] ) . ')';
2185
 
2186
  <p style="margin-top: 2em;">
2187
  <input type="radio" value="W" name="crb-'.$rule_id.'-type" id="geo-type-'.$rule_id.'-W" '.$w.'>
2188
+ <label for="geo-type-' . $rule_id . '-W">' . sprintf( _x( 'Selected countries are permitted to %s, other countries are not permitted to', 'to is a marker of infinitive, e.g. "to use it"', 'wp-cerber' ), $desc ) . '</label>
2189
  <p>
2190
  <input type="radio" value="B" name="crb-'.$rule_id.'-type" id="geo-type-'.$rule_id.'-B" '.$b.'>
2191
+ <label for="geo-type-' . $rule_id . '-B">' . sprintf( _x( 'Selected countries are not permitted to %s, other countries are permitted to', 'to is a marker of infinitive, e.g. "to use it"', 'wp-cerber' ), $desc ) . '</label>
2192
  </p>';
2193
 
2194
  //$ret .= '<p style="text-align: right;"><input type="submit" class="button button-primary" value="Save the rule"></p>'.wp_nonce_field('cerber_dashboard','cerber_nonce');
2250
  }
2251
 
2252
  function crb_country_html($code = null, $ip = null){
2253
+ global $crb_ajax_loader;
2254
 
2255
  if (!lab_lab()){
2256
  return '';
2259
  if ( ! $code ) {
2260
  if ( $ip ) {
2261
  $code = lab_get_country( $ip );
2262
+ }
2263
+ else {
2264
  return '';
2265
  }
2266
  }
2271
  }
2272
  else {
2273
  $ip_id = cerber_get_id_ip($ip);
2274
+ $ret = '<img data-ip-id="' . $ip_id . '" class="crb-no-country" src="' . $crb_ajax_loader . '" />' . "\n";
2275
  }
2276
 
2277
  return $ret;
languages/wp-cerber-de_DE.mo CHANGED
Binary file
languages/wp-cerber-de_DE.po CHANGED
@@ -4,1270 +4,1564 @@ msgstr ""
4
  "Content-Type: text/plain; charset=UTF-8\n"
5
  "Content-Transfer-Encoding: 8bit\n"
6
  "X-Generator: POEditor.com\n"
7
- "Project-Id-Version: WP Cerber\n"
8
  "Language: de\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
 
11
- #: ../settings.php:57
12
  msgid "Limit login attempts"
13
  msgstr "Anmeldeversuche limitieren"
14
 
15
- #: ../settings.php:58
16
  msgid "Attempts"
17
  msgstr "Versuche"
18
 
19
- #: ../settings.php:59
20
  msgid "Lockout duration"
21
  msgstr "Sperrdauer"
22
 
23
- #: ../settings.php:59 ../settings.php:78
24
  msgid "minutes"
25
  msgstr "Minuten"
26
 
27
- #: ../settings.php:60
28
  msgid "Aggressive lockout"
29
  msgstr "Aggressive Sperre"
30
 
31
- #: ../settings.php:63
32
  msgid "Site connection"
33
  msgstr "Verbindung zur Website"
34
 
35
- #: ../settings.php:65
36
  msgid "Proactive security rules"
37
  msgstr "Proaktive Sicherheitsregeln"
38
 
39
- #: ../settings.php:66
40
  msgid "Block subnet"
41
  msgstr "Sperre Subnetz"
42
 
43
- #: ../settings.php:69
44
  msgid "Request wp-login.php"
45
  msgstr "Anfrage wp-login.php"
46
 
47
- #: ../settings.php:69
48
  msgid "Immediately block IP after any request to wp-login.php"
49
  msgstr "IP nach jeder Anfrage auf wp-login.php sofort sperren"
50
 
51
- #: ../settings.php:68
52
  msgid "Redirect dashboard requests"
53
  msgstr "Dashboard-Anfragen umleiten"
54
 
55
- #: ../settings.php:72
56
  msgid "Custom login page"
57
  msgstr "Benutzerdefinierte Login-Seite"
58
 
59
- #: ../settings.php:73
60
  msgid "Custom login URL"
61
  msgstr "Benutzerdefinierte Login-URL"
62
 
63
  #. There is no perfect translation for "slug" with keeping the context. "Permalink" describes the whole URL but is used by WordPress in this place.
64
- #: ../settings.php:73
65
  #, fuzzy
66
  msgid "must not overlap with the existing pages or posts slug"
67
  msgstr "darf sich nicht mit Permalinks von vorhandenen Seiten oder Beiträgen überlappen"
68
 
69
- #: ../settings.php:74
70
  msgid "Disable wp-login.php"
71
  msgstr "Deaktiviere wp-login.php"
72
 
73
- #: ../settings.php:74
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:904 ../settings.php:76
78
  msgid "Citadel mode"
79
  msgstr "Citadel Modus"
80
 
81
- #: ../settings.php:77
82
  msgid "Threshold"
83
  msgstr "Schwelle"
84
 
85
- #: ../settings.php:78
86
  msgid "Duration"
87
  msgstr "Dauer"
88
 
89
- #: ../wp-cerber.php:2830 ../settings.php:62 ../settings.php:80 ../settings.php:238
90
  msgid "Notifications"
91
  msgstr "Benachrichtigungen"
92
 
93
- #: ../settings.php:80
94
  msgid "Send notification to admin email"
95
  msgstr "Sende eine Benachrichtigung an die Emailadresse des Admins"
96
 
97
- #: ../dashboard.php:913 ../dashboard.php:1413 ../wp-cerber.php:2828 ../settings.
98
- #: php:231 ../cerber-tools.php:87 ../cerber-tools.php:96 ../cerber-tools.php:162
99
  msgid "Access Lists"
100
  msgstr "Zugriffslisten"
101
 
102
- #: ../dashboard.php:911 ../dashboard.php:1082 ../wp-cerber.php:2695 ../settings.
103
- #: php:82 ../settings.php:222
104
  msgid "Activity"
105
  msgstr "Aktivität"
106
 
107
- #: ../dashboard.php:912 ../settings.php:226
108
  msgid "Lockouts"
109
  msgstr "Sperren"
110
 
111
- #: ../settings.php:353
112
  msgid "%s allowed retries in %s minutes"
113
  msgstr "%s erlaubte Wiederholungen in %s Minuten"
114
 
115
- #: ../settings.php:370
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:77 ../dashboard.php:502 ../wp-cerber.php:2696
120
  msgid "IP"
121
  msgstr "IP"
122
 
123
- #: ../dashboard.php:355 ../dashboard.php:502
124
  msgid "Date"
125
  msgstr "Datum"
126
 
127
- #: ../dashboard.php:355 ../dashboard.php:502
128
  msgid "Local User"
129
  msgstr "Lokaler Benutzer"
130
 
131
- #: ../dashboard.php:355 ../dashboard.php:502 ../wp-cerber.php:2704
132
  msgid "Username used"
133
  msgstr "Benutzername wird bereits verwendet"
134
 
135
- #: ../dashboard.php:83
136
  msgid "Showing last %d records from %d"
137
  msgstr "Zeige die letzten %d Einträge von %d"
138
 
139
- #: ../common.php:335
140
  msgid "Logged in"
141
  msgstr "Eingeloggt"
142
 
143
- #: ../common.php:336
144
  msgid "Logged out"
145
  msgstr "Ausgeloggt"
146
 
147
- #: ../common.php:337
148
  msgid "Login failed"
149
  msgstr "Login fehlgeschlagen"
150
 
151
- #: ../common.php:340
152
  msgid "IP blocked"
153
  msgstr "IP geblockt"
154
 
155
- #: ../common.php:341
156
  msgid "Subnet blocked"
157
  msgstr "Subnetz geblockt"
158
 
159
- #: ../common.php:343
160
  msgid "Citadel activated!"
161
  msgstr "Citadel-Modus aktiviert!"
162
 
163
- #: ../dashboard.php:488 ../dashboard.php:668 ../common.php:347
164
  msgid "Locked out"
165
  msgstr "Ausgesperrt"
166
 
167
  #. 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).
168
- #: ../common.php:348
169
  #, fuzzy
170
  msgid "IP blacklisted"
171
  msgstr "IP blockiert"
172
 
173
- #: ../common.php:354
174
  msgid "Password changed"
175
  msgstr "Passwort geändert"
176
 
177
- #: ../dashboard.php:74 ../dashboard.php:123
178
  msgid "Remove"
179
  msgstr "Entfernen"
180
 
181
- #: ../dashboard.php:270
182
  msgid "Lockout for %s was removed"
183
  msgstr "Die Sperre für %s wurde entfernt"
184
 
185
- #: ../dashboard.php:102 ../dashboard.php:483 ../dashboard.php:663 ../dashboard.
186
- #: php:902 ../wp-cerber.php:2822 ../settings.php:61 ../settings.php:192
187
  #, fuzzy
188
  msgid "White IP Access List"
189
  msgstr "Weiße Liste (erlaubten IPs)"
190
 
191
- #: ../dashboard.php:104 ../dashboard.php:484 ../dashboard.php:665 ../dashboard.
192
- #: php:903
193
  #, fuzzy
194
  msgid "Black IP Access List"
195
  msgstr "Schwarze Liste (verbotenen IPs)"
196
 
197
- #: ../dashboard.php:126
198
  msgid "List is empty"
199
  msgstr "Liste ist leer"
200
 
201
- #: ../dashboard.php:153
202
  msgid "Address %s was added to White IP Access List"
203
  msgstr "Adresse %s wurde zur Liste der erlaubten IPs hinzugefügt"
204
 
205
- #: ../dashboard.php:166
206
  msgid "Address %s was added to Black IP Access List"
207
  msgstr "Adresse %s wurde zur Liste der verbotenen IPs hinzugefügt"
208
 
209
- #: ../wp-cerber.php:2368
210
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
211
  msgstr "Citadel-Modus ist aktiviert nach %d fehlgeschlagenen Logins in %d Minuten."
212
 
213
- #: ../dashboard.php:1205
214
  msgid "View Activity"
215
  msgstr "Aktivitäten anzeigen"
216
 
217
- #: ../cerber-tools.php:86 ../cerber-tools.php:95
218
  msgid "Settings"
219
  msgstr "Einstellungen"
220
 
221
- #: ../dashboard.php:803
222
  msgid "Last login"
223
  msgstr "Letzte Anmeldung"
224
 
225
- #: ../dashboard.php:830 ../dashboard.php:885
226
  msgid "Never"
227
  msgstr "Niemals"
228
 
229
- #: ../dashboard.php:1125
230
  msgid "Are you sure?"
231
  msgstr "Sind Sie sicher?"
232
 
233
- #: ../settings.php:63
234
  msgid "My site is behind a reverse proxy"
235
  msgstr "Meine Website ist hinter einem Reverse-Proxy"
236
 
237
- #: ../settings.php:67
238
  msgid "Non-existent users"
239
  msgstr "Nicht vorhandene Benutzer"
240
 
241
- #: ../settings.php:67
242
  msgid "Immediately block IP when attempting to login with a non-existent username"
243
  msgstr "IP sofort sperren, wenn versucht wird, sich mit einem nicht vorhandenen Benutzernamen einzuloggen "
244
 
245
- #: ../settings.php:68
246
  msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
247
  msgstr "Die automatische Umleitung auf die Anmeldeseite deaktivieren, wenn /wp-admin/ von einer nicht autorisierten Anfrage aufgerufen wird"
248
 
249
  #. A fuzzy translation that is mostly used in this context would be "Machen Sie Ihren Schutz intelligenter!"
250
- #: ../settings.php:178
251
  msgid "Make your protection smarter!"
252
  msgstr "Machen Sie Ihren Schutz schlauer!"
253
 
254
- #: ../settings.php:182
255
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
256
  msgstr "Bitte aktivieren Sie Permalinks um dieses Merkmal zu verwenden. Setzen Sie die Permalink-Einstellungen auf etwas anderes als Standard."
257
 
258
- #: ../settings.php:185
259
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
260
  msgstr "Seien Sie vorsichtig bei der Aktivierung dieser Optionen. Wenn Sie die benutzerdefinierte Login-URL vergessen, können Sie sich nicht mehr anmelden."
261
 
262
- #: ../wp-cerber.php:2827 ../settings.php:228
263
  msgid "Main Settings"
264
  msgstr "Haupteinstellungen"
265
 
266
- #: ../settings.php:240
267
  msgid "Help"
268
  msgstr "Hilfe"
269
 
270
  #. "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.
271
- #: ../settings.php:358
272
  #, fuzzy
273
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
274
  msgstr "Erhöhe die Sperrdauer um %s Stunden nach %s Aussperrungen in den letzten %s Stunden"
275
 
276
- #: ../wp-cerber.php:215
277
  msgid "You are not allowed to log in. Ask your administrator for assistance."
278
  msgstr "Sie sind nicht berechtigt, sich anzumelden. Fragen Sie Ihren Administrator nach Unterstützung."
279
 
280
  #. One "Minute", two/three/four/... "Minuten".
281
- #: ../wp-cerber.php:221
282
  #, fuzzy
283
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
284
  msgstr "Sie haben die maximale Anzahl an Login-Versuchen erreicht. Bitte versuchen Sie es in %d Minuten noch einmal."
285
 
286
- #: ../wp-cerber.php:240
287
  msgid "You have only one attempt remaining."
288
  msgid_plural "You have %d attempts remaining."
289
  msgstr[0] "Sie haben nur noch einen Versuch."
290
  msgstr[1] "Sie haben nur noch %d Versuche."
291
 
292
- #: ../dashboard.php:515
293
  msgid "No activity has been logged."
294
  msgstr "Keine Aktivität wurde protokolliert."
295
 
296
- #: ../dashboard.php:77
297
  msgid "Expires"
298
  msgstr "Gültig bis"
299
 
300
- #: ../dashboard.php:89
301
  msgid "No lockouts at the moment. The sky is clear."
302
  msgstr "Keine Sperrung im Moment. Der Himmel ist klar."
303
 
304
- #: ../dashboard.php:102
305
  msgid "These IPs will never be locked out"
306
  msgstr "Diese IPs werden nie gesperrt"
307
 
308
- #: ../dashboard.php:106
309
  msgid "Your IP"
310
  msgstr "Ihre IP"
311
 
312
- #: ../dashboard.php:162
313
  msgid "You can't add your IP address"
314
  msgstr "Sie können Ihre IP Adresse nicht hinzufügen"
315
 
316
- #: ../wp-cerber.php:2369
317
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
318
  msgstr "Der letzte gescheiterte Versuch war um %s von der IP %s mit der Benutzeranmeldung: %s."
319
 
320
- #: ../wp-cerber.php:2432
321
- msgid "Change notification settings"
322
- msgstr "Benachrichtigungseinstellungen ändern"
323
-
324
- #: ../wp-cerber.php:2805
325
  msgid "Can't activate WP Cerber due to a database error."
326
  msgstr "Kann WP Cerber aufgrund eines Datenbankfehlers nicht aktivieren."
327
 
328
- #: ../settings.php:365
329
  msgid "Notify admin if the number of active lockouts above"
330
  msgstr "Benachrichtige den Admin, wenn die Anzahl von aktiven Aussperrungen größer ist als"
331
 
332
- #: ../settings.php:83 ../settings.php:126
333
  msgid "days"
334
  msgstr "Tage"
335
 
336
- #: ../dashboard.php:854
337
  msgid "Cerber Quick View"
338
  msgstr "Cerber Schnellansicht"
339
 
340
- #: ../dashboard.php:85
341
  msgid "Hint"
342
  msgstr "Hinweis"
343
 
344
- #: ../dashboard.php:85
345
  msgid "To view activity, click on the IP"
346
  msgstr "Um die Aktivität sehen zu können, klicken Sie auf die IP"
347
 
348
- #: ../dashboard.php:123 ../dashboard.php:695
349
  msgid "Check for activity"
350
  msgstr "Auf Aktivität überprüfen"
351
 
352
- #: ../settings.php:66
353
  msgid "Always block entire subnet Class C of intruders IP"
354
  msgstr "Immer das gesamte Subnetz Klasse C der IP des Eindringlings blockieren"
355
 
356
- #: ../settings.php:80 ../settings.php:367
357
  msgid "Click to send test"
358
  msgstr "Klicken für Sendungstest"
359
 
360
- #: ../settings.php:460
361
  msgid "Attention! You have changed the login URL! The new login URL is"
362
  msgstr "Achtung! Sie haben die Anmelde-URL geändert! Die neue Login-URL ist"
363
 
364
- #: ../dashboard.php:802
365
  msgid "Comments"
366
  msgstr "Kommentare"
367
 
368
- #: ../dashboard.php:805
369
- msgid "Date of registration"
370
- msgstr "Registrierungsdatum"
371
-
372
- #: ../dashboard.php:259
373
- msgid "Message has been sent to "
374
- msgstr "Die Nachricht wurde gesendet an␣"
375
-
376
- #: ../dashboard.php:1286
377
  msgid "Update to version %s of WP Cerber"
378
  msgstr "Update auf Version %s von WP Cerber"
379
 
380
- #: ../wp-cerber.php:2370 ../wp-cerber.php:2720
381
  msgid "View activity in dashboard"
382
  msgstr "Zeige Aktivität im Dashboard"
383
 
384
- #: ../wp-cerber.php:2400
385
  msgid "Number of active lockouts"
386
  msgstr "Anzahl der aktiven Sperren"
387
 
388
- #: ../wp-cerber.php:2404
389
  msgid "View lockouts in dashboard"
390
  msgstr "Zeige Sperren im Dashboard"
391
 
392
- #: ../wp-cerber.php:2457
393
  msgid "This message was sent by"
394
  msgstr "Diese Nachricht wurde gesendet von"
395
 
396
  #. Used to be "Import/Export" but this is a fuzzy translation. Exact translation that WordPress also uses is "Werkzeuge".
397
- #: ../dashboard.php:749 ../cerber-tools.php:43
398
  msgid "Tools"
399
  msgstr "Werkzeuge"
400
 
401
- #: ../cerber-tools.php:83
402
  msgid "Export settings to the file"
403
  msgstr "Einstellungen in Datei exportieren"
404
 
405
  #. "below" is ignored in the translation.
406
- #: ../cerber-tools.php:84
407
  #, fuzzy
408
  msgid "When you click the button below you will get a configuration file, which you can upload on another site."
409
  msgstr "Wenn Sie auf den Button klicken, bekommen Sie eine Konfigurationsdatei, die Sie auf einer anderen Website hochladen können."
410
 
411
- #: ../cerber-tools.php:85
412
  msgid "What do you want to export?"
413
  msgstr "Was wollen Sie exportieren?"
414
 
415
- #: ../cerber-tools.php:88
416
  msgid "Download file"
417
  msgstr "Datei herunterladen"
418
 
419
- #: ../cerber-tools.php:90
420
  msgid "Import settings from the file"
421
  msgstr "Einstellungen aus Datei importieren"
422
 
423
  #. "below" is ignored in the translation.
424
- #: ../cerber-tools.php:91
425
  #, fuzzy
426
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
427
  msgstr "Wenn Sie auf den Button klicken, wird die Datei hochgeladen und alle vorhandenen Einstellungen werden überschrieben."
428
 
429
- #: ../cerber-tools.php:92
430
  msgid "Select file to import."
431
  msgstr "Datei zum Importieren auswählen."
432
 
433
- #: ../cerber-tools.php:92
434
  msgid "Maximum upload file size: %s."
435
  msgstr "Maximale Dateigröße für Uploads: %s"
436
 
437
- #: ../cerber-tools.php:95
438
  msgid "What do you want to import?"
439
  msgstr "Was wollen Sie importieren?"
440
 
441
- #: ../cerber-tools.php:97
442
  msgid "Upload file"
443
  msgstr "Datei hochladen"
444
 
445
- #: ../cerber-tools.php:132
446
  msgid "No file was uploaded or file is corrupted"
447
  msgstr "Keine Datei hochgeladen oder Datei ist beschädigt"
448
 
449
- #: ../cerber-tools.php:162
450
  msgid "Error while updating"
451
  msgstr "Fehler bei der Aktualisierung"
452
 
453
- #: ../cerber-tools.php:165
454
  msgid "Settings has imported successfully from"
455
  msgstr "Einstellungen erfolgreich importiert von"
456
 
457
- #: ../cerber-tools.php:169
458
  msgid "Error while parsing file"
459
  msgstr "Fehler beim Parsen der Datei"
460
 
461
- #: ../dashboard.php:77 ../dashboard.php:502
462
  msgid "Hostname"
463
  msgstr "Hostname"
464
 
465
- #: ../dashboard.php:237
466
  #, fuzzy
467
  msgid "unknown"
468
  msgstr "unbekannt"
469
 
470
- #: ../settings.php:83
471
  msgid "Keep records for"
472
  msgstr "Behalte Aufzeichnungen für"
473
 
474
- #: ../dashboard.php:889
475
  msgid "active"
476
  msgstr "aktiv"
477
 
478
- #: ../dashboard.php:889
479
  msgid "deactivate"
480
  msgstr "deaktiviert"
481
 
482
- #: ../dashboard.php:891
483
  msgid "not active"
484
  msgstr "nicht aktiv"
485
 
486
  #. "deactive" and "disabled" mean exactly the same in German.
487
- #: ../dashboard.php:892
488
  msgid "disabled"
489
  msgstr "deaktiviert"
490
 
491
- #: ../dashboard.php:897
492
  msgid "failed attempts"
493
  msgstr "Fehlversuche"
494
 
495
- #: ../dashboard.php:897 ../dashboard.php:898
496
  msgid "in 24 hours"
497
  msgstr "in 24 Stunden"
498
 
499
- #: ../dashboard.php:897 ../dashboard.php:898
500
  msgid "view all"
501
  msgstr "Zeige alle"
502
 
503
- #: ../dashboard.php:898
504
  msgid "lockouts"
505
  msgstr "Sperren"
506
 
507
- #: ../dashboard.php:900
508
  msgid "Lockouts at the moment"
509
  msgstr "Momentane Sperren"
510
 
511
- #: ../dashboard.php:901
512
  msgid "Last lockout"
513
  msgstr "Letzte Sperre"
514
 
515
- #: ../dashboard.php:902 ../dashboard.php:903 ../dashboard.php:1392
516
  msgid "entry"
517
  msgid_plural "entries"
518
  msgstr[0] "Eintrag"
519
  msgstr[1] "Einträge"
520
 
521
- #: ../dashboard.php:1120
522
  #, fuzzy
523
  msgid "Confused about some settings?"
524
  msgstr "Verwirrende Einstellungen?"
525
 
526
- #: ../dashboard.php:1121
527
  msgid "You can easily load default recommended settings using button below"
528
  msgstr "Sie können ganz einfach mit dem unteren Button empfohlene Standardeinstellungen laden"
529
 
530
- #: ../dashboard.php:1123
531
  msgid "Load default settings"
532
  msgstr "Standardeinstellung laden"
533
 
534
- #: ../dashboard.php:1131
535
  msgid "doesn't affect Custom login URL and Access Lists"
536
  msgstr "hat keinen Einfluss auf benutzerdefinierte Login-URL und Zugriffslisten"
537
 
538
- #: ../dashboard.php:1150
539
- msgid "Donate"
540
- msgstr "Spenden"
541
-
542
- #: ../dashboard.php:1280
543
  msgid "New version is available"
544
  msgstr "Eine neue Version ist verfügbar"
545
 
546
  #. Name of the plugin
547
- #: ../dashboard.php:744 ../dashboard.php:759
548
  msgid "WP Cerber"
549
  msgstr "WP Cerber"
550
 
551
- #. URI of the plugin
552
- #:
553
- msgid "http://wpcerber.com"
554
- msgstr "http://wpcerber.com"
555
-
556
- #: ../wp-cerber.php:2348
557
  msgid "WP Cerber notify"
558
  msgstr "WP Cerber benachrichtigen"
559
 
560
- #: ../wp-cerber.php:2366
561
  msgid "Citadel mode is activated"
562
  msgstr "Citadel-Modus ist aktiviert"
563
 
564
- #: ../wp-cerber.php:2437
565
  msgid "New Custom login URL"
566
  msgstr "Neue benutzerdefinierte Login-URL"
567
 
568
- #: ../wp-cerber.php:2796
569
  msgid "The WP Cerber requires PHP %s or higher. You are running"
570
  msgstr "WP Cerber benötigt PHP Version %s oder höher. Sie haben"
571
 
572
- #: ../wp-cerber.php:2800
573
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
574
  msgstr "WP Cerber benötigt Wordpress Version %s oder höher. Sie haben"
575
 
576
  #. Non-fuzzy translation would be "Verwende Datei" but in this context "Verwende Logdatei" is describing exactly what it does.
577
- #: ../settings.php:86
578
  #, fuzzy
579
  msgid "Use file"
580
  msgstr "Verwende Logdatei"
581
 
582
- #: ../settings.php:86
583
  msgid "Write failed login attempts to the file"
584
  msgstr "Schreibe fehlgeschlagene Anmeldungen in die Datei."
585
 
586
- #: ../dashboard.php:804
587
- msgid "Failed attempts in last 24 hours"
588
- msgstr "Fehlversuche in den letzten 24 Stunden"
589
-
590
- #: ../dashboard.php:1204
591
  msgid "Deactivate"
592
  msgstr "Deaktivieren"
593
 
594
- #: ../dashboard.php:77 ../wp-cerber.php:2402
595
  msgid "Reason"
596
  msgstr "Grund"
597
 
598
- #: ../dashboard.php:130
599
  msgid "Add IP to the list"
600
  msgstr "Füge IP zur Liste hinzu"
601
 
602
- #: ../dashboard.php:713
603
  msgid "Add IP to the Black List"
604
  msgstr "Füge IP zur Schwarzen Liste hinzu"
605
 
606
- #: ../common.php:376
607
  msgid "Attempt to access"
608
  msgstr "Zugriffsversuch"
609
 
610
- #: ../common.php:375
611
  msgid "Limit on login attempts is reached"
612
  msgstr "Limit für Anmeldeversuche ist erreicht"
613
 
614
- #: ../common.php:362 ../common.php:377
615
  msgid "Attempt to log in with non-existent username"
616
  msgstr "Anmeldeversuch mit nicht existierendem Nutzernamen"
617
 
618
- #: ../wp-cerber.php:2401
619
  msgid "Last lockout was added: %s for IP %s"
620
  msgstr "Letzte Sperre wurde hinzugefügt: %s für IP %s"
621
 
622
- #: ../wp-cerber.php:2824
623
- msgid "It's important to check security settings."
624
- msgstr "Es ist wichtig Sicherheitseinstellungen zu überprüfen."
625
-
626
  #. "Abhärtung" is the medical translation for "hardening" which fits best in this case.
627
- #: ../wp-cerber.php:2829 ../settings.php:233
628
  msgid "Hardening"
629
  msgstr "Abhärtung"
630
 
631
- #: ../dashboard.php:691
632
  msgid "Abuse email:"
633
  msgstr "Missbrauch Email:"
634
 
635
- #: ../settings.php:154
636
  msgid "Email Address"
637
  msgstr "E-Mail-Adresse"
638
 
639
- #: ../settings.php:154
640
  msgid "if empty, the admin email %s will be used"
641
  msgstr "wenn leer, dann wird die E-Mail-Adresse %s des Admins benutzt"
642
 
643
  #. More narrow translation would be "IP aufbrechen" but does not really fit.
644
- #: ../settings.php:89
645
  #, fuzzy
646
  msgid "Drill down IP"
647
  msgstr "IP inspizieren"
648
 
649
- #: ../settings.php:89
650
  msgid "Retrieve extra WHOIS information for IP"
651
  msgstr "Extra WHOIS Informationen für IP abrufen"
652
 
653
- #: ../settings.php:97
654
  msgid "Hardening WordPress"
655
  msgstr "WordPress abhärten"
656
 
657
  #. "Enumeration" would originally translate to "Aufzählung" but does not quite fit.
658
- #: ../settings.php:98
659
  #, fuzzy
660
  msgid "Stop user enumeration"
661
  msgstr "Benutzererfassung stoppen"
662
 
663
- #: ../settings.php:98
664
- msgid "Block access to the pages like /?author=n"
665
- msgstr "Zugriff auf Seiten wie /?author=n sperren"
666
-
667
- #: ../settings.php:99
668
  msgid "Disable XML-RPC"
669
  msgstr "Deaktiviere XML-RPC"
670
 
671
- #: ../settings.php:99
672
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
673
  msgstr "Zugriff auf den XML-RPC Server sperren (Pingbacks und Trackbacks eingeschlossen)"
674
 
675
- #: ../settings.php:100
676
  msgid "Disable feeds"
677
  msgstr "Feeds deaktivieren"
678
 
679
- #: ../settings.php:100
680
  msgid "Block access to the RSS, Atom and RDF feeds"
681
  msgstr "Zugriff auf den RSS-, den Atom- und den RDF-Feed blockieren"
682
 
683
- #: ../settings.php:101
684
  msgid "Disable REST API"
685
  msgstr "REST API deaktivieren"
686
 
687
- #: ../settings.php:101
688
- msgid "Block access to the WordPress REST API"
689
- msgstr "Zugriff auf das WordPress REST API blockieren"
690
-
691
- #: ../settings.php:192
692
  #, fuzzy
693
  msgid "These settings do not affect hosts from the "
694
  msgstr "Diese Einstellungen beeinflussen keine Hosts von"
695
 
696
- #: ../settings.php:540
697
  msgid "<strong>ERROR</strong>: please enter a valid email address."
698
  msgstr "<strong>FEHLER</strong>: Bitte eine gültige E-Mail-Adresse eingeben"
699
 
700
- #: ../wp-cerber.php:2431 ../wp-cerber.php:2821
701
  #, fuzzy
702
  msgid "WP Cerber is now active and has started protecting your site"
703
  msgstr "WP Cerber ist nun aktiv und schützt ihre Website"
704
 
705
- #: ../dashboard.php:77
706
  msgid "Action"
707
  msgstr "Aktion"
708
 
709
- #: ../dashboard.php:104
710
  msgid "Nobody can log in or register from these IPs"
711
  msgstr "Niemand kann sich von diesen IPs anmelden oder registrieren"
712
 
713
- #: ../dashboard.php:150 ../dashboard.php:158
714
  msgid "Incorrect IP address or IP range"
715
  msgstr "Falsche IP-Adresse oder falscher IP-Bereich"
716
 
717
- #: ../dashboard.php:262
718
- msgid "Unable to send notification email"
719
- msgstr "Kann Benachrichtigungsemail nicht senden"
720
-
721
- #: ../dashboard.php:287 ../dashboard.php:1220
722
  msgid "Settings saved"
723
  msgstr "Einstellungen gespeichert"
724
 
725
- #: ../dashboard.php:695
726
  msgid "Network:"
727
  msgstr "Netzwerk:"
728
 
729
- #: ../dashboard.php:709
730
  msgid "Add network to the Black List"
731
  msgstr "Netzwerk zur schwarzen Liste hinzufügen"
732
 
733
- #: ../dashboard.php:1203
734
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
735
  msgstr "Achtung! Citadel-Modus ist nun aktiv. Niemand kann sich anmelden."
736
 
737
- #: ../whois.php:210 ../common.php:374
738
  msgid "Unknown"
739
  msgstr "Unbekannt"
740
 
741
- #. Description of the plugin
742
- #:
743
- msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Feel free to contact developer on the site <a href=\"http://wpcerber.com\">wpcerber.com</a>."
744
- msgstr "Schützt Seite vor Brute-Force-Attacken, Bots und Hackern. Anti-Spam-Schutz mit reCAPTCHA. Umfassende Kontrolle von Nutzeraktivitäten. Eingeschränkte Anmeldung durch IP-Zugriffs-Listen. Anmeldeversuche limitieren. Gerne können Sie den Entwickler auf <a href=\"http://wpcerber.com\">wpcerber.com</a> kontaktieren."
745
-
746
  #. Author of the plugin
747
  #:
748
  msgid "Gregory"
749
  msgstr "Gregory"
750
 
751
- #: ../wp-cerber.php:560 ../wp-cerber.php:572 ../wp-cerber.php:579 ../wp-cerber.
752
- #: php:717 ../wp-cerber.php:922 ../wp-cerber.php:927 ../wp-cerber.php:932 ../wp-
753
- #: cerber.php:938 ../wp-cerber.php:968 ../wp-cerber.php:1062 ../common.php:128 ..
754
- #: /common.php:181 ../common.php:185 ../settings.php:513
 
755
  msgid "ERROR:"
756
  msgstr "FEHLER:"
757
 
758
- #: ../wp-cerber.php:589
759
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
760
  msgstr "Menschlichkeitsnachweis gescheitert. Bitte klicken Sie das quadratische Kästchen im reCAPTCHA-Block unten."
761
 
762
- #: ../wp-cerber.php:728
763
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
764
  msgstr "<strong>FEHLER</strong>: Das eingegebene Passwort für den Benutzernamen %s ist falsch."
765
 
766
- #: ../wp-cerber.php:933
767
  msgid "Username is not allowed. Please choose another one."
768
  msgstr "Benutzername ist nicht erlaubt. Bitte einen anderen wählen."
769
 
770
- #: ../wp-cerber.php:2395
771
  msgid "unspecified"
772
  msgstr "nicht spezifiziert"
773
 
774
- #: ../wp-cerber.php:2398
775
  msgid "Number of lockouts is increasing"
776
  msgstr "Anzahl an Sperren steigt an"
777
 
778
- #: ../wp-cerber.php:2403
779
  msgid "View activity for this IP"
780
  msgstr "Zeige Aktivität für diese IP"
781
 
782
- #: ../wp-cerber.php:2407 ../wp-cerber.php:2409
783
  msgid "A new version of WP Cerber is available to install"
784
  msgstr "Eine neue Version von WP Cerber ist zur Installation verfügbar"
785
 
786
- #: ../wp-cerber.php:2408
787
  msgid "Hi!"
788
  msgstr "Hallo!"
789
 
790
  #. Original translation is "Internetseite" but this translation is not up to time.
791
- #: ../wp-cerber.php:2410 ../wp-cerber.php:2421
792
  msgid "Website"
793
  msgstr "Website"
794
 
795
- #: ../wp-cerber.php:2413 ../wp-cerber.php:2414
796
  msgid "The WP Cerber security plugin has been deactivated"
797
  msgstr "Das WP Cerber Sicherheits-Plugin wurde deaktiviert"
798
 
799
- #: ../wp-cerber.php:2416
800
  msgid "Not logged in"
801
  msgstr "Nicht angemeldet"
802
 
803
- #: ../wp-cerber.php:2422
804
  #, fuzzy
805
  msgid "By user"
806
  msgstr "Von Nutzer"
807
 
808
- #: ../wp-cerber.php:2423
809
  #, fuzzy
810
  msgid "From IP address"
811
  msgstr "Von IP-Adresse"
812
 
813
- #: ../wp-cerber.php:2426
814
  #, fuzzy
815
  msgid "From country"
816
  msgstr "Vom Land"
817
 
818
- #: ../wp-cerber.php:2430
819
  msgid "The WP Cerber security plugin is now active"
820
  msgstr "Das WP Cerber Sicherheits-Plugin ist nun aktiv"
821
 
822
- #: ../wp-cerber.php:2822
823
  #, fuzzy
824
  msgid "Your IP address is added to the"
825
  msgstr "Ihre IP-Adresse wurde hinzugefügt zu"
826
 
827
- #: ../wp-cerber.php:2831
828
  msgid "Import settings"
829
  msgstr "Import-Einstellungen"
830
 
831
- #: ../settings.php:155
832
  msgid "Notification limit"
833
  msgstr "Benachrichtigungslimit"
834
 
835
- #: ../settings.php:155
836
  #, fuzzy
837
  msgid "notification letters allowed per hour (0 means unlimited)"
838
  msgstr "Zugelassene Benachrichtigungen pro Stunde (0 bedeutet kein Limit)"
839
 
840
- #: ../settings.php:110
841
  msgid "User related settings"
842
  msgstr "Benutzerbezogene Einstellungen"
843
 
844
- #: ../settings.php:111
845
  msgid "Prohibited usernames"
846
  msgstr "Verbotene Benutzernamen"
847
 
848
- #: ../settings.php:111
849
  msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
850
  msgstr "Benutzernamen von dieser Liste dürfen sich nicht anmelden oder registrieren. Jede IP-Adresse, die versucht hat einen dieser Nutzernamen zu verwenden, wird sofort blockiert. Mit Komma Namen trennen."
851
 
852
- #: ../settings.php:112
853
  msgid "User session expire"
854
  msgstr "Benutzer-Sitzung Ablauf"
855
 
856
- #: ../settings.php:112
857
  msgid "in minutes (leave empty to use default WP value)"
858
  msgstr "in Minuten (leer lassen um WP Standardwert zu verwenden)"
859
 
860
- #: ../settings.php:129
861
  msgid "reCAPTCHA settings"
862
  msgstr "reCAPTCHA-Einstellungen"
863
 
864
  #. Technical term.
865
- #: ../settings.php:130
866
  msgid "Site key"
867
  msgstr "Site key"
868
 
869
  #. Technical term.
870
- #: ../settings.php:131
871
  msgid "Secret key"
872
  msgstr "Secret key"
873
 
874
- #: ../settings.php:134
875
  msgid "Enable reCAPTCHA for WordPress registration form"
876
  msgstr "Aktiviere reCAPTCHA für das WordPress Registrierungsformular"
877
 
878
- #: ../settings.php:137
879
  msgid "Lost password form"
880
  msgstr "Passwort-Vergessen-Formular"
881
 
882
- #: ../settings.php:140
883
  msgid "Login form"
884
  msgstr "Anmeldeforumlar"
885
 
886
- #: ../settings.php:140
887
  msgid "Enable reCAPTCHA for WordPress login form"
888
  msgstr "Aktiviere reCAPTCHA für das WordPress Anmeldeformular"
889
 
890
- #: ../settings.php:195
891
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
892
  msgstr "Bevor Sie reCAPTCHA nutzen können, müssen Sie einen Site key und einen Secret key von der Google Website beziehen."
893
 
894
- #: ../cerber-lab.php:580 ../settings.php:196
895
  msgid "Know more"
896
  msgstr "Mehr erfahren"
897
 
898
- #: ../dashboard.php:744 ../settings.php:215
899
  msgid "WP Cerber Security"
900
  msgstr "WP Cerber Sicherheit"
901
 
902
- #: ../settings.php:235
903
  msgid "Users"
904
  msgstr "Benutzer"
905
 
906
- #: ../common.php:333
907
  msgid "User created"
908
  msgstr "Benutzer erstellt"
909
 
910
- #: ../dashboard.php:1076 ../common.php:334
911
  msgid "User registered"
912
  msgstr "Benutzer registriert"
913
 
914
- #: ../common.php:357
915
  msgid "reCAPTCHA verification failed"
916
  msgstr "reCAPTCHA-Bestätigung gescheitert"
917
 
918
- #: ../common.php:358
919
  msgid "reCAPTCHA settings are incorrect"
920
  msgstr "reCAPTCHA-Einstellungen sind falsch"
921
 
922
- #: ../common.php:361
923
  msgid "Attempt to access prohibited URL"
924
  msgstr "Zugriffsversuch auf verbotene URL"
925
 
926
- #: ../common.php:363 ../common.php:378
927
  msgid "Attempt to log in with prohibited username"
928
  msgstr "Anmeldeversuch mit verbotenem Benutzernamen"
929
 
930
- #: ../settings.php:84
931
  msgid "Cerber Lab connection"
932
  msgstr "Cerber Lab Verbindung"
933
 
934
- #: ../settings.php:84
935
  msgid "Send malicious IP addresses to the Cerber Lab"
936
  msgstr "Bösartige IP-Adressen an das Cerber Lab senden"
937
 
938
- #: ../settings.php:85
939
  msgid "Cerber Lab protocol"
940
  msgstr "Cerber Lab Protokoll"
941
 
942
- #: ../settings.php:121 ../settings.php:134
943
  msgid "Registration form"
944
  msgstr "Registrierungsformular"
945
 
946
- #: ../settings.php:135
947
  msgid "Enable reCAPTCHA for WooCommerce registration form"
948
  msgstr "Aktiviere reCAPTCHA für das WooCommerce Registrierungsformular"
949
 
950
- #: ../settings.php:137
951
  msgid "Enable reCAPTCHA for WordPress lost password form"
952
  msgstr "Aktiviere reCAPTCHA für das WordPress Passwort-Vergessen-Formular"
953
 
954
- #: ../settings.php:138
955
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
956
  msgstr "Aktiviere reCAPTCHA für das WooCommerce Passwort-Vergessen-Formular"
957
 
958
- #: ../settings.php:141
959
  msgid "Enable reCAPTCHA for WooCommerce login form"
960
  msgstr "Aktiviere reCAPTCHA für das WooCommerce Anmeldeformular"
961
 
962
- #: ../common.php:359
963
  msgid "Request to the Google reCAPTCHA service failed"
964
  msgstr "Anfrage an den Google reCAPTCHA Dienst gescheitert"
965
 
966
- #: ../dashboard.php:1068 ../dashboard.php:1097
967
  msgid "View all"
968
  msgstr "Zeige alle"
969
 
970
- #: ../dashboard.php:1098
971
  msgid "Recently locked out IP addresses"
972
  msgstr "Kürzlich ausgesperrte IP-Adressen"
973
 
974
  #. "OK, vernichte sie alle" is a nicer translation for "OK, kill them all" ... too harsh or does it fit?
975
- #: ../cerber-lab.php:578
976
  #, fuzzy
977
  msgid "OK, nail them all"
978
  msgstr "OK, vernichte sie alle"
979
 
980
- #: ../cerber-lab.php:579
981
  msgid "NO, maybe later"
982
  msgstr "NEIN, vielleicht später"
983
 
984
  #. 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!
985
- #: ../dashboard.php:746 ../dashboard.php:910 ../dashboard.php:1412 ../settings.
986
- #: php:220
987
  #, fuzzy
988
  msgid "Dashboard"
989
  msgstr "Dashboard"
990
 
991
- #: ../cerber-lab.php:576
992
  msgid "Want to make WP Cerber even more powerful?"
993
  msgstr "Wollen Sie WP Cerber noch stärker machen?"
994
 
995
- #: ../cerber-lab.php:577
996
  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."
997
  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."
998
 
999
- #: ../dashboard.php:355
1000
  msgid "IP address"
1001
  msgstr "IP-Adresse"
1002
 
1003
- #: ../dashboard.php:355
1004
  msgid "User login"
1005
  msgstr "Benutzer-Anmeldung"
1006
 
1007
- #: ../dashboard.php:355
1008
  msgid "User ID"
1009
  msgstr "Benutzer-ID"
1010
 
1011
- #: ../dashboard.php:511
1012
  msgid "Export"
1013
  msgstr "Export"
1014
 
1015
- #: ../dashboard.php:521
1016
- msgid "All activities"
1017
- msgstr "Alle Aktivitäten"
1018
-
1019
- #: ../dashboard.php:530
1020
  msgid "Search for IP or username"
1021
  msgstr "Suche nach IP oder Nutzernamen"
1022
 
1023
- #: ../dashboard.php:530
1024
  msgid "Filter"
1025
  msgstr "Filter"
1026
 
1027
- #: ../dashboard.php:746
1028
  msgid "Cerber Dashboard"
1029
  msgstr "Cerber Dashboard"
1030
 
1031
- #: ../dashboard.php:749
1032
  msgid "Cerber tools"
1033
  msgstr "Cerber Werkzeuge"
1034
 
1035
- #: ../dashboard.php:1325
1036
  msgid "Subscribe"
1037
  msgstr "Abonnieren"
1038
 
1039
- #: ../dashboard.php:1326
1040
  msgid "Unsubscribe"
1041
  msgstr "Abmelden"
1042
 
1043
- #: ../dashboard.php:1354
1044
  #, fuzzy
1045
  msgid "You've subscribed"
1046
  msgstr "Erfolgreich abonniert"
1047
 
1048
- #: ../dashboard.php:1357
1049
  #, fuzzy
1050
  msgid "You've unsubscribed"
1051
  msgstr "Erfolgreich abgemeldet"
1052
 
1053
- #: ../wp-cerber.php:2441 ../wp-cerber.php:2442
1054
  msgid "A new activity has been recorded"
1055
  msgstr "Eine neue Aktivität wurde aufgezeichnet"
1056
 
1057
- #: ../wp-cerber.php:2700
1058
  msgid "User"
1059
  msgstr "Benutzer"
1060
 
1061
- #: ../wp-cerber.php:2708
1062
  msgid "Search string"
1063
  msgstr "Such-String"
1064
 
1065
- #: ../wp-cerber.php:2721
1066
  msgid "To unsubscribe click here"
1067
  msgstr "Zum Abmelden hier klicken"
1068
 
1069
- #: ../settings.php:88
1070
  msgid "Preferences"
1071
  msgstr "Präferenzen"
1072
 
1073
- #: ../settings.php:90
1074
  msgid "Date format"
1075
  msgstr "Datumsformat"
1076
 
1077
- #: ../settings.php:90
1078
  msgid "if empty, the default format %s will be used"
1079
  msgstr "wenn leer, dann wird das Standard Format %s verwendet"
1080
 
1081
- #: ../dashboard.php:906 ../settings.php:157
1082
  msgid "Push notifications"
1083
  msgstr "Push-Benachrichtigungen"
1084
 
1085
- #: ../settings.php:152
1086
  msgid "Email notifications"
1087
  msgstr "Email-Benachrichtigungen"
1088
 
1089
- #: ../settings.php:154
1090
  msgid "Use comma to specify multiple values"
1091
  msgstr "Mit Komma mehrere Werte trennen"
1092
 
1093
- #: ../settings.php:164
1094
  msgid "All connected devices"
1095
  msgstr "Alle verbundenen Geräte"
1096
 
1097
- #: ../settings.php:165
1098
  msgid "No devices found"
1099
  msgstr "Kein Gerät gefunden"
1100
 
1101
- #: ../settings.php:167
1102
  msgid "Not available"
1103
  msgstr "Nicht verfügbar"
1104
 
1105
- #: ../common.php:355
1106
  msgid "Password reset requested"
1107
  msgstr "Passwort Zurücksetzung angefordert"
1108
 
1109
- #: ../common.php:379
1110
  msgid "Limit on failed reCAPTCHA verifications is reached"
1111
  msgstr "Grenze an fehlgeschlagenen reCAPTCHA ist erreicht"
1112
 
1113
- #: ../common.php:432
1114
  msgid "%s ago"
1115
  msgstr "vor %s"
1116
 
1117
- #: ../settings.php:61
1118
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
1119
  msgstr "Eingeschränkte Zugangsregeln für IP Adresse in der White IP Liste anwenden"
1120
 
1121
- #: ../settings.php:70
1122
  msgid "Display 404 page"
1123
  msgstr "Zeige 404 Seite"
1124
 
1125
- #: ../settings.php:132
1126
  msgid "Invisible reCAPTCHA"
1127
  msgstr "Unsichtbares reCAPTCHA"
1128
 
1129
- #: ../settings.php:132
1130
  msgid "Enable invisible reCAPTCHA"
1131
  msgstr "Unsichtbares reCAPTCHA aktivieren"
1132
 
1133
- #: ../settings.php:132
1134
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
1135
  msgstr "(nicht anwenden, sofern nicht Seite betreten wurde und Geheimschlüssel für unsichtbare Version erhalten)"
1136
 
1137
- #: ../settings.php:143
1138
  msgid "Enable reCAPTCHA for WordPress comment form"
1139
  msgstr "reCAPTCHA für WordPress Kommentarformular aktivieren"
1140
 
1141
- #: ../settings.php:144
1142
  msgid "Disable reCAPTCHA for logged in users"
1143
  msgstr "reCAPTCHA für angemeldete Benutzer deaktivieren"
1144
 
1145
- #: ../settings.php:146
1146
  msgid "Limit attempts"
1147
  msgstr "Versuche Einschränken"
1148
 
1149
- #: ../settings.php:146
1150
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1151
  msgstr "IP Adresse für %s Minuten nach %s fehlgeschlagenen Versuchen innerhalb von %s Minuten sperren"
1152
 
1153
- #: ../settings.php:189
1154
  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."
1155
  msgstr "Im Citadel Modus kann sich niemand einloggen, außer IPs auf der White IP Zugangsliste. Laufende Sitzungen werden nicht beeinflusst."
1156
 
1157
- #: ../dashboard.php:355 ../dashboard.php:502
1158
  msgid "Event"
1159
  msgstr "Ereignis"
1160
 
1161
- #: ../dashboard.php:1049
1162
  msgid "Spam comments denied"
1163
  msgstr "Spam Kommentare verweigert"
1164
 
1165
- #: ../dashboard.php:1050
1166
  msgid "Malicious IP addresses detected"
1167
  msgstr "Schadhafte IP Adresse gefunden"
1168
 
1169
- #: ../dashboard.php:1051
1170
  msgid "Lockouts occurred"
1171
  msgstr "Sperre aufgetreten"
1172
 
1173
- #: ../dashboard.php:1052
1174
- msgid "Locked out IP now"
1175
- msgstr "Jetzt gesperrte IP"
1176
-
1177
- #: ../dashboard.php:1077
1178
  msgid "All suspicious activity"
1179
  msgstr "Alle verdächtigen Aktivitäten"
1180
 
1181
- #: ../wp-cerber.php:923 ../wp-cerber.php:939
 
1182
  msgid "You are not allowed to register."
1183
  msgstr "Registrierung nicht erlaubt."
1184
 
1185
- #: ../common.php:344
1186
  msgid "Spam comment denied"
1187
  msgstr "Spam Kommentar verweigert"
1188
 
1189
- #: ../common.php:350
1190
- msgid "by Cerber Lab"
1191
- msgstr ""
1192
-
1193
- #: ../common.php:365
1194
  msgid "Attempt to log in denied"
1195
  msgstr "Loginversuch verweigert"
1196
 
1197
- #: ../common.php:366
1198
  msgid "Attempt to register denied"
1199
  msgstr "Registrierungsversuch verweigert"
1200
 
1201
- #: ../dashboard.php:1048
1202
  msgid "Malicious activities mitigated"
1203
  msgstr "Schadhafte Aktivitäten gemildert"
1204
 
1205
- #: ../dashboard.php:748
1206
  msgid "Cerber antispam settings"
1207
- msgstr ""
1208
 
1209
- #: ../dashboard.php:748 ../settings.php:143
1210
  msgid "Antispam"
1211
- msgstr ""
1212
 
1213
- #: ../settings.php:119
1214
  msgid "Cerber antispam engine"
1215
  msgstr ""
1216
 
1217
- #: ../settings.php:120
1218
  msgid "Comment form"
1219
- msgstr ""
1220
 
1221
- #: ../settings.php:120
1222
  msgid "Protect comment form with bot detection engine"
1223
- msgstr ""
1224
 
1225
- #: ../settings.php:121
1226
  msgid "Protect registration form with bot detection engine"
1227
- msgstr ""
1228
 
1229
  #: ../cerber-tools.php:48
1230
  msgid "Export & Import"
1231
- msgstr ""
1232
 
1233
  #: ../cerber-tools.php:49
1234
  msgid "Diagnostic"
1235
- msgstr ""
1236
 
1237
  #: ../cerber-tools.php:50
1238
  msgid "License"
1239
- msgstr ""
1240
 
1241
- #: ../cerber-tools.php:267
1242
  msgid "Antispam and bot detection settings"
1243
- msgstr ""
1244
 
1245
- #. Description of the plugin
1246
- #:
1247
- msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"http://wpcerber.com\">wpcerber.com</a>."
1248
- msgstr ""
1249
-
1250
- #: ../wp-cerber.php:1062
1251
  msgid "Sorry, human verification failed."
1252
  msgstr ""
1253
 
1254
- #: ../common.php:380
1255
  msgid "Bot activity is detected"
1256
  msgstr ""
1257
 
1258
- #: ../settings.php:124
1259
  msgid "Comment processing"
1260
  msgstr ""
1261
 
1262
- #: ../settings.php:125
1263
  msgid "If a spam comment detected"
1264
  msgstr ""
1265
 
1266
- #: ../settings.php:126
1267
  msgid "Trash spam comments"
1268
  msgstr ""
1269
 
1270
- #: ../settings.php:126
1271
  msgid "Move spam comments to trash after"
1272
  msgstr ""
1273
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  "Content-Type: text/plain; charset=UTF-8\n"
5
  "Content-Transfer-Encoding: 8bit\n"
6
  "X-Generator: POEditor.com\n"
7
+ "Project-Id-Version: WP Cerber Security\n"
8
  "Language: de\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
 
11
+ #: ../settings.php:67
12
  msgid "Limit login attempts"
13
  msgstr "Anmeldeversuche limitieren"
14
 
15
+ #: ../settings.php:68
16
  msgid "Attempts"
17
  msgstr "Versuche"
18
 
19
+ #: ../settings.php:69
20
  msgid "Lockout duration"
21
  msgstr "Sperrdauer"
22
 
23
+ #: ../settings.php:69 ../settings.php:88
24
  msgid "minutes"
25
  msgstr "Minuten"
26
 
27
+ #: ../settings.php:70
28
  msgid "Aggressive lockout"
29
  msgstr "Aggressive Sperre"
30
 
31
+ #: ../settings.php:73
32
  msgid "Site connection"
33
  msgstr "Verbindung zur Website"
34
 
35
+ #: ../settings.php:75
36
  msgid "Proactive security rules"
37
  msgstr "Proaktive Sicherheitsregeln"
38
 
39
+ #: ../settings.php:76
40
  msgid "Block subnet"
41
  msgstr "Sperre Subnetz"
42
 
43
+ #: ../settings.php:79
44
  msgid "Request wp-login.php"
45
  msgstr "Anfrage wp-login.php"
46
 
47
+ #: ../settings.php:79
48
  msgid "Immediately block IP after any request to wp-login.php"
49
  msgstr "IP nach jeder Anfrage auf wp-login.php sofort sperren"
50
 
51
+ #: ../settings.php:78
52
  msgid "Redirect dashboard requests"
53
  msgstr "Dashboard-Anfragen umleiten"
54
 
55
+ #: ../settings.php:82
56
  msgid "Custom login page"
57
  msgstr "Benutzerdefinierte Login-Seite"
58
 
59
+ #: ../settings.php:83
60
  msgid "Custom login URL"
61
  msgstr "Benutzerdefinierte Login-URL"
62
 
63
  #. There is no perfect translation for "slug" with keeping the context. "Permalink" describes the whole URL but is used by WordPress in this place.
64
+ #: ../settings.php:83
65
  #, fuzzy
66
  msgid "must not overlap with the existing pages or posts slug"
67
  msgstr "darf sich nicht mit Permalinks von vorhandenen Seiten oder Beiträgen überlappen"
68
 
69
+ #: ../settings.php:84
70
  msgid "Disable wp-login.php"
71
  msgstr "Deaktiviere wp-login.php"
72
 
73
+ #: ../settings.php:84
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:1090 ../settings.php:86
78
  msgid "Citadel mode"
79
  msgstr "Citadel Modus"
80
 
81
+ #: ../settings.php:87
82
  msgid "Threshold"
83
  msgstr "Schwelle"
84
 
85
+ #: ../settings.php:88
86
  msgid "Duration"
87
  msgstr "Dauer"
88
 
89
+ #: ../wp-cerber.php:3687 ../settings.php:72 ../settings.php:89 ../settings.php:262
90
  msgid "Notifications"
91
  msgstr "Benachrichtigungen"
92
 
93
+ #: ../settings.php:89
94
  msgid "Send notification to admin email"
95
  msgstr "Sende eine Benachrichtigung an die Emailadresse des Admins"
96
 
97
+ #: ../dashboard.php:1099 ../wp-cerber.php:3684 ../settings.php:255 ../cerber-
98
+ #: tools.php:88 ../cerber-tools.php:97 ../cerber-tools.php:174
99
  msgid "Access Lists"
100
  msgstr "Zugriffslisten"
101
 
102
+ #: ../dashboard.php:1097 ../dashboard.php:1293 ../wp-cerber.php:3452 ../settings.
103
+ #: php:91 ../settings.php:246
104
  msgid "Activity"
105
  msgstr "Aktivität"
106
 
107
+ #: ../dashboard.php:1098 ../settings.php:250
108
  msgid "Lockouts"
109
  msgstr "Sperren"
110
 
111
+ #: ../settings.php:377 ../settings.php:500
112
  msgid "%s allowed retries in %s minutes"
113
  msgstr "%s erlaubte Wiederholungen in %s Minuten"
114
 
115
+ #: ../settings.php:399 ../settings.php:522
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:612 ../wp-cerber.php:3461
120
  msgid "IP"
121
  msgstr "IP"
122
 
123
+ #: ../dashboard.php:457 ../dashboard.php:615
124
  msgid "Date"
125
  msgstr "Datum"
126
 
127
+ #: ../dashboard.php:457 ../dashboard.php:617
128
  msgid "Local User"
129
  msgstr "Lokaler Benutzer"
130
 
131
+ #: ../dashboard.php:457 ../dashboard.php:618 ../wp-cerber.php:3469
132
  msgid "Username used"
133
  msgstr "Benutzername wird bereits verwendet"
134
 
135
+ #: ../dashboard.php:112
136
  msgid "Showing last %d records from %d"
137
  msgstr "Zeige die letzten %d Einträge von %d"
138
 
139
+ #: ../common.php:480
140
  msgid "Logged in"
141
  msgstr "Eingeloggt"
142
 
143
+ #: ../common.php:481
144
  msgid "Logged out"
145
  msgstr "Ausgeloggt"
146
 
147
+ #: ../common.php:482
148
  msgid "Login failed"
149
  msgstr "Login fehlgeschlagen"
150
 
151
+ #: ../common.php:485
152
  msgid "IP blocked"
153
  msgstr "IP geblockt"
154
 
155
+ #: ../common.php:486
156
  msgid "Subnet blocked"
157
  msgstr "Subnetz geblockt"
158
 
159
+ #: ../common.php:488
160
  msgid "Citadel activated!"
161
  msgstr "Citadel-Modus aktiviert!"
162
 
163
+ #: ../dashboard.php:593 ../dashboard.php:797 ../common.php:524
164
  msgid "Locked out"
165
  msgstr "Ausgesperrt"
166
 
167
  #. 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).
168
+ #: ../common.php:525
169
  #, fuzzy
170
  msgid "IP blacklisted"
171
  msgstr "IP blockiert"
172
 
173
+ #: ../common.php:503
174
  msgid "Password changed"
175
  msgstr "Passwort geändert"
176
 
177
+ #: ../dashboard.php:86 ../dashboard.php:157
178
  msgid "Remove"
179
  msgstr "Entfernen"
180
 
181
+ #: ../dashboard.php:368
182
  msgid "Lockout for %s was removed"
183
  msgstr "Die Sperre für %s wurde entfernt"
184
 
185
+ #: ../dashboard.php:131 ../dashboard.php:588 ../dashboard.php:792 ../dashboard.
186
+ #: php:1088 ../wp-cerber.php:3676 ../settings.php:71 ../settings.php:216
187
  #, fuzzy
188
  msgid "White IP Access List"
189
  msgstr "Weiße Liste (erlaubten IPs)"
190
 
191
+ #: ../dashboard.php:133 ../dashboard.php:589 ../dashboard.php:794 ../dashboard.
192
+ #: php:1089
193
  #, fuzzy
194
  msgid "Black IP Access List"
195
  msgstr "Schwarze Liste (verbotenen IPs)"
196
 
197
+ #: ../dashboard.php:160
198
  msgid "List is empty"
199
  msgstr "Liste ist leer"
200
 
201
+ #: ../dashboard.php:187
202
  msgid "Address %s was added to White IP Access List"
203
  msgstr "Adresse %s wurde zur Liste der erlaubten IPs hinzugefügt"
204
 
205
+ #: ../dashboard.php:200
206
  msgid "Address %s was added to Black IP Access List"
207
  msgstr "Adresse %s wurde zur Liste der verbotenen IPs hinzugefügt"
208
 
209
+ #: ../wp-cerber.php:2944
210
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
211
  msgstr "Citadel-Modus ist aktiviert nach %d fehlgeschlagenen Logins in %d Minuten."
212
 
213
+ #: ../dashboard.php:1435
214
  msgid "View Activity"
215
  msgstr "Aktivitäten anzeigen"
216
 
217
+ #: ../cerber-tools.php:87 ../cerber-tools.php:96
218
  msgid "Settings"
219
  msgstr "Einstellungen"
220
 
221
+ #: ../dashboard.php:954
222
  msgid "Last login"
223
  msgstr "Letzte Anmeldung"
224
 
225
+ #: ../dashboard.php:987 ../dashboard.php:1071
226
  msgid "Never"
227
  msgstr "Niemals"
228
 
229
+ #: ../dashboard.php:1337
230
  msgid "Are you sure?"
231
  msgstr "Sind Sie sicher?"
232
 
233
+ #: ../dashboard.php:1145 ../settings.php:73
234
  msgid "My site is behind a reverse proxy"
235
  msgstr "Meine Website ist hinter einem Reverse-Proxy"
236
 
237
+ #: ../settings.php:77
238
  msgid "Non-existent users"
239
  msgstr "Nicht vorhandene Benutzer"
240
 
241
+ #: ../settings.php:77
242
  msgid "Immediately block IP when attempting to login with a non-existent username"
243
  msgstr "IP sofort sperren, wenn versucht wird, sich mit einem nicht vorhandenen Benutzernamen einzuloggen "
244
 
245
+ #: ../settings.php:78
246
  msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
247
  msgstr "Die automatische Umleitung auf die Anmeldeseite deaktivieren, wenn /wp-admin/ von einer nicht autorisierten Anfrage aufgerufen wird"
248
 
249
  #. A fuzzy translation that is mostly used in this context would be "Machen Sie Ihren Schutz intelligenter!"
250
+ #: ../settings.php:202
251
  msgid "Make your protection smarter!"
252
  msgstr "Machen Sie Ihren Schutz schlauer!"
253
 
254
+ #: ../settings.php:206
255
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
256
  msgstr "Bitte aktivieren Sie Permalinks um dieses Merkmal zu verwenden. Setzen Sie die Permalink-Einstellungen auf etwas anderes als Standard."
257
 
258
+ #: ../settings.php:209
259
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
260
  msgstr "Seien Sie vorsichtig bei der Aktivierung dieser Optionen. Wenn Sie die benutzerdefinierte Login-URL vergessen, können Sie sich nicht mehr anmelden."
261
 
262
+ #: ../wp-cerber.php:3683 ../settings.php:252
263
  msgid "Main Settings"
264
  msgstr "Haupteinstellungen"
265
 
266
+ #: ../settings.php:264
267
  msgid "Help"
268
  msgstr "Hilfe"
269
 
270
  #. "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.
271
+ #: ../settings.php:387 ../settings.php:510
272
  #, fuzzy
273
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
274
  msgstr "Erhöhe die Sperrdauer um %s Stunden nach %s Aussperrungen in den letzten %s Stunden"
275
 
276
+ #: ../wp-cerber.php:220
277
  msgid "You are not allowed to log in. Ask your administrator for assistance."
278
  msgstr "Sie sind nicht berechtigt, sich anzumelden. Fragen Sie Ihren Administrator nach Unterstützung."
279
 
280
  #. One "Minute", two/three/four/... "Minuten".
281
+ #: ../wp-cerber.php:226
282
  #, fuzzy
283
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
284
  msgstr "Sie haben die maximale Anzahl an Login-Versuchen erreicht. Bitte versuchen Sie es in %d Minuten noch einmal."
285
 
286
+ #: ../wp-cerber.php:245
287
  msgid "You have only one attempt remaining."
288
  msgid_plural "You have %d attempts remaining."
289
  msgstr[0] "Sie haben nur noch einen Versuch."
290
  msgstr[1] "Sie haben nur noch %d Versuche."
291
 
292
+ #: ../dashboard.php:639
293
  msgid "No activity has been logged."
294
  msgstr "Keine Aktivität wurde protokolliert."
295
 
296
+ #: ../dashboard.php:96
297
  msgid "Expires"
298
  msgstr "Gültig bis"
299
 
300
+ #: ../dashboard.php:118
301
  msgid "No lockouts at the moment. The sky is clear."
302
  msgstr "Keine Sperrung im Moment. Der Himmel ist klar."
303
 
304
+ #: ../dashboard.php:131
305
  msgid "These IPs will never be locked out"
306
  msgstr "Diese IPs werden nie gesperrt"
307
 
308
+ #: ../dashboard.php:140
309
  msgid "Your IP"
310
  msgstr "Ihre IP"
311
 
312
+ #: ../dashboard.php:196
313
  msgid "You can't add your IP address"
314
  msgstr "Sie können Ihre IP Adresse nicht hinzufügen"
315
 
316
+ #: ../wp-cerber.php:2945
317
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
318
  msgstr "Der letzte gescheiterte Versuch war um %s von der IP %s mit der Benutzeranmeldung: %s."
319
 
320
+ #: ../wp-cerber.php:3659
 
 
 
 
321
  msgid "Can't activate WP Cerber due to a database error."
322
  msgstr "Kann WP Cerber aufgrund eines Datenbankfehlers nicht aktivieren."
323
 
324
+ #: ../settings.php:394 ../settings.php:517
325
  msgid "Notify admin if the number of active lockouts above"
326
  msgstr "Benachrichtige den Admin, wenn die Anzahl von aktiven Aussperrungen größer ist als"
327
 
328
+ #: ../settings.php:92 ../settings.php:144
329
  msgid "days"
330
  msgstr "Tage"
331
 
332
+ #: ../dashboard.php:1041
333
  msgid "Cerber Quick View"
334
  msgstr "Cerber Schnellansicht"
335
 
336
+ #: ../dashboard.php:114
337
  msgid "Hint"
338
  msgstr "Hinweis"
339
 
340
+ #: ../dashboard.php:114
341
  msgid "To view activity, click on the IP"
342
  msgstr "Um die Aktivität sehen zu können, klicken Sie auf die IP"
343
 
344
+ #: ../dashboard.php:157 ../dashboard.php:824
345
  msgid "Check for activity"
346
  msgstr "Auf Aktivität überprüfen"
347
 
348
+ #: ../settings.php:76
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:89 ../settings.php:396 ../settings.php:519
353
  msgid "Click to send test"
354
  msgstr "Klicken für Sendungstest"
355
 
356
+ #: ../settings.php:659 ../settings.php:660
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:953
361
  msgid "Comments"
362
  msgstr "Kommentare"
363
 
364
+ #: ../common.php:744
 
 
 
 
 
 
 
 
365
  msgid "Update to version %s of WP Cerber"
366
  msgstr "Update auf Version %s von WP Cerber"
367
 
368
+ #: ../wp-cerber.php:2946 ../wp-cerber.php:3493
369
  msgid "View activity in dashboard"
370
  msgstr "Zeige Aktivität im Dashboard"
371
 
372
+ #: ../wp-cerber.php:2976
373
  msgid "Number of active lockouts"
374
  msgstr "Anzahl der aktiven Sperren"
375
 
376
+ #: ../wp-cerber.php:2980
377
  msgid "View lockouts in dashboard"
378
  msgstr "Zeige Sperren im Dashboard"
379
 
380
+ #: ../wp-cerber.php:3062
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:882 ../cerber-tools.php:43
386
  msgid "Tools"
387
  msgstr "Werkzeuge"
388
 
389
+ #: ../cerber-tools.php:84
390
  msgid "Export settings to the file"
391
  msgstr "Einstellungen in Datei exportieren"
392
 
393
  #. "below" is ignored in the translation.
394
+ #: ../cerber-tools.php:85
395
  #, fuzzy
396
  msgid "When you click the button below you will get a configuration file, which you can upload on another site."
397
  msgstr "Wenn Sie auf den Button klicken, bekommen Sie eine Konfigurationsdatei, die Sie auf einer anderen Website hochladen können."
398
 
399
+ #: ../cerber-tools.php:86
400
  msgid "What do you want to export?"
401
  msgstr "Was wollen Sie exportieren?"
402
 
403
+ #: ../cerber-tools.php:89
404
  msgid "Download file"
405
  msgstr "Datei herunterladen"
406
 
407
+ #: ../cerber-tools.php:91
408
  msgid "Import settings from the file"
409
  msgstr "Einstellungen aus Datei importieren"
410
 
411
  #. "below" is ignored in the translation.
412
+ #: ../cerber-tools.php:92
413
  #, fuzzy
414
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
415
  msgstr "Wenn Sie auf den Button klicken, wird die Datei hochgeladen und alle vorhandenen Einstellungen werden überschrieben."
416
 
417
+ #: ../cerber-tools.php:93
418
  msgid "Select file to import."
419
  msgstr "Datei zum Importieren auswählen."
420
 
421
+ #: ../cerber-tools.php:93
422
  msgid "Maximum upload file size: %s."
423
  msgstr "Maximale Dateigröße für Uploads: %s"
424
 
425
+ #: ../cerber-tools.php:96
426
  msgid "What do you want to import?"
427
  msgstr "Was wollen Sie importieren?"
428
 
429
+ #: ../cerber-tools.php:98
430
  msgid "Upload file"
431
  msgstr "Datei hochladen"
432
 
433
+ #: ../cerber-tools.php:141
434
  msgid "No file was uploaded or file is corrupted"
435
  msgstr "Keine Datei hochgeladen oder Datei ist beschädigt"
436
 
437
+ #: ../cerber-tools.php:174
438
  msgid "Error while updating"
439
  msgstr "Fehler bei der Aktualisierung"
440
 
441
+ #: ../cerber-tools.php:177
442
  msgid "Settings has imported successfully from"
443
  msgstr "Einstellungen erfolgreich importiert von"
444
 
445
+ #: ../cerber-tools.php:181
446
  msgid "Error while parsing file"
447
  msgstr "Fehler beim Parsen der Datei"
448
 
449
+ #: ../dashboard.php:94 ../dashboard.php:613
450
  msgid "Hostname"
451
  msgstr "Hostname"
452
 
453
+ #: ../dashboard.php:333
454
  #, fuzzy
455
  msgid "unknown"
456
  msgstr "unbekannt"
457
 
458
+ #: ../settings.php:92
459
  msgid "Keep records for"
460
  msgstr "Behalte Aufzeichnungen für"
461
 
462
+ #: ../dashboard.php:1075
463
  msgid "active"
464
  msgstr "aktiv"
465
 
466
+ #: ../dashboard.php:1075
467
  msgid "deactivate"
468
  msgstr "deaktiviert"
469
 
470
+ #: ../dashboard.php:1077
471
  msgid "not active"
472
  msgstr "nicht aktiv"
473
 
474
  #. "deactive" and "disabled" mean exactly the same in German.
475
+ #: ../dashboard.php:1078
476
  msgid "disabled"
477
  msgstr "deaktiviert"
478
 
479
+ #: ../dashboard.php:1083
480
  msgid "failed attempts"
481
  msgstr "Fehlversuche"
482
 
483
+ #: ../dashboard.php:1083 ../dashboard.php:1084
484
  msgid "in 24 hours"
485
  msgstr "in 24 Stunden"
486
 
487
+ #: ../dashboard.php:1083 ../dashboard.php:1084
488
  msgid "view all"
489
  msgstr "Zeige alle"
490
 
491
+ #: ../dashboard.php:1084
492
  msgid "lockouts"
493
  msgstr "Sperren"
494
 
495
+ #: ../dashboard.php:1086
496
  msgid "Lockouts at the moment"
497
  msgstr "Momentane Sperren"
498
 
499
+ #: ../dashboard.php:1087
500
  msgid "Last lockout"
501
  msgstr "Letzte Sperre"
502
 
503
+ #: ../dashboard.php:1088 ../dashboard.php:1089 ../dashboard.php:1601
504
  msgid "entry"
505
  msgid_plural "entries"
506
  msgstr[0] "Eintrag"
507
  msgstr[1] "Einträge"
508
 
509
+ #: ../dashboard.php:1332
510
  #, fuzzy
511
  msgid "Confused about some settings?"
512
  msgstr "Verwirrende Einstellungen?"
513
 
514
+ #: ../dashboard.php:1333
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:1335
519
  msgid "Load default settings"
520
  msgstr "Standardeinstellung laden"
521
 
522
+ #: ../dashboard.php:1343
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:737
 
 
 
 
527
  msgid "New version is available"
528
  msgstr "Eine neue Version ist verfügbar"
529
 
530
  #. Name of the plugin
531
+ #: ../dashboard.php:873 ../dashboard.php:892
532
  msgid "WP Cerber"
533
  msgstr "WP Cerber"
534
 
535
+ #: ../wp-cerber.php:2920
 
 
 
 
 
536
  msgid "WP Cerber notify"
537
  msgstr "WP Cerber benachrichtigen"
538
 
539
+ #: ../wp-cerber.php:2942
540
  msgid "Citadel mode is activated"
541
  msgstr "Citadel-Modus ist aktiviert"
542
 
543
+ #: ../wp-cerber.php:3016
544
  msgid "New Custom login URL"
545
  msgstr "Neue benutzerdefinierte Login-URL"
546
 
547
+ #: ../wp-cerber.php:3650
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:3654
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
 
555
  #. Non-fuzzy translation would be "Verwende Datei" but in this context "Verwende Logdatei" is describing exactly what it does.
556
+ #: ../settings.php:95
557
  #, fuzzy
558
  msgid "Use file"
559
  msgstr "Verwende Logdatei"
560
 
561
+ #: ../settings.php:95
562
  msgid "Write failed login attempts to the file"
563
  msgstr "Schreibe fehlgeschlagene Anmeldungen in die Datei."
564
 
565
+ #: ../dashboard.php:1434
 
 
 
 
566
  msgid "Deactivate"
567
  msgstr "Deaktivieren"
568
 
569
+ #: ../dashboard.php:97 ../wp-cerber.php:2978
570
  msgid "Reason"
571
  msgstr "Grund"
572
 
573
+ #: ../dashboard.php:164
574
  msgid "Add IP to the list"
575
  msgstr "Füge IP zur Liste hinzu"
576
 
577
+ #: ../dashboard.php:842
578
  msgid "Add IP to the Black List"
579
  msgstr "Füge IP zur Schwarzen Liste hinzu"
580
 
581
+ #: ../common.php:555
582
  msgid "Attempt to access"
583
  msgstr "Zugriffsversuch"
584
 
585
+ #: ../common.php:554
586
  msgid "Limit on login attempts is reached"
587
  msgstr "Limit für Anmeldeversuche ist erreicht"
588
 
589
+ #: ../common.php:511 ../common.php:556
590
  msgid "Attempt to log in with non-existent username"
591
  msgstr "Anmeldeversuch mit nicht existierendem Nutzernamen"
592
 
593
+ #: ../wp-cerber.php:2977
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:3686 ../settings.php:257
599
  msgid "Hardening"
600
  msgstr "Abhärtung"
601
 
602
+ #: ../dashboard.php:820
603
  msgid "Abuse email:"
604
  msgstr "Missbrauch Email:"
605
 
606
+ #: ../settings.php:172 ../settings.php:192
607
  msgid "Email Address"
608
  msgstr "E-Mail-Adresse"
609
 
610
+ #: ../settings.php:172
611
  msgid "if empty, the admin email %s will be used"
612
  msgstr "wenn leer, dann wird die E-Mail-Adresse %s des Admins benutzt"
613
 
614
  #. More narrow translation would be "IP aufbrechen" but does not really fit.
615
+ #: ../settings.php:98
616
  #, fuzzy
617
  msgid "Drill down IP"
618
  msgstr "IP inspizieren"
619
 
620
+ #: ../settings.php:98
621
  msgid "Retrieve extra WHOIS information for IP"
622
  msgstr "Extra WHOIS Informationen für IP abrufen"
623
 
624
+ #: ../settings.php:106
625
  msgid "Hardening WordPress"
626
  msgstr "WordPress abhärten"
627
 
628
  #. "Enumeration" would originally translate to "Aufzählung" but does not quite fit.
629
+ #: ../settings.php:107
630
  #, fuzzy
631
  msgid "Stop user enumeration"
632
  msgstr "Benutzererfassung stoppen"
633
 
634
+ #: ../settings.php:108
 
 
 
 
635
  msgid "Disable XML-RPC"
636
  msgstr "Deaktiviere XML-RPC"
637
 
638
+ #: ../settings.php:108
639
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
640
  msgstr "Zugriff auf den XML-RPC Server sperren (Pingbacks und Trackbacks eingeschlossen)"
641
 
642
+ #: ../settings.php:109
643
  msgid "Disable feeds"
644
  msgstr "Feeds deaktivieren"
645
 
646
+ #: ../settings.php:109
647
  msgid "Block access to the RSS, Atom and RDF feeds"
648
  msgstr "Zugriff auf den RSS-, den Atom- und den RDF-Feed blockieren"
649
 
650
+ #: ../settings.php:110
651
  msgid "Disable REST API"
652
  msgstr "REST API deaktivieren"
653
 
654
+ #: ../settings.php:216
 
 
 
 
655
  #, fuzzy
656
  msgid "These settings do not affect hosts from the "
657
  msgstr "Diese Einstellungen beeinflussen keine Hosts von"
658
 
659
+ #: ../settings.php:736 ../settings.php:748
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:3008 ../wp-cerber.php:3675
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"
667
 
668
+ #: ../dashboard.php:98
669
  msgid "Action"
670
  msgstr "Aktion"
671
 
672
+ #: ../dashboard.php:133
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:184 ../dashboard.php:192
677
  msgid "Incorrect IP address or IP range"
678
  msgstr "Falsche IP-Adresse oder falscher IP-Bereich"
679
 
680
+ #: ../dashboard.php:385 ../dashboard.php:1450
 
 
 
 
681
  msgid "Settings saved"
682
  msgstr "Einstellungen gespeichert"
683
 
684
+ #: ../dashboard.php:824
685
  msgid "Network:"
686
  msgstr "Netzwerk:"
687
 
688
+ #: ../dashboard.php:838
689
  msgid "Add network to the Black List"
690
  msgstr "Netzwerk zur schwarzen Liste hinzufügen"
691
 
692
+ #: ../dashboard.php:1433
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:291 ../whois.php:221 ../whois.php:252 ../common.php:553
697
  msgid "Unknown"
698
  msgstr "Unbekannt"
699
 
 
 
 
 
 
700
  #. Author of the plugin
701
  #:
702
  msgid "Gregory"
703
  msgstr "Gregory"
704
 
705
+ #: ../wp-cerber.php:565 ../wp-cerber.php:577 ../wp-cerber.php:584 ../wp-cerber.
706
+ #: php:771 ../wp-cerber.php:986 ../wp-cerber.php:992 ../wp-cerber.php:997 ../wp-
707
+ #: cerber.php:1002 ../wp-cerber.php:1008 ../wp-cerber.php:1015 ../wp-cerber.php:
708
+ #: 1116 ../wp-cerber.php:1253 ../common.php:173 ../common.php:227 ../common.php:
709
+ #: 231 ../settings.php:709
710
  msgid "ERROR:"
711
  msgstr "FEHLER:"
712
 
713
+ #: ../wp-cerber.php:594
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:782
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:1003
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:2971
726
  msgid "unspecified"
727
  msgstr "nicht spezifiziert"
728
 
729
+ #: ../wp-cerber.php:2974
730
  msgid "Number of lockouts is increasing"
731
  msgstr "Anzahl an Sperren steigt an"
732
 
733
+ #: ../wp-cerber.php:2979
734
  msgid "View activity for this IP"
735
  msgstr "Zeige Aktivität für diese IP"
736
 
737
+ #: ../wp-cerber.php:2983 ../wp-cerber.php:2985
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:2984
742
  msgid "Hi!"
743
  msgstr "Hallo!"
744
 
745
  #. Original translation is "Internetseite" but this translation is not up to time.
746
+ #: ../wp-cerber.php:2987 ../wp-cerber.php:2998
747
  msgid "Website"
748
  msgstr "Website"
749
 
750
+ #: ../wp-cerber.php:2990 ../wp-cerber.php:2991
751
  msgid "The WP Cerber security plugin has been deactivated"
752
  msgstr "Das WP Cerber Sicherheits-Plugin wurde deaktiviert"
753
 
754
+ #: ../wp-cerber.php:2993
755
  msgid "Not logged in"
756
  msgstr "Nicht angemeldet"
757
 
758
+ #: ../wp-cerber.php:2999
759
  #, fuzzy
760
  msgid "By user"
761
  msgstr "Von Nutzer"
762
 
763
+ #: ../wp-cerber.php:3000
764
  #, fuzzy
765
  msgid "From IP address"
766
  msgstr "Von IP-Adresse"
767
 
768
+ #: ../wp-cerber.php:3003
769
  #, fuzzy
770
  msgid "From country"
771
  msgstr "Vom Land"
772
 
773
+ #: ../wp-cerber.php:3007
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:3676
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:3688
783
  msgid "Import settings"
784
  msgstr "Import-Einstellungen"
785
 
786
+ #: ../settings.php:173
787
  msgid "Notification limit"
788
  msgstr "Benachrichtigungslimit"
789
 
790
+ #: ../settings.php:173
791
  #, fuzzy
792
  msgid "notification letters allowed per hour (0 means unlimited)"
793
  msgstr "Zugelassene Benachrichtigungen pro Stunde (0 bedeutet kein Limit)"
794
 
795
+ #: ../settings.php:121
796
  msgid "User related settings"
797
  msgstr "Benutzerbezogene Einstellungen"
798
 
799
+ #: ../settings.php:123
800
  msgid "Prohibited usernames"
801
  msgstr "Verbotene Benutzernamen"
802
 
803
+ #: ../settings.php:123
804
  msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
805
  msgstr "Benutzernamen von dieser Liste dürfen sich nicht anmelden oder registrieren. Jede IP-Adresse, die versucht hat einen dieser Nutzernamen zu verwenden, wird sofort blockiert. Mit Komma Namen trennen."
806
 
807
+ #: ../settings.php:124
808
  msgid "User session expire"
809
  msgstr "Benutzer-Sitzung Ablauf"
810
 
811
+ #: ../settings.php:124
812
  msgid "in minutes (leave empty to use default WP value)"
813
  msgstr "in Minuten (leer lassen um WP Standardwert zu verwenden)"
814
 
815
+ #: ../settings.php:147
816
  msgid "reCAPTCHA settings"
817
  msgstr "reCAPTCHA-Einstellungen"
818
 
819
  #. Technical term.
820
+ #: ../settings.php:148
821
  msgid "Site key"
822
  msgstr "Site key"
823
 
824
  #. Technical term.
825
+ #: ../settings.php:149
826
  msgid "Secret key"
827
  msgstr "Secret key"
828
 
829
+ #: ../settings.php:152
830
  msgid "Enable reCAPTCHA for WordPress registration form"
831
  msgstr "Aktiviere reCAPTCHA für das WordPress Registrierungsformular"
832
 
833
+ #: ../settings.php:155
834
  msgid "Lost password form"
835
  msgstr "Passwort-Vergessen-Formular"
836
 
837
+ #: ../settings.php:158
838
  msgid "Login form"
839
  msgstr "Anmeldeforumlar"
840
 
841
+ #: ../settings.php:158
842
  msgid "Enable reCAPTCHA for WordPress login form"
843
  msgstr "Aktiviere reCAPTCHA für das WordPress Anmeldeformular"
844
 
845
+ #: ../settings.php:219
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:666 ../settings.php:220
850
  msgid "Know more"
851
  msgstr "Mehr erfahren"
852
 
853
+ #: ../dashboard.php:873 ../settings.php:239
854
  msgid "WP Cerber Security"
855
  msgstr "WP Cerber Sicherheit"
856
 
857
+ #: ../settings.php:259
858
  msgid "Users"
859
  msgstr "Benutzer"
860
 
861
+ #: ../common.php:478
862
  msgid "User created"
863
  msgstr "Benutzer erstellt"
864
 
865
+ #: ../dashboard.php:1287 ../common.php:479
866
  msgid "User registered"
867
  msgstr "Benutzer registriert"
868
 
869
+ #: ../common.php:506
870
  msgid "reCAPTCHA verification failed"
871
  msgstr "reCAPTCHA-Bestätigung gescheitert"
872
 
873
+ #: ../common.php:507
874
  msgid "reCAPTCHA settings are incorrect"
875
  msgstr "reCAPTCHA-Einstellungen sind falsch"
876
 
877
+ #: ../common.php:510
878
  msgid "Attempt to access prohibited URL"
879
  msgstr "Zugriffsversuch auf verbotene URL"
880
 
881
+ #: ../common.php:512 ../common.php:557
882
  msgid "Attempt to log in with prohibited username"
883
  msgstr "Anmeldeversuch mit verbotenem Benutzernamen"
884
 
885
+ #: ../settings.php:93
886
  msgid "Cerber Lab connection"
887
  msgstr "Cerber Lab Verbindung"
888
 
889
+ #: ../settings.php:93
890
  msgid "Send malicious IP addresses to the Cerber Lab"
891
  msgstr "Bösartige IP-Adressen an das Cerber Lab senden"
892
 
893
+ #: ../settings.php:94
894
  msgid "Cerber Lab protocol"
895
  msgstr "Cerber Lab Protokoll"
896
 
897
+ #: ../settings.php:134 ../settings.php:152
898
  msgid "Registration form"
899
  msgstr "Registrierungsformular"
900
 
901
+ #: ../settings.php:153
902
  msgid "Enable reCAPTCHA for WooCommerce registration form"
903
  msgstr "Aktiviere reCAPTCHA für das WooCommerce Registrierungsformular"
904
 
905
+ #: ../settings.php:155
906
  msgid "Enable reCAPTCHA for WordPress lost password form"
907
  msgstr "Aktiviere reCAPTCHA für das WordPress Passwort-Vergessen-Formular"
908
 
909
+ #: ../settings.php:156
910
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
911
  msgstr "Aktiviere reCAPTCHA für das WooCommerce Passwort-Vergessen-Formular"
912
 
913
+ #: ../settings.php:159
914
  msgid "Enable reCAPTCHA for WooCommerce login form"
915
  msgstr "Aktiviere reCAPTCHA für das WooCommerce Anmeldeformular"
916
 
917
+ #: ../common.php:508
918
  msgid "Request to the Google reCAPTCHA service failed"
919
  msgstr "Anfrage an den Google reCAPTCHA Dienst gescheitert"
920
 
921
+ #: ../dashboard.php:1279 ../dashboard.php:1308
922
  msgid "View all"
923
  msgstr "Zeige alle"
924
 
925
+ #: ../dashboard.php:1309
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:664
931
  #, fuzzy
932
  msgid "OK, nail them all"
933
  msgstr "OK, vernichte sie alle"
934
 
935
+ #: ../cerber-lab.php:665
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:875 ../dashboard.php:1096 ../dashboard.php:1621 ../settings.
941
+ #: php:244
942
  #, fuzzy
943
  msgid "Dashboard"
944
  msgstr "Dashboard"
945
 
946
+ #: ../cerber-lab.php:662
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:663
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:457
955
  msgid "IP address"
956
  msgstr "IP-Adresse"
957
 
958
+ #: ../dashboard.php:457
959
  msgid "User login"
960
  msgstr "Benutzer-Anmeldung"
961
 
962
+ #: ../dashboard.php:457
963
  msgid "User ID"
964
  msgstr "Benutzer-ID"
965
 
966
+ #: ../dashboard.php:635
967
  msgid "Export"
968
  msgstr "Export"
969
 
970
+ #: ../dashboard.php:654
 
 
 
 
971
  msgid "Search for IP or username"
972
  msgstr "Suche nach IP oder Nutzernamen"
973
 
974
+ #: ../dashboard.php:654
975
  msgid "Filter"
976
  msgstr "Filter"
977
 
978
+ #: ../dashboard.php:875
979
  msgid "Cerber Dashboard"
980
  msgstr "Cerber Dashboard"
981
 
982
+ #: ../dashboard.php:882
983
  msgid "Cerber tools"
984
  msgstr "Cerber Werkzeuge"
985
 
986
+ #: ../dashboard.php:1534
987
  msgid "Subscribe"
988
  msgstr "Abonnieren"
989
 
990
+ #: ../dashboard.php:1535 ../cerber-tools.php:239
991
  msgid "Unsubscribe"
992
  msgstr "Abmelden"
993
 
994
+ #: ../dashboard.php:1563
995
  #, fuzzy
996
  msgid "You've subscribed"
997
  msgstr "Erfolgreich abonniert"
998
 
999
+ #: ../dashboard.php:1566
1000
  #, fuzzy
1001
  msgid "You've unsubscribed"
1002
  msgstr "Erfolgreich abgemeldet"
1003
 
1004
+ #: ../wp-cerber.php:3020 ../wp-cerber.php:3021
1005
  msgid "A new activity has been recorded"
1006
  msgstr "Eine neue Aktivität wurde aufgezeichnet"
1007
 
1008
+ #: ../wp-cerber.php:3465
1009
  msgid "User"
1010
  msgstr "Benutzer"
1011
 
1012
+ #: ../wp-cerber.php:3473
1013
  msgid "Search string"
1014
  msgstr "Such-String"
1015
 
1016
+ #: ../wp-cerber.php:3494
1017
  msgid "To unsubscribe click here"
1018
  msgstr "Zum Abmelden hier klicken"
1019
 
1020
+ #: ../settings.php:97
1021
  msgid "Preferences"
1022
  msgstr "Präferenzen"
1023
 
1024
+ #: ../settings.php:99
1025
  msgid "Date format"
1026
  msgstr "Datumsformat"
1027
 
1028
+ #: ../settings.php:99
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:1092 ../settings.php:175
1033
  msgid "Push notifications"
1034
  msgstr "Push-Benachrichtigungen"
1035
 
1036
+ #: ../settings.php:170
1037
  msgid "Email notifications"
1038
  msgstr "Email-Benachrichtigungen"
1039
 
1040
+ #: ../settings.php:172 ../settings.php:192
1041
  msgid "Use comma to specify multiple values"
1042
  msgstr "Mit Komma mehrere Werte trennen"
1043
 
1044
+ #: ../settings.php:182
1045
  msgid "All connected devices"
1046
  msgstr "Alle verbundenen Geräte"
1047
 
1048
+ #: ../settings.php:183
1049
  msgid "No devices found"
1050
  msgstr "Kein Gerät gefunden"
1051
 
1052
+ #: ../settings.php:185
1053
  msgid "Not available"
1054
  msgstr "Nicht verfügbar"
1055
 
1056
+ #: ../common.php:504
1057
  msgid "Password reset requested"
1058
  msgstr "Passwort Zurücksetzung angefordert"
1059
 
1060
+ #: ../common.php:558
1061
  msgid "Limit on failed reCAPTCHA verifications is reached"
1062
  msgstr "Grenze an fehlgeschlagenen reCAPTCHA ist erreicht"
1063
 
1064
+ #: ../common.php:603
1065
  msgid "%s ago"
1066
  msgstr "vor %s"
1067
 
1068
+ #: ../settings.php:71
1069
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
1070
  msgstr "Eingeschränkte Zugangsregeln für IP Adresse in der White IP Liste anwenden"
1071
 
1072
+ #: ../settings.php:80
1073
  msgid "Display 404 page"
1074
  msgstr "Zeige 404 Seite"
1075
 
1076
+ #: ../settings.php:150
1077
  msgid "Invisible reCAPTCHA"
1078
  msgstr "Unsichtbares reCAPTCHA"
1079
 
1080
+ #: ../settings.php:150
1081
  msgid "Enable invisible reCAPTCHA"
1082
  msgstr "Unsichtbares reCAPTCHA aktivieren"
1083
 
1084
+ #: ../settings.php:150
1085
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
1086
  msgstr "(nicht anwenden, sofern nicht Seite betreten wurde und Geheimschlüssel für unsichtbare Version erhalten)"
1087
 
1088
+ #: ../settings.php:161
1089
  msgid "Enable reCAPTCHA for WordPress comment form"
1090
  msgstr "reCAPTCHA für WordPress Kommentarformular aktivieren"
1091
 
1092
+ #: ../settings.php:162
1093
  msgid "Disable reCAPTCHA for logged in users"
1094
  msgstr "reCAPTCHA für angemeldete Benutzer deaktivieren"
1095
 
1096
+ #: ../settings.php:164
1097
  msgid "Limit attempts"
1098
  msgstr "Versuche Einschränken"
1099
 
1100
+ #: ../settings.php:164
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:213
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:457 ../dashboard.php:616
1109
  msgid "Event"
1110
  msgstr "Ereignis"
1111
 
1112
+ #: ../common.php:116
1113
  msgid "Spam comments denied"
1114
  msgstr "Spam Kommentare verweigert"
1115
 
1116
+ #: ../common.php:118
1117
  msgid "Malicious IP addresses detected"
1118
  msgstr "Schadhafte IP Adresse gefunden"
1119
 
1120
+ #: ../common.php:119
1121
  msgid "Lockouts occurred"
1122
  msgstr "Sperre aufgetreten"
1123
 
1124
+ #: ../dashboard.php:1288
 
 
 
 
1125
  msgid "All suspicious activity"
1126
  msgstr "Alle verdächtigen Aktivitäten"
1127
 
1128
+ #: ../wp-cerber.php:987 ../wp-cerber.php:993 ../wp-cerber.php:1009 ../wp-cerber.
1129
+ #: php:1016
1130
  msgid "You are not allowed to register."
1131
  msgstr "Registrierung nicht erlaubt."
1132
 
1133
+ #: ../common.php:489
1134
  msgid "Spam comment denied"
1135
  msgstr "Spam Kommentar verweigert"
1136
 
1137
+ #: ../common.php:514
 
 
 
 
1138
  msgid "Attempt to log in denied"
1139
  msgstr "Loginversuch verweigert"
1140
 
1141
+ #: ../common.php:515
1142
  msgid "Attempt to register denied"
1143
  msgstr "Registrierungsversuch verweigert"
1144
 
1145
+ #: ../common.php:113
1146
  msgid "Malicious activities mitigated"
1147
  msgstr "Schadhafte Aktivitäten gemildert"
1148
 
1149
+ #: ../dashboard.php:881
1150
  msgid "Cerber antispam settings"
1151
+ msgstr "Cerber Antispam-Einstellungen"
1152
 
1153
+ #: ../dashboard.php:881 ../wp-cerber.php:3685 ../settings.php:161
1154
  msgid "Antispam"
1155
+ msgstr "Antispam"
1156
 
1157
+ #: ../settings.php:132
1158
  msgid "Cerber antispam engine"
1159
  msgstr ""
1160
 
1161
+ #: ../settings.php:133
1162
  msgid "Comment form"
1163
+ msgstr "Kommentarformular"
1164
 
1165
+ #: ../settings.php:133
1166
  msgid "Protect comment form with bot detection engine"
1167
+ msgstr "Schützen Sie das Kommentarformular mit der Bot-Erkennungs-Engine."
1168
 
1169
+ #: ../settings.php:134
1170
  msgid "Protect registration form with bot detection engine"
1171
+ msgstr "Schützen Sie das Kommentarformular mit der Bot-Erkennungs-Engine."
1172
 
1173
  #: ../cerber-tools.php:48
1174
  msgid "Export & Import"
1175
+ msgstr "Export & Import"
1176
 
1177
  #: ../cerber-tools.php:49
1178
  msgid "Diagnostic"
1179
+ msgstr "Diagnose"
1180
 
1181
  #: ../cerber-tools.php:50
1182
  msgid "License"
1183
+ msgstr "Lizenz"
1184
 
1185
+ #: ../cerber-tools.php:309
1186
  msgid "Antispam and bot detection settings"
1187
+ msgstr "Antispam- und Bot-Erkennungseinstellungen"
1188
 
1189
+ #: ../wp-cerber.php:1253
 
 
 
 
 
1190
  msgid "Sorry, human verification failed."
1191
  msgstr ""
1192
 
1193
+ #: ../common.php:559
1194
  msgid "Bot activity is detected"
1195
  msgstr ""
1196
 
1197
+ #: ../settings.php:142
1198
  msgid "Comment processing"
1199
  msgstr ""
1200
 
1201
+ #: ../settings.php:143
1202
  msgid "If a spam comment detected"
1203
  msgstr ""
1204
 
1205
+ #: ../settings.php:144
1206
  msgid "Trash spam comments"
1207
  msgstr ""
1208
 
1209
+ #: ../settings.php:144
1210
  msgid "Move spam comments to trash after"
1211
  msgstr ""
1212
 
1213
+ #: ../common.php:490
1214
+ msgid "Spam form submission denied"
1215
+ msgstr ""
1216
+
1217
+ #: ../settings.php:135
1218
+ msgid "Other forms"
1219
+ msgstr ""
1220
+
1221
+ #: ../settings.php:135
1222
+ msgid "Protect all forms on the website with bot detection engine"
1223
+ msgstr ""
1224
+
1225
+ #: ../settings.php:137
1226
+ msgid "Adjust antispam engine"
1227
+ msgstr ""
1228
+
1229
+ #: ../settings.php:138
1230
+ msgid "Safe mode"
1231
+ msgstr ""
1232
+
1233
+ #: ../settings.php:138
1234
+ msgid "Use less restrictive policies (allow AJAX)"
1235
+ msgstr ""
1236
+
1237
+ #: ../settings.php:139
1238
+ msgid "Logged in users"
1239
+ msgstr ""
1240
+
1241
+ #: ../settings.php:139
1242
+ msgid "Disable bot detection engine for logged in users"
1243
+ msgstr ""
1244
+
1245
+ #. Name of the plugin
1246
+ #:
1247
+ msgid "WP Cerber Security & Antispam"
1248
+ msgstr ""
1249
+
1250
+ #: ../dashboard.php:95 ../dashboard.php:614
1251
+ msgid "Country"
1252
+ msgstr ""
1253
+
1254
+ #: ../dashboard.php:645
1255
+ msgid "All events"
1256
+ msgstr ""
1257
+
1258
+ #: ../dashboard.php:878
1259
+ msgid "Cerber Security Rules"
1260
+ msgstr ""
1261
+
1262
+ #: ../dashboard.php:878 ../dashboard.php:1966
1263
+ msgid "Security Rules"
1264
+ msgstr ""
1265
+
1266
+ #: ../dashboard.php:955
1267
+ msgid "Failed login attempts"
1268
+ msgstr ""
1269
+
1270
+ #: ../dashboard.php:956
1271
+ msgid "Registered"
1272
+ msgstr ""
1273
+
1274
+ #: ../dashboard.php:1023
1275
+ msgid "You"
1276
+ msgstr ""
1277
+
1278
+ #: ../common.php:117
1279
+ msgid "Spam form submissions denied"
1280
+ msgstr ""
1281
+
1282
+ #: ../dashboard.php:1344 ../wp-cerber.php:3010 ../wp-cerber.php:3678
1283
+ msgid "Getting Started Guide"
1284
+ msgstr ""
1285
+
1286
+ #: ../dashboard.php:1971
1287
+ msgid "Countries"
1288
+ msgstr ""
1289
+
1290
+ #: ../dashboard.php:2036
1291
+ msgid "Permitted for one country"
1292
+ msgid_plural "Permitted for %d countries"
1293
+ msgstr[0] ""
1294
+ msgstr[1] ""
1295
+
1296
+ #: ../dashboard.php:2047
1297
+ msgid "No rule"
1298
+ msgstr ""
1299
+
1300
+ #: ../dashboard.php:2248
1301
+ msgid "Security rules have been updated"
1302
+ msgstr ""
1303
+
1304
+ #. URI of the plugin
1305
+ #:
1306
+ msgid "https://wpcerber.com"
1307
+ msgstr ""
1308
+
1309
+ #: ../common.php:491
1310
+ msgid "Form submission denied"
1311
+ msgstr ""
1312
+
1313
+ #: ../common.php:492
1314
+ msgid "Comment denied"
1315
+ msgstr ""
1316
+
1317
+ #: ../common.php:517
1318
+ msgid "Request to REST API denied"
1319
+ msgstr ""
1320
+
1321
+ #: ../common.php:518
1322
+ msgid "XML-RPC request denied"
1323
+ msgstr ""
1324
+
1325
+ #: ../common.php:522
1326
+ msgid "Bot detected"
1327
+ msgstr ""
1328
+
1329
+ #: ../common.php:523
1330
+ msgid "Citadel mode is active"
1331
+ msgstr ""
1332
+
1333
+ #: ../common.php:528
1334
+ msgid "Malicious activity detected"
1335
+ msgstr ""
1336
+
1337
+ #: ../common.php:529
1338
+ msgid "Blocked by country rule"
1339
+ msgstr ""
1340
+
1341
+ #: ../common.php:530
1342
+ msgid "Limit reached"
1343
+ msgstr ""
1344
+
1345
+ #: ../common.php:531
1346
+ msgid "Multiple suspicious activities"
1347
+ msgstr ""
1348
+
1349
+ #: ../common.php:560
1350
+ msgid "Multiple suspicious activities were detected"
1351
+ msgstr ""
1352
+
1353
+ #: ../settings.php:107
1354
+ msgid "Block access to user pages like /?author=n and user data via REST API"
1355
+ msgstr ""
1356
+
1357
+ #: ../settings.php:110
1358
+ msgid "Block access to the WordPress REST API except the following"
1359
+ msgstr ""
1360
+
1361
+ #: ../settings.php:111
1362
+ msgid "Allow REST API for logged in users"
1363
+ msgstr ""
1364
+
1365
+ #: ../settings.php:112
1366
+ msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
1367
+ msgstr ""
1368
+
1369
+ #: ../settings.php:122
1370
+ msgid "Registration limit"
1371
+ msgstr ""
1372
+
1373
+ #: ../settings.php:125
1374
+ msgid "Sort users in dashboard"
1375
+ msgstr ""
1376
+
1377
+ #: ../settings.php:125
1378
+ msgid "by date of registration"
1379
+ msgstr ""
1380
+
1381
+ #: ../settings.php:140
1382
+ msgid "Query whitelist"
1383
+ msgstr ""
1384
+
1385
+ #: ../settings.php:382 ../settings.php:505
1386
+ msgid "%s allowed registrations in %s minutes from one IP"
1387
+ msgstr ""
1388
+
1389
+ #: ../dashboard.php:2103
1390
+ msgid "Start typing here to find a country"
1391
+ msgstr ""
1392
+
1393
+ #: ../dashboard.php:2184
1394
+ msgid "Click on a country name to add it to the list of selected countries"
1395
+ msgstr ""
1396
+
1397
+ #: ../dashboard.php:2203
1398
+ msgid "Submit forms"
1399
+ msgstr ""
1400
+
1401
+ #: ../dashboard.php:2204
1402
+ msgid "Post comments"
1403
+ msgstr ""
1404
+
1405
+ #: ../dashboard.php:2205
1406
+ msgid "Log in to the website"
1407
+ msgstr ""
1408
+
1409
+ #: ../dashboard.php:2206
1410
+ msgid "Register on the website"
1411
+ msgstr ""
1412
+
1413
+ #: ../dashboard.php:2207
1414
+ msgid "Use XML-RPC"
1415
+ msgstr ""
1416
+
1417
+ #: ../dashboard.php:2208
1418
+ msgid "Use REST API"
1419
+ msgstr ""
1420
+
1421
+ #: ../settings.php:143
1422
+ msgid "Deny it completely"
1423
+ msgstr ""
1424
+
1425
+ #: ../settings.php:143
1426
+ msgid "Mark it as spam"
1427
+ msgstr ""
1428
+
1429
+ #: ../dashboard.php:1273
1430
+ msgid "in the last 24 hours"
1431
+ msgstr ""
1432
+
1433
+ #: ../dashboard.php:1622
1434
+ msgid "Main settings"
1435
+ msgstr ""
1436
+
1437
+ #: ../settings.php:190
1438
+ msgid "Weekly reports"
1439
+ msgstr ""
1440
+
1441
+ #: ../settings.php:602
1442
+ msgid "Sunday"
1443
+ msgstr ""
1444
+
1445
+ #: ../settings.php:603
1446
+ msgid "Monday"
1447
+ msgstr ""
1448
+
1449
+ #: ../settings.php:604
1450
+ msgid "Tuesday"
1451
+ msgstr ""
1452
+
1453
+ #: ../settings.php:605
1454
+ msgid "Wednesday"
1455
+ msgstr ""
1456
+
1457
+ #: ../settings.php:606
1458
+ msgid "Thursday"
1459
+ msgstr ""
1460
+
1461
+ #: ../settings.php:607
1462
+ msgid "Friday"
1463
+ msgstr ""
1464
+
1465
+ #: ../settings.php:608
1466
+ msgid "Saturday"
1467
+ msgstr ""
1468
+
1469
+ #: ../settings.php:661 ../settings.php:662
1470
+ msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1471
+ msgstr ""
1472
+
1473
+ #. translators: preposition of time
1474
+ #: ../settings.php:618
1475
+ msgctxt "preposition of time"
1476
+ msgid "at"
1477
+ msgstr ""
1478
+
1479
+ #: ../wp-cerber.php:3026
1480
+ msgid "Weekly report"
1481
+ msgstr ""
1482
+
1483
+ #: ../wp-cerber.php:3029
1484
+ msgid "To change reporting settings visit"
1485
+ msgstr ""
1486
+
1487
+ #: ../wp-cerber.php:3055
1488
+ msgid "Your login page:"
1489
+ msgstr ""
1490
+
1491
+ #: ../wp-cerber.php:3059
1492
+ msgid "Your license is valid until"
1493
+ msgstr ""
1494
+
1495
+ #: ../wp-cerber.php:3170
1496
+ msgid "Activity details"
1497
+ msgstr ""
1498
+
1499
+ #: ../settings.php:634
1500
+ msgid "Click to send now"
1501
+ msgstr ""
1502
+
1503
+ #: ../wp-cerber.php:653
1504
+ msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1505
+ msgstr ""
1506
+
1507
+ #: ../dashboard.php:357
1508
+ msgid "Email has been sent to"
1509
+ msgstr ""
1510
+
1511
+ #: ../dashboard.php:360
1512
+ msgid "Unable to send email to"
1513
+ msgstr ""
1514
+
1515
+ #: ../dashboard.php:2039
1516
+ msgid "Not permitted for one country"
1517
+ msgid_plural "Not permitted for %d countries"
1518
+ msgstr[0] ""
1519
+ msgstr[1] ""
1520
+
1521
+ #: ../dashboard.php:2188
1522
+ msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1523
+ msgid "Selected countries are permitted to %s, other countries are not permitted to"
1524
+ msgstr ""
1525
+
1526
+ #: ../dashboard.php:2191
1527
+ msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1528
+ msgid "Selected countries are not permitted to %s, other countries are permitted to"
1529
+ msgstr ""
1530
+
1531
+ #. Description of the plugin
1532
+ #:
1533
+ 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>."
1534
+ msgstr ""
1535
+
1536
+ #: ../wp-cerber.php:3158
1537
+ msgid "Weekly Report"
1538
+ msgstr ""
1539
+
1540
+ #: ../settings.php:80
1541
+ msgid "Use 404 template from the active theme"
1542
+ msgstr ""
1543
+
1544
+ #: ../settings.php:80
1545
+ msgid "Display simple 404 page"
1546
+ msgstr ""
1547
+
1548
+ #: ../settings.php:140
1549
+ msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
1550
+ msgstr ""
1551
+
1552
+ #: ../settings.php:192
1553
+ msgid "if empty, email from notification settings will be used"
1554
+ msgstr ""
1555
+
1556
+ #: ../settings.php:193
1557
+ msgid "Enable reporting"
1558
+ msgstr ""
1559
+
1560
+ #: ../wp-cerber.php:3082
1561
+ msgid "Your last sign-in was %s from %s"
1562
+ msgstr ""
1563
+
1564
+ #: ../wp-cerber.php:3184
1565
+ msgid "Attempts to log in with non-existent username"
1566
+ msgstr ""
1567
+
languages/wp-cerber-es_ES.mo CHANGED
Binary file
languages/wp-cerber-es_ES.po CHANGED
@@ -1,1212 +1,1525 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WP Cerber\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: Tue Sep 08 2015 21:38:11 GMT+0300\n"
6
- "PO-Revision-Date: 2017-07-17 10:24+0200\n"
7
- "Last-Translator: IMurias <imurias@bizkaia.eu>\n"
8
- "Language-Team: IMurias <imurias@bizkaia.eu>\n"
9
- "Language: es_ES\n"
10
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
17
- "X-Generator: Poedit 1.8.3\n"
18
- "X-Loco-Target-Locale: es_ES\n"
19
- "X-Poedit-SearchPath-0: ..\n"
20
-
21
- #: ../settings.php:55
22
  msgid "Limit login attempts"
23
  msgstr "Límite de intentos de conexión"
24
 
25
- #: ../settings.php:56
26
  msgid "Attempts"
27
  msgstr "Intentos"
28
 
29
- #: ../settings.php:57
30
  msgid "Lockout duration"
31
  msgstr "Duración del bloqueo"
32
 
33
- #: ../common.php:253 ../settings.php:57 ../settings.php:74
34
  msgid "minutes"
35
  msgstr "minutos"
36
 
37
- #: ../settings.php:58
38
  msgid "Aggressive lockout"
39
  msgstr "Bloqueo agresivo"
40
 
41
- #: ../settings.php:60
42
  msgid "Site connection"
43
  msgstr "Conexión web"
44
 
45
- #: ../settings.php:62
46
  msgid "Proactive security rules"
47
  msgstr "Normas de seguridad proactivas"
48
 
49
- #: ../settings.php:63
50
  msgid "Block subnet"
51
  msgstr "Bloquear subred"
52
 
53
- #: ../settings.php:66
54
  msgid "Request wp-login.php"
55
  msgstr "Solicitud wp-login.php"
56
 
57
- #: ../settings.php:66
58
  msgid "Immediately block IP after any request to wp-login.php"
59
  msgstr "Bloquear IP inmediatamente después de cualquier solicitud a wp-login.php"
60
 
61
- #: ../settings.php:65
62
  msgid "Redirect dashboard requests"
63
  msgstr "Redirigir peticiones al escritorio"
64
 
65
- #: ../settings.php:68
66
  msgid "Custom login page"
67
  msgstr "Personalizar página de acceso"
68
 
69
- #: ../settings.php:69
70
  msgid "Custom login URL"
71
  msgstr "Personalizar URL de acceso"
72
 
73
- #: ../settings.php:69
74
  msgid "must not overlap with the existing pages or posts slug"
75
  msgstr "no debe solaparse con el slug actual de páginas o entradas"
76
 
77
- #: ../settings.php:70
78
  msgid "Disable wp-login.php"
79
  msgstr "Desactivar wp-login.php"
80
 
81
- #: ../settings.php:70
82
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
83
  msgstr "Bloquear el acceso directo a wp-login.php y devolver un error HTTP 404 - No encontrado"
84
 
85
- #: ../dashboard.php:859 ../settings.php:72
86
  msgid "Citadel mode"
87
  msgstr "Modo Ciudadela"
88
 
89
- #: ../settings.php:73
90
  msgid "Threshold"
91
  msgstr "Umbral"
92
 
93
- #: ../settings.php:74
94
  msgid "Duration"
95
  msgstr "Duración"
96
 
97
- #: ../settings.php:59 ../settings.php:76 ../settings.php:78
98
  msgid "Notifications"
99
  msgstr "Notificaciones"
100
 
101
- #: ../settings.php:76
102
  msgid "Send notification to admin email"
103
  msgstr "Enviar una notificación al correo del administrador"
104
 
105
- #: ../dashboard.php:865 ../dashboard.php:1279 ../wp-cerber.php:2319
106
- #: ../settings. php:200 ../cerber-tools.php:59 ../cerber-tools.php:68
107
- #: ../cerber-tools.php:180
108
  msgid "Access Lists"
109
  msgstr "Listas de acceso"
110
 
111
- #: ../dashboard.php:330 ../dashboard.php:429 ../dashboard.php:863 ../dashboard.
112
- #: php:971 ../wp-cerber.php:2208 ../settings.php:83 ../settings.php:192
113
  msgid "Activity"
114
  msgstr "Actividad"
115
 
116
- #: ../dashboard.php:864 ../settings.php:195
117
  msgid "Lockouts"
118
  msgstr "Bloqueos"
119
 
120
- #: ../settings.php:281
121
  msgid "%s allowed retries in %s minutes"
122
  msgstr "%s reintentos admitidos en %s minutos"
123
 
124
- #: ../settings.php:298
125
  msgid "Enable after %s failed login attempts in last %s minutes"
126
  msgstr "Habilitar después de %s intentos de acceso fallidos en los últimos %s minutos"
127
 
128
- #: ../dashboard.php:77 ../dashboard.php:429 ../wp-cerber.php:2209
129
  msgid "IP"
130
  msgstr "IP"
131
 
132
- #: ../dashboard.php:330 ../dashboard.php:429
133
  msgid "Date"
134
  msgstr "Fecha"
135
 
136
- #: ../dashboard.php:330 ../dashboard.php:429
137
  msgid "Local User"
138
  msgstr "Usuario local"
139
 
140
- #: ../dashboard.php:330 ../dashboard.php:429 ../wp-cerber.php:2217
141
  msgid "Username used"
142
  msgstr "Nombre utilizado"
143
 
144
- #: ../dashboard.php:83
145
  msgid "Showing last %d records from %d"
146
  msgstr "Mostrando los últimos %d registros de %d"
147
 
148
- #: ../common.php:155
149
  msgid "Logged in"
150
  msgstr "Sesión iniciada"
151
 
152
- #: ../common.php:156
153
  msgid "Logged out"
154
  msgstr "Desconectado"
155
 
156
- #: ../common.php:157
157
  msgid "Login failed"
158
  msgstr "Error de inicio de sesión"
159
 
160
- #: ../common.php:160
161
  msgid "IP blocked"
162
  msgstr "IP bloqueada"
163
 
164
- #: ../common.php:161
165
  msgid "Subnet blocked"
166
  msgstr "Subred bloqueada"
167
 
168
- #: ../common.php:163
169
  msgid "Citadel activated!"
170
  msgstr "¡Ciudadela activada!"
171
 
172
- #: ../dashboard.php:414 ../dashboard.php:592 ../common.php:165
173
  msgid "Locked out"
174
  msgstr "Bloqueado"
175
 
176
- #: ../common.php:166
177
  msgid "IP blacklisted"
178
  msgstr "IP en la lista negra"
179
 
180
- #: ../common.php:169
181
  msgid "Password changed"
182
  msgstr "Contraseña cambiada"
183
 
184
- #: ../dashboard.php:74 ../dashboard.php:123
185
  msgid "Remove"
186
  msgstr "Eliminar"
187
 
188
- #: ../dashboard.php:260
189
  msgid "Lockout for %s was removed"
190
  msgstr "Se ha eliminado el bloqueo de %s"
191
 
192
- #: ../dashboard.php:102 ../dashboard.php:409 ../dashboard.php:587 ../dashboard.
193
- #: php:857 ../wp-cerber.php:2313 ../settings.php:157
194
  msgid "White IP Access List"
195
  msgstr "Lista Blanca de Accesos IP"
196
 
197
- #: ../dashboard.php:104 ../dashboard.php:410 ../dashboard.php:589 ../dashboard.
198
- #: php:858
199
  msgid "Black IP Access List"
200
  msgstr "Lista Negra de Accesos IP"
201
 
202
- #: ../dashboard.php:126
203
  msgid "List is empty"
204
  msgstr "La lista está vacía"
205
 
206
- #: ../dashboard.php:148
207
  msgid "Address %s was added to White IP Access List"
208
  msgstr "Dirección %s añadida a la lista blanca de IPs"
209
 
210
- #: ../dashboard.php:161
211
  msgid "Address %s was added to Black IP Access List"
212
  msgstr "Dirección %s añadida a la lista negra de IPs"
213
 
214
- #: ../wp-cerber.php:1925
215
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
216
  msgstr "El Modo Ciudadela se activa después de %d intentos fallidos de inicio de sesión en %d minutos."
217
 
218
- #: ../dashboard.php:1092
219
  msgid "View Activity"
220
  msgstr "Ver actividad"
221
 
222
- #: ../dashboard.php:866 ../dashboard.php:1278 ../cerber-tools.php:58 ../cerber-
223
- #: tools.php:67
224
  msgid "Settings"
225
  msgstr "Ajustes"
226
 
227
- #: ../dashboard.php:761
228
  msgid "Last login"
229
  msgstr "Último acceso"
230
 
231
- #: ../dashboard.php:788 ../dashboard.php:840
232
  msgid "Never"
233
  msgstr "Nunca"
234
 
235
- #: ../dashboard.php:1013 ../dashboard.php:1408
236
  msgid "Are you sure?"
237
  msgstr "¿Estás seguro?"
238
 
239
- #: ../dashboard.php:662
240
- msgid "WP Cerber Settings"
241
- msgstr "Ajustes de WP Cerber"
242
-
243
- #: ../settings.php:60
244
  msgid "My site is behind a reverse proxy"
245
  msgstr "Mi web está detrás de un proxy inverso"
246
 
247
- #: ../settings.php:64
248
  msgid "Non-existent users"
249
  msgstr "Usuarios inexistentes"
250
 
251
- #: ../settings.php:64
252
  msgid "Immediately block IP when attempting to login with a non-existent username"
253
  msgstr "Bloquear IP inmediatamente al intentar iniciar sesión con un nombre de usuario inexistente"
254
 
255
- #: ../settings.php:65
256
  msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
257
  msgstr "Desactivar la redirección automática a la página de inicio de sesión cuando /wp-admin/ es solicitado por una petición no autorizada"
258
 
259
- #: ../settings.php:139
260
  msgid "Make your protection smarter!"
261
  msgstr "¡Haz que tu protección sea más inteligente!"
262
 
263
- #: ../settings.php:143
264
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
265
  msgstr "Por favor, activa los enlaces permanentes para utilizar esta función. Establece las opciones de enlaces permanentes a algún valor no predeterminado."
266
 
267
- #: ../settings.php:146
268
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
269
  msgstr "Cuidado al habilitar esta opción. Si olvidas la dirección URL de conexión personalizada, no podrás iniciar sesión."
270
 
271
- #: ../wp-cerber.php:2318 ../settings.php:197
272
  msgid "Main Settings"
273
- msgstr "Ajustes principales"
274
 
275
- #: ../settings.php:211
276
  msgid "Help"
277
  msgstr "Ayuda"
278
 
279
- #: ../settings.php:286
280
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
281
  msgstr "Aumentar la duración del bloqueo en %s horas después de %s bloqueos en las últimas %s horas"
282
 
283
- #: ../wp-cerber.php:189
284
  msgid "You are not allowed to log in. Ask your administrator for assistance."
285
  msgstr "No puedes iniciar sesión. Pregunta al administrador para obtener ayuda."
286
 
287
- #: ../wp-cerber.php:195
288
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
289
  msgstr "Se ha alcanzado el límite de intentos de inicio de sesión. Por favor, inténtalo de nuevo dentro de %d minutos."
290
 
291
- #: ../wp-cerber.php:213
292
  msgid "You have only one attempt remaining."
293
  msgid_plural "You have %d attempts remaining."
294
  msgstr[0] "Queda solo un intento restante."
295
  msgstr[1] "Quedan %d intentos restantes."
296
 
297
- #: ../dashboard.php:410
298
- msgid "Show only"
299
- msgstr "Mostrar solo"
300
-
301
- #: ../dashboard.php:442
302
  msgid "No activity has been logged."
303
  msgstr "No hay actividad registrada."
304
 
305
- #: ../dashboard.php:77
306
  msgid "Expires"
307
  msgstr "Caduca"
308
 
309
- #: ../dashboard.php:89
310
  msgid "No lockouts at the moment. The sky is clear."
311
  msgstr "No hay bloqueos en este momento. El cielo esta despejado."
312
 
313
- #: ../dashboard.php:102
314
  msgid "These IPs will never be locked out"
315
  msgstr "Estas IPs nunca se bloquearán"
316
 
317
- #: ../dashboard.php:106
318
  msgid "Your IP"
319
  msgstr "Tu IP"
320
 
321
- #: ../dashboard.php:157
322
  msgid "You can't add your IP address"
323
  msgstr "No puedes añadir tu dirección IP"
324
 
325
- #: ../wp-cerber.php:1926
326
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
327
  msgstr "El último intento fallido fue el %s desde la IP %s con el nombre de usuario: %s."
328
 
329
- #: ../wp-cerber.php:1986
330
- msgid "Change notification settings"
331
- msgstr "Cambiar ajuste de las notificaciones"
332
-
333
- #: ../wp-cerber.php:2296
334
  msgid "Can't activate WP Cerber due to a database error."
335
  msgstr "No se puede activar WP Cerber debido a un error de base de datos."
336
 
337
- #: ../settings.php:293
338
  msgid "Notify admin if the number of active lockouts above"
339
  msgstr "Notificar al administrador si el número de bloqueos activos es superior a"
340
 
341
- #: ../common.php:251 ../settings.php:84
342
  msgid "days"
343
  msgstr "días"
344
 
345
- #: ../dashboard.php:812
346
  msgid "Cerber Quick View"
347
  msgstr "Vista Rápida del Cerbero"
348
 
349
- #: ../dashboard.php:85
350
  msgid "Hint"
351
  msgstr "Sugerencia"
352
 
353
- #: ../dashboard.php:85
354
  msgid "To view activity, click on the IP"
355
  msgstr "Para ver la actividad, haz clic en la IP"
356
 
357
- #: ../dashboard.php:123 ../dashboard.php:619
358
  msgid "Check for activity"
359
  msgstr "Comprobar actividad"
360
 
361
- #: ../settings.php:63
362
  msgid "Always block entire subnet Class C of intruders IP"
363
  msgstr "Bloquear siempre todas las subredes de clase C de IPs intrusas"
364
 
365
- #: ../settings.php:76 ../settings.php:295
366
  msgid "Click to send test"
367
  msgstr "Pulsa para enviar una prueba"
368
 
369
- #: ../settings.php:373
370
  msgid "Attention! You have changed the login URL! The new login URL is"
371
  msgstr "¡Atención! ¡Has cambiado la dirección URL de conexión! La nueva URL de acceso es"
372
 
373
- #: ../dashboard.php:760
374
  msgid "Comments"
375
  msgstr "Comentarios"
376
 
377
- #: ../dashboard.php:763
378
- msgid "Date of registration"
379
- msgstr "Fecha de registro"
380
-
381
- #: ../dashboard.php:252
382
- msgid "Message has been sent to "
383
- msgstr "El mensaje se ha enviado a "
384
-
385
- #: ../dashboard.php:1154
386
  msgid "Update to version %s of WP Cerber"
387
  msgstr "Actualizar a la versión %s de WP Cerber"
388
 
389
- #: ../wp-cerber.php:1927 ../wp-cerber.php:2233
390
  msgid "View activity in dashboard"
391
  msgstr "Ver actividad en el escritorio"
392
 
393
- #: ../wp-cerber.php:1954
394
  msgid "Number of active lockouts"
395
  msgstr "Número de bloqueos activos"
396
 
397
- #: ../wp-cerber.php:1958
398
  msgid "View lockouts in dashboard"
399
  msgstr "Ver los bloqueos en el escritorio"
400
 
401
- #: ../wp-cerber.php:2011
402
  msgid "This message was sent by"
403
  msgstr "Este mensaje fue enviado por"
404
 
405
- #: ../dashboard.php:670 ../cerber-tools.php:40
406
  msgid "Tools"
407
  msgstr "Herramientas"
408
 
409
- #: ../cerber-tools.php:55
410
  msgid "Export settings to the file"
411
  msgstr "Exportar ajustes al archivo"
412
 
413
- #: ../cerber-tools.php:56
414
  msgid "When you click the button below you will get a configuration file, which you can upload on another site."
415
  msgstr "Al pulsar el botón de abajo obtendrás un archivo de configuración, que luego se puede cargar en otro sitio."
416
 
417
- #: ../cerber-tools.php:57
418
  msgid "What do you want to export?"
419
  msgstr "¿Qué quieres exportar?"
420
 
421
- #: ../cerber-tools.php:60
422
  msgid "Download file"
423
  msgstr "Descargar archivo"
424
 
425
- #: ../cerber-tools.php:62
426
  msgid "Import settings from the file"
427
  msgstr "Importar ajustes desde el archivo"
428
 
429
- #: ../cerber-tools.php:63
430
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
431
  msgstr "Al pulsar el botón de abajo se cargará el archivo y se anularán todas las configuraciones existentes."
432
 
433
- #: ../cerber-tools.php:64
434
  msgid "Select file to import."
435
  msgstr "Seleccionar archivo a importar."
436
 
437
- #: ../cerber-tools.php:64
438
  msgid "Maximum upload file size: %s."
439
  msgstr "Tamaño máximo permitido: %s."
440
 
441
- #: ../cerber-tools.php:67
442
  msgid "What do you want to import?"
443
  msgstr "¿Qué quieres importar?"
444
 
445
- #: ../cerber-tools.php:69
446
  msgid "Upload file"
447
  msgstr "Cargar archivo"
448
 
449
- #: ../cerber-tools.php:150
450
  msgid "No file was uploaded or file is corrupted"
451
  msgstr "Ningún archivo subido ni archivo dañado"
452
 
453
- #: ../cerber-tools.php:180
454
  msgid "Error while updating"
455
  msgstr "Ha habido un error al actualizar"
456
 
457
- #: ../cerber-tools.php:183
458
  msgid "Settings has imported successfully from"
459
  msgstr "La configuración se ha importado con éxito desde"
460
 
461
- #: ../cerber-tools.php:187
462
  msgid "Error while parsing file"
463
  msgstr "Error al analizar el archivo"
464
 
465
- #: ../dashboard.php:77 ../dashboard.php:429
466
  msgid "Hostname"
467
  msgstr "Host"
468
 
469
- #: ../dashboard.php:232
470
  msgid "unknown"
471
  msgstr "desconocido"
472
 
473
- #: ../settings.php:84
474
  msgid "Keep records for"
475
  msgstr "Mantener un registro de"
476
 
477
- #: ../dashboard.php:844
478
  msgid "active"
479
  msgstr "activar"
480
 
481
- #: ../dashboard.php:844
482
  msgid "deactivate"
483
  msgstr "desactivar"
484
 
485
- #: ../dashboard.php:846
486
  msgid "not active"
487
  msgstr "no activo"
488
 
489
- #: ../dashboard.php:847
490
  msgid "disabled"
491
  msgstr "desactivado"
492
 
493
- #: ../dashboard.php:852
494
  msgid "failed attempts"
495
  msgstr "intentos fallidos"
496
 
497
- #: ../dashboard.php:852 ../dashboard.php:853
498
  msgid "in 24 hours"
499
  msgstr "en 24 horas"
500
 
501
- #: ../dashboard.php:852 ../dashboard.php:853
502
  msgid "view all"
503
  msgstr "ver todo"
504
 
505
- #: ../dashboard.php:853
506
  msgid "lockouts"
507
  msgstr "bloqueos"
508
 
509
- #: ../dashboard.php:855
510
  msgid "Lockouts at the moment"
511
  msgstr "Bloqueos en este momento"
512
 
513
- #: ../dashboard.php:856
514
  msgid "Last lockout"
515
  msgstr "Último bloqueo"
516
 
517
- #: ../dashboard.php:857 ../dashboard.php:858 ../dashboard.php:1258
518
  msgid "entry"
519
  msgid_plural "entries"
520
  msgstr[0] "entrada"
521
  msgstr[1] "entradas"
522
 
523
- #: ../dashboard.php:1008
524
  msgid "Confused about some settings?"
525
  msgstr "¿Confundido acerca de algunos ajustes?"
526
 
527
- #: ../dashboard.php:1009
528
  msgid "You can easily load default recommended settings using button below"
529
  msgstr "Se pueden cargar fácilmente los valores recomendados predeterminados usando el botón de abajo"
530
 
531
- #: ../dashboard.php:1011
532
  msgid "Load default settings"
533
  msgstr "Cargar ajustes predeterminados"
534
 
535
- #: ../dashboard.php:1019
536
  msgid "doesn't affect Custom login URL and Access Lists"
537
  msgstr "no afecta a la URL de acceso personalizada ni a las listas de acceso"
538
 
539
- #: ../dashboard.php:1038
540
- msgid "Donate"
541
- msgstr "Donar"
542
-
543
- #: ../dashboard.php:1148
544
  msgid "New version is available"
545
  msgstr "Nueva versión disponible"
546
 
547
  #. Name of the plugin
548
- #: ../dashboard.php:662 ../dashboard.php:665 ../dashboard.php:694
549
  msgid "WP Cerber"
550
  msgstr "WP Cerber"
551
 
552
- #. URI of the plugin
553
- msgid "http://wpcerber.com"
554
- msgstr ""
555
-
556
- #: ../wp-cerber.php:1904
557
  msgid "WP Cerber notify"
558
  msgstr "Notificación de WP Cerber"
559
 
560
- #: ../wp-cerber.php:1923
561
  msgid "Citadel mode is activated"
562
  msgstr "El Modo Ciudadela está activado."
563
 
564
- #: ../wp-cerber.php:1991
565
  msgid "New Custom login URL"
566
  msgstr "Nueva URL de acceso personalizada"
567
 
568
- #: ../wp-cerber.php:2287
569
  msgid "The WP Cerber requires PHP %s or higher. You are running"
570
  msgstr "WP Cerber requiere PHP %s o superior. Se está ejecutando actualmente"
571
 
572
- #: ../wp-cerber.php:2291
573
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
574
  msgstr "WP Cerber requiere WordPress %s o superior. Se está ejecutando actualmente"
575
 
576
- #: ../settings.php:90
577
  msgid "Use file"
578
  msgstr "Usar archivo"
579
 
580
- #: ../settings.php:90
581
  msgid "Write failed login attempts to the file"
582
  msgstr "Registrar los intentos de acceso fallidos en el archivo"
583
 
584
- #: ../dashboard.php:762
585
- msgid "Failed attempts in last 24 hours"
586
- msgstr "Intentos fallidos en las últimas 24 horas"
587
-
588
- #: ../dashboard.php:1091
589
  msgid "Deactivate"
590
  msgstr "Desactivar"
591
 
592
- #: ../dashboard.php:77 ../wp-cerber.php:1956
593
  msgid "Reason"
594
  msgstr "Motivo"
595
 
596
- #: ../dashboard.php:130
597
  msgid "Add IP to the list"
598
  msgstr "Añadir IP a la lista"
599
 
600
- #: ../dashboard.php:637
601
  msgid "Add IP to the Black List"
602
  msgstr "Añadir IP a la lista negra"
603
 
604
- #: ../common.php:187
605
  msgid "Attempt to access"
606
  msgstr "Intento de acceso"
607
 
608
- #: ../common.php:186
609
  msgid "Limit on login attempts is reached"
610
  msgstr "Se han alcanzado todos los intentos de inicio de sesión"
611
 
612
- #: ../common.php:176 ../common.php:188
613
  msgid "Attempt to log in with non-existent username"
614
  msgstr "Intento de acceso con nombre de usuario inexistente"
615
 
616
- #: ../wp-cerber.php:1955
617
  msgid "Last lockout was added: %s for IP %s"
618
  msgstr "Último bloqueo añadido: %s para la IP %s"
619
 
620
- #: ../wp-cerber.php:2315
621
- msgid "It's important to check security settings."
622
- msgstr "Es importante comprobar los ajustes de seguridad."
623
-
624
- #: ../wp-cerber.php:2320 ../settings.php:202
625
  msgid "Hardening"
626
  msgstr "Endurecimiento"
627
 
628
- #: ../dashboard.php:615
629
  msgid "Abuse email:"
630
  msgstr "Correo electrónico de abuso:"
631
 
632
- #: ../settings.php:80
633
  msgid "Email Address"
634
  msgstr "Dirección de correo electrónico"
635
 
636
- #: ../settings.php:80
637
  msgid "if empty, the admin email %s will be used"
638
  msgstr "Si está vacío, se utilizará el correo de administrador: %s"
639
 
640
- #: ../settings.php:93
641
  msgid "Drill down IP"
642
  msgstr "Desglosar IP"
643
 
644
- #: ../settings.php:93
645
  msgid "Retrieve extra WHOIS information for IP"
646
  msgstr "Recuperar información extra de WHOIS para la IP"
647
 
648
- #: ../settings.php:101
649
  msgid "Hardening WordPress"
650
  msgstr "Protegiendo WordPress"
651
 
652
- #: ../settings.php:102
653
  msgid "Stop user enumeration"
654
  msgstr "Impedir la enumeración de usuarios"
655
 
656
- #: ../settings.php:102
657
- msgid "Block access to the pages like /?author=n"
658
- msgstr "Bloquear el acceso a las páginas como /?autor=n"
659
-
660
- #: ../settings.php:103
661
  msgid "Disable XML-RPC"
662
  msgstr "Desactivar XML-RPC"
663
 
664
- #: ../settings.php:103
665
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
666
  msgstr "Bloquear el acceso al servidor XML-RPC (incluyendo pingbacks y trackbacks)"
667
 
668
- #: ../settings.php:104
669
  msgid "Disable feeds"
670
  msgstr "Desactivar feeds"
671
 
672
- #: ../settings.php:104
673
  msgid "Block access to the RSS, Atom and RDF feeds"
674
  msgstr "Bloquear el acceso a los feeds RSS, Atom y RDF"
675
 
676
- #: ../settings.php:105
677
  msgid "Disable REST API"
678
  msgstr "Desactivar la API REST"
679
 
680
- #: ../settings.php:105
681
- msgid "Block access to the WordPress REST API"
682
- msgstr "Bloquear el acceso a la API REST de WordPress"
683
-
684
- #: ../settings.php:157
685
  msgid "These settings do not affect hosts from the "
686
  msgstr "Estos ajustes no afectan a los hosts de "
687
 
688
- #: ../settings.php:409
689
  msgid "<strong>ERROR</strong>: please enter a valid email address."
690
  msgstr "<strong>ERROR</strong>: por favor, introduce una dirección de correo electrónico válida."
691
 
692
- #: ../settings.php:618
693
- msgid "Number of items per page:"
694
- msgstr "Número de elementos por página:"
695
-
696
- #: ../wp-cerber.php:1985 ../wp-cerber.php:2312
697
  msgid "WP Cerber is now active and has started protecting your site"
698
  msgstr "WP Cerber está activo actualmente y está protegiendo tu web"
699
 
700
- #: ../dashboard.php:77
701
  msgid "Action"
702
  msgstr "Acción"
703
 
704
- #: ../dashboard.php:104
705
  msgid "Nobody can log in or register from these IPs"
706
  msgstr "Nadie puede acceder desde estas direcciones IP"
707
 
708
- #: ../dashboard.php:145 ../dashboard.php:153
709
  msgid "Incorrect IP address or IP range"
710
  msgstr "Dirección o rango de IP incorrecta"
711
 
712
- #: ../dashboard.php:254
713
- msgid "Unable to send notification email"
714
- msgstr "No se ha podido enviar el correo de notificación"
715
-
716
- #: ../dashboard.php:276 ../dashboard.php:1107
717
  msgid "Settings saved"
718
  msgstr "Ajustes guardados."
719
 
720
- #: ../dashboard.php:619
721
  msgid "Network:"
722
  msgstr "Red:"
723
 
724
- #: ../dashboard.php:633
725
  msgid "Add network to the Black List"
726
  msgstr "Añadir red a la Lista Negra"
727
 
728
- #: ../dashboard.php:468
729
- msgid "Cerber Security"
730
- msgstr "Seguridad WP Cerber"
731
-
732
- #: ../dashboard.php:1090
733
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
734
  msgstr "¡Atención! El Modo Ciudadela está activo. Nadie puede iniciar sesión."
735
 
736
- #: ../whois.php:211
737
  msgid "Unknown"
738
  msgstr "Desconocido"
739
 
740
- #. Description of the plugin
741
- msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Feel free to contact developer on the site <a href=\"http://wpcerber.com\">wpcerber.com</a>."
742
- msgstr "Proteger de ataques de fuerza bruta. Control integral de la actividad del usuario. Restringir la entrada de las listas de acceso IP. Limitar los intentos de inicio de sesión. No dude en ponerse en contacto a través de desarrollador wpcerber@gmail.com o en el sitio <a href=\\\"http://wpcerber.com\\\">wpcerber.com</a> ."
743
-
744
  #. Author of the plugin
 
745
  msgid "Gregory"
746
  msgstr ""
747
 
748
- #: ../wp-cerber.php:595 ../wp-cerber.php:727 ../wp-cerber.php:734 ../wp-cerber.
749
- #: php:758 ../settings.php:447
 
 
 
750
  msgid "ERROR:"
751
  msgstr "ERROR:"
752
 
753
- #: ../wp-cerber.php:489
754
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
755
  msgstr "La verificación humana ha fallado. Por favor, pulsa en la casilla cuadrada del siguiente bloque reCAPTCHA."
756
 
757
- #: ../wp-cerber.php:606
758
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
759
  msgstr "<strong>ERROR</strong>: La contraseña introducida para el nombre de usuario %s es incorrecta."
760
 
761
- #: ../wp-cerber.php:735
762
  msgid "Username is not allowed. Please choose another one."
763
  msgstr "Nombre de usuario no permitido. Por favor, elige otro."
764
 
765
- #: ../wp-cerber.php:1949
766
  msgid "unspecified"
767
  msgstr "no especificado"
768
 
769
- #: ../wp-cerber.php:1952
770
  msgid "Number of lockouts is increasing"
771
  msgstr "El número de bloqueos está aumentando"
772
 
773
- #: ../wp-cerber.php:1957
774
  msgid "View activity for this IP"
775
  msgstr "Ver actividad de esta IP"
776
 
777
- #: ../wp-cerber.php:1961 ../wp-cerber.php:1963
778
  msgid "A new version of WP Cerber is available to install"
779
  msgstr "Una nueva versión de WP Cerber está disponible"
780
 
781
- #: ../wp-cerber.php:1962
782
  msgid "Hi!"
783
  msgstr "¡Hola!"
784
 
785
- #: ../wp-cerber.php:1964 ../wp-cerber.php:1975
786
  msgid "Website"
787
  msgstr "Web"
788
 
789
- #: ../wp-cerber.php:1967 ../wp-cerber.php:1968
790
  msgid "The WP Cerber security plugin has been deactivated"
791
  msgstr "El plugin WP Cerber se ha desactivado"
792
 
793
- #: ../wp-cerber.php:1970
794
  msgid "Not logged in"
795
  msgstr "No conectado"
796
 
797
- #: ../wp-cerber.php:1976
798
  msgid "By user"
799
  msgstr "Por usuario"
800
 
801
- #: ../wp-cerber.php:1977
802
  msgid "From IP address"
803
  msgstr "De la dirección IP"
804
 
805
- #: ../wp-cerber.php:1980
806
  msgid "From country"
807
  msgstr "Del país"
808
 
809
- #: ../wp-cerber.php:1984
810
  msgid "The WP Cerber security plugin is now active"
811
  msgstr "El plugin WP Cerber se ha activado"
812
 
813
- #: ../wp-cerber.php:2313
814
  msgid "Your IP address is added to the"
815
  msgstr "Tu dirección IP se ha añadido a la"
816
 
817
- #: ../dashboard.php:669 ../wp-cerber.php:2321
818
- msgid "reCAPTCHA"
819
- msgstr "reCAPTCHA"
820
-
821
- #: ../wp-cerber.php:2322
822
  msgid "Import settings"
823
  msgstr "Importar ajustes"
824
 
825
- #: ../settings.php:81
826
  msgid "Notification limit"
827
  msgstr "Límite de notificaciones"
828
 
829
- #: ../settings.php:81
830
  msgid "notification letters allowed per hour (0 means unlimited)"
831
  msgstr "notificaciones permitidas por hora (0 significa ilimitadas)"
832
 
833
- #: ../settings.php:113
834
  msgid "User related settings"
835
  msgstr "Ajustes de usuario"
836
 
837
- #: ../settings.php:114
838
  msgid "Prohibited usernames"
839
  msgstr "Nombres de usuario prohibidos"
840
 
841
- #: ../settings.php:114
842
  msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
843
  msgstr "Los nombres de usuario de esta lista no pueden iniciar una sesión o registrarse. Toda dirección IP que intente usar cualquiera de estos nombres de usuario será bloqueada inmediatamente. Usa comas para separar los nombres de usuario."
844
 
845
- #: ../settings.php:115
846
  msgid "User session expire"
847
  msgstr "Las sesiones de usuario caducan"
848
 
849
- #: ../settings.php:115
850
  msgid "in minutes (leave empty to use default WP value)"
851
  msgstr "en minutos (dejar vacío para usar el valor de WP predeterminado)"
852
 
853
- #: ../cerber-tools.php:197
854
  msgid "reCAPTCHA settings"
855
  msgstr "Ajustes de reCAPTCHA"
856
 
857
- #: ../settings.php:120
858
  msgid "Site key"
859
  msgstr "Clave del sitio"
860
 
861
- #: ../settings.php:121
862
  msgid "Secret key"
863
  msgstr "Clave secreta"
864
 
865
- #: ../settings.php:123
866
  msgid "Enable reCAPTCHA for WordPress registration form"
867
  msgstr "Habilitar reCAPTCHA para el formulario de registro de WordPress"
868
 
869
- #: ../settings.php:126
870
  msgid "Lost password form"
871
  msgstr "Formulario de contraseña perdida"
872
 
873
- #: ../settings.php:129
874
  msgid "Login form"
875
  msgstr "Formulario de inicio de sesión"
876
 
877
- #: ../settings.php:129
878
  msgid "Enable reCAPTCHA for WordPress login form"
879
  msgstr "Habilitar reCAPTCHA para el formulario de acceso WordPress"
880
 
881
- #: ../settings.php:150
882
- msgid "In Citadel mode nobody is able to login. Active user's sessions will not be affected."
883
- msgstr "En el Modo Ciudadela nadie puede iniciar una sesión. Las sesiones de usuario activas no se verán afectadas."
884
-
885
- #: ../settings.php:162
886
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
887
  msgstr "Para poder usar reCAPTCHA, antes tienes que obtener una clave de sitio y una clave secreta en la web de Google"
888
 
889
- #: ../cerber-lab.php:416 ../settings.php:163
890
  msgid "Know more"
891
- msgstr "Más información"
892
 
893
- #: ../dashboard.php:665 ../settings.php:183
894
  msgid "WP Cerber Security"
895
  msgstr "Seguridad WP Cerber"
896
 
897
- #: ../settings.php:204
898
  msgid "Users"
899
  msgstr "Usuarios"
900
 
901
- #: ../common.php:153
902
  msgid "User created"
903
  msgstr "Usuario creado"
904
 
905
- #: ../common.php:154
906
  msgid "User registered"
907
  msgstr "Usuario registrado"
908
 
909
- #: ../common.php:171
910
  msgid "reCAPTCHA verification failed"
911
  msgstr "Fallo de verificación reCAPTCHA"
912
 
913
- #: ../common.php:172
914
  msgid "reCAPTCHA settings are incorrect"
915
  msgstr "Los ajustes reCAPTCHA son incorrectos"
916
 
917
- #: ../common.php:175
918
  msgid "Attempt to access prohibited URL"
919
  msgstr "Intento de acceso a URL prohibida"
920
 
921
- #: ../common.php:177 ../common.php:189
922
  msgid "Attempt to log in with prohibited username"
923
  msgstr "Intento de acceso con nombre de usuario prohibido"
924
 
925
- #: ../common.php:241
926
- msgid "year"
927
- msgstr "año"
928
-
929
- #: ../common.php:242
930
- msgid "month"
931
- msgstr "mes"
932
-
933
- #: ../common.php:243
934
- msgid "day"
935
- msgstr "día"
936
-
937
- #: ../common.php:244
938
- msgid "hour"
939
- msgstr "hora"
940
-
941
- #: ../common.php:245
942
- msgid "minute"
943
- msgstr "minuto"
944
-
945
- #: ../common.php:246
946
- msgid "second"
947
- msgstr "segundo"
948
-
949
- #: ../common.php:249
950
- msgid "years"
951
- msgstr "años"
952
-
953
- #: ../common.php:250
954
- msgid "months"
955
- msgstr "meses"
956
-
957
- #: ../common.php:252
958
- msgid "hours"
959
- msgstr "horas"
960
-
961
- #: ../common.php:254
962
- msgid "seconds"
963
- msgstr "segundos"
964
-
965
- #: ../common.php:260
966
- msgid "ago"
967
- msgstr "hace"
968
-
969
- #: ../settings.php:88
970
  msgid "Cerber Lab connection"
971
  msgstr "Conexión WP Cerber"
972
 
973
- #: ../settings.php:88
974
  msgid "Send malicious IP addresses to the Cerber Lab"
975
  msgstr "Enviar direcciones IP maliciosas al Laboratorio de Cerber"
976
 
977
- #: ../settings.php:89
978
  msgid "Cerber Lab protocol"
979
  msgstr "Protocolo WP Cerber"
980
 
981
- #: ../settings.php:126
982
- msgid "Invisible reCAPTCHA"
983
- msgstr "ReCAPTCHA invisible"
984
-
985
- #: ../settings.php:126
986
- msgid "Enable invisible reCAPTCHA"
987
- msgstr "Habilitar reCAPTCHA invisible"
988
-
989
- #: ../settings.php:126
990
- msgid "(don't enable it unless you get and enter the Site and Secret keys for the invisible version)"
991
- msgstr "(no activarlo a menos que se hayan introducido las claves secretas de Google para la versión invisible)"
992
-
993
- #: ../settings.php:123
994
  msgid "Registration form"
995
  msgstr "Formulario de registro"
996
 
997
- #: ../settings.php:124
998
  msgid "Enable reCAPTCHA for WooCommerce registration form"
999
  msgstr "Habilitar reCAPTCHA para el formulario de registro WooCommerce"
1000
 
1001
- #: ../settings.php:126
1002
  msgid "Enable reCAPTCHA for WordPress lost password form"
1003
  msgstr "Habilitar reCAPTCHA para formulario WordPress de contraseña perdida"
1004
 
1005
- #: ../settings.php:127
1006
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
1007
  msgstr "Habilitar reCAPTCHA para formulario WooCommerce de contraseña perdida"
1008
 
1009
- #: ../settings.php:130
1010
  msgid "Enable reCAPTCHA for WooCommerce login form"
1011
  msgstr "Habilitar reCAPTCHA para el formulario de acceso WooCommerce"
1012
 
1013
- #: ../common.php:173
1014
  msgid "Request to the Google reCAPTCHA service failed"
1015
  msgstr "Error solicitando el servicio reCAPTCHA de Google"
1016
 
1017
- #: ../dashboard.php:970 ../dashboard.php:985
1018
  msgid "View all"
1019
  msgstr "Ver todo"
1020
 
1021
- #: ../dashboard.php:986
1022
  msgid "Recently locked out IP addresses"
1023
  msgstr "Direcciones IP recientemente bloqueadas"
1024
 
1025
- #: ../cerber-lab.php:414
1026
  msgid "OK, nail them all"
1027
  msgstr "OK, clavarlas todas"
1028
 
1029
- #: ../cerber-lab.php:415
1030
  msgid "NO, maybe later"
1031
  msgstr "NO, tal vez más tarde"
1032
 
1033
- #: ../dashboard.php:667 ../settings.php:190
 
1034
  msgid "Dashboard"
1035
  msgstr "Escritorio"
1036
 
1037
- #: ../cerber-lab.php:412
1038
  msgid "Want to make WP Cerber even more powerful?"
1039
  msgstr "¿Quieres hacer WP Cerber aun más potente?"
1040
 
1041
- #: ../cerber-lab.php:413
1042
  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."
1043
  msgstr "Dejar a WP Cerber enviar direcciones IP maliciosas bloqueadas al laboratorio Cerber. Esto ayuda a que el equipo de plugin para el desarrollo de nuevos algoritmos para WP Cerber y defender a WordPress contra las nuevas amenazas y botnets que están apareciendo todos los días. Puede desactivar el envío de la configuración del plugin en cualquier momento."
1044
 
1045
- #: ../dashboard.php:330
1046
  msgid "IP address"
1047
  msgstr "Dirección IP"
1048
 
1049
- #: ../dashboard.php:330
1050
  msgid "User login"
1051
  msgstr "Acceso de Usuario"
1052
 
1053
- #: ../dashboard.php:330
1054
  msgid "User ID"
1055
  msgstr "ID de usuario"
1056
 
1057
- #: ../dashboard.php:438
1058
  msgid "Export"
1059
  msgstr "Exportar"
1060
 
1061
- #: ../dashboard.php:447
1062
- msgid "All activities"
1063
- msgstr "Todas las actividades"
1064
-
1065
- #: ../dashboard.php:454
1066
  msgid "Search for IP or username"
1067
  msgstr "Búsqueda de IP o nombre de usuario"
1068
 
1069
- #: ../dashboard.php:454
1070
  msgid "Filter"
1071
  msgstr "Filtrar"
1072
 
1073
- #: ../dashboard.php:667
1074
  msgid "Cerber Dashboard"
1075
  msgstr "Panel de Control"
1076
 
1077
- #: ../dashboard.php:669
1078
- msgid "Cerber reCAPTCHA settings"
1079
- msgstr "Ajustes de reCaptcha"
1080
-
1081
- #: ../dashboard.php:670
1082
  msgid "Cerber tools"
1083
  msgstr "Herramientas Cerber"
1084
 
1085
- #: ../dashboard.php:1193
1086
  msgid "Subscribe"
1087
  msgstr "Suscribirse"
1088
 
1089
- #: ../dashboard.php:1194
1090
  msgid "Unsubscribe"
1091
  msgstr "Cancelar Subscripción"
1092
 
1093
- #: ../dashboard.php:1222
1094
  msgid "You've subscribed"
1095
  msgstr "Te has suscrito"
1096
 
1097
- #: ../dashboard.php:1225
1098
  msgid "You've unsubscribed"
1099
  msgstr "Has cancelado tu suscripción"
1100
 
1101
- #: ../wp-cerber.php:1995 ../wp-cerber.php:1996
1102
  msgid "A new activity has been recorded"
1103
  msgstr "Una nueva actividad ha sido registrada"
1104
 
1105
- #: ../wp-cerber.php:2213
1106
  msgid "User"
1107
  msgstr "Usuario"
1108
 
1109
- #: ../wp-cerber.php:2221
1110
  msgid "Search string"
1111
  msgstr "Cadena de búsqueda"
1112
 
1113
- #: ../wp-cerber.php:2234
1114
  msgid "To unsubscribe click here"
1115
  msgstr "Para anular la suscripción, pulsar aquí"
1116
 
1117
- #: ../settings.php:92
1118
  msgid "Preferences"
1119
  msgstr "Preferencias"
1120
 
1121
- #: ../settings.php:94
1122
  msgid "Date format"
1123
  msgstr "Formato de fecha"
1124
 
1125
- #: ../settings.php:94
1126
  msgid "if empty, the default format %s will be used"
1127
  msgstr "Si está vacío, se utilizará el formato por defecto %s"
1128
 
1129
- #: ../dashboard.php:856 ../settings.php:147
1130
  msgid "Push notifications"
1131
  msgstr "Notificaciones"
1132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1133
  #: ../settings.php:71
 
 
 
 
1134
  msgid "Display 404 page"
1135
  msgstr "Mostrar página error 404"
1136
 
1137
- #: ../settings.php:138
1138
- msgid "Disable reCAPTCHA for logged in users"
1139
- msgstr "Desactiva la verificación reCaptcha para usuarios conectados"
1140
 
1141
- #: ../settings.php:137
1142
- msgid "Comment form"
1143
- msgstr "Formulario de comentarios"
1144
 
1145
- #: ../settings.php:144
1146
- msgid "Email notifications"
1147
- msgstr "Notificaciones por correo"
1148
 
1149
- #: ../settings.php:178
1150
- 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."
1151
- msgstr "En modo Ciudadela, nadie puede iniciar sesión con excepción de las IPs de la lista de acceso de IPs blancas. Las sesiones de usuario activas no se verán afectadas."
1152
 
1153
- #: ../settings.php:61
1154
- msgid "Apply limit login rules to IP addresses in the White IP Access List"
1155
- msgstr "Aplicar reglas de inicio de sesión limitadas a las direcciones IPs en la lista de acceso de IPs blancas"
1156
 
1157
- #: ../settings.php:135
1158
- #, php-format
 
 
 
1159
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1160
  msgstr "Bloquear dirección IP durante %s minutos después de %s intentos fallidos dentro de %s minutos"
1161
 
1162
- #: ../settings.php:135
1163
- msgid "Limit attempts"
1164
- msgstr "Límite de intentos"
1165
 
1166
- #: ../settings.php:132
1167
- msgid "Enable reCAPTCHA for WordPress comment form"
1168
- msgstr "Habilitar reCAPTCHA para el formulario de comentarios de WordPress"
1169
 
1170
- #: ../dashboard.php:1032
1171
- msgid "Malicious activities mitigated"
1172
- msgstr "Actividades mitigadas"
1173
 
1174
- #: ../dashboard.php:1034
1175
  msgid "Malicious IP addresses detected"
1176
  msgstr "Direcciones IP maliciosas detectadas"
1177
 
1178
- #: ../dashboard.php:1035
1179
  msgid "Lockouts occurred"
1180
  msgstr "Bloqueos realizados"
1181
 
1182
- #: ../dashboard.php:1036
1183
- msgid "Locked out IP now"
1184
- msgstr "IPs bloqueadas ahora"
1185
-
1186
- #: ../dashboard.php:1060
1187
  msgid "All suspicious activity"
1188
  msgstr "Todas las actividades sospechosas"
1189
 
1190
- #: ../common.php:304
1191
- msgid "Password reset requested"
1192
- msgstr "Reajuste de contraseña solicitado"
1193
-
1194
- #: ../dashboard.php:1033
1195
- msgid "Spam comments denied"
1196
- msgstr "Comentarios spam denegados"
1197
 
1198
- #: ../dashboard.php:1033
1199
  msgid "Spam comment denied"
1200
  msgstr "Comentario spam denegado"
1201
 
1202
- #: ../common.php:314
1203
  msgid "Attempt to log in denied"
1204
  msgstr "Intento de iniciar sesión denegado"
1205
 
1206
- #: ../common.php:315
1207
  msgid "Attempt to register denied"
1208
  msgstr "Intento de registro denegado"
1209
 
1210
- #: ../dashboard.php:339 ../dashboard.php:486
1211
- msgid "Event"
1212
- msgstr "Evento"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
 
 
 
 
 
 
 
 
3
  "MIME-Version: 1.0\n"
4
  "Content-Type: text/plain; charset=UTF-8\n"
5
  "Content-Transfer-Encoding: 8bit\n"
6
+ "X-Generator: POEditor.com\n"
7
+ "Project-Id-Version: WP Cerber Security\n"
8
+ "Language: es\n"
9
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
+
11
+ #: ../settings.php:67
 
 
12
  msgid "Limit login attempts"
13
  msgstr "Límite de intentos de conexión"
14
 
15
+ #: ../settings.php:68
16
  msgid "Attempts"
17
  msgstr "Intentos"
18
 
19
+ #: ../settings.php:69
20
  msgid "Lockout duration"
21
  msgstr "Duración del bloqueo"
22
 
23
+ #: ../settings.php:69 ../settings.php:88
24
  msgid "minutes"
25
  msgstr "minutos"
26
 
27
+ #: ../settings.php:70
28
  msgid "Aggressive lockout"
29
  msgstr "Bloqueo agresivo"
30
 
31
+ #: ../settings.php:73
32
  msgid "Site connection"
33
  msgstr "Conexión web"
34
 
35
+ #: ../settings.php:75
36
  msgid "Proactive security rules"
37
  msgstr "Normas de seguridad proactivas"
38
 
39
+ #: ../settings.php:76
40
  msgid "Block subnet"
41
  msgstr "Bloquear subred"
42
 
43
+ #: ../settings.php:79
44
  msgid "Request wp-login.php"
45
  msgstr "Solicitud wp-login.php"
46
 
47
+ #: ../settings.php:79
48
  msgid "Immediately block IP after any request to wp-login.php"
49
  msgstr "Bloquear IP inmediatamente después de cualquier solicitud a wp-login.php"
50
 
51
+ #: ../settings.php:78
52
  msgid "Redirect dashboard requests"
53
  msgstr "Redirigir peticiones al escritorio"
54
 
55
+ #: ../settings.php:82
56
  msgid "Custom login page"
57
  msgstr "Personalizar página de acceso"
58
 
59
+ #: ../settings.php:83
60
  msgid "Custom login URL"
61
  msgstr "Personalizar URL de acceso"
62
 
63
+ #: ../settings.php:83
64
  msgid "must not overlap with the existing pages or posts slug"
65
  msgstr "no debe solaparse con el slug actual de páginas o entradas"
66
 
67
+ #: ../settings.php:84
68
  msgid "Disable wp-login.php"
69
  msgstr "Desactivar wp-login.php"
70
 
71
+ #: ../settings.php:84
72
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
73
  msgstr "Bloquear el acceso directo a wp-login.php y devolver un error HTTP 404 - No encontrado"
74
 
75
+ #: ../dashboard.php:1090 ../settings.php:86
76
  msgid "Citadel mode"
77
  msgstr "Modo Ciudadela"
78
 
79
+ #: ../settings.php:87
80
  msgid "Threshold"
81
  msgstr "Umbral"
82
 
83
+ #: ../settings.php:88
84
  msgid "Duration"
85
  msgstr "Duración"
86
 
87
+ #: ../wp-cerber.php:3687 ../settings.php:72 ../settings.php:89 ../settings.php:262
88
  msgid "Notifications"
89
  msgstr "Notificaciones"
90
 
91
+ #: ../settings.php:89
92
  msgid "Send notification to admin email"
93
  msgstr "Enviar una notificación al correo del administrador"
94
 
95
+ #: ../dashboard.php:1099 ../wp-cerber.php:3684 ../settings.php:255 ../cerber-
96
+ #: tools.php:88 ../cerber-tools.php:97 ../cerber-tools.php:174
 
97
  msgid "Access Lists"
98
  msgstr "Listas de acceso"
99
 
100
+ #: ../dashboard.php:1097 ../dashboard.php:1293 ../wp-cerber.php:3452 ../settings.
101
+ #: php:91 ../settings.php:246
102
  msgid "Activity"
103
  msgstr "Actividad"
104
 
105
+ #: ../dashboard.php:1098 ../settings.php:250
106
  msgid "Lockouts"
107
  msgstr "Bloqueos"
108
 
109
+ #: ../settings.php:377 ../settings.php:500
110
  msgid "%s allowed retries in %s minutes"
111
  msgstr "%s reintentos admitidos en %s minutos"
112
 
113
+ #: ../settings.php:399 ../settings.php:522
114
  msgid "Enable after %s failed login attempts in last %s minutes"
115
  msgstr "Habilitar después de %s intentos de acceso fallidos en los últimos %s minutos"
116
 
117
+ #: ../dashboard.php:93 ../dashboard.php:612 ../wp-cerber.php:3461
118
  msgid "IP"
119
  msgstr "IP"
120
 
121
+ #: ../dashboard.php:457 ../dashboard.php:615
122
  msgid "Date"
123
  msgstr "Fecha"
124
 
125
+ #: ../dashboard.php:457 ../dashboard.php:617
126
  msgid "Local User"
127
  msgstr "Usuario local"
128
 
129
+ #: ../dashboard.php:457 ../dashboard.php:618 ../wp-cerber.php:3469
130
  msgid "Username used"
131
  msgstr "Nombre utilizado"
132
 
133
+ #: ../dashboard.php:112
134
  msgid "Showing last %d records from %d"
135
  msgstr "Mostrando los últimos %d registros de %d"
136
 
137
+ #: ../common.php:480
138
  msgid "Logged in"
139
  msgstr "Sesión iniciada"
140
 
141
+ #: ../common.php:481
142
  msgid "Logged out"
143
  msgstr "Desconectado"
144
 
145
+ #: ../common.php:482
146
  msgid "Login failed"
147
  msgstr "Error de inicio de sesión"
148
 
149
+ #: ../common.php:485
150
  msgid "IP blocked"
151
  msgstr "IP bloqueada"
152
 
153
+ #: ../common.php:486
154
  msgid "Subnet blocked"
155
  msgstr "Subred bloqueada"
156
 
157
+ #: ../common.php:488
158
  msgid "Citadel activated!"
159
  msgstr "¡Ciudadela activada!"
160
 
161
+ #: ../dashboard.php:593 ../dashboard.php:797 ../common.php:524
162
  msgid "Locked out"
163
  msgstr "Bloqueado"
164
 
165
+ #: ../common.php:525
166
  msgid "IP blacklisted"
167
  msgstr "IP en la lista negra"
168
 
169
+ #: ../common.php:503
170
  msgid "Password changed"
171
  msgstr "Contraseña cambiada"
172
 
173
+ #: ../dashboard.php:86 ../dashboard.php:157
174
  msgid "Remove"
175
  msgstr "Eliminar"
176
 
177
+ #: ../dashboard.php:368
178
  msgid "Lockout for %s was removed"
179
  msgstr "Se ha eliminado el bloqueo de %s"
180
 
181
+ #: ../dashboard.php:131 ../dashboard.php:588 ../dashboard.php:792 ../dashboard.
182
+ #: php:1088 ../wp-cerber.php:3676 ../settings.php:71 ../settings.php:216
183
  msgid "White IP Access List"
184
  msgstr "Lista Blanca de Accesos IP"
185
 
186
+ #: ../dashboard.php:133 ../dashboard.php:589 ../dashboard.php:794 ../dashboard.
187
+ #: php:1089
188
  msgid "Black IP Access List"
189
  msgstr "Lista Negra de Accesos IP"
190
 
191
+ #: ../dashboard.php:160
192
  msgid "List is empty"
193
  msgstr "La lista está vacía"
194
 
195
+ #: ../dashboard.php:187
196
  msgid "Address %s was added to White IP Access List"
197
  msgstr "Dirección %s añadida a la lista blanca de IPs"
198
 
199
+ #: ../dashboard.php:200
200
  msgid "Address %s was added to Black IP Access List"
201
  msgstr "Dirección %s añadida a la lista negra de IPs"
202
 
203
+ #: ../wp-cerber.php:2944
204
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
205
  msgstr "El Modo Ciudadela se activa después de %d intentos fallidos de inicio de sesión en %d minutos."
206
 
207
+ #: ../dashboard.php:1435
208
  msgid "View Activity"
209
  msgstr "Ver actividad"
210
 
211
+ #: ../cerber-tools.php:87 ../cerber-tools.php:96
 
212
  msgid "Settings"
213
  msgstr "Ajustes"
214
 
215
+ #: ../dashboard.php:954
216
  msgid "Last login"
217
  msgstr "Último acceso"
218
 
219
+ #: ../dashboard.php:987 ../dashboard.php:1071
220
  msgid "Never"
221
  msgstr "Nunca"
222
 
223
+ #: ../dashboard.php:1337
224
  msgid "Are you sure?"
225
  msgstr "¿Estás seguro?"
226
 
227
+ #: ../dashboard.php:1145 ../settings.php:73
 
 
 
 
228
  msgid "My site is behind a reverse proxy"
229
  msgstr "Mi web está detrás de un proxy inverso"
230
 
231
+ #: ../settings.php:77
232
  msgid "Non-existent users"
233
  msgstr "Usuarios inexistentes"
234
 
235
+ #: ../settings.php:77
236
  msgid "Immediately block IP when attempting to login with a non-existent username"
237
  msgstr "Bloquear IP inmediatamente al intentar iniciar sesión con un nombre de usuario inexistente"
238
 
239
+ #: ../settings.php:78
240
  msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
241
  msgstr "Desactivar la redirección automática a la página de inicio de sesión cuando /wp-admin/ es solicitado por una petición no autorizada"
242
 
243
+ #: ../settings.php:202
244
  msgid "Make your protection smarter!"
245
  msgstr "¡Haz que tu protección sea más inteligente!"
246
 
247
+ #: ../settings.php:206
248
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
249
  msgstr "Por favor, activa los enlaces permanentes para utilizar esta función. Establece las opciones de enlaces permanentes a algún valor no predeterminado."
250
 
251
+ #: ../settings.php:209
252
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
253
  msgstr "Cuidado al habilitar esta opción. Si olvidas la dirección URL de conexión personalizada, no podrás iniciar sesión."
254
 
255
+ #: ../wp-cerber.php:3683 ../settings.php:252
256
  msgid "Main Settings"
257
+ msgstr "Ajustes"
258
 
259
+ #: ../settings.php:264
260
  msgid "Help"
261
  msgstr "Ayuda"
262
 
263
+ #: ../settings.php:387 ../settings.php:510
264
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
265
  msgstr "Aumentar la duración del bloqueo en %s horas después de %s bloqueos en las últimas %s horas"
266
 
267
+ #: ../wp-cerber.php:220
268
  msgid "You are not allowed to log in. Ask your administrator for assistance."
269
  msgstr "No puedes iniciar sesión. Pregunta al administrador para obtener ayuda."
270
 
271
+ #: ../wp-cerber.php:226
272
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
273
  msgstr "Se ha alcanzado el límite de intentos de inicio de sesión. Por favor, inténtalo de nuevo dentro de %d minutos."
274
 
275
+ #: ../wp-cerber.php:245
276
  msgid "You have only one attempt remaining."
277
  msgid_plural "You have %d attempts remaining."
278
  msgstr[0] "Queda solo un intento restante."
279
  msgstr[1] "Quedan %d intentos restantes."
280
 
281
+ #: ../dashboard.php:639
 
 
 
 
282
  msgid "No activity has been logged."
283
  msgstr "No hay actividad registrada."
284
 
285
+ #: ../dashboard.php:96
286
  msgid "Expires"
287
  msgstr "Caduca"
288
 
289
+ #: ../dashboard.php:118
290
  msgid "No lockouts at the moment. The sky is clear."
291
  msgstr "No hay bloqueos en este momento. El cielo esta despejado."
292
 
293
+ #: ../dashboard.php:131
294
  msgid "These IPs will never be locked out"
295
  msgstr "Estas IPs nunca se bloquearán"
296
 
297
+ #: ../dashboard.php:140
298
  msgid "Your IP"
299
  msgstr "Tu IP"
300
 
301
+ #: ../dashboard.php:196
302
  msgid "You can't add your IP address"
303
  msgstr "No puedes añadir tu dirección IP"
304
 
305
+ #: ../wp-cerber.php:2945
306
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
307
  msgstr "El último intento fallido fue el %s desde la IP %s con el nombre de usuario: %s."
308
 
309
+ #: ../wp-cerber.php:3659
 
 
 
 
310
  msgid "Can't activate WP Cerber due to a database error."
311
  msgstr "No se puede activar WP Cerber debido a un error de base de datos."
312
 
313
+ #: ../settings.php:394 ../settings.php:517
314
  msgid "Notify admin if the number of active lockouts above"
315
  msgstr "Notificar al administrador si el número de bloqueos activos es superior a"
316
 
317
+ #: ../settings.php:92 ../settings.php:144
318
  msgid "days"
319
  msgstr "días"
320
 
321
+ #: ../dashboard.php:1041
322
  msgid "Cerber Quick View"
323
  msgstr "Vista Rápida del Cerbero"
324
 
325
+ #: ../dashboard.php:114
326
  msgid "Hint"
327
  msgstr "Sugerencia"
328
 
329
+ #: ../dashboard.php:114
330
  msgid "To view activity, click on the IP"
331
  msgstr "Para ver la actividad, haz clic en la IP"
332
 
333
+ #: ../dashboard.php:157 ../dashboard.php:824
334
  msgid "Check for activity"
335
  msgstr "Comprobar actividad"
336
 
337
+ #: ../settings.php:76
338
  msgid "Always block entire subnet Class C of intruders IP"
339
  msgstr "Bloquear siempre todas las subredes de clase C de IPs intrusas"
340
 
341
+ #: ../settings.php:89 ../settings.php:396 ../settings.php:519
342
  msgid "Click to send test"
343
  msgstr "Pulsa para enviar una prueba"
344
 
345
+ #: ../settings.php:659 ../settings.php:660
346
  msgid "Attention! You have changed the login URL! The new login URL is"
347
  msgstr "¡Atención! ¡Has cambiado la dirección URL de conexión! La nueva URL de acceso es"
348
 
349
+ #: ../dashboard.php:953
350
  msgid "Comments"
351
  msgstr "Comentarios"
352
 
353
+ #: ../common.php:744
 
 
 
 
 
 
 
 
354
  msgid "Update to version %s of WP Cerber"
355
  msgstr "Actualizar a la versión %s de WP Cerber"
356
 
357
+ #: ../wp-cerber.php:2946 ../wp-cerber.php:3493
358
  msgid "View activity in dashboard"
359
  msgstr "Ver actividad en el escritorio"
360
 
361
+ #: ../wp-cerber.php:2976
362
  msgid "Number of active lockouts"
363
  msgstr "Número de bloqueos activos"
364
 
365
+ #: ../wp-cerber.php:2980
366
  msgid "View lockouts in dashboard"
367
  msgstr "Ver los bloqueos en el escritorio"
368
 
369
+ #: ../wp-cerber.php:3062
370
  msgid "This message was sent by"
371
  msgstr "Este mensaje fue enviado por"
372
 
373
+ #: ../dashboard.php:882 ../cerber-tools.php:43
374
  msgid "Tools"
375
  msgstr "Herramientas"
376
 
377
+ #: ../cerber-tools.php:84
378
  msgid "Export settings to the file"
379
  msgstr "Exportar ajustes al archivo"
380
 
381
+ #: ../cerber-tools.php:85
382
  msgid "When you click the button below you will get a configuration file, which you can upload on another site."
383
  msgstr "Al pulsar el botón de abajo obtendrás un archivo de configuración, que luego se puede cargar en otro sitio."
384
 
385
+ #: ../cerber-tools.php:86
386
  msgid "What do you want to export?"
387
  msgstr "¿Qué quieres exportar?"
388
 
389
+ #: ../cerber-tools.php:89
390
  msgid "Download file"
391
  msgstr "Descargar archivo"
392
 
393
+ #: ../cerber-tools.php:91
394
  msgid "Import settings from the file"
395
  msgstr "Importar ajustes desde el archivo"
396
 
397
+ #: ../cerber-tools.php:92
398
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
399
  msgstr "Al pulsar el botón de abajo se cargará el archivo y se anularán todas las configuraciones existentes."
400
 
401
+ #: ../cerber-tools.php:93
402
  msgid "Select file to import."
403
  msgstr "Seleccionar archivo a importar."
404
 
405
+ #: ../cerber-tools.php:93
406
  msgid "Maximum upload file size: %s."
407
  msgstr "Tamaño máximo permitido: %s."
408
 
409
+ #: ../cerber-tools.php:96
410
  msgid "What do you want to import?"
411
  msgstr "¿Qué quieres importar?"
412
 
413
+ #: ../cerber-tools.php:98
414
  msgid "Upload file"
415
  msgstr "Cargar archivo"
416
 
417
+ #: ../cerber-tools.php:141
418
  msgid "No file was uploaded or file is corrupted"
419
  msgstr "Ningún archivo subido ni archivo dañado"
420
 
421
+ #: ../cerber-tools.php:174
422
  msgid "Error while updating"
423
  msgstr "Ha habido un error al actualizar"
424
 
425
+ #: ../cerber-tools.php:177
426
  msgid "Settings has imported successfully from"
427
  msgstr "La configuración se ha importado con éxito desde"
428
 
429
+ #: ../cerber-tools.php:181
430
  msgid "Error while parsing file"
431
  msgstr "Error al analizar el archivo"
432
 
433
+ #: ../dashboard.php:94 ../dashboard.php:613
434
  msgid "Hostname"
435
  msgstr "Host"
436
 
437
+ #: ../dashboard.php:333
438
  msgid "unknown"
439
  msgstr "desconocido"
440
 
441
+ #: ../settings.php:92
442
  msgid "Keep records for"
443
  msgstr "Mantener un registro de"
444
 
445
+ #: ../dashboard.php:1075
446
  msgid "active"
447
  msgstr "activar"
448
 
449
+ #: ../dashboard.php:1075
450
  msgid "deactivate"
451
  msgstr "desactivar"
452
 
453
+ #: ../dashboard.php:1077
454
  msgid "not active"
455
  msgstr "no activo"
456
 
457
+ #: ../dashboard.php:1078
458
  msgid "disabled"
459
  msgstr "desactivado"
460
 
461
+ #: ../dashboard.php:1083
462
  msgid "failed attempts"
463
  msgstr "intentos fallidos"
464
 
465
+ #: ../dashboard.php:1083 ../dashboard.php:1084
466
  msgid "in 24 hours"
467
  msgstr "en 24 horas"
468
 
469
+ #: ../dashboard.php:1083 ../dashboard.php:1084
470
  msgid "view all"
471
  msgstr "ver todo"
472
 
473
+ #: ../dashboard.php:1084
474
  msgid "lockouts"
475
  msgstr "bloqueos"
476
 
477
+ #: ../dashboard.php:1086
478
  msgid "Lockouts at the moment"
479
  msgstr "Bloqueos en este momento"
480
 
481
+ #: ../dashboard.php:1087
482
  msgid "Last lockout"
483
  msgstr "Último bloqueo"
484
 
485
+ #: ../dashboard.php:1088 ../dashboard.php:1089 ../dashboard.php:1601
486
  msgid "entry"
487
  msgid_plural "entries"
488
  msgstr[0] "entrada"
489
  msgstr[1] "entradas"
490
 
491
+ #: ../dashboard.php:1332
492
  msgid "Confused about some settings?"
493
  msgstr "¿Confundido acerca de algunos ajustes?"
494
 
495
+ #: ../dashboard.php:1333
496
  msgid "You can easily load default recommended settings using button below"
497
  msgstr "Se pueden cargar fácilmente los valores recomendados predeterminados usando el botón de abajo"
498
 
499
+ #: ../dashboard.php:1335
500
  msgid "Load default settings"
501
  msgstr "Cargar ajustes predeterminados"
502
 
503
+ #: ../dashboard.php:1343
504
  msgid "doesn't affect Custom login URL and Access Lists"
505
  msgstr "no afecta a la URL de acceso personalizada ni a las listas de acceso"
506
 
507
+ #: ../common.php:737
 
 
 
 
508
  msgid "New version is available"
509
  msgstr "Nueva versión disponible"
510
 
511
  #. Name of the plugin
512
+ #: ../dashboard.php:873 ../dashboard.php:892
513
  msgid "WP Cerber"
514
  msgstr "WP Cerber"
515
 
516
+ #: ../wp-cerber.php:2920
 
 
 
 
517
  msgid "WP Cerber notify"
518
  msgstr "Notificación de WP Cerber"
519
 
520
+ #: ../wp-cerber.php:2942
521
  msgid "Citadel mode is activated"
522
  msgstr "El Modo Ciudadela está activado."
523
 
524
+ #: ../wp-cerber.php:3016
525
  msgid "New Custom login URL"
526
  msgstr "Nueva URL de acceso personalizada"
527
 
528
+ #: ../wp-cerber.php:3650
529
  msgid "The WP Cerber requires PHP %s or higher. You are running"
530
  msgstr "WP Cerber requiere PHP %s o superior. Se está ejecutando actualmente"
531
 
532
+ #: ../wp-cerber.php:3654
533
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
534
  msgstr "WP Cerber requiere WordPress %s o superior. Se está ejecutando actualmente"
535
 
536
+ #: ../settings.php:95
537
  msgid "Use file"
538
  msgstr "Usar archivo"
539
 
540
+ #: ../settings.php:95
541
  msgid "Write failed login attempts to the file"
542
  msgstr "Registrar los intentos de acceso fallidos en el archivo"
543
 
544
+ #: ../dashboard.php:1434
 
 
 
 
545
  msgid "Deactivate"
546
  msgstr "Desactivar"
547
 
548
+ #: ../dashboard.php:97 ../wp-cerber.php:2978
549
  msgid "Reason"
550
  msgstr "Motivo"
551
 
552
+ #: ../dashboard.php:164
553
  msgid "Add IP to the list"
554
  msgstr "Añadir IP a la lista"
555
 
556
+ #: ../dashboard.php:842
557
  msgid "Add IP to the Black List"
558
  msgstr "Añadir IP a la lista negra"
559
 
560
+ #: ../common.php:555
561
  msgid "Attempt to access"
562
  msgstr "Intento de acceso"
563
 
564
+ #: ../common.php:554
565
  msgid "Limit on login attempts is reached"
566
  msgstr "Se han alcanzado todos los intentos de inicio de sesión"
567
 
568
+ #: ../common.php:511 ../common.php:556
569
  msgid "Attempt to log in with non-existent username"
570
  msgstr "Intento de acceso con nombre de usuario inexistente"
571
 
572
+ #: ../wp-cerber.php:2977
573
  msgid "Last lockout was added: %s for IP %s"
574
  msgstr "Último bloqueo añadido: %s para la IP %s"
575
 
576
+ #: ../wp-cerber.php:3686 ../settings.php:257
 
 
 
 
577
  msgid "Hardening"
578
  msgstr "Endurecimiento"
579
 
580
+ #: ../dashboard.php:820
581
  msgid "Abuse email:"
582
  msgstr "Correo electrónico de abuso:"
583
 
584
+ #: ../settings.php:172 ../settings.php:192
585
  msgid "Email Address"
586
  msgstr "Dirección de correo electrónico"
587
 
588
+ #: ../settings.php:172
589
  msgid "if empty, the admin email %s will be used"
590
  msgstr "Si está vacío, se utilizará el correo de administrador: %s"
591
 
592
+ #: ../settings.php:98
593
  msgid "Drill down IP"
594
  msgstr "Desglosar IP"
595
 
596
+ #: ../settings.php:98
597
  msgid "Retrieve extra WHOIS information for IP"
598
  msgstr "Recuperar información extra de WHOIS para la IP"
599
 
600
+ #: ../settings.php:106
601
  msgid "Hardening WordPress"
602
  msgstr "Protegiendo WordPress"
603
 
604
+ #: ../settings.php:107
605
  msgid "Stop user enumeration"
606
  msgstr "Impedir la enumeración de usuarios"
607
 
608
+ #: ../settings.php:108
 
 
 
 
609
  msgid "Disable XML-RPC"
610
  msgstr "Desactivar XML-RPC"
611
 
612
+ #: ../settings.php:108
613
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
614
  msgstr "Bloquear el acceso al servidor XML-RPC (incluyendo pingbacks y trackbacks)"
615
 
616
+ #: ../settings.php:109
617
  msgid "Disable feeds"
618
  msgstr "Desactivar feeds"
619
 
620
+ #: ../settings.php:109
621
  msgid "Block access to the RSS, Atom and RDF feeds"
622
  msgstr "Bloquear el acceso a los feeds RSS, Atom y RDF"
623
 
624
+ #: ../settings.php:110
625
  msgid "Disable REST API"
626
  msgstr "Desactivar la API REST"
627
 
628
+ #: ../settings.php:216
 
 
 
 
629
  msgid "These settings do not affect hosts from the "
630
  msgstr "Estos ajustes no afectan a los hosts de "
631
 
632
+ #: ../settings.php:736 ../settings.php:748
633
  msgid "<strong>ERROR</strong>: please enter a valid email address."
634
  msgstr "<strong>ERROR</strong>: por favor, introduce una dirección de correo electrónico válida."
635
 
636
+ #: ../wp-cerber.php:3008 ../wp-cerber.php:3675
 
 
 
 
637
  msgid "WP Cerber is now active and has started protecting your site"
638
  msgstr "WP Cerber está activo actualmente y está protegiendo tu web"
639
 
640
+ #: ../dashboard.php:98
641
  msgid "Action"
642
  msgstr "Acción"
643
 
644
+ #: ../dashboard.php:133
645
  msgid "Nobody can log in or register from these IPs"
646
  msgstr "Nadie puede acceder desde estas direcciones IP"
647
 
648
+ #: ../dashboard.php:184 ../dashboard.php:192
649
  msgid "Incorrect IP address or IP range"
650
  msgstr "Dirección o rango de IP incorrecta"
651
 
652
+ #: ../dashboard.php:385 ../dashboard.php:1450
 
 
 
 
653
  msgid "Settings saved"
654
  msgstr "Ajustes guardados."
655
 
656
+ #: ../dashboard.php:824
657
  msgid "Network:"
658
  msgstr "Red:"
659
 
660
+ #: ../dashboard.php:838
661
  msgid "Add network to the Black List"
662
  msgstr "Añadir red a la Lista Negra"
663
 
664
+ #: ../dashboard.php:1433
 
 
 
 
665
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
666
  msgstr "¡Atención! El Modo Ciudadela está activo. Nadie puede iniciar sesión."
667
 
668
+ #: ../dashboard.php:291 ../whois.php:221 ../whois.php:252 ../common.php:553
669
  msgid "Unknown"
670
  msgstr "Desconocido"
671
 
 
 
 
 
672
  #. Author of the plugin
673
+ #:
674
  msgid "Gregory"
675
  msgstr ""
676
 
677
+ #: ../wp-cerber.php:565 ../wp-cerber.php:577 ../wp-cerber.php:584 ../wp-cerber.
678
+ #: php:771 ../wp-cerber.php:986 ../wp-cerber.php:992 ../wp-cerber.php:997 ../wp-
679
+ #: cerber.php:1002 ../wp-cerber.php:1008 ../wp-cerber.php:1015 ../wp-cerber.php:
680
+ #: 1116 ../wp-cerber.php:1253 ../common.php:173 ../common.php:227 ../common.php:
681
+ #: 231 ../settings.php:709
682
  msgid "ERROR:"
683
  msgstr "ERROR:"
684
 
685
+ #: ../wp-cerber.php:594
686
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
687
  msgstr "La verificación humana ha fallado. Por favor, pulsa en la casilla cuadrada del siguiente bloque reCAPTCHA."
688
 
689
+ #: ../wp-cerber.php:782
690
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
691
  msgstr "<strong>ERROR</strong>: La contraseña introducida para el nombre de usuario %s es incorrecta."
692
 
693
+ #: ../wp-cerber.php:1003
694
  msgid "Username is not allowed. Please choose another one."
695
  msgstr "Nombre de usuario no permitido. Por favor, elige otro."
696
 
697
+ #: ../wp-cerber.php:2971
698
  msgid "unspecified"
699
  msgstr "no especificado"
700
 
701
+ #: ../wp-cerber.php:2974
702
  msgid "Number of lockouts is increasing"
703
  msgstr "El número de bloqueos está aumentando"
704
 
705
+ #: ../wp-cerber.php:2979
706
  msgid "View activity for this IP"
707
  msgstr "Ver actividad de esta IP"
708
 
709
+ #: ../wp-cerber.php:2983 ../wp-cerber.php:2985
710
  msgid "A new version of WP Cerber is available to install"
711
  msgstr "Una nueva versión de WP Cerber está disponible"
712
 
713
+ #: ../wp-cerber.php:2984
714
  msgid "Hi!"
715
  msgstr "¡Hola!"
716
 
717
+ #: ../wp-cerber.php:2987 ../wp-cerber.php:2998
718
  msgid "Website"
719
  msgstr "Web"
720
 
721
+ #: ../wp-cerber.php:2990 ../wp-cerber.php:2991
722
  msgid "The WP Cerber security plugin has been deactivated"
723
  msgstr "El plugin WP Cerber se ha desactivado"
724
 
725
+ #: ../wp-cerber.php:2993
726
  msgid "Not logged in"
727
  msgstr "No conectado"
728
 
729
+ #: ../wp-cerber.php:2999
730
  msgid "By user"
731
  msgstr "Por usuario"
732
 
733
+ #: ../wp-cerber.php:3000
734
  msgid "From IP address"
735
  msgstr "De la dirección IP"
736
 
737
+ #: ../wp-cerber.php:3003
738
  msgid "From country"
739
  msgstr "Del país"
740
 
741
+ #: ../wp-cerber.php:3007
742
  msgid "The WP Cerber security plugin is now active"
743
  msgstr "El plugin WP Cerber se ha activado"
744
 
745
+ #: ../wp-cerber.php:3676
746
  msgid "Your IP address is added to the"
747
  msgstr "Tu dirección IP se ha añadido a la"
748
 
749
+ #: ../wp-cerber.php:3688
 
 
 
 
750
  msgid "Import settings"
751
  msgstr "Importar ajustes"
752
 
753
+ #: ../settings.php:173
754
  msgid "Notification limit"
755
  msgstr "Límite de notificaciones"
756
 
757
+ #: ../settings.php:173
758
  msgid "notification letters allowed per hour (0 means unlimited)"
759
  msgstr "notificaciones permitidas por hora (0 significa ilimitadas)"
760
 
761
+ #: ../settings.php:121
762
  msgid "User related settings"
763
  msgstr "Ajustes de usuario"
764
 
765
+ #: ../settings.php:123
766
  msgid "Prohibited usernames"
767
  msgstr "Nombres de usuario prohibidos"
768
 
769
+ #: ../settings.php:123
770
  msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
771
  msgstr "Los nombres de usuario de esta lista no pueden iniciar una sesión o registrarse. Toda dirección IP que intente usar cualquiera de estos nombres de usuario será bloqueada inmediatamente. Usa comas para separar los nombres de usuario."
772
 
773
+ #: ../settings.php:124
774
  msgid "User session expire"
775
  msgstr "Las sesiones de usuario caducan"
776
 
777
+ #: ../settings.php:124
778
  msgid "in minutes (leave empty to use default WP value)"
779
  msgstr "en minutos (dejar vacío para usar el valor de WP predeterminado)"
780
 
781
+ #: ../settings.php:147
782
  msgid "reCAPTCHA settings"
783
  msgstr "Ajustes de reCAPTCHA"
784
 
785
+ #: ../settings.php:148
786
  msgid "Site key"
787
  msgstr "Clave del sitio"
788
 
789
+ #: ../settings.php:149
790
  msgid "Secret key"
791
  msgstr "Clave secreta"
792
 
793
+ #: ../settings.php:152
794
  msgid "Enable reCAPTCHA for WordPress registration form"
795
  msgstr "Habilitar reCAPTCHA para el formulario de registro de WordPress"
796
 
797
+ #: ../settings.php:155
798
  msgid "Lost password form"
799
  msgstr "Formulario de contraseña perdida"
800
 
801
+ #: ../settings.php:158
802
  msgid "Login form"
803
  msgstr "Formulario de inicio de sesión"
804
 
805
+ #: ../settings.php:158
806
  msgid "Enable reCAPTCHA for WordPress login form"
807
  msgstr "Habilitar reCAPTCHA para el formulario de acceso WordPress"
808
 
809
+ #: ../settings.php:219
 
 
 
 
810
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
811
  msgstr "Para poder usar reCAPTCHA, antes tienes que obtener una clave de sitio y una clave secreta en la web de Google"
812
 
813
+ #: ../cerber-lab.php:666 ../settings.php:220
814
  msgid "Know more"
815
+ msgstr "(Información)"
816
 
817
+ #: ../dashboard.php:873 ../settings.php:239
818
  msgid "WP Cerber Security"
819
  msgstr "Seguridad WP Cerber"
820
 
821
+ #: ../settings.php:259
822
  msgid "Users"
823
  msgstr "Usuarios"
824
 
825
+ #: ../common.php:478
826
  msgid "User created"
827
  msgstr "Usuario creado"
828
 
829
+ #: ../dashboard.php:1287 ../common.php:479
830
  msgid "User registered"
831
  msgstr "Usuario registrado"
832
 
833
+ #: ../common.php:506
834
  msgid "reCAPTCHA verification failed"
835
  msgstr "Fallo de verificación reCAPTCHA"
836
 
837
+ #: ../common.php:507
838
  msgid "reCAPTCHA settings are incorrect"
839
  msgstr "Los ajustes reCAPTCHA son incorrectos"
840
 
841
+ #: ../common.php:510
842
  msgid "Attempt to access prohibited URL"
843
  msgstr "Intento de acceso a URL prohibida"
844
 
845
+ #: ../common.php:512 ../common.php:557
846
  msgid "Attempt to log in with prohibited username"
847
  msgstr "Intento de acceso con nombre de usuario prohibido"
848
 
849
+ #: ../settings.php:93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
850
  msgid "Cerber Lab connection"
851
  msgstr "Conexión WP Cerber"
852
 
853
+ #: ../settings.php:93
854
  msgid "Send malicious IP addresses to the Cerber Lab"
855
  msgstr "Enviar direcciones IP maliciosas al Laboratorio de Cerber"
856
 
857
+ #: ../settings.php:94
858
  msgid "Cerber Lab protocol"
859
  msgstr "Protocolo WP Cerber"
860
 
861
+ #: ../settings.php:134 ../settings.php:152
 
 
 
 
 
 
 
 
 
 
 
 
862
  msgid "Registration form"
863
  msgstr "Formulario de registro"
864
 
865
+ #: ../settings.php:153
866
  msgid "Enable reCAPTCHA for WooCommerce registration form"
867
  msgstr "Habilitar reCAPTCHA para el formulario de registro WooCommerce"
868
 
869
+ #: ../settings.php:155
870
  msgid "Enable reCAPTCHA for WordPress lost password form"
871
  msgstr "Habilitar reCAPTCHA para formulario WordPress de contraseña perdida"
872
 
873
+ #: ../settings.php:156
874
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
875
  msgstr "Habilitar reCAPTCHA para formulario WooCommerce de contraseña perdida"
876
 
877
+ #: ../settings.php:159
878
  msgid "Enable reCAPTCHA for WooCommerce login form"
879
  msgstr "Habilitar reCAPTCHA para el formulario de acceso WooCommerce"
880
 
881
+ #: ../common.php:508
882
  msgid "Request to the Google reCAPTCHA service failed"
883
  msgstr "Error solicitando el servicio reCAPTCHA de Google"
884
 
885
+ #: ../dashboard.php:1279 ../dashboard.php:1308
886
  msgid "View all"
887
  msgstr "Ver todo"
888
 
889
+ #: ../dashboard.php:1309
890
  msgid "Recently locked out IP addresses"
891
  msgstr "Direcciones IP recientemente bloqueadas"
892
 
893
+ #: ../cerber-lab.php:664
894
  msgid "OK, nail them all"
895
  msgstr "OK, clavarlas todas"
896
 
897
+ #: ../cerber-lab.php:665
898
  msgid "NO, maybe later"
899
  msgstr "NO, tal vez más tarde"
900
 
901
+ #: ../dashboard.php:875 ../dashboard.php:1096 ../dashboard.php:1621 ../settings.
902
+ #: php:244
903
  msgid "Dashboard"
904
  msgstr "Escritorio"
905
 
906
+ #: ../cerber-lab.php:662
907
  msgid "Want to make WP Cerber even more powerful?"
908
  msgstr "¿Quieres hacer WP Cerber aun más potente?"
909
 
910
+ #: ../cerber-lab.php:663
911
  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."
912
  msgstr "Dejar a WP Cerber enviar direcciones IP maliciosas bloqueadas al laboratorio Cerber. Esto ayuda a que el equipo de plugin para el desarrollo de nuevos algoritmos para WP Cerber y defender a WordPress contra las nuevas amenazas y botnets que están apareciendo todos los días. Puede desactivar el envío de la configuración del plugin en cualquier momento."
913
 
914
+ #: ../dashboard.php:457
915
  msgid "IP address"
916
  msgstr "Dirección IP"
917
 
918
+ #: ../dashboard.php:457
919
  msgid "User login"
920
  msgstr "Acceso de Usuario"
921
 
922
+ #: ../dashboard.php:457
923
  msgid "User ID"
924
  msgstr "ID de usuario"
925
 
926
+ #: ../dashboard.php:635
927
  msgid "Export"
928
  msgstr "Exportar"
929
 
930
+ #: ../dashboard.php:654
 
 
 
 
931
  msgid "Search for IP or username"
932
  msgstr "Búsqueda de IP o nombre de usuario"
933
 
934
+ #: ../dashboard.php:654
935
  msgid "Filter"
936
  msgstr "Filtrar"
937
 
938
+ #: ../dashboard.php:875
939
  msgid "Cerber Dashboard"
940
  msgstr "Panel de Control"
941
 
942
+ #: ../dashboard.php:882
 
 
 
 
943
  msgid "Cerber tools"
944
  msgstr "Herramientas Cerber"
945
 
946
+ #: ../dashboard.php:1534
947
  msgid "Subscribe"
948
  msgstr "Suscribirse"
949
 
950
+ #: ../dashboard.php:1535 ../cerber-tools.php:239
951
  msgid "Unsubscribe"
952
  msgstr "Cancelar Subscripción"
953
 
954
+ #: ../dashboard.php:1563
955
  msgid "You've subscribed"
956
  msgstr "Te has suscrito"
957
 
958
+ #: ../dashboard.php:1566
959
  msgid "You've unsubscribed"
960
  msgstr "Has cancelado tu suscripción"
961
 
962
+ #: ../wp-cerber.php:3020 ../wp-cerber.php:3021
963
  msgid "A new activity has been recorded"
964
  msgstr "Una nueva actividad ha sido registrada"
965
 
966
+ #: ../wp-cerber.php:3465
967
  msgid "User"
968
  msgstr "Usuario"
969
 
970
+ #: ../wp-cerber.php:3473
971
  msgid "Search string"
972
  msgstr "Cadena de búsqueda"
973
 
974
+ #: ../wp-cerber.php:3494
975
  msgid "To unsubscribe click here"
976
  msgstr "Para anular la suscripción, pulsar aquí"
977
 
978
+ #: ../settings.php:97
979
  msgid "Preferences"
980
  msgstr "Preferencias"
981
 
982
+ #: ../settings.php:99
983
  msgid "Date format"
984
  msgstr "Formato de fecha"
985
 
986
+ #: ../settings.php:99
987
  msgid "if empty, the default format %s will be used"
988
  msgstr "Si está vacío, se utilizará el formato por defecto %s"
989
 
990
+ #: ../dashboard.php:1092 ../settings.php:175
991
  msgid "Push notifications"
992
  msgstr "Notificaciones"
993
 
994
+ #: ../settings.php:170
995
+ msgid "Email notifications"
996
+ msgstr "Notificaciones por correo"
997
+
998
+ #: ../settings.php:172 ../settings.php:192
999
+ msgid "Use comma to specify multiple values"
1000
+ msgstr ""
1001
+
1002
+ #: ../settings.php:182
1003
+ msgid "All connected devices"
1004
+ msgstr ""
1005
+
1006
+ #: ../settings.php:183
1007
+ msgid "No devices found"
1008
+ msgstr ""
1009
+
1010
+ #: ../settings.php:185
1011
+ msgid "Not available"
1012
+ msgstr ""
1013
+
1014
+ #: ../common.php:504
1015
+ msgid "Password reset requested"
1016
+ msgstr "Reajuste de contraseña solicitado"
1017
+
1018
+ #: ../common.php:558
1019
+ msgid "Limit on failed reCAPTCHA verifications is reached"
1020
+ msgstr ""
1021
+
1022
+ #: ../common.php:603
1023
+ msgid "%s ago"
1024
+ msgstr ""
1025
+
1026
  #: ../settings.php:71
1027
+ msgid "Apply limit login rules to IP addresses in the White IP Access List"
1028
+ msgstr "Aplicar reglas de inicio de sesión limitadas a las direcciones IPs en la lista de acceso de IPs blancas"
1029
+
1030
+ #: ../settings.php:80
1031
  msgid "Display 404 page"
1032
  msgstr "Mostrar página error 404"
1033
 
1034
+ #: ../settings.php:150
1035
+ msgid "Invisible reCAPTCHA"
1036
+ msgstr "ReCAPTCHA invisible"
1037
 
1038
+ #: ../settings.php:150
1039
+ msgid "Enable invisible reCAPTCHA"
1040
+ msgstr "Habilitar reCAPTCHA invisible"
1041
 
1042
+ #: ../settings.php:150
1043
+ msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
1044
+ msgstr "(no habilitar a menos que se obtenga e introduzca el Sitio y las Claves secretas para la versión invisible)"
1045
 
1046
+ #: ../settings.php:161
1047
+ msgid "Enable reCAPTCHA for WordPress comment form"
1048
+ msgstr "Habilitar reCAPTCHA para el formulario de comentarios de WordPress"
1049
 
1050
+ #: ../settings.php:162
1051
+ msgid "Disable reCAPTCHA for logged in users"
1052
+ msgstr "Desactiva la verificación reCaptcha para usuarios conectados"
1053
 
1054
+ #: ../settings.php:164
1055
+ msgid "Limit attempts"
1056
+ msgstr "Límite de intentos"
1057
+
1058
+ #: ../settings.php:164
1059
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1060
  msgstr "Bloquear dirección IP durante %s minutos después de %s intentos fallidos dentro de %s minutos"
1061
 
1062
+ #: ../settings.php:213
1063
+ 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."
1064
+ msgstr "En modo Ciudadela, nadie puede iniciar sesión con excepción de las IPs de la lista de acceso de IPs blancas. Las sesiones de usuario activas no se verán afectadas."
1065
 
1066
+ #: ../dashboard.php:457 ../dashboard.php:616
1067
+ msgid "Event"
1068
+ msgstr "Evento"
1069
 
1070
+ #: ../common.php:116
1071
+ msgid "Spam comments denied"
1072
+ msgstr "Comentarios spam denegados"
1073
 
1074
+ #: ../common.php:118
1075
  msgid "Malicious IP addresses detected"
1076
  msgstr "Direcciones IP maliciosas detectadas"
1077
 
1078
+ #: ../common.php:119
1079
  msgid "Lockouts occurred"
1080
  msgstr "Bloqueos realizados"
1081
 
1082
+ #: ../dashboard.php:1288
 
 
 
 
1083
  msgid "All suspicious activity"
1084
  msgstr "Todas las actividades sospechosas"
1085
 
1086
+ #: ../wp-cerber.php:987 ../wp-cerber.php:993 ../wp-cerber.php:1009 ../wp-cerber.
1087
+ #: php:1016
1088
+ msgid "You are not allowed to register."
1089
+ msgstr ""
 
 
 
1090
 
1091
+ #: ../common.php:489
1092
  msgid "Spam comment denied"
1093
  msgstr "Comentario spam denegado"
1094
 
1095
+ #: ../common.php:514
1096
  msgid "Attempt to log in denied"
1097
  msgstr "Intento de iniciar sesión denegado"
1098
 
1099
+ #: ../common.php:515
1100
  msgid "Attempt to register denied"
1101
  msgstr "Intento de registro denegado"
1102
 
1103
+ #: ../common.php:113
1104
+ msgid "Malicious activities mitigated"
1105
+ msgstr "Actividades mitigadas"
1106
+
1107
+ #: ../dashboard.php:881
1108
+ msgid "Cerber antispam settings"
1109
+ msgstr ""
1110
+
1111
+ #: ../dashboard.php:881 ../wp-cerber.php:3685 ../settings.php:161
1112
+ msgid "Antispam"
1113
+ msgstr ""
1114
+
1115
+ #: ../settings.php:132
1116
+ msgid "Cerber antispam engine"
1117
+ msgstr "Control antispam de Cerber"
1118
+
1119
+ #: ../settings.php:133
1120
+ msgid "Comment form"
1121
+ msgstr "Formulario de comentarios"
1122
+
1123
+ #: ../settings.php:133
1124
+ msgid "Protect comment form with bot detection engine"
1125
+ msgstr "Proteger los comentarios de bots automáticos"
1126
+
1127
+ #: ../settings.php:134
1128
+ msgid "Protect registration form with bot detection engine"
1129
+ msgstr "Proteger el formulario de registros de bots automáticos"
1130
+
1131
+ #: ../cerber-tools.php:48
1132
+ msgid "Export & Import"
1133
+ msgstr "Exportar / Importar"
1134
+
1135
+ #: ../cerber-tools.php:49
1136
+ msgid "Diagnostic"
1137
+ msgstr "Diagnóstico"
1138
+
1139
+ #: ../cerber-tools.php:50
1140
+ msgid "License"
1141
+ msgstr "Licencia"
1142
+
1143
+ #: ../cerber-tools.php:309
1144
+ msgid "Antispam and bot detection settings"
1145
+ msgstr "Antispam y ajustes de detección de bots"
1146
+
1147
+ #: ../wp-cerber.php:1253
1148
+ msgid "Sorry, human verification failed."
1149
+ msgstr ""
1150
+
1151
+ #: ../common.php:559
1152
+ msgid "Bot activity is detected"
1153
+ msgstr ""
1154
+
1155
+ #: ../settings.php:142
1156
+ msgid "Comment processing"
1157
+ msgstr "Tratamiento de comentarios"
1158
+
1159
+ #: ../settings.php:143
1160
+ msgid "If a spam comment detected"
1161
+ msgstr "Si se ha detectado spam"
1162
+
1163
+ #: ../settings.php:144
1164
+ msgid "Trash spam comments"
1165
+ msgstr "Papelera de spam "
1166
+
1167
+ #: ../settings.php:144
1168
+ msgid "Move spam comments to trash after"
1169
+ msgstr "Mover comentarios spam a la papelera después de "
1170
+
1171
+ #: ../common.php:490
1172
+ msgid "Spam form submission denied"
1173
+ msgstr ""
1174
+
1175
+ #: ../settings.php:135
1176
+ msgid "Other forms"
1177
+ msgstr "Otros formularios"
1178
+
1179
+ #: ../settings.php:135
1180
+ msgid "Protect all forms on the website with bot detection engine"
1181
+ msgstr "Proteger todos los formularios del sitio web con el motor de detección de bot"
1182
+
1183
+ #: ../settings.php:137
1184
+ msgid "Adjust antispam engine"
1185
+ msgstr "Ajustar el motor antispam"
1186
+
1187
+ #: ../settings.php:138
1188
+ msgid "Safe mode"
1189
+ msgstr "Modo Seguro"
1190
+
1191
+ #: ../settings.php:138
1192
+ msgid "Use less restrictive policies (allow AJAX)"
1193
+ msgstr "Utilizar políticas menos restrictivas (permitir AJAX)"
1194
+
1195
+ #: ../settings.php:139
1196
+ msgid "Logged in users"
1197
+ msgstr "Usuarios conectados"
1198
+
1199
+ #: ../settings.php:139
1200
+ msgid "Disable bot detection engine for logged in users"
1201
+ msgstr "Deshabilitar motor de detección de bot para usuarios conectados"
1202
+
1203
+ #. Name of the plugin
1204
+ #:
1205
+ msgid "WP Cerber Security & Antispam"
1206
+ msgstr ""
1207
+
1208
+ #: ../dashboard.php:95 ../dashboard.php:614
1209
+ msgid "Country"
1210
+ msgstr ""
1211
+
1212
+ #: ../dashboard.php:645
1213
+ msgid "All events"
1214
+ msgstr ""
1215
+
1216
+ #: ../dashboard.php:878
1217
+ msgid "Cerber Security Rules"
1218
+ msgstr ""
1219
+
1220
+ #: ../dashboard.php:878 ../dashboard.php:1966
1221
+ msgid "Security Rules"
1222
+ msgstr ""
1223
+
1224
+ #: ../dashboard.php:955
1225
+ msgid "Failed login attempts"
1226
+ msgstr ""
1227
+
1228
+ #: ../dashboard.php:956
1229
+ msgid "Registered"
1230
+ msgstr ""
1231
+
1232
+ #: ../dashboard.php:1023
1233
+ msgid "You"
1234
+ msgstr ""
1235
+
1236
+ #: ../common.php:117
1237
+ msgid "Spam form submissions denied"
1238
+ msgstr "Envíos de formularios spam denegados"
1239
+
1240
+ #: ../dashboard.php:1344 ../wp-cerber.php:3010 ../wp-cerber.php:3678
1241
+ msgid "Getting Started Guide"
1242
+ msgstr "Guía de Introducción"
1243
+
1244
+ #: ../dashboard.php:1971
1245
+ msgid "Countries"
1246
+ msgstr ""
1247
+
1248
+ #: ../dashboard.php:2036
1249
+ msgid "Permitted for one country"
1250
+ msgid_plural "Permitted for %d countries"
1251
+ msgstr[0] ""
1252
+ msgstr[1] ""
1253
+
1254
+ #: ../dashboard.php:2047
1255
+ msgid "No rule"
1256
+ msgstr ""
1257
+
1258
+ #: ../dashboard.php:2248
1259
+ msgid "Security rules have been updated"
1260
+ msgstr ""
1261
+
1262
+ #. URI of the plugin
1263
+ #:
1264
+ msgid "https://wpcerber.com"
1265
+ msgstr ""
1266
+
1267
+ #: ../common.php:491
1268
+ msgid "Form submission denied"
1269
+ msgstr ""
1270
+
1271
+ #: ../common.php:492
1272
+ msgid "Comment denied"
1273
+ msgstr ""
1274
+
1275
+ #: ../common.php:517
1276
+ msgid "Request to REST API denied"
1277
+ msgstr ""
1278
+
1279
+ #: ../common.php:518
1280
+ msgid "XML-RPC request denied"
1281
+ msgstr ""
1282
+
1283
+ #: ../common.php:522
1284
+ msgid "Bot detected"
1285
+ msgstr ""
1286
+
1287
+ #: ../common.php:523
1288
+ msgid "Citadel mode is active"
1289
+ msgstr ""
1290
+
1291
+ #: ../common.php:528
1292
+ msgid "Malicious activity detected"
1293
+ msgstr ""
1294
+
1295
+ #: ../common.php:529
1296
+ msgid "Blocked by country rule"
1297
+ msgstr ""
1298
+
1299
+ #: ../common.php:530
1300
+ msgid "Limit reached"
1301
+ msgstr ""
1302
+
1303
+ #: ../common.php:531
1304
+ msgid "Multiple suspicious activities"
1305
+ msgstr ""
1306
+
1307
+ #: ../common.php:560
1308
+ msgid "Multiple suspicious activities were detected"
1309
+ msgstr ""
1310
+
1311
+ #: ../settings.php:107
1312
+ msgid "Block access to user pages like /?author=n and user data via REST API"
1313
+ msgstr "Bloquear el acceso a páginas de usuario como /? autor = datos n y usuario a través de la API REST"
1314
+
1315
+ #: ../settings.php:110
1316
+ msgid "Block access to the WordPress REST API except the following"
1317
+ msgstr "Bloquear el acceso a la API de WordPress excepto los siguientes espacios de nombres"
1318
+
1319
+ #: ../settings.php:111
1320
+ msgid "Allow REST API for logged in users"
1321
+ msgstr "Permitir API REST para usuarios que inician sesión"
1322
+
1323
+ #: ../settings.php:112
1324
+ msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
1325
+ msgstr "Especificar espacios de nombres de la API REST para ser permitido si se desactiva la API REST. Una cadena por línea."
1326
+
1327
+ #: ../settings.php:122
1328
+ msgid "Registration limit"
1329
+ msgstr ""
1330
+
1331
+ #: ../settings.php:125
1332
+ msgid "Sort users in dashboard"
1333
+ msgstr "Ordenar usuarios en el escritorio"
1334
+
1335
+ #: ../settings.php:125
1336
+ msgid "by date of registration"
1337
+ msgstr "por fecha de registro"
1338
+
1339
+ #: ../settings.php:140
1340
+ msgid "Query whitelist"
1341
+ msgstr "Lista blanca de consultas"
1342
+
1343
+ #: ../settings.php:382 ../settings.php:505
1344
+ msgid "%s allowed registrations in %s minutes from one IP"
1345
+ msgstr ""
1346
+
1347
+ #: ../dashboard.php:2103
1348
+ msgid "Start typing here to find a country"
1349
+ msgstr ""
1350
+
1351
+ #: ../dashboard.php:2184
1352
+ msgid "Click on a country name to add it to the list of selected countries"
1353
+ msgstr ""
1354
+
1355
+ #: ../dashboard.php:2203
1356
+ msgid "Submit forms"
1357
+ msgstr ""
1358
+
1359
+ #: ../dashboard.php:2204
1360
+ msgid "Post comments"
1361
+ msgstr ""
1362
+
1363
+ #: ../dashboard.php:2205
1364
+ msgid "Log in to the website"
1365
+ msgstr ""
1366
+
1367
+ #: ../dashboard.php:2206
1368
+ msgid "Register on the website"
1369
+ msgstr ""
1370
+
1371
+ #: ../dashboard.php:2207
1372
+ msgid "Use XML-RPC"
1373
+ msgstr ""
1374
+
1375
+ #: ../dashboard.php:2208
1376
+ msgid "Use REST API"
1377
+ msgstr ""
1378
+
1379
+ #: ../settings.php:143
1380
+ msgid "Deny it completely"
1381
+ msgstr "Denegarlo completamente"
1382
+
1383
+ #: ../settings.php:143
1384
+ msgid "Mark it as spam"
1385
+ msgstr "Marcar como spam"
1386
+
1387
+ #: ../dashboard.php:1273
1388
+ msgid "in the last 24 hours"
1389
+ msgstr ""
1390
+
1391
+ #: ../dashboard.php:1622
1392
+ msgid "Main settings"
1393
+ msgstr "Ajustes"
1394
+
1395
+ #: ../settings.php:190
1396
+ msgid "Weekly reports"
1397
+ msgstr "Informes semanales"
1398
+
1399
+ #: ../settings.php:602
1400
+ msgid "Sunday"
1401
+ msgstr ""
1402
+
1403
+ #: ../settings.php:603
1404
+ msgid "Monday"
1405
+ msgstr ""
1406
+
1407
+ #: ../settings.php:604
1408
+ msgid "Tuesday"
1409
+ msgstr ""
1410
+
1411
+ #: ../settings.php:605
1412
+ msgid "Wednesday"
1413
+ msgstr ""
1414
+
1415
+ #: ../settings.php:606
1416
+ msgid "Thursday"
1417
+ msgstr ""
1418
+
1419
+ #: ../settings.php:607
1420
+ msgid "Friday"
1421
+ msgstr ""
1422
+
1423
+ #: ../settings.php:608
1424
+ msgid "Saturday"
1425
+ msgstr ""
1426
+
1427
+ #: ../settings.php:661 ../settings.php:662
1428
+ msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1429
+ msgstr ""
1430
+
1431
+ #. translators: preposition of time
1432
+ #: ../settings.php:618
1433
+ msgctxt "preposition of time"
1434
+ msgid "at"
1435
+ msgstr ""
1436
+
1437
+ #: ../wp-cerber.php:3026
1438
+ msgid "Weekly report"
1439
+ msgstr ""
1440
+
1441
+ #: ../wp-cerber.php:3029
1442
+ msgid "To change reporting settings visit"
1443
+ msgstr ""
1444
+
1445
+ #: ../wp-cerber.php:3055
1446
+ msgid "Your login page:"
1447
+ msgstr ""
1448
+
1449
+ #: ../wp-cerber.php:3059
1450
+ msgid "Your license is valid until"
1451
+ msgstr ""
1452
+
1453
+ #: ../wp-cerber.php:3170
1454
+ msgid "Activity details"
1455
+ msgstr ""
1456
+
1457
+ #: ../settings.php:634
1458
+ msgid "Click to send now"
1459
+ msgstr "Pulsa para enviar ahora"
1460
+
1461
+ #: ../wp-cerber.php:653
1462
+ msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1463
+ msgstr ""
1464
+
1465
+ #: ../dashboard.php:357
1466
+ msgid "Email has been sent to"
1467
+ msgstr ""
1468
+
1469
+ #: ../dashboard.php:360
1470
+ msgid "Unable to send email to"
1471
+ msgstr ""
1472
+
1473
+ #: ../dashboard.php:2039
1474
+ msgid "Not permitted for one country"
1475
+ msgid_plural "Not permitted for %d countries"
1476
+ msgstr[0] ""
1477
+ msgstr[1] ""
1478
+
1479
+ #: ../dashboard.php:2188
1480
+ msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1481
+ msgid "Selected countries are permitted to %s, other countries are not permitted to"
1482
+ msgstr ""
1483
+
1484
+ #: ../dashboard.php:2191
1485
+ msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1486
+ msgid "Selected countries are not permitted to %s, other countries are permitted to"
1487
+ msgstr ""
1488
+
1489
+ #. Description of the plugin
1490
+ #:
1491
+ 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>."
1492
+ msgstr ""
1493
+
1494
+ #: ../wp-cerber.php:3158
1495
+ msgid "Weekly Report"
1496
+ msgstr ""
1497
+
1498
+ #: ../settings.php:80
1499
+ msgid "Use 404 template from the active theme"
1500
+ msgstr ""
1501
+
1502
+ #: ../settings.php:80
1503
+ msgid "Display simple 404 page"
1504
+ msgstr ""
1505
+
1506
+ #: ../settings.php:140
1507
+ msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
1508
+ msgstr ""
1509
+
1510
+ #: ../settings.php:192
1511
+ msgid "if empty, email from notification settings will be used"
1512
+ msgstr ""
1513
+
1514
+ #: ../settings.php:193
1515
+ msgid "Enable reporting"
1516
+ msgstr ""
1517
+
1518
+ #: ../wp-cerber.php:3082
1519
+ msgid "Your last sign-in was %s from %s"
1520
+ msgstr ""
1521
+
1522
+ #: ../wp-cerber.php:3184
1523
+ msgid "Attempts to log in with non-existent username"
1524
+ msgstr ""
1525
+
languages/wp-cerber-nl_NL.mo CHANGED
Binary file
languages/wp-cerber-nl_NL.po CHANGED
@@ -8,125 +8,125 @@ msgstr ""
8
  "Language: nl\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
 
11
- #: ../settings.php:57
12
  msgid "Limit login attempts"
13
  msgstr "Inlogpogingen beperken"
14
 
15
- #: ../settings.php:58
16
  msgid "Attempts"
17
  msgstr "Pogingen"
18
 
19
- #: ../settings.php:59
20
  msgid "Lockout duration"
21
  msgstr "Lockout duur"
22
 
23
- #: ../settings.php:59 ../settings.php:78
24
  msgid "minutes"
25
  msgstr "minuten"
26
 
27
- #: ../settings.php:60
28
  msgid "Aggressive lockout"
29
  msgstr "Agressieve uitsluiting"
30
 
31
- #: ../settings.php:63
32
  msgid "Site connection"
33
  msgstr "Websiteverbinding"
34
 
35
- #: ../settings.php:65
36
  msgid "Proactive security rules"
37
  msgstr "Proactieve beveiligingsregels"
38
 
39
- #: ../settings.php:66
40
  msgid "Block subnet"
41
  msgstr "Subnet blokkeren"
42
 
43
- #: ../settings.php:69
44
  msgid "Request wp-login.php"
45
- msgstr "Verzoek aan wp-login.php"
46
 
47
- #: ../settings.php:69
48
  msgid "Immediately block IP after any request to wp-login.php"
49
  msgstr "IP meteen blokkeren bij verzoeken aan wp-login.php"
50
 
51
- #: ../settings.php:68
52
  msgid "Redirect dashboard requests"
53
  msgstr "Dashboardverzoeken omleiden"
54
 
55
- #: ../settings.php:72
56
  msgid "Custom login page"
57
  msgstr "Aangepaste inlogpagina"
58
 
59
- #: ../settings.php:73
60
  msgid "Custom login URL"
61
  msgstr "Aangepaste inlog-URL"
62
 
63
- #: ../settings.php:73
64
  msgid "must not overlap with the existing pages or posts slug"
65
  msgstr "mag niet overlappen met bestaande pagina's of post slugs"
66
 
67
- #: ../settings.php:74
68
  msgid "Disable wp-login.php"
69
  msgstr "Wp-login.php uitschakelen"
70
 
71
- #: ../settings.php:74
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:1104 ../settings.php:76
76
  msgid "Citadel mode"
77
  msgstr "Citadelmodus"
78
 
79
- #: ../settings.php:77
80
  msgid "Threshold"
81
  msgstr "Drempelwaarde"
82
 
83
- #: ../settings.php:78
84
  msgid "Duration"
85
  msgstr "Duur"
86
 
87
- #: ../wp-cerber.php:3461 ../settings.php:62 ../settings.php:80 ../settings.php:247
88
  msgid "Notifications"
89
  msgstr "Meldingen"
90
 
91
- #: ../settings.php:80
92
  msgid "Send notification to admin email"
93
  msgstr "Melding versturen naar admin e-mailadres"
94
 
95
- #: ../dashboard.php:1113 ../dashboard.php:1668 ../wp-cerber.php:3458 ../settings.
96
- #: php:240 ../cerber-tools.php:88 ../cerber-tools.php:97 ../cerber-tools.php:171
97
  msgid "Access Lists"
98
  msgstr "Toegangslijsten"
99
 
100
- #: ../dashboard.php:1111 ../dashboard.php:1319 ../wp-cerber.php:3309 ../settings.
101
- #: php:82 ../settings.php:231
102
  msgid "Activity"
103
  msgstr "Activiteit"
104
 
105
- #: ../dashboard.php:1112 ../settings.php:235
106
  msgid "Lockouts"
107
  msgstr "Uitsluitingen"
108
 
109
- #: ../settings.php:366
110
  msgid "%s allowed retries in %s minutes"
111
  msgstr "%s toegestane pogingen in %s minuten"
112
 
113
- #: ../settings.php:388
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:624 ../wp-cerber.php:3318
118
  msgid "IP"
119
  msgstr "IP"
120
 
121
- #: ../dashboard.php:449 ../dashboard.php:627
122
  msgid "Date"
123
  msgstr "Datum"
124
 
125
- #: ../dashboard.php:449 ../dashboard.php:629
126
  msgid "Local User"
127
  msgstr "Lokale gebruiker"
128
 
129
- #: ../dashboard.php:449 ../dashboard.php:630 ../wp-cerber.php:3326
130
  msgid "Username used"
131
  msgstr "Toegepaste gebruikersnaam"
132
 
@@ -134,40 +134,40 @@ msgstr "Toegepaste gebruikersnaam"
134
  msgid "Showing last %d records from %d"
135
  msgstr "Laatste %d records van %d"
136
 
137
- #: ../common.php:428
138
  msgid "Logged in"
139
  msgstr "Ingelogd"
140
 
141
- #: ../common.php:429
142
  msgid "Logged out"
143
  msgstr "Uitgelogd"
144
 
145
- #: ../common.php:430
146
  msgid "Login failed"
147
  msgstr "Inloggen mislukt"
148
 
149
- #: ../common.php:433
150
  msgid "IP blocked"
151
  msgstr "IP geblokkeerd"
152
 
153
- #: ../common.php:434
154
  msgid "Subnet blocked"
155
  msgstr "Subnet geblokkeerd"
156
 
157
- #: ../common.php:436
158
  msgid "Citadel activated!"
159
  msgstr "Citadelmodus geactiveerd!"
160
 
161
- #: ../dashboard.php:587 ../dashboard.php:809 ../common.php:472
162
  #, fuzzy
163
  msgid "Locked out"
164
  msgstr "Buitengesloten"
165
 
166
- #: ../common.php:473
167
  msgid "IP blacklisted"
168
  msgstr "IP uitgesloten"
169
 
170
- #: ../common.php:451
171
  msgid "Password changed"
172
  msgstr "Wachtwoord veranderd"
173
 
@@ -175,18 +175,18 @@ msgstr "Wachtwoord veranderd"
175
  msgid "Remove"
176
  msgstr "Verwijderen"
177
 
178
- #: ../dashboard.php:360
179
  msgid "Lockout for %s was removed"
180
  msgstr "Uitsluiting voor %s is verwijderd"
181
 
182
- #: ../dashboard.php:131 ../dashboard.php:582 ../dashboard.php:804 ../dashboard.
183
- #: php:1102 ../wp-cerber.php:3450 ../settings.php:61 ../settings.php:201
184
  #, fuzzy
185
  msgid "White IP Access List"
186
  msgstr "Toegelaten IP-adressen"
187
 
188
- #: ../dashboard.php:133 ../dashboard.php:583 ../dashboard.php:806 ../dashboard.
189
- #: php:1103
190
  #, fuzzy
191
  msgid "Black IP Access List"
192
  msgstr "Uitgesloten IP-adressen"
@@ -205,11 +205,11 @@ msgstr "Adres %s toegevoegd aan de Lijst Toegelaten IP-adressen"
205
  msgid "Address %s was added to Black IP Access List"
206
  msgstr "Adres %s toegevoegd aan de Lijst Uitgesloten IP-adressen "
207
 
208
- #: ../wp-cerber.php:2959
209
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
210
  msgstr "Citadelmodus geactiveerd na %d mislukte inlogpogingen binnen %d minuten"
211
 
212
- #: ../dashboard.php:1454
213
  #, fuzzy
214
  msgid "View Activity"
215
  msgstr "Activiteit bekijken"
@@ -218,56 +218,56 @@ msgstr "Activiteit bekijken"
218
  msgid "Settings"
219
  msgstr "Instellingen"
220
 
221
- #: ../dashboard.php:967
222
  #, fuzzy
223
  msgid "Last login"
224
  msgstr "Laatst ingelogd"
225
 
226
- #: ../dashboard.php:1000 ../dashboard.php:1085
227
  msgid "Never"
228
  msgstr "Nooit"
229
 
230
- #: ../dashboard.php:1362
231
  msgid "Are you sure?"
232
  msgstr "Weet je het zeker?"
233
 
234
- #: ../dashboard.php:1157 ../settings.php:63
235
  msgid "My site is behind a reverse proxy"
236
  msgstr "Mijn website draait achter een reverse proxy"
237
 
238
- #: ../settings.php:67
239
  msgid "Non-existent users"
240
  msgstr "Niet-bestaande gebruikers"
241
 
242
- #: ../settings.php:67
243
  msgid "Immediately block IP when attempting to login with a non-existent username"
244
  msgstr "IP meteen blokkeren bij inlogpoging op niet-bestaande gebruiker"
245
 
246
- #: ../settings.php:68
247
  msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
248
  msgstr "Uitschakelen omleiding naar de inlogpagina bij ongeautoriseerde verzoeken aan /wp-admin/"
249
 
250
- #: ../settings.php:187
251
  msgid "Make your protection smarter!"
252
  msgstr "Maak je bescherming slimmer!"
253
 
254
- #: ../settings.php:191
255
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
256
  msgstr "Schakel Permalinks in om deze functionaliteit te gebruiken. Stel de Permalinks instelling in op iets anders dan Standaard."
257
 
258
- #: ../settings.php:194
259
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
260
  msgstr "Pas op als je deze opties inschakelt! Vergeet je de aangepaste inlog-URL, dan kun je niet meer inloggen."
261
 
262
- #: ../wp-cerber.php:3457 ../settings.php:237
263
  msgid "Main Settings"
264
  msgstr "Hoofdinstellingen"
265
 
266
- #: ../settings.php:249
267
  msgid "Help"
268
  msgstr "Hulp"
269
 
270
- #: ../settings.php:376
271
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
272
  msgstr "Uitsluitingsduur ophogen naar %s uren na %s uitsluitingen in de laatste %s uren"
273
 
@@ -285,7 +285,7 @@ msgid_plural "You have %d attempts remaining."
285
  msgstr[0] "Slechts één inlogpoging resterend!"
286
  msgstr[1] "%s inlogpogingen resterend."
287
 
288
- #: ../dashboard.php:651
289
  msgid "No activity has been logged."
290
  msgstr "Geen activiteit waargenomen."
291
 
@@ -310,27 +310,23 @@ msgstr "Jouw IP"
310
  msgid "You can't add your IP address"
311
  msgstr "Je kunt je eigen IP niet toevoegen"
312
 
313
- #: ../wp-cerber.php:2960
314
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
315
  msgstr "Laatste mislukte inlogpoging was op %s vanaf IP %s op gebruiker %s."
316
 
317
- #: ../wp-cerber.php:3023
318
- msgid "Change notification settings"
319
- msgstr "Wijzig instellingen voor meldingen"
320
-
321
- #: ../wp-cerber.php:3433
322
  msgid "Can't activate WP Cerber due to a database error."
323
  msgstr "Kan WP Cerber niet activeren door een fout in de database"
324
 
325
- #: ../settings.php:383
326
  msgid "Notify admin if the number of active lockouts above"
327
  msgstr "Waarschuw de beheerder als het aantal actieve uitsluitingen stijgt tot boven"
328
 
329
- #: ../settings.php:83 ../settings.php:135
330
  msgid "days"
331
  msgstr "dagen"
332
 
333
- #: ../dashboard.php:1054
334
  msgid "Cerber Quick View"
335
  msgstr "Cerber Quick View"
336
 
@@ -342,51 +338,47 @@ msgstr "Tip"
342
  msgid "To view activity, click on the IP"
343
  msgstr "Klik op het IP om activiteiten te bekijken"
344
 
345
- #: ../dashboard.php:157 ../dashboard.php:836
346
  msgid "Check for activity"
347
  msgstr "Check voor activiteit"
348
 
349
- #: ../settings.php:66
350
  msgid "Always block entire subnet Class C of intruders IP"
351
  msgstr "Altijd gehele IP Class C subnet blokkeren van aanvaller"
352
 
353
- #: ../settings.php:80 ../settings.php:385
354
  msgid "Click to send test"
355
  msgstr "Klik om test te verzenden"
356
 
357
- #: ../settings.php:481 ../settings.php:482
358
  msgid "Attention! You have changed the login URL! The new login URL is"
359
  msgstr "Let op! Je hebt de inlog-URL veranderd. De nieuwe inlog-URL is"
360
 
361
- #: ../dashboard.php:966
362
  msgid "Comments"
363
  msgstr "Reacties"
364
 
365
- #: ../dashboard.php:349
366
- msgid "Message has been sent to "
367
- msgstr "Bericht is verzonden naar "
368
-
369
- #: ../dashboard.php:1541
370
  msgid "Update to version %s of WP Cerber"
371
  msgstr "WP Cerber updaten naar versie %s"
372
 
373
- #: ../wp-cerber.php:2961 ../wp-cerber.php:3350
374
  msgid "View activity in dashboard"
375
  msgstr "Activiteiten bekijken in dashboard"
376
 
377
- #: ../wp-cerber.php:2991
378
  msgid "Number of active lockouts"
379
  msgstr "Aantal actieve uitsluitingen"
380
 
381
- #: ../wp-cerber.php:2995
382
  msgid "View lockouts in dashboard"
383
  msgstr "Uitsluitingen bekijken in dashboard"
384
 
385
- #: ../wp-cerber.php:3048
386
  msgid "This message was sent by"
387
  msgstr "Dit bericht is verzonden door"
388
 
389
- #: ../dashboard.php:894 ../cerber-tools.php:43
390
  msgid "Tools"
391
  msgstr "Gereedschap"
392
 
@@ -430,143 +422,143 @@ msgstr "Wat wil je importeren?"
430
  msgid "Upload file"
431
  msgstr "Bestand uploaden"
432
 
433
- #: ../cerber-tools.php:138
434
  msgid "No file was uploaded or file is corrupted"
435
  msgstr "Geen bestand geüpload of bestand is beschadigd."
436
 
437
- #: ../cerber-tools.php:171
438
  msgid "Error while updating"
439
  msgstr "Foutmelding tijdens updaten"
440
 
441
- #: ../cerber-tools.php:174
442
  msgid "Settings has imported successfully from"
443
  msgstr "Instellingen geïmporteerd van"
444
 
445
- #: ../cerber-tools.php:178
446
  msgid "Error while parsing file"
447
  msgstr "Fout bij verwerken bestand"
448
 
449
- #: ../dashboard.php:94 ../dashboard.php:625
450
  msgid "Hostname"
451
  msgstr "Hostnaam"
452
 
453
- #: ../dashboard.php:325
454
  msgid "unknown"
455
  msgstr "onbekend"
456
 
457
- #: ../settings.php:83
458
  #, fuzzy
459
  msgid "Keep records for"
460
  msgstr "Gegevens behouden tot"
461
 
462
- #: ../dashboard.php:1089
463
  msgid "active"
464
  msgstr "actief"
465
 
466
- #: ../dashboard.php:1089
467
  msgid "deactivate"
468
  msgstr "deactiveren"
469
 
470
- #: ../dashboard.php:1091
471
  msgid "not active"
472
  msgstr "niet actief"
473
 
474
- #: ../dashboard.php:1092
475
  msgid "disabled"
476
  msgstr "gedeactiveerd"
477
 
478
- #: ../dashboard.php:1097
479
  msgid "failed attempts"
480
  msgstr "mislukte pogingen"
481
 
482
- #: ../dashboard.php:1097 ../dashboard.php:1098
483
  msgid "in 24 hours"
484
  msgstr "in 24 uur"
485
 
486
- #: ../dashboard.php:1097 ../dashboard.php:1098
487
  msgid "view all"
488
  msgstr "bekijk alles"
489
 
490
- #: ../dashboard.php:1098
491
  msgid "lockouts"
492
  msgstr "uitsluitingen"
493
 
494
- #: ../dashboard.php:1100
495
  msgid "Lockouts at the moment"
496
  msgstr "Uitsluitingen op dit moment"
497
 
498
- #: ../dashboard.php:1101
499
  #, fuzzy
500
  msgid "Last lockout"
501
  msgstr "Recente uitsluiting"
502
 
503
- #: ../dashboard.php:1102 ../dashboard.php:1103 ../dashboard.php:1647
504
  msgid "entry"
505
  msgid_plural "entries"
506
  msgstr[0] "item"
507
  msgstr[1] "items"
508
 
509
- #: ../dashboard.php:1357
510
  #, fuzzy
511
  msgid "Confused about some settings?"
512
  msgstr "Verward over sommige instellingen?"
513
 
514
- #: ../dashboard.php:1358
515
  #, fuzzy
516
  msgid "You can easily load default recommended settings using button below"
517
- msgstr "Met onderstaande knop laadt je de aanbevolen instellingen"
518
 
519
- #: ../dashboard.php:1360
520
  #, fuzzy
521
  msgid "Load default settings"
522
  msgstr "Aanbevolen instellingen laden"
523
 
524
- #: ../dashboard.php:1368
525
  msgid "doesn't affect Custom login URL and Access Lists"
526
  msgstr "heeft geen invloed op Aangepaste inlog-URL en Toegangslijsten"
527
 
528
- #: ../dashboard.php:1535
529
  msgid "New version is available"
530
  msgstr "Nieuwe versie beschikbaar"
531
 
532
  #. Name of the plugin
533
- #: ../dashboard.php:885 ../dashboard.php:904
534
  msgid "WP Cerber"
535
  msgstr "WP Cerber"
536
 
537
- #: ../wp-cerber.php:2935
538
  msgid "WP Cerber notify"
539
  msgstr "WP Cerber melding"
540
 
541
- #: ../wp-cerber.php:2957
542
  msgid "Citadel mode is activated"
543
  msgstr "Citadel modus is actief"
544
 
545
- #: ../wp-cerber.php:3028
546
  msgid "New Custom login URL"
547
  msgstr "Nieuwe Aangepaste inlog-URL"
548
 
549
- #: ../wp-cerber.php:3424
550
  msgid "The WP Cerber requires PHP %s or higher. You are running"
551
  msgstr "WP Cerber vereist PHP %s of hoger. Je gebruikt nu"
552
 
553
- #: ../wp-cerber.php:3428
554
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
555
  msgstr "WP Cerber vereist WordPress %s of hoger. Je gebruikt nu"
556
 
557
- #: ../settings.php:86
558
  msgid "Use file"
559
  msgstr "Bestand gebruiken"
560
 
561
- #: ../settings.php:86
562
  msgid "Write failed login attempts to the file"
563
  msgstr "Mislukte pogingen opslaan in bestand"
564
 
565
- #: ../dashboard.php:1453
566
  msgid "Deactivate"
567
  msgstr "Deactiveren"
568
 
569
- #: ../dashboard.php:97 ../wp-cerber.php:2993
570
  msgid "Reason"
571
  msgstr "Reden"
572
 
@@ -574,87 +566,87 @@ msgstr "Reden"
574
  msgid "Add IP to the list"
575
  msgstr "IP-adres toevoegen aan lijst"
576
 
577
- #: ../dashboard.php:854
578
  msgid "Add IP to the Black List"
579
  msgstr "IP-adres toevoegen aan Uitsluitingslijst"
580
 
581
- #: ../common.php:493
582
  msgid "Attempt to access"
583
  msgstr "Poging tot toegang"
584
 
585
- #: ../common.php:492
586
  msgid "Limit on login attempts is reached"
587
  msgstr "Limiet voor aantal inlogpogingen is bereikt"
588
 
589
- #: ../common.php:459 ../common.php:494
590
  msgid "Attempt to log in with non-existent username"
591
  msgstr "Inlogpoging met onbekende gebruikersnaam"
592
 
593
- #: ../wp-cerber.php:2992
594
  msgid "Last lockout was added: %s for IP %s"
595
  msgstr "Laatste uitsluiting was toegevoegd: %s voor IP-adres %s"
596
 
597
- #: ../wp-cerber.php:3460 ../settings.php:242
598
  msgid "Hardening"
599
  msgstr "Versterking"
600
 
601
- #: ../dashboard.php:832
602
  msgid "Abuse email:"
603
  msgstr "E-mail voor misbruik:"
604
 
605
- #: ../settings.php:163
606
  msgid "Email Address"
607
  msgstr "E-mailadres"
608
 
609
- #: ../settings.php:163
610
  msgid "if empty, the admin email %s will be used"
611
  msgstr "admin e-mail %s wordt gebruikt indien leeg"
612
 
613
- #: ../settings.php:89
614
  msgid "Drill down IP"
615
  msgstr "IP-adres onderzoeken"
616
 
617
- #: ../settings.php:89
618
  msgid "Retrieve extra WHOIS information for IP"
619
  msgstr "Haal extra WHOIS-informatie op voor IP-adres"
620
 
621
- #: ../settings.php:97
622
  msgid "Hardening WordPress"
623
  msgstr "Wordpress versterken"
624
 
625
- #: ../settings.php:98
626
  msgid "Stop user enumeration"
627
  msgstr "Stop nummering gebruikers"
628
 
629
- #: ../settings.php:99
630
  msgid "Disable XML-RPC"
631
  msgstr "XML-RPC uitschakelen"
632
 
633
- #: ../settings.php:99
634
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
635
  msgstr "Toegang tot XML-RPC server uitschakelen (inclusief Pingbacks en Trackbacks)"
636
 
637
- #: ../settings.php:100
638
  msgid "Disable feeds"
639
  msgstr "Feeds uitschakelen"
640
 
641
- #: ../settings.php:100
642
  msgid "Block access to the RSS, Atom and RDF feeds"
643
  msgstr "Blokkeer toegang tot de RSS-, Atom- en RDF-feeds"
644
 
645
- #: ../settings.php:101
646
  msgid "Disable REST API"
647
  msgstr "REST API uitschakelen"
648
 
649
- #: ../settings.php:201
650
  msgid "These settings do not affect hosts from the "
651
  msgstr "Deze instellingen gelden niet voor hosts van de␣"
652
 
653
- #: ../settings.php:558
654
  msgid "<strong>ERROR</strong>: please enter a valid email address."
655
  msgstr "<strong>LET OP</strong>: voer een geldig e-mailadres in."
656
 
657
- #: ../wp-cerber.php:3022 ../wp-cerber.php:3449
658
  msgid "WP Cerber is now active and has started protecting your site"
659
  msgstr "WP Cerber is actief en beschermt nu je website"
660
 
@@ -670,27 +662,23 @@ msgstr "Niemand kan aanmelden of inloggen vanaf deze IP's"
670
  msgid "Incorrect IP address or IP range"
671
  msgstr "IP-adres of -reeks is incorrect"
672
 
673
- #: ../dashboard.php:352
674
- msgid "Unable to send notification email"
675
- msgstr "Kennisgevingsmail is niet te verzenden"
676
-
677
- #: ../dashboard.php:377 ../dashboard.php:1469
678
  msgid "Settings saved"
679
  msgstr "Instellingen opgeslagen"
680
 
681
- #: ../dashboard.php:836
682
  msgid "Network:"
683
  msgstr "Netwerk:"
684
 
685
- #: ../dashboard.php:850
686
  msgid "Add network to the Black List"
687
  msgstr "Netwerk toevoegen aan Uitsluitingslijst"
688
 
689
- #: ../dashboard.php:1452
690
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
691
  msgstr "Let op! Citadelmodus is actief; niemand kan inloggen."
692
 
693
- #: ../whois.php:221 ../whois.php:252 ../common.php:491
694
  msgid "Unknown"
695
  msgstr "Onbekend"
696
 
@@ -700,10 +688,10 @@ msgid "Gregory"
700
  msgstr "Gregory"
701
 
702
  #: ../wp-cerber.php:565 ../wp-cerber.php:577 ../wp-cerber.php:584 ../wp-cerber.
703
- #: php:789 ../wp-cerber.php:1004 ../wp-cerber.php:1010 ../wp-cerber.php:1015 ..
704
- #: /wp-cerber.php:1020 ../wp-cerber.php:1026 ../wp-cerber.php:1033 ../wp-cerber.
705
- #: php:1134 ../wp-cerber.php:1271 ../common.php:131 ../common.php:184 ../common.
706
- #: php:188 ../settings.php:531
707
  msgid "ERROR:"
708
  msgstr "FOUT:"
709
 
@@ -711,445 +699,446 @@ msgstr "FOUT:"
711
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
712
  msgstr "Menselijke verificatie mislukt. Klik het vierkant in onderstaand reCAPTCHA-blok."
713
 
714
- #: ../wp-cerber.php:800
715
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
716
  msgstr "<strong>LET OP</strong>: je geeft een foutief wachtwoord op voor gebruiker %s."
717
 
718
- #: ../wp-cerber.php:1021
719
  msgid "Username is not allowed. Please choose another one."
720
  msgstr "Gebruikersnaam is niet toegestaan, kies een andere."
721
 
722
- #: ../wp-cerber.php:2986
723
  msgid "unspecified"
724
  msgstr "niet gespecificeerd"
725
 
726
- #: ../wp-cerber.php:2989
727
  msgid "Number of lockouts is increasing"
728
  msgstr "Aantal uitsluitingen loopt op"
729
 
730
- #: ../wp-cerber.php:2994
731
  msgid "View activity for this IP"
732
  msgstr "Bekijk activiteit voor dit adres"
733
 
734
- #: ../wp-cerber.php:2998 ../wp-cerber.php:3000
735
  msgid "A new version of WP Cerber is available to install"
736
  msgstr "Nieuwe versie WP Cerber is klaar voor installatie"
737
 
738
- #: ../wp-cerber.php:2999
739
  msgid "Hi!"
740
  msgstr "Hallo!"
741
 
742
- #: ../wp-cerber.php:3001 ../wp-cerber.php:3012
743
  msgid "Website"
744
  msgstr "Website"
745
 
746
- #: ../wp-cerber.php:3004 ../wp-cerber.php:3005
747
  msgid "The WP Cerber security plugin has been deactivated"
748
  msgstr "WP Cerber is gedeactiveerd"
749
 
750
- #: ../wp-cerber.php:3007
751
  msgid "Not logged in"
752
  msgstr "Niet ingelogd"
753
 
754
- #: ../wp-cerber.php:3013
755
  msgid "By user"
756
  msgstr "Door gebruiker"
757
 
758
- #: ../wp-cerber.php:3014
759
  msgid "From IP address"
760
  msgstr "Van IP-adres"
761
 
762
- #: ../wp-cerber.php:3017
763
  msgid "From country"
764
  msgstr "Uit land"
765
 
766
- #: ../wp-cerber.php:3021
767
  msgid "The WP Cerber security plugin is now active"
768
  msgstr "WP Cerber is actief"
769
 
770
- #: ../wp-cerber.php:3450
771
  msgid "Your IP address is added to the"
772
  msgstr "Je IP-adres is toegevoegd aan de "
773
 
774
- #: ../wp-cerber.php:3462
775
  msgid "Import settings"
776
  msgstr "Instellingen importeren"
777
 
778
- #: ../settings.php:164
779
  msgid "Notification limit"
780
  msgstr "Limiet aan meldingen"
781
 
782
- #: ../settings.php:164
783
  msgid "notification letters allowed per hour (0 means unlimited)"
784
  msgstr "toegestaan aantal meldingen per uur (0=geen limiet)"
785
 
786
- #: ../settings.php:112
787
  msgid "User related settings"
788
  msgstr "Gebruikersinstellingen"
789
 
790
- #: ../settings.php:114
791
  msgid "Prohibited usernames"
792
  msgstr "Verboden gebruikersnamen"
793
 
794
- #: ../settings.php:114
795
  msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
796
  msgstr "Gebruikersnamen op deze lijst kunnen niet registreren of inloggen. IP-adressen die deze namen gebruiken, worden direct uitgesloten. Scheid namen met een komma."
797
 
798
- #: ../settings.php:115
799
  msgid "User session expire"
800
  msgstr "Gebruikerssessie eindigt"
801
 
802
- #: ../settings.php:115
803
  msgid "in minutes (leave empty to use default WP value)"
804
  msgstr "in minuten (leeg laten voor standaard WP-waarde)"
805
 
806
- #: ../settings.php:138
807
  msgid "reCAPTCHA settings"
808
  msgstr "reCAPTCHA-instellingen"
809
 
810
- #: ../settings.php:139
811
  msgid "Site key"
812
  msgstr "Site-sleutel"
813
 
814
- #: ../settings.php:140
815
  msgid "Secret key"
816
  msgstr "Geheime sleutel"
817
 
818
- #: ../settings.php:143
819
  msgid "Enable reCAPTCHA for WordPress registration form"
820
  msgstr "ReCAPTCHA instellen voor WordPress regstratieformulier"
821
 
822
- #: ../settings.php:146
823
  msgid "Lost password form"
824
  msgstr "Formulier voor zoekgeraakt wachtwoord"
825
 
826
- #: ../settings.php:149
827
  msgid "Login form"
828
  msgstr "Login-formulier"
829
 
830
- #: ../settings.php:149
831
  msgid "Enable reCAPTCHA for WordPress login form"
832
  msgstr "ReCAPTCHA inschakelen voor WordPress inlogpagina"
833
 
834
- #: ../settings.php:204
835
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
836
  msgstr "Haal eerst een Site-sleutel en Geheime Sleutel op van Google om reCAPTCHA te kunnen gebruiken"
837
 
838
- #: ../cerber-lab.php:652 ../settings.php:205
839
  msgid "Know more"
840
  msgstr "Meer weten"
841
 
842
- #: ../dashboard.php:885 ../settings.php:224
843
  msgid "WP Cerber Security"
844
  msgstr "WP Cerber Security"
845
 
846
- #: ../settings.php:244
847
  msgid "Users"
848
  msgstr "Gebruikers"
849
 
850
- #: ../common.php:426
851
  msgid "User created"
852
  msgstr "Gebruiker toegevoegd"
853
 
854
- #: ../dashboard.php:1313 ../common.php:427
855
  msgid "User registered"
856
  msgstr "Gebruiker geregistreerd"
857
 
858
- #: ../common.php:454
859
  msgid "reCAPTCHA verification failed"
860
  msgstr "reCAPTCHA verificatie mislukt"
861
 
862
- #: ../common.php:455
863
  msgid "reCAPTCHA settings are incorrect"
864
  msgstr "foutieve reCAPTCHA-instellingen"
865
 
866
- #: ../common.php:458
 
867
  msgid "Attempt to access prohibited URL"
868
  msgstr "Poging verboden URL te benaderen"
869
 
870
- #: ../common.php:460 ../common.php:495
871
  msgid "Attempt to log in with prohibited username"
872
  msgstr "Inlogpoging met verboden gebruikersnaam"
873
 
874
- #: ../settings.php:84
875
  msgid "Cerber Lab connection"
876
  msgstr "Cerber Lab verbinding"
877
 
878
- #: ../settings.php:84
879
  msgid "Send malicious IP addresses to the Cerber Lab"
880
  msgstr "Stuur kwaadaardige IP-adressen naar Cerber Lab"
881
 
882
- #: ../settings.php:85
883
  msgid "Cerber Lab protocol"
884
  msgstr "Cerber Lab protocol"
885
 
886
- #: ../settings.php:125 ../settings.php:143
887
  msgid "Registration form"
888
  msgstr "Registratieformulier"
889
 
890
- #: ../settings.php:144
891
  msgid "Enable reCAPTCHA for WooCommerce registration form"
892
  msgstr "ReCAPTCHA inschakelen voor WooCommerce registratie"
893
 
894
- #: ../settings.php:146
895
  msgid "Enable reCAPTCHA for WordPress lost password form"
896
  msgstr "ReCAPTCHA inschakelen om nieuw WordPress wachtwoord op te vragen"
897
 
898
- #: ../settings.php:147
899
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
900
  msgstr "ReCAPTCHA inschakelen om nieuw WooCommerce wachtwoord op te vragen"
901
 
902
- #: ../settings.php:150
903
  msgid "Enable reCAPTCHA for WooCommerce login form"
904
  msgstr "ReCAPTCHA inschakelen voor WooCommerce inlogpagina"
905
 
906
- #: ../common.php:456
907
  msgid "Request to the Google reCAPTCHA service failed"
908
  msgstr "Verzoek aan Google ReCAPTCHA-service"
909
 
910
- #: ../dashboard.php:1305 ../dashboard.php:1334
911
  msgid "View all"
912
  msgstr "Zie alle"
913
 
914
- #: ../dashboard.php:1335
915
  msgid "Recently locked out IP addresses"
916
  msgstr "Recent buitengesloten IP-adressen"
917
 
918
- #: ../cerber-lab.php:650
919
  msgid "OK, nail them all"
920
  msgstr "OK, zet ze allemaal vast"
921
 
922
- #: ../cerber-lab.php:651
923
  msgid "NO, maybe later"
924
  msgstr "Nee, misschien later"
925
 
926
- #: ../dashboard.php:887 ../dashboard.php:1110 ../dashboard.php:1667 ../settings.
927
- #: php:229
928
  msgid "Dashboard"
929
  msgstr "Dashboard"
930
 
931
- #: ../cerber-lab.php:648
932
  msgid "Want to make WP Cerber even more powerful?"
933
  msgstr "Wil je WP Cerber nog beter maken?"
934
 
935
- #: ../cerber-lab.php:649
936
  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."
937
  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."
938
 
939
- #: ../dashboard.php:449
940
  msgid "IP address"
941
  msgstr "IP-adres"
942
 
943
- #: ../dashboard.php:449
944
  msgid "User login"
945
  msgstr "Gebruikers-login"
946
 
947
- #: ../dashboard.php:449
948
  msgid "User ID"
949
  msgstr "Gebruikers-ID"
950
 
951
- #: ../dashboard.php:647
952
  msgid "Export"
953
  msgstr "Export"
954
 
955
- #: ../dashboard.php:666
956
  msgid "Search for IP or username"
957
  msgstr "Zoek IP of gebruikersnaam"
958
 
959
- #: ../dashboard.php:666
960
  msgid "Filter"
961
  msgstr "Filter"
962
 
963
- #: ../dashboard.php:887
964
  msgid "Cerber Dashboard"
965
  msgstr "Cerber Dashboard"
966
 
967
- #: ../dashboard.php:894
968
  msgid "Cerber tools"
969
  msgstr "Cerber tools"
970
 
971
- #: ../dashboard.php:1580
972
  msgid "Subscribe"
973
  msgstr "Inschrijven"
974
 
975
- #: ../dashboard.php:1581 ../cerber-tools.php:226
976
  msgid "Unsubscribe"
977
  msgstr "Uitschrijven"
978
 
979
- #: ../dashboard.php:1609
980
  msgid "You've subscribed"
981
  msgstr "Je bent ingeschreven"
982
 
983
- #: ../dashboard.php:1612
984
  msgid "You've unsubscribed"
985
  msgstr "Je bent uitgeschreven"
986
 
987
- #: ../wp-cerber.php:3032 ../wp-cerber.php:3033
988
  msgid "A new activity has been recorded"
989
  msgstr "Er is nieuwe activiteit waargenomen"
990
 
991
- #: ../wp-cerber.php:3322
992
  msgid "User"
993
  msgstr "Gebruiker"
994
 
995
- #: ../wp-cerber.php:3330
996
  msgid "Search string"
997
  msgstr "Zoekfrase"
998
 
999
- #: ../wp-cerber.php:3351
1000
  msgid "To unsubscribe click here"
1001
  msgstr "Klik om uit te schrijven"
1002
 
1003
- #: ../settings.php:88
1004
  msgid "Preferences"
1005
  msgstr "Voorkeuren"
1006
 
1007
- #: ../settings.php:90
1008
  msgid "Date format"
1009
  msgstr "Datumformaat"
1010
 
1011
- #: ../settings.php:90
1012
  msgid "if empty, the default format %s will be used"
1013
  msgstr "indien leeg, gebruiken we standaardinstelling %s"
1014
 
1015
- #: ../dashboard.php:1106 ../settings.php:166
1016
  msgid "Push notifications"
1017
  msgstr "Push meldingen"
1018
 
1019
- #: ../settings.php:161
1020
  msgid "Email notifications"
1021
  msgstr "E-mail meldingen"
1022
 
1023
- #: ../settings.php:163
1024
  msgid "Use comma to specify multiple values"
1025
  msgstr "Scheid meer waarden met komma's"
1026
 
1027
- #: ../settings.php:173
1028
  msgid "All connected devices"
1029
  msgstr "Alle verbonden apparaten"
1030
 
1031
- #: ../settings.php:174
1032
  msgid "No devices found"
1033
  msgstr "Geen apparaten gevonden"
1034
 
1035
- #: ../settings.php:176
1036
  msgid "Not available"
1037
  msgstr "Niet beschikbaar"
1038
 
1039
- #: ../common.php:452
1040
  msgid "Password reset requested"
1041
  msgstr "Wachtwoordvernieuwing aangevraagd"
1042
 
1043
- #: ../common.php:496
1044
  msgid "Limit on failed reCAPTCHA verifications is reached"
1045
  msgstr "Grens bereikt van foutieve reCAPTCHA's"
1046
 
1047
- #: ../common.php:541
1048
  msgid "%s ago"
1049
  msgstr "%s geleden"
1050
 
1051
- #: ../settings.php:61
1052
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
1053
  msgstr "Pas regels voor inlogbeperking toe op de Lijst Toegelaten IP-adressen"
1054
 
1055
- #: ../settings.php:70
1056
  msgid "Display 404 page"
1057
  msgstr "Toon 404-pagina"
1058
 
1059
- #: ../settings.php:141
1060
  msgid "Invisible reCAPTCHA"
1061
  msgstr "Onzichtbare reCAPTCHA"
1062
 
1063
- #: ../settings.php:141
1064
  msgid "Enable invisible reCAPTCHA"
1065
  msgstr "Zet onzichtbare reCAPTCHA aan"
1066
 
1067
- #: ../settings.php:141
1068
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
1069
  msgstr "(zet pas aan als je de Sitesleutel en Geheime Sleutel voor de onzichtbare versie hebt ontvangen)"
1070
 
1071
- #: ../settings.php:152
1072
  msgid "Enable reCAPTCHA for WordPress comment form"
1073
  msgstr "Zet reCAPTCHA aan voor WordPress reacties"
1074
 
1075
- #: ../settings.php:153
1076
  msgid "Disable reCAPTCHA for logged in users"
1077
  msgstr "Zet reCAPTCHA uit voor ingelogde gebruikers"
1078
 
1079
- #: ../settings.php:155
1080
  msgid "Limit attempts"
1081
  msgstr "Beperk aantal pogingen"
1082
 
1083
- #: ../settings.php:155
1084
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1085
  msgstr "Sluit IP-adressen uit voor %s minuten na %s mislukte pogingen in %s minuten"
1086
 
1087
- #: ../settings.php:198
1088
  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."
1089
  msgstr "In de Citadelmodus kunnen alleen adressen van de Lijst Toegelaten IP-adressen inloggen. Heeft geen effect op reeds ingelogde gebruikers."
1090
 
1091
- #: ../dashboard.php:449 ../dashboard.php:628
1092
  msgid "Event"
1093
  msgstr "Gebeurtenis"
1094
 
1095
- #: ../dashboard.php:1285
1096
  msgid "Spam comments denied"
1097
  msgstr "Spamreacties afgewezen"
1098
 
1099
- #: ../dashboard.php:1287
1100
  msgid "Malicious IP addresses detected"
1101
  msgstr "Kwaadaardige IP-adressen gevonden"
1102
 
1103
- #: ../dashboard.php:1288
1104
  msgid "Lockouts occurred"
1105
  msgstr "Uitsluitingen"
1106
 
1107
- #: ../dashboard.php:1314
1108
  msgid "All suspicious activity"
1109
  msgstr "Alle verdachte activiteit"
1110
 
1111
- #: ../wp-cerber.php:1005 ../wp-cerber.php:1011 ../wp-cerber.php:1027 ../wp-cerber.
1112
- #: php:1034
1113
  msgid "You are not allowed to register."
1114
  msgstr "Je mag niet aanmelden."
1115
 
1116
- #: ../common.php:437
1117
  msgid "Spam comment denied"
1118
  msgstr "Spamreactie afgewezen."
1119
 
1120
- #: ../common.php:462
1121
  msgid "Attempt to log in denied"
1122
  msgstr "Inlogpoging afgewezen"
1123
 
1124
- #: ../common.php:463
1125
  msgid "Attempt to register denied"
1126
  msgstr "Aanmeldingspoging afgewezen"
1127
 
1128
- #: ../dashboard.php:1284
1129
  msgid "Malicious activities mitigated"
1130
  msgstr "Verdachte activiteiten afgevangen"
1131
 
1132
- #: ../dashboard.php:893
1133
  msgid "Cerber antispam settings"
1134
  msgstr "Cerber Antispam-instellingen"
1135
 
1136
- #: ../dashboard.php:893 ../wp-cerber.php:3459 ../settings.php:152
1137
  msgid "Antispam"
1138
  msgstr "Antispam"
1139
 
1140
- #: ../settings.php:123
1141
  msgid "Cerber antispam engine"
1142
  msgstr "Cerber Antispam"
1143
 
1144
- #: ../settings.php:124
1145
  msgid "Comment form"
1146
  msgstr "Reactiepagina"
1147
 
1148
- #: ../settings.php:124
1149
  msgid "Protect comment form with bot detection engine"
1150
  msgstr "Bescherm invoer reacties met bot-detectie"
1151
 
1152
- #: ../settings.php:125
1153
  msgid "Protect registration form with bot detection engine"
1154
  msgstr "Bescherm registratiepagina met bot-detectie"
1155
 
@@ -1165,63 +1154,63 @@ msgstr "Diagnose"
1165
  msgid "License"
1166
  msgstr "Licentie"
1167
 
1168
- #: ../cerber-tools.php:296
1169
  msgid "Antispam and bot detection settings"
1170
  msgstr "Antispam- en botdetectie-instellingen"
1171
 
1172
- #: ../wp-cerber.php:1271
1173
  msgid "Sorry, human verification failed."
1174
  msgstr "Sorry, de verificatie faalt."
1175
 
1176
- #: ../common.php:497
1177
  msgid "Bot activity is detected"
1178
  msgstr "Bot-activiteit getedecteerd"
1179
 
1180
- #: ../settings.php:133
1181
  msgid "Comment processing"
1182
  msgstr "Verwerking van reactie"
1183
 
1184
- #: ../settings.php:134
1185
  msgid "If a spam comment detected"
1186
  msgstr "Bij detectie van een spam-reactie"
1187
 
1188
- #: ../settings.php:135
1189
  msgid "Trash spam comments"
1190
  msgstr "Spamreacties weggooien"
1191
 
1192
- #: ../settings.php:135
1193
  msgid "Move spam comments to trash after"
1194
  msgstr "Verwijder spamreacties na"
1195
 
1196
- #: ../common.php:438
1197
  msgid "Spam form submission denied"
1198
  msgstr "Geweigerd wegens spam"
1199
 
1200
- #: ../settings.php:126
1201
  msgid "Other forms"
1202
  msgstr "Andere formulieren"
1203
 
1204
- #: ../settings.php:126
1205
  msgid "Protect all forms on the website with bot detection engine"
1206
  msgstr "Bescherm alle invoerformulieren met bot-detectie"
1207
 
1208
- #: ../settings.php:128
1209
  msgid "Adjust antispam engine"
1210
  msgstr "Antispammechanisme aanpassen"
1211
 
1212
- #: ../settings.php:129
1213
  msgid "Safe mode"
1214
  msgstr "Veilige modus"
1215
 
1216
- #: ../settings.php:129
1217
  msgid "Use less restrictive policies (allow AJAX)"
1218
  msgstr "Minder restricties (sta AJAX toe)"
1219
 
1220
- #: ../settings.php:130
1221
  msgid "Logged in users"
1222
  msgstr "Ingelogde gebruikers"
1223
 
1224
- #: ../settings.php:130
1225
  msgid "Disable bot detection engine for logged in users"
1226
  msgstr "Zet bot-detectie uit voor ingelogde gebruikers"
1227
 
@@ -1230,68 +1219,57 @@ msgstr "Zet bot-detectie uit voor ingelogde gebruikers"
1230
  msgid "WP Cerber Security & Antispam"
1231
  msgstr "WP Cerber Security & Antispam"
1232
 
1233
- #. Description of the plugin
1234
- #:
1235
- 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=\"http://wpcerber.com\">wpcerber.com</a>."
1236
- msgstr "Beschermt site tegen <i>brute force</i>-aanvallen, bots en hackers. Bevecht spam met Cerber Antispam en reCAPTCHA. Gebruikersactiviteiten goed te beheren. Beperkt inlogpogingen met toegangslijsten en limieten. Meer op: <a href=\"http://wpcerber.com\">wpcerber.com</a>."
1237
-
1238
- #: ../dashboard.php:95 ../dashboard.php:626
1239
  msgid "Country"
1240
  msgstr "Land"
1241
 
1242
- #: ../dashboard.php:657
1243
  msgid "All events"
1244
  msgstr "Alle gebeurtenissen"
1245
 
1246
- #: ../dashboard.php:890
1247
  msgid "Cerber Security Rules"
1248
  msgstr "Cerber Beveiligingsregels"
1249
 
1250
- #: ../dashboard.php:890 ../dashboard.php:2000
1251
  msgid "Security Rules"
1252
  msgstr "Beveiligingsregels"
1253
 
1254
- #: ../dashboard.php:968
1255
  msgid "Failed login attempts"
1256
  msgstr "Gefaalde loginpogingen"
1257
 
1258
- #: ../dashboard.php:969
1259
  msgid "Registered"
1260
  msgstr "Geregistreerd"
1261
 
1262
- #: ../dashboard.php:1036
1263
  msgid "You"
1264
  msgstr "Jij"
1265
 
1266
- #: ../dashboard.php:1286
1267
  msgid "Spam form submissions denied"
1268
  msgstr "Spam formulierafgifte afgewezen "
1269
 
1270
- #: ../dashboard.php:1369 ../wp-cerber.php:3452
1271
  msgid "Getting Started Guide"
1272
  msgstr "Startgids"
1273
 
1274
- #: ../dashboard.php:2005
1275
  msgid "Countries"
1276
  msgstr "Landen"
1277
 
1278
- #: ../dashboard.php:2070
1279
  msgid "Permitted for one country"
1280
  msgid_plural "Permitted for %d countries"
1281
  msgstr[0] "Toegestaan voor één land"
1282
  msgstr[1] "Toegestaan voor %d landen"
1283
 
1284
- #: ../dashboard.php:2073
1285
- msgid "Blocked for one country"
1286
- msgid_plural "Blocked for %d countries"
1287
- msgstr[0] "Geblokkeerd voor één land"
1288
- msgstr[1] "Geblokkeerd voor %d landen"
1289
-
1290
- #: ../dashboard.php:2081
1291
  msgid "No rule"
1292
  msgstr "Geen regel"
1293
 
1294
- #: ../dashboard.php:2282
1295
  msgid "Security rules have been updated"
1296
  msgstr "Beveiligingsregels zijn vernieuwd"
1297
 
@@ -1300,139 +1278,262 @@ msgstr "Beveiligingsregels zijn vernieuwd"
1300
  msgid "https://wpcerber.com"
1301
  msgstr "https://wpcerber.com"
1302
 
1303
- #: ../common.php:439
1304
  msgid "Form submission denied"
1305
  msgstr "Formulierafgifte afgewezen"
1306
 
1307
- #: ../common.php:440
1308
  msgid "Comment denied"
1309
  msgstr "Commentaar afgewezen"
1310
 
1311
- #: ../common.php:465
1312
  msgid "Request to REST API denied"
1313
  msgstr "Verzoek aan REST API afgewezen"
1314
 
1315
- #: ../common.php:466
1316
  msgid "XML-RPC request denied"
1317
  msgstr "XML-RPC-verzoek afgewezen"
1318
 
1319
- #: ../common.php:470
1320
  msgid "Bot detected"
1321
  msgstr "Bot gedetecteerd"
1322
 
1323
- #: ../common.php:471
1324
  msgid "Citadel mode is active"
1325
  msgstr "Citadelmodus actief"
1326
 
1327
- #: ../common.php:476
1328
  msgid "Malicious activity detected"
1329
  msgstr "Verdachte activiteit gedetecteerd "
1330
 
1331
- #: ../common.php:477
1332
  msgid "Blocked by country rule"
1333
  msgstr "Geblokkeerd door landenregel"
1334
 
1335
- #: ../common.php:478
1336
  msgid "Limit reached"
1337
  msgstr "Limiet bereikt"
1338
 
1339
- #: ../common.php:479
1340
  msgid "Multiple suspicious activities"
1341
  msgstr "Meerdere verdachte activiteiten"
1342
 
1343
- #: ../common.php:498
1344
  msgid "Multiple suspicious activities were detected"
1345
  msgstr "Meerdere verdachte activiteiten gedetecteerd"
1346
 
1347
- #: ../settings.php:98
1348
  msgid "Block access to user pages like /?author=n and user data via REST API"
1349
  msgstr "Blokkeer toegang tot gebruikersgegevens en -pagina's als /?author=n via de REST API"
1350
 
1351
- #: ../settings.php:101
1352
  msgid "Block access to the WordPress REST API except the following"
1353
  msgstr "Blokkeer toegang naar de WordPress REST API behalve het volgende"
1354
 
1355
- #: ../settings.php:102
1356
  msgid "Allow REST API for logged in users"
1357
  msgstr "Sta REST API toe voor ingelogde gebruikers"
1358
 
1359
- #: ../settings.php:103
1360
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
1361
  msgstr "Geef toegestane REST API-naamruimtes op als de REST API is uitgeschakeld. Eén tekenreeks per regel."
1362
 
1363
- #: ../settings.php:113
1364
  msgid "Registration limit"
1365
  msgstr "Registratielimiet"
1366
 
1367
- #: ../settings.php:116
1368
  msgid "Sort users in dashboard"
1369
  msgstr "Gebruikers in dashboard sorteren"
1370
 
1371
- #: ../settings.php:116
1372
  msgid "by date of registration"
1373
  msgstr "per registratiedatum"
1374
 
1375
- #: ../settings.php:131
1376
  msgid "Query whitelist"
1377
  msgstr "Toegestane queries"
1378
 
1379
- #: ../settings.php:131
1380
- msgid "Specify search strings to search in a request URI to exclude the request from inspection by the engine. One string per line."
1381
- msgstr ""
1382
-
1383
- #: ../settings.php:371
1384
  msgid "%s allowed registrations in %s minutes from one IP"
1385
  msgstr "%s toegestane registraties in %s minuten van één IP"
1386
 
1387
- #: ../dashboard.php:2137
1388
  msgid "Start typing here to find a country"
1389
  msgstr "Begin te typen om een land te vinden"
1390
 
1391
- #: ../dashboard.php:2218
1392
  msgid "Click on a country name to add it to the list of selected countries"
1393
  msgstr "Klik op een landnaam om toe te voegen aan de lijst gekozen landen"
1394
 
1395
- #: ../dashboard.php:2222
1396
- msgid "Selected countries are allowed to %s other countries are not allowed"
1397
- msgstr "Gekozen landen mogen naar %s andere landen niet"
1398
-
1399
- #: ../dashboard.php:2225
1400
- msgid "Selected countries are not allowed to %s other countries are allowed"
1401
- msgstr "Gekozen landen mogen niet naar %s andere landen wel"
1402
-
1403
- #: ../dashboard.php:2237
1404
  msgid "Submit forms"
1405
  msgstr "Formulieren versturen"
1406
 
1407
- #: ../dashboard.php:2238
1408
  msgid "Post comments"
1409
  msgstr "Commentaar plaatsen"
1410
 
1411
- #: ../dashboard.php:2239
1412
  msgid "Log in to the website"
1413
  msgstr "Inloggen bij de website"
1414
 
1415
- #: ../dashboard.php:2240
1416
  msgid "Register on the website"
1417
  msgstr "Registreren bij de website"
1418
 
1419
- #: ../dashboard.php:2241
1420
  msgid "Use XML-RPC"
1421
  msgstr "Benut XML-RPC"
1422
 
1423
- #: ../dashboard.php:2242
1424
  msgid "Use REST API"
1425
  msgstr "Benut REST API"
1426
 
1427
- #: ../settings.php:483 ../settings.php:484
1428
- msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache"
1429
- msgstr "Gebruik je een caching plugin, voeg dan je nieuwe login URL toe aan de lijst van niet te cachen pagina's"
1430
-
1431
- #: ../settings.php:134
1432
  msgid "Deny it completely"
1433
  msgstr "Volledig negeren"
1434
 
1435
- #: ../settings.php:134
1436
  msgid "Mark it as spam"
1437
  msgstr "Markeren als spam"
1438
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  "Language: nl\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
 
11
+ #: ../settings.php:67
12
  msgid "Limit login attempts"
13
  msgstr "Inlogpogingen beperken"
14
 
15
+ #: ../settings.php:68
16
  msgid "Attempts"
17
  msgstr "Pogingen"
18
 
19
+ #: ../settings.php:69
20
  msgid "Lockout duration"
21
  msgstr "Lockout duur"
22
 
23
+ #: ../settings.php:69 ../settings.php:88
24
  msgid "minutes"
25
  msgstr "minuten"
26
 
27
+ #: ../settings.php:70
28
  msgid "Aggressive lockout"
29
  msgstr "Agressieve uitsluiting"
30
 
31
+ #: ../settings.php:73
32
  msgid "Site connection"
33
  msgstr "Websiteverbinding"
34
 
35
+ #: ../settings.php:75
36
  msgid "Proactive security rules"
37
  msgstr "Proactieve beveiligingsregels"
38
 
39
+ #: ../settings.php:76
40
  msgid "Block subnet"
41
  msgstr "Subnet blokkeren"
42
 
43
+ #: ../settings.php:79
44
  msgid "Request wp-login.php"
45
+ msgstr "Verzoek wp-login.php"
46
 
47
+ #: ../settings.php:79
48
  msgid "Immediately block IP after any request to wp-login.php"
49
  msgstr "IP meteen blokkeren bij verzoeken aan wp-login.php"
50
 
51
+ #: ../settings.php:78
52
  msgid "Redirect dashboard requests"
53
  msgstr "Dashboardverzoeken omleiden"
54
 
55
+ #: ../settings.php:82
56
  msgid "Custom login page"
57
  msgstr "Aangepaste inlogpagina"
58
 
59
+ #: ../settings.php:83
60
  msgid "Custom login URL"
61
  msgstr "Aangepaste inlog-URL"
62
 
63
+ #: ../settings.php:83
64
  msgid "must not overlap with the existing pages or posts slug"
65
  msgstr "mag niet overlappen met bestaande pagina's of post slugs"
66
 
67
+ #: ../settings.php:84
68
  msgid "Disable wp-login.php"
69
  msgstr "Wp-login.php uitschakelen"
70
 
71
+ #: ../settings.php:84
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:1090 ../settings.php:86
76
  msgid "Citadel mode"
77
  msgstr "Citadelmodus"
78
 
79
+ #: ../settings.php:87
80
  msgid "Threshold"
81
  msgstr "Drempelwaarde"
82
 
83
+ #: ../settings.php:88
84
  msgid "Duration"
85
  msgstr "Duur"
86
 
87
+ #: ../wp-cerber.php:3687 ../settings.php:72 ../settings.php:89 ../settings.php:262
88
  msgid "Notifications"
89
  msgstr "Meldingen"
90
 
91
+ #: ../settings.php:89
92
  msgid "Send notification to admin email"
93
  msgstr "Melding versturen naar admin e-mailadres"
94
 
95
+ #: ../dashboard.php:1099 ../wp-cerber.php:3684 ../settings.php:255 ../cerber-
96
+ #: tools.php:88 ../cerber-tools.php:97 ../cerber-tools.php:174
97
  msgid "Access Lists"
98
  msgstr "Toegangslijsten"
99
 
100
+ #: ../dashboard.php:1097 ../dashboard.php:1293 ../wp-cerber.php:3452 ../settings.
101
+ #: php:91 ../settings.php:246
102
  msgid "Activity"
103
  msgstr "Activiteit"
104
 
105
+ #: ../dashboard.php:1098 ../settings.php:250
106
  msgid "Lockouts"
107
  msgstr "Uitsluitingen"
108
 
109
+ #: ../settings.php:377 ../settings.php:500
110
  msgid "%s allowed retries in %s minutes"
111
  msgstr "%s toegestane pogingen in %s minuten"
112
 
113
+ #: ../settings.php:399 ../settings.php:522
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:612 ../wp-cerber.php:3461
118
  msgid "IP"
119
  msgstr "IP"
120
 
121
+ #: ../dashboard.php:457 ../dashboard.php:615
122
  msgid "Date"
123
  msgstr "Datum"
124
 
125
+ #: ../dashboard.php:457 ../dashboard.php:617
126
  msgid "Local User"
127
  msgstr "Lokale gebruiker"
128
 
129
+ #: ../dashboard.php:457 ../dashboard.php:618 ../wp-cerber.php:3469
130
  msgid "Username used"
131
  msgstr "Toegepaste gebruikersnaam"
132
 
134
  msgid "Showing last %d records from %d"
135
  msgstr "Laatste %d records van %d"
136
 
137
+ #: ../common.php:480
138
  msgid "Logged in"
139
  msgstr "Ingelogd"
140
 
141
+ #: ../common.php:481
142
  msgid "Logged out"
143
  msgstr "Uitgelogd"
144
 
145
+ #: ../common.php:482
146
  msgid "Login failed"
147
  msgstr "Inloggen mislukt"
148
 
149
+ #: ../common.php:485
150
  msgid "IP blocked"
151
  msgstr "IP geblokkeerd"
152
 
153
+ #: ../common.php:486
154
  msgid "Subnet blocked"
155
  msgstr "Subnet geblokkeerd"
156
 
157
+ #: ../common.php:488
158
  msgid "Citadel activated!"
159
  msgstr "Citadelmodus geactiveerd!"
160
 
161
+ #: ../dashboard.php:593 ../dashboard.php:797 ../common.php:524
162
  #, fuzzy
163
  msgid "Locked out"
164
  msgstr "Buitengesloten"
165
 
166
+ #: ../common.php:525
167
  msgid "IP blacklisted"
168
  msgstr "IP uitgesloten"
169
 
170
+ #: ../common.php:503
171
  msgid "Password changed"
172
  msgstr "Wachtwoord veranderd"
173
 
175
  msgid "Remove"
176
  msgstr "Verwijderen"
177
 
178
+ #: ../dashboard.php:368
179
  msgid "Lockout for %s was removed"
180
  msgstr "Uitsluiting voor %s is verwijderd"
181
 
182
+ #: ../dashboard.php:131 ../dashboard.php:588 ../dashboard.php:792 ../dashboard.
183
+ #: php:1088 ../wp-cerber.php:3676 ../settings.php:71 ../settings.php:216
184
  #, fuzzy
185
  msgid "White IP Access List"
186
  msgstr "Toegelaten IP-adressen"
187
 
188
+ #: ../dashboard.php:133 ../dashboard.php:589 ../dashboard.php:794 ../dashboard.
189
+ #: php:1089
190
  #, fuzzy
191
  msgid "Black IP Access List"
192
  msgstr "Uitgesloten IP-adressen"
205
  msgid "Address %s was added to Black IP Access List"
206
  msgstr "Adres %s toegevoegd aan de Lijst Uitgesloten IP-adressen "
207
 
208
+ #: ../wp-cerber.php:2944
209
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
210
  msgstr "Citadelmodus geactiveerd na %d mislukte inlogpogingen binnen %d minuten"
211
 
212
+ #: ../dashboard.php:1435
213
  #, fuzzy
214
  msgid "View Activity"
215
  msgstr "Activiteit bekijken"
218
  msgid "Settings"
219
  msgstr "Instellingen"
220
 
221
+ #: ../dashboard.php:954
222
  #, fuzzy
223
  msgid "Last login"
224
  msgstr "Laatst ingelogd"
225
 
226
+ #: ../dashboard.php:987 ../dashboard.php:1071
227
  msgid "Never"
228
  msgstr "Nooit"
229
 
230
+ #: ../dashboard.php:1337
231
  msgid "Are you sure?"
232
  msgstr "Weet je het zeker?"
233
 
234
+ #: ../dashboard.php:1145 ../settings.php:73
235
  msgid "My site is behind a reverse proxy"
236
  msgstr "Mijn website draait achter een reverse proxy"
237
 
238
+ #: ../settings.php:77
239
  msgid "Non-existent users"
240
  msgstr "Niet-bestaande gebruikers"
241
 
242
+ #: ../settings.php:77
243
  msgid "Immediately block IP when attempting to login with a non-existent username"
244
  msgstr "IP meteen blokkeren bij inlogpoging op niet-bestaande gebruiker"
245
 
246
+ #: ../settings.php:78
247
  msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
248
  msgstr "Uitschakelen omleiding naar de inlogpagina bij ongeautoriseerde verzoeken aan /wp-admin/"
249
 
250
+ #: ../settings.php:202
251
  msgid "Make your protection smarter!"
252
  msgstr "Maak je bescherming slimmer!"
253
 
254
+ #: ../settings.php:206
255
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
256
  msgstr "Schakel Permalinks in om deze functionaliteit te gebruiken. Stel de Permalinks instelling in op iets anders dan Standaard."
257
 
258
+ #: ../settings.php:209
259
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
260
  msgstr "Pas op als je deze opties inschakelt! Vergeet je de aangepaste inlog-URL, dan kun je niet meer inloggen."
261
 
262
+ #: ../wp-cerber.php:3683 ../settings.php:252
263
  msgid "Main Settings"
264
  msgstr "Hoofdinstellingen"
265
 
266
+ #: ../settings.php:264
267
  msgid "Help"
268
  msgstr "Hulp"
269
 
270
+ #: ../settings.php:387 ../settings.php:510
271
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
272
  msgstr "Uitsluitingsduur ophogen naar %s uren na %s uitsluitingen in de laatste %s uren"
273
 
285
  msgstr[0] "Slechts één inlogpoging resterend!"
286
  msgstr[1] "%s inlogpogingen resterend."
287
 
288
+ #: ../dashboard.php:639
289
  msgid "No activity has been logged."
290
  msgstr "Geen activiteit waargenomen."
291
 
310
  msgid "You can't add your IP address"
311
  msgstr "Je kunt je eigen IP niet toevoegen"
312
 
313
+ #: ../wp-cerber.php:2945
314
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
315
  msgstr "Laatste mislukte inlogpoging was op %s vanaf IP %s op gebruiker %s."
316
 
317
+ #: ../wp-cerber.php:3659
 
 
 
 
318
  msgid "Can't activate WP Cerber due to a database error."
319
  msgstr "Kan WP Cerber niet activeren door een fout in de database"
320
 
321
+ #: ../settings.php:394 ../settings.php:517
322
  msgid "Notify admin if the number of active lockouts above"
323
  msgstr "Waarschuw de beheerder als het aantal actieve uitsluitingen stijgt tot boven"
324
 
325
+ #: ../settings.php:92 ../settings.php:144
326
  msgid "days"
327
  msgstr "dagen"
328
 
329
+ #: ../dashboard.php:1041
330
  msgid "Cerber Quick View"
331
  msgstr "Cerber Quick View"
332
 
338
  msgid "To view activity, click on the IP"
339
  msgstr "Klik op het IP om activiteiten te bekijken"
340
 
341
+ #: ../dashboard.php:157 ../dashboard.php:824
342
  msgid "Check for activity"
343
  msgstr "Check voor activiteit"
344
 
345
+ #: ../settings.php:76
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:89 ../settings.php:396 ../settings.php:519
350
  msgid "Click to send test"
351
  msgstr "Klik om test te verzenden"
352
 
353
+ #: ../settings.php:659 ../settings.php:660
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:953
358
  msgid "Comments"
359
  msgstr "Reacties"
360
 
361
+ #: ../common.php:744
 
 
 
 
362
  msgid "Update to version %s of WP Cerber"
363
  msgstr "WP Cerber updaten naar versie %s"
364
 
365
+ #: ../wp-cerber.php:2946 ../wp-cerber.php:3493
366
  msgid "View activity in dashboard"
367
  msgstr "Activiteiten bekijken in dashboard"
368
 
369
+ #: ../wp-cerber.php:2976
370
  msgid "Number of active lockouts"
371
  msgstr "Aantal actieve uitsluitingen"
372
 
373
+ #: ../wp-cerber.php:2980
374
  msgid "View lockouts in dashboard"
375
  msgstr "Uitsluitingen bekijken in dashboard"
376
 
377
+ #: ../wp-cerber.php:3062
378
  msgid "This message was sent by"
379
  msgstr "Dit bericht is verzonden door"
380
 
381
+ #: ../dashboard.php:882 ../cerber-tools.php:43
382
  msgid "Tools"
383
  msgstr "Gereedschap"
384
 
422
  msgid "Upload file"
423
  msgstr "Bestand uploaden"
424
 
425
+ #: ../cerber-tools.php:141
426
  msgid "No file was uploaded or file is corrupted"
427
  msgstr "Geen bestand geüpload of bestand is beschadigd."
428
 
429
+ #: ../cerber-tools.php:174
430
  msgid "Error while updating"
431
  msgstr "Foutmelding tijdens updaten"
432
 
433
+ #: ../cerber-tools.php:177
434
  msgid "Settings has imported successfully from"
435
  msgstr "Instellingen geïmporteerd van"
436
 
437
+ #: ../cerber-tools.php:181
438
  msgid "Error while parsing file"
439
  msgstr "Fout bij verwerken bestand"
440
 
441
+ #: ../dashboard.php:94 ../dashboard.php:613
442
  msgid "Hostname"
443
  msgstr "Hostnaam"
444
 
445
+ #: ../dashboard.php:333
446
  msgid "unknown"
447
  msgstr "onbekend"
448
 
449
+ #: ../settings.php:92
450
  #, fuzzy
451
  msgid "Keep records for"
452
  msgstr "Gegevens behouden tot"
453
 
454
+ #: ../dashboard.php:1075
455
  msgid "active"
456
  msgstr "actief"
457
 
458
+ #: ../dashboard.php:1075
459
  msgid "deactivate"
460
  msgstr "deactiveren"
461
 
462
+ #: ../dashboard.php:1077
463
  msgid "not active"
464
  msgstr "niet actief"
465
 
466
+ #: ../dashboard.php:1078
467
  msgid "disabled"
468
  msgstr "gedeactiveerd"
469
 
470
+ #: ../dashboard.php:1083
471
  msgid "failed attempts"
472
  msgstr "mislukte pogingen"
473
 
474
+ #: ../dashboard.php:1083 ../dashboard.php:1084
475
  msgid "in 24 hours"
476
  msgstr "in 24 uur"
477
 
478
+ #: ../dashboard.php:1083 ../dashboard.php:1084
479
  msgid "view all"
480
  msgstr "bekijk alles"
481
 
482
+ #: ../dashboard.php:1084
483
  msgid "lockouts"
484
  msgstr "uitsluitingen"
485
 
486
+ #: ../dashboard.php:1086
487
  msgid "Lockouts at the moment"
488
  msgstr "Uitsluitingen op dit moment"
489
 
490
+ #: ../dashboard.php:1087
491
  #, fuzzy
492
  msgid "Last lockout"
493
  msgstr "Recente uitsluiting"
494
 
495
+ #: ../dashboard.php:1088 ../dashboard.php:1089 ../dashboard.php:1601
496
  msgid "entry"
497
  msgid_plural "entries"
498
  msgstr[0] "item"
499
  msgstr[1] "items"
500
 
501
+ #: ../dashboard.php:1332
502
  #, fuzzy
503
  msgid "Confused about some settings?"
504
  msgstr "Verward over sommige instellingen?"
505
 
506
+ #: ../dashboard.php:1333
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:1335
512
  #, fuzzy
513
  msgid "Load default settings"
514
  msgstr "Aanbevolen instellingen laden"
515
 
516
+ #: ../dashboard.php:1343
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:737
521
  msgid "New version is available"
522
  msgstr "Nieuwe versie beschikbaar"
523
 
524
  #. Name of the plugin
525
+ #: ../dashboard.php:873 ../dashboard.php:892
526
  msgid "WP Cerber"
527
  msgstr "WP Cerber"
528
 
529
+ #: ../wp-cerber.php:2920
530
  msgid "WP Cerber notify"
531
  msgstr "WP Cerber melding"
532
 
533
+ #: ../wp-cerber.php:2942
534
  msgid "Citadel mode is activated"
535
  msgstr "Citadel modus is actief"
536
 
537
+ #: ../wp-cerber.php:3016
538
  msgid "New Custom login URL"
539
  msgstr "Nieuwe Aangepaste inlog-URL"
540
 
541
+ #: ../wp-cerber.php:3650
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:3654
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
 
549
+ #: ../settings.php:95
550
  msgid "Use file"
551
  msgstr "Bestand gebruiken"
552
 
553
+ #: ../settings.php:95
554
  msgid "Write failed login attempts to the file"
555
  msgstr "Mislukte pogingen opslaan in bestand"
556
 
557
+ #: ../dashboard.php:1434
558
  msgid "Deactivate"
559
  msgstr "Deactiveren"
560
 
561
+ #: ../dashboard.php:97 ../wp-cerber.php:2978
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:842
570
  msgid "Add IP to the Black List"
571
  msgstr "IP-adres toevoegen aan Uitsluitingslijst"
572
 
573
+ #: ../common.php:555
574
  msgid "Attempt to access"
575
  msgstr "Poging tot toegang"
576
 
577
+ #: ../common.php:554
578
  msgid "Limit on login attempts is reached"
579
  msgstr "Limiet voor aantal inlogpogingen is bereikt"
580
 
581
+ #: ../common.php:511 ../common.php:556
582
  msgid "Attempt to log in with non-existent username"
583
  msgstr "Inlogpoging met onbekende gebruikersnaam"
584
 
585
+ #: ../wp-cerber.php:2977
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:3686 ../settings.php:257
590
  msgid "Hardening"
591
  msgstr "Versterking"
592
 
593
+ #: ../dashboard.php:820
594
  msgid "Abuse email:"
595
  msgstr "E-mail voor misbruik:"
596
 
597
+ #: ../settings.php:172 ../settings.php:192
598
  msgid "Email Address"
599
  msgstr "E-mailadres"
600
 
601
+ #: ../settings.php:172
602
  msgid "if empty, the admin email %s will be used"
603
  msgstr "admin e-mail %s wordt gebruikt indien leeg"
604
 
605
+ #: ../settings.php:98
606
  msgid "Drill down IP"
607
  msgstr "IP-adres onderzoeken"
608
 
609
+ #: ../settings.php:98
610
  msgid "Retrieve extra WHOIS information for IP"
611
  msgstr "Haal extra WHOIS-informatie op voor IP-adres"
612
 
613
+ #: ../settings.php:106
614
  msgid "Hardening WordPress"
615
  msgstr "Wordpress versterken"
616
 
617
+ #: ../settings.php:107
618
  msgid "Stop user enumeration"
619
  msgstr "Stop nummering gebruikers"
620
 
621
+ #: ../settings.php:108
622
  msgid "Disable XML-RPC"
623
  msgstr "XML-RPC uitschakelen"
624
 
625
+ #: ../settings.php:108
626
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
627
  msgstr "Toegang tot XML-RPC server uitschakelen (inclusief Pingbacks en Trackbacks)"
628
 
629
+ #: ../settings.php:109
630
  msgid "Disable feeds"
631
  msgstr "Feeds uitschakelen"
632
 
633
+ #: ../settings.php:109
634
  msgid "Block access to the RSS, Atom and RDF feeds"
635
  msgstr "Blokkeer toegang tot de RSS-, Atom- en RDF-feeds"
636
 
637
+ #: ../settings.php:110
638
  msgid "Disable REST API"
639
  msgstr "REST API uitschakelen"
640
 
641
+ #: ../settings.php:216
642
  msgid "These settings do not affect hosts from the "
643
  msgstr "Deze instellingen gelden niet voor hosts van de␣"
644
 
645
+ #: ../settings.php:736 ../settings.php:748
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:3008 ../wp-cerber.php:3675
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:385 ../dashboard.php:1450
 
 
 
 
666
  msgid "Settings saved"
667
  msgstr "Instellingen opgeslagen"
668
 
669
+ #: ../dashboard.php:824
670
  msgid "Network:"
671
  msgstr "Netwerk:"
672
 
673
+ #: ../dashboard.php:838
674
  msgid "Add network to the Black List"
675
  msgstr "Netwerk toevoegen aan Uitsluitingslijst"
676
 
677
+ #: ../dashboard.php:1433
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:291 ../whois.php:221 ../whois.php:252 ../common.php:553
682
  msgid "Unknown"
683
  msgstr "Onbekend"
684
 
688
  msgstr "Gregory"
689
 
690
  #: ../wp-cerber.php:565 ../wp-cerber.php:577 ../wp-cerber.php:584 ../wp-cerber.
691
+ #: php:771 ../wp-cerber.php:986 ../wp-cerber.php:992 ../wp-cerber.php:997 ../wp-
692
+ #: cerber.php:1002 ../wp-cerber.php:1008 ../wp-cerber.php:1015 ../wp-cerber.php:
693
+ #: 1116 ../wp-cerber.php:1253 ../common.php:173 ../common.php:227 ../common.php:
694
+ #: 231 ../settings.php:709
695
  msgid "ERROR:"
696
  msgstr "FOUT:"
697
 
699
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
700
  msgstr "Menselijke verificatie mislukt. Klik het vierkant in onderstaand reCAPTCHA-blok."
701
 
702
+ #: ../wp-cerber.php:782
703
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
704
  msgstr "<strong>LET OP</strong>: je geeft een foutief wachtwoord op voor gebruiker %s."
705
 
706
+ #: ../wp-cerber.php:1003
707
  msgid "Username is not allowed. Please choose another one."
708
  msgstr "Gebruikersnaam is niet toegestaan, kies een andere."
709
 
710
+ #: ../wp-cerber.php:2971
711
  msgid "unspecified"
712
  msgstr "niet gespecificeerd"
713
 
714
+ #: ../wp-cerber.php:2974
715
  msgid "Number of lockouts is increasing"
716
  msgstr "Aantal uitsluitingen loopt op"
717
 
718
+ #: ../wp-cerber.php:2979
719
  msgid "View activity for this IP"
720
  msgstr "Bekijk activiteit voor dit adres"
721
 
722
+ #: ../wp-cerber.php:2983 ../wp-cerber.php:2985
723
  msgid "A new version of WP Cerber is available to install"
724
  msgstr "Nieuwe versie WP Cerber is klaar voor installatie"
725
 
726
+ #: ../wp-cerber.php:2984
727
  msgid "Hi!"
728
  msgstr "Hallo!"
729
 
730
+ #: ../wp-cerber.php:2987 ../wp-cerber.php:2998
731
  msgid "Website"
732
  msgstr "Website"
733
 
734
+ #: ../wp-cerber.php:2990 ../wp-cerber.php:2991
735
  msgid "The WP Cerber security plugin has been deactivated"
736
  msgstr "WP Cerber is gedeactiveerd"
737
 
738
+ #: ../wp-cerber.php:2993
739
  msgid "Not logged in"
740
  msgstr "Niet ingelogd"
741
 
742
+ #: ../wp-cerber.php:2999
743
  msgid "By user"
744
  msgstr "Door gebruiker"
745
 
746
+ #: ../wp-cerber.php:3000
747
  msgid "From IP address"
748
  msgstr "Van IP-adres"
749
 
750
+ #: ../wp-cerber.php:3003
751
  msgid "From country"
752
  msgstr "Uit land"
753
 
754
+ #: ../wp-cerber.php:3007
755
  msgid "The WP Cerber security plugin is now active"
756
  msgstr "WP Cerber is actief"
757
 
758
+ #: ../wp-cerber.php:3676
759
  msgid "Your IP address is added to the"
760
  msgstr "Je IP-adres is toegevoegd aan de "
761
 
762
+ #: ../wp-cerber.php:3688
763
  msgid "Import settings"
764
  msgstr "Instellingen importeren"
765
 
766
+ #: ../settings.php:173
767
  msgid "Notification limit"
768
  msgstr "Limiet aan meldingen"
769
 
770
+ #: ../settings.php:173
771
  msgid "notification letters allowed per hour (0 means unlimited)"
772
  msgstr "toegestaan aantal meldingen per uur (0=geen limiet)"
773
 
774
+ #: ../settings.php:121
775
  msgid "User related settings"
776
  msgstr "Gebruikersinstellingen"
777
 
778
+ #: ../settings.php:123
779
  msgid "Prohibited usernames"
780
  msgstr "Verboden gebruikersnamen"
781
 
782
+ #: ../settings.php:123
783
  msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
784
  msgstr "Gebruikersnamen op deze lijst kunnen niet registreren of inloggen. IP-adressen die deze namen gebruiken, worden direct uitgesloten. Scheid namen met een komma."
785
 
786
+ #: ../settings.php:124
787
  msgid "User session expire"
788
  msgstr "Gebruikerssessie eindigt"
789
 
790
+ #: ../settings.php:124
791
  msgid "in minutes (leave empty to use default WP value)"
792
  msgstr "in minuten (leeg laten voor standaard WP-waarde)"
793
 
794
+ #: ../settings.php:147
795
  msgid "reCAPTCHA settings"
796
  msgstr "reCAPTCHA-instellingen"
797
 
798
+ #: ../settings.php:148
799
  msgid "Site key"
800
  msgstr "Site-sleutel"
801
 
802
+ #: ../settings.php:149
803
  msgid "Secret key"
804
  msgstr "Geheime sleutel"
805
 
806
+ #: ../settings.php:152
807
  msgid "Enable reCAPTCHA for WordPress registration form"
808
  msgstr "ReCAPTCHA instellen voor WordPress regstratieformulier"
809
 
810
+ #: ../settings.php:155
811
  msgid "Lost password form"
812
  msgstr "Formulier voor zoekgeraakt wachtwoord"
813
 
814
+ #: ../settings.php:158
815
  msgid "Login form"
816
  msgstr "Login-formulier"
817
 
818
+ #: ../settings.php:158
819
  msgid "Enable reCAPTCHA for WordPress login form"
820
  msgstr "ReCAPTCHA inschakelen voor WordPress inlogpagina"
821
 
822
+ #: ../settings.php:219
823
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
824
  msgstr "Haal eerst een Site-sleutel en Geheime Sleutel op van Google om reCAPTCHA te kunnen gebruiken"
825
 
826
+ #: ../cerber-lab.php:666 ../settings.php:220
827
  msgid "Know more"
828
  msgstr "Meer weten"
829
 
830
+ #: ../dashboard.php:873 ../settings.php:239
831
  msgid "WP Cerber Security"
832
  msgstr "WP Cerber Security"
833
 
834
+ #: ../settings.php:259
835
  msgid "Users"
836
  msgstr "Gebruikers"
837
 
838
+ #: ../common.php:478
839
  msgid "User created"
840
  msgstr "Gebruiker toegevoegd"
841
 
842
+ #: ../dashboard.php:1287 ../common.php:479
843
  msgid "User registered"
844
  msgstr "Gebruiker geregistreerd"
845
 
846
+ #: ../common.php:506
847
  msgid "reCAPTCHA verification failed"
848
  msgstr "reCAPTCHA verificatie mislukt"
849
 
850
+ #: ../common.php:507
851
  msgid "reCAPTCHA settings are incorrect"
852
  msgstr "foutieve reCAPTCHA-instellingen"
853
 
854
+ #. 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" ?
855
+ #: ../common.php:510
856
  msgid "Attempt to access prohibited URL"
857
  msgstr "Poging verboden URL te benaderen"
858
 
859
+ #: ../common.php:512 ../common.php:557
860
  msgid "Attempt to log in with prohibited username"
861
  msgstr "Inlogpoging met verboden gebruikersnaam"
862
 
863
+ #: ../settings.php:93
864
  msgid "Cerber Lab connection"
865
  msgstr "Cerber Lab verbinding"
866
 
867
+ #: ../settings.php:93
868
  msgid "Send malicious IP addresses to the Cerber Lab"
869
  msgstr "Stuur kwaadaardige IP-adressen naar Cerber Lab"
870
 
871
+ #: ../settings.php:94
872
  msgid "Cerber Lab protocol"
873
  msgstr "Cerber Lab protocol"
874
 
875
+ #: ../settings.php:134 ../settings.php:152
876
  msgid "Registration form"
877
  msgstr "Registratieformulier"
878
 
879
+ #: ../settings.php:153
880
  msgid "Enable reCAPTCHA for WooCommerce registration form"
881
  msgstr "ReCAPTCHA inschakelen voor WooCommerce registratie"
882
 
883
+ #: ../settings.php:155
884
  msgid "Enable reCAPTCHA for WordPress lost password form"
885
  msgstr "ReCAPTCHA inschakelen om nieuw WordPress wachtwoord op te vragen"
886
 
887
+ #: ../settings.php:156
888
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
889
  msgstr "ReCAPTCHA inschakelen om nieuw WooCommerce wachtwoord op te vragen"
890
 
891
+ #: ../settings.php:159
892
  msgid "Enable reCAPTCHA for WooCommerce login form"
893
  msgstr "ReCAPTCHA inschakelen voor WooCommerce inlogpagina"
894
 
895
+ #: ../common.php:508
896
  msgid "Request to the Google reCAPTCHA service failed"
897
  msgstr "Verzoek aan Google ReCAPTCHA-service"
898
 
899
+ #: ../dashboard.php:1279 ../dashboard.php:1308
900
  msgid "View all"
901
  msgstr "Zie alle"
902
 
903
+ #: ../dashboard.php:1309
904
  msgid "Recently locked out IP addresses"
905
  msgstr "Recent buitengesloten IP-adressen"
906
 
907
+ #: ../cerber-lab.php:664
908
  msgid "OK, nail them all"
909
  msgstr "OK, zet ze allemaal vast"
910
 
911
+ #: ../cerber-lab.php:665
912
  msgid "NO, maybe later"
913
  msgstr "Nee, misschien later"
914
 
915
+ #: ../dashboard.php:875 ../dashboard.php:1096 ../dashboard.php:1621 ../settings.
916
+ #: php:244
917
  msgid "Dashboard"
918
  msgstr "Dashboard"
919
 
920
+ #: ../cerber-lab.php:662
921
  msgid "Want to make WP Cerber even more powerful?"
922
  msgstr "Wil je WP Cerber nog beter maken?"
923
 
924
+ #: ../cerber-lab.php:663
925
  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."
926
  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."
927
 
928
+ #: ../dashboard.php:457
929
  msgid "IP address"
930
  msgstr "IP-adres"
931
 
932
+ #: ../dashboard.php:457
933
  msgid "User login"
934
  msgstr "Gebruikers-login"
935
 
936
+ #: ../dashboard.php:457
937
  msgid "User ID"
938
  msgstr "Gebruikers-ID"
939
 
940
+ #: ../dashboard.php:635
941
  msgid "Export"
942
  msgstr "Export"
943
 
944
+ #: ../dashboard.php:654
945
  msgid "Search for IP or username"
946
  msgstr "Zoek IP of gebruikersnaam"
947
 
948
+ #: ../dashboard.php:654
949
  msgid "Filter"
950
  msgstr "Filter"
951
 
952
+ #: ../dashboard.php:875
953
  msgid "Cerber Dashboard"
954
  msgstr "Cerber Dashboard"
955
 
956
+ #: ../dashboard.php:882
957
  msgid "Cerber tools"
958
  msgstr "Cerber tools"
959
 
960
+ #: ../dashboard.php:1534
961
  msgid "Subscribe"
962
  msgstr "Inschrijven"
963
 
964
+ #: ../dashboard.php:1535 ../cerber-tools.php:239
965
  msgid "Unsubscribe"
966
  msgstr "Uitschrijven"
967
 
968
+ #: ../dashboard.php:1563
969
  msgid "You've subscribed"
970
  msgstr "Je bent ingeschreven"
971
 
972
+ #: ../dashboard.php:1566
973
  msgid "You've unsubscribed"
974
  msgstr "Je bent uitgeschreven"
975
 
976
+ #: ../wp-cerber.php:3020 ../wp-cerber.php:3021
977
  msgid "A new activity has been recorded"
978
  msgstr "Er is nieuwe activiteit waargenomen"
979
 
980
+ #: ../wp-cerber.php:3465
981
  msgid "User"
982
  msgstr "Gebruiker"
983
 
984
+ #: ../wp-cerber.php:3473
985
  msgid "Search string"
986
  msgstr "Zoekfrase"
987
 
988
+ #: ../wp-cerber.php:3494
989
  msgid "To unsubscribe click here"
990
  msgstr "Klik om uit te schrijven"
991
 
992
+ #: ../settings.php:97
993
  msgid "Preferences"
994
  msgstr "Voorkeuren"
995
 
996
+ #: ../settings.php:99
997
  msgid "Date format"
998
  msgstr "Datumformaat"
999
 
1000
+ #: ../settings.php:99
1001
  msgid "if empty, the default format %s will be used"
1002
  msgstr "indien leeg, gebruiken we standaardinstelling %s"
1003
 
1004
+ #: ../dashboard.php:1092 ../settings.php:175
1005
  msgid "Push notifications"
1006
  msgstr "Push meldingen"
1007
 
1008
+ #: ../settings.php:170
1009
  msgid "Email notifications"
1010
  msgstr "E-mail meldingen"
1011
 
1012
+ #: ../settings.php:172 ../settings.php:192
1013
  msgid "Use comma to specify multiple values"
1014
  msgstr "Scheid meer waarden met komma's"
1015
 
1016
+ #: ../settings.php:182
1017
  msgid "All connected devices"
1018
  msgstr "Alle verbonden apparaten"
1019
 
1020
+ #: ../settings.php:183
1021
  msgid "No devices found"
1022
  msgstr "Geen apparaten gevonden"
1023
 
1024
+ #: ../settings.php:185
1025
  msgid "Not available"
1026
  msgstr "Niet beschikbaar"
1027
 
1028
+ #: ../common.php:504
1029
  msgid "Password reset requested"
1030
  msgstr "Wachtwoordvernieuwing aangevraagd"
1031
 
1032
+ #: ../common.php:558
1033
  msgid "Limit on failed reCAPTCHA verifications is reached"
1034
  msgstr "Grens bereikt van foutieve reCAPTCHA's"
1035
 
1036
+ #: ../common.php:603
1037
  msgid "%s ago"
1038
  msgstr "%s geleden"
1039
 
1040
+ #: ../settings.php:71
1041
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
1042
  msgstr "Pas regels voor inlogbeperking toe op de Lijst Toegelaten IP-adressen"
1043
 
1044
+ #: ../settings.php:80
1045
  msgid "Display 404 page"
1046
  msgstr "Toon 404-pagina"
1047
 
1048
+ #: ../settings.php:150
1049
  msgid "Invisible reCAPTCHA"
1050
  msgstr "Onzichtbare reCAPTCHA"
1051
 
1052
+ #: ../settings.php:150
1053
  msgid "Enable invisible reCAPTCHA"
1054
  msgstr "Zet onzichtbare reCAPTCHA aan"
1055
 
1056
+ #: ../settings.php:150
1057
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
1058
  msgstr "(zet pas aan als je de Sitesleutel en Geheime Sleutel voor de onzichtbare versie hebt ontvangen)"
1059
 
1060
+ #: ../settings.php:161
1061
  msgid "Enable reCAPTCHA for WordPress comment form"
1062
  msgstr "Zet reCAPTCHA aan voor WordPress reacties"
1063
 
1064
+ #: ../settings.php:162
1065
  msgid "Disable reCAPTCHA for logged in users"
1066
  msgstr "Zet reCAPTCHA uit voor ingelogde gebruikers"
1067
 
1068
+ #: ../settings.php:164
1069
  msgid "Limit attempts"
1070
  msgstr "Beperk aantal pogingen"
1071
 
1072
+ #: ../settings.php:164
1073
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1074
  msgstr "Sluit IP-adressen uit voor %s minuten na %s mislukte pogingen in %s minuten"
1075
 
1076
+ #: ../settings.php:213
1077
  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."
1078
  msgstr "In de Citadelmodus kunnen alleen adressen van de Lijst Toegelaten IP-adressen inloggen. Heeft geen effect op reeds ingelogde gebruikers."
1079
 
1080
+ #: ../dashboard.php:457 ../dashboard.php:616
1081
  msgid "Event"
1082
  msgstr "Gebeurtenis"
1083
 
1084
+ #: ../common.php:116
1085
  msgid "Spam comments denied"
1086
  msgstr "Spamreacties afgewezen"
1087
 
1088
+ #: ../common.php:118
1089
  msgid "Malicious IP addresses detected"
1090
  msgstr "Kwaadaardige IP-adressen gevonden"
1091
 
1092
+ #: ../common.php:119
1093
  msgid "Lockouts occurred"
1094
  msgstr "Uitsluitingen"
1095
 
1096
+ #: ../dashboard.php:1288
1097
  msgid "All suspicious activity"
1098
  msgstr "Alle verdachte activiteit"
1099
 
1100
+ #: ../wp-cerber.php:987 ../wp-cerber.php:993 ../wp-cerber.php:1009 ../wp-cerber.
1101
+ #: php:1016
1102
  msgid "You are not allowed to register."
1103
  msgstr "Je mag niet aanmelden."
1104
 
1105
+ #: ../common.php:489
1106
  msgid "Spam comment denied"
1107
  msgstr "Spamreactie afgewezen."
1108
 
1109
+ #: ../common.php:514
1110
  msgid "Attempt to log in denied"
1111
  msgstr "Inlogpoging afgewezen"
1112
 
1113
+ #: ../common.php:515
1114
  msgid "Attempt to register denied"
1115
  msgstr "Aanmeldingspoging afgewezen"
1116
 
1117
+ #: ../common.php:113
1118
  msgid "Malicious activities mitigated"
1119
  msgstr "Verdachte activiteiten afgevangen"
1120
 
1121
+ #: ../dashboard.php:881
1122
  msgid "Cerber antispam settings"
1123
  msgstr "Cerber Antispam-instellingen"
1124
 
1125
+ #: ../dashboard.php:881 ../wp-cerber.php:3685 ../settings.php:161
1126
  msgid "Antispam"
1127
  msgstr "Antispam"
1128
 
1129
+ #: ../settings.php:132
1130
  msgid "Cerber antispam engine"
1131
  msgstr "Cerber Antispam"
1132
 
1133
+ #: ../settings.php:133
1134
  msgid "Comment form"
1135
  msgstr "Reactiepagina"
1136
 
1137
+ #: ../settings.php:133
1138
  msgid "Protect comment form with bot detection engine"
1139
  msgstr "Bescherm invoer reacties met bot-detectie"
1140
 
1141
+ #: ../settings.php:134
1142
  msgid "Protect registration form with bot detection engine"
1143
  msgstr "Bescherm registratiepagina met bot-detectie"
1144
 
1154
  msgid "License"
1155
  msgstr "Licentie"
1156
 
1157
+ #: ../cerber-tools.php:309
1158
  msgid "Antispam and bot detection settings"
1159
  msgstr "Antispam- en botdetectie-instellingen"
1160
 
1161
+ #: ../wp-cerber.php:1253
1162
  msgid "Sorry, human verification failed."
1163
  msgstr "Sorry, de verificatie faalt."
1164
 
1165
+ #: ../common.php:559
1166
  msgid "Bot activity is detected"
1167
  msgstr "Bot-activiteit getedecteerd"
1168
 
1169
+ #: ../settings.php:142
1170
  msgid "Comment processing"
1171
  msgstr "Verwerking van reactie"
1172
 
1173
+ #: ../settings.php:143
1174
  msgid "If a spam comment detected"
1175
  msgstr "Bij detectie van een spam-reactie"
1176
 
1177
+ #: ../settings.php:144
1178
  msgid "Trash spam comments"
1179
  msgstr "Spamreacties weggooien"
1180
 
1181
+ #: ../settings.php:144
1182
  msgid "Move spam comments to trash after"
1183
  msgstr "Verwijder spamreacties na"
1184
 
1185
+ #: ../common.php:490
1186
  msgid "Spam form submission denied"
1187
  msgstr "Geweigerd wegens spam"
1188
 
1189
+ #: ../settings.php:135
1190
  msgid "Other forms"
1191
  msgstr "Andere formulieren"
1192
 
1193
+ #: ../settings.php:135
1194
  msgid "Protect all forms on the website with bot detection engine"
1195
  msgstr "Bescherm alle invoerformulieren met bot-detectie"
1196
 
1197
+ #: ../settings.php:137
1198
  msgid "Adjust antispam engine"
1199
  msgstr "Antispammechanisme aanpassen"
1200
 
1201
+ #: ../settings.php:138
1202
  msgid "Safe mode"
1203
  msgstr "Veilige modus"
1204
 
1205
+ #: ../settings.php:138
1206
  msgid "Use less restrictive policies (allow AJAX)"
1207
  msgstr "Minder restricties (sta AJAX toe)"
1208
 
1209
+ #: ../settings.php:139
1210
  msgid "Logged in users"
1211
  msgstr "Ingelogde gebruikers"
1212
 
1213
+ #: ../settings.php:139
1214
  msgid "Disable bot detection engine for logged in users"
1215
  msgstr "Zet bot-detectie uit voor ingelogde gebruikers"
1216
 
1219
  msgid "WP Cerber Security & Antispam"
1220
  msgstr "WP Cerber Security & Antispam"
1221
 
1222
+ #: ../dashboard.php:95 ../dashboard.php:614
 
 
 
 
 
1223
  msgid "Country"
1224
  msgstr "Land"
1225
 
1226
+ #: ../dashboard.php:645
1227
  msgid "All events"
1228
  msgstr "Alle gebeurtenissen"
1229
 
1230
+ #: ../dashboard.php:878
1231
  msgid "Cerber Security Rules"
1232
  msgstr "Cerber Beveiligingsregels"
1233
 
1234
+ #: ../dashboard.php:878 ../dashboard.php:1966
1235
  msgid "Security Rules"
1236
  msgstr "Beveiligingsregels"
1237
 
1238
+ #: ../dashboard.php:955
1239
  msgid "Failed login attempts"
1240
  msgstr "Gefaalde loginpogingen"
1241
 
1242
+ #: ../dashboard.php:956
1243
  msgid "Registered"
1244
  msgstr "Geregistreerd"
1245
 
1246
+ #: ../dashboard.php:1023
1247
  msgid "You"
1248
  msgstr "Jij"
1249
 
1250
+ #: ../common.php:117
1251
  msgid "Spam form submissions denied"
1252
  msgstr "Spam formulierafgifte afgewezen "
1253
 
1254
+ #: ../dashboard.php:1344 ../wp-cerber.php:3010 ../wp-cerber.php:3678
1255
  msgid "Getting Started Guide"
1256
  msgstr "Startgids"
1257
 
1258
+ #: ../dashboard.php:1971
1259
  msgid "Countries"
1260
  msgstr "Landen"
1261
 
1262
+ #: ../dashboard.php:2036
1263
  msgid "Permitted for one country"
1264
  msgid_plural "Permitted for %d countries"
1265
  msgstr[0] "Toegestaan voor één land"
1266
  msgstr[1] "Toegestaan voor %d landen"
1267
 
1268
+ #: ../dashboard.php:2047
 
 
 
 
 
 
1269
  msgid "No rule"
1270
  msgstr "Geen regel"
1271
 
1272
+ #: ../dashboard.php:2248
1273
  msgid "Security rules have been updated"
1274
  msgstr "Beveiligingsregels zijn vernieuwd"
1275
 
1278
  msgid "https://wpcerber.com"
1279
  msgstr "https://wpcerber.com"
1280
 
1281
+ #: ../common.php:491
1282
  msgid "Form submission denied"
1283
  msgstr "Formulierafgifte afgewezen"
1284
 
1285
+ #: ../common.php:492
1286
  msgid "Comment denied"
1287
  msgstr "Commentaar afgewezen"
1288
 
1289
+ #: ../common.php:517
1290
  msgid "Request to REST API denied"
1291
  msgstr "Verzoek aan REST API afgewezen"
1292
 
1293
+ #: ../common.php:518
1294
  msgid "XML-RPC request denied"
1295
  msgstr "XML-RPC-verzoek afgewezen"
1296
 
1297
+ #: ../common.php:522
1298
  msgid "Bot detected"
1299
  msgstr "Bot gedetecteerd"
1300
 
1301
+ #: ../common.php:523
1302
  msgid "Citadel mode is active"
1303
  msgstr "Citadelmodus actief"
1304
 
1305
+ #: ../common.php:528
1306
  msgid "Malicious activity detected"
1307
  msgstr "Verdachte activiteit gedetecteerd "
1308
 
1309
+ #: ../common.php:529
1310
  msgid "Blocked by country rule"
1311
  msgstr "Geblokkeerd door landenregel"
1312
 
1313
+ #: ../common.php:530
1314
  msgid "Limit reached"
1315
  msgstr "Limiet bereikt"
1316
 
1317
+ #: ../common.php:531
1318
  msgid "Multiple suspicious activities"
1319
  msgstr "Meerdere verdachte activiteiten"
1320
 
1321
+ #: ../common.php:560
1322
  msgid "Multiple suspicious activities were detected"
1323
  msgstr "Meerdere verdachte activiteiten gedetecteerd"
1324
 
1325
+ #: ../settings.php:107
1326
  msgid "Block access to user pages like /?author=n and user data via REST API"
1327
  msgstr "Blokkeer toegang tot gebruikersgegevens en -pagina's als /?author=n via de REST API"
1328
 
1329
+ #: ../settings.php:110
1330
  msgid "Block access to the WordPress REST API except the following"
1331
  msgstr "Blokkeer toegang naar de WordPress REST API behalve het volgende"
1332
 
1333
+ #: ../settings.php:111
1334
  msgid "Allow REST API for logged in users"
1335
  msgstr "Sta REST API toe voor ingelogde gebruikers"
1336
 
1337
+ #: ../settings.php:112
1338
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
1339
  msgstr "Geef toegestane REST API-naamruimtes op als de REST API is uitgeschakeld. Eén tekenreeks per regel."
1340
 
1341
+ #: ../settings.php:122
1342
  msgid "Registration limit"
1343
  msgstr "Registratielimiet"
1344
 
1345
+ #: ../settings.php:125
1346
  msgid "Sort users in dashboard"
1347
  msgstr "Gebruikers in dashboard sorteren"
1348
 
1349
+ #: ../settings.php:125
1350
  msgid "by date of registration"
1351
  msgstr "per registratiedatum"
1352
 
1353
+ #: ../settings.php:140
1354
  msgid "Query whitelist"
1355
  msgstr "Toegestane queries"
1356
 
1357
+ #: ../settings.php:382 ../settings.php:505
 
 
 
 
1358
  msgid "%s allowed registrations in %s minutes from one IP"
1359
  msgstr "%s toegestane registraties in %s minuten van één IP"
1360
 
1361
+ #: ../dashboard.php:2103
1362
  msgid "Start typing here to find a country"
1363
  msgstr "Begin te typen om een land te vinden"
1364
 
1365
+ #: ../dashboard.php:2184
1366
  msgid "Click on a country name to add it to the list of selected countries"
1367
  msgstr "Klik op een landnaam om toe te voegen aan de lijst gekozen landen"
1368
 
1369
+ #: ../dashboard.php:2203
 
 
 
 
 
 
 
 
1370
  msgid "Submit forms"
1371
  msgstr "Formulieren versturen"
1372
 
1373
+ #: ../dashboard.php:2204
1374
  msgid "Post comments"
1375
  msgstr "Commentaar plaatsen"
1376
 
1377
+ #: ../dashboard.php:2205
1378
  msgid "Log in to the website"
1379
  msgstr "Inloggen bij de website"
1380
 
1381
+ #: ../dashboard.php:2206
1382
  msgid "Register on the website"
1383
  msgstr "Registreren bij de website"
1384
 
1385
+ #: ../dashboard.php:2207
1386
  msgid "Use XML-RPC"
1387
  msgstr "Benut XML-RPC"
1388
 
1389
+ #: ../dashboard.php:2208
1390
  msgid "Use REST API"
1391
  msgstr "Benut REST API"
1392
 
1393
+ #: ../settings.php:143
 
 
 
 
1394
  msgid "Deny it completely"
1395
  msgstr "Volledig negeren"
1396
 
1397
+ #: ../settings.php:143
1398
  msgid "Mark it as spam"
1399
  msgstr "Markeren als spam"
1400
 
1401
+ #: ../dashboard.php:1273
1402
+ msgid "in the last 24 hours"
1403
+ msgstr "in de afgelopen 24 uur"
1404
+
1405
+ #: ../dashboard.php:1622
1406
+ msgid "Main settings"
1407
+ msgstr "Hoofdinstellingen"
1408
+
1409
+ #: ../settings.php:190
1410
+ msgid "Weekly reports"
1411
+ msgstr "Weekrapporten"
1412
+
1413
+ #: ../settings.php:602
1414
+ msgid "Sunday"
1415
+ msgstr "mondag"
1416
+
1417
+ #: ../settings.php:603
1418
+ msgid "Monday"
1419
+ msgstr "maandag"
1420
+
1421
+ #: ../settings.php:604
1422
+ msgid "Tuesday"
1423
+ msgstr "dinsdag"
1424
+
1425
+ #: ../settings.php:605
1426
+ msgid "Wednesday"
1427
+ msgstr "woensdag"
1428
+
1429
+ #: ../settings.php:606
1430
+ msgid "Thursday"
1431
+ msgstr "donderdag"
1432
+
1433
+ #: ../settings.php:607
1434
+ msgid "Friday"
1435
+ msgstr "vrijdag"
1436
+
1437
+ #: ../settings.php:608
1438
+ msgid "Saturday"
1439
+ msgstr "zaterdag"
1440
+
1441
+ #: ../settings.php:661 ../settings.php:662
1442
+ msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1443
+ msgstr "Gebruik je een caching plugin, voeg dan je nieuwe login URL toe aan de niet te cachen pagina's."
1444
+
1445
+ #. translators: preposition of time
1446
+ #: ../settings.php:618
1447
+ msgctxt "preposition of time"
1448
+ msgid "at"
1449
+ msgstr "op"
1450
+
1451
+ #: ../wp-cerber.php:3026
1452
+ msgid "Weekly report"
1453
+ msgstr "Weekrapport"
1454
+
1455
+ #: ../wp-cerber.php:3029
1456
+ msgid "To change reporting settings visit"
1457
+ msgstr "Om je rapportageinstellingen aan te passen, ga naar"
1458
+
1459
+ #: ../wp-cerber.php:3055
1460
+ msgid "Your login page:"
1461
+ msgstr "Je login-pagina:"
1462
+
1463
+ #: ../wp-cerber.php:3059
1464
+ msgid "Your license is valid until"
1465
+ msgstr "Je licentie geldt tot"
1466
+
1467
+ #: ../wp-cerber.php:3170
1468
+ msgid "Activity details"
1469
+ msgstr "Details van activiteiten"
1470
+
1471
+ #: ../settings.php:634
1472
+ msgid "Click to send now"
1473
+ msgstr "Klik om nu te versturen"
1474
+
1475
+ #: ../wp-cerber.php:653
1476
+ msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1477
+ msgstr ">>> Vertaler van WP Cerber? Om een gratis Pro-licentie te krijgen, geef je contactinformatie op bij: https://wpcerber.com/contact/"
1478
+
1479
+ #: ../dashboard.php:357
1480
+ msgid "Email has been sent to"
1481
+ msgstr "E-mail is verzonden naar"
1482
+
1483
+ #: ../dashboard.php:360
1484
+ msgid "Unable to send email to"
1485
+ msgstr "Kan geen e-mail verzenden naar"
1486
+
1487
+ #: ../dashboard.php:2039
1488
+ msgid "Not permitted for one country"
1489
+ msgid_plural "Not permitted for %d countries"
1490
+ msgstr[0] "Niet toegestaan voor één land"
1491
+ msgstr[1] "Niet toegestaan voor %d landen"
1492
+
1493
+ #: ../dashboard.php:2188
1494
+ msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1495
+ msgid "Selected countries are permitted to %s, other countries are not permitted to"
1496
+ msgstr "Gekozen landen mogen %s, overige landen niet"
1497
+
1498
+ #: ../dashboard.php:2191
1499
+ msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1500
+ msgid "Selected countries are not permitted to %s, other countries are permitted to"
1501
+ msgstr "Gekozen landen mogen niet %s, overige landen wel"
1502
+
1503
+ #. Description of the plugin
1504
+ #:
1505
+ 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>."
1506
+ 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>."
1507
+
1508
+ #: ../wp-cerber.php:3158
1509
+ msgid "Weekly Report"
1510
+ msgstr "Weekrapport"
1511
+
1512
+ #: ../settings.php:80
1513
+ msgid "Use 404 template from the active theme"
1514
+ msgstr "Gebruik 404-sjabloon van het actieve thema"
1515
+
1516
+ #: ../settings.php:80
1517
+ msgid "Display simple 404 page"
1518
+ msgstr "Toon eenvoudige 404-pagina"
1519
+
1520
+ #: ../settings.php:140
1521
+ msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
1522
+ msgstr "Voer een deel van een query-tekenreeks of -pad in om een request uit te sluiten van inspectie. Eén item per regel."
1523
+
1524
+ #: ../settings.php:192
1525
+ msgid "if empty, email from notification settings will be used"
1526
+ msgstr "We gebruiken de email van de meldingsinstellingen indien leeg"
1527
+
1528
+ #: ../settings.php:193
1529
+ msgid "Enable reporting"
1530
+ msgstr "Rapporteren aanzetten"
1531
+
1532
+ #: ../wp-cerber.php:3082
1533
+ msgid "Your last sign-in was %s from %s"
1534
+ msgstr ""
1535
+
1536
+ #: ../wp-cerber.php:3184
1537
+ msgid "Attempts to log in with non-existent username"
1538
+ msgstr ""
1539
+
languages/wp-cerber-ru_RU.mo CHANGED
Binary file
languages/wp-cerber-ru_RU.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Cerber Security &amp; Antispam - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-10-30 16:54:36+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,189 +11,359 @@ msgstr ""
11
  "Language: ru\n"
12
  "Project-Id-Version: Plugins - Cerber Security &amp; Antispam - Stable (latest release)\n"
13
 
14
- #: settings.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "Specify search strings to search in a request URI to exclude the request from inspection by the engine. One string per line."
16
  msgstr "Укажите строки для поиска в запросах URI, чтобы исключить инспектирование запроса движком. Одно имя на строку. "
17
 
18
- #: settings.php:128
19
  msgid "Query whitelist"
20
  msgstr "Белый список запросов"
21
 
22
- #: settings.php:102
23
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
24
  msgstr "Укажите пространства имен REST API разрешенных при отключении REST API, одно имя на строку."
25
 
26
- #: settings.php:102
27
- msgid "REST API whitelist"
28
- msgstr "Белый список REST API"
29
-
30
  #: settings.php:101
31
- msgid "Block access to the WordPress REST API except the following namespaces"
32
- msgstr "Блокировать доступ к REST API кроме следующих пространств имен"
33
 
34
  #: settings.php:98
35
  msgid "Block access to user pages like /?author=n and user data via REST API"
36
  msgstr "Блокировать доступ к страницам пользователя /?author=n и данным о пользователях через REST API"
37
 
38
- #: dashboard.php:2092
39
  msgid "Security rules have been updated"
40
  msgstr "Правила безопасности обновлены"
41
 
42
- #: dashboard.php:1896
43
  msgid "No rule"
44
  msgstr "Нет правила"
45
 
46
- #: dashboard.php:1892
47
  msgid "Blocked for one country"
48
  msgid_plural "Blocked for %d countries"
49
  msgstr[0] "Блокировка одной страны"
50
  msgstr[1] "Блокировка %d стран"
51
  msgstr[2] "Блокировка %d стран"
52
 
53
- #: dashboard.php:1889
54
  msgid "Permitted for one country"
55
  msgid_plural "Permitted for %d countries"
56
  msgstr[0] "Разрешается для одной страны"
57
  msgstr[1] "Разрешается для %d стран"
58
  msgstr[2] "Разрешается для %d стран"
59
 
60
- #: dashboard.php:1825
61
  msgid "Countries"
62
  msgstr "Страны"
63
 
64
- #: dashboard.php:1171
65
  msgid "Spam form submissions denied"
66
  msgstr "Заблокированы отправки форм спама"
67
 
68
- #: dashboard.php:848 dashboard.php:1820
69
  msgid "Security Rules"
70
  msgstr "Правила безопасности"
71
 
72
- #: dashboard.php:848
73
  msgid "Cerber Security Rules"
74
  msgstr "Правила безопасности Цербер"
75
 
76
- #: dashboard.php:615
77
  msgid "All events"
78
  msgstr "Все события"
79
 
80
- #: dashboard.php:584
81
  msgid "Country"
82
  msgstr "Страна"
83
 
84
- #: common.php:478
85
  msgid "Blocked by country rule"
86
  msgstr "Заблокирован по ограничению для страны"
87
 
88
- #: common.php:476
89
  msgid "Malicious activity detected"
90
  msgstr "Обнаружена вредоносная активность"
91
 
92
- #: common.php:471
93
  msgid "Citadel mode is active"
94
  msgstr "Режим цитадель активен"
95
 
96
- #: common.php:470
97
  msgid "Bot detected"
98
  msgstr "Обнаружен бот"
99
 
100
- #: common.php:466
101
  msgid "XML-RPC request denied"
102
  msgstr "Запрос XML-RPC заблокирован"
103
 
104
- #: common.php:465
105
  msgid "Request to REST API denied"
106
  msgstr "Запрос к REST API заблокирован"
107
 
108
- #: common.php:440
109
  msgid "Comment denied"
110
  msgstr "Комментарий заблокирован"
111
 
112
- #: common.php:439
113
  msgid "Form submission denied"
114
  msgstr "Отправка формы заблокирована"
115
 
 
 
 
 
116
  #. Plugin Name of the plugin/theme
117
  msgid "WP Cerber Security & Antispam"
118
  msgstr "WP Cerber Security & Antispam"
119
 
120
- #: settings.php:127
121
  msgid "Disable bot detection engine for logged in users"
122
  msgstr "Отключить определение ботов для авторизованных пользователей"
123
 
124
- #: settings.php:127
125
  msgid "Logged in users"
126
  msgstr "Авторизованные пользователи"
127
 
128
- #: settings.php:126
129
  msgid "Use less restrictive policies (allow AJAX)"
130
  msgstr "Использовать менее жесткую политику (разрешить AJAX)"
131
 
132
- #: settings.php:126
133
  msgid "Safe mode"
134
  msgstr "Безопасный режим"
135
 
136
- #: settings.php:125
137
  msgid "Adjust antispam engine"
138
  msgstr "Настроить антиспам-движок"
139
 
140
- #: settings.php:123
141
  msgid "Protect all forms on the website with bot detection engine"
142
  msgstr "Защитить все формы на сайте через определение ботов"
143
 
144
- #: settings.php:123
145
  msgid "Other forms"
146
  msgstr "Другие формы"
147
 
148
- #: common.php:438
149
  msgid "Spam form submission denied"
150
  msgstr "Отправка формы со спамом заблокирована"
151
 
152
- #: wp-cerber.php:1190
153
  msgid "Sorry, human verification failed."
154
  msgstr "Извините, проверка на человека не удалась."
155
 
156
- #: settings.php:132
157
  msgid "Move spam comments to trash after"
158
  msgstr "Удалить спам комментарии в корзину после"
159
 
160
- #: settings.php:132
161
  msgid "Trash spam comments"
162
  msgstr "Удалить спам комментарии в корзину"
163
 
164
- #: settings.php:131
165
  msgid "If a spam comment detected"
166
  msgstr "Если обнаружен спам комментарий"
167
 
168
- #: settings.php:130
169
  msgid "Comment processing"
170
  msgstr "Обработка комментария"
171
 
172
- #: settings.php:122
173
  msgid "Protect registration form with bot detection engine"
174
  msgstr "Защита регистрации через определение ботов"
175
 
176
- #: settings.php:121
177
  msgid "Protect comment form with bot detection engine"
178
  msgstr "Защита комментариев через определение ботов"
179
 
180
- #: settings.php:120
181
  msgid "Cerber antispam engine"
182
  msgstr "Движок Цербер антиспам"
183
 
184
- #: dashboard.php:851 settings.php:149 wp-cerber.php:3297
185
  msgid "Antispam"
186
  msgstr "Аниспам"
187
 
188
- #: dashboard.php:851
189
  msgid "Cerber antispam settings"
190
  msgstr "Настройка Цербер антиспам"
191
 
192
- #: common.php:493
193
  msgid "Bot activity is detected"
194
  msgstr "Обнаружена активность ботов"
195
 
196
- #: cerber-tools.php:295
197
  msgid "Antispam and bot detection settings"
198
  msgstr "Антиспам и настройки определения ботов"
199
 
@@ -205,55 +375,55 @@ msgstr "Диагностика"
205
  msgid "Export & Import"
206
  msgstr "Экспорт и Импорт"
207
 
208
- #: wp-cerber.php:974 wp-cerber.php:990 wp-cerber.php:997
209
  msgid "You are not allowed to register."
210
  msgstr "Вам не разрешено зарегистрироваться."
211
 
212
- #: dashboard.php:1199
213
  msgid "All suspicious activity"
214
  msgstr "Вся подозрительная активность"
215
 
216
- #: dashboard.php:1173
217
  msgid "Lockouts occurred"
218
  msgstr "Блокировок произошло"
219
 
220
- #: dashboard.php:1172
221
  msgid "Malicious IP addresses detected"
222
  msgstr "Найдены вредоносные IP адреса"
223
 
224
- #: dashboard.php:1170
225
  msgid "Spam comments denied"
226
- msgstr "Спам коммнтарии отклонены"
227
 
228
- #: dashboard.php:1169
229
  msgid "Malicious activities mitigated"
230
  msgstr "Вредоносная активность снижена"
231
 
232
- #: dashboard.php:408 dashboard.php:586
233
  msgid "Event"
234
- msgstr "Мероприятие"
235
 
236
- #: common.php:463
237
  msgid "Attempt to register denied"
238
  msgstr "Попытка регистрации отклонена"
239
 
240
- #: common.php:462
241
  msgid "Attempt to log in denied"
242
  msgstr "Попытка входа отклонена"
243
 
244
- #: common.php:437
245
  msgid "Spam comment denied"
246
  msgstr "Спам коммнтарий отклонен"
247
 
248
- #: settings.php:195
249
  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."
250
  msgstr "В режиме Цитадель никто не может войти кроме как с IP в белом списке. Активные сессии пользователей не будут затронуты."
251
 
252
- #: settings.php:152
253
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
254
  msgstr "Блокировать IP адрес на %s минут после %s неудачных попыток в течении %s минут"
255
 
256
- #: settings.php:152
257
  msgid "Limit attempts"
258
  msgstr "Ограничение попыток"
259
 
@@ -261,59 +431,59 @@ msgstr "Ограничение попыток"
261
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
262
  msgstr "Применить правила входа для IP адресов в белом списке"
263
 
264
- #: common.php:492
265
  msgid "Limit on failed reCAPTCHA verifications is reached"
266
  msgstr "Достигнут предел проверки reCAPTCHA"
267
 
268
- #: common.php:452
269
  msgid "Password reset requested"
270
  msgstr "Запрошен сброс пароля"
271
 
272
- #: settings.php:138
273
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
274
  msgstr "(не включайте, если у вас нет или вы не вводили ключ сайта и секретный ключ для невидимой версии)"
275
 
276
- #: settings.php:150
277
  msgid "Disable reCAPTCHA for logged in users"
278
  msgstr "Отключить reCAPTCHA для авторизованных пользователей"
279
 
280
- #: settings.php:149
281
  msgid "Enable reCAPTCHA for WordPress comment form"
282
  msgstr "Включить reCAPTCHA в форме комментариев WordPress"
283
 
284
- #: settings.php:121
285
  msgid "Comment form"
286
  msgstr "Форма комментариев"
287
 
288
- #: settings.php:138
289
  msgid "Enable invisible reCAPTCHA"
290
  msgstr "Включить невидимую reCAPTCHA"
291
 
292
- #: settings.php:138
293
  msgid "Invisible reCAPTCHA"
294
  msgstr "невидимая reCAPTCHA"
295
 
296
- #: common.php:545
297
  msgid "%s ago"
298
  msgstr "%s назад"
299
 
300
- #: settings.php:173
301
  msgid "Not available"
302
  msgstr "Недоступно"
303
 
304
- #: settings.php:171
305
  msgid "No devices found"
306
  msgstr "Устройства не найдены"
307
 
308
- #: settings.php:170
309
  msgid "All connected devices"
310
  msgstr "Все подключенные устройства"
311
 
312
- #: settings.php:160
313
  msgid "Use comma to specify multiple values"
314
  msgstr "Используйте запятую для разделения множественных значений"
315
 
316
- #: settings.php:158
317
  msgid "Email notifications"
318
  msgstr "Уведомления по эл.почте"
319
 
@@ -321,75 +491,75 @@ msgstr "Уведомления по эл.почте"
321
  msgid "Display 404 page"
322
  msgstr "Показывать страницу 404"
323
 
324
- #: dashboard.php:1023 settings.php:163
325
  msgid "Push notifications"
326
  msgstr "Push уведомления"
327
 
328
- #: dashboard.php:624
329
- msgid "Search for IP or username"
330
- msgstr "Поиск IP или имени пользователя"
 
 
 
 
331
 
332
- #: cerber-tools.php:225 dashboard.php:1450
 
 
 
 
333
  msgid "Unsubscribe"
334
  msgstr "Отменить подписку"
335
 
336
- #: dashboard.php:408
337
- msgid "User login"
338
- msgstr "Имя пользователя"
 
 
 
 
339
 
340
- #: dashboard.php:408
341
  msgid "IP address"
342
  msgstr "IP адрес"
343
 
344
- #: dashboard.php:605
345
- msgid "Export"
346
- msgstr "Экспорт"
347
-
348
- #: dashboard.php:408
349
  msgid "User ID"
350
  msgstr "ID пользователя"
351
 
352
- #: dashboard.php:845
353
- msgid "Cerber Dashboard"
354
- msgstr "Консоль Cerber"
355
 
356
- #: dashboard.php:624
 
 
 
 
357
  msgid "Filter"
358
  msgstr "Фильтр"
359
 
360
- #: dashboard.php:852
361
  msgid "Cerber tools"
362
  msgstr "Инструменты Cerber"
363
 
364
- #: dashboard.php:1449
365
- msgid "Subscribe"
366
- msgstr "Подписаться"
367
-
368
- #: dashboard.php:1478
369
- msgid "You've subscribed"
370
- msgstr "Вы подписались"
371
-
372
- #: dashboard.php:1481
373
- msgid "You've unsubscribed"
374
- msgstr "Подписка отменена"
375
-
376
- #: wp-cerber.php:2877 wp-cerber.php:2878
377
- msgid "A new activity has been recorded"
378
- msgstr "Отмечена новая активность"
379
-
380
  #: settings.php:90
381
  msgid "if empty, the default format %s will be used"
382
  msgstr "Если пусто, будет использован формат по умолчанию %s"
383
 
384
- #: wp-cerber.php:3153
 
 
 
 
385
  msgid "User"
386
  msgstr "Пользователь"
387
 
388
- #: wp-cerber.php:3161
389
  msgid "Search string"
390
  msgstr "Строка поиска"
391
 
392
- #: wp-cerber.php:3182
393
  msgid "To unsubscribe click here"
394
  msgstr "Для отмены подписки нажмите здесь"
395
 
@@ -406,38 +576,38 @@ msgid "Gregory"
406
  msgstr "Gregory"
407
 
408
  #. Description of the plugin/theme
409
- 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=\"http://wpcerber.com\">wpcerber.com</a>."
410
- msgstr "Защищает сайт от атак перебора, ботов, хакеров. Антиспам защита с движком Cerber антиспам и reCAPTCHA. Всесторонний контроль активности пользователей. Ограничение входа по IP адресам. Ограничение попыток входа. Узнайте больше на сайте <a href=\"http://wpcerber.com\">wpcerber.com</a>."
411
 
412
- #: dashboard.php:845 dashboard.php:1027 dashboard.php:1536 settings.php:226
413
  msgid "Dashboard"
414
  msgstr "Консоль"
415
 
416
- #: settings.php:147
417
  msgid "Enable reCAPTCHA for WooCommerce login form"
418
  msgstr "Включить reCAPTCHA для формы входа WooCommerce"
419
 
420
- #: settings.php:146
421
  msgid "Enable reCAPTCHA for WordPress login form"
422
  msgstr "Включить reCAPTCHA для формы входа WordPress"
423
 
424
- #: settings.php:144
425
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
426
  msgstr "Включить reCAPTCHA для формы восстановления пароля WooCommerce"
427
 
428
- #: settings.php:143
429
  msgid "Enable reCAPTCHA for WordPress lost password form"
430
  msgstr "Включить reCAPTCHA для формы восстановления пароля WordPress"
431
 
432
- #: settings.php:141
433
  msgid "Enable reCAPTCHA for WooCommerce registration form"
434
  msgstr "Включить reCAPTCHA для формы регистрации WooCommerce"
435
 
436
- #: settings.php:140
437
  msgid "Enable reCAPTCHA for WordPress registration form"
438
  msgstr "Включить reCAPTCHA для формы регистрации WordPress"
439
 
440
- #: settings.php:122 settings.php:140
441
  msgid "Registration form"
442
  msgstr "Форма регистрации"
443
 
@@ -453,324 +623,320 @@ msgstr "Посылать вредоносные IP адреса в Cerber Lab"
453
  msgid "Cerber Lab connection"
454
  msgstr "Подключение Cerber Lab"
455
 
456
- #: dashboard.php:1220
457
  msgid "Recently locked out IP addresses"
458
  msgstr "Недавно заблокированые IP адреса"
459
 
460
- #: dashboard.php:1190 dashboard.php:1219
461
  msgid "View all"
462
  msgstr "Просмотреть все"
463
 
464
- #: dashboard.php:843 settings.php:221
465
  msgid "WP Cerber Security"
466
  msgstr "WP Cerber Security"
467
 
468
- #: dashboard.php:808
469
  msgid "Add network to the Black List"
470
  msgstr "Добавить сеть в черный список"
471
 
472
- #: dashboard.php:794
473
  msgid "Network:"
474
  msgstr "Сеть:"
475
 
476
- #: dashboard.php:155 dashboard.php:163
477
  msgid "Incorrect IP address or IP range"
478
  msgstr "Неверный IP адрес или диапазон адресов"
479
 
480
- #: common.php:456
481
  msgid "Request to the Google reCAPTCHA service failed"
482
  msgstr "Запрос к сервису Google reCAPTCHA не удался"
483
 
484
- #: cerber-lab.php:641
485
  msgid "NO, maybe later"
486
  msgstr "НЕТ, возможно позже"
487
 
488
- #: cerber-lab.php:640
489
  msgid "OK, nail them all"
490
  msgstr "ОК, прибьем их всех"
491
 
492
- #: cerber-lab.php:639
493
  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."
494
  msgstr "Разрешить WP Cerber посылать заблокированные IP адреса в Cerber Lab. Это помогает команде плагина разрабатывать новые алгоритмы для WP Cerber, которые будут защищать WordPress против новых угроз и ботнетов появляюшихся каждый день. Вы всегда можете отключить отсылку в настройках плагина, в любой момент."
495
 
496
- #: cerber-lab.php:638
497
  msgid "Want to make WP Cerber even more powerful?"
498
  msgstr "Хотите сделать WP Cerber еще мощнее ?"
499
 
500
- #. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security & Antispam 5.5) #-#-#-#-#
501
  #. Plugin URI of the plugin/theme
502
- #. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security & Antispam 5.5) #-#-#-#-#
503
  #. Author URI of the plugin/theme
504
- msgid "http://wpcerber.com"
505
- msgstr "http://wpcerber.com"
506
 
507
- #: wp-cerber.php:3300
508
  msgid "Import settings"
509
  msgstr "Импорт настроек"
510
 
511
- #: wp-cerber.php:3288
512
  msgid "Your IP address is added to the"
513
  msgstr "Ваш IP адрес добавлен к"
514
 
515
- #: wp-cerber.php:3271
516
  msgid "Can't activate WP Cerber due to a database error."
517
  msgstr "Невозможно активировать плагин WP Cerber из-за ошибки в базе данных."
518
 
519
- #: wp-cerber.php:3266
520
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
521
  msgstr "WP Cerber требует WordPress версии %s или выше. У вас версия"
522
 
523
- #: wp-cerber.php:3262
524
  msgid "The WP Cerber requires PHP %s or higher. You are running"
525
  msgstr "WP Cerber требует PHP версии %s или выше. У вас версия"
526
 
527
- #: wp-cerber.php:2893
528
  msgid "This message was sent by"
529
  msgstr "Это сообщение было отправлено"
530
 
531
- #: wp-cerber.php:2873
532
  msgid "New Custom login URL"
533
  msgstr "Новый URL для входа на сайт"
534
 
535
- #: wp-cerber.php:2868
536
- msgid "Change notification settings"
537
- msgstr "Изменить настройки уведомлений"
538
-
539
- #: wp-cerber.php:2867 wp-cerber.php:3287
540
  msgid "WP Cerber is now active and has started protecting your site"
541
  msgstr "WP Cerber активен и начал защищать ваш сайт"
542
 
543
- #: wp-cerber.php:2866
544
  msgid "The WP Cerber security plugin is now active"
545
  msgstr "WP Cerber плагин безопасности активен"
546
 
547
- #: wp-cerber.php:2862
548
  msgid "From country"
549
  msgstr "Из страны"
550
 
551
- #: wp-cerber.php:2859
552
  msgid "From IP address"
553
  msgstr "С IP адреса"
554
 
555
- #: wp-cerber.php:2858
556
  msgid "By user"
557
  msgstr "По пользователю"
558
 
559
- #: wp-cerber.php:2852
560
  msgid "Not logged in"
561
  msgstr "Нет авторизации"
562
 
563
- #: wp-cerber.php:2849 wp-cerber.php:2850
564
  msgid "The WP Cerber security plugin has been deactivated"
565
  msgstr "WP Cerber плагин деактивирован"
566
 
567
- #: wp-cerber.php:2846 wp-cerber.php:2857
568
  msgid "Website"
569
  msgstr "Сайт"
570
 
571
- #: wp-cerber.php:2844
572
  msgid "Hi!"
573
  msgstr "Привет!"
574
 
575
- #: wp-cerber.php:2843 wp-cerber.php:2845
576
  msgid "A new version of WP Cerber is available to install"
577
  msgstr "Доступна новая версия WP Cerber!"
578
 
579
- #: wp-cerber.php:2840
580
  msgid "View lockouts in dashboard"
581
  msgstr "Просмотреть список заблокированных IP"
582
 
583
- #: wp-cerber.php:2839
584
  msgid "View activity for this IP"
585
  msgstr "Посмотреть активность для этого IP"
586
 
587
- #: wp-cerber.php:2837
588
  msgid "Last lockout was added: %s for IP %s"
589
  msgstr "Последняя блокировка была добавлена %s для IP %s"
590
 
591
- #: wp-cerber.php:2836
592
  msgid "Number of active lockouts"
593
  msgstr "Число активных блокировок на данный момент"
594
 
595
- #: wp-cerber.php:2834
596
  msgid "Number of lockouts is increasing"
597
  msgstr "Число блокировок увеличилось"
598
 
599
- #: wp-cerber.php:2831
600
  msgid "unspecified"
601
  msgstr "неуказано"
602
 
603
- #: wp-cerber.php:2806 wp-cerber.php:3181
604
  msgid "View activity in dashboard"
605
  msgstr "Просмотреть журнал активности"
606
 
607
- #: wp-cerber.php:2805
608
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
609
  msgstr "Последняя неудачная попытка была в %s с IP адреса %s с логином %s."
610
 
611
- #: wp-cerber.php:2804
612
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
613
  msgstr "Режим Цитадель активирован после %d неудачных попыток за %d минут."
614
 
615
- #: wp-cerber.php:2802
616
  msgid "Citadel mode is activated"
617
  msgstr "Активирован режим Цитадель"
618
 
619
- #: wp-cerber.php:2784
620
  msgid "WP Cerber notify"
621
  msgstr "Уведомление WP Cerber"
622
 
623
- #: common.php:488
624
  msgid "Limit on login attempts is reached"
625
  msgstr "Количество попыток исчерпано"
626
 
627
- #: common.php:489
628
  msgid "Attempt to access"
629
  msgstr "Попытка доступа к"
630
 
631
- #: wp-cerber.php:984
632
  msgid "Username is not allowed. Please choose another one."
633
  msgstr "Имя пользователя недопустимо. Выберите другое."
634
 
635
- #: wp-cerber.php:769
636
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
637
  msgstr "<strong>ОШИБКА</strong>: Пароль введенный для пользователя %s is некорректен."
638
 
639
- #: wp-cerber.php:591
640
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
641
  msgstr "Антибот проверка неудачна. Пожалуйста тыкните в квадратную отметку блока reCAPTCHA ниже"
642
 
643
- #: common.php:131 common.php:184 common.php:188 settings.php:516
644
- #: wp-cerber.php:562 wp-cerber.php:574 wp-cerber.php:581 wp-cerber.php:758
645
- #: wp-cerber.php:973 wp-cerber.php:978 wp-cerber.php:983 wp-cerber.php:989
646
- #: wp-cerber.php:996 wp-cerber.php:1053 wp-cerber.php:1190
647
  msgid "ERROR:"
648
  msgstr "ОШИБКА:"
649
 
650
- #: wp-cerber.php:242
651
  msgid "You have only one attempt remaining."
652
  msgid_plural "You have %d attempts remaining."
653
  msgstr[0] "У вас есть только одна попытка для входа"
654
  msgstr[1] "У вас осталось %d попытки для входа."
655
  msgstr[2] "У вас осталось %d попыток для входа."
656
 
657
- #: wp-cerber.php:223
658
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
659
  msgstr "Вход невозможен. Слишком много ошибочных попыток. Попробуйте войти через %d минут."
660
 
661
- #: wp-cerber.php:217
662
  msgid "You are not allowed to log in. Ask your administrator for assistance."
663
  msgstr "Вход на сайт невозможен. Обратитесь к администратору сайта."
664
 
665
- #: common.php:487 whois.php:215 whois.php:246
666
  msgid "Unknown"
667
  msgstr "Неизвестен"
668
 
669
- #: settings.php:543
670
  msgid "<strong>ERROR</strong>: please enter a valid email address."
671
  msgstr "<strong>ОШИБКА</strong>: Введите действительный адрес эл.почты."
672
 
673
- #: settings.php:469
674
  msgid "Attention! You have changed the login URL! The new login URL is"
675
  msgstr "Внимание! Вы изменили URL страницы авторизации. Новый адрес"
676
 
677
- #: settings.php:379
678
  msgid "Enable after %s failed login attempts in last %s minutes"
679
  msgstr "Активировать после %s неудачных авторизаций за последние %s минут"
680
 
681
- #: settings.php:374
682
  msgid "Notify admin if the number of active lockouts above"
683
  msgstr "Уведомить администратора, если число заблокированных IP более"
684
 
685
- #: settings.php:367
686
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
687
  msgstr "Увеличить длительность блокировки до %s часов после %s блокировок в течение последних %s часов"
688
 
689
- #: settings.php:362
690
  msgid "%s allowed retries in %s minutes"
691
  msgstr "%s попыток разрешено в течении %s минут"
692
 
693
- #: settings.php:246
694
  msgid "Help"
695
  msgstr "Помощь"
696
 
697
- #: cerber-tools.php:43 dashboard.php:852
698
  msgid "Tools"
699
  msgstr "Инструменты"
700
 
701
- #: settings.php:241
702
  msgid "Users"
703
  msgstr "Пользователи"
704
 
705
- #: settings.php:239 wp-cerber.php:3298
706
  msgid "Hardening"
707
  msgstr "Панцирь"
708
 
709
- #: settings.php:234 wp-cerber.php:3295
710
  msgid "Main Settings"
711
  msgstr "Главные настройки"
712
 
713
- #: cerber-lab.php:642 settings.php:202
714
  msgid "Know more"
715
  msgstr "Узнать больше"
716
 
717
- #: settings.php:201
718
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
719
  msgstr "Перед использованием reCAPTCHA вам нужно получить ключ сайта и секретный ключ на сайте Google"
720
 
721
- #: settings.php:198
722
  msgid "These settings do not affect hosts from the "
723
  msgstr "Эти настройки не применяются к адресам из"
724
 
725
- #: settings.php:191
726
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
727
  msgstr "Будте внимательны при установке этих параметров. Если вы забудете URL страницы авторизации вы не сможете войти в панель управления."
728
 
729
- #: settings.php:188
730
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
731
  msgstr "Для использования этой настройки необходимо активировать Постоянные ссылки в настройках сайта."
732
 
733
- #: settings.php:184
734
  msgid "Make your protection smarter!"
735
  msgstr "Сделайте защиту от злоумышленников еще умнее"
736
 
737
- #: settings.php:146
738
  msgid "Login form"
739
  msgstr "Форма входа"
740
 
741
- #: settings.php:143
742
  msgid "Lost password form"
743
  msgstr "Форма восстановления пароля"
744
 
745
- #: settings.php:137
746
  msgid "Secret key"
747
  msgstr "Секретный ключ"
748
 
749
- #: settings.php:136
750
  msgid "Site key"
751
  msgstr "Ключ сайта"
752
 
753
- #: settings.php:135
754
  msgid "reCAPTCHA settings"
755
  msgstr "Настройки reCAPTCHA"
756
 
757
- #: settings.php:113
758
  msgid "in minutes (leave empty to use default WP value)"
759
  msgstr "В минутах (оставьте пустым для значения WP по умолчанию)"
760
 
761
- #: settings.php:113
762
  msgid "User session expire"
763
  msgstr "Длительность сессии пользователя"
764
 
765
- #: settings.php:112
766
  msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
767
  msgstr "Имена пользователей из этого списка не разрешены для входа или регистрации. Любой IP адрес пытающийся использовать эти имена будет автоматически заблокирован. Испольуйте запятую как разделитель."
768
 
769
- #: settings.php:112
770
  msgid "Prohibited usernames"
771
  msgstr "Запрещеные имена пользователей"
772
 
773
- #: settings.php:111
774
  msgid "User related settings"
775
  msgstr "Настройки пользователей"
776
 
@@ -818,7 +984,7 @@ msgstr "Получить дополнительную информацию об
818
  msgid "Drill down IP"
819
  msgstr "Изучать IP"
820
 
821
- #: settings.php:83 settings.php:132
822
  msgid "days"
823
  msgstr "дней"
824
 
@@ -826,25 +992,25 @@ msgstr "дней"
826
  msgid "Keep records for"
827
  msgstr "Хранить записи не более"
828
 
829
- #: settings.php:161
830
  msgid "notification letters allowed per hour (0 means unlimited)"
831
  msgstr "разрешенное число писем с уведомлениями в час (0 - без ограничений)"
832
 
833
- #: settings.php:161
834
  msgid "Notification limit"
835
  msgstr "Ограничение уведомлений"
836
 
837
- #: settings.php:160
838
  msgid "if empty, the admin email %s will be used"
839
  msgstr "Если пусто, то будет использован адрес администратора %s"
840
 
841
- #: settings.php:160
842
  msgid "Email Address"
843
  msgstr "Адрес email"
844
 
845
- #: settings.php:80 settings.php:376
846
  msgid "Click to send test"
847
- msgstr "Кликните, чтобы протестировать отправку"
848
 
849
  #: settings.php:80
850
  msgid "Send notification to admin email"
@@ -914,7 +1080,7 @@ msgstr "Блокировка подсети"
914
  msgid "Proactive security rules"
915
  msgstr "Проактивные правила безопасности"
916
 
917
- #: dashboard.php:1056 settings.php:63
918
  msgid "My site is behind a reverse proxy"
919
  msgstr "Мой сайт подключен к сети через прокси-сервер"
920
 
@@ -922,7 +1088,7 @@ msgstr "Мой сайт подключен к сети через прокси-
922
  msgid "Site connection"
923
  msgstr "Подключение к сети"
924
 
925
- #: settings.php:62 settings.php:80 settings.php:244 wp-cerber.php:3299
926
  msgid "Notifications"
927
  msgstr "Уведомления"
928
 
@@ -946,392 +1112,384 @@ msgstr "Попытки"
946
  msgid "Limit login attempts"
947
  msgstr "Ограничение числа попыток авторизации"
948
 
949
- #: dashboard.php:790
950
  msgid "Abuse email:"
951
  msgstr "Адрес email для жалоб:"
952
 
953
- #: dashboard.php:1410
954
  msgid "Update to version %s of WP Cerber"
955
  msgstr "Обновить WP Cerber до версии %s"
956
 
957
- #: dashboard.php:1404
958
  msgid "New version is available"
959
  msgstr "Доступна новая версия"
960
 
961
- #: dashboard.php:1329
962
  msgid "View Activity"
963
  msgstr "Что происходит?"
964
 
965
- #: dashboard.php:1328
966
  msgid "Deactivate"
967
  msgstr "Деактивировать"
968
 
969
- #: dashboard.php:1327
970
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
971
  msgstr "Внимание! Режим Цитадель активен. Авторизация на сайте заблокирована."
972
 
973
- #: dashboard.php:1273
974
- msgid "Donate"
975
- msgstr "Поддержите разработку"
976
-
977
- #: dashboard.php:1253
978
  msgid "doesn't affect Custom login URL and Access Lists"
979
  msgstr "не затронет настройки URL страницы авторизации и списки доступа"
980
 
981
- #: dashboard.php:1247
982
  msgid "Are you sure?"
983
  msgstr "Вы уверены?"
984
 
985
- #: dashboard.php:1245
986
  msgid "Load default settings"
987
  msgstr "Загрузить настройки"
988
 
989
- #: dashboard.php:1243
990
  msgid "You can easily load default recommended settings using button below"
991
  msgstr "Вы можете загрузить рекомендованные настройки с помощью всего одной кнопки"
992
 
993
- #: dashboard.php:1242
994
  msgid "Confused about some settings?"
995
  msgstr "Сомневаетесь какие настройки оптимальны?"
996
 
997
- #: dashboard.php:1029 settings.php:232
998
  msgid "Lockouts"
999
  msgstr "Блокировки"
1000
 
1001
- #: dashboard.php:1021 settings.php:76
1002
  msgid "Citadel mode"
1003
  msgstr "Режим Цитадель"
1004
 
1005
- #: dashboard.php:1019 dashboard.php:1020 dashboard.php:1516
1006
  msgid "entry"
1007
  msgid_plural "entries"
1008
  msgstr[0] "элемент"
1009
  msgstr[1] "элемента"
1010
  msgstr[2] "элементов"
1011
 
1012
- #: dashboard.php:1018
1013
  msgid "Last lockout"
1014
  msgstr "Последняя блокировка"
1015
 
1016
- #: dashboard.php:1017
1017
  msgid "Lockouts at the moment"
1018
  msgstr "Сейчас заблокировано"
1019
 
1020
- #: dashboard.php:1015
1021
  msgid "lockouts"
1022
  msgstr "блокировок"
1023
 
1024
- #: dashboard.php:1014 dashboard.php:1015
1025
  msgid "view all"
1026
  msgstr "просмотреть все"
1027
 
1028
- #: dashboard.php:1014 dashboard.php:1015
1029
  msgid "in 24 hours"
1030
  msgstr "за 24 часа"
1031
 
1032
- #: dashboard.php:1014
1033
  msgid "failed attempts"
1034
  msgstr "ошибок авторизации"
1035
 
1036
- #: dashboard.php:1009
1037
  msgid "disabled"
1038
  msgstr "отключен"
1039
 
1040
- #: dashboard.php:1008
1041
  msgid "not active"
1042
  msgstr "неактивен"
1043
 
1044
- #: dashboard.php:1006
1045
  msgid "deactivate"
1046
  msgstr "деактивировать"
1047
 
1048
- #: dashboard.php:1006
1049
  msgid "active"
1050
  msgstr "активен"
1051
 
1052
- #: dashboard.php:971
1053
  msgid "Cerber Quick View"
1054
  msgstr "Сводка от Cerber"
1055
 
1056
- #: cerber-tools.php:177
1057
  msgid "Error while parsing file"
1058
  msgstr "Возникла ошибка при обработке файла"
1059
 
1060
- #: cerber-tools.php:173
1061
  msgid "Settings has imported successfully from"
1062
  msgstr "Все настройки успешно загружены"
1063
 
1064
- #: cerber-tools.php:170
1065
  msgid "Error while updating"
1066
  msgstr "Возникла ошибка при обновлении"
1067
 
1068
- #: cerber-tools.php:137
1069
  msgid "No file was uploaded or file is corrupted"
1070
  msgstr "Файл не был загружен или имеет неверный формат"
1071
 
1072
- #: cerber-tools.php:97
1073
  msgid "Upload file"
1074
  msgstr "Загрузить файл"
1075
 
1076
- #: cerber-tools.php:95
1077
  msgid "What do you want to import?"
1078
  msgstr "Что вы хотите импортировать?"
1079
 
1080
- #: cerber-tools.php:92
1081
  msgid "Maximum upload file size: %s."
1082
  msgstr "Максимальный размер загружаемого файла: %s."
1083
 
1084
- #: cerber-tools.php:92
1085
  msgid "Select file to import."
1086
  msgstr "Выберите файл для загрузки."
1087
 
1088
- #: cerber-tools.php:91
1089
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
1090
  msgstr "Когда вы нажмете на кнопку, все настройки из файла будут загружены на сайт"
1091
 
1092
- #: cerber-tools.php:90
1093
  msgid "Import settings from the file"
1094
  msgstr "Импорт настроек из файла"
1095
 
1096
- #: cerber-tools.php:88
1097
  msgid "Download file"
1098
  msgstr "Скачать файл"
1099
 
1100
- #: cerber-tools.php:87 cerber-tools.php:96 cerber-tools.php:170
1101
- #: dashboard.php:1030 dashboard.php:1537 settings.php:237 wp-cerber.php:3296
1102
  msgid "Access Lists"
1103
  msgstr "Списки доступа"
1104
 
1105
- #: cerber-tools.php:86 cerber-tools.php:95
1106
  msgid "Settings"
1107
  msgstr "Настройки"
1108
 
1109
- #: cerber-tools.php:85
1110
  msgid "What do you want to export?"
1111
  msgstr "Что вы хотите экспортировать"
1112
 
1113
- #: cerber-tools.php:84
1114
  msgid "When you click the button below you will get a configuration file, which you can upload on another site."
1115
  msgstr "Когда вы нажмете на кнопку, то получите файл с настройками, который можно использовать на других сайтах."
1116
 
1117
- #: cerber-tools.php:83
1118
  msgid "Export settings to the file"
1119
  msgstr "Экспорт настроек в файл"
1120
 
1121
- #: dashboard.php:947 dashboard.php:1002
1122
  msgid "Never"
1123
  msgstr "Никогда"
1124
 
1125
- #: common.php:426
1126
  msgid "User created"
1127
  msgstr "Пользователь создан"
1128
 
1129
- #: common.php:427 dashboard.php:1198
1130
  msgid "User registered"
1131
  msgstr "Пользователь зарегистрирован"
1132
 
1133
- #: common.php:428
1134
  msgid "Logged in"
1135
  msgstr "Вход"
1136
 
1137
- #: common.php:429
1138
  msgid "Logged out"
1139
  msgstr "Выход"
1140
 
1141
- #: common.php:430
1142
  msgid "Login failed"
1143
  msgstr "Ошибка авторизации"
1144
 
1145
- #: common.php:433
1146
  msgid "IP blocked"
1147
  msgstr "IP заблокирован"
1148
 
1149
- #: common.php:434
1150
  msgid "Subnet blocked"
1151
  msgstr "Подсеть заблокирована"
1152
 
1153
- #: common.php:436
1154
  msgid "Citadel activated!"
1155
  msgstr "Режим Цитадель активирован!"
1156
 
1157
- #: common.php:472 dashboard.php:545 dashboard.php:767
1158
  msgid "Locked out"
1159
  msgstr "Заблокировано"
1160
 
1161
- #: common.php:451
1162
  msgid "Password changed"
1163
  msgstr "Пароль изменен"
1164
 
1165
- #: common.php:473
1166
  msgid "IP blacklisted"
1167
  msgstr "IP в черном списке"
1168
 
1169
- #: common.php:454
1170
  msgid "reCAPTCHA verification failed"
1171
  msgstr "проверка reCAPTCHA неудачна"
1172
 
1173
- #: common.php:455
1174
  msgid "reCAPTCHA settings are incorrect"
1175
  msgstr "настройки reCAPTCHA неверны"
1176
 
1177
- #: common.php:458
1178
  msgid "Attempt to access prohibited URL"
1179
  msgstr "Попытка доступа к запрещенному URL"
1180
 
1181
- #: common.php:459 common.php:490
1182
  msgid "Attempt to log in with non-existent username"
1183
  msgstr "Попытка войти с несуществующим именем пользователя"
1184
 
1185
- #: common.php:460 common.php:491
1186
  msgid "Attempt to log in with prohibited username"
1187
  msgstr "Попытка входа с запрещенным именем"
1188
 
1189
- #: dashboard.php:74 dashboard.php:128
1190
  msgid "Remove"
1191
  msgstr "Удалить"
1192
 
1193
- #: dashboard.php:77 dashboard.php:582 wp-cerber.php:3149
1194
  msgid "IP"
1195
  msgstr "IP"
1196
 
1197
- #: dashboard.php:77 dashboard.php:583
1198
  msgid "Hostname"
1199
  msgstr "Имя узла"
1200
 
1201
- #: dashboard.php:77
1202
  msgid "Expires"
1203
  msgstr "Истекает"
1204
 
1205
- #: dashboard.php:77 wp-cerber.php:2838
1206
  msgid "Reason"
1207
  msgstr "Причина"
1208
 
1209
- #: dashboard.php:77
1210
  msgid "Action"
1211
  msgstr "Действие"
1212
 
1213
- #: dashboard.php:83
1214
  msgid "Showing last %d records from %d"
1215
  msgstr "Отображены последние %d строк из %d"
1216
 
1217
- #: dashboard.php:85
1218
  msgid "Hint"
1219
  msgstr "Подсказка"
1220
 
1221
- #: dashboard.php:85
1222
  msgid "To view activity, click on the IP"
1223
  msgstr "Чтобы увидеть активность, нажмите на адрес IP"
1224
 
1225
- #: dashboard.php:89
1226
  msgid "No lockouts at the moment. The sky is clear."
1227
  msgstr "Блокировок нет. Все в порядке."
1228
 
1229
- #: dashboard.php:102 dashboard.php:540 dashboard.php:762 dashboard.php:1019
1230
- #: settings.php:61 settings.php:198 wp-cerber.php:3288
1231
  msgid "White IP Access List"
1232
  msgstr "Белый список доступа по IP"
1233
 
1234
- #: dashboard.php:102
1235
  msgid "These IPs will never be locked out"
1236
  msgstr "Эти адреса не будут заблокированы ни при каких условиях"
1237
 
1238
- #: dashboard.php:104 dashboard.php:541 dashboard.php:764 dashboard.php:1020
1239
  msgid "Black IP Access List"
1240
  msgstr "Черный список доступа по IP"
1241
 
1242
- #: dashboard.php:104
1243
  msgid "Nobody can log in or register from these IPs"
1244
  msgstr "Никто не сможет войти или зарегистрироваться с этих IP"
1245
 
1246
- #: dashboard.php:111
1247
  msgid "Your IP"
1248
  msgstr "Ваш адрес IP"
1249
 
1250
- #: dashboard.php:128 dashboard.php:794
1251
  msgid "Check for activity"
1252
  msgstr "Проверить активность"
1253
 
1254
- #: dashboard.php:131
1255
  msgid "List is empty"
1256
  msgstr "Список пуст"
1257
 
1258
- #: dashboard.php:135
1259
  msgid "Add IP to the list"
1260
  msgstr "Добавить IP в список"
1261
 
1262
- #: dashboard.php:158
1263
  msgid "Address %s was added to White IP Access List"
1264
  msgstr "Адрес %s добавлен в белый список доступа"
1265
 
1266
- #: dashboard.php:171
1267
  msgid "Address %s was added to Black IP Access List"
1268
  msgstr "Адрес %s добавлен в черный список доступа"
1269
 
1270
- #: dashboard.php:287
1271
  msgid "unknown"
1272
  msgstr "неизвестно"
1273
 
1274
- #: dashboard.php:167
1275
  msgid "You can't add your IP address"
1276
  msgstr "Вы не можете добавить свой адрес IP"
1277
 
1278
- #: dashboard.php:312
1279
  msgid "Unable to send notification email"
1280
  msgstr "Невозможно послать письмо с уведомлением"
1281
 
1282
- #: dashboard.php:309
1283
  msgid "Message has been sent to "
1284
  msgstr "Сообщение было отправлено на"
1285
 
1286
- #: dashboard.php:320
1287
  msgid "Lockout for %s was removed"
1288
  msgstr "Удалена блокировка для %s"
1289
 
1290
- #: dashboard.php:337 dashboard.php:1344
1291
  msgid "Settings saved"
1292
  msgstr "Настройки сохранены."
1293
 
1294
- #: dashboard.php:408 dashboard.php:585
1295
  msgid "Date"
1296
  msgstr "Дата"
1297
 
1298
- #: dashboard.php:1028 dashboard.php:1204 settings.php:82 settings.php:228
1299
- #: wp-cerber.php:3140
1300
  msgid "Activity"
1301
  msgstr "Активность"
1302
 
1303
- #: dashboard.php:609
1304
  msgid "No activity has been logged."
1305
  msgstr "Ни одного события не зафиксировано."
1306
 
1307
- #: dashboard.php:408 dashboard.php:588 wp-cerber.php:3157
1308
  msgid "Username used"
1309
  msgstr "Использован логин"
1310
 
1311
- #: dashboard.php:408 dashboard.php:587
1312
  msgid "Local User"
1313
  msgstr "Пользователь"
1314
 
1315
- #: dashboard.php:812
1316
  msgid "Add IP to the Black List"
1317
  msgstr "Добавить IP в черный список"
1318
 
1319
- #: dashboard.php:843 dashboard.php:862
1320
  msgid "WP Cerber"
1321
  msgstr "WP Cerber"
1322
 
1323
- #: dashboard.php:913
1324
  msgid "Comments"
1325
  msgstr "Комментарии"
1326
 
1327
- #: dashboard.php:914
1328
  msgid "Last login"
1329
  msgstr "Последний вход"
1330
 
1331
- #: dashboard.php:915
1332
- msgid "Failed attempts in last 24 hours"
1333
- msgstr "Неудачные попытки входа за последние 24 часа"
1334
-
1335
- #: dashboard.php:916
1336
- msgid "Date of registration"
1337
- msgstr "Дата регистрации"
2
  # This file is distributed under the same license as the Plugins - Cerber Security &amp; Antispam - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-11-21 01:18:48+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: ru\n"
12
  "Project-Id-Version: Plugins - Cerber Security &amp; Antispam - Stable (latest release)\n"
13
 
14
+ #: wp-cerber.php:3148
15
+ msgid "Activity details"
16
+ msgstr "Подробно об активности"
17
+
18
+ #: wp-cerber.php:3059
19
+ msgid "Your license is valid until"
20
+ msgstr "Ваша лицензия действительна до"
21
+
22
+ #: wp-cerber.php:3055
23
+ msgid "Your login page:"
24
+ msgstr "Ваша страница входа:"
25
+
26
+ #: wp-cerber.php:3032
27
+ msgid "To change reporting settings visit"
28
+ msgstr "Для смены настроек отчетности зайдите"
29
+
30
+ #: wp-cerber.php:3029 wp-cerber.php:3136
31
+ msgid "Weekly report"
32
+ msgstr "Недельный отчет"
33
+
34
+ #: wp-cerber.php:653
35
+ msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
36
+ msgstr ">>> Переводите WP Cerber? Получите PRO лицензию бесплатно, оставьте контакты здесь: https://wpcerber.com/contact/"
37
+
38
+ #: settings.php:620
39
+ msgid "Click to send now"
40
+ msgstr "Нажмите для отправки сейчас"
41
+
42
+ #. translators: preposition of time
43
+ #: settings.php:604
44
+ msgctxt "preposition of time"
45
+ msgid "at"
46
+ msgstr "в"
47
+
48
+ #: settings.php:594
49
+ msgid "Saturday"
50
+ msgstr "Суббота"
51
+
52
+ #: settings.php:593
53
+ msgid "Friday"
54
+ msgstr "Пятница"
55
+
56
+ #: settings.php:592
57
+ msgid "Thursday"
58
+ msgstr "Четверг"
59
+
60
+ #: settings.php:591
61
+ msgid "Wednesday"
62
+ msgstr "Среда"
63
+
64
+ #: settings.php:590
65
+ msgid "Tuesday"
66
+ msgstr "Вторник"
67
+
68
+ #: settings.php:589
69
+ msgid "Monday"
70
+ msgstr "Понедельник"
71
+
72
+ #: settings.php:588
73
+ msgid "Sunday"
74
+ msgstr "Воскресенье"
75
+
76
+ #: settings.php:181
77
+ msgid "Weekly reports"
78
+ msgstr "Недельные отчеты"
79
+
80
+ #: dashboard.php:1638
81
+ msgid "Main settings"
82
+ msgstr "Основные настройки"
83
+
84
+ #: settings.php:647 settings.php:648
85
+ msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
86
+ msgstr "Если вы используете плагин кеширования, вам нужно добавить новый URL входа в список исключений кеширования"
87
+
88
+ #: settings.php:371 settings.php:497
89
+ msgid "%s allowed registrations in %s minutes from one IP"
90
+ msgstr "%s разрешенных регистраций в %s минут с одного IP"
91
+
92
+ #: settings.php:134
93
+ msgid "Mark it as spam"
94
+ msgstr "Пометить как спам"
95
+
96
+ #: settings.php:134
97
+ msgid "Deny it completely"
98
+ msgstr "Полностью запретить"
99
+
100
+ #: settings.php:116
101
+ msgid "Sort users in dashboard"
102
+ msgstr "Сортировать пользователей в консоли"
103
+
104
+ #: settings.php:113
105
+ msgid "Registration limit"
106
+ msgstr "Предел регистраций"
107
+
108
+ #: settings.php:102
109
+ msgid "Allow REST API for logged in users"
110
+ msgstr "Разрешить REST API для авторизованных пользователей"
111
+
112
+ #: dashboard.php:2220
113
+ msgid "Use REST API"
114
+ msgstr "использование REST API"
115
+
116
+ #: dashboard.php:2219
117
+ msgid "Use XML-RPC"
118
+ msgstr "использование XML-RPC"
119
+
120
+ #: dashboard.php:2218
121
+ msgid "Register on the website"
122
+ msgstr "регистрация на сайте"
123
+
124
+ #: dashboard.php:2217
125
+ msgid "Log in to the website"
126
+ msgstr "авторизация на сайте"
127
+
128
+ #: dashboard.php:2216
129
+ msgid "Post comments"
130
+ msgstr "отправка комментариев"
131
+
132
+ #: dashboard.php:2215
133
+ msgid "Submit forms"
134
+ msgstr "отправка форм"
135
+
136
+ #: dashboard.php:2203
137
+ msgid "Selected countries are not allowed to %s other countries are allowed"
138
+ msgstr "Выбранным странам запрещено %s, другим разрешено "
139
+
140
+ #: dashboard.php:2200
141
+ msgid "Selected countries are allowed to %s other countries are not allowed"
142
+ msgstr "Выбранным странам разрешено %s, другим запрещено"
143
+
144
+ #: dashboard.php:2196
145
+ msgid "Click on a country name to add it to the list of selected countries"
146
+ msgstr "Нажмите на страну чтобы добавить ее в список выбранных"
147
+
148
+ #: dashboard.php:2115
149
+ msgid "Start typing here to find a country"
150
+ msgstr "Начните печатать тут чтобы найти страну"
151
+
152
+ #: dashboard.php:1366 wp-cerber.php:3013 wp-cerber.php:3568
153
+ msgid "Getting Started Guide"
154
+ msgstr "Руководство с чего начать"
155
+
156
+ #: dashboard.php:1295
157
+ msgid "in the last 24 hours"
158
+ msgstr "В последние 24 часа"
159
+
160
+ #: dashboard.php:1044
161
+ msgid "You"
162
+ msgstr "Вы"
163
+
164
+ #: dashboard.php:977
165
+ msgid "Registered"
166
+ msgstr "Зарегистрирован"
167
+
168
+ #: dashboard.php:976
169
+ msgid "Failed login attempts"
170
+ msgstr "Неудачные попытки входа"
171
+
172
+ #: common.php:559
173
+ msgid "Multiple suspicious activities were detected"
174
+ msgstr "Обнаружена множественная подозрительная активность"
175
+
176
+ #: common.php:530
177
+ msgid "Multiple suspicious activities"
178
+ msgstr "Множественная подозрительная активность"
179
+
180
+ #: common.php:529
181
+ msgid "Limit reached"
182
+ msgstr "Предел достигнут"
183
+
184
+ #: settings.php:131
185
  msgid "Specify search strings to search in a request URI to exclude the request from inspection by the engine. One string per line."
186
  msgstr "Укажите строки для поиска в запросах URI, чтобы исключить инспектирование запроса движком. Одно имя на строку. "
187
 
188
+ #: settings.php:131
189
  msgid "Query whitelist"
190
  msgstr "Белый список запросов"
191
 
192
+ #: settings.php:103
193
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
194
  msgstr "Укажите пространства имен REST API разрешенных при отключении REST API, одно имя на строку."
195
 
 
 
 
 
196
  #: settings.php:101
197
+ msgid "Block access to the WordPress REST API except the following"
198
+ msgstr "Блокировать доступ к REST API кроме следующего"
199
 
200
  #: settings.php:98
201
  msgid "Block access to user pages like /?author=n and user data via REST API"
202
  msgstr "Блокировать доступ к страницам пользователя /?author=n и данным о пользователях через REST API"
203
 
204
+ #: dashboard.php:2260
205
  msgid "Security rules have been updated"
206
  msgstr "Правила безопасности обновлены"
207
 
208
+ #: dashboard.php:2059
209
  msgid "No rule"
210
  msgstr "Нет правила"
211
 
212
+ #: dashboard.php:2051
213
  msgid "Blocked for one country"
214
  msgid_plural "Blocked for %d countries"
215
  msgstr[0] "Блокировка одной страны"
216
  msgstr[1] "Блокировка %d стран"
217
  msgstr[2] "Блокировка %d стран"
218
 
219
+ #: dashboard.php:2048
220
  msgid "Permitted for one country"
221
  msgid_plural "Permitted for %d countries"
222
  msgstr[0] "Разрешается для одной страны"
223
  msgstr[1] "Разрешается для %d стран"
224
  msgstr[2] "Разрешается для %d стран"
225
 
226
+ #: dashboard.php:1983
227
  msgid "Countries"
228
  msgstr "Страны"
229
 
230
+ #: common.php:117
231
  msgid "Spam form submissions denied"
232
  msgstr "Заблокированы отправки форм спама"
233
 
234
+ #: dashboard.php:898 dashboard.php:1978
235
  msgid "Security Rules"
236
  msgstr "Правила безопасности"
237
 
238
+ #: dashboard.php:898
239
  msgid "Cerber Security Rules"
240
  msgstr "Правила безопасности Цербер"
241
 
242
+ #: dashboard.php:665
243
  msgid "All events"
244
  msgstr "Все события"
245
 
246
+ #: dashboard.php:95 dashboard.php:634
247
  msgid "Country"
248
  msgstr "Страна"
249
 
250
+ #: common.php:528
251
  msgid "Blocked by country rule"
252
  msgstr "Заблокирован по ограничению для страны"
253
 
254
+ #: common.php:527
255
  msgid "Malicious activity detected"
256
  msgstr "Обнаружена вредоносная активность"
257
 
258
+ #: common.php:522
259
  msgid "Citadel mode is active"
260
  msgstr "Режим цитадель активен"
261
 
262
+ #: common.php:521
263
  msgid "Bot detected"
264
  msgstr "Обнаружен бот"
265
 
266
+ #: common.php:517
267
  msgid "XML-RPC request denied"
268
  msgstr "Запрос XML-RPC заблокирован"
269
 
270
+ #: common.php:516
271
  msgid "Request to REST API denied"
272
  msgstr "Запрос к REST API заблокирован"
273
 
274
+ #: common.php:491
275
  msgid "Comment denied"
276
  msgstr "Комментарий заблокирован"
277
 
278
+ #: common.php:490
279
  msgid "Form submission denied"
280
  msgstr "Отправка формы заблокирована"
281
 
282
+ #: cerber-tools.php:50
283
+ msgid "License"
284
+ msgstr "Лицензия"
285
+
286
  #. Plugin Name of the plugin/theme
287
  msgid "WP Cerber Security & Antispam"
288
  msgstr "WP Cerber Security & Antispam"
289
 
290
+ #: settings.php:130
291
  msgid "Disable bot detection engine for logged in users"
292
  msgstr "Отключить определение ботов для авторизованных пользователей"
293
 
294
+ #: settings.php:130
295
  msgid "Logged in users"
296
  msgstr "Авторизованные пользователи"
297
 
298
+ #: settings.php:129
299
  msgid "Use less restrictive policies (allow AJAX)"
300
  msgstr "Использовать менее жесткую политику (разрешить AJAX)"
301
 
302
+ #: settings.php:129
303
  msgid "Safe mode"
304
  msgstr "Безопасный режим"
305
 
306
+ #: settings.php:128
307
  msgid "Adjust antispam engine"
308
  msgstr "Настроить антиспам-движок"
309
 
310
+ #: settings.php:126
311
  msgid "Protect all forms on the website with bot detection engine"
312
  msgstr "Защитить все формы на сайте через определение ботов"
313
 
314
+ #: settings.php:126
315
  msgid "Other forms"
316
  msgstr "Другие формы"
317
 
318
+ #: common.php:489
319
  msgid "Spam form submission denied"
320
  msgstr "Отправка формы со спамом заблокирована"
321
 
322
+ #: wp-cerber.php:1255
323
  msgid "Sorry, human verification failed."
324
  msgstr "Извините, проверка на человека не удалась."
325
 
326
+ #: settings.php:135
327
  msgid "Move spam comments to trash after"
328
  msgstr "Удалить спам комментарии в корзину после"
329
 
330
+ #: settings.php:135
331
  msgid "Trash spam comments"
332
  msgstr "Удалить спам комментарии в корзину"
333
 
334
+ #: settings.php:134
335
  msgid "If a spam comment detected"
336
  msgstr "Если обнаружен спам комментарий"
337
 
338
+ #: settings.php:133
339
  msgid "Comment processing"
340
  msgstr "Обработка комментария"
341
 
342
+ #: settings.php:125
343
  msgid "Protect registration form with bot detection engine"
344
  msgstr "Защита регистрации через определение ботов"
345
 
346
+ #: settings.php:124
347
  msgid "Protect comment form with bot detection engine"
348
  msgstr "Защита комментариев через определение ботов"
349
 
350
+ #: settings.php:123
351
  msgid "Cerber antispam engine"
352
  msgstr "Движок Цербер антиспам"
353
 
354
+ #: dashboard.php:901 settings.php:152 wp-cerber.php:3575
355
  msgid "Antispam"
356
  msgstr "Аниспам"
357
 
358
+ #: dashboard.php:901
359
  msgid "Cerber antispam settings"
360
  msgstr "Настройка Цербер антиспам"
361
 
362
+ #: common.php:558
363
  msgid "Bot activity is detected"
364
  msgstr "Обнаружена активность ботов"
365
 
366
+ #: cerber-tools.php:306
367
  msgid "Antispam and bot detection settings"
368
  msgstr "Антиспам и настройки определения ботов"
369
 
375
  msgid "Export & Import"
376
  msgstr "Экспорт и Импорт"
377
 
378
+ #: wp-cerber.php:989 wp-cerber.php:995 wp-cerber.php:1011 wp-cerber.php:1018
379
  msgid "You are not allowed to register."
380
  msgstr "Вам не разрешено зарегистрироваться."
381
 
382
+ #: dashboard.php:1310
383
  msgid "All suspicious activity"
384
  msgstr "Вся подозрительная активность"
385
 
386
+ #: common.php:119
387
  msgid "Lockouts occurred"
388
  msgstr "Блокировок произошло"
389
 
390
+ #: common.php:118
391
  msgid "Malicious IP addresses detected"
392
  msgstr "Найдены вредоносные IP адреса"
393
 
394
+ #: common.php:116
395
  msgid "Spam comments denied"
396
+ msgstr "Спам-комментарии отклонены"
397
 
398
+ #: common.php:113
399
  msgid "Malicious activities mitigated"
400
  msgstr "Вредоносная активность снижена"
401
 
402
+ #: dashboard.php:457 dashboard.php:636
403
  msgid "Event"
404
+ msgstr "Событие"
405
 
406
+ #: common.php:514
407
  msgid "Attempt to register denied"
408
  msgstr "Попытка регистрации отклонена"
409
 
410
+ #: common.php:513
411
  msgid "Attempt to log in denied"
412
  msgstr "Попытка входа отклонена"
413
 
414
+ #: common.php:488
415
  msgid "Spam comment denied"
416
  msgstr "Спам коммнтарий отклонен"
417
 
418
+ #: settings.php:202
419
  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."
420
  msgstr "В режиме Цитадель никто не может войти кроме как с IP в белом списке. Активные сессии пользователей не будут затронуты."
421
 
422
+ #: settings.php:155
423
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
424
  msgstr "Блокировать IP адрес на %s минут после %s неудачных попыток в течении %s минут"
425
 
426
+ #: settings.php:155
427
  msgid "Limit attempts"
428
  msgstr "Ограничение попыток"
429
 
431
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
432
  msgstr "Применить правила входа для IP адресов в белом списке"
433
 
434
+ #: common.php:557
435
  msgid "Limit on failed reCAPTCHA verifications is reached"
436
  msgstr "Достигнут предел проверки reCAPTCHA"
437
 
438
+ #: common.php:503
439
  msgid "Password reset requested"
440
  msgstr "Запрошен сброс пароля"
441
 
442
+ #: settings.php:141
443
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
444
  msgstr "(не включайте, если у вас нет или вы не вводили ключ сайта и секретный ключ для невидимой версии)"
445
 
446
+ #: settings.php:153
447
  msgid "Disable reCAPTCHA for logged in users"
448
  msgstr "Отключить reCAPTCHA для авторизованных пользователей"
449
 
450
+ #: settings.php:152
451
  msgid "Enable reCAPTCHA for WordPress comment form"
452
  msgstr "Включить reCAPTCHA в форме комментариев WordPress"
453
 
454
+ #: settings.php:124
455
  msgid "Comment form"
456
  msgstr "Форма комментариев"
457
 
458
+ #: settings.php:141
459
  msgid "Enable invisible reCAPTCHA"
460
  msgstr "Включить невидимую reCAPTCHA"
461
 
462
+ #: settings.php:141
463
  msgid "Invisible reCAPTCHA"
464
  msgstr "невидимая reCAPTCHA"
465
 
466
+ #: common.php:602
467
  msgid "%s ago"
468
  msgstr "%s назад"
469
 
470
+ #: settings.php:176
471
  msgid "Not available"
472
  msgstr "Недоступно"
473
 
474
+ #: settings.php:174
475
  msgid "No devices found"
476
  msgstr "Устройства не найдены"
477
 
478
+ #: settings.php:173
479
  msgid "All connected devices"
480
  msgstr "Все подключенные устройства"
481
 
482
+ #: settings.php:163
483
  msgid "Use comma to specify multiple values"
484
  msgstr "Используйте запятую для разделения множественных значений"
485
 
486
+ #: settings.php:161
487
  msgid "Email notifications"
488
  msgstr "Уведомления по эл.почте"
489
 
491
  msgid "Display 404 page"
492
  msgstr "Показывать страницу 404"
493
 
494
+ #: dashboard.php:1114 settings.php:166
495
  msgid "Push notifications"
496
  msgstr "Push уведомления"
497
 
498
+ #: dashboard.php:457
499
+ msgid "User login"
500
+ msgstr "Имя пользователя"
501
+
502
+ #: dashboard.php:895
503
+ msgid "Cerber Dashboard"
504
+ msgstr "Консоль Cerber"
505
 
506
+ #: dashboard.php:1550
507
+ msgid "Subscribe"
508
+ msgstr "Подписаться"
509
+
510
+ #: cerber-tools.php:236 dashboard.php:1551
511
  msgid "Unsubscribe"
512
  msgstr "Отменить подписку"
513
 
514
+ #: dashboard.php:1579
515
+ msgid "You've subscribed"
516
+ msgstr "Вы подписались"
517
+
518
+ #: dashboard.php:1582
519
+ msgid "You've unsubscribed"
520
+ msgstr "Подписка отменена"
521
 
522
+ #: dashboard.php:457
523
  msgid "IP address"
524
  msgstr "IP адрес"
525
 
526
+ #: dashboard.php:457
 
 
 
 
527
  msgid "User ID"
528
  msgstr "ID пользователя"
529
 
530
+ #: dashboard.php:655
531
+ msgid "Export"
532
+ msgstr "Экспорт"
533
 
534
+ #: dashboard.php:674
535
+ msgid "Search for IP or username"
536
+ msgstr "Поиск IP или имени пользователя"
537
+
538
+ #: dashboard.php:674
539
  msgid "Filter"
540
  msgstr "Фильтр"
541
 
542
+ #: dashboard.php:902
543
  msgid "Cerber tools"
544
  msgstr "Инструменты Cerber"
545
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
546
  #: settings.php:90
547
  msgid "if empty, the default format %s will be used"
548
  msgstr "Если пусто, будет использован формат по умолчанию %s"
549
 
550
+ #: wp-cerber.php:3023 wp-cerber.php:3024
551
+ msgid "A new activity has been recorded"
552
+ msgstr "Отмечена новая активность"
553
+
554
+ #: wp-cerber.php:3431
555
  msgid "User"
556
  msgstr "Пользователь"
557
 
558
+ #: wp-cerber.php:3439
559
  msgid "Search string"
560
  msgstr "Строка поиска"
561
 
562
+ #: wp-cerber.php:3460
563
  msgid "To unsubscribe click here"
564
  msgstr "Для отмены подписки нажмите здесь"
565
 
576
  msgstr "Gregory"
577
 
578
  #. Description of the plugin/theme
579
+ 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>."
580
+ msgstr "Защищает сайт от атак перебора, ботов, хакеров. Антиспам защита с движком Cerber антиспам и reCAPTCHA. Всесторонний контроль активности пользователей. Ограничение входа по IP адресам. Ограничение попыток входа. Узнайте больше на сайте <a href=\"https://wpcerber.com\">wpcerber.com</a>."
581
 
582
+ #: dashboard.php:895 dashboard.php:1118 dashboard.php:1637 settings.php:233
583
  msgid "Dashboard"
584
  msgstr "Консоль"
585
 
586
+ #: settings.php:150
587
  msgid "Enable reCAPTCHA for WooCommerce login form"
588
  msgstr "Включить reCAPTCHA для формы входа WooCommerce"
589
 
590
+ #: settings.php:149
591
  msgid "Enable reCAPTCHA for WordPress login form"
592
  msgstr "Включить reCAPTCHA для формы входа WordPress"
593
 
594
+ #: settings.php:147
595
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
596
  msgstr "Включить reCAPTCHA для формы восстановления пароля WooCommerce"
597
 
598
+ #: settings.php:146
599
  msgid "Enable reCAPTCHA for WordPress lost password form"
600
  msgstr "Включить reCAPTCHA для формы восстановления пароля WordPress"
601
 
602
+ #: settings.php:144
603
  msgid "Enable reCAPTCHA for WooCommerce registration form"
604
  msgstr "Включить reCAPTCHA для формы регистрации WooCommerce"
605
 
606
+ #: settings.php:143
607
  msgid "Enable reCAPTCHA for WordPress registration form"
608
  msgstr "Включить reCAPTCHA для формы регистрации WordPress"
609
 
610
+ #: settings.php:125 settings.php:143
611
  msgid "Registration form"
612
  msgstr "Форма регистрации"
613
 
623
  msgid "Cerber Lab connection"
624
  msgstr "Подключение Cerber Lab"
625
 
626
+ #: dashboard.php:1331
627
  msgid "Recently locked out IP addresses"
628
  msgstr "Недавно заблокированые IP адреса"
629
 
630
+ #: dashboard.php:1301 dashboard.php:1330
631
  msgid "View all"
632
  msgstr "Просмотреть все"
633
 
634
+ #: dashboard.php:893 settings.php:228
635
  msgid "WP Cerber Security"
636
  msgstr "WP Cerber Security"
637
 
638
+ #: dashboard.php:858
639
  msgid "Add network to the Black List"
640
  msgstr "Добавить сеть в черный список"
641
 
642
+ #: dashboard.php:844
643
  msgid "Network:"
644
  msgstr "Сеть:"
645
 
646
+ #: dashboard.php:184 dashboard.php:192
647
  msgid "Incorrect IP address or IP range"
648
  msgstr "Неверный IP адрес или диапазон адресов"
649
 
650
+ #: common.php:507
651
  msgid "Request to the Google reCAPTCHA service failed"
652
  msgstr "Запрос к сервису Google reCAPTCHA не удался"
653
 
654
+ #: cerber-lab.php:659
655
  msgid "NO, maybe later"
656
  msgstr "НЕТ, возможно позже"
657
 
658
+ #: cerber-lab.php:658
659
  msgid "OK, nail them all"
660
  msgstr "ОК, прибьем их всех"
661
 
662
+ #: cerber-lab.php:657
663
  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."
664
  msgstr "Разрешить WP Cerber посылать заблокированные IP адреса в Cerber Lab. Это помогает команде плагина разрабатывать новые алгоритмы для WP Cerber, которые будут защищать WordPress против новых угроз и ботнетов появляюшихся каждый день. Вы всегда можете отключить отсылку в настройках плагина, в любой момент."
665
 
666
+ #: cerber-lab.php:656
667
  msgid "Want to make WP Cerber even more powerful?"
668
  msgstr "Хотите сделать WP Cerber еще мощнее ?"
669
 
670
+ #. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security & Antispam 5.8) #-#-#-#-#
671
  #. Plugin URI of the plugin/theme
672
+ #. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security & Antispam 5.8) #-#-#-#-#
673
  #. Author URI of the plugin/theme
674
+ msgid "https://wpcerber.com"
675
+ msgstr "https://wpcerber.com"
676
 
677
+ #: wp-cerber.php:3578
678
  msgid "Import settings"
679
  msgstr "Импорт настроек"
680
 
681
+ #: wp-cerber.php:3566
682
  msgid "Your IP address is added to the"
683
  msgstr "Ваш IP адрес добавлен к"
684
 
685
+ #: wp-cerber.php:3549
686
  msgid "Can't activate WP Cerber due to a database error."
687
  msgstr "Невозможно активировать плагин WP Cerber из-за ошибки в базе данных."
688
 
689
+ #: wp-cerber.php:3544
690
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
691
  msgstr "WP Cerber требует WordPress версии %s или выше. У вас версия"
692
 
693
+ #: wp-cerber.php:3540
694
  msgid "The WP Cerber requires PHP %s or higher. You are running"
695
  msgstr "WP Cerber требует PHP версии %s или выше. У вас версия"
696
 
697
+ #: wp-cerber.php:3062
698
  msgid "This message was sent by"
699
  msgstr "Это сообщение было отправлено"
700
 
701
+ #: wp-cerber.php:3019
702
  msgid "New Custom login URL"
703
  msgstr "Новый URL для входа на сайт"
704
 
705
+ #: wp-cerber.php:3011 wp-cerber.php:3565
 
 
 
 
706
  msgid "WP Cerber is now active and has started protecting your site"
707
  msgstr "WP Cerber активен и начал защищать ваш сайт"
708
 
709
+ #: wp-cerber.php:3010
710
  msgid "The WP Cerber security plugin is now active"
711
  msgstr "WP Cerber плагин безопасности активен"
712
 
713
+ #: wp-cerber.php:3006
714
  msgid "From country"
715
  msgstr "Из страны"
716
 
717
+ #: wp-cerber.php:3003
718
  msgid "From IP address"
719
  msgstr "С IP адреса"
720
 
721
+ #: wp-cerber.php:3002
722
  msgid "By user"
723
  msgstr "По пользователю"
724
 
725
+ #: wp-cerber.php:2996
726
  msgid "Not logged in"
727
  msgstr "Нет авторизации"
728
 
729
+ #: wp-cerber.php:2993 wp-cerber.php:2994
730
  msgid "The WP Cerber security plugin has been deactivated"
731
  msgstr "WP Cerber плагин деактивирован"
732
 
733
+ #: wp-cerber.php:2990 wp-cerber.php:3001
734
  msgid "Website"
735
  msgstr "Сайт"
736
 
737
+ #: wp-cerber.php:2987
738
  msgid "Hi!"
739
  msgstr "Привет!"
740
 
741
+ #: wp-cerber.php:2986 wp-cerber.php:2988
742
  msgid "A new version of WP Cerber is available to install"
743
  msgstr "Доступна новая версия WP Cerber!"
744
 
745
+ #: wp-cerber.php:2983
746
  msgid "View lockouts in dashboard"
747
  msgstr "Просмотреть список заблокированных IP"
748
 
749
+ #: wp-cerber.php:2982
750
  msgid "View activity for this IP"
751
  msgstr "Посмотреть активность для этого IP"
752
 
753
+ #: wp-cerber.php:2980
754
  msgid "Last lockout was added: %s for IP %s"
755
  msgstr "Последняя блокировка была добавлена %s для IP %s"
756
 
757
+ #: wp-cerber.php:2979
758
  msgid "Number of active lockouts"
759
  msgstr "Число активных блокировок на данный момент"
760
 
761
+ #: wp-cerber.php:2977
762
  msgid "Number of lockouts is increasing"
763
  msgstr "Число блокировок увеличилось"
764
 
765
+ #: wp-cerber.php:2974
766
  msgid "unspecified"
767
  msgstr "неуказано"
768
 
769
+ #: wp-cerber.php:2949 wp-cerber.php:3459
770
  msgid "View activity in dashboard"
771
  msgstr "Просмотреть журнал активности"
772
 
773
+ #: wp-cerber.php:2948
774
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
775
  msgstr "Последняя неудачная попытка была в %s с IP адреса %s с логином %s."
776
 
777
+ #: wp-cerber.php:2947
778
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
779
  msgstr "Режим Цитадель активирован после %d неудачных попыток за %d минут."
780
 
781
+ #: wp-cerber.php:2945
782
  msgid "Citadel mode is activated"
783
  msgstr "Активирован режим Цитадель"
784
 
785
+ #: wp-cerber.php:2923
786
  msgid "WP Cerber notify"
787
  msgstr "Уведомление WP Cerber"
788
 
789
+ #: common.php:553
790
  msgid "Limit on login attempts is reached"
791
  msgstr "Количество попыток исчерпано"
792
 
793
+ #: common.php:554
794
  msgid "Attempt to access"
795
  msgstr "Попытка доступа к"
796
 
797
+ #: wp-cerber.php:1005
798
  msgid "Username is not allowed. Please choose another one."
799
  msgstr "Имя пользователя недопустимо. Выберите другое."
800
 
801
+ #: wp-cerber.php:784
802
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
803
  msgstr "<strong>ОШИБКА</strong>: Пароль введенный для пользователя %s is некорректен."
804
 
805
+ #: wp-cerber.php:594
806
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
807
  msgstr "Антибот проверка неудачна. Пожалуйста тыкните в квадратную отметку блока reCAPTCHA ниже"
808
 
809
+ #: common.php:171 common.php:224 common.php:228 settings.php:695
810
+ #: wp-cerber.php:565 wp-cerber.php:577 wp-cerber.php:584 wp-cerber.php:773
811
+ #: wp-cerber.php:988 wp-cerber.php:994 wp-cerber.php:999 wp-cerber.php:1004
812
+ #: wp-cerber.php:1010 wp-cerber.php:1017 wp-cerber.php:1118 wp-cerber.php:1255
813
  msgid "ERROR:"
814
  msgstr "ОШИБКА:"
815
 
816
+ #: wp-cerber.php:245
817
  msgid "You have only one attempt remaining."
818
  msgid_plural "You have %d attempts remaining."
819
  msgstr[0] "У вас есть только одна попытка для входа"
820
  msgstr[1] "У вас осталось %d попытки для входа."
821
  msgstr[2] "У вас осталось %d попыток для входа."
822
 
823
+ #: wp-cerber.php:226
824
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
825
  msgstr "Вход невозможен. Слишком много ошибочных попыток. Попробуйте войти через %d минут."
826
 
827
+ #: wp-cerber.php:220
828
  msgid "You are not allowed to log in. Ask your administrator for assistance."
829
  msgstr "Вход на сайт невозможен. Обратитесь к администратору сайта."
830
 
831
+ #: common.php:552 dashboard.php:291 whois.php:221 whois.php:252
832
  msgid "Unknown"
833
  msgstr "Неизвестен"
834
 
835
+ #: settings.php:722
836
  msgid "<strong>ERROR</strong>: please enter a valid email address."
837
  msgstr "<strong>ОШИБКА</strong>: Введите действительный адрес эл.почты."
838
 
839
+ #: settings.php:645 settings.php:646
840
  msgid "Attention! You have changed the login URL! The new login URL is"
841
  msgstr "Внимание! Вы изменили URL страницы авторизации. Новый адрес"
842
 
843
+ #: settings.php:388 settings.php:514
844
  msgid "Enable after %s failed login attempts in last %s minutes"
845
  msgstr "Активировать после %s неудачных авторизаций за последние %s минут"
846
 
847
+ #: settings.php:383 settings.php:509
848
  msgid "Notify admin if the number of active lockouts above"
849
  msgstr "Уведомить администратора, если число заблокированных IP более"
850
 
851
+ #: settings.php:376 settings.php:502
852
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
853
  msgstr "Увеличить длительность блокировки до %s часов после %s блокировок в течение последних %s часов"
854
 
855
+ #: settings.php:366 settings.php:492
856
  msgid "%s allowed retries in %s minutes"
857
  msgstr "%s попыток разрешено в течении %s минут"
858
 
859
+ #: settings.php:253
860
  msgid "Help"
861
  msgstr "Помощь"
862
 
863
+ #: cerber-tools.php:43 dashboard.php:902
864
  msgid "Tools"
865
  msgstr "Инструменты"
866
 
867
+ #: settings.php:248
868
  msgid "Users"
869
  msgstr "Пользователи"
870
 
871
+ #: settings.php:246 wp-cerber.php:3576
872
  msgid "Hardening"
873
  msgstr "Панцирь"
874
 
875
+ #: settings.php:241 wp-cerber.php:3573
876
  msgid "Main Settings"
877
  msgstr "Главные настройки"
878
 
879
+ #: cerber-lab.php:660 settings.php:209
880
  msgid "Know more"
881
  msgstr "Узнать больше"
882
 
883
+ #: settings.php:208
884
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
885
  msgstr "Перед использованием reCAPTCHA вам нужно получить ключ сайта и секретный ключ на сайте Google"
886
 
887
+ #: settings.php:205
888
  msgid "These settings do not affect hosts from the "
889
  msgstr "Эти настройки не применяются к адресам из"
890
 
891
+ #: settings.php:198
892
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
893
  msgstr "Будте внимательны при установке этих параметров. Если вы забудете URL страницы авторизации вы не сможете войти в панель управления."
894
 
895
+ #: settings.php:195
896
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
897
  msgstr "Для использования этой настройки необходимо активировать Постоянные ссылки в настройках сайта."
898
 
899
+ #: settings.php:191
900
  msgid "Make your protection smarter!"
901
  msgstr "Сделайте защиту от злоумышленников еще умнее"
902
 
903
+ #: settings.php:149
904
  msgid "Login form"
905
  msgstr "Форма входа"
906
 
907
+ #: settings.php:146
908
  msgid "Lost password form"
909
  msgstr "Форма восстановления пароля"
910
 
911
+ #: settings.php:140
912
  msgid "Secret key"
913
  msgstr "Секретный ключ"
914
 
915
+ #: settings.php:139
916
  msgid "Site key"
917
  msgstr "Ключ сайта"
918
 
919
+ #: settings.php:138
920
  msgid "reCAPTCHA settings"
921
  msgstr "Настройки reCAPTCHA"
922
 
923
+ #: settings.php:115
924
  msgid "in minutes (leave empty to use default WP value)"
925
  msgstr "В минутах (оставьте пустым для значения WP по умолчанию)"
926
 
927
+ #: settings.php:115
928
  msgid "User session expire"
929
  msgstr "Длительность сессии пользователя"
930
 
931
+ #: settings.php:114
932
  msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
933
  msgstr "Имена пользователей из этого списка не разрешены для входа или регистрации. Любой IP адрес пытающийся использовать эти имена будет автоматически заблокирован. Испольуйте запятую как разделитель."
934
 
935
+ #: settings.php:114
936
  msgid "Prohibited usernames"
937
  msgstr "Запрещеные имена пользователей"
938
 
939
+ #: settings.php:112
940
  msgid "User related settings"
941
  msgstr "Настройки пользователей"
942
 
984
  msgid "Drill down IP"
985
  msgstr "Изучать IP"
986
 
987
+ #: settings.php:83 settings.php:135
988
  msgid "days"
989
  msgstr "дней"
990
 
992
  msgid "Keep records for"
993
  msgstr "Хранить записи не более"
994
 
995
+ #: settings.php:164
996
  msgid "notification letters allowed per hour (0 means unlimited)"
997
  msgstr "разрешенное число писем с уведомлениями в час (0 - без ограничений)"
998
 
999
+ #: settings.php:164
1000
  msgid "Notification limit"
1001
  msgstr "Ограничение уведомлений"
1002
 
1003
+ #: settings.php:163
1004
  msgid "if empty, the admin email %s will be used"
1005
  msgstr "Если пусто, то будет использован адрес администратора %s"
1006
 
1007
+ #: settings.php:163
1008
  msgid "Email Address"
1009
  msgstr "Адрес email"
1010
 
1011
+ #: settings.php:80 settings.php:385 settings.php:511
1012
  msgid "Click to send test"
1013
+ msgstr "Нажмите, чтобы протестировать отправку"
1014
 
1015
  #: settings.php:80
1016
  msgid "Send notification to admin email"
1080
  msgid "Proactive security rules"
1081
  msgstr "Проактивные правила безопасности"
1082
 
1083
+ #: dashboard.php:1167 settings.php:63
1084
  msgid "My site is behind a reverse proxy"
1085
  msgstr "Мой сайт подключен к сети через прокси-сервер"
1086
 
1088
  msgid "Site connection"
1089
  msgstr "Подключение к сети"
1090
 
1091
+ #: settings.php:62 settings.php:80 settings.php:251 wp-cerber.php:3577
1092
  msgid "Notifications"
1093
  msgstr "Уведомления"
1094
 
1112
  msgid "Limit login attempts"
1113
  msgstr "Ограничение числа попыток авторизации"
1114
 
1115
+ #: dashboard.php:840
1116
  msgid "Abuse email:"
1117
  msgstr "Адрес email для жалоб:"
1118
 
1119
+ #: common.php:743
1120
  msgid "Update to version %s of WP Cerber"
1121
  msgstr "Обновить WP Cerber до версии %s"
1122
 
1123
+ #: common.php:736
1124
  msgid "New version is available"
1125
  msgstr "Доступна новая версия"
1126
 
1127
+ #: dashboard.php:1457
1128
  msgid "View Activity"
1129
  msgstr "Что происходит?"
1130
 
1131
+ #: dashboard.php:1456
1132
  msgid "Deactivate"
1133
  msgstr "Деактивировать"
1134
 
1135
+ #: dashboard.php:1455
1136
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
1137
  msgstr "Внимание! Режим Цитадель активен. Авторизация на сайте заблокирована."
1138
 
1139
+ #: dashboard.php:1365
 
 
 
 
1140
  msgid "doesn't affect Custom login URL and Access Lists"
1141
  msgstr "не затронет настройки URL страницы авторизации и списки доступа"
1142
 
1143
+ #: dashboard.php:1359
1144
  msgid "Are you sure?"
1145
  msgstr "Вы уверены?"
1146
 
1147
+ #: dashboard.php:1357
1148
  msgid "Load default settings"
1149
  msgstr "Загрузить настройки"
1150
 
1151
+ #: dashboard.php:1355
1152
  msgid "You can easily load default recommended settings using button below"
1153
  msgstr "Вы можете загрузить рекомендованные настройки с помощью всего одной кнопки"
1154
 
1155
+ #: dashboard.php:1354
1156
  msgid "Confused about some settings?"
1157
  msgstr "Сомневаетесь какие настройки оптимальны?"
1158
 
1159
+ #: dashboard.php:1120 settings.php:239
1160
  msgid "Lockouts"
1161
  msgstr "Блокировки"
1162
 
1163
+ #: dashboard.php:1112 settings.php:76
1164
  msgid "Citadel mode"
1165
  msgstr "Режим Цитадель"
1166
 
1167
+ #: dashboard.php:1110 dashboard.php:1111 dashboard.php:1617
1168
  msgid "entry"
1169
  msgid_plural "entries"
1170
  msgstr[0] "элемент"
1171
  msgstr[1] "элемента"
1172
  msgstr[2] "элементов"
1173
 
1174
+ #: dashboard.php:1109
1175
  msgid "Last lockout"
1176
  msgstr "Последняя блокировка"
1177
 
1178
+ #: dashboard.php:1108
1179
  msgid "Lockouts at the moment"
1180
  msgstr "Сейчас заблокировано"
1181
 
1182
+ #: dashboard.php:1106
1183
  msgid "lockouts"
1184
  msgstr "блокировок"
1185
 
1186
+ #: dashboard.php:1105 dashboard.php:1106
1187
  msgid "view all"
1188
  msgstr "просмотреть все"
1189
 
1190
+ #: dashboard.php:1105 dashboard.php:1106
1191
  msgid "in 24 hours"
1192
  msgstr "за 24 часа"
1193
 
1194
+ #: dashboard.php:1105
1195
  msgid "failed attempts"
1196
  msgstr "ошибок авторизации"
1197
 
1198
+ #: dashboard.php:1100
1199
  msgid "disabled"
1200
  msgstr "отключен"
1201
 
1202
+ #: dashboard.php:1099
1203
  msgid "not active"
1204
  msgstr "неактивен"
1205
 
1206
+ #: dashboard.php:1097
1207
  msgid "deactivate"
1208
  msgstr "деактивировать"
1209
 
1210
+ #: dashboard.php:1097
1211
  msgid "active"
1212
  msgstr "активен"
1213
 
1214
+ #: dashboard.php:1062
1215
  msgid "Cerber Quick View"
1216
  msgstr "Сводка от Cerber"
1217
 
1218
+ #: cerber-tools.php:178
1219
  msgid "Error while parsing file"
1220
  msgstr "Возникла ошибка при обработке файла"
1221
 
1222
+ #: cerber-tools.php:174
1223
  msgid "Settings has imported successfully from"
1224
  msgstr "Все настройки успешно загружены"
1225
 
1226
+ #: cerber-tools.php:171
1227
  msgid "Error while updating"
1228
  msgstr "Возникла ошибка при обновлении"
1229
 
1230
+ #: cerber-tools.php:138
1231
  msgid "No file was uploaded or file is corrupted"
1232
  msgstr "Файл не был загружен или имеет неверный формат"
1233
 
1234
+ #: cerber-tools.php:98
1235
  msgid "Upload file"
1236
  msgstr "Загрузить файл"
1237
 
1238
+ #: cerber-tools.php:96
1239
  msgid "What do you want to import?"
1240
  msgstr "Что вы хотите импортировать?"
1241
 
1242
+ #: cerber-tools.php:93
1243
  msgid "Maximum upload file size: %s."
1244
  msgstr "Максимальный размер загружаемого файла: %s."
1245
 
1246
+ #: cerber-tools.php:93
1247
  msgid "Select file to import."
1248
  msgstr "Выберите файл для загрузки."
1249
 
1250
+ #: cerber-tools.php:92
1251
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
1252
  msgstr "Когда вы нажмете на кнопку, все настройки из файла будут загружены на сайт"
1253
 
1254
+ #: cerber-tools.php:91
1255
  msgid "Import settings from the file"
1256
  msgstr "Импорт настроек из файла"
1257
 
1258
+ #: cerber-tools.php:89
1259
  msgid "Download file"
1260
  msgstr "Скачать файл"
1261
 
1262
+ #: cerber-tools.php:88 cerber-tools.php:97 cerber-tools.php:171
1263
+ #: dashboard.php:1121 settings.php:244 wp-cerber.php:3574
1264
  msgid "Access Lists"
1265
  msgstr "Списки доступа"
1266
 
1267
+ #: cerber-tools.php:87 cerber-tools.php:96
1268
  msgid "Settings"
1269
  msgstr "Настройки"
1270
 
1271
+ #: cerber-tools.php:86
1272
  msgid "What do you want to export?"
1273
  msgstr "Что вы хотите экспортировать"
1274
 
1275
+ #: cerber-tools.php:85
1276
  msgid "When you click the button below you will get a configuration file, which you can upload on another site."
1277
  msgstr "Когда вы нажмете на кнопку, то получите файл с настройками, который можно использовать на других сайтах."
1278
 
1279
+ #: cerber-tools.php:84
1280
  msgid "Export settings to the file"
1281
  msgstr "Экспорт настроек в файл"
1282
 
1283
+ #: dashboard.php:1008 dashboard.php:1093
1284
  msgid "Never"
1285
  msgstr "Никогда"
1286
 
1287
+ #: common.php:477
1288
  msgid "User created"
1289
  msgstr "Пользователь создан"
1290
 
1291
+ #: common.php:478 dashboard.php:1309
1292
  msgid "User registered"
1293
  msgstr "Пользователь зарегистрирован"
1294
 
1295
+ #: common.php:479
1296
  msgid "Logged in"
1297
  msgstr "Вход"
1298
 
1299
+ #: common.php:480
1300
  msgid "Logged out"
1301
  msgstr "Выход"
1302
 
1303
+ #: common.php:481
1304
  msgid "Login failed"
1305
  msgstr "Ошибка авторизации"
1306
 
1307
+ #: common.php:484
1308
  msgid "IP blocked"
1309
  msgstr "IP заблокирован"
1310
 
1311
+ #: common.php:485
1312
  msgid "Subnet blocked"
1313
  msgstr "Подсеть заблокирована"
1314
 
1315
+ #: common.php:487
1316
  msgid "Citadel activated!"
1317
  msgstr "Режим Цитадель активирован!"
1318
 
1319
+ #: common.php:523 dashboard.php:595 dashboard.php:817
1320
  msgid "Locked out"
1321
  msgstr "Заблокировано"
1322
 
1323
+ #: common.php:502
1324
  msgid "Password changed"
1325
  msgstr "Пароль изменен"
1326
 
1327
+ #: common.php:524
1328
  msgid "IP blacklisted"
1329
  msgstr "IP в черном списке"
1330
 
1331
+ #: common.php:505
1332
  msgid "reCAPTCHA verification failed"
1333
  msgstr "проверка reCAPTCHA неудачна"
1334
 
1335
+ #: common.php:506
1336
  msgid "reCAPTCHA settings are incorrect"
1337
  msgstr "настройки reCAPTCHA неверны"
1338
 
1339
+ #: common.php:509
1340
  msgid "Attempt to access prohibited URL"
1341
  msgstr "Попытка доступа к запрещенному URL"
1342
 
1343
+ #: common.php:510 common.php:555
1344
  msgid "Attempt to log in with non-existent username"
1345
  msgstr "Попытка войти с несуществующим именем пользователя"
1346
 
1347
+ #: common.php:511 common.php:556
1348
  msgid "Attempt to log in with prohibited username"
1349
  msgstr "Попытка входа с запрещенным именем"
1350
 
1351
+ #: dashboard.php:86 dashboard.php:157
1352
  msgid "Remove"
1353
  msgstr "Удалить"
1354
 
1355
+ #: dashboard.php:93 dashboard.php:632 wp-cerber.php:3427
1356
  msgid "IP"
1357
  msgstr "IP"
1358
 
1359
+ #: dashboard.php:94 dashboard.php:633
1360
  msgid "Hostname"
1361
  msgstr "Имя узла"
1362
 
1363
+ #: dashboard.php:96
1364
  msgid "Expires"
1365
  msgstr "Истекает"
1366
 
1367
+ #: dashboard.php:97 wp-cerber.php:2981
1368
  msgid "Reason"
1369
  msgstr "Причина"
1370
 
1371
+ #: dashboard.php:98
1372
  msgid "Action"
1373
  msgstr "Действие"
1374
 
1375
+ #: dashboard.php:112
1376
  msgid "Showing last %d records from %d"
1377
  msgstr "Отображены последние %d строк из %d"
1378
 
1379
+ #: dashboard.php:114
1380
  msgid "Hint"
1381
  msgstr "Подсказка"
1382
 
1383
+ #: dashboard.php:114
1384
  msgid "To view activity, click on the IP"
1385
  msgstr "Чтобы увидеть активность, нажмите на адрес IP"
1386
 
1387
+ #: dashboard.php:118
1388
  msgid "No lockouts at the moment. The sky is clear."
1389
  msgstr "Блокировок нет. Все в порядке."
1390
 
1391
+ #: dashboard.php:131 dashboard.php:590 dashboard.php:812 dashboard.php:1110
1392
+ #: settings.php:61 settings.php:205 wp-cerber.php:3566
1393
  msgid "White IP Access List"
1394
  msgstr "Белый список доступа по IP"
1395
 
1396
+ #: dashboard.php:131
1397
  msgid "These IPs will never be locked out"
1398
  msgstr "Эти адреса не будут заблокированы ни при каких условиях"
1399
 
1400
+ #: dashboard.php:133 dashboard.php:591 dashboard.php:814 dashboard.php:1111
1401
  msgid "Black IP Access List"
1402
  msgstr "Черный список доступа по IP"
1403
 
1404
+ #: dashboard.php:133
1405
  msgid "Nobody can log in or register from these IPs"
1406
  msgstr "Никто не сможет войти или зарегистрироваться с этих IP"
1407
 
1408
+ #: dashboard.php:140
1409
  msgid "Your IP"
1410
  msgstr "Ваш адрес IP"
1411
 
1412
+ #: dashboard.php:157 dashboard.php:844
1413
  msgid "Check for activity"
1414
  msgstr "Проверить активность"
1415
 
1416
+ #: dashboard.php:160
1417
  msgid "List is empty"
1418
  msgstr "Список пуст"
1419
 
1420
+ #: dashboard.php:164
1421
  msgid "Add IP to the list"
1422
  msgstr "Добавить IP в список"
1423
 
1424
+ #: dashboard.php:187
1425
  msgid "Address %s was added to White IP Access List"
1426
  msgstr "Адрес %s добавлен в белый список доступа"
1427
 
1428
+ #: dashboard.php:200
1429
  msgid "Address %s was added to Black IP Access List"
1430
  msgstr "Адрес %s добавлен в черный список доступа"
1431
 
1432
+ #: dashboard.php:333
1433
  msgid "unknown"
1434
  msgstr "неизвестно"
1435
 
1436
+ #: dashboard.php:196
1437
  msgid "You can't add your IP address"
1438
  msgstr "Вы не можете добавить свой адрес IP"
1439
 
1440
+ #: dashboard.php:360
1441
  msgid "Unable to send notification email"
1442
  msgstr "Невозможно послать письмо с уведомлением"
1443
 
1444
+ #: dashboard.php:357
1445
  msgid "Message has been sent to "
1446
  msgstr "Сообщение было отправлено на"
1447
 
1448
+ #: dashboard.php:368
1449
  msgid "Lockout for %s was removed"
1450
  msgstr "Удалена блокировка для %s"
1451
 
1452
+ #: dashboard.php:385 dashboard.php:1470
1453
  msgid "Settings saved"
1454
  msgstr "Настройки сохранены."
1455
 
1456
+ #: dashboard.php:457 dashboard.php:635
1457
  msgid "Date"
1458
  msgstr "Дата"
1459
 
1460
+ #: dashboard.php:1119 dashboard.php:1315 settings.php:82 settings.php:235
1461
+ #: wp-cerber.php:3418
1462
  msgid "Activity"
1463
  msgstr "Активность"
1464
 
1465
+ #: dashboard.php:659
1466
  msgid "No activity has been logged."
1467
  msgstr "Ни одного события не зафиксировано."
1468
 
1469
+ #: dashboard.php:457 dashboard.php:638 wp-cerber.php:3435
1470
  msgid "Username used"
1471
  msgstr "Использован логин"
1472
 
1473
+ #: dashboard.php:457 dashboard.php:637
1474
  msgid "Local User"
1475
  msgstr "Пользователь"
1476
 
1477
+ #: dashboard.php:862
1478
  msgid "Add IP to the Black List"
1479
  msgstr "Добавить IP в черный список"
1480
 
1481
+ #: dashboard.php:893 dashboard.php:912
1482
  msgid "WP Cerber"
1483
  msgstr "WP Cerber"
1484
 
1485
+ #: dashboard.php:974
1486
  msgid "Comments"
1487
  msgstr "Комментарии"
1488
 
1489
+ #: dashboard.php:975
1490
  msgid "Last login"
1491
  msgstr "Последний вход"
1492
 
1493
+ #: settings.php:116
1494
+ msgid "by date of registration"
1495
+ msgstr "по дате регистрации"
 
 
 
 
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: Mon Nov 20 2017 19:00:01 GMT+0300\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
@@ -28,15 +28,15 @@ msgstr ""
28
  msgid "Remove"
29
  msgstr ""
30
 
31
- #: ../dashboard.php:93 ../dashboard.php:632 ../wp-cerber.php:3427
32
  msgid "IP"
33
  msgstr ""
34
 
35
- #: ../dashboard.php:94 ../dashboard.php:633
36
  msgid "Hostname"
37
  msgstr ""
38
 
39
- #: ../dashboard.php:95 ../dashboard.php:634
40
  msgid "Country"
41
  msgstr ""
42
 
@@ -44,7 +44,7 @@ msgstr ""
44
  msgid "Expires"
45
  msgstr ""
46
 
47
- #: ../dashboard.php:97 ../wp-cerber.php:2981
48
  msgid "Reason"
49
  msgstr ""
50
 
@@ -69,8 +69,8 @@ msgstr ""
69
  msgid "No lockouts at the moment. The sky is clear."
70
  msgstr ""
71
 
72
- #: ../dashboard.php:131 ../dashboard.php:590 ../dashboard.php:812 ../dashboard.
73
- #: php:1110 ../wp-cerber.php:3566 ../settings.php:61 ../settings.php:205
74
  msgid "White IP Access List"
75
  msgstr ""
76
 
@@ -78,8 +78,8 @@ msgstr ""
78
  msgid "These IPs will never be locked out"
79
  msgstr ""
80
 
81
- #: ../dashboard.php:133 ../dashboard.php:591 ../dashboard.php:814 ../dashboard.
82
- #: php:1111
83
  msgid "Black IP Access List"
84
  msgstr ""
85
 
@@ -91,7 +91,7 @@ msgstr ""
91
  msgid "Your IP"
92
  msgstr ""
93
 
94
- #: ../dashboard.php:157 ../dashboard.php:844
95
  msgid "Check for activity"
96
  msgstr ""
97
 
@@ -121,7 +121,7 @@ msgstr ""
121
  msgid "Address %s was added to Black IP Access List"
122
  msgstr ""
123
 
124
- #: ../dashboard.php:291 ../whois.php:221 ../whois.php:252 ../common.php:552
125
  msgid "Unknown"
126
  msgstr ""
127
 
@@ -130,11 +130,11 @@ msgid "unknown"
130
  msgstr ""
131
 
132
  #: ../dashboard.php:357
133
- msgid "Message has been sent to "
134
  msgstr ""
135
 
136
  #: ../dashboard.php:360
137
- msgid "Unable to send notification email"
138
  msgstr ""
139
 
140
  #: ../dashboard.php:368
@@ -142,7 +142,7 @@ msgstr ""
142
  msgid "Lockout for %s was removed"
143
  msgstr ""
144
 
145
- #: ../dashboard.php:385 ../dashboard.php:1470
146
  msgid "Settings saved"
147
  msgstr ""
148
 
@@ -150,15 +150,15 @@ msgstr ""
150
  msgid "IP address"
151
  msgstr ""
152
 
153
- #: ../dashboard.php:457 ../dashboard.php:635
154
  msgid "Date"
155
  msgstr ""
156
 
157
- #: ../dashboard.php:457 ../dashboard.php:636
158
  msgid "Event"
159
  msgstr ""
160
 
161
- #: ../dashboard.php:457 ../dashboard.php:637
162
  msgid "Local User"
163
  msgstr ""
164
 
@@ -170,333 +170,335 @@ msgstr ""
170
  msgid "User ID"
171
  msgstr ""
172
 
173
- #: ../dashboard.php:457 ../dashboard.php:638 ../wp-cerber.php:3435
174
  msgid "Username used"
175
  msgstr ""
176
 
177
- #: ../dashboard.php:595 ../dashboard.php:817 ../common.php:523
178
  msgid "Locked out"
179
  msgstr ""
180
 
181
- #: ../dashboard.php:655
182
  msgid "Export"
183
  msgstr ""
184
 
185
- #: ../dashboard.php:659
186
  msgid "No activity has been logged."
187
  msgstr ""
188
 
189
- #: ../dashboard.php:665
190
  msgid "All events"
191
  msgstr ""
192
 
193
- #: ../dashboard.php:674
194
  msgid "Search for IP or username"
195
  msgstr ""
196
 
197
- #: ../dashboard.php:674
198
  msgid "Filter"
199
  msgstr ""
200
 
201
- #: ../dashboard.php:840
202
  msgid "Abuse email:"
203
  msgstr ""
204
 
205
- #: ../dashboard.php:844
206
  msgid "Network:"
207
  msgstr ""
208
 
209
- #: ../dashboard.php:858
210
  msgid "Add network to the Black List"
211
  msgstr ""
212
 
213
- #: ../dashboard.php:862
214
  msgid "Add IP to the Black List"
215
  msgstr ""
216
 
217
- #: ../dashboard.php:893 ../settings.php:228
218
  msgid "WP Cerber Security"
219
  msgstr ""
220
 
221
  #. Name of the plugin
222
- #: ../dashboard.php:893 ../dashboard.php:912
223
  msgid "WP Cerber"
224
  msgstr ""
225
 
226
- #: ../dashboard.php:895
227
  msgid "Cerber Dashboard"
228
  msgstr ""
229
 
230
- #: ../dashboard.php:895 ../dashboard.php:1118 ../dashboard.php:1637 ../settings.
231
- #: php:233
232
  msgid "Dashboard"
233
  msgstr ""
234
 
235
- #: ../dashboard.php:898
236
  msgid "Cerber Security Rules"
237
  msgstr ""
238
 
239
- #: ../dashboard.php:898 ../dashboard.php:1978
240
  msgid "Security Rules"
241
  msgstr ""
242
 
243
- #: ../dashboard.php:901
244
  msgid "Cerber antispam settings"
245
  msgstr ""
246
 
247
- #: ../dashboard.php:901 ../wp-cerber.php:3575 ../settings.php:152
248
  msgid "Antispam"
249
  msgstr ""
250
 
251
- #: ../dashboard.php:902
252
  msgid "Cerber tools"
253
  msgstr ""
254
 
255
- #: ../dashboard.php:902 ../cerber-tools.php:43
256
  msgid "Tools"
257
  msgstr ""
258
 
259
- #: ../dashboard.php:974
260
  msgid "Comments"
261
  msgstr ""
262
 
263
- #: ../dashboard.php:975
264
  msgid "Last login"
265
  msgstr ""
266
 
267
- #: ../dashboard.php:976
268
  msgid "Failed login attempts"
269
  msgstr ""
270
 
271
- #: ../dashboard.php:977
272
  msgid "Registered"
273
  msgstr ""
274
 
275
- #: ../dashboard.php:1008 ../dashboard.php:1093
276
  msgid "Never"
277
  msgstr ""
278
 
279
- #: ../dashboard.php:1044
280
  msgid "You"
281
  msgstr ""
282
 
283
- #: ../dashboard.php:1062
284
  msgid "Cerber Quick View"
285
  msgstr ""
286
 
287
- #: ../dashboard.php:1097
288
  msgid "active"
289
  msgstr ""
290
 
291
- #: ../dashboard.php:1097
292
  msgid "deactivate"
293
  msgstr ""
294
 
295
- #: ../dashboard.php:1099
296
  msgid "not active"
297
  msgstr ""
298
 
299
- #: ../dashboard.php:1100
300
  msgid "disabled"
301
  msgstr ""
302
 
303
- #: ../dashboard.php:1105
304
  msgid "failed attempts"
305
  msgstr ""
306
 
307
- #: ../dashboard.php:1105 ../dashboard.php:1106
308
  msgid "in 24 hours"
309
  msgstr ""
310
 
311
- #: ../dashboard.php:1105 ../dashboard.php:1106
312
  msgid "view all"
313
  msgstr ""
314
 
315
- #: ../dashboard.php:1106
316
  msgid "lockouts"
317
  msgstr ""
318
 
319
- #: ../dashboard.php:1108
320
  msgid "Lockouts at the moment"
321
  msgstr ""
322
 
323
- #: ../dashboard.php:1109
324
  msgid "Last lockout"
325
  msgstr ""
326
 
327
- #: ../dashboard.php:1110 ../dashboard.php:1111 ../dashboard.php:1617
328
  msgid "entry"
329
  msgid_plural "entries"
330
  msgstr[0] ""
331
  msgstr[1] ""
332
 
333
- #: ../dashboard.php:1112 ../settings.php:76
334
  msgid "Citadel mode"
335
  msgstr ""
336
 
337
- #: ../dashboard.php:1114 ../settings.php:166
338
  msgid "Push notifications"
339
  msgstr ""
340
 
341
- #: ../dashboard.php:1119 ../dashboard.php:1315 ../wp-cerber.php:3418 ../settings.
342
- #: php:82 ../settings.php:235
343
  msgid "Activity"
344
  msgstr ""
345
 
346
- #: ../dashboard.php:1120 ../settings.php:239
347
  msgid "Lockouts"
348
  msgstr ""
349
 
350
- #: ../dashboard.php:1121 ../wp-cerber.php:3574 ../settings.php:244 ../cerber-
351
- #: tools.php:88 ../cerber-tools.php:97 ../cerber-tools.php:171
352
  msgid "Access Lists"
353
  msgstr ""
354
 
355
- #: ../dashboard.php:1167 ../settings.php:63
356
  msgid "My site is behind a reverse proxy"
357
  msgstr ""
358
 
359
- #: ../dashboard.php:1295
360
  msgid "in the last 24 hours"
361
  msgstr ""
362
 
363
- #: ../dashboard.php:1301 ../dashboard.php:1330
364
  msgid "View all"
365
  msgstr ""
366
 
367
- #: ../dashboard.php:1309 ../common.php:478
368
  msgid "User registered"
369
  msgstr ""
370
 
371
- #: ../dashboard.php:1310
372
  msgid "All suspicious activity"
373
  msgstr ""
374
 
375
- #: ../dashboard.php:1331
376
  msgid "Recently locked out IP addresses"
377
  msgstr ""
378
 
379
- #: ../dashboard.php:1354
380
  msgid "Confused about some settings?"
381
  msgstr ""
382
 
383
- #: ../dashboard.php:1355
384
  msgid "You can easily load default recommended settings using button below"
385
  msgstr ""
386
 
387
- #: ../dashboard.php:1357
388
  msgid "Load default settings"
389
  msgstr ""
390
 
391
- #: ../dashboard.php:1359
392
  msgid "Are you sure?"
393
  msgstr ""
394
 
395
- #: ../dashboard.php:1365
396
  msgid "doesn't affect Custom login URL and Access Lists"
397
  msgstr ""
398
 
399
- #: ../dashboard.php:1366 ../wp-cerber.php:3013 ../wp-cerber.php:3568
400
  msgid "Getting Started Guide"
401
  msgstr ""
402
 
403
- #: ../dashboard.php:1455
404
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
405
  msgstr ""
406
 
407
- #: ../dashboard.php:1456
408
  msgid "Deactivate"
409
  msgstr ""
410
 
411
- #: ../dashboard.php:1457
412
  msgid "View Activity"
413
  msgstr ""
414
 
415
- #: ../dashboard.php:1550
416
  msgid "Subscribe"
417
  msgstr ""
418
 
419
- #: ../dashboard.php:1551 ../cerber-tools.php:236
420
  msgid "Unsubscribe"
421
  msgstr ""
422
 
423
- #: ../dashboard.php:1579
424
  msgid "You've subscribed"
425
  msgstr ""
426
 
427
- #: ../dashboard.php:1582
428
  msgid "You've unsubscribed"
429
  msgstr ""
430
 
431
- #: ../dashboard.php:1638
432
  msgid "Main settings"
433
  msgstr ""
434
 
435
- #: ../dashboard.php:1983
436
  msgid "Countries"
437
  msgstr ""
438
 
439
- #: ../dashboard.php:2048
440
  #, php-format
441
  msgid "Permitted for one country"
442
  msgid_plural "Permitted for %d countries"
443
  msgstr[0] ""
444
  msgstr[1] ""
445
 
446
- #: ../dashboard.php:2051
447
  #, php-format
448
- msgid "Blocked for one country"
449
- msgid_plural "Blocked for %d countries"
450
  msgstr[0] ""
451
  msgstr[1] ""
452
 
453
- #: ../dashboard.php:2059
454
  msgid "No rule"
455
  msgstr ""
456
 
457
- #: ../dashboard.php:2115
458
  msgid "Start typing here to find a country"
459
  msgstr ""
460
 
461
- #: ../dashboard.php:2196
462
  msgid "Click on a country name to add it to the list of selected countries"
463
  msgstr ""
464
 
465
- #: ../dashboard.php:2200
466
  #, php-format
467
- msgid "Selected countries are allowed to %s other countries are not allowed"
 
468
  msgstr ""
469
 
470
- #: ../dashboard.php:2203
471
  #, php-format
472
- msgid "Selected countries are not allowed to %s other countries are allowed"
 
473
  msgstr ""
474
 
475
- #: ../dashboard.php:2215
476
  msgid "Submit forms"
477
  msgstr ""
478
 
479
- #: ../dashboard.php:2216
480
  msgid "Post comments"
481
  msgstr ""
482
 
483
- #: ../dashboard.php:2217
484
  msgid "Log in to the website"
485
  msgstr ""
486
 
487
- #: ../dashboard.php:2218
488
  msgid "Register on the website"
489
  msgstr ""
490
 
491
- #: ../dashboard.php:2219
492
  msgid "Use XML-RPC"
493
  msgstr ""
494
 
495
- #: ../dashboard.php:2220
496
  msgid "Use REST API"
497
  msgstr ""
498
 
499
- #: ../dashboard.php:2260
500
  msgid "Security rules have been updated"
501
  msgstr ""
502
 
@@ -513,7 +515,7 @@ msgid ""
513
  "Protects site from brute force attacks, bots and hackers. Antispam "
514
  "protection with the Cerber antispam engine and reCAPTCHA. Comprehensive "
515
  "control of user activity. Restrict login by IP access lists. Limit login "
516
- "attempts. Know more: <a href=\"http://wpcerber.com\">wpcerber.com</a>."
517
  msgstr ""
518
 
519
  #. Author of the plugin
@@ -536,208 +538,221 @@ msgid_plural "You have %d attempts remaining."
536
  msgstr[0] ""
537
  msgstr[1] ""
538
 
539
- #: ../wp-cerber.php:565 ../wp-cerber.php:577 ../wp-cerber.php:584 ../wp-cerber.
540
- #: php:773 ../wp-cerber.php:988 ../wp-cerber.php:994 ../wp-cerber.php:999 ../wp-
541
- #: cerber.php:1004 ../wp-cerber.php:1010 ../wp-cerber.php:1017 ../wp-cerber.php:
542
- #: 1118 ../wp-cerber.php:1255 ../common.php:171 ../common.php:224 ../common.php:
543
- #: 228 ../settings.php:695
544
  msgid "ERROR:"
545
  msgstr ""
546
 
547
- #: ../wp-cerber.php:594
548
  msgid ""
549
  "Human verification failed. Please click the square box in the reCAPTCHA "
550
  "block below."
551
  msgstr ""
552
 
553
- #: ../wp-cerber.php:653
554
  msgid ""
555
  "> > > Translator of WP Cerber? To get the PRO license for free, drop your "
556
  "contacts here: https://wpcerber.com/contact/"
557
  msgstr ""
558
 
559
- #: ../wp-cerber.php:784
560
  #, php-format
561
  msgid ""
562
  "<strong>ERROR</strong>: The password you entered for the username %s is "
563
  "incorrect."
564
  msgstr ""
565
 
566
- #: ../wp-cerber.php:989 ../wp-cerber.php:995 ../wp-cerber.php:1011 ../wp-cerber.
567
- #: php:1018
568
  msgid "You are not allowed to register."
569
  msgstr ""
570
 
571
- #: ../wp-cerber.php:1005
572
  msgid "Username is not allowed. Please choose another one."
573
  msgstr ""
574
 
575
- #: ../wp-cerber.php:1255
576
  msgid "Sorry, human verification failed."
577
  msgstr ""
578
 
579
- #: ../wp-cerber.php:2923
580
  msgid "WP Cerber notify"
581
  msgstr ""
582
 
583
- #: ../wp-cerber.php:2945
584
  msgid "Citadel mode is activated"
585
  msgstr ""
586
 
587
- #: ../wp-cerber.php:2947
588
  #, php-format
589
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
590
  msgstr ""
591
 
592
- #: ../wp-cerber.php:2948
593
  #, php-format
594
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
595
  msgstr ""
596
 
597
- #: ../wp-cerber.php:2949 ../wp-cerber.php:3459
598
  msgid "View activity in dashboard"
599
  msgstr ""
600
 
601
- #: ../wp-cerber.php:2974
602
  msgid "unspecified"
603
  msgstr ""
604
 
605
- #: ../wp-cerber.php:2977
606
  msgid "Number of lockouts is increasing"
607
  msgstr ""
608
 
609
- #: ../wp-cerber.php:2979
610
  msgid "Number of active lockouts"
611
  msgstr ""
612
 
613
- #: ../wp-cerber.php:2980
614
  #, php-format
615
  msgid "Last lockout was added: %s for IP %s"
616
  msgstr ""
617
 
618
- #: ../wp-cerber.php:2982
619
  msgid "View activity for this IP"
620
  msgstr ""
621
 
622
- #: ../wp-cerber.php:2983
623
  msgid "View lockouts in dashboard"
624
  msgstr ""
625
 
626
- #: ../wp-cerber.php:2986 ../wp-cerber.php:2988
627
  msgid "A new version of WP Cerber is available to install"
628
  msgstr ""
629
 
630
- #: ../wp-cerber.php:2987
631
  msgid "Hi!"
632
  msgstr ""
633
 
634
- #: ../wp-cerber.php:2990 ../wp-cerber.php:3001
635
  msgid "Website"
636
  msgstr ""
637
 
638
- #: ../wp-cerber.php:2993 ../wp-cerber.php:2994
639
  msgid "The WP Cerber security plugin has been deactivated"
640
  msgstr ""
641
 
642
- #: ../wp-cerber.php:2996
643
  msgid "Not logged in"
644
  msgstr ""
645
 
646
- #: ../wp-cerber.php:3002
647
  msgid "By user"
648
  msgstr ""
649
 
650
- #: ../wp-cerber.php:3003
651
  msgid "From IP address"
652
  msgstr ""
653
 
654
- #: ../wp-cerber.php:3006
655
  msgid "From country"
656
  msgstr ""
657
 
658
- #: ../wp-cerber.php:3010
659
  msgid "The WP Cerber security plugin is now active"
660
  msgstr ""
661
 
662
- #: ../wp-cerber.php:3011 ../wp-cerber.php:3565
663
  msgid "WP Cerber is now active and has started protecting your site"
664
  msgstr ""
665
 
666
- #: ../wp-cerber.php:3019
667
  msgid "New Custom login URL"
668
  msgstr ""
669
 
670
- #: ../wp-cerber.php:3023 ../wp-cerber.php:3024
671
  msgid "A new activity has been recorded"
672
  msgstr ""
673
 
674
- #: ../wp-cerber.php:3029 ../wp-cerber.php:3136
675
  msgid "Weekly report"
676
  msgstr ""
677
 
678
- #: ../wp-cerber.php:3032
679
  msgid "To change reporting settings visit"
680
  msgstr ""
681
 
682
- #: ../wp-cerber.php:3055
683
  msgid "Your login page:"
684
  msgstr ""
685
 
686
- #: ../wp-cerber.php:3059
687
  msgid "Your license is valid until"
688
  msgstr ""
689
 
690
- #: ../wp-cerber.php:3062
691
  msgid "This message was sent by"
692
  msgstr ""
693
 
694
- #: ../wp-cerber.php:3148
 
 
 
 
 
 
 
 
 
695
  msgid "Activity details"
696
  msgstr ""
697
 
698
- #: ../wp-cerber.php:3431
 
 
 
 
699
  msgid "User"
700
  msgstr ""
701
 
702
- #: ../wp-cerber.php:3439
703
  msgid "Search string"
704
  msgstr ""
705
 
706
- #: ../wp-cerber.php:3460
707
  msgid "To unsubscribe click here"
708
  msgstr ""
709
 
710
- #: ../wp-cerber.php:3540
711
  #, php-format
712
  msgid "The WP Cerber requires PHP %s or higher. You are running"
713
  msgstr ""
714
 
715
- #: ../wp-cerber.php:3544
716
  #, php-format
717
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
718
  msgstr ""
719
 
720
- #: ../wp-cerber.php:3549
721
  msgid "Can't activate WP Cerber due to a database error."
722
  msgstr ""
723
 
724
- #: ../wp-cerber.php:3566
725
  msgid "Your IP address is added to the"
726
  msgstr ""
727
 
728
- #: ../wp-cerber.php:3573 ../settings.php:241
729
  msgid "Main Settings"
730
  msgstr ""
731
 
732
- #: ../wp-cerber.php:3576 ../settings.php:246
733
  msgid "Hardening"
734
  msgstr ""
735
 
736
- #: ../wp-cerber.php:3577 ../settings.php:62 ../settings.php:80 ../settings.php:251
737
  msgid "Notifications"
738
  msgstr ""
739
 
740
- #: ../wp-cerber.php:3578
741
  msgid "Import settings"
742
  msgstr ""
743
 
@@ -761,165 +776,169 @@ msgstr ""
761
  msgid "Lockouts occurred"
762
  msgstr ""
763
 
764
- #: ../common.php:477
765
  msgid "User created"
766
  msgstr ""
767
 
768
- #: ../common.php:479
769
  msgid "Logged in"
770
  msgstr ""
771
 
772
- #: ../common.php:480
773
  msgid "Logged out"
774
  msgstr ""
775
 
776
- #: ../common.php:481
777
  msgid "Login failed"
778
  msgstr ""
779
 
780
- #: ../common.php:484
781
  msgid "IP blocked"
782
  msgstr ""
783
 
784
- #: ../common.php:485
785
  msgid "Subnet blocked"
786
  msgstr ""
787
 
788
- #: ../common.php:487
789
  msgid "Citadel activated!"
790
  msgstr ""
791
 
792
- #: ../common.php:488
793
  msgid "Spam comment denied"
794
  msgstr ""
795
 
796
- #: ../common.php:489
797
  msgid "Spam form submission denied"
798
  msgstr ""
799
 
800
- #: ../common.php:490
801
  msgid "Form submission denied"
802
  msgstr ""
803
 
804
- #: ../common.php:491
805
  msgid "Comment denied"
806
  msgstr ""
807
 
808
- #: ../common.php:502
809
  msgid "Password changed"
810
  msgstr ""
811
 
812
- #: ../common.php:503
813
  msgid "Password reset requested"
814
  msgstr ""
815
 
816
- #: ../common.php:505
817
  msgid "reCAPTCHA verification failed"
818
  msgstr ""
819
 
820
- #: ../common.php:506
821
  msgid "reCAPTCHA settings are incorrect"
822
  msgstr ""
823
 
824
- #: ../common.php:507
825
  msgid "Request to the Google reCAPTCHA service failed"
826
  msgstr ""
827
 
828
- #: ../common.php:509
829
  msgid "Attempt to access prohibited URL"
830
  msgstr ""
831
 
832
- #: ../common.php:510 ../common.php:555
833
  msgid "Attempt to log in with non-existent username"
834
  msgstr ""
835
 
836
- #: ../common.php:511 ../common.php:556
837
  msgid "Attempt to log in with prohibited username"
838
  msgstr ""
839
 
840
- #: ../common.php:513
841
  msgid "Attempt to log in denied"
842
  msgstr ""
843
 
844
- #: ../common.php:514
845
  msgid "Attempt to register denied"
846
  msgstr ""
847
 
848
- #: ../common.php:516
849
  msgid "Request to REST API denied"
850
  msgstr ""
851
 
852
- #: ../common.php:517
853
  msgid "XML-RPC request denied"
854
  msgstr ""
855
 
856
- #: ../common.php:521
857
  msgid "Bot detected"
858
  msgstr ""
859
 
860
- #: ../common.php:522
861
  msgid "Citadel mode is active"
862
  msgstr ""
863
 
864
- #: ../common.php:524
865
  msgid "IP blacklisted"
866
  msgstr ""
867
 
868
- #: ../common.php:527
869
  msgid "Malicious activity detected"
870
  msgstr ""
871
 
872
- #: ../common.php:528
873
  msgid "Blocked by country rule"
874
  msgstr ""
875
 
876
- #: ../common.php:529
877
  msgid "Limit reached"
878
  msgstr ""
879
 
880
- #: ../common.php:530
881
  msgid "Multiple suspicious activities"
882
  msgstr ""
883
 
884
- #: ../common.php:553
885
  msgid "Limit on login attempts is reached"
886
  msgstr ""
887
 
888
- #: ../common.php:554
889
  msgid "Attempt to access"
890
  msgstr ""
891
 
892
- #: ../common.php:557
893
  msgid "Limit on failed reCAPTCHA verifications is reached"
894
  msgstr ""
895
 
896
- #: ../common.php:558
897
  msgid "Bot activity is detected"
898
  msgstr ""
899
 
900
- #: ../common.php:559
901
  msgid "Multiple suspicious activities were detected"
902
  msgstr ""
903
 
904
- #: ../common.php:602
905
  #, php-format
906
  msgid "%s ago"
907
  msgstr ""
908
 
909
- #: ../common.php:736
910
  msgid "New version is available"
911
  msgstr ""
912
 
913
- #: ../common.php:743
914
  #, php-format
915
  msgid "Update to version %s of WP Cerber"
916
  msgstr ""
917
 
918
- #: ../cerber-lab.php:656
 
 
 
 
919
  msgid "Want to make WP Cerber even more powerful?"
920
  msgstr ""
921
 
922
- #: ../cerber-lab.php:657
923
  msgid ""
924
  "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. "
925
  "This helps the plugin team to develop new algorithms for WP Cerber that will "
@@ -927,565 +946,585 @@ msgid ""
927
  "everyday. You can disable the sending in the plugin settings at any time."
928
  msgstr ""
929
 
930
- #: ../cerber-lab.php:658
931
  msgid "OK, nail them all"
932
  msgstr ""
933
 
934
- #: ../cerber-lab.php:659
935
  msgid "NO, maybe later"
936
  msgstr ""
937
 
938
- #: ../cerber-lab.php:660 ../settings.php:209
939
  msgid "Know more"
940
  msgstr ""
941
 
942
- #: ../settings.php:57
943
  msgid "Limit login attempts"
944
  msgstr ""
945
 
946
- #: ../settings.php:58
947
  msgid "Attempts"
948
  msgstr ""
949
 
950
- #: ../settings.php:59
951
  msgid "Lockout duration"
952
  msgstr ""
953
 
954
- #: ../settings.php:59 ../settings.php:78
955
  msgid "minutes"
956
  msgstr ""
957
 
958
- #: ../settings.php:60
959
  msgid "Aggressive lockout"
960
  msgstr ""
961
 
962
- #: ../settings.php:61
963
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
964
  msgstr ""
965
 
966
- #: ../settings.php:63
967
  msgid "Site connection"
968
  msgstr ""
969
 
970
- #: ../settings.php:65
971
  msgid "Proactive security rules"
972
  msgstr ""
973
 
974
- #: ../settings.php:66
975
  msgid "Block subnet"
976
  msgstr ""
977
 
978
- #: ../settings.php:66
979
  msgid "Always block entire subnet Class C of intruders IP"
980
  msgstr ""
981
 
982
- #: ../settings.php:67
983
  msgid "Non-existent users"
984
  msgstr ""
985
 
986
- #: ../settings.php:67
987
  msgid "Immediately block IP when attempting to login with a non-existent username"
988
  msgstr ""
989
 
990
- #: ../settings.php:68
991
  msgid "Redirect dashboard requests"
992
  msgstr ""
993
 
994
- #: ../settings.php:68
995
  msgid ""
996
  "Disable automatic redirecting to the login page when /wp-admin/ is requested "
997
  "by an unauthorized request"
998
  msgstr ""
999
 
1000
- #: ../settings.php:69
1001
  msgid "Request wp-login.php"
1002
  msgstr ""
1003
 
1004
- #: ../settings.php:69
1005
  msgid "Immediately block IP after any request to wp-login.php"
1006
  msgstr ""
1007
 
1008
- #: ../settings.php:70
1009
  msgid "Display 404 page"
1010
  msgstr ""
1011
 
1012
- #: ../settings.php:72
 
 
 
 
 
 
 
 
1013
  msgid "Custom login page"
1014
  msgstr ""
1015
 
1016
- #: ../settings.php:73
1017
  msgid "Custom login URL"
1018
  msgstr ""
1019
 
1020
- #: ../settings.php:73
1021
  msgid "must not overlap with the existing pages or posts slug"
1022
  msgstr ""
1023
 
1024
- #: ../settings.php:74
1025
  msgid "Disable wp-login.php"
1026
  msgstr ""
1027
 
1028
- #: ../settings.php:74
1029
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
1030
  msgstr ""
1031
 
1032
- #: ../settings.php:77
1033
  msgid "Threshold"
1034
  msgstr ""
1035
 
1036
- #: ../settings.php:78
1037
  msgid "Duration"
1038
  msgstr ""
1039
 
1040
- #: ../settings.php:80
1041
  msgid "Send notification to admin email"
1042
  msgstr ""
1043
 
1044
- #: ../settings.php:80 ../settings.php:385 ../settings.php:511
1045
  msgid "Click to send test"
1046
  msgstr ""
1047
 
1048
- #: ../settings.php:83
1049
  msgid "Keep records for"
1050
  msgstr ""
1051
 
1052
- #: ../settings.php:83 ../settings.php:135
1053
  msgid "days"
1054
  msgstr ""
1055
 
1056
- #: ../settings.php:84
1057
  msgid "Cerber Lab connection"
1058
  msgstr ""
1059
 
1060
- #: ../settings.php:84
1061
  msgid "Send malicious IP addresses to the Cerber Lab"
1062
  msgstr ""
1063
 
1064
- #: ../settings.php:85
1065
  msgid "Cerber Lab protocol"
1066
  msgstr ""
1067
 
1068
- #: ../settings.php:86
1069
  msgid "Use file"
1070
  msgstr ""
1071
 
1072
- #: ../settings.php:86
1073
  msgid "Write failed login attempts to the file"
1074
  msgstr ""
1075
 
1076
- #: ../settings.php:88
1077
  msgid "Preferences"
1078
  msgstr ""
1079
 
1080
- #: ../settings.php:89
1081
  msgid "Drill down IP"
1082
  msgstr ""
1083
 
1084
- #: ../settings.php:89
1085
  msgid "Retrieve extra WHOIS information for IP"
1086
  msgstr ""
1087
 
1088
- #: ../settings.php:90
1089
  msgid "Date format"
1090
  msgstr ""
1091
 
1092
- #: ../settings.php:90
1093
  #, php-format
1094
  msgid "if empty, the default format %s will be used"
1095
  msgstr ""
1096
 
1097
- #: ../settings.php:97
1098
  msgid "Hardening WordPress"
1099
  msgstr ""
1100
 
1101
- #: ../settings.php:98
1102
  msgid "Stop user enumeration"
1103
  msgstr ""
1104
 
1105
- #: ../settings.php:98
1106
  msgid "Block access to user pages like /?author=n and user data via REST API"
1107
  msgstr ""
1108
 
1109
- #: ../settings.php:99
1110
  msgid "Disable XML-RPC"
1111
  msgstr ""
1112
 
1113
- #: ../settings.php:99
1114
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
1115
  msgstr ""
1116
 
1117
- #: ../settings.php:100
1118
  msgid "Disable feeds"
1119
  msgstr ""
1120
 
1121
- #: ../settings.php:100
1122
  msgid "Block access to the RSS, Atom and RDF feeds"
1123
  msgstr ""
1124
 
1125
- #: ../settings.php:101
1126
  msgid "Disable REST API"
1127
  msgstr ""
1128
 
1129
- #: ../settings.php:101
1130
  msgid "Block access to the WordPress REST API except the following"
1131
  msgstr ""
1132
 
1133
- #: ../settings.php:102
1134
  msgid "Allow REST API for logged in users"
1135
  msgstr ""
1136
 
1137
- #: ../settings.php:103
1138
  msgid ""
1139
  "Specify REST API namespaces to be allowed if REST API is disabled. One "
1140
  "string per line."
1141
  msgstr ""
1142
 
1143
- #: ../settings.php:112
1144
  msgid "User related settings"
1145
  msgstr ""
1146
 
1147
- #: ../settings.php:113
1148
  msgid "Registration limit"
1149
  msgstr ""
1150
 
1151
- #: ../settings.php:114
1152
  msgid "Prohibited usernames"
1153
  msgstr ""
1154
 
1155
- #: ../settings.php:114
1156
  msgid ""
1157
  "Usernames from this list are not allowed to log in or register. Any IP "
1158
  "address, have tried to use any of these usernames, will be immediately "
1159
  "blocked. Use comma to separate logins."
1160
  msgstr ""
1161
 
1162
- #: ../settings.php:115
 
 
 
 
1163
  msgid "User session expire"
1164
  msgstr ""
1165
 
1166
- #: ../settings.php:115
1167
  msgid "in minutes (leave empty to use default WP value)"
1168
  msgstr ""
1169
 
1170
- #: ../settings.php:116
1171
  msgid "Sort users in dashboard"
1172
  msgstr ""
1173
 
1174
- #: ../settings.php:116
1175
  msgid "by date of registration"
1176
  msgstr ""
1177
 
1178
- #: ../settings.php:123
1179
  msgid "Cerber antispam engine"
1180
  msgstr ""
1181
 
1182
- #: ../settings.php:124
1183
  msgid "Comment form"
1184
  msgstr ""
1185
 
1186
- #: ../settings.php:124
1187
  msgid "Protect comment form with bot detection engine"
1188
  msgstr ""
1189
 
1190
- #: ../settings.php:125 ../settings.php:143
1191
  msgid "Registration form"
1192
  msgstr ""
1193
 
1194
- #: ../settings.php:125
1195
  msgid "Protect registration form with bot detection engine"
1196
  msgstr ""
1197
 
1198
- #: ../settings.php:126
1199
  msgid "Other forms"
1200
  msgstr ""
1201
 
1202
- #: ../settings.php:126
1203
  msgid "Protect all forms on the website with bot detection engine"
1204
  msgstr ""
1205
 
1206
- #: ../settings.php:128
1207
  msgid "Adjust antispam engine"
1208
  msgstr ""
1209
 
1210
- #: ../settings.php:129
1211
  msgid "Safe mode"
1212
  msgstr ""
1213
 
1214
- #: ../settings.php:129
1215
  msgid "Use less restrictive policies (allow AJAX)"
1216
  msgstr ""
1217
 
1218
- #: ../settings.php:130
1219
  msgid "Logged in users"
1220
  msgstr ""
1221
 
1222
- #: ../settings.php:130
1223
  msgid "Disable bot detection engine for logged in users"
1224
  msgstr ""
1225
 
1226
- #: ../settings.php:131
1227
  msgid "Query whitelist"
1228
  msgstr ""
1229
 
1230
- #: ../settings.php:131
1231
  msgid ""
1232
- "Specify search strings to search in a request URI to exclude the request "
1233
- "from inspection by the engine. One string per line."
1234
  msgstr ""
1235
 
1236
- #: ../settings.php:133
1237
  msgid "Comment processing"
1238
  msgstr ""
1239
 
1240
- #: ../settings.php:134
1241
  msgid "If a spam comment detected"
1242
  msgstr ""
1243
 
1244
- #: ../settings.php:134
1245
  msgid "Deny it completely"
1246
  msgstr ""
1247
 
1248
- #: ../settings.php:134
1249
  msgid "Mark it as spam"
1250
  msgstr ""
1251
 
1252
- #: ../settings.php:135
1253
  msgid "Trash spam comments"
1254
  msgstr ""
1255
 
1256
- #: ../settings.php:135
1257
  msgid "Move spam comments to trash after"
1258
  msgstr ""
1259
 
1260
- #: ../settings.php:138
1261
  msgid "reCAPTCHA settings"
1262
  msgstr ""
1263
 
1264
- #: ../settings.php:139
1265
  msgid "Site key"
1266
  msgstr ""
1267
 
1268
- #: ../settings.php:140
1269
  msgid "Secret key"
1270
  msgstr ""
1271
 
1272
- #: ../settings.php:141
1273
  msgid "Invisible reCAPTCHA"
1274
  msgstr ""
1275
 
1276
- #: ../settings.php:141
1277
  msgid "Enable invisible reCAPTCHA"
1278
  msgstr ""
1279
 
1280
- #: ../settings.php:141
1281
  msgid ""
1282
  "(do not enable it unless you get and enter the Site and Secret keys for the "
1283
  "invisible version)"
1284
  msgstr ""
1285
 
1286
- #: ../settings.php:143
1287
  msgid "Enable reCAPTCHA for WordPress registration form"
1288
  msgstr ""
1289
 
1290
- #: ../settings.php:144
1291
  msgid "Enable reCAPTCHA for WooCommerce registration form"
1292
  msgstr ""
1293
 
1294
- #: ../settings.php:146
1295
  msgid "Lost password form"
1296
  msgstr ""
1297
 
1298
- #: ../settings.php:146
1299
  msgid "Enable reCAPTCHA for WordPress lost password form"
1300
  msgstr ""
1301
 
1302
- #: ../settings.php:147
1303
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
1304
  msgstr ""
1305
 
1306
- #: ../settings.php:149
1307
  msgid "Login form"
1308
  msgstr ""
1309
 
1310
- #: ../settings.php:149
1311
  msgid "Enable reCAPTCHA for WordPress login form"
1312
  msgstr ""
1313
 
1314
- #: ../settings.php:150
1315
  msgid "Enable reCAPTCHA for WooCommerce login form"
1316
  msgstr ""
1317
 
1318
- #: ../settings.php:152
1319
  msgid "Enable reCAPTCHA for WordPress comment form"
1320
  msgstr ""
1321
 
1322
- #: ../settings.php:153
1323
  msgid "Disable reCAPTCHA for logged in users"
1324
  msgstr ""
1325
 
1326
- #: ../settings.php:155
1327
  msgid "Limit attempts"
1328
  msgstr ""
1329
 
1330
- #: ../settings.php:155
1331
  #, php-format
1332
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1333
  msgstr ""
1334
 
1335
- #: ../settings.php:161
1336
  msgid "Email notifications"
1337
  msgstr ""
1338
 
1339
- #: ../settings.php:163
1340
  msgid "Email Address"
1341
  msgstr ""
1342
 
1343
- #: ../settings.php:163
1344
  msgid "Use comma to specify multiple values"
1345
  msgstr ""
1346
 
1347
- #: ../settings.php:163
1348
  #, php-format
1349
  msgid "if empty, the admin email %s will be used"
1350
  msgstr ""
1351
 
1352
- #: ../settings.php:164
1353
  msgid "Notification limit"
1354
  msgstr ""
1355
 
1356
- #: ../settings.php:164
1357
  msgid "notification letters allowed per hour (0 means unlimited)"
1358
  msgstr ""
1359
 
1360
- #: ../settings.php:173
1361
  msgid "All connected devices"
1362
  msgstr ""
1363
 
1364
- #: ../settings.php:174
1365
  msgid "No devices found"
1366
  msgstr ""
1367
 
1368
- #: ../settings.php:176
1369
  msgid "Not available"
1370
  msgstr ""
1371
 
1372
- #: ../settings.php:181
1373
  msgid "Weekly reports"
1374
  msgstr ""
1375
 
1376
- #: ../settings.php:191
 
 
 
 
 
 
 
 
1377
  msgid "Make your protection smarter!"
1378
  msgstr ""
1379
 
1380
- #: ../settings.php:195
1381
  msgid ""
1382
  "Please enable Permalinks to use this feature. Set Permalink Settings to "
1383
  "something other than Default."
1384
  msgstr ""
1385
 
1386
- #: ../settings.php:198
1387
  msgid ""
1388
  "Be careful when enabling this options. If you forget the custom login URL "
1389
  "you will not be able to login."
1390
  msgstr ""
1391
 
1392
- #: ../settings.php:202
1393
  msgid ""
1394
  "In the Citadel mode nobody is able to log in except IPs from the White IP "
1395
  "Access List. Active user sessions will not be affected."
1396
  msgstr ""
1397
 
1398
- #: ../settings.php:205
1399
  msgid "These settings do not affect hosts from the "
1400
  msgstr ""
1401
 
1402
- #: ../settings.php:208
1403
  msgid ""
1404
  "Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
1405
  "key on the Google website"
1406
  msgstr ""
1407
 
1408
- #: ../settings.php:248
1409
  msgid "Users"
1410
  msgstr ""
1411
 
1412
- #: ../settings.php:253
1413
  msgid "Help"
1414
  msgstr ""
1415
 
1416
- #: ../settings.php:366 ../settings.php:492
1417
  #, php-format
1418
  msgid "%s allowed retries in %s minutes"
1419
  msgstr ""
1420
 
1421
- #: ../settings.php:371 ../settings.php:497
1422
  #, php-format
1423
  msgid "%s allowed registrations in %s minutes from one IP"
1424
  msgstr ""
1425
 
1426
- #: ../settings.php:376 ../settings.php:502
1427
  #, php-format
1428
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
1429
  msgstr ""
1430
 
1431
- #: ../settings.php:383 ../settings.php:509
1432
  msgid "Notify admin if the number of active lockouts above"
1433
  msgstr ""
1434
 
1435
- #: ../settings.php:388 ../settings.php:514
1436
  #, php-format
1437
  msgid "Enable after %s failed login attempts in last %s minutes"
1438
  msgstr ""
1439
 
1440
- #: ../settings.php:588
1441
  msgid "Sunday"
1442
  msgstr ""
1443
 
1444
- #: ../settings.php:589
1445
  msgid "Monday"
1446
  msgstr ""
1447
 
1448
- #: ../settings.php:590
1449
  msgid "Tuesday"
1450
  msgstr ""
1451
 
1452
- #: ../settings.php:591
1453
  msgid "Wednesday"
1454
  msgstr ""
1455
 
1456
- #: ../settings.php:592
1457
  msgid "Thursday"
1458
  msgstr ""
1459
 
1460
- #: ../settings.php:593
1461
  msgid "Friday"
1462
  msgstr ""
1463
 
1464
- #: ../settings.php:594
1465
  msgid "Saturday"
1466
  msgstr ""
1467
 
1468
  #. translators: preposition of time
1469
- #: ../settings.php:604
1470
  msgctxt "preposition of time"
1471
  msgid "at"
1472
  msgstr ""
1473
 
1474
- #: ../settings.php:620
1475
  msgid "Click to send now"
1476
  msgstr ""
1477
 
1478
- #: ../settings.php:645 ../settings.php:646
1479
  msgid "Attention! You have changed the login URL! The new login URL is"
1480
  msgstr ""
1481
 
1482
- #: ../settings.php:647 ../settings.php:648
1483
  msgid ""
1484
  "If you use a caching plugin, you have to add your new login URL to the list "
1485
  "of pages not to cache."
1486
  msgstr ""
1487
 
1488
- #: ../settings.php:722
1489
  msgid "<strong>ERROR</strong>: please enter a valid email address."
1490
  msgstr ""
1491
 
@@ -1550,22 +1589,22 @@ msgstr ""
1550
  msgid "Upload file"
1551
  msgstr ""
1552
 
1553
- #: ../cerber-tools.php:138
1554
  msgid "No file was uploaded or file is corrupted"
1555
  msgstr ""
1556
 
1557
- #: ../cerber-tools.php:171
1558
  msgid "Error while updating"
1559
  msgstr ""
1560
 
1561
- #: ../cerber-tools.php:174
1562
  msgid "Settings has imported successfully from"
1563
  msgstr ""
1564
 
1565
- #: ../cerber-tools.php:178
1566
  msgid "Error while parsing file"
1567
  msgstr ""
1568
 
1569
- #: ../cerber-tools.php:306
1570
  msgid "Antispam and bot detection settings"
1571
  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: Tue Dec 12 2017 15:25:46 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:612 ../wp-cerber.php:3465
32
  msgid "IP"
33
  msgstr ""
34
 
35
+ #: ../dashboard.php:94 ../dashboard.php:613
36
  msgid "Hostname"
37
  msgstr ""
38
 
39
+ #: ../dashboard.php:95 ../dashboard.php:614
40
  msgid "Country"
41
  msgstr ""
42
 
44
  msgid "Expires"
45
  msgstr ""
46
 
47
+ #: ../dashboard.php:97 ../wp-cerber.php:2982
48
  msgid "Reason"
49
  msgstr ""
50
 
69
  msgid "No lockouts at the moment. The sky is clear."
70
  msgstr ""
71
 
72
+ #: ../dashboard.php:131 ../dashboard.php:588 ../dashboard.php:792 ../dashboard.
73
+ #: php:1088 ../wp-cerber.php:3680 ../settings.php:71 ../settings.php:216
74
  msgid "White IP Access List"
75
  msgstr ""
76
 
78
  msgid "These IPs will never be locked out"
79
  msgstr ""
80
 
81
+ #: ../dashboard.php:133 ../dashboard.php:589 ../dashboard.php:794 ../dashboard.
82
+ #: php:1089
83
  msgid "Black IP Access List"
84
  msgstr ""
85
 
91
  msgid "Your IP"
92
  msgstr ""
93
 
94
+ #: ../dashboard.php:157 ../dashboard.php:824
95
  msgid "Check for activity"
96
  msgstr ""
97
 
121
  msgid "Address %s was added to Black IP Access List"
122
  msgstr ""
123
 
124
+ #: ../dashboard.php:291 ../whois.php:221 ../whois.php:252 ../common.php:553
125
  msgid "Unknown"
126
  msgstr ""
127
 
130
  msgstr ""
131
 
132
  #: ../dashboard.php:357
133
+ msgid "Email has been sent to"
134
  msgstr ""
135
 
136
  #: ../dashboard.php:360
137
+ msgid "Unable to send email to"
138
  msgstr ""
139
 
140
  #: ../dashboard.php:368
142
  msgid "Lockout for %s was removed"
143
  msgstr ""
144
 
145
+ #: ../dashboard.php:385 ../dashboard.php:1450
146
  msgid "Settings saved"
147
  msgstr ""
148
 
150
  msgid "IP address"
151
  msgstr ""
152
 
153
+ #: ../dashboard.php:457 ../dashboard.php:615
154
  msgid "Date"
155
  msgstr ""
156
 
157
+ #: ../dashboard.php:457 ../dashboard.php:616
158
  msgid "Event"
159
  msgstr ""
160
 
161
+ #: ../dashboard.php:457 ../dashboard.php:617
162
  msgid "Local User"
163
  msgstr ""
164
 
170
  msgid "User ID"
171
  msgstr ""
172
 
173
+ #: ../dashboard.php:457 ../dashboard.php:618 ../wp-cerber.php:3473
174
  msgid "Username used"
175
  msgstr ""
176
 
177
+ #: ../dashboard.php:593 ../dashboard.php:797 ../common.php:524
178
  msgid "Locked out"
179
  msgstr ""
180
 
181
+ #: ../dashboard.php:635
182
  msgid "Export"
183
  msgstr ""
184
 
185
+ #: ../dashboard.php:639
186
  msgid "No activity has been logged."
187
  msgstr ""
188
 
189
+ #: ../dashboard.php:645
190
  msgid "All events"
191
  msgstr ""
192
 
193
+ #: ../dashboard.php:654
194
  msgid "Search for IP or username"
195
  msgstr ""
196
 
197
+ #: ../dashboard.php:654
198
  msgid "Filter"
199
  msgstr ""
200
 
201
+ #: ../dashboard.php:820
202
  msgid "Abuse email:"
203
  msgstr ""
204
 
205
+ #: ../dashboard.php:824
206
  msgid "Network:"
207
  msgstr ""
208
 
209
+ #: ../dashboard.php:838
210
  msgid "Add network to the Black List"
211
  msgstr ""
212
 
213
+ #: ../dashboard.php:842
214
  msgid "Add IP to the Black List"
215
  msgstr ""
216
 
217
+ #: ../dashboard.php:873 ../settings.php:239
218
  msgid "WP Cerber Security"
219
  msgstr ""
220
 
221
  #. Name of the plugin
222
+ #: ../dashboard.php:873 ../dashboard.php:892
223
  msgid "WP Cerber"
224
  msgstr ""
225
 
226
+ #: ../dashboard.php:875
227
  msgid "Cerber Dashboard"
228
  msgstr ""
229
 
230
+ #: ../dashboard.php:875 ../dashboard.php:1096 ../dashboard.php:1621 ../settings.
231
+ #: php:244
232
  msgid "Dashboard"
233
  msgstr ""
234
 
235
+ #: ../dashboard.php:878
236
  msgid "Cerber Security Rules"
237
  msgstr ""
238
 
239
+ #: ../dashboard.php:878 ../dashboard.php:1966
240
  msgid "Security Rules"
241
  msgstr ""
242
 
243
+ #: ../dashboard.php:881
244
  msgid "Cerber antispam settings"
245
  msgstr ""
246
 
247
+ #: ../dashboard.php:881 ../wp-cerber.php:3689 ../settings.php:161
248
  msgid "Antispam"
249
  msgstr ""
250
 
251
+ #: ../dashboard.php:882
252
  msgid "Cerber tools"
253
  msgstr ""
254
 
255
+ #: ../dashboard.php:882 ../cerber-tools.php:43
256
  msgid "Tools"
257
  msgstr ""
258
 
259
+ #: ../dashboard.php:953
260
  msgid "Comments"
261
  msgstr ""
262
 
263
+ #: ../dashboard.php:954
264
  msgid "Last login"
265
  msgstr ""
266
 
267
+ #: ../dashboard.php:955
268
  msgid "Failed login attempts"
269
  msgstr ""
270
 
271
+ #: ../dashboard.php:956
272
  msgid "Registered"
273
  msgstr ""
274
 
275
+ #: ../dashboard.php:987 ../dashboard.php:1071
276
  msgid "Never"
277
  msgstr ""
278
 
279
+ #: ../dashboard.php:1023
280
  msgid "You"
281
  msgstr ""
282
 
283
+ #: ../dashboard.php:1041
284
  msgid "Cerber Quick View"
285
  msgstr ""
286
 
287
+ #: ../dashboard.php:1075
288
  msgid "active"
289
  msgstr ""
290
 
291
+ #: ../dashboard.php:1075
292
  msgid "deactivate"
293
  msgstr ""
294
 
295
+ #: ../dashboard.php:1077
296
  msgid "not active"
297
  msgstr ""
298
 
299
+ #: ../dashboard.php:1078
300
  msgid "disabled"
301
  msgstr ""
302
 
303
+ #: ../dashboard.php:1083
304
  msgid "failed attempts"
305
  msgstr ""
306
 
307
+ #: ../dashboard.php:1083 ../dashboard.php:1084
308
  msgid "in 24 hours"
309
  msgstr ""
310
 
311
+ #: ../dashboard.php:1083 ../dashboard.php:1084
312
  msgid "view all"
313
  msgstr ""
314
 
315
+ #: ../dashboard.php:1084
316
  msgid "lockouts"
317
  msgstr ""
318
 
319
+ #: ../dashboard.php:1086
320
  msgid "Lockouts at the moment"
321
  msgstr ""
322
 
323
+ #: ../dashboard.php:1087
324
  msgid "Last lockout"
325
  msgstr ""
326
 
327
+ #: ../dashboard.php:1088 ../dashboard.php:1089 ../dashboard.php:1601
328
  msgid "entry"
329
  msgid_plural "entries"
330
  msgstr[0] ""
331
  msgstr[1] ""
332
 
333
+ #: ../dashboard.php:1090 ../settings.php:86
334
  msgid "Citadel mode"
335
  msgstr ""
336
 
337
+ #: ../dashboard.php:1092 ../settings.php:175
338
  msgid "Push notifications"
339
  msgstr ""
340
 
341
+ #: ../dashboard.php:1097 ../dashboard.php:1293 ../wp-cerber.php:3456 ../settings.
342
+ #: php:91 ../settings.php:246
343
  msgid "Activity"
344
  msgstr ""
345
 
346
+ #: ../dashboard.php:1098 ../settings.php:250
347
  msgid "Lockouts"
348
  msgstr ""
349
 
350
+ #: ../dashboard.php:1099 ../wp-cerber.php:3688 ../settings.php:255 ../cerber-
351
+ #: tools.php:88 ../cerber-tools.php:97 ../cerber-tools.php:174
352
  msgid "Access Lists"
353
  msgstr ""
354
 
355
+ #: ../dashboard.php:1145 ../settings.php:73
356
  msgid "My site is behind a reverse proxy"
357
  msgstr ""
358
 
359
+ #: ../dashboard.php:1273
360
  msgid "in the last 24 hours"
361
  msgstr ""
362
 
363
+ #: ../dashboard.php:1279 ../dashboard.php:1308
364
  msgid "View all"
365
  msgstr ""
366
 
367
+ #: ../dashboard.php:1287 ../common.php:479
368
  msgid "User registered"
369
  msgstr ""
370
 
371
+ #: ../dashboard.php:1288
372
  msgid "All suspicious activity"
373
  msgstr ""
374
 
375
+ #: ../dashboard.php:1309
376
  msgid "Recently locked out IP addresses"
377
  msgstr ""
378
 
379
+ #: ../dashboard.php:1332
380
  msgid "Confused about some settings?"
381
  msgstr ""
382
 
383
+ #: ../dashboard.php:1333
384
  msgid "You can easily load default recommended settings using button below"
385
  msgstr ""
386
 
387
+ #: ../dashboard.php:1335
388
  msgid "Load default settings"
389
  msgstr ""
390
 
391
+ #: ../dashboard.php:1337
392
  msgid "Are you sure?"
393
  msgstr ""
394
 
395
+ #: ../dashboard.php:1343
396
  msgid "doesn't affect Custom login URL and Access Lists"
397
  msgstr ""
398
 
399
+ #: ../dashboard.php:1344 ../wp-cerber.php:3014 ../wp-cerber.php:3682
400
  msgid "Getting Started Guide"
401
  msgstr ""
402
 
403
+ #: ../dashboard.php:1433
404
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
405
  msgstr ""
406
 
407
+ #: ../dashboard.php:1434
408
  msgid "Deactivate"
409
  msgstr ""
410
 
411
+ #: ../dashboard.php:1435
412
  msgid "View Activity"
413
  msgstr ""
414
 
415
+ #: ../dashboard.php:1534
416
  msgid "Subscribe"
417
  msgstr ""
418
 
419
+ #: ../dashboard.php:1535 ../cerber-tools.php:239
420
  msgid "Unsubscribe"
421
  msgstr ""
422
 
423
+ #: ../dashboard.php:1563
424
  msgid "You've subscribed"
425
  msgstr ""
426
 
427
+ #: ../dashboard.php:1566
428
  msgid "You've unsubscribed"
429
  msgstr ""
430
 
431
+ #: ../dashboard.php:1622
432
  msgid "Main settings"
433
  msgstr ""
434
 
435
+ #: ../dashboard.php:1971
436
  msgid "Countries"
437
  msgstr ""
438
 
439
+ #: ../dashboard.php:2036
440
  #, php-format
441
  msgid "Permitted for one country"
442
  msgid_plural "Permitted for %d countries"
443
  msgstr[0] ""
444
  msgstr[1] ""
445
 
446
+ #: ../dashboard.php:2039
447
  #, php-format
448
+ msgid "Not permitted for one country"
449
+ msgid_plural "Not permitted for %d countries"
450
  msgstr[0] ""
451
  msgstr[1] ""
452
 
453
+ #: ../dashboard.php:2047
454
  msgid "No rule"
455
  msgstr ""
456
 
457
+ #: ../dashboard.php:2103
458
  msgid "Start typing here to find a country"
459
  msgstr ""
460
 
461
+ #: ../dashboard.php:2184
462
  msgid "Click on a country name to add it to the list of selected countries"
463
  msgstr ""
464
 
465
+ #: ../dashboard.php:2188
466
  #, php-format
467
+ msgctxt "to is a marker of infinitive, e.g. \"to use it\""
468
+ msgid "Selected countries are permitted to %s, other countries are not permitted to"
469
  msgstr ""
470
 
471
+ #: ../dashboard.php:2191
472
  #, php-format
473
+ msgctxt "to is a marker of infinitive, e.g. \"to use it\""
474
+ msgid "Selected countries are not permitted to %s, other countries are permitted to"
475
  msgstr ""
476
 
477
+ #: ../dashboard.php:2203
478
  msgid "Submit forms"
479
  msgstr ""
480
 
481
+ #: ../dashboard.php:2204
482
  msgid "Post comments"
483
  msgstr ""
484
 
485
+ #: ../dashboard.php:2205
486
  msgid "Log in to the website"
487
  msgstr ""
488
 
489
+ #: ../dashboard.php:2206
490
  msgid "Register on the website"
491
  msgstr ""
492
 
493
+ #: ../dashboard.php:2207
494
  msgid "Use XML-RPC"
495
  msgstr ""
496
 
497
+ #: ../dashboard.php:2208
498
  msgid "Use REST API"
499
  msgstr ""
500
 
501
+ #: ../dashboard.php:2248
502
  msgid "Security rules have been updated"
503
  msgstr ""
504
 
515
  "Protects site from brute force attacks, bots and hackers. Antispam "
516
  "protection with the Cerber antispam engine and reCAPTCHA. Comprehensive "
517
  "control of user activity. Restrict login by IP access lists. Limit login "
518
+ "attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
519
  msgstr ""
520
 
521
  #. Author of the plugin
538
  msgstr[0] ""
539
  msgstr[1] ""
540
 
541
+ #: ../wp-cerber.php:528 ../wp-cerber.php:540 ../wp-cerber.php:547 ../wp-cerber.
542
+ #: php:734 ../wp-cerber.php:950 ../wp-cerber.php:956 ../wp-cerber.php:961 ../wp-
543
+ #: cerber.php:966 ../wp-cerber.php:972 ../wp-cerber.php:979 ../wp-cerber.php:1080
544
+ #: ../wp-cerber.php:1217 ../common.php:173 ../common.php:227 ../common.php:231 ..
545
+ #: /settings.php:709
546
  msgid "ERROR:"
547
  msgstr ""
548
 
549
+ #: ../wp-cerber.php:557
550
  msgid ""
551
  "Human verification failed. Please click the square box in the reCAPTCHA "
552
  "block below."
553
  msgstr ""
554
 
555
+ #: ../wp-cerber.php:616
556
  msgid ""
557
  "> > > Translator of WP Cerber? To get the PRO license for free, drop your "
558
  "contacts here: https://wpcerber.com/contact/"
559
  msgstr ""
560
 
561
+ #: ../wp-cerber.php:746
562
  #, php-format
563
  msgid ""
564
  "<strong>ERROR</strong>: The password you entered for the username %s is "
565
  "incorrect."
566
  msgstr ""
567
 
568
+ #: ../wp-cerber.php:951 ../wp-cerber.php:957 ../wp-cerber.php:973 ../wp-cerber.
569
+ #: php:980
570
  msgid "You are not allowed to register."
571
  msgstr ""
572
 
573
+ #: ../wp-cerber.php:967
574
  msgid "Username is not allowed. Please choose another one."
575
  msgstr ""
576
 
577
+ #: ../wp-cerber.php:1217
578
  msgid "Sorry, human verification failed."
579
  msgstr ""
580
 
581
+ #: ../wp-cerber.php:2924
582
  msgid "WP Cerber notify"
583
  msgstr ""
584
 
585
+ #: ../wp-cerber.php:2946
586
  msgid "Citadel mode is activated"
587
  msgstr ""
588
 
589
+ #: ../wp-cerber.php:2948
590
  #, php-format
591
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
592
  msgstr ""
593
 
594
+ #: ../wp-cerber.php:2949
595
  #, php-format
596
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
597
  msgstr ""
598
 
599
+ #: ../wp-cerber.php:2950 ../wp-cerber.php:3497
600
  msgid "View activity in dashboard"
601
  msgstr ""
602
 
603
+ #: ../wp-cerber.php:2975
604
  msgid "unspecified"
605
  msgstr ""
606
 
607
+ #: ../wp-cerber.php:2978
608
  msgid "Number of lockouts is increasing"
609
  msgstr ""
610
 
611
+ #: ../wp-cerber.php:2980
612
  msgid "Number of active lockouts"
613
  msgstr ""
614
 
615
+ #: ../wp-cerber.php:2981
616
  #, php-format
617
  msgid "Last lockout was added: %s for IP %s"
618
  msgstr ""
619
 
620
+ #: ../wp-cerber.php:2983
621
  msgid "View activity for this IP"
622
  msgstr ""
623
 
624
+ #: ../wp-cerber.php:2984
625
  msgid "View lockouts in dashboard"
626
  msgstr ""
627
 
628
+ #: ../wp-cerber.php:2987 ../wp-cerber.php:2989
629
  msgid "A new version of WP Cerber is available to install"
630
  msgstr ""
631
 
632
+ #: ../wp-cerber.php:2988
633
  msgid "Hi!"
634
  msgstr ""
635
 
636
+ #: ../wp-cerber.php:2991 ../wp-cerber.php:3002
637
  msgid "Website"
638
  msgstr ""
639
 
640
+ #: ../wp-cerber.php:2994 ../wp-cerber.php:2995
641
  msgid "The WP Cerber security plugin has been deactivated"
642
  msgstr ""
643
 
644
+ #: ../wp-cerber.php:2997
645
  msgid "Not logged in"
646
  msgstr ""
647
 
648
+ #: ../wp-cerber.php:3003
649
  msgid "By user"
650
  msgstr ""
651
 
652
+ #: ../wp-cerber.php:3004
653
  msgid "From IP address"
654
  msgstr ""
655
 
656
+ #: ../wp-cerber.php:3007
657
  msgid "From country"
658
  msgstr ""
659
 
660
+ #: ../wp-cerber.php:3011
661
  msgid "The WP Cerber security plugin is now active"
662
  msgstr ""
663
 
664
+ #: ../wp-cerber.php:3012 ../wp-cerber.php:3679
665
  msgid "WP Cerber is now active and has started protecting your site"
666
  msgstr ""
667
 
668
+ #: ../wp-cerber.php:3020
669
  msgid "New Custom login URL"
670
  msgstr ""
671
 
672
+ #: ../wp-cerber.php:3024 ../wp-cerber.php:3025
673
  msgid "A new activity has been recorded"
674
  msgstr ""
675
 
676
+ #: ../wp-cerber.php:3030
677
  msgid "Weekly report"
678
  msgstr ""
679
 
680
+ #: ../wp-cerber.php:3033
681
  msgid "To change reporting settings visit"
682
  msgstr ""
683
 
684
+ #: ../wp-cerber.php:3059
685
  msgid "Your login page:"
686
  msgstr ""
687
 
688
+ #: ../wp-cerber.php:3063
689
  msgid "Your license is valid until"
690
  msgstr ""
691
 
692
+ #: ../wp-cerber.php:3066
693
  msgid "This message was sent by"
694
  msgstr ""
695
 
696
+ #: ../wp-cerber.php:3086
697
+ #, php-format
698
+ msgid "Your last sign-in was %s from %s"
699
+ msgstr ""
700
+
701
+ #: ../wp-cerber.php:3162
702
+ msgid "Weekly Report"
703
+ msgstr ""
704
+
705
+ #: ../wp-cerber.php:3174
706
  msgid "Activity details"
707
  msgstr ""
708
 
709
+ #: ../wp-cerber.php:3188
710
+ msgid "Attempts to log in with non-existent username"
711
+ msgstr ""
712
+
713
+ #: ../wp-cerber.php:3469
714
  msgid "User"
715
  msgstr ""
716
 
717
+ #: ../wp-cerber.php:3477
718
  msgid "Search string"
719
  msgstr ""
720
 
721
+ #: ../wp-cerber.php:3498
722
  msgid "To unsubscribe click here"
723
  msgstr ""
724
 
725
+ #: ../wp-cerber.php:3654
726
  #, php-format
727
  msgid "The WP Cerber requires PHP %s or higher. You are running"
728
  msgstr ""
729
 
730
+ #: ../wp-cerber.php:3658
731
  #, php-format
732
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
733
  msgstr ""
734
 
735
+ #: ../wp-cerber.php:3663
736
  msgid "Can't activate WP Cerber due to a database error."
737
  msgstr ""
738
 
739
+ #: ../wp-cerber.php:3680
740
  msgid "Your IP address is added to the"
741
  msgstr ""
742
 
743
+ #: ../wp-cerber.php:3687 ../settings.php:252
744
  msgid "Main Settings"
745
  msgstr ""
746
 
747
+ #: ../wp-cerber.php:3690 ../settings.php:257
748
  msgid "Hardening"
749
  msgstr ""
750
 
751
+ #: ../wp-cerber.php:3691 ../settings.php:72 ../settings.php:89 ../settings.php:262
752
  msgid "Notifications"
753
  msgstr ""
754
 
755
+ #: ../wp-cerber.php:3692
756
  msgid "Import settings"
757
  msgstr ""
758
 
776
  msgid "Lockouts occurred"
777
  msgstr ""
778
 
779
+ #: ../common.php:478
780
  msgid "User created"
781
  msgstr ""
782
 
783
+ #: ../common.php:480
784
  msgid "Logged in"
785
  msgstr ""
786
 
787
+ #: ../common.php:481
788
  msgid "Logged out"
789
  msgstr ""
790
 
791
+ #: ../common.php:482
792
  msgid "Login failed"
793
  msgstr ""
794
 
795
+ #: ../common.php:485
796
  msgid "IP blocked"
797
  msgstr ""
798
 
799
+ #: ../common.php:486
800
  msgid "Subnet blocked"
801
  msgstr ""
802
 
803
+ #: ../common.php:488
804
  msgid "Citadel activated!"
805
  msgstr ""
806
 
807
+ #: ../common.php:489
808
  msgid "Spam comment denied"
809
  msgstr ""
810
 
811
+ #: ../common.php:490
812
  msgid "Spam form submission denied"
813
  msgstr ""
814
 
815
+ #: ../common.php:491
816
  msgid "Form submission denied"
817
  msgstr ""
818
 
819
+ #: ../common.php:492
820
  msgid "Comment denied"
821
  msgstr ""
822
 
823
+ #: ../common.php:503
824
  msgid "Password changed"
825
  msgstr ""
826
 
827
+ #: ../common.php:504
828
  msgid "Password reset requested"
829
  msgstr ""
830
 
831
+ #: ../common.php:506
832
  msgid "reCAPTCHA verification failed"
833
  msgstr ""
834
 
835
+ #: ../common.php:507
836
  msgid "reCAPTCHA settings are incorrect"
837
  msgstr ""
838
 
839
+ #: ../common.php:508
840
  msgid "Request to the Google reCAPTCHA service failed"
841
  msgstr ""
842
 
843
+ #: ../common.php:510
844
  msgid "Attempt to access prohibited URL"
845
  msgstr ""
846
 
847
+ #: ../common.php:511 ../common.php:556
848
  msgid "Attempt to log in with non-existent username"
849
  msgstr ""
850
 
851
+ #: ../common.php:512 ../common.php:557
852
  msgid "Attempt to log in with prohibited username"
853
  msgstr ""
854
 
855
+ #: ../common.php:514
856
  msgid "Attempt to log in denied"
857
  msgstr ""
858
 
859
+ #: ../common.php:515
860
  msgid "Attempt to register denied"
861
  msgstr ""
862
 
863
+ #: ../common.php:517
864
  msgid "Request to REST API denied"
865
  msgstr ""
866
 
867
+ #: ../common.php:518
868
  msgid "XML-RPC request denied"
869
  msgstr ""
870
 
871
+ #: ../common.php:522
872
  msgid "Bot detected"
873
  msgstr ""
874
 
875
+ #: ../common.php:523
876
  msgid "Citadel mode is active"
877
  msgstr ""
878
 
879
+ #: ../common.php:525
880
  msgid "IP blacklisted"
881
  msgstr ""
882
 
883
+ #: ../common.php:528
884
  msgid "Malicious activity detected"
885
  msgstr ""
886
 
887
+ #: ../common.php:529
888
  msgid "Blocked by country rule"
889
  msgstr ""
890
 
891
+ #: ../common.php:530
892
  msgid "Limit reached"
893
  msgstr ""
894
 
895
+ #: ../common.php:531
896
  msgid "Multiple suspicious activities"
897
  msgstr ""
898
 
899
+ #: ../common.php:554
900
  msgid "Limit on login attempts is reached"
901
  msgstr ""
902
 
903
+ #: ../common.php:555
904
  msgid "Attempt to access"
905
  msgstr ""
906
 
907
+ #: ../common.php:558
908
  msgid "Limit on failed reCAPTCHA verifications is reached"
909
  msgstr ""
910
 
911
+ #: ../common.php:559
912
  msgid "Bot activity is detected"
913
  msgstr ""
914
 
915
+ #: ../common.php:560
916
  msgid "Multiple suspicious activities were detected"
917
  msgstr ""
918
 
919
+ #: ../common.php:603
920
  #, php-format
921
  msgid "%s ago"
922
  msgstr ""
923
 
924
+ #: ../common.php:737
925
  msgid "New version is available"
926
  msgstr ""
927
 
928
+ #: ../common.php:744
929
  #, php-format
930
  msgid "Update to version %s of WP Cerber"
931
  msgstr ""
932
 
933
+ #: ../cerber-news.php:135
934
+ msgid "Cool!"
935
+ msgstr ""
936
+
937
+ #: ../cerber-lab.php:662
938
  msgid "Want to make WP Cerber even more powerful?"
939
  msgstr ""
940
 
941
+ #: ../cerber-lab.php:663
942
  msgid ""
943
  "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. "
944
  "This helps the plugin team to develop new algorithms for WP Cerber that will "
946
  "everyday. You can disable the sending in the plugin settings at any time."
947
  msgstr ""
948
 
949
+ #: ../cerber-lab.php:664
950
  msgid "OK, nail them all"
951
  msgstr ""
952
 
953
+ #: ../cerber-lab.php:665
954
  msgid "NO, maybe later"
955
  msgstr ""
956
 
957
+ #: ../cerber-lab.php:666 ../settings.php:220
958
  msgid "Know more"
959
  msgstr ""
960
 
961
+ #: ../settings.php:67
962
  msgid "Limit login attempts"
963
  msgstr ""
964
 
965
+ #: ../settings.php:68
966
  msgid "Attempts"
967
  msgstr ""
968
 
969
+ #: ../settings.php:69
970
  msgid "Lockout duration"
971
  msgstr ""
972
 
973
+ #: ../settings.php:69 ../settings.php:88
974
  msgid "minutes"
975
  msgstr ""
976
 
977
+ #: ../settings.php:70
978
  msgid "Aggressive lockout"
979
  msgstr ""
980
 
981
+ #: ../settings.php:71
982
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
983
  msgstr ""
984
 
985
+ #: ../settings.php:73
986
  msgid "Site connection"
987
  msgstr ""
988
 
989
+ #: ../settings.php:75
990
  msgid "Proactive security rules"
991
  msgstr ""
992
 
993
+ #: ../settings.php:76
994
  msgid "Block subnet"
995
  msgstr ""
996
 
997
+ #: ../settings.php:76
998
  msgid "Always block entire subnet Class C of intruders IP"
999
  msgstr ""
1000
 
1001
+ #: ../settings.php:77
1002
  msgid "Non-existent users"
1003
  msgstr ""
1004
 
1005
+ #: ../settings.php:77
1006
  msgid "Immediately block IP when attempting to login with a non-existent username"
1007
  msgstr ""
1008
 
1009
+ #: ../settings.php:78
1010
  msgid "Redirect dashboard requests"
1011
  msgstr ""
1012
 
1013
+ #: ../settings.php:78
1014
  msgid ""
1015
  "Disable automatic redirecting to the login page when /wp-admin/ is requested "
1016
  "by an unauthorized request"
1017
  msgstr ""
1018
 
1019
+ #: ../settings.php:79
1020
  msgid "Request wp-login.php"
1021
  msgstr ""
1022
 
1023
+ #: ../settings.php:79
1024
  msgid "Immediately block IP after any request to wp-login.php"
1025
  msgstr ""
1026
 
1027
+ #: ../settings.php:80
1028
  msgid "Display 404 page"
1029
  msgstr ""
1030
 
1031
+ #: ../settings.php:80
1032
+ msgid "Use 404 template from the active theme"
1033
+ msgstr ""
1034
+
1035
+ #: ../settings.php:80
1036
+ msgid "Display simple 404 page"
1037
+ msgstr ""
1038
+
1039
+ #: ../settings.php:82
1040
  msgid "Custom login page"
1041
  msgstr ""
1042
 
1043
+ #: ../settings.php:83
1044
  msgid "Custom login URL"
1045
  msgstr ""
1046
 
1047
+ #: ../settings.php:83
1048
  msgid "must not overlap with the existing pages or posts slug"
1049
  msgstr ""
1050
 
1051
+ #: ../settings.php:84
1052
  msgid "Disable wp-login.php"
1053
  msgstr ""
1054
 
1055
+ #: ../settings.php:84
1056
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
1057
  msgstr ""
1058
 
1059
+ #: ../settings.php:87
1060
  msgid "Threshold"
1061
  msgstr ""
1062
 
1063
+ #: ../settings.php:88
1064
  msgid "Duration"
1065
  msgstr ""
1066
 
1067
+ #: ../settings.php:89
1068
  msgid "Send notification to admin email"
1069
  msgstr ""
1070
 
1071
+ #: ../settings.php:89 ../settings.php:396 ../settings.php:519
1072
  msgid "Click to send test"
1073
  msgstr ""
1074
 
1075
+ #: ../settings.php:92
1076
  msgid "Keep records for"
1077
  msgstr ""
1078
 
1079
+ #: ../settings.php:92 ../settings.php:144
1080
  msgid "days"
1081
  msgstr ""
1082
 
1083
+ #: ../settings.php:93
1084
  msgid "Cerber Lab connection"
1085
  msgstr ""
1086
 
1087
+ #: ../settings.php:93
1088
  msgid "Send malicious IP addresses to the Cerber Lab"
1089
  msgstr ""
1090
 
1091
+ #: ../settings.php:94
1092
  msgid "Cerber Lab protocol"
1093
  msgstr ""
1094
 
1095
+ #: ../settings.php:95
1096
  msgid "Use file"
1097
  msgstr ""
1098
 
1099
+ #: ../settings.php:95
1100
  msgid "Write failed login attempts to the file"
1101
  msgstr ""
1102
 
1103
+ #: ../settings.php:97
1104
  msgid "Preferences"
1105
  msgstr ""
1106
 
1107
+ #: ../settings.php:98
1108
  msgid "Drill down IP"
1109
  msgstr ""
1110
 
1111
+ #: ../settings.php:98
1112
  msgid "Retrieve extra WHOIS information for IP"
1113
  msgstr ""
1114
 
1115
+ #: ../settings.php:99
1116
  msgid "Date format"
1117
  msgstr ""
1118
 
1119
+ #: ../settings.php:99
1120
  #, php-format
1121
  msgid "if empty, the default format %s will be used"
1122
  msgstr ""
1123
 
1124
+ #: ../settings.php:106
1125
  msgid "Hardening WordPress"
1126
  msgstr ""
1127
 
1128
+ #: ../settings.php:107
1129
  msgid "Stop user enumeration"
1130
  msgstr ""
1131
 
1132
+ #: ../settings.php:107
1133
  msgid "Block access to user pages like /?author=n and user data via REST API"
1134
  msgstr ""
1135
 
1136
+ #: ../settings.php:108
1137
  msgid "Disable XML-RPC"
1138
  msgstr ""
1139
 
1140
+ #: ../settings.php:108
1141
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
1142
  msgstr ""
1143
 
1144
+ #: ../settings.php:109
1145
  msgid "Disable feeds"
1146
  msgstr ""
1147
 
1148
+ #: ../settings.php:109
1149
  msgid "Block access to the RSS, Atom and RDF feeds"
1150
  msgstr ""
1151
 
1152
+ #: ../settings.php:110
1153
  msgid "Disable REST API"
1154
  msgstr ""
1155
 
1156
+ #: ../settings.php:110
1157
  msgid "Block access to the WordPress REST API except the following"
1158
  msgstr ""
1159
 
1160
+ #: ../settings.php:111
1161
  msgid "Allow REST API for logged in users"
1162
  msgstr ""
1163
 
1164
+ #: ../settings.php:112
1165
  msgid ""
1166
  "Specify REST API namespaces to be allowed if REST API is disabled. One "
1167
  "string per line."
1168
  msgstr ""
1169
 
1170
+ #: ../settings.php:121
1171
  msgid "User related settings"
1172
  msgstr ""
1173
 
1174
+ #: ../settings.php:122
1175
  msgid "Registration limit"
1176
  msgstr ""
1177
 
1178
+ #: ../settings.php:123
1179
  msgid "Prohibited usernames"
1180
  msgstr ""
1181
 
1182
+ #: ../settings.php:123
1183
  msgid ""
1184
  "Usernames from this list are not allowed to log in or register. Any IP "
1185
  "address, have tried to use any of these usernames, will be immediately "
1186
  "blocked. Use comma to separate logins."
1187
  msgstr ""
1188
 
1189
+ #: ../settings.php:123
1190
+ msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1191
+ msgstr ""
1192
+
1193
+ #: ../settings.php:124
1194
  msgid "User session expire"
1195
  msgstr ""
1196
 
1197
+ #: ../settings.php:124
1198
  msgid "in minutes (leave empty to use default WP value)"
1199
  msgstr ""
1200
 
1201
+ #: ../settings.php:125
1202
  msgid "Sort users in dashboard"
1203
  msgstr ""
1204
 
1205
+ #: ../settings.php:125
1206
  msgid "by date of registration"
1207
  msgstr ""
1208
 
1209
+ #: ../settings.php:132
1210
  msgid "Cerber antispam engine"
1211
  msgstr ""
1212
 
1213
+ #: ../settings.php:133
1214
  msgid "Comment form"
1215
  msgstr ""
1216
 
1217
+ #: ../settings.php:133
1218
  msgid "Protect comment form with bot detection engine"
1219
  msgstr ""
1220
 
1221
+ #: ../settings.php:134 ../settings.php:152
1222
  msgid "Registration form"
1223
  msgstr ""
1224
 
1225
+ #: ../settings.php:134
1226
  msgid "Protect registration form with bot detection engine"
1227
  msgstr ""
1228
 
1229
+ #: ../settings.php:135
1230
  msgid "Other forms"
1231
  msgstr ""
1232
 
1233
+ #: ../settings.php:135
1234
  msgid "Protect all forms on the website with bot detection engine"
1235
  msgstr ""
1236
 
1237
+ #: ../settings.php:137
1238
  msgid "Adjust antispam engine"
1239
  msgstr ""
1240
 
1241
+ #: ../settings.php:138
1242
  msgid "Safe mode"
1243
  msgstr ""
1244
 
1245
+ #: ../settings.php:138
1246
  msgid "Use less restrictive policies (allow AJAX)"
1247
  msgstr ""
1248
 
1249
+ #: ../settings.php:139
1250
  msgid "Logged in users"
1251
  msgstr ""
1252
 
1253
+ #: ../settings.php:139
1254
  msgid "Disable bot detection engine for logged in users"
1255
  msgstr ""
1256
 
1257
+ #: ../settings.php:140
1258
  msgid "Query whitelist"
1259
  msgstr ""
1260
 
1261
+ #: ../settings.php:140
1262
  msgid ""
1263
+ "Enter a part of query string or query path to exclude a request from "
1264
+ "inspection by the engine. One item per line."
1265
  msgstr ""
1266
 
1267
+ #: ../settings.php:142
1268
  msgid "Comment processing"
1269
  msgstr ""
1270
 
1271
+ #: ../settings.php:143
1272
  msgid "If a spam comment detected"
1273
  msgstr ""
1274
 
1275
+ #: ../settings.php:143
1276
  msgid "Deny it completely"
1277
  msgstr ""
1278
 
1279
+ #: ../settings.php:143
1280
  msgid "Mark it as spam"
1281
  msgstr ""
1282
 
1283
+ #: ../settings.php:144
1284
  msgid "Trash spam comments"
1285
  msgstr ""
1286
 
1287
+ #: ../settings.php:144
1288
  msgid "Move spam comments to trash after"
1289
  msgstr ""
1290
 
1291
+ #: ../settings.php:147
1292
  msgid "reCAPTCHA settings"
1293
  msgstr ""
1294
 
1295
+ #: ../settings.php:148
1296
  msgid "Site key"
1297
  msgstr ""
1298
 
1299
+ #: ../settings.php:149
1300
  msgid "Secret key"
1301
  msgstr ""
1302
 
1303
+ #: ../settings.php:150
1304
  msgid "Invisible reCAPTCHA"
1305
  msgstr ""
1306
 
1307
+ #: ../settings.php:150
1308
  msgid "Enable invisible reCAPTCHA"
1309
  msgstr ""
1310
 
1311
+ #: ../settings.php:150
1312
  msgid ""
1313
  "(do not enable it unless you get and enter the Site and Secret keys for the "
1314
  "invisible version)"
1315
  msgstr ""
1316
 
1317
+ #: ../settings.php:152
1318
  msgid "Enable reCAPTCHA for WordPress registration form"
1319
  msgstr ""
1320
 
1321
+ #: ../settings.php:153
1322
  msgid "Enable reCAPTCHA for WooCommerce registration form"
1323
  msgstr ""
1324
 
1325
+ #: ../settings.php:155
1326
  msgid "Lost password form"
1327
  msgstr ""
1328
 
1329
+ #: ../settings.php:155
1330
  msgid "Enable reCAPTCHA for WordPress lost password form"
1331
  msgstr ""
1332
 
1333
+ #: ../settings.php:156
1334
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
1335
  msgstr ""
1336
 
1337
+ #: ../settings.php:158
1338
  msgid "Login form"
1339
  msgstr ""
1340
 
1341
+ #: ../settings.php:158
1342
  msgid "Enable reCAPTCHA for WordPress login form"
1343
  msgstr ""
1344
 
1345
+ #: ../settings.php:159
1346
  msgid "Enable reCAPTCHA for WooCommerce login form"
1347
  msgstr ""
1348
 
1349
+ #: ../settings.php:161
1350
  msgid "Enable reCAPTCHA for WordPress comment form"
1351
  msgstr ""
1352
 
1353
+ #: ../settings.php:162
1354
  msgid "Disable reCAPTCHA for logged in users"
1355
  msgstr ""
1356
 
1357
+ #: ../settings.php:164
1358
  msgid "Limit attempts"
1359
  msgstr ""
1360
 
1361
+ #: ../settings.php:164
1362
  #, php-format
1363
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1364
  msgstr ""
1365
 
1366
+ #: ../settings.php:170
1367
  msgid "Email notifications"
1368
  msgstr ""
1369
 
1370
+ #: ../settings.php:172 ../settings.php:192
1371
  msgid "Email Address"
1372
  msgstr ""
1373
 
1374
+ #: ../settings.php:172 ../settings.php:192
1375
  msgid "Use comma to specify multiple values"
1376
  msgstr ""
1377
 
1378
+ #: ../settings.php:172
1379
  #, php-format
1380
  msgid "if empty, the admin email %s will be used"
1381
  msgstr ""
1382
 
1383
+ #: ../settings.php:173
1384
  msgid "Notification limit"
1385
  msgstr ""
1386
 
1387
+ #: ../settings.php:173
1388
  msgid "notification letters allowed per hour (0 means unlimited)"
1389
  msgstr ""
1390
 
1391
+ #: ../settings.php:182
1392
  msgid "All connected devices"
1393
  msgstr ""
1394
 
1395
+ #: ../settings.php:183
1396
  msgid "No devices found"
1397
  msgstr ""
1398
 
1399
+ #: ../settings.php:185
1400
  msgid "Not available"
1401
  msgstr ""
1402
 
1403
+ #: ../settings.php:190
1404
  msgid "Weekly reports"
1405
  msgstr ""
1406
 
1407
+ #: ../settings.php:192
1408
+ msgid "if empty, email from notification settings will be used"
1409
+ msgstr ""
1410
+
1411
+ #: ../settings.php:193
1412
+ msgid "Enable reporting"
1413
+ msgstr ""
1414
+
1415
+ #: ../settings.php:202
1416
  msgid "Make your protection smarter!"
1417
  msgstr ""
1418
 
1419
+ #: ../settings.php:206
1420
  msgid ""
1421
  "Please enable Permalinks to use this feature. Set Permalink Settings to "
1422
  "something other than Default."
1423
  msgstr ""
1424
 
1425
+ #: ../settings.php:209
1426
  msgid ""
1427
  "Be careful when enabling this options. If you forget the custom login URL "
1428
  "you will not be able to login."
1429
  msgstr ""
1430
 
1431
+ #: ../settings.php:213
1432
  msgid ""
1433
  "In the Citadel mode nobody is able to log in except IPs from the White IP "
1434
  "Access List. Active user sessions will not be affected."
1435
  msgstr ""
1436
 
1437
+ #: ../settings.php:216
1438
  msgid "These settings do not affect hosts from the "
1439
  msgstr ""
1440
 
1441
+ #: ../settings.php:219
1442
  msgid ""
1443
  "Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
1444
  "key on the Google website"
1445
  msgstr ""
1446
 
1447
+ #: ../settings.php:259
1448
  msgid "Users"
1449
  msgstr ""
1450
 
1451
+ #: ../settings.php:264
1452
  msgid "Help"
1453
  msgstr ""
1454
 
1455
+ #: ../settings.php:377 ../settings.php:500
1456
  #, php-format
1457
  msgid "%s allowed retries in %s minutes"
1458
  msgstr ""
1459
 
1460
+ #: ../settings.php:382 ../settings.php:505
1461
  #, php-format
1462
  msgid "%s allowed registrations in %s minutes from one IP"
1463
  msgstr ""
1464
 
1465
+ #: ../settings.php:387 ../settings.php:510
1466
  #, php-format
1467
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
1468
  msgstr ""
1469
 
1470
+ #: ../settings.php:394 ../settings.php:517
1471
  msgid "Notify admin if the number of active lockouts above"
1472
  msgstr ""
1473
 
1474
+ #: ../settings.php:399 ../settings.php:522
1475
  #, php-format
1476
  msgid "Enable after %s failed login attempts in last %s minutes"
1477
  msgstr ""
1478
 
1479
+ #: ../settings.php:602
1480
  msgid "Sunday"
1481
  msgstr ""
1482
 
1483
+ #: ../settings.php:603
1484
  msgid "Monday"
1485
  msgstr ""
1486
 
1487
+ #: ../settings.php:604
1488
  msgid "Tuesday"
1489
  msgstr ""
1490
 
1491
+ #: ../settings.php:605
1492
  msgid "Wednesday"
1493
  msgstr ""
1494
 
1495
+ #: ../settings.php:606
1496
  msgid "Thursday"
1497
  msgstr ""
1498
 
1499
+ #: ../settings.php:607
1500
  msgid "Friday"
1501
  msgstr ""
1502
 
1503
+ #: ../settings.php:608
1504
  msgid "Saturday"
1505
  msgstr ""
1506
 
1507
  #. translators: preposition of time
1508
+ #: ../settings.php:618
1509
  msgctxt "preposition of time"
1510
  msgid "at"
1511
  msgstr ""
1512
 
1513
+ #: ../settings.php:634
1514
  msgid "Click to send now"
1515
  msgstr ""
1516
 
1517
+ #: ../settings.php:659 ../settings.php:660
1518
  msgid "Attention! You have changed the login URL! The new login URL is"
1519
  msgstr ""
1520
 
1521
+ #: ../settings.php:661 ../settings.php:662
1522
  msgid ""
1523
  "If you use a caching plugin, you have to add your new login URL to the list "
1524
  "of pages not to cache."
1525
  msgstr ""
1526
 
1527
+ #: ../settings.php:736 ../settings.php:748
1528
  msgid "<strong>ERROR</strong>: please enter a valid email address."
1529
  msgstr ""
1530
 
1589
  msgid "Upload file"
1590
  msgstr ""
1591
 
1592
+ #: ../cerber-tools.php:141
1593
  msgid "No file was uploaded or file is corrupted"
1594
  msgstr ""
1595
 
1596
+ #: ../cerber-tools.php:174
1597
  msgid "Error while updating"
1598
  msgstr ""
1599
 
1600
+ #: ../cerber-tools.php:177
1601
  msgid "Settings has imported successfully from"
1602
  msgstr ""
1603
 
1604
+ #: ../cerber-tools.php:181
1605
  msgid "Error while parsing file"
1606
  msgstr ""
1607
 
1608
+ #: ../cerber-tools.php:309
1609
  msgid "Antispam and bot detection settings"
1610
  msgstr ""
readme.txt CHANGED
@@ -1,11 +1,11 @@
1
  === Cerber Security & Antispam ===
2
  Contributors: gioni
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SR8RJXFU35EW8
4
- Tags: security, login, custom login, protect, antispam, woocommerce, recaptcha, captcha, activity, log, logging, block, fail2ban, monitoring, rename wp login, whitelist, blacklist, wordpress security, xmlrpc, user enumeration, hardening, authentication, notification, pushbullet, brute force, bruteforce, users
5
  Requires at least: 4.4
6
  Requires PHP: 5.3
7
  Tested up to: 4.9
8
- Stable tag: 5.8
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.
@@ -30,6 +30,7 @@ Hardening WordPress with a set of security settings.
30
  * Hide wp-login.php, wp-signup.php and wp-register.php from possible attacks and return 404 HTTP Error.
31
  * Hide wp-admin (dashboard) and return 404 HTTP Error when a user isn't logged in.
32
  * Immediately block IP or subnet when attempting to log in with non-existent or prohibited username.
 
33
  * Disable WP REST API or restrict access with your own rules
34
  * Disable XML-RPC (block access to the XML-RPC interface including Pingbacks and Trackbacks)
35
  * Disable feeds (block access to the RSS, Atom and RDF feeds)
@@ -152,7 +153,7 @@ The following steps are optional but they allow you to reinforce the protection
152
  2. Configure your **Custom login URL** and remember it (the plugin will send you an email with it).
153
  3. Once you have configured Custom login URL, check 'Immediately block IP after any request to wp-login.php' and 'Block direct access to wp-login.php and return HTTP 404 Not Found Error'. Don't use wp-admin to log in to your WordPress dashboard anymore.
154
  4. If your WordPress has a few experienced users, check 'Immediately block IP when attempting to log in with a non-existent username'.
155
- 5. Specify the list of prohibited usernames (logins) that legit users will never use. They will not be allowed to log in and register in any circumstances.
156
  6. Configure mobile and browser notifications via Pushbullet.
157
  7. Obtain keys and enable invisible reCAPTCHA for password reset and registration forms (WooCommerce supported too).
158
 
@@ -163,15 +164,15 @@ The following steps are optional but they allow you to reinforce the protection
163
 
164
  Yes. [WP Cerber settings for CloudFlare](https://wpcerber.com/cloudflare-and-wordpress-cerber/).
165
 
166
- = Is this plugin compatible with WordPress multisite mode? =
167
 
168
  Yes. All settings apply to all sites in the network simultaneously. You have to activate the plugin in the Network Admin area on the Plugins page. Just click on the Network Activate link.
169
 
170
- = Is WP Cerber compatible with bbPress? =
171
 
172
  Yes. [Compatibility notes](https://wpcerber.com/compatibility/).
173
 
174
- = Is this plugin compatible with WooCommerce? =
175
 
176
  Completely.
177
 
@@ -183,21 +184,27 @@ Yes. [How to set up reCAPTCHA for WooCommerce](https://wpcerber.com/how-to-setup
183
 
184
  Yes, easily. [How to rename wp-login.php](https://wpcerber.com/how-to-rename-wp-login-php/)
185
 
186
- = Can I hide wp-admin? =
187
 
188
  Yes, easily. [How to hide wp-admin and wp-login.php from possible attacks](https://wpcerber.com/how-to-hide-wp-admin-and-wp-login-php-from-possible-attacks/)
189
 
190
- = Can I rename wp-admin folder? =
191
 
192
  Nope. It's not possible and not recommended for compatibility reasons.
193
 
194
- = Can WP Cerber work together with the Limit Login Attempts plugin? =
 
 
 
 
 
 
195
 
196
  Nope. WP Cerber is a drop in replacement for that outdated plugin.
197
 
198
- = Can WP Cerber protect my site from DDoS attacks? =
199
 
200
- Nope. WP Cerber protects your site from Brute force attacks or distributed Brute force attacks. By default WordPress allows unlimited login attempts either through the login form or by sending special cookies. This allows passwords to be cracked with relative ease via a brute force attack. To prevent from such a bad situation use WP Cerber.
201
 
202
  = Is there any WordPress plugin to protect my site from DDoS attacks? =
203
 
@@ -205,7 +212,7 @@ Nope. This hard task cannot be done by using a plugin. That may be done by using
205
 
206
  = What is the goal of Citadel mode? =
207
 
208
- Citadel mode is intended to block massive, distributed botnet attacks and also slow attacks. The last type of attack has a large range of intruder IPs with a small number of attempts to login per each.
209
 
210
  = How to turn off Citadel mode completely? =
211
 
@@ -215,13 +222,25 @@ Set Threshold fields to 0 or leave them empty.
215
 
216
  With Fail2Ban you can protect site on the OS level with iptables firewall. See details here: [https://wpcerber.com/how-to-protect-wordpress-with-fail2ban/](https://wpcerber.com/how-to-protect-wordpress-with-fail2ban/)
217
 
218
- = Do I need using Fail2Ban to get the plugin working? =
219
 
220
  No, you don't. It is optional.
221
 
 
 
 
 
222
  = Can I use this plugin on the WP Engine hosting? =
223
 
224
- Yes! WP Cerber is not on the list of disallowed plugins. There are no limitation on the hosting providers. You can use it even on the shared hosting. Plugin consumes minimum resources and does not impact server performance or response time.
 
 
 
 
 
 
 
 
225
 
226
  = It seems that old activity records are not removing from the activity log =
227
 
@@ -232,7 +251,7 @@ define( 'ALTERNATE_WP_CRON', true );
232
 
233
  = I'm unable to log in / I'm locked out of my site / How to get access (log in) to the dashboard? =
234
 
235
- There is a special version of the plugin called **WP Cerber Reset**. This version performs only one task. It will reset all WP Cerber settings to initial values (excluding Access Lists) and then will deactivate itself.
236
 
237
  To get access to your dashboard you need to copy the WP Cerber Reset folder to the plugins folder. Follow these simple steps.
238
 
@@ -260,6 +279,13 @@ To get access to your dashboard you need to copy the WP Cerber Reset folder to t
260
 
261
  == Changelog ==
262
 
 
 
 
 
 
 
 
263
  = 5.8 =
264
  * New: Now the plugin will send a brief performance report (activity for past seven days) to specified email addresses.
265
  * Plugin admin interface pages: compatibility with screen readers has been improved.
1
  === Cerber Security & Antispam ===
2
  Contributors: gioni
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SR8RJXFU35EW8
4
+ Tags: security, login, protect, antispam, limit login attempts, woocommerce, custom login, recaptcha, captcha, activity, log, logging, block, fail2ban, monitoring, rename wp login, whitelist, blacklist, wordpress security, xmlrpc, user enumeration, hardening, authentication, notification, pushbullet, wordfence, brute force, bruteforce, users
5
  Requires at least: 4.4
6
  Requires PHP: 5.3
7
  Tested up to: 4.9
8
+ Stable tag: 5.8.6
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.
30
  * Hide wp-login.php, wp-signup.php and wp-register.php from possible attacks and return 404 HTTP Error.
31
  * Hide wp-admin (dashboard) and return 404 HTTP Error when a user isn't logged in.
32
  * Immediately block IP or subnet when attempting to log in with non-existent or prohibited username.
33
+ * Restrict user registration or login with a username matching REGEX patterns.
34
  * Disable WP REST API or restrict access with your own rules
35
  * Disable XML-RPC (block access to the XML-RPC interface including Pingbacks and Trackbacks)
36
  * Disable feeds (block access to the RSS, Atom and RDF feeds)
153
  2. Configure your **Custom login URL** and remember it (the plugin will send you an email with it).
154
  3. Once you have configured Custom login URL, check 'Immediately block IP after any request to wp-login.php' and 'Block direct access to wp-login.php and return HTTP 404 Not Found Error'. Don't use wp-admin to log in to your WordPress dashboard anymore.
155
  4. If your WordPress has a few experienced users, check 'Immediately block IP when attempting to log in with a non-existent username'.
156
+ 5. Specify the list of prohibited usernames (logins) that legit users will never use. They will not be permitted to log in or register.
157
  6. Configure mobile and browser notifications via Pushbullet.
158
  7. Obtain keys and enable invisible reCAPTCHA for password reset and registration forms (WooCommerce supported too).
159
 
164
 
165
  Yes. [WP Cerber settings for CloudFlare](https://wpcerber.com/cloudflare-and-wordpress-cerber/).
166
 
167
+ = Is WP Cerber Security compatible with WordPress multisite mode? =
168
 
169
  Yes. All settings apply to all sites in the network simultaneously. You have to activate the plugin in the Network Admin area on the Plugins page. Just click on the Network Activate link.
170
 
171
+ = Is WP Cerber Security compatible with bbPress? =
172
 
173
  Yes. [Compatibility notes](https://wpcerber.com/compatibility/).
174
 
175
+ = Is WP Cerber Security compatible with WooCommerce? =
176
 
177
  Completely.
178
 
184
 
185
  Yes, easily. [How to rename wp-login.php](https://wpcerber.com/how-to-rename-wp-login-php/)
186
 
187
+ = Can I hide the wp-admin folder? =
188
 
189
  Yes, easily. [How to hide wp-admin and wp-login.php from possible attacks](https://wpcerber.com/how-to-hide-wp-admin-and-wp-login-php-from-possible-attacks/)
190
 
191
+ = Can I rename the wp-admin folder? =
192
 
193
  Nope. It's not possible and not recommended for compatibility reasons.
194
 
195
+ = Can I hide the fact I use WordPress? =
196
+
197
+ No. We strongly encourage you not to use any plugin that renames wp-admin folder to protect a website.
198
+ Beware of all plugins that hide WordPress folders or other parts of a website and claim this as a security feature.
199
+ They are not capable to protect your website. Don't be silly, hiding some stuff doesn't make your site more secure.
200
+
201
+ = Can WP Cerber Security work together with the Limit Login Attempts plugin? =
202
 
203
  Nope. WP Cerber is a drop in replacement for that outdated plugin.
204
 
205
+ = Can WP Cerber Security protect my site from DDoS attacks? =
206
 
207
+ Nope. The plugin protects your site from Brute force attacks or distributed Brute force attacks. By default WordPress allows unlimited login attempts either through the login form or by sending special cookies. This allows passwords to be cracked with relative ease via a brute force attack. To prevent from such a bad situation use WP Cerber.
208
 
209
  = Is there any WordPress plugin to protect my site from DDoS attacks? =
210
 
212
 
213
  = What is the goal of Citadel mode? =
214
 
215
+ Citadel mode is intended to block massive bot (botnet) attacks and also a slow brute force attack. The last type of attack has a large range of intruder IPs with a small number of attempts to login per each.
216
 
217
  = How to turn off Citadel mode completely? =
218
 
222
 
223
  With Fail2Ban you can protect site on the OS level with iptables firewall. See details here: [https://wpcerber.com/how-to-protect-wordpress-with-fail2ban/](https://wpcerber.com/how-to-protect-wordpress-with-fail2ban/)
224
 
225
+ = Do I need to use Fail2Ban to get the plugin working? =
226
 
227
  No, you don't. It is optional.
228
 
229
+ = Is WP Cerber Security compatible with other security plugins like WordFence, iThemes Security, Sucuri, NinjaFirewall, All In One WP Security & Firewall, BulletProof Security? =
230
+
231
+ The plugin has been tested with WordFence and no issues have been noticed. Other plugins also should be compatible.
232
+
233
  = Can I use this plugin on the WP Engine hosting? =
234
 
235
+ Yes! WP Cerber Security is not on the list of disallowed plugins.
236
+
237
+ = Is the plugin compatible with Cloudflare? =
238
+
239
+ Yes, read more: https://wpcerber.com/cloudflare-and-wordpress-cerber/
240
+
241
+ = Does the plugin works on websites with SSL(HTTPS) =
242
+
243
+ Absolutely!
244
 
245
  = It seems that old activity records are not removing from the activity log =
246
 
251
 
252
  = I'm unable to log in / I'm locked out of my site / How to get access (log in) to the dashboard? =
253
 
254
+ There is a special version of the plugin called **WP Cerber Reset**. This version performs only one task. It resets all WP Cerber settings to their initial values (excluding Access Lists) and then deactivates itself.
255
 
256
  To get access to your dashboard you need to copy the WP Cerber Reset folder to the plugins folder. Follow these simple steps.
257
 
279
 
280
  == Changelog ==
281
 
282
+ = 5.8.6 =
283
+ * New: Regular expressions (REGEX) in the list of prohibited usernames.
284
+ * New: Enable/disable weekly reports, a new setting to specify email addresses for weekly reports.
285
+ * Improved compatibility with non-standard authentication processes, WooCommerce and exotic/outdated hosting environments.
286
+ * Bug fixed: Some interface elements of WordPress Customizer might not work.
287
+ * [Read more](https://wpcerber.com/wp-cerber-security-5-8-6/)
288
+
289
  = 5.8 =
290
  * New: Now the plugin will send a brief performance report (activity for past seven days) to specified email addresses.
291
  * Plugin admin interface pages: compatibility with screen readers has been improved.
settings.php CHANGED
@@ -41,6 +41,16 @@ define('CERBER_OPT_U','cerber-users');
41
  define('CERBER_OPT_C','cerber-recaptcha');
42
  define('CERBER_OPT_N','cerber-notifications');
43
 
 
 
 
 
 
 
 
 
 
 
44
  /*
45
  WP Settings API
46
  */
@@ -67,7 +77,7 @@ function cerber_settings_init(){
67
  add_settings_field('nonusers',__('Non-existent users','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'proactive',array('group'=>$tab,'option'=>'nonusers','type'=>'checkbox','label'=>__('Immediately block IP when attempting to login with a non-existent username','wp-cerber')));
68
  add_settings_field('noredirect',__('Redirect dashboard requests','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'proactive',array('group'=>$tab,'option'=>'noredirect','type'=>'checkbox','label'=>__('Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request','wp-cerber')));
69
  add_settings_field('wplogin',__('Request wp-login.php','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'proactive',array('group'=>$tab,'option'=>'wplogin','type'=>'checkbox','label'=>__('Immediately block IP after any request to wp-login.php','wp-cerber')));
70
- add_settings_field('page404',__('Display 404 page','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'proactive',array('group'=>$tab, 'option'=>'page404', 'type'=>'select', 'set' => array('Use 404 template from active theme', 'Display simple 404 page')));
71
 
72
  add_settings_section('custom', __('Custom login page','wp-cerber'), 'cerber_sapi_section', 'cerber-' . $tab);
73
  add_settings_field('loginpath',__('Custom login URL','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'custom',array('group'=>$tab,'option'=>'loginpath','type'=>'text','label'=>__('must not overlap with the existing pages or posts slug','wp-cerber')));
@@ -76,7 +86,6 @@ function cerber_settings_init(){
76
  add_settings_section('citadel', __('Citadel mode','wp-cerber'), 'cerber_sapi_section', 'cerber-' . $tab);
77
  add_settings_field('citadel',__('Threshold','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'citadel',array('group'=>$tab,'option'=>'citadel','type'=>'citadel'));
78
  add_settings_field('ciduration',__('Duration','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'citadel',array('group'=>$tab,'option'=>'ciduration','type'=>'text','label'=>__('minutes','wp-cerber'),'size'=>3));
79
- //add_settings_field('ciwhite',__('White IP Access List','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'citadel',array('group'=>$tab,'option'=>'ciwhite','type'=>'checkbox','label'=>__('Permit IPs from the White IP Access List to log in','wp-cerber')));
80
  add_settings_field('cinotify',__('Notifications','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'citadel',array('group'=>$tab,'option'=>'cinotify','type'=>'checkbox','label'=>__('Send notification to admin email','wp-cerber').' [ <a href="'.wp_nonce_url(add_query_arg(array('testnotify'=>'citadel', 'settings-updated' => 0)),'control','cerber_nonce').'">'.__('Click to send test','wp-cerber').'</a> ]'));
81
 
82
  add_settings_section('activity', __('Activity','wp-cerber'), 'cerber_sapi_section', 'cerber-' . $tab);
@@ -111,7 +120,7 @@ function cerber_settings_init(){
111
  register_setting( 'cerberus-'.$tab, CERBER_OPT_U);
112
  add_settings_section('us', __('User related settings','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_U);
113
  if (lab_lab()) add_settings_field('reglimit',__('Registration limit','wp-cerber'),'cerberus_field_show', CERBER_OPT_U,'us',array('group'=>$tab,'option'=>'reglimit','type'=>'reglimit'));
114
- add_settings_field('prohibited',__('Prohibited usernames','wp-cerber'),'cerberus_field_show',CERBER_OPT_U,'us',array('group'=>$tab,'option'=>'prohibited','type'=>'textarea','label'=>__('Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins.','wp-cerber')));
115
  add_settings_field('auth_expire',__('User session expire','wp-cerber'),'cerberus_field_show',CERBER_OPT_U,'us',array('group'=>$tab,'option'=>'auth_expire','type'=>'text','label'=>__('in minutes (leave empty to use default WP value)','wp-cerber'),'size' => 6));
116
  add_settings_field('usersort',__('Sort users in dashboard','wp-cerber'),'cerberus_field_show',CERBER_OPT_U,'us',array('group'=>$tab,'option'=>'usersort','type'=>'checkbox','label'=>__('by date of registration','wp-cerber')));
117
 
@@ -128,7 +137,7 @@ function cerber_settings_init(){
128
  add_settings_section('antibot_more', __('Adjust antispam engine','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_C);
129
  add_settings_field('botssafe',__('Safe mode','wp-cerber'),'cerberus_field_show',CERBER_OPT_C,'antibot_more',array('group'=>$tab,'option'=>'botssafe','type'=>'checkbox','label'=>__('Use less restrictive policies (allow AJAX)','wp-cerber') ));
130
  add_settings_field('botsnoauth',__('Logged in users','wp-cerber'),'cerberus_field_show',CERBER_OPT_C,'antibot_more',array('group'=>$tab,'option'=>'botsnoauth','type'=>'checkbox','label'=>__('Disable bot detection engine for logged in users','wp-cerber') ));
131
- add_settings_field('botswhite',__('Query whitelist','wp-cerber'),'cerberus_field_show',CERBER_OPT_C,'antibot_more',array('group'=>$tab,'option'=>'botswhite','type'=>'textarea','label'=>__('Specify search strings to search in a request URI to exclude the request from inspection by the engine. One string per line.','wp-cerber')));
132
 
133
  add_settings_section('commproc', __('Comment processing','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_C);
134
  add_settings_field('spamcomm',__('If a spam comment detected','wp-cerber'),'cerberus_field_show',CERBER_OPT_C,'commproc',array('group'=>$tab, 'option'=>'spamcomm', 'type'=>'select', 'set' => array(__('Deny it completely','wp-cerber'),__('Mark it as spam','wp-cerber'))));
@@ -160,10 +169,10 @@ function cerber_settings_init(){
160
  register_setting( 'cerberus-'.$group, CERBER_OPT_N);
161
  add_settings_section('notify', __('Email notifications','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_N);
162
  $def_email = '<b>'.get_site_option('admin_email').'</b>';
163
- add_settings_field('email',__('Email Address','wp-cerber'),'cerber_field_show', CERBER_OPT_N,'notify',array('group'=>$group,'setting'=>'email','type'=>'text','placeholder'=>__('Use comma to specify multiple values','wp-cerber'),'size'=>60,'label'=>sprintf(__('if empty, the admin email %s will be used','wp-cerber'),$def_email)));
164
  add_settings_field('emailrate',__('Notification limit','wp-cerber'),'cerber_field_show',CERBER_OPT_N,'notify',array('group'=>$group,'setting'=>'emailrate','type'=>'text','label'=>__('notification letters allowed per hour (0 means unlimited)','wp-cerber'),'size'=>3));
165
 
166
- add_settings_section('pushit', __('Push notifications','wp-cerber'). ' <a class="help-sign" href="'.cerber_admin_link('help').'">?</a>', 'cerber_sapi_section', CERBER_OPT_N);
167
  add_settings_field('pbtoken','Pushbullet access token','cerber_field_show',CERBER_OPT_N,'pushit',array('group'=>$group,'setting'=>'pbtoken','type'=>'text','size'=>60));
168
 
169
  $set = array();
@@ -180,6 +189,8 @@ function cerber_settings_init(){
180
 
181
  add_settings_section('reports', __('Weekly reports','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_N);
182
  add_settings_field('wreports','Send reports on','cerber_field_show',CERBER_OPT_N,'reports',array('group'=>$group,'setting'=>'wreports','type'=>'reptime'));
 
 
183
 
184
  }
185
  /*
@@ -295,14 +306,14 @@ function cerber_settings_page(){
295
  * Display settings screen (one tab)
296
  *
297
  */
298
- function cerber_show_settings_page($tab = null){
299
  if (is_multisite()) $action = ''; // Settings API doesn't work in multisite. Post data will be handled in the cerber_ms_update()
300
  else $action ='options.php';
301
  // Display form with settings fields via Settings API
302
  echo '<form method="post" action="'.$action.'">';
303
 
304
- settings_fields( 'cerberus-'.$tab ); // option group name, the same as used in register_setting().
305
- do_settings_sections( 'cerber-'.$tab ); // the same as used in add_settings_section() $page
306
  echo '<div style="padding-left: 220px">';
307
  submit_button();
308
  echo '</div>';
@@ -448,12 +459,9 @@ function cerber_field_show($args){
448
  $pre = '';
449
  $value = '';
450
  $disabled = '';
451
- if ( ! empty( $args['label'] ) ) {
452
- $label = $args['label'];
453
- }
454
- else {
455
- $label = '';
456
- }
457
  if ( isset( $args['setting'] ) ) {
458
  if ( isset( $settings[ $args['setting'] ] ) ) {
459
  $value = $settings[ $args['setting'] ];
@@ -465,7 +473,7 @@ function cerber_field_show($args){
465
  $pre = rtrim( get_home_url(), '/' ) . '/';
466
  $value = urldecode( $value );
467
  }
468
- elseif ( $args['setting'] == 'prohibited' || $args['setting'] == 'email' ) {
469
  $value = cerber_array2text($value, ', ');
470
  }
471
  elseif ( $args['setting'] == 'botswhite' || $args['setting'] == 'restwhite') {
@@ -482,7 +490,7 @@ function cerber_field_show($args){
482
  $s2 = $args['group'].'-number';
483
  $s3 = $args['group'].'-within';
484
 
485
- $html=sprintf( $args['label'] ,
486
  '<input type="text" name="cerber-'.$args['group'].'['.$s1.']" value="'.$settings[$s1].'" size="3" maxlength="3" />',
487
  '<input type="text" name="cerber-'.$args['group'].'['.$s2.']" value="'.$settings[$s2].'" size="3" maxlength="3" />',
488
  '<input type="text" name="cerber-'.$args['group'].'['.$s3.']" value="'.$settings[$s3].'" size="3" maxlength="3" />');
@@ -517,11 +525,11 @@ function cerber_field_show($args){
517
  break;
518
  case 'checkbox':
519
  $html='<label class="crb-switch"><input class="screen-reader-text" type="checkbox" id="'.$args['setting'].'" name="'.$name.'" value="1" '.checked(1,$value,false).$disabled.' /><span class="crb-slider round"></span></label>';
520
- $html.= '<label for="'.$args['setting'].'">'.$args['label'].'</label>';
521
  break;
522
  case 'textarea':
523
  $html='<textarea class="large-text code" id="'.$args['setting'].'" name="'.$name.'" '.$disabled.' />'.$value.'</textarea>';
524
- $html.= '<br><label for="'.$args['setting'].'">'.$args['label'].'</label>';
525
  break;
526
  case 'select':
527
  $html=cerber_select($name,$args['set'],$value);
@@ -531,19 +539,25 @@ function cerber_field_show($args){
531
  break;
532
  case 'text':
533
  default:
534
- if ( isset( $args['size'] ) ) {
535
- $size = ' size="' . $args['size'] . '" maxlength="' . $args['size'] . '" ';
536
- } else {
537
- $size = '';
538
- }
539
- if ( isset( $args['placeholder'] ) ) {
540
- $plh = ' placeholder="' . $args['placeholder'] . '"';
541
- } else {
542
- $plh = '';
543
- }
544
- $html = $pre . '<input type="text" id="' . $args['setting'] . '" name="'.$name.'" value="' . $value . '"' . $disabled . $size . $plh. '/>';
545
- $html .= ' <label for="' . $args['setting'] . '">' . $label . '</label>';
546
- break;
 
 
 
 
 
 
547
  }
548
 
549
  if (!empty($args['enabled'])){
@@ -623,8 +637,8 @@ function cerber_time_select($args, $settings){
623
  /*
624
  Sanitizing users input for Main Settings
625
  */
626
- add_filter( 'pre_update_option_'.CERBER_OPT, 'cerber_sanitize_options', 10, 3 );
627
- function cerber_sanitize_options($new, $old, $option) { // $option added in WP 4.4.0
628
 
629
  $new['attempts'] = absint( $new['attempts'] );
630
  $new['period'] = absint( $new['period'] );
@@ -723,6 +737,18 @@ function cerber_sanitize_n($new, $old, $option) {
723
  }
724
  }
725
 
 
 
 
 
 
 
 
 
 
 
 
 
726
 
727
  $new['emailrate'] = absint( $new['emailrate'] );
728
 
@@ -758,7 +784,7 @@ function cerber_sanitize_h($new, $old, $option) {
758
  */
759
  add_filter( 'pre_update_option','cerber_o_o_sanitizer', 10 , 3);
760
  function cerber_o_o_sanitizer($value, $option, $old_value) {
761
- if (in_array($option, array(CERBER_OPT, CERBER_OPT_H, CERBER_OPT_U, CERBER_OPT_C, CERBER_OPT_N))){
762
  if (is_array($value)){
763
  array_walk_recursive($value, function (&$element, $key) {
764
  if (!is_array($element)) $element = sanitize_text_field($element);
@@ -767,10 +793,32 @@ function cerber_o_o_sanitizer($value, $option, $old_value) {
767
  else {
768
  $value = sanitize_text_field($value);
769
  }
 
770
  }
 
771
  return $value;
772
  }
773
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
774
  function cerber_array2text( $array = array(), $delimiter = '') {
775
  if ( empty( $array ) ) {
776
  return '';
@@ -861,7 +909,7 @@ function cerber_get_defaults($field = null) {
861
  'proxy' => 0,
862
 
863
  'subnet' => 0,
864
- 'nonusers' => 1,
865
  'wplogin' => 0,
866
  'noredirect' => 0,
867
  'page404' => 0,
@@ -872,7 +920,6 @@ function cerber_get_defaults($field = null) {
872
  'cilimit' => 200,
873
  'ciperiod' => 30,
874
  'ciduration' => 60,
875
- 'ciwhite' => 1,
876
  'cinotify' => 1,
877
 
878
  'keeplog' => 30,
@@ -887,7 +934,7 @@ function cerber_get_defaults($field = null) {
887
  'stopenum' => 1,
888
  'xmlrpc' => 0,
889
  'nofeeds' => 0,
890
- 'norest' => 1,
891
  'restauth' => 0,
892
  'restwhite' => '',
893
  'hashauthor' => 0,
@@ -933,6 +980,8 @@ function cerber_get_defaults($field = null) {
933
  'pbdevice' => '',
934
  'wreports-day' => '1', // workaround, see cerber_upgrade_options()
935
  'wreports-time' => 9,
 
 
936
  )
937
  );
938
  if ( $field ) {
@@ -942,7 +991,8 @@ function cerber_get_defaults($field = null) {
942
  }
943
  }
944
  return false;
945
- } else {
 
946
  return $all_defaults;
947
  }
948
  }
@@ -977,6 +1027,11 @@ function cerber_upgrade_options() {
977
  $values[ $field_name ] = $default;
978
  }
979
  }
 
 
 
 
 
980
  update_site_option( $option_name, $values );
981
  }
982
  }
@@ -1008,7 +1063,7 @@ function cerber_save_options($options){
1008
  * @return array|bool|mixed
1009
  */
1010
  function cerber_get_options($option = '') {
1011
- $options = array( CERBER_OPT, CERBER_OPT_H, CERBER_OPT_U, CERBER_OPT_C, CERBER_OPT_N );
1012
  $united = array();
1013
  foreach ( $options as $opt ) {
1014
  $o = get_site_option( $opt );
@@ -1038,7 +1093,7 @@ function crb_get_settings($option = '') {
1038
  static $united;
1039
 
1040
  /**
1041
- * For some hostings it might be faster
1042
  */
1043
  if ( defined( 'CERBER_WP_OPTIONS' ) ) {
1044
  return cerber_get_options( $option );
@@ -1046,7 +1101,7 @@ function crb_get_settings($option = '') {
1046
 
1047
  if (!isset($united)) {
1048
 
1049
- $options = array( CERBER_OPT, CERBER_OPT_H, CERBER_OPT_U, CERBER_OPT_C, CERBER_OPT_N );
1050
  $united = array();
1051
 
1052
  foreach ( $options as $opt ) {
@@ -1099,16 +1154,32 @@ function cerber_load_defaults() {
1099
  }
1100
 
1101
  /**
 
 
1102
  *
1103
- * @return string Email address(es) for notifications
1104
  */
1105
- function cerber_get_email() {
1106
- if ( ! $email = crb_get_settings( 'email' ) ) {
1107
- $email = get_site_option( 'admin_email' );
 
 
1108
  }
1109
- if ( is_array( $email ) ) { // @since 4.9
 
 
 
 
 
1110
  $email = implode( ', ', $email );
1111
  }
1112
 
 
 
 
 
 
 
 
1113
  return $email;
1114
  }
41
  define('CERBER_OPT_C','cerber-recaptcha');
42
  define('CERBER_OPT_N','cerber-notifications');
43
 
44
+ /**
45
+ * A set of Cerber setting (WP options)
46
+ *
47
+ * @return array
48
+ */
49
+
50
+ function cerber_get_setting_list() {
51
+ return array( CERBER_OPT, CERBER_OPT_H, CERBER_OPT_U, CERBER_OPT_C, CERBER_OPT_N );
52
+ }
53
+
54
  /*
55
  WP Settings API
56
  */
77
  add_settings_field('nonusers',__('Non-existent users','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'proactive',array('group'=>$tab,'option'=>'nonusers','type'=>'checkbox','label'=>__('Immediately block IP when attempting to login with a non-existent username','wp-cerber')));
78
  add_settings_field('noredirect',__('Redirect dashboard requests','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'proactive',array('group'=>$tab,'option'=>'noredirect','type'=>'checkbox','label'=>__('Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request','wp-cerber')));
79
  add_settings_field('wplogin',__('Request wp-login.php','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'proactive',array('group'=>$tab,'option'=>'wplogin','type'=>'checkbox','label'=>__('Immediately block IP after any request to wp-login.php','wp-cerber')));
80
+ add_settings_field('page404',__('Display 404 page','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'proactive',array('group'=>$tab, 'option'=>'page404', 'type'=>'select', 'set' => array(__('Use 404 template from the active theme','wp-cerber'), __('Display simple 404 page','wp-cerber'))));
81
 
82
  add_settings_section('custom', __('Custom login page','wp-cerber'), 'cerber_sapi_section', 'cerber-' . $tab);
83
  add_settings_field('loginpath',__('Custom login URL','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'custom',array('group'=>$tab,'option'=>'loginpath','type'=>'text','label'=>__('must not overlap with the existing pages or posts slug','wp-cerber')));
86
  add_settings_section('citadel', __('Citadel mode','wp-cerber'), 'cerber_sapi_section', 'cerber-' . $tab);
87
  add_settings_field('citadel',__('Threshold','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'citadel',array('group'=>$tab,'option'=>'citadel','type'=>'citadel'));
88
  add_settings_field('ciduration',__('Duration','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'citadel',array('group'=>$tab,'option'=>'ciduration','type'=>'text','label'=>__('minutes','wp-cerber'),'size'=>3));
 
89
  add_settings_field('cinotify',__('Notifications','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'citadel',array('group'=>$tab,'option'=>'cinotify','type'=>'checkbox','label'=>__('Send notification to admin email','wp-cerber').' [ <a href="'.wp_nonce_url(add_query_arg(array('testnotify'=>'citadel', 'settings-updated' => 0)),'control','cerber_nonce').'">'.__('Click to send test','wp-cerber').'</a> ]'));
90
 
91
  add_settings_section('activity', __('Activity','wp-cerber'), 'cerber_sapi_section', 'cerber-' . $tab);
120
  register_setting( 'cerberus-'.$tab, CERBER_OPT_U);
121
  add_settings_section('us', __('User related settings','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_U);
122
  if (lab_lab()) add_settings_field('reglimit',__('Registration limit','wp-cerber'),'cerberus_field_show', CERBER_OPT_U,'us',array('group'=>$tab,'option'=>'reglimit','type'=>'reglimit'));
123
+ add_settings_field('prohibited',__('Prohibited usernames','wp-cerber'),'cerberus_field_show',CERBER_OPT_U,'us',array('group'=>$tab,'option'=>'prohibited','type'=>'textarea','label'=>__('Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins.','wp-cerber').' '.__('To specify a REGEX pattern wrap a pattern in two forward slashes.','wp-cerber')));
124
  add_settings_field('auth_expire',__('User session expire','wp-cerber'),'cerberus_field_show',CERBER_OPT_U,'us',array('group'=>$tab,'option'=>'auth_expire','type'=>'text','label'=>__('in minutes (leave empty to use default WP value)','wp-cerber'),'size' => 6));
125
  add_settings_field('usersort',__('Sort users in dashboard','wp-cerber'),'cerberus_field_show',CERBER_OPT_U,'us',array('group'=>$tab,'option'=>'usersort','type'=>'checkbox','label'=>__('by date of registration','wp-cerber')));
126
 
137
  add_settings_section('antibot_more', __('Adjust antispam engine','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_C);
138
  add_settings_field('botssafe',__('Safe mode','wp-cerber'),'cerberus_field_show',CERBER_OPT_C,'antibot_more',array('group'=>$tab,'option'=>'botssafe','type'=>'checkbox','label'=>__('Use less restrictive policies (allow AJAX)','wp-cerber') ));
139
  add_settings_field('botsnoauth',__('Logged in users','wp-cerber'),'cerberus_field_show',CERBER_OPT_C,'antibot_more',array('group'=>$tab,'option'=>'botsnoauth','type'=>'checkbox','label'=>__('Disable bot detection engine for logged in users','wp-cerber') ));
140
+ add_settings_field('botswhite',__('Query whitelist','wp-cerber'),'cerberus_field_show',CERBER_OPT_C,'antibot_more',array('group'=>$tab,'option'=>'botswhite','type'=>'textarea','label'=>__('Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line.','wp-cerber')));
141
 
142
  add_settings_section('commproc', __('Comment processing','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_C);
143
  add_settings_field('spamcomm',__('If a spam comment detected','wp-cerber'),'cerberus_field_show',CERBER_OPT_C,'commproc',array('group'=>$tab, 'option'=>'spamcomm', 'type'=>'select', 'set' => array(__('Deny it completely','wp-cerber'),__('Mark it as spam','wp-cerber'))));
169
  register_setting( 'cerberus-'.$group, CERBER_OPT_N);
170
  add_settings_section('notify', __('Email notifications','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_N);
171
  $def_email = '<b>'.get_site_option('admin_email').'</b>';
172
+ add_settings_field('email',__('Email Address','wp-cerber'),'cerber_field_show', CERBER_OPT_N,'notify',array('group'=>$group,'setting'=>'email','type'=>'text','placeholder'=>__('Use comma to specify multiple values','wp-cerber'),'size' => 60, 'maxlength' => 1000 ,'label'=>sprintf(__('if empty, the admin email %s will be used','wp-cerber'),$def_email)));
173
  add_settings_field('emailrate',__('Notification limit','wp-cerber'),'cerber_field_show',CERBER_OPT_N,'notify',array('group'=>$group,'setting'=>'emailrate','type'=>'text','label'=>__('notification letters allowed per hour (0 means unlimited)','wp-cerber'),'size'=>3));
174
 
175
+ add_settings_section('pushit', __('Push notifications','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_N);
176
  add_settings_field('pbtoken','Pushbullet access token','cerber_field_show',CERBER_OPT_N,'pushit',array('group'=>$group,'setting'=>'pbtoken','type'=>'text','size'=>60));
177
 
178
  $set = array();
189
 
190
  add_settings_section('reports', __('Weekly reports','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_N);
191
  add_settings_field('wreports','Send reports on','cerber_field_show',CERBER_OPT_N,'reports',array('group'=>$group,'setting'=>'wreports','type'=>'reptime'));
192
+ add_settings_field('email-report',__('Email Address','wp-cerber'),'cerber_field_show', CERBER_OPT_N,'reports',array('group'=>$group,'setting'=>'email-report','type'=>'text','placeholder'=>__('Use comma to specify multiple values','wp-cerber'),'size' => 60, 'maxlength' => 1000 , 'label'=>__('if empty, email from notification settings will be used','wp-cerber')));
193
+ add_settings_field('enable-report',__('Enable reporting','wp-cerber'),'cerber_field_show',CERBER_OPT_N,'reports',array('group'=>$group,'setting'=>'enable-report','type'=>'checkbox'));
194
 
195
  }
196
  /*
306
  * Display settings screen (one tab)
307
  *
308
  */
309
+ function cerber_show_settings_page($group = null){
310
  if (is_multisite()) $action = ''; // Settings API doesn't work in multisite. Post data will be handled in the cerber_ms_update()
311
  else $action ='options.php';
312
  // Display form with settings fields via Settings API
313
  echo '<form method="post" action="'.$action.'">';
314
 
315
+ settings_fields( 'cerberus-'.$group ); // option group name, the same as used in register_setting().
316
+ do_settings_sections( 'cerber-'.$group ); // the same as used in add_settings_section() $page
317
  echo '<div style="padding-left: 220px">';
318
  submit_button();
319
  echo '</div>';
459
  $pre = '';
460
  $value = '';
461
  $disabled = '';
462
+
463
+ $label = empty( $args['label'] ) ? '' : $args['label'];
464
+
 
 
 
465
  if ( isset( $args['setting'] ) ) {
466
  if ( isset( $settings[ $args['setting'] ] ) ) {
467
  $value = $settings[ $args['setting'] ];
473
  $pre = rtrim( get_home_url(), '/' ) . '/';
474
  $value = urldecode( $value );
475
  }
476
+ elseif ( $args['setting'] == 'prohibited' || $args['setting'] == 'email' || $args['setting'] == 'email-report' ) {
477
  $value = cerber_array2text($value, ', ');
478
  }
479
  elseif ( $args['setting'] == 'botswhite' || $args['setting'] == 'restwhite') {
490
  $s2 = $args['group'].'-number';
491
  $s3 = $args['group'].'-within';
492
 
493
+ $html=sprintf( $label ,
494
  '<input type="text" name="cerber-'.$args['group'].'['.$s1.']" value="'.$settings[$s1].'" size="3" maxlength="3" />',
495
  '<input type="text" name="cerber-'.$args['group'].'['.$s2.']" value="'.$settings[$s2].'" size="3" maxlength="3" />',
496
  '<input type="text" name="cerber-'.$args['group'].'['.$s3.']" value="'.$settings[$s3].'" size="3" maxlength="3" />');
525
  break;
526
  case 'checkbox':
527
  $html='<label class="crb-switch"><input class="screen-reader-text" type="checkbox" id="'.$args['setting'].'" name="'.$name.'" value="1" '.checked(1,$value,false).$disabled.' /><span class="crb-slider round"></span></label>';
528
+ $html.= '<label for="'.$args['setting'].'">'.$label.'</label>';
529
  break;
530
  case 'textarea':
531
  $html='<textarea class="large-text code" id="'.$args['setting'].'" name="'.$name.'" '.$disabled.' />'.$value.'</textarea>';
532
+ $html.= '<br><label for="'.$args['setting'].'">'.$label.'</label>';
533
  break;
534
  case 'select':
535
  $html=cerber_select($name,$args['set'],$value);
539
  break;
540
  case 'text':
541
  default:
542
+ $size = '';
543
+ $maxlength = '';
544
+ $plh = '';
545
+ if ( isset( $args['size'] ) ) {
546
+ //$size = ' size="' . $args['size'] . '" maxlength="' . $args['size'] . '" ';
547
+ $size = ' size="' . $args['size'] . '"';
548
+ }
549
+ if ( isset( $args['maxlength'] ) ) {
550
+ $maxlength = ' maxlength="' . $args['maxlength'] . '" ';
551
+ }
552
+ elseif ( isset( $args['size'] ) ) {
553
+ $maxlength = ' maxlength="' . $args['size'] . '" ';
554
+ }
555
+ if ( isset( $args['placeholder'] ) ) {
556
+ $plh = ' placeholder="' . $args['placeholder'] . '"';
557
+ }
558
+ $html = $pre . '<input type="text" id="' . $args['setting'] . '" name="' . $name . '" value="' . $value . '"' . $disabled . $size . $maxlength . $plh . '/>';
559
+ $html .= ' <label for="' . $args['setting'] . '">' . $label . '</label>';
560
+ break;
561
  }
562
 
563
  if (!empty($args['enabled'])){
637
  /*
638
  Sanitizing users input for Main Settings
639
  */
640
+ add_filter( 'pre_update_option_'.CERBER_OPT, 'cerber_sanitize_m', 10, 3 );
641
+ function cerber_sanitize_m($new, $old, $option) { // $option added in WP 4.4.0
642
 
643
  $new['attempts'] = absint( $new['attempts'] );
644
  $new['period'] = absint( $new['period'] );
737
  }
738
  }
739
 
740
+ $emails = cerber_text2array( $new['email-report'], ',' );
741
+
742
+ $new['email-report'] = array();
743
+ foreach ( $emails as $item ) {
744
+ if ( is_email( $item ) ) {
745
+ $new['email-report'][] = $item;
746
+ }
747
+ else {
748
+ cerber_admin_notice( __( '<strong>ERROR</strong>: please enter a valid email address.' ) );
749
+ }
750
+ }
751
+
752
 
753
  $new['emailrate'] = absint( $new['emailrate'] );
754
 
784
  */
785
  add_filter( 'pre_update_option','cerber_o_o_sanitizer', 10 , 3);
786
  function cerber_o_o_sanitizer($value, $option, $old_value) {
787
+ if (in_array($option, cerber_get_setting_list())){
788
  if (is_array($value)){
789
  array_walk_recursive($value, function (&$element, $key) {
790
  if (!is_array($element)) $element = sanitize_text_field($element);
793
  else {
794
  $value = sanitize_text_field($value);
795
  }
796
+ $value = cerber_normalize($value, $option);
797
  }
798
+
799
  return $value;
800
  }
801
 
802
+ /**
803
+ * Fill missed settings (array keys) with empty values
804
+ * @since 5.8.2
805
+ *
806
+ * @param $values
807
+ * @param $group
808
+ *
809
+ * @return array
810
+ */
811
+ function cerber_normalize( $values, $group ) {
812
+ $def = cerber_get_defaults();
813
+ if ( isset( $def[ $group ] ) ) {
814
+ $keys = array_keys( $def[ $group ] );
815
+ $empty = array_fill_keys( $keys, '' );
816
+ $values = array_merge( $empty, $values );
817
+ }
818
+
819
+ return $values;
820
+ }
821
+
822
  function cerber_array2text( $array = array(), $delimiter = '') {
823
  if ( empty( $array ) ) {
824
  return '';
909
  'proxy' => 0,
910
 
911
  'subnet' => 0,
912
+ 'nonusers' => 0,
913
  'wplogin' => 0,
914
  'noredirect' => 0,
915
  'page404' => 0,
920
  'cilimit' => 200,
921
  'ciperiod' => 30,
922
  'ciduration' => 60,
 
923
  'cinotify' => 1,
924
 
925
  'keeplog' => 30,
934
  'stopenum' => 1,
935
  'xmlrpc' => 0,
936
  'nofeeds' => 0,
937
+ 'norest' => 0,
938
  'restauth' => 0,
939
  'restwhite' => '',
940
  'hashauthor' => 0,
980
  'pbdevice' => '',
981
  'wreports-day' => '1', // workaround, see cerber_upgrade_options()
982
  'wreports-time' => 9,
983
+ 'email-report' => '',
984
+ 'enable-report' => '1', // workaround, see cerber_upgrade_options()
985
  )
986
  );
987
  if ( $field ) {
991
  }
992
  }
993
  return false;
994
+ }
995
+ else {
996
  return $all_defaults;
997
  }
998
  }
1027
  $values[ $field_name ] = $default;
1028
  }
1029
  }
1030
+
1031
+
1032
+ // Must be at the end of all operations above
1033
+ $values = cerber_normalize($values, $option_name); // @since 5.8.2
1034
+
1035
  update_site_option( $option_name, $values );
1036
  }
1037
  }
1063
  * @return array|bool|mixed
1064
  */
1065
  function cerber_get_options($option = '') {
1066
+ $options = cerber_get_setting_list();
1067
  $united = array();
1068
  foreach ( $options as $opt ) {
1069
  $o = get_site_option( $opt );
1093
  static $united;
1094
 
1095
  /**
1096
+ * For some hosting environments it might be faster, e.g. Redis enabled
1097
  */
1098
  if ( defined( 'CERBER_WP_OPTIONS' ) ) {
1099
  return cerber_get_options( $option );
1101
 
1102
  if (!isset($united)) {
1103
 
1104
+ $options = cerber_get_setting_list();
1105
  $united = array();
1106
 
1107
  foreach ( $options as $opt ) {
1154
  }
1155
 
1156
  /**
1157
+ * @param string $type Type of notification email
1158
+ * @param bool $array Return as an array
1159
  *
1160
+ * @return array|string Email address(es) for notifications
1161
  */
1162
+ function cerber_get_email($type = '', $array = false) {
1163
+ $email = '';
1164
+
1165
+ if ( $type == 'report' ) {
1166
+ $email = crb_get_settings( 'email-' . $type );
1167
  }
1168
+
1169
+ if ( ! $email ) {
1170
+ $email = crb_get_settings( 'email' );
1171
+ }
1172
+
1173
+ if ( !$array && is_array( $email ) ) { // @since 4.9
1174
  $email = implode( ', ', $email );
1175
  }
1176
 
1177
+ if ( empty( $email ) ) {
1178
+ $email = get_site_option( 'admin_email' );
1179
+ if ( $array ) {
1180
+ $email = array( $email );
1181
+ }
1182
+ }
1183
+
1184
  return $email;
1185
  }
whois.php CHANGED
@@ -201,10 +201,10 @@ function cerber_get_flag_html( $code ) {
201
  return '';
202
  }
203
  if ( ! isset( $assets_url ) ) {
204
- $assets_url = plugin_dir_url( CERBER_FILE ) . 'assets';
205
  }
206
 
207
- return '<span style="padding-left: 24px; background: url(\'' . $assets_url . '/flags/' . strtolower( $code ) . '.gif\') no-repeat left;"></span>';
208
  }
209
  /*
210
  *
201
  return '';
202
  }
203
  if ( ! isset( $assets_url ) ) {
204
+ $assets_url = plugin_dir_url( CERBER_FILE ) . 'assets/';
205
  }
206
 
207
+ return '<span style="padding-left: 24px; background: url(\'' . $assets_url . 'flags/' . strtolower( $code ) . '.gif\') no-repeat left;"></span>';
208
  }
209
  /*
210
  *
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: 5.8
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', '5.8' );
65
  define( 'CERBER_LOG_TABLE', 'cerber_log' );
66
  define( 'CERBER_ACL_TABLE', 'cerber_acl' );
67
  define( 'CERBER_BLOCKS_TABLE', 'cerber_blocks' );
@@ -261,13 +261,14 @@ class WP_Cerber {
261
  return $this->options;
262
  }
263
 
 
264
  final public function isProhibited( $username ) {
265
  if ( empty( $this->options['prohibited'] ) ) {
266
  return false;
267
  }
268
 
269
  return in_array( $username, (array) $this->options['prohibited'] );
270
- }
271
 
272
  /**
273
  * Adding reCAPTCHA widgets
@@ -298,44 +299,6 @@ class WP_Cerber {
298
  }
299
  } );
300
 
301
- // Commenting
302
- /*
303
- add_filter( 'comment_form_submit_field', function ( $value ) {
304
- global $wp_cerber, $post;
305
- $au = $wp_cerber->getSettings('recapcomauth');
306
- if (!$au || ($au && !is_user_logged_in())) {
307
- if (!empty($_COOKIE["cerber-recaptcha-id"]) && $_COOKIE["cerber-recaptcha-id"] == $post->ID){
308
- echo 'ZZ<div id="cerber-recaptcha-msg">'. __( 'ERROR:', 'wp-cerber' ) .' '. $wp_cerber->reCaptchaMsg('comment').'</div>';
309
- echo '<script type="text/javascript">document.cookie = "the-recaptcha-id=0";</script>';
310
- }
311
- $wp_cerber->reCaptcha( 'widget', 'recapcom' );
312
- }
313
- return $value;
314
- } );
315
- */
316
- // $approved = apply_filters( 'pre_comment_approved', $approved, $commentdata );
317
- /* @since 4.9
318
- add_action( 'pre_comment_on_post', function ( $comment_post_ID ) {
319
- global $wp_cerber;
320
-
321
- if ($wp_cerber->getSettings('recapcomauth') && is_user_logged_in()) return;
322
-
323
- if ( ! $wp_cerber->reCaptchaValidate('comment', true) ) {
324
- cerber_log(16);
325
- setcookie('cerber-recaptcha-id', $comment_post_ID, time() + 60, '/');
326
- $comments = get_comments( array( 'number' => '1', 'post_id' => $comment_post_ID ) );
327
- if ($comments) {
328
- $loc = get_comment_link($comments[0]->comment_ID);
329
- }
330
- else {
331
- $loc = get_permalink($comment_post_ID).'#cerber-recaptcha-msg';
332
- }
333
- wp_safe_redirect( $loc );
334
- exit;
335
- }
336
- });
337
- */
338
-
339
  // Support for WooCommerce forms: @since 3.8
340
  add_action( 'woocommerce_login_form', function () {
341
  global $wp_cerber;
@@ -627,11 +590,11 @@ $wp_cerber = new WP_Cerber();
627
  *
628
  */
629
  add_action( 'plugins_loaded', function () {
630
- global $wpdb, $wp_cerber;
631
 
632
  load_plugin_textdomain( 'wp-cerber', false, basename( dirname( __FILE__ ) ) . '/languages' );
633
 
634
- if ( ! is_object( $wp_cerber ) || get_class($wp_cerber) != 'WP_Cerber') {
635
  $wp_cerber = new WP_Cerber();
636
  }
637
 
@@ -688,8 +651,7 @@ add_action( 'shutdown', function () {
688
  add_action( 'init', 'cerber_wp_login_page', 20 );
689
  //add_action( 'setup_theme', 'cerber_wp_login_page' ); // @since 5.05
690
  function cerber_wp_login_page() {
691
- global $wp_cerber;
692
- if ( $path = $wp_cerber->getSettings( 'loginpath' ) ) {
693
  if ( cerber_is_login_request() ) {
694
  define( 'DONOTCACHEPAGE', true ); // @since 5.7.6
695
  require( ABSPATH . WP_LOGIN_SCRIPT ); // load default wp-login.php form
@@ -704,8 +666,7 @@ function cerber_wp_login_page() {
704
  * @return bool
705
  */
706
  function cerber_is_login_request() {
707
- global $wp_cerber;
708
- if ( $path = $wp_cerber->getSettings( 'loginpath' ) ) {
709
  $request = $_SERVER['REQUEST_URI'];
710
  if ( $pos = strpos( $request, '?' ) ) {
711
  $request = substr( $request, 0, $pos - 1 ); // @since 4.8
@@ -775,7 +736,8 @@ function cerber_auth_control( $null, $username, $password ) {
775
  }
776
 
777
  // Check for prohibited username
778
- if ( $wp_cerber->isProhibited( $username ) ) {
 
779
  cerber_log( 52, $username );
780
  cerber_block_add( null, 4, $username );
781
 
@@ -999,7 +961,7 @@ function cerber_is_registration_prohibited( $sanitized_user_login ) {
999
  $msg = '<strong>' . __( 'ERROR:', 'wp-cerber' ) . ' </strong>' .
1000
  $wp_cerber->reCaptchaMsg('register');
1001
  }
1002
- elseif ( $wp_cerber->isProhibited( $sanitized_user_login ) ) {
1003
  $code = 'prohibited_login';
1004
  $msg = '<strong>' . __( 'ERROR:', 'wp-cerber' ) . ' </strong>' .
1005
  apply_filters( 'cerber_msg_prohibited', __( 'Username is not allowed. Please choose another one.', 'wp-cerber' ), 'register' );
@@ -1339,7 +1301,9 @@ function crb_access_control() {
1339
  if ( $acl == 'W' ) {
1340
  return;
1341
  }
1342
- elseif ( $acl == 'B' || cerber_block_check() ) {
 
 
1343
  $deny = true;
1344
  }
1345
  else {
@@ -1348,8 +1312,6 @@ function crb_access_control() {
1348
 
1349
  $opt = $wp_cerber->getSettings();
1350
 
1351
-
1352
-
1353
  $script = strtolower( cerber_get_last_in_uri( true ) );
1354
 
1355
  if ( $script ) {
@@ -2037,19 +1999,33 @@ add_filter( 'auth_cookie_expiration', function ( $expire ) {
2037
  add_action( 'wp_login', function( $login, $user ) {
2038
  if ( ! empty( $_POST['log'] ) ) { // default WP form
2039
  $user_login = htmlspecialchars($_POST['log']);
2040
- } else {
 
2041
  $user_login = $login;
2042
  }
2043
- cerber_log( 5, $user_login, $user->ID, null );
2044
  }, 10, 2 );
2045
 
2046
- add_action( 'wp_logout', function() {
 
 
 
 
 
 
 
 
 
2047
  global $user_ID;
2048
  if ( ! $user_ID ) {
2049
  $user = wp_get_current_user();
2050
  $user_ID = $user->ID;
2051
  }
2052
- cerber_log( 6, '', $user_ID, null );
 
 
 
 
2053
  });
2054
 
2055
  //add_action( 'lostpassword_post', 'cerber_password_post' );
@@ -2377,6 +2353,32 @@ function cerber_is_allowed( $ip = '' ) {
2377
 
2378
  return true;
2379
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2380
  // TODO: Merge with $wp_cerber->getStatus();
2381
  function cerber_get_status( $ip ) {
2382
  global $cerber_status;
@@ -2917,7 +2919,6 @@ function cerber_send_notify( $type = '', $msg = '', $ip = '' ) {
2917
  }
2918
  }
2919
 
2920
- $to = cerber_get_email();
2921
  $html_mode = false;
2922
 
2923
  $subj = '[' . get_option( 'blogname' ) . '] ' . __( 'WP Cerber notify', 'wp-cerber' ) . ': ';
@@ -3036,6 +3037,9 @@ function cerber_send_notify( $type = '', $msg = '', $ip = '' ) {
3036
  break;
3037
  }
3038
 
 
 
 
3039
  $body_filtered = apply_filters( 'cerber_notify_body', $body, array( 'type' => $type,
3040
  'IP' => $ip,
3041
  'to' => $to,
@@ -3064,21 +3068,43 @@ function cerber_send_notify( $type = '', $msg = '', $ip = '' ) {
3064
 
3065
  if ( $html_mode ) {
3066
  add_filter( 'wp_mail_content_type', 'cerber_enable_html' );
3067
- //$footer = nl2br($footer);
3068
  $footer = str_replace( "\n", '<br/>', $footer );
3069
  }
3070
 
3071
- $body .= $footer;
3072
 
3073
  if ( $to && $subj && $body ) {
3074
  if ( ! $html_mode ) {
3075
- cerber_pb_send( $subj, $body );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3076
  }
3077
  else {
3078
- $body = '<html>' . $body . '</html>';
3079
- }
3080
- $result = wp_mail( $to, $subj, $body );
3081
- }
 
 
 
3082
  else {
3083
  $result = false;
3084
  }
@@ -3133,7 +3159,7 @@ function cerber_generate_report($period = 7){
3133
  $site_name = get_option( 'blogname' );
3134
  }
3135
 
3136
- $ret .= '<div style="' . $css_table . '"><div style="margin:0 auto; text-align: center;"><p style="font-size: 130%; padding-top: 0.5em;">' . $site_name .'</p><p style="padding-bottom: 1em;">'. __('Weekly report','wp-cerber'). '</p></div></div>';
3137
 
3138
  $kpi_list = cerber_calculate_kpi( $period );
3139
 
@@ -3145,16 +3171,27 @@ function cerber_generate_report($period = 7){
3145
 
3146
  // Activities counters
3147
  $rows = array();
3148
- $rows[] = '<td style="'.$css_td.$css_boder.'" colspan="2"><p style="margin-bottom: 2em; font-weight: bold;">'.__('Activity details','wp-cerber').'</p></td>';
3149
  $activites = $wpdb->get_results( 'SELECT activity, COUNT(activity) cnt FROM ' . CERBER_LOG_TABLE . ' WHERE stamp > ' . $stamp . ' GROUP by activity ORDER BY cnt DESC' );
3150
  if ( $activites ) {
3151
  $lables = cerber_get_labels();
3152
  foreach ( $activites as $a ) {
3153
- $rows[] = '<td style="'.$css_boder.$css_td.'">' . $lables[ $a->activity ] . '</td><td style="padding: 0.5em; text-align: center; '.$css_boder.'"><a href="'.$base_url.'&filter_activity='.$a->activity.'">' . $a->cnt . '</a></td>';
3154
  }
3155
  }
3156
  $ret .= '<table style="border-collapse: collapse; '.$css_table.'"><tr>' . implode( '</tr><tr>', $rows ) . '</tr></table>';
3157
 
 
 
 
 
 
 
 
 
 
 
 
3158
  $ret = '<div style="width:100%; padding: 1em; text-align: center; background-color: #f9f9f9;">' . $ret . '</div>';
3159
 
3160
  return $ret;
@@ -3233,7 +3270,8 @@ add_action( 'cerber_hourly_2', function () {
3233
 
3234
  $gmt_offset = get_option( 'gmt_offset' ) * 3600;
3235
 
3236
- if ( date( 'w', time() + $gmt_offset ) == crb_get_settings( 'wreports-day' )
 
3237
  && date( 'G', time() + $gmt_offset ) == crb_get_settings( 'wreports-time' )
3238
  //&& ! get_site_transient( 'cerber_wreport' )
3239
  ) {
@@ -3472,6 +3510,82 @@ function cerber_log( $activity, $login = '', $user_id = 0, $ip = null ) {
3472
  return $ret;
3473
  }
3474
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3475
  function cerber_count_log($activity = array(), $period = 1) {
3476
  global $wpdb;
3477
 
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: 5.8.6
9
  Text Domain: wp-cerber
10
  Domain Path: /languages
11
  Network: true
61
  exit;
62
  }
63
 
64
+ define( 'CERBER_VER', '5.8.6' );
65
  define( 'CERBER_LOG_TABLE', 'cerber_log' );
66
  define( 'CERBER_ACL_TABLE', 'cerber_acl' );
67
  define( 'CERBER_BLOCKS_TABLE', 'cerber_blocks' );
261
  return $this->options;
262
  }
263
 
264
+ /*
265
  final public function isProhibited( $username ) {
266
  if ( empty( $this->options['prohibited'] ) ) {
267
  return false;
268
  }
269
 
270
  return in_array( $username, (array) $this->options['prohibited'] );
271
+ }*/
272
 
273
  /**
274
  * Adding reCAPTCHA widgets
299
  }
300
  } );
301
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
302
  // Support for WooCommerce forms: @since 3.8
303
  add_action( 'woocommerce_login_form', function () {
304
  global $wp_cerber;
590
  *
591
  */
592
  add_action( 'plugins_loaded', function () {
593
+ global $wp_cerber;
594
 
595
  load_plugin_textdomain( 'wp-cerber', false, basename( dirname( __FILE__ ) ) . '/languages' );
596
 
597
+ if ( ! is_object( $wp_cerber ) || !($wp_cerber instanceof WP_Cerber)) {
598
  $wp_cerber = new WP_Cerber();
599
  }
600
 
651
  add_action( 'init', 'cerber_wp_login_page', 20 );
652
  //add_action( 'setup_theme', 'cerber_wp_login_page' ); // @since 5.05
653
  function cerber_wp_login_page() {
654
+ if ( $path = crb_get_settings( 'loginpath' ) ) {
 
655
  if ( cerber_is_login_request() ) {
656
  define( 'DONOTCACHEPAGE', true ); // @since 5.7.6
657
  require( ABSPATH . WP_LOGIN_SCRIPT ); // load default wp-login.php form
666
  * @return bool
667
  */
668
  function cerber_is_login_request() {
669
+ if ( $path = crb_get_settings( 'loginpath' ) ) {
 
670
  $request = $_SERVER['REQUEST_URI'];
671
  if ( $pos = strpos( $request, '?' ) ) {
672
  $request = substr( $request, 0, $pos - 1 ); // @since 4.8
736
  }
737
 
738
  // Check for prohibited username
739
+ //if ( $wp_cerber->isProhibited( $username ) ) {
740
+ if ( cerber_is_prohibited( $username ) ) {
741
  cerber_log( 52, $username );
742
  cerber_block_add( null, 4, $username );
743
 
961
  $msg = '<strong>' . __( 'ERROR:', 'wp-cerber' ) . ' </strong>' .
962
  $wp_cerber->reCaptchaMsg('register');
963
  }
964
+ elseif ( cerber_is_prohibited( $sanitized_user_login ) ) {
965
  $code = 'prohibited_login';
966
  $msg = '<strong>' . __( 'ERROR:', 'wp-cerber' ) . ' </strong>' .
967
  apply_filters( 'cerber_msg_prohibited', __( 'Username is not allowed. Please choose another one.', 'wp-cerber' ), 'register' );
1301
  if ( $acl == 'W' ) {
1302
  return;
1303
  }
1304
+
1305
+ //if ( $acl == 'B' || cerber_block_check() ) {
1306
+ if ( $acl == 'B' || !cerber_is_allowed() ) { // @since 5.8.2
1307
  $deny = true;
1308
  }
1309
  else {
1312
 
1313
  $opt = $wp_cerber->getSettings();
1314
 
 
 
1315
  $script = strtolower( cerber_get_last_in_uri( true ) );
1316
 
1317
  if ( $script ) {
1999
  add_action( 'wp_login', function( $login, $user ) {
2000
  if ( ! empty( $_POST['log'] ) ) { // default WP form
2001
  $user_login = htmlspecialchars($_POST['log']);
2002
+ }
2003
+ else {
2004
  $user_login = $login;
2005
  }
2006
+ cerber_log( 5, $user_login, $user->ID);
2007
  }, 10, 2 );
2008
 
2009
+ /**
2010
+ * Catching some cases of authentication without using login form or not a default user login process
2011
+ */
2012
+ add_action( 'set_auth_cookie', function () {
2013
+ add_action('shutdown', function(){ // deferred to allow the possible 'wp_login' action be logged first
2014
+ cerber_log( 5, '', get_current_user_id());
2015
+ });
2016
+ });
2017
+
2018
+ /*add_action( 'wp_logout', function() {
2019
  global $user_ID;
2020
  if ( ! $user_ID ) {
2021
  $user = wp_get_current_user();
2022
  $user_ID = $user->ID;
2023
  }
2024
+ cerber_log( 6, '', $user_ID );
2025
+ });*/
2026
+
2027
+ add_action( 'clear_auth_cookie', function () {
2028
+ cerber_log( 6, '', get_current_user_id());
2029
  });
2030
 
2031
  //add_action( 'lostpassword_post', 'cerber_password_post' );
2353
 
2354
  return true;
2355
  }
2356
+
2357
+ /**
2358
+ * Check if a given username is not permitted to login or register
2359
+ *
2360
+ * @param $username string
2361
+ *
2362
+ * @return bool true if username is prohibited
2363
+ */
2364
+ function cerber_is_prohibited( $username ) {
2365
+ if ( $list = (array) crb_get_settings( 'prohibited' ) ) {
2366
+ foreach ( $list as $item ) {
2367
+ if ( mb_substr( $item, 0, 1 ) == '/' && mb_substr( $item, - 1 ) == '/' ) {
2368
+ $pattern = trim( $item, '/' );
2369
+ if ( mb_ereg_match( $pattern, $username, 'i' ) ) {
2370
+ return true;
2371
+ }
2372
+ }
2373
+ elseif ($username === $item){
2374
+ return true;
2375
+ }
2376
+ }
2377
+ }
2378
+
2379
+ return false;
2380
+ }
2381
+
2382
  // TODO: Merge with $wp_cerber->getStatus();
2383
  function cerber_get_status( $ip ) {
2384
  global $cerber_status;
2919
  }
2920
  }
2921
 
 
2922
  $html_mode = false;
2923
 
2924
  $subj = '[' . get_option( 'blogname' ) . '] ' . __( 'WP Cerber notify', 'wp-cerber' ) . ': ';
3037
  break;
3038
  }
3039
 
3040
+ $to_list = cerber_get_email( $type, true );
3041
+ $to = implode( ', ', $to_list );
3042
+
3043
  $body_filtered = apply_filters( 'cerber_notify_body', $body, array( 'type' => $type,
3044
  'IP' => $ip,
3045
  'to' => $to,
3068
 
3069
  if ( $html_mode ) {
3070
  add_filter( 'wp_mail_content_type', 'cerber_enable_html' );
 
3071
  $footer = str_replace( "\n", '<br/>', $footer );
3072
  }
3073
 
3074
+ // Everything is prepared, let's send it out
3075
 
3076
  if ( $to && $subj && $body ) {
3077
  if ( ! $html_mode ) {
3078
+ cerber_pb_send( $subj, $body.$footer );
3079
+ }
3080
+
3081
+ if ( $type == 'report') {
3082
+ $result = true;
3083
+ foreach ( $to_list as $email ) {
3084
+ $lastus = '';
3085
+ if ( $rec = cerber_get_last_login( null, $email ) ) {
3086
+ $lastus = sprintf( __( 'Your last sign-in was %s from %s', 'wp-cerber' ), cerber_date( $rec->stamp ), $rec->ip . ' (' . cerber_country_name( $rec->country ) . ')' );
3087
+ if ( $html_mode ) {
3088
+ $lastus = '<br/><br/>' . $lastus;
3089
+ }
3090
+ else {
3091
+ $lastus = "\n\n" . $lastus;
3092
+ }
3093
+ }
3094
+
3095
+ if ( ! wp_mail( $email, $subj, '<html>' . $body . $lastus . $footer . '</html>' ) ) {
3096
+ $result = false;
3097
+ }
3098
+ }
3099
  }
3100
  else {
3101
+ $body = $body . $footer;
3102
+ if ( $html_mode ) {
3103
+ $body = '<html>' . $body . '</html>';
3104
+ }
3105
+ $result = wp_mail( $to, $subj, $body );
3106
+ }
3107
+ }
3108
  else {
3109
  $result = false;
3110
  }
3159
  $site_name = get_option( 'blogname' );
3160
  }
3161
 
3162
+ $ret .= '<div style="' . $css_table . '"><div style="margin:0 auto; text-align: center;"><p style="font-size: 130%; padding-top: 0.5em;">' . $site_name .'</p><p style="padding-bottom: 1em;">'. __('Weekly Report','wp-cerber'). '</p></div></div>';
3163
 
3164
  $kpi_list = cerber_calculate_kpi( $period );
3165
 
3171
 
3172
  // Activities counters
3173
  $rows = array();
3174
+ $rows[] = '<td style="'.$css_td.$css_boder.'" colspan="2"><p style="line-height: 1.5em; font-weight: bold;">'.__('Activity details','wp-cerber').'</p></td>';
3175
  $activites = $wpdb->get_results( 'SELECT activity, COUNT(activity) cnt FROM ' . CERBER_LOG_TABLE . ' WHERE stamp > ' . $stamp . ' GROUP by activity ORDER BY cnt DESC' );
3176
  if ( $activites ) {
3177
  $lables = cerber_get_labels();
3178
  foreach ( $activites as $a ) {
3179
+ $rows[] = '<td style="'.$css_boder.$css_td.'">' . $lables[ $a->activity ] . '</td><td style="padding: 0.5em; text-align: center; width:10%;'.$css_boder.'"><a href="'.$base_url.'&filter_activity='.$a->activity.'">' . $a->cnt . '</a></td>';
3180
  }
3181
  }
3182
  $ret .= '<table style="border-collapse: collapse; '.$css_table.'"><tr>' . implode( '</tr><tr>', $rows ) . '</tr></table>';
3183
 
3184
+ // Activities counters
3185
+ $activites = $wpdb->get_results( 'SELECT user_login, COUNT(user_login) cnt FROM ' . CERBER_LOG_TABLE . ' WHERE activity = 51 AND stamp > ' . $stamp . ' GROUP by user_login ORDER BY cnt DESC LIMIT 10' );
3186
+ if ( $activites ) {
3187
+ $rows = array();
3188
+ $rows[] = '<td style="'.$css_td.$css_boder.'" colspan="2"><p style="line-height: 1.5em; font-weight: bold;">'.__('Attempts to log in with non-existent username','wp-cerber').'</p></td>';
3189
+ foreach ( $activites as $a ) {
3190
+ $rows[] = '<td style="'.$css_boder.$css_td.'">' . htmlspecialchars($a->user_login) . '</td><td style="padding: 0.5em; text-align: center; width:10%;'.$css_boder.'"><a href="'.$base_url.'&filter_login='.$a->user_login.'">' . $a->cnt . '</a></td>';
3191
+ }
3192
+ $ret .= '<table style="border-collapse: collapse; '.$css_table.'"><tr>' . implode( '</tr><tr>', $rows ) . '</tr></table>';
3193
+ }
3194
+
3195
  $ret = '<div style="width:100%; padding: 1em; text-align: center; background-color: #f9f9f9;">' . $ret . '</div>';
3196
 
3197
  return $ret;
3270
 
3271
  $gmt_offset = get_option( 'gmt_offset' ) * 3600;
3272
 
3273
+ if ( crb_get_settings( 'enable-report' )
3274
+ && date( 'w', time() + $gmt_offset ) == crb_get_settings( 'wreports-day' )
3275
  && date( 'G', time() + $gmt_offset ) == crb_get_settings( 'wreports-time' )
3276
  //&& ! get_site_transient( 'cerber_wreport' )
3277
  ) {
3510
  return $ret;
3511
  }
3512
 
3513
+ /**
3514
+ * Get records from the log
3515
+ *
3516
+ * @param array $activity
3517
+ * @param array $user
3518
+ * @param array $order
3519
+ * @param string $limit
3520
+ *
3521
+ * @return array|null
3522
+ */
3523
+ function cerber_get_log($activity = array(), $user = array(), $order = array(), $limit = ''){
3524
+ global $wpdb;
3525
+
3526
+ $where = array();
3527
+ if ($activity){
3528
+ $activity = array_map( 'absint', $activity );
3529
+ $where[] = 'activity IN ('.implode(', ',$activity).')';
3530
+ }
3531
+
3532
+ if ($user['email']){
3533
+ $user = get_user_by( 'email', $user['email'] );
3534
+ $where[] = 'user_id = ' . absint( $user->ID );
3535
+ }
3536
+ elseif ($user['id']){
3537
+ $where[] = 'user_id = '.absint($user['id']);
3538
+ }
3539
+
3540
+ $where_sql = '';
3541
+ if ( $where ) {
3542
+ $where_sql = ' WHERE ' . implode( ' AND ', $where );
3543
+ }
3544
+
3545
+ $order_sql = '';
3546
+ if ( $order ) {
3547
+ if ( ! empty( $order['DESC'] ) ) {
3548
+ $order_sql = ' ORDER BY ' . preg_replace( '/[^\w]/', '', $order['DESC'] ) . ' DESC ';
3549
+ }
3550
+ elseif ( ! empty( $order['ASC'] ) ) {
3551
+ $order_sql = ' ORDER BY ' . preg_replace( '/[^\w]/', '', $order['ASC'] ) . ' ASC ';
3552
+ }
3553
+ }
3554
+
3555
+ $limit_sql = '';
3556
+ if ( $limit ) {
3557
+ $limit_sql = ' LIMIT ' . preg_replace( '/[^0-9\.]/', '', $limit );
3558
+ }
3559
+
3560
+ // $row = $wpdb->get_row('SELECT * FROM '.CERBER_LOG_TABLE.' WHERE activity = 5 AND user_id = '.absint($user_id) . ' ORDER BY stamp DESC LIMIT 1');
3561
+ return $wpdb->get_results( 'SELECT * FROM ' . CERBER_LOG_TABLE . ' ' . $where_sql . $order_sql . $limit_sql );
3562
+
3563
+ }
3564
+
3565
+ /**
3566
+ * Return the last login record for a given user
3567
+ *
3568
+ * @param $user_id int|null
3569
+ * @param $user_email string
3570
+ *
3571
+ * @return array|null|object|string
3572
+ */
3573
+ function cerber_get_last_login( $user_id, $user_email = '' ) {
3574
+ if ( $user_id ) {
3575
+ $u = array( 'id' => $user_id );
3576
+ }
3577
+ elseif ( $user_email ) {
3578
+ $u = array( 'email' => $user_email );
3579
+ }
3580
+
3581
+ if ($u) {
3582
+ $recs = cerber_get_log( array( 5 ), $u, array( 'DESC' => 'stamp' ), 1 );
3583
+ return $recs[0];
3584
+ }
3585
+
3586
+ return '';
3587
+ }
3588
+
3589
  function cerber_count_log($activity = array(), $period = 1) {
3590
  global $wpdb;
3591