Version Description
- New: Traffic Inspector has got a Request White List setting.
- New: An Activity filter for the Advanced search form on the Traffic Inspector page.
- Bug fixed: Two reCAPTCHA widgets on login/registration forms.
- Bug fixed: A legitimate IP address can be locked out by Traffic Inspector on a Windows hosting (server).
Download this release
Release Info
Developer | Gioni |
Plugin | Cerber Security & Antispam |
Version | 6.1 |
Comparing to | |
See all releases |
Code changes from version 6.0 to 6.1
- assets/admin.css +4 -2
- cerber-lab.php +25 -13
- cerber-news.php +6 -0
- common.php +66 -11
- dashboard.php +40 -17
- languages/wp-cerber-nb_NO.mo +0 -0
- languages/wp-cerber-nb_NO.po +242 -229
- languages/wp-cerber-nl_NL.mo +0 -0
- languages/wp-cerber-nl_NL.po +1 -1
- languages/wp-cerber-ru_RU.mo +0 -0
- languages/wp-cerber-ru_RU.po +651 -491
- languages/wp-cerber.pot +281 -251
- readme.txt +7 -1
- settings.php +19 -0
- wp-cerber.php +104 -68
assets/admin.css
CHANGED
@@ -264,12 +264,10 @@
|
|
264 |
#crb-activity td:nth-child(5){
|
265 |
word-break: break-all;
|
266 |
}
|
267 |
-
|
268 |
#crb-traffic td{
|
269 |
vertical-align: top;
|
270 |
/*word-break: break-all;*/
|
271 |
}
|
272 |
-
|
273 |
#crb-traffic p{
|
274 |
margin: 1em 0 0 0;
|
275 |
color: #555;
|
@@ -355,6 +353,10 @@ td.crb-traffic-details div{
|
|
355 |
.crb-fields-table td:nth-child(2) {
|
356 |
color: #000;
|
357 |
}
|
|
|
|
|
|
|
|
|
358 |
|
359 |
/* IP info like WHOIS details */
|
360 |
|
264 |
#crb-activity td:nth-child(5){
|
265 |
word-break: break-all;
|
266 |
}
|
|
|
267 |
#crb-traffic td{
|
268 |
vertical-align: top;
|
269 |
/*word-break: break-all;*/
|
270 |
}
|
|
|
271 |
#crb-traffic p{
|
272 |
margin: 1em 0 0 0;
|
273 |
color: #555;
|
353 |
.crb-fields-table td:nth-child(2) {
|
354 |
color: #000;
|
355 |
}
|
356 |
+
#crb-traffic-form input,
|
357 |
+
#crb-traffic-form select{
|
358 |
+
width: 100%;
|
359 |
+
}
|
360 |
|
361 |
/* IP info like WHOIS details */
|
362 |
|
cerber-lab.php
CHANGED
@@ -159,7 +159,12 @@ function lab_reputation_update( $ip, $ip_data ) {
|
|
159 |
$reputation = absint( $ip_data['reputation']['value'] );
|
160 |
$expires = time() + absint( $ip_data['reputation']['ttl'] );
|
161 |
|
162 |
-
$wpdb->
|
|
|
|
|
|
|
|
|
|
|
163 |
}
|
164 |
|
165 |
/**
|
@@ -211,13 +216,12 @@ function lab_api_send_request($workload = array()) {
|
|
211 |
|
212 |
/**
|
213 |
* Send an HTTP request to a node.
|
214 |
-
* If the previous attempt was failed and $node_id is not set, use next closest node.
|
215 |
*
|
216 |
* @param $request array
|
217 |
* @param null $node_id Node ID if not set, will use the last closest and active node
|
218 |
* @param string $scheme http|https
|
219 |
*
|
220 |
-
* @return array|bool
|
221 |
*/
|
222 |
function lab_send_request($request, $node_id = null, $scheme = null) {
|
223 |
global $node_delay;
|
@@ -507,17 +511,21 @@ function lab_is_cloud_ok(){
|
|
507 |
*/
|
508 |
function lab_save_push( $ip, $reason_id, $details ) {
|
509 |
global $wpdb;
|
510 |
-
if ( is_ip_private( $ip ) || cerber_acl_check( $ip, 'W' ) ) {
|
511 |
return;
|
512 |
}
|
513 |
-
if (
|
514 |
-
$
|
515 |
-
'ip' => $ip,
|
516 |
-
'reason_id' => $reason_id,
|
517 |
-
'details' => $details,
|
518 |
-
'stamp' => time(),
|
519 |
-
), array( '%s', '%d', '%s', '%d' ) );
|
520 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
521 |
}
|
522 |
/**
|
523 |
* Get data for lab
|
@@ -561,8 +569,12 @@ function lab_get_key( $regenerate = false, $nocache = false) {
|
|
561 |
static $key = null;
|
562 |
|
563 |
if ( ! isset( $key ) || $nocache ) {
|
564 |
-
|
565 |
-
|
|
|
|
|
|
|
|
|
566 |
}
|
567 |
|
568 |
if ( $regenerate || ! $key || ! is_array( $key ) ) {
|
159 |
$reputation = absint( $ip_data['reputation']['value'] );
|
160 |
$expires = time() + absint( $ip_data['reputation']['ttl'] );
|
161 |
|
162 |
+
if ( $wpdb->get_var( 'SELECT COUNT(ip) FROM ' . CERBER_LAB_IP_TABLE . ' WHERE ip = "' . $ip . '"' ) ) {
|
163 |
+
$wpdb->query( 'UPDATE ' . CERBER_LAB_IP_TABLE . ' SET reputation = ' . $reputation . ', expires = ' . $expires . ' WHERE ip = "' . $ip . '"' );
|
164 |
+
}
|
165 |
+
else {
|
166 |
+
$wpdb->query( 'INSERT INTO ' . CERBER_LAB_IP_TABLE . ' (ip, reputation, expires) VALUES ("' . $ip . '",' . $reputation . ',' . $expires . ')' );
|
167 |
+
}
|
168 |
}
|
169 |
|
170 |
/**
|
216 |
|
217 |
/**
|
218 |
* Send an HTTP request to a node.
|
|
|
219 |
*
|
220 |
* @param $request array
|
221 |
* @param null $node_id Node ID if not set, will use the last closest and active node
|
222 |
* @param string $scheme http|https
|
223 |
*
|
224 |
+
* @return array|bool The response of a node on the success request otherwise false on any error
|
225 |
*/
|
226 |
function lab_send_request($request, $node_id = null, $scheme = null) {
|
227 |
global $node_delay;
|
511 |
*/
|
512 |
function lab_save_push( $ip, $reason_id, $details ) {
|
513 |
global $wpdb;
|
514 |
+
if ( !$ip || is_ip_private( $ip ) || cerber_acl_check( $ip, 'W' ) || !(crb_get_settings( 'cerberlab' ) || lab_lab())) {
|
515 |
return;
|
516 |
}
|
517 |
+
if ($reason_id == 8){
|
518 |
+
$details = array( 'uri' => $_SERVER['REQUEST_URI'] );
|
|
|
|
|
|
|
|
|
|
|
519 |
}
|
520 |
+
if ( is_array( $details ) ) {
|
521 |
+
$details = serialize( $details );
|
522 |
+
}
|
523 |
+
$wpdb->insert( CERBER_LAB_TABLE, array(
|
524 |
+
'ip' => $ip,
|
525 |
+
'reason_id' => $reason_id,
|
526 |
+
'details' => $details,
|
527 |
+
'stamp' => time(),
|
528 |
+
), array( '%s', '%d', '%s', '%d' ) );
|
529 |
}
|
530 |
/**
|
531 |
* Get data for lab
|
569 |
static $key = null;
|
570 |
|
571 |
if ( ! isset( $key ) || $nocache ) {
|
572 |
+
if (is_admin()) {
|
573 |
+
$key = get_site_option( '_cerberkey_' ); // must be from the session cache only
|
574 |
+
}
|
575 |
+
else {
|
576 |
+
$key = cerber_get_site_option( '_cerberkey_' );
|
577 |
+
}
|
578 |
}
|
579 |
|
580 |
if ( $regenerate || ! $key || ! is_array( $key ) ) {
|
cerber-news.php
CHANGED
@@ -118,6 +118,12 @@ function cerber_push_the_news( $version ) {
|
|
118 |
$news['6.0'][] = 'If your hosting environment (web server) has some issues and those issues can affect plugin functionality, they are shown on the Tools / Diagnostic page.';
|
119 |
$news['6.0'][] = 'On the Access Lists admin page there are new links for each entry to check HTTP requests from a particular network or an IP address.';
|
120 |
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
if ( ! empty( $news[ $version ] ) ) {
|
122 |
//$text = '<h3>What\'s new in WP Cerber '.$version.'</h3>';
|
123 |
|
118 |
$news['6.0'][] = 'If your hosting environment (web server) has some issues and those issues can affect plugin functionality, they are shown on the Tools / Diagnostic page.';
|
119 |
$news['6.0'][] = 'On the Access Lists admin page there are new links for each entry to check HTTP requests from a particular network or an IP address.';
|
120 |
|
121 |
+
$news['6.1'][] = 'Traffic Inspector has got a Request White List setting. To exclude a particular request from inspection specify a request string without the website domain and query string (GET parameters).';
|
122 |
+
$news['6.1'][] = 'An Activity filter has been added to the Advanced search form on the Traffic Inspector page.';
|
123 |
+
$news['6.1'][] = 'Bugs fixed: Two reCAPTCHA widgets on login/registration forms.';
|
124 |
+
$news['6.1'][] = 'Bugs fixed: A legitimate IP address can be locked out by Traffic Inspector on a Windows hosting (server).';
|
125 |
+
|
126 |
+
|
127 |
if ( ! empty( $news[ $version ] ) ) {
|
128 |
//$text = '<h3>What\'s new in WP Cerber '.$version.'</h3>';
|
129 |
|
common.php
CHANGED
@@ -569,11 +569,11 @@ function crb_get_rest_path() {
|
|
569 |
*
|
570 |
* @return bool|string
|
571 |
*/
|
572 |
-
function
|
573 |
-
static $
|
574 |
|
575 |
-
if ( isset( $
|
576 |
-
return $
|
577 |
}
|
578 |
|
579 |
$ret = strtolower( $_SERVER['REQUEST_URI'] );
|
@@ -585,19 +585,74 @@ function cerber_parse_uri( $check_php = false ) {
|
|
585 |
$ret = rtrim( $ret, '/' );
|
586 |
$ret = substr( strrchr( $ret, '/' ), 1 );
|
587 |
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
593 |
}
|
594 |
-
*/
|
595 |
|
596 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
597 |
|
598 |
return $ret;
|
599 |
}
|
600 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
601 |
/*
|
602 |
* Sets of human readable labels for vary activity/logs events
|
603 |
* @since 1.0
|
569 |
*
|
570 |
* @return bool|string
|
571 |
*/
|
572 |
+
function cerber_last_uri( $check_php = false ) {
|
573 |
+
static $ret;
|
574 |
|
575 |
+
if ( isset( $ret ) ) {
|
576 |
+
return $ret;
|
577 |
}
|
578 |
|
579 |
$ret = strtolower( $_SERVER['REQUEST_URI'] );
|
585 |
$ret = rtrim( $ret, '/' );
|
586 |
$ret = substr( strrchr( $ret, '/' ), 1 );
|
587 |
|
588 |
+
return $ret;
|
589 |
+
}
|
590 |
+
|
591 |
+
/**
|
592 |
+
* Return the name of a PHP script in the requested URI if it's present
|
593 |
+
*
|
594 |
+
* @return bool|string
|
595 |
+
*/
|
596 |
+
function cerber_get_uri_script(){
|
597 |
+
static $executable = array( 'phtm', 'phtml', 'phps', 'asp', 'aspx' );
|
598 |
+
|
599 |
+
$last = cerber_last_uri();
|
600 |
+
$ext = substr( strrchr( $last, '.' ), 1 );
|
601 |
+
|
602 |
+
if ( ! $ext ) {
|
603 |
+
return false;
|
604 |
+
}
|
605 |
+
|
606 |
+
$ext = strtolower( $ext );
|
607 |
+
|
608 |
+
if ( $ext == 'php' ) {
|
609 |
+
return $last;
|
610 |
+
}
|
611 |
+
|
612 |
+
if ( in_array($ext, $executable) ) {
|
613 |
+
return $last;
|
614 |
+
}
|
615 |
+
|
616 |
+
if ( preg_match( '/php\d+/', $ext ) ) {
|
617 |
+
return $last;
|
618 |
+
}
|
619 |
+
|
620 |
+
return false;
|
621 |
+
}
|
622 |
+
|
623 |
+
/**
|
624 |
+
* Clean up the requested URI from parameters and extra slashes
|
625 |
+
*
|
626 |
+
* @return bool|mixed|string
|
627 |
+
*/
|
628 |
+
function cerber_purify_uri() {
|
629 |
+
static $ret;
|
630 |
+
|
631 |
+
if ( isset( $ret ) ) {
|
632 |
+
return $ret;
|
633 |
}
|
|
|
634 |
|
635 |
+
$ret = $_SERVER['REQUEST_URI'];
|
636 |
+
|
637 |
+
if ( $pos = strpos( $ret, '?' ) ) {
|
638 |
+
$ret = substr( $ret, 0, $pos );
|
639 |
+
}
|
640 |
+
|
641 |
+
$ret = rtrim( $ret, '/' );
|
642 |
+
$ret = preg_replace( '/\/+/', '/', $ret );
|
643 |
|
644 |
return $ret;
|
645 |
}
|
646 |
|
647 |
+
/**
|
648 |
+
* Remove extra slashes \ / from a script file name
|
649 |
+
*
|
650 |
+
* @return string|bool
|
651 |
+
*/
|
652 |
+
function cerber_script_filename() {
|
653 |
+
return preg_replace('/[\/\\\\]+/','/',$_SERVER['SCRIPT_FILENAME']); // Windows server
|
654 |
+
}
|
655 |
+
|
656 |
/*
|
657 |
* Sets of human readable labels for vary activity/logs events
|
658 |
* @since 1.0
|
dashboard.php
CHANGED
@@ -885,6 +885,7 @@ function cerber_ip_extra_view($ip, $context = 'activity'){
|
|
885 |
|
886 |
$form = '<form id="add-acl-black" action="" method="post">
|
887 |
<!-- <input type="hidden" name="add_acl_B" value=""> -->
|
|
|
888 |
<button type="submit" value="'.$ip.'" name="add_acl_B" class="button button-primary cerber-button"><span class="dashicons-before dashicons-desktop"></span> '.__('Add IP to the Black List','wp-cerber').'</button> '.
|
889 |
$net_button.
|
890 |
wp_nonce_field('cerber_dashboard','cerber_nonce').
|
@@ -2930,6 +2931,7 @@ function cerber_traffic_query($args = array()){
|
|
2930 |
|
2931 |
$ret = array_fill( 0, 8, '' );
|
2932 |
$where = array();
|
|
|
2933 |
$falist = array();
|
2934 |
|
2935 |
$filter = null;
|
@@ -3022,8 +3024,20 @@ function cerber_traffic_query($args = array()){
|
|
3022 |
$where[] = $wpdb->prepare( 'log.request_method = %s', $_GET['filter_method'] );
|
3023 |
}
|
3024 |
|
3025 |
-
if (!empty($
|
3026 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3027 |
|
3028 |
// Limits, if specified
|
3029 |
if (isset($args['per_page'])) $per_page = $args['per_page'];
|
@@ -3034,13 +3048,13 @@ function cerber_traffic_query($args = array()){
|
|
3034 |
if ( $per_page ) {
|
3035 |
$limit = ' LIMIT ' . ( cerber_get_pn() - 1 ) * $per_page . ',' . $per_page;
|
3036 |
//$ret[0] = 'SELECT SQL_CALC_FOUND_ROWS log.session_id,log.* FROM ' . CERBER_TRAF_TABLE . " log USE INDEX FOR ORDER BY (stamp) {$where} ORDER BY stamp DESC {$limit}";
|
3037 |
-
$ret[0] = 'SELECT log.session_id,log.* FROM ' . CERBER_TRAF_TABLE . " log
|
3038 |
-
$ret[1] = 'SELECT COUNT(log.stamp) FROM ' . CERBER_TRAF_TABLE . " log {$where}";
|
3039 |
//$ret[0] = 'SELECT SQL_CALC_FOUND_ROWS log.*,act.activity FROM ' . CERBER_TRAF_TABLE . ' log USE INDEX FOR ORDER BY (stamp) LEFT JOIN '.CERBER_LOG_TABLE." act ON (log.session_id = act.session_id) {$where} ORDER BY log.stamp DESC {$limit}";
|
3040 |
}
|
3041 |
else {
|
3042 |
-
$ret[0] = 'SELECT log.session_id,log.* FROM ' . CERBER_TRAF_TABLE . " log
|
3043 |
-
$ret[1] = 'SELECT COUNT(log.stamp) FROM ' . CERBER_TRAF_TABLE . " log {$where}";
|
3044 |
}
|
3045 |
|
3046 |
return $ret;
|
@@ -3058,29 +3072,38 @@ function cerber_traffic_search(){
|
|
3058 |
<div id="cerber-traffic-search" style="display:none;">
|
3059 |
|
3060 |
<form method="get" action="" style="">
|
3061 |
-
<div style="margin: 0 auto; width: 300px;">
|
3062 |
<input type="hidden" value="cerber-traffic" name="page">
|
3063 |
|
3064 |
<p>URL contains
|
3065 |
-
<br/><input
|
3066 |
-
|
3067 |
-
<p>POST or GET fields contain
|
3068 |
-
<br/><input style="width: 100%;" type="text" name="search_traffic[fields]"></p>
|
3069 |
|
3070 |
<p>IP address contains or equals
|
3071 |
-
<br/><input
|
3072 |
|
3073 |
<p>User ID equals
|
3074 |
-
<br/><input
|
|
|
|
|
|
|
3075 |
|
3076 |
<p>HTTP Response Code equals
|
3077 |
-
<br/><input
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3078 |
|
3079 |
<p>Date from
|
3080 |
-
<br/><input
|
3081 |
|
3082 |
<p>Date to
|
3083 |
-
<br/><input
|
3084 |
|
3085 |
<p><input type="submit" class="button button-primary" value="Search"></p>
|
3086 |
</div>
|
@@ -3090,7 +3113,7 @@ function cerber_traffic_search(){
|
|
3090 |
|
3091 |
<?php
|
3092 |
|
3093 |
-
return '<a href="#TB_inline?width=400&height=
|
3094 |
|
3095 |
}
|
3096 |
|
885 |
|
886 |
$form = '<form id="add-acl-black" action="" method="post">
|
887 |
<!-- <input type="hidden" name="add_acl_B" value=""> -->
|
888 |
+
<input type="hidden" name="add_acl_comment" value="">
|
889 |
<button type="submit" value="'.$ip.'" name="add_acl_B" class="button button-primary cerber-button"><span class="dashicons-before dashicons-desktop"></span> '.__('Add IP to the Black List','wp-cerber').'</button> '.
|
890 |
$net_button.
|
891 |
wp_nonce_field('cerber_dashboard','cerber_nonce').
|
2931 |
|
2932 |
$ret = array_fill( 0, 8, '' );
|
2933 |
$where = array();
|
2934 |
+
$join = '';
|
2935 |
$falist = array();
|
2936 |
|
2937 |
$filter = null;
|
3024 |
$where[] = $wpdb->prepare( 'log.request_method = %s', $_GET['filter_method'] );
|
3025 |
}
|
3026 |
|
3027 |
+
if (!empty($_GET['filter_activity'])) {
|
3028 |
+
$act_id = absint($_GET['filter_activity']);
|
3029 |
+
if ($act_id > 0 ){
|
3030 |
+
$where[] = 'act.activity = ' . $act_id;
|
3031 |
+
$join = ' JOIN '.CERBER_LOG_TABLE.' act ON (log.session_id = act.session_id)';
|
3032 |
+
}
|
3033 |
+
}
|
3034 |
+
|
3035 |
+
if (!empty($where)) {
|
3036 |
+
$where = 'WHERE '.implode(' AND ',$where);
|
3037 |
+
}
|
3038 |
+
else {
|
3039 |
+
$where = '';
|
3040 |
+
}
|
3041 |
|
3042 |
// Limits, if specified
|
3043 |
if (isset($args['per_page'])) $per_page = $args['per_page'];
|
3048 |
if ( $per_page ) {
|
3049 |
$limit = ' LIMIT ' . ( cerber_get_pn() - 1 ) * $per_page . ',' . $per_page;
|
3050 |
//$ret[0] = 'SELECT SQL_CALC_FOUND_ROWS log.session_id,log.* FROM ' . CERBER_TRAF_TABLE . " log USE INDEX FOR ORDER BY (stamp) {$where} ORDER BY stamp DESC {$limit}";
|
3051 |
+
$ret[0] = 'SELECT log.session_id,log.* FROM ' . CERBER_TRAF_TABLE . " log {$join} {$where} ORDER BY log.stamp DESC {$limit}";
|
3052 |
+
$ret[1] = 'SELECT COUNT(log.stamp) FROM ' . CERBER_TRAF_TABLE . " log {$join} {$where}";
|
3053 |
//$ret[0] = 'SELECT SQL_CALC_FOUND_ROWS log.*,act.activity FROM ' . CERBER_TRAF_TABLE . ' log USE INDEX FOR ORDER BY (stamp) LEFT JOIN '.CERBER_LOG_TABLE." act ON (log.session_id = act.session_id) {$where} ORDER BY log.stamp DESC {$limit}";
|
3054 |
}
|
3055 |
else {
|
3056 |
+
$ret[0] = 'SELECT log.session_id,log.* FROM ' . CERBER_TRAF_TABLE . " log {$join} {$where} ORDER BY stamp DESC";
|
3057 |
+
$ret[1] = 'SELECT COUNT(log.stamp) FROM ' . CERBER_TRAF_TABLE . " log {$join} {$where}";
|
3058 |
}
|
3059 |
|
3060 |
return $ret;
|
3072 |
<div id="cerber-traffic-search" style="display:none;">
|
3073 |
|
3074 |
<form method="get" action="" style="">
|
3075 |
+
<div id="crb-traffic-form" style="margin: 0 auto; width: 300px;">
|
3076 |
<input type="hidden" value="cerber-traffic" name="page">
|
3077 |
|
3078 |
<p>URL contains
|
3079 |
+
<br/><input type="text" name="search_traffic[uri]"></p>
|
|
|
|
|
|
|
3080 |
|
3081 |
<p>IP address contains or equals
|
3082 |
+
<br/><input type="text" name="search_traffic[ip]"></p>
|
3083 |
|
3084 |
<p>User ID equals
|
3085 |
+
<br/><input type="number" name="filter_user"></p>
|
3086 |
+
|
3087 |
+
<p>POST or GET fields contain
|
3088 |
+
<br/><input type="text" name="search_traffic[fields]"></p>
|
3089 |
|
3090 |
<p>HTTP Response Code equals
|
3091 |
+
<br/><input type="number" name="filter_http_code"></p>
|
3092 |
+
|
3093 |
+
<p style="width: 100%;">Activity
|
3094 |
+
<?php
|
3095 |
+
$labels = cerber_get_labels('activity');
|
3096 |
+
unset( $labels[5], $labels[51], $labels[13], $labels[14], $labels[15] );
|
3097 |
+
$labels = array( 0 => __( 'Any', 'wp-cerber' ) ) + $labels;
|
3098 |
+
echo cerber_select('filter_activity', $labels, 0, 'crb-filter-act');
|
3099 |
+
?>
|
3100 |
+
</p>
|
3101 |
|
3102 |
<p>Date from
|
3103 |
+
<br/><input type="date" name="search_traffic[date_from]" placeholder="month/day/year"></p>
|
3104 |
|
3105 |
<p>Date to
|
3106 |
+
<br/><input type="date" name="search_traffic[date_to]" placeholder="month/day/year"></p>
|
3107 |
|
3108 |
<p><input type="submit" class="button button-primary" value="Search"></p>
|
3109 |
</div>
|
3113 |
|
3114 |
<?php
|
3115 |
|
3116 |
+
return '<a href="#TB_inline?width=400&height=650&inlineId=cerber-traffic-search" class="thickbox crb-button-tiny crb-button-active" title="Search in the request history">'.__('Advanced search','wp-cerber').'</a>';
|
3117 |
|
3118 |
}
|
3119 |
|
languages/wp-cerber-nb_NO.mo
CHANGED
Binary file
|
languages/wp-cerber-nb_NO.po
CHANGED
@@ -72,7 +72,7 @@ msgstr "Deaktiver wp-login.php"
|
|
72 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
73 |
msgstr "Blokkér direkte tilgang til wp-login.php og returnér HTTP 404 Ikke Funnet-feil."
|
74 |
|
75 |
-
#: ../dashboard.php:
|
76 |
msgid "Citadel mode"
|
77 |
msgstr "Vakttårnsmodus"
|
78 |
|
@@ -84,7 +84,7 @@ msgstr "Terskel"
|
|
84 |
msgid "Duration"
|
85 |
msgstr "Varighet"
|
86 |
|
87 |
-
#: ../wp-cerber.php:
|
88 |
msgid "Notifications"
|
89 |
msgstr "Varsling"
|
90 |
|
@@ -92,12 +92,12 @@ msgstr "Varsling"
|
|
92 |
msgid "Send notification to admin email"
|
93 |
msgstr "Send varsel til admins e-postadresse"
|
94 |
|
95 |
-
#: ../wp-cerber.php:
|
96 |
#: tools.php:97 ../cerber-tools.php:178
|
97 |
msgid "Access Lists"
|
98 |
msgstr "Tilgangsliste"
|
99 |
|
100 |
-
#: ../dashboard.php:
|
101 |
#: php:94 ../settings.php:352
|
102 |
msgid "Activity"
|
103 |
msgstr "Aktivitet"
|
@@ -114,20 +114,20 @@ msgstr "%s tillatte forsøk på %s minutter"
|
|
114 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
115 |
msgstr "Aktivér etter %s mislykkede innloggingsforsøk på %s minutter"
|
116 |
|
117 |
-
#: ../dashboard.php:93 ../dashboard.php:
|
118 |
-
#: php:
|
119 |
msgid "IP"
|
120 |
msgstr "IP-adresse"
|
121 |
|
122 |
-
#: ../dashboard.php:
|
123 |
msgid "Date"
|
124 |
msgstr "Dato"
|
125 |
|
126 |
-
#: ../dashboard.php:
|
127 |
msgid "Local User"
|
128 |
msgstr "Lokal bruker"
|
129 |
|
130 |
-
#: ../dashboard.php:
|
131 |
msgid "Username used"
|
132 |
msgstr "Brukernavn brukt"
|
133 |
|
@@ -159,7 +159,7 @@ msgstr "Subnet blokkert"
|
|
159 |
msgid "Citadel activated!"
|
160 |
msgstr "Vakttårn aktivert!"
|
161 |
|
162 |
-
#: ../dashboard.php:
|
163 |
#: 658
|
164 |
msgid "Locked out"
|
165 |
msgstr "Utestengt"
|
@@ -172,62 +172,62 @@ msgstr "IP svartelistet"
|
|
172 |
msgid "Password changed"
|
173 |
msgstr "Passord endret"
|
174 |
|
175 |
-
#: ../dashboard.php:86 ../dashboard.php:
|
176 |
msgid "Remove"
|
177 |
msgstr "Fjern"
|
178 |
|
179 |
-
#: ../dashboard.php:
|
180 |
msgid "Lockout for %s was removed"
|
181 |
msgstr "Utestengelse for %s ble fjernet"
|
182 |
|
183 |
-
#: ../dashboard.php:131 ../dashboard.php:
|
184 |
-
#: php:
|
185 |
#: /settings.php:322
|
186 |
msgid "White IP Access List"
|
187 |
msgstr "Hvit IP-tilgangsliste"
|
188 |
|
189 |
-
#: ../dashboard.php:133 ../dashboard.php:
|
190 |
-
#: php:
|
191 |
msgid "Black IP Access List"
|
192 |
msgstr "Svart IP-tilgangsliste"
|
193 |
|
194 |
-
#: ../dashboard.php:
|
195 |
msgid "List is empty"
|
196 |
msgstr "Listen er tom"
|
197 |
|
198 |
-
#: ../dashboard.php:
|
199 |
msgid "Address %s was added to White IP Access List"
|
200 |
msgstr "Adressen %s ble lagt til den hvite IP-tilgangslisten"
|
201 |
|
202 |
-
#: ../dashboard.php:
|
203 |
msgid "Address %s was added to Black IP Access List"
|
204 |
msgstr "Adressen %s ble lagt til den svarte IP-tilgangslisten"
|
205 |
|
206 |
-
#: ../wp-cerber.php:
|
207 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
208 |
msgstr "Vakttårnsmodus ble aktivert etter %d mislykkede innloggingsforsøk på %d minutter"
|
209 |
|
210 |
-
#: ../dashboard.php:
|
211 |
msgid "View Activity"
|
212 |
msgstr "Se aktivitet"
|
213 |
|
214 |
-
#: ../dashboard.php:
|
215 |
msgid "Settings"
|
216 |
msgstr "Innstillinger"
|
217 |
|
218 |
-
#: ../dashboard.php:
|
219 |
msgid "Last login"
|
220 |
msgstr "Siste innlogging"
|
221 |
|
222 |
-
#: ../dashboard.php:
|
223 |
msgid "Never"
|
224 |
msgstr "Aldri"
|
225 |
|
226 |
-
#: ../dashboard.php:
|
227 |
msgid "Are you sure?"
|
228 |
msgstr "Er du sikker?"
|
229 |
|
230 |
-
#: ../dashboard.php:
|
231 |
msgid "My site is behind a reverse proxy"
|
232 |
msgstr "Min side er bak en reverse proxy"
|
233 |
|
@@ -255,7 +255,7 @@ msgstr "Vennligst "
|
|
255 |
msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
|
256 |
msgstr "Vær forsiktig når du velger dette alternativet. Glemmer du din nye URL for innlogging, vil du ikke kunne logge deg inn."
|
257 |
|
258 |
-
#: ../wp-cerber.php:
|
259 |
msgid "Main Settings"
|
260 |
msgstr "Hovedinnstillinger"
|
261 |
|
@@ -267,21 +267,21 @@ msgstr "Hjelp"
|
|
267 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
268 |
msgstr "Øk varigheten av utestengelser til %s timer etter %s utestengelser i løpet av de siste %s timer"
|
269 |
|
270 |
-
#: ../wp-cerber.php:
|
271 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
272 |
msgstr "Du har ikke tillatelse til å logge inn. Spør din administrator om du trenger hjelp."
|
273 |
|
274 |
-
#: ../wp-cerber.php:
|
275 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
276 |
msgstr "Du har nådd grensen for antall tillatte innloggingsforsøk. Vennligst prøv igjen om %d minutter."
|
277 |
|
278 |
-
#: ../wp-cerber.php:
|
279 |
msgid "You have only one attempt remaining."
|
280 |
msgid_plural "You have %d attempts remaining."
|
281 |
msgstr[0] "Du har kun ett forsøk igjen."
|
282 |
msgstr[1] "Du har %d forsøk igjen."
|
283 |
|
284 |
-
#: ../dashboard.php:
|
285 |
msgid "No activity has been logged."
|
286 |
msgstr "Ingen aktivitet har blitt registrert."
|
287 |
|
@@ -301,11 +301,11 @@ msgstr "Disse IP-er vil aldri bli utestengt"
|
|
301 |
msgid "Your IP"
|
302 |
msgstr "Din IP"
|
303 |
|
304 |
-
#: ../wp-cerber.php:
|
305 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
306 |
msgstr "Siste mislykkede forsøk var %s fra IP %s med brukernavn %s."
|
307 |
|
308 |
-
#: ../wp-cerber.php:
|
309 |
msgid "Can't activate WP Cerber due to a database error."
|
310 |
msgstr "Kunne ikke aktivere WP Cerber på grunn av en databasefeil."
|
311 |
|
@@ -317,7 +317,7 @@ msgstr "Varsle administratoren om antallet aktive utestengelser overskrider"
|
|
317 |
msgid "days"
|
318 |
msgstr "dager"
|
319 |
|
320 |
-
#: ../dashboard.php:
|
321 |
msgid "Cerber Quick View"
|
322 |
msgstr "Cerber hurtigvisning"
|
323 |
|
@@ -329,7 +329,8 @@ msgstr "Hint"
|
|
329 |
msgid "To view activity, click on the IP"
|
330 |
msgstr "For å se aktivitet klikk på IP-en"
|
331 |
|
332 |
-
#: ../dashboard.php:158 ../dashboard.php:
|
|
|
333 |
msgid "Check for activity"
|
334 |
msgstr "Sjekk etter aktivitet"
|
335 |
|
@@ -345,7 +346,7 @@ msgstr "Klikk for å sende test"
|
|
345 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
346 |
msgstr "OBS! Du har endret innloggings-adressen. Din nye URL for innlogging er"
|
347 |
|
348 |
-
#: ../dashboard.php:
|
349 |
msgid "Comments"
|
350 |
msgstr "Kommentarer"
|
351 |
|
@@ -353,23 +354,23 @@ msgstr "Kommentarer"
|
|
353 |
msgid "Update to version %s of WP Cerber"
|
354 |
msgstr "Oppdatér til versjon %s av WP Cerber"
|
355 |
|
356 |
-
#: ../wp-cerber.php:
|
357 |
msgid "View activity in dashboard"
|
358 |
msgstr "Se aktivitet i kontrollpanelet"
|
359 |
|
360 |
-
#: ../wp-cerber.php:
|
361 |
msgid "Number of active lockouts"
|
362 |
msgstr "Antall aktive utestengelser"
|
363 |
|
364 |
-
#: ../wp-cerber.php:
|
365 |
msgid "View lockouts in dashboard"
|
366 |
msgstr "Se utestengelser i kontrollpanelet"
|
367 |
|
368 |
-
#: ../wp-cerber.php:
|
369 |
msgid "This message was sent by"
|
370 |
msgstr "Denne meldingen ble sendt av"
|
371 |
|
372 |
-
#: ../dashboard.php:
|
373 |
msgid "Tools"
|
374 |
msgstr "Verktøy"
|
375 |
|
@@ -429,11 +430,11 @@ msgstr "Innstillinger ble importert fra"
|
|
429 |
msgid "Error while parsing file"
|
430 |
msgstr "Feil under parsing av filen"
|
431 |
|
432 |
-
#: ../dashboard.php:94 ../dashboard.php:
|
433 |
msgid "Hostname"
|
434 |
msgstr "Vertsnavn"
|
435 |
|
436 |
-
#: ../dashboard.php:
|
437 |
msgid "unknown"
|
438 |
msgstr "ukjent"
|
439 |
|
@@ -441,65 +442,65 @@ msgstr "ukjent"
|
|
441 |
msgid "Keep records for"
|
442 |
msgstr "Behold logger"
|
443 |
|
444 |
-
#: ../dashboard.php:
|
445 |
msgid "active"
|
446 |
msgstr "aktive"
|
447 |
|
448 |
-
#: ../dashboard.php:
|
449 |
msgid "deactivate"
|
450 |
msgstr "deaktiver"
|
451 |
|
452 |
-
#: ../dashboard.php:
|
453 |
msgid "not active"
|
454 |
msgstr "ikke aktive"
|
455 |
|
456 |
-
#: ../dashboard.php:
|
457 |
msgid "disabled"
|
458 |
msgstr "deaktivert"
|
459 |
|
460 |
-
#: ../dashboard.php:
|
461 |
msgid "failed attempts"
|
462 |
msgstr "mislykkede forsøk"
|
463 |
|
464 |
-
#: ../dashboard.php:
|
465 |
msgid "in 24 hours"
|
466 |
msgstr "på 24 timer"
|
467 |
|
468 |
-
#: ../dashboard.php:
|
469 |
msgid "view all"
|
470 |
msgstr "se alle"
|
471 |
|
472 |
-
#: ../dashboard.php:
|
473 |
msgid "lockouts"
|
474 |
msgstr "utestengelser"
|
475 |
|
476 |
-
#: ../dashboard.php:
|
477 |
msgid "Lockouts at the moment"
|
478 |
msgstr "Utestengelser akkurat nå"
|
479 |
|
480 |
-
#: ../dashboard.php:
|
481 |
msgid "Last lockout"
|
482 |
msgstr "Siste utestengelse"
|
483 |
|
484 |
-
#: ../dashboard.php:
|
485 |
msgid "entry"
|
486 |
msgid_plural "entries"
|
487 |
msgstr[0] "oppføring"
|
488 |
msgstr[1] "oppføringer"
|
489 |
|
490 |
-
#: ../dashboard.php:
|
491 |
msgid "Confused about some settings?"
|
492 |
msgstr "Usikker på noen innstillinger?"
|
493 |
|
494 |
-
#: ../dashboard.php:
|
495 |
msgid "You can easily load default recommended settings using button below"
|
496 |
msgstr "Du kan enkelt laste inn anbefalte standardinnstillinger via knappen under"
|
497 |
|
498 |
-
#: ../dashboard.php:
|
499 |
msgid "Load default settings"
|
500 |
msgstr "Last inn standardinnstillinger"
|
501 |
|
502 |
-
#: ../dashboard.php:
|
503 |
msgid "doesn't affect Custom login URL and Access Lists"
|
504 |
msgstr "påvirker ikke egendefinert innloggings-URL og tilgangslister"
|
505 |
|
@@ -508,27 +509,27 @@ msgid "New version is available"
|
|
508 |
msgstr "Ny versjon er tilgjengelig"
|
509 |
|
510 |
#. Name of the plugin
|
511 |
-
#: ../dashboard.php:
|
512 |
msgid "WP Cerber"
|
513 |
msgstr "WP Cerber"
|
514 |
|
515 |
-
#: ../wp-cerber.php:
|
516 |
msgid "WP Cerber notify"
|
517 |
msgstr "WP Cerber-varsling"
|
518 |
|
519 |
-
#: ../wp-cerber.php:
|
520 |
msgid "Citadel mode is activated"
|
521 |
msgstr "Vakttårns-modus er aktivert"
|
522 |
|
523 |
-
#: ../wp-cerber.php:
|
524 |
msgid "New Custom login URL"
|
525 |
msgstr "Ny egendefinert innloggings-URL"
|
526 |
|
527 |
-
#: ../wp-cerber.php:
|
528 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
529 |
msgstr "WP Cerber krever PHP versjon %s eller høyere. Du kjører"
|
530 |
|
531 |
-
#: ../wp-cerber.php:
|
532 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
533 |
msgstr "WP Cerber krever WordPress versjon %s eller høyere. Du kjører"
|
534 |
|
@@ -540,19 +541,19 @@ msgstr "Bruk fil"
|
|
540 |
msgid "Write failed login attempts to the file"
|
541 |
msgstr "Skriv mislykkede innloggingsforsøk til filen"
|
542 |
|
543 |
-
#: ../dashboard.php:
|
544 |
msgid "Deactivate"
|
545 |
msgstr "Deaktivér"
|
546 |
|
547 |
-
#: ../dashboard.php:97 ../wp-cerber.php:
|
548 |
msgid "Reason"
|
549 |
msgstr "Grunn"
|
550 |
|
551 |
-
#: ../dashboard.php:
|
552 |
msgid "Add IP to the list"
|
553 |
msgstr "Legg IP til listen"
|
554 |
|
555 |
-
#: ../dashboard.php:
|
556 |
msgid "Add IP to the Black List"
|
557 |
msgstr "Legg IP til svartelisten"
|
558 |
|
@@ -568,15 +569,15 @@ msgstr "Grensen for innloggingsforsøk er nådd"
|
|
568 |
msgid "Attempt to log in with non-existent username"
|
569 |
msgstr "Forsøk på å logge inn med ikke-eksisterende brukernavn"
|
570 |
|
571 |
-
#: ../wp-cerber.php:
|
572 |
msgid "Last lockout was added: %s for IP %s"
|
573 |
msgstr "Siste utestengelse ble lagt til: %s for IP %s"
|
574 |
|
575 |
-
#: ../wp-cerber.php:
|
576 |
msgid "Hardening"
|
577 |
msgstr "Forsterking"
|
578 |
|
579 |
-
#: ../dashboard.php:
|
580 |
msgid "Abuse email:"
|
581 |
msgstr "Repportering av misbruk:"
|
582 |
|
@@ -632,7 +633,7 @@ msgstr "Disse innstillingene påvirker ikke verter fra "
|
|
632 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
633 |
msgstr "<strong>FEIL</strong>: vennligst skriv inn en gyldig e-postadresse"
|
634 |
|
635 |
-
#: ../wp-cerber.php:
|
636 |
msgid "WP Cerber is now active and has started protecting your site"
|
637 |
msgstr "WP Cerber er nå aktiv og har begynt å beskytte siden din"
|
638 |
|
@@ -644,27 +645,27 @@ msgstr "Handling"
|
|
644 |
msgid "Nobody can log in or register from these IPs"
|
645 |
msgstr "Ingen kan logge inn eller registrere seg fra disse IP-ene"
|
646 |
|
647 |
-
#: ../dashboard.php:
|
648 |
msgid "Incorrect IP address or IP range"
|
649 |
msgstr "Feil IP-adresse eller IP-rekkevidde"
|
650 |
|
651 |
-
#: ../dashboard.php:
|
652 |
msgid "Settings saved"
|
653 |
msgstr "Innstillingene er lagret"
|
654 |
|
655 |
-
#: ../dashboard.php:
|
656 |
msgid "Network:"
|
657 |
msgstr "Nettverk:"
|
658 |
|
659 |
-
#: ../dashboard.php:
|
660 |
msgid "Add network to the Black List"
|
661 |
msgstr "Legg nettverk til svartelisten"
|
662 |
|
663 |
-
#: ../dashboard.php:
|
664 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
665 |
msgstr "Advarsel! Vakttårns-modus er nå aktiv. Ingen vil kunne logge inn."
|
666 |
|
667 |
-
#: ../dashboard.php:
|
668 |
#: /common.php:687 ../common.php:966
|
669 |
msgid "Unknown"
|
670 |
msgstr "Ukjent"
|
@@ -674,79 +675,79 @@ msgstr "Ukjent"
|
|
674 |
msgid "Gregory"
|
675 |
msgstr "Gregory"
|
676 |
|
677 |
-
#: ../wp-cerber.php:
|
678 |
-
#: php:
|
679 |
-
#: /wp-cerber.php:
|
680 |
-
#: php:
|
681 |
#: php:255 ../settings.php:808
|
682 |
msgid "ERROR:"
|
683 |
msgstr "FEIL:"
|
684 |
|
685 |
-
#: ../wp-cerber.php:
|
686 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
687 |
msgstr "Bekreftelse av menneskelighet feilet. Vennligst klikk den firkantige boksen i reCAPTCHA-blokken under."
|
688 |
|
689 |
-
#: ../wp-cerber.php:
|
690 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
691 |
msgstr "<strong>FEIL</strong>: Passordet du skrev inn for brukernavnet %s er ugyldig."
|
692 |
|
693 |
-
#: ../wp-cerber.php:
|
694 |
msgid "Username is not allowed. Please choose another one."
|
695 |
msgstr "Brukernavnet er ikke tillatt. Vennligst velg et annet brukernavn."
|
696 |
|
697 |
-
#: ../wp-cerber.php:
|
698 |
msgid "unspecified"
|
699 |
msgstr "uspesifisert"
|
700 |
|
701 |
-
#: ../wp-cerber.php:
|
702 |
msgid "Number of lockouts is increasing"
|
703 |
msgstr "Antallet utestengelser stiger"
|
704 |
|
705 |
-
#: ../wp-cerber.php:
|
706 |
msgid "View activity for this IP"
|
707 |
msgstr "Se aktivitet for denne IP"
|
708 |
|
709 |
-
#: ../wp-cerber.php:
|
710 |
msgid "A new version of WP Cerber is available to install"
|
711 |
msgstr "En ny versjon av WP Cerber er tilgjengelig for installasjon"
|
712 |
|
713 |
-
#: ../wp-cerber.php:
|
714 |
msgid "Hi!"
|
715 |
msgstr "Hei!"
|
716 |
|
717 |
-
#: ../wp-cerber.php:
|
718 |
msgid "Website"
|
719 |
msgstr "Webside"
|
720 |
|
721 |
-
#: ../wp-cerber.php:
|
722 |
msgid "The WP Cerber security plugin has been deactivated"
|
723 |
msgstr "Sikkerhetstillegget WP Cerber har blitt deaktivert"
|
724 |
|
725 |
-
#: ../wp-cerber.php:
|
726 |
msgid "Not logged in"
|
727 |
msgstr "Ikke innlogget"
|
728 |
|
729 |
-
#: ../wp-cerber.php:
|
730 |
msgid "By user"
|
731 |
msgstr "Etter brukernavn"
|
732 |
|
733 |
-
#: ../wp-cerber.php:
|
734 |
msgid "From IP address"
|
735 |
msgstr "Fra IP-adresse"
|
736 |
|
737 |
-
#: ../wp-cerber.php:
|
738 |
msgid "From country"
|
739 |
msgstr "Fra land"
|
740 |
|
741 |
-
#: ../wp-cerber.php:
|
742 |
msgid "The WP Cerber security plugin is now active"
|
743 |
msgstr "Sikkerhetstillegget WP Cerber er nå aktivt"
|
744 |
|
745 |
-
#: ../wp-cerber.php:
|
746 |
msgid "Your IP address is added to the"
|
747 |
msgstr "Din IP-adresse ble lagt til"
|
748 |
|
749 |
-
#: ../wp-cerber.php:
|
750 |
msgid "Import settings"
|
751 |
msgstr "Importer innstillinger"
|
752 |
|
@@ -810,11 +811,11 @@ msgstr "Slå på reCAPTCHA for WordPress' innloggingsskjema"
|
|
810 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
811 |
msgstr "Før du kan ta i bruk reCAPTCHA må du skaffe deg en Site key og Secret key på Googles webside"
|
812 |
|
813 |
-
#: ../cerber-lab.php:
|
814 |
msgid "Know more"
|
815 |
msgstr "Lær mer"
|
816 |
|
817 |
-
#: ../dashboard.php:
|
818 |
msgid "WP Cerber Security"
|
819 |
msgstr "WP Cerber-sikkerhet"
|
820 |
|
@@ -826,7 +827,7 @@ msgstr "Brukere"
|
|
826 |
msgid "User created"
|
827 |
msgstr "Bruker opprettet"
|
828 |
|
829 |
-
#: ../dashboard.php:
|
830 |
msgid "User registered"
|
831 |
msgstr "Bruker registrert"
|
832 |
|
@@ -882,96 +883,96 @@ msgstr "Slå på reCAPTCHA for WooCommerce innloggings-skjema"
|
|
882 |
msgid "Request to the Google reCAPTCHA service failed"
|
883 |
msgstr "Forespørsel til Googles reCAPTCHA-tjeneste mislyktes"
|
884 |
|
885 |
-
#: ../dashboard.php:
|
886 |
msgid "View all"
|
887 |
msgstr "Se alle"
|
888 |
|
889 |
-
#: ../dashboard.php:
|
890 |
msgid "Recently locked out IP addresses"
|
891 |
msgstr "Nylig utestengte IP-adresser"
|
892 |
|
893 |
-
#: ../cerber-lab.php:
|
894 |
msgid "OK, nail them all"
|
895 |
msgstr "OK, ta alle sammen"
|
896 |
|
897 |
-
#: ../cerber-lab.php:
|
898 |
msgid "NO, maybe later"
|
899 |
msgstr "NEI, kanskje senere"
|
900 |
|
901 |
-
#: ../dashboard.php:
|
902 |
#: php:350
|
903 |
msgid "Dashboard"
|
904 |
msgstr "Kontrollpanel"
|
905 |
|
906 |
-
#: ../cerber-lab.php:
|
907 |
msgid "Want to make WP Cerber even more powerful?"
|
908 |
msgstr "Vil du gjøre WP Cerber enda sterkere?"
|
909 |
|
910 |
-
#: ../cerber-lab.php:
|
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 "Tillat at WP Cerber sender utestengde ondsinnede IP-adresser til Cerber Lab. Dette hjelper plugin-teamet å utvikle nye algoritmer som vil beskytte WordPress mot nye trusler og botnett som dukker opp hver dag. Du kan slå av sendingen i plugin-innstillingene når som helst."
|
913 |
|
914 |
-
#: ../dashboard.php:
|
915 |
msgid "IP address"
|
916 |
msgstr "IP-adresse"
|
917 |
|
918 |
-
#: ../dashboard.php:
|
919 |
msgid "User login"
|
920 |
msgstr "Brukernavn"
|
921 |
|
922 |
-
#: ../dashboard.php:
|
923 |
msgid "User ID"
|
924 |
msgstr "Bruker-ID"
|
925 |
|
926 |
-
#: ../dashboard.php:
|
927 |
msgid "Export"
|
928 |
msgstr "Eksporter"
|
929 |
|
930 |
-
#: ../dashboard.php:
|
931 |
msgid "Search for IP or username"
|
932 |
msgstr "Søk etter IP eller brukernavn"
|
933 |
|
934 |
-
#: ../dashboard.php:
|
935 |
msgid "Filter"
|
936 |
msgstr "Filter"
|
937 |
|
938 |
-
#: ../dashboard.php:
|
939 |
msgid "Cerber Dashboard"
|
940 |
msgstr "Cerber-kontrollpanel"
|
941 |
|
942 |
-
#: ../dashboard.php:
|
943 |
msgid "Cerber tools"
|
944 |
msgstr "Cerber-verktøy"
|
945 |
|
946 |
-
#: ../dashboard.php:
|
947 |
msgid "Subscribe"
|
948 |
msgstr "Abbonér"
|
949 |
|
950 |
-
#: ../dashboard.php:
|
951 |
msgid "Unsubscribe"
|
952 |
msgstr "Avslutt abonnementet"
|
953 |
|
954 |
-
#: ../dashboard.php:
|
955 |
msgid "You've subscribed"
|
956 |
msgstr "Du abbonerer"
|
957 |
|
958 |
-
#: ../dashboard.php:
|
959 |
msgid "You've unsubscribed"
|
960 |
msgstr "Du har avsluttet abonnementet"
|
961 |
|
962 |
-
#: ../wp-cerber.php:
|
963 |
msgid "A new activity has been recorded"
|
964 |
msgstr "En ny aktivitet har blitt registrert"
|
965 |
|
966 |
-
#: ../wp-cerber.php:
|
967 |
msgid "User"
|
968 |
msgstr "Bruker"
|
969 |
|
970 |
-
#: ../wp-cerber.php:
|
971 |
msgid "Search string"
|
972 |
msgstr "Søkeord"
|
973 |
|
974 |
-
#: ../wp-cerber.php:
|
975 |
msgid "To unsubscribe click here"
|
976 |
msgstr "Klikk her for å avslutte abbonementet"
|
977 |
|
@@ -987,7 +988,7 @@ msgstr "Datoformat"
|
|
987 |
msgid "if empty, the default format %s will be used"
|
988 |
msgstr "hvis blank, vil formatet %s bli brukt"
|
989 |
|
990 |
-
#: ../
|
991 |
msgid "Push notifications"
|
992 |
msgstr "Push-varsler"
|
993 |
|
@@ -1063,7 +1064,7 @@ msgstr "Steng ute IP-adresser for %s minutter etter %s mislykkede forsøk på %s
|
|
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 "I vakttårnsmodus kan ingen andre enn hvitlistede IP-adresser logge seg inn. Allerede innloggede brukere vil ikke bli påvirket."
|
1065 |
|
1066 |
-
#: ../dashboard.php:
|
1067 |
msgid "Event"
|
1068 |
msgstr "Hendelse"
|
1069 |
|
@@ -1079,12 +1080,12 @@ msgstr "Ondsinnede IP-adresser oppdaget"
|
|
1079 |
msgid "Lockouts occurred"
|
1080 |
msgstr "Utestengelser"
|
1081 |
|
1082 |
-
#: ../dashboard.php:
|
1083 |
msgid "All suspicious activity"
|
1084 |
msgstr "All mistenkelig aktivitet"
|
1085 |
|
1086 |
-
#: ../wp-cerber.php:
|
1087 |
-
#: php:
|
1088 |
msgid "You are not allowed to register."
|
1089 |
msgstr "Du har ikke tilgang til å registrere deg"
|
1090 |
|
@@ -1104,11 +1105,11 @@ msgstr "Registreringsforsøk nektet"
|
|
1104 |
msgid "Malicious activities mitigated"
|
1105 |
msgstr "Mistenkelige aktiviteter redusert"
|
1106 |
|
1107 |
-
#: ../dashboard.php:
|
1108 |
msgid "Cerber antispam settings"
|
1109 |
msgstr "Cerber antispam-innstillinger"
|
1110 |
|
1111 |
-
#: ../dashboard.php:
|
1112 |
#: php:185
|
1113 |
msgid "Antispam"
|
1114 |
msgstr "Antispam"
|
@@ -1145,7 +1146,7 @@ msgstr "Lisens"
|
|
1145 |
msgid "Antispam and bot detection settings"
|
1146 |
msgstr "Innstillinger for antispam og bot-oppdagelse"
|
1147 |
|
1148 |
-
#: ../wp-cerber.php:
|
1149 |
msgid "Sorry, human verification failed."
|
1150 |
msgstr "Beklager, menneskeverifisering feilet"
|
1151 |
|
@@ -1193,7 +1194,7 @@ msgstr "Sikkermodus"
|
|
1193 |
msgid "Use less restrictive policies (allow AJAX)"
|
1194 |
msgstr "Bruk mindre restriktive regler (tillat AJAX)"
|
1195 |
|
1196 |
-
#: ../dashboard.php:
|
1197 |
msgid "Logged in users"
|
1198 |
msgstr "Innloggede brukere"
|
1199 |
|
@@ -1206,31 +1207,31 @@ msgstr "Deaktivér systemet for bot-oppdagelse for innloggede brukere"
|
|
1206 |
msgid "WP Cerber Security & Antispam"
|
1207 |
msgstr "WP Cerber Sikkerhet og Antispam"
|
1208 |
|
1209 |
-
#: ../dashboard.php:95 ../dashboard.php:
|
1210 |
msgid "Country"
|
1211 |
msgstr "Land"
|
1212 |
|
1213 |
-
#: ../dashboard.php:
|
1214 |
msgid "All events"
|
1215 |
msgstr "Alle hendelser"
|
1216 |
|
1217 |
-
#: ../dashboard.php:
|
1218 |
msgid "Cerber Security Rules"
|
1219 |
msgstr "Cerber sikkerhetsregler"
|
1220 |
|
1221 |
-
#: ../dashboard.php:
|
1222 |
msgid "Security Rules"
|
1223 |
msgstr "Sikkerhetsregler"
|
1224 |
|
1225 |
-
#: ../dashboard.php:
|
1226 |
msgid "Failed login attempts"
|
1227 |
msgstr "Mislykkede innloggingsforsøk"
|
1228 |
|
1229 |
-
#: ../dashboard.php:
|
1230 |
msgid "Registered"
|
1231 |
msgstr "Registrert"
|
1232 |
|
1233 |
-
#: ../dashboard.php:
|
1234 |
msgid "You"
|
1235 |
msgstr "Deg"
|
1236 |
|
@@ -1238,25 +1239,25 @@ msgstr "Deg"
|
|
1238 |
msgid "Spam form submissions denied"
|
1239 |
msgstr "Innsending av skjema nektet pga. spam"
|
1240 |
|
1241 |
-
#: ../dashboard.php:
|
1242 |
msgid "Getting Started Guide"
|
1243 |
msgstr "Hurtigstartsguide"
|
1244 |
|
1245 |
-
#: ../dashboard.php:
|
1246 |
msgid "Countries"
|
1247 |
msgstr "Land"
|
1248 |
|
1249 |
-
#: ../dashboard.php:
|
1250 |
msgid "Permitted for one country"
|
1251 |
msgid_plural "Permitted for %d countries"
|
1252 |
msgstr[0] "Tillatt for ett land"
|
1253 |
msgstr[1] "Tillatt for %s land"
|
1254 |
|
1255 |
-
#: ../dashboard.php:
|
1256 |
msgid "No rule"
|
1257 |
msgstr "Ingen regel"
|
1258 |
|
1259 |
-
#: ../dashboard.php:
|
1260 |
msgid "Security rules have been updated"
|
1261 |
msgstr "Sikkerhetsreglene har blitt oppdatert"
|
1262 |
|
@@ -1345,35 +1346,35 @@ msgstr "Forespør hvitliste"
|
|
1345 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1346 |
msgstr "%s tillatte registreringer på %s minutter fra én IP-adresse"
|
1347 |
|
1348 |
-
#: ../dashboard.php:
|
1349 |
msgid "Start typing here to find a country"
|
1350 |
msgstr "Begynn å skrive her for å finne et land"
|
1351 |
|
1352 |
-
#: ../dashboard.php:
|
1353 |
msgid "Click on a country name to add it to the list of selected countries"
|
1354 |
msgstr "Klikk på et land for å legge det til listen over valgte land"
|
1355 |
|
1356 |
-
#: ../dashboard.php:
|
1357 |
msgid "Submit forms"
|
1358 |
msgstr "Send inn skjemaer"
|
1359 |
|
1360 |
-
#: ../dashboard.php:
|
1361 |
msgid "Post comments"
|
1362 |
msgstr "Publisér kommentarer"
|
1363 |
|
1364 |
-
#: ../dashboard.php:
|
1365 |
msgid "Log in to the website"
|
1366 |
msgstr "Logg inn på websiden"
|
1367 |
|
1368 |
-
#: ../dashboard.php:
|
1369 |
msgid "Register on the website"
|
1370 |
msgstr "Registrer på websiden"
|
1371 |
|
1372 |
-
#: ../dashboard.php:
|
1373 |
msgid "Use XML-RPC"
|
1374 |
msgstr "Bruk XML-RPC"
|
1375 |
|
1376 |
-
#: ../dashboard.php:
|
1377 |
msgid "Use REST API"
|
1378 |
msgstr "Bruk REST API"
|
1379 |
|
@@ -1385,11 +1386,11 @@ msgstr "Nekt det fullstendig"
|
|
1385 |
msgid "Mark it as spam"
|
1386 |
msgstr "Marker det som spam"
|
1387 |
|
1388 |
-
#: ../dashboard.php:
|
1389 |
msgid "in the last 24 hours"
|
1390 |
msgstr "i løpet av de siste 24 timer"
|
1391 |
|
1392 |
-
#: ../dashboard.php:
|
1393 |
msgid "Main settings"
|
1394 |
msgstr "Hovedinnstillinger"
|
1395 |
|
@@ -1435,23 +1436,23 @@ msgctxt "preposition of time"
|
|
1435 |
msgid "at"
|
1436 |
msgstr "klokken"
|
1437 |
|
1438 |
-
#: ../wp-cerber.php:
|
1439 |
msgid "Weekly report"
|
1440 |
msgstr "Ukentlig rapport"
|
1441 |
|
1442 |
-
#: ../wp-cerber.php:
|
1443 |
msgid "To change reporting settings visit"
|
1444 |
msgstr "For å endre rapporteringsinnstillingene, besøk"
|
1445 |
|
1446 |
-
#: ../wp-cerber.php:
|
1447 |
msgid "Your login page:"
|
1448 |
msgstr "Din innloggingsside"
|
1449 |
|
1450 |
-
#: ../wp-cerber.php:
|
1451 |
msgid "Your license is valid until"
|
1452 |
msgstr "Din lisens er gyldig inntil"
|
1453 |
|
1454 |
-
#: ../wp-cerber.php:
|
1455 |
msgid "Activity details"
|
1456 |
msgstr "Aktivitetsdetaljer"
|
1457 |
|
@@ -1459,30 +1460,30 @@ msgstr "Aktivitetsdetaljer"
|
|
1459 |
msgid "Click to send now"
|
1460 |
msgstr "Klikk for å sende nå"
|
1461 |
|
1462 |
-
#: ../wp-cerber.php:
|
1463 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1464 |
msgstr "> > > WP Cerber-oversetter? For å få en gratis PRO-lisens, legg igjen din kontaktinfo her: https://wpcerber.com/contact"
|
1465 |
|
1466 |
-
#: ../dashboard.php:
|
1467 |
msgid "Email has been sent to"
|
1468 |
msgstr "E-post har blitt sendt til"
|
1469 |
|
1470 |
-
#: ../dashboard.php:
|
1471 |
msgid "Unable to send email to"
|
1472 |
msgstr "Kunne ikke sende e-post til"
|
1473 |
|
1474 |
-
#: ../dashboard.php:
|
1475 |
msgid "Not permitted for one country"
|
1476 |
msgid_plural "Not permitted for %d countries"
|
1477 |
msgstr[0] "Ikke tillatt for ett land"
|
1478 |
msgstr[1] "Ikke tillatt for %d land"
|
1479 |
|
1480 |
-
#: ../dashboard.php:
|
1481 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1482 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
1483 |
msgstr "Valgte land er tillatt å %s, andre land er ikke tillatt å"
|
1484 |
|
1485 |
-
#: ../dashboard.php:
|
1486 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1487 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
1488 |
msgstr "Valgte land er ikke tillatt å %s, andre land er tillatt å"
|
@@ -1492,7 +1493,7 @@ msgstr "Valgte land er ikke tillatt å %s, andre land er tillatt å"
|
|
1492 |
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>."
|
1493 |
msgstr "Beskytter siden mot brute force-angrep, botter og hackere. Antispam-beskyttelse via Cerbers eget system og reCAPTCHA. Omfattende kontroll av brukeraktivitet. Begrens innlogging etter IP-adresselister. Begrens innloggingsforsøk. Finn ut mer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1494 |
|
1495 |
-
#: ../wp-cerber.php:
|
1496 |
msgid "Weekly Report"
|
1497 |
msgstr "Ukentlig rapport"
|
1498 |
|
@@ -1516,23 +1517,23 @@ msgstr "hvis feltet er tomt, vil e-postadressen fra varselinnstillingene bli bru
|
|
1516 |
msgid "Enable reporting"
|
1517 |
msgstr "Aktivér rapportering"
|
1518 |
|
1519 |
-
#: ../wp-cerber.php:
|
1520 |
msgid "Your last sign-in was %s from %s"
|
1521 |
msgstr "Din siste innlogging var %s fra %s"
|
1522 |
|
1523 |
-
#: ../wp-cerber.php:
|
1524 |
msgid "Attempts to log in with non-existent username"
|
1525 |
msgstr "Forsøk på å logge inn med ikke-eksisterende brukernavn"
|
1526 |
|
1527 |
-
#: ../dashboard.php:
|
1528 |
msgid "IP address, IPv4 address range or subnet"
|
1529 |
msgstr "IP-adresse, IPv4-adresseområde eller subnet"
|
1530 |
|
1531 |
-
#: ../dashboard.php:
|
1532 |
msgid "Optional comment for this entry"
|
1533 |
msgstr "Valgfri kommentar for denne oppføringen"
|
1534 |
|
1535 |
-
#: ../dashboard.php:
|
1536 |
msgid "You cannot add your IP address or network"
|
1537 |
msgstr "Du kan ikke legge til din IP-adresse eller nettverk"
|
1538 |
|
@@ -1544,131 +1545,143 @@ msgstr "Kult!"
|
|
1544 |
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1545 |
msgstr "For å spesifisere et REGEX-mønster, pakk mønsteret inn i to skråstreker."
|
1546 |
|
1547 |
-
#: ../dashboard.php:
|
1548 |
msgid "Cerber Traffic Inspector"
|
1549 |
-
msgstr ""
|
1550 |
|
1551 |
-
#: ../dashboard.php:
|
1552 |
msgid "Traffic Inspector"
|
1553 |
-
msgstr ""
|
1554 |
|
1555 |
-
#: ../dashboard.php:
|
1556 |
msgid "Traffic"
|
1557 |
-
msgstr ""
|
1558 |
|
1559 |
-
#: ../dashboard.php:
|
1560 |
msgid "Live traffic"
|
1561 |
-
msgstr ""
|
1562 |
|
1563 |
-
#: ../dashboard.php:
|
1564 |
msgid "Request"
|
1565 |
-
msgstr ""
|
1566 |
|
1567 |
-
#: ../dashboard.php:
|
1568 |
msgid "Host Info"
|
1569 |
-
msgstr ""
|
1570 |
|
1571 |
-
#: ../dashboard.php:
|
1572 |
msgid "User Agent"
|
1573 |
-
msgstr ""
|
1574 |
|
1575 |
-
#: ../dashboard.php:
|
1576 |
-
msgid "No requests has been logged."
|
1577 |
-
msgstr ""
|
1578 |
-
|
1579 |
-
#: ../dashboard.php:2704
|
1580 |
msgid "All requests"
|
1581 |
-
msgstr ""
|
1582 |
|
1583 |
-
#: ../dashboard.php:
|
1584 |
msgid "Not logged in visitors"
|
1585 |
-
msgstr ""
|
1586 |
|
1587 |
-
#: ../dashboard.php:
|
1588 |
msgid "Form submissions"
|
1589 |
-
msgstr ""
|
1590 |
|
1591 |
-
#: ../dashboard.php:
|
1592 |
msgid "Page Not Found"
|
1593 |
-
msgstr ""
|
1594 |
|
1595 |
-
#: ../dashboard.php:
|
1596 |
msgid "REST API"
|
1597 |
-
msgstr ""
|
1598 |
|
1599 |
-
#: ../dashboard.php:
|
1600 |
msgid "XML-RPC"
|
1601 |
-
msgstr ""
|
1602 |
|
1603 |
-
#: ../dashboard.php:
|
1604 |
msgid "Longer than"
|
1605 |
-
msgstr ""
|
1606 |
|
1607 |
-
#: ../dashboard.php:
|
1608 |
msgid "Refresh"
|
1609 |
-
msgstr ""
|
1610 |
|
1611 |
#: ../common.php:101
|
1612 |
msgid "Check for requests"
|
1613 |
-
msgstr ""
|
1614 |
-
|
1615 |
-
#: ../common.php:649 ../common.php:695
|
1616 |
-
msgid "Probing for vulnerable PHP script"
|
1617 |
-
msgstr ""
|
1618 |
|
1619 |
#: ../common.php:910
|
1620 |
msgid "Not specified"
|
1621 |
-
msgstr ""
|
1622 |
-
|
1623 |
-
#: ../settings.php:245
|
1624 |
-
msgid "Logging settings"
|
1625 |
-
msgstr ""
|
1626 |
|
1627 |
#: ../settings.php:254
|
1628 |
msgid "Logging mode"
|
1629 |
-
msgstr ""
|
1630 |
|
1631 |
#: ../settings.php:260
|
1632 |
msgid "Logging disabled"
|
1633 |
-
msgstr ""
|
1634 |
|
1635 |
#: ../settings.php:261
|
1636 |
msgid "Smart"
|
1637 |
-
msgstr ""
|
1638 |
|
1639 |
#: ../settings.php:262
|
1640 |
msgid "All traffic"
|
1641 |
-
msgstr ""
|
1642 |
|
1643 |
#: ../settings.php:266
|
1644 |
msgid "Ignore crawlers"
|
1645 |
-
msgstr ""
|
1646 |
|
1647 |
#: ../settings.php:276
|
1648 |
msgid "Mask these form fields"
|
1649 |
-
msgstr ""
|
1650 |
|
1651 |
#: ../settings.php:291
|
1652 |
msgid "milliseconds"
|
1653 |
-
msgstr ""
|
1654 |
|
1655 |
#: ../settings.php:246
|
1656 |
msgid "Inspection"
|
1657 |
-
msgstr ""
|
1658 |
|
1659 |
#: ../settings.php:247
|
1660 |
msgid "Enable traffic inspection"
|
1661 |
-
msgstr ""
|
1662 |
|
1663 |
#: ../settings.php:253
|
1664 |
msgid "Logging"
|
1665 |
-
msgstr ""
|
1666 |
|
1667 |
#: ../settings.php:271
|
1668 |
msgid "Save request fields"
|
1669 |
-
msgstr ""
|
1670 |
|
1671 |
#: ../settings.php:286
|
1672 |
msgid "Page generation time threshold"
|
1673 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1674 |
|
72 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
73 |
msgstr "Blokkér direkte tilgang til wp-login.php og returnér HTTP 404 Ikke Funnet-feil."
|
74 |
|
75 |
+
#: ../dashboard.php:1208 ../settings.php:89
|
76 |
msgid "Citadel mode"
|
77 |
msgstr "Vakttårnsmodus"
|
78 |
|
84 |
msgid "Duration"
|
85 |
msgstr "Varighet"
|
86 |
|
87 |
+
#: ../wp-cerber.php:3910 ../settings.php:75 ../settings.php:92 ../settings.php:368
|
88 |
msgid "Notifications"
|
89 |
msgstr "Varsling"
|
90 |
|
92 |
msgid "Send notification to admin email"
|
93 |
msgstr "Send varsel til admins e-postadresse"
|
94 |
|
95 |
+
#: ../wp-cerber.php:3907 ../settings.php:361 ../cerber-tools.php:88 ../cerber-
|
96 |
#: tools.php:97 ../cerber-tools.php:178
|
97 |
msgid "Access Lists"
|
98 |
msgstr "Tilgangsliste"
|
99 |
|
100 |
+
#: ../dashboard.php:1226 ../dashboard.php:1423 ../wp-cerber.php:3671 ../settings.
|
101 |
#: php:94 ../settings.php:352
|
102 |
msgid "Activity"
|
103 |
msgstr "Aktivitet"
|
114 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
115 |
msgstr "Aktivér etter %s mislykkede innloggingsforsøk på %s minutter"
|
116 |
|
117 |
+
#: ../dashboard.php:93 ../dashboard.php:652 ../dashboard.php:2784 ../wp-cerber.
|
118 |
+
#: php:3680
|
119 |
msgid "IP"
|
120 |
msgstr "IP-adresse"
|
121 |
|
122 |
+
#: ../dashboard.php:491 ../dashboard.php:655 ../dashboard.php:2782
|
123 |
msgid "Date"
|
124 |
msgstr "Dato"
|
125 |
|
126 |
+
#: ../dashboard.php:491 ../dashboard.php:657 ../dashboard.php:2787
|
127 |
msgid "Local User"
|
128 |
msgstr "Lokal bruker"
|
129 |
|
130 |
+
#: ../dashboard.php:491 ../dashboard.php:658 ../wp-cerber.php:3688
|
131 |
msgid "Username used"
|
132 |
msgstr "Brukernavn brukt"
|
133 |
|
159 |
msgid "Citadel activated!"
|
160 |
msgstr "Vakttårn aktivert!"
|
161 |
|
162 |
+
#: ../dashboard.php:632 ../dashboard.php:836 ../dashboard.php:2630 ../common.php:
|
163 |
#: 658
|
164 |
msgid "Locked out"
|
165 |
msgstr "Utestengt"
|
172 |
msgid "Password changed"
|
173 |
msgstr "Passord endret"
|
174 |
|
175 |
+
#: ../dashboard.php:86 ../dashboard.php:159
|
176 |
msgid "Remove"
|
177 |
msgstr "Fjern"
|
178 |
|
179 |
+
#: ../dashboard.php:390
|
180 |
msgid "Lockout for %s was removed"
|
181 |
msgstr "Utestengelse for %s ble fjernet"
|
182 |
|
183 |
+
#: ../dashboard.php:131 ../dashboard.php:627 ../dashboard.php:830 ../dashboard.
|
184 |
+
#: php:1206 ../dashboard.php:2625 ../wp-cerber.php:3899 ../settings.php:74 ..
|
185 |
#: /settings.php:322
|
186 |
msgid "White IP Access List"
|
187 |
msgstr "Hvit IP-tilgangsliste"
|
188 |
|
189 |
+
#: ../dashboard.php:133 ../dashboard.php:628 ../dashboard.php:833 ../dashboard.
|
190 |
+
#: php:1207 ../dashboard.php:2626
|
191 |
msgid "Black IP Access List"
|
192 |
msgstr "Svart IP-tilgangsliste"
|
193 |
|
194 |
+
#: ../dashboard.php:165
|
195 |
msgid "List is empty"
|
196 |
msgstr "Listen er tom"
|
197 |
|
198 |
+
#: ../dashboard.php:202
|
199 |
msgid "Address %s was added to White IP Access List"
|
200 |
msgstr "Adressen %s ble lagt til den hvite IP-tilgangslisten"
|
201 |
|
202 |
+
#: ../dashboard.php:216
|
203 |
msgid "Address %s was added to Black IP Access List"
|
204 |
msgstr "Adressen %s ble lagt til den svarte IP-tilgangslisten"
|
205 |
|
206 |
+
#: ../wp-cerber.php:3142
|
207 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
208 |
msgstr "Vakttårnsmodus ble aktivert etter %d mislykkede innloggingsforsøk på %d minutter"
|
209 |
|
210 |
+
#: ../dashboard.php:1566
|
211 |
msgid "View Activity"
|
212 |
msgstr "Se aktivitet"
|
213 |
|
214 |
+
#: ../dashboard.php:2482 ../cerber-tools.php:87 ../cerber-tools.php:96
|
215 |
msgid "Settings"
|
216 |
msgstr "Innstillinger"
|
217 |
|
218 |
+
#: ../dashboard.php:1072
|
219 |
msgid "Last login"
|
220 |
msgstr "Siste innlogging"
|
221 |
|
222 |
+
#: ../dashboard.php:1105 ../dashboard.php:1189
|
223 |
msgid "Never"
|
224 |
msgstr "Aldri"
|
225 |
|
226 |
+
#: ../dashboard.php:1467
|
227 |
msgid "Are you sure?"
|
228 |
msgstr "Er du sikker?"
|
229 |
|
230 |
+
#: ../dashboard.php:1274 ../settings.php:76
|
231 |
msgid "My site is behind a reverse proxy"
|
232 |
msgstr "Min side er bak en reverse proxy"
|
233 |
|
255 |
msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
|
256 |
msgstr "Vær forsiktig når du velger dette alternativet. Glemmer du din nye URL for innlogging, vil du ikke kunne logge deg inn."
|
257 |
|
258 |
+
#: ../wp-cerber.php:3906 ../settings.php:358
|
259 |
msgid "Main Settings"
|
260 |
msgstr "Hovedinnstillinger"
|
261 |
|
267 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
268 |
msgstr "Øk varigheten av utestengelser til %s timer etter %s utestengelser i løpet av de siste %s timer"
|
269 |
|
270 |
+
#: ../wp-cerber.php:299
|
271 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
272 |
msgstr "Du har ikke tillatelse til å logge inn. Spør din administrator om du trenger hjelp."
|
273 |
|
274 |
+
#: ../wp-cerber.php:305
|
275 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
276 |
msgstr "Du har nådd grensen for antall tillatte innloggingsforsøk. Vennligst prøv igjen om %d minutter."
|
277 |
|
278 |
+
#: ../wp-cerber.php:324
|
279 |
msgid "You have only one attempt remaining."
|
280 |
msgid_plural "You have %d attempts remaining."
|
281 |
msgstr[0] "Du har kun ett forsøk igjen."
|
282 |
msgstr[1] "Du har %d forsøk igjen."
|
283 |
|
284 |
+
#: ../dashboard.php:680
|
285 |
msgid "No activity has been logged."
|
286 |
msgstr "Ingen aktivitet har blitt registrert."
|
287 |
|
301 |
msgid "Your IP"
|
302 |
msgstr "Din IP"
|
303 |
|
304 |
+
#: ../wp-cerber.php:3143
|
305 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
306 |
msgstr "Siste mislykkede forsøk var %s fra IP %s med brukernavn %s."
|
307 |
|
308 |
+
#: ../wp-cerber.php:3882
|
309 |
msgid "Can't activate WP Cerber due to a database error."
|
310 |
msgstr "Kunne ikke aktivere WP Cerber på grunn av en databasefeil."
|
311 |
|
317 |
msgid "days"
|
318 |
msgstr "dager"
|
319 |
|
320 |
+
#: ../dashboard.php:1159
|
321 |
msgid "Cerber Quick View"
|
322 |
msgstr "Cerber hurtigvisning"
|
323 |
|
329 |
msgid "To view activity, click on the IP"
|
330 |
msgstr "For å se aktivitet klikk på IP-en"
|
331 |
|
332 |
+
#: ../dashboard.php:158 ../dashboard.php:843 ../dashboard.php:870 ../dashboard.
|
333 |
+
#: php:961
|
334 |
msgid "Check for activity"
|
335 |
msgstr "Sjekk etter aktivitet"
|
336 |
|
346 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
347 |
msgstr "OBS! Du har endret innloggings-adressen. Din nye URL for innlogging er"
|
348 |
|
349 |
+
#: ../dashboard.php:1071
|
350 |
msgid "Comments"
|
351 |
msgstr "Kommentarer"
|
352 |
|
354 |
msgid "Update to version %s of WP Cerber"
|
355 |
msgstr "Oppdatér til versjon %s av WP Cerber"
|
356 |
|
357 |
+
#: ../wp-cerber.php:3144 ../wp-cerber.php:3712
|
358 |
msgid "View activity in dashboard"
|
359 |
msgstr "Se aktivitet i kontrollpanelet"
|
360 |
|
361 |
+
#: ../wp-cerber.php:3174
|
362 |
msgid "Number of active lockouts"
|
363 |
msgstr "Antall aktive utestengelser"
|
364 |
|
365 |
+
#: ../wp-cerber.php:3178
|
366 |
msgid "View lockouts in dashboard"
|
367 |
msgstr "Se utestengelser i kontrollpanelet"
|
368 |
|
369 |
+
#: ../wp-cerber.php:3260
|
370 |
msgid "This message was sent by"
|
371 |
msgstr "Denne meldingen ble sendt av"
|
372 |
|
373 |
+
#: ../dashboard.php:1000 ../cerber-tools.php:43
|
374 |
msgid "Tools"
|
375 |
msgstr "Verktøy"
|
376 |
|
430 |
msgid "Error while parsing file"
|
431 |
msgstr "Feil under parsing av filen"
|
432 |
|
433 |
+
#: ../dashboard.php:94 ../dashboard.php:653
|
434 |
msgid "Hostname"
|
435 |
msgstr "Vertsnavn"
|
436 |
|
437 |
+
#: ../dashboard.php:355
|
438 |
msgid "unknown"
|
439 |
msgstr "ukjent"
|
440 |
|
442 |
msgid "Keep records for"
|
443 |
msgstr "Behold logger"
|
444 |
|
445 |
+
#: ../dashboard.php:1193 ../dashboard.php:1214
|
446 |
msgid "active"
|
447 |
msgstr "aktive"
|
448 |
|
449 |
+
#: ../dashboard.php:1193
|
450 |
msgid "deactivate"
|
451 |
msgstr "deaktiver"
|
452 |
|
453 |
+
#: ../dashboard.php:1195
|
454 |
msgid "not active"
|
455 |
msgstr "ikke aktive"
|
456 |
|
457 |
+
#: ../dashboard.php:1196 ../dashboard.php:1210
|
458 |
msgid "disabled"
|
459 |
msgstr "deaktivert"
|
460 |
|
461 |
+
#: ../dashboard.php:1201
|
462 |
msgid "failed attempts"
|
463 |
msgstr "mislykkede forsøk"
|
464 |
|
465 |
+
#: ../dashboard.php:1201 ../dashboard.php:1202
|
466 |
msgid "in 24 hours"
|
467 |
msgstr "på 24 timer"
|
468 |
|
469 |
+
#: ../dashboard.php:1201 ../dashboard.php:1202
|
470 |
msgid "view all"
|
471 |
msgstr "se alle"
|
472 |
|
473 |
+
#: ../dashboard.php:1202
|
474 |
msgid "lockouts"
|
475 |
msgstr "utestengelser"
|
476 |
|
477 |
+
#: ../dashboard.php:1204
|
478 |
msgid "Lockouts at the moment"
|
479 |
msgstr "Utestengelser akkurat nå"
|
480 |
|
481 |
+
#: ../dashboard.php:1205
|
482 |
msgid "Last lockout"
|
483 |
msgstr "Siste utestengelse"
|
484 |
|
485 |
+
#: ../dashboard.php:1206 ../dashboard.php:1207 ../dashboard.php:1737
|
486 |
msgid "entry"
|
487 |
msgid_plural "entries"
|
488 |
msgstr[0] "oppføring"
|
489 |
msgstr[1] "oppføringer"
|
490 |
|
491 |
+
#: ../dashboard.php:1462
|
492 |
msgid "Confused about some settings?"
|
493 |
msgstr "Usikker på noen innstillinger?"
|
494 |
|
495 |
+
#: ../dashboard.php:1463
|
496 |
msgid "You can easily load default recommended settings using button below"
|
497 |
msgstr "Du kan enkelt laste inn anbefalte standardinnstillinger via knappen under"
|
498 |
|
499 |
+
#: ../dashboard.php:1465
|
500 |
msgid "Load default settings"
|
501 |
msgstr "Last inn standardinnstillinger"
|
502 |
|
503 |
+
#: ../dashboard.php:1473
|
504 |
msgid "doesn't affect Custom login URL and Access Lists"
|
505 |
msgstr "påvirker ikke egendefinert innloggings-URL og tilgangslister"
|
506 |
|
509 |
msgstr "Ny versjon er tilgjengelig"
|
510 |
|
511 |
#. Name of the plugin
|
512 |
+
#: ../dashboard.php:988 ../dashboard.php:1010
|
513 |
msgid "WP Cerber"
|
514 |
msgstr "WP Cerber"
|
515 |
|
516 |
+
#: ../wp-cerber.php:3118
|
517 |
msgid "WP Cerber notify"
|
518 |
msgstr "WP Cerber-varsling"
|
519 |
|
520 |
+
#: ../wp-cerber.php:3140
|
521 |
msgid "Citadel mode is activated"
|
522 |
msgstr "Vakttårns-modus er aktivert"
|
523 |
|
524 |
+
#: ../wp-cerber.php:3214
|
525 |
msgid "New Custom login URL"
|
526 |
msgstr "Ny egendefinert innloggings-URL"
|
527 |
|
528 |
+
#: ../wp-cerber.php:3869
|
529 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
530 |
msgstr "WP Cerber krever PHP versjon %s eller høyere. Du kjører"
|
531 |
|
532 |
+
#: ../wp-cerber.php:3873
|
533 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
534 |
msgstr "WP Cerber krever WordPress versjon %s eller høyere. Du kjører"
|
535 |
|
541 |
msgid "Write failed login attempts to the file"
|
542 |
msgstr "Skriv mislykkede innloggingsforsøk til filen"
|
543 |
|
544 |
+
#: ../dashboard.php:1565
|
545 |
msgid "Deactivate"
|
546 |
msgstr "Deaktivér"
|
547 |
|
548 |
+
#: ../dashboard.php:97 ../wp-cerber.php:3176
|
549 |
msgid "Reason"
|
550 |
msgstr "Grunn"
|
551 |
|
552 |
+
#: ../dashboard.php:170
|
553 |
msgid "Add IP to the list"
|
554 |
msgstr "Legg IP til listen"
|
555 |
|
556 |
+
#: ../dashboard.php:888
|
557 |
msgid "Add IP to the Black List"
|
558 |
msgstr "Legg IP til svartelisten"
|
559 |
|
569 |
msgid "Attempt to log in with non-existent username"
|
570 |
msgstr "Forsøk på å logge inn med ikke-eksisterende brukernavn"
|
571 |
|
572 |
+
#: ../wp-cerber.php:3175
|
573 |
msgid "Last lockout was added: %s for IP %s"
|
574 |
msgstr "Siste utestengelse ble lagt til: %s for IP %s"
|
575 |
|
576 |
+
#: ../wp-cerber.php:3909 ../settings.php:363
|
577 |
msgid "Hardening"
|
578 |
msgstr "Forsterking"
|
579 |
|
580 |
+
#: ../dashboard.php:866
|
581 |
msgid "Abuse email:"
|
582 |
msgstr "Repportering av misbruk:"
|
583 |
|
633 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
634 |
msgstr "<strong>FEIL</strong>: vennligst skriv inn en gyldig e-postadresse"
|
635 |
|
636 |
+
#: ../wp-cerber.php:3206 ../wp-cerber.php:3898
|
637 |
msgid "WP Cerber is now active and has started protecting your site"
|
638 |
msgstr "WP Cerber er nå aktiv og har begynt å beskytte siden din"
|
639 |
|
645 |
msgid "Nobody can log in or register from these IPs"
|
646 |
msgstr "Ingen kan logge inn eller registrere seg fra disse IP-ene"
|
647 |
|
648 |
+
#: ../dashboard.php:196 ../dashboard.php:208
|
649 |
msgid "Incorrect IP address or IP range"
|
650 |
msgstr "Feil IP-adresse eller IP-rekkevidde"
|
651 |
|
652 |
+
#: ../dashboard.php:407 ../dashboard.php:1581
|
653 |
msgid "Settings saved"
|
654 |
msgstr "Innstillingene er lagret"
|
655 |
|
656 |
+
#: ../dashboard.php:870
|
657 |
msgid "Network:"
|
658 |
msgstr "Nettverk:"
|
659 |
|
660 |
+
#: ../dashboard.php:884
|
661 |
msgid "Add network to the Black List"
|
662 |
msgstr "Legg nettverk til svartelisten"
|
663 |
|
664 |
+
#: ../dashboard.php:1564
|
665 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
666 |
msgstr "Advarsel! Vakttårns-modus er nå aktiv. Ingen vil kunne logge inn."
|
667 |
|
668 |
+
#: ../dashboard.php:313 ../dashboard.php:2555 ../whois.php:221 ../whois.php:252 ..
|
669 |
#: /common.php:687 ../common.php:966
|
670 |
msgid "Unknown"
|
671 |
msgstr "Ukjent"
|
675 |
msgid "Gregory"
|
676 |
msgstr "Gregory"
|
677 |
|
678 |
+
#: ../wp-cerber.php:607 ../wp-cerber.php:619 ../wp-cerber.php:626 ../wp-cerber.
|
679 |
+
#: php:828 ../wp-cerber.php:1044 ../wp-cerber.php:1050 ../wp-cerber.php:1055 ..
|
680 |
+
#: /wp-cerber.php:1060 ../wp-cerber.php:1066 ../wp-cerber.php:1073 ../wp-cerber.
|
681 |
+
#: php:1173 ../wp-cerber.php:1310 ../common.php:194 ../common.php:251 ../common.
|
682 |
#: php:255 ../settings.php:808
|
683 |
msgid "ERROR:"
|
684 |
msgstr "FEIL:"
|
685 |
|
686 |
+
#: ../wp-cerber.php:636
|
687 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
688 |
msgstr "Bekreftelse av menneskelighet feilet. Vennligst klikk den firkantige boksen i reCAPTCHA-blokken under."
|
689 |
|
690 |
+
#: ../wp-cerber.php:840
|
691 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
692 |
msgstr "<strong>FEIL</strong>: Passordet du skrev inn for brukernavnet %s er ugyldig."
|
693 |
|
694 |
+
#: ../wp-cerber.php:1061
|
695 |
msgid "Username is not allowed. Please choose another one."
|
696 |
msgstr "Brukernavnet er ikke tillatt. Vennligst velg et annet brukernavn."
|
697 |
|
698 |
+
#: ../wp-cerber.php:3169
|
699 |
msgid "unspecified"
|
700 |
msgstr "uspesifisert"
|
701 |
|
702 |
+
#: ../wp-cerber.php:3172
|
703 |
msgid "Number of lockouts is increasing"
|
704 |
msgstr "Antallet utestengelser stiger"
|
705 |
|
706 |
+
#: ../wp-cerber.php:3177
|
707 |
msgid "View activity for this IP"
|
708 |
msgstr "Se aktivitet for denne IP"
|
709 |
|
710 |
+
#: ../wp-cerber.php:3181 ../wp-cerber.php:3183
|
711 |
msgid "A new version of WP Cerber is available to install"
|
712 |
msgstr "En ny versjon av WP Cerber er tilgjengelig for installasjon"
|
713 |
|
714 |
+
#: ../wp-cerber.php:3182
|
715 |
msgid "Hi!"
|
716 |
msgstr "Hei!"
|
717 |
|
718 |
+
#: ../wp-cerber.php:3185 ../wp-cerber.php:3196
|
719 |
msgid "Website"
|
720 |
msgstr "Webside"
|
721 |
|
722 |
+
#: ../wp-cerber.php:3188 ../wp-cerber.php:3189
|
723 |
msgid "The WP Cerber security plugin has been deactivated"
|
724 |
msgstr "Sikkerhetstillegget WP Cerber har blitt deaktivert"
|
725 |
|
726 |
+
#: ../wp-cerber.php:3191
|
727 |
msgid "Not logged in"
|
728 |
msgstr "Ikke innlogget"
|
729 |
|
730 |
+
#: ../wp-cerber.php:3197
|
731 |
msgid "By user"
|
732 |
msgstr "Etter brukernavn"
|
733 |
|
734 |
+
#: ../wp-cerber.php:3198
|
735 |
msgid "From IP address"
|
736 |
msgstr "Fra IP-adresse"
|
737 |
|
738 |
+
#: ../wp-cerber.php:3201
|
739 |
msgid "From country"
|
740 |
msgstr "Fra land"
|
741 |
|
742 |
+
#: ../wp-cerber.php:3205
|
743 |
msgid "The WP Cerber security plugin is now active"
|
744 |
msgstr "Sikkerhetstillegget WP Cerber er nå aktivt"
|
745 |
|
746 |
+
#: ../wp-cerber.php:3899
|
747 |
msgid "Your IP address is added to the"
|
748 |
msgstr "Din IP-adresse ble lagt til"
|
749 |
|
750 |
+
#: ../wp-cerber.php:3911
|
751 |
msgid "Import settings"
|
752 |
msgstr "Importer innstillinger"
|
753 |
|
811 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
812 |
msgstr "Før du kan ta i bruk reCAPTCHA må du skaffe deg en Site key og Secret key på Googles webside"
|
813 |
|
814 |
+
#: ../cerber-lab.php:697 ../settings.php:326
|
815 |
msgid "Know more"
|
816 |
msgstr "Lær mer"
|
817 |
|
818 |
+
#: ../dashboard.php:988 ../settings.php:345
|
819 |
msgid "WP Cerber Security"
|
820 |
msgstr "WP Cerber-sikkerhet"
|
821 |
|
827 |
msgid "User created"
|
828 |
msgstr "Bruker opprettet"
|
829 |
|
830 |
+
#: ../dashboard.php:1416 ../common.php:612
|
831 |
msgid "User registered"
|
832 |
msgstr "Bruker registrert"
|
833 |
|
883 |
msgid "Request to the Google reCAPTCHA service failed"
|
884 |
msgstr "Forespørsel til Googles reCAPTCHA-tjeneste mislyktes"
|
885 |
|
886 |
+
#: ../dashboard.php:1408 ../dashboard.php:1438
|
887 |
msgid "View all"
|
888 |
msgstr "Se alle"
|
889 |
|
890 |
+
#: ../dashboard.php:1439
|
891 |
msgid "Recently locked out IP addresses"
|
892 |
msgstr "Nylig utestengte IP-adresser"
|
893 |
|
894 |
+
#: ../cerber-lab.php:695
|
895 |
msgid "OK, nail them all"
|
896 |
msgstr "OK, ta alle sammen"
|
897 |
|
898 |
+
#: ../cerber-lab.php:696
|
899 |
msgid "NO, maybe later"
|
900 |
msgstr "NEI, kanskje senere"
|
901 |
|
902 |
+
#: ../dashboard.php:990 ../dashboard.php:1225 ../dashboard.php:1757 ../settings.
|
903 |
#: php:350
|
904 |
msgid "Dashboard"
|
905 |
msgstr "Kontrollpanel"
|
906 |
|
907 |
+
#: ../cerber-lab.php:693
|
908 |
msgid "Want to make WP Cerber even more powerful?"
|
909 |
msgstr "Vil du gjøre WP Cerber enda sterkere?"
|
910 |
|
911 |
+
#: ../cerber-lab.php:694
|
912 |
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."
|
913 |
msgstr "Tillat at WP Cerber sender utestengde ondsinnede IP-adresser til Cerber Lab. Dette hjelper plugin-teamet å utvikle nye algoritmer som vil beskytte WordPress mot nye trusler og botnett som dukker opp hver dag. Du kan slå av sendingen i plugin-innstillingene når som helst."
|
914 |
|
915 |
+
#: ../dashboard.php:491
|
916 |
msgid "IP address"
|
917 |
msgstr "IP-adresse"
|
918 |
|
919 |
+
#: ../dashboard.php:491
|
920 |
msgid "User login"
|
921 |
msgstr "Brukernavn"
|
922 |
|
923 |
+
#: ../dashboard.php:491
|
924 |
msgid "User ID"
|
925 |
msgstr "Bruker-ID"
|
926 |
|
927 |
+
#: ../dashboard.php:676
|
928 |
msgid "Export"
|
929 |
msgstr "Eksporter"
|
930 |
|
931 |
+
#: ../dashboard.php:695
|
932 |
msgid "Search for IP or username"
|
933 |
msgstr "Søk etter IP eller brukernavn"
|
934 |
|
935 |
+
#: ../dashboard.php:695
|
936 |
msgid "Filter"
|
937 |
msgstr "Filter"
|
938 |
|
939 |
+
#: ../dashboard.php:990
|
940 |
msgid "Cerber Dashboard"
|
941 |
msgstr "Cerber-kontrollpanel"
|
942 |
|
943 |
+
#: ../dashboard.php:1000
|
944 |
msgid "Cerber tools"
|
945 |
msgstr "Cerber-verktøy"
|
946 |
|
947 |
+
#: ../dashboard.php:1667
|
948 |
msgid "Subscribe"
|
949 |
msgstr "Abbonér"
|
950 |
|
951 |
+
#: ../dashboard.php:1668 ../cerber-tools.php:266
|
952 |
msgid "Unsubscribe"
|
953 |
msgstr "Avslutt abonnementet"
|
954 |
|
955 |
+
#: ../dashboard.php:1696
|
956 |
msgid "You've subscribed"
|
957 |
msgstr "Du abbonerer"
|
958 |
|
959 |
+
#: ../dashboard.php:1699
|
960 |
msgid "You've unsubscribed"
|
961 |
msgstr "Du har avsluttet abonnementet"
|
962 |
|
963 |
+
#: ../wp-cerber.php:3218 ../wp-cerber.php:3219
|
964 |
msgid "A new activity has been recorded"
|
965 |
msgstr "En ny aktivitet har blitt registrert"
|
966 |
|
967 |
+
#: ../wp-cerber.php:3684
|
968 |
msgid "User"
|
969 |
msgstr "Bruker"
|
970 |
|
971 |
+
#: ../wp-cerber.php:3692
|
972 |
msgid "Search string"
|
973 |
msgstr "Søkeord"
|
974 |
|
975 |
+
#: ../wp-cerber.php:3713
|
976 |
msgid "To unsubscribe click here"
|
977 |
msgstr "Klikk her for å avslutte abbonementet"
|
978 |
|
988 |
msgid "if empty, the default format %s will be used"
|
989 |
msgstr "hvis blank, vil formatet %s bli brukt"
|
990 |
|
991 |
+
#: ../settings.php:211
|
992 |
msgid "Push notifications"
|
993 |
msgstr "Push-varsler"
|
994 |
|
1064 |
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."
|
1065 |
msgstr "I vakttårnsmodus kan ingen andre enn hvitlistede IP-adresser logge seg inn. Allerede innloggede brukere vil ikke bli påvirket."
|
1066 |
|
1067 |
+
#: ../dashboard.php:491 ../dashboard.php:656
|
1068 |
msgid "Event"
|
1069 |
msgstr "Hendelse"
|
1070 |
|
1080 |
msgid "Lockouts occurred"
|
1081 |
msgstr "Utestengelser"
|
1082 |
|
1083 |
+
#: ../dashboard.php:1417
|
1084 |
msgid "All suspicious activity"
|
1085 |
msgstr "All mistenkelig aktivitet"
|
1086 |
|
1087 |
+
#: ../wp-cerber.php:1045 ../wp-cerber.php:1051 ../wp-cerber.php:1067 ../wp-cerber.
|
1088 |
+
#: php:1074
|
1089 |
msgid "You are not allowed to register."
|
1090 |
msgstr "Du har ikke tilgang til å registrere deg"
|
1091 |
|
1105 |
msgid "Malicious activities mitigated"
|
1106 |
msgstr "Mistenkelige aktiviteter redusert"
|
1107 |
|
1108 |
+
#: ../dashboard.php:999
|
1109 |
msgid "Cerber antispam settings"
|
1110 |
msgstr "Cerber antispam-innstillinger"
|
1111 |
|
1112 |
+
#: ../dashboard.php:999 ../dashboard.php:1228 ../wp-cerber.php:3908 ../settings.
|
1113 |
#: php:185
|
1114 |
msgid "Antispam"
|
1115 |
msgstr "Antispam"
|
1146 |
msgid "Antispam and bot detection settings"
|
1147 |
msgstr "Innstillinger for antispam og bot-oppdagelse"
|
1148 |
|
1149 |
+
#: ../wp-cerber.php:1310
|
1150 |
msgid "Sorry, human verification failed."
|
1151 |
msgstr "Beklager, menneskeverifisering feilet"
|
1152 |
|
1194 |
msgid "Use less restrictive policies (allow AJAX)"
|
1195 |
msgstr "Bruk mindre restriktive regler (tillat AJAX)"
|
1196 |
|
1197 |
+
#: ../dashboard.php:2812 ../settings.php:156
|
1198 |
msgid "Logged in users"
|
1199 |
msgstr "Innloggede brukere"
|
1200 |
|
1207 |
msgid "WP Cerber Security & Antispam"
|
1208 |
msgstr "WP Cerber Sikkerhet og Antispam"
|
1209 |
|
1210 |
+
#: ../dashboard.php:95 ../dashboard.php:654
|
1211 |
msgid "Country"
|
1212 |
msgstr "Land"
|
1213 |
|
1214 |
+
#: ../dashboard.php:686
|
1215 |
msgid "All events"
|
1216 |
msgstr "Alle hendelser"
|
1217 |
|
1218 |
+
#: ../dashboard.php:996
|
1219 |
msgid "Cerber Security Rules"
|
1220 |
msgstr "Cerber sikkerhetsregler"
|
1221 |
|
1222 |
+
#: ../dashboard.php:996 ../dashboard.php:2136
|
1223 |
msgid "Security Rules"
|
1224 |
msgstr "Sikkerhetsregler"
|
1225 |
|
1226 |
+
#: ../dashboard.php:1073
|
1227 |
msgid "Failed login attempts"
|
1228 |
msgstr "Mislykkede innloggingsforsøk"
|
1229 |
|
1230 |
+
#: ../dashboard.php:955 ../dashboard.php:1074
|
1231 |
msgid "Registered"
|
1232 |
msgstr "Registrert"
|
1233 |
|
1234 |
+
#: ../dashboard.php:1141
|
1235 |
msgid "You"
|
1236 |
msgstr "Deg"
|
1237 |
|
1239 |
msgid "Spam form submissions denied"
|
1240 |
msgstr "Innsending av skjema nektet pga. spam"
|
1241 |
|
1242 |
+
#: ../dashboard.php:1474 ../wp-cerber.php:3208 ../wp-cerber.php:3901
|
1243 |
msgid "Getting Started Guide"
|
1244 |
msgstr "Hurtigstartsguide"
|
1245 |
|
1246 |
+
#: ../dashboard.php:2141
|
1247 |
msgid "Countries"
|
1248 |
msgstr "Land"
|
1249 |
|
1250 |
+
#: ../dashboard.php:2204
|
1251 |
msgid "Permitted for one country"
|
1252 |
msgid_plural "Permitted for %d countries"
|
1253 |
msgstr[0] "Tillatt for ett land"
|
1254 |
msgstr[1] "Tillatt for %s land"
|
1255 |
|
1256 |
+
#: ../dashboard.php:2215
|
1257 |
msgid "No rule"
|
1258 |
msgstr "Ingen regel"
|
1259 |
|
1260 |
+
#: ../dashboard.php:2427
|
1261 |
msgid "Security rules have been updated"
|
1262 |
msgstr "Sikkerhetsreglene har blitt oppdatert"
|
1263 |
|
1346 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1347 |
msgstr "%s tillatte registreringer på %s minutter fra én IP-adresse"
|
1348 |
|
1349 |
+
#: ../dashboard.php:2271
|
1350 |
msgid "Start typing here to find a country"
|
1351 |
msgstr "Begynn å skrive her for å finne et land"
|
1352 |
|
1353 |
+
#: ../dashboard.php:2354
|
1354 |
msgid "Click on a country name to add it to the list of selected countries"
|
1355 |
msgstr "Klikk på et land for å legge det til listen over valgte land"
|
1356 |
|
1357 |
+
#: ../dashboard.php:2378
|
1358 |
msgid "Submit forms"
|
1359 |
msgstr "Send inn skjemaer"
|
1360 |
|
1361 |
+
#: ../dashboard.php:2379
|
1362 |
msgid "Post comments"
|
1363 |
msgstr "Publisér kommentarer"
|
1364 |
|
1365 |
+
#: ../dashboard.php:2380
|
1366 |
msgid "Log in to the website"
|
1367 |
msgstr "Logg inn på websiden"
|
1368 |
|
1369 |
+
#: ../dashboard.php:2381
|
1370 |
msgid "Register on the website"
|
1371 |
msgstr "Registrer på websiden"
|
1372 |
|
1373 |
+
#: ../dashboard.php:2382
|
1374 |
msgid "Use XML-RPC"
|
1375 |
msgstr "Bruk XML-RPC"
|
1376 |
|
1377 |
+
#: ../dashboard.php:2383
|
1378 |
msgid "Use REST API"
|
1379 |
msgstr "Bruk REST API"
|
1380 |
|
1386 |
msgid "Mark it as spam"
|
1387 |
msgstr "Marker det som spam"
|
1388 |
|
1389 |
+
#: ../dashboard.php:1402
|
1390 |
msgid "in the last 24 hours"
|
1391 |
msgstr "i løpet av de siste 24 timer"
|
1392 |
|
1393 |
+
#: ../dashboard.php:1758
|
1394 |
msgid "Main settings"
|
1395 |
msgstr "Hovedinnstillinger"
|
1396 |
|
1436 |
msgid "at"
|
1437 |
msgstr "klokken"
|
1438 |
|
1439 |
+
#: ../wp-cerber.php:3224
|
1440 |
msgid "Weekly report"
|
1441 |
msgstr "Ukentlig rapport"
|
1442 |
|
1443 |
+
#: ../wp-cerber.php:3227
|
1444 |
msgid "To change reporting settings visit"
|
1445 |
msgstr "For å endre rapporteringsinnstillingene, besøk"
|
1446 |
|
1447 |
+
#: ../wp-cerber.php:3253
|
1448 |
msgid "Your login page:"
|
1449 |
msgstr "Din innloggingsside"
|
1450 |
|
1451 |
+
#: ../wp-cerber.php:3257
|
1452 |
msgid "Your license is valid until"
|
1453 |
msgstr "Din lisens er gyldig inntil"
|
1454 |
|
1455 |
+
#: ../wp-cerber.php:3370
|
1456 |
msgid "Activity details"
|
1457 |
msgstr "Aktivitetsdetaljer"
|
1458 |
|
1460 |
msgid "Click to send now"
|
1461 |
msgstr "Klikk for å sende nå"
|
1462 |
|
1463 |
+
#: ../wp-cerber.php:707
|
1464 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1465 |
msgstr "> > > WP Cerber-oversetter? For å få en gratis PRO-lisens, legg igjen din kontaktinfo her: https://wpcerber.com/contact"
|
1466 |
|
1467 |
+
#: ../dashboard.php:380
|
1468 |
msgid "Email has been sent to"
|
1469 |
msgstr "E-post har blitt sendt til"
|
1470 |
|
1471 |
+
#: ../dashboard.php:383
|
1472 |
msgid "Unable to send email to"
|
1473 |
msgstr "Kunne ikke sende e-post til"
|
1474 |
|
1475 |
+
#: ../dashboard.php:2207
|
1476 |
msgid "Not permitted for one country"
|
1477 |
msgid_plural "Not permitted for %d countries"
|
1478 |
msgstr[0] "Ikke tillatt for ett land"
|
1479 |
msgstr[1] "Ikke tillatt for %d land"
|
1480 |
|
1481 |
+
#: ../dashboard.php:2358
|
1482 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1483 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
1484 |
msgstr "Valgte land er tillatt å %s, andre land er ikke tillatt å"
|
1485 |
|
1486 |
+
#: ../dashboard.php:2361
|
1487 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1488 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
1489 |
msgstr "Valgte land er ikke tillatt å %s, andre land er tillatt å"
|
1493 |
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>."
|
1494 |
msgstr "Beskytter siden mot brute force-angrep, botter og hackere. Antispam-beskyttelse via Cerbers eget system og reCAPTCHA. Omfattende kontroll av brukeraktivitet. Begrens innlogging etter IP-adresselister. Begrens innloggingsforsøk. Finn ut mer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1495 |
|
1496 |
+
#: ../wp-cerber.php:3358
|
1497 |
msgid "Weekly Report"
|
1498 |
msgstr "Ukentlig rapport"
|
1499 |
|
1517 |
msgid "Enable reporting"
|
1518 |
msgstr "Aktivér rapportering"
|
1519 |
|
1520 |
+
#: ../wp-cerber.php:3280
|
1521 |
msgid "Your last sign-in was %s from %s"
|
1522 |
msgstr "Din siste innlogging var %s fra %s"
|
1523 |
|
1524 |
+
#: ../wp-cerber.php:3384
|
1525 |
msgid "Attempts to log in with non-existent username"
|
1526 |
msgstr "Forsøk på å logge inn med ikke-eksisterende brukernavn"
|
1527 |
|
1528 |
+
#: ../dashboard.php:169
|
1529 |
msgid "IP address, IPv4 address range or subnet"
|
1530 |
msgstr "IP-adresse, IPv4-adresseområde eller subnet"
|
1531 |
|
1532 |
+
#: ../dashboard.php:171
|
1533 |
msgid "Optional comment for this entry"
|
1534 |
msgstr "Valgfri kommentar for denne oppføringen"
|
1535 |
|
1536 |
+
#: ../dashboard.php:212
|
1537 |
msgid "You cannot add your IP address or network"
|
1538 |
msgstr "Du kan ikke legge til din IP-adresse eller nettverk"
|
1539 |
|
1545 |
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1546 |
msgstr "For å spesifisere et REGEX-mønster, pakk mønsteret inn i to skråstreker."
|
1547 |
|
1548 |
+
#: ../dashboard.php:992
|
1549 |
msgid "Cerber Traffic Inspector"
|
1550 |
+
msgstr "Cerber Trafikkinspektør"
|
1551 |
|
1552 |
+
#: ../dashboard.php:992 ../dashboard.php:1211 ../dashboard.php:2476
|
1553 |
msgid "Traffic Inspector"
|
1554 |
+
msgstr "Trafikkinspektør"
|
1555 |
|
1556 |
+
#: ../dashboard.php:1227
|
1557 |
msgid "Traffic"
|
1558 |
+
msgstr "Trafikk"
|
1559 |
|
1560 |
+
#: ../dashboard.php:2481
|
1561 |
msgid "Live traffic"
|
1562 |
+
msgstr "Live trafikk"
|
1563 |
|
1564 |
+
#: ../dashboard.php:2783
|
1565 |
msgid "Request"
|
1566 |
+
msgstr "Forespørsel"
|
1567 |
|
1568 |
+
#: ../dashboard.php:2785
|
1569 |
msgid "Host Info"
|
1570 |
+
msgstr "Vertsinformasjon"
|
1571 |
|
1572 |
+
#: ../dashboard.php:2786
|
1573 |
msgid "User Agent"
|
1574 |
+
msgstr "Brukeragent"
|
1575 |
|
1576 |
+
#: ../dashboard.php:2811
|
|
|
|
|
|
|
|
|
1577 |
msgid "All requests"
|
1578 |
+
msgstr "Alle forespørsler"
|
1579 |
|
1580 |
+
#: ../dashboard.php:2813
|
1581 |
msgid "Not logged in visitors"
|
1582 |
+
msgstr "Ikke-innloggede besøkende"
|
1583 |
|
1584 |
+
#: ../dashboard.php:2814
|
1585 |
msgid "Form submissions"
|
1586 |
+
msgstr "Innsendte skjema"
|
1587 |
|
1588 |
+
#: ../dashboard.php:2815
|
1589 |
msgid "Page Not Found"
|
1590 |
+
msgstr "Siden ikke funnet"
|
1591 |
|
1592 |
+
#: ../dashboard.php:2816
|
1593 |
msgid "REST API"
|
1594 |
+
msgstr "REST API"
|
1595 |
|
1596 |
+
#: ../dashboard.php:2817
|
1597 |
msgid "XML-RPC"
|
1598 |
+
msgstr "XML-RPC"
|
1599 |
|
1600 |
+
#: ../dashboard.php:2821
|
1601 |
msgid "Longer than"
|
1602 |
+
msgstr "Lengre enn"
|
1603 |
|
1604 |
+
#: ../dashboard.php:2834
|
1605 |
msgid "Refresh"
|
1606 |
+
msgstr "Oppdater"
|
1607 |
|
1608 |
#: ../common.php:101
|
1609 |
msgid "Check for requests"
|
1610 |
+
msgstr "Se etter forespørsler"
|
|
|
|
|
|
|
|
|
1611 |
|
1612 |
#: ../common.php:910
|
1613 |
msgid "Not specified"
|
1614 |
+
msgstr "Ikke spesifisert"
|
|
|
|
|
|
|
|
|
1615 |
|
1616 |
#: ../settings.php:254
|
1617 |
msgid "Logging mode"
|
1618 |
+
msgstr "Loggføringsmodus"
|
1619 |
|
1620 |
#: ../settings.php:260
|
1621 |
msgid "Logging disabled"
|
1622 |
+
msgstr "Loggføring deaktivert"
|
1623 |
|
1624 |
#: ../settings.php:261
|
1625 |
msgid "Smart"
|
1626 |
+
msgstr "Smart"
|
1627 |
|
1628 |
#: ../settings.php:262
|
1629 |
msgid "All traffic"
|
1630 |
+
msgstr "All trafikk"
|
1631 |
|
1632 |
#: ../settings.php:266
|
1633 |
msgid "Ignore crawlers"
|
1634 |
+
msgstr "Ingrorer søkeroboter"
|
1635 |
|
1636 |
#: ../settings.php:276
|
1637 |
msgid "Mask these form fields"
|
1638 |
+
msgstr "Maskér disse skjemafeltene"
|
1639 |
|
1640 |
#: ../settings.php:291
|
1641 |
msgid "milliseconds"
|
1642 |
+
msgstr "millisekunder"
|
1643 |
|
1644 |
#: ../settings.php:246
|
1645 |
msgid "Inspection"
|
1646 |
+
msgstr "Inspeksjon"
|
1647 |
|
1648 |
#: ../settings.php:247
|
1649 |
msgid "Enable traffic inspection"
|
1650 |
+
msgstr "Aktiver trafikkinspeksjon"
|
1651 |
|
1652 |
#: ../settings.php:253
|
1653 |
msgid "Logging"
|
1654 |
+
msgstr "Loggføring"
|
1655 |
|
1656 |
#: ../settings.php:271
|
1657 |
msgid "Save request fields"
|
1658 |
+
msgstr "Lagre forespørselfelter"
|
1659 |
|
1660 |
#: ../settings.php:286
|
1661 |
msgid "Page generation time threshold"
|
1662 |
+
msgstr "Tidsgrense for sidegenerering"
|
1663 |
+
|
1664 |
+
#: ../dashboard.php:2803
|
1665 |
+
msgid "No requests have been logged."
|
1666 |
+
msgstr "Ingen forespørsler har blitt loggført"
|
1667 |
+
|
1668 |
+
#: ../dashboard.php:1210
|
1669 |
+
msgid "enabled"
|
1670 |
+
msgstr "aktivert"
|
1671 |
+
|
1672 |
+
#: ../dashboard.php:1214
|
1673 |
+
msgid "no connection"
|
1674 |
+
msgstr "ingen forbindelse"
|
1675 |
+
|
1676 |
+
#: ../dashboard.php:3050
|
1677 |
+
msgid "Advanced search"
|
1678 |
+
msgstr "Avansert søk"
|
1679 |
+
|
1680 |
+
#: ../dashboard.php:948
|
1681 |
+
msgid "Last seen"
|
1682 |
+
msgstr "Sist sett"
|
1683 |
+
|
1684 |
+
#: ../common.php:649 ../common.php:695
|
1685 |
+
msgid "Probing for vulnerable PHP code"
|
1686 |
+
msgstr "Søker etter sårbar PHP-kode"
|
1687 |
|
languages/wp-cerber-nl_NL.mo
CHANGED
Binary file
|
languages/wp-cerber-nl_NL.po
CHANGED
@@ -1700,5 +1700,5 @@ msgstr "Laatst gezien"
|
|
1700 |
#. A fix for "Probing for vulnerable PHP script".
|
1701 |
#: ../common.php:649 ../common.php:695
|
1702 |
msgid "Probing for vulnerable PHP code"
|
1703 |
-
msgstr "
|
1704 |
|
1700 |
#. A fix for "Probing for vulnerable PHP script".
|
1701 |
#: ../common.php:649 ../common.php:695
|
1702 |
msgid "Probing for vulnerable PHP code"
|
1703 |
+
msgstr "Op zoek naar kwetsbare PHP-code"
|
1704 |
|
languages/wp-cerber-ru_RU.mo
CHANGED
Binary file
|
languages/wp-cerber-ru_RU.po
CHANGED
@@ -1,327 +1,491 @@
|
|
1 |
-
# Translation of Plugins - Cerber Security & Antispam -
|
2 |
-
# This file is distributed under the same license as the Plugins - Cerber Security & Antispam -
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
"X-Generator: GlotPress/2.4.0-alpha\n"
|
11 |
"Language: ru\n"
|
12 |
-
"Project-Id-Version: Plugins - Cerber Security & Antispam -
|
13 |
|
14 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
msgid "Attempts to log in with non-existent username"
|
16 |
msgstr "Попытка войти с несуществующим именем пользователя"
|
17 |
|
18 |
-
#: wp-cerber.php:
|
19 |
msgid "Weekly Report"
|
20 |
msgstr "Недельный отчет"
|
21 |
|
22 |
-
#: wp-cerber.php:
|
23 |
msgid "Your last sign-in was %s from %s"
|
24 |
msgstr "Ваш последний вход был %s с %s"
|
25 |
|
26 |
-
#: settings.php:
|
27 |
msgid "Enable reporting"
|
28 |
msgstr "Включить отчеты"
|
29 |
|
30 |
-
#: settings.php:
|
31 |
msgid "if empty, email from notification settings will be used"
|
32 |
msgstr "если не задано, будет использован адрес из настроек уведомлений"
|
33 |
|
34 |
-
#: settings.php:
|
35 |
msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
|
36 |
msgstr "Введите часть строки или пути запроса для исключения запроса из проверки движком. Один элемент на строку."
|
37 |
|
38 |
-
#: settings.php:
|
39 |
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
40 |
msgstr "Для использования регулярных выражений оберните их в два прямых слеша."
|
41 |
|
42 |
-
#: settings.php:
|
43 |
msgid "Display simple 404 page"
|
44 |
msgstr "Показать простую страницу 404"
|
45 |
|
46 |
-
#: settings.php:
|
47 |
msgid "Use 404 template from the active theme"
|
48 |
msgstr "Использовать шаблон 404 из активной темы"
|
49 |
|
50 |
-
#: dashboard.php:
|
51 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
52 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
53 |
msgstr "Выбранным странам не разрешено %s, остальным странам разрешено"
|
54 |
|
55 |
-
#: dashboard.php:
|
56 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
57 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
58 |
msgstr "Выбранным странам разрешено %s, остальным странам - нет"
|
59 |
|
60 |
-
#: dashboard.php:
|
61 |
msgid "Not permitted for one country"
|
62 |
msgid_plural "Not permitted for %d countries"
|
63 |
msgstr[0] "Не разрешено в одной стране"
|
64 |
msgstr[1] "Не разрешено в %d странах"
|
65 |
msgstr[2] "Не разрешено в %d странах"
|
66 |
|
67 |
-
#: dashboard.php:
|
68 |
msgid "Unable to send email to"
|
69 |
msgstr "Невозможно отправить email на"
|
70 |
|
71 |
-
#: dashboard.php:
|
72 |
msgid "Email has been sent to"
|
73 |
msgstr "Сообщение было отправлено на электронный адрес"
|
74 |
|
75 |
-
#: cerber-news.php:
|
76 |
msgid "Cool!"
|
77 |
msgstr "Отлично!"
|
78 |
|
79 |
-
#: wp-cerber.php:
|
80 |
msgid "Activity details"
|
81 |
msgstr "Подробно об активности"
|
82 |
|
83 |
-
#: wp-cerber.php:
|
84 |
msgid "Your license is valid until"
|
85 |
msgstr "Ваша лицензия действительна до"
|
86 |
|
87 |
-
#: wp-cerber.php:
|
88 |
msgid "Your login page:"
|
89 |
msgstr "Ваша страница входа:"
|
90 |
|
91 |
-
#: wp-cerber.php:
|
92 |
msgid "To change reporting settings visit"
|
93 |
msgstr "Для смены настроек отчетности зайдите"
|
94 |
|
95 |
-
#: wp-cerber.php:
|
96 |
msgid "Weekly report"
|
97 |
msgstr "Недельный отчет"
|
98 |
|
99 |
-
#: wp-cerber.php:
|
100 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
101 |
msgstr ">>> Переводите WP Cerber? Получите PRO лицензию бесплатно, оставьте контакты здесь: https://wpcerber.com/contact/"
|
102 |
|
103 |
-
#: settings.php:
|
104 |
msgid "Click to send now"
|
105 |
msgstr "Нажмите для отправки сейчас"
|
106 |
|
107 |
#. translators: preposition of time
|
108 |
-
#: settings.php:
|
109 |
msgctxt "preposition of time"
|
110 |
msgid "at"
|
111 |
msgstr "в"
|
112 |
|
113 |
-
#: settings.php:
|
114 |
msgid "Saturday"
|
115 |
msgstr "Суббота"
|
116 |
|
117 |
-
#: settings.php:
|
118 |
msgid "Friday"
|
119 |
msgstr "Пятница"
|
120 |
|
121 |
-
#: settings.php:
|
122 |
msgid "Thursday"
|
123 |
msgstr "Четверг"
|
124 |
|
125 |
-
#: settings.php:
|
126 |
msgid "Wednesday"
|
127 |
msgstr "Среда"
|
128 |
|
129 |
-
#: settings.php:
|
130 |
msgid "Tuesday"
|
131 |
msgstr "Вторник"
|
132 |
|
133 |
-
#: settings.php:
|
134 |
msgid "Monday"
|
135 |
msgstr "Понедельник"
|
136 |
|
137 |
-
#: settings.php:
|
138 |
msgid "Sunday"
|
139 |
msgstr "Воскресенье"
|
140 |
|
141 |
-
#: settings.php:
|
142 |
msgid "Weekly reports"
|
143 |
msgstr "Недельные отчеты"
|
144 |
|
145 |
-
#: dashboard.php:
|
146 |
msgid "Main settings"
|
147 |
msgstr "Основные настройки"
|
148 |
|
149 |
-
#: settings.php:
|
150 |
msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
|
151 |
msgstr "Если вы используете плагин кеширования, вам нужно добавить новый URL входа в список исключений кеширования"
|
152 |
|
153 |
-
#: settings.php:
|
154 |
msgid "%s allowed registrations in %s minutes from one IP"
|
155 |
msgstr "%s разрешенных регистраций в %s минут с одного IP"
|
156 |
|
157 |
-
#: settings.php:
|
158 |
msgid "Mark it as spam"
|
159 |
msgstr "Пометить как спам"
|
160 |
|
161 |
-
#: settings.php:
|
162 |
msgid "Deny it completely"
|
163 |
msgstr "Полностью запретить"
|
164 |
|
165 |
-
#: settings.php:
|
166 |
msgid "Sort users in dashboard"
|
167 |
msgstr "Сортировать пользователей в консоли"
|
168 |
|
169 |
-
#: settings.php:
|
170 |
msgid "Registration limit"
|
171 |
msgstr "Предел регистраций"
|
172 |
|
173 |
-
#: settings.php:
|
174 |
msgid "Allow REST API for logged in users"
|
175 |
msgstr "Разрешить REST API для авторизованных пользователей"
|
176 |
|
177 |
-
#: dashboard.php:
|
178 |
msgid "Use REST API"
|
179 |
msgstr "использование REST API"
|
180 |
|
181 |
-
#: dashboard.php:
|
182 |
msgid "Use XML-RPC"
|
183 |
msgstr "использование XML-RPC"
|
184 |
|
185 |
-
#: dashboard.php:
|
186 |
msgid "Register on the website"
|
187 |
msgstr "регистрация на сайте"
|
188 |
|
189 |
-
#: dashboard.php:
|
190 |
msgid "Log in to the website"
|
191 |
msgstr "авторизация на сайте"
|
192 |
|
193 |
-
#: dashboard.php:
|
194 |
msgid "Post comments"
|
195 |
msgstr "отправка комментариев"
|
196 |
|
197 |
-
#: dashboard.php:
|
198 |
msgid "Submit forms"
|
199 |
msgstr "отправка форм"
|
200 |
|
201 |
-
#: dashboard.php:
|
202 |
msgid "Click on a country name to add it to the list of selected countries"
|
203 |
msgstr "Нажмите на страну чтобы добавить ее в список выбранных"
|
204 |
|
205 |
-
#: dashboard.php:
|
206 |
msgid "Start typing here to find a country"
|
207 |
msgstr "Начните печатать тут чтобы найти страну"
|
208 |
|
209 |
-
#: dashboard.php:
|
210 |
msgid "Getting Started Guide"
|
211 |
msgstr "Руководство с чего начать"
|
212 |
|
213 |
-
#: dashboard.php:
|
214 |
msgid "in the last 24 hours"
|
215 |
msgstr "В последние 24 часа"
|
216 |
|
217 |
-
#: dashboard.php:
|
218 |
msgid "You"
|
219 |
msgstr "Вы"
|
220 |
|
221 |
-
#: dashboard.php:
|
222 |
msgid "Registered"
|
223 |
msgstr "Зарегистрирован"
|
224 |
|
225 |
-
#: dashboard.php:
|
226 |
msgid "Failed login attempts"
|
227 |
msgstr "Неудачные попытки входа"
|
228 |
|
229 |
-
#: common.php:
|
230 |
msgid "Multiple suspicious activities were detected"
|
231 |
msgstr "Обнаружена множественная подозрительная активность"
|
232 |
|
233 |
-
#: common.php:
|
234 |
msgid "Multiple suspicious activities"
|
235 |
msgstr "Множественная подозрительная активность"
|
236 |
|
237 |
-
#: common.php:
|
238 |
msgid "Limit reached"
|
239 |
msgstr "Предел достигнут"
|
240 |
|
241 |
-
#: settings.php:
|
242 |
msgid "Query whitelist"
|
243 |
msgstr "Белый список запросов"
|
244 |
|
245 |
-
#: settings.php:
|
246 |
msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
|
247 |
msgstr "Укажите пространства имен REST API разрешенных при отключении REST API, одно имя на строку."
|
248 |
|
249 |
-
#: settings.php:
|
250 |
msgid "Block access to the WordPress REST API except the following"
|
251 |
msgstr "Блокировать доступ к REST API кроме следующего"
|
252 |
|
253 |
-
#: settings.php:
|
254 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
255 |
msgstr "Блокировать доступ к страницам пользователя /?author=n и данным о пользователях через REST API"
|
256 |
|
257 |
-
#: dashboard.php:
|
258 |
msgid "Security rules have been updated"
|
259 |
msgstr "Правила безопасности обновлены"
|
260 |
|
261 |
-
#: dashboard.php:
|
262 |
msgid "No rule"
|
263 |
msgstr "Нет правила"
|
264 |
|
265 |
-
#: dashboard.php:
|
266 |
msgid "Permitted for one country"
|
267 |
msgid_plural "Permitted for %d countries"
|
268 |
msgstr[0] "Разрешается для одной страны"
|
269 |
msgstr[1] "Разрешается для %d стран"
|
270 |
msgstr[2] "Разрешается для %d стран"
|
271 |
|
272 |
-
#: dashboard.php:
|
273 |
msgid "Countries"
|
274 |
msgstr "Страны"
|
275 |
|
276 |
-
#: common.php:
|
277 |
msgid "Spam form submissions denied"
|
278 |
msgstr "Заблокированы отправки форм спама"
|
279 |
|
280 |
-
#: dashboard.php:
|
281 |
msgid "Security Rules"
|
282 |
msgstr "Правила безопасности"
|
283 |
|
284 |
-
#: dashboard.php:
|
285 |
msgid "Cerber Security Rules"
|
286 |
msgstr "Правила безопасности Цербер"
|
287 |
|
288 |
-
#: dashboard.php:
|
289 |
msgid "All events"
|
290 |
msgstr "Все события"
|
291 |
|
292 |
-
#: dashboard.php:95 dashboard.php:
|
293 |
msgid "Country"
|
294 |
msgstr "Страна"
|
295 |
|
296 |
-
#: common.php:
|
297 |
msgid "Blocked by country rule"
|
298 |
msgstr "Заблокирован по ограничению для страны"
|
299 |
|
300 |
-
#: common.php:
|
301 |
msgid "Malicious activity detected"
|
302 |
msgstr "Обнаружена вредоносная активность"
|
303 |
|
304 |
-
#: common.php:
|
305 |
msgid "Citadel mode is active"
|
306 |
msgstr "Режим цитадель активен"
|
307 |
|
308 |
-
#: common.php:
|
309 |
msgid "Bot detected"
|
310 |
msgstr "Обнаружен бот"
|
311 |
|
312 |
-
#: common.php:
|
313 |
msgid "XML-RPC request denied"
|
314 |
msgstr "Запрос XML-RPC заблокирован"
|
315 |
|
316 |
-
#: common.php:
|
317 |
msgid "Request to REST API denied"
|
318 |
msgstr "Запрос к REST API заблокирован"
|
319 |
|
320 |
-
#: common.php:
|
321 |
msgid "Comment denied"
|
322 |
msgstr "Комментарий заблокирован"
|
323 |
|
324 |
-
#: common.php:
|
325 |
msgid "Form submission denied"
|
326 |
msgstr "Отправка формы заблокирована"
|
327 |
|
@@ -333,83 +497,83 @@ msgstr "Лицензия"
|
|
333 |
msgid "WP Cerber Security & Antispam"
|
334 |
msgstr "WP Cerber Security & Antispam"
|
335 |
|
336 |
-
#: settings.php:
|
337 |
msgid "Disable bot detection engine for logged in users"
|
338 |
msgstr "Отключить определение ботов для авторизованных пользователей"
|
339 |
|
340 |
-
#: settings.php:
|
341 |
msgid "Logged in users"
|
342 |
msgstr "Авторизованные пользователи"
|
343 |
|
344 |
-
#: settings.php:
|
345 |
msgid "Use less restrictive policies (allow AJAX)"
|
346 |
msgstr "Использовать менее жесткую политику (разрешить AJAX)"
|
347 |
|
348 |
-
#: settings.php:
|
349 |
msgid "Safe mode"
|
350 |
msgstr "Безопасный режим"
|
351 |
|
352 |
-
#: settings.php:
|
353 |
msgid "Adjust antispam engine"
|
354 |
msgstr "Настроить антиспам-движок"
|
355 |
|
356 |
-
#: settings.php:
|
357 |
msgid "Protect all forms on the website with bot detection engine"
|
358 |
msgstr "Защитить все формы на сайте через определение ботов"
|
359 |
|
360 |
-
#: settings.php:
|
361 |
msgid "Other forms"
|
362 |
msgstr "Другие формы"
|
363 |
|
364 |
-
#: common.php:
|
365 |
msgid "Spam form submission denied"
|
366 |
msgstr "Отправка формы со спамом заблокирована"
|
367 |
|
368 |
-
#: wp-cerber.php:
|
369 |
msgid "Sorry, human verification failed."
|
370 |
msgstr "Извините, проверка на человека не удалась."
|
371 |
|
372 |
-
#: settings.php:
|
373 |
msgid "Move spam comments to trash after"
|
374 |
msgstr "Удалить спам комментарии в корзину после"
|
375 |
|
376 |
-
#: settings.php:
|
377 |
msgid "Trash spam comments"
|
378 |
msgstr "Удалить спам комментарии в корзину"
|
379 |
|
380 |
-
#: settings.php:
|
381 |
msgid "If a spam comment detected"
|
382 |
msgstr "Если обнаружен спам комментарий"
|
383 |
|
384 |
-
#: settings.php:
|
385 |
msgid "Comment processing"
|
386 |
msgstr "Обработка комментария"
|
387 |
|
388 |
-
#: settings.php:
|
389 |
msgid "Protect registration form with bot detection engine"
|
390 |
msgstr "Защита регистрации через определение ботов"
|
391 |
|
392 |
-
#: settings.php:
|
393 |
msgid "Protect comment form with bot detection engine"
|
394 |
msgstr "Защита комментариев через определение ботов"
|
395 |
|
396 |
-
#: settings.php:
|
397 |
msgid "Cerber antispam engine"
|
398 |
msgstr "Движок Цербер-антиспам"
|
399 |
|
400 |
-
#: dashboard.php:
|
401 |
msgid "Antispam"
|
402 |
msgstr "Аниспам"
|
403 |
|
404 |
-
#: dashboard.php:
|
405 |
msgid "Cerber antispam settings"
|
406 |
msgstr "Настройка Цербер антиспам"
|
407 |
|
408 |
-
#: common.php:
|
409 |
msgid "Bot activity is detected"
|
410 |
msgstr "Обнаружена активность ботов"
|
411 |
|
412 |
-
#: cerber-tools.php:
|
413 |
msgid "Antispam and bot detection settings"
|
414 |
msgstr "Антиспам и настройки определения ботов"
|
415 |
|
@@ -421,199 +585,199 @@ msgstr "Диагностика"
|
|
421 |
msgid "Export & Import"
|
422 |
msgstr "Экспорт и Импорт"
|
423 |
|
424 |
-
#: wp-cerber.php:
|
425 |
msgid "You are not allowed to register."
|
426 |
msgstr "Вам не разрешено зарегистрироваться."
|
427 |
|
428 |
-
#: dashboard.php:
|
429 |
msgid "All suspicious activity"
|
430 |
msgstr "Вся подозрительная активность"
|
431 |
|
432 |
-
#: common.php:
|
433 |
msgid "Lockouts occurred"
|
434 |
msgstr "Блокировок произошло"
|
435 |
|
436 |
-
#: common.php:
|
437 |
msgid "Malicious IP addresses detected"
|
438 |
msgstr "Найдены вредоносные IP адреса"
|
439 |
|
440 |
-
#: common.php:
|
441 |
msgid "Spam comments denied"
|
442 |
msgstr "Спам-комментарии отклонены"
|
443 |
|
444 |
-
#: common.php:
|
445 |
msgid "Malicious activities mitigated"
|
446 |
msgstr "Вредоносная активность снижена"
|
447 |
|
448 |
-
#: dashboard.php:
|
449 |
msgid "Event"
|
450 |
msgstr "Событие"
|
451 |
|
452 |
-
#: common.php:
|
453 |
msgid "Attempt to register denied"
|
454 |
msgstr "Попытка регистрации отклонена"
|
455 |
|
456 |
-
#: common.php:
|
457 |
msgid "Attempt to log in denied"
|
458 |
msgstr "Попытка входа отклонена"
|
459 |
|
460 |
-
#: common.php:
|
461 |
msgid "Spam comment denied"
|
462 |
msgstr "Спам коммнтарий отклонен"
|
463 |
|
464 |
-
#: settings.php:
|
465 |
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."
|
466 |
msgstr "В режиме Цитадель никто не может войти кроме как с IP в белом списке. Активные сессии пользователей не будут затронуты."
|
467 |
|
468 |
-
#: settings.php:
|
469 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
470 |
msgstr "Блокировать IP адрес на %s минут после %s неудачных попыток в течении %s минут"
|
471 |
|
472 |
-
#: settings.php:
|
473 |
msgid "Limit attempts"
|
474 |
msgstr "Ограничение попыток"
|
475 |
|
476 |
-
#: settings.php:
|
477 |
msgid "Apply limit login rules to IP addresses in the White IP Access List"
|
478 |
msgstr "Применить правила входа для IP адресов в белом списке"
|
479 |
|
480 |
-
#: common.php:
|
481 |
-
msgid "Password reset requested"
|
482 |
-
msgstr "Запрошен сброс пароля"
|
483 |
-
|
484 |
-
#: common.php:558
|
485 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
486 |
msgstr "Достигнут предел проверки reCAPTCHA"
|
487 |
|
488 |
-
#:
|
|
|
|
|
|
|
|
|
489 |
msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
|
490 |
msgstr "(не включайте, если у вас нет или вы не вводили ключ сайта и секретный ключ для невидимой версии)"
|
491 |
|
492 |
-
#: settings.php:
|
493 |
msgid "Disable reCAPTCHA for logged in users"
|
494 |
msgstr "Отключить reCAPTCHA для авторизованных пользователей"
|
495 |
|
496 |
-
#: settings.php:
|
497 |
msgid "Enable reCAPTCHA for WordPress comment form"
|
498 |
msgstr "Включить reCAPTCHA в форме комментариев WordPress"
|
499 |
|
500 |
-
#: settings.php:
|
501 |
msgid "Comment form"
|
502 |
msgstr "Форма комментариев"
|
503 |
|
504 |
-
#: settings.php:
|
505 |
msgid "Enable invisible reCAPTCHA"
|
506 |
msgstr "Включить невидимую reCAPTCHA"
|
507 |
|
508 |
-
#: settings.php:
|
509 |
msgid "Invisible reCAPTCHA"
|
510 |
msgstr "невидимая reCAPTCHA"
|
511 |
|
512 |
-
#: common.php:
|
513 |
msgid "%s ago"
|
514 |
msgstr "%s назад"
|
515 |
|
516 |
-
#: settings.php:
|
517 |
msgid "Not available"
|
518 |
msgstr "Недоступно"
|
519 |
|
520 |
-
#: settings.php:
|
521 |
msgid "No devices found"
|
522 |
msgstr "Устройства не найдены"
|
523 |
|
524 |
-
#: settings.php:
|
525 |
msgid "All connected devices"
|
526 |
msgstr "Все подключенные устройства"
|
527 |
|
528 |
-
#: settings.php:
|
529 |
msgid "Use comma to specify multiple values"
|
530 |
msgstr "Используйте запятую для разделения множественных значений"
|
531 |
|
532 |
-
#: settings.php:
|
533 |
msgid "Email notifications"
|
534 |
msgstr "Уведомления по эл.почте"
|
535 |
|
536 |
-
#: settings.php:
|
537 |
msgid "Display 404 page"
|
538 |
msgstr "Показывать страницу 404"
|
539 |
|
540 |
-
#:
|
541 |
msgid "Push notifications"
|
542 |
msgstr "Push уведомления"
|
543 |
|
544 |
-
#: dashboard.php:
|
545 |
-
msgid "
|
546 |
-
msgstr "
|
547 |
|
548 |
-
#: dashboard.php:
|
549 |
-
msgid "
|
550 |
-
msgstr "
|
551 |
|
552 |
-
#: dashboard.php:
|
553 |
msgid "User login"
|
554 |
msgstr "Имя пользователя"
|
555 |
|
556 |
-
#: dashboard.php:
|
557 |
msgid "IP address"
|
558 |
msgstr "IP адрес"
|
559 |
|
560 |
-
#: dashboard.php:
|
561 |
-
msgid "
|
562 |
-
msgstr "
|
|
|
|
|
|
|
|
|
563 |
|
564 |
-
#: dashboard.php:
|
565 |
msgid "Cerber Dashboard"
|
566 |
msgstr "Консоль Cerber"
|
567 |
|
568 |
-
#: dashboard.php:
|
569 |
msgid "Filter"
|
570 |
msgstr "Фильтр"
|
571 |
|
572 |
-
#: dashboard.php:
|
573 |
-
msgid "Subscribe"
|
574 |
-
msgstr "Подписаться"
|
575 |
-
|
576 |
-
#: dashboard.php:882
|
577 |
msgid "Cerber tools"
|
578 |
msgstr "Инструменты Cerber"
|
579 |
|
580 |
-
#:
|
581 |
-
msgid "
|
582 |
-
msgstr "
|
583 |
-
|
584 |
-
#: dashboard.php:1566
|
585 |
-
msgid "You've unsubscribed"
|
586 |
-
msgstr "Подписка отменена"
|
587 |
|
588 |
-
#: dashboard.php:
|
589 |
msgid "You've subscribed"
|
590 |
msgstr "Вы подписались"
|
591 |
|
592 |
-
#:
|
593 |
-
msgid "
|
594 |
-
msgstr "
|
595 |
|
596 |
-
#: wp-cerber.php:
|
597 |
msgid "A new activity has been recorded"
|
598 |
msgstr "Отмечена новая активность"
|
599 |
|
600 |
-
#:
|
|
|
|
|
|
|
|
|
601 |
msgid "User"
|
602 |
msgstr "Пользователь"
|
603 |
|
604 |
-
#: wp-cerber.php:
|
605 |
-
msgid "To unsubscribe click here"
|
606 |
-
msgstr "Для отмены подписки нажмите здесь"
|
607 |
-
|
608 |
-
#: wp-cerber.php:3477
|
609 |
msgid "Search string"
|
610 |
msgstr "Строка поиска"
|
611 |
|
612 |
-
#:
|
|
|
|
|
|
|
|
|
613 |
msgid "Preferences"
|
614 |
msgstr "Настройки"
|
615 |
|
616 |
-
#: settings.php:
|
617 |
msgid "Date format"
|
618 |
msgstr "Формат даты"
|
619 |
|
@@ -625,657 +789,656 @@ msgstr "Gregory"
|
|
625 |
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>."
|
626 |
msgstr "Защищает сайт от атак перебора, ботов, хакеров. Антиспам защита с движком Cerber антиспам и reCAPTCHA. Всесторонний контроль активности пользователей. Ограничение входа по IP адресам. Ограничение попыток входа. Узнайте больше на сайте <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
627 |
|
628 |
-
#: dashboard.php:
|
629 |
msgid "Dashboard"
|
630 |
msgstr "Консоль"
|
631 |
|
632 |
-
#: settings.php:
|
633 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
634 |
msgstr "Включить reCAPTCHA для формы входа WooCommerce"
|
635 |
|
636 |
-
#: settings.php:
|
637 |
msgid "Enable reCAPTCHA for WordPress login form"
|
638 |
msgstr "Включить reCAPTCHA для формы входа WordPress"
|
639 |
|
640 |
-
#: settings.php:
|
641 |
msgid "Enable reCAPTCHA for WooCommerce lost password form"
|
642 |
msgstr "Включить reCAPTCHA для формы восстановления пароля WooCommerce"
|
643 |
|
644 |
-
#: settings.php:
|
645 |
msgid "Enable reCAPTCHA for WordPress lost password form"
|
646 |
msgstr "Включить reCAPTCHA для формы восстановления пароля WordPress"
|
647 |
|
648 |
-
#: settings.php:
|
649 |
msgid "Enable reCAPTCHA for WooCommerce registration form"
|
650 |
msgstr "Включить reCAPTCHA для формы регистрации WooCommerce"
|
651 |
|
652 |
-
#: settings.php:
|
653 |
msgid "Enable reCAPTCHA for WordPress registration form"
|
654 |
msgstr "Включить reCAPTCHA для формы регистрации WordPress"
|
655 |
|
656 |
-
#: settings.php:
|
657 |
msgid "Registration form"
|
658 |
msgstr "Форма регистрации"
|
659 |
|
660 |
-
#: settings.php:
|
661 |
msgid "Cerber Lab protocol"
|
662 |
msgstr "протокол Cerber Lab"
|
663 |
|
664 |
-
#: settings.php:
|
665 |
msgid "Send malicious IP addresses to the Cerber Lab"
|
666 |
msgstr "Посылать вредоносные IP адреса в Cerber Lab"
|
667 |
|
668 |
-
#: settings.php:
|
669 |
msgid "Cerber Lab connection"
|
670 |
msgstr "Подключение Cerber Lab"
|
671 |
|
672 |
-
#: dashboard.php:
|
673 |
msgid "Recently locked out IP addresses"
|
674 |
msgstr "Недавно заблокированые IP адреса"
|
675 |
|
676 |
-
#: dashboard.php:
|
677 |
msgid "View all"
|
678 |
msgstr "Просмотреть все"
|
679 |
|
680 |
-
#: dashboard.php:
|
681 |
msgid "WP Cerber Security"
|
682 |
msgstr "WP Cerber Security"
|
683 |
|
684 |
-
#: dashboard.php:
|
685 |
msgid "Add network to the Black List"
|
686 |
msgstr "Добавить сеть в черный список"
|
687 |
|
688 |
-
#: dashboard.php:
|
689 |
msgid "Network:"
|
690 |
msgstr "Сеть:"
|
691 |
|
692 |
-
#: dashboard.php:
|
693 |
msgid "Incorrect IP address or IP range"
|
694 |
msgstr "Неверный IP адрес или диапазон адресов"
|
695 |
|
696 |
-
#: common.php:
|
697 |
msgid "Request to the Google reCAPTCHA service failed"
|
698 |
msgstr "Запрос к сервису Google reCAPTCHA не удался"
|
699 |
|
700 |
-
#: cerber-lab.php:
|
701 |
msgid "NO, maybe later"
|
702 |
msgstr "НЕТ, возможно позже"
|
703 |
|
704 |
-
#: cerber-lab.php:
|
705 |
msgid "OK, nail them all"
|
706 |
msgstr "ОК, прибьем их всех"
|
707 |
|
708 |
-
#: cerber-lab.php:
|
709 |
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."
|
710 |
msgstr "Разрешить WP Cerber посылать заблокированные IP адреса в Cerber Lab. Это помогает команде плагина разрабатывать новые алгоритмы для WP Cerber, которые будут защищать WordPress против новых угроз и ботнетов появляюшихся каждый день. Вы всегда можете отключить отсылку в настройках плагина, в любой момент."
|
711 |
|
712 |
-
#: cerber-lab.php:
|
713 |
msgid "Want to make WP Cerber even more powerful?"
|
714 |
msgstr "Хотите сделать WP Cerber еще мощнее ?"
|
715 |
|
716 |
-
#. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security & Antispam
|
717 |
-
#. #-#-#-#-#
|
718 |
#. Plugin URI of the plugin/theme
|
719 |
-
#. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security & Antispam
|
720 |
-
#. #-#-#-#-#
|
721 |
#. Author URI of the plugin/theme
|
722 |
msgid "https://wpcerber.com"
|
723 |
msgstr "https://wpcerber.com"
|
724 |
|
725 |
-
#: wp-cerber.php:
|
726 |
msgid "Import settings"
|
727 |
msgstr "Импорт настроек"
|
728 |
|
729 |
-
#: wp-cerber.php:
|
730 |
msgid "Your IP address is added to the"
|
731 |
msgstr "Ваш IP адрес добавлен к"
|
732 |
|
733 |
-
#: wp-cerber.php:
|
734 |
msgid "Can't activate WP Cerber due to a database error."
|
735 |
msgstr "Невозможно активировать плагин WP Cerber из-за ошибки в базе данных."
|
736 |
|
737 |
-
#: wp-cerber.php:
|
738 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
739 |
msgstr "WP Cerber требует WordPress версии %s или выше. У вас версия"
|
740 |
|
741 |
-
#: wp-cerber.php:
|
742 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
743 |
msgstr "WP Cerber требует PHP версии %s или выше. У вас версия"
|
744 |
|
745 |
-
#: wp-cerber.php:
|
746 |
msgid "This message was sent by"
|
747 |
msgstr "Это сообщение было отправлено"
|
748 |
|
749 |
-
#: wp-cerber.php:
|
750 |
msgid "New Custom login URL"
|
751 |
msgstr "Новый URL для входа на сайт"
|
752 |
|
753 |
-
#: wp-cerber.php:
|
754 |
msgid "WP Cerber is now active and has started protecting your site"
|
755 |
msgstr "WP Cerber активен и начал защищать ваш сайт"
|
756 |
|
757 |
-
#: wp-cerber.php:
|
758 |
msgid "The WP Cerber security plugin is now active"
|
759 |
msgstr "WP Cerber плагин безопасности активен"
|
760 |
|
761 |
-
#: wp-cerber.php:
|
762 |
msgid "From country"
|
763 |
msgstr "Из страны"
|
764 |
|
765 |
-
#: wp-cerber.php:
|
766 |
msgid "From IP address"
|
767 |
msgstr "С IP адреса"
|
768 |
|
769 |
-
#: wp-cerber.php:
|
770 |
msgid "By user"
|
771 |
msgstr "По пользователю"
|
772 |
|
773 |
-
#: wp-cerber.php:
|
774 |
msgid "Not logged in"
|
775 |
msgstr "Нет авторизации"
|
776 |
|
777 |
-
#: wp-cerber.php:
|
778 |
msgid "The WP Cerber security plugin has been deactivated"
|
779 |
msgstr "WP Cerber плагин деактивирован"
|
780 |
|
781 |
-
#: wp-cerber.php:
|
782 |
msgid "Website"
|
783 |
msgstr "Сайт"
|
784 |
|
785 |
-
#: wp-cerber.php:
|
786 |
msgid "Hi!"
|
787 |
msgstr "Привет!"
|
788 |
|
789 |
-
#: wp-cerber.php:
|
790 |
msgid "A new version of WP Cerber is available to install"
|
791 |
msgstr "Доступна новая версия WP Cerber!"
|
792 |
|
793 |
-
#: wp-cerber.php:
|
794 |
msgid "View lockouts in dashboard"
|
795 |
msgstr "Просмотреть список заблокированных IP"
|
796 |
|
797 |
-
#: wp-cerber.php:
|
798 |
msgid "View activity for this IP"
|
799 |
msgstr "Посмотреть активность для этого IP"
|
800 |
|
801 |
-
#: wp-cerber.php:
|
802 |
msgid "Last lockout was added: %s for IP %s"
|
803 |
msgstr "Последняя блокировка была добавлена %s для IP %s"
|
804 |
|
805 |
-
#: wp-cerber.php:
|
806 |
msgid "Number of active lockouts"
|
807 |
msgstr "Число активных блокировок на данный момент"
|
808 |
|
809 |
-
#: wp-cerber.php:
|
810 |
msgid "Number of lockouts is increasing"
|
811 |
msgstr "Число блокировок увеличилось"
|
812 |
|
813 |
-
#: wp-cerber.php:
|
814 |
msgid "unspecified"
|
815 |
msgstr "неуказано"
|
816 |
|
817 |
-
#: wp-cerber.php:
|
818 |
msgid "View activity in dashboard"
|
819 |
msgstr "Просмотреть журнал активности"
|
820 |
|
821 |
-
#: wp-cerber.php:
|
822 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
823 |
msgstr "Последняя неудачная попытка была в %s с IP адреса %s с логином %s."
|
824 |
|
825 |
-
#: wp-cerber.php:
|
826 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
827 |
msgstr "Режим Цитадель активирован после %d неудачных попыток за %d минут."
|
828 |
|
829 |
-
#: wp-cerber.php:
|
830 |
msgid "Citadel mode is activated"
|
831 |
msgstr "Активирован режим Цитадель"
|
832 |
|
833 |
-
#: wp-cerber.php:
|
834 |
msgid "WP Cerber notify"
|
835 |
msgstr "Уведомление WP Cerber"
|
836 |
|
837 |
-
#: common.php:
|
838 |
msgid "Limit on login attempts is reached"
|
839 |
msgstr "Количество попыток исчерпано"
|
840 |
|
841 |
-
#: common.php:
|
842 |
msgid "Attempt to access"
|
843 |
msgstr "Попытка доступа к"
|
844 |
|
845 |
-
#: wp-cerber.php:
|
846 |
msgid "Username is not allowed. Please choose another one."
|
847 |
msgstr "Имя пользователя недопустимо. Выберите другое."
|
848 |
|
849 |
-
#: wp-cerber.php:
|
850 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
851 |
msgstr "<strong>ОШИБКА</strong>: Пароль введенный для пользователя %s is некорректен."
|
852 |
|
853 |
-
#: wp-cerber.php:
|
854 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
855 |
msgstr "Антибот проверка неудачна. Пожалуйста тыкните в квадратную отметку блока reCAPTCHA ниже"
|
856 |
|
857 |
-
#: common.php:
|
858 |
-
#: wp-cerber.php:
|
859 |
-
#: wp-cerber.php:
|
860 |
-
#: wp-cerber.php:
|
861 |
msgid "ERROR:"
|
862 |
msgstr "ОШИБКА:"
|
863 |
|
864 |
-
#: wp-cerber.php:
|
865 |
msgid "You have only one attempt remaining."
|
866 |
msgid_plural "You have %d attempts remaining."
|
867 |
msgstr[0] "У вас есть только одна попытка для входа"
|
868 |
msgstr[1] "У вас осталось %d попытки для входа."
|
869 |
msgstr[2] "У вас осталось %d попыток для входа."
|
870 |
|
871 |
-
#: wp-cerber.php:
|
872 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
873 |
msgstr "Вход невозможен. Слишком много ошибочных попыток. Попробуйте войти через %d минут."
|
874 |
|
875 |
-
#: wp-cerber.php:
|
876 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
877 |
msgstr "Вход на сайт невозможен. Обратитесь к администратору сайта."
|
878 |
|
879 |
-
#: common.php:
|
|
|
880 |
msgid "Unknown"
|
881 |
msgstr "Неизвестен"
|
882 |
|
883 |
-
#: settings.php:
|
884 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
885 |
msgstr "<strong>ОШИБКА</strong>: Введите действительный адрес эл.почты."
|
886 |
|
887 |
-
#: settings.php:
|
888 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
889 |
msgstr "Внимание! Вы изменили URL страницы авторизации. Новый адрес"
|
890 |
|
891 |
-
#: settings.php:
|
892 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
893 |
msgstr "Активировать после %s неудачных авторизаций за последние %s минут"
|
894 |
|
895 |
-
#: settings.php:
|
896 |
msgid "Notify admin if the number of active lockouts above"
|
897 |
msgstr "Уведомить администратора, если число заблокированных IP более"
|
898 |
|
899 |
-
#: settings.php:
|
900 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
901 |
msgstr "Увеличить длительность блокировки до %s часов после %s блокировок в течение последних %s часов"
|
902 |
|
903 |
-
#: settings.php:
|
904 |
msgid "%s allowed retries in %s minutes"
|
905 |
msgstr "%s попыток разрешено в течении %s минут"
|
906 |
|
907 |
-
#: settings.php:
|
908 |
msgid "Help"
|
909 |
msgstr "Помощь"
|
910 |
|
911 |
-
#: cerber-tools.php:43 dashboard.php:
|
912 |
msgid "Tools"
|
913 |
msgstr "Инструменты"
|
914 |
|
915 |
-
#: settings.php:
|
916 |
msgid "Users"
|
917 |
msgstr "Пользователи"
|
918 |
|
919 |
-
#: settings.php:
|
920 |
msgid "Hardening"
|
921 |
msgstr "Панцирь"
|
922 |
|
923 |
-
#: settings.php:
|
924 |
msgid "Main Settings"
|
925 |
msgstr "Главные настройки"
|
926 |
|
927 |
-
#: cerber-lab.php:
|
928 |
msgid "Know more"
|
929 |
msgstr "Узнать больше"
|
930 |
|
931 |
-
#: settings.php:
|
932 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
933 |
msgstr "Перед использованием reCAPTCHA вам нужно получить ключ сайта и секретный ключ на сайте Google"
|
934 |
|
935 |
-
#: settings.php:
|
936 |
msgid "These settings do not affect hosts from the "
|
937 |
msgstr "Эти настройки не применяются к адресам из"
|
938 |
|
939 |
-
#: settings.php:
|
940 |
msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
|
941 |
msgstr "Будте внимательны при установке этих параметров. Если вы забудете URL страницы авторизации вы не сможете войти в панель управления."
|
942 |
|
943 |
-
#: settings.php:
|
944 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
945 |
msgstr "Для использования этой настройки необходимо активировать Постоянные ссылки в настройках сайта."
|
946 |
|
947 |
-
#: settings.php:
|
948 |
msgid "Make your protection smarter!"
|
949 |
msgstr "Сделайте защиту от злоумышленников еще умнее"
|
950 |
|
951 |
-
#: settings.php:
|
952 |
msgid "Login form"
|
953 |
msgstr "Форма входа"
|
954 |
|
955 |
-
#: settings.php:
|
956 |
msgid "Lost password form"
|
957 |
msgstr "Форма восстановления пароля"
|
958 |
|
959 |
-
#: settings.php:
|
960 |
msgid "Secret key"
|
961 |
msgstr "Секретный ключ"
|
962 |
|
963 |
-
#: settings.php:
|
964 |
msgid "Site key"
|
965 |
msgstr "Ключ сайта"
|
966 |
|
967 |
-
#: settings.php:
|
968 |
msgid "reCAPTCHA settings"
|
969 |
msgstr "Настройки reCAPTCHA"
|
970 |
|
971 |
-
#: settings.php:
|
972 |
msgid "in minutes (leave empty to use default WP value)"
|
973 |
msgstr "В минутах (оставьте пустым для значения WP по умолчанию)"
|
974 |
|
975 |
-
#: settings.php:
|
976 |
msgid "User session expire"
|
977 |
msgstr "Длительность сессии пользователя"
|
978 |
|
979 |
-
#: settings.php:
|
980 |
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."
|
981 |
msgstr "Имена пользователей из этого списка не разрешены для входа или регистрации. Любой IP адрес пытающийся использовать эти имена будет автоматически заблокирован. Испольуйте запятую как разделитель."
|
982 |
|
983 |
-
#: settings.php:
|
984 |
msgid "Prohibited usernames"
|
985 |
msgstr "Запрещеные имена пользователей"
|
986 |
|
987 |
-
#: settings.php:
|
988 |
msgid "User related settings"
|
989 |
msgstr "Настройки пользователей"
|
990 |
|
991 |
-
#: settings.php:
|
992 |
msgid "Disable REST API"
|
993 |
msgstr "Отключить REST API"
|
994 |
|
995 |
-
#: settings.php:
|
996 |
msgid "Block access to the RSS, Atom and RDF feeds"
|
997 |
msgstr "Закрыть доступ к RSS, Atom и RDF лентам"
|
998 |
|
999 |
-
#: settings.php:
|
1000 |
msgid "Disable feeds"
|
1001 |
msgstr "Отключить ленты"
|
1002 |
|
1003 |
-
#: settings.php:
|
1004 |
msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
|
1005 |
msgstr "Закрыть доступ к функциям XML-RPC, включая уведомления и обратные ссылки"
|
1006 |
|
1007 |
-
#: settings.php:
|
1008 |
msgid "Disable XML-RPC"
|
1009 |
msgstr "Отключить XML-RPC"
|
1010 |
|
1011 |
-
#: settings.php:
|
1012 |
msgid "Stop user enumeration"
|
1013 |
msgstr "Заблокировать сбор имен"
|
1014 |
|
1015 |
-
#: settings.php:
|
1016 |
msgid "Hardening WordPress"
|
1017 |
msgstr "Усиление защиты WordPress"
|
1018 |
|
1019 |
-
#: settings.php:
|
1020 |
msgid "Write failed login attempts to the file"
|
1021 |
msgstr "Записывать попытки входа в файл"
|
1022 |
|
1023 |
-
#: settings.php:
|
1024 |
msgid "Use file"
|
1025 |
msgstr "Использовать файл"
|
1026 |
|
1027 |
-
#: settings.php:
|
1028 |
msgid "Retrieve extra WHOIS information for IP"
|
1029 |
msgstr "Получить дополнительную информацию об IP используя WHOIS"
|
1030 |
|
1031 |
-
#: settings.php:
|
1032 |
msgid "Drill down IP"
|
1033 |
msgstr "Изучать IP"
|
1034 |
|
1035 |
-
#: settings.php:
|
1036 |
msgid "days"
|
1037 |
msgstr "дней"
|
1038 |
|
1039 |
-
#: settings.php:
|
1040 |
msgid "Keep records for"
|
1041 |
msgstr "Хранить записи не более"
|
1042 |
|
1043 |
-
#: settings.php:
|
1044 |
msgid "notification letters allowed per hour (0 means unlimited)"
|
1045 |
msgstr "разрешенное число писем с уведомлениями в час (0 - без ограничений)"
|
1046 |
|
1047 |
-
#: settings.php:
|
1048 |
msgid "Notification limit"
|
1049 |
msgstr "Ограничение уведомлений"
|
1050 |
|
1051 |
-
#: settings.php:
|
1052 |
msgid "if empty, the admin email %s will be used"
|
1053 |
msgstr "Если пусто, то будет использован адрес администратора %s"
|
1054 |
|
1055 |
-
#: settings.php:
|
1056 |
msgid "Email Address"
|
1057 |
msgstr "Адрес email"
|
1058 |
|
1059 |
-
#: settings.php:
|
1060 |
msgid "Click to send test"
|
1061 |
msgstr "Нажмите, чтобы протестировать отправку"
|
1062 |
|
1063 |
-
#: settings.php:
|
1064 |
msgid "Send notification to admin email"
|
1065 |
msgstr "Отправить уведомление на адрес email администратора сайта"
|
1066 |
|
1067 |
-
#: settings.php:
|
1068 |
msgid "Duration"
|
1069 |
msgstr "Длительность"
|
1070 |
|
1071 |
-
#: settings.php:
|
1072 |
msgid "Threshold"
|
1073 |
msgstr "Порог"
|
1074 |
|
1075 |
-
#: settings.php:
|
1076 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
1077 |
msgstr "Заблокировать доступ к wp-login.php и возвращать HTTP 404 Страница не найдена"
|
1078 |
|
1079 |
-
#: settings.php:
|
1080 |
msgid "Disable wp-login.php"
|
1081 |
msgstr "Доступ к wp-login.php"
|
1082 |
|
1083 |
-
#: settings.php:
|
1084 |
msgid "must not overlap with the existing pages or posts slug"
|
1085 |
msgstr "не должно совпадать с URL существующих страниц или постов"
|
1086 |
|
1087 |
-
#: settings.php:
|
1088 |
msgid "Custom login URL"
|
1089 |
msgstr "Адрес страницы авторизации"
|
1090 |
|
1091 |
-
#: settings.php:
|
1092 |
msgid "Custom login page"
|
1093 |
msgstr "Смена URL страницы авторизации"
|
1094 |
|
1095 |
-
#: settings.php:
|
1096 |
msgid "Immediately block IP after any request to wp-login.php"
|
1097 |
msgstr "Блокировать IP при любом запросе wp-login.php"
|
1098 |
|
1099 |
-
#: settings.php:
|
1100 |
msgid "Request wp-login.php"
|
1101 |
msgstr "Запрос wp-login.php"
|
1102 |
|
1103 |
-
#: settings.php:
|
1104 |
msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
|
1105 |
msgstr "Отключить автоматическую переадресацию при запросе /wp-admin/ неавторизованным пользователем"
|
1106 |
|
1107 |
-
#: settings.php:
|
1108 |
msgid "Redirect dashboard requests"
|
1109 |
msgstr "Запросы к панели управления"
|
1110 |
|
1111 |
-
#: settings.php:
|
1112 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
1113 |
msgstr "Блокировать IP при попытке авторизации с логином несуществующего пользователя"
|
1114 |
|
1115 |
-
#: settings.php:
|
1116 |
msgid "Non-existent users"
|
1117 |
msgstr "Несуществующие пользователи"
|
1118 |
|
1119 |
-
#: settings.php:
|
1120 |
msgid "Always block entire subnet Class C of intruders IP"
|
1121 |
msgstr "Всегда блокировать подсеть класса С вместо IP адреса"
|
1122 |
|
1123 |
-
#: settings.php:
|
1124 |
msgid "Block subnet"
|
1125 |
msgstr "Блокировка подсети"
|
1126 |
|
1127 |
-
#: settings.php:
|
1128 |
msgid "Proactive security rules"
|
1129 |
msgstr "Проактивные правила безопасности"
|
1130 |
|
1131 |
-
#: dashboard.php:
|
1132 |
msgid "My site is behind a reverse proxy"
|
1133 |
msgstr "Мой сайт подключен к сети через прокси-сервер"
|
1134 |
|
1135 |
-
#: settings.php:
|
1136 |
msgid "Site connection"
|
1137 |
msgstr "Подключение к сети"
|
1138 |
|
1139 |
-
#: settings.php:
|
1140 |
msgid "Notifications"
|
1141 |
msgstr "Уведомления"
|
1142 |
|
1143 |
-
#: settings.php:
|
1144 |
msgid "Aggressive lockout"
|
1145 |
msgstr "Ужесточение"
|
1146 |
|
1147 |
-
#: settings.php:
|
1148 |
msgid "minutes"
|
1149 |
msgstr "минут"
|
1150 |
|
1151 |
-
#: settings.php:
|
1152 |
msgid "Lockout duration"
|
1153 |
msgstr "Длительность блокировки"
|
1154 |
|
1155 |
-
#: settings.php:
|
1156 |
msgid "Attempts"
|
1157 |
msgstr "Попытки"
|
1158 |
|
1159 |
-
#: settings.php:
|
1160 |
msgid "Limit login attempts"
|
1161 |
msgstr "Ограничение числа попыток авторизации"
|
1162 |
|
1163 |
-
#: dashboard.php:
|
1164 |
msgid "Abuse email:"
|
1165 |
msgstr "Адрес email для жалоб:"
|
1166 |
|
1167 |
-
#: common.php:
|
1168 |
msgid "Update to version %s of WP Cerber"
|
1169 |
msgstr "Обновить WP Cerber до версии %s"
|
1170 |
|
1171 |
-
#: common.php:
|
1172 |
msgid "New version is available"
|
1173 |
msgstr "Доступна новая версия"
|
1174 |
|
1175 |
-
#: dashboard.php:
|
1176 |
msgid "View Activity"
|
1177 |
msgstr "Что происходит?"
|
1178 |
|
1179 |
-
#: dashboard.php:
|
1180 |
msgid "Deactivate"
|
1181 |
msgstr "Деактивировать"
|
1182 |
|
1183 |
-
#: dashboard.php:
|
1184 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
1185 |
msgstr "Внимание! Режим Цитадель активен. Авторизация на сайте заблокирована."
|
1186 |
|
1187 |
-
#: dashboard.php:
|
1188 |
msgid "doesn't affect Custom login URL and Access Lists"
|
1189 |
msgstr "не затронет настройки URL страницы авторизации и списки доступа"
|
1190 |
|
1191 |
-
#: dashboard.php:
|
1192 |
msgid "Are you sure?"
|
1193 |
msgstr "Вы уверены?"
|
1194 |
|
1195 |
-
#: dashboard.php:
|
1196 |
msgid "Load default settings"
|
1197 |
msgstr "Загрузить настройки"
|
1198 |
|
1199 |
-
#: dashboard.php:
|
1200 |
msgid "You can easily load default recommended settings using button below"
|
1201 |
msgstr "Вы можете загрузить рекомендованные настройки с помощью всего одной кнопки"
|
1202 |
|
1203 |
-
#: dashboard.php:
|
1204 |
msgid "Confused about some settings?"
|
1205 |
msgstr "Сомневаетесь какие настройки оптимальны?"
|
1206 |
|
1207 |
-
#:
|
1208 |
msgid "Lockouts"
|
1209 |
msgstr "Блокировки"
|
1210 |
|
1211 |
-
#: dashboard.php:
|
1212 |
msgid "Citadel mode"
|
1213 |
msgstr "Режим Цитадель"
|
1214 |
|
1215 |
-
#: dashboard.php:
|
1216 |
msgid "entry"
|
1217 |
msgid_plural "entries"
|
1218 |
msgstr[0] "элемент"
|
1219 |
msgstr[1] "элемента"
|
1220 |
msgstr[2] "элементов"
|
1221 |
|
1222 |
-
#: dashboard.php:
|
1223 |
msgid "Last lockout"
|
1224 |
msgstr "Последняя блокировка"
|
1225 |
|
1226 |
-
#: dashboard.php:
|
1227 |
msgid "Lockouts at the moment"
|
1228 |
msgstr "Сейчас заблокировано"
|
1229 |
|
1230 |
-
#: dashboard.php:
|
1231 |
msgid "lockouts"
|
1232 |
msgstr "блокировок"
|
1233 |
|
1234 |
-
#: dashboard.php:
|
1235 |
msgid "view all"
|
1236 |
msgstr "просмотреть все"
|
1237 |
|
1238 |
-
#: dashboard.php:
|
1239 |
msgid "in 24 hours"
|
1240 |
msgstr "за 24 часа"
|
1241 |
|
1242 |
-
#: dashboard.php:
|
1243 |
msgid "failed attempts"
|
1244 |
msgstr "ошибок авторизации"
|
1245 |
|
1246 |
-
#: dashboard.php:
|
1247 |
msgid "disabled"
|
1248 |
msgstr "отключен"
|
1249 |
|
1250 |
-
#: dashboard.php:
|
1251 |
msgid "not active"
|
1252 |
msgstr "неактивен"
|
1253 |
|
1254 |
-
#: dashboard.php:
|
1255 |
msgid "deactivate"
|
1256 |
msgstr "деактивировать"
|
1257 |
|
1258 |
-
#: dashboard.php:
|
1259 |
msgid "active"
|
1260 |
msgstr "активен"
|
1261 |
|
1262 |
-
#: dashboard.php:
|
1263 |
msgid "Cerber Quick View"
|
1264 |
msgstr "Сводка от Cerber"
|
1265 |
|
1266 |
-
#: cerber-tools.php:
|
1267 |
msgid "Error while parsing file"
|
1268 |
msgstr "Возникла ошибка при обработке файла"
|
1269 |
|
1270 |
-
#: cerber-tools.php:
|
1271 |
msgid "Settings has imported successfully from"
|
1272 |
msgstr "Все настройки успешно загружены"
|
1273 |
|
1274 |
-
#: cerber-tools.php:
|
1275 |
msgid "Error while updating"
|
1276 |
msgstr "Возникла ошибка при обновлении"
|
1277 |
|
1278 |
-
#: cerber-tools.php:
|
1279 |
msgid "No file was uploaded or file is corrupted"
|
1280 |
msgstr "Файл не был загружен или имеет неверный формат"
|
1281 |
|
@@ -1307,12 +1470,12 @@ msgstr "Импорт настроек из файла"
|
|
1307 |
msgid "Download file"
|
1308 |
msgstr "Скачать файл"
|
1309 |
|
1310 |
-
#: cerber-tools.php:88 cerber-tools.php:97 cerber-tools.php:
|
1311 |
-
#:
|
1312 |
msgid "Access Lists"
|
1313 |
msgstr "Списки доступа"
|
1314 |
|
1315 |
-
#: cerber-tools.php:87 cerber-tools.php:96
|
1316 |
msgid "Settings"
|
1317 |
msgstr "Настройки"
|
1318 |
|
@@ -1328,208 +1491,205 @@ msgstr "Когда вы нажмете на кнопку, то получите
|
|
1328 |
msgid "Export settings to the file"
|
1329 |
msgstr "Экспорт настроек в файл"
|
1330 |
|
1331 |
-
#: dashboard.php:
|
1332 |
msgid "Never"
|
1333 |
msgstr "Никогда"
|
1334 |
|
1335 |
-
#:
|
1336 |
-
msgid "
|
1337 |
-
msgstr "
|
1338 |
-
|
1339 |
-
#: dashboard.php:954
|
1340 |
-
msgid "Last login"
|
1341 |
-
msgstr "Последний вход"
|
1342 |
|
1343 |
-
#: dashboard.php:
|
1344 |
-
msgid "
|
1345 |
-
msgstr "
|
1346 |
|
1347 |
-
#:
|
1348 |
-
msgid "
|
1349 |
-
msgstr "
|
1350 |
|
1351 |
-
#:
|
1352 |
-
msgid "
|
1353 |
-
msgstr "
|
1354 |
|
1355 |
-
#:
|
1356 |
-
msgid "
|
1357 |
-
msgstr "
|
1358 |
|
1359 |
-
#:
|
1360 |
-
msgid "
|
1361 |
-
msgstr "
|
1362 |
|
1363 |
-
#:
|
1364 |
-
msgid "
|
1365 |
-
msgstr "
|
1366 |
|
1367 |
-
#:
|
1368 |
-
|
1369 |
-
|
1370 |
-
msgstr "Активность"
|
1371 |
|
1372 |
-
#: dashboard.php:
|
1373 |
-
msgid "
|
1374 |
-
msgstr "
|
1375 |
|
1376 |
-
#:
|
1377 |
-
msgid "
|
1378 |
-
msgstr "
|
1379 |
|
1380 |
-
#:
|
1381 |
-
msgid "
|
1382 |
-
msgstr "
|
1383 |
|
1384 |
-
#:
|
1385 |
-
msgid "
|
1386 |
-
msgstr "
|
1387 |
|
1388 |
-
#:
|
1389 |
-
msgid "
|
1390 |
-
msgstr "
|
1391 |
|
1392 |
-
#:
|
1393 |
-
msgid "
|
1394 |
-
msgstr "
|
1395 |
|
1396 |
-
#:
|
1397 |
-
msgid "
|
1398 |
-
msgstr "
|
1399 |
|
1400 |
-
#:
|
1401 |
-
msgid "
|
1402 |
-
msgstr "
|
1403 |
|
1404 |
-
#: dashboard.php:
|
1405 |
-
msgid "
|
1406 |
-
msgstr "
|
1407 |
|
1408 |
-
#: dashboard.php:
|
1409 |
-
msgid "
|
1410 |
-
msgstr "
|
1411 |
|
1412 |
-
#: dashboard.php:
|
1413 |
-
msgid "
|
1414 |
-
msgstr "
|
1415 |
|
1416 |
-
#: dashboard.php:
|
1417 |
-
msgid "
|
1418 |
-
msgstr "
|
1419 |
|
1420 |
-
#: dashboard.php:
|
1421 |
-
msgid "
|
1422 |
-
msgstr "
|
1423 |
|
1424 |
-
#: dashboard.php:
|
1425 |
-
msgid "
|
1426 |
-
msgstr "
|
1427 |
|
1428 |
-
#: dashboard.php:
|
1429 |
-
|
1430 |
-
|
1431 |
-
msgstr "Белый список доступа по IP"
|
1432 |
|
1433 |
-
#: dashboard.php:
|
1434 |
-
msgid "
|
1435 |
-
msgstr "
|
1436 |
|
1437 |
#: dashboard.php:114
|
1438 |
msgid "To view activity, click on the IP"
|
1439 |
msgstr "Чтобы увидеть активность, нажмите на адрес IP"
|
1440 |
|
1441 |
-
#: dashboard.php:
|
1442 |
-
msgid "
|
1443 |
-
msgstr "
|
1444 |
|
1445 |
-
#: dashboard.php:
|
1446 |
-
|
1447 |
-
|
|
|
1448 |
|
1449 |
-
#: dashboard.php:
|
1450 |
-
msgid "
|
1451 |
-
msgstr "
|
1452 |
|
1453 |
-
#: dashboard.php:
|
1454 |
-
|
1455 |
-
|
|
|
1456 |
|
1457 |
-
#: dashboard.php:
|
1458 |
-
msgid "
|
1459 |
-
msgstr "
|
1460 |
|
1461 |
-
#: dashboard.php:
|
1462 |
-
msgid "
|
1463 |
-
msgstr "
|
1464 |
|
1465 |
-
#: dashboard.php:
|
1466 |
-
msgid "
|
1467 |
-
msgstr "
|
1468 |
|
1469 |
-
#: dashboard.php:
|
1470 |
-
msgid "
|
1471 |
-
msgstr "
|
1472 |
|
1473 |
-
#:
|
1474 |
-
msgid "
|
1475 |
-
msgstr "
|
1476 |
|
1477 |
-
#:
|
1478 |
-
msgid "
|
1479 |
-
msgstr "
|
1480 |
|
1481 |
-
#:
|
1482 |
-
msgid "
|
1483 |
-
msgstr "
|
1484 |
|
1485 |
-
#:
|
1486 |
-
msgid "
|
1487 |
-
msgstr "
|
1488 |
|
1489 |
-
#:
|
1490 |
-
msgid "
|
1491 |
-
msgstr "
|
1492 |
|
1493 |
-
#:
|
1494 |
-
msgid "
|
1495 |
-
msgstr "
|
1496 |
|
1497 |
-
#:
|
1498 |
-
msgid "
|
1499 |
-
msgstr "
|
1500 |
|
1501 |
-
#:
|
1502 |
-
|
1503 |
-
|
|
|
1504 |
|
1505 |
-
#:
|
1506 |
-
msgid "
|
1507 |
-
msgstr "
|
1508 |
|
1509 |
-
#:
|
1510 |
-
msgid "
|
1511 |
-
msgstr "
|
1512 |
|
1513 |
-
#:
|
1514 |
-
msgid "
|
1515 |
-
msgstr "
|
1516 |
|
1517 |
-
#:
|
1518 |
-
msgid "
|
1519 |
-
msgstr "
|
1520 |
|
1521 |
-
#:
|
1522 |
-
msgid "
|
1523 |
-
msgstr "
|
1524 |
|
1525 |
-
#:
|
1526 |
-
msgid "
|
1527 |
-
msgstr "
|
1528 |
|
1529 |
-
#:
|
1530 |
-
msgid "
|
1531 |
-
msgstr "
|
1532 |
|
1533 |
-
#:
|
1534 |
-
msgid "
|
1535 |
-
msgstr "
|
1 |
+
# Translation of Plugins - Cerber Security & Antispam - Stable (latest release) in Russian
|
2 |
+
# This file is distributed under the same license as the Plugins - Cerber Security & Antispam - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2018-01-22 18:48:25+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
"X-Generator: GlotPress/2.4.0-alpha\n"
|
11 |
"Language: ru\n"
|
12 |
+
"Project-Id-Version: Plugins - Cerber Security & Antispam - Stable (latest release)\n"
|
13 |
|
14 |
+
#: settings.php:311
|
15 |
+
msgid "milliseconds"
|
16 |
+
msgstr "миллисекунд"
|
17 |
+
|
18 |
+
#: settings.php:306
|
19 |
+
msgid "Page generation time threshold"
|
20 |
+
msgstr "Порог времени генерации страницы"
|
21 |
+
|
22 |
+
#: settings.php:299
|
23 |
+
msgid "Save request cookies"
|
24 |
+
msgstr "Сохранять куки запроса"
|
25 |
+
|
26 |
+
#: settings.php:293
|
27 |
+
msgid "Save $_SERVER"
|
28 |
+
msgstr "Сохранять $_SERVER"
|
29 |
+
|
30 |
+
#: settings.php:287
|
31 |
+
msgid "Save request headers"
|
32 |
+
msgstr "Сохранять заголовки запроса"
|
33 |
+
|
34 |
+
#: settings.php:276
|
35 |
+
msgid "Mask these form fields"
|
36 |
+
msgstr "Маскировать эти поля форм"
|
37 |
+
|
38 |
+
#: settings.php:271
|
39 |
+
msgid "Save request fields"
|
40 |
+
msgstr "Сохранять поля запросов"
|
41 |
+
|
42 |
+
#: settings.php:266
|
43 |
+
msgid "Ignore crawlers"
|
44 |
+
msgstr "Игнорировать веб-пауков"
|
45 |
+
|
46 |
+
#: settings.php:262
|
47 |
+
msgid "All traffic"
|
48 |
+
msgstr "Весь трафик"
|
49 |
+
|
50 |
+
#: settings.php:261
|
51 |
+
msgid "Smart"
|
52 |
+
msgstr "Умная выборка"
|
53 |
+
|
54 |
+
#: settings.php:260
|
55 |
+
msgid "Logging disabled"
|
56 |
+
msgstr "Журнал отключен"
|
57 |
+
|
58 |
+
#: settings.php:254
|
59 |
+
msgid "Logging mode"
|
60 |
+
msgstr "Режим журнала"
|
61 |
+
|
62 |
+
#: settings.php:253
|
63 |
+
msgid "Logging"
|
64 |
+
msgstr "Журналирование"
|
65 |
+
|
66 |
+
#: settings.php:247
|
67 |
+
msgid "Enable traffic inspection"
|
68 |
+
msgstr "Включить инспектирование трафика"
|
69 |
+
|
70 |
+
#: settings.php:246
|
71 |
+
msgid "Inspection"
|
72 |
+
msgstr "Инспектирование"
|
73 |
+
|
74 |
+
#: dashboard.php:3093
|
75 |
+
msgid "Advanced search"
|
76 |
+
msgstr "Улучшенный поиск"
|
77 |
+
|
78 |
+
#: dashboard.php:2861
|
79 |
+
msgid "Refresh"
|
80 |
+
msgstr "Обновить"
|
81 |
+
|
82 |
+
#: dashboard.php:2848
|
83 |
+
msgid "Longer than"
|
84 |
+
msgstr "Дольше чем"
|
85 |
+
|
86 |
+
#: dashboard.php:2844
|
87 |
+
msgid "XML-RPC"
|
88 |
+
msgstr "XML-RPC"
|
89 |
+
|
90 |
+
#: dashboard.php:2843
|
91 |
+
msgid "REST API"
|
92 |
+
msgstr "REST API"
|
93 |
+
|
94 |
+
#: dashboard.php:2842
|
95 |
+
msgid "Page Not Found"
|
96 |
+
msgstr "Страница не найдена"
|
97 |
+
|
98 |
+
#: dashboard.php:2841
|
99 |
+
msgid "Form submissions"
|
100 |
+
msgstr "Отправки форм"
|
101 |
+
|
102 |
+
#: dashboard.php:2840
|
103 |
+
msgid "Not logged in visitors"
|
104 |
+
msgstr "Неавторизованные посетители"
|
105 |
+
|
106 |
+
#: dashboard.php:2838
|
107 |
+
msgid "All requests"
|
108 |
+
msgstr "Все запросы"
|
109 |
+
|
110 |
+
#: dashboard.php:2830
|
111 |
+
msgid "No requests have been logged."
|
112 |
+
msgstr "В журнале нет данных о запросах."
|
113 |
+
|
114 |
+
#: dashboard.php:2813
|
115 |
+
msgid "User Agent"
|
116 |
+
msgstr "User Agent"
|
117 |
+
|
118 |
+
#: dashboard.php:2812
|
119 |
+
msgid "Host Info"
|
120 |
+
msgstr "Информация о хосте"
|
121 |
+
|
122 |
+
#: dashboard.php:2810
|
123 |
+
msgid "Request"
|
124 |
+
msgstr "Запрос"
|
125 |
+
|
126 |
+
#: dashboard.php:2498
|
127 |
+
msgid "Live traffic"
|
128 |
+
msgstr "Живой трафик"
|
129 |
+
|
130 |
+
#: dashboard.php:1227
|
131 |
+
msgid "Traffic"
|
132 |
+
msgstr "Трафик"
|
133 |
+
|
134 |
+
#: dashboard.php:1214
|
135 |
+
msgid "no connection"
|
136 |
+
msgstr "нет подключения"
|
137 |
+
|
138 |
+
#: dashboard.php:1210
|
139 |
+
msgid "enabled"
|
140 |
+
msgstr "включено"
|
141 |
+
|
142 |
+
#: dashboard.php:992 dashboard.php:1211 dashboard.php:2493
|
143 |
+
msgid "Traffic Inspector"
|
144 |
+
msgstr "Инспектор трафика"
|
145 |
+
|
146 |
+
#: dashboard.php:992
|
147 |
+
msgid "Cerber Traffic Inspector"
|
148 |
+
msgstr "Цербер-инспектор трафика"
|
149 |
+
|
150 |
+
#: dashboard.php:948
|
151 |
+
msgid "Last seen"
|
152 |
+
msgstr "Последний раз"
|
153 |
+
|
154 |
+
#: common.php:910
|
155 |
+
msgid "Not specified"
|
156 |
+
msgstr "Не указано"
|
157 |
+
|
158 |
+
#: common.php:649 common.php:695
|
159 |
+
msgid "Probing for vulnerable PHP code"
|
160 |
+
msgstr "Проверка на уязвимый PHP код"
|
161 |
+
|
162 |
+
#: common.php:101
|
163 |
+
msgid "Check for requests"
|
164 |
+
msgstr "Проверить запросы"
|
165 |
+
|
166 |
+
#: dashboard.php:212
|
167 |
+
msgid "You cannot add your IP address or network"
|
168 |
+
msgstr "Вы не можете добавить ваш IP адрес или сеть"
|
169 |
+
|
170 |
+
#: dashboard.php:171
|
171 |
+
msgid "Optional comment for this entry"
|
172 |
+
msgstr "Необязательный комментарий к этой записи"
|
173 |
+
|
174 |
+
#: dashboard.php:169
|
175 |
+
msgid "IP address, IPv4 address range or subnet"
|
176 |
+
msgstr "IP адрес, диапазон IPv4 адресов или адрес подсети"
|
177 |
+
|
178 |
+
#: wp-cerber.php:3326
|
179 |
msgid "Attempts to log in with non-existent username"
|
180 |
msgstr "Попытка войти с несуществующим именем пользователя"
|
181 |
|
182 |
+
#: wp-cerber.php:3300
|
183 |
msgid "Weekly Report"
|
184 |
msgstr "Недельный отчет"
|
185 |
|
186 |
+
#: wp-cerber.php:3222
|
187 |
msgid "Your last sign-in was %s from %s"
|
188 |
msgstr "Ваш последний вход был %s с %s"
|
189 |
|
190 |
+
#: settings.php:226
|
191 |
msgid "Enable reporting"
|
192 |
msgstr "Включить отчеты"
|
193 |
|
194 |
+
#: settings.php:238
|
195 |
msgid "if empty, email from notification settings will be used"
|
196 |
msgstr "если не задано, будет использован адрес из настроек уведомлений"
|
197 |
|
198 |
+
#: settings.php:163
|
199 |
msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
|
200 |
msgstr "Введите часть строки или пути запроса для исключения запроса из проверки движком. Один элемент на строку."
|
201 |
|
202 |
+
#: settings.php:139
|
203 |
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
204 |
msgstr "Для использования регулярных выражений оберните их в два прямых слеша."
|
205 |
|
206 |
+
#: settings.php:83
|
207 |
msgid "Display simple 404 page"
|
208 |
msgstr "Показать простую страницу 404"
|
209 |
|
210 |
+
#: settings.php:83
|
211 |
msgid "Use 404 template from the active theme"
|
212 |
msgstr "Использовать шаблон 404 из активной темы"
|
213 |
|
214 |
+
#: dashboard.php:2378
|
215 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
216 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
217 |
msgstr "Выбранным странам не разрешено %s, остальным странам разрешено"
|
218 |
|
219 |
+
#: dashboard.php:2375
|
220 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
221 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
222 |
msgstr "Выбранным странам разрешено %s, остальным странам - нет"
|
223 |
|
224 |
+
#: dashboard.php:2224
|
225 |
msgid "Not permitted for one country"
|
226 |
msgid_plural "Not permitted for %d countries"
|
227 |
msgstr[0] "Не разрешено в одной стране"
|
228 |
msgstr[1] "Не разрешено в %d странах"
|
229 |
msgstr[2] "Не разрешено в %d странах"
|
230 |
|
231 |
+
#: dashboard.php:383
|
232 |
msgid "Unable to send email to"
|
233 |
msgstr "Невозможно отправить email на"
|
234 |
|
235 |
+
#: dashboard.php:380
|
236 |
msgid "Email has been sent to"
|
237 |
msgstr "Сообщение было отправлено на электронный адрес"
|
238 |
|
239 |
+
#: cerber-news.php:147
|
240 |
msgid "Cool!"
|
241 |
msgstr "Отлично!"
|
242 |
|
243 |
+
#: wp-cerber.php:3312
|
244 |
msgid "Activity details"
|
245 |
msgstr "Подробно об активности"
|
246 |
|
247 |
+
#: wp-cerber.php:3199
|
248 |
msgid "Your license is valid until"
|
249 |
msgstr "Ваша лицензия действительна до"
|
250 |
|
251 |
+
#: wp-cerber.php:3195
|
252 |
msgid "Your login page:"
|
253 |
msgstr "Ваша страница входа:"
|
254 |
|
255 |
+
#: wp-cerber.php:3169
|
256 |
msgid "To change reporting settings visit"
|
257 |
msgstr "Для смены настроек отчетности зайдите"
|
258 |
|
259 |
+
#: wp-cerber.php:3166
|
260 |
msgid "Weekly report"
|
261 |
msgstr "Недельный отчет"
|
262 |
|
263 |
+
#: wp-cerber.php:645
|
264 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
265 |
msgstr ">>> Переводите WP Cerber? Получите PRO лицензию бесплатно, оставьте контакты здесь: https://wpcerber.com/contact/"
|
266 |
|
267 |
+
#: settings.php:753
|
268 |
msgid "Click to send now"
|
269 |
msgstr "Нажмите для отправки сейчас"
|
270 |
|
271 |
#. translators: preposition of time
|
272 |
+
#: settings.php:737
|
273 |
msgctxt "preposition of time"
|
274 |
msgid "at"
|
275 |
msgstr "в"
|
276 |
|
277 |
+
#: settings.php:727
|
278 |
msgid "Saturday"
|
279 |
msgstr "Суббота"
|
280 |
|
281 |
+
#: settings.php:726
|
282 |
msgid "Friday"
|
283 |
msgstr "Пятница"
|
284 |
|
285 |
+
#: settings.php:725
|
286 |
msgid "Thursday"
|
287 |
msgstr "Четверг"
|
288 |
|
289 |
+
#: settings.php:724
|
290 |
msgid "Wednesday"
|
291 |
msgstr "Среда"
|
292 |
|
293 |
+
#: settings.php:723
|
294 |
msgid "Tuesday"
|
295 |
msgstr "Вторник"
|
296 |
|
297 |
+
#: settings.php:722
|
298 |
msgid "Monday"
|
299 |
msgstr "Понедельник"
|
300 |
|
301 |
+
#: settings.php:721
|
302 |
msgid "Sunday"
|
303 |
msgstr "Воскресенье"
|
304 |
|
305 |
+
#: settings.php:225
|
306 |
msgid "Weekly reports"
|
307 |
msgstr "Недельные отчеты"
|
308 |
|
309 |
+
#: dashboard.php:1775
|
310 |
msgid "Main settings"
|
311 |
msgstr "Основные настройки"
|
312 |
|
313 |
+
#: settings.php:780 settings.php:781
|
314 |
msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
|
315 |
msgstr "Если вы используете плагин кеширования, вам нужно добавить новый URL входа в список исключений кеширования"
|
316 |
|
317 |
+
#: settings.php:502 settings.php:624
|
318 |
msgid "%s allowed registrations in %s minutes from one IP"
|
319 |
msgstr "%s разрешенных регистраций в %s минут с одного IP"
|
320 |
|
321 |
+
#: settings.php:167
|
322 |
msgid "Mark it as spam"
|
323 |
msgstr "Пометить как спам"
|
324 |
|
325 |
+
#: settings.php:167
|
326 |
msgid "Deny it completely"
|
327 |
msgstr "Полностью запретить"
|
328 |
|
329 |
+
#: settings.php:142
|
330 |
msgid "Sort users in dashboard"
|
331 |
msgstr "Сортировать пользователей в консоли"
|
332 |
|
333 |
+
#: settings.php:132
|
334 |
msgid "Registration limit"
|
335 |
msgstr "Предел регистраций"
|
336 |
|
337 |
+
#: settings.php:114
|
338 |
msgid "Allow REST API for logged in users"
|
339 |
msgstr "Разрешить REST API для авторизованных пользователей"
|
340 |
|
341 |
+
#: dashboard.php:2400
|
342 |
msgid "Use REST API"
|
343 |
msgstr "использование REST API"
|
344 |
|
345 |
+
#: dashboard.php:2399
|
346 |
msgid "Use XML-RPC"
|
347 |
msgstr "использование XML-RPC"
|
348 |
|
349 |
+
#: dashboard.php:2398
|
350 |
msgid "Register on the website"
|
351 |
msgstr "регистрация на сайте"
|
352 |
|
353 |
+
#: dashboard.php:2397
|
354 |
msgid "Log in to the website"
|
355 |
msgstr "авторизация на сайте"
|
356 |
|
357 |
+
#: dashboard.php:2396
|
358 |
msgid "Post comments"
|
359 |
msgstr "отправка комментариев"
|
360 |
|
361 |
+
#: dashboard.php:2395
|
362 |
msgid "Submit forms"
|
363 |
msgstr "отправка форм"
|
364 |
|
365 |
+
#: dashboard.php:2371
|
366 |
msgid "Click on a country name to add it to the list of selected countries"
|
367 |
msgstr "Нажмите на страну чтобы добавить ее в список выбранных"
|
368 |
|
369 |
+
#: dashboard.php:2288
|
370 |
msgid "Start typing here to find a country"
|
371 |
msgstr "Начните печатать тут чтобы найти страну"
|
372 |
|
373 |
+
#: dashboard.php:1487 wp-cerber.php:3150 wp-cerber.php:3843
|
374 |
msgid "Getting Started Guide"
|
375 |
msgstr "Руководство с чего начать"
|
376 |
|
377 |
+
#: dashboard.php:1415
|
378 |
msgid "in the last 24 hours"
|
379 |
msgstr "В последние 24 часа"
|
380 |
|
381 |
+
#: dashboard.php:1141
|
382 |
msgid "You"
|
383 |
msgstr "Вы"
|
384 |
|
385 |
+
#: dashboard.php:955 dashboard.php:1074
|
386 |
msgid "Registered"
|
387 |
msgstr "Зарегистрирован"
|
388 |
|
389 |
+
#: dashboard.php:1073
|
390 |
msgid "Failed login attempts"
|
391 |
msgstr "Неудачные попытки входа"
|
392 |
|
393 |
+
#: common.php:694
|
394 |
msgid "Multiple suspicious activities were detected"
|
395 |
msgstr "Обнаружена множественная подозрительная активность"
|
396 |
|
397 |
+
#: common.php:665
|
398 |
msgid "Multiple suspicious activities"
|
399 |
msgstr "Множественная подозрительная активность"
|
400 |
|
401 |
+
#: common.php:664
|
402 |
msgid "Limit reached"
|
403 |
msgstr "Предел достигнут"
|
404 |
|
405 |
+
#: settings.php:157
|
406 |
msgid "Query whitelist"
|
407 |
msgstr "Белый список запросов"
|
408 |
|
409 |
+
#: settings.php:121
|
410 |
msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
|
411 |
msgstr "Укажите пространства имен REST API разрешенных при отключении REST API, одно имя на строку."
|
412 |
|
413 |
+
#: settings.php:113
|
414 |
msgid "Block access to the WordPress REST API except the following"
|
415 |
msgstr "Блокировать доступ к REST API кроме следующего"
|
416 |
|
417 |
+
#: settings.php:110
|
418 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
419 |
msgstr "Блокировать доступ к страницам пользователя /?author=n и данным о пользователях через REST API"
|
420 |
|
421 |
+
#: dashboard.php:2444
|
422 |
msgid "Security rules have been updated"
|
423 |
msgstr "Правила безопасности обновлены"
|
424 |
|
425 |
+
#: dashboard.php:2232
|
426 |
msgid "No rule"
|
427 |
msgstr "Нет правила"
|
428 |
|
429 |
+
#: dashboard.php:2221
|
430 |
msgid "Permitted for one country"
|
431 |
msgid_plural "Permitted for %d countries"
|
432 |
msgstr[0] "Разрешается для одной страны"
|
433 |
msgstr[1] "Разрешается для %d стран"
|
434 |
msgstr[2] "Разрешается для %d стран"
|
435 |
|
436 |
+
#: dashboard.php:2158
|
437 |
msgid "Countries"
|
438 |
msgstr "Страны"
|
439 |
|
440 |
+
#: common.php:138
|
441 |
msgid "Spam form submissions denied"
|
442 |
msgstr "Заблокированы отправки форм спама"
|
443 |
|
444 |
+
#: dashboard.php:996 dashboard.php:2153
|
445 |
msgid "Security Rules"
|
446 |
msgstr "Правила безопасности"
|
447 |
|
448 |
+
#: dashboard.php:996
|
449 |
msgid "Cerber Security Rules"
|
450 |
msgstr "Правила безопасности Цербер"
|
451 |
|
452 |
+
#: dashboard.php:686
|
453 |
msgid "All events"
|
454 |
msgstr "Все события"
|
455 |
|
456 |
+
#: dashboard.php:95 dashboard.php:654
|
457 |
msgid "Country"
|
458 |
msgstr "Страна"
|
459 |
|
460 |
+
#: common.php:663
|
461 |
msgid "Blocked by country rule"
|
462 |
msgstr "Заблокирован по ограничению для страны"
|
463 |
|
464 |
+
#: common.php:662
|
465 |
msgid "Malicious activity detected"
|
466 |
msgstr "Обнаружена вредоносная активность"
|
467 |
|
468 |
+
#: common.php:657
|
469 |
msgid "Citadel mode is active"
|
470 |
msgstr "Режим цитадель активен"
|
471 |
|
472 |
+
#: common.php:656
|
473 |
msgid "Bot detected"
|
474 |
msgstr "Обнаружен бот"
|
475 |
|
476 |
+
#: common.php:652
|
477 |
msgid "XML-RPC request denied"
|
478 |
msgstr "Запрос XML-RPC заблокирован"
|
479 |
|
480 |
+
#: common.php:651
|
481 |
msgid "Request to REST API denied"
|
482 |
msgstr "Запрос к REST API заблокирован"
|
483 |
|
484 |
+
#: common.php:625
|
485 |
msgid "Comment denied"
|
486 |
msgstr "Комментарий заблокирован"
|
487 |
|
488 |
+
#: common.php:624
|
489 |
msgid "Form submission denied"
|
490 |
msgstr "Отправка формы заблокирована"
|
491 |
|
497 |
msgid "WP Cerber Security & Antispam"
|
498 |
msgstr "WP Cerber Security & Antispam"
|
499 |
|
500 |
+
#: settings.php:156
|
501 |
msgid "Disable bot detection engine for logged in users"
|
502 |
msgstr "Отключить определение ботов для авторизованных пользователей"
|
503 |
|
504 |
+
#: dashboard.php:2839 settings.php:156
|
505 |
msgid "Logged in users"
|
506 |
msgstr "Авторизованные пользователи"
|
507 |
|
508 |
+
#: settings.php:155
|
509 |
msgid "Use less restrictive policies (allow AJAX)"
|
510 |
msgstr "Использовать менее жесткую политику (разрешить AJAX)"
|
511 |
|
512 |
+
#: settings.php:155
|
513 |
msgid "Safe mode"
|
514 |
msgstr "Безопасный режим"
|
515 |
|
516 |
+
#: settings.php:154
|
517 |
msgid "Adjust antispam engine"
|
518 |
msgstr "Настроить антиспам-движок"
|
519 |
|
520 |
+
#: settings.php:152
|
521 |
msgid "Protect all forms on the website with bot detection engine"
|
522 |
msgstr "Защитить все формы на сайте через определение ботов"
|
523 |
|
524 |
+
#: settings.php:152
|
525 |
msgid "Other forms"
|
526 |
msgstr "Другие формы"
|
527 |
|
528 |
+
#: common.php:623
|
529 |
msgid "Spam form submission denied"
|
530 |
msgstr "Отправка формы со спамом заблокирована"
|
531 |
|
532 |
+
#: wp-cerber.php:1248
|
533 |
msgid "Sorry, human verification failed."
|
534 |
msgstr "Извините, проверка на человека не удалась."
|
535 |
|
536 |
+
#: settings.php:168
|
537 |
msgid "Move spam comments to trash after"
|
538 |
msgstr "Удалить спам комментарии в корзину после"
|
539 |
|
540 |
+
#: settings.php:168
|
541 |
msgid "Trash spam comments"
|
542 |
msgstr "Удалить спам комментарии в корзину"
|
543 |
|
544 |
+
#: settings.php:167
|
545 |
msgid "If a spam comment detected"
|
546 |
msgstr "Если обнаружен спам комментарий"
|
547 |
|
548 |
+
#: settings.php:166
|
549 |
msgid "Comment processing"
|
550 |
msgstr "Обработка комментария"
|
551 |
|
552 |
+
#: settings.php:151
|
553 |
msgid "Protect registration form with bot detection engine"
|
554 |
msgstr "Защита регистрации через определение ботов"
|
555 |
|
556 |
+
#: settings.php:150
|
557 |
msgid "Protect comment form with bot detection engine"
|
558 |
msgstr "Защита комментариев через определение ботов"
|
559 |
|
560 |
+
#: settings.php:149
|
561 |
msgid "Cerber antispam engine"
|
562 |
msgstr "Движок Цербер-антиспам"
|
563 |
|
564 |
+
#: dashboard.php:999 dashboard.php:1228 settings.php:185 wp-cerber.php:3850
|
565 |
msgid "Antispam"
|
566 |
msgstr "Аниспам"
|
567 |
|
568 |
+
#: dashboard.php:999
|
569 |
msgid "Cerber antispam settings"
|
570 |
msgstr "Настройка Цербер антиспам"
|
571 |
|
572 |
+
#: common.php:693
|
573 |
msgid "Bot activity is detected"
|
574 |
msgstr "Обнаружена активность ботов"
|
575 |
|
576 |
+
#: cerber-tools.php:336
|
577 |
msgid "Antispam and bot detection settings"
|
578 |
msgstr "Антиспам и настройки определения ботов"
|
579 |
|
585 |
msgid "Export & Import"
|
586 |
msgstr "Экспорт и Импорт"
|
587 |
|
588 |
+
#: wp-cerber.php:983 wp-cerber.php:989 wp-cerber.php:1005 wp-cerber.php:1012
|
589 |
msgid "You are not allowed to register."
|
590 |
msgstr "Вам не разрешено зарегистрироваться."
|
591 |
|
592 |
+
#: dashboard.php:1430
|
593 |
msgid "All suspicious activity"
|
594 |
msgstr "Вся подозрительная активность"
|
595 |
|
596 |
+
#: common.php:140
|
597 |
msgid "Lockouts occurred"
|
598 |
msgstr "Блокировок произошло"
|
599 |
|
600 |
+
#: common.php:139
|
601 |
msgid "Malicious IP addresses detected"
|
602 |
msgstr "Найдены вредоносные IP адреса"
|
603 |
|
604 |
+
#: common.php:137
|
605 |
msgid "Spam comments denied"
|
606 |
msgstr "Спам-комментарии отклонены"
|
607 |
|
608 |
+
#: common.php:134
|
609 |
msgid "Malicious activities mitigated"
|
610 |
msgstr "Вредоносная активность снижена"
|
611 |
|
612 |
+
#: dashboard.php:491 dashboard.php:656
|
613 |
msgid "Event"
|
614 |
msgstr "Событие"
|
615 |
|
616 |
+
#: common.php:648
|
617 |
msgid "Attempt to register denied"
|
618 |
msgstr "Попытка регистрации отклонена"
|
619 |
|
620 |
+
#: common.php:647
|
621 |
msgid "Attempt to log in denied"
|
622 |
msgstr "Попытка входа отклонена"
|
623 |
|
624 |
+
#: common.php:622
|
625 |
msgid "Spam comment denied"
|
626 |
msgstr "Спам коммнтарий отклонен"
|
627 |
|
628 |
+
#: settings.php:339
|
629 |
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."
|
630 |
msgstr "В режиме Цитадель никто не может войти кроме как с IP в белом списке. Активные сессии пользователей не будут затронуты."
|
631 |
|
632 |
+
#: settings.php:188
|
633 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
634 |
msgstr "Блокировать IP адрес на %s минут после %s неудачных попыток в течении %s минут"
|
635 |
|
636 |
+
#: settings.php:188
|
637 |
msgid "Limit attempts"
|
638 |
msgstr "Ограничение попыток"
|
639 |
|
640 |
+
#: settings.php:74
|
641 |
msgid "Apply limit login rules to IP addresses in the White IP Access List"
|
642 |
msgstr "Применить правила входа для IP адресов в белом списке"
|
643 |
|
644 |
+
#: common.php:692
|
|
|
|
|
|
|
|
|
645 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
646 |
msgstr "Достигнут предел проверки reCAPTCHA"
|
647 |
|
648 |
+
#: common.php:637
|
649 |
+
msgid "Password reset requested"
|
650 |
+
msgstr "Запрошен сброс пароля"
|
651 |
+
|
652 |
+
#: settings.php:174
|
653 |
msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
|
654 |
msgstr "(не включайте, если у вас нет или вы не вводили ключ сайта и секретный ключ для невидимой версии)"
|
655 |
|
656 |
+
#: settings.php:186
|
657 |
msgid "Disable reCAPTCHA for logged in users"
|
658 |
msgstr "Отключить reCAPTCHA для авторизованных пользователей"
|
659 |
|
660 |
+
#: settings.php:185
|
661 |
msgid "Enable reCAPTCHA for WordPress comment form"
|
662 |
msgstr "Включить reCAPTCHA в форме комментариев WordPress"
|
663 |
|
664 |
+
#: settings.php:150
|
665 |
msgid "Comment form"
|
666 |
msgstr "Форма комментариев"
|
667 |
|
668 |
+
#: settings.php:174
|
669 |
msgid "Enable invisible reCAPTCHA"
|
670 |
msgstr "Включить невидимую reCAPTCHA"
|
671 |
|
672 |
+
#: settings.php:174
|
673 |
msgid "Invisible reCAPTCHA"
|
674 |
msgstr "невидимая reCAPTCHA"
|
675 |
|
676 |
+
#: common.php:750
|
677 |
msgid "%s ago"
|
678 |
msgstr "%s назад"
|
679 |
|
680 |
+
#: settings.php:221
|
681 |
msgid "Not available"
|
682 |
msgstr "Недоступно"
|
683 |
|
684 |
+
#: settings.php:219
|
685 |
msgid "No devices found"
|
686 |
msgstr "Устройства не найдены"
|
687 |
|
688 |
+
#: settings.php:218
|
689 |
msgid "All connected devices"
|
690 |
msgstr "Все подключенные устройства"
|
691 |
|
692 |
+
#: settings.php:201 settings.php:233 settings.php:282
|
693 |
msgid "Use comma to specify multiple values"
|
694 |
msgstr "Используйте запятую для разделения множественных значений"
|
695 |
|
696 |
+
#: settings.php:194
|
697 |
msgid "Email notifications"
|
698 |
msgstr "Уведомления по эл.почте"
|
699 |
|
700 |
+
#: settings.php:83
|
701 |
msgid "Display 404 page"
|
702 |
msgstr "Показывать страницу 404"
|
703 |
|
704 |
+
#: settings.php:211
|
705 |
msgid "Push notifications"
|
706 |
msgstr "Push уведомления"
|
707 |
|
708 |
+
#: dashboard.php:695
|
709 |
+
msgid "Search for IP or username"
|
710 |
+
msgstr "Поиск IP или имени пользователя"
|
711 |
|
712 |
+
#: cerber-tools.php:266 dashboard.php:1685
|
713 |
+
msgid "Unsubscribe"
|
714 |
+
msgstr "Отменить подписку"
|
715 |
|
716 |
+
#: dashboard.php:491
|
717 |
msgid "User login"
|
718 |
msgstr "Имя пользователя"
|
719 |
|
720 |
+
#: dashboard.php:491
|
721 |
msgid "IP address"
|
722 |
msgstr "IP адрес"
|
723 |
|
724 |
+
#: dashboard.php:676
|
725 |
+
msgid "Export"
|
726 |
+
msgstr "Экспорт"
|
727 |
+
|
728 |
+
#: dashboard.php:491
|
729 |
+
msgid "User ID"
|
730 |
+
msgstr "ID пользователя"
|
731 |
|
732 |
+
#: dashboard.php:990
|
733 |
msgid "Cerber Dashboard"
|
734 |
msgstr "Консоль Cerber"
|
735 |
|
736 |
+
#: dashboard.php:695
|
737 |
msgid "Filter"
|
738 |
msgstr "Фильтр"
|
739 |
|
740 |
+
#: dashboard.php:1000
|
|
|
|
|
|
|
|
|
741 |
msgid "Cerber tools"
|
742 |
msgstr "Инструменты Cerber"
|
743 |
|
744 |
+
#: dashboard.php:1684
|
745 |
+
msgid "Subscribe"
|
746 |
+
msgstr "Подписаться"
|
|
|
|
|
|
|
|
|
747 |
|
748 |
+
#: dashboard.php:1713
|
749 |
msgid "You've subscribed"
|
750 |
msgstr "Вы подписались"
|
751 |
|
752 |
+
#: dashboard.php:1716
|
753 |
+
msgid "You've unsubscribed"
|
754 |
+
msgstr "Подписка отменена"
|
755 |
|
756 |
+
#: wp-cerber.php:3160 wp-cerber.php:3161
|
757 |
msgid "A new activity has been recorded"
|
758 |
msgstr "Отмечена новая активность"
|
759 |
|
760 |
+
#: settings.php:102
|
761 |
+
msgid "if empty, the default format %s will be used"
|
762 |
+
msgstr "Если пусто, будет использован формат по умолчанию %s"
|
763 |
+
|
764 |
+
#: wp-cerber.php:3626
|
765 |
msgid "User"
|
766 |
msgstr "Пользователь"
|
767 |
|
768 |
+
#: wp-cerber.php:3634
|
|
|
|
|
|
|
|
|
769 |
msgid "Search string"
|
770 |
msgstr "Строка поиска"
|
771 |
|
772 |
+
#: wp-cerber.php:3655
|
773 |
+
msgid "To unsubscribe click here"
|
774 |
+
msgstr "Для отмены подписки нажмите здесь"
|
775 |
+
|
776 |
+
#: settings.php:100
|
777 |
msgid "Preferences"
|
778 |
msgstr "Настройки"
|
779 |
|
780 |
+
#: settings.php:102
|
781 |
msgid "Date format"
|
782 |
msgstr "Формат даты"
|
783 |
|
789 |
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>."
|
790 |
msgstr "Защищает сайт от атак перебора, ботов, хакеров. Антиспам защита с движком Cerber антиспам и reCAPTCHA. Всесторонний контроль активности пользователей. Ограничение входа по IP адресам. Ограничение попыток входа. Узнайте больше на сайте <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
791 |
|
792 |
+
#: dashboard.php:990 dashboard.php:1225 dashboard.php:1774 settings.php:370
|
793 |
msgid "Dashboard"
|
794 |
msgstr "Консоль"
|
795 |
|
796 |
+
#: settings.php:183
|
797 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
798 |
msgstr "Включить reCAPTCHA для формы входа WooCommerce"
|
799 |
|
800 |
+
#: settings.php:182
|
801 |
msgid "Enable reCAPTCHA for WordPress login form"
|
802 |
msgstr "Включить reCAPTCHA для формы входа WordPress"
|
803 |
|
804 |
+
#: settings.php:180
|
805 |
msgid "Enable reCAPTCHA for WooCommerce lost password form"
|
806 |
msgstr "Включить reCAPTCHA для формы восстановления пароля WooCommerce"
|
807 |
|
808 |
+
#: settings.php:179
|
809 |
msgid "Enable reCAPTCHA for WordPress lost password form"
|
810 |
msgstr "Включить reCAPTCHA для формы восстановления пароля WordPress"
|
811 |
|
812 |
+
#: settings.php:177
|
813 |
msgid "Enable reCAPTCHA for WooCommerce registration form"
|
814 |
msgstr "Включить reCAPTCHA для формы регистрации WooCommerce"
|
815 |
|
816 |
+
#: settings.php:176
|
817 |
msgid "Enable reCAPTCHA for WordPress registration form"
|
818 |
msgstr "Включить reCAPTCHA для формы регистрации WordPress"
|
819 |
|
820 |
+
#: settings.php:151 settings.php:176
|
821 |
msgid "Registration form"
|
822 |
msgstr "Форма регистрации"
|
823 |
|
824 |
+
#: settings.php:97
|
825 |
msgid "Cerber Lab protocol"
|
826 |
msgstr "протокол Cerber Lab"
|
827 |
|
828 |
+
#: settings.php:96
|
829 |
msgid "Send malicious IP addresses to the Cerber Lab"
|
830 |
msgstr "Посылать вредоносные IP адреса в Cerber Lab"
|
831 |
|
832 |
+
#: settings.php:96
|
833 |
msgid "Cerber Lab connection"
|
834 |
msgstr "Подключение Cerber Lab"
|
835 |
|
836 |
+
#: dashboard.php:1452
|
837 |
msgid "Recently locked out IP addresses"
|
838 |
msgstr "Недавно заблокированые IP адреса"
|
839 |
|
840 |
+
#: dashboard.php:1421 dashboard.php:1451
|
841 |
msgid "View all"
|
842 |
msgstr "Просмотреть все"
|
843 |
|
844 |
+
#: dashboard.php:988 settings.php:365
|
845 |
msgid "WP Cerber Security"
|
846 |
msgstr "WP Cerber Security"
|
847 |
|
848 |
+
#: dashboard.php:884
|
849 |
msgid "Add network to the Black List"
|
850 |
msgstr "Добавить сеть в черный список"
|
851 |
|
852 |
+
#: dashboard.php:870
|
853 |
msgid "Network:"
|
854 |
msgstr "Сеть:"
|
855 |
|
856 |
+
#: dashboard.php:196 dashboard.php:208
|
857 |
msgid "Incorrect IP address or IP range"
|
858 |
msgstr "Неверный IP адрес или диапазон адресов"
|
859 |
|
860 |
+
#: common.php:641
|
861 |
msgid "Request to the Google reCAPTCHA service failed"
|
862 |
msgstr "Запрос к сервису Google reCAPTCHA не удался"
|
863 |
|
864 |
+
#: cerber-lab.php:696
|
865 |
msgid "NO, maybe later"
|
866 |
msgstr "НЕТ, возможно позже"
|
867 |
|
868 |
+
#: cerber-lab.php:695
|
869 |
msgid "OK, nail them all"
|
870 |
msgstr "ОК, прибьем их всех"
|
871 |
|
872 |
+
#: cerber-lab.php:694
|
873 |
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."
|
874 |
msgstr "Разрешить WP Cerber посылать заблокированные IP адреса в Cerber Lab. Это помогает команде плагина разрабатывать новые алгоритмы для WP Cerber, которые будут защищать WordPress против новых угроз и ботнетов появляюшихся каждый день. Вы всегда можете отключить отсылку в настройках плагина, в любой момент."
|
875 |
|
876 |
+
#: cerber-lab.php:693
|
877 |
msgid "Want to make WP Cerber even more powerful?"
|
878 |
msgstr "Хотите сделать WP Cerber еще мощнее ?"
|
879 |
|
880 |
+
#. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security & Antispam 6.0) #-#-#-#-#
|
|
|
881 |
#. Plugin URI of the plugin/theme
|
882 |
+
#. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security & Antispam 6.0) #-#-#-#-#
|
|
|
883 |
#. Author URI of the plugin/theme
|
884 |
msgid "https://wpcerber.com"
|
885 |
msgstr "https://wpcerber.com"
|
886 |
|
887 |
+
#: wp-cerber.php:3853
|
888 |
msgid "Import settings"
|
889 |
msgstr "Импорт настроек"
|
890 |
|
891 |
+
#: wp-cerber.php:3841
|
892 |
msgid "Your IP address is added to the"
|
893 |
msgstr "Ваш IP адрес добавлен к"
|
894 |
|
895 |
+
#: wp-cerber.php:3824
|
896 |
msgid "Can't activate WP Cerber due to a database error."
|
897 |
msgstr "Невозможно активировать плагин WP Cerber из-за ошибки в базе данных."
|
898 |
|
899 |
+
#: wp-cerber.php:3815
|
900 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
901 |
msgstr "WP Cerber требует WordPress версии %s или выше. У вас версия"
|
902 |
|
903 |
+
#: wp-cerber.php:3811
|
904 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
905 |
msgstr "WP Cerber требует PHP версии %s или выше. У вас версия"
|
906 |
|
907 |
+
#: wp-cerber.php:3202
|
908 |
msgid "This message was sent by"
|
909 |
msgstr "Это сообщение было отправлено"
|
910 |
|
911 |
+
#: wp-cerber.php:3156
|
912 |
msgid "New Custom login URL"
|
913 |
msgstr "Новый URL для входа на сайт"
|
914 |
|
915 |
+
#: wp-cerber.php:3148 wp-cerber.php:3840
|
916 |
msgid "WP Cerber is now active and has started protecting your site"
|
917 |
msgstr "WP Cerber активен и начал защищать ваш сайт"
|
918 |
|
919 |
+
#: wp-cerber.php:3147
|
920 |
msgid "The WP Cerber security plugin is now active"
|
921 |
msgstr "WP Cerber плагин безопасности активен"
|
922 |
|
923 |
+
#: wp-cerber.php:3143
|
924 |
msgid "From country"
|
925 |
msgstr "Из страны"
|
926 |
|
927 |
+
#: wp-cerber.php:3140
|
928 |
msgid "From IP address"
|
929 |
msgstr "С IP адреса"
|
930 |
|
931 |
+
#: wp-cerber.php:3139
|
932 |
msgid "By user"
|
933 |
msgstr "По пользователю"
|
934 |
|
935 |
+
#: wp-cerber.php:3133
|
936 |
msgid "Not logged in"
|
937 |
msgstr "Нет авторизации"
|
938 |
|
939 |
+
#: wp-cerber.php:3130 wp-cerber.php:3131
|
940 |
msgid "The WP Cerber security plugin has been deactivated"
|
941 |
msgstr "WP Cerber плагин деактивирован"
|
942 |
|
943 |
+
#: wp-cerber.php:3127 wp-cerber.php:3138
|
944 |
msgid "Website"
|
945 |
msgstr "Сайт"
|
946 |
|
947 |
+
#: wp-cerber.php:3124
|
948 |
msgid "Hi!"
|
949 |
msgstr "Привет!"
|
950 |
|
951 |
+
#: wp-cerber.php:3123 wp-cerber.php:3125
|
952 |
msgid "A new version of WP Cerber is available to install"
|
953 |
msgstr "Доступна новая версия WP Cerber!"
|
954 |
|
955 |
+
#: wp-cerber.php:3120
|
956 |
msgid "View lockouts in dashboard"
|
957 |
msgstr "Просмотреть список заблокированных IP"
|
958 |
|
959 |
+
#: wp-cerber.php:3119
|
960 |
msgid "View activity for this IP"
|
961 |
msgstr "Посмотреть активность для этого IP"
|
962 |
|
963 |
+
#: wp-cerber.php:3117
|
964 |
msgid "Last lockout was added: %s for IP %s"
|
965 |
msgstr "Последняя блокировка была добавлена %s для IP %s"
|
966 |
|
967 |
+
#: wp-cerber.php:3116
|
968 |
msgid "Number of active lockouts"
|
969 |
msgstr "Число активных блокировок на данный момент"
|
970 |
|
971 |
+
#: wp-cerber.php:3114
|
972 |
msgid "Number of lockouts is increasing"
|
973 |
msgstr "Число блокировок увеличилось"
|
974 |
|
975 |
+
#: wp-cerber.php:3111
|
976 |
msgid "unspecified"
|
977 |
msgstr "неуказано"
|
978 |
|
979 |
+
#: wp-cerber.php:3086 wp-cerber.php:3654
|
980 |
msgid "View activity in dashboard"
|
981 |
msgstr "Просмотреть журнал активности"
|
982 |
|
983 |
+
#: wp-cerber.php:3085
|
984 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
985 |
msgstr "Последняя неудачная попытка была в %s с IP адреса %s с логином %s."
|
986 |
|
987 |
+
#: wp-cerber.php:3084
|
988 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
989 |
msgstr "Режим Цитадель активирован после %d неудачных попыток за %d минут."
|
990 |
|
991 |
+
#: wp-cerber.php:3082
|
992 |
msgid "Citadel mode is activated"
|
993 |
msgstr "Активирован режим Цитадель"
|
994 |
|
995 |
+
#: wp-cerber.php:3060
|
996 |
msgid "WP Cerber notify"
|
997 |
msgstr "Уведомление WP Cerber"
|
998 |
|
999 |
+
#: common.php:688
|
1000 |
msgid "Limit on login attempts is reached"
|
1001 |
msgstr "Количество попыток исчерпано"
|
1002 |
|
1003 |
+
#: common.php:689
|
1004 |
msgid "Attempt to access"
|
1005 |
msgstr "Попытка доступа к"
|
1006 |
|
1007 |
+
#: wp-cerber.php:999
|
1008 |
msgid "Username is not allowed. Please choose another one."
|
1009 |
msgstr "Имя пользователя недопустимо. Выберите другое."
|
1010 |
|
1011 |
+
#: wp-cerber.php:778
|
1012 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
1013 |
msgstr "<strong>ОШИБКА</strong>: Пароль введенный для пользователя %s is некорректен."
|
1014 |
|
1015 |
+
#: wp-cerber.php:574
|
1016 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
1017 |
msgstr "Антибот проверка неудачна. Пожалуйста тыкните в квадратную отметку блока reCAPTCHA ниже"
|
1018 |
|
1019 |
+
#: common.php:194 common.php:251 common.php:255 settings.php:828
|
1020 |
+
#: wp-cerber.php:545 wp-cerber.php:557 wp-cerber.php:564 wp-cerber.php:766
|
1021 |
+
#: wp-cerber.php:982 wp-cerber.php:988 wp-cerber.php:993 wp-cerber.php:998
|
1022 |
+
#: wp-cerber.php:1004 wp-cerber.php:1011 wp-cerber.php:1111 wp-cerber.php:1248
|
1023 |
msgid "ERROR:"
|
1024 |
msgstr "ОШИБКА:"
|
1025 |
|
1026 |
+
#: wp-cerber.php:262
|
1027 |
msgid "You have only one attempt remaining."
|
1028 |
msgid_plural "You have %d attempts remaining."
|
1029 |
msgstr[0] "У вас есть только одна попытка для входа"
|
1030 |
msgstr[1] "У вас осталось %d попытки для входа."
|
1031 |
msgstr[2] "У вас осталось %d попыток для входа."
|
1032 |
|
1033 |
+
#: wp-cerber.php:243
|
1034 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
1035 |
msgstr "Вход невозможен. Слишком много ошибочных попыток. Попробуйте войти через %d минут."
|
1036 |
|
1037 |
+
#: wp-cerber.php:237
|
1038 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
1039 |
msgstr "Вход на сайт невозможен. Обратитесь к администратору сайта."
|
1040 |
|
1041 |
+
#: common.php:687 common.php:966 dashboard.php:313 dashboard.php:2572
|
1042 |
+
#: whois.php:221 whois.php:252
|
1043 |
msgid "Unknown"
|
1044 |
msgstr "Неизвестен"
|
1045 |
|
1046 |
+
#: settings.php:859 settings.php:871
|
1047 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
1048 |
msgstr "<strong>ОШИБКА</strong>: Введите действительный адрес эл.почты."
|
1049 |
|
1050 |
+
#: settings.php:778 settings.php:779
|
1051 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
1052 |
msgstr "Внимание! Вы изменили URL страницы авторизации. Новый адрес"
|
1053 |
|
1054 |
+
#: settings.php:519 settings.php:641
|
1055 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
1056 |
msgstr "Активировать после %s неудачных авторизаций за последние %s минут"
|
1057 |
|
1058 |
+
#: settings.php:514 settings.php:636
|
1059 |
msgid "Notify admin if the number of active lockouts above"
|
1060 |
msgstr "Уведомить администратора, если число заблокированных IP более"
|
1061 |
|
1062 |
+
#: settings.php:507 settings.php:629
|
1063 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
1064 |
msgstr "Увеличить длительность блокировки до %s часов после %s блокировок в течение последних %s часов"
|
1065 |
|
1066 |
+
#: settings.php:497 settings.php:619
|
1067 |
msgid "%s allowed retries in %s minutes"
|
1068 |
msgstr "%s попыток разрешено в течении %s минут"
|
1069 |
|
1070 |
+
#: settings.php:390
|
1071 |
msgid "Help"
|
1072 |
msgstr "Помощь"
|
1073 |
|
1074 |
+
#: cerber-tools.php:43 dashboard.php:1000
|
1075 |
msgid "Tools"
|
1076 |
msgstr "Инструменты"
|
1077 |
|
1078 |
+
#: settings.php:385
|
1079 |
msgid "Users"
|
1080 |
msgstr "Пользователи"
|
1081 |
|
1082 |
+
#: settings.php:383 wp-cerber.php:3851
|
1083 |
msgid "Hardening"
|
1084 |
msgstr "Панцирь"
|
1085 |
|
1086 |
+
#: settings.php:378 wp-cerber.php:3848
|
1087 |
msgid "Main Settings"
|
1088 |
msgstr "Главные настройки"
|
1089 |
|
1090 |
+
#: cerber-lab.php:697 settings.php:346
|
1091 |
msgid "Know more"
|
1092 |
msgstr "Узнать больше"
|
1093 |
|
1094 |
+
#: settings.php:345
|
1095 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
1096 |
msgstr "Перед использованием reCAPTCHA вам нужно получить ключ сайта и секретный ключ на сайте Google"
|
1097 |
|
1098 |
+
#: settings.php:342
|
1099 |
msgid "These settings do not affect hosts from the "
|
1100 |
msgstr "Эти настройки не применяются к адресам из"
|
1101 |
|
1102 |
+
#: settings.php:335
|
1103 |
msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
|
1104 |
msgstr "Будте внимательны при установке этих параметров. Если вы забудете URL страницы авторизации вы не сможете войти в панель управления."
|
1105 |
|
1106 |
+
#: settings.php:332
|
1107 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
1108 |
msgstr "Для использования этой настройки необходимо активировать Постоянные ссылки в настройках сайта."
|
1109 |
|
1110 |
+
#: settings.php:328
|
1111 |
msgid "Make your protection smarter!"
|
1112 |
msgstr "Сделайте защиту от злоумышленников еще умнее"
|
1113 |
|
1114 |
+
#: settings.php:182
|
1115 |
msgid "Login form"
|
1116 |
msgstr "Форма входа"
|
1117 |
|
1118 |
+
#: settings.php:179
|
1119 |
msgid "Lost password form"
|
1120 |
msgstr "Форма восстановления пароля"
|
1121 |
|
1122 |
+
#: settings.php:173
|
1123 |
msgid "Secret key"
|
1124 |
msgstr "Секретный ключ"
|
1125 |
|
1126 |
+
#: settings.php:172
|
1127 |
msgid "Site key"
|
1128 |
msgstr "Ключ сайта"
|
1129 |
|
1130 |
+
#: settings.php:171
|
1131 |
msgid "reCAPTCHA settings"
|
1132 |
msgstr "Настройки reCAPTCHA"
|
1133 |
|
1134 |
+
#: settings.php:141
|
1135 |
msgid "in minutes (leave empty to use default WP value)"
|
1136 |
msgstr "В минутах (оставьте пустым для значения WP по умолчанию)"
|
1137 |
|
1138 |
+
#: settings.php:141
|
1139 |
msgid "User session expire"
|
1140 |
msgstr "Длительность сессии пользователя"
|
1141 |
|
1142 |
+
#: settings.php:139
|
1143 |
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."
|
1144 |
msgstr "Имена пользователей из этого списка не разрешены для входа или регистрации. Любой IP адрес пытающийся использовать эти имена будет автоматически заблокирован. Испольуйте запятую как разделитель."
|
1145 |
|
1146 |
+
#: settings.php:133
|
1147 |
msgid "Prohibited usernames"
|
1148 |
msgstr "Запрещеные имена пользователей"
|
1149 |
|
1150 |
+
#: settings.php:131
|
1151 |
msgid "User related settings"
|
1152 |
msgstr "Настройки пользователей"
|
1153 |
|
1154 |
+
#: settings.php:113
|
1155 |
msgid "Disable REST API"
|
1156 |
msgstr "Отключить REST API"
|
1157 |
|
1158 |
+
#: settings.php:112
|
1159 |
msgid "Block access to the RSS, Atom and RDF feeds"
|
1160 |
msgstr "Закрыть доступ к RSS, Atom и RDF лентам"
|
1161 |
|
1162 |
+
#: settings.php:112
|
1163 |
msgid "Disable feeds"
|
1164 |
msgstr "Отключить ленты"
|
1165 |
|
1166 |
+
#: settings.php:111
|
1167 |
msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
|
1168 |
msgstr "Закрыть доступ к функциям XML-RPC, включая уведомления и обратные ссылки"
|
1169 |
|
1170 |
+
#: settings.php:111
|
1171 |
msgid "Disable XML-RPC"
|
1172 |
msgstr "Отключить XML-RPC"
|
1173 |
|
1174 |
+
#: settings.php:110
|
1175 |
msgid "Stop user enumeration"
|
1176 |
msgstr "Заблокировать сбор имен"
|
1177 |
|
1178 |
+
#: settings.php:109
|
1179 |
msgid "Hardening WordPress"
|
1180 |
msgstr "Усиление защиты WordPress"
|
1181 |
|
1182 |
+
#: settings.php:98
|
1183 |
msgid "Write failed login attempts to the file"
|
1184 |
msgstr "Записывать попытки входа в файл"
|
1185 |
|
1186 |
+
#: settings.php:98
|
1187 |
msgid "Use file"
|
1188 |
msgstr "Использовать файл"
|
1189 |
|
1190 |
+
#: settings.php:101
|
1191 |
msgid "Retrieve extra WHOIS information for IP"
|
1192 |
msgstr "Получить дополнительную информацию об IP используя WHOIS"
|
1193 |
|
1194 |
+
#: settings.php:101
|
1195 |
msgid "Drill down IP"
|
1196 |
msgstr "Изучать IP"
|
1197 |
|
1198 |
+
#: settings.php:95 settings.php:168 settings.php:318
|
1199 |
msgid "days"
|
1200 |
msgstr "дней"
|
1201 |
|
1202 |
+
#: settings.php:95 settings.php:314
|
1203 |
msgid "Keep records for"
|
1204 |
msgstr "Хранить записи не более"
|
1205 |
|
1206 |
+
#: settings.php:209
|
1207 |
msgid "notification letters allowed per hour (0 means unlimited)"
|
1208 |
msgstr "разрешенное число писем с уведомлениями в час (0 - без ограничений)"
|
1209 |
|
1210 |
+
#: settings.php:209
|
1211 |
msgid "Notification limit"
|
1212 |
msgstr "Ограничение уведомлений"
|
1213 |
|
1214 |
+
#: settings.php:206
|
1215 |
msgid "if empty, the admin email %s will be used"
|
1216 |
msgstr "Если пусто, то будет использован адрес администратора %s"
|
1217 |
|
1218 |
+
#: settings.php:197 settings.php:228
|
1219 |
msgid "Email Address"
|
1220 |
msgstr "Адрес email"
|
1221 |
|
1222 |
+
#: settings.php:92 settings.php:516 settings.php:638
|
1223 |
msgid "Click to send test"
|
1224 |
msgstr "Нажмите, чтобы протестировать отправку"
|
1225 |
|
1226 |
+
#: settings.php:92
|
1227 |
msgid "Send notification to admin email"
|
1228 |
msgstr "Отправить уведомление на адрес email администратора сайта"
|
1229 |
|
1230 |
+
#: settings.php:91
|
1231 |
msgid "Duration"
|
1232 |
msgstr "Длительность"
|
1233 |
|
1234 |
+
#: settings.php:90
|
1235 |
msgid "Threshold"
|
1236 |
msgstr "Порог"
|
1237 |
|
1238 |
+
#: settings.php:87
|
1239 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
1240 |
msgstr "Заблокировать доступ к wp-login.php и возвращать HTTP 404 Страница не найдена"
|
1241 |
|
1242 |
+
#: settings.php:87
|
1243 |
msgid "Disable wp-login.php"
|
1244 |
msgstr "Доступ к wp-login.php"
|
1245 |
|
1246 |
+
#: settings.php:86
|
1247 |
msgid "must not overlap with the existing pages or posts slug"
|
1248 |
msgstr "не должно совпадать с URL существующих страниц или постов"
|
1249 |
|
1250 |
+
#: settings.php:86
|
1251 |
msgid "Custom login URL"
|
1252 |
msgstr "Адрес страницы авторизации"
|
1253 |
|
1254 |
+
#: settings.php:85
|
1255 |
msgid "Custom login page"
|
1256 |
msgstr "Смена URL страницы авторизации"
|
1257 |
|
1258 |
+
#: settings.php:82
|
1259 |
msgid "Immediately block IP after any request to wp-login.php"
|
1260 |
msgstr "Блокировать IP при любом запросе wp-login.php"
|
1261 |
|
1262 |
+
#: settings.php:82
|
1263 |
msgid "Request wp-login.php"
|
1264 |
msgstr "Запрос wp-login.php"
|
1265 |
|
1266 |
+
#: settings.php:81
|
1267 |
msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
|
1268 |
msgstr "Отключить автоматическую переадресацию при запросе /wp-admin/ неавторизованным пользователем"
|
1269 |
|
1270 |
+
#: settings.php:81
|
1271 |
msgid "Redirect dashboard requests"
|
1272 |
msgstr "Запросы к панели управления"
|
1273 |
|
1274 |
+
#: settings.php:80
|
1275 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
1276 |
msgstr "Блокировать IP при попытке авторизации с логином несуществующего пользователя"
|
1277 |
|
1278 |
+
#: settings.php:80
|
1279 |
msgid "Non-existent users"
|
1280 |
msgstr "Несуществующие пользователи"
|
1281 |
|
1282 |
+
#: settings.php:79
|
1283 |
msgid "Always block entire subnet Class C of intruders IP"
|
1284 |
msgstr "Всегда блокировать подсеть класса С вместо IP адреса"
|
1285 |
|
1286 |
+
#: settings.php:79
|
1287 |
msgid "Block subnet"
|
1288 |
msgstr "Блокировка подсети"
|
1289 |
|
1290 |
+
#: settings.php:78
|
1291 |
msgid "Proactive security rules"
|
1292 |
msgstr "Проактивные правила безопасности"
|
1293 |
|
1294 |
+
#: dashboard.php:1283 settings.php:76
|
1295 |
msgid "My site is behind a reverse proxy"
|
1296 |
msgstr "Мой сайт подключен к сети через прокси-сервер"
|
1297 |
|
1298 |
+
#: settings.php:76
|
1299 |
msgid "Site connection"
|
1300 |
msgstr "Подключение к сети"
|
1301 |
|
1302 |
+
#: settings.php:75 settings.php:92 settings.php:388 wp-cerber.php:3852
|
1303 |
msgid "Notifications"
|
1304 |
msgstr "Уведомления"
|
1305 |
|
1306 |
+
#: settings.php:73
|
1307 |
msgid "Aggressive lockout"
|
1308 |
msgstr "Ужесточение"
|
1309 |
|
1310 |
+
#: settings.php:72 settings.php:91
|
1311 |
msgid "minutes"
|
1312 |
msgstr "минут"
|
1313 |
|
1314 |
+
#: settings.php:72
|
1315 |
msgid "Lockout duration"
|
1316 |
msgstr "Длительность блокировки"
|
1317 |
|
1318 |
+
#: settings.php:71
|
1319 |
msgid "Attempts"
|
1320 |
msgstr "Попытки"
|
1321 |
|
1322 |
+
#: settings.php:70
|
1323 |
msgid "Limit login attempts"
|
1324 |
msgstr "Ограничение числа попыток авторизации"
|
1325 |
|
1326 |
+
#: dashboard.php:866
|
1327 |
msgid "Abuse email:"
|
1328 |
msgstr "Адрес email для жалоб:"
|
1329 |
|
1330 |
+
#: common.php:891
|
1331 |
msgid "Update to version %s of WP Cerber"
|
1332 |
msgstr "Обновить WP Cerber до версии %s"
|
1333 |
|
1334 |
+
#: common.php:884
|
1335 |
msgid "New version is available"
|
1336 |
msgstr "Доступна новая версия"
|
1337 |
|
1338 |
+
#: dashboard.php:1583
|
1339 |
msgid "View Activity"
|
1340 |
msgstr "Что происходит?"
|
1341 |
|
1342 |
+
#: dashboard.php:1582
|
1343 |
msgid "Deactivate"
|
1344 |
msgstr "Деактивировать"
|
1345 |
|
1346 |
+
#: dashboard.php:1581
|
1347 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
1348 |
msgstr "Внимание! Режим Цитадель активен. Авторизация на сайте заблокирована."
|
1349 |
|
1350 |
+
#: dashboard.php:1486
|
1351 |
msgid "doesn't affect Custom login URL and Access Lists"
|
1352 |
msgstr "не затронет настройки URL страницы авторизации и списки доступа"
|
1353 |
|
1354 |
+
#: dashboard.php:1480
|
1355 |
msgid "Are you sure?"
|
1356 |
msgstr "Вы уверены?"
|
1357 |
|
1358 |
+
#: dashboard.php:1478
|
1359 |
msgid "Load default settings"
|
1360 |
msgstr "Загрузить настройки"
|
1361 |
|
1362 |
+
#: dashboard.php:1476
|
1363 |
msgid "You can easily load default recommended settings using button below"
|
1364 |
msgstr "Вы можете загрузить рекомендованные настройки с помощью всего одной кнопки"
|
1365 |
|
1366 |
+
#: dashboard.php:1475
|
1367 |
msgid "Confused about some settings?"
|
1368 |
msgstr "Сомневаетесь какие настройки оптимальны?"
|
1369 |
|
1370 |
+
#: settings.php:376
|
1371 |
msgid "Lockouts"
|
1372 |
msgstr "Блокировки"
|
1373 |
|
1374 |
+
#: dashboard.php:1208 settings.php:89
|
1375 |
msgid "Citadel mode"
|
1376 |
msgstr "Режим Цитадель"
|
1377 |
|
1378 |
+
#: dashboard.php:1206 dashboard.php:1207 dashboard.php:1754
|
1379 |
msgid "entry"
|
1380 |
msgid_plural "entries"
|
1381 |
msgstr[0] "элемент"
|
1382 |
msgstr[1] "элемента"
|
1383 |
msgstr[2] "элементов"
|
1384 |
|
1385 |
+
#: dashboard.php:1205
|
1386 |
msgid "Last lockout"
|
1387 |
msgstr "Последняя блокировка"
|
1388 |
|
1389 |
+
#: dashboard.php:1204
|
1390 |
msgid "Lockouts at the moment"
|
1391 |
msgstr "Сейчас заблокировано"
|
1392 |
|
1393 |
+
#: dashboard.php:1202
|
1394 |
msgid "lockouts"
|
1395 |
msgstr "блокировок"
|
1396 |
|
1397 |
+
#: dashboard.php:1201 dashboard.php:1202
|
1398 |
msgid "view all"
|
1399 |
msgstr "просмотреть все"
|
1400 |
|
1401 |
+
#: dashboard.php:1201 dashboard.php:1202
|
1402 |
msgid "in 24 hours"
|
1403 |
msgstr "за 24 часа"
|
1404 |
|
1405 |
+
#: dashboard.php:1201
|
1406 |
msgid "failed attempts"
|
1407 |
msgstr "ошибок авторизации"
|
1408 |
|
1409 |
+
#: dashboard.php:1196 dashboard.php:1210
|
1410 |
msgid "disabled"
|
1411 |
msgstr "отключен"
|
1412 |
|
1413 |
+
#: dashboard.php:1195
|
1414 |
msgid "not active"
|
1415 |
msgstr "неактивен"
|
1416 |
|
1417 |
+
#: dashboard.php:1193
|
1418 |
msgid "deactivate"
|
1419 |
msgstr "деактивировать"
|
1420 |
|
1421 |
+
#: dashboard.php:1193 dashboard.php:1214
|
1422 |
msgid "active"
|
1423 |
msgstr "активен"
|
1424 |
|
1425 |
+
#: dashboard.php:1159
|
1426 |
msgid "Cerber Quick View"
|
1427 |
msgstr "Сводка от Cerber"
|
1428 |
|
1429 |
+
#: cerber-tools.php:185
|
1430 |
msgid "Error while parsing file"
|
1431 |
msgstr "Возникла ошибка при обработке файла"
|
1432 |
|
1433 |
+
#: cerber-tools.php:181
|
1434 |
msgid "Settings has imported successfully from"
|
1435 |
msgstr "Все настройки успешно загружены"
|
1436 |
|
1437 |
+
#: cerber-tools.php:178
|
1438 |
msgid "Error while updating"
|
1439 |
msgstr "Возникла ошибка при обновлении"
|
1440 |
|
1441 |
+
#: cerber-tools.php:145
|
1442 |
msgid "No file was uploaded or file is corrupted"
|
1443 |
msgstr "Файл не был загружен или имеет неверный формат"
|
1444 |
|
1470 |
msgid "Download file"
|
1471 |
msgstr "Скачать файл"
|
1472 |
|
1473 |
+
#: cerber-tools.php:88 cerber-tools.php:97 cerber-tools.php:178
|
1474 |
+
#: settings.php:381 wp-cerber.php:3849
|
1475 |
msgid "Access Lists"
|
1476 |
msgstr "Списки доступа"
|
1477 |
|
1478 |
+
#: cerber-tools.php:87 cerber-tools.php:96 dashboard.php:2499
|
1479 |
msgid "Settings"
|
1480 |
msgstr "Настройки"
|
1481 |
|
1491 |
msgid "Export settings to the file"
|
1492 |
msgstr "Экспорт настроек в файл"
|
1493 |
|
1494 |
+
#: dashboard.php:1105 dashboard.php:1189
|
1495 |
msgid "Never"
|
1496 |
msgstr "Никогда"
|
1497 |
|
1498 |
+
#: common.php:611
|
1499 |
+
msgid "User created"
|
1500 |
+
msgstr "Пользователь создан"
|
|
|
|
|
|
|
|
|
1501 |
|
1502 |
+
#: common.php:612 dashboard.php:1429
|
1503 |
+
msgid "User registered"
|
1504 |
+
msgstr "Пользователь зарегистрирован"
|
1505 |
|
1506 |
+
#: common.php:613
|
1507 |
+
msgid "Logged in"
|
1508 |
+
msgstr "Вход"
|
1509 |
|
1510 |
+
#: common.php:614
|
1511 |
+
msgid "Logged out"
|
1512 |
+
msgstr "Выход"
|
1513 |
|
1514 |
+
#: common.php:615
|
1515 |
+
msgid "Login failed"
|
1516 |
+
msgstr "Ошибка авторизации"
|
1517 |
|
1518 |
+
#: common.php:618
|
1519 |
+
msgid "IP blocked"
|
1520 |
+
msgstr "IP заблокирован"
|
1521 |
|
1522 |
+
#: common.php:619
|
1523 |
+
msgid "Subnet blocked"
|
1524 |
+
msgstr "Подсеть заблокирована"
|
1525 |
|
1526 |
+
#: common.php:621
|
1527 |
+
msgid "Citadel activated!"
|
1528 |
+
msgstr "Режим Цитадель активирован!"
|
|
|
1529 |
|
1530 |
+
#: common.php:658 dashboard.php:632 dashboard.php:836 dashboard.php:2647
|
1531 |
+
msgid "Locked out"
|
1532 |
+
msgstr "Заблокировано"
|
1533 |
|
1534 |
+
#: common.php:636
|
1535 |
+
msgid "Password changed"
|
1536 |
+
msgstr "Пароль изменен"
|
1537 |
|
1538 |
+
#: common.php:659
|
1539 |
+
msgid "IP blacklisted"
|
1540 |
+
msgstr "IP в черном списке"
|
1541 |
|
1542 |
+
#: common.php:639
|
1543 |
+
msgid "reCAPTCHA verification failed"
|
1544 |
+
msgstr "проверка reCAPTCHA неудачна"
|
1545 |
|
1546 |
+
#: common.php:640
|
1547 |
+
msgid "reCAPTCHA settings are incorrect"
|
1548 |
+
msgstr "настройки reCAPTCHA неверны"
|
1549 |
|
1550 |
+
#: common.php:643
|
1551 |
+
msgid "Attempt to access prohibited URL"
|
1552 |
+
msgstr "Попытка доступа к запрещенному URL"
|
1553 |
|
1554 |
+
#: common.php:644 common.php:690
|
1555 |
+
msgid "Attempt to log in with non-existent username"
|
1556 |
+
msgstr "Попытка войти с несуществующим именем пользователя"
|
1557 |
|
1558 |
+
#: common.php:645 common.php:691
|
1559 |
+
msgid "Attempt to log in with prohibited username"
|
1560 |
+
msgstr "Попытка входа с запрещенным именем"
|
1561 |
|
1562 |
+
#: dashboard.php:86 dashboard.php:159
|
1563 |
+
msgid "Remove"
|
1564 |
+
msgstr "Удалить"
|
1565 |
|
1566 |
+
#: dashboard.php:93 dashboard.php:652 dashboard.php:2811 wp-cerber.php:3622
|
1567 |
+
msgid "IP"
|
1568 |
+
msgstr "IP"
|
1569 |
|
1570 |
+
#: dashboard.php:94 dashboard.php:653
|
1571 |
+
msgid "Hostname"
|
1572 |
+
msgstr "Имя узла"
|
1573 |
|
1574 |
+
#: dashboard.php:96
|
1575 |
+
msgid "Expires"
|
1576 |
+
msgstr "Истекает"
|
1577 |
|
1578 |
+
#: dashboard.php:97 wp-cerber.php:3118
|
1579 |
+
msgid "Reason"
|
1580 |
+
msgstr "Причина"
|
1581 |
|
1582 |
+
#: dashboard.php:98
|
1583 |
+
msgid "Action"
|
1584 |
+
msgstr "Действие"
|
1585 |
|
1586 |
+
#: dashboard.php:112
|
1587 |
+
msgid "Showing last %d records from %d"
|
1588 |
+
msgstr "Отображены последние %d строк из %d"
|
|
|
1589 |
|
1590 |
+
#: dashboard.php:114
|
1591 |
+
msgid "Hint"
|
1592 |
+
msgstr "Подсказка"
|
1593 |
|
1594 |
#: dashboard.php:114
|
1595 |
msgid "To view activity, click on the IP"
|
1596 |
msgstr "Чтобы увидеть активность, нажмите на адрес IP"
|
1597 |
|
1598 |
+
#: dashboard.php:118
|
1599 |
+
msgid "No lockouts at the moment. The sky is clear."
|
1600 |
+
msgstr "Блокировок нет. Все в порядке."
|
1601 |
|
1602 |
+
#: dashboard.php:131 dashboard.php:627 dashboard.php:830 dashboard.php:1206
|
1603 |
+
#: dashboard.php:2642 settings.php:74 settings.php:342 wp-cerber.php:3841
|
1604 |
+
msgid "White IP Access List"
|
1605 |
+
msgstr "Белый список доступа по IP"
|
1606 |
|
1607 |
+
#: dashboard.php:131
|
1608 |
+
msgid "These IPs will never be locked out"
|
1609 |
+
msgstr "Эти адреса не будут заблокированы ни при каких условиях"
|
1610 |
|
1611 |
+
#: dashboard.php:133 dashboard.php:628 dashboard.php:833 dashboard.php:1207
|
1612 |
+
#: dashboard.php:2643
|
1613 |
+
msgid "Black IP Access List"
|
1614 |
+
msgstr "Черный список доступа по IP"
|
1615 |
|
1616 |
+
#: dashboard.php:133
|
1617 |
+
msgid "Nobody can log in or register from these IPs"
|
1618 |
+
msgstr "Никто не сможет войти или зарегистрироваться с этих IP"
|
1619 |
|
1620 |
+
#: dashboard.php:140
|
1621 |
+
msgid "Your IP"
|
1622 |
+
msgstr "Ваш адрес IP"
|
1623 |
|
1624 |
+
#: dashboard.php:158 dashboard.php:843 dashboard.php:870 dashboard.php:961
|
1625 |
+
msgid "Check for activity"
|
1626 |
+
msgstr "Проверить активность"
|
1627 |
|
1628 |
+
#: dashboard.php:165
|
1629 |
+
msgid "List is empty"
|
1630 |
+
msgstr "Список пуст"
|
1631 |
|
1632 |
+
#: dashboard.php:170
|
1633 |
+
msgid "Add IP to the list"
|
1634 |
+
msgstr "Добавить IP в список"
|
1635 |
|
1636 |
+
#: dashboard.php:202
|
1637 |
+
msgid "Address %s was added to White IP Access List"
|
1638 |
+
msgstr "Адрес %s добавлен в белый список доступа"
|
1639 |
|
1640 |
+
#: dashboard.php:216
|
1641 |
+
msgid "Address %s was added to Black IP Access List"
|
1642 |
+
msgstr "Адрес %s добавлен в черный список доступа"
|
1643 |
|
1644 |
+
#: dashboard.php:355
|
1645 |
+
msgid "unknown"
|
1646 |
+
msgstr "неизвестно"
|
1647 |
|
1648 |
+
#: dashboard.php:390
|
1649 |
+
msgid "Lockout for %s was removed"
|
1650 |
+
msgstr "Удалена блокировка для %s"
|
1651 |
|
1652 |
+
#: dashboard.php:407 dashboard.php:1598
|
1653 |
+
msgid "Settings saved"
|
1654 |
+
msgstr "Настройки сохранены."
|
1655 |
|
1656 |
+
#: dashboard.php:491 dashboard.php:655 dashboard.php:2809
|
1657 |
+
msgid "Date"
|
1658 |
+
msgstr "Дата"
|
1659 |
|
1660 |
+
#: dashboard.php:1226 dashboard.php:1436 settings.php:94 settings.php:372
|
1661 |
+
#: wp-cerber.php:3613
|
1662 |
+
msgid "Activity"
|
1663 |
+
msgstr "Активность"
|
1664 |
|
1665 |
+
#: dashboard.php:680
|
1666 |
+
msgid "No activity has been logged."
|
1667 |
+
msgstr "Ни одного события не зафиксировано."
|
1668 |
|
1669 |
+
#: dashboard.php:491 dashboard.php:658 wp-cerber.php:3630
|
1670 |
+
msgid "Username used"
|
1671 |
+
msgstr "Использован логин"
|
1672 |
|
1673 |
+
#: dashboard.php:491 dashboard.php:657 dashboard.php:2814
|
1674 |
+
msgid "Local User"
|
1675 |
+
msgstr "Пользователь"
|
1676 |
|
1677 |
+
#: dashboard.php:888
|
1678 |
+
msgid "Add IP to the Black List"
|
1679 |
+
msgstr "Добавить IP в черный список"
|
1680 |
|
1681 |
+
#: dashboard.php:988 dashboard.php:1010
|
1682 |
+
msgid "WP Cerber"
|
1683 |
+
msgstr "WP Cerber"
|
1684 |
|
1685 |
+
#: dashboard.php:1071
|
1686 |
+
msgid "Comments"
|
1687 |
+
msgstr "Комментарии"
|
1688 |
|
1689 |
+
#: dashboard.php:1072
|
1690 |
+
msgid "Last login"
|
1691 |
+
msgstr "Последний вход"
|
1692 |
|
1693 |
+
#: settings.php:142
|
1694 |
+
msgid "by date of registration"
|
1695 |
+
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:
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
@@ -28,8 +28,8 @@ msgstr ""
|
|
28 |
msgid "Remove"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../dashboard.php:93 ../dashboard.php:652 ../dashboard.php:
|
32 |
-
#: php:
|
33 |
msgid "IP"
|
34 |
msgstr ""
|
35 |
|
@@ -45,7 +45,7 @@ msgstr ""
|
|
45 |
msgid "Expires"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: ../dashboard.php:97 ../wp-cerber.php:
|
49 |
msgid "Reason"
|
50 |
msgstr ""
|
51 |
|
@@ -71,8 +71,8 @@ msgid "No lockouts at the moment. The sky is clear."
|
|
71 |
msgstr ""
|
72 |
|
73 |
#: ../dashboard.php:131 ../dashboard.php:627 ../dashboard.php:830 ../dashboard.
|
74 |
-
#: php:
|
75 |
-
#: /settings.php:
|
76 |
msgid "White IP Access List"
|
77 |
msgstr ""
|
78 |
|
@@ -81,7 +81,7 @@ msgid "These IPs will never be locked out"
|
|
81 |
msgstr ""
|
82 |
|
83 |
#: ../dashboard.php:133 ../dashboard.php:628 ../dashboard.php:833 ../dashboard.
|
84 |
-
#: php:
|
85 |
msgid "Black IP Access List"
|
86 |
msgstr ""
|
87 |
|
@@ -94,7 +94,7 @@ msgid "Your IP"
|
|
94 |
msgstr ""
|
95 |
|
96 |
#: ../dashboard.php:158 ../dashboard.php:843 ../dashboard.php:870 ../dashboard.
|
97 |
-
#: php:
|
98 |
msgid "Check for activity"
|
99 |
msgstr ""
|
100 |
|
@@ -132,8 +132,8 @@ msgstr ""
|
|
132 |
msgid "Address %s was added to Black IP Access List"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: ../dashboard.php:313 ../dashboard.php:
|
136 |
-
#: /common.php:
|
137 |
msgid "Unknown"
|
138 |
msgstr ""
|
139 |
|
@@ -154,7 +154,7 @@ msgstr ""
|
|
154 |
msgid "Lockout for %s was removed"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: ../dashboard.php:407 ../dashboard.php:
|
158 |
msgid "Settings saved"
|
159 |
msgstr ""
|
160 |
|
@@ -162,7 +162,7 @@ msgstr ""
|
|
162 |
msgid "IP address"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../dashboard.php:491 ../dashboard.php:655 ../dashboard.php:
|
166 |
msgid "Date"
|
167 |
msgstr ""
|
168 |
|
@@ -170,7 +170,7 @@ msgstr ""
|
|
170 |
msgid "Event"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../dashboard.php:491 ../dashboard.php:657 ../dashboard.php:
|
174 |
msgid "Local User"
|
175 |
msgstr ""
|
176 |
|
@@ -182,12 +182,12 @@ msgstr ""
|
|
182 |
msgid "User ID"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../dashboard.php:491 ../dashboard.php:658 ../wp-cerber.php:
|
186 |
msgid "Username used"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: ../dashboard.php:632 ../dashboard.php:836 ../dashboard.php:
|
190 |
-
#:
|
191 |
msgid "Locked out"
|
192 |
msgstr ""
|
193 |
|
@@ -223,371 +223,375 @@ msgstr ""
|
|
223 |
msgid "Add network to the Black List"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: ../dashboard.php:
|
227 |
msgid "Add IP to the Black List"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../dashboard.php:
|
231 |
msgid "Last seen"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ../dashboard.php:
|
235 |
msgid "Registered"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: ../dashboard.php:
|
239 |
msgid "WP Cerber Security"
|
240 |
msgstr ""
|
241 |
|
242 |
#. Name of the plugin
|
243 |
-
#: ../dashboard.php:
|
244 |
msgid "WP Cerber"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: ../dashboard.php:
|
248 |
msgid "Cerber Dashboard"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: ../dashboard.php:
|
252 |
-
#: php:
|
253 |
msgid "Dashboard"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: ../dashboard.php:
|
257 |
msgid "Cerber Traffic Inspector"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: ../dashboard.php:
|
261 |
msgid "Traffic Inspector"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: ../dashboard.php:
|
265 |
msgid "Cerber Security Rules"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: ../dashboard.php:
|
269 |
msgid "Security Rules"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: ../dashboard.php:
|
273 |
msgid "Cerber antispam settings"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: ../dashboard.php:
|
277 |
#: php:185
|
278 |
msgid "Antispam"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: ../dashboard.php:
|
282 |
msgid "Cerber tools"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: ../dashboard.php:
|
286 |
msgid "Tools"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: ../dashboard.php:
|
290 |
msgid "Comments"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: ../dashboard.php:
|
294 |
msgid "Last login"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: ../dashboard.php:
|
298 |
msgid "Failed login attempts"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: ../dashboard.php:
|
302 |
msgid "Never"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: ../dashboard.php:
|
306 |
msgid "You"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: ../dashboard.php:
|
310 |
msgid "Cerber Quick View"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: ../dashboard.php:
|
314 |
msgid "active"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: ../dashboard.php:
|
318 |
msgid "deactivate"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: ../dashboard.php:
|
322 |
msgid "not active"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: ../dashboard.php:
|
326 |
msgid "disabled"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: ../dashboard.php:
|
330 |
msgid "failed attempts"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: ../dashboard.php:
|
334 |
msgid "in 24 hours"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: ../dashboard.php:
|
338 |
msgid "view all"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: ../dashboard.php:
|
342 |
msgid "lockouts"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: ../dashboard.php:
|
346 |
msgid "Lockouts at the moment"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: ../dashboard.php:
|
350 |
msgid "Last lockout"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: ../dashboard.php:
|
354 |
msgid "entry"
|
355 |
msgid_plural "entries"
|
356 |
msgstr[0] ""
|
357 |
msgstr[1] ""
|
358 |
|
359 |
-
#: ../dashboard.php:
|
360 |
msgid "Citadel mode"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: ../dashboard.php:
|
364 |
msgid "enabled"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: ../dashboard.php:
|
368 |
msgid "no connection"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: ../dashboard.php:
|
372 |
-
#: php:94 ../settings.php:
|
373 |
msgid "Activity"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: ../dashboard.php:
|
377 |
msgid "Traffic"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: ../dashboard.php:
|
381 |
msgid "My site is behind a reverse proxy"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: ../dashboard.php:
|
385 |
msgid "in the last 24 hours"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: ../dashboard.php:
|
389 |
msgid "View all"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: ../dashboard.php:
|
393 |
msgid "User registered"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: ../dashboard.php:
|
397 |
msgid "All suspicious activity"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: ../dashboard.php:
|
401 |
msgid "Recently locked out IP addresses"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: ../dashboard.php:
|
405 |
msgid "Confused about some settings?"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: ../dashboard.php:
|
409 |
msgid "You can easily load default recommended settings using button below"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: ../dashboard.php:
|
413 |
msgid "Load default settings"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: ../dashboard.php:
|
417 |
msgid "Are you sure?"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: ../dashboard.php:
|
421 |
msgid "doesn't affect Custom login URL and Access Lists"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: ../dashboard.php:
|
425 |
msgid "Getting Started Guide"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ../dashboard.php:
|
429 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: ../dashboard.php:
|
433 |
msgid "Deactivate"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: ../dashboard.php:
|
437 |
msgid "View Activity"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ../dashboard.php:
|
441 |
msgid "Subscribe"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ../dashboard.php:
|
445 |
msgid "Unsubscribe"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: ../dashboard.php:
|
449 |
msgid "You've subscribed"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: ../dashboard.php:
|
453 |
msgid "You've unsubscribed"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ../dashboard.php:
|
457 |
msgid "Main settings"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../dashboard.php:
|
461 |
msgid "Countries"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: ../dashboard.php:
|
465 |
#, php-format
|
466 |
msgid "Permitted for one country"
|
467 |
msgid_plural "Permitted for %d countries"
|
468 |
msgstr[0] ""
|
469 |
msgstr[1] ""
|
470 |
|
471 |
-
#: ../dashboard.php:
|
472 |
#, php-format
|
473 |
msgid "Not permitted for one country"
|
474 |
msgid_plural "Not permitted for %d countries"
|
475 |
msgstr[0] ""
|
476 |
msgstr[1] ""
|
477 |
|
478 |
-
#: ../dashboard.php:
|
479 |
msgid "No rule"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: ../dashboard.php:
|
483 |
msgid "Start typing here to find a country"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: ../dashboard.php:
|
487 |
msgid "Click on a country name to add it to the list of selected countries"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: ../dashboard.php:
|
491 |
#, php-format
|
492 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
493 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: ../dashboard.php:
|
497 |
#, php-format
|
498 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
499 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: ../dashboard.php:
|
503 |
msgid "Submit forms"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: ../dashboard.php:
|
507 |
msgid "Post comments"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: ../dashboard.php:
|
511 |
msgid "Log in to the website"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: ../dashboard.php:
|
515 |
msgid "Register on the website"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: ../dashboard.php:
|
519 |
msgid "Use XML-RPC"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: ../dashboard.php:
|
523 |
msgid "Use REST API"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: ../dashboard.php:
|
527 |
msgid "Security rules have been updated"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: ../dashboard.php:
|
531 |
msgid "Live traffic"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: ../dashboard.php:
|
535 |
msgid "Settings"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: ../dashboard.php:
|
539 |
msgid "Request"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: ../dashboard.php:
|
543 |
msgid "Host Info"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ../dashboard.php:
|
547 |
msgid "User Agent"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: ../dashboard.php:
|
551 |
msgid "No requests have been logged."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: ../dashboard.php:
|
555 |
msgid "All requests"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: ../dashboard.php:
|
559 |
msgid "Logged in users"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: ../dashboard.php:
|
563 |
msgid "Not logged in visitors"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: ../dashboard.php:
|
567 |
msgid "Form submissions"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: ../dashboard.php:
|
571 |
msgid "Page Not Found"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: ../dashboard.php:
|
575 |
msgid "REST API"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: ../dashboard.php:
|
579 |
msgid "XML-RPC"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: ../dashboard.php:
|
583 |
msgid "Longer than"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: ../dashboard.php:
|
587 |
msgid "Refresh"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: ../dashboard.php:
|
|
|
|
|
|
|
|
|
591 |
msgid "Advanced search"
|
592 |
msgstr ""
|
593 |
|
@@ -611,242 +615,246 @@ msgstr ""
|
|
611 |
msgid "Gregory"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: ../wp-cerber.php:
|
615 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: ../wp-cerber.php:
|
619 |
#, php-format
|
620 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: ../wp-cerber.php:
|
624 |
#, php-format
|
625 |
msgid "You have only one attempt remaining."
|
626 |
msgid_plural "You have %d attempts remaining."
|
627 |
msgstr[0] ""
|
628 |
msgstr[1] ""
|
629 |
|
630 |
-
#: ../wp-cerber.php:
|
631 |
-
#: php:
|
632 |
-
#:
|
633 |
-
#:
|
634 |
-
#:
|
635 |
msgid "ERROR:"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: ../wp-cerber.php:
|
639 |
msgid ""
|
640 |
"Human verification failed. Please click the square box in the reCAPTCHA "
|
641 |
"block below."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: ../wp-cerber.php:
|
645 |
msgid ""
|
646 |
"> > > Translator of WP Cerber? To get the PRO license for free, drop your "
|
647 |
"contacts here: https://wpcerber.com/contact/"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: ../wp-cerber.php:
|
651 |
#, php-format
|
652 |
msgid ""
|
653 |
"<strong>ERROR</strong>: The password you entered for the username %s is "
|
654 |
"incorrect."
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: ../wp-cerber.php:
|
658 |
-
#: php:
|
659 |
msgid "You are not allowed to register."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: ../wp-cerber.php:
|
663 |
msgid "Username is not allowed. Please choose another one."
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: ../wp-cerber.php:
|
667 |
msgid "Sorry, human verification failed."
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: ../wp-cerber.php:
|
|
|
|
|
|
|
|
|
671 |
msgid "WP Cerber notify"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: ../wp-cerber.php:
|
675 |
msgid "Citadel mode is activated"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: ../wp-cerber.php:
|
679 |
#, php-format
|
680 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: ../wp-cerber.php:
|
684 |
#, php-format
|
685 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: ../wp-cerber.php:
|
689 |
msgid "View activity in dashboard"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: ../wp-cerber.php:
|
693 |
msgid "unspecified"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: ../wp-cerber.php:
|
697 |
msgid "Number of lockouts is increasing"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: ../wp-cerber.php:
|
701 |
msgid "Number of active lockouts"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: ../wp-cerber.php:
|
705 |
#, php-format
|
706 |
msgid "Last lockout was added: %s for IP %s"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: ../wp-cerber.php:
|
710 |
msgid "View activity for this IP"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: ../wp-cerber.php:
|
714 |
msgid "View lockouts in dashboard"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: ../wp-cerber.php:
|
718 |
msgid "A new version of WP Cerber is available to install"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: ../wp-cerber.php:
|
722 |
msgid "Hi!"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: ../wp-cerber.php:
|
726 |
msgid "Website"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: ../wp-cerber.php:
|
730 |
msgid "The WP Cerber security plugin has been deactivated"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: ../wp-cerber.php:
|
734 |
msgid "Not logged in"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: ../wp-cerber.php:
|
738 |
msgid "By user"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: ../wp-cerber.php:
|
742 |
msgid "From IP address"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: ../wp-cerber.php:
|
746 |
msgid "From country"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: ../wp-cerber.php:
|
750 |
msgid "The WP Cerber security plugin is now active"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: ../wp-cerber.php:
|
754 |
msgid "WP Cerber is now active and has started protecting your site"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: ../wp-cerber.php:
|
758 |
msgid "New Custom login URL"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: ../wp-cerber.php:
|
762 |
msgid "A new activity has been recorded"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: ../wp-cerber.php:
|
766 |
msgid "Weekly report"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: ../wp-cerber.php:
|
770 |
msgid "To change reporting settings visit"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: ../wp-cerber.php:
|
774 |
msgid "Your login page:"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: ../wp-cerber.php:
|
778 |
msgid "Your license is valid until"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: ../wp-cerber.php:
|
782 |
msgid "This message was sent by"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: ../wp-cerber.php:
|
786 |
#, php-format
|
787 |
msgid "Your last sign-in was %s from %s"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: ../wp-cerber.php:
|
791 |
msgid "Weekly Report"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: ../wp-cerber.php:
|
795 |
msgid "Activity details"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: ../wp-cerber.php:
|
799 |
msgid "Attempts to log in with non-existent username"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: ../wp-cerber.php:
|
803 |
msgid "User"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: ../wp-cerber.php:
|
807 |
msgid "Search string"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: ../wp-cerber.php:
|
811 |
msgid "To unsubscribe click here"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: ../wp-cerber.php:
|
815 |
#, php-format
|
816 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../wp-cerber.php:
|
820 |
#, php-format
|
821 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: ../wp-cerber.php:
|
825 |
msgid "Can't activate WP Cerber due to a database error."
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: ../wp-cerber.php:
|
829 |
msgid "Your IP address is added to the"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: ../wp-cerber.php:
|
833 |
msgid "Main Settings"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: ../wp-cerber.php:
|
837 |
#: tools.php:97 ../cerber-tools.php:178
|
838 |
msgid "Access Lists"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: ../wp-cerber.php:
|
842 |
msgid "Hardening"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: ../wp-cerber.php:
|
846 |
msgid "Notifications"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: ../wp-cerber.php:
|
850 |
msgid "Import settings"
|
851 |
msgstr ""
|
852 |
|
@@ -874,177 +882,177 @@ msgstr ""
|
|
874 |
msgid "Lockouts occurred"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: ../common.php:
|
878 |
msgid "User created"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: ../common.php:
|
882 |
msgid "Logged in"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: ../common.php:
|
886 |
msgid "Logged out"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: ../common.php:
|
890 |
msgid "Login failed"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: ../common.php:
|
894 |
msgid "IP blocked"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: ../common.php:
|
898 |
msgid "Subnet blocked"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: ../common.php:
|
902 |
msgid "Citadel activated!"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: ../common.php:
|
906 |
msgid "Spam comment denied"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: ../common.php:
|
910 |
msgid "Spam form submission denied"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: ../common.php:
|
914 |
msgid "Form submission denied"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: ../common.php:
|
918 |
msgid "Comment denied"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: ../common.php:
|
922 |
msgid "Password changed"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: ../common.php:
|
926 |
msgid "Password reset requested"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: ../common.php:
|
930 |
msgid "reCAPTCHA verification failed"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: ../common.php:
|
934 |
msgid "reCAPTCHA settings are incorrect"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: ../common.php:
|
938 |
msgid "Request to the Google reCAPTCHA service failed"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: ../common.php:
|
942 |
msgid "Attempt to access prohibited URL"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: ../common.php:
|
946 |
msgid "Attempt to log in with non-existent username"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: ../common.php:
|
950 |
msgid "Attempt to log in with prohibited username"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: ../common.php:
|
954 |
msgid "Attempt to log in denied"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: ../common.php:
|
958 |
msgid "Attempt to register denied"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: ../common.php:
|
962 |
msgid "Probing for vulnerable PHP code"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: ../common.php:
|
966 |
msgid "Request to REST API denied"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: ../common.php:
|
970 |
msgid "XML-RPC request denied"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: ../common.php:
|
974 |
msgid "Bot detected"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: ../common.php:
|
978 |
msgid "Citadel mode is active"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: ../common.php:
|
982 |
msgid "IP blacklisted"
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: ../common.php:
|
986 |
msgid "Malicious activity detected"
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: ../common.php:
|
990 |
msgid "Blocked by country rule"
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: ../common.php:
|
994 |
msgid "Limit reached"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: ../common.php:
|
998 |
msgid "Multiple suspicious activities"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: ../common.php:
|
1002 |
msgid "Limit on login attempts is reached"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: ../common.php:
|
1006 |
msgid "Attempt to access"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: ../common.php:
|
1010 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: ../common.php:
|
1014 |
msgid "Bot activity is detected"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: ../common.php:
|
1018 |
msgid "Multiple suspicious activities were detected"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: ../common.php:
|
1022 |
#, php-format
|
1023 |
msgid "%s ago"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: ../common.php:
|
1027 |
msgid "New version is available"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: ../common.php:
|
1031 |
#, php-format
|
1032 |
msgid "Update to version %s of WP Cerber"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: ../common.php:
|
1036 |
msgid "Not specified"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: ../cerber-news.php:
|
1040 |
msgid "Cool!"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: ../cerber-lab.php:
|
1044 |
msgid "Want to make WP Cerber even more powerful?"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: ../cerber-lab.php:
|
1048 |
msgid ""
|
1049 |
"Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. "
|
1050 |
"This helps the plugin team to develop new algorithms for WP Cerber that will "
|
@@ -1052,15 +1060,15 @@ msgid ""
|
|
1052 |
"everyday. You can disable the sending in the plugin settings at any time."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: ../cerber-lab.php:
|
1056 |
msgid "OK, nail them all"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: ../cerber-lab.php:
|
1060 |
msgid "NO, maybe later"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: ../cerber-lab.php:
|
1064 |
msgid "Know more"
|
1065 |
msgstr ""
|
1066 |
|
@@ -1174,15 +1182,15 @@ msgstr ""
|
|
1174 |
msgid "Send notification to admin email"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: ../settings.php:92 ../settings.php:
|
1178 |
msgid "Click to send test"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: ../settings.php:95 ../settings.php:
|
1182 |
msgid "Keep records for"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: ../settings.php:95 ../settings.php:168 ../settings.php:
|
1186 |
msgid "days"
|
1187 |
msgstr ""
|
1188 |
|
@@ -1473,7 +1481,7 @@ msgstr ""
|
|
1473 |
msgid "Email Address"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: ../settings.php:201 ../settings.php:233 ../settings.php:
|
1477 |
msgid "Use comma to specify multiple values"
|
1478 |
msgstr ""
|
1479 |
|
@@ -1526,163 +1534,185 @@ msgstr ""
|
|
1526 |
msgid "Enable traffic inspection"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: ../settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1530 |
msgid "Logging"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: ../settings.php:
|
1534 |
msgid "Logging mode"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: ../settings.php:
|
1538 |
msgid "Logging disabled"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: ../settings.php:
|
1542 |
msgid "Smart"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: ../settings.php:
|
1546 |
msgid "All traffic"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: ../settings.php:
|
1550 |
msgid "Ignore crawlers"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: ../settings.php:
|
1554 |
msgid "Save request fields"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: ../settings.php:
|
1558 |
msgid "Mask these form fields"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: ../settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1562 |
msgid "Page generation time threshold"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: ../settings.php:
|
1566 |
msgid "milliseconds"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: ../settings.php:
|
1570 |
msgid "Make your protection smarter!"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: ../settings.php:
|
1574 |
msgid ""
|
1575 |
"Please enable Permalinks to use this feature. Set Permalink Settings to "
|
1576 |
"something other than Default."
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: ../settings.php:
|
1580 |
msgid ""
|
1581 |
"Be careful when enabling this options. If you forget the custom login URL "
|
1582 |
"you will not be able to login."
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: ../settings.php:
|
1586 |
msgid ""
|
1587 |
"In the Citadel mode nobody is able to log in except IPs from the White IP "
|
1588 |
"Access List. Active user sessions will not be affected."
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: ../settings.php:
|
1592 |
msgid "These settings do not affect hosts from the "
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: ../settings.php:
|
1596 |
msgid ""
|
1597 |
"Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
|
1598 |
"key on the Google website"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: ../settings.php:
|
1602 |
msgid "Lockouts"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: ../settings.php:
|
1606 |
msgid "Users"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: ../settings.php:
|
1610 |
msgid "Help"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: ../settings.php:
|
1614 |
#, php-format
|
1615 |
msgid "%s allowed retries in %s minutes"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: ../settings.php:
|
1619 |
#, php-format
|
1620 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: ../settings.php:
|
1624 |
#, php-format
|
1625 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: ../settings.php:
|
1629 |
msgid "Notify admin if the number of active lockouts above"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: ../settings.php:
|
1633 |
#, php-format
|
1634 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: ../settings.php:
|
1638 |
msgid "Sunday"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: ../settings.php:
|
1642 |
msgid "Monday"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#: ../settings.php:
|
1646 |
msgid "Tuesday"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: ../settings.php:
|
1650 |
msgid "Wednesday"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: ../settings.php:
|
1654 |
msgid "Thursday"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: ../settings.php:
|
1658 |
msgid "Friday"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: ../settings.php:
|
1662 |
msgid "Saturday"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
#. translators: preposition of time
|
1666 |
-
#: ../settings.php:
|
1667 |
msgctxt "preposition of time"
|
1668 |
msgid "at"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: ../settings.php:
|
1672 |
msgid "Click to send now"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: ../settings.php:
|
1676 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: ../settings.php:
|
1680 |
msgid ""
|
1681 |
"If you use a caching plugin, you have to add your new login URL to the list "
|
1682 |
"of pages not to cache."
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: ../settings.php:
|
1686 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
1687 |
msgstr ""
|
1688 |
|
5 |
"Project-Id-Version: WP Cerber\n"
|
6 |
"Report-Msgid-Bugs-To: \n"
|
7 |
"POT-Creation-Date: Tue Sep 08 2015 21:38:11 GMT+0300\n"
|
8 |
+
"POT-Revision-Date: Sat Jan 27 2018 19:05:59 GMT+0300\n"
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
28 |
msgid "Remove"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: ../dashboard.php:93 ../dashboard.php:652 ../dashboard.php:2812 ../wp-cerber.
|
32 |
+
#: php:3623
|
33 |
msgid "IP"
|
34 |
msgstr ""
|
35 |
|
45 |
msgid "Expires"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: ../dashboard.php:97 ../wp-cerber.php:3121
|
49 |
msgid "Reason"
|
50 |
msgstr ""
|
51 |
|
71 |
msgstr ""
|
72 |
|
73 |
#: ../dashboard.php:131 ../dashboard.php:627 ../dashboard.php:830 ../dashboard.
|
74 |
+
#: php:1207 ../dashboard.php:2643 ../wp-cerber.php:3842 ../settings.php:74 ..
|
75 |
+
#: /settings.php:350
|
76 |
msgid "White IP Access List"
|
77 |
msgstr ""
|
78 |
|
81 |
msgstr ""
|
82 |
|
83 |
#: ../dashboard.php:133 ../dashboard.php:628 ../dashboard.php:833 ../dashboard.
|
84 |
+
#: php:1208 ../dashboard.php:2644
|
85 |
msgid "Black IP Access List"
|
86 |
msgstr ""
|
87 |
|
94 |
msgstr ""
|
95 |
|
96 |
#: ../dashboard.php:158 ../dashboard.php:843 ../dashboard.php:870 ../dashboard.
|
97 |
+
#: php:962
|
98 |
msgid "Check for activity"
|
99 |
msgstr ""
|
100 |
|
132 |
msgid "Address %s was added to Black IP Access List"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: ../dashboard.php:313 ../dashboard.php:2573 ../whois.php:221 ../whois.php:252 ..
|
136 |
+
#: /common.php:742 ../common.php:1021
|
137 |
msgid "Unknown"
|
138 |
msgstr ""
|
139 |
|
154 |
msgid "Lockout for %s was removed"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: ../dashboard.php:407 ../dashboard.php:1599
|
158 |
msgid "Settings saved"
|
159 |
msgstr ""
|
160 |
|
162 |
msgid "IP address"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: ../dashboard.php:491 ../dashboard.php:655 ../dashboard.php:2810
|
166 |
msgid "Date"
|
167 |
msgstr ""
|
168 |
|
170 |
msgid "Event"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: ../dashboard.php:491 ../dashboard.php:657 ../dashboard.php:2815
|
174 |
msgid "Local User"
|
175 |
msgstr ""
|
176 |
|
182 |
msgid "User ID"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: ../dashboard.php:491 ../dashboard.php:658 ../wp-cerber.php:3631
|
186 |
msgid "Username used"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: ../dashboard.php:632 ../dashboard.php:836 ../dashboard.php:2648 ../common.php:
|
190 |
+
#: 713
|
191 |
msgid "Locked out"
|
192 |
msgstr ""
|
193 |
|
223 |
msgid "Add network to the Black List"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: ../dashboard.php:889
|
227 |
msgid "Add IP to the Black List"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../dashboard.php:949
|
231 |
msgid "Last seen"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../dashboard.php:956 ../dashboard.php:1075
|
235 |
msgid "Registered"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ../dashboard.php:989 ../settings.php:373
|
239 |
msgid "WP Cerber Security"
|
240 |
msgstr ""
|
241 |
|
242 |
#. Name of the plugin
|
243 |
+
#: ../dashboard.php:989 ../dashboard.php:1011
|
244 |
msgid "WP Cerber"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: ../dashboard.php:991
|
248 |
msgid "Cerber Dashboard"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: ../dashboard.php:991 ../dashboard.php:1226 ../dashboard.php:1775 ../settings.
|
252 |
+
#: php:378
|
253 |
msgid "Dashboard"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: ../dashboard.php:993
|
257 |
msgid "Cerber Traffic Inspector"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: ../dashboard.php:993 ../dashboard.php:1212 ../dashboard.php:2494
|
261 |
msgid "Traffic Inspector"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: ../dashboard.php:997
|
265 |
msgid "Cerber Security Rules"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: ../dashboard.php:997 ../dashboard.php:2154
|
269 |
msgid "Security Rules"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: ../dashboard.php:1000
|
273 |
msgid "Cerber antispam settings"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: ../dashboard.php:1000 ../dashboard.php:1229 ../wp-cerber.php:3851 ../settings.
|
277 |
#: php:185
|
278 |
msgid "Antispam"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: ../dashboard.php:1001
|
282 |
msgid "Cerber tools"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: ../dashboard.php:1001 ../cerber-tools.php:43
|
286 |
msgid "Tools"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: ../dashboard.php:1072
|
290 |
msgid "Comments"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: ../dashboard.php:1073
|
294 |
msgid "Last login"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: ../dashboard.php:1074
|
298 |
msgid "Failed login attempts"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: ../dashboard.php:1106 ../dashboard.php:1190
|
302 |
msgid "Never"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: ../dashboard.php:1142
|
306 |
msgid "You"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: ../dashboard.php:1160
|
310 |
msgid "Cerber Quick View"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: ../dashboard.php:1194 ../dashboard.php:1215
|
314 |
msgid "active"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: ../dashboard.php:1194
|
318 |
msgid "deactivate"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: ../dashboard.php:1196
|
322 |
msgid "not active"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: ../dashboard.php:1197 ../dashboard.php:1211
|
326 |
msgid "disabled"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: ../dashboard.php:1202
|
330 |
msgid "failed attempts"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: ../dashboard.php:1202 ../dashboard.php:1203
|
334 |
msgid "in 24 hours"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: ../dashboard.php:1202 ../dashboard.php:1203
|
338 |
msgid "view all"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: ../dashboard.php:1203
|
342 |
msgid "lockouts"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: ../dashboard.php:1205
|
346 |
msgid "Lockouts at the moment"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: ../dashboard.php:1206
|
350 |
msgid "Last lockout"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: ../dashboard.php:1207 ../dashboard.php:1208 ../dashboard.php:1755
|
354 |
msgid "entry"
|
355 |
msgid_plural "entries"
|
356 |
msgstr[0] ""
|
357 |
msgstr[1] ""
|
358 |
|
359 |
+
#: ../dashboard.php:1209 ../settings.php:89
|
360 |
msgid "Citadel mode"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../dashboard.php:1211
|
364 |
msgid "enabled"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ../dashboard.php:1215
|
368 |
msgid "no connection"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ../dashboard.php:1227 ../dashboard.php:1437 ../wp-cerber.php:3614 ../settings.
|
372 |
+
#: php:94 ../settings.php:380
|
373 |
msgid "Activity"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: ../dashboard.php:1228
|
377 |
msgid "Traffic"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: ../dashboard.php:1284 ../settings.php:76
|
381 |
msgid "My site is behind a reverse proxy"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: ../dashboard.php:1416
|
385 |
msgid "in the last 24 hours"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: ../dashboard.php:1422 ../dashboard.php:1452
|
389 |
msgid "View all"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: ../dashboard.php:1430 ../common.php:667
|
393 |
msgid "User registered"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: ../dashboard.php:1431
|
397 |
msgid "All suspicious activity"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: ../dashboard.php:1453
|
401 |
msgid "Recently locked out IP addresses"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: ../dashboard.php:1476
|
405 |
msgid "Confused about some settings?"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: ../dashboard.php:1477
|
409 |
msgid "You can easily load default recommended settings using button below"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: ../dashboard.php:1479
|
413 |
msgid "Load default settings"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: ../dashboard.php:1481
|
417 |
msgid "Are you sure?"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: ../dashboard.php:1487
|
421 |
msgid "doesn't affect Custom login URL and Access Lists"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: ../dashboard.php:1488 ../wp-cerber.php:3153 ../wp-cerber.php:3844
|
425 |
msgid "Getting Started Guide"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../dashboard.php:1582
|
429 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ../dashboard.php:1583
|
433 |
msgid "Deactivate"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../dashboard.php:1584
|
437 |
msgid "View Activity"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../dashboard.php:1685
|
441 |
msgid "Subscribe"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: ../dashboard.php:1686 ../cerber-tools.php:266
|
445 |
msgid "Unsubscribe"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ../dashboard.php:1714
|
449 |
msgid "You've subscribed"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: ../dashboard.php:1717
|
453 |
msgid "You've unsubscribed"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ../dashboard.php:1776
|
457 |
msgid "Main settings"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: ../dashboard.php:2159
|
461 |
msgid "Countries"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: ../dashboard.php:2222
|
465 |
#, php-format
|
466 |
msgid "Permitted for one country"
|
467 |
msgid_plural "Permitted for %d countries"
|
468 |
msgstr[0] ""
|
469 |
msgstr[1] ""
|
470 |
|
471 |
+
#: ../dashboard.php:2225
|
472 |
#, php-format
|
473 |
msgid "Not permitted for one country"
|
474 |
msgid_plural "Not permitted for %d countries"
|
475 |
msgstr[0] ""
|
476 |
msgstr[1] ""
|
477 |
|
478 |
+
#: ../dashboard.php:2233
|
479 |
msgid "No rule"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: ../dashboard.php:2289
|
483 |
msgid "Start typing here to find a country"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: ../dashboard.php:2372
|
487 |
msgid "Click on a country name to add it to the list of selected countries"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: ../dashboard.php:2376
|
491 |
#, php-format
|
492 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
493 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: ../dashboard.php:2379
|
497 |
#, php-format
|
498 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
499 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: ../dashboard.php:2396
|
503 |
msgid "Submit forms"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: ../dashboard.php:2397
|
507 |
msgid "Post comments"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: ../dashboard.php:2398
|
511 |
msgid "Log in to the website"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: ../dashboard.php:2399
|
515 |
msgid "Register on the website"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: ../dashboard.php:2400
|
519 |
msgid "Use XML-RPC"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: ../dashboard.php:2401
|
523 |
msgid "Use REST API"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: ../dashboard.php:2445
|
527 |
msgid "Security rules have been updated"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: ../dashboard.php:2499
|
531 |
msgid "Live traffic"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: ../dashboard.php:2500 ../cerber-tools.php:87 ../cerber-tools.php:96
|
535 |
msgid "Settings"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: ../dashboard.php:2811
|
539 |
msgid "Request"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: ../dashboard.php:2813
|
543 |
msgid "Host Info"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: ../dashboard.php:2814
|
547 |
msgid "User Agent"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: ../dashboard.php:2831
|
551 |
msgid "No requests have been logged."
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: ../dashboard.php:2839
|
555 |
msgid "All requests"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: ../dashboard.php:2840 ../settings.php:156
|
559 |
msgid "Logged in users"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: ../dashboard.php:2841
|
563 |
msgid "Not logged in visitors"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: ../dashboard.php:2842
|
567 |
msgid "Form submissions"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: ../dashboard.php:2843
|
571 |
msgid "Page Not Found"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: ../dashboard.php:2844
|
575 |
msgid "REST API"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: ../dashboard.php:2845
|
579 |
msgid "XML-RPC"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: ../dashboard.php:2849
|
583 |
msgid "Longer than"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: ../dashboard.php:2862
|
587 |
msgid "Refresh"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: ../dashboard.php:3097
|
591 |
+
msgid "Any"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: ../dashboard.php:3116
|
595 |
msgid "Advanced search"
|
596 |
msgstr ""
|
597 |
|
615 |
msgid "Gregory"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: ../wp-cerber.php:237
|
619 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: ../wp-cerber.php:243
|
623 |
#, php-format
|
624 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: ../wp-cerber.php:262
|
628 |
#, php-format
|
629 |
msgid "You have only one attempt remaining."
|
630 |
msgid_plural "You have %d attempts remaining."
|
631 |
msgstr[0] ""
|
632 |
msgstr[1] ""
|
633 |
|
634 |
+
#: ../wp-cerber.php:545 ../wp-cerber.php:557 ../wp-cerber.php:564 ../wp-cerber.
|
635 |
+
#: php:760 ../wp-cerber.php:976 ../wp-cerber.php:982 ../wp-cerber.php:987 ../wp-
|
636 |
+
#: cerber.php:992 ../wp-cerber.php:998 ../wp-cerber.php:1005 ../wp-cerber.php:
|
637 |
+
#: 1105 ../wp-cerber.php:1242 ../common.php:194 ../common.php:251 ../common.php:
|
638 |
+
#: 255 ../settings.php:836
|
639 |
msgid "ERROR:"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: ../wp-cerber.php:574
|
643 |
msgid ""
|
644 |
"Human verification failed. Please click the square box in the reCAPTCHA "
|
645 |
"block below."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: ../wp-cerber.php:639
|
649 |
msgid ""
|
650 |
"> > > Translator of WP Cerber? To get the PRO license for free, drop your "
|
651 |
"contacts here: https://wpcerber.com/contact/"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: ../wp-cerber.php:772
|
655 |
#, php-format
|
656 |
msgid ""
|
657 |
"<strong>ERROR</strong>: The password you entered for the username %s is "
|
658 |
"incorrect."
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: ../wp-cerber.php:977 ../wp-cerber.php:983 ../wp-cerber.php:999 ../wp-cerber.
|
662 |
+
#: php:1006
|
663 |
msgid "You are not allowed to register."
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: ../wp-cerber.php:993
|
667 |
msgid "Username is not allowed. Please choose another one."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: ../wp-cerber.php:1242
|
671 |
msgid "Sorry, human verification failed."
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: ../wp-cerber.php:2953
|
675 |
+
msgid "We're sorry, you are not allowed to proceed"
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: ../wp-cerber.php:3063
|
679 |
msgid "WP Cerber notify"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: ../wp-cerber.php:3085
|
683 |
msgid "Citadel mode is activated"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: ../wp-cerber.php:3087
|
687 |
#, php-format
|
688 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: ../wp-cerber.php:3088
|
692 |
#, php-format
|
693 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: ../wp-cerber.php:3089 ../wp-cerber.php:3655
|
697 |
msgid "View activity in dashboard"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: ../wp-cerber.php:3114
|
701 |
msgid "unspecified"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: ../wp-cerber.php:3117
|
705 |
msgid "Number of lockouts is increasing"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: ../wp-cerber.php:3119
|
709 |
msgid "Number of active lockouts"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: ../wp-cerber.php:3120
|
713 |
#, php-format
|
714 |
msgid "Last lockout was added: %s for IP %s"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: ../wp-cerber.php:3122
|
718 |
msgid "View activity for this IP"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: ../wp-cerber.php:3123
|
722 |
msgid "View lockouts in dashboard"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: ../wp-cerber.php:3126 ../wp-cerber.php:3128
|
726 |
msgid "A new version of WP Cerber is available to install"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: ../wp-cerber.php:3127
|
730 |
msgid "Hi!"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: ../wp-cerber.php:3130 ../wp-cerber.php:3141
|
734 |
msgid "Website"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: ../wp-cerber.php:3133 ../wp-cerber.php:3134
|
738 |
msgid "The WP Cerber security plugin has been deactivated"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../wp-cerber.php:3136
|
742 |
msgid "Not logged in"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../wp-cerber.php:3142
|
746 |
msgid "By user"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: ../wp-cerber.php:3143
|
750 |
msgid "From IP address"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: ../wp-cerber.php:3146
|
754 |
msgid "From country"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: ../wp-cerber.php:3150
|
758 |
msgid "The WP Cerber security plugin is now active"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: ../wp-cerber.php:3151 ../wp-cerber.php:3841
|
762 |
msgid "WP Cerber is now active and has started protecting your site"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: ../wp-cerber.php:3159
|
766 |
msgid "New Custom login URL"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: ../wp-cerber.php:3163 ../wp-cerber.php:3164
|
770 |
msgid "A new activity has been recorded"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: ../wp-cerber.php:3169
|
774 |
msgid "Weekly report"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: ../wp-cerber.php:3172
|
778 |
msgid "To change reporting settings visit"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../wp-cerber.php:3198
|
782 |
msgid "Your login page:"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: ../wp-cerber.php:3202
|
786 |
msgid "Your license is valid until"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: ../wp-cerber.php:3205
|
790 |
msgid "This message was sent by"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: ../wp-cerber.php:3226
|
794 |
#, php-format
|
795 |
msgid "Your last sign-in was %s from %s"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: ../wp-cerber.php:3301
|
799 |
msgid "Weekly Report"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: ../wp-cerber.php:3313
|
803 |
msgid "Activity details"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: ../wp-cerber.php:3327
|
807 |
msgid "Attempts to log in with non-existent username"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: ../wp-cerber.php:3627
|
811 |
msgid "User"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: ../wp-cerber.php:3635
|
815 |
msgid "Search string"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: ../wp-cerber.php:3656
|
819 |
msgid "To unsubscribe click here"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: ../wp-cerber.php:3812
|
823 |
#, php-format
|
824 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: ../wp-cerber.php:3816
|
828 |
#, php-format
|
829 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: ../wp-cerber.php:3825
|
833 |
msgid "Can't activate WP Cerber due to a database error."
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: ../wp-cerber.php:3842
|
837 |
msgid "Your IP address is added to the"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: ../wp-cerber.php:3849 ../settings.php:386
|
841 |
msgid "Main Settings"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: ../wp-cerber.php:3850 ../settings.php:389 ../cerber-tools.php:88 ../cerber-
|
845 |
#: tools.php:97 ../cerber-tools.php:178
|
846 |
msgid "Access Lists"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: ../wp-cerber.php:3852 ../settings.php:391
|
850 |
msgid "Hardening"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: ../wp-cerber.php:3853 ../settings.php:75 ../settings.php:92 ../settings.php:396
|
854 |
msgid "Notifications"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: ../wp-cerber.php:3854
|
858 |
msgid "Import settings"
|
859 |
msgstr ""
|
860 |
|
882 |
msgid "Lockouts occurred"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: ../common.php:666
|
886 |
msgid "User created"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: ../common.php:668
|
890 |
msgid "Logged in"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: ../common.php:669
|
894 |
msgid "Logged out"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: ../common.php:670
|
898 |
msgid "Login failed"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: ../common.php:673
|
902 |
msgid "IP blocked"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: ../common.php:674
|
906 |
msgid "Subnet blocked"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: ../common.php:676
|
910 |
msgid "Citadel activated!"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: ../common.php:677
|
914 |
msgid "Spam comment denied"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: ../common.php:678
|
918 |
msgid "Spam form submission denied"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: ../common.php:679
|
922 |
msgid "Form submission denied"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: ../common.php:680
|
926 |
msgid "Comment denied"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: ../common.php:691
|
930 |
msgid "Password changed"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: ../common.php:692
|
934 |
msgid "Password reset requested"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: ../common.php:694
|
938 |
msgid "reCAPTCHA verification failed"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: ../common.php:695
|
942 |
msgid "reCAPTCHA settings are incorrect"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: ../common.php:696
|
946 |
msgid "Request to the Google reCAPTCHA service failed"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: ../common.php:698
|
950 |
msgid "Attempt to access prohibited URL"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: ../common.php:699 ../common.php:745
|
954 |
msgid "Attempt to log in with non-existent username"
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: ../common.php:700 ../common.php:746
|
958 |
msgid "Attempt to log in with prohibited username"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: ../common.php:702
|
962 |
msgid "Attempt to log in denied"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: ../common.php:703
|
966 |
msgid "Attempt to register denied"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: ../common.php:704 ../common.php:750
|
970 |
msgid "Probing for vulnerable PHP code"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: ../common.php:706
|
974 |
msgid "Request to REST API denied"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: ../common.php:707
|
978 |
msgid "XML-RPC request denied"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: ../common.php:711
|
982 |
msgid "Bot detected"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: ../common.php:712
|
986 |
msgid "Citadel mode is active"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: ../common.php:714
|
990 |
msgid "IP blacklisted"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: ../common.php:717
|
994 |
msgid "Malicious activity detected"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: ../common.php:718
|
998 |
msgid "Blocked by country rule"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: ../common.php:719
|
1002 |
msgid "Limit reached"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: ../common.php:720
|
1006 |
msgid "Multiple suspicious activities"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: ../common.php:743
|
1010 |
msgid "Limit on login attempts is reached"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: ../common.php:744
|
1014 |
msgid "Attempt to access"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: ../common.php:747
|
1018 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: ../common.php:748
|
1022 |
msgid "Bot activity is detected"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: ../common.php:749
|
1026 |
msgid "Multiple suspicious activities were detected"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: ../common.php:805
|
1030 |
#, php-format
|
1031 |
msgid "%s ago"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: ../common.php:939
|
1035 |
msgid "New version is available"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: ../common.php:946
|
1039 |
#, php-format
|
1040 |
msgid "Update to version %s of WP Cerber"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: ../common.php:965
|
1044 |
msgid "Not specified"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: ../cerber-news.php:147
|
1048 |
msgid "Cool!"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: ../cerber-lab.php:705
|
1052 |
msgid "Want to make WP Cerber even more powerful?"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: ../cerber-lab.php:706
|
1056 |
msgid ""
|
1057 |
"Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. "
|
1058 |
"This helps the plugin team to develop new algorithms for WP Cerber that will "
|
1060 |
"everyday. You can disable the sending in the plugin settings at any time."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: ../cerber-lab.php:707
|
1064 |
msgid "OK, nail them all"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: ../cerber-lab.php:708
|
1068 |
msgid "NO, maybe later"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: ../cerber-lab.php:709 ../settings.php:354
|
1072 |
msgid "Know more"
|
1073 |
msgstr ""
|
1074 |
|
1182 |
msgid "Send notification to admin email"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: ../settings.php:92 ../settings.php:524 ../settings.php:646
|
1186 |
msgid "Click to send test"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: ../settings.php:95 ../settings.php:322
|
1190 |
msgid "Keep records for"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: ../settings.php:95 ../settings.php:168 ../settings.php:326
|
1194 |
msgid "days"
|
1195 |
msgstr ""
|
1196 |
|
1481 |
msgid "Email Address"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: ../settings.php:201 ../settings.php:233 ../settings.php:290
|
1485 |
msgid "Use comma to specify multiple values"
|
1486 |
msgstr ""
|
1487 |
|
1534 |
msgid "Enable traffic inspection"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: ../settings.php:252
|
1538 |
+
msgid "Request whitelist"
|
1539 |
+
msgstr ""
|
1540 |
+
|
1541 |
+
#: ../settings.php:258
|
1542 |
+
msgid ""
|
1543 |
+
"Enter a request URI to exclude the request from inspection. One item per "
|
1544 |
+
"line."
|
1545 |
+
msgstr ""
|
1546 |
+
|
1547 |
+
#: ../settings.php:261
|
1548 |
msgid "Logging"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: ../settings.php:262
|
1552 |
msgid "Logging mode"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: ../settings.php:268
|
1556 |
msgid "Logging disabled"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: ../settings.php:269
|
1560 |
msgid "Smart"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: ../settings.php:270
|
1564 |
msgid "All traffic"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: ../settings.php:274
|
1568 |
msgid "Ignore crawlers"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: ../settings.php:279
|
1572 |
msgid "Save request fields"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: ../settings.php:284
|
1576 |
msgid "Mask these form fields"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: ../settings.php:295
|
1580 |
+
msgid "Save request headers"
|
1581 |
+
msgstr ""
|
1582 |
+
|
1583 |
+
#: ../settings.php:301
|
1584 |
+
msgid "Save $_SERVER"
|
1585 |
+
msgstr ""
|
1586 |
+
|
1587 |
+
#: ../settings.php:307
|
1588 |
+
msgid "Save request cookies"
|
1589 |
+
msgstr ""
|
1590 |
+
|
1591 |
+
#: ../settings.php:314
|
1592 |
msgid "Page generation time threshold"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: ../settings.php:319
|
1596 |
msgid "milliseconds"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: ../settings.php:336
|
1600 |
msgid "Make your protection smarter!"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: ../settings.php:340
|
1604 |
msgid ""
|
1605 |
"Please enable Permalinks to use this feature. Set Permalink Settings to "
|
1606 |
"something other than Default."
|
1607 |
msgstr ""
|
1608 |
|
1609 |
+
#: ../settings.php:343
|
1610 |
msgid ""
|
1611 |
"Be careful when enabling this options. If you forget the custom login URL "
|
1612 |
"you will not be able to login."
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: ../settings.php:347
|
1616 |
msgid ""
|
1617 |
"In the Citadel mode nobody is able to log in except IPs from the White IP "
|
1618 |
"Access List. Active user sessions will not be affected."
|
1619 |
msgstr ""
|
1620 |
|
1621 |
+
#: ../settings.php:350
|
1622 |
msgid "These settings do not affect hosts from the "
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: ../settings.php:353
|
1626 |
msgid ""
|
1627 |
"Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
|
1628 |
"key on the Google website"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: ../settings.php:384
|
1632 |
msgid "Lockouts"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: ../settings.php:393
|
1636 |
msgid "Users"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: ../settings.php:398
|
1640 |
msgid "Help"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: ../settings.php:505 ../settings.php:627
|
1644 |
#, php-format
|
1645 |
msgid "%s allowed retries in %s minutes"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: ../settings.php:510 ../settings.php:632
|
1649 |
#, php-format
|
1650 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: ../settings.php:515 ../settings.php:637
|
1654 |
#, php-format
|
1655 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: ../settings.php:522 ../settings.php:644
|
1659 |
msgid "Notify admin if the number of active lockouts above"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: ../settings.php:527 ../settings.php:649
|
1663 |
#, php-format
|
1664 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: ../settings.php:729
|
1668 |
msgid "Sunday"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
+
#: ../settings.php:730
|
1672 |
msgid "Monday"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: ../settings.php:731
|
1676 |
msgid "Tuesday"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: ../settings.php:732
|
1680 |
msgid "Wednesday"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: ../settings.php:733
|
1684 |
msgid "Thursday"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: ../settings.php:734
|
1688 |
msgid "Friday"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: ../settings.php:735
|
1692 |
msgid "Saturday"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
#. translators: preposition of time
|
1696 |
+
#: ../settings.php:745
|
1697 |
msgctxt "preposition of time"
|
1698 |
msgid "at"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
+
#: ../settings.php:761
|
1702 |
msgid "Click to send now"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
+
#: ../settings.php:786 ../settings.php:787
|
1706 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
+
#: ../settings.php:788 ../settings.php:789
|
1710 |
msgid ""
|
1711 |
"If you use a caching plugin, you have to add your new login URL to the list "
|
1712 |
"of pages not to cache."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: ../settings.php:867 ../settings.php:879
|
1716 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
1717 |
msgstr ""
|
1718 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: security, login, protect, antispam, limit login attempts, woocommerce, cus
|
|
5 |
Requires at least: 4.4
|
6 |
Requires PHP: 5.3
|
7 |
Tested up to: 4.9
|
8 |
-
Stable tag: 6.
|
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.
|
@@ -285,6 +285,12 @@ To get access to your dashboard you need to copy the WP Cerber Reset folder to t
|
|
285 |
|
286 |
== Changelog ==
|
287 |
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
= 6.0 =
|
289 |
* New: Traffic Inspector. It’s a specialized request inspection algorithm that performs inspection all suspicious incoming HTTP requests and block them before they can harm a website.
|
290 |
* New: Traffic Inspector optionally logs all or just suspicious and malicious requests so you can inspect them.
|
5 |
Requires at least: 4.4
|
6 |
Requires PHP: 5.3
|
7 |
Tested up to: 4.9
|
8 |
+
Stable tag: 6.1
|
9 |
License: GPLv2
|
10 |
|
11 |
Protection against hacker attacks and bots. Restrict access with IP access lists, track user and bot activity. reCAPTCHA. Limit login attempts.
|
285 |
|
286 |
== Changelog ==
|
287 |
|
288 |
+
= 6.1 =
|
289 |
+
* New: Traffic Inspector has got a Request White List setting.
|
290 |
+
* New: An Activity filter for the Advanced search form on the Traffic Inspector page.
|
291 |
+
* Bug fixed: Two reCAPTCHA widgets on login/registration forms.
|
292 |
+
* Bug fixed: A legitimate IP address can be locked out by Traffic Inspector on a Windows hosting (server).
|
293 |
+
|
294 |
= 6.0 =
|
295 |
* New: Traffic Inspector. It’s a specialized request inspection algorithm that performs inspection all suspicious incoming HTTP requests and block them before they can harm a website.
|
296 |
* New: Traffic Inspector optionally logs all or just suspicious and malicious requests so you can inspect them.
|
settings.php
CHANGED
@@ -249,6 +249,14 @@ function cerber_settings_init(){
|
|
249 |
'setting' => 'tienabled',
|
250 |
'type' => 'checkbox',
|
251 |
) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
252 |
|
253 |
add_settings_section( 'tlog', __( 'Logging', 'wp-cerber' ), 'cerber_sapi_section', CERBER_OPT_T );
|
254 |
add_settings_field( 'timode', __( 'Logging mode', 'wp-cerber' ), 'cerber_field_show', CERBER_OPT_T, 'tlog',
|
@@ -905,6 +913,16 @@ function cerber_sanitize_h($new, $old, $option) {
|
|
905 |
add_filter( 'pre_update_option_'.CERBER_OPT_T, 'cerber_sanitize_t', 10, 3 );
|
906 |
function cerber_sanitize_t($new, $old, $option) {
|
907 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
908 |
$new['timask'] = cerber_text2array( $new['timask'], "," );
|
909 |
if ( $new['tithreshold'] ) {
|
910 |
$new['tithreshold'] = absint( $new['tithreshold'] );
|
@@ -1144,6 +1162,7 @@ function cerber_get_defaults($field = null) {
|
|
1144 |
),
|
1145 |
CERBER_OPT_T => array(
|
1146 |
'tienabled' => '1',
|
|
|
1147 |
'timode' => '1',
|
1148 |
'tinocrabs' => '1',
|
1149 |
'tifields' => 0,
|
249 |
'setting' => 'tienabled',
|
250 |
'type' => 'checkbox',
|
251 |
) );
|
252 |
+
add_settings_field( 'tiwhite', __( 'Request whitelist', 'wp-cerber' ), 'cerber_field_show', CERBER_OPT_T, 'tmain',
|
253 |
+
array( 'group' => $group,
|
254 |
+
'setting' => 'tiwhite',
|
255 |
+
'type' => 'textarea',
|
256 |
+
'delimiter' => "\n",
|
257 |
+
'list' => true,
|
258 |
+
'label' => __( 'Enter a request URI to exclude the request from inspection. One item per line.', 'wp-cerber' ).' <a target="_blank" href="https://wpcerber.com/traffic-inspector-in-a-nutshell/">Know more</a>',
|
259 |
+
) );
|
260 |
|
261 |
add_settings_section( 'tlog', __( 'Logging', 'wp-cerber' ), 'cerber_sapi_section', CERBER_OPT_T );
|
262 |
add_settings_field( 'timode', __( 'Logging mode', 'wp-cerber' ), 'cerber_field_show', CERBER_OPT_T, 'tlog',
|
913 |
add_filter( 'pre_update_option_'.CERBER_OPT_T, 'cerber_sanitize_t', 10, 3 );
|
914 |
function cerber_sanitize_t($new, $old, $option) {
|
915 |
|
916 |
+
$new['tiwhite'] = cerber_text2array( $new['tiwhite'], "\n" );
|
917 |
+
foreach ( $new['tiwhite'] as $item ) {
|
918 |
+
if ( strrpos( $item, '?' ) ) {
|
919 |
+
cerber_admin_notice( 'You may not specify the query string with question mark: ' . htmlspecialchars( $item ) );
|
920 |
+
}
|
921 |
+
if ( strrpos( $item, '://' ) ) {
|
922 |
+
cerber_admin_notice( 'You may not specify the full URL: ' . htmlspecialchars( $item ) );
|
923 |
+
}
|
924 |
+
}
|
925 |
+
|
926 |
$new['timask'] = cerber_text2array( $new['timask'], "," );
|
927 |
if ( $new['tithreshold'] ) {
|
928 |
$new['tithreshold'] = absint( $new['tithreshold'] );
|
1162 |
),
|
1163 |
CERBER_OPT_T => array(
|
1164 |
'tienabled' => '1',
|
1165 |
+
'tiwhite' => '',
|
1166 |
'timode' => '1',
|
1167 |
'tinocrabs' => '1',
|
1168 |
'tifields' => 0,
|
wp-cerber.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
Description: Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href="https://wpcerber.com">wpcerber.com</a>.
|
6 |
Author: Gregory
|
7 |
Author URI: https://wpcerber.com
|
8 |
-
Version: 6.
|
9 |
Text Domain: wp-cerber
|
10 |
Domain Path: /languages
|
11 |
Network: true
|
@@ -61,7 +61,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
61 |
exit;
|
62 |
}
|
63 |
|
64 |
-
define( 'CERBER_VER', '6.
|
65 |
define( 'CERBER_LOG_TABLE', 'cerber_log' );
|
66 |
define( 'CERBER_TRAF_TABLE', 'cerber_traffic' );
|
67 |
define( 'CERBER_ACL_TABLE', 'cerber_acl' );
|
@@ -598,8 +598,8 @@ class WP_Cerber {
|
|
598 |
}
|
599 |
|
600 |
global $wp_cerber;
|
601 |
-
|
602 |
-
get_wp_cerber();
|
603 |
|
604 |
/**
|
605 |
* Return correct WP_Cerber object
|
@@ -610,15 +610,12 @@ get_wp_cerber();
|
|
610 |
*/
|
611 |
function get_wp_cerber(){
|
612 |
global $wp_cerber;
|
613 |
-
static $cerber;
|
614 |
|
615 |
-
if ( ! is_object( $
|
616 |
-
$
|
617 |
}
|
618 |
|
619 |
-
$wp_cerber
|
620 |
-
|
621 |
-
return $cerber;
|
622 |
}
|
623 |
|
624 |
/**
|
@@ -627,13 +624,10 @@ function get_wp_cerber(){
|
|
627 |
*
|
628 |
*/
|
629 |
add_action( 'plugins_loaded', function () {
|
630 |
-
global $wp_cerber;
|
631 |
|
632 |
-
|
633 |
|
634 |
-
|
635 |
-
$wp_cerber = new WP_Cerber();
|
636 |
-
}
|
637 |
|
638 |
/* @since 5.8.8
|
639 |
if ( ! cerber_check_groove() && ! cerber_is_allowed() ) {
|
@@ -666,7 +660,7 @@ add_action( 'shutdown', function () {
|
|
666 |
$range = time() - 600;
|
667 |
$count = $wpdb->get_var( 'SELECT count(ip) FROM ' . CERBER_LOG_TABLE . ' WHERE ip = "' . $ip . '" AND activity IN (' . $in . ') AND stamp > ' . $range );
|
668 |
if ( $count >= 3 ) {
|
669 |
-
|
670 |
$cerber_status = 18;
|
671 |
}
|
672 |
}
|
@@ -709,7 +703,7 @@ function cerber_is_login_request() {
|
|
709 |
}
|
710 |
}
|
711 |
//elseif ( strtolower( cerber_parse_uri( true ) ) == WP_LOGIN_SCRIPT ) {
|
712 |
-
elseif (
|
713 |
return true;
|
714 |
}
|
715 |
|
@@ -1348,8 +1342,7 @@ function cerber_access_control() {
|
|
1348 |
|
1349 |
$opt = $wp_cerber->getSettings();
|
1350 |
|
1351 |
-
|
1352 |
-
$script = cerber_parse_uri();
|
1353 |
if ( substr( $script, - 4 ) != '.php' ) {
|
1354 |
$script .= '.php'; // Apache MultiViews enabled?
|
1355 |
}
|
@@ -1680,7 +1673,7 @@ function cerber_cookie2( $logged_in_cookie, $expire, $expiration, $user_id, $log
|
|
1680 |
|
1681 |
function cerber_set_cookie( $expire ) {
|
1682 |
if ( ! headers_sent() ) {
|
1683 |
-
setcookie( 'cerber_groove', cerber_get_groove(), $expire + 1, COOKIEPATH );
|
1684 |
}
|
1685 |
}
|
1686 |
|
@@ -1698,12 +1691,13 @@ function cerber_cookie_bad( $cookie_elements ) {
|
|
1698 |
*/
|
1699 |
function cerber_get_groove() {
|
1700 |
$groove = cerber_get_site_option( 'cerber-groove', false );
|
|
|
1701 |
if ( empty( $groove ) ) {
|
1702 |
$groove = wp_generate_password( 16, false );
|
1703 |
update_site_option( 'cerber-groove', $groove );
|
1704 |
}
|
1705 |
|
1706 |
-
return
|
1707 |
}
|
1708 |
|
1709 |
/*
|
@@ -1716,7 +1710,7 @@ function cerber_check_groove( $hash = '' ) {
|
|
1716 |
}
|
1717 |
$hash = $_COOKIE['cerber_groove'];
|
1718 |
}
|
1719 |
-
$groove =
|
1720 |
if ( $hash == md5( $groove ) ) {
|
1721 |
return true;
|
1722 |
}
|
@@ -1727,7 +1721,7 @@ function cerber_check_groove( $hash = '' ) {
|
|
1727 |
/**
|
1728 |
* Is bot detection engine enabled in a given rule_id
|
1729 |
*
|
1730 |
-
* @param $
|
1731 |
*
|
1732 |
* @return bool true if enabled
|
1733 |
*/
|
@@ -1900,22 +1894,25 @@ function cerber_is_bot($location = '') {
|
|
1900 |
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
|
1901 |
if ( is_user_logged_in() ) {
|
1902 |
$ret = false;
|
1903 |
-
|
1904 |
-
return $ret;
|
1905 |
}
|
|
|
|
|
|
|
|
|
|
|
1906 |
elseif ( crb_get_settings( 'botssafe' ) ) {
|
1907 |
$ret = false;
|
1908 |
-
|
1909 |
-
return $ret;
|
1910 |
}
|
1911 |
}
|
1912 |
else {
|
1913 |
$ret = false;
|
1914 |
-
|
1915 |
-
return $ret;
|
1916 |
}
|
1917 |
}
|
1918 |
|
|
|
|
|
|
|
|
|
1919 |
if ( ! cerber_antibot_enabled( $location ) ) {
|
1920 |
$ret = false;
|
1921 |
|
@@ -1956,9 +1953,7 @@ function cerber_is_bot($location = '') {
|
|
1956 |
|
1957 |
if ( $ret ) {
|
1958 |
$cerber_status = 11;
|
1959 |
-
|
1960 |
-
lab_save_push( $wp_cerber->getRemoteIp(), 333, '' );
|
1961 |
-
}
|
1962 |
}
|
1963 |
}
|
1964 |
|
@@ -2192,9 +2187,7 @@ function cerber_block_add( $ip = '', $reason_id = 1, $details = '', $duration =
|
|
2192 |
|
2193 |
$ip_address = $ip;
|
2194 |
|
2195 |
-
|
2196 |
-
lab_save_push( $ip, $reason_id, $details );
|
2197 |
-
}
|
2198 |
|
2199 |
if ( $wp_cerber->getSettings( 'subnet' ) ) {
|
2200 |
$ip = cerber_get_subnet( $ip );
|
@@ -2945,14 +2938,24 @@ function cerber_forbidden_page() {
|
|
2945 |
status_header( '403' );
|
2946 |
header( 'HTTP/1.0 403 Access Forbidden', true, 403 );
|
2947 |
?>
|
2948 |
-
|
|
|
|
|
2949 |
<head><title>403 Access Forbidden</title></head>
|
2950 |
-
<body>
|
2951 |
<div style="display: flex; align-items: center; justify-content: center; height: 70%;">
|
2952 |
<div style="background-color: #eee; width: 70%; border: solid 3px #ddd; padding: 1.5em 3em 3em 3em; font-family: Arial, Helvetica, sans-serif;">
|
2953 |
-
<
|
2954 |
-
|
2955 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2956 |
</div>
|
2957 |
</div>
|
2958 |
</body>
|
@@ -3209,6 +3212,7 @@ function cerber_send_notify( $type = '', $msg = '', $ip = '' ) {
|
|
3209 |
|
3210 |
// Everything is prepared, let's send it out
|
3211 |
|
|
|
3212 |
if ( $to && $subj && $body ) {
|
3213 |
if ( ! $html_mode ) {
|
3214 |
cerber_pb_send( $subj, $body.$footer );
|
@@ -3243,9 +3247,6 @@ function cerber_send_notify( $type = '', $msg = '', $ip = '' ) {
|
|
3243 |
}
|
3244 |
}
|
3245 |
}
|
3246 |
-
else {
|
3247 |
-
$result = false;
|
3248 |
-
}
|
3249 |
|
3250 |
remove_filter('wp_mail_content_type', 'cerber_enable_html');
|
3251 |
|
@@ -3660,7 +3661,7 @@ function cerber_log( $activity, $login = '', $user_id = 0, $ip = null ) {
|
|
3660 |
}
|
3661 |
}
|
3662 |
|
3663 |
-
if ( in_array( $activity, array( 16, 17, 40 ) )
|
3664 |
lab_save_push( $ip, $activity, '' );
|
3665 |
}
|
3666 |
|
@@ -3962,7 +3963,7 @@ function cerber_create_db($recreate = true) {
|
|
3962 |
|
3963 |
if ($recreate || !cerber_is_table(CERBER_LAB_IP_TABLE)){
|
3964 |
if ( $recreate && cerber_is_table( CERBER_LAB_IP_TABLE ) ) {
|
3965 |
-
$sql[] = 'DROP TABLE ' . CERBER_LAB_IP_TABLE;
|
3966 |
}
|
3967 |
$sql[] = "
|
3968 |
CREATE TABLE IF NOT EXISTS " . CERBER_LAB_IP_TABLE . " (
|
@@ -3976,7 +3977,7 @@ function cerber_create_db($recreate = true) {
|
|
3976 |
|
3977 |
if ( $recreate || ! cerber_is_table( CERBER_LAB_NET_TABLE ) ) {
|
3978 |
if ( $recreate && cerber_is_table( CERBER_LAB_NET_TABLE ) ) {
|
3979 |
-
$sql[] = 'DROP TABLE ' . CERBER_LAB_NET_TABLE;
|
3980 |
}
|
3981 |
$sql[] = '
|
3982 |
CREATE TABLE IF NOT EXISTS ' . CERBER_LAB_NET_TABLE . ' (
|
@@ -4083,6 +4084,11 @@ function cerber_upgrade_db( $force = false ) {
|
|
4083 |
';
|
4084 |
}
|
4085 |
|
|
|
|
|
|
|
|
|
|
|
4086 |
if (!empty($sql)) {
|
4087 |
foreach ( $sql as $query ) {
|
4088 |
if ( !$wpdb->query( $query ) && $wpdb->last_error ) {
|
@@ -4091,7 +4097,6 @@ function cerber_upgrade_db( $force = false ) {
|
|
4091 |
}
|
4092 |
}
|
4093 |
|
4094 |
-
|
4095 |
// Convert existing data into the new format
|
4096 |
$rows = $wpdb->get_results( 'SELECT * FROM ' . CERBER_ACL_TABLE );
|
4097 |
if ( $rows ) {
|
@@ -4356,22 +4361,20 @@ function cerber_traffic_log(){
|
|
4356 |
|
4357 |
$wp_cerber = get_wp_cerber();
|
4358 |
|
4359 |
-
$wp_type =
|
4360 |
|
4361 |
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
|
|
|
4362 |
if ( isset( $_POST['action'] ) && $_POST['action'] == 'heartbeat' ) {
|
4363 |
return;
|
4364 |
-
}
|
4365 |
$wp_type = 500;
|
4366 |
-
return;
|
4367 |
}
|
4368 |
elseif ( is_admin() ) {
|
4369 |
$wp_type = 501;
|
4370 |
-
return;
|
4371 |
}
|
4372 |
elseif ( defined( 'DOING_CRON' ) && DOING_CRON ) {
|
4373 |
$wp_type = 502;
|
4374 |
-
return;
|
4375 |
}
|
4376 |
elseif ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST ) {
|
4377 |
$wp_type = 515;
|
@@ -4631,21 +4634,37 @@ function cerber_to_log($wp_type = 0, $http_code, $user_id){
|
|
4631 |
return false;
|
4632 |
}
|
4633 |
if ($mode == 2) {
|
|
|
|
|
|
|
4634 |
return true;
|
4635 |
}
|
4636 |
|
4637 |
-
// Smart mode
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4638 |
if ( $http_code >= 400 ||
|
4639 |
$wp_type < 600 ||
|
4640 |
$user_id ||
|
4641 |
cerber_is_http_post() ||
|
4642 |
-
! empty( $cerber_logged ) ||
|
4643 |
isset($_GET['s']) ||
|
4644 |
cerber_get_non_wp_fields()){
|
4645 |
return true;
|
4646 |
}
|
4647 |
-
|
4648 |
-
if (
|
4649 |
return true;
|
4650 |
}
|
4651 |
|
@@ -4747,8 +4766,16 @@ function cerber_get_non_wp_fields($fields = array()) {
|
|
4747 |
return array();
|
4748 |
}
|
4749 |
|
4750 |
-
|
4751 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4752 |
$wp_keys[] = 'redirect_to';
|
4753 |
$wp_keys[] = 'reauth';
|
4754 |
$wp_keys[] = 'action';
|
@@ -4775,29 +4802,38 @@ function cerber_get_non_wp_fields($fields = array()) {
|
|
4775 |
*/
|
4776 |
function cerber_beast(){
|
4777 |
global $cerber_status;
|
4778 |
-
//cerber_post_control();
|
4779 |
-
//cerber_access_control();
|
4780 |
|
4781 |
-
if (
|
|
|
|
|
|
|
4782 |
return;
|
4783 |
}
|
4784 |
|
4785 |
-
if (
|
4786 |
return;
|
4787 |
}
|
4788 |
|
4789 |
-
// No checks for IPs from the White Access List
|
4790 |
$acl = cerber_acl_check();
|
4791 |
if ( $acl == 'W' ) {
|
4792 |
return;
|
4793 |
}
|
4794 |
|
4795 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4796 |
|
4797 |
-
if (
|
4798 |
-
//
|
4799 |
-
|
4800 |
-
if ($script_file != $uri_script){ //
|
4801 |
$wp_cerber = get_wp_cerber();
|
4802 |
$cerber_status = 13;
|
4803 |
cerber_log( 55 );
|
5 |
Description: Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href="https://wpcerber.com">wpcerber.com</a>.
|
6 |
Author: Gregory
|
7 |
Author URI: https://wpcerber.com
|
8 |
+
Version: 6.1
|
9 |
Text Domain: wp-cerber
|
10 |
Domain Path: /languages
|
11 |
Network: true
|
61 |
exit;
|
62 |
}
|
63 |
|
64 |
+
define( 'CERBER_VER', '6.1' );
|
65 |
define( 'CERBER_LOG_TABLE', 'cerber_log' );
|
66 |
define( 'CERBER_TRAF_TABLE', 'cerber_traffic' );
|
67 |
define( 'CERBER_ACL_TABLE', 'cerber_acl' );
|
598 |
}
|
599 |
|
600 |
global $wp_cerber;
|
601 |
+
//$wp_cerber = new WP_Cerber();
|
602 |
+
$wp_cerber = get_wp_cerber();
|
603 |
|
604 |
/**
|
605 |
* Return correct WP_Cerber object
|
610 |
*/
|
611 |
function get_wp_cerber(){
|
612 |
global $wp_cerber;
|
|
|
613 |
|
614 |
+
if ( ! is_object( $wp_cerber ) || !($wp_cerber instanceof WP_Cerber)) {
|
615 |
+
$wp_cerber = new WP_Cerber();
|
616 |
}
|
617 |
|
618 |
+
return $wp_cerber;
|
|
|
|
|
619 |
}
|
620 |
|
621 |
/**
|
624 |
*
|
625 |
*/
|
626 |
add_action( 'plugins_loaded', function () {
|
|
|
627 |
|
628 |
+
get_wp_cerber();
|
629 |
|
630 |
+
load_plugin_textdomain( 'wp-cerber', false, basename( dirname( __FILE__ ) ) . '/languages' );
|
|
|
|
|
631 |
|
632 |
/* @since 5.8.8
|
633 |
if ( ! cerber_check_groove() && ! cerber_is_allowed() ) {
|
660 |
$range = time() - 600;
|
661 |
$count = $wpdb->get_var( 'SELECT count(ip) FROM ' . CERBER_LOG_TABLE . ' WHERE ip = "' . $ip . '" AND activity IN (' . $in . ') AND stamp > ' . $range );
|
662 |
if ( $count >= 3 ) {
|
663 |
+
cerber_soft_block_add( $ip, 7 );
|
664 |
$cerber_status = 18;
|
665 |
}
|
666 |
}
|
703 |
}
|
704 |
}
|
705 |
//elseif ( strtolower( cerber_parse_uri( true ) ) == WP_LOGIN_SCRIPT ) {
|
706 |
+
elseif ( cerber_get_uri_script() == WP_LOGIN_SCRIPT ) {
|
707 |
return true;
|
708 |
}
|
709 |
|
1342 |
|
1343 |
$opt = $wp_cerber->getSettings();
|
1344 |
|
1345 |
+
$script = cerber_last_uri();
|
|
|
1346 |
if ( substr( $script, - 4 ) != '.php' ) {
|
1347 |
$script .= '.php'; // Apache MultiViews enabled?
|
1348 |
}
|
1673 |
|
1674 |
function cerber_set_cookie( $expire ) {
|
1675 |
if ( ! headers_sent() ) {
|
1676 |
+
setcookie( 'cerber_groove', md5( cerber_get_groove() ), $expire + 1, COOKIEPATH );
|
1677 |
}
|
1678 |
}
|
1679 |
|
1691 |
*/
|
1692 |
function cerber_get_groove() {
|
1693 |
$groove = cerber_get_site_option( 'cerber-groove', false );
|
1694 |
+
|
1695 |
if ( empty( $groove ) ) {
|
1696 |
$groove = wp_generate_password( 16, false );
|
1697 |
update_site_option( 'cerber-groove', $groove );
|
1698 |
}
|
1699 |
|
1700 |
+
return $groove;
|
1701 |
}
|
1702 |
|
1703 |
/*
|
1710 |
}
|
1711 |
$hash = $_COOKIE['cerber_groove'];
|
1712 |
}
|
1713 |
+
$groove = cerber_get_groove();
|
1714 |
if ( $hash == md5( $groove ) ) {
|
1715 |
return true;
|
1716 |
}
|
1721 |
/**
|
1722 |
* Is bot detection engine enabled in a given rule_id
|
1723 |
*
|
1724 |
+
* @param $location string|array ID of the location
|
1725 |
*
|
1726 |
* @return bool true if enabled
|
1727 |
*/
|
1894 |
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
|
1895 |
if ( is_user_logged_in() ) {
|
1896 |
$ret = false;
|
|
|
|
|
1897 |
}
|
1898 |
+
elseif ( ! empty( $_POST['action'] ) ) {
|
1899 |
+
if ($_POST['action'] == 'heartbeat'){ // WP heartbeat
|
1900 |
+
$ret = false;
|
1901 |
+
}
|
1902 |
+
}
|
1903 |
elseif ( crb_get_settings( 'botssafe' ) ) {
|
1904 |
$ret = false;
|
|
|
|
|
1905 |
}
|
1906 |
}
|
1907 |
else {
|
1908 |
$ret = false;
|
|
|
|
|
1909 |
}
|
1910 |
}
|
1911 |
|
1912 |
+
if ($ret !== null) {
|
1913 |
+
return $ret;
|
1914 |
+
}
|
1915 |
+
|
1916 |
if ( ! cerber_antibot_enabled( $location ) ) {
|
1917 |
$ret = false;
|
1918 |
|
1953 |
|
1954 |
if ( $ret ) {
|
1955 |
$cerber_status = 11;
|
1956 |
+
lab_save_push( $wp_cerber->getRemoteIp(), 333, '' );
|
|
|
|
|
1957 |
}
|
1958 |
}
|
1959 |
|
2187 |
|
2188 |
$ip_address = $ip;
|
2189 |
|
2190 |
+
lab_save_push( $ip, $reason_id, $details );
|
|
|
|
|
2191 |
|
2192 |
if ( $wp_cerber->getSettings( 'subnet' ) ) {
|
2193 |
$ip = cerber_get_subnet( $ip );
|
2938 |
status_header( '403' );
|
2939 |
header( 'HTTP/1.0 403 Access Forbidden', true, 403 );
|
2940 |
?>
|
2941 |
+
<!DOCTYPE html>
|
2942 |
+
<html style="height: 100%;">
|
2943 |
+
<meta charset="UTF-8">
|
2944 |
<head><title>403 Access Forbidden</title></head>
|
2945 |
+
<body style="height: 100%;">
|
2946 |
<div style="display: flex; align-items: center; justify-content: center; height: 70%;">
|
2947 |
<div style="background-color: #eee; width: 70%; border: solid 3px #ddd; padding: 1.5em 3em 3em 3em; font-family: Arial, Helvetica, sans-serif;">
|
2948 |
+
<div style="display: table-row;">
|
2949 |
+
<div style="display: table-cell; font-size: 150px; color: red; vertical-align: middle; padding-right: 50px;">
|
2950 |
+
✋
|
2951 |
+
</div>
|
2952 |
+
<div style="display: table-cell; vertical-align: middle;">
|
2953 |
+
<h1><?php _e("We're sorry, you are not allowed to proceed", 'wp-cerber'); ?></h1>
|
2954 |
+
<p>Our server stopped processing your request. Your request looks suspicious or similar to automated
|
2955 |
+
requests from spam posting software.</p>
|
2956 |
+
<p>If you believe you should be able to perform this request, please let us know.</p>
|
2957 |
+
</div>
|
2958 |
+
</div>
|
2959 |
</div>
|
2960 |
</div>
|
2961 |
</body>
|
3212 |
|
3213 |
// Everything is prepared, let's send it out
|
3214 |
|
3215 |
+
$result = null;
|
3216 |
if ( $to && $subj && $body ) {
|
3217 |
if ( ! $html_mode ) {
|
3218 |
cerber_pb_send( $subj, $body.$footer );
|
3247 |
}
|
3248 |
}
|
3249 |
}
|
|
|
|
|
|
|
3250 |
|
3251 |
remove_filter('wp_mail_content_type', 'cerber_enable_html');
|
3252 |
|
3661 |
}
|
3662 |
}
|
3663 |
|
3664 |
+
if ( in_array( $activity, array( 16, 17, 40 ) ) ) {
|
3665 |
lab_save_push( $ip, $activity, '' );
|
3666 |
}
|
3667 |
|
3963 |
|
3964 |
if ($recreate || !cerber_is_table(CERBER_LAB_IP_TABLE)){
|
3965 |
if ( $recreate && cerber_is_table( CERBER_LAB_IP_TABLE ) ) {
|
3966 |
+
$sql[] = 'DROP TABLE IF EXISTS ' . CERBER_LAB_IP_TABLE;
|
3967 |
}
|
3968 |
$sql[] = "
|
3969 |
CREATE TABLE IF NOT EXISTS " . CERBER_LAB_IP_TABLE . " (
|
3977 |
|
3978 |
if ( $recreate || ! cerber_is_table( CERBER_LAB_NET_TABLE ) ) {
|
3979 |
if ( $recreate && cerber_is_table( CERBER_LAB_NET_TABLE ) ) {
|
3980 |
+
$sql[] = 'DROP TABLE IF EXISTS ' . CERBER_LAB_NET_TABLE;
|
3981 |
}
|
3982 |
$sql[] = '
|
3983 |
CREATE TABLE IF NOT EXISTS ' . CERBER_LAB_NET_TABLE . ' (
|
4084 |
';
|
4085 |
}
|
4086 |
|
4087 |
+
// @since 6.1
|
4088 |
+
if ( $force || !cerber_is_index( CERBER_LOG_TABLE, 'session_index' ) ) {
|
4089 |
+
$sql[] = 'ALTER TABLE ' . CERBER_LOG_TABLE . ' ADD INDEX session_index (session_id)';
|
4090 |
+
}
|
4091 |
+
|
4092 |
if (!empty($sql)) {
|
4093 |
foreach ( $sql as $query ) {
|
4094 |
if ( !$wpdb->query( $query ) && $wpdb->last_error ) {
|
4097 |
}
|
4098 |
}
|
4099 |
|
|
|
4100 |
// Convert existing data into the new format
|
4101 |
$rows = $wpdb->get_results( 'SELECT * FROM ' . CERBER_ACL_TABLE );
|
4102 |
if ( $rows ) {
|
4361 |
|
4362 |
$wp_cerber = get_wp_cerber();
|
4363 |
|
4364 |
+
$wp_type = 700;
|
4365 |
|
4366 |
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
|
4367 |
+
/*
|
4368 |
if ( isset( $_POST['action'] ) && $_POST['action'] == 'heartbeat' ) {
|
4369 |
return;
|
4370 |
+
}*/
|
4371 |
$wp_type = 500;
|
|
|
4372 |
}
|
4373 |
elseif ( is_admin() ) {
|
4374 |
$wp_type = 501;
|
|
|
4375 |
}
|
4376 |
elseif ( defined( 'DOING_CRON' ) && DOING_CRON ) {
|
4377 |
$wp_type = 502;
|
|
|
4378 |
}
|
4379 |
elseif ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST ) {
|
4380 |
$wp_type = 515;
|
4634 |
return false;
|
4635 |
}
|
4636 |
if ($mode == 2) {
|
4637 |
+
if ($wp_type < 515) { // Pure admin requests
|
4638 |
+
return false;
|
4639 |
+
}
|
4640 |
return true;
|
4641 |
}
|
4642 |
|
4643 |
+
// Smart mode ---------------------------------------------------------
|
4644 |
+
|
4645 |
+
if ( ! empty( $cerber_logged ) ) {
|
4646 |
+
$tmp = $cerber_logged;
|
4647 |
+
unset( $tmp[7] );
|
4648 |
+
unset( $tmp[51] );
|
4649 |
+
if ( ! empty( $tmp ) ) {
|
4650 |
+
return true;
|
4651 |
+
}
|
4652 |
+
}
|
4653 |
+
|
4654 |
+
if ($wp_type < 515) {
|
4655 |
+
return false;
|
4656 |
+
}
|
4657 |
+
|
4658 |
if ( $http_code >= 400 ||
|
4659 |
$wp_type < 600 ||
|
4660 |
$user_id ||
|
4661 |
cerber_is_http_post() ||
|
|
|
4662 |
isset($_GET['s']) ||
|
4663 |
cerber_get_non_wp_fields()){
|
4664 |
return true;
|
4665 |
}
|
4666 |
+
|
4667 |
+
if ( cerber_get_uri_script() ) {
|
4668 |
return true;
|
4669 |
}
|
4670 |
|
4766 |
return array();
|
4767 |
}
|
4768 |
|
4769 |
+
if ( is_object($wp_query) ) {
|
4770 |
+
$keys = $wp_query->fill_query_vars( array() );
|
4771 |
+
}
|
4772 |
+
else {
|
4773 |
+
$tmp = new WP_Query();
|
4774 |
+
$keys = $tmp->fill_query_vars( array() );
|
4775 |
+
}
|
4776 |
+
|
4777 |
+
$wp_keys = array_keys( $keys ); // WordPress GET fields for frontend
|
4778 |
+
|
4779 |
$wp_keys[] = 'redirect_to';
|
4780 |
$wp_keys[] = 'reauth';
|
4781 |
$wp_keys[] = 'action';
|
4802 |
*/
|
4803 |
function cerber_beast(){
|
4804 |
global $cerber_status;
|
|
|
|
|
4805 |
|
4806 |
+
if ( is_admin()
|
4807 |
+
|| ( defined( 'DOING_CRON' ) && DOING_CRON )
|
4808 |
+
|| ( defined( 'WP_CLI' ) && WP_CLI )
|
4809 |
+
) {
|
4810 |
return;
|
4811 |
}
|
4812 |
|
4813 |
+
if ( !crb_get_settings( 'tienabled' ) ) {
|
4814 |
return;
|
4815 |
}
|
4816 |
|
|
|
4817 |
$acl = cerber_acl_check();
|
4818 |
if ( $acl == 'W' ) {
|
4819 |
return;
|
4820 |
}
|
4821 |
|
4822 |
+
$uri = cerber_purify_uri();
|
4823 |
+
|
4824 |
+
if ( $tiwhite = crb_get_settings( 'tiwhite' ) ) {
|
4825 |
+
foreach ( (array)$tiwhite as $item ) {
|
4826 |
+
if ($item == $uri){
|
4827 |
+
return;
|
4828 |
+
}
|
4829 |
+
}
|
4830 |
+
}
|
4831 |
+
|
4832 |
+
$uri_script = cerber_get_uri_script();
|
4833 |
|
4834 |
+
if ( $uri_script && $script_filename = cerber_script_filename() ) {
|
4835 |
+
// Scaning for executable scripts?
|
4836 |
+
if ( false === strrpos( $script_filename, $uri ) ) {
|
|
|
4837 |
$wp_cerber = get_wp_cerber();
|
4838 |
$cerber_status = 13;
|
4839 |
cerber_log( 55 );
|