Version Description
- New: You can add comments for new entries in the access lists
- Improved compatibility with exotic hosting environments: now the plugin handles URLs with the MultiViews server option enabled.
- Improved compatibility with caching plugins
- Bug fixed: The plugin logs a logout event if the actual logout doesn't happen
- Read more
Download this release
Release Info
Developer | Gioni |
Plugin | Cerber Security & Antispam |
Version | 5.9 |
Comparing to | |
See all releases |
Code changes from version 5.8.6 to 5.9
- assets/admin.css +25 -5
- cerber-lab.php +1 -1
- cerber-news.php +6 -0
- cerber-tools.php +11 -7
- common.php +42 -1
- dashboard.php +89 -63
- languages/wp-cerber-de_DE.mo +0 -0
- languages/wp-cerber-de_DE.po +272 -254
- languages/wp-cerber-es_ES.mo +0 -0
- languages/wp-cerber-es_ES.po +228 -212
- languages/wp-cerber-it_IT.mo +0 -0
- languages/wp-cerber-it_IT.po +479 -362
- languages/wp-cerber-nl_NL.mo +0 -0
- languages/wp-cerber-nl_NL.po +231 -214
- languages/wp-cerber-pl_PL.mo +0 -0
- languages/wp-cerber-pl_PL.po +479 -363
- languages/wp-cerber-ru_RU.mo +0 -0
- languages/wp-cerber-ru_RU.po +535 -495
- languages/wp-cerber.pot +357 -349
- readme.txt +17 -4
- settings.php +67 -12
- wp-cerber.php +176 -108
assets/admin.css
CHANGED
@@ -400,12 +400,14 @@ p.act-url{
|
|
400 |
.acl-wrapper {
|
401 |
margin-bottom: 30px;
|
402 |
width: 100%;
|
403 |
-
max-width:
|
404 |
}
|
405 |
|
|
|
406 |
.acl-wrapper table td:first-child {
|
407 |
-
width:
|
408 |
-
|
|
|
409 |
|
410 |
.acl-wrapper form table {
|
411 |
margin-top: 1em;
|
@@ -415,16 +417,23 @@ p.act-url{
|
|
415 |
.acl-wrapper form table td {
|
416 |
padding: 0;
|
417 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
418 |
.acl-wrapper form input[type="text"]{
|
419 |
width:100%;
|
420 |
}
|
421 |
|
|
|
422 |
.acl-items {
|
423 |
border: 1px solid #aaa;
|
424 |
background-color: #fff;
|
425 |
-
|
426 |
max-height:400px;
|
427 |
overflow: auto;
|
|
|
428 |
}
|
429 |
|
430 |
.acl-table {
|
@@ -433,10 +442,22 @@ p.act-url{
|
|
433 |
width: 100%;
|
434 |
}
|
435 |
.acl-table td:first-child {
|
|
|
436 |
white-space: pre;
|
437 |
font-family: Consolas, Monaco, monospace;
|
438 |
font-size: 110%;
|
439 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
440 |
.acl-table td {
|
441 |
padding: 6px;
|
442 |
background-color: #f5f5f5;
|
@@ -444,7 +465,6 @@ p.act-url{
|
|
444 |
.acl-table tr td:not(:first-child) {
|
445 |
/*.acl-table tr td:nth-child(2) {*/
|
446 |
/*width: 20%;*/
|
447 |
-
text-align: center;
|
448 |
}
|
449 |
|
450 |
|
400 |
.acl-wrapper {
|
401 |
margin-bottom: 30px;
|
402 |
width: 100%;
|
403 |
+
max-width: 1000px;
|
404 |
}
|
405 |
|
406 |
+
/*
|
407 |
.acl-wrapper table td:first-child {
|
408 |
+
width: 30%;
|
409 |
+
padding-right: 4px;
|
410 |
+
}*/
|
411 |
|
412 |
.acl-wrapper form table {
|
413 |
margin-top: 1em;
|
417 |
.acl-wrapper form table td {
|
418 |
padding: 0;
|
419 |
}
|
420 |
+
.acl-wrapper form table td:first-child {
|
421 |
+
width: 35%;
|
422 |
+
}
|
423 |
+
.acl-wrapper form table td:nth-child(2) {
|
424 |
+
padding-left: 4px;
|
425 |
+
}
|
426 |
.acl-wrapper form input[type="text"]{
|
427 |
width:100%;
|
428 |
}
|
429 |
|
430 |
+
|
431 |
.acl-items {
|
432 |
border: 1px solid #aaa;
|
433 |
background-color: #fff;
|
|
|
434 |
max-height:400px;
|
435 |
overflow: auto;
|
436 |
+
border-collapse: collapse;
|
437 |
}
|
438 |
|
439 |
.acl-table {
|
442 |
width: 100%;
|
443 |
}
|
444 |
.acl-table td:first-child {
|
445 |
+
width: 35%;
|
446 |
white-space: pre;
|
447 |
font-family: Consolas, Monaco, monospace;
|
448 |
font-size: 110%;
|
449 |
}
|
450 |
+
.acl-table td:nth-child(2) {
|
451 |
+
width: 40%;
|
452 |
+
}
|
453 |
+
.acl-table td:nth-child(3) {
|
454 |
+
width: 10%;
|
455 |
+
text-align: center;
|
456 |
+
}
|
457 |
+
.acl-table td:nth-child(4) {
|
458 |
+
width: 15%;
|
459 |
+
text-align: center;
|
460 |
+
}
|
461 |
.acl-table td {
|
462 |
padding: 6px;
|
463 |
background-color: #f5f5f5;
|
465 |
.acl-table tr td:not(:first-child) {
|
466 |
/*.acl-table tr td:nth-child(2) {*/
|
467 |
/*width: 20%;*/
|
|
|
468 |
}
|
469 |
|
470 |
|
cerber-lab.php
CHANGED
@@ -815,7 +815,7 @@ function lab_geo_update( $ip = '', $data = array() ) {
|
|
815 |
$where = ' WHERE ip = "' . $ip . '"';
|
816 |
}
|
817 |
|
818 |
-
$exists = $wpdb->get_var( 'SELECT
|
819 |
|
820 |
if ($exists){
|
821 |
$wpdb->query( 'UPDATE ' . CERBER_LAB_NET_TABLE . " SET expires = $expires, country = '$code' $where");
|
815 |
$where = ' WHERE ip = "' . $ip . '"';
|
816 |
}
|
817 |
|
818 |
+
$exists = $wpdb->get_var( 'SELECT ip FROM ' . CERBER_LAB_NET_TABLE . $where );
|
819 |
|
820 |
if ($exists){
|
821 |
$wpdb->query( 'UPDATE ' . CERBER_LAB_NET_TABLE . " SET expires = $expires, country = '$code' $where");
|
cerber-news.php
CHANGED
@@ -106,6 +106,12 @@ function cerber_push_the_news( $version ) {
|
|
106 |
$news['5.8.6'][] = 'Improved compatibility with non-standard authentication processes, WooCommerce and exotic/outdated hosting environments.';
|
107 |
$news['5.8.6'][] = 'Bug fixed: Some interface elements of WordPress Customizer might not work, depending on the theme you use.';
|
108 |
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
if ( ! empty( $news[ $version ] ) ) {
|
110 |
//$text = '<h3>What\'s new in WP Cerber '.$version.'</h3>';
|
111 |
|
106 |
$news['5.8.6'][] = 'Improved compatibility with non-standard authentication processes, WooCommerce and exotic/outdated hosting environments.';
|
107 |
$news['5.8.6'][] = 'Bug fixed: Some interface elements of WordPress Customizer might not work, depending on the theme you use.';
|
108 |
|
109 |
+
$news['5.9'][] = 'You can add comments for new entries in the access lists';
|
110 |
+
$news['5.9'][] = 'Improved compatibility with exotic hosting environments: now the plugin handles URLs with the MultiViews server option enabled.';
|
111 |
+
$news['5.9'][] = 'Improved compatibility with caching plugins';
|
112 |
+
$news['5.9'][] = 'The plugin doesn’t send cookies if anti-spam is completely disabled';
|
113 |
+
$news['5.9'][] = 'Bug fixed: The plugin logs a logout event if the actual logout doesn’t happen';
|
114 |
+
|
115 |
if ( ! empty( $news[ $version ] ) ) {
|
116 |
//$text = '<h3>What\'s new in WP Cerber '.$version.'</h3>';
|
117 |
|
cerber-tools.php
CHANGED
@@ -103,7 +103,7 @@ function cerber_show_imex(){
|
|
103 |
*/
|
104 |
add_action('admin_init','cerber_export');
|
105 |
function cerber_export(){
|
106 |
-
if (
|
107 |
return;
|
108 |
}
|
109 |
if ( ! current_user_can( 'manage_options' ) ) {
|
@@ -116,7 +116,7 @@ function cerber_export(){
|
|
116 |
$data ['geo-rules'] = cerber_geo_rules();
|
117 |
}
|
118 |
if ( ! empty( $_GET['exportacl'] ) ) {
|
119 |
-
$data ['acl'] = cerber_acl_all( 'ip,tag,comments' );
|
120 |
}
|
121 |
$file = json_encode($data);
|
122 |
$file .= '==/'.strlen($file).'/'.crc32($file).'/EOF';
|
@@ -127,13 +127,17 @@ function cerber_export(){
|
|
127 |
echo $file;
|
128 |
exit;
|
129 |
}
|
130 |
-
|
131 |
-
|
132 |
-
|
|
|
|
|
133 |
add_action('admin_init','cerber_import');
|
134 |
function cerber_import(){
|
135 |
global $wpdb, $wp_cerber;
|
136 |
-
if (!isset($_POST['cerber_import']) ||
|
|
|
|
|
137 |
check_admin_referer('crb_import','crb_field');
|
138 |
if (!current_user_can('manage_options')) wp_die('Upload failed.');
|
139 |
$ok = true;
|
@@ -166,7 +170,7 @@ function cerber_import(){
|
|
166 |
// if (!$wpdb->query($wpdb->prepare('INSERT INTO '.CERBER_ACL_TABLE.' (ip,tag,comments) VALUES (%s,%s,%s)',$row[0],$row[1],$row[2]))) $acl_ok = false;
|
167 |
// @since 3.1 if (!$wpdb->insert(CERBER_ACL_TABLE,array('ip'=>$row[0],'tag'=>$row[1],'comments'=>$row[2]),array('%s','%s','%s'))) $acl_ok = false;
|
168 |
$ip = cerber_parse_ip($row[0]);
|
169 |
-
if (!cerber_acl_add($ip
|
170 |
$acl_ok = false;
|
171 |
break;
|
172 |
}
|
103 |
*/
|
104 |
add_action('admin_init','cerber_export');
|
105 |
function cerber_export(){
|
106 |
+
if ( !cerber_is_http_get() || ! isset( $_GET['cerber_export'] ) ) {
|
107 |
return;
|
108 |
}
|
109 |
if ( ! current_user_can( 'manage_options' ) ) {
|
116 |
$data ['geo-rules'] = cerber_geo_rules();
|
117 |
}
|
118 |
if ( ! empty( $_GET['exportacl'] ) ) {
|
119 |
+
$data ['acl'] = cerber_acl_all( 'ip, tag, comments' );
|
120 |
}
|
121 |
$file = json_encode($data);
|
122 |
$file .= '==/'.strlen($file).'/'.crc32($file).'/EOF';
|
127 |
echo $file;
|
128 |
exit;
|
129 |
}
|
130 |
+
|
131 |
+
/**
|
132 |
+
* Import plugin settings from a file
|
133 |
+
*
|
134 |
+
*/
|
135 |
add_action('admin_init','cerber_import');
|
136 |
function cerber_import(){
|
137 |
global $wpdb, $wp_cerber;
|
138 |
+
if ( ! isset( $_POST['cerber_import'] ) || ! cerber_is_http_post() ) {
|
139 |
+
return;
|
140 |
+
}
|
141 |
check_admin_referer('crb_import','crb_field');
|
142 |
if (!current_user_can('manage_options')) wp_die('Upload failed.');
|
143 |
$ok = true;
|
170 |
// if (!$wpdb->query($wpdb->prepare('INSERT INTO '.CERBER_ACL_TABLE.' (ip,tag,comments) VALUES (%s,%s,%s)',$row[0],$row[1],$row[2]))) $acl_ok = false;
|
171 |
// @since 3.1 if (!$wpdb->insert(CERBER_ACL_TABLE,array('ip'=>$row[0],'tag'=>$row[1],'comments'=>$row[2]),array('%s','%s','%s'))) $acl_ok = false;
|
172 |
$ip = cerber_parse_ip($row[0]);
|
173 |
+
if ( ! cerber_acl_add( $ip, $row[1], $row[2] ) ) {
|
174 |
$acl_ok = false;
|
175 |
break;
|
176 |
}
|
common.php
CHANGED
@@ -381,6 +381,47 @@ function cerber_is_rest_url(){
|
|
381 |
return false;
|
382 |
}
|
383 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
384 |
/**
|
385 |
* Is requested REST API namespace whitelisted
|
386 |
*
|
@@ -440,7 +481,7 @@ function crb_get_rest_path() {
|
|
440 |
}
|
441 |
|
442 |
/**
|
443 |
-
* Return the last
|
444 |
*
|
445 |
* @param bool $check_php if true check if a php script has been requested
|
446 |
*
|
381 |
return false;
|
382 |
}
|
383 |
|
384 |
+
/**
|
385 |
+
* Check if the current query is HTTP and GET method is being
|
386 |
+
*
|
387 |
+
* @return bool true if request method is GET
|
388 |
+
*/
|
389 |
+
function cerber_is_http_get(){
|
390 |
+
if ( isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == 'GET' ){
|
391 |
+
return true;
|
392 |
+
}
|
393 |
+
|
394 |
+
return false;
|
395 |
+
}
|
396 |
+
|
397 |
+
/**
|
398 |
+
* Check if the current query is HTTP and POST method is being
|
399 |
+
*
|
400 |
+
* @return bool true if request method is GET
|
401 |
+
*/
|
402 |
+
function cerber_is_http_post(){
|
403 |
+
if ( isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == 'POST' ){
|
404 |
+
return true;
|
405 |
+
}
|
406 |
+
|
407 |
+
return false;
|
408 |
+
}
|
409 |
+
|
410 |
+
/**
|
411 |
+
* More neat way to get $_GET field with no warnings
|
412 |
+
*
|
413 |
+
* @param $key
|
414 |
+
*
|
415 |
+
* @return bool|string
|
416 |
+
*/
|
417 |
+
function cerber_get_get($key){
|
418 |
+
if ( isset( $_GET[ $key ] ) ) {
|
419 |
+
return $_GET[ $key ];
|
420 |
+
}
|
421 |
+
|
422 |
+
return false;
|
423 |
+
}
|
424 |
+
|
425 |
/**
|
426 |
* Is requested REST API namespace whitelisted
|
427 |
*
|
481 |
}
|
482 |
|
483 |
/**
|
484 |
+
* Return the last element in the path of the requested URI.
|
485 |
*
|
486 |
* @param bool $check_php if true check if a php script has been requested
|
487 |
*
|
dashboard.php
CHANGED
@@ -150,20 +150,28 @@ function cerber_acl_form(){
|
|
150 |
/*
|
151 |
Create HTML to display ACL area: table + form
|
152 |
*/
|
153 |
-
function cerber_acl_get_table($tag){
|
154 |
global $wpdb;
|
155 |
-
$activity_url = cerber_admin_link('activity');
|
156 |
-
if ($rows = $wpdb->get_results('SELECT * FROM '. CERBER_ACL_TABLE . " WHERE tag = '"
|
157 |
-
foreach ($rows as $row
|
158 |
-
|
|
|
|
|
|
|
|
|
|
|
159 |
}
|
160 |
-
else $ret='<p style="text-align: center;">- <i>'.__('List is empty','wp-cerber').'</i> -</p>';
|
161 |
$ret = '<div class="acl-wrapper"><div class="acl-items">'
|
162 |
-
|
163 |
-
<table><tr><td><input type="text" name="add_acl_'
|
164 |
-
</td><td><input type="submit" class="button button-primary" value="'.__('Add IP to the list','wp-cerber').'" ></td></tr
|
165 |
-
.
|
166 |
-
|
|
|
|
|
|
|
|
|
167 |
return $ret;
|
168 |
}
|
169 |
/*
|
@@ -172,30 +180,36 @@ function cerber_acl_get_table($tag){
|
|
172 |
add_action('admin_init','cerber_acl_form_process');
|
173 |
function cerber_acl_form_process(){
|
174 |
|
175 |
-
if (
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
|
|
180 |
|
181 |
-
if (
|
182 |
if (!empty($_POST['add_acl_W'])) {
|
183 |
$ip = cerber_parse_ip($_POST['add_acl_W']);
|
184 |
-
if (
|
185 |
-
|
186 |
-
|
187 |
-
|
|
|
|
|
|
|
|
|
188 |
}
|
189 |
}
|
190 |
if (!empty($_POST['add_acl_B'])) {
|
191 |
-
$ip =
|
192 |
-
if (
|
|
|
|
|
193 |
else {
|
194 |
-
if (
|
195 |
-
|
196 |
-
cerber_admin_notice( __( "You can't add your IP address", 'wp-cerber' ) . ' ' . $ip );
|
197 |
}
|
198 |
-
elseif (cerber_add_black($ip)) {
|
199 |
if (is_array($ip)) $ip = $ip['range'];
|
200 |
cerber_admin_message(sprintf(__('Address %s was added to Black IP Access List','wp-cerber'),$ip));
|
201 |
}
|
@@ -203,12 +217,18 @@ function cerber_acl_form_process(){
|
|
203 |
}
|
204 |
}
|
205 |
}
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
|
|
|
|
|
|
|
|
|
|
210 |
global $wpdb;
|
211 |
-
|
|
|
212 |
}
|
213 |
|
214 |
/*
|
@@ -349,11 +369,11 @@ function cerber_admin_request(){
|
|
349 |
if ( !isset( $_REQUEST['cerber_nonce'] ) ) return;
|
350 |
if ( !current_user_can( 'manage_options' ) || !wp_verify_nonce( $_REQUEST['cerber_nonce'], 'control' ) ) return;
|
351 |
|
352 |
-
if (
|
353 |
-
if (
|
354 |
//$to = implode(', ',cerber_get_email());
|
355 |
-
$to = cerber_get_email($
|
356 |
-
if ( cerber_send_notify( $
|
357 |
cerber_admin_message( __( 'Email has been sent to', 'wp-cerber' ) . ' ' . $to );
|
358 |
}
|
359 |
else {
|
@@ -362,8 +382,7 @@ function cerber_admin_request(){
|
|
362 |
wp_safe_redirect( remove_query_arg( 'testnotify' ) ); // mandatory!
|
363 |
exit; // mandatory!
|
364 |
}
|
365 |
-
elseif (
|
366 |
-
$ip = $_GET['lockdelete'];
|
367 |
if ( cerber_block_delete( $ip ) ) {
|
368 |
cerber_admin_message( sprintf( __( 'Lockout for %s was removed', 'wp-cerber' ), $ip ) );
|
369 |
}
|
@@ -401,7 +420,7 @@ function cerber_admin_request(){
|
|
401 |
}
|
402 |
}
|
403 |
|
404 |
-
if (
|
405 |
if ( isset( $_POST['crb_geo_rules'] ) ) {
|
406 |
crb_save_geo_rules();
|
407 |
}
|
@@ -783,7 +802,7 @@ function cerber_activity_query($args = array()){
|
|
783 |
function cerber_ip_extra_view($ip){
|
784 |
global $wp_cerber;
|
785 |
//if (!cerber_is_ip_or_net($ip)) return '';
|
786 |
-
if (
|
787 |
return '';
|
788 |
}
|
789 |
$tip = ' ';
|
@@ -865,7 +884,7 @@ else {
|
|
865 |
}
|
866 |
function cerber_admin_menu() {
|
867 |
|
868 |
-
if ( cerber_is_admin_page() ) {
|
869 |
cerber_check_environment();
|
870 |
cerber_watchdog();
|
871 |
}
|
@@ -1518,10 +1537,12 @@ function cerber_subscribe_link() {
|
|
1518 |
$empty = array_filter($args);
|
1519 |
if (empty($empty)) return '';
|
1520 |
|
1521 |
-
$subs =
|
1522 |
|
1523 |
-
// Limit
|
1524 |
-
if ( count( $subs ) > 50 )
|
|
|
|
|
1525 |
|
1526 |
$mode = 'on';
|
1527 |
if ( $subs ) {
|
@@ -1747,12 +1768,10 @@ function cerber_admin_assets() {
|
|
1747 |
|
1748 |
$crb_assets_url = plugin_dir_url( __FILE__ ) . 'assets/';
|
1749 |
|
1750 |
-
if ( cerber_is_admin_page() ) {
|
1751 |
-
|
1752 |
wp_register_style( 'crb_multi_css', $crb_assets_url . 'multi/multi.css', null, CERBER_VER );
|
1753 |
wp_enqueue_style( 'crb_multi_css' );
|
1754 |
wp_enqueue_script( 'crb_multi_js', $crb_assets_url . 'multi/multi.min.js', array(), CERBER_VER );
|
1755 |
-
|
1756 |
}
|
1757 |
|
1758 |
if ( ! defined( 'CERBER_BETA' ) ) {
|
@@ -1809,23 +1828,7 @@ function cerber_admin_head(){
|
|
1809 |
<?php
|
1810 |
endif;
|
1811 |
|
1812 |
-
?>
|
1813 |
-
<style type="text/css" media="all">
|
1814 |
-
/* Aliens messages */
|
1815 |
-
.update-nag,
|
1816 |
-
#setting-error-tgmpa {
|
1817 |
-
display: none;
|
1818 |
-
}
|
1819 |
|
1820 |
-
/* Cerber's messages */
|
1821 |
-
div.wrap .update-nag,
|
1822 |
-
.crb-alarm {
|
1823 |
-
/*display: initial;*/
|
1824 |
-
display: inline-block;
|
1825 |
-
}
|
1826 |
-
</style>
|
1827 |
-
<?php
|
1828 |
-
//return;
|
1829 |
if (lab_lab()):
|
1830 |
?>
|
1831 |
<style type="text/css" media="all">
|
@@ -1867,6 +1870,27 @@ function cerber_admin_head(){
|
|
1867 |
</style>
|
1868 |
<?php
|
1869 |
endif;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1870 |
}
|
1871 |
/*
|
1872 |
* JS & CSS for admin footer
|
@@ -2101,6 +2125,7 @@ function cerber_show_geo_rules(){
|
|
2101 |
|
2102 |
jQuery(document).ready(function ($) {
|
2103 |
$("#<?php echo $first_id; ?>").multi({'search_placeholder': '<?php _e( 'Start typing here to find a country', 'wp-cerber' ); ?>'});
|
|
|
2104 |
|
2105 |
$('.tablinks').click(function () {
|
2106 |
|
@@ -2120,6 +2145,7 @@ function cerber_show_geo_rules(){
|
|
2120 |
$('.crb-select-multi').removeAttr('data-multijs');
|
2121 |
|
2122 |
$( '#countries-' + rule_id ).multi({'search_placeholder': 'Start typing here to find a country'});
|
|
|
2123 |
});
|
2124 |
});
|
2125 |
|
150 |
/*
|
151 |
Create HTML to display ACL area: table + form
|
152 |
*/
|
153 |
+
function cerber_acl_get_table( $tag ) {
|
154 |
global $wpdb;
|
155 |
+
$activity_url = cerber_admin_link( 'activity' );
|
156 |
+
if ( $rows = $wpdb->get_results( 'SELECT * FROM ' . CERBER_ACL_TABLE . " WHERE tag = '" . $tag . "' ORDER BY ip_long_begin, ip" ) ) {
|
157 |
+
foreach ( $rows as $row ) {
|
158 |
+
$list[] = '<td>' . $row->ip . '</td><td>'.$row->comments.'</td><td><a class="delete_entry" href="javascript:void(0)" data-ip="' . $row->ip . '">' . __( 'Remove', 'wp-cerber' ) . '</a></td><td><a href="' . $activity_url . '&filter_ip=' . urlencode( $row->ip ) . '">' . __( 'Check for activity', 'wp-cerber' ) . '</a></td>';
|
159 |
+
}
|
160 |
+
$ret = '<table id="acl_' . $tag . '" class="acl-table"><tr>' . implode( '</tr><tr>', $list ) . '</tr></table>';
|
161 |
+
}
|
162 |
+
else {
|
163 |
+
$ret = '<p style="text-align: center;">- <i>' . __( 'List is empty', 'wp-cerber' ) . '</i> -</p>';
|
164 |
}
|
|
|
165 |
$ret = '<div class="acl-wrapper"><div class="acl-items">'
|
166 |
+
. $ret . '</div><form action="" method="post">
|
167 |
+
<table><tr><td><input class="code" type="text" name="add_acl_' . $tag . '" required placeholder="' . __( 'IP address, IPv4 address range or subnet', 'wp-cerber' ) . '">
|
168 |
+
</td><td><input type="submit" class="button button-primary" value="' . __( 'Add IP to the list', 'wp-cerber' ) . '" ></td></tr>
|
169 |
+
<tr><td><input class="code" type="text" name="add_acl_comment" maxlength="250" placeholder="' . __( 'Optional comment for this entry', 'wp-cerber' ) . '">
|
170 |
+
</td><td></td></tr>
|
171 |
+
</table>'
|
172 |
+
. wp_nonce_field( 'cerber_dashboard', 'cerber_nonce' )
|
173 |
+
. '</form></div>';
|
174 |
+
|
175 |
return $ret;
|
176 |
}
|
177 |
/*
|
180 |
add_action('admin_init','cerber_acl_form_process');
|
181 |
function cerber_acl_form_process(){
|
182 |
|
183 |
+
if ( ! cerber_is_http_post() || ! isset( $_POST['cerber_nonce'] ) ) {
|
184 |
+
return;
|
185 |
+
}
|
186 |
+
if ( ! current_user_can( 'manage_options' ) || ! wp_verify_nonce( $_POST['cerber_nonce'], 'cerber_dashboard' ) ) {
|
187 |
+
return;
|
188 |
+
}
|
189 |
|
190 |
+
if ( cerber_is_http_post() ) {
|
191 |
if (!empty($_POST['add_acl_W'])) {
|
192 |
$ip = cerber_parse_ip($_POST['add_acl_W']);
|
193 |
+
if ( ! $ip ) {
|
194 |
+
cerber_admin_notice( __( 'Incorrect IP address or IP range', 'wp-cerber' ) );
|
195 |
+
}
|
196 |
+
elseif ( cerber_add_white( $ip, strip_tags( $_POST['add_acl_comment'] ) ) ) {
|
197 |
+
if ( is_array( $ip ) ) {
|
198 |
+
$ip = $ip['range'];
|
199 |
+
}
|
200 |
+
cerber_admin_message( sprintf( __( 'Address %s was added to White IP Access List', 'wp-cerber' ), $ip ) );
|
201 |
}
|
202 |
}
|
203 |
if (!empty($_POST['add_acl_B'])) {
|
204 |
+
$ip = sanitize_text_field( $_POST['add_acl_B'] );
|
205 |
+
if ( ! cerber_parse_ip( $ip ) ) {
|
206 |
+
cerber_admin_notice( __( 'Incorrect IP address or IP range', 'wp-cerber' ) );
|
207 |
+
}
|
208 |
else {
|
209 |
+
if ( ! cerber_can_be_listed( $ip ) ) {
|
210 |
+
cerber_admin_notice( __( "You cannot add your IP address or network", 'wp-cerber' ) );
|
|
|
211 |
}
|
212 |
+
elseif ( cerber_add_black( $ip, strip_tags( $_POST['add_acl_comment'] ) ) ) {
|
213 |
if (is_array($ip)) $ip = $ip['range'];
|
214 |
cerber_admin_message(sprintf(__('Address %s was added to Black IP Access List','wp-cerber'),$ip));
|
215 |
}
|
217 |
}
|
218 |
}
|
219 |
}
|
220 |
+
|
221 |
+
/**
|
222 |
+
* Return all entries from the access lists
|
223 |
+
*
|
224 |
+
* @param string $fields
|
225 |
+
*
|
226 |
+
* @return array|null|object
|
227 |
+
*/
|
228 |
+
function cerber_acl_all( $fields = '*' ) {
|
229 |
global $wpdb;
|
230 |
+
|
231 |
+
return $wpdb->get_results( 'SELECT ' . $fields . ' FROM ' . CERBER_ACL_TABLE, ARRAY_N );
|
232 |
}
|
233 |
|
234 |
/*
|
369 |
if ( !isset( $_REQUEST['cerber_nonce'] ) ) return;
|
370 |
if ( !current_user_can( 'manage_options' ) || !wp_verify_nonce( $_REQUEST['cerber_nonce'], 'control' ) ) return;
|
371 |
|
372 |
+
if ( cerber_is_http_get() ) {
|
373 |
+
if ( $test = cerber_get_get( 'testnotify' ) ) {
|
374 |
//$to = implode(', ',cerber_get_email());
|
375 |
+
$to = cerber_get_email( $test );
|
376 |
+
if ( cerber_send_notify( $test ) ) {
|
377 |
cerber_admin_message( __( 'Email has been sent to', 'wp-cerber' ) . ' ' . $to );
|
378 |
}
|
379 |
else {
|
382 |
wp_safe_redirect( remove_query_arg( 'testnotify' ) ); // mandatory!
|
383 |
exit; // mandatory!
|
384 |
}
|
385 |
+
elseif ( $ip = cerber_get_get( 'lockdelete' ) ) {
|
|
|
386 |
if ( cerber_block_delete( $ip ) ) {
|
387 |
cerber_admin_message( sprintf( __( 'Lockout for %s was removed', 'wp-cerber' ), $ip ) );
|
388 |
}
|
420 |
}
|
421 |
}
|
422 |
|
423 |
+
if ( cerber_is_http_post() ) {
|
424 |
if ( isset( $_POST['crb_geo_rules'] ) ) {
|
425 |
crb_save_geo_rules();
|
426 |
}
|
802 |
function cerber_ip_extra_view($ip){
|
803 |
global $wp_cerber;
|
804 |
//if (!cerber_is_ip_or_net($ip)) return '';
|
805 |
+
if ( ! $ip || ! filter_var( $ip, FILTER_VALIDATE_IP ) ) {
|
806 |
return '';
|
807 |
}
|
808 |
$tip = ' ';
|
884 |
}
|
885 |
function cerber_admin_menu() {
|
886 |
|
887 |
+
if ( cerber_is_admin_page(false) ) {
|
888 |
cerber_check_environment();
|
889 |
cerber_watchdog();
|
890 |
}
|
1537 |
$empty = array_filter($args);
|
1538 |
if (empty($empty)) return '';
|
1539 |
|
1540 |
+
$subs = cerber_get_site_option( '_cerber_subs' );
|
1541 |
|
1542 |
+
// Limit to the number of subscriptions
|
1543 |
+
if ( $subs && count( $subs ) > 50 ) {
|
1544 |
+
return '';
|
1545 |
+
}
|
1546 |
|
1547 |
$mode = 'on';
|
1548 |
if ( $subs ) {
|
1768 |
|
1769 |
$crb_assets_url = plugin_dir_url( __FILE__ ) . 'assets/';
|
1770 |
|
1771 |
+
if ( cerber_is_admin_page( false ) ) {
|
|
|
1772 |
wp_register_style( 'crb_multi_css', $crb_assets_url . 'multi/multi.css', null, CERBER_VER );
|
1773 |
wp_enqueue_style( 'crb_multi_css' );
|
1774 |
wp_enqueue_script( 'crb_multi_js', $crb_assets_url . 'multi/multi.min.js', array(), CERBER_VER );
|
|
|
1775 |
}
|
1776 |
|
1777 |
if ( ! defined( 'CERBER_BETA' ) ) {
|
1828 |
<?php
|
1829 |
endif;
|
1830 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1831 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1832 |
if (lab_lab()):
|
1833 |
?>
|
1834 |
<style type="text/css" media="all">
|
1870 |
</style>
|
1871 |
<?php
|
1872 |
endif;
|
1873 |
+
|
1874 |
+
if ( !cerber_is_admin_page( false ) ) {
|
1875 |
+
return;
|
1876 |
+
}
|
1877 |
+
|
1878 |
+
?>
|
1879 |
+
<style type="text/css" media="all">
|
1880 |
+
/* Hide alien's crap messages */
|
1881 |
+
.update-nag,
|
1882 |
+
#setting-error-tgmpa,
|
1883 |
+
.pms-cross-promo {
|
1884 |
+
display: none;
|
1885 |
+
}
|
1886 |
+
|
1887 |
+
/* Cerber's messages are allowed */
|
1888 |
+
div.wrap .update-nag,
|
1889 |
+
.crb-alarm {
|
1890 |
+
display: inline-block;
|
1891 |
+
}
|
1892 |
+
</style>
|
1893 |
+
<?php
|
1894 |
}
|
1895 |
/*
|
1896 |
* JS & CSS for admin footer
|
2125 |
|
2126 |
jQuery(document).ready(function ($) {
|
2127 |
$("#<?php echo $first_id; ?>").multi({'search_placeholder': '<?php _e( 'Start typing here to find a country', 'wp-cerber' ); ?>'});
|
2128 |
+
$('.multi-wrapper input:text').val(''); // Reset field for iPad
|
2129 |
|
2130 |
$('.tablinks').click(function () {
|
2131 |
|
2145 |
$('.crb-select-multi').removeAttr('data-multijs');
|
2146 |
|
2147 |
$( '#countries-' + rule_id ).multi({'search_placeholder': 'Start typing here to find a country'});
|
2148 |
+
$('.multi-wrapper input:text').val(''); // Reset field for iPad
|
2149 |
});
|
2150 |
});
|
2151 |
|
languages/wp-cerber-de_DE.mo
CHANGED
Binary file
|
languages/wp-cerber-de_DE.po
CHANGED
@@ -74,7 +74,7 @@ msgstr "Deaktiviere wp-login.php"
|
|
74 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
75 |
msgstr "Blockiere direkten Zugriff zu wp-login.php und gib HTTP 404 Not Found Error zurück"
|
76 |
|
77 |
-
#: ../dashboard.php:
|
78 |
msgid "Citadel mode"
|
79 |
msgstr "Citadel Modus"
|
80 |
|
@@ -86,7 +86,7 @@ msgstr "Schwelle"
|
|
86 |
msgid "Duration"
|
87 |
msgstr "Dauer"
|
88 |
|
89 |
-
#: ../wp-cerber.php:
|
90 |
msgid "Notifications"
|
91 |
msgstr "Benachrichtigungen"
|
92 |
|
@@ -94,17 +94,17 @@ msgstr "Benachrichtigungen"
|
|
94 |
msgid "Send notification to admin email"
|
95 |
msgstr "Sende eine Benachrichtigung an die Emailadresse des Admins"
|
96 |
|
97 |
-
#: ../dashboard.php:
|
98 |
-
#: tools.php:88 ../cerber-tools.php:97 ../cerber-tools.php:
|
99 |
msgid "Access Lists"
|
100 |
msgstr "Zugriffslisten"
|
101 |
|
102 |
-
#: ../dashboard.php:
|
103 |
#: php:91 ../settings.php:246
|
104 |
msgid "Activity"
|
105 |
msgstr "Aktivität"
|
106 |
|
107 |
-
#: ../dashboard.php:
|
108 |
msgid "Lockouts"
|
109 |
msgstr "Sperren"
|
110 |
|
@@ -116,19 +116,19 @@ msgstr "%s erlaubte Wiederholungen in %s Minuten"
|
|
116 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
117 |
msgstr "Aktiviere nach %s fehlgeschlagenen Anmeldeversuchen in den letzten %s Minuten"
|
118 |
|
119 |
-
#: ../dashboard.php:93 ../dashboard.php:
|
120 |
msgid "IP"
|
121 |
msgstr "IP"
|
122 |
|
123 |
-
#: ../dashboard.php:
|
124 |
msgid "Date"
|
125 |
msgstr "Datum"
|
126 |
|
127 |
-
#: ../dashboard.php:
|
128 |
msgid "Local User"
|
129 |
msgstr "Lokaler Benutzer"
|
130 |
|
131 |
-
#: ../dashboard.php:
|
132 |
msgid "Username used"
|
133 |
msgstr "Benutzername wird bereits verwendet"
|
134 |
|
@@ -136,81 +136,81 @@ msgstr "Benutzername wird bereits verwendet"
|
|
136 |
msgid "Showing last %d records from %d"
|
137 |
msgstr "Zeige die letzten %d Einträge von %d"
|
138 |
|
139 |
-
#: ../common.php:
|
140 |
msgid "Logged in"
|
141 |
msgstr "Eingeloggt"
|
142 |
|
143 |
-
#: ../common.php:
|
144 |
msgid "Logged out"
|
145 |
msgstr "Ausgeloggt"
|
146 |
|
147 |
-
#: ../common.php:
|
148 |
msgid "Login failed"
|
149 |
msgstr "Login fehlgeschlagen"
|
150 |
|
151 |
-
#: ../common.php:
|
152 |
msgid "IP blocked"
|
153 |
msgstr "IP geblockt"
|
154 |
|
155 |
-
#: ../common.php:
|
156 |
msgid "Subnet blocked"
|
157 |
msgstr "Subnetz geblockt"
|
158 |
|
159 |
-
#: ../common.php:
|
160 |
msgid "Citadel activated!"
|
161 |
msgstr "Citadel-Modus aktiviert!"
|
162 |
|
163 |
-
#: ../dashboard.php:
|
164 |
msgid "Locked out"
|
165 |
msgstr "Ausgesperrt"
|
166 |
|
167 |
#. Only correct if "IP blacklisted" is used as indicative. Otherwise it would not translate "IP auf der schwarzen Liste" but "IP auf die schwarze Liste gesetzt" (if it states that the IP was just blacklisted).
|
168 |
-
#: ../common.php:
|
169 |
#, fuzzy
|
170 |
msgid "IP blacklisted"
|
171 |
msgstr "IP blockiert"
|
172 |
|
173 |
-
#: ../common.php:
|
174 |
msgid "Password changed"
|
175 |
msgstr "Passwort geändert"
|
176 |
|
177 |
-
#: ../dashboard.php:86 ../dashboard.php:
|
178 |
msgid "Remove"
|
179 |
msgstr "Entfernen"
|
180 |
|
181 |
-
#: ../dashboard.php:
|
182 |
msgid "Lockout for %s was removed"
|
183 |
msgstr "Die Sperre für %s wurde entfernt"
|
184 |
|
185 |
-
#: ../dashboard.php:131 ../dashboard.php:
|
186 |
-
#: php:
|
187 |
#, fuzzy
|
188 |
msgid "White IP Access List"
|
189 |
msgstr "Weiße Liste (erlaubten IPs)"
|
190 |
|
191 |
-
#: ../dashboard.php:133 ../dashboard.php:
|
192 |
-
#: php:
|
193 |
#, fuzzy
|
194 |
msgid "Black IP Access List"
|
195 |
msgstr "Schwarze Liste (verbotenen IPs)"
|
196 |
|
197 |
-
#: ../dashboard.php:
|
198 |
msgid "List is empty"
|
199 |
msgstr "Liste ist leer"
|
200 |
|
201 |
-
#: ../dashboard.php:
|
202 |
msgid "Address %s was added to White IP Access List"
|
203 |
msgstr "Adresse %s wurde zur Liste der erlaubten IPs hinzugefügt"
|
204 |
|
205 |
-
#: ../dashboard.php:
|
206 |
msgid "Address %s was added to Black IP Access List"
|
207 |
msgstr "Adresse %s wurde zur Liste der verbotenen IPs hinzugefügt"
|
208 |
|
209 |
-
#: ../wp-cerber.php:
|
210 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
211 |
msgstr "Citadel-Modus ist aktiviert nach %d fehlgeschlagenen Logins in %d Minuten."
|
212 |
|
213 |
-
#: ../dashboard.php:
|
214 |
msgid "View Activity"
|
215 |
msgstr "Aktivitäten anzeigen"
|
216 |
|
@@ -218,19 +218,19 @@ msgstr "Aktivitäten anzeigen"
|
|
218 |
msgid "Settings"
|
219 |
msgstr "Einstellungen"
|
220 |
|
221 |
-
#: ../dashboard.php:
|
222 |
msgid "Last login"
|
223 |
msgstr "Letzte Anmeldung"
|
224 |
|
225 |
-
#: ../dashboard.php:
|
226 |
msgid "Never"
|
227 |
msgstr "Niemals"
|
228 |
|
229 |
-
#: ../dashboard.php:
|
230 |
msgid "Are you sure?"
|
231 |
msgstr "Sind Sie sicher?"
|
232 |
|
233 |
-
#: ../dashboard.php:
|
234 |
msgid "My site is behind a reverse proxy"
|
235 |
msgstr "Meine Website ist hinter einem Reverse-Proxy"
|
236 |
|
@@ -259,7 +259,7 @@ msgstr "Bitte aktivieren Sie Permalinks um dieses Merkmal zu verwenden. Setzen S
|
|
259 |
msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
|
260 |
msgstr "Seien Sie vorsichtig bei der Aktivierung dieser Optionen. Wenn Sie die benutzerdefinierte Login-URL vergessen, können Sie sich nicht mehr anmelden."
|
261 |
|
262 |
-
#: ../wp-cerber.php:
|
263 |
msgid "Main Settings"
|
264 |
msgstr "Haupteinstellungen"
|
265 |
|
@@ -273,23 +273,23 @@ msgstr "Hilfe"
|
|
273 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
274 |
msgstr "Erhöhe die Sperrdauer um %s Stunden nach %s Aussperrungen in den letzten %s Stunden"
|
275 |
|
276 |
-
#: ../wp-cerber.php:
|
277 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
278 |
msgstr "Sie sind nicht berechtigt, sich anzumelden. Fragen Sie Ihren Administrator nach Unterstützung."
|
279 |
|
280 |
#. One "Minute", two/three/four/... "Minuten".
|
281 |
-
#: ../wp-cerber.php:
|
282 |
#, fuzzy
|
283 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
284 |
msgstr "Sie haben die maximale Anzahl an Login-Versuchen erreicht. Bitte versuchen Sie es in %d Minuten noch einmal."
|
285 |
|
286 |
-
#: ../wp-cerber.php:
|
287 |
msgid "You have only one attempt remaining."
|
288 |
msgid_plural "You have %d attempts remaining."
|
289 |
msgstr[0] "Sie haben nur noch einen Versuch."
|
290 |
msgstr[1] "Sie haben nur noch %d Versuche."
|
291 |
|
292 |
-
#: ../dashboard.php:
|
293 |
msgid "No activity has been logged."
|
294 |
msgstr "Keine Aktivität wurde protokolliert."
|
295 |
|
@@ -309,15 +309,11 @@ msgstr "Diese IPs werden nie gesperrt"
|
|
309 |
msgid "Your IP"
|
310 |
msgstr "Ihre IP"
|
311 |
|
312 |
-
#: ../
|
313 |
-
msgid "You can't add your IP address"
|
314 |
-
msgstr "Sie können Ihre IP Adresse nicht hinzufügen"
|
315 |
-
|
316 |
-
#: ../wp-cerber.php:2945
|
317 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
318 |
msgstr "Der letzte gescheiterte Versuch war um %s von der IP %s mit der Benutzeranmeldung: %s."
|
319 |
|
320 |
-
#: ../wp-cerber.php:
|
321 |
msgid "Can't activate WP Cerber due to a database error."
|
322 |
msgstr "Kann WP Cerber aufgrund eines Datenbankfehlers nicht aktivieren."
|
323 |
|
@@ -329,7 +325,7 @@ msgstr "Benachrichtige den Admin, wenn die Anzahl von aktiven Aussperrungen grö
|
|
329 |
msgid "days"
|
330 |
msgstr "Tage"
|
331 |
|
332 |
-
#: ../dashboard.php:
|
333 |
msgid "Cerber Quick View"
|
334 |
msgstr "Cerber Schnellansicht"
|
335 |
|
@@ -341,7 +337,7 @@ msgstr "Hinweis"
|
|
341 |
msgid "To view activity, click on the IP"
|
342 |
msgstr "Um die Aktivität sehen zu können, klicken Sie auf die IP"
|
343 |
|
344 |
-
#: ../dashboard.php:
|
345 |
msgid "Check for activity"
|
346 |
msgstr "Auf Aktivität überprüfen"
|
347 |
|
@@ -357,32 +353,32 @@ msgstr "Klicken für Sendungstest"
|
|
357 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
358 |
msgstr "Achtung! Sie haben die Anmelde-URL geändert! Die neue Login-URL ist"
|
359 |
|
360 |
-
#: ../dashboard.php:
|
361 |
msgid "Comments"
|
362 |
msgstr "Kommentare"
|
363 |
|
364 |
-
#: ../common.php:
|
365 |
msgid "Update to version %s of WP Cerber"
|
366 |
msgstr "Update auf Version %s von WP Cerber"
|
367 |
|
368 |
-
#: ../wp-cerber.php:
|
369 |
msgid "View activity in dashboard"
|
370 |
msgstr "Zeige Aktivität im Dashboard"
|
371 |
|
372 |
-
#: ../wp-cerber.php:
|
373 |
msgid "Number of active lockouts"
|
374 |
msgstr "Anzahl der aktiven Sperren"
|
375 |
|
376 |
-
#: ../wp-cerber.php:
|
377 |
msgid "View lockouts in dashboard"
|
378 |
msgstr "Zeige Sperren im Dashboard"
|
379 |
|
380 |
-
#: ../wp-cerber.php:
|
381 |
msgid "This message was sent by"
|
382 |
msgstr "Diese Nachricht wurde gesendet von"
|
383 |
|
384 |
#. Used to be "Import/Export" but this is a fuzzy translation. Exact translation that WordPress also uses is "Werkzeuge".
|
385 |
-
#: ../dashboard.php:
|
386 |
msgid "Tools"
|
387 |
msgstr "Werkzeuge"
|
388 |
|
@@ -430,27 +426,27 @@ msgstr "Was wollen Sie importieren?"
|
|
430 |
msgid "Upload file"
|
431 |
msgstr "Datei hochladen"
|
432 |
|
433 |
-
#: ../cerber-tools.php:
|
434 |
msgid "No file was uploaded or file is corrupted"
|
435 |
msgstr "Keine Datei hochgeladen oder Datei ist beschädigt"
|
436 |
|
437 |
-
#: ../cerber-tools.php:
|
438 |
msgid "Error while updating"
|
439 |
msgstr "Fehler bei der Aktualisierung"
|
440 |
|
441 |
-
#: ../cerber-tools.php:
|
442 |
msgid "Settings has imported successfully from"
|
443 |
msgstr "Einstellungen erfolgreich importiert von"
|
444 |
|
445 |
-
#: ../cerber-tools.php:
|
446 |
msgid "Error while parsing file"
|
447 |
msgstr "Fehler beim Parsen der Datei"
|
448 |
|
449 |
-
#: ../dashboard.php:94 ../dashboard.php:
|
450 |
msgid "Hostname"
|
451 |
msgstr "Hostname"
|
452 |
|
453 |
-
#: ../dashboard.php:
|
454 |
#, fuzzy
|
455 |
msgid "unknown"
|
456 |
msgstr "unbekannt"
|
@@ -459,96 +455,96 @@ msgstr "unbekannt"
|
|
459 |
msgid "Keep records for"
|
460 |
msgstr "Behalte Aufzeichnungen für"
|
461 |
|
462 |
-
#: ../dashboard.php:
|
463 |
msgid "active"
|
464 |
msgstr "aktiv"
|
465 |
|
466 |
-
#: ../dashboard.php:
|
467 |
msgid "deactivate"
|
468 |
msgstr "deaktiviert"
|
469 |
|
470 |
-
#: ../dashboard.php:
|
471 |
msgid "not active"
|
472 |
msgstr "nicht aktiv"
|
473 |
|
474 |
#. "deactive" and "disabled" mean exactly the same in German.
|
475 |
-
#: ../dashboard.php:
|
476 |
msgid "disabled"
|
477 |
msgstr "deaktiviert"
|
478 |
|
479 |
-
#: ../dashboard.php:
|
480 |
msgid "failed attempts"
|
481 |
msgstr "Fehlversuche"
|
482 |
|
483 |
-
#: ../dashboard.php:
|
484 |
msgid "in 24 hours"
|
485 |
msgstr "in 24 Stunden"
|
486 |
|
487 |
-
#: ../dashboard.php:
|
488 |
msgid "view all"
|
489 |
msgstr "Zeige alle"
|
490 |
|
491 |
-
#: ../dashboard.php:
|
492 |
msgid "lockouts"
|
493 |
msgstr "Sperren"
|
494 |
|
495 |
-
#: ../dashboard.php:
|
496 |
msgid "Lockouts at the moment"
|
497 |
msgstr "Momentane Sperren"
|
498 |
|
499 |
-
#: ../dashboard.php:
|
500 |
msgid "Last lockout"
|
501 |
msgstr "Letzte Sperre"
|
502 |
|
503 |
-
#: ../dashboard.php:
|
504 |
msgid "entry"
|
505 |
msgid_plural "entries"
|
506 |
msgstr[0] "Eintrag"
|
507 |
msgstr[1] "Einträge"
|
508 |
|
509 |
-
#: ../dashboard.php:
|
510 |
#, fuzzy
|
511 |
msgid "Confused about some settings?"
|
512 |
msgstr "Verwirrende Einstellungen?"
|
513 |
|
514 |
-
#: ../dashboard.php:
|
515 |
msgid "You can easily load default recommended settings using button below"
|
516 |
msgstr "Sie können ganz einfach mit dem unteren Button empfohlene Standardeinstellungen laden"
|
517 |
|
518 |
-
#: ../dashboard.php:
|
519 |
msgid "Load default settings"
|
520 |
msgstr "Standardeinstellung laden"
|
521 |
|
522 |
-
#: ../dashboard.php:
|
523 |
msgid "doesn't affect Custom login URL and Access Lists"
|
524 |
msgstr "hat keinen Einfluss auf benutzerdefinierte Login-URL und Zugriffslisten"
|
525 |
|
526 |
-
#: ../common.php:
|
527 |
msgid "New version is available"
|
528 |
msgstr "Eine neue Version ist verfügbar"
|
529 |
|
530 |
#. Name of the plugin
|
531 |
-
#: ../dashboard.php:
|
532 |
msgid "WP Cerber"
|
533 |
msgstr "WP Cerber"
|
534 |
|
535 |
-
#: ../wp-cerber.php:
|
536 |
msgid "WP Cerber notify"
|
537 |
msgstr "WP Cerber benachrichtigen"
|
538 |
|
539 |
-
#: ../wp-cerber.php:
|
540 |
msgid "Citadel mode is activated"
|
541 |
msgstr "Citadel-Modus ist aktiviert"
|
542 |
|
543 |
-
#: ../wp-cerber.php:
|
544 |
msgid "New Custom login URL"
|
545 |
msgstr "Neue benutzerdefinierte Login-URL"
|
546 |
|
547 |
-
#: ../wp-cerber.php:
|
548 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
549 |
msgstr "WP Cerber benötigt PHP Version %s oder höher. Sie haben"
|
550 |
|
551 |
-
#: ../wp-cerber.php:
|
552 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
553 |
msgstr "WP Cerber benötigt Wordpress Version %s oder höher. Sie haben"
|
554 |
|
@@ -562,44 +558,44 @@ msgstr "Verwende Logdatei"
|
|
562 |
msgid "Write failed login attempts to the file"
|
563 |
msgstr "Schreibe fehlgeschlagene Anmeldungen in die Datei."
|
564 |
|
565 |
-
#: ../dashboard.php:
|
566 |
msgid "Deactivate"
|
567 |
msgstr "Deaktivieren"
|
568 |
|
569 |
-
#: ../dashboard.php:97 ../wp-cerber.php:
|
570 |
msgid "Reason"
|
571 |
msgstr "Grund"
|
572 |
|
573 |
-
#: ../dashboard.php:
|
574 |
msgid "Add IP to the list"
|
575 |
msgstr "Füge IP zur Liste hinzu"
|
576 |
|
577 |
-
#: ../dashboard.php:
|
578 |
msgid "Add IP to the Black List"
|
579 |
msgstr "Füge IP zur Schwarzen Liste hinzu"
|
580 |
|
581 |
-
#: ../common.php:
|
582 |
msgid "Attempt to access"
|
583 |
msgstr "Zugriffsversuch"
|
584 |
|
585 |
-
#: ../common.php:
|
586 |
msgid "Limit on login attempts is reached"
|
587 |
msgstr "Limit für Anmeldeversuche ist erreicht"
|
588 |
|
589 |
-
#: ../common.php:
|
590 |
msgid "Attempt to log in with non-existent username"
|
591 |
msgstr "Anmeldeversuch mit nicht existierendem Nutzernamen"
|
592 |
|
593 |
-
#: ../wp-cerber.php:
|
594 |
msgid "Last lockout was added: %s for IP %s"
|
595 |
msgstr "Letzte Sperre wurde hinzugefügt: %s für IP %s"
|
596 |
|
597 |
#. "Abhärtung" is the medical translation for "hardening" which fits best in this case.
|
598 |
-
#: ../wp-cerber.php:
|
599 |
msgid "Hardening"
|
600 |
msgstr "Abhärtung"
|
601 |
|
602 |
-
#: ../dashboard.php:
|
603 |
msgid "Abuse email:"
|
604 |
msgstr "Missbrauch Email:"
|
605 |
|
@@ -660,7 +656,7 @@ msgstr "Diese Einstellungen beeinflussen keine Hosts von"
|
|
660 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
661 |
msgstr "<strong>FEHLER</strong>: Bitte eine gültige E-Mail-Adresse eingeben"
|
662 |
|
663 |
-
#: ../wp-cerber.php:
|
664 |
#, fuzzy
|
665 |
msgid "WP Cerber is now active and has started protecting your site"
|
666 |
msgstr "WP Cerber ist nun aktiv und schützt ihre Website"
|
@@ -673,27 +669,27 @@ msgstr "Aktion"
|
|
673 |
msgid "Nobody can log in or register from these IPs"
|
674 |
msgstr "Niemand kann sich von diesen IPs anmelden oder registrieren"
|
675 |
|
676 |
-
#: ../dashboard.php:
|
677 |
msgid "Incorrect IP address or IP range"
|
678 |
msgstr "Falsche IP-Adresse oder falscher IP-Bereich"
|
679 |
|
680 |
-
#: ../dashboard.php:
|
681 |
msgid "Settings saved"
|
682 |
msgstr "Einstellungen gespeichert"
|
683 |
|
684 |
-
#: ../dashboard.php:
|
685 |
msgid "Network:"
|
686 |
msgstr "Netzwerk:"
|
687 |
|
688 |
-
#: ../dashboard.php:
|
689 |
msgid "Add network to the Black List"
|
690 |
msgstr "Netzwerk zur schwarzen Liste hinzufügen"
|
691 |
|
692 |
-
#: ../dashboard.php:
|
693 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
694 |
msgstr "Achtung! Citadel-Modus ist nun aktiv. Niemand kann sich anmelden."
|
695 |
|
696 |
-
#: ../dashboard.php:
|
697 |
msgid "Unknown"
|
698 |
msgstr "Unbekannt"
|
699 |
|
@@ -702,84 +698,84 @@ msgstr "Unbekannt"
|
|
702 |
msgid "Gregory"
|
703 |
msgstr "Gregory"
|
704 |
|
705 |
-
#: ../wp-cerber.php:
|
706 |
-
#: php:
|
707 |
-
#: cerber.php:
|
708 |
-
#:
|
709 |
-
#:
|
710 |
msgid "ERROR:"
|
711 |
msgstr "FEHLER:"
|
712 |
|
713 |
-
#: ../wp-cerber.php:
|
714 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
715 |
msgstr "Menschlichkeitsnachweis gescheitert. Bitte klicken Sie das quadratische Kästchen im reCAPTCHA-Block unten."
|
716 |
|
717 |
-
#: ../wp-cerber.php:
|
718 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
719 |
msgstr "<strong>FEHLER</strong>: Das eingegebene Passwort für den Benutzernamen %s ist falsch."
|
720 |
|
721 |
-
#: ../wp-cerber.php:
|
722 |
msgid "Username is not allowed. Please choose another one."
|
723 |
msgstr "Benutzername ist nicht erlaubt. Bitte einen anderen wählen."
|
724 |
|
725 |
-
#: ../wp-cerber.php:
|
726 |
msgid "unspecified"
|
727 |
msgstr "nicht spezifiziert"
|
728 |
|
729 |
-
#: ../wp-cerber.php:
|
730 |
msgid "Number of lockouts is increasing"
|
731 |
msgstr "Anzahl an Sperren steigt an"
|
732 |
|
733 |
-
#: ../wp-cerber.php:
|
734 |
msgid "View activity for this IP"
|
735 |
msgstr "Zeige Aktivität für diese IP"
|
736 |
|
737 |
-
#: ../wp-cerber.php:
|
738 |
msgid "A new version of WP Cerber is available to install"
|
739 |
msgstr "Eine neue Version von WP Cerber ist zur Installation verfügbar"
|
740 |
|
741 |
-
#: ../wp-cerber.php:
|
742 |
msgid "Hi!"
|
743 |
msgstr "Hallo!"
|
744 |
|
745 |
#. Original translation is "Internetseite" but this translation is not up to time.
|
746 |
-
#: ../wp-cerber.php:
|
747 |
msgid "Website"
|
748 |
msgstr "Website"
|
749 |
|
750 |
-
#: ../wp-cerber.php:
|
751 |
msgid "The WP Cerber security plugin has been deactivated"
|
752 |
msgstr "Das WP Cerber Sicherheits-Plugin wurde deaktiviert"
|
753 |
|
754 |
-
#: ../wp-cerber.php:
|
755 |
msgid "Not logged in"
|
756 |
msgstr "Nicht angemeldet"
|
757 |
|
758 |
-
#: ../wp-cerber.php:
|
759 |
#, fuzzy
|
760 |
msgid "By user"
|
761 |
msgstr "Von Nutzer"
|
762 |
|
763 |
-
#: ../wp-cerber.php:
|
764 |
#, fuzzy
|
765 |
msgid "From IP address"
|
766 |
msgstr "Von IP-Adresse"
|
767 |
|
768 |
-
#: ../wp-cerber.php:
|
769 |
#, fuzzy
|
770 |
msgid "From country"
|
771 |
msgstr "Vom Land"
|
772 |
|
773 |
-
#: ../wp-cerber.php:
|
774 |
msgid "The WP Cerber security plugin is now active"
|
775 |
msgstr "Das WP Cerber Sicherheits-Plugin ist nun aktiv"
|
776 |
|
777 |
-
#: ../wp-cerber.php:
|
778 |
#, fuzzy
|
779 |
msgid "Your IP address is added to the"
|
780 |
msgstr "Ihre IP-Adresse wurde hinzugefügt zu"
|
781 |
|
782 |
-
#: ../wp-cerber.php:
|
783 |
msgid "Import settings"
|
784 |
msgstr "Import-Einstellungen"
|
785 |
|
@@ -850,7 +846,7 @@ msgstr "Bevor Sie reCAPTCHA nutzen können, müssen Sie einen Site key und einen
|
|
850 |
msgid "Know more"
|
851 |
msgstr "Mehr erfahren"
|
852 |
|
853 |
-
#: ../dashboard.php:
|
854 |
msgid "WP Cerber Security"
|
855 |
msgstr "WP Cerber Sicherheit"
|
856 |
|
@@ -858,27 +854,27 @@ msgstr "WP Cerber Sicherheit"
|
|
858 |
msgid "Users"
|
859 |
msgstr "Benutzer"
|
860 |
|
861 |
-
#: ../common.php:
|
862 |
msgid "User created"
|
863 |
msgstr "Benutzer erstellt"
|
864 |
|
865 |
-
#: ../dashboard.php:
|
866 |
msgid "User registered"
|
867 |
msgstr "Benutzer registriert"
|
868 |
|
869 |
-
#: ../common.php:
|
870 |
msgid "reCAPTCHA verification failed"
|
871 |
msgstr "reCAPTCHA-Bestätigung gescheitert"
|
872 |
|
873 |
-
#: ../common.php:
|
874 |
msgid "reCAPTCHA settings are incorrect"
|
875 |
msgstr "reCAPTCHA-Einstellungen sind falsch"
|
876 |
|
877 |
-
#: ../common.php:
|
878 |
msgid "Attempt to access prohibited URL"
|
879 |
msgstr "Zugriffsversuch auf verbotene URL"
|
880 |
|
881 |
-
#: ../common.php:
|
882 |
msgid "Attempt to log in with prohibited username"
|
883 |
msgstr "Anmeldeversuch mit verbotenem Benutzernamen"
|
884 |
|
@@ -914,15 +910,15 @@ msgstr "Aktiviere reCAPTCHA für das WooCommerce Passwort-Vergessen-Formular"
|
|
914 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
915 |
msgstr "Aktiviere reCAPTCHA für das WooCommerce Anmeldeformular"
|
916 |
|
917 |
-
#: ../common.php:
|
918 |
msgid "Request to the Google reCAPTCHA service failed"
|
919 |
msgstr "Anfrage an den Google reCAPTCHA Dienst gescheitert"
|
920 |
|
921 |
-
#: ../dashboard.php:
|
922 |
msgid "View all"
|
923 |
msgstr "Zeige alle"
|
924 |
|
925 |
-
#: ../dashboard.php:
|
926 |
msgid "Recently locked out IP addresses"
|
927 |
msgstr "Kürzlich ausgesperrte IP-Adressen"
|
928 |
|
@@ -937,7 +933,7 @@ msgid "NO, maybe later"
|
|
937 |
msgstr "NEIN, vielleicht später"
|
938 |
|
939 |
#. Dashboard is in German more common in this context as the actual translation "Amaturenbrett" which is only used for non-digital things like in cars!
|
940 |
-
#: ../dashboard.php:
|
941 |
#: php:244
|
942 |
#, fuzzy
|
943 |
msgid "Dashboard"
|
@@ -951,69 +947,69 @@ msgstr "Wollen Sie WP Cerber noch stärker machen?"
|
|
951 |
msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
|
952 |
msgstr "Erlaube WP Cerber ausgesperrte bösartige IP-Adressen an das Cerber Lab zu senden. Dies hilft dem Plugin-Team neue Algorithmen für WP Cerber zu entwickeln, die WordPress gegen täglich auftretende neue Bedrohungen und Botnets verteidigen. Sie können das Senden jederzeit in den Plugin-Einstellungen deaktivieren."
|
953 |
|
954 |
-
#: ../dashboard.php:
|
955 |
msgid "IP address"
|
956 |
msgstr "IP-Adresse"
|
957 |
|
958 |
-
#: ../dashboard.php:
|
959 |
msgid "User login"
|
960 |
msgstr "Benutzer-Anmeldung"
|
961 |
|
962 |
-
#: ../dashboard.php:
|
963 |
msgid "User ID"
|
964 |
msgstr "Benutzer-ID"
|
965 |
|
966 |
-
#: ../dashboard.php:
|
967 |
msgid "Export"
|
968 |
msgstr "Export"
|
969 |
|
970 |
-
#: ../dashboard.php:
|
971 |
msgid "Search for IP or username"
|
972 |
msgstr "Suche nach IP oder Nutzernamen"
|
973 |
|
974 |
-
#: ../dashboard.php:
|
975 |
msgid "Filter"
|
976 |
msgstr "Filter"
|
977 |
|
978 |
-
#: ../dashboard.php:
|
979 |
msgid "Cerber Dashboard"
|
980 |
msgstr "Cerber Dashboard"
|
981 |
|
982 |
-
#: ../dashboard.php:
|
983 |
msgid "Cerber tools"
|
984 |
msgstr "Cerber Werkzeuge"
|
985 |
|
986 |
-
#: ../dashboard.php:
|
987 |
msgid "Subscribe"
|
988 |
msgstr "Abonnieren"
|
989 |
|
990 |
-
#: ../dashboard.php:
|
991 |
msgid "Unsubscribe"
|
992 |
msgstr "Abmelden"
|
993 |
|
994 |
-
#: ../dashboard.php:
|
995 |
#, fuzzy
|
996 |
msgid "You've subscribed"
|
997 |
msgstr "Erfolgreich abonniert"
|
998 |
|
999 |
-
#: ../dashboard.php:
|
1000 |
#, fuzzy
|
1001 |
msgid "You've unsubscribed"
|
1002 |
msgstr "Erfolgreich abgemeldet"
|
1003 |
|
1004 |
-
#: ../wp-cerber.php:
|
1005 |
msgid "A new activity has been recorded"
|
1006 |
msgstr "Eine neue Aktivität wurde aufgezeichnet"
|
1007 |
|
1008 |
-
#: ../wp-cerber.php:
|
1009 |
msgid "User"
|
1010 |
msgstr "Benutzer"
|
1011 |
|
1012 |
-
#: ../wp-cerber.php:
|
1013 |
msgid "Search string"
|
1014 |
msgstr "Such-String"
|
1015 |
|
1016 |
-
#: ../wp-cerber.php:
|
1017 |
msgid "To unsubscribe click here"
|
1018 |
msgstr "Zum Abmelden hier klicken"
|
1019 |
|
@@ -1029,7 +1025,7 @@ msgstr "Datumsformat"
|
|
1029 |
msgid "if empty, the default format %s will be used"
|
1030 |
msgstr "wenn leer, dann wird das Standard Format %s verwendet"
|
1031 |
|
1032 |
-
#: ../dashboard.php:
|
1033 |
msgid "Push notifications"
|
1034 |
msgstr "Push-Benachrichtigungen"
|
1035 |
|
@@ -1053,15 +1049,15 @@ msgstr "Kein Gerät gefunden"
|
|
1053 |
msgid "Not available"
|
1054 |
msgstr "Nicht verfügbar"
|
1055 |
|
1056 |
-
#: ../common.php:
|
1057 |
msgid "Password reset requested"
|
1058 |
msgstr "Passwort Zurücksetzung angefordert"
|
1059 |
|
1060 |
-
#: ../common.php:
|
1061 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1062 |
msgstr "Grenze an fehlgeschlagenen reCAPTCHA ist erreicht"
|
1063 |
|
1064 |
-
#: ../common.php:
|
1065 |
msgid "%s ago"
|
1066 |
msgstr "vor %s"
|
1067 |
|
@@ -1105,7 +1101,7 @@ msgstr "IP Adresse für %s Minuten nach %s fehlgeschlagenen Versuchen innerhalb
|
|
1105 |
msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
|
1106 |
msgstr "Im Citadel Modus kann sich niemand einloggen, außer IPs auf der White IP Zugangsliste. Laufende Sitzungen werden nicht beeinflusst."
|
1107 |
|
1108 |
-
#: ../dashboard.php:
|
1109 |
msgid "Event"
|
1110 |
msgstr "Ereignis"
|
1111 |
|
@@ -1121,24 +1117,24 @@ msgstr "Schadhafte IP Adresse gefunden"
|
|
1121 |
msgid "Lockouts occurred"
|
1122 |
msgstr "Sperre aufgetreten"
|
1123 |
|
1124 |
-
#: ../dashboard.php:
|
1125 |
msgid "All suspicious activity"
|
1126 |
msgstr "Alle verdächtigen Aktivitäten"
|
1127 |
|
1128 |
-
#: ../wp-cerber.php:
|
1129 |
-
#: php:
|
1130 |
msgid "You are not allowed to register."
|
1131 |
msgstr "Registrierung nicht erlaubt."
|
1132 |
|
1133 |
-
#: ../common.php:
|
1134 |
msgid "Spam comment denied"
|
1135 |
msgstr "Spam Kommentar verweigert"
|
1136 |
|
1137 |
-
#: ../common.php:
|
1138 |
msgid "Attempt to log in denied"
|
1139 |
msgstr "Loginversuch verweigert"
|
1140 |
|
1141 |
-
#: ../common.php:
|
1142 |
msgid "Attempt to register denied"
|
1143 |
msgstr "Registrierungsversuch verweigert"
|
1144 |
|
@@ -1146,11 +1142,11 @@ msgstr "Registrierungsversuch verweigert"
|
|
1146 |
msgid "Malicious activities mitigated"
|
1147 |
msgstr "Schadhafte Aktivitäten gemildert"
|
1148 |
|
1149 |
-
#: ../dashboard.php:
|
1150 |
msgid "Cerber antispam settings"
|
1151 |
msgstr "Cerber Antispam-Einstellungen"
|
1152 |
|
1153 |
-
#: ../dashboard.php:
|
1154 |
msgid "Antispam"
|
1155 |
msgstr "Antispam"
|
1156 |
|
@@ -1182,177 +1178,179 @@ msgstr "Diagnose"
|
|
1182 |
msgid "License"
|
1183 |
msgstr "Lizenz"
|
1184 |
|
1185 |
-
#: ../cerber-tools.php:
|
1186 |
msgid "Antispam and bot detection settings"
|
1187 |
msgstr "Antispam- und Bot-Erkennungseinstellungen"
|
1188 |
|
1189 |
-
#: ../wp-cerber.php:
|
1190 |
msgid "Sorry, human verification failed."
|
1191 |
-
msgstr ""
|
|
|
1192 |
|
1193 |
-
#: ../common.php:
|
1194 |
msgid "Bot activity is detected"
|
1195 |
-
msgstr ""
|
1196 |
|
1197 |
#: ../settings.php:142
|
1198 |
msgid "Comment processing"
|
1199 |
-
msgstr ""
|
1200 |
|
1201 |
#: ../settings.php:143
|
1202 |
msgid "If a spam comment detected"
|
1203 |
-
msgstr ""
|
1204 |
|
1205 |
#: ../settings.php:144
|
1206 |
msgid "Trash spam comments"
|
1207 |
-
msgstr ""
|
1208 |
|
1209 |
#: ../settings.php:144
|
1210 |
msgid "Move spam comments to trash after"
|
1211 |
-
msgstr ""
|
1212 |
|
1213 |
-
#: ../common.php:
|
1214 |
msgid "Spam form submission denied"
|
1215 |
-
msgstr ""
|
1216 |
|
1217 |
#: ../settings.php:135
|
1218 |
msgid "Other forms"
|
1219 |
-
msgstr ""
|
1220 |
|
1221 |
#: ../settings.php:135
|
1222 |
msgid "Protect all forms on the website with bot detection engine"
|
1223 |
-
msgstr ""
|
1224 |
|
1225 |
#: ../settings.php:137
|
1226 |
msgid "Adjust antispam engine"
|
1227 |
-
msgstr ""
|
1228 |
|
1229 |
#: ../settings.php:138
|
1230 |
msgid "Safe mode"
|
1231 |
-
msgstr ""
|
1232 |
|
1233 |
#: ../settings.php:138
|
1234 |
msgid "Use less restrictive policies (allow AJAX)"
|
1235 |
-
msgstr ""
|
1236 |
|
1237 |
#: ../settings.php:139
|
1238 |
msgid "Logged in users"
|
1239 |
-
msgstr ""
|
1240 |
|
1241 |
#: ../settings.php:139
|
1242 |
msgid "Disable bot detection engine for logged in users"
|
1243 |
-
msgstr ""
|
1244 |
|
1245 |
#. Name of the plugin
|
1246 |
#:
|
1247 |
msgid "WP Cerber Security & Antispam"
|
1248 |
-
msgstr ""
|
1249 |
|
1250 |
-
#: ../dashboard.php:95 ../dashboard.php:
|
1251 |
msgid "Country"
|
1252 |
-
msgstr ""
|
1253 |
|
1254 |
-
#: ../dashboard.php:
|
1255 |
msgid "All events"
|
1256 |
-
msgstr ""
|
1257 |
|
1258 |
-
#: ../dashboard.php:
|
1259 |
msgid "Cerber Security Rules"
|
1260 |
-
msgstr ""
|
1261 |
|
1262 |
-
#: ../dashboard.php:
|
1263 |
msgid "Security Rules"
|
1264 |
-
msgstr ""
|
1265 |
|
1266 |
-
#: ../dashboard.php:
|
1267 |
msgid "Failed login attempts"
|
1268 |
-
msgstr ""
|
1269 |
|
1270 |
-
#: ../dashboard.php:
|
1271 |
msgid "Registered"
|
1272 |
-
msgstr ""
|
1273 |
|
1274 |
-
#: ../dashboard.php:
|
1275 |
msgid "You"
|
1276 |
-
msgstr ""
|
1277 |
|
1278 |
#: ../common.php:117
|
1279 |
msgid "Spam form submissions denied"
|
1280 |
-
msgstr ""
|
|
|
1281 |
|
1282 |
-
#: ../dashboard.php:
|
1283 |
msgid "Getting Started Guide"
|
1284 |
-
msgstr ""
|
1285 |
|
1286 |
-
#: ../dashboard.php:
|
1287 |
msgid "Countries"
|
1288 |
-
msgstr ""
|
1289 |
|
1290 |
-
#: ../dashboard.php:
|
1291 |
msgid "Permitted for one country"
|
1292 |
msgid_plural "Permitted for %d countries"
|
1293 |
-
msgstr[0] ""
|
1294 |
-
msgstr[1] ""
|
1295 |
|
1296 |
-
#: ../dashboard.php:
|
1297 |
msgid "No rule"
|
1298 |
-
msgstr ""
|
1299 |
|
1300 |
-
#: ../dashboard.php:
|
1301 |
msgid "Security rules have been updated"
|
1302 |
-
msgstr ""
|
1303 |
|
1304 |
#. URI of the plugin
|
1305 |
#:
|
1306 |
msgid "https://wpcerber.com"
|
1307 |
-
msgstr ""
|
1308 |
|
1309 |
-
#: ../common.php:
|
1310 |
msgid "Form submission denied"
|
1311 |
-
msgstr ""
|
1312 |
|
1313 |
-
#: ../common.php:
|
1314 |
msgid "Comment denied"
|
1315 |
-
msgstr ""
|
1316 |
|
1317 |
-
#: ../common.php:
|
1318 |
msgid "Request to REST API denied"
|
1319 |
-
msgstr ""
|
1320 |
|
1321 |
-
#: ../common.php:
|
1322 |
msgid "XML-RPC request denied"
|
1323 |
-
msgstr ""
|
1324 |
|
1325 |
-
#: ../common.php:
|
1326 |
msgid "Bot detected"
|
1327 |
-
msgstr ""
|
1328 |
|
1329 |
-
#: ../common.php:
|
1330 |
msgid "Citadel mode is active"
|
1331 |
-
msgstr ""
|
1332 |
|
1333 |
-
#: ../common.php:
|
1334 |
msgid "Malicious activity detected"
|
1335 |
-
msgstr ""
|
1336 |
|
1337 |
-
#: ../common.php:
|
1338 |
msgid "Blocked by country rule"
|
1339 |
-
msgstr ""
|
1340 |
|
1341 |
-
#: ../common.php:
|
1342 |
msgid "Limit reached"
|
1343 |
-
msgstr ""
|
1344 |
|
1345 |
-
#: ../common.php:
|
1346 |
msgid "Multiple suspicious activities"
|
1347 |
-
msgstr ""
|
1348 |
|
1349 |
-
#: ../common.php:
|
1350 |
msgid "Multiple suspicious activities were detected"
|
1351 |
-
msgstr ""
|
1352 |
|
1353 |
#: ../settings.php:107
|
1354 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
1355 |
-
msgstr ""
|
1356 |
|
1357 |
#: ../settings.php:110
|
1358 |
msgid "Block access to the WordPress REST API except the following"
|
@@ -1386,35 +1384,35 @@ msgstr ""
|
|
1386 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: ../dashboard.php:
|
1390 |
msgid "Start typing here to find a country"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: ../dashboard.php:
|
1394 |
msgid "Click on a country name to add it to the list of selected countries"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: ../dashboard.php:
|
1398 |
msgid "Submit forms"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: ../dashboard.php:
|
1402 |
msgid "Post comments"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: ../dashboard.php:
|
1406 |
msgid "Log in to the website"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: ../dashboard.php:
|
1410 |
msgid "Register on the website"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: ../dashboard.php:
|
1414 |
msgid "Use XML-RPC"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: ../dashboard.php:
|
1418 |
msgid "Use REST API"
|
1419 |
msgstr ""
|
1420 |
|
@@ -1426,11 +1424,11 @@ msgstr ""
|
|
1426 |
msgid "Mark it as spam"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: ../dashboard.php:
|
1430 |
msgid "in the last 24 hours"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: ../dashboard.php:
|
1434 |
msgid "Main settings"
|
1435 |
msgstr ""
|
1436 |
|
@@ -1476,23 +1474,23 @@ msgctxt "preposition of time"
|
|
1476 |
msgid "at"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: ../wp-cerber.php:
|
1480 |
msgid "Weekly report"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: ../wp-cerber.php:
|
1484 |
msgid "To change reporting settings visit"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: ../wp-cerber.php:
|
1488 |
msgid "Your login page:"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: ../wp-cerber.php:
|
1492 |
msgid "Your license is valid until"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: ../wp-cerber.php:
|
1496 |
msgid "Activity details"
|
1497 |
msgstr ""
|
1498 |
|
@@ -1500,30 +1498,30 @@ msgstr ""
|
|
1500 |
msgid "Click to send now"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: ../wp-cerber.php:
|
1504 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: ../dashboard.php:
|
1508 |
msgid "Email has been sent to"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: ../dashboard.php:
|
1512 |
msgid "Unable to send email to"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: ../dashboard.php:
|
1516 |
msgid "Not permitted for one country"
|
1517 |
msgid_plural "Not permitted for %d countries"
|
1518 |
msgstr[0] ""
|
1519 |
msgstr[1] ""
|
1520 |
|
1521 |
-
#: ../dashboard.php:
|
1522 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1523 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: ../dashboard.php:
|
1527 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1528 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
1529 |
msgstr ""
|
@@ -1533,7 +1531,7 @@ msgstr ""
|
|
1533 |
msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: ../wp-cerber.php:
|
1537 |
msgid "Weekly Report"
|
1538 |
msgstr ""
|
1539 |
|
@@ -1557,11 +1555,31 @@ msgstr ""
|
|
1557 |
msgid "Enable reporting"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: ../wp-cerber.php:
|
1561 |
msgid "Your last sign-in was %s from %s"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: ../wp-cerber.php:
|
1565 |
msgid "Attempts to log in with non-existent username"
|
1566 |
msgstr ""
|
1567 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
75 |
msgstr "Blockiere direkten Zugriff zu wp-login.php und gib HTTP 404 Not Found Error zurück"
|
76 |
|
77 |
+
#: ../dashboard.php:1109 ../settings.php:86
|
78 |
msgid "Citadel mode"
|
79 |
msgstr "Citadel Modus"
|
80 |
|
86 |
msgid "Duration"
|
87 |
msgstr "Dauer"
|
88 |
|
89 |
+
#: ../wp-cerber.php:3742 ../settings.php:72 ../settings.php:89 ../settings.php:262
|
90 |
msgid "Notifications"
|
91 |
msgstr "Benachrichtigungen"
|
92 |
|
94 |
msgid "Send notification to admin email"
|
95 |
msgstr "Sende eine Benachrichtigung an die Emailadresse des Admins"
|
96 |
|
97 |
+
#: ../dashboard.php:1118 ../wp-cerber.php:3739 ../settings.php:255 ../cerber-
|
98 |
+
#: tools.php:88 ../cerber-tools.php:97 ../cerber-tools.php:178
|
99 |
msgid "Access Lists"
|
100 |
msgstr "Zugriffslisten"
|
101 |
|
102 |
+
#: ../dashboard.php:1116 ../dashboard.php:1312 ../wp-cerber.php:3503 ../settings.
|
103 |
#: php:91 ../settings.php:246
|
104 |
msgid "Activity"
|
105 |
msgstr "Aktivität"
|
106 |
|
107 |
+
#: ../dashboard.php:1117 ../settings.php:250
|
108 |
msgid "Lockouts"
|
109 |
msgstr "Sperren"
|
110 |
|
116 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
117 |
msgstr "Aktiviere nach %s fehlgeschlagenen Anmeldeversuchen in den letzten %s Minuten"
|
118 |
|
119 |
+
#: ../dashboard.php:93 ../dashboard.php:631 ../wp-cerber.php:3512
|
120 |
msgid "IP"
|
121 |
msgstr "IP"
|
122 |
|
123 |
+
#: ../dashboard.php:476 ../dashboard.php:634
|
124 |
msgid "Date"
|
125 |
msgstr "Datum"
|
126 |
|
127 |
+
#: ../dashboard.php:476 ../dashboard.php:636
|
128 |
msgid "Local User"
|
129 |
msgstr "Lokaler Benutzer"
|
130 |
|
131 |
+
#: ../dashboard.php:476 ../dashboard.php:637 ../wp-cerber.php:3520
|
132 |
msgid "Username used"
|
133 |
msgstr "Benutzername wird bereits verwendet"
|
134 |
|
136 |
msgid "Showing last %d records from %d"
|
137 |
msgstr "Zeige die letzten %d Einträge von %d"
|
138 |
|
139 |
+
#: ../common.php:521
|
140 |
msgid "Logged in"
|
141 |
msgstr "Eingeloggt"
|
142 |
|
143 |
+
#: ../common.php:522
|
144 |
msgid "Logged out"
|
145 |
msgstr "Ausgeloggt"
|
146 |
|
147 |
+
#: ../common.php:523
|
148 |
msgid "Login failed"
|
149 |
msgstr "Login fehlgeschlagen"
|
150 |
|
151 |
+
#: ../common.php:526
|
152 |
msgid "IP blocked"
|
153 |
msgstr "IP geblockt"
|
154 |
|
155 |
+
#: ../common.php:527
|
156 |
msgid "Subnet blocked"
|
157 |
msgstr "Subnetz geblockt"
|
158 |
|
159 |
+
#: ../common.php:529
|
160 |
msgid "Citadel activated!"
|
161 |
msgstr "Citadel-Modus aktiviert!"
|
162 |
|
163 |
+
#: ../dashboard.php:612 ../dashboard.php:816 ../common.php:565
|
164 |
msgid "Locked out"
|
165 |
msgstr "Ausgesperrt"
|
166 |
|
167 |
#. Only correct if "IP blacklisted" is used as indicative. Otherwise it would not translate "IP auf der schwarzen Liste" but "IP auf die schwarze Liste gesetzt" (if it states that the IP was just blacklisted).
|
168 |
+
#: ../common.php:566
|
169 |
#, fuzzy
|
170 |
msgid "IP blacklisted"
|
171 |
msgstr "IP blockiert"
|
172 |
|
173 |
+
#: ../common.php:544
|
174 |
msgid "Password changed"
|
175 |
msgstr "Passwort geändert"
|
176 |
|
177 |
+
#: ../dashboard.php:86 ../dashboard.php:158
|
178 |
msgid "Remove"
|
179 |
msgstr "Entfernen"
|
180 |
|
181 |
+
#: ../dashboard.php:387
|
182 |
msgid "Lockout for %s was removed"
|
183 |
msgstr "Die Sperre für %s wurde entfernt"
|
184 |
|
185 |
+
#: ../dashboard.php:131 ../dashboard.php:607 ../dashboard.php:811 ../dashboard.
|
186 |
+
#: php:1107 ../wp-cerber.php:3731 ../settings.php:71 ../settings.php:216
|
187 |
#, fuzzy
|
188 |
msgid "White IP Access List"
|
189 |
msgstr "Weiße Liste (erlaubten IPs)"
|
190 |
|
191 |
+
#: ../dashboard.php:133 ../dashboard.php:608 ../dashboard.php:813 ../dashboard.
|
192 |
+
#: php:1108
|
193 |
#, fuzzy
|
194 |
msgid "Black IP Access List"
|
195 |
msgstr "Schwarze Liste (verbotenen IPs)"
|
196 |
|
197 |
+
#: ../dashboard.php:163
|
198 |
msgid "List is empty"
|
199 |
msgstr "Liste ist leer"
|
200 |
|
201 |
+
#: ../dashboard.php:200
|
202 |
msgid "Address %s was added to White IP Access List"
|
203 |
msgstr "Adresse %s wurde zur Liste der erlaubten IPs hinzugefügt"
|
204 |
|
205 |
+
#: ../dashboard.php:214
|
206 |
msgid "Address %s was added to Black IP Access List"
|
207 |
msgstr "Adresse %s wurde zur Liste der verbotenen IPs hinzugefügt"
|
208 |
|
209 |
+
#: ../wp-cerber.php:2995
|
210 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
211 |
msgstr "Citadel-Modus ist aktiviert nach %d fehlgeschlagenen Logins in %d Minuten."
|
212 |
|
213 |
+
#: ../dashboard.php:1454
|
214 |
msgid "View Activity"
|
215 |
msgstr "Aktivitäten anzeigen"
|
216 |
|
218 |
msgid "Settings"
|
219 |
msgstr "Einstellungen"
|
220 |
|
221 |
+
#: ../dashboard.php:973
|
222 |
msgid "Last login"
|
223 |
msgstr "Letzte Anmeldung"
|
224 |
|
225 |
+
#: ../dashboard.php:1006 ../dashboard.php:1090
|
226 |
msgid "Never"
|
227 |
msgstr "Niemals"
|
228 |
|
229 |
+
#: ../dashboard.php:1356
|
230 |
msgid "Are you sure?"
|
231 |
msgstr "Sind Sie sicher?"
|
232 |
|
233 |
+
#: ../dashboard.php:1164 ../settings.php:73
|
234 |
msgid "My site is behind a reverse proxy"
|
235 |
msgstr "Meine Website ist hinter einem Reverse-Proxy"
|
236 |
|
259 |
msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
|
260 |
msgstr "Seien Sie vorsichtig bei der Aktivierung dieser Optionen. Wenn Sie die benutzerdefinierte Login-URL vergessen, können Sie sich nicht mehr anmelden."
|
261 |
|
262 |
+
#: ../wp-cerber.php:3738 ../settings.php:252
|
263 |
msgid "Main Settings"
|
264 |
msgstr "Haupteinstellungen"
|
265 |
|
273 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
274 |
msgstr "Erhöhe die Sperrdauer um %s Stunden nach %s Aussperrungen in den letzten %s Stunden"
|
275 |
|
276 |
+
#: ../wp-cerber.php:237
|
277 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
278 |
msgstr "Sie sind nicht berechtigt, sich anzumelden. Fragen Sie Ihren Administrator nach Unterstützung."
|
279 |
|
280 |
#. One "Minute", two/three/four/... "Minuten".
|
281 |
+
#: ../wp-cerber.php:243
|
282 |
#, fuzzy
|
283 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
284 |
msgstr "Sie haben die maximale Anzahl an Login-Versuchen erreicht. Bitte versuchen Sie es in %d Minuten noch einmal."
|
285 |
|
286 |
+
#: ../wp-cerber.php:262
|
287 |
msgid "You have only one attempt remaining."
|
288 |
msgid_plural "You have %d attempts remaining."
|
289 |
msgstr[0] "Sie haben nur noch einen Versuch."
|
290 |
msgstr[1] "Sie haben nur noch %d Versuche."
|
291 |
|
292 |
+
#: ../dashboard.php:658
|
293 |
msgid "No activity has been logged."
|
294 |
msgstr "Keine Aktivität wurde protokolliert."
|
295 |
|
309 |
msgid "Your IP"
|
310 |
msgstr "Ihre IP"
|
311 |
|
312 |
+
#: ../wp-cerber.php:2996
|
|
|
|
|
|
|
|
|
313 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
314 |
msgstr "Der letzte gescheiterte Versuch war um %s von der IP %s mit der Benutzeranmeldung: %s."
|
315 |
|
316 |
+
#: ../wp-cerber.php:3714
|
317 |
msgid "Can't activate WP Cerber due to a database error."
|
318 |
msgstr "Kann WP Cerber aufgrund eines Datenbankfehlers nicht aktivieren."
|
319 |
|
325 |
msgid "days"
|
326 |
msgstr "Tage"
|
327 |
|
328 |
+
#: ../dashboard.php:1060
|
329 |
msgid "Cerber Quick View"
|
330 |
msgstr "Cerber Schnellansicht"
|
331 |
|
337 |
msgid "To view activity, click on the IP"
|
338 |
msgstr "Um die Aktivität sehen zu können, klicken Sie auf die IP"
|
339 |
|
340 |
+
#: ../dashboard.php:158 ../dashboard.php:843
|
341 |
msgid "Check for activity"
|
342 |
msgstr "Auf Aktivität überprüfen"
|
343 |
|
353 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
354 |
msgstr "Achtung! Sie haben die Anmelde-URL geändert! Die neue Login-URL ist"
|
355 |
|
356 |
+
#: ../dashboard.php:972
|
357 |
msgid "Comments"
|
358 |
msgstr "Kommentare"
|
359 |
|
360 |
+
#: ../common.php:785
|
361 |
msgid "Update to version %s of WP Cerber"
|
362 |
msgstr "Update auf Version %s von WP Cerber"
|
363 |
|
364 |
+
#: ../wp-cerber.php:2997 ../wp-cerber.php:3544
|
365 |
msgid "View activity in dashboard"
|
366 |
msgstr "Zeige Aktivität im Dashboard"
|
367 |
|
368 |
+
#: ../wp-cerber.php:3027
|
369 |
msgid "Number of active lockouts"
|
370 |
msgstr "Anzahl der aktiven Sperren"
|
371 |
|
372 |
+
#: ../wp-cerber.php:3031
|
373 |
msgid "View lockouts in dashboard"
|
374 |
msgstr "Zeige Sperren im Dashboard"
|
375 |
|
376 |
+
#: ../wp-cerber.php:3113
|
377 |
msgid "This message was sent by"
|
378 |
msgstr "Diese Nachricht wurde gesendet von"
|
379 |
|
380 |
#. Used to be "Import/Export" but this is a fuzzy translation. Exact translation that WordPress also uses is "Werkzeuge".
|
381 |
+
#: ../dashboard.php:901 ../cerber-tools.php:43
|
382 |
msgid "Tools"
|
383 |
msgstr "Werkzeuge"
|
384 |
|
426 |
msgid "Upload file"
|
427 |
msgstr "Datei hochladen"
|
428 |
|
429 |
+
#: ../cerber-tools.php:145
|
430 |
msgid "No file was uploaded or file is corrupted"
|
431 |
msgstr "Keine Datei hochgeladen oder Datei ist beschädigt"
|
432 |
|
433 |
+
#: ../cerber-tools.php:178
|
434 |
msgid "Error while updating"
|
435 |
msgstr "Fehler bei der Aktualisierung"
|
436 |
|
437 |
+
#: ../cerber-tools.php:181
|
438 |
msgid "Settings has imported successfully from"
|
439 |
msgstr "Einstellungen erfolgreich importiert von"
|
440 |
|
441 |
+
#: ../cerber-tools.php:185
|
442 |
msgid "Error while parsing file"
|
443 |
msgstr "Fehler beim Parsen der Datei"
|
444 |
|
445 |
+
#: ../dashboard.php:94 ../dashboard.php:632
|
446 |
msgid "Hostname"
|
447 |
msgstr "Hostname"
|
448 |
|
449 |
+
#: ../dashboard.php:353
|
450 |
#, fuzzy
|
451 |
msgid "unknown"
|
452 |
msgstr "unbekannt"
|
455 |
msgid "Keep records for"
|
456 |
msgstr "Behalte Aufzeichnungen für"
|
457 |
|
458 |
+
#: ../dashboard.php:1094
|
459 |
msgid "active"
|
460 |
msgstr "aktiv"
|
461 |
|
462 |
+
#: ../dashboard.php:1094
|
463 |
msgid "deactivate"
|
464 |
msgstr "deaktiviert"
|
465 |
|
466 |
+
#: ../dashboard.php:1096
|
467 |
msgid "not active"
|
468 |
msgstr "nicht aktiv"
|
469 |
|
470 |
#. "deactive" and "disabled" mean exactly the same in German.
|
471 |
+
#: ../dashboard.php:1097
|
472 |
msgid "disabled"
|
473 |
msgstr "deaktiviert"
|
474 |
|
475 |
+
#: ../dashboard.php:1102
|
476 |
msgid "failed attempts"
|
477 |
msgstr "Fehlversuche"
|
478 |
|
479 |
+
#: ../dashboard.php:1102 ../dashboard.php:1103
|
480 |
msgid "in 24 hours"
|
481 |
msgstr "in 24 Stunden"
|
482 |
|
483 |
+
#: ../dashboard.php:1102 ../dashboard.php:1103
|
484 |
msgid "view all"
|
485 |
msgstr "Zeige alle"
|
486 |
|
487 |
+
#: ../dashboard.php:1103
|
488 |
msgid "lockouts"
|
489 |
msgstr "Sperren"
|
490 |
|
491 |
+
#: ../dashboard.php:1105
|
492 |
msgid "Lockouts at the moment"
|
493 |
msgstr "Momentane Sperren"
|
494 |
|
495 |
+
#: ../dashboard.php:1106
|
496 |
msgid "Last lockout"
|
497 |
msgstr "Letzte Sperre"
|
498 |
|
499 |
+
#: ../dashboard.php:1107 ../dashboard.php:1108 ../dashboard.php:1620
|
500 |
msgid "entry"
|
501 |
msgid_plural "entries"
|
502 |
msgstr[0] "Eintrag"
|
503 |
msgstr[1] "Einträge"
|
504 |
|
505 |
+
#: ../dashboard.php:1351
|
506 |
#, fuzzy
|
507 |
msgid "Confused about some settings?"
|
508 |
msgstr "Verwirrende Einstellungen?"
|
509 |
|
510 |
+
#: ../dashboard.php:1352
|
511 |
msgid "You can easily load default recommended settings using button below"
|
512 |
msgstr "Sie können ganz einfach mit dem unteren Button empfohlene Standardeinstellungen laden"
|
513 |
|
514 |
+
#: ../dashboard.php:1354
|
515 |
msgid "Load default settings"
|
516 |
msgstr "Standardeinstellung laden"
|
517 |
|
518 |
+
#: ../dashboard.php:1362
|
519 |
msgid "doesn't affect Custom login URL and Access Lists"
|
520 |
msgstr "hat keinen Einfluss auf benutzerdefinierte Login-URL und Zugriffslisten"
|
521 |
|
522 |
+
#: ../common.php:778
|
523 |
msgid "New version is available"
|
524 |
msgstr "Eine neue Version ist verfügbar"
|
525 |
|
526 |
#. Name of the plugin
|
527 |
+
#: ../dashboard.php:892 ../dashboard.php:911
|
528 |
msgid "WP Cerber"
|
529 |
msgstr "WP Cerber"
|
530 |
|
531 |
+
#: ../wp-cerber.php:2971
|
532 |
msgid "WP Cerber notify"
|
533 |
msgstr "WP Cerber benachrichtigen"
|
534 |
|
535 |
+
#: ../wp-cerber.php:2993
|
536 |
msgid "Citadel mode is activated"
|
537 |
msgstr "Citadel-Modus ist aktiviert"
|
538 |
|
539 |
+
#: ../wp-cerber.php:3067
|
540 |
msgid "New Custom login URL"
|
541 |
msgstr "Neue benutzerdefinierte Login-URL"
|
542 |
|
543 |
+
#: ../wp-cerber.php:3701
|
544 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
545 |
msgstr "WP Cerber benötigt PHP Version %s oder höher. Sie haben"
|
546 |
|
547 |
+
#: ../wp-cerber.php:3705
|
548 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
549 |
msgstr "WP Cerber benötigt Wordpress Version %s oder höher. Sie haben"
|
550 |
|
558 |
msgid "Write failed login attempts to the file"
|
559 |
msgstr "Schreibe fehlgeschlagene Anmeldungen in die Datei."
|
560 |
|
561 |
+
#: ../dashboard.php:1453
|
562 |
msgid "Deactivate"
|
563 |
msgstr "Deaktivieren"
|
564 |
|
565 |
+
#: ../dashboard.php:97 ../wp-cerber.php:3029
|
566 |
msgid "Reason"
|
567 |
msgstr "Grund"
|
568 |
|
569 |
+
#: ../dashboard.php:168
|
570 |
msgid "Add IP to the list"
|
571 |
msgstr "Füge IP zur Liste hinzu"
|
572 |
|
573 |
+
#: ../dashboard.php:861
|
574 |
msgid "Add IP to the Black List"
|
575 |
msgstr "Füge IP zur Schwarzen Liste hinzu"
|
576 |
|
577 |
+
#: ../common.php:596
|
578 |
msgid "Attempt to access"
|
579 |
msgstr "Zugriffsversuch"
|
580 |
|
581 |
+
#: ../common.php:595
|
582 |
msgid "Limit on login attempts is reached"
|
583 |
msgstr "Limit für Anmeldeversuche ist erreicht"
|
584 |
|
585 |
+
#: ../common.php:552 ../common.php:597
|
586 |
msgid "Attempt to log in with non-existent username"
|
587 |
msgstr "Anmeldeversuch mit nicht existierendem Nutzernamen"
|
588 |
|
589 |
+
#: ../wp-cerber.php:3028
|
590 |
msgid "Last lockout was added: %s for IP %s"
|
591 |
msgstr "Letzte Sperre wurde hinzugefügt: %s für IP %s"
|
592 |
|
593 |
#. "Abhärtung" is the medical translation for "hardening" which fits best in this case.
|
594 |
+
#: ../wp-cerber.php:3741 ../settings.php:257
|
595 |
msgid "Hardening"
|
596 |
msgstr "Abhärtung"
|
597 |
|
598 |
+
#: ../dashboard.php:839
|
599 |
msgid "Abuse email:"
|
600 |
msgstr "Missbrauch Email:"
|
601 |
|
656 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
657 |
msgstr "<strong>FEHLER</strong>: Bitte eine gültige E-Mail-Adresse eingeben"
|
658 |
|
659 |
+
#: ../wp-cerber.php:3059 ../wp-cerber.php:3730
|
660 |
#, fuzzy
|
661 |
msgid "WP Cerber is now active and has started protecting your site"
|
662 |
msgstr "WP Cerber ist nun aktiv und schützt ihre Website"
|
669 |
msgid "Nobody can log in or register from these IPs"
|
670 |
msgstr "Niemand kann sich von diesen IPs anmelden oder registrieren"
|
671 |
|
672 |
+
#: ../dashboard.php:194 ../dashboard.php:206
|
673 |
msgid "Incorrect IP address or IP range"
|
674 |
msgstr "Falsche IP-Adresse oder falscher IP-Bereich"
|
675 |
|
676 |
+
#: ../dashboard.php:404 ../dashboard.php:1469
|
677 |
msgid "Settings saved"
|
678 |
msgstr "Einstellungen gespeichert"
|
679 |
|
680 |
+
#: ../dashboard.php:843
|
681 |
msgid "Network:"
|
682 |
msgstr "Netzwerk:"
|
683 |
|
684 |
+
#: ../dashboard.php:857
|
685 |
msgid "Add network to the Black List"
|
686 |
msgstr "Netzwerk zur schwarzen Liste hinzufügen"
|
687 |
|
688 |
+
#: ../dashboard.php:1452
|
689 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
690 |
msgstr "Achtung! Citadel-Modus ist nun aktiv. Niemand kann sich anmelden."
|
691 |
|
692 |
+
#: ../dashboard.php:311 ../whois.php:221 ../whois.php:252 ../common.php:594
|
693 |
msgid "Unknown"
|
694 |
msgstr "Unbekannt"
|
695 |
|
698 |
msgid "Gregory"
|
699 |
msgstr "Gregory"
|
700 |
|
701 |
+
#: ../wp-cerber.php:545 ../wp-cerber.php:557 ../wp-cerber.php:564 ../wp-cerber.
|
702 |
+
#: php:743 ../wp-cerber.php:959 ../wp-cerber.php:965 ../wp-cerber.php:970 ../wp-
|
703 |
+
#: cerber.php:975 ../wp-cerber.php:981 ../wp-cerber.php:988 ../wp-cerber.php:1088
|
704 |
+
#: ../wp-cerber.php:1225 ../common.php:173 ../common.php:227 ../common.php:231 ..
|
705 |
+
#: /settings.php:709
|
706 |
msgid "ERROR:"
|
707 |
msgstr "FEHLER:"
|
708 |
|
709 |
+
#: ../wp-cerber.php:574
|
710 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
711 |
msgstr "Menschlichkeitsnachweis gescheitert. Bitte klicken Sie das quadratische Kästchen im reCAPTCHA-Block unten."
|
712 |
|
713 |
+
#: ../wp-cerber.php:755
|
714 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
715 |
msgstr "<strong>FEHLER</strong>: Das eingegebene Passwort für den Benutzernamen %s ist falsch."
|
716 |
|
717 |
+
#: ../wp-cerber.php:976
|
718 |
msgid "Username is not allowed. Please choose another one."
|
719 |
msgstr "Benutzername ist nicht erlaubt. Bitte einen anderen wählen."
|
720 |
|
721 |
+
#: ../wp-cerber.php:3022
|
722 |
msgid "unspecified"
|
723 |
msgstr "nicht spezifiziert"
|
724 |
|
725 |
+
#: ../wp-cerber.php:3025
|
726 |
msgid "Number of lockouts is increasing"
|
727 |
msgstr "Anzahl an Sperren steigt an"
|
728 |
|
729 |
+
#: ../wp-cerber.php:3030
|
730 |
msgid "View activity for this IP"
|
731 |
msgstr "Zeige Aktivität für diese IP"
|
732 |
|
733 |
+
#: ../wp-cerber.php:3034 ../wp-cerber.php:3036
|
734 |
msgid "A new version of WP Cerber is available to install"
|
735 |
msgstr "Eine neue Version von WP Cerber ist zur Installation verfügbar"
|
736 |
|
737 |
+
#: ../wp-cerber.php:3035
|
738 |
msgid "Hi!"
|
739 |
msgstr "Hallo!"
|
740 |
|
741 |
#. Original translation is "Internetseite" but this translation is not up to time.
|
742 |
+
#: ../wp-cerber.php:3038 ../wp-cerber.php:3049
|
743 |
msgid "Website"
|
744 |
msgstr "Website"
|
745 |
|
746 |
+
#: ../wp-cerber.php:3041 ../wp-cerber.php:3042
|
747 |
msgid "The WP Cerber security plugin has been deactivated"
|
748 |
msgstr "Das WP Cerber Sicherheits-Plugin wurde deaktiviert"
|
749 |
|
750 |
+
#: ../wp-cerber.php:3044
|
751 |
msgid "Not logged in"
|
752 |
msgstr "Nicht angemeldet"
|
753 |
|
754 |
+
#: ../wp-cerber.php:3050
|
755 |
#, fuzzy
|
756 |
msgid "By user"
|
757 |
msgstr "Von Nutzer"
|
758 |
|
759 |
+
#: ../wp-cerber.php:3051
|
760 |
#, fuzzy
|
761 |
msgid "From IP address"
|
762 |
msgstr "Von IP-Adresse"
|
763 |
|
764 |
+
#: ../wp-cerber.php:3054
|
765 |
#, fuzzy
|
766 |
msgid "From country"
|
767 |
msgstr "Vom Land"
|
768 |
|
769 |
+
#: ../wp-cerber.php:3058
|
770 |
msgid "The WP Cerber security plugin is now active"
|
771 |
msgstr "Das WP Cerber Sicherheits-Plugin ist nun aktiv"
|
772 |
|
773 |
+
#: ../wp-cerber.php:3731
|
774 |
#, fuzzy
|
775 |
msgid "Your IP address is added to the"
|
776 |
msgstr "Ihre IP-Adresse wurde hinzugefügt zu"
|
777 |
|
778 |
+
#: ../wp-cerber.php:3743
|
779 |
msgid "Import settings"
|
780 |
msgstr "Import-Einstellungen"
|
781 |
|
846 |
msgid "Know more"
|
847 |
msgstr "Mehr erfahren"
|
848 |
|
849 |
+
#: ../dashboard.php:892 ../settings.php:239
|
850 |
msgid "WP Cerber Security"
|
851 |
msgstr "WP Cerber Sicherheit"
|
852 |
|
854 |
msgid "Users"
|
855 |
msgstr "Benutzer"
|
856 |
|
857 |
+
#: ../common.php:519
|
858 |
msgid "User created"
|
859 |
msgstr "Benutzer erstellt"
|
860 |
|
861 |
+
#: ../dashboard.php:1306 ../common.php:520
|
862 |
msgid "User registered"
|
863 |
msgstr "Benutzer registriert"
|
864 |
|
865 |
+
#: ../common.php:547
|
866 |
msgid "reCAPTCHA verification failed"
|
867 |
msgstr "reCAPTCHA-Bestätigung gescheitert"
|
868 |
|
869 |
+
#: ../common.php:548
|
870 |
msgid "reCAPTCHA settings are incorrect"
|
871 |
msgstr "reCAPTCHA-Einstellungen sind falsch"
|
872 |
|
873 |
+
#: ../common.php:551
|
874 |
msgid "Attempt to access prohibited URL"
|
875 |
msgstr "Zugriffsversuch auf verbotene URL"
|
876 |
|
877 |
+
#: ../common.php:553 ../common.php:598
|
878 |
msgid "Attempt to log in with prohibited username"
|
879 |
msgstr "Anmeldeversuch mit verbotenem Benutzernamen"
|
880 |
|
910 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
911 |
msgstr "Aktiviere reCAPTCHA für das WooCommerce Anmeldeformular"
|
912 |
|
913 |
+
#: ../common.php:549
|
914 |
msgid "Request to the Google reCAPTCHA service failed"
|
915 |
msgstr "Anfrage an den Google reCAPTCHA Dienst gescheitert"
|
916 |
|
917 |
+
#: ../dashboard.php:1298 ../dashboard.php:1327
|
918 |
msgid "View all"
|
919 |
msgstr "Zeige alle"
|
920 |
|
921 |
+
#: ../dashboard.php:1328
|
922 |
msgid "Recently locked out IP addresses"
|
923 |
msgstr "Kürzlich ausgesperrte IP-Adressen"
|
924 |
|
933 |
msgstr "NEIN, vielleicht später"
|
934 |
|
935 |
#. Dashboard is in German more common in this context as the actual translation "Amaturenbrett" which is only used for non-digital things like in cars!
|
936 |
+
#: ../dashboard.php:894 ../dashboard.php:1115 ../dashboard.php:1640 ../settings.
|
937 |
#: php:244
|
938 |
#, fuzzy
|
939 |
msgid "Dashboard"
|
947 |
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."
|
948 |
msgstr "Erlaube WP Cerber ausgesperrte bösartige IP-Adressen an das Cerber Lab zu senden. Dies hilft dem Plugin-Team neue Algorithmen für WP Cerber zu entwickeln, die WordPress gegen täglich auftretende neue Bedrohungen und Botnets verteidigen. Sie können das Senden jederzeit in den Plugin-Einstellungen deaktivieren."
|
949 |
|
950 |
+
#: ../dashboard.php:476
|
951 |
msgid "IP address"
|
952 |
msgstr "IP-Adresse"
|
953 |
|
954 |
+
#: ../dashboard.php:476
|
955 |
msgid "User login"
|
956 |
msgstr "Benutzer-Anmeldung"
|
957 |
|
958 |
+
#: ../dashboard.php:476
|
959 |
msgid "User ID"
|
960 |
msgstr "Benutzer-ID"
|
961 |
|
962 |
+
#: ../dashboard.php:654
|
963 |
msgid "Export"
|
964 |
msgstr "Export"
|
965 |
|
966 |
+
#: ../dashboard.php:673
|
967 |
msgid "Search for IP or username"
|
968 |
msgstr "Suche nach IP oder Nutzernamen"
|
969 |
|
970 |
+
#: ../dashboard.php:673
|
971 |
msgid "Filter"
|
972 |
msgstr "Filter"
|
973 |
|
974 |
+
#: ../dashboard.php:894
|
975 |
msgid "Cerber Dashboard"
|
976 |
msgstr "Cerber Dashboard"
|
977 |
|
978 |
+
#: ../dashboard.php:901
|
979 |
msgid "Cerber tools"
|
980 |
msgstr "Cerber Werkzeuge"
|
981 |
|
982 |
+
#: ../dashboard.php:1553
|
983 |
msgid "Subscribe"
|
984 |
msgstr "Abonnieren"
|
985 |
|
986 |
+
#: ../dashboard.php:1554 ../cerber-tools.php:243
|
987 |
msgid "Unsubscribe"
|
988 |
msgstr "Abmelden"
|
989 |
|
990 |
+
#: ../dashboard.php:1582
|
991 |
#, fuzzy
|
992 |
msgid "You've subscribed"
|
993 |
msgstr "Erfolgreich abonniert"
|
994 |
|
995 |
+
#: ../dashboard.php:1585
|
996 |
#, fuzzy
|
997 |
msgid "You've unsubscribed"
|
998 |
msgstr "Erfolgreich abgemeldet"
|
999 |
|
1000 |
+
#: ../wp-cerber.php:3071 ../wp-cerber.php:3072
|
1001 |
msgid "A new activity has been recorded"
|
1002 |
msgstr "Eine neue Aktivität wurde aufgezeichnet"
|
1003 |
|
1004 |
+
#: ../wp-cerber.php:3516
|
1005 |
msgid "User"
|
1006 |
msgstr "Benutzer"
|
1007 |
|
1008 |
+
#: ../wp-cerber.php:3524
|
1009 |
msgid "Search string"
|
1010 |
msgstr "Such-String"
|
1011 |
|
1012 |
+
#: ../wp-cerber.php:3545
|
1013 |
msgid "To unsubscribe click here"
|
1014 |
msgstr "Zum Abmelden hier klicken"
|
1015 |
|
1025 |
msgid "if empty, the default format %s will be used"
|
1026 |
msgstr "wenn leer, dann wird das Standard Format %s verwendet"
|
1027 |
|
1028 |
+
#: ../dashboard.php:1111 ../settings.php:175
|
1029 |
msgid "Push notifications"
|
1030 |
msgstr "Push-Benachrichtigungen"
|
1031 |
|
1049 |
msgid "Not available"
|
1050 |
msgstr "Nicht verfügbar"
|
1051 |
|
1052 |
+
#: ../common.php:545
|
1053 |
msgid "Password reset requested"
|
1054 |
msgstr "Passwort Zurücksetzung angefordert"
|
1055 |
|
1056 |
+
#: ../common.php:599
|
1057 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1058 |
msgstr "Grenze an fehlgeschlagenen reCAPTCHA ist erreicht"
|
1059 |
|
1060 |
+
#: ../common.php:644
|
1061 |
msgid "%s ago"
|
1062 |
msgstr "vor %s"
|
1063 |
|
1101 |
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."
|
1102 |
msgstr "Im Citadel Modus kann sich niemand einloggen, außer IPs auf der White IP Zugangsliste. Laufende Sitzungen werden nicht beeinflusst."
|
1103 |
|
1104 |
+
#: ../dashboard.php:476 ../dashboard.php:635
|
1105 |
msgid "Event"
|
1106 |
msgstr "Ereignis"
|
1107 |
|
1117 |
msgid "Lockouts occurred"
|
1118 |
msgstr "Sperre aufgetreten"
|
1119 |
|
1120 |
+
#: ../dashboard.php:1307
|
1121 |
msgid "All suspicious activity"
|
1122 |
msgstr "Alle verdächtigen Aktivitäten"
|
1123 |
|
1124 |
+
#: ../wp-cerber.php:960 ../wp-cerber.php:966 ../wp-cerber.php:982 ../wp-cerber.
|
1125 |
+
#: php:989
|
1126 |
msgid "You are not allowed to register."
|
1127 |
msgstr "Registrierung nicht erlaubt."
|
1128 |
|
1129 |
+
#: ../common.php:530
|
1130 |
msgid "Spam comment denied"
|
1131 |
msgstr "Spam Kommentar verweigert"
|
1132 |
|
1133 |
+
#: ../common.php:555
|
1134 |
msgid "Attempt to log in denied"
|
1135 |
msgstr "Loginversuch verweigert"
|
1136 |
|
1137 |
+
#: ../common.php:556
|
1138 |
msgid "Attempt to register denied"
|
1139 |
msgstr "Registrierungsversuch verweigert"
|
1140 |
|
1142 |
msgid "Malicious activities mitigated"
|
1143 |
msgstr "Schadhafte Aktivitäten gemildert"
|
1144 |
|
1145 |
+
#: ../dashboard.php:900
|
1146 |
msgid "Cerber antispam settings"
|
1147 |
msgstr "Cerber Antispam-Einstellungen"
|
1148 |
|
1149 |
+
#: ../dashboard.php:900 ../wp-cerber.php:3740 ../settings.php:161
|
1150 |
msgid "Antispam"
|
1151 |
msgstr "Antispam"
|
1152 |
|
1178 |
msgid "License"
|
1179 |
msgstr "Lizenz"
|
1180 |
|
1181 |
+
#: ../cerber-tools.php:313
|
1182 |
msgid "Antispam and bot detection settings"
|
1183 |
msgstr "Antispam- und Bot-Erkennungseinstellungen"
|
1184 |
|
1185 |
+
#: ../wp-cerber.php:1225
|
1186 |
msgid "Sorry, human verification failed."
|
1187 |
+
msgstr "Entschuldigung, der Menschlichkeitsnachweis ist fehlgeschlagen.\n"
|
1188 |
+
""
|
1189 |
|
1190 |
+
#: ../common.php:600
|
1191 |
msgid "Bot activity is detected"
|
1192 |
+
msgstr "Bot-Aktivität wurde erkannt"
|
1193 |
|
1194 |
#: ../settings.php:142
|
1195 |
msgid "Comment processing"
|
1196 |
+
msgstr "Kommentarverarbeitung"
|
1197 |
|
1198 |
#: ../settings.php:143
|
1199 |
msgid "If a spam comment detected"
|
1200 |
+
msgstr "wenn ein Spam-Kommentar erkannt wird"
|
1201 |
|
1202 |
#: ../settings.php:144
|
1203 |
msgid "Trash spam comments"
|
1204 |
+
msgstr "Spam-Kommentar in den Papierkorb legen"
|
1205 |
|
1206 |
#: ../settings.php:144
|
1207 |
msgid "Move spam comments to trash after"
|
1208 |
+
msgstr "Verschieben Sie die Spam-Kommentare anschließend in den Papierkorb"
|
1209 |
|
1210 |
+
#: ../common.php:531
|
1211 |
msgid "Spam form submission denied"
|
1212 |
+
msgstr "Spam Formular-Übermittlung verweigert"
|
1213 |
|
1214 |
#: ../settings.php:135
|
1215 |
msgid "Other forms"
|
1216 |
+
msgstr "andere Formulare"
|
1217 |
|
1218 |
#: ../settings.php:135
|
1219 |
msgid "Protect all forms on the website with bot detection engine"
|
1220 |
+
msgstr "Schützen Sie alle Formulare auf der Website mit der Bot-Erkennungs-Engine"
|
1221 |
|
1222 |
#: ../settings.php:137
|
1223 |
msgid "Adjust antispam engine"
|
1224 |
+
msgstr "Passen Sie die Anti-Spam-Engine an"
|
1225 |
|
1226 |
#: ../settings.php:138
|
1227 |
msgid "Safe mode"
|
1228 |
+
msgstr "Abgesicherter Modus"
|
1229 |
|
1230 |
#: ../settings.php:138
|
1231 |
msgid "Use less restrictive policies (allow AJAX)"
|
1232 |
+
msgstr "Weniger restriktive Richtlinien verwenden (AJAX zulassen)"
|
1233 |
|
1234 |
#: ../settings.php:139
|
1235 |
msgid "Logged in users"
|
1236 |
+
msgstr "Angemeldete Benutzer"
|
1237 |
|
1238 |
#: ../settings.php:139
|
1239 |
msgid "Disable bot detection engine for logged in users"
|
1240 |
+
msgstr "Deaktivieren der Bot-Erkennungs-Engine für eingeloggte Benutzer"
|
1241 |
|
1242 |
#. Name of the plugin
|
1243 |
#:
|
1244 |
msgid "WP Cerber Security & Antispam"
|
1245 |
+
msgstr "WP Cerber Security & Antispam"
|
1246 |
|
1247 |
+
#: ../dashboard.php:95 ../dashboard.php:633
|
1248 |
msgid "Country"
|
1249 |
+
msgstr "Land"
|
1250 |
|
1251 |
+
#: ../dashboard.php:664
|
1252 |
msgid "All events"
|
1253 |
+
msgstr "Alle Ereignisse"
|
1254 |
|
1255 |
+
#: ../dashboard.php:897
|
1256 |
msgid "Cerber Security Rules"
|
1257 |
+
msgstr "Cerber Sicherheitsregeln"
|
1258 |
|
1259 |
+
#: ../dashboard.php:897 ../dashboard.php:1985
|
1260 |
msgid "Security Rules"
|
1261 |
+
msgstr "Sicherheitsregeln"
|
1262 |
|
1263 |
+
#: ../dashboard.php:974
|
1264 |
msgid "Failed login attempts"
|
1265 |
+
msgstr "Fehlgeschlagene Anmeldeversuche"
|
1266 |
|
1267 |
+
#: ../dashboard.php:975
|
1268 |
msgid "Registered"
|
1269 |
+
msgstr "Registriert"
|
1270 |
|
1271 |
+
#: ../dashboard.php:1042
|
1272 |
msgid "You"
|
1273 |
+
msgstr "Du"
|
1274 |
|
1275 |
#: ../common.php:117
|
1276 |
msgid "Spam form submissions denied"
|
1277 |
+
msgstr "Spam Formular-Übermittlungen verweigert\n"
|
1278 |
+
""
|
1279 |
|
1280 |
+
#: ../dashboard.php:1363 ../wp-cerber.php:3061 ../wp-cerber.php:3733
|
1281 |
msgid "Getting Started Guide"
|
1282 |
+
msgstr "Leitfaden für den Einstieg"
|
1283 |
|
1284 |
+
#: ../dashboard.php:1990
|
1285 |
msgid "Countries"
|
1286 |
+
msgstr "Länder"
|
1287 |
|
1288 |
+
#: ../dashboard.php:2055
|
1289 |
msgid "Permitted for one country"
|
1290 |
msgid_plural "Permitted for %d countries"
|
1291 |
+
msgstr[0] "Erlaubt für ein Land"
|
1292 |
+
msgstr[1] "Erlaubt für %d Länder"
|
1293 |
|
1294 |
+
#: ../dashboard.php:2066
|
1295 |
msgid "No rule"
|
1296 |
+
msgstr "Keine Regel"
|
1297 |
|
1298 |
+
#: ../dashboard.php:2269
|
1299 |
msgid "Security rules have been updated"
|
1300 |
+
msgstr "Sicherheitsregeln wurden aktualisiert"
|
1301 |
|
1302 |
#. URI of the plugin
|
1303 |
#:
|
1304 |
msgid "https://wpcerber.com"
|
1305 |
+
msgstr "https://wpcerber.com"
|
1306 |
|
1307 |
+
#: ../common.php:532
|
1308 |
msgid "Form submission denied"
|
1309 |
+
msgstr "Formular-Übermittlung verweigert"
|
1310 |
|
1311 |
+
#: ../common.php:533
|
1312 |
msgid "Comment denied"
|
1313 |
+
msgstr "Kommentar verweigert"
|
1314 |
|
1315 |
+
#: ../common.php:558
|
1316 |
msgid "Request to REST API denied"
|
1317 |
+
msgstr "Anfrage an REST API verweigert"
|
1318 |
|
1319 |
+
#: ../common.php:559
|
1320 |
msgid "XML-RPC request denied"
|
1321 |
+
msgstr "XML-RPC-Anfrage verweigert"
|
1322 |
|
1323 |
+
#: ../common.php:563
|
1324 |
msgid "Bot detected"
|
1325 |
+
msgstr "Bot erkannt"
|
1326 |
|
1327 |
+
#: ../common.php:564
|
1328 |
msgid "Citadel mode is active"
|
1329 |
+
msgstr "Citadel-Modus ist aktiv"
|
1330 |
|
1331 |
+
#: ../common.php:569
|
1332 |
msgid "Malicious activity detected"
|
1333 |
+
msgstr "Bösartige Aktivität entdeckt"
|
1334 |
|
1335 |
+
#: ../common.php:570
|
1336 |
msgid "Blocked by country rule"
|
1337 |
+
msgstr "Gesperrt durch Länderregel"
|
1338 |
|
1339 |
+
#: ../common.php:571
|
1340 |
msgid "Limit reached"
|
1341 |
+
msgstr "Limit erreicht"
|
1342 |
|
1343 |
+
#: ../common.php:572
|
1344 |
msgid "Multiple suspicious activities"
|
1345 |
+
msgstr "Mehrere verdächtige Aktivitäten"
|
1346 |
|
1347 |
+
#: ../common.php:601
|
1348 |
msgid "Multiple suspicious activities were detected"
|
1349 |
+
msgstr "Mehrere verdächtige Aktivitäten erkannt"
|
1350 |
|
1351 |
#: ../settings.php:107
|
1352 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
1353 |
+
msgstr "Blockieren Sie den Zugriff auf Benutzerseiten wie /? Author = n und Benutzerdaten über die REST-API"
|
1354 |
|
1355 |
#: ../settings.php:110
|
1356 |
msgid "Block access to the WordPress REST API except the following"
|
1384 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: ../dashboard.php:2122
|
1388 |
msgid "Start typing here to find a country"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: ../dashboard.php:2205
|
1392 |
msgid "Click on a country name to add it to the list of selected countries"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: ../dashboard.php:2224
|
1396 |
msgid "Submit forms"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: ../dashboard.php:2225
|
1400 |
msgid "Post comments"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: ../dashboard.php:2226
|
1404 |
msgid "Log in to the website"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: ../dashboard.php:2227
|
1408 |
msgid "Register on the website"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: ../dashboard.php:2228
|
1412 |
msgid "Use XML-RPC"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: ../dashboard.php:2229
|
1416 |
msgid "Use REST API"
|
1417 |
msgstr ""
|
1418 |
|
1424 |
msgid "Mark it as spam"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: ../dashboard.php:1292
|
1428 |
msgid "in the last 24 hours"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: ../dashboard.php:1641
|
1432 |
msgid "Main settings"
|
1433 |
msgstr ""
|
1434 |
|
1474 |
msgid "at"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: ../wp-cerber.php:3077
|
1478 |
msgid "Weekly report"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: ../wp-cerber.php:3080
|
1482 |
msgid "To change reporting settings visit"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: ../wp-cerber.php:3106
|
1486 |
msgid "Your login page:"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: ../wp-cerber.php:3110
|
1490 |
msgid "Your license is valid until"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: ../wp-cerber.php:3221
|
1494 |
msgid "Activity details"
|
1495 |
msgstr ""
|
1496 |
|
1498 |
msgid "Click to send now"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: ../wp-cerber.php:625
|
1502 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: ../dashboard.php:377
|
1506 |
msgid "Email has been sent to"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: ../dashboard.php:380
|
1510 |
msgid "Unable to send email to"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: ../dashboard.php:2058
|
1514 |
msgid "Not permitted for one country"
|
1515 |
msgid_plural "Not permitted for %d countries"
|
1516 |
msgstr[0] ""
|
1517 |
msgstr[1] ""
|
1518 |
|
1519 |
+
#: ../dashboard.php:2209
|
1520 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1521 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: ../dashboard.php:2212
|
1525 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1526 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
1527 |
msgstr ""
|
1531 |
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>."
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: ../wp-cerber.php:3209
|
1535 |
msgid "Weekly Report"
|
1536 |
msgstr ""
|
1537 |
|
1555 |
msgid "Enable reporting"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: ../wp-cerber.php:3133
|
1559 |
msgid "Your last sign-in was %s from %s"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: ../wp-cerber.php:3235
|
1563 |
msgid "Attempts to log in with non-existent username"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: ../dashboard.php:167
|
1567 |
+
msgid "IP address, IPv4 address range or subnet"
|
1568 |
+
msgstr ""
|
1569 |
+
|
1570 |
+
#: ../dashboard.php:169
|
1571 |
+
msgid "Optional comment for this entry"
|
1572 |
+
msgstr ""
|
1573 |
+
|
1574 |
+
#: ../dashboard.php:210
|
1575 |
+
msgid "You cannot add your IP address or network"
|
1576 |
+
msgstr ""
|
1577 |
+
|
1578 |
+
#: ../cerber-news.php:135
|
1579 |
+
msgid "Cool!"
|
1580 |
+
msgstr ""
|
1581 |
+
|
1582 |
+
#: ../settings.php:123
|
1583 |
+
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1584 |
+
msgstr ""
|
1585 |
+
|
languages/wp-cerber-es_ES.mo
CHANGED
Binary file
|
languages/wp-cerber-es_ES.po
CHANGED
@@ -72,7 +72,7 @@ msgstr "Desactivar wp-login.php"
|
|
72 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
73 |
msgstr "Bloquear el acceso directo a wp-login.php y devolver un error HTTP 404 - No encontrado"
|
74 |
|
75 |
-
#: ../dashboard.php:
|
76 |
msgid "Citadel mode"
|
77 |
msgstr "Modo Ciudadela"
|
78 |
|
@@ -84,7 +84,7 @@ msgstr "Umbral"
|
|
84 |
msgid "Duration"
|
85 |
msgstr "Duración"
|
86 |
|
87 |
-
#: ../wp-cerber.php:
|
88 |
msgid "Notifications"
|
89 |
msgstr "Notificaciones"
|
90 |
|
@@ -92,17 +92,17 @@ msgstr "Notificaciones"
|
|
92 |
msgid "Send notification to admin email"
|
93 |
msgstr "Enviar una notificación al correo del administrador"
|
94 |
|
95 |
-
#: ../dashboard.php:
|
96 |
-
#: tools.php:88 ../cerber-tools.php:97 ../cerber-tools.php:
|
97 |
msgid "Access Lists"
|
98 |
msgstr "Listas de acceso"
|
99 |
|
100 |
-
#: ../dashboard.php:
|
101 |
#: php:91 ../settings.php:246
|
102 |
msgid "Activity"
|
103 |
msgstr "Actividad"
|
104 |
|
105 |
-
#: ../dashboard.php:
|
106 |
msgid "Lockouts"
|
107 |
msgstr "Bloqueos"
|
108 |
|
@@ -114,19 +114,19 @@ msgstr "%s reintentos admitidos en %s minutos"
|
|
114 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
115 |
msgstr "Habilitar después de %s intentos de acceso fallidos en los últimos %s minutos"
|
116 |
|
117 |
-
#: ../dashboard.php:93 ../dashboard.php:
|
118 |
msgid "IP"
|
119 |
msgstr "IP"
|
120 |
|
121 |
-
#: ../dashboard.php:
|
122 |
msgid "Date"
|
123 |
msgstr "Fecha"
|
124 |
|
125 |
-
#: ../dashboard.php:
|
126 |
msgid "Local User"
|
127 |
msgstr "Usuario local"
|
128 |
|
129 |
-
#: ../dashboard.php:
|
130 |
msgid "Username used"
|
131 |
msgstr "Nombre utilizado"
|
132 |
|
@@ -134,77 +134,77 @@ msgstr "Nombre utilizado"
|
|
134 |
msgid "Showing last %d records from %d"
|
135 |
msgstr "Mostrando los últimos %d registros de %d"
|
136 |
|
137 |
-
#: ../common.php:
|
138 |
msgid "Logged in"
|
139 |
msgstr "Sesión iniciada"
|
140 |
|
141 |
-
#: ../common.php:
|
142 |
msgid "Logged out"
|
143 |
msgstr "Desconectado"
|
144 |
|
145 |
-
#: ../common.php:
|
146 |
msgid "Login failed"
|
147 |
msgstr "Error de inicio de sesión"
|
148 |
|
149 |
-
#: ../common.php:
|
150 |
msgid "IP blocked"
|
151 |
msgstr "IP bloqueada"
|
152 |
|
153 |
-
#: ../common.php:
|
154 |
msgid "Subnet blocked"
|
155 |
msgstr "Subred bloqueada"
|
156 |
|
157 |
-
#: ../common.php:
|
158 |
msgid "Citadel activated!"
|
159 |
msgstr "¡Ciudadela activada!"
|
160 |
|
161 |
-
#: ../dashboard.php:
|
162 |
msgid "Locked out"
|
163 |
msgstr "Bloqueado"
|
164 |
|
165 |
-
#: ../common.php:
|
166 |
msgid "IP blacklisted"
|
167 |
msgstr "IP en la lista negra"
|
168 |
|
169 |
-
#: ../common.php:
|
170 |
msgid "Password changed"
|
171 |
msgstr "Contraseña cambiada"
|
172 |
|
173 |
-
#: ../dashboard.php:86 ../dashboard.php:
|
174 |
msgid "Remove"
|
175 |
msgstr "Eliminar"
|
176 |
|
177 |
-
#: ../dashboard.php:
|
178 |
msgid "Lockout for %s was removed"
|
179 |
msgstr "Se ha eliminado el bloqueo de %s"
|
180 |
|
181 |
-
#: ../dashboard.php:131 ../dashboard.php:
|
182 |
-
#: php:
|
183 |
msgid "White IP Access List"
|
184 |
msgstr "Lista Blanca de Accesos IP"
|
185 |
|
186 |
-
#: ../dashboard.php:133 ../dashboard.php:
|
187 |
-
#: php:
|
188 |
msgid "Black IP Access List"
|
189 |
msgstr "Lista Negra de Accesos IP"
|
190 |
|
191 |
-
#: ../dashboard.php:
|
192 |
msgid "List is empty"
|
193 |
msgstr "La lista está vacía"
|
194 |
|
195 |
-
#: ../dashboard.php:
|
196 |
msgid "Address %s was added to White IP Access List"
|
197 |
msgstr "Dirección %s añadida a la lista blanca de IPs"
|
198 |
|
199 |
-
#: ../dashboard.php:
|
200 |
msgid "Address %s was added to Black IP Access List"
|
201 |
msgstr "Dirección %s añadida a la lista negra de IPs"
|
202 |
|
203 |
-
#: ../wp-cerber.php:
|
204 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
205 |
msgstr "El Modo Ciudadela se activa después de %d intentos fallidos de inicio de sesión en %d minutos."
|
206 |
|
207 |
-
#: ../dashboard.php:
|
208 |
msgid "View Activity"
|
209 |
msgstr "Ver actividad"
|
210 |
|
@@ -212,19 +212,19 @@ msgstr "Ver actividad"
|
|
212 |
msgid "Settings"
|
213 |
msgstr "Ajustes"
|
214 |
|
215 |
-
#: ../dashboard.php:
|
216 |
msgid "Last login"
|
217 |
msgstr "Último acceso"
|
218 |
|
219 |
-
#: ../dashboard.php:
|
220 |
msgid "Never"
|
221 |
msgstr "Nunca"
|
222 |
|
223 |
-
#: ../dashboard.php:
|
224 |
msgid "Are you sure?"
|
225 |
msgstr "¿Estás seguro?"
|
226 |
|
227 |
-
#: ../dashboard.php:
|
228 |
msgid "My site is behind a reverse proxy"
|
229 |
msgstr "Mi web está detrás de un proxy inverso"
|
230 |
|
@@ -252,7 +252,7 @@ msgstr "Por favor, activa los enlaces permanentes para utilizar esta función. E
|
|
252 |
msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
|
253 |
msgstr "Cuidado al habilitar esta opción. Si olvidas la dirección URL de conexión personalizada, no podrás iniciar sesión."
|
254 |
|
255 |
-
#: ../wp-cerber.php:
|
256 |
msgid "Main Settings"
|
257 |
msgstr "Ajustes"
|
258 |
|
@@ -264,21 +264,21 @@ msgstr "Ayuda"
|
|
264 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
265 |
msgstr "Aumentar la duración del bloqueo en %s horas después de %s bloqueos en las últimas %s horas"
|
266 |
|
267 |
-
#: ../wp-cerber.php:
|
268 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
269 |
msgstr "No puedes iniciar sesión. Pregunta al administrador para obtener ayuda."
|
270 |
|
271 |
-
#: ../wp-cerber.php:
|
272 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
273 |
msgstr "Se ha alcanzado el límite de intentos de inicio de sesión. Por favor, inténtalo de nuevo dentro de %d minutos."
|
274 |
|
275 |
-
#: ../wp-cerber.php:
|
276 |
msgid "You have only one attempt remaining."
|
277 |
msgid_plural "You have %d attempts remaining."
|
278 |
msgstr[0] "Queda solo un intento restante."
|
279 |
msgstr[1] "Quedan %d intentos restantes."
|
280 |
|
281 |
-
#: ../dashboard.php:
|
282 |
msgid "No activity has been logged."
|
283 |
msgstr "No hay actividad registrada."
|
284 |
|
@@ -298,15 +298,11 @@ msgstr "Estas IPs nunca se bloquearán"
|
|
298 |
msgid "Your IP"
|
299 |
msgstr "Tu IP"
|
300 |
|
301 |
-
#: ../
|
302 |
-
msgid "You can't add your IP address"
|
303 |
-
msgstr "No puedes añadir tu dirección IP"
|
304 |
-
|
305 |
-
#: ../wp-cerber.php:2945
|
306 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
307 |
msgstr "El último intento fallido fue el %s desde la IP %s con el nombre de usuario: %s."
|
308 |
|
309 |
-
#: ../wp-cerber.php:
|
310 |
msgid "Can't activate WP Cerber due to a database error."
|
311 |
msgstr "No se puede activar WP Cerber debido a un error de base de datos."
|
312 |
|
@@ -318,7 +314,7 @@ msgstr "Notificar al administrador si el número de bloqueos activos es superior
|
|
318 |
msgid "days"
|
319 |
msgstr "días"
|
320 |
|
321 |
-
#: ../dashboard.php:
|
322 |
msgid "Cerber Quick View"
|
323 |
msgstr "Vista Rápida del Cerbero"
|
324 |
|
@@ -330,7 +326,7 @@ msgstr "Sugerencia"
|
|
330 |
msgid "To view activity, click on the IP"
|
331 |
msgstr "Para ver la actividad, haz clic en la IP"
|
332 |
|
333 |
-
#: ../dashboard.php:
|
334 |
msgid "Check for activity"
|
335 |
msgstr "Comprobar actividad"
|
336 |
|
@@ -346,31 +342,31 @@ msgstr "Pulsa para enviar una prueba"
|
|
346 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
347 |
msgstr "¡Atención! ¡Has cambiado la dirección URL de conexión! La nueva URL de acceso es"
|
348 |
|
349 |
-
#: ../dashboard.php:
|
350 |
msgid "Comments"
|
351 |
msgstr "Comentarios"
|
352 |
|
353 |
-
#: ../common.php:
|
354 |
msgid "Update to version %s of WP Cerber"
|
355 |
msgstr "Actualizar a la versión %s de WP Cerber"
|
356 |
|
357 |
-
#: ../wp-cerber.php:
|
358 |
msgid "View activity in dashboard"
|
359 |
msgstr "Ver actividad en el escritorio"
|
360 |
|
361 |
-
#: ../wp-cerber.php:
|
362 |
msgid "Number of active lockouts"
|
363 |
msgstr "Número de bloqueos activos"
|
364 |
|
365 |
-
#: ../wp-cerber.php:
|
366 |
msgid "View lockouts in dashboard"
|
367 |
msgstr "Ver los bloqueos en el escritorio"
|
368 |
|
369 |
-
#: ../wp-cerber.php:
|
370 |
msgid "This message was sent by"
|
371 |
msgstr "Este mensaje fue enviado por"
|
372 |
|
373 |
-
#: ../dashboard.php:
|
374 |
msgid "Tools"
|
375 |
msgstr "Herramientas"
|
376 |
|
@@ -414,27 +410,27 @@ msgstr "¿Qué quieres importar?"
|
|
414 |
msgid "Upload file"
|
415 |
msgstr "Cargar archivo"
|
416 |
|
417 |
-
#: ../cerber-tools.php:
|
418 |
msgid "No file was uploaded or file is corrupted"
|
419 |
msgstr "Ningún archivo subido ni archivo dañado"
|
420 |
|
421 |
-
#: ../cerber-tools.php:
|
422 |
msgid "Error while updating"
|
423 |
msgstr "Ha habido un error al actualizar"
|
424 |
|
425 |
-
#: ../cerber-tools.php:
|
426 |
msgid "Settings has imported successfully from"
|
427 |
msgstr "La configuración se ha importado con éxito desde"
|
428 |
|
429 |
-
#: ../cerber-tools.php:
|
430 |
msgid "Error while parsing file"
|
431 |
msgstr "Error al analizar el archivo"
|
432 |
|
433 |
-
#: ../dashboard.php:94 ../dashboard.php:
|
434 |
msgid "Hostname"
|
435 |
msgstr "Host"
|
436 |
|
437 |
-
#: ../dashboard.php:
|
438 |
msgid "unknown"
|
439 |
msgstr "desconocido"
|
440 |
|
@@ -442,94 +438,94 @@ msgstr "desconocido"
|
|
442 |
msgid "Keep records for"
|
443 |
msgstr "Mantener un registro de"
|
444 |
|
445 |
-
#: ../dashboard.php:
|
446 |
msgid "active"
|
447 |
msgstr "activar"
|
448 |
|
449 |
-
#: ../dashboard.php:
|
450 |
msgid "deactivate"
|
451 |
msgstr "desactivar"
|
452 |
|
453 |
-
#: ../dashboard.php:
|
454 |
msgid "not active"
|
455 |
msgstr "no activo"
|
456 |
|
457 |
-
#: ../dashboard.php:
|
458 |
msgid "disabled"
|
459 |
msgstr "desactivado"
|
460 |
|
461 |
-
#: ../dashboard.php:
|
462 |
msgid "failed attempts"
|
463 |
msgstr "intentos fallidos"
|
464 |
|
465 |
-
#: ../dashboard.php:
|
466 |
msgid "in 24 hours"
|
467 |
msgstr "en 24 horas"
|
468 |
|
469 |
-
#: ../dashboard.php:
|
470 |
msgid "view all"
|
471 |
msgstr "ver todo"
|
472 |
|
473 |
-
#: ../dashboard.php:
|
474 |
msgid "lockouts"
|
475 |
msgstr "bloqueos"
|
476 |
|
477 |
-
#: ../dashboard.php:
|
478 |
msgid "Lockouts at the moment"
|
479 |
msgstr "Bloqueos en este momento"
|
480 |
|
481 |
-
#: ../dashboard.php:
|
482 |
msgid "Last lockout"
|
483 |
msgstr "Último bloqueo"
|
484 |
|
485 |
-
#: ../dashboard.php:
|
486 |
msgid "entry"
|
487 |
msgid_plural "entries"
|
488 |
msgstr[0] "entrada"
|
489 |
msgstr[1] "entradas"
|
490 |
|
491 |
-
#: ../dashboard.php:
|
492 |
msgid "Confused about some settings?"
|
493 |
msgstr "¿Confundido acerca de algunos ajustes?"
|
494 |
|
495 |
-
#: ../dashboard.php:
|
496 |
msgid "You can easily load default recommended settings using button below"
|
497 |
msgstr "Se pueden cargar fácilmente los valores recomendados predeterminados usando el botón de abajo"
|
498 |
|
499 |
-
#: ../dashboard.php:
|
500 |
msgid "Load default settings"
|
501 |
msgstr "Cargar ajustes predeterminados"
|
502 |
|
503 |
-
#: ../dashboard.php:
|
504 |
msgid "doesn't affect Custom login URL and Access Lists"
|
505 |
msgstr "no afecta a la URL de acceso personalizada ni a las listas de acceso"
|
506 |
|
507 |
-
#: ../common.php:
|
508 |
msgid "New version is available"
|
509 |
msgstr "Nueva versión disponible"
|
510 |
|
511 |
#. Name of the plugin
|
512 |
-
#: ../dashboard.php:
|
513 |
msgid "WP Cerber"
|
514 |
msgstr "WP Cerber"
|
515 |
|
516 |
-
#: ../wp-cerber.php:
|
517 |
msgid "WP Cerber notify"
|
518 |
msgstr "Notificación de WP Cerber"
|
519 |
|
520 |
-
#: ../wp-cerber.php:
|
521 |
msgid "Citadel mode is activated"
|
522 |
msgstr "El Modo Ciudadela está activado."
|
523 |
|
524 |
-
#: ../wp-cerber.php:
|
525 |
msgid "New Custom login URL"
|
526 |
msgstr "Nueva URL de acceso personalizada"
|
527 |
|
528 |
-
#: ../wp-cerber.php:
|
529 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
530 |
msgstr "WP Cerber requiere PHP %s o superior. Se está ejecutando actualmente"
|
531 |
|
532 |
-
#: ../wp-cerber.php:
|
533 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
534 |
msgstr "WP Cerber requiere WordPress %s o superior. Se está ejecutando actualmente"
|
535 |
|
@@ -541,43 +537,43 @@ msgstr "Usar archivo"
|
|
541 |
msgid "Write failed login attempts to the file"
|
542 |
msgstr "Registrar los intentos de acceso fallidos en el archivo"
|
543 |
|
544 |
-
#: ../dashboard.php:
|
545 |
msgid "Deactivate"
|
546 |
msgstr "Desactivar"
|
547 |
|
548 |
-
#: ../dashboard.php:97 ../wp-cerber.php:
|
549 |
msgid "Reason"
|
550 |
msgstr "Motivo"
|
551 |
|
552 |
-
#: ../dashboard.php:
|
553 |
msgid "Add IP to the list"
|
554 |
msgstr "Añadir IP a la lista"
|
555 |
|
556 |
-
#: ../dashboard.php:
|
557 |
msgid "Add IP to the Black List"
|
558 |
msgstr "Añadir IP a la lista negra"
|
559 |
|
560 |
-
#: ../common.php:
|
561 |
msgid "Attempt to access"
|
562 |
msgstr "Intento de acceso"
|
563 |
|
564 |
-
#: ../common.php:
|
565 |
msgid "Limit on login attempts is reached"
|
566 |
msgstr "Se han alcanzado todos los intentos de inicio de sesión"
|
567 |
|
568 |
-
#: ../common.php:
|
569 |
msgid "Attempt to log in with non-existent username"
|
570 |
msgstr "Intento de acceso con nombre de usuario inexistente"
|
571 |
|
572 |
-
#: ../wp-cerber.php:
|
573 |
msgid "Last lockout was added: %s for IP %s"
|
574 |
msgstr "Último bloqueo añadido: %s para la IP %s"
|
575 |
|
576 |
-
#: ../wp-cerber.php:
|
577 |
msgid "Hardening"
|
578 |
msgstr "Endurecimiento"
|
579 |
|
580 |
-
#: ../dashboard.php:
|
581 |
msgid "Abuse email:"
|
582 |
msgstr "Correo electrónico de abuso:"
|
583 |
|
@@ -633,7 +629,7 @@ msgstr "Estos ajustes no afectan a los hosts de "
|
|
633 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
634 |
msgstr "<strong>ERROR</strong>: por favor, introduce una dirección de correo electrónico válida."
|
635 |
|
636 |
-
#: ../wp-cerber.php:
|
637 |
msgid "WP Cerber is now active and has started protecting your site"
|
638 |
msgstr "WP Cerber está activo actualmente y está protegiendo tu web"
|
639 |
|
@@ -645,27 +641,27 @@ msgstr "Acción"
|
|
645 |
msgid "Nobody can log in or register from these IPs"
|
646 |
msgstr "Nadie puede acceder desde estas direcciones IP"
|
647 |
|
648 |
-
#: ../dashboard.php:
|
649 |
msgid "Incorrect IP address or IP range"
|
650 |
msgstr "Dirección o rango de IP incorrecta"
|
651 |
|
652 |
-
#: ../dashboard.php:
|
653 |
msgid "Settings saved"
|
654 |
msgstr "Ajustes guardados."
|
655 |
|
656 |
-
#: ../dashboard.php:
|
657 |
msgid "Network:"
|
658 |
msgstr "Red:"
|
659 |
|
660 |
-
#: ../dashboard.php:
|
661 |
msgid "Add network to the Black List"
|
662 |
msgstr "Añadir red a la Lista Negra"
|
663 |
|
664 |
-
#: ../dashboard.php:
|
665 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
666 |
msgstr "¡Atención! El Modo Ciudadela está activo. Nadie puede iniciar sesión."
|
667 |
|
668 |
-
#: ../dashboard.php:
|
669 |
msgid "Unknown"
|
670 |
msgstr "Desconocido"
|
671 |
|
@@ -674,79 +670,79 @@ msgstr "Desconocido"
|
|
674 |
msgid "Gregory"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: ../wp-cerber.php:
|
678 |
-
#: php:
|
679 |
-
#: cerber.php:
|
680 |
-
#:
|
681 |
-
#:
|
682 |
msgid "ERROR:"
|
683 |
msgstr "ERROR:"
|
684 |
|
685 |
-
#: ../wp-cerber.php:
|
686 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
687 |
msgstr "La verificación humana ha fallado. Por favor, pulsa en la casilla cuadrada del siguiente bloque reCAPTCHA."
|
688 |
|
689 |
-
#: ../wp-cerber.php:
|
690 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
691 |
msgstr "<strong>ERROR</strong>: La contraseña introducida para el nombre de usuario %s es incorrecta."
|
692 |
|
693 |
-
#: ../wp-cerber.php:
|
694 |
msgid "Username is not allowed. Please choose another one."
|
695 |
msgstr "Nombre de usuario no permitido. Por favor, elige otro."
|
696 |
|
697 |
-
#: ../wp-cerber.php:
|
698 |
msgid "unspecified"
|
699 |
msgstr "no especificado"
|
700 |
|
701 |
-
#: ../wp-cerber.php:
|
702 |
msgid "Number of lockouts is increasing"
|
703 |
msgstr "El número de bloqueos está aumentando"
|
704 |
|
705 |
-
#: ../wp-cerber.php:
|
706 |
msgid "View activity for this IP"
|
707 |
msgstr "Ver actividad de esta IP"
|
708 |
|
709 |
-
#: ../wp-cerber.php:
|
710 |
msgid "A new version of WP Cerber is available to install"
|
711 |
msgstr "Una nueva versión de WP Cerber está disponible"
|
712 |
|
713 |
-
#: ../wp-cerber.php:
|
714 |
msgid "Hi!"
|
715 |
msgstr "¡Hola!"
|
716 |
|
717 |
-
#: ../wp-cerber.php:
|
718 |
msgid "Website"
|
719 |
msgstr "Web"
|
720 |
|
721 |
-
#: ../wp-cerber.php:
|
722 |
msgid "The WP Cerber security plugin has been deactivated"
|
723 |
msgstr "El plugin WP Cerber se ha desactivado"
|
724 |
|
725 |
-
#: ../wp-cerber.php:
|
726 |
msgid "Not logged in"
|
727 |
msgstr "No conectado"
|
728 |
|
729 |
-
#: ../wp-cerber.php:
|
730 |
msgid "By user"
|
731 |
msgstr "Por usuario"
|
732 |
|
733 |
-
#: ../wp-cerber.php:
|
734 |
msgid "From IP address"
|
735 |
msgstr "De la dirección IP"
|
736 |
|
737 |
-
#: ../wp-cerber.php:
|
738 |
msgid "From country"
|
739 |
msgstr "Del país"
|
740 |
|
741 |
-
#: ../wp-cerber.php:
|
742 |
msgid "The WP Cerber security plugin is now active"
|
743 |
msgstr "El plugin WP Cerber se ha activado"
|
744 |
|
745 |
-
#: ../wp-cerber.php:
|
746 |
msgid "Your IP address is added to the"
|
747 |
msgstr "Tu dirección IP se ha añadido a la"
|
748 |
|
749 |
-
#: ../wp-cerber.php:
|
750 |
msgid "Import settings"
|
751 |
msgstr "Importar ajustes"
|
752 |
|
@@ -814,7 +810,7 @@ msgstr "Para poder usar reCAPTCHA, antes tienes que obtener una clave de sitio y
|
|
814 |
msgid "Know more"
|
815 |
msgstr "(Información)"
|
816 |
|
817 |
-
#: ../dashboard.php:
|
818 |
msgid "WP Cerber Security"
|
819 |
msgstr "Seguridad WP Cerber"
|
820 |
|
@@ -822,27 +818,27 @@ msgstr "Seguridad WP Cerber"
|
|
822 |
msgid "Users"
|
823 |
msgstr "Usuarios"
|
824 |
|
825 |
-
#: ../common.php:
|
826 |
msgid "User created"
|
827 |
msgstr "Usuario creado"
|
828 |
|
829 |
-
#: ../dashboard.php:
|
830 |
msgid "User registered"
|
831 |
msgstr "Usuario registrado"
|
832 |
|
833 |
-
#: ../common.php:
|
834 |
msgid "reCAPTCHA verification failed"
|
835 |
msgstr "Fallo de verificación reCAPTCHA"
|
836 |
|
837 |
-
#: ../common.php:
|
838 |
msgid "reCAPTCHA settings are incorrect"
|
839 |
msgstr "Los ajustes reCAPTCHA son incorrectos"
|
840 |
|
841 |
-
#: ../common.php:
|
842 |
msgid "Attempt to access prohibited URL"
|
843 |
msgstr "Intento de acceso a URL prohibida"
|
844 |
|
845 |
-
#: ../common.php:
|
846 |
msgid "Attempt to log in with prohibited username"
|
847 |
msgstr "Intento de acceso con nombre de usuario prohibido"
|
848 |
|
@@ -878,15 +874,15 @@ msgstr "Habilitar reCAPTCHA para formulario WooCommerce de contraseña perdida"
|
|
878 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
879 |
msgstr "Habilitar reCAPTCHA para el formulario de acceso WooCommerce"
|
880 |
|
881 |
-
#: ../common.php:
|
882 |
msgid "Request to the Google reCAPTCHA service failed"
|
883 |
msgstr "Error solicitando el servicio reCAPTCHA de Google"
|
884 |
|
885 |
-
#: ../dashboard.php:
|
886 |
msgid "View all"
|
887 |
msgstr "Ver todo"
|
888 |
|
889 |
-
#: ../dashboard.php:
|
890 |
msgid "Recently locked out IP addresses"
|
891 |
msgstr "Direcciones IP recientemente bloqueadas"
|
892 |
|
@@ -898,7 +894,7 @@ msgstr "OK, clavarlas todas"
|
|
898 |
msgid "NO, maybe later"
|
899 |
msgstr "NO, tal vez más tarde"
|
900 |
|
901 |
-
#: ../dashboard.php:
|
902 |
#: php:244
|
903 |
msgid "Dashboard"
|
904 |
msgstr "Escritorio"
|
@@ -911,67 +907,67 @@ msgstr "¿Quieres hacer WP Cerber aun más potente?"
|
|
911 |
msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
|
912 |
msgstr "Dejar a WP Cerber enviar direcciones IP maliciosas bloqueadas al laboratorio Cerber. Esto ayuda a que el equipo de plugin para el desarrollo de nuevos algoritmos para WP Cerber y defender a WordPress contra las nuevas amenazas y botnets que están apareciendo todos los días. Puede desactivar el envío de la configuración del plugin en cualquier momento."
|
913 |
|
914 |
-
#: ../dashboard.php:
|
915 |
msgid "IP address"
|
916 |
msgstr "Dirección IP"
|
917 |
|
918 |
-
#: ../dashboard.php:
|
919 |
msgid "User login"
|
920 |
msgstr "Acceso de Usuario"
|
921 |
|
922 |
-
#: ../dashboard.php:
|
923 |
msgid "User ID"
|
924 |
msgstr "ID de usuario"
|
925 |
|
926 |
-
#: ../dashboard.php:
|
927 |
msgid "Export"
|
928 |
msgstr "Exportar"
|
929 |
|
930 |
-
#: ../dashboard.php:
|
931 |
msgid "Search for IP or username"
|
932 |
msgstr "Búsqueda de IP o nombre de usuario"
|
933 |
|
934 |
-
#: ../dashboard.php:
|
935 |
msgid "Filter"
|
936 |
msgstr "Filtrar"
|
937 |
|
938 |
-
#: ../dashboard.php:
|
939 |
msgid "Cerber Dashboard"
|
940 |
msgstr "Panel de Control"
|
941 |
|
942 |
-
#: ../dashboard.php:
|
943 |
msgid "Cerber tools"
|
944 |
msgstr "Herramientas Cerber"
|
945 |
|
946 |
-
#: ../dashboard.php:
|
947 |
msgid "Subscribe"
|
948 |
msgstr "Suscribirse"
|
949 |
|
950 |
-
#: ../dashboard.php:
|
951 |
msgid "Unsubscribe"
|
952 |
msgstr "Cancelar Subscripción"
|
953 |
|
954 |
-
#: ../dashboard.php:
|
955 |
msgid "You've subscribed"
|
956 |
msgstr "Te has suscrito"
|
957 |
|
958 |
-
#: ../dashboard.php:
|
959 |
msgid "You've unsubscribed"
|
960 |
msgstr "Has cancelado tu suscripción"
|
961 |
|
962 |
-
#: ../wp-cerber.php:
|
963 |
msgid "A new activity has been recorded"
|
964 |
msgstr "Una nueva actividad ha sido registrada"
|
965 |
|
966 |
-
#: ../wp-cerber.php:
|
967 |
msgid "User"
|
968 |
msgstr "Usuario"
|
969 |
|
970 |
-
#: ../wp-cerber.php:
|
971 |
msgid "Search string"
|
972 |
msgstr "Cadena de búsqueda"
|
973 |
|
974 |
-
#: ../wp-cerber.php:
|
975 |
msgid "To unsubscribe click here"
|
976 |
msgstr "Para anular la suscripción, pulsar aquí"
|
977 |
|
@@ -987,7 +983,7 @@ msgstr "Formato de fecha"
|
|
987 |
msgid "if empty, the default format %s will be used"
|
988 |
msgstr "Si está vacío, se utilizará el formato por defecto %s"
|
989 |
|
990 |
-
#: ../dashboard.php:
|
991 |
msgid "Push notifications"
|
992 |
msgstr "Notificaciones"
|
993 |
|
@@ -1011,15 +1007,15 @@ msgstr ""
|
|
1011 |
msgid "Not available"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: ../common.php:
|
1015 |
msgid "Password reset requested"
|
1016 |
msgstr "Reajuste de contraseña solicitado"
|
1017 |
|
1018 |
-
#: ../common.php:
|
1019 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: ../common.php:
|
1023 |
msgid "%s ago"
|
1024 |
msgstr ""
|
1025 |
|
@@ -1063,7 +1059,7 @@ msgstr "Bloquear dirección IP durante %s minutos después de %s intentos fallid
|
|
1063 |
msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
|
1064 |
msgstr "En modo Ciudadela, nadie puede iniciar sesión con excepción de las IPs de la lista de acceso de IPs blancas. Las sesiones de usuario activas no se verán afectadas."
|
1065 |
|
1066 |
-
#: ../dashboard.php:
|
1067 |
msgid "Event"
|
1068 |
msgstr "Evento"
|
1069 |
|
@@ -1079,24 +1075,24 @@ msgstr "Direcciones IP maliciosas detectadas"
|
|
1079 |
msgid "Lockouts occurred"
|
1080 |
msgstr "Bloqueos realizados"
|
1081 |
|
1082 |
-
#: ../dashboard.php:
|
1083 |
msgid "All suspicious activity"
|
1084 |
msgstr "Todas las actividades sospechosas"
|
1085 |
|
1086 |
-
#: ../wp-cerber.php:
|
1087 |
-
#: php:
|
1088 |
msgid "You are not allowed to register."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: ../common.php:
|
1092 |
msgid "Spam comment denied"
|
1093 |
msgstr "Comentario spam denegado"
|
1094 |
|
1095 |
-
#: ../common.php:
|
1096 |
msgid "Attempt to log in denied"
|
1097 |
msgstr "Intento de iniciar sesión denegado"
|
1098 |
|
1099 |
-
#: ../common.php:
|
1100 |
msgid "Attempt to register denied"
|
1101 |
msgstr "Intento de registro denegado"
|
1102 |
|
@@ -1104,11 +1100,11 @@ msgstr "Intento de registro denegado"
|
|
1104 |
msgid "Malicious activities mitigated"
|
1105 |
msgstr "Actividades mitigadas"
|
1106 |
|
1107 |
-
#: ../dashboard.php:
|
1108 |
msgid "Cerber antispam settings"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: ../dashboard.php:
|
1112 |
msgid "Antispam"
|
1113 |
msgstr ""
|
1114 |
|
@@ -1140,15 +1136,15 @@ msgstr "Diagnóstico"
|
|
1140 |
msgid "License"
|
1141 |
msgstr "Licencia"
|
1142 |
|
1143 |
-
#: ../cerber-tools.php:
|
1144 |
msgid "Antispam and bot detection settings"
|
1145 |
msgstr "Antispam y ajustes de detección de bots"
|
1146 |
|
1147 |
-
#: ../wp-cerber.php:
|
1148 |
msgid "Sorry, human verification failed."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: ../common.php:
|
1152 |
msgid "Bot activity is detected"
|
1153 |
msgstr ""
|
1154 |
|
@@ -1168,7 +1164,7 @@ msgstr "Papelera de spam "
|
|
1168 |
msgid "Move spam comments to trash after"
|
1169 |
msgstr "Mover comentarios spam a la papelera después de "
|
1170 |
|
1171 |
-
#: ../common.php:
|
1172 |
msgid "Spam form submission denied"
|
1173 |
msgstr ""
|
1174 |
|
@@ -1205,31 +1201,31 @@ msgstr "Deshabilitar motor de detección de bot para usuarios conectados"
|
|
1205 |
msgid "WP Cerber Security & Antispam"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: ../dashboard.php:95 ../dashboard.php:
|
1209 |
msgid "Country"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: ../dashboard.php:
|
1213 |
msgid "All events"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: ../dashboard.php:
|
1217 |
msgid "Cerber Security Rules"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: ../dashboard.php:
|
1221 |
msgid "Security Rules"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: ../dashboard.php:
|
1225 |
msgid "Failed login attempts"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: ../dashboard.php:
|
1229 |
msgid "Registered"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: ../dashboard.php:
|
1233 |
msgid "You"
|
1234 |
msgstr ""
|
1235 |
|
@@ -1237,25 +1233,25 @@ msgstr ""
|
|
1237 |
msgid "Spam form submissions denied"
|
1238 |
msgstr "Envíos de formularios spam denegados"
|
1239 |
|
1240 |
-
#: ../dashboard.php:
|
1241 |
msgid "Getting Started Guide"
|
1242 |
msgstr "Guía de Introducción"
|
1243 |
|
1244 |
-
#: ../dashboard.php:
|
1245 |
msgid "Countries"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: ../dashboard.php:
|
1249 |
msgid "Permitted for one country"
|
1250 |
msgid_plural "Permitted for %d countries"
|
1251 |
msgstr[0] ""
|
1252 |
msgstr[1] ""
|
1253 |
|
1254 |
-
#: ../dashboard.php:
|
1255 |
msgid "No rule"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: ../dashboard.php:
|
1259 |
msgid "Security rules have been updated"
|
1260 |
msgstr ""
|
1261 |
|
@@ -1264,47 +1260,47 @@ msgstr ""
|
|
1264 |
msgid "https://wpcerber.com"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: ../common.php:
|
1268 |
msgid "Form submission denied"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: ../common.php:
|
1272 |
msgid "Comment denied"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: ../common.php:
|
1276 |
msgid "Request to REST API denied"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: ../common.php:
|
1280 |
msgid "XML-RPC request denied"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: ../common.php:
|
1284 |
msgid "Bot detected"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: ../common.php:
|
1288 |
msgid "Citadel mode is active"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: ../common.php:
|
1292 |
msgid "Malicious activity detected"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: ../common.php:
|
1296 |
msgid "Blocked by country rule"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: ../common.php:
|
1300 |
msgid "Limit reached"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: ../common.php:
|
1304 |
msgid "Multiple suspicious activities"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: ../common.php:
|
1308 |
msgid "Multiple suspicious activities were detected"
|
1309 |
msgstr ""
|
1310 |
|
@@ -1344,35 +1340,35 @@ msgstr "Lista blanca de consultas"
|
|
1344 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: ../dashboard.php:
|
1348 |
msgid "Start typing here to find a country"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: ../dashboard.php:
|
1352 |
msgid "Click on a country name to add it to the list of selected countries"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: ../dashboard.php:
|
1356 |
msgid "Submit forms"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: ../dashboard.php:
|
1360 |
msgid "Post comments"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: ../dashboard.php:
|
1364 |
msgid "Log in to the website"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: ../dashboard.php:
|
1368 |
msgid "Register on the website"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: ../dashboard.php:
|
1372 |
msgid "Use XML-RPC"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: ../dashboard.php:
|
1376 |
msgid "Use REST API"
|
1377 |
msgstr ""
|
1378 |
|
@@ -1384,11 +1380,11 @@ msgstr "Denegarlo completamente"
|
|
1384 |
msgid "Mark it as spam"
|
1385 |
msgstr "Marcar como spam"
|
1386 |
|
1387 |
-
#: ../dashboard.php:
|
1388 |
msgid "in the last 24 hours"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: ../dashboard.php:
|
1392 |
msgid "Main settings"
|
1393 |
msgstr "Ajustes"
|
1394 |
|
@@ -1434,23 +1430,23 @@ msgctxt "preposition of time"
|
|
1434 |
msgid "at"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: ../wp-cerber.php:
|
1438 |
msgid "Weekly report"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: ../wp-cerber.php:
|
1442 |
msgid "To change reporting settings visit"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: ../wp-cerber.php:
|
1446 |
msgid "Your login page:"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: ../wp-cerber.php:
|
1450 |
msgid "Your license is valid until"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: ../wp-cerber.php:
|
1454 |
msgid "Activity details"
|
1455 |
msgstr ""
|
1456 |
|
@@ -1458,30 +1454,30 @@ msgstr ""
|
|
1458 |
msgid "Click to send now"
|
1459 |
msgstr "Pulsa para enviar ahora"
|
1460 |
|
1461 |
-
#: ../wp-cerber.php:
|
1462 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: ../dashboard.php:
|
1466 |
msgid "Email has been sent to"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: ../dashboard.php:
|
1470 |
msgid "Unable to send email to"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: ../dashboard.php:
|
1474 |
msgid "Not permitted for one country"
|
1475 |
msgid_plural "Not permitted for %d countries"
|
1476 |
msgstr[0] ""
|
1477 |
msgstr[1] ""
|
1478 |
|
1479 |
-
#: ../dashboard.php:
|
1480 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1481 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: ../dashboard.php:
|
1485 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1486 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
1487 |
msgstr ""
|
@@ -1491,7 +1487,7 @@ msgstr ""
|
|
1491 |
msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: ../wp-cerber.php:
|
1495 |
msgid "Weekly Report"
|
1496 |
msgstr ""
|
1497 |
|
@@ -1515,11 +1511,31 @@ msgstr ""
|
|
1515 |
msgid "Enable reporting"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: ../wp-cerber.php:
|
1519 |
msgid "Your last sign-in was %s from %s"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: ../wp-cerber.php:
|
1523 |
msgid "Attempts to log in with non-existent username"
|
1524 |
msgstr ""
|
1525 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
73 |
msgstr "Bloquear el acceso directo a wp-login.php y devolver un error HTTP 404 - No encontrado"
|
74 |
|
75 |
+
#: ../dashboard.php:1109 ../settings.php:86
|
76 |
msgid "Citadel mode"
|
77 |
msgstr "Modo Ciudadela"
|
78 |
|
84 |
msgid "Duration"
|
85 |
msgstr "Duración"
|
86 |
|
87 |
+
#: ../wp-cerber.php:3742 ../settings.php:72 ../settings.php:89 ../settings.php:262
|
88 |
msgid "Notifications"
|
89 |
msgstr "Notificaciones"
|
90 |
|
92 |
msgid "Send notification to admin email"
|
93 |
msgstr "Enviar una notificación al correo del administrador"
|
94 |
|
95 |
+
#: ../dashboard.php:1118 ../wp-cerber.php:3739 ../settings.php:255 ../cerber-
|
96 |
+
#: tools.php:88 ../cerber-tools.php:97 ../cerber-tools.php:178
|
97 |
msgid "Access Lists"
|
98 |
msgstr "Listas de acceso"
|
99 |
|
100 |
+
#: ../dashboard.php:1116 ../dashboard.php:1312 ../wp-cerber.php:3503 ../settings.
|
101 |
#: php:91 ../settings.php:246
|
102 |
msgid "Activity"
|
103 |
msgstr "Actividad"
|
104 |
|
105 |
+
#: ../dashboard.php:1117 ../settings.php:250
|
106 |
msgid "Lockouts"
|
107 |
msgstr "Bloqueos"
|
108 |
|
114 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
115 |
msgstr "Habilitar después de %s intentos de acceso fallidos en los últimos %s minutos"
|
116 |
|
117 |
+
#: ../dashboard.php:93 ../dashboard.php:631 ../wp-cerber.php:3512
|
118 |
msgid "IP"
|
119 |
msgstr "IP"
|
120 |
|
121 |
+
#: ../dashboard.php:476 ../dashboard.php:634
|
122 |
msgid "Date"
|
123 |
msgstr "Fecha"
|
124 |
|
125 |
+
#: ../dashboard.php:476 ../dashboard.php:636
|
126 |
msgid "Local User"
|
127 |
msgstr "Usuario local"
|
128 |
|
129 |
+
#: ../dashboard.php:476 ../dashboard.php:637 ../wp-cerber.php:3520
|
130 |
msgid "Username used"
|
131 |
msgstr "Nombre utilizado"
|
132 |
|
134 |
msgid "Showing last %d records from %d"
|
135 |
msgstr "Mostrando los últimos %d registros de %d"
|
136 |
|
137 |
+
#: ../common.php:521
|
138 |
msgid "Logged in"
|
139 |
msgstr "Sesión iniciada"
|
140 |
|
141 |
+
#: ../common.php:522
|
142 |
msgid "Logged out"
|
143 |
msgstr "Desconectado"
|
144 |
|
145 |
+
#: ../common.php:523
|
146 |
msgid "Login failed"
|
147 |
msgstr "Error de inicio de sesión"
|
148 |
|
149 |
+
#: ../common.php:526
|
150 |
msgid "IP blocked"
|
151 |
msgstr "IP bloqueada"
|
152 |
|
153 |
+
#: ../common.php:527
|
154 |
msgid "Subnet blocked"
|
155 |
msgstr "Subred bloqueada"
|
156 |
|
157 |
+
#: ../common.php:529
|
158 |
msgid "Citadel activated!"
|
159 |
msgstr "¡Ciudadela activada!"
|
160 |
|
161 |
+
#: ../dashboard.php:612 ../dashboard.php:816 ../common.php:565
|
162 |
msgid "Locked out"
|
163 |
msgstr "Bloqueado"
|
164 |
|
165 |
+
#: ../common.php:566
|
166 |
msgid "IP blacklisted"
|
167 |
msgstr "IP en la lista negra"
|
168 |
|
169 |
+
#: ../common.php:544
|
170 |
msgid "Password changed"
|
171 |
msgstr "Contraseña cambiada"
|
172 |
|
173 |
+
#: ../dashboard.php:86 ../dashboard.php:158
|
174 |
msgid "Remove"
|
175 |
msgstr "Eliminar"
|
176 |
|
177 |
+
#: ../dashboard.php:387
|
178 |
msgid "Lockout for %s was removed"
|
179 |
msgstr "Se ha eliminado el bloqueo de %s"
|
180 |
|
181 |
+
#: ../dashboard.php:131 ../dashboard.php:607 ../dashboard.php:811 ../dashboard.
|
182 |
+
#: php:1107 ../wp-cerber.php:3731 ../settings.php:71 ../settings.php:216
|
183 |
msgid "White IP Access List"
|
184 |
msgstr "Lista Blanca de Accesos IP"
|
185 |
|
186 |
+
#: ../dashboard.php:133 ../dashboard.php:608 ../dashboard.php:813 ../dashboard.
|
187 |
+
#: php:1108
|
188 |
msgid "Black IP Access List"
|
189 |
msgstr "Lista Negra de Accesos IP"
|
190 |
|
191 |
+
#: ../dashboard.php:163
|
192 |
msgid "List is empty"
|
193 |
msgstr "La lista está vacía"
|
194 |
|
195 |
+
#: ../dashboard.php:200
|
196 |
msgid "Address %s was added to White IP Access List"
|
197 |
msgstr "Dirección %s añadida a la lista blanca de IPs"
|
198 |
|
199 |
+
#: ../dashboard.php:214
|
200 |
msgid "Address %s was added to Black IP Access List"
|
201 |
msgstr "Dirección %s añadida a la lista negra de IPs"
|
202 |
|
203 |
+
#: ../wp-cerber.php:2995
|
204 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
205 |
msgstr "El Modo Ciudadela se activa después de %d intentos fallidos de inicio de sesión en %d minutos."
|
206 |
|
207 |
+
#: ../dashboard.php:1454
|
208 |
msgid "View Activity"
|
209 |
msgstr "Ver actividad"
|
210 |
|
212 |
msgid "Settings"
|
213 |
msgstr "Ajustes"
|
214 |
|
215 |
+
#: ../dashboard.php:973
|
216 |
msgid "Last login"
|
217 |
msgstr "Último acceso"
|
218 |
|
219 |
+
#: ../dashboard.php:1006 ../dashboard.php:1090
|
220 |
msgid "Never"
|
221 |
msgstr "Nunca"
|
222 |
|
223 |
+
#: ../dashboard.php:1356
|
224 |
msgid "Are you sure?"
|
225 |
msgstr "¿Estás seguro?"
|
226 |
|
227 |
+
#: ../dashboard.php:1164 ../settings.php:73
|
228 |
msgid "My site is behind a reverse proxy"
|
229 |
msgstr "Mi web está detrás de un proxy inverso"
|
230 |
|
252 |
msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
|
253 |
msgstr "Cuidado al habilitar esta opción. Si olvidas la dirección URL de conexión personalizada, no podrás iniciar sesión."
|
254 |
|
255 |
+
#: ../wp-cerber.php:3738 ../settings.php:252
|
256 |
msgid "Main Settings"
|
257 |
msgstr "Ajustes"
|
258 |
|
264 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
265 |
msgstr "Aumentar la duración del bloqueo en %s horas después de %s bloqueos en las últimas %s horas"
|
266 |
|
267 |
+
#: ../wp-cerber.php:237
|
268 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
269 |
msgstr "No puedes iniciar sesión. Pregunta al administrador para obtener ayuda."
|
270 |
|
271 |
+
#: ../wp-cerber.php:243
|
272 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
273 |
msgstr "Se ha alcanzado el límite de intentos de inicio de sesión. Por favor, inténtalo de nuevo dentro de %d minutos."
|
274 |
|
275 |
+
#: ../wp-cerber.php:262
|
276 |
msgid "You have only one attempt remaining."
|
277 |
msgid_plural "You have %d attempts remaining."
|
278 |
msgstr[0] "Queda solo un intento restante."
|
279 |
msgstr[1] "Quedan %d intentos restantes."
|
280 |
|
281 |
+
#: ../dashboard.php:658
|
282 |
msgid "No activity has been logged."
|
283 |
msgstr "No hay actividad registrada."
|
284 |
|
298 |
msgid "Your IP"
|
299 |
msgstr "Tu IP"
|
300 |
|
301 |
+
#: ../wp-cerber.php:2996
|
|
|
|
|
|
|
|
|
302 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
303 |
msgstr "El último intento fallido fue el %s desde la IP %s con el nombre de usuario: %s."
|
304 |
|
305 |
+
#: ../wp-cerber.php:3714
|
306 |
msgid "Can't activate WP Cerber due to a database error."
|
307 |
msgstr "No se puede activar WP Cerber debido a un error de base de datos."
|
308 |
|
314 |
msgid "days"
|
315 |
msgstr "días"
|
316 |
|
317 |
+
#: ../dashboard.php:1060
|
318 |
msgid "Cerber Quick View"
|
319 |
msgstr "Vista Rápida del Cerbero"
|
320 |
|
326 |
msgid "To view activity, click on the IP"
|
327 |
msgstr "Para ver la actividad, haz clic en la IP"
|
328 |
|
329 |
+
#: ../dashboard.php:158 ../dashboard.php:843
|
330 |
msgid "Check for activity"
|
331 |
msgstr "Comprobar actividad"
|
332 |
|
342 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
343 |
msgstr "¡Atención! ¡Has cambiado la dirección URL de conexión! La nueva URL de acceso es"
|
344 |
|
345 |
+
#: ../dashboard.php:972
|
346 |
msgid "Comments"
|
347 |
msgstr "Comentarios"
|
348 |
|
349 |
+
#: ../common.php:785
|
350 |
msgid "Update to version %s of WP Cerber"
|
351 |
msgstr "Actualizar a la versión %s de WP Cerber"
|
352 |
|
353 |
+
#: ../wp-cerber.php:2997 ../wp-cerber.php:3544
|
354 |
msgid "View activity in dashboard"
|
355 |
msgstr "Ver actividad en el escritorio"
|
356 |
|
357 |
+
#: ../wp-cerber.php:3027
|
358 |
msgid "Number of active lockouts"
|
359 |
msgstr "Número de bloqueos activos"
|
360 |
|
361 |
+
#: ../wp-cerber.php:3031
|
362 |
msgid "View lockouts in dashboard"
|
363 |
msgstr "Ver los bloqueos en el escritorio"
|
364 |
|
365 |
+
#: ../wp-cerber.php:3113
|
366 |
msgid "This message was sent by"
|
367 |
msgstr "Este mensaje fue enviado por"
|
368 |
|
369 |
+
#: ../dashboard.php:901 ../cerber-tools.php:43
|
370 |
msgid "Tools"
|
371 |
msgstr "Herramientas"
|
372 |
|
410 |
msgid "Upload file"
|
411 |
msgstr "Cargar archivo"
|
412 |
|
413 |
+
#: ../cerber-tools.php:145
|
414 |
msgid "No file was uploaded or file is corrupted"
|
415 |
msgstr "Ningún archivo subido ni archivo dañado"
|
416 |
|
417 |
+
#: ../cerber-tools.php:178
|
418 |
msgid "Error while updating"
|
419 |
msgstr "Ha habido un error al actualizar"
|
420 |
|
421 |
+
#: ../cerber-tools.php:181
|
422 |
msgid "Settings has imported successfully from"
|
423 |
msgstr "La configuración se ha importado con éxito desde"
|
424 |
|
425 |
+
#: ../cerber-tools.php:185
|
426 |
msgid "Error while parsing file"
|
427 |
msgstr "Error al analizar el archivo"
|
428 |
|
429 |
+
#: ../dashboard.php:94 ../dashboard.php:632
|
430 |
msgid "Hostname"
|
431 |
msgstr "Host"
|
432 |
|
433 |
+
#: ../dashboard.php:353
|
434 |
msgid "unknown"
|
435 |
msgstr "desconocido"
|
436 |
|
438 |
msgid "Keep records for"
|
439 |
msgstr "Mantener un registro de"
|
440 |
|
441 |
+
#: ../dashboard.php:1094
|
442 |
msgid "active"
|
443 |
msgstr "activar"
|
444 |
|
445 |
+
#: ../dashboard.php:1094
|
446 |
msgid "deactivate"
|
447 |
msgstr "desactivar"
|
448 |
|
449 |
+
#: ../dashboard.php:1096
|
450 |
msgid "not active"
|
451 |
msgstr "no activo"
|
452 |
|
453 |
+
#: ../dashboard.php:1097
|
454 |
msgid "disabled"
|
455 |
msgstr "desactivado"
|
456 |
|
457 |
+
#: ../dashboard.php:1102
|
458 |
msgid "failed attempts"
|
459 |
msgstr "intentos fallidos"
|
460 |
|
461 |
+
#: ../dashboard.php:1102 ../dashboard.php:1103
|
462 |
msgid "in 24 hours"
|
463 |
msgstr "en 24 horas"
|
464 |
|
465 |
+
#: ../dashboard.php:1102 ../dashboard.php:1103
|
466 |
msgid "view all"
|
467 |
msgstr "ver todo"
|
468 |
|
469 |
+
#: ../dashboard.php:1103
|
470 |
msgid "lockouts"
|
471 |
msgstr "bloqueos"
|
472 |
|
473 |
+
#: ../dashboard.php:1105
|
474 |
msgid "Lockouts at the moment"
|
475 |
msgstr "Bloqueos en este momento"
|
476 |
|
477 |
+
#: ../dashboard.php:1106
|
478 |
msgid "Last lockout"
|
479 |
msgstr "Último bloqueo"
|
480 |
|
481 |
+
#: ../dashboard.php:1107 ../dashboard.php:1108 ../dashboard.php:1620
|
482 |
msgid "entry"
|
483 |
msgid_plural "entries"
|
484 |
msgstr[0] "entrada"
|
485 |
msgstr[1] "entradas"
|
486 |
|
487 |
+
#: ../dashboard.php:1351
|
488 |
msgid "Confused about some settings?"
|
489 |
msgstr "¿Confundido acerca de algunos ajustes?"
|
490 |
|
491 |
+
#: ../dashboard.php:1352
|
492 |
msgid "You can easily load default recommended settings using button below"
|
493 |
msgstr "Se pueden cargar fácilmente los valores recomendados predeterminados usando el botón de abajo"
|
494 |
|
495 |
+
#: ../dashboard.php:1354
|
496 |
msgid "Load default settings"
|
497 |
msgstr "Cargar ajustes predeterminados"
|
498 |
|
499 |
+
#: ../dashboard.php:1362
|
500 |
msgid "doesn't affect Custom login URL and Access Lists"
|
501 |
msgstr "no afecta a la URL de acceso personalizada ni a las listas de acceso"
|
502 |
|
503 |
+
#: ../common.php:778
|
504 |
msgid "New version is available"
|
505 |
msgstr "Nueva versión disponible"
|
506 |
|
507 |
#. Name of the plugin
|
508 |
+
#: ../dashboard.php:892 ../dashboard.php:911
|
509 |
msgid "WP Cerber"
|
510 |
msgstr "WP Cerber"
|
511 |
|
512 |
+
#: ../wp-cerber.php:2971
|
513 |
msgid "WP Cerber notify"
|
514 |
msgstr "Notificación de WP Cerber"
|
515 |
|
516 |
+
#: ../wp-cerber.php:2993
|
517 |
msgid "Citadel mode is activated"
|
518 |
msgstr "El Modo Ciudadela está activado."
|
519 |
|
520 |
+
#: ../wp-cerber.php:3067
|
521 |
msgid "New Custom login URL"
|
522 |
msgstr "Nueva URL de acceso personalizada"
|
523 |
|
524 |
+
#: ../wp-cerber.php:3701
|
525 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
526 |
msgstr "WP Cerber requiere PHP %s o superior. Se está ejecutando actualmente"
|
527 |
|
528 |
+
#: ../wp-cerber.php:3705
|
529 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
530 |
msgstr "WP Cerber requiere WordPress %s o superior. Se está ejecutando actualmente"
|
531 |
|
537 |
msgid "Write failed login attempts to the file"
|
538 |
msgstr "Registrar los intentos de acceso fallidos en el archivo"
|
539 |
|
540 |
+
#: ../dashboard.php:1453
|
541 |
msgid "Deactivate"
|
542 |
msgstr "Desactivar"
|
543 |
|
544 |
+
#: ../dashboard.php:97 ../wp-cerber.php:3029
|
545 |
msgid "Reason"
|
546 |
msgstr "Motivo"
|
547 |
|
548 |
+
#: ../dashboard.php:168
|
549 |
msgid "Add IP to the list"
|
550 |
msgstr "Añadir IP a la lista"
|
551 |
|
552 |
+
#: ../dashboard.php:861
|
553 |
msgid "Add IP to the Black List"
|
554 |
msgstr "Añadir IP a la lista negra"
|
555 |
|
556 |
+
#: ../common.php:596
|
557 |
msgid "Attempt to access"
|
558 |
msgstr "Intento de acceso"
|
559 |
|
560 |
+
#: ../common.php:595
|
561 |
msgid "Limit on login attempts is reached"
|
562 |
msgstr "Se han alcanzado todos los intentos de inicio de sesión"
|
563 |
|
564 |
+
#: ../common.php:552 ../common.php:597
|
565 |
msgid "Attempt to log in with non-existent username"
|
566 |
msgstr "Intento de acceso con nombre de usuario inexistente"
|
567 |
|
568 |
+
#: ../wp-cerber.php:3028
|
569 |
msgid "Last lockout was added: %s for IP %s"
|
570 |
msgstr "Último bloqueo añadido: %s para la IP %s"
|
571 |
|
572 |
+
#: ../wp-cerber.php:3741 ../settings.php:257
|
573 |
msgid "Hardening"
|
574 |
msgstr "Endurecimiento"
|
575 |
|
576 |
+
#: ../dashboard.php:839
|
577 |
msgid "Abuse email:"
|
578 |
msgstr "Correo electrónico de abuso:"
|
579 |
|
629 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
630 |
msgstr "<strong>ERROR</strong>: por favor, introduce una dirección de correo electrónico válida."
|
631 |
|
632 |
+
#: ../wp-cerber.php:3059 ../wp-cerber.php:3730
|
633 |
msgid "WP Cerber is now active and has started protecting your site"
|
634 |
msgstr "WP Cerber está activo actualmente y está protegiendo tu web"
|
635 |
|
641 |
msgid "Nobody can log in or register from these IPs"
|
642 |
msgstr "Nadie puede acceder desde estas direcciones IP"
|
643 |
|
644 |
+
#: ../dashboard.php:194 ../dashboard.php:206
|
645 |
msgid "Incorrect IP address or IP range"
|
646 |
msgstr "Dirección o rango de IP incorrecta"
|
647 |
|
648 |
+
#: ../dashboard.php:404 ../dashboard.php:1469
|
649 |
msgid "Settings saved"
|
650 |
msgstr "Ajustes guardados."
|
651 |
|
652 |
+
#: ../dashboard.php:843
|
653 |
msgid "Network:"
|
654 |
msgstr "Red:"
|
655 |
|
656 |
+
#: ../dashboard.php:857
|
657 |
msgid "Add network to the Black List"
|
658 |
msgstr "Añadir red a la Lista Negra"
|
659 |
|
660 |
+
#: ../dashboard.php:1452
|
661 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
662 |
msgstr "¡Atención! El Modo Ciudadela está activo. Nadie puede iniciar sesión."
|
663 |
|
664 |
+
#: ../dashboard.php:311 ../whois.php:221 ../whois.php:252 ../common.php:594
|
665 |
msgid "Unknown"
|
666 |
msgstr "Desconocido"
|
667 |
|
670 |
msgid "Gregory"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: ../wp-cerber.php:545 ../wp-cerber.php:557 ../wp-cerber.php:564 ../wp-cerber.
|
674 |
+
#: php:743 ../wp-cerber.php:959 ../wp-cerber.php:965 ../wp-cerber.php:970 ../wp-
|
675 |
+
#: cerber.php:975 ../wp-cerber.php:981 ../wp-cerber.php:988 ../wp-cerber.php:1088
|
676 |
+
#: ../wp-cerber.php:1225 ../common.php:173 ../common.php:227 ../common.php:231 ..
|
677 |
+
#: /settings.php:709
|
678 |
msgid "ERROR:"
|
679 |
msgstr "ERROR:"
|
680 |
|
681 |
+
#: ../wp-cerber.php:574
|
682 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
683 |
msgstr "La verificación humana ha fallado. Por favor, pulsa en la casilla cuadrada del siguiente bloque reCAPTCHA."
|
684 |
|
685 |
+
#: ../wp-cerber.php:755
|
686 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
687 |
msgstr "<strong>ERROR</strong>: La contraseña introducida para el nombre de usuario %s es incorrecta."
|
688 |
|
689 |
+
#: ../wp-cerber.php:976
|
690 |
msgid "Username is not allowed. Please choose another one."
|
691 |
msgstr "Nombre de usuario no permitido. Por favor, elige otro."
|
692 |
|
693 |
+
#: ../wp-cerber.php:3022
|
694 |
msgid "unspecified"
|
695 |
msgstr "no especificado"
|
696 |
|
697 |
+
#: ../wp-cerber.php:3025
|
698 |
msgid "Number of lockouts is increasing"
|
699 |
msgstr "El número de bloqueos está aumentando"
|
700 |
|
701 |
+
#: ../wp-cerber.php:3030
|
702 |
msgid "View activity for this IP"
|
703 |
msgstr "Ver actividad de esta IP"
|
704 |
|
705 |
+
#: ../wp-cerber.php:3034 ../wp-cerber.php:3036
|
706 |
msgid "A new version of WP Cerber is available to install"
|
707 |
msgstr "Una nueva versión de WP Cerber está disponible"
|
708 |
|
709 |
+
#: ../wp-cerber.php:3035
|
710 |
msgid "Hi!"
|
711 |
msgstr "¡Hola!"
|
712 |
|
713 |
+
#: ../wp-cerber.php:3038 ../wp-cerber.php:3049
|
714 |
msgid "Website"
|
715 |
msgstr "Web"
|
716 |
|
717 |
+
#: ../wp-cerber.php:3041 ../wp-cerber.php:3042
|
718 |
msgid "The WP Cerber security plugin has been deactivated"
|
719 |
msgstr "El plugin WP Cerber se ha desactivado"
|
720 |
|
721 |
+
#: ../wp-cerber.php:3044
|
722 |
msgid "Not logged in"
|
723 |
msgstr "No conectado"
|
724 |
|
725 |
+
#: ../wp-cerber.php:3050
|
726 |
msgid "By user"
|
727 |
msgstr "Por usuario"
|
728 |
|
729 |
+
#: ../wp-cerber.php:3051
|
730 |
msgid "From IP address"
|
731 |
msgstr "De la dirección IP"
|
732 |
|
733 |
+
#: ../wp-cerber.php:3054
|
734 |
msgid "From country"
|
735 |
msgstr "Del país"
|
736 |
|
737 |
+
#: ../wp-cerber.php:3058
|
738 |
msgid "The WP Cerber security plugin is now active"
|
739 |
msgstr "El plugin WP Cerber se ha activado"
|
740 |
|
741 |
+
#: ../wp-cerber.php:3731
|
742 |
msgid "Your IP address is added to the"
|
743 |
msgstr "Tu dirección IP se ha añadido a la"
|
744 |
|
745 |
+
#: ../wp-cerber.php:3743
|
746 |
msgid "Import settings"
|
747 |
msgstr "Importar ajustes"
|
748 |
|
810 |
msgid "Know more"
|
811 |
msgstr "(Información)"
|
812 |
|
813 |
+
#: ../dashboard.php:892 ../settings.php:239
|
814 |
msgid "WP Cerber Security"
|
815 |
msgstr "Seguridad WP Cerber"
|
816 |
|
818 |
msgid "Users"
|
819 |
msgstr "Usuarios"
|
820 |
|
821 |
+
#: ../common.php:519
|
822 |
msgid "User created"
|
823 |
msgstr "Usuario creado"
|
824 |
|
825 |
+
#: ../dashboard.php:1306 ../common.php:520
|
826 |
msgid "User registered"
|
827 |
msgstr "Usuario registrado"
|
828 |
|
829 |
+
#: ../common.php:547
|
830 |
msgid "reCAPTCHA verification failed"
|
831 |
msgstr "Fallo de verificación reCAPTCHA"
|
832 |
|
833 |
+
#: ../common.php:548
|
834 |
msgid "reCAPTCHA settings are incorrect"
|
835 |
msgstr "Los ajustes reCAPTCHA son incorrectos"
|
836 |
|
837 |
+
#: ../common.php:551
|
838 |
msgid "Attempt to access prohibited URL"
|
839 |
msgstr "Intento de acceso a URL prohibida"
|
840 |
|
841 |
+
#: ../common.php:553 ../common.php:598
|
842 |
msgid "Attempt to log in with prohibited username"
|
843 |
msgstr "Intento de acceso con nombre de usuario prohibido"
|
844 |
|
874 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
875 |
msgstr "Habilitar reCAPTCHA para el formulario de acceso WooCommerce"
|
876 |
|
877 |
+
#: ../common.php:549
|
878 |
msgid "Request to the Google reCAPTCHA service failed"
|
879 |
msgstr "Error solicitando el servicio reCAPTCHA de Google"
|
880 |
|
881 |
+
#: ../dashboard.php:1298 ../dashboard.php:1327
|
882 |
msgid "View all"
|
883 |
msgstr "Ver todo"
|
884 |
|
885 |
+
#: ../dashboard.php:1328
|
886 |
msgid "Recently locked out IP addresses"
|
887 |
msgstr "Direcciones IP recientemente bloqueadas"
|
888 |
|
894 |
msgid "NO, maybe later"
|
895 |
msgstr "NO, tal vez más tarde"
|
896 |
|
897 |
+
#: ../dashboard.php:894 ../dashboard.php:1115 ../dashboard.php:1640 ../settings.
|
898 |
#: php:244
|
899 |
msgid "Dashboard"
|
900 |
msgstr "Escritorio"
|
907 |
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."
|
908 |
msgstr "Dejar a WP Cerber enviar direcciones IP maliciosas bloqueadas al laboratorio Cerber. Esto ayuda a que el equipo de plugin para el desarrollo de nuevos algoritmos para WP Cerber y defender a WordPress contra las nuevas amenazas y botnets que están apareciendo todos los días. Puede desactivar el envío de la configuración del plugin en cualquier momento."
|
909 |
|
910 |
+
#: ../dashboard.php:476
|
911 |
msgid "IP address"
|
912 |
msgstr "Dirección IP"
|
913 |
|
914 |
+
#: ../dashboard.php:476
|
915 |
msgid "User login"
|
916 |
msgstr "Acceso de Usuario"
|
917 |
|
918 |
+
#: ../dashboard.php:476
|
919 |
msgid "User ID"
|
920 |
msgstr "ID de usuario"
|
921 |
|
922 |
+
#: ../dashboard.php:654
|
923 |
msgid "Export"
|
924 |
msgstr "Exportar"
|
925 |
|
926 |
+
#: ../dashboard.php:673
|
927 |
msgid "Search for IP or username"
|
928 |
msgstr "Búsqueda de IP o nombre de usuario"
|
929 |
|
930 |
+
#: ../dashboard.php:673
|
931 |
msgid "Filter"
|
932 |
msgstr "Filtrar"
|
933 |
|
934 |
+
#: ../dashboard.php:894
|
935 |
msgid "Cerber Dashboard"
|
936 |
msgstr "Panel de Control"
|
937 |
|
938 |
+
#: ../dashboard.php:901
|
939 |
msgid "Cerber tools"
|
940 |
msgstr "Herramientas Cerber"
|
941 |
|
942 |
+
#: ../dashboard.php:1553
|
943 |
msgid "Subscribe"
|
944 |
msgstr "Suscribirse"
|
945 |
|
946 |
+
#: ../dashboard.php:1554 ../cerber-tools.php:243
|
947 |
msgid "Unsubscribe"
|
948 |
msgstr "Cancelar Subscripción"
|
949 |
|
950 |
+
#: ../dashboard.php:1582
|
951 |
msgid "You've subscribed"
|
952 |
msgstr "Te has suscrito"
|
953 |
|
954 |
+
#: ../dashboard.php:1585
|
955 |
msgid "You've unsubscribed"
|
956 |
msgstr "Has cancelado tu suscripción"
|
957 |
|
958 |
+
#: ../wp-cerber.php:3071 ../wp-cerber.php:3072
|
959 |
msgid "A new activity has been recorded"
|
960 |
msgstr "Una nueva actividad ha sido registrada"
|
961 |
|
962 |
+
#: ../wp-cerber.php:3516
|
963 |
msgid "User"
|
964 |
msgstr "Usuario"
|
965 |
|
966 |
+
#: ../wp-cerber.php:3524
|
967 |
msgid "Search string"
|
968 |
msgstr "Cadena de búsqueda"
|
969 |
|
970 |
+
#: ../wp-cerber.php:3545
|
971 |
msgid "To unsubscribe click here"
|
972 |
msgstr "Para anular la suscripción, pulsar aquí"
|
973 |
|
983 |
msgid "if empty, the default format %s will be used"
|
984 |
msgstr "Si está vacío, se utilizará el formato por defecto %s"
|
985 |
|
986 |
+
#: ../dashboard.php:1111 ../settings.php:175
|
987 |
msgid "Push notifications"
|
988 |
msgstr "Notificaciones"
|
989 |
|
1007 |
msgid "Not available"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: ../common.php:545
|
1011 |
msgid "Password reset requested"
|
1012 |
msgstr "Reajuste de contraseña solicitado"
|
1013 |
|
1014 |
+
#: ../common.php:599
|
1015 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: ../common.php:644
|
1019 |
msgid "%s ago"
|
1020 |
msgstr ""
|
1021 |
|
1059 |
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."
|
1060 |
msgstr "En modo Ciudadela, nadie puede iniciar sesión con excepción de las IPs de la lista de acceso de IPs blancas. Las sesiones de usuario activas no se verán afectadas."
|
1061 |
|
1062 |
+
#: ../dashboard.php:476 ../dashboard.php:635
|
1063 |
msgid "Event"
|
1064 |
msgstr "Evento"
|
1065 |
|
1075 |
msgid "Lockouts occurred"
|
1076 |
msgstr "Bloqueos realizados"
|
1077 |
|
1078 |
+
#: ../dashboard.php:1307
|
1079 |
msgid "All suspicious activity"
|
1080 |
msgstr "Todas las actividades sospechosas"
|
1081 |
|
1082 |
+
#: ../wp-cerber.php:960 ../wp-cerber.php:966 ../wp-cerber.php:982 ../wp-cerber.
|
1083 |
+
#: php:989
|
1084 |
msgid "You are not allowed to register."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: ../common.php:530
|
1088 |
msgid "Spam comment denied"
|
1089 |
msgstr "Comentario spam denegado"
|
1090 |
|
1091 |
+
#: ../common.php:555
|
1092 |
msgid "Attempt to log in denied"
|
1093 |
msgstr "Intento de iniciar sesión denegado"
|
1094 |
|
1095 |
+
#: ../common.php:556
|
1096 |
msgid "Attempt to register denied"
|
1097 |
msgstr "Intento de registro denegado"
|
1098 |
|
1100 |
msgid "Malicious activities mitigated"
|
1101 |
msgstr "Actividades mitigadas"
|
1102 |
|
1103 |
+
#: ../dashboard.php:900
|
1104 |
msgid "Cerber antispam settings"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: ../dashboard.php:900 ../wp-cerber.php:3740 ../settings.php:161
|
1108 |
msgid "Antispam"
|
1109 |
msgstr ""
|
1110 |
|
1136 |
msgid "License"
|
1137 |
msgstr "Licencia"
|
1138 |
|
1139 |
+
#: ../cerber-tools.php:313
|
1140 |
msgid "Antispam and bot detection settings"
|
1141 |
msgstr "Antispam y ajustes de detección de bots"
|
1142 |
|
1143 |
+
#: ../wp-cerber.php:1225
|
1144 |
msgid "Sorry, human verification failed."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: ../common.php:600
|
1148 |
msgid "Bot activity is detected"
|
1149 |
msgstr ""
|
1150 |
|
1164 |
msgid "Move spam comments to trash after"
|
1165 |
msgstr "Mover comentarios spam a la papelera después de "
|
1166 |
|
1167 |
+
#: ../common.php:531
|
1168 |
msgid "Spam form submission denied"
|
1169 |
msgstr ""
|
1170 |
|
1201 |
msgid "WP Cerber Security & Antispam"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: ../dashboard.php:95 ../dashboard.php:633
|
1205 |
msgid "Country"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: ../dashboard.php:664
|
1209 |
msgid "All events"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: ../dashboard.php:897
|
1213 |
msgid "Cerber Security Rules"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: ../dashboard.php:897 ../dashboard.php:1985
|
1217 |
msgid "Security Rules"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: ../dashboard.php:974
|
1221 |
msgid "Failed login attempts"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: ../dashboard.php:975
|
1225 |
msgid "Registered"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: ../dashboard.php:1042
|
1229 |
msgid "You"
|
1230 |
msgstr ""
|
1231 |
|
1233 |
msgid "Spam form submissions denied"
|
1234 |
msgstr "Envíos de formularios spam denegados"
|
1235 |
|
1236 |
+
#: ../dashboard.php:1363 ../wp-cerber.php:3061 ../wp-cerber.php:3733
|
1237 |
msgid "Getting Started Guide"
|
1238 |
msgstr "Guía de Introducción"
|
1239 |
|
1240 |
+
#: ../dashboard.php:1990
|
1241 |
msgid "Countries"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: ../dashboard.php:2055
|
1245 |
msgid "Permitted for one country"
|
1246 |
msgid_plural "Permitted for %d countries"
|
1247 |
msgstr[0] ""
|
1248 |
msgstr[1] ""
|
1249 |
|
1250 |
+
#: ../dashboard.php:2066
|
1251 |
msgid "No rule"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: ../dashboard.php:2269
|
1255 |
msgid "Security rules have been updated"
|
1256 |
msgstr ""
|
1257 |
|
1260 |
msgid "https://wpcerber.com"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: ../common.php:532
|
1264 |
msgid "Form submission denied"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: ../common.php:533
|
1268 |
msgid "Comment denied"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: ../common.php:558
|
1272 |
msgid "Request to REST API denied"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: ../common.php:559
|
1276 |
msgid "XML-RPC request denied"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: ../common.php:563
|
1280 |
msgid "Bot detected"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: ../common.php:564
|
1284 |
msgid "Citadel mode is active"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: ../common.php:569
|
1288 |
msgid "Malicious activity detected"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: ../common.php:570
|
1292 |
msgid "Blocked by country rule"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: ../common.php:571
|
1296 |
msgid "Limit reached"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: ../common.php:572
|
1300 |
msgid "Multiple suspicious activities"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: ../common.php:601
|
1304 |
msgid "Multiple suspicious activities were detected"
|
1305 |
msgstr ""
|
1306 |
|
1340 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: ../dashboard.php:2122
|
1344 |
msgid "Start typing here to find a country"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: ../dashboard.php:2205
|
1348 |
msgid "Click on a country name to add it to the list of selected countries"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: ../dashboard.php:2224
|
1352 |
msgid "Submit forms"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: ../dashboard.php:2225
|
1356 |
msgid "Post comments"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: ../dashboard.php:2226
|
1360 |
msgid "Log in to the website"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: ../dashboard.php:2227
|
1364 |
msgid "Register on the website"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: ../dashboard.php:2228
|
1368 |
msgid "Use XML-RPC"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: ../dashboard.php:2229
|
1372 |
msgid "Use REST API"
|
1373 |
msgstr ""
|
1374 |
|
1380 |
msgid "Mark it as spam"
|
1381 |
msgstr "Marcar como spam"
|
1382 |
|
1383 |
+
#: ../dashboard.php:1292
|
1384 |
msgid "in the last 24 hours"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: ../dashboard.php:1641
|
1388 |
msgid "Main settings"
|
1389 |
msgstr "Ajustes"
|
1390 |
|
1430 |
msgid "at"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: ../wp-cerber.php:3077
|
1434 |
msgid "Weekly report"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: ../wp-cerber.php:3080
|
1438 |
msgid "To change reporting settings visit"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: ../wp-cerber.php:3106
|
1442 |
msgid "Your login page:"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: ../wp-cerber.php:3110
|
1446 |
msgid "Your license is valid until"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: ../wp-cerber.php:3221
|
1450 |
msgid "Activity details"
|
1451 |
msgstr ""
|
1452 |
|
1454 |
msgid "Click to send now"
|
1455 |
msgstr "Pulsa para enviar ahora"
|
1456 |
|
1457 |
+
#: ../wp-cerber.php:625
|
1458 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: ../dashboard.php:377
|
1462 |
msgid "Email has been sent to"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: ../dashboard.php:380
|
1466 |
msgid "Unable to send email to"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: ../dashboard.php:2058
|
1470 |
msgid "Not permitted for one country"
|
1471 |
msgid_plural "Not permitted for %d countries"
|
1472 |
msgstr[0] ""
|
1473 |
msgstr[1] ""
|
1474 |
|
1475 |
+
#: ../dashboard.php:2209
|
1476 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1477 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: ../dashboard.php:2212
|
1481 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1482 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
1483 |
msgstr ""
|
1487 |
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>."
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: ../wp-cerber.php:3209
|
1491 |
msgid "Weekly Report"
|
1492 |
msgstr ""
|
1493 |
|
1511 |
msgid "Enable reporting"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: ../wp-cerber.php:3133
|
1515 |
msgid "Your last sign-in was %s from %s"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: ../wp-cerber.php:3235
|
1519 |
msgid "Attempts to log in with non-existent username"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: ../dashboard.php:167
|
1523 |
+
msgid "IP address, IPv4 address range or subnet"
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: ../dashboard.php:169
|
1527 |
+
msgid "Optional comment for this entry"
|
1528 |
+
msgstr ""
|
1529 |
+
|
1530 |
+
#: ../dashboard.php:210
|
1531 |
+
msgid "You cannot add your IP address or network"
|
1532 |
+
msgstr ""
|
1533 |
+
|
1534 |
+
#: ../cerber-news.php:135
|
1535 |
+
msgid "Cool!"
|
1536 |
+
msgstr ""
|
1537 |
+
|
1538 |
+
#: ../settings.php:123
|
1539 |
+
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1540 |
+
msgstr ""
|
1541 |
+
|
languages/wp-cerber-it_IT.mo
CHANGED
Binary file
|
languages/wp-cerber-it_IT.po
CHANGED
@@ -8,125 +8,125 @@ msgstr ""
|
|
8 |
"Language: it\n"
|
9 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
10 |
|
11 |
-
#: ../settings.php:
|
12 |
msgid "Limit login attempts"
|
13 |
msgstr "Limiti i tentativi di accesso"
|
14 |
|
15 |
-
#: ../settings.php:
|
16 |
msgid "Attempts"
|
17 |
msgstr "Tentativi"
|
18 |
|
19 |
-
#: ../settings.php:
|
20 |
msgid "Lockout duration"
|
21 |
msgstr "Durata blocco"
|
22 |
|
23 |
-
#: ../settings.php:
|
24 |
msgid "minutes"
|
25 |
msgstr "Minuti"
|
26 |
|
27 |
-
#: ../settings.php:
|
28 |
msgid "Aggressive lockout"
|
29 |
msgstr "Blocco aggressivo"
|
30 |
|
31 |
-
#: ../settings.php:
|
32 |
msgid "Site connection"
|
33 |
msgstr "Collegamenti del sito"
|
34 |
|
35 |
-
#: ../settings.php:
|
36 |
msgid "Proactive security rules"
|
37 |
msgstr "Regole di sicurezza proattive"
|
38 |
|
39 |
-
#: ../settings.php:
|
40 |
msgid "Block subnet"
|
41 |
msgstr "Blocca subnet"
|
42 |
|
43 |
-
#: ../settings.php:
|
44 |
msgid "Request wp-login.php"
|
45 |
msgstr "Richiedi wp-login.php"
|
46 |
|
47 |
-
#: ../settings.php:
|
48 |
msgid "Immediately block IP after any request to wp-login.php"
|
49 |
msgstr "Blocca Immediatamente l'IP dopo qualsiasi chiamata alla pagina wp-login.php"
|
50 |
|
51 |
-
#: ../settings.php:
|
52 |
msgid "Redirect dashboard requests"
|
53 |
msgstr "Richiamare il pannello Redirect"
|
54 |
|
55 |
-
#: ../settings.php:
|
56 |
msgid "Custom login page"
|
57 |
msgstr "Pagina di login personalizzata"
|
58 |
|
59 |
-
#: ../settings.php:
|
60 |
msgid "Custom login URL"
|
61 |
msgstr "URL di accesso personalizzato"
|
62 |
|
63 |
-
#: ../settings.php:
|
64 |
msgid "must not overlap with the existing pages or posts slug"
|
65 |
msgstr "Non deve sovrapporsi con pagine esistenti o con post esistenti"
|
66 |
|
67 |
-
#: ../settings.php:
|
68 |
msgid "Disable wp-login.php"
|
69 |
msgstr "Disattiva wp-login.php"
|
70 |
|
71 |
-
#: ../settings.php:
|
72 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
73 |
msgstr "Blocca l'accesso diretto a wp-login.php e restituisce l'errore HTTP 404 non trovato"
|
74 |
|
75 |
-
#: ../dashboard.php:
|
76 |
msgid "Citadel mode"
|
77 |
msgstr "Modalità Citadel"
|
78 |
|
79 |
-
#: ../settings.php:
|
80 |
msgid "Threshold"
|
81 |
msgstr "Soglia"
|
82 |
|
83 |
-
#: ../settings.php:
|
84 |
msgid "Duration"
|
85 |
msgstr "Durata"
|
86 |
|
87 |
-
#: ../wp-cerber.php:
|
88 |
msgid "Notifications"
|
89 |
msgstr "Notifiche"
|
90 |
|
91 |
-
#: ../settings.php:
|
92 |
msgid "Send notification to admin email"
|
93 |
msgstr "Invia notifica all'email dell'amministratore"
|
94 |
|
95 |
-
#: ../dashboard.php:
|
96 |
-
#:
|
97 |
msgid "Access Lists"
|
98 |
msgstr "Liste di accesso"
|
99 |
|
100 |
-
#: ../dashboard.php:
|
101 |
-
#: php:
|
102 |
msgid "Activity"
|
103 |
msgstr "Attività"
|
104 |
|
105 |
-
#: ../dashboard.php:
|
106 |
msgid "Lockouts"
|
107 |
msgstr "Bloccati"
|
108 |
|
109 |
-
#: ../settings.php:
|
110 |
msgid "%s allowed retries in %s minutes"
|
111 |
msgstr "%s tentativi permessi in %s minuti"
|
112 |
|
113 |
-
#: ../settings.php:
|
114 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
115 |
msgstr "Abilita dopo %s tentativi di login negli ultimi %s minuti"
|
116 |
|
117 |
-
#: ../dashboard.php:93 ../dashboard.php:
|
118 |
msgid "IP"
|
119 |
msgstr "IP"
|
120 |
|
121 |
-
#: ../dashboard.php:
|
122 |
msgid "Date"
|
123 |
msgstr "Data"
|
124 |
|
125 |
-
#: ../dashboard.php:
|
126 |
msgid "Local User"
|
127 |
msgstr "Utente locale"
|
128 |
|
129 |
-
#: ../dashboard.php:
|
130 |
msgid "Username used"
|
131 |
msgstr "Nome utente utilizzato"
|
132 |
|
@@ -134,73 +134,73 @@ msgstr "Nome utente utilizzato"
|
|
134 |
msgid "Showing last %d records from %d"
|
135 |
msgstr "Mostro Ultimi %d records da %d"
|
136 |
|
137 |
-
#: ../common.php:
|
138 |
msgid "Logged in"
|
139 |
msgstr "Loggato"
|
140 |
|
141 |
-
#: ../common.php:
|
142 |
msgid "Logged out"
|
143 |
msgstr "Disconnesso"
|
144 |
|
145 |
-
#: ../common.php:
|
146 |
msgid "Login failed"
|
147 |
msgstr "Accesso fallito"
|
148 |
|
149 |
-
#: ../common.php:
|
150 |
msgid "IP blocked"
|
151 |
msgstr "IP Bloccato"
|
152 |
|
153 |
-
#: ../common.php:
|
154 |
msgid "Subnet blocked"
|
155 |
msgstr "Subnet Bloccata"
|
156 |
|
157 |
-
#: ../common.php:
|
158 |
msgid "Citadel activated!"
|
159 |
msgstr "Citadel attivata!"
|
160 |
|
161 |
-
#: ../dashboard.php:
|
162 |
msgid "Locked out"
|
163 |
msgstr "Bloccato"
|
164 |
|
165 |
-
#: ../common.php:
|
166 |
msgid "IP blacklisted"
|
167 |
msgstr "IP blacklisted"
|
168 |
|
169 |
-
#: ../common.php:
|
170 |
msgid "Password changed"
|
171 |
msgstr "Password cambiata"
|
172 |
|
173 |
-
#: ../dashboard.php:86 ../dashboard.php:
|
174 |
msgid "Remove"
|
175 |
msgstr "Rimuovi"
|
176 |
|
177 |
-
#: ../dashboard.php:
|
178 |
msgid "Lockout for %s was removed"
|
179 |
msgstr "Il blocco per %s è stato rimosso"
|
180 |
|
181 |
-
#: ../dashboard.php:131 ../dashboard.php:
|
182 |
-
#: php:
|
183 |
msgid "White IP Access List"
|
184 |
msgstr "White List degli indirizzi IP"
|
185 |
|
186 |
-
#: ../dashboard.php:133 ../dashboard.php:
|
187 |
-
#: php:
|
188 |
msgid "Black IP Access List"
|
189 |
msgstr "Black List degli indirizzi IP"
|
190 |
|
191 |
-
#: ../dashboard.php:
|
192 |
msgid "List is empty"
|
193 |
msgstr "Lista è vuota"
|
194 |
|
195 |
-
#: ../dashboard.php:
|
196 |
msgid "Address %s was added to White IP Access List"
|
197 |
msgstr "L' indirizzo %s è stato aggiunto agli indirizzi IP della tua White List"
|
198 |
|
199 |
-
#: ../dashboard.php:
|
200 |
msgid "Address %s was added to Black IP Access List"
|
201 |
msgstr "L'indirizzo %s è stato aggiunto agli indirizzi IP della Black List"
|
202 |
|
203 |
-
#: ../wp-cerber.php:
|
204 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
205 |
msgstr "La modalità Citadel viene attivata dopo %d tentativi di accesso non riusciti in %d minuti."
|
206 |
|
@@ -212,73 +212,73 @@ msgstr "Vedi attività"
|
|
212 |
msgid "Settings"
|
213 |
msgstr "Impostazioni"
|
214 |
|
215 |
-
#: ../dashboard.php:
|
216 |
msgid "Last login"
|
217 |
msgstr "Ultimo login"
|
218 |
|
219 |
-
#: ../dashboard.php:
|
220 |
msgid "Never"
|
221 |
msgstr "Mai"
|
222 |
|
223 |
-
#: ../dashboard.php:
|
224 |
msgid "Are you sure?"
|
225 |
msgstr "Sei sicuro?"
|
226 |
|
227 |
-
#: ../dashboard.php:
|
228 |
msgid "My site is behind a reverse proxy"
|
229 |
msgstr "l mio sito è dietro un proxy inverso"
|
230 |
|
231 |
-
#: ../settings.php:
|
232 |
msgid "Non-existent users"
|
233 |
msgstr "Utenti inesistenti"
|
234 |
|
235 |
-
#: ../settings.php:
|
236 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
237 |
msgstr "Blocca Immediatamente l'IP quando si tenta di accedere con un nome utente inesistente"
|
238 |
|
239 |
-
#: ../settings.php:
|
240 |
msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
|
241 |
msgstr "Disabilita il reindirizzamento automatico alla pagina di login quando / wp-admin / viene richiamata da una richiesta non autorizzata"
|
242 |
|
243 |
-
#: ../settings.php:
|
244 |
msgid "Make your protection smarter!"
|
245 |
msgstr "Fai la tua protezione più intelligente!"
|
246 |
|
247 |
-
#: ../settings.php:
|
248 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
249 |
msgstr "Per favore abilita Permalinks per utilizzare questa funzionalità. Configura le Impostazioni del Permalink diversamente dal Predefinito."
|
250 |
|
251 |
-
#: ../settings.php:
|
252 |
msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
|
253 |
msgstr "Fare attenzione quando si abilita queste opzione. Se dimentichi l'URL di login personalizzato, non sarai più in grado di accedere."
|
254 |
|
255 |
-
#: ../wp-cerber.php:
|
256 |
msgid "Main Settings"
|
257 |
msgstr "Impostazioni Principali"
|
258 |
|
259 |
-
#: ../settings.php:
|
260 |
msgid "Help"
|
261 |
msgstr "Aiuto"
|
262 |
|
263 |
-
#: ../settings.php:
|
264 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
265 |
msgstr "Aumenta la durata del blocco a %s ore dopo %s blocchi nelle ultime %s ore"
|
266 |
|
267 |
-
#: ../wp-cerber.php:
|
268 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
269 |
msgstr "Non è consentito l'accesso. Chiedere assistenza all'amministratore."
|
270 |
|
271 |
-
#: ../wp-cerber.php:
|
272 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
273 |
msgstr "Hai raggiunto il limite dei tentativi di accesso. Riprova in %d minuti."
|
274 |
|
275 |
-
#: ../wp-cerber.php:
|
276 |
msgid "You have only one attempt remaining."
|
277 |
msgid_plural "You have %d attempts remaining."
|
278 |
msgstr[0] "Hai un solo tentativo rimanente."
|
279 |
msgstr[1] "Hai %d tentativi rimanenti."
|
280 |
|
281 |
-
#: ../dashboard.php:
|
282 |
msgid "No activity has been logged."
|
283 |
msgstr "Nessuna attività è stata registrata."
|
284 |
|
@@ -298,31 +298,23 @@ msgstr "Questi IP non saranno mai bloccati"
|
|
298 |
msgid "Your IP"
|
299 |
msgstr "Il tuo IP"
|
300 |
|
301 |
-
#: ../
|
302 |
-
msgid "You can't add your IP address"
|
303 |
-
msgstr "Non puoi aggiungere il tuo indirizzo IP"
|
304 |
-
|
305 |
-
#: ../wp-cerber.php:2960
|
306 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
307 |
msgstr "L'ultimo tentativo non riuscito è stato a %s dall'IP %s con accesso utente: %s."
|
308 |
|
309 |
-
#: ../wp-cerber.php:
|
310 |
-
msgid "Change notification settings"
|
311 |
-
msgstr "Modificare le impostazioni di notifica"
|
312 |
-
|
313 |
-
#: ../wp-cerber.php:3433
|
314 |
msgid "Can't activate WP Cerber due to a database error."
|
315 |
msgstr "Non è possibile attivare WP Cerber a causa di un errore nel database."
|
316 |
|
317 |
-
#: ../settings.php:
|
318 |
msgid "Notify admin if the number of active lockouts above"
|
319 |
msgstr "Notifica all'amministratore se il numero di blocchi attivi supera"
|
320 |
|
321 |
-
#: ../settings.php:
|
322 |
msgid "days"
|
323 |
msgstr "giorni"
|
324 |
|
325 |
-
#: ../dashboard.php:
|
326 |
msgid "Cerber Quick View"
|
327 |
msgstr "Cerber Quick View"
|
328 |
|
@@ -334,51 +326,47 @@ msgstr "Aiuto"
|
|
334 |
msgid "To view activity, click on the IP"
|
335 |
msgstr "Per visualizzare l'attività clicca sull'IP"
|
336 |
|
337 |
-
#: ../dashboard.php:
|
338 |
msgid "Check for activity"
|
339 |
msgstr "Controllo Attività"
|
340 |
|
341 |
-
#: ../settings.php:
|
342 |
msgid "Always block entire subnet Class C of intruders IP"
|
343 |
msgstr "Blocca sempre l'intera subnet Classe C degli indirizzi IP degli intrusi"
|
344 |
|
345 |
-
#: ../settings.php:
|
346 |
msgid "Click to send test"
|
347 |
msgstr "Clicca per inviare il test"
|
348 |
|
349 |
-
#: ../settings.php:
|
350 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
351 |
msgstr "Attenzione! Hai cambiato l'URL di accesso! Il nuovo URL di accesso è"
|
352 |
|
353 |
-
#: ../dashboard.php:
|
354 |
msgid "Comments"
|
355 |
msgstr "Commenti"
|
356 |
|
357 |
-
#: ../
|
358 |
-
msgid "Message has been sent to "
|
359 |
-
msgstr "Il messaggio è stato spedito a"
|
360 |
-
|
361 |
-
#: ../dashboard.php:1541
|
362 |
msgid "Update to version %s of WP Cerber"
|
363 |
msgstr "Aggiornamento alla versione %s di WP Cerber"
|
364 |
|
365 |
-
#: ../wp-cerber.php:
|
366 |
msgid "View activity in dashboard"
|
367 |
msgstr "Vedi attività nel pannello"
|
368 |
|
369 |
-
#: ../wp-cerber.php:
|
370 |
msgid "Number of active lockouts"
|
371 |
msgstr "Numero di blocchi attivi"
|
372 |
|
373 |
-
#: ../wp-cerber.php:
|
374 |
msgid "View lockouts in dashboard"
|
375 |
msgstr "Vedi blocchi nel pannello"
|
376 |
|
377 |
-
#: ../wp-cerber.php:
|
378 |
msgid "This message was sent by"
|
379 |
msgstr "Questo messaggio è stato inviato da"
|
380 |
|
381 |
-
#: ../dashboard.php:
|
382 |
msgid "Tools"
|
383 |
msgstr "Strumenti"
|
384 |
|
@@ -422,130 +410,130 @@ msgstr "Cosa vuoi importare?"
|
|
422 |
msgid "Upload file"
|
423 |
msgstr "Carica file"
|
424 |
|
425 |
-
#: ../cerber-tools.php:
|
426 |
msgid "No file was uploaded or file is corrupted"
|
427 |
msgstr "Nessun file è stato caricato o il file è danneggiato"
|
428 |
|
429 |
-
#: ../cerber-tools.php:
|
430 |
msgid "Error while updating"
|
431 |
msgstr "Errore durante l'aggiornamento"
|
432 |
|
433 |
-
#: ../cerber-tools.php:
|
434 |
msgid "Settings has imported successfully from"
|
435 |
msgstr "Le impostazioni sono state importate con successo da"
|
436 |
|
437 |
-
#: ../cerber-tools.php:
|
438 |
msgid "Error while parsing file"
|
439 |
msgstr "Errore nell'interpretazione del file "
|
440 |
|
441 |
-
#: ../dashboard.php:94 ../dashboard.php:
|
442 |
msgid "Hostname"
|
443 |
msgstr "Nome Host"
|
444 |
|
445 |
-
#: ../dashboard.php:
|
446 |
msgid "unknown"
|
447 |
msgstr "sconosciuto"
|
448 |
|
449 |
-
#: ../settings.php:
|
450 |
msgid "Keep records for"
|
451 |
msgstr "Mantenere i record per"
|
452 |
|
453 |
-
#: ../dashboard.php:
|
454 |
msgid "active"
|
455 |
msgstr "Attiva"
|
456 |
|
457 |
-
#: ../dashboard.php:
|
458 |
msgid "deactivate"
|
459 |
msgstr "Disattiva"
|
460 |
|
461 |
-
#: ../dashboard.php:
|
462 |
msgid "not active"
|
463 |
msgstr "Non Attivo"
|
464 |
|
465 |
-
#: ../dashboard.php:
|
466 |
msgid "disabled"
|
467 |
msgstr "Disabilitato"
|
468 |
|
469 |
-
#: ../dashboard.php:
|
470 |
msgid "failed attempts"
|
471 |
msgstr "Tentativi falliti"
|
472 |
|
473 |
-
#: ../dashboard.php:
|
474 |
msgid "in 24 hours"
|
475 |
msgstr "in 24 ore"
|
476 |
|
477 |
-
#: ../dashboard.php:
|
478 |
msgid "view all"
|
479 |
msgstr "guarda tutto"
|
480 |
|
481 |
-
#: ../dashboard.php:
|
482 |
msgid "lockouts"
|
483 |
msgstr "Bloccati"
|
484 |
|
485 |
-
#: ../dashboard.php:
|
486 |
msgid "Lockouts at the moment"
|
487 |
msgstr "Bloccati al momento"
|
488 |
|
489 |
-
#: ../dashboard.php:
|
490 |
msgid "Last lockout"
|
491 |
msgstr "Ultimo bloccato"
|
492 |
|
493 |
-
#: ../dashboard.php:
|
494 |
msgid "entry"
|
495 |
msgid_plural "entries"
|
496 |
msgstr[0] "accesso"
|
497 |
msgstr[1] "accessi"
|
498 |
|
499 |
-
#: ../dashboard.php:
|
500 |
msgid "Confused about some settings?"
|
501 |
msgstr "Confuso da alcune impostazioni?"
|
502 |
|
503 |
-
#: ../dashboard.php:
|
504 |
msgid "You can easily load default recommended settings using button below"
|
505 |
msgstr "È possibile caricare facilmente le impostazioni predefinite consigliate utilizzando il pulsante sottostante"
|
506 |
|
507 |
-
#: ../dashboard.php:
|
508 |
msgid "Load default settings"
|
509 |
msgstr "Caricare le impostazioni di default"
|
510 |
|
511 |
-
#: ../dashboard.php:
|
512 |
msgid "doesn't affect Custom login URL and Access Lists"
|
513 |
msgstr "Non influenza l'URL di accesso personalizzato e le liste di accesso"
|
514 |
|
515 |
-
#: ../
|
516 |
msgid "New version is available"
|
517 |
msgstr "Nuova versione disponibile"
|
518 |
|
519 |
#. Name of the plugin
|
520 |
-
#: ../dashboard.php:
|
521 |
msgid "WP Cerber"
|
522 |
msgstr "WP Cerber"
|
523 |
|
524 |
-
#: ../wp-cerber.php:
|
525 |
msgid "WP Cerber notify"
|
526 |
msgstr "Notifica di WP Cerber"
|
527 |
|
528 |
-
#: ../wp-cerber.php:
|
529 |
msgid "Citadel mode is activated"
|
530 |
msgstr "Citadel mode attivata"
|
531 |
|
532 |
-
#: ../wp-cerber.php:
|
533 |
msgid "New Custom login URL"
|
534 |
msgstr "Nuovo URL di accesso personalizzato"
|
535 |
|
536 |
-
#: ../wp-cerber.php:
|
537 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
538 |
msgstr "Il Cerber WP richiede PHP %s o superiore. Stai utilizzando"
|
539 |
|
540 |
-
#: ../wp-cerber.php:
|
541 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
542 |
msgstr "Il Cerber WP richiede WordPress %s o superiore. Stai utilizzando"
|
543 |
|
544 |
-
#: ../settings.php:
|
545 |
msgid "Use file"
|
546 |
msgstr "Usa file"
|
547 |
|
548 |
-
#: ../settings.php:
|
549 |
msgid "Write failed login attempts to the file"
|
550 |
msgstr "Scrivi i tentativi di accesso non riusciti nel file"
|
551 |
|
@@ -553,95 +541,95 @@ msgstr "Scrivi i tentativi di accesso non riusciti nel file"
|
|
553 |
msgid "Deactivate"
|
554 |
msgstr "Disattivato"
|
555 |
|
556 |
-
#: ../dashboard.php:97 ../wp-cerber.php:
|
557 |
msgid "Reason"
|
558 |
msgstr "Ragione"
|
559 |
|
560 |
-
#: ../dashboard.php:
|
561 |
msgid "Add IP to the list"
|
562 |
msgstr "Aggiungi IP alla lista"
|
563 |
|
564 |
-
#: ../dashboard.php:
|
565 |
msgid "Add IP to the Black List"
|
566 |
msgstr "Aggiungi IP alla Black List"
|
567 |
|
568 |
-
#: ../common.php:
|
569 |
msgid "Attempt to access"
|
570 |
msgstr "Tentativi di accesso"
|
571 |
|
572 |
-
#: ../common.php:
|
573 |
msgid "Limit on login attempts is reached"
|
574 |
msgstr "È stato raggiunto il limite dei tentativi di accesso"
|
575 |
|
576 |
-
#: ../common.php:
|
577 |
msgid "Attempt to log in with non-existent username"
|
578 |
msgstr "Tentativo di accesso con un nome utente inesistente"
|
579 |
|
580 |
-
#: ../wp-cerber.php:
|
581 |
msgid "Last lockout was added: %s for IP %s"
|
582 |
msgstr "L'ultimo blocco è stato aggiunto: %s per IP %s"
|
583 |
|
584 |
-
#: ../wp-cerber.php:
|
585 |
msgid "Hardening"
|
586 |
msgstr "Rendi sicuro"
|
587 |
|
588 |
-
#: ../dashboard.php:
|
589 |
msgid "Abuse email:"
|
590 |
msgstr "Email di abuso:"
|
591 |
|
592 |
-
#: ../settings.php:
|
593 |
msgid "Email Address"
|
594 |
msgstr "Indirizzo email"
|
595 |
|
596 |
-
#: ../settings.php:
|
597 |
msgid "if empty, the admin email %s will be used"
|
598 |
msgstr "Se vuota, verrà utilizzata l'email amministratore %s"
|
599 |
|
600 |
-
#: ../settings.php:
|
601 |
msgid "Drill down IP"
|
602 |
msgstr "IP Bucati"
|
603 |
|
604 |
-
#: ../settings.php:
|
605 |
msgid "Retrieve extra WHOIS information for IP"
|
606 |
msgstr "Recuperare informazioni aggiuntive WHOIS per l'indirizzo IP"
|
607 |
|
608 |
-
#: ../settings.php:
|
609 |
msgid "Hardening WordPress"
|
610 |
msgstr "Rendi più sicuro WordPress"
|
611 |
|
612 |
-
#: ../settings.php:
|
613 |
msgid "Stop user enumeration"
|
614 |
msgstr "Ferma l'enumerazione dell'utente"
|
615 |
|
616 |
-
#: ../settings.php:
|
617 |
msgid "Disable XML-RPC"
|
618 |
msgstr "Disabilita XML-RPC"
|
619 |
|
620 |
-
#: ../settings.php:
|
621 |
msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
|
622 |
msgstr "Bloccare l'accesso al server XML-RPC (inclusi Pingback e Trackback)"
|
623 |
|
624 |
-
#: ../settings.php:
|
625 |
msgid "Disable feeds"
|
626 |
msgstr "Disabilita feeds"
|
627 |
|
628 |
-
#: ../settings.php:
|
629 |
msgid "Block access to the RSS, Atom and RDF feeds"
|
630 |
msgstr "Blocca accesso agli RSS, Atom e RDF feeds"
|
631 |
|
632 |
-
#: ../settings.php:
|
633 |
msgid "Disable REST API"
|
634 |
msgstr "Disabilita REST API"
|
635 |
|
636 |
-
#: ../settings.php:
|
637 |
msgid "These settings do not affect hosts from the "
|
638 |
msgstr "Queste impostazioni non influenzano gli host del"
|
639 |
|
640 |
-
#: ../settings.php:
|
641 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
642 |
msgstr "<strong>ERRORE</strong>: inserisci un indirizzo email valido."
|
643 |
|
644 |
-
#: ../wp-cerber.php:
|
645 |
msgid "WP Cerber is now active and has started protecting your site"
|
646 |
msgstr "WP Cerber è attivo e ha iniziato a proteggere il tuo sito"
|
647 |
|
@@ -653,23 +641,19 @@ msgstr "Azione"
|
|
653 |
msgid "Nobody can log in or register from these IPs"
|
654 |
msgstr "Nessuno con questi indirizzi IP potrà accedere o registrarsi"
|
655 |
|
656 |
-
#: ../dashboard.php:
|
657 |
msgid "Incorrect IP address or IP range"
|
658 |
msgstr "Indirizzo IP o Range IP non corretto "
|
659 |
|
660 |
-
#: ../dashboard.php:
|
661 |
-
msgid "Unable to send notification email"
|
662 |
-
msgstr "Non è stato possibile inviare l'email di notifica"
|
663 |
-
|
664 |
-
#: ../dashboard.php:377 ../dashboard.php:1469
|
665 |
msgid "Settings saved"
|
666 |
msgstr "Impostazioni salvate"
|
667 |
|
668 |
-
#: ../dashboard.php:
|
669 |
msgid "Network:"
|
670 |
msgstr "Rete"
|
671 |
|
672 |
-
#: ../dashboard.php:
|
673 |
msgid "Add network to the Black List"
|
674 |
msgstr "Aggiungi rete alla Black List"
|
675 |
|
@@ -677,7 +661,7 @@ msgstr "Aggiungi rete alla Black List"
|
|
677 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
678 |
msgstr "Attenzione! La modalità Citadel è attiva. Nessuno è in grado di effettuare il login."
|
679 |
|
680 |
-
#: ../whois.php:221 ../whois.php:252 ../common.php:
|
681 |
msgid "Unknown"
|
682 |
msgstr "Sconosciuto"
|
683 |
|
@@ -686,457 +670,457 @@ msgstr "Sconosciuto"
|
|
686 |
msgid "Gregory"
|
687 |
msgstr "Gregory"
|
688 |
|
689 |
-
#: ../wp-cerber.php:
|
690 |
-
#: php:
|
691 |
-
#:
|
692 |
-
#:
|
693 |
-
#:
|
694 |
msgid "ERROR:"
|
695 |
msgstr "ERRORE:"
|
696 |
|
697 |
-
#: ../wp-cerber.php:
|
698 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
699 |
msgstr "Verifica fallita. Fai clic sulla casella quadrata nel blocco reCAPTCHA di seguito."
|
700 |
|
701 |
-
#: ../wp-cerber.php:
|
702 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
703 |
msgstr "<strong>ERRORE</strong>: La password inserita per lo username %s non è corretta."
|
704 |
|
705 |
-
#: ../wp-cerber.php:
|
706 |
msgid "Username is not allowed. Please choose another one."
|
707 |
msgstr "Non è consentito utilizzare questo nome utente. Sceglierne un altro."
|
708 |
|
709 |
-
#: ../wp-cerber.php:
|
710 |
msgid "unspecified"
|
711 |
msgstr "non specificato"
|
712 |
|
713 |
-
#: ../wp-cerber.php:
|
714 |
msgid "Number of lockouts is increasing"
|
715 |
msgstr "Numero di blocchi in aumento"
|
716 |
|
717 |
-
#: ../wp-cerber.php:
|
718 |
msgid "View activity for this IP"
|
719 |
msgstr "Vedi attività per questo IP"
|
720 |
|
721 |
-
#: ../wp-cerber.php:
|
722 |
msgid "A new version of WP Cerber is available to install"
|
723 |
msgstr "È disponibile una nuova versione di WP Cerber"
|
724 |
|
725 |
-
#: ../wp-cerber.php:
|
726 |
msgid "Hi!"
|
727 |
msgstr "Ciao!"
|
728 |
|
729 |
-
#: ../wp-cerber.php:
|
730 |
msgid "Website"
|
731 |
msgstr "Sito web"
|
732 |
|
733 |
-
#: ../wp-cerber.php:
|
734 |
msgid "The WP Cerber security plugin has been deactivated"
|
735 |
msgstr "Il plugin di sicurezza WP Cerber è stato disattivato"
|
736 |
|
737 |
-
#: ../wp-cerber.php:
|
738 |
msgid "Not logged in"
|
739 |
msgstr "Non loggato"
|
740 |
|
741 |
-
#: ../wp-cerber.php:
|
742 |
msgid "By user"
|
743 |
msgstr "Dall'Utente "
|
744 |
|
745 |
-
#: ../wp-cerber.php:
|
746 |
msgid "From IP address"
|
747 |
msgstr "Dall'indirizzo IP"
|
748 |
|
749 |
-
#: ../wp-cerber.php:
|
750 |
msgid "From country"
|
751 |
msgstr "Dalla Nazione"
|
752 |
|
753 |
-
#: ../wp-cerber.php:
|
754 |
msgid "The WP Cerber security plugin is now active"
|
755 |
msgstr "Il plugin di protezione WP Cerber è attivo"
|
756 |
|
757 |
-
#: ../wp-cerber.php:
|
758 |
msgid "Your IP address is added to the"
|
759 |
msgstr "Il tuo indirizzo IP è stato aggiunto al"
|
760 |
|
761 |
-
#: ../wp-cerber.php:
|
762 |
msgid "Import settings"
|
763 |
msgstr "Importa impostazioni"
|
764 |
|
765 |
-
#: ../settings.php:
|
766 |
msgid "Notification limit"
|
767 |
msgstr "Limiti di notifica"
|
768 |
|
769 |
-
#: ../settings.php:
|
770 |
msgid "notification letters allowed per hour (0 means unlimited)"
|
771 |
msgstr "email di notifiche consentite per ora (0 significa illimitato)"
|
772 |
|
773 |
-
#: ../settings.php:
|
774 |
msgid "User related settings"
|
775 |
msgstr "Impostazioni correlate agli utenti"
|
776 |
|
777 |
-
#: ../settings.php:
|
778 |
msgid "Prohibited usernames"
|
779 |
msgstr "Nomi utente proibiti"
|
780 |
|
781 |
-
#: ../settings.php:
|
782 |
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."
|
783 |
msgstr "I nomi utente di questo elenco non possono accedere o registrarsi. Qualsiasi indirizzo IP, che ha cercato di utilizzare uno di questi nomi utente, sarà immediatamente bloccato. Usa la virgola per separare i nominativi."
|
784 |
|
785 |
-
#: ../settings.php:
|
786 |
msgid "User session expire"
|
787 |
msgstr "Sessione utente scade"
|
788 |
|
789 |
-
#: ../settings.php:
|
790 |
msgid "in minutes (leave empty to use default WP value)"
|
791 |
msgstr "In minuti (lasciare vuoto per utilizzare il valore predefinito WP)"
|
792 |
|
793 |
-
#: ../settings.php:
|
794 |
msgid "reCAPTCHA settings"
|
795 |
msgstr "Impostazioni reCAPTCHA"
|
796 |
|
797 |
-
#: ../settings.php:
|
798 |
msgid "Site key"
|
799 |
msgstr "Chiave del sito"
|
800 |
|
801 |
-
#: ../settings.php:
|
802 |
msgid "Secret key"
|
803 |
msgstr "Chiave segreta"
|
804 |
|
805 |
-
#: ../settings.php:
|
806 |
msgid "Enable reCAPTCHA for WordPress registration form"
|
807 |
msgstr "Abilita reCAPTCHA per il modulo di registrazione di WordPress"
|
808 |
|
809 |
-
#: ../settings.php:
|
810 |
msgid "Lost password form"
|
811 |
msgstr "Modulo per il recupero della password dimenticata"
|
812 |
|
813 |
-
#: ../settings.php:
|
814 |
msgid "Login form"
|
815 |
msgstr "Modulo di accesso"
|
816 |
|
817 |
-
#: ../settings.php:
|
818 |
msgid "Enable reCAPTCHA for WordPress login form"
|
819 |
msgstr "Attiva reCAPTCHA per il modulo di accesso di WordPress"
|
820 |
|
821 |
-
#: ../settings.php:
|
822 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
823 |
msgstr "Prima di iniziare a utilizzare reCAPTCHA, è necessario ottenere la Chiave Sito e la Chiave Segreta sul sito web di Google"
|
824 |
|
825 |
-
#: ../cerber-lab.php:
|
826 |
msgid "Know more"
|
827 |
msgstr "Saperne di più"
|
828 |
|
829 |
-
#: ../dashboard.php:
|
830 |
msgid "WP Cerber Security"
|
831 |
msgstr "WP Cerber Security"
|
832 |
|
833 |
-
#: ../settings.php:
|
834 |
msgid "Users"
|
835 |
msgstr "Utenti"
|
836 |
|
837 |
-
#: ../common.php:
|
838 |
msgid "User created"
|
839 |
msgstr "Utente creato"
|
840 |
|
841 |
-
#: ../dashboard.php:
|
842 |
msgid "User registered"
|
843 |
msgstr "Utente registrato"
|
844 |
|
845 |
-
#: ../common.php:
|
846 |
msgid "reCAPTCHA verification failed"
|
847 |
msgstr "Verifica reCAPTCHA fallita"
|
848 |
|
849 |
-
#: ../common.php:
|
850 |
msgid "reCAPTCHA settings are incorrect"
|
851 |
msgstr "le impostazioni reCAPTCHA sono non correte"
|
852 |
|
853 |
-
#: ../common.php:
|
854 |
msgid "Attempt to access prohibited URL"
|
855 |
msgstr "Tentativo di accesso ad URL proibita"
|
856 |
|
857 |
-
#: ../common.php:
|
858 |
msgid "Attempt to log in with prohibited username"
|
859 |
msgstr "Tentativo di accesso con username proibito"
|
860 |
|
861 |
-
#: ../settings.php:
|
862 |
msgid "Cerber Lab connection"
|
863 |
msgstr "Connessione al Cerber Lab"
|
864 |
|
865 |
-
#: ../settings.php:
|
866 |
msgid "Send malicious IP addresses to the Cerber Lab"
|
867 |
msgstr "Invia indirizzi IP dannosi al Cerberus Lab"
|
868 |
|
869 |
-
#: ../settings.php:
|
870 |
msgid "Cerber Lab protocol"
|
871 |
msgstr "Protocollo Cerber Lab"
|
872 |
|
873 |
-
#: ../settings.php:
|
874 |
msgid "Registration form"
|
875 |
msgstr "Form di registrazione"
|
876 |
|
877 |
-
#: ../settings.php:
|
878 |
msgid "Enable reCAPTCHA for WooCommerce registration form"
|
879 |
msgstr "Attiva reCAPTCHA per il modulo di registrazione WooCommerce"
|
880 |
|
881 |
-
#: ../settings.php:
|
882 |
msgid "Enable reCAPTCHA for WordPress lost password form"
|
883 |
msgstr "Attiva reCAPTCHA per il modulo di recupero della password di WordPress"
|
884 |
|
885 |
-
#: ../settings.php:
|
886 |
msgid "Enable reCAPTCHA for WooCommerce lost password form"
|
887 |
msgstr "Abilita reCAPTCHA per il form del recupero della password di WooCommerce"
|
888 |
|
889 |
-
#: ../settings.php:
|
890 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
891 |
msgstr "Attiva reCAPTCHA per il modulo di accesso WooCommerce"
|
892 |
|
893 |
-
#: ../common.php:
|
894 |
msgid "Request to the Google reCAPTCHA service failed"
|
895 |
msgstr "Richiesta al servizio Google reCAPTCHA non riuscita"
|
896 |
|
897 |
-
#: ../dashboard.php:
|
898 |
msgid "View all"
|
899 |
msgstr "Vedi tutto"
|
900 |
|
901 |
-
#: ../dashboard.php:
|
902 |
msgid "Recently locked out IP addresses"
|
903 |
msgstr "Indirizzi IP bloccati di recente"
|
904 |
|
905 |
-
#: ../cerber-lab.php:
|
906 |
msgid "OK, nail them all"
|
907 |
msgstr "OK, chiudili tutti"
|
908 |
|
909 |
-
#: ../cerber-lab.php:
|
910 |
msgid "NO, maybe later"
|
911 |
msgstr "NO, forse più tardi"
|
912 |
|
913 |
-
#: ../dashboard.php:
|
914 |
-
#: php:
|
915 |
msgid "Dashboard"
|
916 |
msgstr "Bacheca"
|
917 |
|
918 |
-
#: ../cerber-lab.php:
|
919 |
msgid "Want to make WP Cerber even more powerful?"
|
920 |
msgstr "Vuoi rendere WP Cerber ancora più potente?"
|
921 |
|
922 |
-
#: ../cerber-lab.php:
|
923 |
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."
|
924 |
msgstr "Consenti a WP Cerber di inviare indirizzi IP dannosi al Cerber Lab. Questo aiuta il team a sviluppare nuovi algoritmi per WP Cerber che difenderanno WordPress contro nuove minacce e botnet che nascono ogni giorno. Puoi disattivare l'invio delle impostazioni del plugin in qualsiasi momento."
|
925 |
|
926 |
-
#: ../dashboard.php:
|
927 |
msgid "IP address"
|
928 |
msgstr "Indirizzo IP"
|
929 |
|
930 |
-
#: ../dashboard.php:
|
931 |
msgid "User login"
|
932 |
msgstr "Login utente"
|
933 |
|
934 |
-
#: ../dashboard.php:
|
935 |
msgid "User ID"
|
936 |
msgstr "ID Utente"
|
937 |
|
938 |
-
#: ../dashboard.php:
|
939 |
msgid "Export"
|
940 |
msgstr "Esporta"
|
941 |
|
942 |
-
#: ../dashboard.php:
|
943 |
msgid "Search for IP or username"
|
944 |
msgstr "Ricerca per IP o Nome Utente"
|
945 |
|
946 |
-
#: ../dashboard.php:
|
947 |
msgid "Filter"
|
948 |
msgstr "Filtro"
|
949 |
|
950 |
-
#: ../dashboard.php:
|
951 |
msgid "Cerber Dashboard"
|
952 |
msgstr "Pannello di Cerber"
|
953 |
|
954 |
-
#: ../dashboard.php:
|
955 |
msgid "Cerber tools"
|
956 |
msgstr "Strumenti di Cerber"
|
957 |
|
958 |
-
#: ../dashboard.php:
|
959 |
msgid "Subscribe"
|
960 |
msgstr "Sottoscrizione"
|
961 |
|
962 |
-
#: ../dashboard.php:
|
963 |
msgid "Unsubscribe"
|
964 |
msgstr "Rimuovi sottoscrizione"
|
965 |
|
966 |
-
#: ../dashboard.php:
|
967 |
msgid "You've subscribed"
|
968 |
msgstr "Hai effettuato la sottoscrizione"
|
969 |
|
970 |
-
#: ../dashboard.php:
|
971 |
msgid "You've unsubscribed"
|
972 |
msgstr "Hai rimosso la sottoscrizione"
|
973 |
|
974 |
-
#: ../wp-cerber.php:
|
975 |
msgid "A new activity has been recorded"
|
976 |
msgstr "È stata registrata una nuova attività"
|
977 |
|
978 |
-
#: ../wp-cerber.php:
|
979 |
msgid "User"
|
980 |
msgstr "Utente"
|
981 |
|
982 |
-
#: ../wp-cerber.php:
|
983 |
msgid "Search string"
|
984 |
msgstr "Stringa di ricerca"
|
985 |
|
986 |
-
#: ../wp-cerber.php:
|
987 |
msgid "To unsubscribe click here"
|
988 |
msgstr "Per annullare l'iscrizione clicca qui"
|
989 |
|
990 |
-
#: ../settings.php:
|
991 |
msgid "Preferences"
|
992 |
msgstr "Preferenze"
|
993 |
|
994 |
-
#: ../settings.php:
|
995 |
msgid "Date format"
|
996 |
msgstr "Formato data"
|
997 |
|
998 |
-
#: ../settings.php:
|
999 |
msgid "if empty, the default format %s will be used"
|
1000 |
msgstr "Se vuoto, verrà utilizzato il formato predefinito %s"
|
1001 |
|
1002 |
-
#: ../dashboard.php:
|
1003 |
msgid "Push notifications"
|
1004 |
msgstr "Notifica push"
|
1005 |
|
1006 |
-
#: ../settings.php:
|
1007 |
msgid "Email notifications"
|
1008 |
msgstr "Email delle notifiche"
|
1009 |
|
1010 |
-
#: ../settings.php:
|
1011 |
msgid "Use comma to specify multiple values"
|
1012 |
msgstr "Utilizzare la virgola per specificare più valori"
|
1013 |
|
1014 |
-
#: ../settings.php:
|
1015 |
msgid "All connected devices"
|
1016 |
msgstr "Tutte le periferiche connesse"
|
1017 |
|
1018 |
-
#: ../settings.php:
|
1019 |
msgid "No devices found"
|
1020 |
msgstr "Nessuna periferica trovata."
|
1021 |
|
1022 |
-
#: ../settings.php:
|
1023 |
msgid "Not available"
|
1024 |
msgstr "Non disponibile"
|
1025 |
|
1026 |
-
#: ../common.php:
|
1027 |
msgid "Password reset requested"
|
1028 |
msgstr "Richiesto reset della password"
|
1029 |
|
1030 |
-
#: ../common.php:
|
1031 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1032 |
msgstr "È stato raggiunto il limite delle verifiche reCAPTCHA fallite"
|
1033 |
|
1034 |
-
#: ../common.php:
|
1035 |
msgid "%s ago"
|
1036 |
msgstr "%s fa"
|
1037 |
|
1038 |
-
#: ../settings.php:
|
1039 |
msgid "Apply limit login rules to IP addresses in the White IP Access List"
|
1040 |
msgstr "Applicare i limiti delle regole di accesso agli indirizzi IP presenti nella White List"
|
1041 |
|
1042 |
-
#: ../settings.php:
|
1043 |
msgid "Display 404 page"
|
1044 |
msgstr "Mostra pagina 404"
|
1045 |
|
1046 |
-
#: ../settings.php:
|
1047 |
msgid "Invisible reCAPTCHA"
|
1048 |
msgstr "ReCAPTCHA invisibile"
|
1049 |
|
1050 |
-
#: ../settings.php:
|
1051 |
msgid "Enable invisible reCAPTCHA"
|
1052 |
msgstr "Abilita reCAPTCHA invisibile"
|
1053 |
|
1054 |
-
#: ../settings.php:
|
1055 |
msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
|
1056 |
msgstr "(Non abilitare a meno che non si ottengano e si inseriscano la Chiave del sito e la Chiave Segreta per la versione invisibile)"
|
1057 |
|
1058 |
-
#: ../settings.php:
|
1059 |
msgid "Enable reCAPTCHA for WordPress comment form"
|
1060 |
msgstr "Attiva reCAPTCHA per il modulo dei commenti di WordPress"
|
1061 |
|
1062 |
-
#: ../settings.php:
|
1063 |
msgid "Disable reCAPTCHA for logged in users"
|
1064 |
msgstr "Disattiva reCAPTCHA per gli utenti connessi"
|
1065 |
|
1066 |
-
#: ../settings.php:
|
1067 |
msgid "Limit attempts"
|
1068 |
msgstr "Limiti dei tentativi"
|
1069 |
|
1070 |
-
#: ../settings.php:
|
1071 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1072 |
msgstr "Blocca l'indirizzo IP per %s minuti dopo %s tentativi non riusciti entro %s minuti "
|
1073 |
|
1074 |
-
#: ../settings.php:
|
1075 |
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."
|
1076 |
msgstr "Nella modalità Citadel nessuno è in grado di accedere, tranne i gli indirizzi IP presenti nell'elenco della White List. Le sessioni utente attive non saranno interessate."
|
1077 |
|
1078 |
-
#: ../dashboard.php:
|
1079 |
msgid "Event"
|
1080 |
msgstr "Evento"
|
1081 |
|
1082 |
-
#: ../
|
1083 |
msgid "Spam comments denied"
|
1084 |
msgstr "Commenti spam negati"
|
1085 |
|
1086 |
-
#: ../
|
1087 |
msgid "Malicious IP addresses detected"
|
1088 |
msgstr "Rilevati indirizzi IP malevoli"
|
1089 |
|
1090 |
-
#: ../
|
1091 |
msgid "Lockouts occurred"
|
1092 |
msgstr "Blocchi avvenuti"
|
1093 |
|
1094 |
-
#: ../dashboard.php:
|
1095 |
msgid "All suspicious activity"
|
1096 |
msgstr "Tutte le attività sospette"
|
1097 |
|
1098 |
-
#: ../wp-cerber.php:
|
1099 |
-
#: php:
|
1100 |
msgid "You are not allowed to register."
|
1101 |
msgstr "Non è consentito registrarsi."
|
1102 |
|
1103 |
-
#: ../common.php:
|
1104 |
msgid "Spam comment denied"
|
1105 |
msgstr "Il commento spam è stato negato"
|
1106 |
|
1107 |
-
#: ../common.php:
|
1108 |
msgid "Attempt to log in denied"
|
1109 |
msgstr "Tentativo di accesso negato"
|
1110 |
|
1111 |
-
#: ../common.php:
|
1112 |
msgid "Attempt to register denied"
|
1113 |
msgstr "Tentativo di registrazione negato"
|
1114 |
|
1115 |
-
#: ../
|
1116 |
msgid "Malicious activities mitigated"
|
1117 |
msgstr "Attività dannose attenuate"
|
1118 |
|
1119 |
-
#: ../dashboard.php:
|
1120 |
msgid "Cerber antispam settings"
|
1121 |
msgstr "Impostazioni dell'Antispam di Cerber"
|
1122 |
|
1123 |
-
#: ../dashboard.php:
|
1124 |
msgid "Antispam"
|
1125 |
msgstr "Antispam"
|
1126 |
|
1127 |
-
#: ../settings.php:
|
1128 |
msgid "Cerber antispam engine"
|
1129 |
msgstr "Cerber antispam engine"
|
1130 |
|
1131 |
-
#: ../settings.php:
|
1132 |
msgid "Comment form"
|
1133 |
msgstr "Modulo dei commenti"
|
1134 |
|
1135 |
-
#: ../settings.php:
|
1136 |
msgid "Protect comment form with bot detection engine"
|
1137 |
msgstr "Proteggi il modulo dei commenti con il motore di rilevazione dei bot"
|
1138 |
|
1139 |
-
#: ../settings.php:
|
1140 |
msgid "Protect registration form with bot detection engine"
|
1141 |
msgstr "Proteggi il modulo di registrazione con il motore di rilevazione dei bot"
|
1142 |
|
@@ -1152,63 +1136,63 @@ msgstr "Diagnostica"
|
|
1152 |
msgid "License"
|
1153 |
msgstr "Licenza"
|
1154 |
|
1155 |
-
#: ../cerber-tools.php:
|
1156 |
msgid "Antispam and bot detection settings"
|
1157 |
msgstr "Impostazioni rilevamento di antispam e bot"
|
1158 |
|
1159 |
-
#: ../wp-cerber.php:
|
1160 |
msgid "Sorry, human verification failed."
|
1161 |
msgstr "Spiacenti, la verifica umana è fallita."
|
1162 |
|
1163 |
-
#: ../common.php:
|
1164 |
msgid "Bot activity is detected"
|
1165 |
msgstr "Attività Bot rilevata"
|
1166 |
|
1167 |
-
#: ../settings.php:
|
1168 |
msgid "Comment processing"
|
1169 |
msgstr "Elaborazione commento"
|
1170 |
|
1171 |
-
#: ../settings.php:
|
1172 |
msgid "If a spam comment detected"
|
1173 |
msgstr "Se un commento spam è rilevato"
|
1174 |
|
1175 |
-
#: ../settings.php:
|
1176 |
msgid "Trash spam comments"
|
1177 |
msgstr "Cestina i commenti spam"
|
1178 |
|
1179 |
-
#: ../settings.php:
|
1180 |
msgid "Move spam comments to trash after"
|
1181 |
msgstr "Sposta i commenti spam nel cestino dopo"
|
1182 |
|
1183 |
-
#: ../common.php:
|
1184 |
msgid "Spam form submission denied"
|
1185 |
msgstr "L'invio del form contenente spam è stato negata"
|
1186 |
|
1187 |
-
#: ../settings.php:
|
1188 |
msgid "Other forms"
|
1189 |
msgstr "Altro form"
|
1190 |
|
1191 |
-
#: ../settings.php:
|
1192 |
msgid "Protect all forms on the website with bot detection engine"
|
1193 |
msgstr "Proteggi tutti i form del sito web con il motore di rilevazione dei bot"
|
1194 |
|
1195 |
-
#: ../settings.php:
|
1196 |
msgid "Adjust antispam engine"
|
1197 |
msgstr "Regola Motore Antispam"
|
1198 |
|
1199 |
-
#: ../settings.php:
|
1200 |
msgid "Safe mode"
|
1201 |
msgstr "Modalità sicura"
|
1202 |
|
1203 |
-
#: ../settings.php:
|
1204 |
msgid "Use less restrictive policies (allow AJAX)"
|
1205 |
msgstr "Usa regole meno restrittive (Permetti AJAX)"
|
1206 |
|
1207 |
-
#: ../settings.php:
|
1208 |
msgid "Logged in users"
|
1209 |
msgstr "Utenti connessi"
|
1210 |
|
1211 |
-
#: ../settings.php:
|
1212 |
msgid "Disable bot detection engine for logged in users"
|
1213 |
msgstr "Disattiva il motore di rilevazione bot per gli utenti connessi"
|
1214 |
|
@@ -1218,68 +1202,57 @@ msgid "WP Cerber Security & Antispam"
|
|
1218 |
msgstr "WP Cerber Security & Antispam\n"
|
1219 |
""
|
1220 |
|
1221 |
-
|
1222 |
-
#:
|
1223 |
-
msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"http://wpcerber.com\">wpcerber.com</a>."
|
1224 |
-
msgstr "Protegge il sito da attacchi di forza bruta, bot e hacker. Protezione antispam con il motore antispam Cerber e reCAPTCHA. Controllo completo dell'attività degli utenti. Limita il login attraverso le liste di accesso IP. Limita i tentativi di accesso. Ulteriori informazioni: <a href=\"http://wpcerber.com\"> wpcerber.com </a>."
|
1225 |
-
|
1226 |
-
#: ../dashboard.php:95 ../dashboard.php:626
|
1227 |
msgid "Country"
|
1228 |
msgstr "Nazione"
|
1229 |
|
1230 |
-
#: ../dashboard.php:
|
1231 |
msgid "All events"
|
1232 |
msgstr "Tutti gli eventi"
|
1233 |
|
1234 |
-
#: ../dashboard.php:
|
1235 |
msgid "Cerber Security Rules"
|
1236 |
msgstr "Regole di Sicurezza di Cerber"
|
1237 |
|
1238 |
-
#: ../dashboard.php:
|
1239 |
msgid "Security Rules"
|
1240 |
msgstr "Regole di Sicurezza"
|
1241 |
|
1242 |
-
#: ../dashboard.php:
|
1243 |
msgid "Failed login attempts"
|
1244 |
msgstr "Tentivi di accesso falliti"
|
1245 |
|
1246 |
-
#: ../dashboard.php:
|
1247 |
msgid "Registered"
|
1248 |
msgstr "Registrato"
|
1249 |
|
1250 |
-
#: ../dashboard.php:
|
1251 |
msgid "You"
|
1252 |
msgstr "Tu"
|
1253 |
|
1254 |
-
#: ../
|
1255 |
msgid "Spam form submissions denied"
|
1256 |
msgstr "Tentativi di immissione spam negati "
|
1257 |
|
1258 |
-
#: ../dashboard.php:
|
1259 |
msgid "Getting Started Guide"
|
1260 |
msgstr "Guida introduttiva"
|
1261 |
|
1262 |
-
#: ../dashboard.php:
|
1263 |
msgid "Countries"
|
1264 |
msgstr "Paesi"
|
1265 |
|
1266 |
-
#: ../dashboard.php:
|
1267 |
msgid "Permitted for one country"
|
1268 |
msgid_plural "Permitted for %d countries"
|
1269 |
msgstr[0] "Permesso per un paese "
|
1270 |
msgstr[1] "Permesso per %d paesi"
|
1271 |
|
1272 |
-
#: ../dashboard.php:
|
1273 |
-
msgid "Blocked for one country"
|
1274 |
-
msgid_plural "Blocked for %d countries"
|
1275 |
-
msgstr[0] "Bloccato per un paese"
|
1276 |
-
msgstr[1] "Bloccato per %d paesi"
|
1277 |
-
|
1278 |
-
#: ../dashboard.php:2081
|
1279 |
msgid "No rule"
|
1280 |
msgstr "Nessuna regola"
|
1281 |
|
1282 |
-
#: ../dashboard.php:
|
1283 |
msgid "Security rules have been updated"
|
1284 |
msgstr "Le regole di sicurezza sono state aggiornate"
|
1285 |
|
@@ -1288,141 +1261,285 @@ msgstr "Le regole di sicurezza sono state aggiornate"
|
|
1288 |
msgid "https://wpcerber.com"
|
1289 |
msgstr "https://wpcerber.com"
|
1290 |
|
1291 |
-
#: ../common.php:
|
1292 |
msgid "Form submission denied"
|
1293 |
msgstr "Invio form bloccato"
|
1294 |
|
1295 |
-
#: ../common.php:
|
1296 |
msgid "Comment denied"
|
1297 |
msgstr "Commento bloccato"
|
1298 |
|
1299 |
-
#: ../common.php:
|
1300 |
msgid "Request to REST API denied"
|
1301 |
msgstr "Richiesta di REST API bloccata"
|
1302 |
|
1303 |
-
#: ../common.php:
|
1304 |
msgid "XML-RPC request denied"
|
1305 |
msgstr "Richiesta XML-RPC bloccata"
|
1306 |
|
1307 |
-
#: ../common.php:
|
1308 |
msgid "Bot detected"
|
1309 |
msgstr "Bot rilevato"
|
1310 |
|
1311 |
-
#: ../common.php:
|
1312 |
msgid "Citadel mode is active"
|
1313 |
msgstr "Modalità Citadel attiva"
|
1314 |
|
1315 |
-
#: ../common.php:
|
1316 |
msgid "Malicious activity detected"
|
1317 |
msgstr "Rilevata attività malevola"
|
1318 |
|
1319 |
-
#: ../common.php:
|
1320 |
msgid "Blocked by country rule"
|
1321 |
msgstr "Bloccata dalle regole del Paese"
|
1322 |
|
1323 |
-
#: ../common.php:
|
1324 |
msgid "Limit reached"
|
1325 |
msgstr "Limite raggiunto"
|
1326 |
|
1327 |
-
#: ../common.php:
|
1328 |
msgid "Multiple suspicious activities"
|
1329 |
msgstr "Attività sospette multiple"
|
1330 |
|
1331 |
-
#: ../common.php:
|
1332 |
msgid "Multiple suspicious activities were detected"
|
1333 |
msgstr "Attività sospette multiple sono state rilevate"
|
1334 |
|
1335 |
-
#: ../settings.php:
|
1336 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
1337 |
msgstr "Blocca l'accesso alle pagine utente come /? Author = n e i dati utente tramite l'API REST"
|
1338 |
|
1339 |
-
#: ../settings.php:
|
1340 |
msgid "Block access to the WordPress REST API except the following"
|
1341 |
msgstr "Blocca l'accesso all'API di WordPress REST eccetto quanto segue"
|
1342 |
|
1343 |
-
#: ../settings.php:
|
1344 |
msgid "Allow REST API for logged in users"
|
1345 |
msgstr "Consenti il REST API per gli utenti connessi"
|
1346 |
|
1347 |
-
#: ../settings.php:
|
1348 |
msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
|
1349 |
msgstr "Specifica gli spazi dei nomi REST API consentiti se l'API REST è disattivata. Una stringa per riga."
|
1350 |
|
1351 |
-
#: ../settings.php:
|
1352 |
msgid "Registration limit"
|
1353 |
msgstr "Limite di Registrazione"
|
1354 |
|
1355 |
-
#: ../settings.php:
|
1356 |
msgid "Sort users in dashboard"
|
1357 |
msgstr "Ordina gli utenti nel pannello"
|
1358 |
|
1359 |
-
#: ../settings.php:
|
1360 |
msgid "by date of registration"
|
1361 |
msgstr "per data di registrazione"
|
1362 |
|
1363 |
-
#: ../settings.php:
|
1364 |
msgid "Query whitelist"
|
1365 |
msgstr "Whitelist Query\n"
|
1366 |
""
|
1367 |
|
1368 |
-
#: ../settings.php:
|
1369 |
-
msgid "Specify search strings to search in a request URI to exclude the request from inspection by the engine. One string per line."
|
1370 |
-
msgstr "Specificare la stringa da ricercare nelle richieste URI per escludere tale richiesta dalla fase ispettiva del motore. Una stringa per riga."
|
1371 |
-
|
1372 |
-
#: ../settings.php:371
|
1373 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1374 |
msgstr "%s registrazioni permesse in %s minuti da un indrizzo IP"
|
1375 |
|
1376 |
-
#: ../dashboard.php:
|
1377 |
msgid "Start typing here to find a country"
|
1378 |
msgstr "Inizia a digitare qui per trovare un paese"
|
1379 |
|
1380 |
-
#: ../dashboard.php:
|
1381 |
msgid "Click on a country name to add it to the list of selected countries"
|
1382 |
msgstr "Clicca sul nome del paese per aggiungerlo nella lista dei paesi selezionati"
|
1383 |
|
1384 |
-
#: ../dashboard.php:
|
1385 |
-
msgid "Selected countries are allowed to %s other countries are not allowed"
|
1386 |
-
msgstr "I paesi selezionati sono autorizzati a %s . Non sono ammessi altri paesi"
|
1387 |
-
|
1388 |
-
#: ../dashboard.php:2225
|
1389 |
-
msgid "Selected countries are not allowed to %s other countries are allowed"
|
1390 |
-
msgstr "I paesi selezionati NON sono autorizzati per %s .Gli altri paesi sono ammessi"
|
1391 |
-
|
1392 |
-
#: ../dashboard.php:2237
|
1393 |
msgid "Submit forms"
|
1394 |
msgstr "Trasmetti forms"
|
1395 |
|
1396 |
-
#: ../dashboard.php:
|
1397 |
msgid "Post comments"
|
1398 |
msgstr "Inserisci commenti"
|
1399 |
|
1400 |
-
#: ../dashboard.php:
|
1401 |
msgid "Log in to the website"
|
1402 |
msgstr "Accedi al sito web"
|
1403 |
|
1404 |
-
#: ../dashboard.php:
|
1405 |
msgid "Register on the website"
|
1406 |
msgstr "Registrati al sito web"
|
1407 |
|
1408 |
-
#: ../dashboard.php:
|
1409 |
msgid "Use XML-RPC"
|
1410 |
msgstr "Usa XML-RPC"
|
1411 |
|
1412 |
-
#: ../dashboard.php:
|
1413 |
msgid "Use REST API"
|
1414 |
msgstr "Usa REST API\n"
|
1415 |
""
|
1416 |
|
1417 |
-
#: ../settings.php:
|
1418 |
-
msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache"
|
1419 |
-
msgstr "Se utilizzi un plugin di cache, devi aggiungere la tua nuova URL di login all'elenco di pagine che non sono in cache"
|
1420 |
-
|
1421 |
-
#: ../settings.php:134
|
1422 |
msgid "Deny it completely"
|
1423 |
msgstr "Negarlo completamente"
|
1424 |
|
1425 |
-
#: ../settings.php:
|
1426 |
msgid "Mark it as spam"
|
1427 |
msgstr "Segna come spam"
|
1428 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
"Language: it\n"
|
9 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
10 |
|
11 |
+
#: ../settings.php:67
|
12 |
msgid "Limit login attempts"
|
13 |
msgstr "Limiti i tentativi di accesso"
|
14 |
|
15 |
+
#: ../settings.php:68
|
16 |
msgid "Attempts"
|
17 |
msgstr "Tentativi"
|
18 |
|
19 |
+
#: ../settings.php:69
|
20 |
msgid "Lockout duration"
|
21 |
msgstr "Durata blocco"
|
22 |
|
23 |
+
#: ../settings.php:69 ../settings.php:88
|
24 |
msgid "minutes"
|
25 |
msgstr "Minuti"
|
26 |
|
27 |
+
#: ../settings.php:70
|
28 |
msgid "Aggressive lockout"
|
29 |
msgstr "Blocco aggressivo"
|
30 |
|
31 |
+
#: ../settings.php:73
|
32 |
msgid "Site connection"
|
33 |
msgstr "Collegamenti del sito"
|
34 |
|
35 |
+
#: ../settings.php:75
|
36 |
msgid "Proactive security rules"
|
37 |
msgstr "Regole di sicurezza proattive"
|
38 |
|
39 |
+
#: ../settings.php:76
|
40 |
msgid "Block subnet"
|
41 |
msgstr "Blocca subnet"
|
42 |
|
43 |
+
#: ../settings.php:79
|
44 |
msgid "Request wp-login.php"
|
45 |
msgstr "Richiedi wp-login.php"
|
46 |
|
47 |
+
#: ../settings.php:79
|
48 |
msgid "Immediately block IP after any request to wp-login.php"
|
49 |
msgstr "Blocca Immediatamente l'IP dopo qualsiasi chiamata alla pagina wp-login.php"
|
50 |
|
51 |
+
#: ../settings.php:78
|
52 |
msgid "Redirect dashboard requests"
|
53 |
msgstr "Richiamare il pannello Redirect"
|
54 |
|
55 |
+
#: ../settings.php:82
|
56 |
msgid "Custom login page"
|
57 |
msgstr "Pagina di login personalizzata"
|
58 |
|
59 |
+
#: ../settings.php:83
|
60 |
msgid "Custom login URL"
|
61 |
msgstr "URL di accesso personalizzato"
|
62 |
|
63 |
+
#: ../settings.php:83
|
64 |
msgid "must not overlap with the existing pages or posts slug"
|
65 |
msgstr "Non deve sovrapporsi con pagine esistenti o con post esistenti"
|
66 |
|
67 |
+
#: ../settings.php:84
|
68 |
msgid "Disable wp-login.php"
|
69 |
msgstr "Disattiva wp-login.php"
|
70 |
|
71 |
+
#: ../settings.php:84
|
72 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
73 |
msgstr "Blocca l'accesso diretto a wp-login.php e restituisce l'errore HTTP 404 non trovato"
|
74 |
|
75 |
+
#: ../dashboard.php:1109 ../settings.php:86
|
76 |
msgid "Citadel mode"
|
77 |
msgstr "Modalità Citadel"
|
78 |
|
79 |
+
#: ../settings.php:87
|
80 |
msgid "Threshold"
|
81 |
msgstr "Soglia"
|
82 |
|
83 |
+
#: ../settings.php:88
|
84 |
msgid "Duration"
|
85 |
msgstr "Durata"
|
86 |
|
87 |
+
#: ../wp-cerber.php:3742 ../settings.php:72 ../settings.php:89 ../settings.php:262
|
88 |
msgid "Notifications"
|
89 |
msgstr "Notifiche"
|
90 |
|
91 |
+
#: ../settings.php:89
|
92 |
msgid "Send notification to admin email"
|
93 |
msgstr "Invia notifica all'email dell'amministratore"
|
94 |
|
95 |
+
#: ../dashboard.php:1118 ../wp-cerber.php:3739 ../settings.php:255 ../cerber-
|
96 |
+
#: tools.php:88 ../cerber-tools.php:97 ../cerber-tools.php:178
|
97 |
msgid "Access Lists"
|
98 |
msgstr "Liste di accesso"
|
99 |
|
100 |
+
#: ../dashboard.php:1116 ../dashboard.php:1312 ../wp-cerber.php:3503 ../settings.
|
101 |
+
#: php:91 ../settings.php:246
|
102 |
msgid "Activity"
|
103 |
msgstr "Attività"
|
104 |
|
105 |
+
#: ../dashboard.php:1117 ../settings.php:250
|
106 |
msgid "Lockouts"
|
107 |
msgstr "Bloccati"
|
108 |
|
109 |
+
#: ../settings.php:377 ../settings.php:500
|
110 |
msgid "%s allowed retries in %s minutes"
|
111 |
msgstr "%s tentativi permessi in %s minuti"
|
112 |
|
113 |
+
#: ../settings.php:399 ../settings.php:522
|
114 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
115 |
msgstr "Abilita dopo %s tentativi di login negli ultimi %s minuti"
|
116 |
|
117 |
+
#: ../dashboard.php:93 ../dashboard.php:631 ../wp-cerber.php:3512
|
118 |
msgid "IP"
|
119 |
msgstr "IP"
|
120 |
|
121 |
+
#: ../dashboard.php:476 ../dashboard.php:634
|
122 |
msgid "Date"
|
123 |
msgstr "Data"
|
124 |
|
125 |
+
#: ../dashboard.php:476 ../dashboard.php:636
|
126 |
msgid "Local User"
|
127 |
msgstr "Utente locale"
|
128 |
|
129 |
+
#: ../dashboard.php:476 ../dashboard.php:637 ../wp-cerber.php:3520
|
130 |
msgid "Username used"
|
131 |
msgstr "Nome utente utilizzato"
|
132 |
|
134 |
msgid "Showing last %d records from %d"
|
135 |
msgstr "Mostro Ultimi %d records da %d"
|
136 |
|
137 |
+
#: ../common.php:521
|
138 |
msgid "Logged in"
|
139 |
msgstr "Loggato"
|
140 |
|
141 |
+
#: ../common.php:522
|
142 |
msgid "Logged out"
|
143 |
msgstr "Disconnesso"
|
144 |
|
145 |
+
#: ../common.php:523
|
146 |
msgid "Login failed"
|
147 |
msgstr "Accesso fallito"
|
148 |
|
149 |
+
#: ../common.php:526
|
150 |
msgid "IP blocked"
|
151 |
msgstr "IP Bloccato"
|
152 |
|
153 |
+
#: ../common.php:527
|
154 |
msgid "Subnet blocked"
|
155 |
msgstr "Subnet Bloccata"
|
156 |
|
157 |
+
#: ../common.php:529
|
158 |
msgid "Citadel activated!"
|
159 |
msgstr "Citadel attivata!"
|
160 |
|
161 |
+
#: ../dashboard.php:612 ../dashboard.php:816 ../common.php:565
|
162 |
msgid "Locked out"
|
163 |
msgstr "Bloccato"
|
164 |
|
165 |
+
#: ../common.php:566
|
166 |
msgid "IP blacklisted"
|
167 |
msgstr "IP blacklisted"
|
168 |
|
169 |
+
#: ../common.php:544
|
170 |
msgid "Password changed"
|
171 |
msgstr "Password cambiata"
|
172 |
|
173 |
+
#: ../dashboard.php:86 ../dashboard.php:158
|
174 |
msgid "Remove"
|
175 |
msgstr "Rimuovi"
|
176 |
|
177 |
+
#: ../dashboard.php:387
|
178 |
msgid "Lockout for %s was removed"
|
179 |
msgstr "Il blocco per %s è stato rimosso"
|
180 |
|
181 |
+
#: ../dashboard.php:131 ../dashboard.php:607 ../dashboard.php:811 ../dashboard.
|
182 |
+
#: php:1107 ../wp-cerber.php:3731 ../settings.php:71 ../settings.php:216
|
183 |
msgid "White IP Access List"
|
184 |
msgstr "White List degli indirizzi IP"
|
185 |
|
186 |
+
#: ../dashboard.php:133 ../dashboard.php:608 ../dashboard.php:813 ../dashboard.
|
187 |
+
#: php:1108
|
188 |
msgid "Black IP Access List"
|
189 |
msgstr "Black List degli indirizzi IP"
|
190 |
|
191 |
+
#: ../dashboard.php:163
|
192 |
msgid "List is empty"
|
193 |
msgstr "Lista è vuota"
|
194 |
|
195 |
+
#: ../dashboard.php:200
|
196 |
msgid "Address %s was added to White IP Access List"
|
197 |
msgstr "L' indirizzo %s è stato aggiunto agli indirizzi IP della tua White List"
|
198 |
|
199 |
+
#: ../dashboard.php:214
|
200 |
msgid "Address %s was added to Black IP Access List"
|
201 |
msgstr "L'indirizzo %s è stato aggiunto agli indirizzi IP della Black List"
|
202 |
|
203 |
+
#: ../wp-cerber.php:2995
|
204 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
205 |
msgstr "La modalità Citadel viene attivata dopo %d tentativi di accesso non riusciti in %d minuti."
|
206 |
|
212 |
msgid "Settings"
|
213 |
msgstr "Impostazioni"
|
214 |
|
215 |
+
#: ../dashboard.php:973
|
216 |
msgid "Last login"
|
217 |
msgstr "Ultimo login"
|
218 |
|
219 |
+
#: ../dashboard.php:1006 ../dashboard.php:1090
|
220 |
msgid "Never"
|
221 |
msgstr "Mai"
|
222 |
|
223 |
+
#: ../dashboard.php:1356
|
224 |
msgid "Are you sure?"
|
225 |
msgstr "Sei sicuro?"
|
226 |
|
227 |
+
#: ../dashboard.php:1164 ../settings.php:73
|
228 |
msgid "My site is behind a reverse proxy"
|
229 |
msgstr "l mio sito è dietro un proxy inverso"
|
230 |
|
231 |
+
#: ../settings.php:77
|
232 |
msgid "Non-existent users"
|
233 |
msgstr "Utenti inesistenti"
|
234 |
|
235 |
+
#: ../settings.php:77
|
236 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
237 |
msgstr "Blocca Immediatamente l'IP quando si tenta di accedere con un nome utente inesistente"
|
238 |
|
239 |
+
#: ../settings.php:78
|
240 |
msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
|
241 |
msgstr "Disabilita il reindirizzamento automatico alla pagina di login quando / wp-admin / viene richiamata da una richiesta non autorizzata"
|
242 |
|
243 |
+
#: ../settings.php:202
|
244 |
msgid "Make your protection smarter!"
|
245 |
msgstr "Fai la tua protezione più intelligente!"
|
246 |
|
247 |
+
#: ../settings.php:206
|
248 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
249 |
msgstr "Per favore abilita Permalinks per utilizzare questa funzionalità. Configura le Impostazioni del Permalink diversamente dal Predefinito."
|
250 |
|
251 |
+
#: ../settings.php:209
|
252 |
msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
|
253 |
msgstr "Fare attenzione quando si abilita queste opzione. Se dimentichi l'URL di login personalizzato, non sarai più in grado di accedere."
|
254 |
|
255 |
+
#: ../wp-cerber.php:3738 ../settings.php:252
|
256 |
msgid "Main Settings"
|
257 |
msgstr "Impostazioni Principali"
|
258 |
|
259 |
+
#: ../settings.php:264
|
260 |
msgid "Help"
|
261 |
msgstr "Aiuto"
|
262 |
|
263 |
+
#: ../settings.php:387 ../settings.php:510
|
264 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
265 |
msgstr "Aumenta la durata del blocco a %s ore dopo %s blocchi nelle ultime %s ore"
|
266 |
|
267 |
+
#: ../wp-cerber.php:237
|
268 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
269 |
msgstr "Non è consentito l'accesso. Chiedere assistenza all'amministratore."
|
270 |
|
271 |
+
#: ../wp-cerber.php:243
|
272 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
273 |
msgstr "Hai raggiunto il limite dei tentativi di accesso. Riprova in %d minuti."
|
274 |
|
275 |
+
#: ../wp-cerber.php:262
|
276 |
msgid "You have only one attempt remaining."
|
277 |
msgid_plural "You have %d attempts remaining."
|
278 |
msgstr[0] "Hai un solo tentativo rimanente."
|
279 |
msgstr[1] "Hai %d tentativi rimanenti."
|
280 |
|
281 |
+
#: ../dashboard.php:658
|
282 |
msgid "No activity has been logged."
|
283 |
msgstr "Nessuna attività è stata registrata."
|
284 |
|
298 |
msgid "Your IP"
|
299 |
msgstr "Il tuo IP"
|
300 |
|
301 |
+
#: ../wp-cerber.php:2996
|
|
|
|
|
|
|
|
|
302 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
303 |
msgstr "L'ultimo tentativo non riuscito è stato a %s dall'IP %s con accesso utente: %s."
|
304 |
|
305 |
+
#: ../wp-cerber.php:3714
|
|
|
|
|
|
|
|
|
306 |
msgid "Can't activate WP Cerber due to a database error."
|
307 |
msgstr "Non è possibile attivare WP Cerber a causa di un errore nel database."
|
308 |
|
309 |
+
#: ../settings.php:394 ../settings.php:517
|
310 |
msgid "Notify admin if the number of active lockouts above"
|
311 |
msgstr "Notifica all'amministratore se il numero di blocchi attivi supera"
|
312 |
|
313 |
+
#: ../settings.php:92 ../settings.php:144
|
314 |
msgid "days"
|
315 |
msgstr "giorni"
|
316 |
|
317 |
+
#: ../dashboard.php:1060
|
318 |
msgid "Cerber Quick View"
|
319 |
msgstr "Cerber Quick View"
|
320 |
|
326 |
msgid "To view activity, click on the IP"
|
327 |
msgstr "Per visualizzare l'attività clicca sull'IP"
|
328 |
|
329 |
+
#: ../dashboard.php:158 ../dashboard.php:843
|
330 |
msgid "Check for activity"
|
331 |
msgstr "Controllo Attività"
|
332 |
|
333 |
+
#: ../settings.php:76
|
334 |
msgid "Always block entire subnet Class C of intruders IP"
|
335 |
msgstr "Blocca sempre l'intera subnet Classe C degli indirizzi IP degli intrusi"
|
336 |
|
337 |
+
#: ../settings.php:89 ../settings.php:396 ../settings.php:519
|
338 |
msgid "Click to send test"
|
339 |
msgstr "Clicca per inviare il test"
|
340 |
|
341 |
+
#: ../settings.php:659 ../settings.php:660
|
342 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
343 |
msgstr "Attenzione! Hai cambiato l'URL di accesso! Il nuovo URL di accesso è"
|
344 |
|
345 |
+
#: ../dashboard.php:972
|
346 |
msgid "Comments"
|
347 |
msgstr "Commenti"
|
348 |
|
349 |
+
#: ../common.php:785
|
|
|
|
|
|
|
|
|
350 |
msgid "Update to version %s of WP Cerber"
|
351 |
msgstr "Aggiornamento alla versione %s di WP Cerber"
|
352 |
|
353 |
+
#: ../wp-cerber.php:2997 ../wp-cerber.php:3544
|
354 |
msgid "View activity in dashboard"
|
355 |
msgstr "Vedi attività nel pannello"
|
356 |
|
357 |
+
#: ../wp-cerber.php:3027
|
358 |
msgid "Number of active lockouts"
|
359 |
msgstr "Numero di blocchi attivi"
|
360 |
|
361 |
+
#: ../wp-cerber.php:3031
|
362 |
msgid "View lockouts in dashboard"
|
363 |
msgstr "Vedi blocchi nel pannello"
|
364 |
|
365 |
+
#: ../wp-cerber.php:3113
|
366 |
msgid "This message was sent by"
|
367 |
msgstr "Questo messaggio è stato inviato da"
|
368 |
|
369 |
+
#: ../dashboard.php:901 ../cerber-tools.php:43
|
370 |
msgid "Tools"
|
371 |
msgstr "Strumenti"
|
372 |
|
410 |
msgid "Upload file"
|
411 |
msgstr "Carica file"
|
412 |
|
413 |
+
#: ../cerber-tools.php:145
|
414 |
msgid "No file was uploaded or file is corrupted"
|
415 |
msgstr "Nessun file è stato caricato o il file è danneggiato"
|
416 |
|
417 |
+
#: ../cerber-tools.php:178
|
418 |
msgid "Error while updating"
|
419 |
msgstr "Errore durante l'aggiornamento"
|
420 |
|
421 |
+
#: ../cerber-tools.php:181
|
422 |
msgid "Settings has imported successfully from"
|
423 |
msgstr "Le impostazioni sono state importate con successo da"
|
424 |
|
425 |
+
#: ../cerber-tools.php:185
|
426 |
msgid "Error while parsing file"
|
427 |
msgstr "Errore nell'interpretazione del file "
|
428 |
|
429 |
+
#: ../dashboard.php:94 ../dashboard.php:632
|
430 |
msgid "Hostname"
|
431 |
msgstr "Nome Host"
|
432 |
|
433 |
+
#: ../dashboard.php:353
|
434 |
msgid "unknown"
|
435 |
msgstr "sconosciuto"
|
436 |
|
437 |
+
#: ../settings.php:92
|
438 |
msgid "Keep records for"
|
439 |
msgstr "Mantenere i record per"
|
440 |
|
441 |
+
#: ../dashboard.php:1094
|
442 |
msgid "active"
|
443 |
msgstr "Attiva"
|
444 |
|
445 |
+
#: ../dashboard.php:1094
|
446 |
msgid "deactivate"
|
447 |
msgstr "Disattiva"
|
448 |
|
449 |
+
#: ../dashboard.php:1096
|
450 |
msgid "not active"
|
451 |
msgstr "Non Attivo"
|
452 |
|
453 |
+
#: ../dashboard.php:1097
|
454 |
msgid "disabled"
|
455 |
msgstr "Disabilitato"
|
456 |
|
457 |
+
#: ../dashboard.php:1102
|
458 |
msgid "failed attempts"
|
459 |
msgstr "Tentativi falliti"
|
460 |
|
461 |
+
#: ../dashboard.php:1102 ../dashboard.php:1103
|
462 |
msgid "in 24 hours"
|
463 |
msgstr "in 24 ore"
|
464 |
|
465 |
+
#: ../dashboard.php:1102 ../dashboard.php:1103
|
466 |
msgid "view all"
|
467 |
msgstr "guarda tutto"
|
468 |
|
469 |
+
#: ../dashboard.php:1103
|
470 |
msgid "lockouts"
|
471 |
msgstr "Bloccati"
|
472 |
|
473 |
+
#: ../dashboard.php:1105
|
474 |
msgid "Lockouts at the moment"
|
475 |
msgstr "Bloccati al momento"
|
476 |
|
477 |
+
#: ../dashboard.php:1106
|
478 |
msgid "Last lockout"
|
479 |
msgstr "Ultimo bloccato"
|
480 |
|
481 |
+
#: ../dashboard.php:1107 ../dashboard.php:1108 ../dashboard.php:1620
|
482 |
msgid "entry"
|
483 |
msgid_plural "entries"
|
484 |
msgstr[0] "accesso"
|
485 |
msgstr[1] "accessi"
|
486 |
|
487 |
+
#: ../dashboard.php:1351
|
488 |
msgid "Confused about some settings?"
|
489 |
msgstr "Confuso da alcune impostazioni?"
|
490 |
|
491 |
+
#: ../dashboard.php:1352
|
492 |
msgid "You can easily load default recommended settings using button below"
|
493 |
msgstr "È possibile caricare facilmente le impostazioni predefinite consigliate utilizzando il pulsante sottostante"
|
494 |
|
495 |
+
#: ../dashboard.php:1354
|
496 |
msgid "Load default settings"
|
497 |
msgstr "Caricare le impostazioni di default"
|
498 |
|
499 |
+
#: ../dashboard.php:1362
|
500 |
msgid "doesn't affect Custom login URL and Access Lists"
|
501 |
msgstr "Non influenza l'URL di accesso personalizzato e le liste di accesso"
|
502 |
|
503 |
+
#: ../common.php:778
|
504 |
msgid "New version is available"
|
505 |
msgstr "Nuova versione disponibile"
|
506 |
|
507 |
#. Name of the plugin
|
508 |
+
#: ../dashboard.php:892 ../dashboard.php:911
|
509 |
msgid "WP Cerber"
|
510 |
msgstr "WP Cerber"
|
511 |
|
512 |
+
#: ../wp-cerber.php:2971
|
513 |
msgid "WP Cerber notify"
|
514 |
msgstr "Notifica di WP Cerber"
|
515 |
|
516 |
+
#: ../wp-cerber.php:2993
|
517 |
msgid "Citadel mode is activated"
|
518 |
msgstr "Citadel mode attivata"
|
519 |
|
520 |
+
#: ../wp-cerber.php:3067
|
521 |
msgid "New Custom login URL"
|
522 |
msgstr "Nuovo URL di accesso personalizzato"
|
523 |
|
524 |
+
#: ../wp-cerber.php:3701
|
525 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
526 |
msgstr "Il Cerber WP richiede PHP %s o superiore. Stai utilizzando"
|
527 |
|
528 |
+
#: ../wp-cerber.php:3705
|
529 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
530 |
msgstr "Il Cerber WP richiede WordPress %s o superiore. Stai utilizzando"
|
531 |
|
532 |
+
#: ../settings.php:95
|
533 |
msgid "Use file"
|
534 |
msgstr "Usa file"
|
535 |
|
536 |
+
#: ../settings.php:95
|
537 |
msgid "Write failed login attempts to the file"
|
538 |
msgstr "Scrivi i tentativi di accesso non riusciti nel file"
|
539 |
|
541 |
msgid "Deactivate"
|
542 |
msgstr "Disattivato"
|
543 |
|
544 |
+
#: ../dashboard.php:97 ../wp-cerber.php:3029
|
545 |
msgid "Reason"
|
546 |
msgstr "Ragione"
|
547 |
|
548 |
+
#: ../dashboard.php:168
|
549 |
msgid "Add IP to the list"
|
550 |
msgstr "Aggiungi IP alla lista"
|
551 |
|
552 |
+
#: ../dashboard.php:861
|
553 |
msgid "Add IP to the Black List"
|
554 |
msgstr "Aggiungi IP alla Black List"
|
555 |
|
556 |
+
#: ../common.php:596
|
557 |
msgid "Attempt to access"
|
558 |
msgstr "Tentativi di accesso"
|
559 |
|
560 |
+
#: ../common.php:595
|
561 |
msgid "Limit on login attempts is reached"
|
562 |
msgstr "È stato raggiunto il limite dei tentativi di accesso"
|
563 |
|
564 |
+
#: ../common.php:552 ../common.php:597
|
565 |
msgid "Attempt to log in with non-existent username"
|
566 |
msgstr "Tentativo di accesso con un nome utente inesistente"
|
567 |
|
568 |
+
#: ../wp-cerber.php:3028
|
569 |
msgid "Last lockout was added: %s for IP %s"
|
570 |
msgstr "L'ultimo blocco è stato aggiunto: %s per IP %s"
|
571 |
|
572 |
+
#: ../wp-cerber.php:3741 ../settings.php:257
|
573 |
msgid "Hardening"
|
574 |
msgstr "Rendi sicuro"
|
575 |
|
576 |
+
#: ../dashboard.php:839
|
577 |
msgid "Abuse email:"
|
578 |
msgstr "Email di abuso:"
|
579 |
|
580 |
+
#: ../settings.php:172 ../settings.php:192
|
581 |
msgid "Email Address"
|
582 |
msgstr "Indirizzo email"
|
583 |
|
584 |
+
#: ../settings.php:172
|
585 |
msgid "if empty, the admin email %s will be used"
|
586 |
msgstr "Se vuota, verrà utilizzata l'email amministratore %s"
|
587 |
|
588 |
+
#: ../settings.php:98
|
589 |
msgid "Drill down IP"
|
590 |
msgstr "IP Bucati"
|
591 |
|
592 |
+
#: ../settings.php:98
|
593 |
msgid "Retrieve extra WHOIS information for IP"
|
594 |
msgstr "Recuperare informazioni aggiuntive WHOIS per l'indirizzo IP"
|
595 |
|
596 |
+
#: ../settings.php:106
|
597 |
msgid "Hardening WordPress"
|
598 |
msgstr "Rendi più sicuro WordPress"
|
599 |
|
600 |
+
#: ../settings.php:107
|
601 |
msgid "Stop user enumeration"
|
602 |
msgstr "Ferma l'enumerazione dell'utente"
|
603 |
|
604 |
+
#: ../settings.php:108
|
605 |
msgid "Disable XML-RPC"
|
606 |
msgstr "Disabilita XML-RPC"
|
607 |
|
608 |
+
#: ../settings.php:108
|
609 |
msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
|
610 |
msgstr "Bloccare l'accesso al server XML-RPC (inclusi Pingback e Trackback)"
|
611 |
|
612 |
+
#: ../settings.php:109
|
613 |
msgid "Disable feeds"
|
614 |
msgstr "Disabilita feeds"
|
615 |
|
616 |
+
#: ../settings.php:109
|
617 |
msgid "Block access to the RSS, Atom and RDF feeds"
|
618 |
msgstr "Blocca accesso agli RSS, Atom e RDF feeds"
|
619 |
|
620 |
+
#: ../settings.php:110
|
621 |
msgid "Disable REST API"
|
622 |
msgstr "Disabilita REST API"
|
623 |
|
624 |
+
#: ../settings.php:216
|
625 |
msgid "These settings do not affect hosts from the "
|
626 |
msgstr "Queste impostazioni non influenzano gli host del"
|
627 |
|
628 |
+
#: ../settings.php:736 ../settings.php:748
|
629 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
630 |
msgstr "<strong>ERRORE</strong>: inserisci un indirizzo email valido."
|
631 |
|
632 |
+
#: ../wp-cerber.php:3059 ../wp-cerber.php:3730
|
633 |
msgid "WP Cerber is now active and has started protecting your site"
|
634 |
msgstr "WP Cerber è attivo e ha iniziato a proteggere il tuo sito"
|
635 |
|
641 |
msgid "Nobody can log in or register from these IPs"
|
642 |
msgstr "Nessuno con questi indirizzi IP potrà accedere o registrarsi"
|
643 |
|
644 |
+
#: ../dashboard.php:194 ../dashboard.php:206
|
645 |
msgid "Incorrect IP address or IP range"
|
646 |
msgstr "Indirizzo IP o Range IP non corretto "
|
647 |
|
648 |
+
#: ../dashboard.php:404 ../dashboard.php:1469
|
|
|
|
|
|
|
|
|
649 |
msgid "Settings saved"
|
650 |
msgstr "Impostazioni salvate"
|
651 |
|
652 |
+
#: ../dashboard.php:843
|
653 |
msgid "Network:"
|
654 |
msgstr "Rete"
|
655 |
|
656 |
+
#: ../dashboard.php:857
|
657 |
msgid "Add network to the Black List"
|
658 |
msgstr "Aggiungi rete alla Black List"
|
659 |
|
661 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
662 |
msgstr "Attenzione! La modalità Citadel è attiva. Nessuno è in grado di effettuare il login."
|
663 |
|
664 |
+
#: ../dashboard.php:311 ../whois.php:221 ../whois.php:252 ../common.php:594
|
665 |
msgid "Unknown"
|
666 |
msgstr "Sconosciuto"
|
667 |
|
670 |
msgid "Gregory"
|
671 |
msgstr "Gregory"
|
672 |
|
673 |
+
#: ../wp-cerber.php:545 ../wp-cerber.php:557 ../wp-cerber.php:564 ../wp-cerber.
|
674 |
+
#: php:743 ../wp-cerber.php:959 ../wp-cerber.php:965 ../wp-cerber.php:970 ../wp-
|
675 |
+
#: cerber.php:975 ../wp-cerber.php:981 ../wp-cerber.php:988 ../wp-cerber.php:1088
|
676 |
+
#: ../wp-cerber.php:1225 ../common.php:173 ../common.php:227 ../common.php:231 ..
|
677 |
+
#: /settings.php:709
|
678 |
msgid "ERROR:"
|
679 |
msgstr "ERRORE:"
|
680 |
|
681 |
+
#: ../wp-cerber.php:574
|
682 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
683 |
msgstr "Verifica fallita. Fai clic sulla casella quadrata nel blocco reCAPTCHA di seguito."
|
684 |
|
685 |
+
#: ../wp-cerber.php:755
|
686 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
687 |
msgstr "<strong>ERRORE</strong>: La password inserita per lo username %s non è corretta."
|
688 |
|
689 |
+
#: ../wp-cerber.php:976
|
690 |
msgid "Username is not allowed. Please choose another one."
|
691 |
msgstr "Non è consentito utilizzare questo nome utente. Sceglierne un altro."
|
692 |
|
693 |
+
#: ../wp-cerber.php:3022
|
694 |
msgid "unspecified"
|
695 |
msgstr "non specificato"
|
696 |
|
697 |
+
#: ../wp-cerber.php:3025
|
698 |
msgid "Number of lockouts is increasing"
|
699 |
msgstr "Numero di blocchi in aumento"
|
700 |
|
701 |
+
#: ../wp-cerber.php:3030
|
702 |
msgid "View activity for this IP"
|
703 |
msgstr "Vedi attività per questo IP"
|
704 |
|
705 |
+
#: ../wp-cerber.php:3034 ../wp-cerber.php:3036
|
706 |
msgid "A new version of WP Cerber is available to install"
|
707 |
msgstr "È disponibile una nuova versione di WP Cerber"
|
708 |
|
709 |
+
#: ../wp-cerber.php:3035
|
710 |
msgid "Hi!"
|
711 |
msgstr "Ciao!"
|
712 |
|
713 |
+
#: ../wp-cerber.php:3038 ../wp-cerber.php:3049
|
714 |
msgid "Website"
|
715 |
msgstr "Sito web"
|
716 |
|
717 |
+
#: ../wp-cerber.php:3041 ../wp-cerber.php:3042
|
718 |
msgid "The WP Cerber security plugin has been deactivated"
|
719 |
msgstr "Il plugin di sicurezza WP Cerber è stato disattivato"
|
720 |
|
721 |
+
#: ../wp-cerber.php:3044
|
722 |
msgid "Not logged in"
|
723 |
msgstr "Non loggato"
|
724 |
|
725 |
+
#: ../wp-cerber.php:3050
|
726 |
msgid "By user"
|
727 |
msgstr "Dall'Utente "
|
728 |
|
729 |
+
#: ../wp-cerber.php:3051
|
730 |
msgid "From IP address"
|
731 |
msgstr "Dall'indirizzo IP"
|
732 |
|
733 |
+
#: ../wp-cerber.php:3054
|
734 |
msgid "From country"
|
735 |
msgstr "Dalla Nazione"
|
736 |
|
737 |
+
#: ../wp-cerber.php:3058
|
738 |
msgid "The WP Cerber security plugin is now active"
|
739 |
msgstr "Il plugin di protezione WP Cerber è attivo"
|
740 |
|
741 |
+
#: ../wp-cerber.php:3731
|
742 |
msgid "Your IP address is added to the"
|
743 |
msgstr "Il tuo indirizzo IP è stato aggiunto al"
|
744 |
|
745 |
+
#: ../wp-cerber.php:3743
|
746 |
msgid "Import settings"
|
747 |
msgstr "Importa impostazioni"
|
748 |
|
749 |
+
#: ../settings.php:173
|
750 |
msgid "Notification limit"
|
751 |
msgstr "Limiti di notifica"
|
752 |
|
753 |
+
#: ../settings.php:173
|
754 |
msgid "notification letters allowed per hour (0 means unlimited)"
|
755 |
msgstr "email di notifiche consentite per ora (0 significa illimitato)"
|
756 |
|
757 |
+
#: ../settings.php:121
|
758 |
msgid "User related settings"
|
759 |
msgstr "Impostazioni correlate agli utenti"
|
760 |
|
761 |
+
#: ../settings.php:123
|
762 |
msgid "Prohibited usernames"
|
763 |
msgstr "Nomi utente proibiti"
|
764 |
|
765 |
+
#: ../settings.php:123
|
766 |
msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
|
767 |
msgstr "I nomi utente di questo elenco non possono accedere o registrarsi. Qualsiasi indirizzo IP, che ha cercato di utilizzare uno di questi nomi utente, sarà immediatamente bloccato. Usa la virgola per separare i nominativi."
|
768 |
|
769 |
+
#: ../settings.php:124
|
770 |
msgid "User session expire"
|
771 |
msgstr "Sessione utente scade"
|
772 |
|
773 |
+
#: ../settings.php:124
|
774 |
msgid "in minutes (leave empty to use default WP value)"
|
775 |
msgstr "In minuti (lasciare vuoto per utilizzare il valore predefinito WP)"
|
776 |
|
777 |
+
#: ../settings.php:147
|
778 |
msgid "reCAPTCHA settings"
|
779 |
msgstr "Impostazioni reCAPTCHA"
|
780 |
|
781 |
+
#: ../settings.php:148
|
782 |
msgid "Site key"
|
783 |
msgstr "Chiave del sito"
|
784 |
|
785 |
+
#: ../settings.php:149
|
786 |
msgid "Secret key"
|
787 |
msgstr "Chiave segreta"
|
788 |
|
789 |
+
#: ../settings.php:152
|
790 |
msgid "Enable reCAPTCHA for WordPress registration form"
|
791 |
msgstr "Abilita reCAPTCHA per il modulo di registrazione di WordPress"
|
792 |
|
793 |
+
#: ../settings.php:155
|
794 |
msgid "Lost password form"
|
795 |
msgstr "Modulo per il recupero della password dimenticata"
|
796 |
|
797 |
+
#: ../settings.php:158
|
798 |
msgid "Login form"
|
799 |
msgstr "Modulo di accesso"
|
800 |
|
801 |
+
#: ../settings.php:158
|
802 |
msgid "Enable reCAPTCHA for WordPress login form"
|
803 |
msgstr "Attiva reCAPTCHA per il modulo di accesso di WordPress"
|
804 |
|
805 |
+
#: ../settings.php:219
|
806 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
807 |
msgstr "Prima di iniziare a utilizzare reCAPTCHA, è necessario ottenere la Chiave Sito e la Chiave Segreta sul sito web di Google"
|
808 |
|
809 |
+
#: ../cerber-lab.php:666 ../settings.php:220
|
810 |
msgid "Know more"
|
811 |
msgstr "Saperne di più"
|
812 |
|
813 |
+
#: ../dashboard.php:892 ../settings.php:239
|
814 |
msgid "WP Cerber Security"
|
815 |
msgstr "WP Cerber Security"
|
816 |
|
817 |
+
#: ../settings.php:259
|
818 |
msgid "Users"
|
819 |
msgstr "Utenti"
|
820 |
|
821 |
+
#: ../common.php:519
|
822 |
msgid "User created"
|
823 |
msgstr "Utente creato"
|
824 |
|
825 |
+
#: ../dashboard.php:1306 ../common.php:520
|
826 |
msgid "User registered"
|
827 |
msgstr "Utente registrato"
|
828 |
|
829 |
+
#: ../common.php:547
|
830 |
msgid "reCAPTCHA verification failed"
|
831 |
msgstr "Verifica reCAPTCHA fallita"
|
832 |
|
833 |
+
#: ../common.php:548
|
834 |
msgid "reCAPTCHA settings are incorrect"
|
835 |
msgstr "le impostazioni reCAPTCHA sono non correte"
|
836 |
|
837 |
+
#: ../common.php:551
|
838 |
msgid "Attempt to access prohibited URL"
|
839 |
msgstr "Tentativo di accesso ad URL proibita"
|
840 |
|
841 |
+
#: ../common.php:553 ../common.php:598
|
842 |
msgid "Attempt to log in with prohibited username"
|
843 |
msgstr "Tentativo di accesso con username proibito"
|
844 |
|
845 |
+
#: ../settings.php:93
|
846 |
msgid "Cerber Lab connection"
|
847 |
msgstr "Connessione al Cerber Lab"
|
848 |
|
849 |
+
#: ../settings.php:93
|
850 |
msgid "Send malicious IP addresses to the Cerber Lab"
|
851 |
msgstr "Invia indirizzi IP dannosi al Cerberus Lab"
|
852 |
|
853 |
+
#: ../settings.php:94
|
854 |
msgid "Cerber Lab protocol"
|
855 |
msgstr "Protocollo Cerber Lab"
|
856 |
|
857 |
+
#: ../settings.php:134 ../settings.php:152
|
858 |
msgid "Registration form"
|
859 |
msgstr "Form di registrazione"
|
860 |
|
861 |
+
#: ../settings.php:153
|
862 |
msgid "Enable reCAPTCHA for WooCommerce registration form"
|
863 |
msgstr "Attiva reCAPTCHA per il modulo di registrazione WooCommerce"
|
864 |
|
865 |
+
#: ../settings.php:155
|
866 |
msgid "Enable reCAPTCHA for WordPress lost password form"
|
867 |
msgstr "Attiva reCAPTCHA per il modulo di recupero della password di WordPress"
|
868 |
|
869 |
+
#: ../settings.php:156
|
870 |
msgid "Enable reCAPTCHA for WooCommerce lost password form"
|
871 |
msgstr "Abilita reCAPTCHA per il form del recupero della password di WooCommerce"
|
872 |
|
873 |
+
#: ../settings.php:159
|
874 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
875 |
msgstr "Attiva reCAPTCHA per il modulo di accesso WooCommerce"
|
876 |
|
877 |
+
#: ../common.php:549
|
878 |
msgid "Request to the Google reCAPTCHA service failed"
|
879 |
msgstr "Richiesta al servizio Google reCAPTCHA non riuscita"
|
880 |
|
881 |
+
#: ../dashboard.php:1298 ../dashboard.php:1327
|
882 |
msgid "View all"
|
883 |
msgstr "Vedi tutto"
|
884 |
|
885 |
+
#: ../dashboard.php:1328
|
886 |
msgid "Recently locked out IP addresses"
|
887 |
msgstr "Indirizzi IP bloccati di recente"
|
888 |
|
889 |
+
#: ../cerber-lab.php:664
|
890 |
msgid "OK, nail them all"
|
891 |
msgstr "OK, chiudili tutti"
|
892 |
|
893 |
+
#: ../cerber-lab.php:665
|
894 |
msgid "NO, maybe later"
|
895 |
msgstr "NO, forse più tardi"
|
896 |
|
897 |
+
#: ../dashboard.php:894 ../dashboard.php:1115 ../dashboard.php:1640 ../settings.
|
898 |
+
#: php:244
|
899 |
msgid "Dashboard"
|
900 |
msgstr "Bacheca"
|
901 |
|
902 |
+
#: ../cerber-lab.php:662
|
903 |
msgid "Want to make WP Cerber even more powerful?"
|
904 |
msgstr "Vuoi rendere WP Cerber ancora più potente?"
|
905 |
|
906 |
+
#: ../cerber-lab.php:663
|
907 |
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."
|
908 |
msgstr "Consenti a WP Cerber di inviare indirizzi IP dannosi al Cerber Lab. Questo aiuta il team a sviluppare nuovi algoritmi per WP Cerber che difenderanno WordPress contro nuove minacce e botnet che nascono ogni giorno. Puoi disattivare l'invio delle impostazioni del plugin in qualsiasi momento."
|
909 |
|
910 |
+
#: ../dashboard.php:476
|
911 |
msgid "IP address"
|
912 |
msgstr "Indirizzo IP"
|
913 |
|
914 |
+
#: ../dashboard.php:476
|
915 |
msgid "User login"
|
916 |
msgstr "Login utente"
|
917 |
|
918 |
+
#: ../dashboard.php:476
|
919 |
msgid "User ID"
|
920 |
msgstr "ID Utente"
|
921 |
|
922 |
+
#: ../dashboard.php:654
|
923 |
msgid "Export"
|
924 |
msgstr "Esporta"
|
925 |
|
926 |
+
#: ../dashboard.php:673
|
927 |
msgid "Search for IP or username"
|
928 |
msgstr "Ricerca per IP o Nome Utente"
|
929 |
|
930 |
+
#: ../dashboard.php:673
|
931 |
msgid "Filter"
|
932 |
msgstr "Filtro"
|
933 |
|
934 |
+
#: ../dashboard.php:894
|
935 |
msgid "Cerber Dashboard"
|
936 |
msgstr "Pannello di Cerber"
|
937 |
|
938 |
+
#: ../dashboard.php:901
|
939 |
msgid "Cerber tools"
|
940 |
msgstr "Strumenti di Cerber"
|
941 |
|
942 |
+
#: ../dashboard.php:1553
|
943 |
msgid "Subscribe"
|
944 |
msgstr "Sottoscrizione"
|
945 |
|
946 |
+
#: ../dashboard.php:1554 ../cerber-tools.php:243
|
947 |
msgid "Unsubscribe"
|
948 |
msgstr "Rimuovi sottoscrizione"
|
949 |
|
950 |
+
#: ../dashboard.php:1582
|
951 |
msgid "You've subscribed"
|
952 |
msgstr "Hai effettuato la sottoscrizione"
|
953 |
|
954 |
+
#: ../dashboard.php:1585
|
955 |
msgid "You've unsubscribed"
|
956 |
msgstr "Hai rimosso la sottoscrizione"
|
957 |
|
958 |
+
#: ../wp-cerber.php:3071 ../wp-cerber.php:3072
|
959 |
msgid "A new activity has been recorded"
|
960 |
msgstr "È stata registrata una nuova attività"
|
961 |
|
962 |
+
#: ../wp-cerber.php:3516
|
963 |
msgid "User"
|
964 |
msgstr "Utente"
|
965 |
|
966 |
+
#: ../wp-cerber.php:3524
|
967 |
msgid "Search string"
|
968 |
msgstr "Stringa di ricerca"
|
969 |
|
970 |
+
#: ../wp-cerber.php:3545
|
971 |
msgid "To unsubscribe click here"
|
972 |
msgstr "Per annullare l'iscrizione clicca qui"
|
973 |
|
974 |
+
#: ../settings.php:97
|
975 |
msgid "Preferences"
|
976 |
msgstr "Preferenze"
|
977 |
|
978 |
+
#: ../settings.php:99
|
979 |
msgid "Date format"
|
980 |
msgstr "Formato data"
|
981 |
|
982 |
+
#: ../settings.php:99
|
983 |
msgid "if empty, the default format %s will be used"
|
984 |
msgstr "Se vuoto, verrà utilizzato il formato predefinito %s"
|
985 |
|
986 |
+
#: ../dashboard.php:1111 ../settings.php:175
|
987 |
msgid "Push notifications"
|
988 |
msgstr "Notifica push"
|
989 |
|
990 |
+
#: ../settings.php:170
|
991 |
msgid "Email notifications"
|
992 |
msgstr "Email delle notifiche"
|
993 |
|
994 |
+
#: ../settings.php:172 ../settings.php:192
|
995 |
msgid "Use comma to specify multiple values"
|
996 |
msgstr "Utilizzare la virgola per specificare più valori"
|
997 |
|
998 |
+
#: ../settings.php:182
|
999 |
msgid "All connected devices"
|
1000 |
msgstr "Tutte le periferiche connesse"
|
1001 |
|
1002 |
+
#: ../settings.php:183
|
1003 |
msgid "No devices found"
|
1004 |
msgstr "Nessuna periferica trovata."
|
1005 |
|
1006 |
+
#: ../settings.php:185
|
1007 |
msgid "Not available"
|
1008 |
msgstr "Non disponibile"
|
1009 |
|
1010 |
+
#: ../common.php:545
|
1011 |
msgid "Password reset requested"
|
1012 |
msgstr "Richiesto reset della password"
|
1013 |
|
1014 |
+
#: ../common.php:599
|
1015 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1016 |
msgstr "È stato raggiunto il limite delle verifiche reCAPTCHA fallite"
|
1017 |
|
1018 |
+
#: ../common.php:644
|
1019 |
msgid "%s ago"
|
1020 |
msgstr "%s fa"
|
1021 |
|
1022 |
+
#: ../settings.php:71
|
1023 |
msgid "Apply limit login rules to IP addresses in the White IP Access List"
|
1024 |
msgstr "Applicare i limiti delle regole di accesso agli indirizzi IP presenti nella White List"
|
1025 |
|
1026 |
+
#: ../settings.php:80
|
1027 |
msgid "Display 404 page"
|
1028 |
msgstr "Mostra pagina 404"
|
1029 |
|
1030 |
+
#: ../settings.php:150
|
1031 |
msgid "Invisible reCAPTCHA"
|
1032 |
msgstr "ReCAPTCHA invisibile"
|
1033 |
|
1034 |
+
#: ../settings.php:150
|
1035 |
msgid "Enable invisible reCAPTCHA"
|
1036 |
msgstr "Abilita reCAPTCHA invisibile"
|
1037 |
|
1038 |
+
#: ../settings.php:150
|
1039 |
msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
|
1040 |
msgstr "(Non abilitare a meno che non si ottengano e si inseriscano la Chiave del sito e la Chiave Segreta per la versione invisibile)"
|
1041 |
|
1042 |
+
#: ../settings.php:161
|
1043 |
msgid "Enable reCAPTCHA for WordPress comment form"
|
1044 |
msgstr "Attiva reCAPTCHA per il modulo dei commenti di WordPress"
|
1045 |
|
1046 |
+
#: ../settings.php:162
|
1047 |
msgid "Disable reCAPTCHA for logged in users"
|
1048 |
msgstr "Disattiva reCAPTCHA per gli utenti connessi"
|
1049 |
|
1050 |
+
#: ../settings.php:164
|
1051 |
msgid "Limit attempts"
|
1052 |
msgstr "Limiti dei tentativi"
|
1053 |
|
1054 |
+
#: ../settings.php:164
|
1055 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1056 |
msgstr "Blocca l'indirizzo IP per %s minuti dopo %s tentativi non riusciti entro %s minuti "
|
1057 |
|
1058 |
+
#: ../settings.php:213
|
1059 |
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."
|
1060 |
msgstr "Nella modalità Citadel nessuno è in grado di accedere, tranne i gli indirizzi IP presenti nell'elenco della White List. Le sessioni utente attive non saranno interessate."
|
1061 |
|
1062 |
+
#: ../dashboard.php:476 ../dashboard.php:635
|
1063 |
msgid "Event"
|
1064 |
msgstr "Evento"
|
1065 |
|
1066 |
+
#: ../common.php:116
|
1067 |
msgid "Spam comments denied"
|
1068 |
msgstr "Commenti spam negati"
|
1069 |
|
1070 |
+
#: ../common.php:118
|
1071 |
msgid "Malicious IP addresses detected"
|
1072 |
msgstr "Rilevati indirizzi IP malevoli"
|
1073 |
|
1074 |
+
#: ../common.php:119
|
1075 |
msgid "Lockouts occurred"
|
1076 |
msgstr "Blocchi avvenuti"
|
1077 |
|
1078 |
+
#: ../dashboard.php:1307
|
1079 |
msgid "All suspicious activity"
|
1080 |
msgstr "Tutte le attività sospette"
|
1081 |
|
1082 |
+
#: ../wp-cerber.php:960 ../wp-cerber.php:966 ../wp-cerber.php:982 ../wp-cerber.
|
1083 |
+
#: php:989
|
1084 |
msgid "You are not allowed to register."
|
1085 |
msgstr "Non è consentito registrarsi."
|
1086 |
|
1087 |
+
#: ../common.php:530
|
1088 |
msgid "Spam comment denied"
|
1089 |
msgstr "Il commento spam è stato negato"
|
1090 |
|
1091 |
+
#: ../common.php:555
|
1092 |
msgid "Attempt to log in denied"
|
1093 |
msgstr "Tentativo di accesso negato"
|
1094 |
|
1095 |
+
#: ../common.php:556
|
1096 |
msgid "Attempt to register denied"
|
1097 |
msgstr "Tentativo di registrazione negato"
|
1098 |
|
1099 |
+
#: ../common.php:113
|
1100 |
msgid "Malicious activities mitigated"
|
1101 |
msgstr "Attività dannose attenuate"
|
1102 |
|
1103 |
+
#: ../dashboard.php:900
|
1104 |
msgid "Cerber antispam settings"
|
1105 |
msgstr "Impostazioni dell'Antispam di Cerber"
|
1106 |
|
1107 |
+
#: ../dashboard.php:900 ../wp-cerber.php:3740 ../settings.php:161
|
1108 |
msgid "Antispam"
|
1109 |
msgstr "Antispam"
|
1110 |
|
1111 |
+
#: ../settings.php:132
|
1112 |
msgid "Cerber antispam engine"
|
1113 |
msgstr "Cerber antispam engine"
|
1114 |
|
1115 |
+
#: ../settings.php:133
|
1116 |
msgid "Comment form"
|
1117 |
msgstr "Modulo dei commenti"
|
1118 |
|
1119 |
+
#: ../settings.php:133
|
1120 |
msgid "Protect comment form with bot detection engine"
|
1121 |
msgstr "Proteggi il modulo dei commenti con il motore di rilevazione dei bot"
|
1122 |
|
1123 |
+
#: ../settings.php:134
|
1124 |
msgid "Protect registration form with bot detection engine"
|
1125 |
msgstr "Proteggi il modulo di registrazione con il motore di rilevazione dei bot"
|
1126 |
|
1136 |
msgid "License"
|
1137 |
msgstr "Licenza"
|
1138 |
|
1139 |
+
#: ../cerber-tools.php:313
|
1140 |
msgid "Antispam and bot detection settings"
|
1141 |
msgstr "Impostazioni rilevamento di antispam e bot"
|
1142 |
|
1143 |
+
#: ../wp-cerber.php:1225
|
1144 |
msgid "Sorry, human verification failed."
|
1145 |
msgstr "Spiacenti, la verifica umana è fallita."
|
1146 |
|
1147 |
+
#: ../common.php:600
|
1148 |
msgid "Bot activity is detected"
|
1149 |
msgstr "Attività Bot rilevata"
|
1150 |
|
1151 |
+
#: ../settings.php:142
|
1152 |
msgid "Comment processing"
|
1153 |
msgstr "Elaborazione commento"
|
1154 |
|
1155 |
+
#: ../settings.php:143
|
1156 |
msgid "If a spam comment detected"
|
1157 |
msgstr "Se un commento spam è rilevato"
|
1158 |
|
1159 |
+
#: ../settings.php:144
|
1160 |
msgid "Trash spam comments"
|
1161 |
msgstr "Cestina i commenti spam"
|
1162 |
|
1163 |
+
#: ../settings.php:144
|
1164 |
msgid "Move spam comments to trash after"
|
1165 |
msgstr "Sposta i commenti spam nel cestino dopo"
|
1166 |
|
1167 |
+
#: ../common.php:531
|
1168 |
msgid "Spam form submission denied"
|
1169 |
msgstr "L'invio del form contenente spam è stato negata"
|
1170 |
|
1171 |
+
#: ../settings.php:135
|
1172 |
msgid "Other forms"
|
1173 |
msgstr "Altro form"
|
1174 |
|
1175 |
+
#: ../settings.php:135
|
1176 |
msgid "Protect all forms on the website with bot detection engine"
|
1177 |
msgstr "Proteggi tutti i form del sito web con il motore di rilevazione dei bot"
|
1178 |
|
1179 |
+
#: ../settings.php:137
|
1180 |
msgid "Adjust antispam engine"
|
1181 |
msgstr "Regola Motore Antispam"
|
1182 |
|
1183 |
+
#: ../settings.php:138
|
1184 |
msgid "Safe mode"
|
1185 |
msgstr "Modalità sicura"
|
1186 |
|
1187 |
+
#: ../settings.php:138
|
1188 |
msgid "Use less restrictive policies (allow AJAX)"
|
1189 |
msgstr "Usa regole meno restrittive (Permetti AJAX)"
|
1190 |
|
1191 |
+
#: ../settings.php:139
|
1192 |
msgid "Logged in users"
|
1193 |
msgstr "Utenti connessi"
|
1194 |
|
1195 |
+
#: ../settings.php:139
|
1196 |
msgid "Disable bot detection engine for logged in users"
|
1197 |
msgstr "Disattiva il motore di rilevazione bot per gli utenti connessi"
|
1198 |
|
1202 |
msgstr "WP Cerber Security & Antispam\n"
|
1203 |
""
|
1204 |
|
1205 |
+
#: ../dashboard.php:95 ../dashboard.php:633
|
|
|
|
|
|
|
|
|
|
|
1206 |
msgid "Country"
|
1207 |
msgstr "Nazione"
|
1208 |
|
1209 |
+
#: ../dashboard.php:664
|
1210 |
msgid "All events"
|
1211 |
msgstr "Tutti gli eventi"
|
1212 |
|
1213 |
+
#: ../dashboard.php:897
|
1214 |
msgid "Cerber Security Rules"
|
1215 |
msgstr "Regole di Sicurezza di Cerber"
|
1216 |
|
1217 |
+
#: ../dashboard.php:897 ../dashboard.php:1985
|
1218 |
msgid "Security Rules"
|
1219 |
msgstr "Regole di Sicurezza"
|
1220 |
|
1221 |
+
#: ../dashboard.php:974
|
1222 |
msgid "Failed login attempts"
|
1223 |
msgstr "Tentivi di accesso falliti"
|
1224 |
|
1225 |
+
#: ../dashboard.php:975
|
1226 |
msgid "Registered"
|
1227 |
msgstr "Registrato"
|
1228 |
|
1229 |
+
#: ../dashboard.php:1042
|
1230 |
msgid "You"
|
1231 |
msgstr "Tu"
|
1232 |
|
1233 |
+
#: ../common.php:117
|
1234 |
msgid "Spam form submissions denied"
|
1235 |
msgstr "Tentativi di immissione spam negati "
|
1236 |
|
1237 |
+
#: ../dashboard.php:1363 ../wp-cerber.php:3061 ../wp-cerber.php:3733
|
1238 |
msgid "Getting Started Guide"
|
1239 |
msgstr "Guida introduttiva"
|
1240 |
|
1241 |
+
#: ../dashboard.php:1990
|
1242 |
msgid "Countries"
|
1243 |
msgstr "Paesi"
|
1244 |
|
1245 |
+
#: ../dashboard.php:2055
|
1246 |
msgid "Permitted for one country"
|
1247 |
msgid_plural "Permitted for %d countries"
|
1248 |
msgstr[0] "Permesso per un paese "
|
1249 |
msgstr[1] "Permesso per %d paesi"
|
1250 |
|
1251 |
+
#: ../dashboard.php:2066
|
|
|
|
|
|
|
|
|
|
|
|
|
1252 |
msgid "No rule"
|
1253 |
msgstr "Nessuna regola"
|
1254 |
|
1255 |
+
#: ../dashboard.php:2269
|
1256 |
msgid "Security rules have been updated"
|
1257 |
msgstr "Le regole di sicurezza sono state aggiornate"
|
1258 |
|
1261 |
msgid "https://wpcerber.com"
|
1262 |
msgstr "https://wpcerber.com"
|
1263 |
|
1264 |
+
#: ../common.php:532
|
1265 |
msgid "Form submission denied"
|
1266 |
msgstr "Invio form bloccato"
|
1267 |
|
1268 |
+
#: ../common.php:533
|
1269 |
msgid "Comment denied"
|
1270 |
msgstr "Commento bloccato"
|
1271 |
|
1272 |
+
#: ../common.php:558
|
1273 |
msgid "Request to REST API denied"
|
1274 |
msgstr "Richiesta di REST API bloccata"
|
1275 |
|
1276 |
+
#: ../common.php:559
|
1277 |
msgid "XML-RPC request denied"
|
1278 |
msgstr "Richiesta XML-RPC bloccata"
|
1279 |
|
1280 |
+
#: ../common.php:563
|
1281 |
msgid "Bot detected"
|
1282 |
msgstr "Bot rilevato"
|
1283 |
|
1284 |
+
#: ../common.php:564
|
1285 |
msgid "Citadel mode is active"
|
1286 |
msgstr "Modalità Citadel attiva"
|
1287 |
|
1288 |
+
#: ../common.php:569
|
1289 |
msgid "Malicious activity detected"
|
1290 |
msgstr "Rilevata attività malevola"
|
1291 |
|
1292 |
+
#: ../common.php:570
|
1293 |
msgid "Blocked by country rule"
|
1294 |
msgstr "Bloccata dalle regole del Paese"
|
1295 |
|
1296 |
+
#: ../common.php:571
|
1297 |
msgid "Limit reached"
|
1298 |
msgstr "Limite raggiunto"
|
1299 |
|
1300 |
+
#: ../common.php:572
|
1301 |
msgid "Multiple suspicious activities"
|
1302 |
msgstr "Attività sospette multiple"
|
1303 |
|
1304 |
+
#: ../common.php:601
|
1305 |
msgid "Multiple suspicious activities were detected"
|
1306 |
msgstr "Attività sospette multiple sono state rilevate"
|
1307 |
|
1308 |
+
#: ../settings.php:107
|
1309 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
1310 |
msgstr "Blocca l'accesso alle pagine utente come /? Author = n e i dati utente tramite l'API REST"
|
1311 |
|
1312 |
+
#: ../settings.php:110
|
1313 |
msgid "Block access to the WordPress REST API except the following"
|
1314 |
msgstr "Blocca l'accesso all'API di WordPress REST eccetto quanto segue"
|
1315 |
|
1316 |
+
#: ../settings.php:111
|
1317 |
msgid "Allow REST API for logged in users"
|
1318 |
msgstr "Consenti il REST API per gli utenti connessi"
|
1319 |
|
1320 |
+
#: ../settings.php:112
|
1321 |
msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
|
1322 |
msgstr "Specifica gli spazi dei nomi REST API consentiti se l'API REST è disattivata. Una stringa per riga."
|
1323 |
|
1324 |
+
#: ../settings.php:122
|
1325 |
msgid "Registration limit"
|
1326 |
msgstr "Limite di Registrazione"
|
1327 |
|
1328 |
+
#: ../settings.php:125
|
1329 |
msgid "Sort users in dashboard"
|
1330 |
msgstr "Ordina gli utenti nel pannello"
|
1331 |
|
1332 |
+
#: ../settings.php:125
|
1333 |
msgid "by date of registration"
|
1334 |
msgstr "per data di registrazione"
|
1335 |
|
1336 |
+
#: ../settings.php:140
|
1337 |
msgid "Query whitelist"
|
1338 |
msgstr "Whitelist Query\n"
|
1339 |
""
|
1340 |
|
1341 |
+
#: ../settings.php:382 ../settings.php:505
|
|
|
|
|
|
|
|
|
1342 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1343 |
msgstr "%s registrazioni permesse in %s minuti da un indrizzo IP"
|
1344 |
|
1345 |
+
#: ../dashboard.php:2122
|
1346 |
msgid "Start typing here to find a country"
|
1347 |
msgstr "Inizia a digitare qui per trovare un paese"
|
1348 |
|
1349 |
+
#: ../dashboard.php:2205
|
1350 |
msgid "Click on a country name to add it to the list of selected countries"
|
1351 |
msgstr "Clicca sul nome del paese per aggiungerlo nella lista dei paesi selezionati"
|
1352 |
|
1353 |
+
#: ../dashboard.php:2224
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1354 |
msgid "Submit forms"
|
1355 |
msgstr "Trasmetti forms"
|
1356 |
|
1357 |
+
#: ../dashboard.php:2225
|
1358 |
msgid "Post comments"
|
1359 |
msgstr "Inserisci commenti"
|
1360 |
|
1361 |
+
#: ../dashboard.php:2226
|
1362 |
msgid "Log in to the website"
|
1363 |
msgstr "Accedi al sito web"
|
1364 |
|
1365 |
+
#: ../dashboard.php:2227
|
1366 |
msgid "Register on the website"
|
1367 |
msgstr "Registrati al sito web"
|
1368 |
|
1369 |
+
#: ../dashboard.php:2228
|
1370 |
msgid "Use XML-RPC"
|
1371 |
msgstr "Usa XML-RPC"
|
1372 |
|
1373 |
+
#: ../dashboard.php:2229
|
1374 |
msgid "Use REST API"
|
1375 |
msgstr "Usa REST API\n"
|
1376 |
""
|
1377 |
|
1378 |
+
#: ../settings.php:143
|
|
|
|
|
|
|
|
|
1379 |
msgid "Deny it completely"
|
1380 |
msgstr "Negarlo completamente"
|
1381 |
|
1382 |
+
#: ../settings.php:143
|
1383 |
msgid "Mark it as spam"
|
1384 |
msgstr "Segna come spam"
|
1385 |
|
1386 |
+
#: ../dashboard.php:1292
|
1387 |
+
msgid "in the last 24 hours"
|
1388 |
+
msgstr "nelle ultime 24 ore"
|
1389 |
+
|
1390 |
+
#: ../dashboard.php:1641
|
1391 |
+
msgid "Main settings"
|
1392 |
+
msgstr "Impostazioni Principali"
|
1393 |
+
|
1394 |
+
#: ../settings.php:190
|
1395 |
+
msgid "Weekly reports"
|
1396 |
+
msgstr "Report settimanali"
|
1397 |
+
|
1398 |
+
#: ../settings.php:602
|
1399 |
+
msgid "Sunday"
|
1400 |
+
msgstr "Domenica"
|
1401 |
+
|
1402 |
+
#: ../settings.php:603
|
1403 |
+
msgid "Monday"
|
1404 |
+
msgstr "Lunedì"
|
1405 |
+
|
1406 |
+
#: ../settings.php:604
|
1407 |
+
msgid "Tuesday"
|
1408 |
+
msgstr "Martedì"
|
1409 |
+
|
1410 |
+
#: ../settings.php:605
|
1411 |
+
msgid "Wednesday"
|
1412 |
+
msgstr "Mercoledì"
|
1413 |
+
|
1414 |
+
#: ../settings.php:606
|
1415 |
+
msgid "Thursday"
|
1416 |
+
msgstr "Giovedì"
|
1417 |
+
|
1418 |
+
#: ../settings.php:607
|
1419 |
+
msgid "Friday"
|
1420 |
+
msgstr "Venerdì"
|
1421 |
+
|
1422 |
+
#: ../settings.php:608
|
1423 |
+
msgid "Saturday"
|
1424 |
+
msgstr "Sabato"
|
1425 |
+
|
1426 |
+
#: ../settings.php:661 ../settings.php:662
|
1427 |
+
msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
|
1428 |
+
msgstr "Se si utilizza un plug-in di memorizzazione nella cache, è necessario aggiungere il nuovo URL di accesso all'elenco delle pagine da non memorizzare in cache."
|
1429 |
+
|
1430 |
+
#. translators: preposition of time
|
1431 |
+
#: ../settings.php:618
|
1432 |
+
msgctxt "preposition of time"
|
1433 |
+
msgid "at"
|
1434 |
+
msgstr "al"
|
1435 |
+
|
1436 |
+
#: ../wp-cerber.php:3077
|
1437 |
+
msgid "Weekly report"
|
1438 |
+
msgstr "Report Settimanale"
|
1439 |
+
|
1440 |
+
#: ../wp-cerber.php:3080
|
1441 |
+
msgid "To change reporting settings visit"
|
1442 |
+
msgstr "Per cambiare il report visita"
|
1443 |
+
|
1444 |
+
#: ../wp-cerber.php:3106
|
1445 |
+
msgid "Your login page:"
|
1446 |
+
msgstr "La tua pagina di login:"
|
1447 |
+
|
1448 |
+
#: ../wp-cerber.php:3110
|
1449 |
+
msgid "Your license is valid until"
|
1450 |
+
msgstr "La tua licenza è valida sino al"
|
1451 |
+
|
1452 |
+
#: ../wp-cerber.php:3221
|
1453 |
+
msgid "Activity details"
|
1454 |
+
msgstr "Dettaglio Attività"
|
1455 |
+
|
1456 |
+
#: ../settings.php:634
|
1457 |
+
msgid "Click to send now"
|
1458 |
+
msgstr "Clicca per spedire ora"
|
1459 |
+
|
1460 |
+
#: ../wp-cerber.php:625
|
1461 |
+
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1462 |
+
msgstr "> > > Traduttore di WP Cerber? Per ottenere una licenza PRO gratis, invia i tuoi dati da qui: https://wpcerber.com/contact/"
|
1463 |
+
|
1464 |
+
#: ../dashboard.php:377
|
1465 |
+
msgid "Email has been sent to"
|
1466 |
+
msgstr "Email è stata spedita a"
|
1467 |
+
|
1468 |
+
#: ../dashboard.php:380
|
1469 |
+
msgid "Unable to send email to"
|
1470 |
+
msgstr "Non riesco ad inviare l'email a"
|
1471 |
+
|
1472 |
+
#: ../dashboard.php:2058
|
1473 |
+
msgid "Not permitted for one country"
|
1474 |
+
msgid_plural "Not permitted for %d countries"
|
1475 |
+
msgstr[0] "Non permesso per un paese"
|
1476 |
+
msgstr[1] "non permesso per %d paesi"
|
1477 |
+
|
1478 |
+
#: ../dashboard.php:2209
|
1479 |
+
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1480 |
+
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
1481 |
+
msgstr "I paesi selezionati sono autorizzati ad %s, altri paesi non sono autorizzati ad"
|
1482 |
+
|
1483 |
+
#: ../dashboard.php:2212
|
1484 |
+
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1485 |
+
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
1486 |
+
msgstr "I paesi selezionati non sono autorizzati ad %s, altri paesi sono autorizzati ad"
|
1487 |
+
|
1488 |
+
#. Description of the plugin
|
1489 |
+
#:
|
1490 |
+
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>."
|
1491 |
+
msgstr "Protegge il sito da attacchi di forza bruta, robot e hacker. Protezione antispam con il motore antispam di Cerber e reCAPTCHA. Controllo completo dell'attività dell'utente. Limita il login utilizzando elenchi di indirizzi IP. Limita i tentativi di accesso. Per saperne di più:: <a href=\"https://wpcerber.com\">wpcerber.com</a>.\n"
|
1492 |
+
""
|
1493 |
+
|
1494 |
+
#: ../wp-cerber.php:3209
|
1495 |
+
msgid "Weekly Report"
|
1496 |
+
msgstr "Report settimanale"
|
1497 |
+
|
1498 |
+
#: ../settings.php:80
|
1499 |
+
msgid "Use 404 template from the active theme"
|
1500 |
+
msgstr "Usa pagina 404 dal tema attivo"
|
1501 |
+
|
1502 |
+
#: ../settings.php:80
|
1503 |
+
msgid "Display simple 404 page"
|
1504 |
+
msgstr "Mostra una semplice pagina 404"
|
1505 |
+
|
1506 |
+
#: ../settings.php:140
|
1507 |
+
msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
|
1508 |
+
msgstr "Immettere una parte della stringa di query o del percorso di query per escludere una richiesta dall'ispezione dal motore. Un elemento per riga."
|
1509 |
+
|
1510 |
+
#: ../settings.php:192
|
1511 |
+
msgid "if empty, email from notification settings will be used"
|
1512 |
+
msgstr "Se vuoto, verrà utilizzata l'e-mail dalle impostazioni di notifica"
|
1513 |
+
|
1514 |
+
#: ../settings.php:193
|
1515 |
+
msgid "Enable reporting"
|
1516 |
+
msgstr "Abilita reporting"
|
1517 |
+
|
1518 |
+
#: ../wp-cerber.php:3133
|
1519 |
+
msgid "Your last sign-in was %s from %s"
|
1520 |
+
msgstr "Il tuo ultimo accesso è stato %s da %s"
|
1521 |
+
|
1522 |
+
#: ../wp-cerber.php:3235
|
1523 |
+
msgid "Attempts to log in with non-existent username"
|
1524 |
+
msgstr "Tentativi di accesso con con un nome utente inesistente"
|
1525 |
+
|
1526 |
+
#: ../dashboard.php:167
|
1527 |
+
msgid "IP address, IPv4 address range or subnet"
|
1528 |
+
msgstr "Indirizzi IP, range indirizzi IPv4 o sottorete"
|
1529 |
+
|
1530 |
+
#: ../dashboard.php:169
|
1531 |
+
msgid "Optional comment for this entry"
|
1532 |
+
msgstr "Commento opzionale per questa voce"
|
1533 |
+
|
1534 |
+
#: ../dashboard.php:210
|
1535 |
+
msgid "You cannot add your IP address or network"
|
1536 |
+
msgstr "Non è possibile aggiungere il tuo indirizzo IP o rete"
|
1537 |
+
|
1538 |
+
#: ../cerber-news.php:135
|
1539 |
+
msgid "Cool!"
|
1540 |
+
msgstr "Bello!"
|
1541 |
+
|
1542 |
+
#: ../settings.php:123
|
1543 |
+
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1544 |
+
msgstr "Per specificare un pattern REGEX inserisci un pattern in mezzo a due slashes (//) "
|
1545 |
+
|
languages/wp-cerber-nl_NL.mo
CHANGED
Binary file
|
languages/wp-cerber-nl_NL.po
CHANGED
@@ -72,7 +72,7 @@ msgstr "Wp-login.php uitschakelen"
|
|
72 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
73 |
msgstr "Directe toegang tot wp-login.php blokkeren en HTTP 404 Not Found Error teruggeven"
|
74 |
|
75 |
-
#: ../dashboard.php:
|
76 |
msgid "Citadel mode"
|
77 |
msgstr "Citadelmodus"
|
78 |
|
@@ -84,7 +84,7 @@ msgstr "Drempelwaarde"
|
|
84 |
msgid "Duration"
|
85 |
msgstr "Duur"
|
86 |
|
87 |
-
#: ../wp-cerber.php:
|
88 |
msgid "Notifications"
|
89 |
msgstr "Meldingen"
|
90 |
|
@@ -92,17 +92,17 @@ msgstr "Meldingen"
|
|
92 |
msgid "Send notification to admin email"
|
93 |
msgstr "Melding versturen naar admin e-mailadres"
|
94 |
|
95 |
-
#: ../dashboard.php:
|
96 |
-
#: tools.php:88 ../cerber-tools.php:97 ../cerber-tools.php:
|
97 |
msgid "Access Lists"
|
98 |
msgstr "Toegangslijsten"
|
99 |
|
100 |
-
#: ../dashboard.php:
|
101 |
#: php:91 ../settings.php:246
|
102 |
msgid "Activity"
|
103 |
msgstr "Activiteit"
|
104 |
|
105 |
-
#: ../dashboard.php:
|
106 |
msgid "Lockouts"
|
107 |
msgstr "Uitsluitingen"
|
108 |
|
@@ -114,19 +114,19 @@ msgstr "%s toegestane pogingen in %s minuten"
|
|
114 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
115 |
msgstr "Aanzetten na %s mislukte inlogpogingen binnen %s minuten"
|
116 |
|
117 |
-
#: ../dashboard.php:93 ../dashboard.php:
|
118 |
msgid "IP"
|
119 |
msgstr "IP"
|
120 |
|
121 |
-
#: ../dashboard.php:
|
122 |
msgid "Date"
|
123 |
msgstr "Datum"
|
124 |
|
125 |
-
#: ../dashboard.php:
|
126 |
msgid "Local User"
|
127 |
msgstr "Lokale gebruiker"
|
128 |
|
129 |
-
#: ../dashboard.php:
|
130 |
msgid "Username used"
|
131 |
msgstr "Toegepaste gebruikersnaam"
|
132 |
|
@@ -134,82 +134,82 @@ msgstr "Toegepaste gebruikersnaam"
|
|
134 |
msgid "Showing last %d records from %d"
|
135 |
msgstr "Laatste %d records van %d"
|
136 |
|
137 |
-
#: ../common.php:
|
138 |
msgid "Logged in"
|
139 |
msgstr "Ingelogd"
|
140 |
|
141 |
-
#: ../common.php:
|
142 |
msgid "Logged out"
|
143 |
msgstr "Uitgelogd"
|
144 |
|
145 |
-
#: ../common.php:
|
146 |
msgid "Login failed"
|
147 |
msgstr "Inloggen mislukt"
|
148 |
|
149 |
-
#: ../common.php:
|
150 |
msgid "IP blocked"
|
151 |
msgstr "IP geblokkeerd"
|
152 |
|
153 |
-
#: ../common.php:
|
154 |
msgid "Subnet blocked"
|
155 |
msgstr "Subnet geblokkeerd"
|
156 |
|
157 |
-
#: ../common.php:
|
158 |
msgid "Citadel activated!"
|
159 |
msgstr "Citadelmodus geactiveerd!"
|
160 |
|
161 |
-
#: ../dashboard.php:
|
162 |
#, fuzzy
|
163 |
msgid "Locked out"
|
164 |
msgstr "Buitengesloten"
|
165 |
|
166 |
-
#: ../common.php:
|
167 |
msgid "IP blacklisted"
|
168 |
msgstr "IP uitgesloten"
|
169 |
|
170 |
-
#: ../common.php:
|
171 |
msgid "Password changed"
|
172 |
msgstr "Wachtwoord veranderd"
|
173 |
|
174 |
-
#: ../dashboard.php:86 ../dashboard.php:
|
175 |
msgid "Remove"
|
176 |
msgstr "Verwijderen"
|
177 |
|
178 |
-
#: ../dashboard.php:
|
179 |
msgid "Lockout for %s was removed"
|
180 |
msgstr "Uitsluiting voor %s is verwijderd"
|
181 |
|
182 |
-
#: ../dashboard.php:131 ../dashboard.php:
|
183 |
-
#: php:
|
184 |
#, fuzzy
|
185 |
msgid "White IP Access List"
|
186 |
msgstr "Toegelaten IP-adressen"
|
187 |
|
188 |
-
#: ../dashboard.php:133 ../dashboard.php:
|
189 |
-
#: php:
|
190 |
#, fuzzy
|
191 |
msgid "Black IP Access List"
|
192 |
msgstr "Uitgesloten IP-adressen"
|
193 |
|
194 |
-
#: ../dashboard.php:
|
195 |
msgid "List is empty"
|
196 |
msgstr "Lijst is leeg"
|
197 |
|
198 |
-
#: ../dashboard.php:
|
199 |
#, fuzzy
|
200 |
msgid "Address %s was added to White IP Access List"
|
201 |
msgstr "Adres %s toegevoegd aan de Lijst Toegelaten IP-adressen"
|
202 |
|
203 |
-
#: ../dashboard.php:
|
204 |
#, fuzzy
|
205 |
msgid "Address %s was added to Black IP Access List"
|
206 |
msgstr "Adres %s toegevoegd aan de Lijst Uitgesloten IP-adressen "
|
207 |
|
208 |
-
#: ../wp-cerber.php:
|
209 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
210 |
msgstr "Citadelmodus geactiveerd na %d mislukte inlogpogingen binnen %d minuten"
|
211 |
|
212 |
-
#: ../dashboard.php:
|
213 |
#, fuzzy
|
214 |
msgid "View Activity"
|
215 |
msgstr "Activiteit bekijken"
|
@@ -218,20 +218,20 @@ msgstr "Activiteit bekijken"
|
|
218 |
msgid "Settings"
|
219 |
msgstr "Instellingen"
|
220 |
|
221 |
-
#: ../dashboard.php:
|
222 |
#, fuzzy
|
223 |
msgid "Last login"
|
224 |
msgstr "Laatst ingelogd"
|
225 |
|
226 |
-
#: ../dashboard.php:
|
227 |
msgid "Never"
|
228 |
msgstr "Nooit"
|
229 |
|
230 |
-
#: ../dashboard.php:
|
231 |
msgid "Are you sure?"
|
232 |
msgstr "Weet je het zeker?"
|
233 |
|
234 |
-
#: ../dashboard.php:
|
235 |
msgid "My site is behind a reverse proxy"
|
236 |
msgstr "Mijn website draait achter een reverse proxy"
|
237 |
|
@@ -259,7 +259,7 @@ msgstr "Schakel Permalinks in om deze functionaliteit te gebruiken. Stel de Perm
|
|
259 |
msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
|
260 |
msgstr "Pas op als je deze opties inschakelt! Vergeet je de aangepaste inlog-URL, dan kun je niet meer inloggen."
|
261 |
|
262 |
-
#: ../wp-cerber.php:
|
263 |
msgid "Main Settings"
|
264 |
msgstr "Hoofdinstellingen"
|
265 |
|
@@ -271,21 +271,21 @@ msgstr "Hulp"
|
|
271 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
272 |
msgstr "Uitsluitingsduur ophogen naar %s uren na %s uitsluitingen in de laatste %s uren"
|
273 |
|
274 |
-
#: ../wp-cerber.php:
|
275 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
276 |
msgstr "Je hebt geen toestemming om in te loggen. Vraag je beheerder om informatie."
|
277 |
|
278 |
-
#: ../wp-cerber.php:
|
279 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
280 |
msgstr "Je hebt de limiet voor inlogpogingen bereikt. Probeer het opnieuw na %d minuten."
|
281 |
|
282 |
-
#: ../wp-cerber.php:
|
283 |
msgid "You have only one attempt remaining."
|
284 |
msgid_plural "You have %d attempts remaining."
|
285 |
msgstr[0] "Slechts één inlogpoging resterend!"
|
286 |
msgstr[1] "%s inlogpogingen resterend."
|
287 |
|
288 |
-
#: ../dashboard.php:
|
289 |
msgid "No activity has been logged."
|
290 |
msgstr "Geen activiteit waargenomen."
|
291 |
|
@@ -306,15 +306,11 @@ msgstr "Deze IP's worden nooit geblokkeerd."
|
|
306 |
msgid "Your IP"
|
307 |
msgstr "Jouw IP"
|
308 |
|
309 |
-
#: ../
|
310 |
-
msgid "You can't add your IP address"
|
311 |
-
msgstr "Je kunt je eigen IP niet toevoegen"
|
312 |
-
|
313 |
-
#: ../wp-cerber.php:2945
|
314 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
315 |
msgstr "Laatste mislukte inlogpoging was op %s vanaf IP %s op gebruiker %s."
|
316 |
|
317 |
-
#: ../wp-cerber.php:
|
318 |
msgid "Can't activate WP Cerber due to a database error."
|
319 |
msgstr "Kan WP Cerber niet activeren door een fout in de database"
|
320 |
|
@@ -326,7 +322,7 @@ msgstr "Waarschuw de beheerder als het aantal actieve uitsluitingen stijgt tot b
|
|
326 |
msgid "days"
|
327 |
msgstr "dagen"
|
328 |
|
329 |
-
#: ../dashboard.php:
|
330 |
msgid "Cerber Quick View"
|
331 |
msgstr "Cerber Quick View"
|
332 |
|
@@ -338,7 +334,7 @@ msgstr "Tip"
|
|
338 |
msgid "To view activity, click on the IP"
|
339 |
msgstr "Klik op het IP om activiteiten te bekijken"
|
340 |
|
341 |
-
#: ../dashboard.php:
|
342 |
msgid "Check for activity"
|
343 |
msgstr "Check voor activiteit"
|
344 |
|
@@ -354,31 +350,31 @@ msgstr "Klik om test te verzenden"
|
|
354 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
355 |
msgstr "Let op! Je hebt de inlog-URL veranderd. De nieuwe inlog-URL is"
|
356 |
|
357 |
-
#: ../dashboard.php:
|
358 |
msgid "Comments"
|
359 |
msgstr "Reacties"
|
360 |
|
361 |
-
#: ../common.php:
|
362 |
msgid "Update to version %s of WP Cerber"
|
363 |
msgstr "WP Cerber updaten naar versie %s"
|
364 |
|
365 |
-
#: ../wp-cerber.php:
|
366 |
msgid "View activity in dashboard"
|
367 |
msgstr "Activiteiten bekijken in dashboard"
|
368 |
|
369 |
-
#: ../wp-cerber.php:
|
370 |
msgid "Number of active lockouts"
|
371 |
msgstr "Aantal actieve uitsluitingen"
|
372 |
|
373 |
-
#: ../wp-cerber.php:
|
374 |
msgid "View lockouts in dashboard"
|
375 |
msgstr "Uitsluitingen bekijken in dashboard"
|
376 |
|
377 |
-
#: ../wp-cerber.php:
|
378 |
msgid "This message was sent by"
|
379 |
msgstr "Dit bericht is verzonden door"
|
380 |
|
381 |
-
#: ../dashboard.php:
|
382 |
msgid "Tools"
|
383 |
msgstr "Gereedschap"
|
384 |
|
@@ -422,27 +418,27 @@ msgstr "Wat wil je importeren?"
|
|
422 |
msgid "Upload file"
|
423 |
msgstr "Bestand uploaden"
|
424 |
|
425 |
-
#: ../cerber-tools.php:
|
426 |
msgid "No file was uploaded or file is corrupted"
|
427 |
msgstr "Geen bestand geüpload of bestand is beschadigd."
|
428 |
|
429 |
-
#: ../cerber-tools.php:
|
430 |
msgid "Error while updating"
|
431 |
msgstr "Foutmelding tijdens updaten"
|
432 |
|
433 |
-
#: ../cerber-tools.php:
|
434 |
msgid "Settings has imported successfully from"
|
435 |
msgstr "Instellingen geïmporteerd van"
|
436 |
|
437 |
-
#: ../cerber-tools.php:
|
438 |
msgid "Error while parsing file"
|
439 |
msgstr "Fout bij verwerken bestand"
|
440 |
|
441 |
-
#: ../dashboard.php:94 ../dashboard.php:
|
442 |
msgid "Hostname"
|
443 |
msgstr "Hostnaam"
|
444 |
|
445 |
-
#: ../dashboard.php:
|
446 |
msgid "unknown"
|
447 |
msgstr "onbekend"
|
448 |
|
@@ -451,98 +447,98 @@ msgstr "onbekend"
|
|
451 |
msgid "Keep records for"
|
452 |
msgstr "Gegevens behouden tot"
|
453 |
|
454 |
-
#: ../dashboard.php:
|
455 |
msgid "active"
|
456 |
msgstr "actief"
|
457 |
|
458 |
-
#: ../dashboard.php:
|
459 |
msgid "deactivate"
|
460 |
msgstr "deactiveren"
|
461 |
|
462 |
-
#: ../dashboard.php:
|
463 |
msgid "not active"
|
464 |
msgstr "niet actief"
|
465 |
|
466 |
-
#: ../dashboard.php:
|
467 |
msgid "disabled"
|
468 |
msgstr "gedeactiveerd"
|
469 |
|
470 |
-
#: ../dashboard.php:
|
471 |
msgid "failed attempts"
|
472 |
msgstr "mislukte pogingen"
|
473 |
|
474 |
-
#: ../dashboard.php:
|
475 |
msgid "in 24 hours"
|
476 |
msgstr "in 24 uur"
|
477 |
|
478 |
-
#: ../dashboard.php:
|
479 |
msgid "view all"
|
480 |
msgstr "bekijk alles"
|
481 |
|
482 |
-
#: ../dashboard.php:
|
483 |
msgid "lockouts"
|
484 |
msgstr "uitsluitingen"
|
485 |
|
486 |
-
#: ../dashboard.php:
|
487 |
msgid "Lockouts at the moment"
|
488 |
msgstr "Uitsluitingen op dit moment"
|
489 |
|
490 |
-
#: ../dashboard.php:
|
491 |
#, fuzzy
|
492 |
msgid "Last lockout"
|
493 |
msgstr "Recente uitsluiting"
|
494 |
|
495 |
-
#: ../dashboard.php:
|
496 |
msgid "entry"
|
497 |
msgid_plural "entries"
|
498 |
msgstr[0] "item"
|
499 |
msgstr[1] "items"
|
500 |
|
501 |
-
#: ../dashboard.php:
|
502 |
#, fuzzy
|
503 |
msgid "Confused about some settings?"
|
504 |
msgstr "Verward over sommige instellingen?"
|
505 |
|
506 |
-
#: ../dashboard.php:
|
507 |
#, fuzzy
|
508 |
msgid "You can easily load default recommended settings using button below"
|
509 |
msgstr "Met onderstaande knop laad je de aanbevolen instellingen"
|
510 |
|
511 |
-
#: ../dashboard.php:
|
512 |
#, fuzzy
|
513 |
msgid "Load default settings"
|
514 |
msgstr "Aanbevolen instellingen laden"
|
515 |
|
516 |
-
#: ../dashboard.php:
|
517 |
msgid "doesn't affect Custom login URL and Access Lists"
|
518 |
msgstr "heeft geen invloed op Aangepaste inlog-URL en Toegangslijsten"
|
519 |
|
520 |
-
#: ../common.php:
|
521 |
msgid "New version is available"
|
522 |
msgstr "Nieuwe versie beschikbaar"
|
523 |
|
524 |
#. Name of the plugin
|
525 |
-
#: ../dashboard.php:
|
526 |
msgid "WP Cerber"
|
527 |
msgstr "WP Cerber"
|
528 |
|
529 |
-
#: ../wp-cerber.php:
|
530 |
msgid "WP Cerber notify"
|
531 |
msgstr "WP Cerber melding"
|
532 |
|
533 |
-
#: ../wp-cerber.php:
|
534 |
msgid "Citadel mode is activated"
|
535 |
msgstr "Citadel modus is actief"
|
536 |
|
537 |
-
#: ../wp-cerber.php:
|
538 |
msgid "New Custom login URL"
|
539 |
msgstr "Nieuwe Aangepaste inlog-URL"
|
540 |
|
541 |
-
#: ../wp-cerber.php:
|
542 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
543 |
msgstr "WP Cerber vereist PHP %s of hoger. Je gebruikt nu"
|
544 |
|
545 |
-
#: ../wp-cerber.php:
|
546 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
547 |
msgstr "WP Cerber vereist WordPress %s of hoger. Je gebruikt nu"
|
548 |
|
@@ -554,43 +550,43 @@ msgstr "Bestand gebruiken"
|
|
554 |
msgid "Write failed login attempts to the file"
|
555 |
msgstr "Mislukte pogingen opslaan in bestand"
|
556 |
|
557 |
-
#: ../dashboard.php:
|
558 |
msgid "Deactivate"
|
559 |
msgstr "Deactiveren"
|
560 |
|
561 |
-
#: ../dashboard.php:97 ../wp-cerber.php:
|
562 |
msgid "Reason"
|
563 |
msgstr "Reden"
|
564 |
|
565 |
-
#: ../dashboard.php:
|
566 |
msgid "Add IP to the list"
|
567 |
msgstr "IP-adres toevoegen aan lijst"
|
568 |
|
569 |
-
#: ../dashboard.php:
|
570 |
msgid "Add IP to the Black List"
|
571 |
msgstr "IP-adres toevoegen aan Uitsluitingslijst"
|
572 |
|
573 |
-
#: ../common.php:
|
574 |
msgid "Attempt to access"
|
575 |
msgstr "Poging tot toegang"
|
576 |
|
577 |
-
#: ../common.php:
|
578 |
msgid "Limit on login attempts is reached"
|
579 |
msgstr "Limiet voor aantal inlogpogingen is bereikt"
|
580 |
|
581 |
-
#: ../common.php:
|
582 |
msgid "Attempt to log in with non-existent username"
|
583 |
msgstr "Inlogpoging met onbekende gebruikersnaam"
|
584 |
|
585 |
-
#: ../wp-cerber.php:
|
586 |
msgid "Last lockout was added: %s for IP %s"
|
587 |
msgstr "Laatste uitsluiting was toegevoegd: %s voor IP-adres %s"
|
588 |
|
589 |
-
#: ../wp-cerber.php:
|
590 |
msgid "Hardening"
|
591 |
msgstr "Versterking"
|
592 |
|
593 |
-
#: ../dashboard.php:
|
594 |
msgid "Abuse email:"
|
595 |
msgstr "E-mail voor misbruik:"
|
596 |
|
@@ -646,7 +642,7 @@ msgstr "Deze instellingen gelden niet voor hosts van de␣"
|
|
646 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
647 |
msgstr "<strong>LET OP</strong>: voer een geldig e-mailadres in."
|
648 |
|
649 |
-
#: ../wp-cerber.php:
|
650 |
msgid "WP Cerber is now active and has started protecting your site"
|
651 |
msgstr "WP Cerber is actief en beschermt nu je website"
|
652 |
|
@@ -658,27 +654,27 @@ msgstr "Actie"
|
|
658 |
msgid "Nobody can log in or register from these IPs"
|
659 |
msgstr "Niemand kan aanmelden of inloggen vanaf deze IP's"
|
660 |
|
661 |
-
#: ../dashboard.php:
|
662 |
msgid "Incorrect IP address or IP range"
|
663 |
msgstr "IP-adres of -reeks is incorrect"
|
664 |
|
665 |
-
#: ../dashboard.php:
|
666 |
msgid "Settings saved"
|
667 |
msgstr "Instellingen opgeslagen"
|
668 |
|
669 |
-
#: ../dashboard.php:
|
670 |
msgid "Network:"
|
671 |
msgstr "Netwerk:"
|
672 |
|
673 |
-
#: ../dashboard.php:
|
674 |
msgid "Add network to the Black List"
|
675 |
msgstr "Netwerk toevoegen aan Uitsluitingslijst"
|
676 |
|
677 |
-
#: ../dashboard.php:
|
678 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
679 |
msgstr "Let op! Citadelmodus is actief; niemand kan inloggen."
|
680 |
|
681 |
-
#: ../dashboard.php:
|
682 |
msgid "Unknown"
|
683 |
msgstr "Onbekend"
|
684 |
|
@@ -687,79 +683,79 @@ msgstr "Onbekend"
|
|
687 |
msgid "Gregory"
|
688 |
msgstr "Gregory"
|
689 |
|
690 |
-
#: ../wp-cerber.php:
|
691 |
-
#: php:
|
692 |
-
#: cerber.php:
|
693 |
-
#:
|
694 |
-
#:
|
695 |
msgid "ERROR:"
|
696 |
msgstr "FOUT:"
|
697 |
|
698 |
-
#: ../wp-cerber.php:
|
699 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
700 |
msgstr "Menselijke verificatie mislukt. Klik het vierkant in onderstaand reCAPTCHA-blok."
|
701 |
|
702 |
-
#: ../wp-cerber.php:
|
703 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
704 |
msgstr "<strong>LET OP</strong>: je geeft een foutief wachtwoord op voor gebruiker %s."
|
705 |
|
706 |
-
#: ../wp-cerber.php:
|
707 |
msgid "Username is not allowed. Please choose another one."
|
708 |
msgstr "Gebruikersnaam is niet toegestaan, kies een andere."
|
709 |
|
710 |
-
#: ../wp-cerber.php:
|
711 |
msgid "unspecified"
|
712 |
msgstr "niet gespecificeerd"
|
713 |
|
714 |
-
#: ../wp-cerber.php:
|
715 |
msgid "Number of lockouts is increasing"
|
716 |
msgstr "Aantal uitsluitingen loopt op"
|
717 |
|
718 |
-
#: ../wp-cerber.php:
|
719 |
msgid "View activity for this IP"
|
720 |
msgstr "Bekijk activiteit voor dit adres"
|
721 |
|
722 |
-
#: ../wp-cerber.php:
|
723 |
msgid "A new version of WP Cerber is available to install"
|
724 |
msgstr "Nieuwe versie WP Cerber is klaar voor installatie"
|
725 |
|
726 |
-
#: ../wp-cerber.php:
|
727 |
msgid "Hi!"
|
728 |
msgstr "Hallo!"
|
729 |
|
730 |
-
#: ../wp-cerber.php:
|
731 |
msgid "Website"
|
732 |
msgstr "Website"
|
733 |
|
734 |
-
#: ../wp-cerber.php:
|
735 |
msgid "The WP Cerber security plugin has been deactivated"
|
736 |
msgstr "WP Cerber is gedeactiveerd"
|
737 |
|
738 |
-
#: ../wp-cerber.php:
|
739 |
msgid "Not logged in"
|
740 |
msgstr "Niet ingelogd"
|
741 |
|
742 |
-
#: ../wp-cerber.php:
|
743 |
msgid "By user"
|
744 |
msgstr "Door gebruiker"
|
745 |
|
746 |
-
#: ../wp-cerber.php:
|
747 |
msgid "From IP address"
|
748 |
msgstr "Van IP-adres"
|
749 |
|
750 |
-
#: ../wp-cerber.php:
|
751 |
msgid "From country"
|
752 |
msgstr "Uit land"
|
753 |
|
754 |
-
#: ../wp-cerber.php:
|
755 |
msgid "The WP Cerber security plugin is now active"
|
756 |
msgstr "WP Cerber is actief"
|
757 |
|
758 |
-
#: ../wp-cerber.php:
|
759 |
msgid "Your IP address is added to the"
|
760 |
msgstr "Je IP-adres is toegevoegd aan de "
|
761 |
|
762 |
-
#: ../wp-cerber.php:
|
763 |
msgid "Import settings"
|
764 |
msgstr "Instellingen importeren"
|
765 |
|
@@ -827,7 +823,7 @@ msgstr "Haal eerst een Site-sleutel en Geheime Sleutel op van Google om reCAPTCH
|
|
827 |
msgid "Know more"
|
828 |
msgstr "Meer weten"
|
829 |
|
830 |
-
#: ../dashboard.php:
|
831 |
msgid "WP Cerber Security"
|
832 |
msgstr "WP Cerber Security"
|
833 |
|
@@ -835,28 +831,28 @@ msgstr "WP Cerber Security"
|
|
835 |
msgid "Users"
|
836 |
msgstr "Gebruikers"
|
837 |
|
838 |
-
#: ../common.php:
|
839 |
msgid "User created"
|
840 |
msgstr "Gebruiker toegevoegd"
|
841 |
|
842 |
-
#: ../dashboard.php:
|
843 |
msgid "User registered"
|
844 |
msgstr "Gebruiker geregistreerd"
|
845 |
|
846 |
-
#: ../common.php:
|
847 |
msgid "reCAPTCHA verification failed"
|
848 |
msgstr "reCAPTCHA verificatie mislukt"
|
849 |
|
850 |
-
#: ../common.php:
|
851 |
msgid "reCAPTCHA settings are incorrect"
|
852 |
msgstr "foutieve reCAPTCHA-instellingen"
|
853 |
|
854 |
#. I see this line used where someone tries to log in from a blocked URL. So shouldn't this line be "Attempt to access from a prohibited URL" ?
|
855 |
-
#: ../common.php:
|
856 |
msgid "Attempt to access prohibited URL"
|
857 |
msgstr "Poging verboden URL te benaderen"
|
858 |
|
859 |
-
#: ../common.php:
|
860 |
msgid "Attempt to log in with prohibited username"
|
861 |
msgstr "Inlogpoging met verboden gebruikersnaam"
|
862 |
|
@@ -892,15 +888,15 @@ msgstr "ReCAPTCHA inschakelen om nieuw WooCommerce wachtwoord op te vragen"
|
|
892 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
893 |
msgstr "ReCAPTCHA inschakelen voor WooCommerce inlogpagina"
|
894 |
|
895 |
-
#: ../common.php:
|
896 |
msgid "Request to the Google reCAPTCHA service failed"
|
897 |
msgstr "Verzoek aan Google ReCAPTCHA-service"
|
898 |
|
899 |
-
#: ../dashboard.php:
|
900 |
msgid "View all"
|
901 |
msgstr "Zie alle"
|
902 |
|
903 |
-
#: ../dashboard.php:
|
904 |
msgid "Recently locked out IP addresses"
|
905 |
msgstr "Recent buitengesloten IP-adressen"
|
906 |
|
@@ -912,7 +908,7 @@ msgstr "OK, zet ze allemaal vast"
|
|
912 |
msgid "NO, maybe later"
|
913 |
msgstr "Nee, misschien later"
|
914 |
|
915 |
-
#: ../dashboard.php:
|
916 |
#: php:244
|
917 |
msgid "Dashboard"
|
918 |
msgstr "Dashboard"
|
@@ -925,67 +921,67 @@ msgstr "Wil je WP Cerber nog beter maken?"
|
|
925 |
msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
|
926 |
msgstr "Sta WP Cerber toe om kwaadaardige IP-adressen te delen met Cerber Lab. Zo kunnen we algoritmes ontwikkelen om WordPress steeds te beschermen tegen nieuwe bedreigingen en botnets. Je kunt je toestemming elk moment intrekken."
|
927 |
|
928 |
-
#: ../dashboard.php:
|
929 |
msgid "IP address"
|
930 |
msgstr "IP-adres"
|
931 |
|
932 |
-
#: ../dashboard.php:
|
933 |
msgid "User login"
|
934 |
msgstr "Gebruikers-login"
|
935 |
|
936 |
-
#: ../dashboard.php:
|
937 |
msgid "User ID"
|
938 |
msgstr "Gebruikers-ID"
|
939 |
|
940 |
-
#: ../dashboard.php:
|
941 |
msgid "Export"
|
942 |
msgstr "Export"
|
943 |
|
944 |
-
#: ../dashboard.php:
|
945 |
msgid "Search for IP or username"
|
946 |
msgstr "Zoek IP of gebruikersnaam"
|
947 |
|
948 |
-
#: ../dashboard.php:
|
949 |
msgid "Filter"
|
950 |
msgstr "Filter"
|
951 |
|
952 |
-
#: ../dashboard.php:
|
953 |
msgid "Cerber Dashboard"
|
954 |
msgstr "Cerber Dashboard"
|
955 |
|
956 |
-
#: ../dashboard.php:
|
957 |
msgid "Cerber tools"
|
958 |
msgstr "Cerber tools"
|
959 |
|
960 |
-
#: ../dashboard.php:
|
961 |
msgid "Subscribe"
|
962 |
msgstr "Inschrijven"
|
963 |
|
964 |
-
#: ../dashboard.php:
|
965 |
msgid "Unsubscribe"
|
966 |
msgstr "Uitschrijven"
|
967 |
|
968 |
-
#: ../dashboard.php:
|
969 |
msgid "You've subscribed"
|
970 |
msgstr "Je bent ingeschreven"
|
971 |
|
972 |
-
#: ../dashboard.php:
|
973 |
msgid "You've unsubscribed"
|
974 |
msgstr "Je bent uitgeschreven"
|
975 |
|
976 |
-
#: ../wp-cerber.php:
|
977 |
msgid "A new activity has been recorded"
|
978 |
msgstr "Er is nieuwe activiteit waargenomen"
|
979 |
|
980 |
-
#: ../wp-cerber.php:
|
981 |
msgid "User"
|
982 |
msgstr "Gebruiker"
|
983 |
|
984 |
-
#: ../wp-cerber.php:
|
985 |
msgid "Search string"
|
986 |
msgstr "Zoekfrase"
|
987 |
|
988 |
-
#: ../wp-cerber.php:
|
989 |
msgid "To unsubscribe click here"
|
990 |
msgstr "Klik om uit te schrijven"
|
991 |
|
@@ -1001,7 +997,7 @@ msgstr "Datumformaat"
|
|
1001 |
msgid "if empty, the default format %s will be used"
|
1002 |
msgstr "indien leeg, gebruiken we standaardinstelling %s"
|
1003 |
|
1004 |
-
#: ../dashboard.php:
|
1005 |
msgid "Push notifications"
|
1006 |
msgstr "Push meldingen"
|
1007 |
|
@@ -1025,15 +1021,15 @@ msgstr "Geen apparaten gevonden"
|
|
1025 |
msgid "Not available"
|
1026 |
msgstr "Niet beschikbaar"
|
1027 |
|
1028 |
-
#: ../common.php:
|
1029 |
msgid "Password reset requested"
|
1030 |
msgstr "Wachtwoordvernieuwing aangevraagd"
|
1031 |
|
1032 |
-
#: ../common.php:
|
1033 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1034 |
msgstr "Grens bereikt van foutieve reCAPTCHA's"
|
1035 |
|
1036 |
-
#: ../common.php:
|
1037 |
msgid "%s ago"
|
1038 |
msgstr "%s geleden"
|
1039 |
|
@@ -1077,7 +1073,7 @@ msgstr "Sluit IP-adressen uit voor %s minuten na %s mislukte pogingen in %s minu
|
|
1077 |
msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
|
1078 |
msgstr "In de Citadelmodus kunnen alleen adressen van de Lijst Toegelaten IP-adressen inloggen. Heeft geen effect op reeds ingelogde gebruikers."
|
1079 |
|
1080 |
-
#: ../dashboard.php:
|
1081 |
msgid "Event"
|
1082 |
msgstr "Gebeurtenis"
|
1083 |
|
@@ -1093,24 +1089,24 @@ msgstr "Kwaadaardige IP-adressen gevonden"
|
|
1093 |
msgid "Lockouts occurred"
|
1094 |
msgstr "Uitsluitingen"
|
1095 |
|
1096 |
-
#: ../dashboard.php:
|
1097 |
msgid "All suspicious activity"
|
1098 |
msgstr "Alle verdachte activiteit"
|
1099 |
|
1100 |
-
#: ../wp-cerber.php:
|
1101 |
-
#: php:
|
1102 |
msgid "You are not allowed to register."
|
1103 |
msgstr "Je mag niet aanmelden."
|
1104 |
|
1105 |
-
#: ../common.php:
|
1106 |
msgid "Spam comment denied"
|
1107 |
msgstr "Spamreactie afgewezen."
|
1108 |
|
1109 |
-
#: ../common.php:
|
1110 |
msgid "Attempt to log in denied"
|
1111 |
msgstr "Inlogpoging afgewezen"
|
1112 |
|
1113 |
-
#: ../common.php:
|
1114 |
msgid "Attempt to register denied"
|
1115 |
msgstr "Aanmeldingspoging afgewezen"
|
1116 |
|
@@ -1118,11 +1114,11 @@ msgstr "Aanmeldingspoging afgewezen"
|
|
1118 |
msgid "Malicious activities mitigated"
|
1119 |
msgstr "Verdachte activiteiten afgevangen"
|
1120 |
|
1121 |
-
#: ../dashboard.php:
|
1122 |
msgid "Cerber antispam settings"
|
1123 |
msgstr "Cerber Antispam-instellingen"
|
1124 |
|
1125 |
-
#: ../dashboard.php:
|
1126 |
msgid "Antispam"
|
1127 |
msgstr "Antispam"
|
1128 |
|
@@ -1154,15 +1150,15 @@ msgstr "Diagnose"
|
|
1154 |
msgid "License"
|
1155 |
msgstr "Licentie"
|
1156 |
|
1157 |
-
#: ../cerber-tools.php:
|
1158 |
msgid "Antispam and bot detection settings"
|
1159 |
msgstr "Antispam- en botdetectie-instellingen"
|
1160 |
|
1161 |
-
#: ../wp-cerber.php:
|
1162 |
msgid "Sorry, human verification failed."
|
1163 |
msgstr "Sorry, de verificatie faalt."
|
1164 |
|
1165 |
-
#: ../common.php:
|
1166 |
msgid "Bot activity is detected"
|
1167 |
msgstr "Bot-activiteit getedecteerd"
|
1168 |
|
@@ -1182,7 +1178,7 @@ msgstr "Spamreacties weggooien"
|
|
1182 |
msgid "Move spam comments to trash after"
|
1183 |
msgstr "Verwijder spamreacties na"
|
1184 |
|
1185 |
-
#: ../common.php:
|
1186 |
msgid "Spam form submission denied"
|
1187 |
msgstr "Geweigerd wegens spam"
|
1188 |
|
@@ -1219,31 +1215,31 @@ msgstr "Zet bot-detectie uit voor ingelogde gebruikers"
|
|
1219 |
msgid "WP Cerber Security & Antispam"
|
1220 |
msgstr "WP Cerber Security & Antispam"
|
1221 |
|
1222 |
-
#: ../dashboard.php:95 ../dashboard.php:
|
1223 |
msgid "Country"
|
1224 |
msgstr "Land"
|
1225 |
|
1226 |
-
#: ../dashboard.php:
|
1227 |
msgid "All events"
|
1228 |
msgstr "Alle gebeurtenissen"
|
1229 |
|
1230 |
-
#: ../dashboard.php:
|
1231 |
msgid "Cerber Security Rules"
|
1232 |
msgstr "Cerber Beveiligingsregels"
|
1233 |
|
1234 |
-
#: ../dashboard.php:
|
1235 |
msgid "Security Rules"
|
1236 |
msgstr "Beveiligingsregels"
|
1237 |
|
1238 |
-
#: ../dashboard.php:
|
1239 |
msgid "Failed login attempts"
|
1240 |
msgstr "Gefaalde loginpogingen"
|
1241 |
|
1242 |
-
#: ../dashboard.php:
|
1243 |
msgid "Registered"
|
1244 |
msgstr "Geregistreerd"
|
1245 |
|
1246 |
-
#: ../dashboard.php:
|
1247 |
msgid "You"
|
1248 |
msgstr "Jij"
|
1249 |
|
@@ -1251,25 +1247,25 @@ msgstr "Jij"
|
|
1251 |
msgid "Spam form submissions denied"
|
1252 |
msgstr "Spam formulierafgifte afgewezen "
|
1253 |
|
1254 |
-
#: ../dashboard.php:
|
1255 |
msgid "Getting Started Guide"
|
1256 |
msgstr "Startgids"
|
1257 |
|
1258 |
-
#: ../dashboard.php:
|
1259 |
msgid "Countries"
|
1260 |
msgstr "Landen"
|
1261 |
|
1262 |
-
#: ../dashboard.php:
|
1263 |
msgid "Permitted for one country"
|
1264 |
msgid_plural "Permitted for %d countries"
|
1265 |
msgstr[0] "Toegestaan voor één land"
|
1266 |
msgstr[1] "Toegestaan voor %d landen"
|
1267 |
|
1268 |
-
#: ../dashboard.php:
|
1269 |
msgid "No rule"
|
1270 |
msgstr "Geen regel"
|
1271 |
|
1272 |
-
#: ../dashboard.php:
|
1273 |
msgid "Security rules have been updated"
|
1274 |
msgstr "Beveiligingsregels zijn vernieuwd"
|
1275 |
|
@@ -1278,47 +1274,47 @@ msgstr "Beveiligingsregels zijn vernieuwd"
|
|
1278 |
msgid "https://wpcerber.com"
|
1279 |
msgstr "https://wpcerber.com"
|
1280 |
|
1281 |
-
#: ../common.php:
|
1282 |
msgid "Form submission denied"
|
1283 |
msgstr "Formulierafgifte afgewezen"
|
1284 |
|
1285 |
-
#: ../common.php:
|
1286 |
msgid "Comment denied"
|
1287 |
msgstr "Commentaar afgewezen"
|
1288 |
|
1289 |
-
#: ../common.php:
|
1290 |
msgid "Request to REST API denied"
|
1291 |
msgstr "Verzoek aan REST API afgewezen"
|
1292 |
|
1293 |
-
#: ../common.php:
|
1294 |
msgid "XML-RPC request denied"
|
1295 |
msgstr "XML-RPC-verzoek afgewezen"
|
1296 |
|
1297 |
-
#: ../common.php:
|
1298 |
msgid "Bot detected"
|
1299 |
msgstr "Bot gedetecteerd"
|
1300 |
|
1301 |
-
#: ../common.php:
|
1302 |
msgid "Citadel mode is active"
|
1303 |
msgstr "Citadelmodus actief"
|
1304 |
|
1305 |
-
#: ../common.php:
|
1306 |
msgid "Malicious activity detected"
|
1307 |
msgstr "Verdachte activiteit gedetecteerd "
|
1308 |
|
1309 |
-
#: ../common.php:
|
1310 |
msgid "Blocked by country rule"
|
1311 |
msgstr "Geblokkeerd door landenregel"
|
1312 |
|
1313 |
-
#: ../common.php:
|
1314 |
msgid "Limit reached"
|
1315 |
msgstr "Limiet bereikt"
|
1316 |
|
1317 |
-
#: ../common.php:
|
1318 |
msgid "Multiple suspicious activities"
|
1319 |
msgstr "Meerdere verdachte activiteiten"
|
1320 |
|
1321 |
-
#: ../common.php:
|
1322 |
msgid "Multiple suspicious activities were detected"
|
1323 |
msgstr "Meerdere verdachte activiteiten gedetecteerd"
|
1324 |
|
@@ -1358,35 +1354,35 @@ msgstr "Toegestane queries"
|
|
1358 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1359 |
msgstr "%s toegestane registraties in %s minuten van één IP"
|
1360 |
|
1361 |
-
#: ../dashboard.php:
|
1362 |
msgid "Start typing here to find a country"
|
1363 |
msgstr "Begin te typen om een land te vinden"
|
1364 |
|
1365 |
-
#: ../dashboard.php:
|
1366 |
msgid "Click on a country name to add it to the list of selected countries"
|
1367 |
msgstr "Klik op een landnaam om toe te voegen aan de lijst gekozen landen"
|
1368 |
|
1369 |
-
#: ../dashboard.php:
|
1370 |
msgid "Submit forms"
|
1371 |
msgstr "Formulieren versturen"
|
1372 |
|
1373 |
-
#: ../dashboard.php:
|
1374 |
msgid "Post comments"
|
1375 |
msgstr "Commentaar plaatsen"
|
1376 |
|
1377 |
-
#: ../dashboard.php:
|
1378 |
msgid "Log in to the website"
|
1379 |
msgstr "Inloggen bij de website"
|
1380 |
|
1381 |
-
#: ../dashboard.php:
|
1382 |
msgid "Register on the website"
|
1383 |
msgstr "Registreren bij de website"
|
1384 |
|
1385 |
-
#: ../dashboard.php:
|
1386 |
msgid "Use XML-RPC"
|
1387 |
msgstr "Benut XML-RPC"
|
1388 |
|
1389 |
-
#: ../dashboard.php:
|
1390 |
msgid "Use REST API"
|
1391 |
msgstr "Benut REST API"
|
1392 |
|
@@ -1398,11 +1394,11 @@ msgstr "Volledig negeren"
|
|
1398 |
msgid "Mark it as spam"
|
1399 |
msgstr "Markeren als spam"
|
1400 |
|
1401 |
-
#: ../dashboard.php:
|
1402 |
msgid "in the last 24 hours"
|
1403 |
msgstr "in de afgelopen 24 uur"
|
1404 |
|
1405 |
-
#: ../dashboard.php:
|
1406 |
msgid "Main settings"
|
1407 |
msgstr "Hoofdinstellingen"
|
1408 |
|
@@ -1448,23 +1444,23 @@ msgctxt "preposition of time"
|
|
1448 |
msgid "at"
|
1449 |
msgstr "op"
|
1450 |
|
1451 |
-
#: ../wp-cerber.php:
|
1452 |
msgid "Weekly report"
|
1453 |
msgstr "Weekrapport"
|
1454 |
|
1455 |
-
#: ../wp-cerber.php:
|
1456 |
msgid "To change reporting settings visit"
|
1457 |
msgstr "Om je rapportageinstellingen aan te passen, ga naar"
|
1458 |
|
1459 |
-
#: ../wp-cerber.php:
|
1460 |
msgid "Your login page:"
|
1461 |
msgstr "Je login-pagina:"
|
1462 |
|
1463 |
-
#: ../wp-cerber.php:
|
1464 |
msgid "Your license is valid until"
|
1465 |
msgstr "Je licentie geldt tot"
|
1466 |
|
1467 |
-
#: ../wp-cerber.php:
|
1468 |
msgid "Activity details"
|
1469 |
msgstr "Details van activiteiten"
|
1470 |
|
@@ -1472,30 +1468,30 @@ msgstr "Details van activiteiten"
|
|
1472 |
msgid "Click to send now"
|
1473 |
msgstr "Klik om nu te versturen"
|
1474 |
|
1475 |
-
#: ../wp-cerber.php:
|
1476 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1477 |
msgstr ">>> Vertaler van WP Cerber? Om een gratis Pro-licentie te krijgen, geef je contactinformatie op bij: https://wpcerber.com/contact/"
|
1478 |
|
1479 |
-
#: ../dashboard.php:
|
1480 |
msgid "Email has been sent to"
|
1481 |
msgstr "E-mail is verzonden naar"
|
1482 |
|
1483 |
-
#: ../dashboard.php:
|
1484 |
msgid "Unable to send email to"
|
1485 |
msgstr "Kan geen e-mail verzenden naar"
|
1486 |
|
1487 |
-
#: ../dashboard.php:
|
1488 |
msgid "Not permitted for one country"
|
1489 |
msgid_plural "Not permitted for %d countries"
|
1490 |
msgstr[0] "Niet toegestaan voor één land"
|
1491 |
msgstr[1] "Niet toegestaan voor %d landen"
|
1492 |
|
1493 |
-
#: ../dashboard.php:
|
1494 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1495 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
1496 |
msgstr "Gekozen landen mogen %s, overige landen niet"
|
1497 |
|
1498 |
-
#: ../dashboard.php:
|
1499 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1500 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
1501 |
msgstr "Gekozen landen mogen niet %s, overige landen wel"
|
@@ -1505,7 +1501,7 @@ msgstr "Gekozen landen mogen niet %s, overige landen wel"
|
|
1505 |
msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1506 |
msgstr "Beschermt site tegen brute force-aanvallen, bots en hackers. Spambescherming met Cerber's antispamprogramma en reCAPTCHA. Uitgebreid beheer van gebruikersactiviteit. Beperk login op IP-adres. Limiteer login-pogingen. Meer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1507 |
|
1508 |
-
#: ../wp-cerber.php:
|
1509 |
msgid "Weekly Report"
|
1510 |
msgstr "Weekrapport"
|
1511 |
|
@@ -1529,11 +1525,32 @@ msgstr "We gebruiken de email van de meldingsinstellingen indien leeg"
|
|
1529 |
msgid "Enable reporting"
|
1530 |
msgstr "Rapporteren aanzetten"
|
1531 |
|
1532 |
-
|
|
|
1533 |
msgid "Your last sign-in was %s from %s"
|
1534 |
-
msgstr ""
|
1535 |
|
1536 |
-
#: ../wp-cerber.php:
|
1537 |
msgid "Attempts to log in with non-existent username"
|
1538 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1539 |
|
72 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
73 |
msgstr "Directe toegang tot wp-login.php blokkeren en HTTP 404 Not Found Error teruggeven"
|
74 |
|
75 |
+
#: ../dashboard.php:1109 ../settings.php:86
|
76 |
msgid "Citadel mode"
|
77 |
msgstr "Citadelmodus"
|
78 |
|
84 |
msgid "Duration"
|
85 |
msgstr "Duur"
|
86 |
|
87 |
+
#: ../wp-cerber.php:3742 ../settings.php:72 ../settings.php:89 ../settings.php:262
|
88 |
msgid "Notifications"
|
89 |
msgstr "Meldingen"
|
90 |
|
92 |
msgid "Send notification to admin email"
|
93 |
msgstr "Melding versturen naar admin e-mailadres"
|
94 |
|
95 |
+
#: ../dashboard.php:1118 ../wp-cerber.php:3739 ../settings.php:255 ../cerber-
|
96 |
+
#: tools.php:88 ../cerber-tools.php:97 ../cerber-tools.php:178
|
97 |
msgid "Access Lists"
|
98 |
msgstr "Toegangslijsten"
|
99 |
|
100 |
+
#: ../dashboard.php:1116 ../dashboard.php:1312 ../wp-cerber.php:3503 ../settings.
|
101 |
#: php:91 ../settings.php:246
|
102 |
msgid "Activity"
|
103 |
msgstr "Activiteit"
|
104 |
|
105 |
+
#: ../dashboard.php:1117 ../settings.php:250
|
106 |
msgid "Lockouts"
|
107 |
msgstr "Uitsluitingen"
|
108 |
|
114 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
115 |
msgstr "Aanzetten na %s mislukte inlogpogingen binnen %s minuten"
|
116 |
|
117 |
+
#: ../dashboard.php:93 ../dashboard.php:631 ../wp-cerber.php:3512
|
118 |
msgid "IP"
|
119 |
msgstr "IP"
|
120 |
|
121 |
+
#: ../dashboard.php:476 ../dashboard.php:634
|
122 |
msgid "Date"
|
123 |
msgstr "Datum"
|
124 |
|
125 |
+
#: ../dashboard.php:476 ../dashboard.php:636
|
126 |
msgid "Local User"
|
127 |
msgstr "Lokale gebruiker"
|
128 |
|
129 |
+
#: ../dashboard.php:476 ../dashboard.php:637 ../wp-cerber.php:3520
|
130 |
msgid "Username used"
|
131 |
msgstr "Toegepaste gebruikersnaam"
|
132 |
|
134 |
msgid "Showing last %d records from %d"
|
135 |
msgstr "Laatste %d records van %d"
|
136 |
|
137 |
+
#: ../common.php:521
|
138 |
msgid "Logged in"
|
139 |
msgstr "Ingelogd"
|
140 |
|
141 |
+
#: ../common.php:522
|
142 |
msgid "Logged out"
|
143 |
msgstr "Uitgelogd"
|
144 |
|
145 |
+
#: ../common.php:523
|
146 |
msgid "Login failed"
|
147 |
msgstr "Inloggen mislukt"
|
148 |
|
149 |
+
#: ../common.php:526
|
150 |
msgid "IP blocked"
|
151 |
msgstr "IP geblokkeerd"
|
152 |
|
153 |
+
#: ../common.php:527
|
154 |
msgid "Subnet blocked"
|
155 |
msgstr "Subnet geblokkeerd"
|
156 |
|
157 |
+
#: ../common.php:529
|
158 |
msgid "Citadel activated!"
|
159 |
msgstr "Citadelmodus geactiveerd!"
|
160 |
|
161 |
+
#: ../dashboard.php:612 ../dashboard.php:816 ../common.php:565
|
162 |
#, fuzzy
|
163 |
msgid "Locked out"
|
164 |
msgstr "Buitengesloten"
|
165 |
|
166 |
+
#: ../common.php:566
|
167 |
msgid "IP blacklisted"
|
168 |
msgstr "IP uitgesloten"
|
169 |
|
170 |
+
#: ../common.php:544
|
171 |
msgid "Password changed"
|
172 |
msgstr "Wachtwoord veranderd"
|
173 |
|
174 |
+
#: ../dashboard.php:86 ../dashboard.php:158
|
175 |
msgid "Remove"
|
176 |
msgstr "Verwijderen"
|
177 |
|
178 |
+
#: ../dashboard.php:387
|
179 |
msgid "Lockout for %s was removed"
|
180 |
msgstr "Uitsluiting voor %s is verwijderd"
|
181 |
|
182 |
+
#: ../dashboard.php:131 ../dashboard.php:607 ../dashboard.php:811 ../dashboard.
|
183 |
+
#: php:1107 ../wp-cerber.php:3731 ../settings.php:71 ../settings.php:216
|
184 |
#, fuzzy
|
185 |
msgid "White IP Access List"
|
186 |
msgstr "Toegelaten IP-adressen"
|
187 |
|
188 |
+
#: ../dashboard.php:133 ../dashboard.php:608 ../dashboard.php:813 ../dashboard.
|
189 |
+
#: php:1108
|
190 |
#, fuzzy
|
191 |
msgid "Black IP Access List"
|
192 |
msgstr "Uitgesloten IP-adressen"
|
193 |
|
194 |
+
#: ../dashboard.php:163
|
195 |
msgid "List is empty"
|
196 |
msgstr "Lijst is leeg"
|
197 |
|
198 |
+
#: ../dashboard.php:200
|
199 |
#, fuzzy
|
200 |
msgid "Address %s was added to White IP Access List"
|
201 |
msgstr "Adres %s toegevoegd aan de Lijst Toegelaten IP-adressen"
|
202 |
|
203 |
+
#: ../dashboard.php:214
|
204 |
#, fuzzy
|
205 |
msgid "Address %s was added to Black IP Access List"
|
206 |
msgstr "Adres %s toegevoegd aan de Lijst Uitgesloten IP-adressen "
|
207 |
|
208 |
+
#: ../wp-cerber.php:2995
|
209 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
210 |
msgstr "Citadelmodus geactiveerd na %d mislukte inlogpogingen binnen %d minuten"
|
211 |
|
212 |
+
#: ../dashboard.php:1454
|
213 |
#, fuzzy
|
214 |
msgid "View Activity"
|
215 |
msgstr "Activiteit bekijken"
|
218 |
msgid "Settings"
|
219 |
msgstr "Instellingen"
|
220 |
|
221 |
+
#: ../dashboard.php:973
|
222 |
#, fuzzy
|
223 |
msgid "Last login"
|
224 |
msgstr "Laatst ingelogd"
|
225 |
|
226 |
+
#: ../dashboard.php:1006 ../dashboard.php:1090
|
227 |
msgid "Never"
|
228 |
msgstr "Nooit"
|
229 |
|
230 |
+
#: ../dashboard.php:1356
|
231 |
msgid "Are you sure?"
|
232 |
msgstr "Weet je het zeker?"
|
233 |
|
234 |
+
#: ../dashboard.php:1164 ../settings.php:73
|
235 |
msgid "My site is behind a reverse proxy"
|
236 |
msgstr "Mijn website draait achter een reverse proxy"
|
237 |
|
259 |
msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
|
260 |
msgstr "Pas op als je deze opties inschakelt! Vergeet je de aangepaste inlog-URL, dan kun je niet meer inloggen."
|
261 |
|
262 |
+
#: ../wp-cerber.php:3738 ../settings.php:252
|
263 |
msgid "Main Settings"
|
264 |
msgstr "Hoofdinstellingen"
|
265 |
|
271 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
272 |
msgstr "Uitsluitingsduur ophogen naar %s uren na %s uitsluitingen in de laatste %s uren"
|
273 |
|
274 |
+
#: ../wp-cerber.php:237
|
275 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
276 |
msgstr "Je hebt geen toestemming om in te loggen. Vraag je beheerder om informatie."
|
277 |
|
278 |
+
#: ../wp-cerber.php:243
|
279 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
280 |
msgstr "Je hebt de limiet voor inlogpogingen bereikt. Probeer het opnieuw na %d minuten."
|
281 |
|
282 |
+
#: ../wp-cerber.php:262
|
283 |
msgid "You have only one attempt remaining."
|
284 |
msgid_plural "You have %d attempts remaining."
|
285 |
msgstr[0] "Slechts één inlogpoging resterend!"
|
286 |
msgstr[1] "%s inlogpogingen resterend."
|
287 |
|
288 |
+
#: ../dashboard.php:658
|
289 |
msgid "No activity has been logged."
|
290 |
msgstr "Geen activiteit waargenomen."
|
291 |
|
306 |
msgid "Your IP"
|
307 |
msgstr "Jouw IP"
|
308 |
|
309 |
+
#: ../wp-cerber.php:2996
|
|
|
|
|
|
|
|
|
310 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
311 |
msgstr "Laatste mislukte inlogpoging was op %s vanaf IP %s op gebruiker %s."
|
312 |
|
313 |
+
#: ../wp-cerber.php:3714
|
314 |
msgid "Can't activate WP Cerber due to a database error."
|
315 |
msgstr "Kan WP Cerber niet activeren door een fout in de database"
|
316 |
|
322 |
msgid "days"
|
323 |
msgstr "dagen"
|
324 |
|
325 |
+
#: ../dashboard.php:1060
|
326 |
msgid "Cerber Quick View"
|
327 |
msgstr "Cerber Quick View"
|
328 |
|
334 |
msgid "To view activity, click on the IP"
|
335 |
msgstr "Klik op het IP om activiteiten te bekijken"
|
336 |
|
337 |
+
#: ../dashboard.php:158 ../dashboard.php:843
|
338 |
msgid "Check for activity"
|
339 |
msgstr "Check voor activiteit"
|
340 |
|
350 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
351 |
msgstr "Let op! Je hebt de inlog-URL veranderd. De nieuwe inlog-URL is"
|
352 |
|
353 |
+
#: ../dashboard.php:972
|
354 |
msgid "Comments"
|
355 |
msgstr "Reacties"
|
356 |
|
357 |
+
#: ../common.php:785
|
358 |
msgid "Update to version %s of WP Cerber"
|
359 |
msgstr "WP Cerber updaten naar versie %s"
|
360 |
|
361 |
+
#: ../wp-cerber.php:2997 ../wp-cerber.php:3544
|
362 |
msgid "View activity in dashboard"
|
363 |
msgstr "Activiteiten bekijken in dashboard"
|
364 |
|
365 |
+
#: ../wp-cerber.php:3027
|
366 |
msgid "Number of active lockouts"
|
367 |
msgstr "Aantal actieve uitsluitingen"
|
368 |
|
369 |
+
#: ../wp-cerber.php:3031
|
370 |
msgid "View lockouts in dashboard"
|
371 |
msgstr "Uitsluitingen bekijken in dashboard"
|
372 |
|
373 |
+
#: ../wp-cerber.php:3113
|
374 |
msgid "This message was sent by"
|
375 |
msgstr "Dit bericht is verzonden door"
|
376 |
|
377 |
+
#: ../dashboard.php:901 ../cerber-tools.php:43
|
378 |
msgid "Tools"
|
379 |
msgstr "Gereedschap"
|
380 |
|
418 |
msgid "Upload file"
|
419 |
msgstr "Bestand uploaden"
|
420 |
|
421 |
+
#: ../cerber-tools.php:145
|
422 |
msgid "No file was uploaded or file is corrupted"
|
423 |
msgstr "Geen bestand geüpload of bestand is beschadigd."
|
424 |
|
425 |
+
#: ../cerber-tools.php:178
|
426 |
msgid "Error while updating"
|
427 |
msgstr "Foutmelding tijdens updaten"
|
428 |
|
429 |
+
#: ../cerber-tools.php:181
|
430 |
msgid "Settings has imported successfully from"
|
431 |
msgstr "Instellingen geïmporteerd van"
|
432 |
|
433 |
+
#: ../cerber-tools.php:185
|
434 |
msgid "Error while parsing file"
|
435 |
msgstr "Fout bij verwerken bestand"
|
436 |
|
437 |
+
#: ../dashboard.php:94 ../dashboard.php:632
|
438 |
msgid "Hostname"
|
439 |
msgstr "Hostnaam"
|
440 |
|
441 |
+
#: ../dashboard.php:353
|
442 |
msgid "unknown"
|
443 |
msgstr "onbekend"
|
444 |
|
447 |
msgid "Keep records for"
|
448 |
msgstr "Gegevens behouden tot"
|
449 |
|
450 |
+
#: ../dashboard.php:1094
|
451 |
msgid "active"
|
452 |
msgstr "actief"
|
453 |
|
454 |
+
#: ../dashboard.php:1094
|
455 |
msgid "deactivate"
|
456 |
msgstr "deactiveren"
|
457 |
|
458 |
+
#: ../dashboard.php:1096
|
459 |
msgid "not active"
|
460 |
msgstr "niet actief"
|
461 |
|
462 |
+
#: ../dashboard.php:1097
|
463 |
msgid "disabled"
|
464 |
msgstr "gedeactiveerd"
|
465 |
|
466 |
+
#: ../dashboard.php:1102
|
467 |
msgid "failed attempts"
|
468 |
msgstr "mislukte pogingen"
|
469 |
|
470 |
+
#: ../dashboard.php:1102 ../dashboard.php:1103
|
471 |
msgid "in 24 hours"
|
472 |
msgstr "in 24 uur"
|
473 |
|
474 |
+
#: ../dashboard.php:1102 ../dashboard.php:1103
|
475 |
msgid "view all"
|
476 |
msgstr "bekijk alles"
|
477 |
|
478 |
+
#: ../dashboard.php:1103
|
479 |
msgid "lockouts"
|
480 |
msgstr "uitsluitingen"
|
481 |
|
482 |
+
#: ../dashboard.php:1105
|
483 |
msgid "Lockouts at the moment"
|
484 |
msgstr "Uitsluitingen op dit moment"
|
485 |
|
486 |
+
#: ../dashboard.php:1106
|
487 |
#, fuzzy
|
488 |
msgid "Last lockout"
|
489 |
msgstr "Recente uitsluiting"
|
490 |
|
491 |
+
#: ../dashboard.php:1107 ../dashboard.php:1108 ../dashboard.php:1620
|
492 |
msgid "entry"
|
493 |
msgid_plural "entries"
|
494 |
msgstr[0] "item"
|
495 |
msgstr[1] "items"
|
496 |
|
497 |
+
#: ../dashboard.php:1351
|
498 |
#, fuzzy
|
499 |
msgid "Confused about some settings?"
|
500 |
msgstr "Verward over sommige instellingen?"
|
501 |
|
502 |
+
#: ../dashboard.php:1352
|
503 |
#, fuzzy
|
504 |
msgid "You can easily load default recommended settings using button below"
|
505 |
msgstr "Met onderstaande knop laad je de aanbevolen instellingen"
|
506 |
|
507 |
+
#: ../dashboard.php:1354
|
508 |
#, fuzzy
|
509 |
msgid "Load default settings"
|
510 |
msgstr "Aanbevolen instellingen laden"
|
511 |
|
512 |
+
#: ../dashboard.php:1362
|
513 |
msgid "doesn't affect Custom login URL and Access Lists"
|
514 |
msgstr "heeft geen invloed op Aangepaste inlog-URL en Toegangslijsten"
|
515 |
|
516 |
+
#: ../common.php:778
|
517 |
msgid "New version is available"
|
518 |
msgstr "Nieuwe versie beschikbaar"
|
519 |
|
520 |
#. Name of the plugin
|
521 |
+
#: ../dashboard.php:892 ../dashboard.php:911
|
522 |
msgid "WP Cerber"
|
523 |
msgstr "WP Cerber"
|
524 |
|
525 |
+
#: ../wp-cerber.php:2971
|
526 |
msgid "WP Cerber notify"
|
527 |
msgstr "WP Cerber melding"
|
528 |
|
529 |
+
#: ../wp-cerber.php:2993
|
530 |
msgid "Citadel mode is activated"
|
531 |
msgstr "Citadel modus is actief"
|
532 |
|
533 |
+
#: ../wp-cerber.php:3067
|
534 |
msgid "New Custom login URL"
|
535 |
msgstr "Nieuwe Aangepaste inlog-URL"
|
536 |
|
537 |
+
#: ../wp-cerber.php:3701
|
538 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
539 |
msgstr "WP Cerber vereist PHP %s of hoger. Je gebruikt nu"
|
540 |
|
541 |
+
#: ../wp-cerber.php:3705
|
542 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
543 |
msgstr "WP Cerber vereist WordPress %s of hoger. Je gebruikt nu"
|
544 |
|
550 |
msgid "Write failed login attempts to the file"
|
551 |
msgstr "Mislukte pogingen opslaan in bestand"
|
552 |
|
553 |
+
#: ../dashboard.php:1453
|
554 |
msgid "Deactivate"
|
555 |
msgstr "Deactiveren"
|
556 |
|
557 |
+
#: ../dashboard.php:97 ../wp-cerber.php:3029
|
558 |
msgid "Reason"
|
559 |
msgstr "Reden"
|
560 |
|
561 |
+
#: ../dashboard.php:168
|
562 |
msgid "Add IP to the list"
|
563 |
msgstr "IP-adres toevoegen aan lijst"
|
564 |
|
565 |
+
#: ../dashboard.php:861
|
566 |
msgid "Add IP to the Black List"
|
567 |
msgstr "IP-adres toevoegen aan Uitsluitingslijst"
|
568 |
|
569 |
+
#: ../common.php:596
|
570 |
msgid "Attempt to access"
|
571 |
msgstr "Poging tot toegang"
|
572 |
|
573 |
+
#: ../common.php:595
|
574 |
msgid "Limit on login attempts is reached"
|
575 |
msgstr "Limiet voor aantal inlogpogingen is bereikt"
|
576 |
|
577 |
+
#: ../common.php:552 ../common.php:597
|
578 |
msgid "Attempt to log in with non-existent username"
|
579 |
msgstr "Inlogpoging met onbekende gebruikersnaam"
|
580 |
|
581 |
+
#: ../wp-cerber.php:3028
|
582 |
msgid "Last lockout was added: %s for IP %s"
|
583 |
msgstr "Laatste uitsluiting was toegevoegd: %s voor IP-adres %s"
|
584 |
|
585 |
+
#: ../wp-cerber.php:3741 ../settings.php:257
|
586 |
msgid "Hardening"
|
587 |
msgstr "Versterking"
|
588 |
|
589 |
+
#: ../dashboard.php:839
|
590 |
msgid "Abuse email:"
|
591 |
msgstr "E-mail voor misbruik:"
|
592 |
|
642 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
643 |
msgstr "<strong>LET OP</strong>: voer een geldig e-mailadres in."
|
644 |
|
645 |
+
#: ../wp-cerber.php:3059 ../wp-cerber.php:3730
|
646 |
msgid "WP Cerber is now active and has started protecting your site"
|
647 |
msgstr "WP Cerber is actief en beschermt nu je website"
|
648 |
|
654 |
msgid "Nobody can log in or register from these IPs"
|
655 |
msgstr "Niemand kan aanmelden of inloggen vanaf deze IP's"
|
656 |
|
657 |
+
#: ../dashboard.php:194 ../dashboard.php:206
|
658 |
msgid "Incorrect IP address or IP range"
|
659 |
msgstr "IP-adres of -reeks is incorrect"
|
660 |
|
661 |
+
#: ../dashboard.php:404 ../dashboard.php:1469
|
662 |
msgid "Settings saved"
|
663 |
msgstr "Instellingen opgeslagen"
|
664 |
|
665 |
+
#: ../dashboard.php:843
|
666 |
msgid "Network:"
|
667 |
msgstr "Netwerk:"
|
668 |
|
669 |
+
#: ../dashboard.php:857
|
670 |
msgid "Add network to the Black List"
|
671 |
msgstr "Netwerk toevoegen aan Uitsluitingslijst"
|
672 |
|
673 |
+
#: ../dashboard.php:1452
|
674 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
675 |
msgstr "Let op! Citadelmodus is actief; niemand kan inloggen."
|
676 |
|
677 |
+
#: ../dashboard.php:311 ../whois.php:221 ../whois.php:252 ../common.php:594
|
678 |
msgid "Unknown"
|
679 |
msgstr "Onbekend"
|
680 |
|
683 |
msgid "Gregory"
|
684 |
msgstr "Gregory"
|
685 |
|
686 |
+
#: ../wp-cerber.php:545 ../wp-cerber.php:557 ../wp-cerber.php:564 ../wp-cerber.
|
687 |
+
#: php:743 ../wp-cerber.php:959 ../wp-cerber.php:965 ../wp-cerber.php:970 ../wp-
|
688 |
+
#: cerber.php:975 ../wp-cerber.php:981 ../wp-cerber.php:988 ../wp-cerber.php:1088
|
689 |
+
#: ../wp-cerber.php:1225 ../common.php:173 ../common.php:227 ../common.php:231 ..
|
690 |
+
#: /settings.php:709
|
691 |
msgid "ERROR:"
|
692 |
msgstr "FOUT:"
|
693 |
|
694 |
+
#: ../wp-cerber.php:574
|
695 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
696 |
msgstr "Menselijke verificatie mislukt. Klik het vierkant in onderstaand reCAPTCHA-blok."
|
697 |
|
698 |
+
#: ../wp-cerber.php:755
|
699 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
700 |
msgstr "<strong>LET OP</strong>: je geeft een foutief wachtwoord op voor gebruiker %s."
|
701 |
|
702 |
+
#: ../wp-cerber.php:976
|
703 |
msgid "Username is not allowed. Please choose another one."
|
704 |
msgstr "Gebruikersnaam is niet toegestaan, kies een andere."
|
705 |
|
706 |
+
#: ../wp-cerber.php:3022
|
707 |
msgid "unspecified"
|
708 |
msgstr "niet gespecificeerd"
|
709 |
|
710 |
+
#: ../wp-cerber.php:3025
|
711 |
msgid "Number of lockouts is increasing"
|
712 |
msgstr "Aantal uitsluitingen loopt op"
|
713 |
|
714 |
+
#: ../wp-cerber.php:3030
|
715 |
msgid "View activity for this IP"
|
716 |
msgstr "Bekijk activiteit voor dit adres"
|
717 |
|
718 |
+
#: ../wp-cerber.php:3034 ../wp-cerber.php:3036
|
719 |
msgid "A new version of WP Cerber is available to install"
|
720 |
msgstr "Nieuwe versie WP Cerber is klaar voor installatie"
|
721 |
|
722 |
+
#: ../wp-cerber.php:3035
|
723 |
msgid "Hi!"
|
724 |
msgstr "Hallo!"
|
725 |
|
726 |
+
#: ../wp-cerber.php:3038 ../wp-cerber.php:3049
|
727 |
msgid "Website"
|
728 |
msgstr "Website"
|
729 |
|
730 |
+
#: ../wp-cerber.php:3041 ../wp-cerber.php:3042
|
731 |
msgid "The WP Cerber security plugin has been deactivated"
|
732 |
msgstr "WP Cerber is gedeactiveerd"
|
733 |
|
734 |
+
#: ../wp-cerber.php:3044
|
735 |
msgid "Not logged in"
|
736 |
msgstr "Niet ingelogd"
|
737 |
|
738 |
+
#: ../wp-cerber.php:3050
|
739 |
msgid "By user"
|
740 |
msgstr "Door gebruiker"
|
741 |
|
742 |
+
#: ../wp-cerber.php:3051
|
743 |
msgid "From IP address"
|
744 |
msgstr "Van IP-adres"
|
745 |
|
746 |
+
#: ../wp-cerber.php:3054
|
747 |
msgid "From country"
|
748 |
msgstr "Uit land"
|
749 |
|
750 |
+
#: ../wp-cerber.php:3058
|
751 |
msgid "The WP Cerber security plugin is now active"
|
752 |
msgstr "WP Cerber is actief"
|
753 |
|
754 |
+
#: ../wp-cerber.php:3731
|
755 |
msgid "Your IP address is added to the"
|
756 |
msgstr "Je IP-adres is toegevoegd aan de "
|
757 |
|
758 |
+
#: ../wp-cerber.php:3743
|
759 |
msgid "Import settings"
|
760 |
msgstr "Instellingen importeren"
|
761 |
|
823 |
msgid "Know more"
|
824 |
msgstr "Meer weten"
|
825 |
|
826 |
+
#: ../dashboard.php:892 ../settings.php:239
|
827 |
msgid "WP Cerber Security"
|
828 |
msgstr "WP Cerber Security"
|
829 |
|
831 |
msgid "Users"
|
832 |
msgstr "Gebruikers"
|
833 |
|
834 |
+
#: ../common.php:519
|
835 |
msgid "User created"
|
836 |
msgstr "Gebruiker toegevoegd"
|
837 |
|
838 |
+
#: ../dashboard.php:1306 ../common.php:520
|
839 |
msgid "User registered"
|
840 |
msgstr "Gebruiker geregistreerd"
|
841 |
|
842 |
+
#: ../common.php:547
|
843 |
msgid "reCAPTCHA verification failed"
|
844 |
msgstr "reCAPTCHA verificatie mislukt"
|
845 |
|
846 |
+
#: ../common.php:548
|
847 |
msgid "reCAPTCHA settings are incorrect"
|
848 |
msgstr "foutieve reCAPTCHA-instellingen"
|
849 |
|
850 |
#. I see this line used where someone tries to log in from a blocked URL. So shouldn't this line be "Attempt to access from a prohibited URL" ?
|
851 |
+
#: ../common.php:551
|
852 |
msgid "Attempt to access prohibited URL"
|
853 |
msgstr "Poging verboden URL te benaderen"
|
854 |
|
855 |
+
#: ../common.php:553 ../common.php:598
|
856 |
msgid "Attempt to log in with prohibited username"
|
857 |
msgstr "Inlogpoging met verboden gebruikersnaam"
|
858 |
|
888 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
889 |
msgstr "ReCAPTCHA inschakelen voor WooCommerce inlogpagina"
|
890 |
|
891 |
+
#: ../common.php:549
|
892 |
msgid "Request to the Google reCAPTCHA service failed"
|
893 |
msgstr "Verzoek aan Google ReCAPTCHA-service"
|
894 |
|
895 |
+
#: ../dashboard.php:1298 ../dashboard.php:1327
|
896 |
msgid "View all"
|
897 |
msgstr "Zie alle"
|
898 |
|
899 |
+
#: ../dashboard.php:1328
|
900 |
msgid "Recently locked out IP addresses"
|
901 |
msgstr "Recent buitengesloten IP-adressen"
|
902 |
|
908 |
msgid "NO, maybe later"
|
909 |
msgstr "Nee, misschien later"
|
910 |
|
911 |
+
#: ../dashboard.php:894 ../dashboard.php:1115 ../dashboard.php:1640 ../settings.
|
912 |
#: php:244
|
913 |
msgid "Dashboard"
|
914 |
msgstr "Dashboard"
|
921 |
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."
|
922 |
msgstr "Sta WP Cerber toe om kwaadaardige IP-adressen te delen met Cerber Lab. Zo kunnen we algoritmes ontwikkelen om WordPress steeds te beschermen tegen nieuwe bedreigingen en botnets. Je kunt je toestemming elk moment intrekken."
|
923 |
|
924 |
+
#: ../dashboard.php:476
|
925 |
msgid "IP address"
|
926 |
msgstr "IP-adres"
|
927 |
|
928 |
+
#: ../dashboard.php:476
|
929 |
msgid "User login"
|
930 |
msgstr "Gebruikers-login"
|
931 |
|
932 |
+
#: ../dashboard.php:476
|
933 |
msgid "User ID"
|
934 |
msgstr "Gebruikers-ID"
|
935 |
|
936 |
+
#: ../dashboard.php:654
|
937 |
msgid "Export"
|
938 |
msgstr "Export"
|
939 |
|
940 |
+
#: ../dashboard.php:673
|
941 |
msgid "Search for IP or username"
|
942 |
msgstr "Zoek IP of gebruikersnaam"
|
943 |
|
944 |
+
#: ../dashboard.php:673
|
945 |
msgid "Filter"
|
946 |
msgstr "Filter"
|
947 |
|
948 |
+
#: ../dashboard.php:894
|
949 |
msgid "Cerber Dashboard"
|
950 |
msgstr "Cerber Dashboard"
|
951 |
|
952 |
+
#: ../dashboard.php:901
|
953 |
msgid "Cerber tools"
|
954 |
msgstr "Cerber tools"
|
955 |
|
956 |
+
#: ../dashboard.php:1553
|
957 |
msgid "Subscribe"
|
958 |
msgstr "Inschrijven"
|
959 |
|
960 |
+
#: ../dashboard.php:1554 ../cerber-tools.php:243
|
961 |
msgid "Unsubscribe"
|
962 |
msgstr "Uitschrijven"
|
963 |
|
964 |
+
#: ../dashboard.php:1582
|
965 |
msgid "You've subscribed"
|
966 |
msgstr "Je bent ingeschreven"
|
967 |
|
968 |
+
#: ../dashboard.php:1585
|
969 |
msgid "You've unsubscribed"
|
970 |
msgstr "Je bent uitgeschreven"
|
971 |
|
972 |
+
#: ../wp-cerber.php:3071 ../wp-cerber.php:3072
|
973 |
msgid "A new activity has been recorded"
|
974 |
msgstr "Er is nieuwe activiteit waargenomen"
|
975 |
|
976 |
+
#: ../wp-cerber.php:3516
|
977 |
msgid "User"
|
978 |
msgstr "Gebruiker"
|
979 |
|
980 |
+
#: ../wp-cerber.php:3524
|
981 |
msgid "Search string"
|
982 |
msgstr "Zoekfrase"
|
983 |
|
984 |
+
#: ../wp-cerber.php:3545
|
985 |
msgid "To unsubscribe click here"
|
986 |
msgstr "Klik om uit te schrijven"
|
987 |
|
997 |
msgid "if empty, the default format %s will be used"
|
998 |
msgstr "indien leeg, gebruiken we standaardinstelling %s"
|
999 |
|
1000 |
+
#: ../dashboard.php:1111 ../settings.php:175
|
1001 |
msgid "Push notifications"
|
1002 |
msgstr "Push meldingen"
|
1003 |
|
1021 |
msgid "Not available"
|
1022 |
msgstr "Niet beschikbaar"
|
1023 |
|
1024 |
+
#: ../common.php:545
|
1025 |
msgid "Password reset requested"
|
1026 |
msgstr "Wachtwoordvernieuwing aangevraagd"
|
1027 |
|
1028 |
+
#: ../common.php:599
|
1029 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1030 |
msgstr "Grens bereikt van foutieve reCAPTCHA's"
|
1031 |
|
1032 |
+
#: ../common.php:644
|
1033 |
msgid "%s ago"
|
1034 |
msgstr "%s geleden"
|
1035 |
|
1073 |
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."
|
1074 |
msgstr "In de Citadelmodus kunnen alleen adressen van de Lijst Toegelaten IP-adressen inloggen. Heeft geen effect op reeds ingelogde gebruikers."
|
1075 |
|
1076 |
+
#: ../dashboard.php:476 ../dashboard.php:635
|
1077 |
msgid "Event"
|
1078 |
msgstr "Gebeurtenis"
|
1079 |
|
1089 |
msgid "Lockouts occurred"
|
1090 |
msgstr "Uitsluitingen"
|
1091 |
|
1092 |
+
#: ../dashboard.php:1307
|
1093 |
msgid "All suspicious activity"
|
1094 |
msgstr "Alle verdachte activiteit"
|
1095 |
|
1096 |
+
#: ../wp-cerber.php:960 ../wp-cerber.php:966 ../wp-cerber.php:982 ../wp-cerber.
|
1097 |
+
#: php:989
|
1098 |
msgid "You are not allowed to register."
|
1099 |
msgstr "Je mag niet aanmelden."
|
1100 |
|
1101 |
+
#: ../common.php:530
|
1102 |
msgid "Spam comment denied"
|
1103 |
msgstr "Spamreactie afgewezen."
|
1104 |
|
1105 |
+
#: ../common.php:555
|
1106 |
msgid "Attempt to log in denied"
|
1107 |
msgstr "Inlogpoging afgewezen"
|
1108 |
|
1109 |
+
#: ../common.php:556
|
1110 |
msgid "Attempt to register denied"
|
1111 |
msgstr "Aanmeldingspoging afgewezen"
|
1112 |
|
1114 |
msgid "Malicious activities mitigated"
|
1115 |
msgstr "Verdachte activiteiten afgevangen"
|
1116 |
|
1117 |
+
#: ../dashboard.php:900
|
1118 |
msgid "Cerber antispam settings"
|
1119 |
msgstr "Cerber Antispam-instellingen"
|
1120 |
|
1121 |
+
#: ../dashboard.php:900 ../wp-cerber.php:3740 ../settings.php:161
|
1122 |
msgid "Antispam"
|
1123 |
msgstr "Antispam"
|
1124 |
|
1150 |
msgid "License"
|
1151 |
msgstr "Licentie"
|
1152 |
|
1153 |
+
#: ../cerber-tools.php:313
|
1154 |
msgid "Antispam and bot detection settings"
|
1155 |
msgstr "Antispam- en botdetectie-instellingen"
|
1156 |
|
1157 |
+
#: ../wp-cerber.php:1225
|
1158 |
msgid "Sorry, human verification failed."
|
1159 |
msgstr "Sorry, de verificatie faalt."
|
1160 |
|
1161 |
+
#: ../common.php:600
|
1162 |
msgid "Bot activity is detected"
|
1163 |
msgstr "Bot-activiteit getedecteerd"
|
1164 |
|
1178 |
msgid "Move spam comments to trash after"
|
1179 |
msgstr "Verwijder spamreacties na"
|
1180 |
|
1181 |
+
#: ../common.php:531
|
1182 |
msgid "Spam form submission denied"
|
1183 |
msgstr "Geweigerd wegens spam"
|
1184 |
|
1215 |
msgid "WP Cerber Security & Antispam"
|
1216 |
msgstr "WP Cerber Security & Antispam"
|
1217 |
|
1218 |
+
#: ../dashboard.php:95 ../dashboard.php:633
|
1219 |
msgid "Country"
|
1220 |
msgstr "Land"
|
1221 |
|
1222 |
+
#: ../dashboard.php:664
|
1223 |
msgid "All events"
|
1224 |
msgstr "Alle gebeurtenissen"
|
1225 |
|
1226 |
+
#: ../dashboard.php:897
|
1227 |
msgid "Cerber Security Rules"
|
1228 |
msgstr "Cerber Beveiligingsregels"
|
1229 |
|
1230 |
+
#: ../dashboard.php:897 ../dashboard.php:1985
|
1231 |
msgid "Security Rules"
|
1232 |
msgstr "Beveiligingsregels"
|
1233 |
|
1234 |
+
#: ../dashboard.php:974
|
1235 |
msgid "Failed login attempts"
|
1236 |
msgstr "Gefaalde loginpogingen"
|
1237 |
|
1238 |
+
#: ../dashboard.php:975
|
1239 |
msgid "Registered"
|
1240 |
msgstr "Geregistreerd"
|
1241 |
|
1242 |
+
#: ../dashboard.php:1042
|
1243 |
msgid "You"
|
1244 |
msgstr "Jij"
|
1245 |
|
1247 |
msgid "Spam form submissions denied"
|
1248 |
msgstr "Spam formulierafgifte afgewezen "
|
1249 |
|
1250 |
+
#: ../dashboard.php:1363 ../wp-cerber.php:3061 ../wp-cerber.php:3733
|
1251 |
msgid "Getting Started Guide"
|
1252 |
msgstr "Startgids"
|
1253 |
|
1254 |
+
#: ../dashboard.php:1990
|
1255 |
msgid "Countries"
|
1256 |
msgstr "Landen"
|
1257 |
|
1258 |
+
#: ../dashboard.php:2055
|
1259 |
msgid "Permitted for one country"
|
1260 |
msgid_plural "Permitted for %d countries"
|
1261 |
msgstr[0] "Toegestaan voor één land"
|
1262 |
msgstr[1] "Toegestaan voor %d landen"
|
1263 |
|
1264 |
+
#: ../dashboard.php:2066
|
1265 |
msgid "No rule"
|
1266 |
msgstr "Geen regel"
|
1267 |
|
1268 |
+
#: ../dashboard.php:2269
|
1269 |
msgid "Security rules have been updated"
|
1270 |
msgstr "Beveiligingsregels zijn vernieuwd"
|
1271 |
|
1274 |
msgid "https://wpcerber.com"
|
1275 |
msgstr "https://wpcerber.com"
|
1276 |
|
1277 |
+
#: ../common.php:532
|
1278 |
msgid "Form submission denied"
|
1279 |
msgstr "Formulierafgifte afgewezen"
|
1280 |
|
1281 |
+
#: ../common.php:533
|
1282 |
msgid "Comment denied"
|
1283 |
msgstr "Commentaar afgewezen"
|
1284 |
|
1285 |
+
#: ../common.php:558
|
1286 |
msgid "Request to REST API denied"
|
1287 |
msgstr "Verzoek aan REST API afgewezen"
|
1288 |
|
1289 |
+
#: ../common.php:559
|
1290 |
msgid "XML-RPC request denied"
|
1291 |
msgstr "XML-RPC-verzoek afgewezen"
|
1292 |
|
1293 |
+
#: ../common.php:563
|
1294 |
msgid "Bot detected"
|
1295 |
msgstr "Bot gedetecteerd"
|
1296 |
|
1297 |
+
#: ../common.php:564
|
1298 |
msgid "Citadel mode is active"
|
1299 |
msgstr "Citadelmodus actief"
|
1300 |
|
1301 |
+
#: ../common.php:569
|
1302 |
msgid "Malicious activity detected"
|
1303 |
msgstr "Verdachte activiteit gedetecteerd "
|
1304 |
|
1305 |
+
#: ../common.php:570
|
1306 |
msgid "Blocked by country rule"
|
1307 |
msgstr "Geblokkeerd door landenregel"
|
1308 |
|
1309 |
+
#: ../common.php:571
|
1310 |
msgid "Limit reached"
|
1311 |
msgstr "Limiet bereikt"
|
1312 |
|
1313 |
+
#: ../common.php:572
|
1314 |
msgid "Multiple suspicious activities"
|
1315 |
msgstr "Meerdere verdachte activiteiten"
|
1316 |
|
1317 |
+
#: ../common.php:601
|
1318 |
msgid "Multiple suspicious activities were detected"
|
1319 |
msgstr "Meerdere verdachte activiteiten gedetecteerd"
|
1320 |
|
1354 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1355 |
msgstr "%s toegestane registraties in %s minuten van één IP"
|
1356 |
|
1357 |
+
#: ../dashboard.php:2122
|
1358 |
msgid "Start typing here to find a country"
|
1359 |
msgstr "Begin te typen om een land te vinden"
|
1360 |
|
1361 |
+
#: ../dashboard.php:2205
|
1362 |
msgid "Click on a country name to add it to the list of selected countries"
|
1363 |
msgstr "Klik op een landnaam om toe te voegen aan de lijst gekozen landen"
|
1364 |
|
1365 |
+
#: ../dashboard.php:2224
|
1366 |
msgid "Submit forms"
|
1367 |
msgstr "Formulieren versturen"
|
1368 |
|
1369 |
+
#: ../dashboard.php:2225
|
1370 |
msgid "Post comments"
|
1371 |
msgstr "Commentaar plaatsen"
|
1372 |
|
1373 |
+
#: ../dashboard.php:2226
|
1374 |
msgid "Log in to the website"
|
1375 |
msgstr "Inloggen bij de website"
|
1376 |
|
1377 |
+
#: ../dashboard.php:2227
|
1378 |
msgid "Register on the website"
|
1379 |
msgstr "Registreren bij de website"
|
1380 |
|
1381 |
+
#: ../dashboard.php:2228
|
1382 |
msgid "Use XML-RPC"
|
1383 |
msgstr "Benut XML-RPC"
|
1384 |
|
1385 |
+
#: ../dashboard.php:2229
|
1386 |
msgid "Use REST API"
|
1387 |
msgstr "Benut REST API"
|
1388 |
|
1394 |
msgid "Mark it as spam"
|
1395 |
msgstr "Markeren als spam"
|
1396 |
|
1397 |
+
#: ../dashboard.php:1292
|
1398 |
msgid "in the last 24 hours"
|
1399 |
msgstr "in de afgelopen 24 uur"
|
1400 |
|
1401 |
+
#: ../dashboard.php:1641
|
1402 |
msgid "Main settings"
|
1403 |
msgstr "Hoofdinstellingen"
|
1404 |
|
1444 |
msgid "at"
|
1445 |
msgstr "op"
|
1446 |
|
1447 |
+
#: ../wp-cerber.php:3077
|
1448 |
msgid "Weekly report"
|
1449 |
msgstr "Weekrapport"
|
1450 |
|
1451 |
+
#: ../wp-cerber.php:3080
|
1452 |
msgid "To change reporting settings visit"
|
1453 |
msgstr "Om je rapportageinstellingen aan te passen, ga naar"
|
1454 |
|
1455 |
+
#: ../wp-cerber.php:3106
|
1456 |
msgid "Your login page:"
|
1457 |
msgstr "Je login-pagina:"
|
1458 |
|
1459 |
+
#: ../wp-cerber.php:3110
|
1460 |
msgid "Your license is valid until"
|
1461 |
msgstr "Je licentie geldt tot"
|
1462 |
|
1463 |
+
#: ../wp-cerber.php:3221
|
1464 |
msgid "Activity details"
|
1465 |
msgstr "Details van activiteiten"
|
1466 |
|
1468 |
msgid "Click to send now"
|
1469 |
msgstr "Klik om nu te versturen"
|
1470 |
|
1471 |
+
#: ../wp-cerber.php:625
|
1472 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1473 |
msgstr ">>> Vertaler van WP Cerber? Om een gratis Pro-licentie te krijgen, geef je contactinformatie op bij: https://wpcerber.com/contact/"
|
1474 |
|
1475 |
+
#: ../dashboard.php:377
|
1476 |
msgid "Email has been sent to"
|
1477 |
msgstr "E-mail is verzonden naar"
|
1478 |
|
1479 |
+
#: ../dashboard.php:380
|
1480 |
msgid "Unable to send email to"
|
1481 |
msgstr "Kan geen e-mail verzenden naar"
|
1482 |
|
1483 |
+
#: ../dashboard.php:2058
|
1484 |
msgid "Not permitted for one country"
|
1485 |
msgid_plural "Not permitted for %d countries"
|
1486 |
msgstr[0] "Niet toegestaan voor één land"
|
1487 |
msgstr[1] "Niet toegestaan voor %d landen"
|
1488 |
|
1489 |
+
#: ../dashboard.php:2209
|
1490 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1491 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
1492 |
msgstr "Gekozen landen mogen %s, overige landen niet"
|
1493 |
|
1494 |
+
#: ../dashboard.php:2212
|
1495 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1496 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
1497 |
msgstr "Gekozen landen mogen niet %s, overige landen wel"
|
1501 |
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>."
|
1502 |
msgstr "Beschermt site tegen brute force-aanvallen, bots en hackers. Spambescherming met Cerber's antispamprogramma en reCAPTCHA. Uitgebreid beheer van gebruikersactiviteit. Beperk login op IP-adres. Limiteer login-pogingen. Meer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1503 |
|
1504 |
+
#: ../wp-cerber.php:3209
|
1505 |
msgid "Weekly Report"
|
1506 |
msgstr "Weekrapport"
|
1507 |
|
1525 |
msgid "Enable reporting"
|
1526 |
msgstr "Rapporteren aanzetten"
|
1527 |
|
1528 |
+
#. How to interpret this line? Do you mean 'was DATE/TIME from IP ADDRESS' ?
|
1529 |
+
#: ../wp-cerber.php:3133
|
1530 |
msgid "Your last sign-in was %s from %s"
|
1531 |
+
msgstr "Je laatste inlog was op %s vanaf %s"
|
1532 |
|
1533 |
+
#: ../wp-cerber.php:3235
|
1534 |
msgid "Attempts to log in with non-existent username"
|
1535 |
+
msgstr "Pogingen om in te loggen met een onbekende gebruikersnaam"
|
1536 |
+
|
1537 |
+
#: ../dashboard.php:167
|
1538 |
+
msgid "IP address, IPv4 address range or subnet"
|
1539 |
+
msgstr "IP adres, IPv4 adresreeks of subnet"
|
1540 |
+
|
1541 |
+
#: ../dashboard.php:169
|
1542 |
+
msgid "Optional comment for this entry"
|
1543 |
+
msgstr "Opmerking hierbij"
|
1544 |
+
|
1545 |
+
#: ../dashboard.php:210
|
1546 |
+
msgid "You cannot add your IP address or network"
|
1547 |
+
msgstr "Je kan je eigen IP of netwerk niet toevoegen"
|
1548 |
+
|
1549 |
+
#: ../cerber-news.php:135
|
1550 |
+
msgid "Cool!"
|
1551 |
+
msgstr "Mooi!"
|
1552 |
+
|
1553 |
+
#: ../settings.php:123
|
1554 |
+
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1555 |
+
msgstr "Sluit een patroon op in twee voorwaartse slashes om er een REGEX patroon van te maken."
|
1556 |
|
languages/wp-cerber-pl_PL.mo
CHANGED
Binary file
|
languages/wp-cerber-pl_PL.po
CHANGED
@@ -8,125 +8,125 @@ msgstr ""
|
|
8 |
"Language: pl\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
|
11 |
-
#: ../settings.php:
|
12 |
msgid "Limit login attempts"
|
13 |
msgstr "Limit prób logowana"
|
14 |
|
15 |
-
#: ../settings.php:
|
16 |
msgid "Attempts"
|
17 |
msgstr "Próby"
|
18 |
|
19 |
-
#: ../settings.php:
|
20 |
msgid "Lockout duration"
|
21 |
msgstr "Czas zablokowania"
|
22 |
|
23 |
-
#: ../settings.php:
|
24 |
msgid "minutes"
|
25 |
msgstr "minut/y"
|
26 |
|
27 |
-
#: ../settings.php:
|
28 |
msgid "Aggressive lockout"
|
29 |
msgstr "Agresywna blokada"
|
30 |
|
31 |
-
#: ../settings.php:
|
32 |
msgid "Site connection"
|
33 |
msgstr "Połączenie witryny"
|
34 |
|
35 |
-
#: ../settings.php:
|
36 |
msgid "Proactive security rules"
|
37 |
msgstr "Pro-aktywne zasady bezpieczeństwa"
|
38 |
|
39 |
-
#: ../settings.php:
|
40 |
msgid "Block subnet"
|
41 |
msgstr "Blokada podsieci"
|
42 |
|
43 |
-
#: ../settings.php:
|
44 |
msgid "Request wp-login.php"
|
45 |
msgstr "Żądanie wp-login.php"
|
46 |
|
47 |
-
#: ../settings.php:
|
48 |
msgid "Immediately block IP after any request to wp-login.php"
|
49 |
msgstr "Natychmiast blokuj wszystkie adresy IP, które próbują uzyskać dostęp do wp-login.php"
|
50 |
|
51 |
-
#: ../settings.php:
|
52 |
msgid "Redirect dashboard requests"
|
53 |
msgstr "Przekieruj żądania do kokpitu"
|
54 |
|
55 |
-
#: ../settings.php:
|
56 |
msgid "Custom login page"
|
57 |
msgstr "Własna strona logowania"
|
58 |
|
59 |
-
#: ../settings.php:
|
60 |
msgid "Custom login URL"
|
61 |
msgstr "Własny URL logowania"
|
62 |
|
63 |
-
#: ../settings.php:
|
64 |
msgid "must not overlap with the existing pages or posts slug"
|
65 |
msgstr "nie może nachodzić z istniejącym stronami lub uproszczonymi adresami wpisów"
|
66 |
|
67 |
-
#: ../settings.php:
|
68 |
msgid "Disable wp-login.php"
|
69 |
msgstr "Wyłącz wp-login.php"
|
70 |
|
71 |
-
#: ../settings.php:
|
72 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
73 |
msgstr "Zablokuj bezpośredni dostęp do wp-login.php i przekieruj na błąd 404"
|
74 |
|
75 |
-
#: ../dashboard.php:
|
76 |
msgid "Citadel mode"
|
77 |
msgstr "Tryb Twierdzy"
|
78 |
|
79 |
-
#: ../settings.php:
|
80 |
msgid "Threshold"
|
81 |
msgstr "Pułap"
|
82 |
|
83 |
-
#: ../settings.php:
|
84 |
msgid "Duration"
|
85 |
msgstr "Czas trwania"
|
86 |
|
87 |
-
#: ../wp-cerber.php:
|
88 |
msgid "Notifications"
|
89 |
msgstr "Powiadomienia"
|
90 |
|
91 |
-
#: ../settings.php:
|
92 |
msgid "Send notification to admin email"
|
93 |
msgstr "Wyślij powiadomienie na adres mailowy administratora"
|
94 |
|
95 |
-
#: ../dashboard.php:
|
96 |
-
#:
|
97 |
msgid "Access Lists"
|
98 |
msgstr "Listy Dostępowe"
|
99 |
|
100 |
-
#: ../dashboard.php:
|
101 |
-
#: php:
|
102 |
msgid "Activity"
|
103 |
msgstr "Aktywność"
|
104 |
|
105 |
-
#: ../dashboard.php:
|
106 |
msgid "Lockouts"
|
107 |
msgstr "Blodady"
|
108 |
|
109 |
-
#: ../settings.php:
|
110 |
msgid "%s allowed retries in %s minutes"
|
111 |
msgstr "%s prób w ciągu %s minut"
|
112 |
|
113 |
-
#: ../settings.php:
|
114 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
115 |
msgstr "Włączane po %d nieprawidłowych próbach logowania w ciągu ostatnich %d minut."
|
116 |
|
117 |
-
#: ../dashboard.php:93 ../dashboard.php:
|
118 |
msgid "IP"
|
119 |
msgstr "IP"
|
120 |
|
121 |
-
#: ../dashboard.php:
|
122 |
msgid "Date"
|
123 |
msgstr "Data"
|
124 |
|
125 |
-
#: ../dashboard.php:
|
126 |
msgid "Local User"
|
127 |
msgstr "Lokalny użytkownik"
|
128 |
|
129 |
-
#: ../dashboard.php:
|
130 |
msgid "Username used"
|
131 |
msgstr "Nazwa użytkownika"
|
132 |
|
@@ -134,73 +134,73 @@ msgstr "Nazwa użytkownika"
|
|
134 |
msgid "Showing last %d records from %d"
|
135 |
msgstr "Wyświetla ostatnie %d wpisów z %d"
|
136 |
|
137 |
-
#: ../common.php:
|
138 |
msgid "Logged in"
|
139 |
msgstr "Zalogowano"
|
140 |
|
141 |
-
#: ../common.php:
|
142 |
msgid "Logged out"
|
143 |
msgstr "Wylogowano"
|
144 |
|
145 |
-
#: ../common.php:
|
146 |
msgid "Login failed"
|
147 |
msgstr "Nieprawidłowe logowanie"
|
148 |
|
149 |
-
#: ../common.php:
|
150 |
msgid "IP blocked"
|
151 |
msgstr "Zablokowano IP"
|
152 |
|
153 |
-
#: ../common.php:
|
154 |
msgid "Subnet blocked"
|
155 |
msgstr "Zablokowana podsieć"
|
156 |
|
157 |
-
#: ../common.php:
|
158 |
msgid "Citadel activated!"
|
159 |
msgstr "Aktywacja twierdzy!"
|
160 |
|
161 |
-
#: ../dashboard.php:
|
162 |
msgid "Locked out"
|
163 |
msgstr "Zablokowany"
|
164 |
|
165 |
-
#: ../common.php:
|
166 |
msgid "IP blacklisted"
|
167 |
msgstr "IP dodany do czarnej listy"
|
168 |
|
169 |
-
#: ../common.php:
|
170 |
msgid "Password changed"
|
171 |
msgstr "Zmieniono hasło"
|
172 |
|
173 |
-
#: ../dashboard.php:86 ../dashboard.php:
|
174 |
msgid "Remove"
|
175 |
msgstr "Usuń"
|
176 |
|
177 |
-
#: ../dashboard.php:
|
178 |
msgid "Lockout for %s was removed"
|
179 |
msgstr "Blokada dla %s została usunięta"
|
180 |
|
181 |
-
#: ../dashboard.php:131 ../dashboard.php:
|
182 |
-
#: php:
|
183 |
msgid "White IP Access List"
|
184 |
msgstr "Lista dostępu dla białej listy"
|
185 |
|
186 |
-
#: ../dashboard.php:133 ../dashboard.php:
|
187 |
-
#: php:
|
188 |
msgid "Black IP Access List"
|
189 |
msgstr "Lista dostępu dla czarnej listy"
|
190 |
|
191 |
-
#: ../dashboard.php:
|
192 |
msgid "List is empty"
|
193 |
msgstr "Lista jest pusta"
|
194 |
|
195 |
-
#: ../dashboard.php:
|
196 |
msgid "Address %s was added to White IP Access List"
|
197 |
msgstr "Adres %s został dodany do Białej listy dostępu"
|
198 |
|
199 |
-
#: ../dashboard.php:
|
200 |
msgid "Address %s was added to Black IP Access List"
|
201 |
msgstr "Adres %s został dodany do czarnej listy"
|
202 |
|
203 |
-
#: ../wp-cerber.php:
|
204 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
205 |
msgstr "Tryb Twierdzy aktywuje się po %d nieprawidłowych logowania w czasie %d minut."
|
206 |
|
@@ -212,76 +212,76 @@ msgstr "Zobacz Aktywność"
|
|
212 |
msgid "Settings"
|
213 |
msgstr "Ustawienia"
|
214 |
|
215 |
-
#: ../dashboard.php:
|
216 |
msgid "Last login"
|
217 |
msgstr "Ostatnie logowanie"
|
218 |
|
219 |
-
#: ../dashboard.php:
|
220 |
msgid "Never"
|
221 |
msgstr "Nigdy"
|
222 |
|
223 |
-
#: ../dashboard.php:
|
224 |
msgid "Are you sure?"
|
225 |
msgstr "Jesteś pewny/a?"
|
226 |
|
227 |
#. Not sure how "reverse" should be translated into polish language with this context
|
228 |
-
#: ../dashboard.php:
|
229 |
#, fuzzy
|
230 |
msgid "My site is behind a reverse proxy"
|
231 |
msgstr "Moja strona łączy się z odwrotnego(reverse) proxy"
|
232 |
|
233 |
-
#: ../settings.php:
|
234 |
msgid "Non-existent users"
|
235 |
msgstr "Nie-istniejący użytkownicy"
|
236 |
|
237 |
-
#: ../settings.php:
|
238 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
239 |
msgstr "Natychmiast blokuj IP, które próbują logować się na nieistniejące nazwy użytkownika"
|
240 |
|
241 |
-
#: ../settings.php:
|
242 |
msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
|
243 |
msgstr "Wyłącz automatyczne przekierowanie na stronę logowania, kiedy jest wykonywane nieautoryzowane żądanie."
|
244 |
|
245 |
-
#: ../settings.php:
|
246 |
msgid "Make your protection smarter!"
|
247 |
msgstr "Zadbaj o to, aby twoja ochrona była mądrzejsza!"
|
248 |
|
249 |
-
#: ../settings.php:
|
250 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
251 |
msgstr "Prosimy włączyć włączyć permalinki, aby funkcja była dostępna. Zmień ustawienia permalinków na inne, niż domyślne."
|
252 |
|
253 |
-
#: ../settings.php:
|
254 |
msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
|
255 |
msgstr "Uważaj przy zmianie tej opcji. Jeśli zapomnisz własnego adresu logowania, to możesz nie być w stanie się zalogować."
|
256 |
|
257 |
-
#: ../wp-cerber.php:
|
258 |
msgid "Main Settings"
|
259 |
msgstr "Ustawienia Główne"
|
260 |
|
261 |
-
#: ../settings.php:
|
262 |
msgid "Help"
|
263 |
msgstr "Pomoc"
|
264 |
|
265 |
-
#: ../settings.php:
|
266 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
267 |
msgstr "Zwiększ czas blokady do %s godzin po %s blokadach w czasie %s godzin"
|
268 |
|
269 |
-
#: ../wp-cerber.php:
|
270 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
271 |
msgstr "Nie masz pozwolenia na zalogowanie. Skontaktuj się z administratorem."
|
272 |
|
273 |
-
#: ../wp-cerber.php:
|
274 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
275 |
msgstr "Osiągnięto limit logowań"
|
276 |
|
277 |
-
#: ../wp-cerber.php:
|
278 |
msgid "You have only one attempt remaining."
|
279 |
msgid_plural "You have %d attempts remaining."
|
280 |
msgstr[0] "Pozostała tobie jedna próba."
|
281 |
msgstr[1] "Pozostałych prób: %d"
|
282 |
msgstr[2] "Pozostałych prób: %d"
|
283 |
|
284 |
-
#: ../dashboard.php:
|
285 |
msgid "No activity has been logged."
|
286 |
msgstr "Nie zarejestrowano aktywności."
|
287 |
|
@@ -301,31 +301,23 @@ msgstr "Te adresy IP nigdy nie będą zablokowane."
|
|
301 |
msgid "Your IP"
|
302 |
msgstr "Twoje IP"
|
303 |
|
304 |
-
#: ../
|
305 |
-
msgid "You can't add your IP address"
|
306 |
-
msgstr "Nie możesz dodać swojego adresu IP"
|
307 |
-
|
308 |
-
#: ../wp-cerber.php:2960
|
309 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
310 |
msgstr "Ostatnia nieudana próba miała miejsce %s z adresu IP %s oraz nazwie użytkownika: %s"
|
311 |
|
312 |
-
#: ../wp-cerber.php:
|
313 |
-
msgid "Change notification settings"
|
314 |
-
msgstr "Zmień ustawienia powiadomień"
|
315 |
-
|
316 |
-
#: ../wp-cerber.php:3433
|
317 |
msgid "Can't activate WP Cerber due to a database error."
|
318 |
msgstr "Nie można aktywować WP Cerber przez błąd bazy danych."
|
319 |
|
320 |
-
#: ../settings.php:
|
321 |
msgid "Notify admin if the number of active lockouts above"
|
322 |
msgstr "Powiadom administratora, jeśli liczba aktywnych blokad przekroczy"
|
323 |
|
324 |
-
#: ../settings.php:
|
325 |
msgid "days"
|
326 |
msgstr "dni"
|
327 |
|
328 |
-
#: ../dashboard.php:
|
329 |
msgid "Cerber Quick View"
|
330 |
msgstr "Szybki podgląd Cerbera"
|
331 |
|
@@ -337,51 +329,47 @@ msgstr "Podpowiedź"
|
|
337 |
msgid "To view activity, click on the IP"
|
338 |
msgstr "Aby zobaczyć aktywność, kliknij na IP"
|
339 |
|
340 |
-
#: ../dashboard.php:
|
341 |
msgid "Check for activity"
|
342 |
msgstr "Sprawdź aktywność"
|
343 |
|
344 |
-
#: ../settings.php:
|
345 |
msgid "Always block entire subnet Class C of intruders IP"
|
346 |
msgstr "Zawsze blokuj całą podsieć Klasy C z adresów IP intruzów"
|
347 |
|
348 |
-
#: ../settings.php:
|
349 |
msgid "Click to send test"
|
350 |
msgstr "Kliknij, aby wysłać wiadomość testową"
|
351 |
|
352 |
-
#: ../settings.php:
|
353 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
354 |
msgstr "Uwaga! Został zmieniony adres URL logowania! Nowy adres to"
|
355 |
|
356 |
-
#: ../dashboard.php:
|
357 |
msgid "Comments"
|
358 |
msgstr "Komentarze"
|
359 |
|
360 |
-
#: ../
|
361 |
-
msgid "Message has been sent to "
|
362 |
-
msgstr "Wiadomość została wysłana do"
|
363 |
-
|
364 |
-
#: ../dashboard.php:1541
|
365 |
msgid "Update to version %s of WP Cerber"
|
366 |
msgstr "Aktualizuj WP Cerber do wersji %s"
|
367 |
|
368 |
-
#: ../wp-cerber.php:
|
369 |
msgid "View activity in dashboard"
|
370 |
msgstr "Zobacz aktywność na pulpicie"
|
371 |
|
372 |
-
#: ../wp-cerber.php:
|
373 |
msgid "Number of active lockouts"
|
374 |
msgstr "Liczba aktywnych blokad"
|
375 |
|
376 |
-
#: ../wp-cerber.php:
|
377 |
msgid "View lockouts in dashboard"
|
378 |
msgstr "Sprawdź blokady w kokpicie"
|
379 |
|
380 |
-
#: ../wp-cerber.php:
|
381 |
msgid "This message was sent by"
|
382 |
msgstr "Ta wiadomość została wysłana przez"
|
383 |
|
384 |
-
#: ../dashboard.php:
|
385 |
msgid "Tools"
|
386 |
msgstr "Narzędzia"
|
387 |
|
@@ -425,131 +413,131 @@ msgstr "Co chcesz importować?"
|
|
425 |
msgid "Upload file"
|
426 |
msgstr "Wyślij plik"
|
427 |
|
428 |
-
#: ../cerber-tools.php:
|
429 |
msgid "No file was uploaded or file is corrupted"
|
430 |
msgstr "Żaden plik nie został zaimportowany lub plik jest uszkodzony"
|
431 |
|
432 |
-
#: ../cerber-tools.php:
|
433 |
msgid "Error while updating"
|
434 |
msgstr "Błąd podczas aktualizacji"
|
435 |
|
436 |
-
#: ../cerber-tools.php:
|
437 |
msgid "Settings has imported successfully from"
|
438 |
msgstr "Ustawienia zaimportowano prawidłowo z"
|
439 |
|
440 |
-
#: ../cerber-tools.php:
|
441 |
msgid "Error while parsing file"
|
442 |
msgstr "Bład parsowania pliku"
|
443 |
|
444 |
-
#: ../dashboard.php:94 ../dashboard.php:
|
445 |
msgid "Hostname"
|
446 |
msgstr "Host"
|
447 |
|
448 |
-
#: ../dashboard.php:
|
449 |
msgid "unknown"
|
450 |
msgstr "nieznane"
|
451 |
|
452 |
-
#: ../settings.php:
|
453 |
msgid "Keep records for"
|
454 |
msgstr "Trzymaj zapisy przez"
|
455 |
|
456 |
-
#: ../dashboard.php:
|
457 |
msgid "active"
|
458 |
msgstr "aktywne"
|
459 |
|
460 |
-
#: ../dashboard.php:
|
461 |
msgid "deactivate"
|
462 |
msgstr "deaktywuj"
|
463 |
|
464 |
-
#: ../dashboard.php:
|
465 |
msgid "not active"
|
466 |
msgstr "nieaktywne"
|
467 |
|
468 |
-
#: ../dashboard.php:
|
469 |
msgid "disabled"
|
470 |
msgstr "wyłączone"
|
471 |
|
472 |
-
#: ../dashboard.php:
|
473 |
msgid "failed attempts"
|
474 |
msgstr "nieudane próby"
|
475 |
|
476 |
-
#: ../dashboard.php:
|
477 |
msgid "in 24 hours"
|
478 |
msgstr "przez 24 godziny"
|
479 |
|
480 |
-
#: ../dashboard.php:
|
481 |
msgid "view all"
|
482 |
msgstr "zobacz wszystkie"
|
483 |
|
484 |
-
#: ../dashboard.php:
|
485 |
msgid "lockouts"
|
486 |
msgstr "blokady"
|
487 |
|
488 |
-
#: ../dashboard.php:
|
489 |
msgid "Lockouts at the moment"
|
490 |
msgstr "Blokad na chwilę obecną"
|
491 |
|
492 |
-
#: ../dashboard.php:
|
493 |
msgid "Last lockout"
|
494 |
msgstr "Ostatnia blokada"
|
495 |
|
496 |
-
#: ../dashboard.php:
|
497 |
msgid "entry"
|
498 |
msgid_plural "entries"
|
499 |
msgstr[0] "wpis"
|
500 |
msgstr[1] "wpisów"
|
501 |
msgstr[2] "wpisy"
|
502 |
|
503 |
-
#: ../dashboard.php:
|
504 |
msgid "Confused about some settings?"
|
505 |
msgstr "Nie rozumiesz niektórych ustawień?"
|
506 |
|
507 |
-
#: ../dashboard.php:
|
508 |
msgid "You can easily load default recommended settings using button below"
|
509 |
msgstr "Możesz bez problemu załadować rekomendowane ustawienia klikając na przycisk poniżej"
|
510 |
|
511 |
-
#: ../dashboard.php:
|
512 |
msgid "Load default settings"
|
513 |
msgstr "Załaduj ustawienia domyślne"
|
514 |
|
515 |
-
#: ../dashboard.php:
|
516 |
msgid "doesn't affect Custom login URL and Access Lists"
|
517 |
msgstr "Nie ma wpływu na własny adres logowania oraz na Listy Dostępu"
|
518 |
|
519 |
-
#: ../
|
520 |
msgid "New version is available"
|
521 |
msgstr "Dostępna jest nowa wersja"
|
522 |
|
523 |
#. Name of the plugin
|
524 |
-
#: ../dashboard.php:
|
525 |
msgid "WP Cerber"
|
526 |
msgstr "WP Cerber"
|
527 |
|
528 |
-
#: ../wp-cerber.php:
|
529 |
msgid "WP Cerber notify"
|
530 |
msgstr "Powiadomienie WP Cerber"
|
531 |
|
532 |
-
#: ../wp-cerber.php:
|
533 |
msgid "Citadel mode is activated"
|
534 |
msgstr "Tryb Twierdzy jest aktywny"
|
535 |
|
536 |
-
#: ../wp-cerber.php:
|
537 |
msgid "New Custom login URL"
|
538 |
msgstr "Nowy, własny URL logowania"
|
539 |
|
540 |
-
#: ../wp-cerber.php:
|
541 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
542 |
msgstr "WP Cerber wymaga wersji PHP %s lub wyższej. Twoja wersja to"
|
543 |
|
544 |
-
#: ../wp-cerber.php:
|
545 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
546 |
msgstr "WP Cerber wymaga wersji Wordpress %s lub wyższej. Twoja wersja to"
|
547 |
|
548 |
-
#: ../settings.php:
|
549 |
msgid "Use file"
|
550 |
msgstr "Użyj pliku"
|
551 |
|
552 |
-
#: ../settings.php:
|
553 |
msgid "Write failed login attempts to the file"
|
554 |
msgstr "Zapisuj nieprawidłowe próby logowania do pliku"
|
555 |
|
@@ -557,96 +545,96 @@ msgstr "Zapisuj nieprawidłowe próby logowania do pliku"
|
|
557 |
msgid "Deactivate"
|
558 |
msgstr "Wyłącz"
|
559 |
|
560 |
-
#: ../dashboard.php:97 ../wp-cerber.php:
|
561 |
msgid "Reason"
|
562 |
msgstr "Powód"
|
563 |
|
564 |
-
#: ../dashboard.php:
|
565 |
msgid "Add IP to the list"
|
566 |
msgstr "Dodaj IP do listy"
|
567 |
|
568 |
-
#: ../dashboard.php:
|
569 |
msgid "Add IP to the Black List"
|
570 |
msgstr "Dodaj IP do czarnej listy"
|
571 |
|
572 |
-
#: ../common.php:
|
573 |
msgid "Attempt to access"
|
574 |
msgstr "Próba dostępu"
|
575 |
|
576 |
-
#: ../common.php:
|
577 |
msgid "Limit on login attempts is reached"
|
578 |
msgstr "Osiągnięto limit prób logowania"
|
579 |
|
580 |
-
#: ../common.php:
|
581 |
msgid "Attempt to log in with non-existent username"
|
582 |
msgstr "Próba logowania z nieistniejącej nazwy użytkownika"
|
583 |
|
584 |
-
#: ../wp-cerber.php:
|
585 |
msgid "Last lockout was added: %s for IP %s"
|
586 |
msgstr "Ostatnią blokadę dodano: %s dla IP %s"
|
587 |
|
588 |
-
#: ../wp-cerber.php:
|
589 |
msgid "Hardening"
|
590 |
msgstr "Wzmacnianie"
|
591 |
|
592 |
-
#: ../dashboard.php:
|
593 |
msgid "Abuse email:"
|
594 |
msgstr "Nadużycie adresu email:"
|
595 |
|
596 |
-
#: ../settings.php:
|
597 |
msgid "Email Address"
|
598 |
msgstr "Adres E-mail"
|
599 |
|
600 |
-
#: ../settings.php:
|
601 |
msgid "if empty, the admin email %s will be used"
|
602 |
msgstr "jeśli puste, to zostanie użyty adres e-mail administratora: %s"
|
603 |
|
604 |
-
#: ../settings.php:
|
605 |
#, fuzzy
|
606 |
msgid "Drill down IP"
|
607 |
msgstr "Identyfikuj adres IP"
|
608 |
|
609 |
-
#: ../settings.php:
|
610 |
msgid "Retrieve extra WHOIS information for IP"
|
611 |
msgstr "Sprawdź dodatkowe informacje WHOIS dla adresu IP"
|
612 |
|
613 |
-
#: ../settings.php:
|
614 |
msgid "Hardening WordPress"
|
615 |
msgstr "Wzmacnianie Wordpressa"
|
616 |
|
617 |
-
#: ../settings.php:
|
618 |
msgid "Stop user enumeration"
|
619 |
msgstr "Wyłącz numerację użytkowników"
|
620 |
|
621 |
-
#: ../settings.php:
|
622 |
msgid "Disable XML-RPC"
|
623 |
msgstr "Wyłącz XML-RPC"
|
624 |
|
625 |
-
#: ../settings.php:
|
626 |
msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
|
627 |
msgstr "Zablokuj dostęp do serwera XML-RPC (włączając w to Pingbacki i Trackbacki)"
|
628 |
|
629 |
-
#: ../settings.php:
|
630 |
msgid "Disable feeds"
|
631 |
msgstr "Wyłącz kanały RSS"
|
632 |
|
633 |
-
#: ../settings.php:
|
634 |
msgid "Block access to the RSS, Atom and RDF feeds"
|
635 |
msgstr "Wyłącz dostęp do RSS"
|
636 |
|
637 |
-
#: ../settings.php:
|
638 |
msgid "Disable REST API"
|
639 |
msgstr "Wyłącz REST API"
|
640 |
|
641 |
-
#: ../settings.php:
|
642 |
msgid "These settings do not affect hosts from the "
|
643 |
msgstr "Te ustawienia nie mają wpływu na: "
|
644 |
|
645 |
-
#: ../settings.php:
|
646 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
647 |
msgstr "<strong>BŁĄD</strong>: Proszę podać prawidłowy adres mailowy"
|
648 |
|
649 |
-
#: ../wp-cerber.php:
|
650 |
msgid "WP Cerber is now active and has started protecting your site"
|
651 |
msgstr "WP Cerber jest teraz aktywny i chroni twoją witrynę"
|
652 |
|
@@ -658,23 +646,19 @@ msgstr "Akcja"
|
|
658 |
msgid "Nobody can log in or register from these IPs"
|
659 |
msgstr "Z tych adresów IP nikt nie może się zalogować ani zarejestrować"
|
660 |
|
661 |
-
#: ../dashboard.php:
|
662 |
msgid "Incorrect IP address or IP range"
|
663 |
msgstr "Nieprawidłowy adres IP lub zakres IP"
|
664 |
|
665 |
-
#: ../dashboard.php:
|
666 |
-
msgid "Unable to send notification email"
|
667 |
-
msgstr "Nie udało się wysłać powiadomienia"
|
668 |
-
|
669 |
-
#: ../dashboard.php:377 ../dashboard.php:1469
|
670 |
msgid "Settings saved"
|
671 |
msgstr "Ustawienia zapisano"
|
672 |
|
673 |
-
#: ../dashboard.php:
|
674 |
msgid "Network:"
|
675 |
msgstr "Sieć:"
|
676 |
|
677 |
-
#: ../dashboard.php:
|
678 |
msgid "Add network to the Black List"
|
679 |
msgstr "Dodaj sieć do Czarnej Listy"
|
680 |
|
@@ -682,7 +666,7 @@ msgstr "Dodaj sieć do Czarnej Listy"
|
|
682 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
683 |
msgstr "Uwaga! Tryb Twierdzy jest aktywny. Nikt obecnie nie może się zalogować."
|
684 |
|
685 |
-
#: ../whois.php:221 ../whois.php:252 ../common.php:
|
686 |
msgid "Unknown"
|
687 |
msgstr "Nieznane"
|
688 |
|
@@ -691,457 +675,457 @@ msgstr "Nieznane"
|
|
691 |
msgid "Gregory"
|
692 |
msgstr "Gregory"
|
693 |
|
694 |
-
#: ../wp-cerber.php:
|
695 |
-
#: php:
|
696 |
-
#:
|
697 |
-
#:
|
698 |
-
#:
|
699 |
msgid "ERROR:"
|
700 |
msgstr "BŁĄD:"
|
701 |
|
702 |
-
#: ../wp-cerber.php:
|
703 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
704 |
msgstr "Nieudana weryfikacja. Proszę zaznaczyć kwadrat poniżej w bloku reCAPTCHA"
|
705 |
|
706 |
-
#: ../wp-cerber.php:
|
707 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
708 |
msgstr "<strong>BŁĄD</strong>: Hasło dla nazwy użytkownika jest nieprawidłowe"
|
709 |
|
710 |
-
#: ../wp-cerber.php:
|
711 |
msgid "Username is not allowed. Please choose another one."
|
712 |
msgstr "Nazwa użytkownika niedostępna. Prosimy wybrać inną."
|
713 |
|
714 |
-
#: ../wp-cerber.php:
|
715 |
msgid "unspecified"
|
716 |
msgstr "nieokreślone"
|
717 |
|
718 |
-
#: ../wp-cerber.php:
|
719 |
msgid "Number of lockouts is increasing"
|
720 |
msgstr "Liczba blokad wzrasta"
|
721 |
|
722 |
-
#: ../wp-cerber.php:
|
723 |
msgid "View activity for this IP"
|
724 |
msgstr "Zobacz aktywność tego IP"
|
725 |
|
726 |
-
#: ../wp-cerber.php:
|
727 |
msgid "A new version of WP Cerber is available to install"
|
728 |
msgstr "Dostępna jest nowa wersja WP Cerber"
|
729 |
|
730 |
-
#: ../wp-cerber.php:
|
731 |
msgid "Hi!"
|
732 |
msgstr "Cześć!"
|
733 |
|
734 |
-
#: ../wp-cerber.php:
|
735 |
msgid "Website"
|
736 |
msgstr "Witryna"
|
737 |
|
738 |
-
#: ../wp-cerber.php:
|
739 |
msgid "The WP Cerber security plugin has been deactivated"
|
740 |
msgstr "Wtyczka bezpieczeństwa WP Cerber została wyłączona"
|
741 |
|
742 |
-
#: ../wp-cerber.php:
|
743 |
msgid "Not logged in"
|
744 |
msgstr "Niezalogowany"
|
745 |
|
746 |
-
#: ../wp-cerber.php:
|
747 |
msgid "By user"
|
748 |
msgstr "- użytkownik"
|
749 |
|
750 |
-
#: ../wp-cerber.php:
|
751 |
msgid "From IP address"
|
752 |
msgstr "Z adresu IP"
|
753 |
|
754 |
-
#: ../wp-cerber.php:
|
755 |
msgid "From country"
|
756 |
msgstr "Z Państwa"
|
757 |
|
758 |
-
#: ../wp-cerber.php:
|
759 |
msgid "The WP Cerber security plugin is now active"
|
760 |
msgstr "Wtyczka WP Cerber jest teraz aktywna"
|
761 |
|
762 |
-
#: ../wp-cerber.php:
|
763 |
msgid "Your IP address is added to the"
|
764 |
msgstr "Twój adres IP został dodany do"
|
765 |
|
766 |
-
#: ../wp-cerber.php:
|
767 |
msgid "Import settings"
|
768 |
msgstr "Importuj ustawienia"
|
769 |
|
770 |
-
#: ../settings.php:
|
771 |
msgid "Notification limit"
|
772 |
msgstr "Limit powiadomień"
|
773 |
|
774 |
-
#: ../settings.php:
|
775 |
msgid "notification letters allowed per hour (0 means unlimited)"
|
776 |
msgstr "limit powiadomień na godzinę (0 oznacza nieograniczone)"
|
777 |
|
778 |
-
#: ../settings.php:
|
779 |
msgid "User related settings"
|
780 |
msgstr "Ustawienia związane z użytkownikami"
|
781 |
|
782 |
-
#: ../settings.php:
|
783 |
msgid "Prohibited usernames"
|
784 |
msgstr "Zabronione nazwy użytkownika"
|
785 |
|
786 |
-
#: ../settings.php:
|
787 |
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."
|
788 |
msgstr "Użytkownicy z tej listy nie mogą się logować, ani rejestrować. Każdy adres IP próbujący używać jakiekolwiek nazwy użytkownika z tej listy zostanie zablokowany."
|
789 |
|
790 |
-
#: ../settings.php:
|
791 |
msgid "User session expire"
|
792 |
msgstr "Przedawnienie sesji użytkownika"
|
793 |
|
794 |
-
#: ../settings.php:
|
795 |
msgid "in minutes (leave empty to use default WP value)"
|
796 |
msgstr "w minutach (pozostaw puste, aby użyć standardowej wartości WP)"
|
797 |
|
798 |
-
#: ../settings.php:
|
799 |
msgid "reCAPTCHA settings"
|
800 |
msgstr "Ustawienia reCAPTCHA"
|
801 |
|
802 |
-
#: ../settings.php:
|
803 |
msgid "Site key"
|
804 |
msgstr "Klucz strony"
|
805 |
|
806 |
-
#: ../settings.php:
|
807 |
msgid "Secret key"
|
808 |
msgstr "Sekretny klucz"
|
809 |
|
810 |
-
#: ../settings.php:
|
811 |
msgid "Enable reCAPTCHA for WordPress registration form"
|
812 |
msgstr "Włącz reCAPTCHA dla formularza rejestracji Wordpressa"
|
813 |
|
814 |
-
#: ../settings.php:
|
815 |
msgid "Lost password form"
|
816 |
msgstr "Formularz odzyskiwania hasła"
|
817 |
|
818 |
-
#: ../settings.php:
|
819 |
msgid "Login form"
|
820 |
msgstr "Formularz logowania"
|
821 |
|
822 |
-
#: ../settings.php:
|
823 |
msgid "Enable reCAPTCHA for WordPress login form"
|
824 |
msgstr "Włącz reCAPTCHę dla formularza logowania Wordpressa"
|
825 |
|
826 |
-
#: ../settings.php:
|
827 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
828 |
msgstr "Zanim zaczniesz używać reCAPTCHA musisz uzyskać dwa klucze na specjalnej stronie Google"
|
829 |
|
830 |
-
#: ../cerber-lab.php:
|
831 |
msgid "Know more"
|
832 |
msgstr "Dowiedz się więcej"
|
833 |
|
834 |
-
#: ../dashboard.php:
|
835 |
msgid "WP Cerber Security"
|
836 |
msgstr "Zabezpieczenia WP Cerber"
|
837 |
|
838 |
-
#: ../settings.php:
|
839 |
msgid "Users"
|
840 |
msgstr "Użytkownicy"
|
841 |
|
842 |
-
#: ../common.php:
|
843 |
msgid "User created"
|
844 |
msgstr "Utworzenie nowego użytkownika"
|
845 |
|
846 |
-
#: ../dashboard.php:
|
847 |
msgid "User registered"
|
848 |
msgstr "Użytkownik zarejestrowany"
|
849 |
|
850 |
-
#: ../common.php:
|
851 |
msgid "reCAPTCHA verification failed"
|
852 |
msgstr "Nieprawidłowa weryfikacja reCATPCHA"
|
853 |
|
854 |
-
#: ../common.php:
|
855 |
msgid "reCAPTCHA settings are incorrect"
|
856 |
msgstr "Nieprawidłowe ustawienia reCAPTCHA"
|
857 |
|
858 |
-
#: ../common.php:
|
859 |
msgid "Attempt to access prohibited URL"
|
860 |
msgstr "Próba logowania na zabroniony URL"
|
861 |
|
862 |
-
#: ../common.php:
|
863 |
msgid "Attempt to log in with prohibited username"
|
864 |
msgstr "Próba zalogowania z zabronioną nazwą użytkownika"
|
865 |
|
866 |
-
#: ../settings.php:
|
867 |
msgid "Cerber Lab connection"
|
868 |
msgstr "Połączenie Cerber Lab"
|
869 |
|
870 |
-
#: ../settings.php:
|
871 |
msgid "Send malicious IP addresses to the Cerber Lab"
|
872 |
msgstr "Wyślij szkodliwe adresy IP do Cerber Lab"
|
873 |
|
874 |
-
#: ../settings.php:
|
875 |
msgid "Cerber Lab protocol"
|
876 |
msgstr "Protokół Cerber Lab"
|
877 |
|
878 |
-
#: ../settings.php:
|
879 |
msgid "Registration form"
|
880 |
msgstr "Formularz rejestracji"
|
881 |
|
882 |
-
#: ../settings.php:
|
883 |
msgid "Enable reCAPTCHA for WooCommerce registration form"
|
884 |
msgstr "Włącz reCAPTCHA dla formularza rejestracji WooCommerce"
|
885 |
|
886 |
-
#: ../settings.php:
|
887 |
msgid "Enable reCAPTCHA for WordPress lost password form"
|
888 |
msgstr "Włącz reCAPTCHA dla formularza przypomnienia hasła Wordpressa"
|
889 |
|
890 |
-
#: ../settings.php:
|
891 |
msgid "Enable reCAPTCHA for WooCommerce lost password form"
|
892 |
msgstr "Włącz reCAPTCHA dla formularza przypomnienia hasła WooCommerce"
|
893 |
|
894 |
-
#: ../settings.php:
|
895 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
896 |
msgstr "Włącz reCAPTCHę dla formularza logowania WooCoomerce"
|
897 |
|
898 |
-
#: ../common.php:
|
899 |
msgid "Request to the Google reCAPTCHA service failed"
|
900 |
msgstr "Wysyłanie żądania do Google reCAPTCHA nie powiodło się"
|
901 |
|
902 |
-
#: ../dashboard.php:
|
903 |
msgid "View all"
|
904 |
msgstr "Zobacz wszystkie"
|
905 |
|
906 |
-
#: ../dashboard.php:
|
907 |
msgid "Recently locked out IP addresses"
|
908 |
msgstr "Ostatnio zablokowane adresy IP"
|
909 |
|
910 |
-
#: ../cerber-lab.php:
|
911 |
msgid "OK, nail them all"
|
912 |
msgstr "OK"
|
913 |
|
914 |
-
#: ../cerber-lab.php:
|
915 |
msgid "NO, maybe later"
|
916 |
msgstr "NIE"
|
917 |
|
918 |
-
#: ../dashboard.php:
|
919 |
-
#: php:
|
920 |
msgid "Dashboard"
|
921 |
msgstr "Kokpit"
|
922 |
|
923 |
-
#: ../cerber-lab.php:
|
924 |
msgid "Want to make WP Cerber even more powerful?"
|
925 |
msgstr "Chcesz uczyć WP Cerber jeszcze bardziej potężnym?"
|
926 |
|
927 |
-
#: ../cerber-lab.php:
|
928 |
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."
|
929 |
msgstr "Pozwól na wysyłanie szkodliwych adresów IP do Cerber Lab. Pomoże to stworzyć nowe algorytmy dla obrony Wordpressa przed zagrożeniami botów pojawiających się na co dzień. Możesz wyłączyć tę opcję w każdej chwili w opcjach wtyczki."
|
930 |
|
931 |
-
#: ../dashboard.php:
|
932 |
msgid "IP address"
|
933 |
msgstr "Adres IP"
|
934 |
|
935 |
-
#: ../dashboard.php:
|
936 |
msgid "User login"
|
937 |
msgstr "Login użytkownika"
|
938 |
|
939 |
-
#: ../dashboard.php:
|
940 |
msgid "User ID"
|
941 |
msgstr "ID użytkownika"
|
942 |
|
943 |
-
#: ../dashboard.php:
|
944 |
msgid "Export"
|
945 |
msgstr "Eksport"
|
946 |
|
947 |
-
#: ../dashboard.php:
|
948 |
msgid "Search for IP or username"
|
949 |
msgstr "Szukaj IP lub użytkownika"
|
950 |
|
951 |
-
#: ../dashboard.php:
|
952 |
msgid "Filter"
|
953 |
msgstr "Filtr"
|
954 |
|
955 |
-
#: ../dashboard.php:
|
956 |
msgid "Cerber Dashboard"
|
957 |
msgstr "Kokpit Cerbera"
|
958 |
|
959 |
-
#: ../dashboard.php:
|
960 |
msgid "Cerber tools"
|
961 |
msgstr "Narzędzia Cerbera"
|
962 |
|
963 |
-
#: ../dashboard.php:
|
964 |
msgid "Subscribe"
|
965 |
msgstr "Subskrybuj"
|
966 |
|
967 |
-
#: ../dashboard.php:
|
968 |
msgid "Unsubscribe"
|
969 |
msgstr "Odsubskrybuj"
|
970 |
|
971 |
-
#: ../dashboard.php:
|
972 |
msgid "You've subscribed"
|
973 |
msgstr "Zasubskrybowałeś/aś"
|
974 |
|
975 |
-
#: ../dashboard.php:
|
976 |
msgid "You've unsubscribed"
|
977 |
msgstr "Odsubskrybowałeś/aś"
|
978 |
|
979 |
-
#: ../wp-cerber.php:
|
980 |
msgid "A new activity has been recorded"
|
981 |
msgstr "Zarejestrowano nową aktywność"
|
982 |
|
983 |
-
#: ../wp-cerber.php:
|
984 |
msgid "User"
|
985 |
msgstr "Użytkownik"
|
986 |
|
987 |
-
#: ../wp-cerber.php:
|
988 |
msgid "Search string"
|
989 |
msgstr "Fraza do wyszukania"
|
990 |
|
991 |
-
#: ../wp-cerber.php:
|
992 |
msgid "To unsubscribe click here"
|
993 |
msgstr "Aby wyłączyć subskrypcję, kliknij tutaj"
|
994 |
|
995 |
-
#: ../settings.php:
|
996 |
msgid "Preferences"
|
997 |
msgstr "Preferencje"
|
998 |
|
999 |
-
#: ../settings.php:
|
1000 |
msgid "Date format"
|
1001 |
msgstr "Format daty"
|
1002 |
|
1003 |
-
#: ../settings.php:
|
1004 |
msgid "if empty, the default format %s will be used"
|
1005 |
msgstr "Jeśli puste, do zostanie użyty domyślny format %s"
|
1006 |
|
1007 |
-
#: ../dashboard.php:
|
1008 |
msgid "Push notifications"
|
1009 |
msgstr "Pchnij powiadomienia"
|
1010 |
|
1011 |
-
#: ../settings.php:
|
1012 |
msgid "Email notifications"
|
1013 |
msgstr "Powiadomienia E-mail"
|
1014 |
|
1015 |
-
#: ../settings.php:
|
1016 |
msgid "Use comma to specify multiple values"
|
1017 |
msgstr "Używaj przecinka, aby określić więcej wartości"
|
1018 |
|
1019 |
-
#: ../settings.php:
|
1020 |
msgid "All connected devices"
|
1021 |
msgstr "Wszystkie połączone urządzenia"
|
1022 |
|
1023 |
-
#: ../settings.php:
|
1024 |
msgid "No devices found"
|
1025 |
msgstr "Nie znaleziono urządzeń"
|
1026 |
|
1027 |
-
#: ../settings.php:
|
1028 |
msgid "Not available"
|
1029 |
msgstr "Niedostępne"
|
1030 |
|
1031 |
-
#: ../common.php:
|
1032 |
msgid "Password reset requested"
|
1033 |
msgstr "Prośba o reset hasła"
|
1034 |
|
1035 |
-
#: ../common.php:
|
1036 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1037 |
msgstr "Osiągnięto limit nieprawidłowych weryfikacji reCAPTCHA"
|
1038 |
|
1039 |
-
#: ../common.php:
|
1040 |
msgid "%s ago"
|
1041 |
msgstr "%s temu"
|
1042 |
|
1043 |
-
#: ../settings.php:
|
1044 |
msgid "Apply limit login rules to IP addresses in the White IP Access List"
|
1045 |
msgstr "Włącz zasadę limitu logowań dla adresów IP na białej liście"
|
1046 |
|
1047 |
-
#: ../settings.php:
|
1048 |
msgid "Display 404 page"
|
1049 |
msgstr "Wyświetl stronę 404"
|
1050 |
|
1051 |
-
#: ../settings.php:
|
1052 |
msgid "Invisible reCAPTCHA"
|
1053 |
msgstr "Niewidzialna reCAPTCHA"
|
1054 |
|
1055 |
-
#: ../settings.php:
|
1056 |
msgid "Enable invisible reCAPTCHA"
|
1057 |
msgstr "Włącz niewidzialną reCAPTCHę"
|
1058 |
|
1059 |
-
#: ../settings.php:
|
1060 |
msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
|
1061 |
msgstr "(nie włączaj, dopóki nie zaopatrzysz się w odpowiednie klucze dla wersji niewidzialnej reCAPTCHy)"
|
1062 |
|
1063 |
-
#: ../settings.php:
|
1064 |
msgid "Enable reCAPTCHA for WordPress comment form"
|
1065 |
msgstr "Włącz reCAPTCHA dla formularza komentarzy Wordpressa"
|
1066 |
|
1067 |
-
#: ../settings.php:
|
1068 |
msgid "Disable reCAPTCHA for logged in users"
|
1069 |
msgstr "Wyłącz reCAPTCHę dla zalogowanych użytkowników"
|
1070 |
|
1071 |
-
#: ../settings.php:
|
1072 |
msgid "Limit attempts"
|
1073 |
msgstr "Limit prób"
|
1074 |
|
1075 |
-
#: ../settings.php:
|
1076 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1077 |
msgstr "Zablokuj adres IP na %s minut po %s nieprawidłowych próbowach logowania w ciągu %s minut"
|
1078 |
|
1079 |
-
#: ../settings.php:
|
1080 |
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."
|
1081 |
msgstr "W trybie Twierdzy nie może się zalogować nikt oprócz adresów IP znajdujących się na białej liście. Nie ma to wpływu na aktywne sesje użytkowników."
|
1082 |
|
1083 |
-
#: ../dashboard.php:
|
1084 |
msgid "Event"
|
1085 |
msgstr "Zdarzenie"
|
1086 |
|
1087 |
-
#: ../
|
1088 |
msgid "Spam comments denied"
|
1089 |
msgstr "Odrzuconych komentarzy ze spamem"
|
1090 |
|
1091 |
-
#: ../
|
1092 |
msgid "Malicious IP addresses detected"
|
1093 |
msgstr "Wykrytych szkodliwych adresów IP"
|
1094 |
|
1095 |
-
#: ../
|
1096 |
msgid "Lockouts occurred"
|
1097 |
msgstr "Blokad"
|
1098 |
|
1099 |
-
#: ../dashboard.php:
|
1100 |
msgid "All suspicious activity"
|
1101 |
msgstr "Cała podejrzana aktywność"
|
1102 |
|
1103 |
-
#: ../wp-cerber.php:
|
1104 |
-
#: php:
|
1105 |
msgid "You are not allowed to register."
|
1106 |
msgstr "Nie masz zezwolenia na rejestrację."
|
1107 |
|
1108 |
-
#: ../common.php:
|
1109 |
msgid "Spam comment denied"
|
1110 |
msgstr "Komentarz ze spamem odrzucony"
|
1111 |
|
1112 |
-
#: ../common.php:
|
1113 |
msgid "Attempt to log in denied"
|
1114 |
msgstr "Odrzucono próbę logowania"
|
1115 |
|
1116 |
-
#: ../common.php:
|
1117 |
msgid "Attempt to register denied"
|
1118 |
msgstr "Odrzucono próbę rejestracji"
|
1119 |
|
1120 |
-
#: ../
|
1121 |
msgid "Malicious activities mitigated"
|
1122 |
msgstr "Złagodzonej szkodliwej aktywności"
|
1123 |
|
1124 |
-
#: ../dashboard.php:
|
1125 |
msgid "Cerber antispam settings"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: ../dashboard.php:
|
1129 |
msgid "Antispam"
|
1130 |
msgstr "Antyspam"
|
1131 |
|
1132 |
-
#: ../settings.php:
|
1133 |
msgid "Cerber antispam engine"
|
1134 |
msgstr "Silnik antyspamu cerbera"
|
1135 |
|
1136 |
-
#: ../settings.php:
|
1137 |
msgid "Comment form"
|
1138 |
msgstr "Formularz komentarzy"
|
1139 |
|
1140 |
-
#: ../settings.php:
|
1141 |
msgid "Protect comment form with bot detection engine"
|
1142 |
msgstr "Chroń formularz komentarzy silnikiem wykrywania botów"
|
1143 |
|
1144 |
-
#: ../settings.php:
|
1145 |
msgid "Protect registration form with bot detection engine"
|
1146 |
msgstr ""
|
1147 |
|
@@ -1157,63 +1141,63 @@ msgstr "Diagnostyka"
|
|
1157 |
msgid "License"
|
1158 |
msgstr "Licencja"
|
1159 |
|
1160 |
-
#: ../cerber-tools.php:
|
1161 |
msgid "Antispam and bot detection settings"
|
1162 |
msgstr "Antyspam oraz ustawienia wykrywania botów"
|
1163 |
|
1164 |
-
#: ../wp-cerber.php:
|
1165 |
msgid "Sorry, human verification failed."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: ../common.php:
|
1169 |
msgid "Bot activity is detected"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: ../settings.php:
|
1173 |
msgid "Comment processing"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: ../settings.php:
|
1177 |
msgid "If a spam comment detected"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: ../settings.php:
|
1181 |
msgid "Trash spam comments"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: ../settings.php:
|
1185 |
msgid "Move spam comments to trash after"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: ../common.php:
|
1189 |
msgid "Spam form submission denied"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: ../settings.php:
|
1193 |
msgid "Other forms"
|
1194 |
msgstr "Inne formularze"
|
1195 |
|
1196 |
-
#: ../settings.php:
|
1197 |
msgid "Protect all forms on the website with bot detection engine"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: ../settings.php:
|
1201 |
msgid "Adjust antispam engine"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: ../settings.php:
|
1205 |
msgid "Safe mode"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: ../settings.php:
|
1209 |
msgid "Use less restrictive policies (allow AJAX)"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: ../settings.php:
|
1213 |
msgid "Logged in users"
|
1214 |
msgstr "Zalogowani użytkownicy"
|
1215 |
|
1216 |
-
#: ../settings.php:
|
1217 |
msgid "Disable bot detection engine for logged in users"
|
1218 |
msgstr ""
|
1219 |
|
@@ -1222,70 +1206,58 @@ msgstr ""
|
|
1222 |
msgid "WP Cerber Security & Antispam"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
|
1226 |
-
#:
|
1227 |
-
msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"http://wpcerber.com\">wpcerber.com</a>."
|
1228 |
-
msgstr ""
|
1229 |
-
|
1230 |
-
#: ../dashboard.php:95 ../dashboard.php:626
|
1231 |
msgid "Country"
|
1232 |
msgstr "Państwo"
|
1233 |
|
1234 |
-
#: ../dashboard.php:
|
1235 |
msgid "All events"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: ../dashboard.php:
|
1239 |
msgid "Cerber Security Rules"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: ../dashboard.php:
|
1243 |
msgid "Security Rules"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: ../dashboard.php:
|
1247 |
msgid "Failed login attempts"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: ../dashboard.php:
|
1251 |
msgid "Registered"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: ../dashboard.php:
|
1255 |
msgid "You"
|
1256 |
msgstr "Ty"
|
1257 |
|
1258 |
-
#: ../
|
1259 |
msgid "Spam form submissions denied"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: ../dashboard.php:
|
1263 |
msgid "Getting Started Guide"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: ../dashboard.php:
|
1267 |
msgid "Countries"
|
1268 |
msgstr "Państwa"
|
1269 |
|
1270 |
-
#: ../dashboard.php:
|
1271 |
msgid "Permitted for one country"
|
1272 |
msgid_plural "Permitted for %d countries"
|
1273 |
msgstr[0] ""
|
1274 |
msgstr[1] ""
|
1275 |
msgstr[2] ""
|
1276 |
|
1277 |
-
#: ../dashboard.php:
|
1278 |
-
msgid "Blocked for one country"
|
1279 |
-
msgid_plural "Blocked for %d countries"
|
1280 |
-
msgstr[0] ""
|
1281 |
-
msgstr[1] ""
|
1282 |
-
msgstr[2] ""
|
1283 |
-
|
1284 |
-
#: ../dashboard.php:2081
|
1285 |
msgid "No rule"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: ../dashboard.php:
|
1289 |
msgid "Security rules have been updated"
|
1290 |
msgstr ""
|
1291 |
|
@@ -1294,139 +1266,283 @@ msgstr ""
|
|
1294 |
msgid "https://wpcerber.com"
|
1295 |
msgstr "https://wpcerber.com"
|
1296 |
|
1297 |
-
#: ../common.php:
|
1298 |
msgid "Form submission denied"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: ../common.php:
|
1302 |
msgid "Comment denied"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: ../common.php:
|
1306 |
msgid "Request to REST API denied"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: ../common.php:
|
1310 |
msgid "XML-RPC request denied"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: ../common.php:
|
1314 |
msgid "Bot detected"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: ../common.php:
|
1318 |
msgid "Citadel mode is active"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: ../common.php:
|
1322 |
msgid "Malicious activity detected"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: ../common.php:
|
1326 |
msgid "Blocked by country rule"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: ../common.php:
|
1330 |
msgid "Limit reached"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: ../common.php:
|
1334 |
msgid "Multiple suspicious activities"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: ../common.php:
|
1338 |
msgid "Multiple suspicious activities were detected"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: ../settings.php:
|
1342 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: ../settings.php:
|
1346 |
msgid "Block access to the WordPress REST API except the following"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: ../settings.php:
|
1350 |
msgid "Allow REST API for logged in users"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: ../settings.php:
|
1354 |
msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: ../settings.php:
|
1358 |
msgid "Registration limit"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: ../settings.php:
|
1362 |
msgid "Sort users in dashboard"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: ../settings.php:
|
1366 |
msgid "by date of registration"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: ../settings.php:
|
1370 |
msgid "Query whitelist"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: ../settings.php:
|
1374 |
-
msgid "Specify search strings to search in a request URI to exclude the request from inspection by the engine. One string per line."
|
1375 |
-
msgstr ""
|
1376 |
-
|
1377 |
-
#: ../settings.php:371
|
1378 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: ../dashboard.php:
|
1382 |
msgid "Start typing here to find a country"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: ../dashboard.php:
|
1386 |
msgid "Click on a country name to add it to the list of selected countries"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: ../dashboard.php:
|
1390 |
-
msgid "Selected countries are allowed to %s other countries are not allowed"
|
1391 |
-
msgstr ""
|
1392 |
-
|
1393 |
-
#: ../dashboard.php:2225
|
1394 |
-
msgid "Selected countries are not allowed to %s other countries are allowed"
|
1395 |
-
msgstr ""
|
1396 |
-
|
1397 |
-
#: ../dashboard.php:2237
|
1398 |
msgid "Submit forms"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: ../dashboard.php:
|
1402 |
msgid "Post comments"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: ../dashboard.php:
|
1406 |
msgid "Log in to the website"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: ../dashboard.php:
|
1410 |
msgid "Register on the website"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: ../dashboard.php:
|
1414 |
msgid "Use XML-RPC"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: ../dashboard.php:
|
1418 |
msgid "Use REST API"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: ../settings.php:
|
1422 |
-
msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache"
|
1423 |
-
msgstr ""
|
1424 |
-
|
1425 |
-
#: ../settings.php:134
|
1426 |
msgid "Deny it completely"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: ../settings.php:
|
1430 |
msgid "Mark it as spam"
|
1431 |
msgstr ""
|
1432 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
"Language: pl\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
|
11 |
+
#: ../settings.php:67
|
12 |
msgid "Limit login attempts"
|
13 |
msgstr "Limit prób logowana"
|
14 |
|
15 |
+
#: ../settings.php:68
|
16 |
msgid "Attempts"
|
17 |
msgstr "Próby"
|
18 |
|
19 |
+
#: ../settings.php:69
|
20 |
msgid "Lockout duration"
|
21 |
msgstr "Czas zablokowania"
|
22 |
|
23 |
+
#: ../settings.php:69 ../settings.php:88
|
24 |
msgid "minutes"
|
25 |
msgstr "minut/y"
|
26 |
|
27 |
+
#: ../settings.php:70
|
28 |
msgid "Aggressive lockout"
|
29 |
msgstr "Agresywna blokada"
|
30 |
|
31 |
+
#: ../settings.php:73
|
32 |
msgid "Site connection"
|
33 |
msgstr "Połączenie witryny"
|
34 |
|
35 |
+
#: ../settings.php:75
|
36 |
msgid "Proactive security rules"
|
37 |
msgstr "Pro-aktywne zasady bezpieczeństwa"
|
38 |
|
39 |
+
#: ../settings.php:76
|
40 |
msgid "Block subnet"
|
41 |
msgstr "Blokada podsieci"
|
42 |
|
43 |
+
#: ../settings.php:79
|
44 |
msgid "Request wp-login.php"
|
45 |
msgstr "Żądanie wp-login.php"
|
46 |
|
47 |
+
#: ../settings.php:79
|
48 |
msgid "Immediately block IP after any request to wp-login.php"
|
49 |
msgstr "Natychmiast blokuj wszystkie adresy IP, które próbują uzyskać dostęp do wp-login.php"
|
50 |
|
51 |
+
#: ../settings.php:78
|
52 |
msgid "Redirect dashboard requests"
|
53 |
msgstr "Przekieruj żądania do kokpitu"
|
54 |
|
55 |
+
#: ../settings.php:82
|
56 |
msgid "Custom login page"
|
57 |
msgstr "Własna strona logowania"
|
58 |
|
59 |
+
#: ../settings.php:83
|
60 |
msgid "Custom login URL"
|
61 |
msgstr "Własny URL logowania"
|
62 |
|
63 |
+
#: ../settings.php:83
|
64 |
msgid "must not overlap with the existing pages or posts slug"
|
65 |
msgstr "nie może nachodzić z istniejącym stronami lub uproszczonymi adresami wpisów"
|
66 |
|
67 |
+
#: ../settings.php:84
|
68 |
msgid "Disable wp-login.php"
|
69 |
msgstr "Wyłącz wp-login.php"
|
70 |
|
71 |
+
#: ../settings.php:84
|
72 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
73 |
msgstr "Zablokuj bezpośredni dostęp do wp-login.php i przekieruj na błąd 404"
|
74 |
|
75 |
+
#: ../dashboard.php:1109 ../settings.php:86
|
76 |
msgid "Citadel mode"
|
77 |
msgstr "Tryb Twierdzy"
|
78 |
|
79 |
+
#: ../settings.php:87
|
80 |
msgid "Threshold"
|
81 |
msgstr "Pułap"
|
82 |
|
83 |
+
#: ../settings.php:88
|
84 |
msgid "Duration"
|
85 |
msgstr "Czas trwania"
|
86 |
|
87 |
+
#: ../wp-cerber.php:3742 ../settings.php:72 ../settings.php:89 ../settings.php:262
|
88 |
msgid "Notifications"
|
89 |
msgstr "Powiadomienia"
|
90 |
|
91 |
+
#: ../settings.php:89
|
92 |
msgid "Send notification to admin email"
|
93 |
msgstr "Wyślij powiadomienie na adres mailowy administratora"
|
94 |
|
95 |
+
#: ../dashboard.php:1118 ../wp-cerber.php:3739 ../settings.php:255 ../cerber-
|
96 |
+
#: tools.php:88 ../cerber-tools.php:97 ../cerber-tools.php:178
|
97 |
msgid "Access Lists"
|
98 |
msgstr "Listy Dostępowe"
|
99 |
|
100 |
+
#: ../dashboard.php:1116 ../dashboard.php:1312 ../wp-cerber.php:3503 ../settings.
|
101 |
+
#: php:91 ../settings.php:246
|
102 |
msgid "Activity"
|
103 |
msgstr "Aktywność"
|
104 |
|
105 |
+
#: ../dashboard.php:1117 ../settings.php:250
|
106 |
msgid "Lockouts"
|
107 |
msgstr "Blodady"
|
108 |
|
109 |
+
#: ../settings.php:377 ../settings.php:500
|
110 |
msgid "%s allowed retries in %s minutes"
|
111 |
msgstr "%s prób w ciągu %s minut"
|
112 |
|
113 |
+
#: ../settings.php:399 ../settings.php:522
|
114 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
115 |
msgstr "Włączane po %d nieprawidłowych próbach logowania w ciągu ostatnich %d minut."
|
116 |
|
117 |
+
#: ../dashboard.php:93 ../dashboard.php:631 ../wp-cerber.php:3512
|
118 |
msgid "IP"
|
119 |
msgstr "IP"
|
120 |
|
121 |
+
#: ../dashboard.php:476 ../dashboard.php:634
|
122 |
msgid "Date"
|
123 |
msgstr "Data"
|
124 |
|
125 |
+
#: ../dashboard.php:476 ../dashboard.php:636
|
126 |
msgid "Local User"
|
127 |
msgstr "Lokalny użytkownik"
|
128 |
|
129 |
+
#: ../dashboard.php:476 ../dashboard.php:637 ../wp-cerber.php:3520
|
130 |
msgid "Username used"
|
131 |
msgstr "Nazwa użytkownika"
|
132 |
|
134 |
msgid "Showing last %d records from %d"
|
135 |
msgstr "Wyświetla ostatnie %d wpisów z %d"
|
136 |
|
137 |
+
#: ../common.php:521
|
138 |
msgid "Logged in"
|
139 |
msgstr "Zalogowano"
|
140 |
|
141 |
+
#: ../common.php:522
|
142 |
msgid "Logged out"
|
143 |
msgstr "Wylogowano"
|
144 |
|
145 |
+
#: ../common.php:523
|
146 |
msgid "Login failed"
|
147 |
msgstr "Nieprawidłowe logowanie"
|
148 |
|
149 |
+
#: ../common.php:526
|
150 |
msgid "IP blocked"
|
151 |
msgstr "Zablokowano IP"
|
152 |
|
153 |
+
#: ../common.php:527
|
154 |
msgid "Subnet blocked"
|
155 |
msgstr "Zablokowana podsieć"
|
156 |
|
157 |
+
#: ../common.php:529
|
158 |
msgid "Citadel activated!"
|
159 |
msgstr "Aktywacja twierdzy!"
|
160 |
|
161 |
+
#: ../dashboard.php:612 ../dashboard.php:816 ../common.php:565
|
162 |
msgid "Locked out"
|
163 |
msgstr "Zablokowany"
|
164 |
|
165 |
+
#: ../common.php:566
|
166 |
msgid "IP blacklisted"
|
167 |
msgstr "IP dodany do czarnej listy"
|
168 |
|
169 |
+
#: ../common.php:544
|
170 |
msgid "Password changed"
|
171 |
msgstr "Zmieniono hasło"
|
172 |
|
173 |
+
#: ../dashboard.php:86 ../dashboard.php:158
|
174 |
msgid "Remove"
|
175 |
msgstr "Usuń"
|
176 |
|
177 |
+
#: ../dashboard.php:387
|
178 |
msgid "Lockout for %s was removed"
|
179 |
msgstr "Blokada dla %s została usunięta"
|
180 |
|
181 |
+
#: ../dashboard.php:131 ../dashboard.php:607 ../dashboard.php:811 ../dashboard.
|
182 |
+
#: php:1107 ../wp-cerber.php:3731 ../settings.php:71 ../settings.php:216
|
183 |
msgid "White IP Access List"
|
184 |
msgstr "Lista dostępu dla białej listy"
|
185 |
|
186 |
+
#: ../dashboard.php:133 ../dashboard.php:608 ../dashboard.php:813 ../dashboard.
|
187 |
+
#: php:1108
|
188 |
msgid "Black IP Access List"
|
189 |
msgstr "Lista dostępu dla czarnej listy"
|
190 |
|
191 |
+
#: ../dashboard.php:163
|
192 |
msgid "List is empty"
|
193 |
msgstr "Lista jest pusta"
|
194 |
|
195 |
+
#: ../dashboard.php:200
|
196 |
msgid "Address %s was added to White IP Access List"
|
197 |
msgstr "Adres %s został dodany do Białej listy dostępu"
|
198 |
|
199 |
+
#: ../dashboard.php:214
|
200 |
msgid "Address %s was added to Black IP Access List"
|
201 |
msgstr "Adres %s został dodany do czarnej listy"
|
202 |
|
203 |
+
#: ../wp-cerber.php:2995
|
204 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
205 |
msgstr "Tryb Twierdzy aktywuje się po %d nieprawidłowych logowania w czasie %d minut."
|
206 |
|
212 |
msgid "Settings"
|
213 |
msgstr "Ustawienia"
|
214 |
|
215 |
+
#: ../dashboard.php:973
|
216 |
msgid "Last login"
|
217 |
msgstr "Ostatnie logowanie"
|
218 |
|
219 |
+
#: ../dashboard.php:1006 ../dashboard.php:1090
|
220 |
msgid "Never"
|
221 |
msgstr "Nigdy"
|
222 |
|
223 |
+
#: ../dashboard.php:1356
|
224 |
msgid "Are you sure?"
|
225 |
msgstr "Jesteś pewny/a?"
|
226 |
|
227 |
#. Not sure how "reverse" should be translated into polish language with this context
|
228 |
+
#: ../dashboard.php:1164 ../settings.php:73
|
229 |
#, fuzzy
|
230 |
msgid "My site is behind a reverse proxy"
|
231 |
msgstr "Moja strona łączy się z odwrotnego(reverse) proxy"
|
232 |
|
233 |
+
#: ../settings.php:77
|
234 |
msgid "Non-existent users"
|
235 |
msgstr "Nie-istniejący użytkownicy"
|
236 |
|
237 |
+
#: ../settings.php:77
|
238 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
239 |
msgstr "Natychmiast blokuj IP, które próbują logować się na nieistniejące nazwy użytkownika"
|
240 |
|
241 |
+
#: ../settings.php:78
|
242 |
msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
|
243 |
msgstr "Wyłącz automatyczne przekierowanie na stronę logowania, kiedy jest wykonywane nieautoryzowane żądanie."
|
244 |
|
245 |
+
#: ../settings.php:202
|
246 |
msgid "Make your protection smarter!"
|
247 |
msgstr "Zadbaj o to, aby twoja ochrona była mądrzejsza!"
|
248 |
|
249 |
+
#: ../settings.php:206
|
250 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
251 |
msgstr "Prosimy włączyć włączyć permalinki, aby funkcja była dostępna. Zmień ustawienia permalinków na inne, niż domyślne."
|
252 |
|
253 |
+
#: ../settings.php:209
|
254 |
msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
|
255 |
msgstr "Uważaj przy zmianie tej opcji. Jeśli zapomnisz własnego adresu logowania, to możesz nie być w stanie się zalogować."
|
256 |
|
257 |
+
#: ../wp-cerber.php:3738 ../settings.php:252
|
258 |
msgid "Main Settings"
|
259 |
msgstr "Ustawienia Główne"
|
260 |
|
261 |
+
#: ../settings.php:264
|
262 |
msgid "Help"
|
263 |
msgstr "Pomoc"
|
264 |
|
265 |
+
#: ../settings.php:387 ../settings.php:510
|
266 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
267 |
msgstr "Zwiększ czas blokady do %s godzin po %s blokadach w czasie %s godzin"
|
268 |
|
269 |
+
#: ../wp-cerber.php:237
|
270 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
271 |
msgstr "Nie masz pozwolenia na zalogowanie. Skontaktuj się z administratorem."
|
272 |
|
273 |
+
#: ../wp-cerber.php:243
|
274 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
275 |
msgstr "Osiągnięto limit logowań"
|
276 |
|
277 |
+
#: ../wp-cerber.php:262
|
278 |
msgid "You have only one attempt remaining."
|
279 |
msgid_plural "You have %d attempts remaining."
|
280 |
msgstr[0] "Pozostała tobie jedna próba."
|
281 |
msgstr[1] "Pozostałych prób: %d"
|
282 |
msgstr[2] "Pozostałych prób: %d"
|
283 |
|
284 |
+
#: ../dashboard.php:658
|
285 |
msgid "No activity has been logged."
|
286 |
msgstr "Nie zarejestrowano aktywności."
|
287 |
|
301 |
msgid "Your IP"
|
302 |
msgstr "Twoje IP"
|
303 |
|
304 |
+
#: ../wp-cerber.php:2996
|
|
|
|
|
|
|
|
|
305 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
306 |
msgstr "Ostatnia nieudana próba miała miejsce %s z adresu IP %s oraz nazwie użytkownika: %s"
|
307 |
|
308 |
+
#: ../wp-cerber.php:3714
|
|
|
|
|
|
|
|
|
309 |
msgid "Can't activate WP Cerber due to a database error."
|
310 |
msgstr "Nie można aktywować WP Cerber przez błąd bazy danych."
|
311 |
|
312 |
+
#: ../settings.php:394 ../settings.php:517
|
313 |
msgid "Notify admin if the number of active lockouts above"
|
314 |
msgstr "Powiadom administratora, jeśli liczba aktywnych blokad przekroczy"
|
315 |
|
316 |
+
#: ../settings.php:92 ../settings.php:144
|
317 |
msgid "days"
|
318 |
msgstr "dni"
|
319 |
|
320 |
+
#: ../dashboard.php:1060
|
321 |
msgid "Cerber Quick View"
|
322 |
msgstr "Szybki podgląd Cerbera"
|
323 |
|
329 |
msgid "To view activity, click on the IP"
|
330 |
msgstr "Aby zobaczyć aktywność, kliknij na IP"
|
331 |
|
332 |
+
#: ../dashboard.php:158 ../dashboard.php:843
|
333 |
msgid "Check for activity"
|
334 |
msgstr "Sprawdź aktywność"
|
335 |
|
336 |
+
#: ../settings.php:76
|
337 |
msgid "Always block entire subnet Class C of intruders IP"
|
338 |
msgstr "Zawsze blokuj całą podsieć Klasy C z adresów IP intruzów"
|
339 |
|
340 |
+
#: ../settings.php:89 ../settings.php:396 ../settings.php:519
|
341 |
msgid "Click to send test"
|
342 |
msgstr "Kliknij, aby wysłać wiadomość testową"
|
343 |
|
344 |
+
#: ../settings.php:659 ../settings.php:660
|
345 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
346 |
msgstr "Uwaga! Został zmieniony adres URL logowania! Nowy adres to"
|
347 |
|
348 |
+
#: ../dashboard.php:972
|
349 |
msgid "Comments"
|
350 |
msgstr "Komentarze"
|
351 |
|
352 |
+
#: ../common.php:785
|
|
|
|
|
|
|
|
|
353 |
msgid "Update to version %s of WP Cerber"
|
354 |
msgstr "Aktualizuj WP Cerber do wersji %s"
|
355 |
|
356 |
+
#: ../wp-cerber.php:2997 ../wp-cerber.php:3544
|
357 |
msgid "View activity in dashboard"
|
358 |
msgstr "Zobacz aktywność na pulpicie"
|
359 |
|
360 |
+
#: ../wp-cerber.php:3027
|
361 |
msgid "Number of active lockouts"
|
362 |
msgstr "Liczba aktywnych blokad"
|
363 |
|
364 |
+
#: ../wp-cerber.php:3031
|
365 |
msgid "View lockouts in dashboard"
|
366 |
msgstr "Sprawdź blokady w kokpicie"
|
367 |
|
368 |
+
#: ../wp-cerber.php:3113
|
369 |
msgid "This message was sent by"
|
370 |
msgstr "Ta wiadomość została wysłana przez"
|
371 |
|
372 |
+
#: ../dashboard.php:901 ../cerber-tools.php:43
|
373 |
msgid "Tools"
|
374 |
msgstr "Narzędzia"
|
375 |
|
413 |
msgid "Upload file"
|
414 |
msgstr "Wyślij plik"
|
415 |
|
416 |
+
#: ../cerber-tools.php:145
|
417 |
msgid "No file was uploaded or file is corrupted"
|
418 |
msgstr "Żaden plik nie został zaimportowany lub plik jest uszkodzony"
|
419 |
|
420 |
+
#: ../cerber-tools.php:178
|
421 |
msgid "Error while updating"
|
422 |
msgstr "Błąd podczas aktualizacji"
|
423 |
|
424 |
+
#: ../cerber-tools.php:181
|
425 |
msgid "Settings has imported successfully from"
|
426 |
msgstr "Ustawienia zaimportowano prawidłowo z"
|
427 |
|
428 |
+
#: ../cerber-tools.php:185
|
429 |
msgid "Error while parsing file"
|
430 |
msgstr "Bład parsowania pliku"
|
431 |
|
432 |
+
#: ../dashboard.php:94 ../dashboard.php:632
|
433 |
msgid "Hostname"
|
434 |
msgstr "Host"
|
435 |
|
436 |
+
#: ../dashboard.php:353
|
437 |
msgid "unknown"
|
438 |
msgstr "nieznane"
|
439 |
|
440 |
+
#: ../settings.php:92
|
441 |
msgid "Keep records for"
|
442 |
msgstr "Trzymaj zapisy przez"
|
443 |
|
444 |
+
#: ../dashboard.php:1094
|
445 |
msgid "active"
|
446 |
msgstr "aktywne"
|
447 |
|
448 |
+
#: ../dashboard.php:1094
|
449 |
msgid "deactivate"
|
450 |
msgstr "deaktywuj"
|
451 |
|
452 |
+
#: ../dashboard.php:1096
|
453 |
msgid "not active"
|
454 |
msgstr "nieaktywne"
|
455 |
|
456 |
+
#: ../dashboard.php:1097
|
457 |
msgid "disabled"
|
458 |
msgstr "wyłączone"
|
459 |
|
460 |
+
#: ../dashboard.php:1102
|
461 |
msgid "failed attempts"
|
462 |
msgstr "nieudane próby"
|
463 |
|
464 |
+
#: ../dashboard.php:1102 ../dashboard.php:1103
|
465 |
msgid "in 24 hours"
|
466 |
msgstr "przez 24 godziny"
|
467 |
|
468 |
+
#: ../dashboard.php:1102 ../dashboard.php:1103
|
469 |
msgid "view all"
|
470 |
msgstr "zobacz wszystkie"
|
471 |
|
472 |
+
#: ../dashboard.php:1103
|
473 |
msgid "lockouts"
|
474 |
msgstr "blokady"
|
475 |
|
476 |
+
#: ../dashboard.php:1105
|
477 |
msgid "Lockouts at the moment"
|
478 |
msgstr "Blokad na chwilę obecną"
|
479 |
|
480 |
+
#: ../dashboard.php:1106
|
481 |
msgid "Last lockout"
|
482 |
msgstr "Ostatnia blokada"
|
483 |
|
484 |
+
#: ../dashboard.php:1107 ../dashboard.php:1108 ../dashboard.php:1620
|
485 |
msgid "entry"
|
486 |
msgid_plural "entries"
|
487 |
msgstr[0] "wpis"
|
488 |
msgstr[1] "wpisów"
|
489 |
msgstr[2] "wpisy"
|
490 |
|
491 |
+
#: ../dashboard.php:1351
|
492 |
msgid "Confused about some settings?"
|
493 |
msgstr "Nie rozumiesz niektórych ustawień?"
|
494 |
|
495 |
+
#: ../dashboard.php:1352
|
496 |
msgid "You can easily load default recommended settings using button below"
|
497 |
msgstr "Możesz bez problemu załadować rekomendowane ustawienia klikając na przycisk poniżej"
|
498 |
|
499 |
+
#: ../dashboard.php:1354
|
500 |
msgid "Load default settings"
|
501 |
msgstr "Załaduj ustawienia domyślne"
|
502 |
|
503 |
+
#: ../dashboard.php:1362
|
504 |
msgid "doesn't affect Custom login URL and Access Lists"
|
505 |
msgstr "Nie ma wpływu na własny adres logowania oraz na Listy Dostępu"
|
506 |
|
507 |
+
#: ../common.php:778
|
508 |
msgid "New version is available"
|
509 |
msgstr "Dostępna jest nowa wersja"
|
510 |
|
511 |
#. Name of the plugin
|
512 |
+
#: ../dashboard.php:892 ../dashboard.php:911
|
513 |
msgid "WP Cerber"
|
514 |
msgstr "WP Cerber"
|
515 |
|
516 |
+
#: ../wp-cerber.php:2971
|
517 |
msgid "WP Cerber notify"
|
518 |
msgstr "Powiadomienie WP Cerber"
|
519 |
|
520 |
+
#: ../wp-cerber.php:2993
|
521 |
msgid "Citadel mode is activated"
|
522 |
msgstr "Tryb Twierdzy jest aktywny"
|
523 |
|
524 |
+
#: ../wp-cerber.php:3067
|
525 |
msgid "New Custom login URL"
|
526 |
msgstr "Nowy, własny URL logowania"
|
527 |
|
528 |
+
#: ../wp-cerber.php:3701
|
529 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
530 |
msgstr "WP Cerber wymaga wersji PHP %s lub wyższej. Twoja wersja to"
|
531 |
|
532 |
+
#: ../wp-cerber.php:3705
|
533 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
534 |
msgstr "WP Cerber wymaga wersji Wordpress %s lub wyższej. Twoja wersja to"
|
535 |
|
536 |
+
#: ../settings.php:95
|
537 |
msgid "Use file"
|
538 |
msgstr "Użyj pliku"
|
539 |
|
540 |
+
#: ../settings.php:95
|
541 |
msgid "Write failed login attempts to the file"
|
542 |
msgstr "Zapisuj nieprawidłowe próby logowania do pliku"
|
543 |
|
545 |
msgid "Deactivate"
|
546 |
msgstr "Wyłącz"
|
547 |
|
548 |
+
#: ../dashboard.php:97 ../wp-cerber.php:3029
|
549 |
msgid "Reason"
|
550 |
msgstr "Powód"
|
551 |
|
552 |
+
#: ../dashboard.php:168
|
553 |
msgid "Add IP to the list"
|
554 |
msgstr "Dodaj IP do listy"
|
555 |
|
556 |
+
#: ../dashboard.php:861
|
557 |
msgid "Add IP to the Black List"
|
558 |
msgstr "Dodaj IP do czarnej listy"
|
559 |
|
560 |
+
#: ../common.php:596
|
561 |
msgid "Attempt to access"
|
562 |
msgstr "Próba dostępu"
|
563 |
|
564 |
+
#: ../common.php:595
|
565 |
msgid "Limit on login attempts is reached"
|
566 |
msgstr "Osiągnięto limit prób logowania"
|
567 |
|
568 |
+
#: ../common.php:552 ../common.php:597
|
569 |
msgid "Attempt to log in with non-existent username"
|
570 |
msgstr "Próba logowania z nieistniejącej nazwy użytkownika"
|
571 |
|
572 |
+
#: ../wp-cerber.php:3028
|
573 |
msgid "Last lockout was added: %s for IP %s"
|
574 |
msgstr "Ostatnią blokadę dodano: %s dla IP %s"
|
575 |
|
576 |
+
#: ../wp-cerber.php:3741 ../settings.php:257
|
577 |
msgid "Hardening"
|
578 |
msgstr "Wzmacnianie"
|
579 |
|
580 |
+
#: ../dashboard.php:839
|
581 |
msgid "Abuse email:"
|
582 |
msgstr "Nadużycie adresu email:"
|
583 |
|
584 |
+
#: ../settings.php:172 ../settings.php:192
|
585 |
msgid "Email Address"
|
586 |
msgstr "Adres E-mail"
|
587 |
|
588 |
+
#: ../settings.php:172
|
589 |
msgid "if empty, the admin email %s will be used"
|
590 |
msgstr "jeśli puste, to zostanie użyty adres e-mail administratora: %s"
|
591 |
|
592 |
+
#: ../settings.php:98
|
593 |
#, fuzzy
|
594 |
msgid "Drill down IP"
|
595 |
msgstr "Identyfikuj adres IP"
|
596 |
|
597 |
+
#: ../settings.php:98
|
598 |
msgid "Retrieve extra WHOIS information for IP"
|
599 |
msgstr "Sprawdź dodatkowe informacje WHOIS dla adresu IP"
|
600 |
|
601 |
+
#: ../settings.php:106
|
602 |
msgid "Hardening WordPress"
|
603 |
msgstr "Wzmacnianie Wordpressa"
|
604 |
|
605 |
+
#: ../settings.php:107
|
606 |
msgid "Stop user enumeration"
|
607 |
msgstr "Wyłącz numerację użytkowników"
|
608 |
|
609 |
+
#: ../settings.php:108
|
610 |
msgid "Disable XML-RPC"
|
611 |
msgstr "Wyłącz XML-RPC"
|
612 |
|
613 |
+
#: ../settings.php:108
|
614 |
msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
|
615 |
msgstr "Zablokuj dostęp do serwera XML-RPC (włączając w to Pingbacki i Trackbacki)"
|
616 |
|
617 |
+
#: ../settings.php:109
|
618 |
msgid "Disable feeds"
|
619 |
msgstr "Wyłącz kanały RSS"
|
620 |
|
621 |
+
#: ../settings.php:109
|
622 |
msgid "Block access to the RSS, Atom and RDF feeds"
|
623 |
msgstr "Wyłącz dostęp do RSS"
|
624 |
|
625 |
+
#: ../settings.php:110
|
626 |
msgid "Disable REST API"
|
627 |
msgstr "Wyłącz REST API"
|
628 |
|
629 |
+
#: ../settings.php:216
|
630 |
msgid "These settings do not affect hosts from the "
|
631 |
msgstr "Te ustawienia nie mają wpływu na: "
|
632 |
|
633 |
+
#: ../settings.php:736 ../settings.php:748
|
634 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
635 |
msgstr "<strong>BŁĄD</strong>: Proszę podać prawidłowy adres mailowy"
|
636 |
|
637 |
+
#: ../wp-cerber.php:3059 ../wp-cerber.php:3730
|
638 |
msgid "WP Cerber is now active and has started protecting your site"
|
639 |
msgstr "WP Cerber jest teraz aktywny i chroni twoją witrynę"
|
640 |
|
646 |
msgid "Nobody can log in or register from these IPs"
|
647 |
msgstr "Z tych adresów IP nikt nie może się zalogować ani zarejestrować"
|
648 |
|
649 |
+
#: ../dashboard.php:194 ../dashboard.php:206
|
650 |
msgid "Incorrect IP address or IP range"
|
651 |
msgstr "Nieprawidłowy adres IP lub zakres IP"
|
652 |
|
653 |
+
#: ../dashboard.php:404 ../dashboard.php:1469
|
|
|
|
|
|
|
|
|
654 |
msgid "Settings saved"
|
655 |
msgstr "Ustawienia zapisano"
|
656 |
|
657 |
+
#: ../dashboard.php:843
|
658 |
msgid "Network:"
|
659 |
msgstr "Sieć:"
|
660 |
|
661 |
+
#: ../dashboard.php:857
|
662 |
msgid "Add network to the Black List"
|
663 |
msgstr "Dodaj sieć do Czarnej Listy"
|
664 |
|
666 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
667 |
msgstr "Uwaga! Tryb Twierdzy jest aktywny. Nikt obecnie nie może się zalogować."
|
668 |
|
669 |
+
#: ../dashboard.php:311 ../whois.php:221 ../whois.php:252 ../common.php:594
|
670 |
msgid "Unknown"
|
671 |
msgstr "Nieznane"
|
672 |
|
675 |
msgid "Gregory"
|
676 |
msgstr "Gregory"
|
677 |
|
678 |
+
#: ../wp-cerber.php:545 ../wp-cerber.php:557 ../wp-cerber.php:564 ../wp-cerber.
|
679 |
+
#: php:743 ../wp-cerber.php:959 ../wp-cerber.php:965 ../wp-cerber.php:970 ../wp-
|
680 |
+
#: cerber.php:975 ../wp-cerber.php:981 ../wp-cerber.php:988 ../wp-cerber.php:1088
|
681 |
+
#: ../wp-cerber.php:1225 ../common.php:173 ../common.php:227 ../common.php:231 ..
|
682 |
+
#: /settings.php:709
|
683 |
msgid "ERROR:"
|
684 |
msgstr "BŁĄD:"
|
685 |
|
686 |
+
#: ../wp-cerber.php:574
|
687 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
688 |
msgstr "Nieudana weryfikacja. Proszę zaznaczyć kwadrat poniżej w bloku reCAPTCHA"
|
689 |
|
690 |
+
#: ../wp-cerber.php:755
|
691 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
692 |
msgstr "<strong>BŁĄD</strong>: Hasło dla nazwy użytkownika jest nieprawidłowe"
|
693 |
|
694 |
+
#: ../wp-cerber.php:976
|
695 |
msgid "Username is not allowed. Please choose another one."
|
696 |
msgstr "Nazwa użytkownika niedostępna. Prosimy wybrać inną."
|
697 |
|
698 |
+
#: ../wp-cerber.php:3022
|
699 |
msgid "unspecified"
|
700 |
msgstr "nieokreślone"
|
701 |
|
702 |
+
#: ../wp-cerber.php:3025
|
703 |
msgid "Number of lockouts is increasing"
|
704 |
msgstr "Liczba blokad wzrasta"
|
705 |
|
706 |
+
#: ../wp-cerber.php:3030
|
707 |
msgid "View activity for this IP"
|
708 |
msgstr "Zobacz aktywność tego IP"
|
709 |
|
710 |
+
#: ../wp-cerber.php:3034 ../wp-cerber.php:3036
|
711 |
msgid "A new version of WP Cerber is available to install"
|
712 |
msgstr "Dostępna jest nowa wersja WP Cerber"
|
713 |
|
714 |
+
#: ../wp-cerber.php:3035
|
715 |
msgid "Hi!"
|
716 |
msgstr "Cześć!"
|
717 |
|
718 |
+
#: ../wp-cerber.php:3038 ../wp-cerber.php:3049
|
719 |
msgid "Website"
|
720 |
msgstr "Witryna"
|
721 |
|
722 |
+
#: ../wp-cerber.php:3041 ../wp-cerber.php:3042
|
723 |
msgid "The WP Cerber security plugin has been deactivated"
|
724 |
msgstr "Wtyczka bezpieczeństwa WP Cerber została wyłączona"
|
725 |
|
726 |
+
#: ../wp-cerber.php:3044
|
727 |
msgid "Not logged in"
|
728 |
msgstr "Niezalogowany"
|
729 |
|
730 |
+
#: ../wp-cerber.php:3050
|
731 |
msgid "By user"
|
732 |
msgstr "- użytkownik"
|
733 |
|
734 |
+
#: ../wp-cerber.php:3051
|
735 |
msgid "From IP address"
|
736 |
msgstr "Z adresu IP"
|
737 |
|
738 |
+
#: ../wp-cerber.php:3054
|
739 |
msgid "From country"
|
740 |
msgstr "Z Państwa"
|
741 |
|
742 |
+
#: ../wp-cerber.php:3058
|
743 |
msgid "The WP Cerber security plugin is now active"
|
744 |
msgstr "Wtyczka WP Cerber jest teraz aktywna"
|
745 |
|
746 |
+
#: ../wp-cerber.php:3731
|
747 |
msgid "Your IP address is added to the"
|
748 |
msgstr "Twój adres IP został dodany do"
|
749 |
|
750 |
+
#: ../wp-cerber.php:3743
|
751 |
msgid "Import settings"
|
752 |
msgstr "Importuj ustawienia"
|
753 |
|
754 |
+
#: ../settings.php:173
|
755 |
msgid "Notification limit"
|
756 |
msgstr "Limit powiadomień"
|
757 |
|
758 |
+
#: ../settings.php:173
|
759 |
msgid "notification letters allowed per hour (0 means unlimited)"
|
760 |
msgstr "limit powiadomień na godzinę (0 oznacza nieograniczone)"
|
761 |
|
762 |
+
#: ../settings.php:121
|
763 |
msgid "User related settings"
|
764 |
msgstr "Ustawienia związane z użytkownikami"
|
765 |
|
766 |
+
#: ../settings.php:123
|
767 |
msgid "Prohibited usernames"
|
768 |
msgstr "Zabronione nazwy użytkownika"
|
769 |
|
770 |
+
#: ../settings.php:123
|
771 |
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."
|
772 |
msgstr "Użytkownicy z tej listy nie mogą się logować, ani rejestrować. Każdy adres IP próbujący używać jakiekolwiek nazwy użytkownika z tej listy zostanie zablokowany."
|
773 |
|
774 |
+
#: ../settings.php:124
|
775 |
msgid "User session expire"
|
776 |
msgstr "Przedawnienie sesji użytkownika"
|
777 |
|
778 |
+
#: ../settings.php:124
|
779 |
msgid "in minutes (leave empty to use default WP value)"
|
780 |
msgstr "w minutach (pozostaw puste, aby użyć standardowej wartości WP)"
|
781 |
|
782 |
+
#: ../settings.php:147
|
783 |
msgid "reCAPTCHA settings"
|
784 |
msgstr "Ustawienia reCAPTCHA"
|
785 |
|
786 |
+
#: ../settings.php:148
|
787 |
msgid "Site key"
|
788 |
msgstr "Klucz strony"
|
789 |
|
790 |
+
#: ../settings.php:149
|
791 |
msgid "Secret key"
|
792 |
msgstr "Sekretny klucz"
|
793 |
|
794 |
+
#: ../settings.php:152
|
795 |
msgid "Enable reCAPTCHA for WordPress registration form"
|
796 |
msgstr "Włącz reCAPTCHA dla formularza rejestracji Wordpressa"
|
797 |
|
798 |
+
#: ../settings.php:155
|
799 |
msgid "Lost password form"
|
800 |
msgstr "Formularz odzyskiwania hasła"
|
801 |
|
802 |
+
#: ../settings.php:158
|
803 |
msgid "Login form"
|
804 |
msgstr "Formularz logowania"
|
805 |
|
806 |
+
#: ../settings.php:158
|
807 |
msgid "Enable reCAPTCHA for WordPress login form"
|
808 |
msgstr "Włącz reCAPTCHę dla formularza logowania Wordpressa"
|
809 |
|
810 |
+
#: ../settings.php:219
|
811 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
812 |
msgstr "Zanim zaczniesz używać reCAPTCHA musisz uzyskać dwa klucze na specjalnej stronie Google"
|
813 |
|
814 |
+
#: ../cerber-lab.php:666 ../settings.php:220
|
815 |
msgid "Know more"
|
816 |
msgstr "Dowiedz się więcej"
|
817 |
|
818 |
+
#: ../dashboard.php:892 ../settings.php:239
|
819 |
msgid "WP Cerber Security"
|
820 |
msgstr "Zabezpieczenia WP Cerber"
|
821 |
|
822 |
+
#: ../settings.php:259
|
823 |
msgid "Users"
|
824 |
msgstr "Użytkownicy"
|
825 |
|
826 |
+
#: ../common.php:519
|
827 |
msgid "User created"
|
828 |
msgstr "Utworzenie nowego użytkownika"
|
829 |
|
830 |
+
#: ../dashboard.php:1306 ../common.php:520
|
831 |
msgid "User registered"
|
832 |
msgstr "Użytkownik zarejestrowany"
|
833 |
|
834 |
+
#: ../common.php:547
|
835 |
msgid "reCAPTCHA verification failed"
|
836 |
msgstr "Nieprawidłowa weryfikacja reCATPCHA"
|
837 |
|
838 |
+
#: ../common.php:548
|
839 |
msgid "reCAPTCHA settings are incorrect"
|
840 |
msgstr "Nieprawidłowe ustawienia reCAPTCHA"
|
841 |
|
842 |
+
#: ../common.php:551
|
843 |
msgid "Attempt to access prohibited URL"
|
844 |
msgstr "Próba logowania na zabroniony URL"
|
845 |
|
846 |
+
#: ../common.php:553 ../common.php:598
|
847 |
msgid "Attempt to log in with prohibited username"
|
848 |
msgstr "Próba zalogowania z zabronioną nazwą użytkownika"
|
849 |
|
850 |
+
#: ../settings.php:93
|
851 |
msgid "Cerber Lab connection"
|
852 |
msgstr "Połączenie Cerber Lab"
|
853 |
|
854 |
+
#: ../settings.php:93
|
855 |
msgid "Send malicious IP addresses to the Cerber Lab"
|
856 |
msgstr "Wyślij szkodliwe adresy IP do Cerber Lab"
|
857 |
|
858 |
+
#: ../settings.php:94
|
859 |
msgid "Cerber Lab protocol"
|
860 |
msgstr "Protokół Cerber Lab"
|
861 |
|
862 |
+
#: ../settings.php:134 ../settings.php:152
|
863 |
msgid "Registration form"
|
864 |
msgstr "Formularz rejestracji"
|
865 |
|
866 |
+
#: ../settings.php:153
|
867 |
msgid "Enable reCAPTCHA for WooCommerce registration form"
|
868 |
msgstr "Włącz reCAPTCHA dla formularza rejestracji WooCommerce"
|
869 |
|
870 |
+
#: ../settings.php:155
|
871 |
msgid "Enable reCAPTCHA for WordPress lost password form"
|
872 |
msgstr "Włącz reCAPTCHA dla formularza przypomnienia hasła Wordpressa"
|
873 |
|
874 |
+
#: ../settings.php:156
|
875 |
msgid "Enable reCAPTCHA for WooCommerce lost password form"
|
876 |
msgstr "Włącz reCAPTCHA dla formularza przypomnienia hasła WooCommerce"
|
877 |
|
878 |
+
#: ../settings.php:159
|
879 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
880 |
msgstr "Włącz reCAPTCHę dla formularza logowania WooCoomerce"
|
881 |
|
882 |
+
#: ../common.php:549
|
883 |
msgid "Request to the Google reCAPTCHA service failed"
|
884 |
msgstr "Wysyłanie żądania do Google reCAPTCHA nie powiodło się"
|
885 |
|
886 |
+
#: ../dashboard.php:1298 ../dashboard.php:1327
|
887 |
msgid "View all"
|
888 |
msgstr "Zobacz wszystkie"
|
889 |
|
890 |
+
#: ../dashboard.php:1328
|
891 |
msgid "Recently locked out IP addresses"
|
892 |
msgstr "Ostatnio zablokowane adresy IP"
|
893 |
|
894 |
+
#: ../cerber-lab.php:664
|
895 |
msgid "OK, nail them all"
|
896 |
msgstr "OK"
|
897 |
|
898 |
+
#: ../cerber-lab.php:665
|
899 |
msgid "NO, maybe later"
|
900 |
msgstr "NIE"
|
901 |
|
902 |
+
#: ../dashboard.php:894 ../dashboard.php:1115 ../dashboard.php:1640 ../settings.
|
903 |
+
#: php:244
|
904 |
msgid "Dashboard"
|
905 |
msgstr "Kokpit"
|
906 |
|
907 |
+
#: ../cerber-lab.php:662
|
908 |
msgid "Want to make WP Cerber even more powerful?"
|
909 |
msgstr "Chcesz uczyć WP Cerber jeszcze bardziej potężnym?"
|
910 |
|
911 |
+
#: ../cerber-lab.php:663
|
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 "Pozwól na wysyłanie szkodliwych adresów IP do Cerber Lab. Pomoże to stworzyć nowe algorytmy dla obrony Wordpressa przed zagrożeniami botów pojawiających się na co dzień. Możesz wyłączyć tę opcję w każdej chwili w opcjach wtyczki."
|
914 |
|
915 |
+
#: ../dashboard.php:476
|
916 |
msgid "IP address"
|
917 |
msgstr "Adres IP"
|
918 |
|
919 |
+
#: ../dashboard.php:476
|
920 |
msgid "User login"
|
921 |
msgstr "Login użytkownika"
|
922 |
|
923 |
+
#: ../dashboard.php:476
|
924 |
msgid "User ID"
|
925 |
msgstr "ID użytkownika"
|
926 |
|
927 |
+
#: ../dashboard.php:654
|
928 |
msgid "Export"
|
929 |
msgstr "Eksport"
|
930 |
|
931 |
+
#: ../dashboard.php:673
|
932 |
msgid "Search for IP or username"
|
933 |
msgstr "Szukaj IP lub użytkownika"
|
934 |
|
935 |
+
#: ../dashboard.php:673
|
936 |
msgid "Filter"
|
937 |
msgstr "Filtr"
|
938 |
|
939 |
+
#: ../dashboard.php:894
|
940 |
msgid "Cerber Dashboard"
|
941 |
msgstr "Kokpit Cerbera"
|
942 |
|
943 |
+
#: ../dashboard.php:901
|
944 |
msgid "Cerber tools"
|
945 |
msgstr "Narzędzia Cerbera"
|
946 |
|
947 |
+
#: ../dashboard.php:1553
|
948 |
msgid "Subscribe"
|
949 |
msgstr "Subskrybuj"
|
950 |
|
951 |
+
#: ../dashboard.php:1554 ../cerber-tools.php:243
|
952 |
msgid "Unsubscribe"
|
953 |
msgstr "Odsubskrybuj"
|
954 |
|
955 |
+
#: ../dashboard.php:1582
|
956 |
msgid "You've subscribed"
|
957 |
msgstr "Zasubskrybowałeś/aś"
|
958 |
|
959 |
+
#: ../dashboard.php:1585
|
960 |
msgid "You've unsubscribed"
|
961 |
msgstr "Odsubskrybowałeś/aś"
|
962 |
|
963 |
+
#: ../wp-cerber.php:3071 ../wp-cerber.php:3072
|
964 |
msgid "A new activity has been recorded"
|
965 |
msgstr "Zarejestrowano nową aktywność"
|
966 |
|
967 |
+
#: ../wp-cerber.php:3516
|
968 |
msgid "User"
|
969 |
msgstr "Użytkownik"
|
970 |
|
971 |
+
#: ../wp-cerber.php:3524
|
972 |
msgid "Search string"
|
973 |
msgstr "Fraza do wyszukania"
|
974 |
|
975 |
+
#: ../wp-cerber.php:3545
|
976 |
msgid "To unsubscribe click here"
|
977 |
msgstr "Aby wyłączyć subskrypcję, kliknij tutaj"
|
978 |
|
979 |
+
#: ../settings.php:97
|
980 |
msgid "Preferences"
|
981 |
msgstr "Preferencje"
|
982 |
|
983 |
+
#: ../settings.php:99
|
984 |
msgid "Date format"
|
985 |
msgstr "Format daty"
|
986 |
|
987 |
+
#: ../settings.php:99
|
988 |
msgid "if empty, the default format %s will be used"
|
989 |
msgstr "Jeśli puste, do zostanie użyty domyślny format %s"
|
990 |
|
991 |
+
#: ../dashboard.php:1111 ../settings.php:175
|
992 |
msgid "Push notifications"
|
993 |
msgstr "Pchnij powiadomienia"
|
994 |
|
995 |
+
#: ../settings.php:170
|
996 |
msgid "Email notifications"
|
997 |
msgstr "Powiadomienia E-mail"
|
998 |
|
999 |
+
#: ../settings.php:172 ../settings.php:192
|
1000 |
msgid "Use comma to specify multiple values"
|
1001 |
msgstr "Używaj przecinka, aby określić więcej wartości"
|
1002 |
|
1003 |
+
#: ../settings.php:182
|
1004 |
msgid "All connected devices"
|
1005 |
msgstr "Wszystkie połączone urządzenia"
|
1006 |
|
1007 |
+
#: ../settings.php:183
|
1008 |
msgid "No devices found"
|
1009 |
msgstr "Nie znaleziono urządzeń"
|
1010 |
|
1011 |
+
#: ../settings.php:185
|
1012 |
msgid "Not available"
|
1013 |
msgstr "Niedostępne"
|
1014 |
|
1015 |
+
#: ../common.php:545
|
1016 |
msgid "Password reset requested"
|
1017 |
msgstr "Prośba o reset hasła"
|
1018 |
|
1019 |
+
#: ../common.php:599
|
1020 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1021 |
msgstr "Osiągnięto limit nieprawidłowych weryfikacji reCAPTCHA"
|
1022 |
|
1023 |
+
#: ../common.php:644
|
1024 |
msgid "%s ago"
|
1025 |
msgstr "%s temu"
|
1026 |
|
1027 |
+
#: ../settings.php:71
|
1028 |
msgid "Apply limit login rules to IP addresses in the White IP Access List"
|
1029 |
msgstr "Włącz zasadę limitu logowań dla adresów IP na białej liście"
|
1030 |
|
1031 |
+
#: ../settings.php:80
|
1032 |
msgid "Display 404 page"
|
1033 |
msgstr "Wyświetl stronę 404"
|
1034 |
|
1035 |
+
#: ../settings.php:150
|
1036 |
msgid "Invisible reCAPTCHA"
|
1037 |
msgstr "Niewidzialna reCAPTCHA"
|
1038 |
|
1039 |
+
#: ../settings.php:150
|
1040 |
msgid "Enable invisible reCAPTCHA"
|
1041 |
msgstr "Włącz niewidzialną reCAPTCHę"
|
1042 |
|
1043 |
+
#: ../settings.php:150
|
1044 |
msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
|
1045 |
msgstr "(nie włączaj, dopóki nie zaopatrzysz się w odpowiednie klucze dla wersji niewidzialnej reCAPTCHy)"
|
1046 |
|
1047 |
+
#: ../settings.php:161
|
1048 |
msgid "Enable reCAPTCHA for WordPress comment form"
|
1049 |
msgstr "Włącz reCAPTCHA dla formularza komentarzy Wordpressa"
|
1050 |
|
1051 |
+
#: ../settings.php:162
|
1052 |
msgid "Disable reCAPTCHA for logged in users"
|
1053 |
msgstr "Wyłącz reCAPTCHę dla zalogowanych użytkowników"
|
1054 |
|
1055 |
+
#: ../settings.php:164
|
1056 |
msgid "Limit attempts"
|
1057 |
msgstr "Limit prób"
|
1058 |
|
1059 |
+
#: ../settings.php:164
|
1060 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1061 |
msgstr "Zablokuj adres IP na %s minut po %s nieprawidłowych próbowach logowania w ciągu %s minut"
|
1062 |
|
1063 |
+
#: ../settings.php:213
|
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 "W trybie Twierdzy nie może się zalogować nikt oprócz adresów IP znajdujących się na białej liście. Nie ma to wpływu na aktywne sesje użytkowników."
|
1066 |
|
1067 |
+
#: ../dashboard.php:476 ../dashboard.php:635
|
1068 |
msgid "Event"
|
1069 |
msgstr "Zdarzenie"
|
1070 |
|
1071 |
+
#: ../common.php:116
|
1072 |
msgid "Spam comments denied"
|
1073 |
msgstr "Odrzuconych komentarzy ze spamem"
|
1074 |
|
1075 |
+
#: ../common.php:118
|
1076 |
msgid "Malicious IP addresses detected"
|
1077 |
msgstr "Wykrytych szkodliwych adresów IP"
|
1078 |
|
1079 |
+
#: ../common.php:119
|
1080 |
msgid "Lockouts occurred"
|
1081 |
msgstr "Blokad"
|
1082 |
|
1083 |
+
#: ../dashboard.php:1307
|
1084 |
msgid "All suspicious activity"
|
1085 |
msgstr "Cała podejrzana aktywność"
|
1086 |
|
1087 |
+
#: ../wp-cerber.php:960 ../wp-cerber.php:966 ../wp-cerber.php:982 ../wp-cerber.
|
1088 |
+
#: php:989
|
1089 |
msgid "You are not allowed to register."
|
1090 |
msgstr "Nie masz zezwolenia na rejestrację."
|
1091 |
|
1092 |
+
#: ../common.php:530
|
1093 |
msgid "Spam comment denied"
|
1094 |
msgstr "Komentarz ze spamem odrzucony"
|
1095 |
|
1096 |
+
#: ../common.php:555
|
1097 |
msgid "Attempt to log in denied"
|
1098 |
msgstr "Odrzucono próbę logowania"
|
1099 |
|
1100 |
+
#: ../common.php:556
|
1101 |
msgid "Attempt to register denied"
|
1102 |
msgstr "Odrzucono próbę rejestracji"
|
1103 |
|
1104 |
+
#: ../common.php:113
|
1105 |
msgid "Malicious activities mitigated"
|
1106 |
msgstr "Złagodzonej szkodliwej aktywności"
|
1107 |
|
1108 |
+
#: ../dashboard.php:900
|
1109 |
msgid "Cerber antispam settings"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: ../dashboard.php:900 ../wp-cerber.php:3740 ../settings.php:161
|
1113 |
msgid "Antispam"
|
1114 |
msgstr "Antyspam"
|
1115 |
|
1116 |
+
#: ../settings.php:132
|
1117 |
msgid "Cerber antispam engine"
|
1118 |
msgstr "Silnik antyspamu cerbera"
|
1119 |
|
1120 |
+
#: ../settings.php:133
|
1121 |
msgid "Comment form"
|
1122 |
msgstr "Formularz komentarzy"
|
1123 |
|
1124 |
+
#: ../settings.php:133
|
1125 |
msgid "Protect comment form with bot detection engine"
|
1126 |
msgstr "Chroń formularz komentarzy silnikiem wykrywania botów"
|
1127 |
|
1128 |
+
#: ../settings.php:134
|
1129 |
msgid "Protect registration form with bot detection engine"
|
1130 |
msgstr ""
|
1131 |
|
1141 |
msgid "License"
|
1142 |
msgstr "Licencja"
|
1143 |
|
1144 |
+
#: ../cerber-tools.php:313
|
1145 |
msgid "Antispam and bot detection settings"
|
1146 |
msgstr "Antyspam oraz ustawienia wykrywania botów"
|
1147 |
|
1148 |
+
#: ../wp-cerber.php:1225
|
1149 |
msgid "Sorry, human verification failed."
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: ../common.php:600
|
1153 |
msgid "Bot activity is detected"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: ../settings.php:142
|
1157 |
msgid "Comment processing"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: ../settings.php:143
|
1161 |
msgid "If a spam comment detected"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: ../settings.php:144
|
1165 |
msgid "Trash spam comments"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: ../settings.php:144
|
1169 |
msgid "Move spam comments to trash after"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: ../common.php:531
|
1173 |
msgid "Spam form submission denied"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: ../settings.php:135
|
1177 |
msgid "Other forms"
|
1178 |
msgstr "Inne formularze"
|
1179 |
|
1180 |
+
#: ../settings.php:135
|
1181 |
msgid "Protect all forms on the website with bot detection engine"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: ../settings.php:137
|
1185 |
msgid "Adjust antispam engine"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: ../settings.php:138
|
1189 |
msgid "Safe mode"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: ../settings.php:138
|
1193 |
msgid "Use less restrictive policies (allow AJAX)"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: ../settings.php:139
|
1197 |
msgid "Logged in users"
|
1198 |
msgstr "Zalogowani użytkownicy"
|
1199 |
|
1200 |
+
#: ../settings.php:139
|
1201 |
msgid "Disable bot detection engine for logged in users"
|
1202 |
msgstr ""
|
1203 |
|
1206 |
msgid "WP Cerber Security & Antispam"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: ../dashboard.php:95 ../dashboard.php:633
|
|
|
|
|
|
|
|
|
|
|
1210 |
msgid "Country"
|
1211 |
msgstr "Państwo"
|
1212 |
|
1213 |
+
#: ../dashboard.php:664
|
1214 |
msgid "All events"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: ../dashboard.php:897
|
1218 |
msgid "Cerber Security Rules"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: ../dashboard.php:897 ../dashboard.php:1985
|
1222 |
msgid "Security Rules"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: ../dashboard.php:974
|
1226 |
msgid "Failed login attempts"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: ../dashboard.php:975
|
1230 |
msgid "Registered"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: ../dashboard.php:1042
|
1234 |
msgid "You"
|
1235 |
msgstr "Ty"
|
1236 |
|
1237 |
+
#: ../common.php:117
|
1238 |
msgid "Spam form submissions denied"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: ../dashboard.php:1363 ../wp-cerber.php:3061 ../wp-cerber.php:3733
|
1242 |
msgid "Getting Started Guide"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: ../dashboard.php:1990
|
1246 |
msgid "Countries"
|
1247 |
msgstr "Państwa"
|
1248 |
|
1249 |
+
#: ../dashboard.php:2055
|
1250 |
msgid "Permitted for one country"
|
1251 |
msgid_plural "Permitted for %d countries"
|
1252 |
msgstr[0] ""
|
1253 |
msgstr[1] ""
|
1254 |
msgstr[2] ""
|
1255 |
|
1256 |
+
#: ../dashboard.php:2066
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1257 |
msgid "No rule"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: ../dashboard.php:2269
|
1261 |
msgid "Security rules have been updated"
|
1262 |
msgstr ""
|
1263 |
|
1266 |
msgid "https://wpcerber.com"
|
1267 |
msgstr "https://wpcerber.com"
|
1268 |
|
1269 |
+
#: ../common.php:532
|
1270 |
msgid "Form submission denied"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: ../common.php:533
|
1274 |
msgid "Comment denied"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: ../common.php:558
|
1278 |
msgid "Request to REST API denied"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: ../common.php:559
|
1282 |
msgid "XML-RPC request denied"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: ../common.php:563
|
1286 |
msgid "Bot detected"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: ../common.php:564
|
1290 |
msgid "Citadel mode is active"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: ../common.php:569
|
1294 |
msgid "Malicious activity detected"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: ../common.php:570
|
1298 |
msgid "Blocked by country rule"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: ../common.php:571
|
1302 |
msgid "Limit reached"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: ../common.php:572
|
1306 |
msgid "Multiple suspicious activities"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: ../common.php:601
|
1310 |
msgid "Multiple suspicious activities were detected"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: ../settings.php:107
|
1314 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: ../settings.php:110
|
1318 |
msgid "Block access to the WordPress REST API except the following"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: ../settings.php:111
|
1322 |
msgid "Allow REST API for logged in users"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: ../settings.php:112
|
1326 |
msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: ../settings.php:122
|
1330 |
msgid "Registration limit"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: ../settings.php:125
|
1334 |
msgid "Sort users in dashboard"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: ../settings.php:125
|
1338 |
msgid "by date of registration"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: ../settings.php:140
|
1342 |
msgid "Query whitelist"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: ../settings.php:382 ../settings.php:505
|
|
|
|
|
|
|
|
|
1346 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: ../dashboard.php:2122
|
1350 |
msgid "Start typing here to find a country"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: ../dashboard.php:2205
|
1354 |
msgid "Click on a country name to add it to the list of selected countries"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: ../dashboard.php:2224
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1358 |
msgid "Submit forms"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: ../dashboard.php:2225
|
1362 |
msgid "Post comments"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: ../dashboard.php:2226
|
1366 |
msgid "Log in to the website"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: ../dashboard.php:2227
|
1370 |
msgid "Register on the website"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: ../dashboard.php:2228
|
1374 |
msgid "Use XML-RPC"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: ../dashboard.php:2229
|
1378 |
msgid "Use REST API"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: ../settings.php:143
|
|
|
|
|
|
|
|
|
1382 |
msgid "Deny it completely"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: ../settings.php:143
|
1386 |
msgid "Mark it as spam"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: ../dashboard.php:1292
|
1390 |
+
msgid "in the last 24 hours"
|
1391 |
+
msgstr ""
|
1392 |
+
|
1393 |
+
#: ../dashboard.php:1641
|
1394 |
+
msgid "Main settings"
|
1395 |
+
msgstr ""
|
1396 |
+
|
1397 |
+
#: ../settings.php:190
|
1398 |
+
msgid "Weekly reports"
|
1399 |
+
msgstr ""
|
1400 |
+
|
1401 |
+
#: ../settings.php:602
|
1402 |
+
msgid "Sunday"
|
1403 |
+
msgstr ""
|
1404 |
+
|
1405 |
+
#: ../settings.php:603
|
1406 |
+
msgid "Monday"
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: ../settings.php:604
|
1410 |
+
msgid "Tuesday"
|
1411 |
+
msgstr ""
|
1412 |
+
|
1413 |
+
#: ../settings.php:605
|
1414 |
+
msgid "Wednesday"
|
1415 |
+
msgstr ""
|
1416 |
+
|
1417 |
+
#: ../settings.php:606
|
1418 |
+
msgid "Thursday"
|
1419 |
+
msgstr ""
|
1420 |
+
|
1421 |
+
#: ../settings.php:607
|
1422 |
+
msgid "Friday"
|
1423 |
+
msgstr ""
|
1424 |
+
|
1425 |
+
#: ../settings.php:608
|
1426 |
+
msgid "Saturday"
|
1427 |
+
msgstr ""
|
1428 |
+
|
1429 |
+
#: ../settings.php:661 ../settings.php:662
|
1430 |
+
msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
|
1431 |
+
msgstr ""
|
1432 |
+
|
1433 |
+
#. translators: preposition of time
|
1434 |
+
#: ../settings.php:618
|
1435 |
+
msgctxt "preposition of time"
|
1436 |
+
msgid "at"
|
1437 |
+
msgstr ""
|
1438 |
+
|
1439 |
+
#: ../wp-cerber.php:3077
|
1440 |
+
msgid "Weekly report"
|
1441 |
+
msgstr ""
|
1442 |
+
|
1443 |
+
#: ../wp-cerber.php:3080
|
1444 |
+
msgid "To change reporting settings visit"
|
1445 |
+
msgstr ""
|
1446 |
+
|
1447 |
+
#: ../wp-cerber.php:3106
|
1448 |
+
msgid "Your login page:"
|
1449 |
+
msgstr ""
|
1450 |
+
|
1451 |
+
#: ../wp-cerber.php:3110
|
1452 |
+
msgid "Your license is valid until"
|
1453 |
+
msgstr ""
|
1454 |
+
|
1455 |
+
#: ../wp-cerber.php:3221
|
1456 |
+
msgid "Activity details"
|
1457 |
+
msgstr ""
|
1458 |
+
|
1459 |
+
#: ../settings.php:634
|
1460 |
+
msgid "Click to send now"
|
1461 |
+
msgstr ""
|
1462 |
+
|
1463 |
+
#: ../wp-cerber.php:625
|
1464 |
+
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1465 |
+
msgstr ""
|
1466 |
+
|
1467 |
+
#: ../dashboard.php:377
|
1468 |
+
msgid "Email has been sent to"
|
1469 |
+
msgstr ""
|
1470 |
+
|
1471 |
+
#: ../dashboard.php:380
|
1472 |
+
msgid "Unable to send email to"
|
1473 |
+
msgstr ""
|
1474 |
+
|
1475 |
+
#: ../dashboard.php:2058
|
1476 |
+
msgid "Not permitted for one country"
|
1477 |
+
msgid_plural "Not permitted for %d countries"
|
1478 |
+
msgstr[0] ""
|
1479 |
+
msgstr[1] ""
|
1480 |
+
msgstr[2] ""
|
1481 |
+
|
1482 |
+
#: ../dashboard.php:2209
|
1483 |
+
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1484 |
+
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
1485 |
+
msgstr ""
|
1486 |
+
|
1487 |
+
#: ../dashboard.php:2212
|
1488 |
+
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1489 |
+
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
1490 |
+
msgstr ""
|
1491 |
+
|
1492 |
+
#. Description of the plugin
|
1493 |
+
#:
|
1494 |
+
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>."
|
1495 |
+
msgstr ""
|
1496 |
+
|
1497 |
+
#: ../wp-cerber.php:3209
|
1498 |
+
msgid "Weekly Report"
|
1499 |
+
msgstr ""
|
1500 |
+
|
1501 |
+
#: ../settings.php:80
|
1502 |
+
msgid "Use 404 template from the active theme"
|
1503 |
+
msgstr ""
|
1504 |
+
|
1505 |
+
#: ../settings.php:80
|
1506 |
+
msgid "Display simple 404 page"
|
1507 |
+
msgstr ""
|
1508 |
+
|
1509 |
+
#: ../settings.php:140
|
1510 |
+
msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
|
1511 |
+
msgstr ""
|
1512 |
+
|
1513 |
+
#: ../settings.php:192
|
1514 |
+
msgid "if empty, email from notification settings will be used"
|
1515 |
+
msgstr ""
|
1516 |
+
|
1517 |
+
#: ../settings.php:193
|
1518 |
+
msgid "Enable reporting"
|
1519 |
+
msgstr ""
|
1520 |
+
|
1521 |
+
#: ../wp-cerber.php:3133
|
1522 |
+
msgid "Your last sign-in was %s from %s"
|
1523 |
+
msgstr ""
|
1524 |
+
|
1525 |
+
#: ../wp-cerber.php:3235
|
1526 |
+
msgid "Attempts to log in with non-existent username"
|
1527 |
+
msgstr ""
|
1528 |
+
|
1529 |
+
#: ../dashboard.php:167
|
1530 |
+
msgid "IP address, IPv4 address range or subnet"
|
1531 |
+
msgstr ""
|
1532 |
+
|
1533 |
+
#: ../dashboard.php:169
|
1534 |
+
msgid "Optional comment for this entry"
|
1535 |
+
msgstr ""
|
1536 |
+
|
1537 |
+
#: ../dashboard.php:210
|
1538 |
+
msgid "You cannot add your IP address or network"
|
1539 |
+
msgstr ""
|
1540 |
+
|
1541 |
+
#: ../cerber-news.php:135
|
1542 |
+
msgid "Cool!"
|
1543 |
+
msgstr ""
|
1544 |
+
|
1545 |
+
#: ../settings.php:123
|
1546 |
+
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1547 |
+
msgstr ""
|
1548 |
+
|
languages/wp-cerber-ru_RU.mo
CHANGED
Binary file
|
languages/wp-cerber-ru_RU.po
CHANGED
@@ -1,229 +1,275 @@
|
|
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: 2017-
|
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 |
-
#: wp-cerber.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
msgid "Activity details"
|
16 |
msgstr "Подробно об активности"
|
17 |
|
18 |
-
#: wp-cerber.php:
|
19 |
msgid "Your license is valid until"
|
20 |
msgstr "Ваша лицензия действительна до"
|
21 |
|
22 |
-
#: wp-cerber.php:
|
23 |
msgid "Your login page:"
|
24 |
msgstr "Ваша страница входа:"
|
25 |
|
26 |
-
#: wp-cerber.php:
|
27 |
msgid "To change reporting settings visit"
|
28 |
msgstr "Для смены настроек отчетности зайдите"
|
29 |
|
30 |
-
#: wp-cerber.php:
|
31 |
msgid "Weekly report"
|
32 |
msgstr "Недельный отчет"
|
33 |
|
34 |
-
#: wp-cerber.php:
|
35 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
36 |
msgstr ">>> Переводите WP Cerber? Получите PRO лицензию бесплатно, оставьте контакты здесь: https://wpcerber.com/contact/"
|
37 |
|
38 |
-
#: settings.php:
|
39 |
msgid "Click to send now"
|
40 |
msgstr "Нажмите для отправки сейчас"
|
41 |
|
42 |
#. translators: preposition of time
|
43 |
-
#: settings.php:
|
44 |
msgctxt "preposition of time"
|
45 |
msgid "at"
|
46 |
msgstr "в"
|
47 |
|
48 |
-
#: settings.php:
|
49 |
msgid "Saturday"
|
50 |
msgstr "Суббота"
|
51 |
|
52 |
-
#: settings.php:
|
53 |
msgid "Friday"
|
54 |
msgstr "Пятница"
|
55 |
|
56 |
-
#: settings.php:
|
57 |
msgid "Thursday"
|
58 |
msgstr "Четверг"
|
59 |
|
60 |
-
#: settings.php:
|
61 |
msgid "Wednesday"
|
62 |
msgstr "Среда"
|
63 |
|
64 |
-
#: settings.php:
|
65 |
msgid "Tuesday"
|
66 |
msgstr "Вторник"
|
67 |
|
68 |
-
#: settings.php:
|
69 |
msgid "Monday"
|
70 |
msgstr "Понедельник"
|
71 |
|
72 |
-
#: settings.php:
|
73 |
msgid "Sunday"
|
74 |
msgstr "Воскресенье"
|
75 |
|
76 |
-
#: settings.php:
|
77 |
msgid "Weekly reports"
|
78 |
msgstr "Недельные отчеты"
|
79 |
|
80 |
-
#: dashboard.php:
|
81 |
msgid "Main settings"
|
82 |
msgstr "Основные настройки"
|
83 |
|
84 |
-
#: settings.php:
|
85 |
msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
|
86 |
msgstr "Если вы используете плагин кеширования, вам нужно добавить новый URL входа в список исключений кеширования"
|
87 |
|
88 |
-
#: settings.php:
|
89 |
msgid "%s allowed registrations in %s minutes from one IP"
|
90 |
msgstr "%s разрешенных регистраций в %s минут с одного IP"
|
91 |
|
92 |
-
#: settings.php:
|
93 |
msgid "Mark it as spam"
|
94 |
msgstr "Пометить как спам"
|
95 |
|
96 |
-
#: settings.php:
|
97 |
msgid "Deny it completely"
|
98 |
msgstr "Полностью запретить"
|
99 |
|
100 |
-
#: settings.php:
|
101 |
msgid "Sort users in dashboard"
|
102 |
msgstr "Сортировать пользователей в консоли"
|
103 |
|
104 |
-
#: settings.php:
|
105 |
msgid "Registration limit"
|
106 |
msgstr "Предел регистраций"
|
107 |
|
108 |
-
#: settings.php:
|
109 |
msgid "Allow REST API for logged in users"
|
110 |
msgstr "Разрешить REST API для авторизованных пользователей"
|
111 |
|
112 |
-
#: dashboard.php:
|
113 |
msgid "Use REST API"
|
114 |
msgstr "использование REST API"
|
115 |
|
116 |
-
#: dashboard.php:
|
117 |
msgid "Use XML-RPC"
|
118 |
msgstr "использование XML-RPC"
|
119 |
|
120 |
-
#: dashboard.php:
|
121 |
msgid "Register on the website"
|
122 |
msgstr "регистрация на сайте"
|
123 |
|
124 |
-
#: dashboard.php:
|
125 |
msgid "Log in to the website"
|
126 |
msgstr "авторизация на сайте"
|
127 |
|
128 |
-
#: dashboard.php:
|
129 |
msgid "Post comments"
|
130 |
msgstr "отправка комментариев"
|
131 |
|
132 |
-
#: dashboard.php:
|
133 |
msgid "Submit forms"
|
134 |
msgstr "отправка форм"
|
135 |
|
136 |
-
#: dashboard.php:
|
137 |
-
msgid "Selected countries are not allowed to %s other countries are allowed"
|
138 |
-
msgstr "Выбранным странам запрещено %s, другим разрешено "
|
139 |
-
|
140 |
-
#: dashboard.php:2200
|
141 |
-
msgid "Selected countries are allowed to %s other countries are not allowed"
|
142 |
-
msgstr "Выбранным странам разрешено %s, другим запрещено"
|
143 |
-
|
144 |
-
#: dashboard.php:2196
|
145 |
msgid "Click on a country name to add it to the list of selected countries"
|
146 |
msgstr "Нажмите на страну чтобы добавить ее в список выбранных"
|
147 |
|
148 |
-
#: dashboard.php:
|
149 |
msgid "Start typing here to find a country"
|
150 |
msgstr "Начните печатать тут чтобы найти страну"
|
151 |
|
152 |
-
#: dashboard.php:
|
153 |
msgid "Getting Started Guide"
|
154 |
msgstr "Руководство с чего начать"
|
155 |
|
156 |
-
#: dashboard.php:
|
157 |
msgid "in the last 24 hours"
|
158 |
msgstr "В последние 24 часа"
|
159 |
|
160 |
-
#: dashboard.php:
|
161 |
msgid "You"
|
162 |
msgstr "Вы"
|
163 |
|
164 |
-
#: dashboard.php:
|
165 |
msgid "Registered"
|
166 |
msgstr "Зарегистрирован"
|
167 |
|
168 |
-
#: dashboard.php:
|
169 |
msgid "Failed login attempts"
|
170 |
msgstr "Неудачные попытки входа"
|
171 |
|
172 |
-
#: common.php:
|
173 |
msgid "Multiple suspicious activities were detected"
|
174 |
msgstr "Обнаружена множественная подозрительная активность"
|
175 |
|
176 |
-
#: common.php:
|
177 |
msgid "Multiple suspicious activities"
|
178 |
msgstr "Множественная подозрительная активность"
|
179 |
|
180 |
-
#: common.php:
|
181 |
msgid "Limit reached"
|
182 |
msgstr "Предел достигнут"
|
183 |
|
184 |
-
#: settings.php:
|
185 |
-
msgid "Specify search strings to search in a request URI to exclude the request from inspection by the engine. One string per line."
|
186 |
-
msgstr "Укажите строки для поиска в запросах URI, чтобы исключить инспектирование запроса движком. Одно имя на строку. "
|
187 |
-
|
188 |
-
#: settings.php:131
|
189 |
msgid "Query whitelist"
|
190 |
msgstr "Белый список запросов"
|
191 |
|
192 |
-
#: settings.php:
|
193 |
msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
|
194 |
msgstr "Укажите пространства имен REST API разрешенных при отключении REST API, одно имя на строку."
|
195 |
|
196 |
-
#: settings.php:
|
197 |
msgid "Block access to the WordPress REST API except the following"
|
198 |
msgstr "Блокировать доступ к REST API кроме следующего"
|
199 |
|
200 |
-
#: settings.php:
|
201 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
202 |
msgstr "Блокировать доступ к страницам пользователя /?author=n и данным о пользователях через REST API"
|
203 |
|
204 |
-
#: dashboard.php:
|
205 |
msgid "Security rules have been updated"
|
206 |
msgstr "Правила безопасности обновлены"
|
207 |
|
208 |
-
#: dashboard.php:
|
209 |
msgid "No rule"
|
210 |
msgstr "Нет правила"
|
211 |
|
212 |
-
#: dashboard.php:
|
213 |
-
msgid "Blocked for one country"
|
214 |
-
msgid_plural "Blocked for %d countries"
|
215 |
-
msgstr[0] "Блокировка одной страны"
|
216 |
-
msgstr[1] "Блокировка %d стран"
|
217 |
-
msgstr[2] "Блокировка %d стран"
|
218 |
-
|
219 |
-
#: dashboard.php:2048
|
220 |
msgid "Permitted for one country"
|
221 |
msgid_plural "Permitted for %d countries"
|
222 |
msgstr[0] "Разрешается для одной страны"
|
223 |
msgstr[1] "Разрешается для %d стран"
|
224 |
msgstr[2] "Разрешается для %d стран"
|
225 |
|
226 |
-
#: dashboard.php:
|
227 |
msgid "Countries"
|
228 |
msgstr "Страны"
|
229 |
|
@@ -231,51 +277,51 @@ msgstr "Страны"
|
|
231 |
msgid "Spam form submissions denied"
|
232 |
msgstr "Заблокированы отправки форм спама"
|
233 |
|
234 |
-
#: dashboard.php:
|
235 |
msgid "Security Rules"
|
236 |
msgstr "Правила безопасности"
|
237 |
|
238 |
-
#: dashboard.php:
|
239 |
msgid "Cerber Security Rules"
|
240 |
msgstr "Правила безопасности Цербер"
|
241 |
|
242 |
-
#: dashboard.php:
|
243 |
msgid "All events"
|
244 |
msgstr "Все события"
|
245 |
|
246 |
-
#: dashboard.php:95 dashboard.php:
|
247 |
msgid "Country"
|
248 |
msgstr "Страна"
|
249 |
|
250 |
-
#: common.php:
|
251 |
msgid "Blocked by country rule"
|
252 |
msgstr "Заблокирован по ограничению для страны"
|
253 |
|
254 |
-
#: common.php:
|
255 |
msgid "Malicious activity detected"
|
256 |
msgstr "Обнаружена вредоносная активность"
|
257 |
|
258 |
-
#: common.php:
|
259 |
msgid "Citadel mode is active"
|
260 |
msgstr "Режим цитадель активен"
|
261 |
|
262 |
-
#: common.php:
|
263 |
msgid "Bot detected"
|
264 |
msgstr "Обнаружен бот"
|
265 |
|
266 |
-
#: common.php:
|
267 |
msgid "XML-RPC request denied"
|
268 |
msgstr "Запрос XML-RPC заблокирован"
|
269 |
|
270 |
-
#: common.php:
|
271 |
msgid "Request to REST API denied"
|
272 |
msgstr "Запрос к REST API заблокирован"
|
273 |
|
274 |
-
#: common.php:
|
275 |
msgid "Comment denied"
|
276 |
msgstr "Комментарий заблокирован"
|
277 |
|
278 |
-
#: common.php:
|
279 |
msgid "Form submission denied"
|
280 |
msgstr "Отправка формы заблокирована"
|
281 |
|
@@ -287,83 +333,83 @@ msgstr "Лицензия"
|
|
287 |
msgid "WP Cerber Security & Antispam"
|
288 |
msgstr "WP Cerber Security & Antispam"
|
289 |
|
290 |
-
#: settings.php:
|
291 |
msgid "Disable bot detection engine for logged in users"
|
292 |
msgstr "Отключить определение ботов для авторизованных пользователей"
|
293 |
|
294 |
-
#: settings.php:
|
295 |
msgid "Logged in users"
|
296 |
msgstr "Авторизованные пользователи"
|
297 |
|
298 |
-
#: settings.php:
|
299 |
msgid "Use less restrictive policies (allow AJAX)"
|
300 |
msgstr "Использовать менее жесткую политику (разрешить AJAX)"
|
301 |
|
302 |
-
#: settings.php:
|
303 |
msgid "Safe mode"
|
304 |
msgstr "Безопасный режим"
|
305 |
|
306 |
-
#: settings.php:
|
307 |
msgid "Adjust antispam engine"
|
308 |
msgstr "Настроить антиспам-движок"
|
309 |
|
310 |
-
#: settings.php:
|
311 |
msgid "Protect all forms on the website with bot detection engine"
|
312 |
msgstr "Защитить все формы на сайте через определение ботов"
|
313 |
|
314 |
-
#: settings.php:
|
315 |
msgid "Other forms"
|
316 |
msgstr "Другие формы"
|
317 |
|
318 |
-
#: common.php:
|
319 |
msgid "Spam form submission denied"
|
320 |
msgstr "Отправка формы со спамом заблокирована"
|
321 |
|
322 |
-
#: wp-cerber.php:
|
323 |
msgid "Sorry, human verification failed."
|
324 |
msgstr "Извините, проверка на человека не удалась."
|
325 |
|
326 |
-
#: settings.php:
|
327 |
msgid "Move spam comments to trash after"
|
328 |
msgstr "Удалить спам комментарии в корзину после"
|
329 |
|
330 |
-
#: settings.php:
|
331 |
msgid "Trash spam comments"
|
332 |
msgstr "Удалить спам комментарии в корзину"
|
333 |
|
334 |
-
#: settings.php:
|
335 |
msgid "If a spam comment detected"
|
336 |
msgstr "Если обнаружен спам комментарий"
|
337 |
|
338 |
-
#: settings.php:
|
339 |
msgid "Comment processing"
|
340 |
msgstr "Обработка комментария"
|
341 |
|
342 |
-
#: settings.php:
|
343 |
msgid "Protect registration form with bot detection engine"
|
344 |
msgstr "Защита регистрации через определение ботов"
|
345 |
|
346 |
-
#: settings.php:
|
347 |
msgid "Protect comment form with bot detection engine"
|
348 |
msgstr "Защита комментариев через определение ботов"
|
349 |
|
350 |
-
#: settings.php:
|
351 |
msgid "Cerber antispam engine"
|
352 |
-
msgstr "Движок
|
353 |
|
354 |
-
#: dashboard.php:
|
355 |
msgid "Antispam"
|
356 |
msgstr "Аниспам"
|
357 |
|
358 |
-
#: dashboard.php:
|
359 |
msgid "Cerber antispam settings"
|
360 |
msgstr "Настройка Цербер антиспам"
|
361 |
|
362 |
-
#: common.php:
|
363 |
msgid "Bot activity is detected"
|
364 |
msgstr "Обнаружена активность ботов"
|
365 |
|
366 |
-
#: cerber-tools.php:
|
367 |
msgid "Antispam and bot detection settings"
|
368 |
msgstr "Антиспам и настройки определения ботов"
|
369 |
|
@@ -375,11 +421,11 @@ msgstr "Диагностика"
|
|
375 |
msgid "Export & Import"
|
376 |
msgstr "Экспорт и Импорт"
|
377 |
|
378 |
-
#: wp-cerber.php:
|
379 |
msgid "You are not allowed to register."
|
380 |
msgstr "Вам не разрешено зарегистрироваться."
|
381 |
|
382 |
-
#: dashboard.php:
|
383 |
msgid "All suspicious activity"
|
384 |
msgstr "Вся подозрительная активность"
|
385 |
|
@@ -399,175 +445,175 @@ msgstr "Спам-комментарии отклонены"
|
|
399 |
msgid "Malicious activities mitigated"
|
400 |
msgstr "Вредоносная активность снижена"
|
401 |
|
402 |
-
#: dashboard.php:457 dashboard.php:
|
403 |
msgid "Event"
|
404 |
msgstr "Событие"
|
405 |
|
406 |
-
#: common.php:
|
407 |
msgid "Attempt to register denied"
|
408 |
msgstr "Попытка регистрации отклонена"
|
409 |
|
410 |
-
#: common.php:
|
411 |
msgid "Attempt to log in denied"
|
412 |
msgstr "Попытка входа отклонена"
|
413 |
|
414 |
-
#: common.php:
|
415 |
msgid "Spam comment denied"
|
416 |
msgstr "Спам коммнтарий отклонен"
|
417 |
|
418 |
-
#: settings.php:
|
419 |
msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
|
420 |
msgstr "В режиме Цитадель никто не может войти кроме как с IP в белом списке. Активные сессии пользователей не будут затронуты."
|
421 |
|
422 |
-
#: settings.php:
|
423 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
424 |
msgstr "Блокировать IP адрес на %s минут после %s неудачных попыток в течении %s минут"
|
425 |
|
426 |
-
#: settings.php:
|
427 |
msgid "Limit attempts"
|
428 |
msgstr "Ограничение попыток"
|
429 |
|
430 |
-
#: settings.php:
|
431 |
msgid "Apply limit login rules to IP addresses in the White IP Access List"
|
432 |
msgstr "Применить правила входа для IP адресов в белом списке"
|
433 |
|
434 |
-
#: common.php:
|
435 |
-
msgid "Limit on failed reCAPTCHA verifications is reached"
|
436 |
-
msgstr "Достигнут предел проверки reCAPTCHA"
|
437 |
-
|
438 |
-
#: common.php:503
|
439 |
msgid "Password reset requested"
|
440 |
msgstr "Запрошен сброс пароля"
|
441 |
|
442 |
-
#:
|
|
|
|
|
|
|
|
|
443 |
msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
|
444 |
msgstr "(не включайте, если у вас нет или вы не вводили ключ сайта и секретный ключ для невидимой версии)"
|
445 |
|
446 |
-
#: settings.php:
|
447 |
msgid "Disable reCAPTCHA for logged in users"
|
448 |
msgstr "Отключить reCAPTCHA для авторизованных пользователей"
|
449 |
|
450 |
-
#: settings.php:
|
451 |
msgid "Enable reCAPTCHA for WordPress comment form"
|
452 |
msgstr "Включить reCAPTCHA в форме комментариев WordPress"
|
453 |
|
454 |
-
#: settings.php:
|
455 |
msgid "Comment form"
|
456 |
msgstr "Форма комментариев"
|
457 |
|
458 |
-
#: settings.php:
|
459 |
msgid "Enable invisible reCAPTCHA"
|
460 |
msgstr "Включить невидимую reCAPTCHA"
|
461 |
|
462 |
-
#: settings.php:
|
463 |
msgid "Invisible reCAPTCHA"
|
464 |
msgstr "невидимая reCAPTCHA"
|
465 |
|
466 |
-
#: common.php:
|
467 |
msgid "%s ago"
|
468 |
msgstr "%s назад"
|
469 |
|
470 |
-
#: settings.php:
|
471 |
msgid "Not available"
|
472 |
msgstr "Недоступно"
|
473 |
|
474 |
-
#: settings.php:
|
475 |
msgid "No devices found"
|
476 |
msgstr "Устройства не найдены"
|
477 |
|
478 |
-
#: settings.php:
|
479 |
msgid "All connected devices"
|
480 |
msgstr "Все подключенные устройства"
|
481 |
|
482 |
-
#: settings.php:
|
483 |
msgid "Use comma to specify multiple values"
|
484 |
msgstr "Используйте запятую для разделения множественных значений"
|
485 |
|
486 |
-
#: settings.php:
|
487 |
msgid "Email notifications"
|
488 |
msgstr "Уведомления по эл.почте"
|
489 |
|
490 |
-
#: settings.php:
|
491 |
msgid "Display 404 page"
|
492 |
msgstr "Показывать страницу 404"
|
493 |
|
494 |
-
#: dashboard.php:
|
495 |
msgid "Push notifications"
|
496 |
msgstr "Push уведомления"
|
497 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
498 |
#: dashboard.php:457
|
499 |
msgid "User login"
|
500 |
msgstr "Имя пользователя"
|
501 |
|
502 |
-
#: dashboard.php:895
|
503 |
-
msgid "Cerber Dashboard"
|
504 |
-
msgstr "Консоль Cerber"
|
505 |
-
|
506 |
-
#: dashboard.php:1550
|
507 |
-
msgid "Subscribe"
|
508 |
-
msgstr "Подписаться"
|
509 |
-
|
510 |
-
#: cerber-tools.php:236 dashboard.php:1551
|
511 |
-
msgid "Unsubscribe"
|
512 |
-
msgstr "Отменить подписку"
|
513 |
-
|
514 |
-
#: dashboard.php:1579
|
515 |
-
msgid "You've subscribed"
|
516 |
-
msgstr "Вы подписались"
|
517 |
-
|
518 |
-
#: dashboard.php:1582
|
519 |
-
msgid "You've unsubscribed"
|
520 |
-
msgstr "Подписка отменена"
|
521 |
-
|
522 |
#: dashboard.php:457
|
523 |
msgid "IP address"
|
524 |
msgstr "IP адрес"
|
525 |
|
526 |
-
#: dashboard.php:
|
527 |
-
msgid "User ID"
|
528 |
-
msgstr "ID пользователя"
|
529 |
-
|
530 |
-
#: dashboard.php:655
|
531 |
-
msgid "Export"
|
532 |
-
msgstr "Экспорт"
|
533 |
-
|
534 |
-
#: dashboard.php:674
|
535 |
msgid "Search for IP or username"
|
536 |
msgstr "Поиск IP или имени пользователя"
|
537 |
|
538 |
-
#: dashboard.php:
|
|
|
|
|
|
|
|
|
539 |
msgid "Filter"
|
540 |
msgstr "Фильтр"
|
541 |
|
542 |
-
#: dashboard.php:
|
|
|
|
|
|
|
|
|
543 |
msgid "Cerber tools"
|
544 |
msgstr "Инструменты Cerber"
|
545 |
|
546 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
547 |
msgid "if empty, the default format %s will be used"
|
548 |
msgstr "Если пусто, будет использован формат по умолчанию %s"
|
549 |
|
550 |
-
#: wp-cerber.php:
|
551 |
msgid "A new activity has been recorded"
|
552 |
msgstr "Отмечена новая активность"
|
553 |
|
554 |
-
#: wp-cerber.php:
|
555 |
msgid "User"
|
556 |
msgstr "Пользователь"
|
557 |
|
558 |
-
#: wp-cerber.php:
|
559 |
-
msgid "Search string"
|
560 |
-
msgstr "Строка поиска"
|
561 |
-
|
562 |
-
#: wp-cerber.php:3460
|
563 |
msgid "To unsubscribe click here"
|
564 |
msgstr "Для отмены подписки нажмите здесь"
|
565 |
|
566 |
-
#:
|
|
|
|
|
|
|
|
|
567 |
msgid "Preferences"
|
568 |
msgstr "Настройки"
|
569 |
|
570 |
-
#: settings.php:
|
571 |
msgid "Date format"
|
572 |
msgstr "Формат даты"
|
573 |
|
@@ -579,67 +625,67 @@ msgstr "Gregory"
|
|
579 |
msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
580 |
msgstr "Защищает сайт от атак перебора, ботов, хакеров. Антиспам защита с движком Cerber антиспам и reCAPTCHA. Всесторонний контроль активности пользователей. Ограничение входа по IP адресам. Ограничение попыток входа. Узнайте больше на сайте <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
581 |
|
582 |
-
#: dashboard.php:
|
583 |
msgid "Dashboard"
|
584 |
msgstr "Консоль"
|
585 |
|
586 |
-
#: settings.php:
|
587 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
588 |
msgstr "Включить reCAPTCHA для формы входа WooCommerce"
|
589 |
|
590 |
-
#: settings.php:
|
591 |
msgid "Enable reCAPTCHA for WordPress login form"
|
592 |
msgstr "Включить reCAPTCHA для формы входа WordPress"
|
593 |
|
594 |
-
#: settings.php:
|
595 |
msgid "Enable reCAPTCHA for WooCommerce lost password form"
|
596 |
msgstr "Включить reCAPTCHA для формы восстановления пароля WooCommerce"
|
597 |
|
598 |
-
#: settings.php:
|
599 |
msgid "Enable reCAPTCHA for WordPress lost password form"
|
600 |
msgstr "Включить reCAPTCHA для формы восстановления пароля WordPress"
|
601 |
|
602 |
-
#: settings.php:
|
603 |
msgid "Enable reCAPTCHA for WooCommerce registration form"
|
604 |
msgstr "Включить reCAPTCHA для формы регистрации WooCommerce"
|
605 |
|
606 |
-
#: settings.php:
|
607 |
msgid "Enable reCAPTCHA for WordPress registration form"
|
608 |
msgstr "Включить reCAPTCHA для формы регистрации WordPress"
|
609 |
|
610 |
-
#: settings.php:
|
611 |
msgid "Registration form"
|
612 |
msgstr "Форма регистрации"
|
613 |
|
614 |
-
#: settings.php:
|
615 |
msgid "Cerber Lab protocol"
|
616 |
msgstr "протокол Cerber Lab"
|
617 |
|
618 |
-
#: settings.php:
|
619 |
msgid "Send malicious IP addresses to the Cerber Lab"
|
620 |
msgstr "Посылать вредоносные IP адреса в Cerber Lab"
|
621 |
|
622 |
-
#: settings.php:
|
623 |
msgid "Cerber Lab connection"
|
624 |
msgstr "Подключение Cerber Lab"
|
625 |
|
626 |
-
#: dashboard.php:
|
627 |
msgid "Recently locked out IP addresses"
|
628 |
msgstr "Недавно заблокированые IP адреса"
|
629 |
|
630 |
-
#: dashboard.php:
|
631 |
msgid "View all"
|
632 |
msgstr "Просмотреть все"
|
633 |
|
634 |
-
#: dashboard.php:
|
635 |
msgid "WP Cerber Security"
|
636 |
msgstr "WP Cerber Security"
|
637 |
|
638 |
-
#: dashboard.php:
|
639 |
msgid "Add network to the Black List"
|
640 |
msgstr "Добавить сеть в черный список"
|
641 |
|
642 |
-
#: dashboard.php:
|
643 |
msgid "Network:"
|
644 |
msgstr "Сеть:"
|
645 |
|
@@ -647,169 +693,171 @@ msgstr "Сеть:"
|
|
647 |
msgid "Incorrect IP address or IP range"
|
648 |
msgstr "Неверный IP адрес или диапазон адресов"
|
649 |
|
650 |
-
#: common.php:
|
651 |
msgid "Request to the Google reCAPTCHA service failed"
|
652 |
msgstr "Запрос к сервису Google reCAPTCHA не удался"
|
653 |
|
654 |
-
#: cerber-lab.php:
|
655 |
msgid "NO, maybe later"
|
656 |
msgstr "НЕТ, возможно позже"
|
657 |
|
658 |
-
#: cerber-lab.php:
|
659 |
msgid "OK, nail them all"
|
660 |
msgstr "ОК, прибьем их всех"
|
661 |
|
662 |
-
#: cerber-lab.php:
|
663 |
msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
|
664 |
msgstr "Разрешить WP Cerber посылать заблокированные IP адреса в Cerber Lab. Это помогает команде плагина разрабатывать новые алгоритмы для WP Cerber, которые будут защищать WordPress против новых угроз и ботнетов появляюшихся каждый день. Вы всегда можете отключить отсылку в настройках плагина, в любой момент."
|
665 |
|
666 |
-
#: cerber-lab.php:
|
667 |
msgid "Want to make WP Cerber even more powerful?"
|
668 |
msgstr "Хотите сделать WP Cerber еще мощнее ?"
|
669 |
|
670 |
-
#. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security & Antispam 5.8)
|
|
|
671 |
#. Plugin URI of the plugin/theme
|
672 |
-
#. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security & Antispam 5.8)
|
|
|
673 |
#. Author URI of the plugin/theme
|
674 |
msgid "https://wpcerber.com"
|
675 |
msgstr "https://wpcerber.com"
|
676 |
|
677 |
-
#: wp-cerber.php:
|
678 |
msgid "Import settings"
|
679 |
msgstr "Импорт настроек"
|
680 |
|
681 |
-
#: wp-cerber.php:
|
682 |
msgid "Your IP address is added to the"
|
683 |
msgstr "Ваш IP адрес добавлен к"
|
684 |
|
685 |
-
#: wp-cerber.php:
|
686 |
msgid "Can't activate WP Cerber due to a database error."
|
687 |
msgstr "Невозможно активировать плагин WP Cerber из-за ошибки в базе данных."
|
688 |
|
689 |
-
#: wp-cerber.php:
|
690 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
691 |
msgstr "WP Cerber требует WordPress версии %s или выше. У вас версия"
|
692 |
|
693 |
-
#: wp-cerber.php:
|
694 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
695 |
msgstr "WP Cerber требует PHP версии %s или выше. У вас версия"
|
696 |
|
697 |
-
#: wp-cerber.php:
|
698 |
msgid "This message was sent by"
|
699 |
msgstr "Это сообщение было отправлено"
|
700 |
|
701 |
-
#: wp-cerber.php:
|
702 |
msgid "New Custom login URL"
|
703 |
msgstr "Новый URL для входа на сайт"
|
704 |
|
705 |
-
#: wp-cerber.php:
|
706 |
msgid "WP Cerber is now active and has started protecting your site"
|
707 |
msgstr "WP Cerber активен и начал защищать ваш сайт"
|
708 |
|
709 |
-
#: wp-cerber.php:
|
710 |
msgid "The WP Cerber security plugin is now active"
|
711 |
msgstr "WP Cerber плагин безопасности активен"
|
712 |
|
713 |
-
#: wp-cerber.php:
|
714 |
msgid "From country"
|
715 |
msgstr "Из страны"
|
716 |
|
717 |
-
#: wp-cerber.php:
|
718 |
msgid "From IP address"
|
719 |
msgstr "С IP адреса"
|
720 |
|
721 |
-
#: wp-cerber.php:
|
722 |
msgid "By user"
|
723 |
msgstr "По пользователю"
|
724 |
|
725 |
-
#: wp-cerber.php:
|
726 |
msgid "Not logged in"
|
727 |
msgstr "Нет авторизации"
|
728 |
|
729 |
-
#: wp-cerber.php:
|
730 |
msgid "The WP Cerber security plugin has been deactivated"
|
731 |
msgstr "WP Cerber плагин деактивирован"
|
732 |
|
733 |
-
#: wp-cerber.php:
|
734 |
msgid "Website"
|
735 |
msgstr "Сайт"
|
736 |
|
737 |
-
#: wp-cerber.php:
|
738 |
msgid "Hi!"
|
739 |
msgstr "Привет!"
|
740 |
|
741 |
-
#: wp-cerber.php:
|
742 |
msgid "A new version of WP Cerber is available to install"
|
743 |
msgstr "Доступна новая версия WP Cerber!"
|
744 |
|
745 |
-
#: wp-cerber.php:
|
746 |
msgid "View lockouts in dashboard"
|
747 |
msgstr "Просмотреть список заблокированных IP"
|
748 |
|
749 |
-
#: wp-cerber.php:
|
750 |
msgid "View activity for this IP"
|
751 |
msgstr "Посмотреть активность для этого IP"
|
752 |
|
753 |
-
#: wp-cerber.php:
|
754 |
msgid "Last lockout was added: %s for IP %s"
|
755 |
msgstr "Последняя блокировка была добавлена %s для IP %s"
|
756 |
|
757 |
-
#: wp-cerber.php:
|
758 |
msgid "Number of active lockouts"
|
759 |
msgstr "Число активных блокировок на данный момент"
|
760 |
|
761 |
-
#: wp-cerber.php:
|
762 |
msgid "Number of lockouts is increasing"
|
763 |
msgstr "Число блокировок увеличилось"
|
764 |
|
765 |
-
#: wp-cerber.php:
|
766 |
msgid "unspecified"
|
767 |
msgstr "неуказано"
|
768 |
|
769 |
-
#: wp-cerber.php:
|
770 |
msgid "View activity in dashboard"
|
771 |
msgstr "Просмотреть журнал активности"
|
772 |
|
773 |
-
#: wp-cerber.php:
|
774 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
775 |
msgstr "Последняя неудачная попытка была в %s с IP адреса %s с логином %s."
|
776 |
|
777 |
-
#: wp-cerber.php:
|
778 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
779 |
msgstr "Режим Цитадель активирован после %d неудачных попыток за %d минут."
|
780 |
|
781 |
-
#: wp-cerber.php:
|
782 |
msgid "Citadel mode is activated"
|
783 |
msgstr "Активирован режим Цитадель"
|
784 |
|
785 |
-
#: wp-cerber.php:
|
786 |
msgid "WP Cerber notify"
|
787 |
msgstr "Уведомление WP Cerber"
|
788 |
|
789 |
-
#: common.php:
|
790 |
msgid "Limit on login attempts is reached"
|
791 |
msgstr "Количество попыток исчерпано"
|
792 |
|
793 |
-
#: common.php:
|
794 |
msgid "Attempt to access"
|
795 |
msgstr "Попытка доступа к"
|
796 |
|
797 |
-
#: wp-cerber.php:
|
798 |
msgid "Username is not allowed. Please choose another one."
|
799 |
msgstr "Имя пользователя недопустимо. Выберите другое."
|
800 |
|
801 |
-
#: wp-cerber.php:
|
802 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
803 |
msgstr "<strong>ОШИБКА</strong>: Пароль введенный для пользователя %s is некорректен."
|
804 |
|
805 |
-
#: wp-cerber.php:
|
806 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
807 |
msgstr "Антибот проверка неудачна. Пожалуйста тыкните в квадратную отметку блока reCAPTCHA ниже"
|
808 |
|
809 |
-
#: common.php:
|
810 |
-
#: wp-cerber.php:
|
811 |
-
#: wp-cerber.php:
|
812 |
-
#: wp-cerber.php:
|
813 |
msgid "ERROR:"
|
814 |
msgstr "ОШИБКА:"
|
815 |
|
@@ -828,406 +876,406 @@ msgstr "Вход невозможен. Слишком много ошибочн
|
|
828 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
829 |
msgstr "Вход на сайт невозможен. Обратитесь к администратору сайта."
|
830 |
|
831 |
-
#: common.php:
|
832 |
msgid "Unknown"
|
833 |
msgstr "Неизвестен"
|
834 |
|
835 |
-
#: settings.php:
|
836 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
837 |
msgstr "<strong>ОШИБКА</strong>: Введите действительный адрес эл.почты."
|
838 |
|
839 |
-
#: settings.php:
|
840 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
841 |
msgstr "Внимание! Вы изменили URL страницы авторизации. Новый адрес"
|
842 |
|
843 |
-
#: settings.php:
|
844 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
845 |
msgstr "Активировать после %s неудачных авторизаций за последние %s минут"
|
846 |
|
847 |
-
#: settings.php:
|
848 |
msgid "Notify admin if the number of active lockouts above"
|
849 |
msgstr "Уведомить администратора, если число заблокированных IP более"
|
850 |
|
851 |
-
#: settings.php:
|
852 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
853 |
msgstr "Увеличить длительность блокировки до %s часов после %s блокировок в течение последних %s часов"
|
854 |
|
855 |
-
#: settings.php:
|
856 |
msgid "%s allowed retries in %s minutes"
|
857 |
msgstr "%s попыток разрешено в течении %s минут"
|
858 |
|
859 |
-
#: settings.php:
|
860 |
msgid "Help"
|
861 |
msgstr "Помощь"
|
862 |
|
863 |
-
#: cerber-tools.php:43 dashboard.php:
|
864 |
msgid "Tools"
|
865 |
msgstr "Инструменты"
|
866 |
|
867 |
-
#: settings.php:
|
868 |
msgid "Users"
|
869 |
msgstr "Пользователи"
|
870 |
|
871 |
-
#: settings.php:
|
872 |
msgid "Hardening"
|
873 |
msgstr "Панцирь"
|
874 |
|
875 |
-
#: settings.php:
|
876 |
msgid "Main Settings"
|
877 |
msgstr "Главные настройки"
|
878 |
|
879 |
-
#: cerber-lab.php:
|
880 |
msgid "Know more"
|
881 |
msgstr "Узнать больше"
|
882 |
|
883 |
-
#: settings.php:
|
884 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
885 |
msgstr "Перед использованием reCAPTCHA вам нужно получить ключ сайта и секретный ключ на сайте Google"
|
886 |
|
887 |
-
#: settings.php:
|
888 |
msgid "These settings do not affect hosts from the "
|
889 |
msgstr "Эти настройки не применяются к адресам из"
|
890 |
|
891 |
-
#: settings.php:
|
892 |
msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
|
893 |
msgstr "Будте внимательны при установке этих параметров. Если вы забудете URL страницы авторизации вы не сможете войти в панель управления."
|
894 |
|
895 |
-
#: settings.php:
|
896 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
897 |
msgstr "Для использования этой настройки необходимо активировать Постоянные ссылки в настройках сайта."
|
898 |
|
899 |
-
#: settings.php:
|
900 |
msgid "Make your protection smarter!"
|
901 |
msgstr "Сделайте защиту от злоумышленников еще умнее"
|
902 |
|
903 |
-
#: settings.php:
|
904 |
msgid "Login form"
|
905 |
msgstr "Форма входа"
|
906 |
|
907 |
-
#: settings.php:
|
908 |
msgid "Lost password form"
|
909 |
msgstr "Форма восстановления пароля"
|
910 |
|
911 |
-
#: settings.php:
|
912 |
msgid "Secret key"
|
913 |
msgstr "Секретный ключ"
|
914 |
|
915 |
-
#: settings.php:
|
916 |
msgid "Site key"
|
917 |
msgstr "Ключ сайта"
|
918 |
|
919 |
-
#: settings.php:
|
920 |
msgid "reCAPTCHA settings"
|
921 |
msgstr "Настройки reCAPTCHA"
|
922 |
|
923 |
-
#: settings.php:
|
924 |
msgid "in minutes (leave empty to use default WP value)"
|
925 |
msgstr "В минутах (оставьте пустым для значения WP по умолчанию)"
|
926 |
|
927 |
-
#: settings.php:
|
928 |
msgid "User session expire"
|
929 |
msgstr "Длительность сессии пользователя"
|
930 |
|
931 |
-
#: settings.php:
|
932 |
msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
|
933 |
msgstr "Имена пользователей из этого списка не разрешены для входа или регистрации. Любой IP адрес пытающийся использовать эти имена будет автоматически заблокирован. Испольуйте запятую как разделитель."
|
934 |
|
935 |
-
#: settings.php:
|
936 |
msgid "Prohibited usernames"
|
937 |
msgstr "Запрещеные имена пользователей"
|
938 |
|
939 |
-
#: settings.php:
|
940 |
msgid "User related settings"
|
941 |
msgstr "Настройки пользователей"
|
942 |
|
943 |
-
#: settings.php:
|
944 |
msgid "Disable REST API"
|
945 |
msgstr "Отключить REST API"
|
946 |
|
947 |
-
#: settings.php:
|
948 |
msgid "Block access to the RSS, Atom and RDF feeds"
|
949 |
msgstr "Закрыть доступ к RSS, Atom и RDF лентам"
|
950 |
|
951 |
-
#: settings.php:
|
952 |
msgid "Disable feeds"
|
953 |
msgstr "Отключить ленты"
|
954 |
|
955 |
-
#: settings.php:
|
956 |
msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
|
957 |
-
msgstr "Закрыть доступ к функциям XML-RPC, включая
|
958 |
|
959 |
-
#: settings.php:
|
960 |
msgid "Disable XML-RPC"
|
961 |
msgstr "Отключить XML-RPC"
|
962 |
|
963 |
-
#: settings.php:
|
964 |
msgid "Stop user enumeration"
|
965 |
msgstr "Заблокировать сбор имен"
|
966 |
|
967 |
-
#: settings.php:
|
968 |
msgid "Hardening WordPress"
|
969 |
msgstr "Усиление защиты WordPress"
|
970 |
|
971 |
-
#: settings.php:
|
972 |
msgid "Write failed login attempts to the file"
|
973 |
msgstr "Записывать попытки входа в файл"
|
974 |
|
975 |
-
#: settings.php:
|
976 |
msgid "Use file"
|
977 |
msgstr "Использовать файл"
|
978 |
|
979 |
-
#: settings.php:
|
980 |
msgid "Retrieve extra WHOIS information for IP"
|
981 |
msgstr "Получить дополнительную информацию об IP используя WHOIS"
|
982 |
|
983 |
-
#: settings.php:
|
984 |
msgid "Drill down IP"
|
985 |
msgstr "Изучать IP"
|
986 |
|
987 |
-
#: settings.php:
|
988 |
msgid "days"
|
989 |
msgstr "дней"
|
990 |
|
991 |
-
#: settings.php:
|
992 |
msgid "Keep records for"
|
993 |
msgstr "Хранить записи не более"
|
994 |
|
995 |
-
#: settings.php:
|
996 |
msgid "notification letters allowed per hour (0 means unlimited)"
|
997 |
msgstr "разрешенное число писем с уведомлениями в час (0 - без ограничений)"
|
998 |
|
999 |
-
#: settings.php:
|
1000 |
msgid "Notification limit"
|
1001 |
msgstr "Ограничение уведомлений"
|
1002 |
|
1003 |
-
#: settings.php:
|
1004 |
msgid "if empty, the admin email %s will be used"
|
1005 |
msgstr "Если пусто, то будет использован адрес администратора %s"
|
1006 |
|
1007 |
-
#: settings.php:
|
1008 |
msgid "Email Address"
|
1009 |
msgstr "Адрес email"
|
1010 |
|
1011 |
-
#: settings.php:
|
1012 |
msgid "Click to send test"
|
1013 |
msgstr "Нажмите, чтобы протестировать отправку"
|
1014 |
|
1015 |
-
#: settings.php:
|
1016 |
msgid "Send notification to admin email"
|
1017 |
msgstr "Отправить уведомление на адрес email администратора сайта"
|
1018 |
|
1019 |
-
#: settings.php:
|
1020 |
msgid "Duration"
|
1021 |
msgstr "Длительность"
|
1022 |
|
1023 |
-
#: settings.php:
|
1024 |
msgid "Threshold"
|
1025 |
msgstr "Порог"
|
1026 |
|
1027 |
-
#: settings.php:
|
1028 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
1029 |
msgstr "Заблокировать доступ к wp-login.php и возвращать HTTP 404 Страница не найдена"
|
1030 |
|
1031 |
-
#: settings.php:
|
1032 |
msgid "Disable wp-login.php"
|
1033 |
msgstr "Доступ к wp-login.php"
|
1034 |
|
1035 |
-
#: settings.php:
|
1036 |
msgid "must not overlap with the existing pages or posts slug"
|
1037 |
msgstr "не должно совпадать с URL существующих страниц или постов"
|
1038 |
|
1039 |
-
#: settings.php:
|
1040 |
msgid "Custom login URL"
|
1041 |
msgstr "Адрес страницы авторизации"
|
1042 |
|
1043 |
-
#: settings.php:
|
1044 |
msgid "Custom login page"
|
1045 |
msgstr "Смена URL страницы авторизации"
|
1046 |
|
1047 |
-
#: settings.php:
|
1048 |
msgid "Immediately block IP after any request to wp-login.php"
|
1049 |
msgstr "Блокировать IP при любом запросе wp-login.php"
|
1050 |
|
1051 |
-
#: settings.php:
|
1052 |
msgid "Request wp-login.php"
|
1053 |
msgstr "Запрос wp-login.php"
|
1054 |
|
1055 |
-
#: settings.php:
|
1056 |
msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
|
1057 |
msgstr "Отключить автоматическую переадресацию при запросе /wp-admin/ неавторизованным пользователем"
|
1058 |
|
1059 |
-
#: settings.php:
|
1060 |
msgid "Redirect dashboard requests"
|
1061 |
msgstr "Запросы к панели управления"
|
1062 |
|
1063 |
-
#: settings.php:
|
1064 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
1065 |
msgstr "Блокировать IP при попытке авторизации с логином несуществующего пользователя"
|
1066 |
|
1067 |
-
#: settings.php:
|
1068 |
msgid "Non-existent users"
|
1069 |
msgstr "Несуществующие пользователи"
|
1070 |
|
1071 |
-
#: settings.php:
|
1072 |
msgid "Always block entire subnet Class C of intruders IP"
|
1073 |
msgstr "Всегда блокировать подсеть класса С вместо IP адреса"
|
1074 |
|
1075 |
-
#: settings.php:
|
1076 |
msgid "Block subnet"
|
1077 |
msgstr "Блокировка подсети"
|
1078 |
|
1079 |
-
#: settings.php:
|
1080 |
msgid "Proactive security rules"
|
1081 |
msgstr "Проактивные правила безопасности"
|
1082 |
|
1083 |
-
#: dashboard.php:
|
1084 |
msgid "My site is behind a reverse proxy"
|
1085 |
msgstr "Мой сайт подключен к сети через прокси-сервер"
|
1086 |
|
1087 |
-
#: settings.php:
|
1088 |
msgid "Site connection"
|
1089 |
msgstr "Подключение к сети"
|
1090 |
|
1091 |
-
#: settings.php:
|
1092 |
msgid "Notifications"
|
1093 |
msgstr "Уведомления"
|
1094 |
|
1095 |
-
#: settings.php:
|
1096 |
msgid "Aggressive lockout"
|
1097 |
msgstr "Ужесточение"
|
1098 |
|
1099 |
-
#: settings.php:
|
1100 |
msgid "minutes"
|
1101 |
msgstr "минут"
|
1102 |
|
1103 |
-
#: settings.php:
|
1104 |
msgid "Lockout duration"
|
1105 |
msgstr "Длительность блокировки"
|
1106 |
|
1107 |
-
#: settings.php:
|
1108 |
msgid "Attempts"
|
1109 |
msgstr "Попытки"
|
1110 |
|
1111 |
-
#: settings.php:
|
1112 |
msgid "Limit login attempts"
|
1113 |
msgstr "Ограничение числа попыток авторизации"
|
1114 |
|
1115 |
-
#: dashboard.php:
|
1116 |
msgid "Abuse email:"
|
1117 |
msgstr "Адрес email для жалоб:"
|
1118 |
|
1119 |
-
#: common.php:
|
1120 |
msgid "Update to version %s of WP Cerber"
|
1121 |
msgstr "Обновить WP Cerber до версии %s"
|
1122 |
|
1123 |
-
#: common.php:
|
1124 |
msgid "New version is available"
|
1125 |
msgstr "Доступна новая версия"
|
1126 |
|
1127 |
-
#: dashboard.php:
|
1128 |
msgid "View Activity"
|
1129 |
msgstr "Что происходит?"
|
1130 |
|
1131 |
-
#: dashboard.php:
|
1132 |
msgid "Deactivate"
|
1133 |
msgstr "Деактивировать"
|
1134 |
|
1135 |
-
#: dashboard.php:
|
1136 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
1137 |
msgstr "Внимание! Режим Цитадель активен. Авторизация на сайте заблокирована."
|
1138 |
|
1139 |
-
#: dashboard.php:
|
1140 |
msgid "doesn't affect Custom login URL and Access Lists"
|
1141 |
msgstr "не затронет настройки URL страницы авторизации и списки доступа"
|
1142 |
|
1143 |
-
#: dashboard.php:
|
1144 |
msgid "Are you sure?"
|
1145 |
msgstr "Вы уверены?"
|
1146 |
|
1147 |
-
#: dashboard.php:
|
1148 |
msgid "Load default settings"
|
1149 |
msgstr "Загрузить настройки"
|
1150 |
|
1151 |
-
#: dashboard.php:
|
1152 |
msgid "You can easily load default recommended settings using button below"
|
1153 |
msgstr "Вы можете загрузить рекомендованные настройки с помощью всего одной кнопки"
|
1154 |
|
1155 |
-
#: dashboard.php:
|
1156 |
msgid "Confused about some settings?"
|
1157 |
msgstr "Сомневаетесь какие настройки оптимальны?"
|
1158 |
|
1159 |
-
#: dashboard.php:
|
1160 |
msgid "Lockouts"
|
1161 |
msgstr "Блокировки"
|
1162 |
|
1163 |
-
#: dashboard.php:
|
1164 |
msgid "Citadel mode"
|
1165 |
msgstr "Режим Цитадель"
|
1166 |
|
1167 |
-
#: dashboard.php:
|
1168 |
msgid "entry"
|
1169 |
msgid_plural "entries"
|
1170 |
msgstr[0] "элемент"
|
1171 |
msgstr[1] "элемента"
|
1172 |
msgstr[2] "элементов"
|
1173 |
|
1174 |
-
#: dashboard.php:
|
1175 |
msgid "Last lockout"
|
1176 |
msgstr "Последняя блокировка"
|
1177 |
|
1178 |
-
#: dashboard.php:
|
1179 |
msgid "Lockouts at the moment"
|
1180 |
msgstr "Сейчас заблокировано"
|
1181 |
|
1182 |
-
#: dashboard.php:
|
1183 |
msgid "lockouts"
|
1184 |
msgstr "блокировок"
|
1185 |
|
1186 |
-
#: dashboard.php:
|
1187 |
msgid "view all"
|
1188 |
msgstr "просмотреть все"
|
1189 |
|
1190 |
-
#: dashboard.php:
|
1191 |
msgid "in 24 hours"
|
1192 |
msgstr "за 24 часа"
|
1193 |
|
1194 |
-
#: dashboard.php:
|
1195 |
msgid "failed attempts"
|
1196 |
msgstr "ошибок авторизации"
|
1197 |
|
1198 |
-
#: dashboard.php:
|
1199 |
msgid "disabled"
|
1200 |
msgstr "отключен"
|
1201 |
|
1202 |
-
#: dashboard.php:
|
1203 |
msgid "not active"
|
1204 |
msgstr "неактивен"
|
1205 |
|
1206 |
-
#: dashboard.php:
|
1207 |
msgid "deactivate"
|
1208 |
msgstr "деактивировать"
|
1209 |
|
1210 |
-
#: dashboard.php:
|
1211 |
msgid "active"
|
1212 |
msgstr "активен"
|
1213 |
|
1214 |
-
#: dashboard.php:
|
1215 |
msgid "Cerber Quick View"
|
1216 |
msgstr "Сводка от Cerber"
|
1217 |
|
1218 |
-
#: cerber-tools.php:
|
1219 |
msgid "Error while parsing file"
|
1220 |
msgstr "Возникла ошибка при обработке файла"
|
1221 |
|
1222 |
-
#: cerber-tools.php:
|
1223 |
msgid "Settings has imported successfully from"
|
1224 |
msgstr "Все настройки успешно загружены"
|
1225 |
|
1226 |
-
#: cerber-tools.php:
|
1227 |
msgid "Error while updating"
|
1228 |
msgstr "Возникла ошибка при обновлении"
|
1229 |
|
1230 |
-
#: cerber-tools.php:
|
1231 |
msgid "No file was uploaded or file is corrupted"
|
1232 |
msgstr "Файл не был загружен или имеет неверный формат"
|
1233 |
|
@@ -1259,8 +1307,8 @@ msgstr "Импорт настроек из файла"
|
|
1259 |
msgid "Download file"
|
1260 |
msgstr "Скачать файл"
|
1261 |
|
1262 |
-
#: cerber-tools.php:88 cerber-tools.php:97 cerber-tools.php:
|
1263 |
-
#: dashboard.php:
|
1264 |
msgid "Access Lists"
|
1265 |
msgstr "Списки доступа"
|
1266 |
|
@@ -1280,216 +1328,208 @@ msgstr "Когда вы нажмете на кнопку, то получите
|
|
1280 |
msgid "Export settings to the file"
|
1281 |
msgstr "Экспорт настроек в файл"
|
1282 |
|
1283 |
-
#: dashboard.php:
|
1284 |
msgid "Never"
|
1285 |
msgstr "Никогда"
|
1286 |
|
1287 |
-
#:
|
1288 |
-
msgid "
|
1289 |
-
msgstr "
|
1290 |
-
|
1291 |
-
#: common.php:478 dashboard.php:1309
|
1292 |
-
msgid "User registered"
|
1293 |
-
msgstr "Пользователь зарегистрирован"
|
1294 |
|
1295 |
-
#:
|
1296 |
-
msgid "
|
1297 |
-
msgstr "
|
1298 |
|
1299 |
-
#:
|
1300 |
-
msgid "
|
1301 |
-
msgstr "
|
1302 |
|
1303 |
-
#:
|
1304 |
-
msgid "
|
1305 |
-
msgstr "
|
1306 |
|
1307 |
-
#:
|
1308 |
-
msgid "IP
|
1309 |
-
msgstr "IP
|
1310 |
|
1311 |
-
#:
|
1312 |
-
msgid "
|
1313 |
-
msgstr "
|
1314 |
|
1315 |
-
#:
|
1316 |
-
msgid "
|
1317 |
-
msgstr "
|
1318 |
|
1319 |
-
#:
|
1320 |
-
msgid "
|
1321 |
-
msgstr "
|
1322 |
|
1323 |
-
#:
|
1324 |
-
|
1325 |
-
|
|
|
1326 |
|
1327 |
-
#:
|
1328 |
-
msgid "
|
1329 |
-
msgstr "
|
1330 |
|
1331 |
-
#:
|
1332 |
-
msgid "
|
1333 |
-
msgstr "
|
1334 |
|
1335 |
-
#:
|
1336 |
-
msgid "
|
1337 |
-
msgstr "
|
1338 |
|
1339 |
-
#:
|
1340 |
-
msgid "
|
1341 |
-
msgstr "
|
1342 |
|
1343 |
-
#:
|
1344 |
-
msgid "
|
1345 |
-
msgstr "
|
1346 |
|
1347 |
-
#:
|
1348 |
-
msgid "
|
1349 |
-
msgstr "
|
1350 |
|
1351 |
-
#: dashboard.php:
|
1352 |
-
msgid "
|
1353 |
-
msgstr "
|
1354 |
|
1355 |
-
#: dashboard.php:
|
1356 |
-
msgid "IP"
|
1357 |
-
msgstr "IP"
|
1358 |
|
1359 |
-
#: dashboard.php:
|
1360 |
-
msgid "
|
1361 |
-
msgstr "
|
1362 |
|
1363 |
-
#: dashboard.php:
|
1364 |
-
msgid "
|
1365 |
-
msgstr "
|
1366 |
|
1367 |
-
#: dashboard.php:
|
1368 |
-
msgid "
|
1369 |
-
msgstr "
|
1370 |
|
1371 |
-
#: dashboard.php:
|
1372 |
-
msgid "
|
1373 |
-
msgstr "
|
1374 |
|
1375 |
-
#: dashboard.php:
|
1376 |
-
msgid "
|
1377 |
-
msgstr "
|
1378 |
|
1379 |
-
#: dashboard.php:
|
1380 |
-
msgid "
|
1381 |
-
msgstr "
|
1382 |
|
1383 |
-
#: dashboard.php:
|
1384 |
-
|
1385 |
-
|
|
|
1386 |
|
1387 |
#: dashboard.php:118
|
1388 |
msgid "No lockouts at the moment. The sky is clear."
|
1389 |
msgstr "Блокировок нет. Все в порядке."
|
1390 |
|
1391 |
-
#: dashboard.php:
|
1392 |
-
|
1393 |
-
|
1394 |
-
msgstr "Белый список доступа по IP"
|
1395 |
-
|
1396 |
-
#: dashboard.php:131
|
1397 |
-
msgid "These IPs will never be locked out"
|
1398 |
-
msgstr "Эти адреса не будут заблокированы ни при каких условиях"
|
1399 |
|
1400 |
-
#: dashboard.php:
|
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 |
-
msgid "
|
1430 |
-
msgstr "
|
1431 |
|
1432 |
-
#:
|
1433 |
-
msgid "
|
1434 |
-
msgstr "
|
1435 |
|
1436 |
-
#:
|
1437 |
-
msgid "
|
1438 |
-
msgstr "
|
1439 |
|
1440 |
-
#:
|
1441 |
-
msgid "
|
1442 |
-
msgstr "
|
1443 |
|
1444 |
-
#:
|
1445 |
-
msgid "
|
1446 |
-
msgstr "
|
1447 |
|
1448 |
-
#:
|
1449 |
-
msgid "
|
1450 |
-
msgstr "
|
1451 |
|
1452 |
-
#:
|
1453 |
-
msgid "
|
1454 |
-
msgstr "
|
1455 |
|
1456 |
-
#:
|
1457 |
-
msgid "
|
1458 |
-
msgstr "
|
1459 |
|
1460 |
-
#:
|
1461 |
-
|
1462 |
-
|
1463 |
-
msgstr "Активность"
|
1464 |
|
1465 |
-
#:
|
1466 |
-
msgid "
|
1467 |
-
msgstr "
|
1468 |
|
1469 |
-
#:
|
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 |
-
#: dashboard.php:
|
1490 |
-
msgid "
|
1491 |
-
msgstr "
|
1492 |
|
1493 |
-
#:
|
1494 |
-
msgid "
|
1495 |
-
msgstr "
|
1 |
+
# Translation of Plugins - Cerber Security & Antispam - Development (trunk) in Russian
|
2 |
+
# This file is distributed under the same license as the Plugins - Cerber Security & Antispam - Development (trunk) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2017-12-29 03:52:46+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 - Development (trunk)\n"
|
13 |
|
14 |
+
#: wp-cerber.php:3188
|
15 |
+
msgid "Attempts to log in with non-existent username"
|
16 |
+
msgstr "Попытка войти с несуществующим именем пользователя"
|
17 |
+
|
18 |
+
#: wp-cerber.php:3162
|
19 |
+
msgid "Weekly Report"
|
20 |
+
msgstr "Недельный отчет"
|
21 |
+
|
22 |
+
#: wp-cerber.php:3086
|
23 |
+
msgid "Your last sign-in was %s from %s"
|
24 |
+
msgstr "Ваш последний вход был %s с %s"
|
25 |
+
|
26 |
+
#: settings.php:193
|
27 |
+
msgid "Enable reporting"
|
28 |
+
msgstr "Включить отчеты"
|
29 |
+
|
30 |
+
#: settings.php:192
|
31 |
+
msgid "if empty, email from notification settings will be used"
|
32 |
+
msgstr "если не задано, будет использован адрес из настроек уведомлений"
|
33 |
+
|
34 |
+
#: settings.php:140
|
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:123
|
39 |
+
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
40 |
+
msgstr "Для использования регулярных выражений оберните их в два прямых слеша."
|
41 |
+
|
42 |
+
#: settings.php:80
|
43 |
+
msgid "Display simple 404 page"
|
44 |
+
msgstr "Показать простую страницу 404"
|
45 |
+
|
46 |
+
#: settings.php:80
|
47 |
+
msgid "Use 404 template from the active theme"
|
48 |
+
msgstr "Использовать шаблон 404 из активной темы"
|
49 |
+
|
50 |
+
#: dashboard.php:2191
|
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:2188
|
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:2039
|
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:360
|
68 |
+
msgid "Unable to send email to"
|
69 |
+
msgstr "Невозможно отправить email на"
|
70 |
+
|
71 |
+
#: dashboard.php:357
|
72 |
+
msgid "Email has been sent to"
|
73 |
+
msgstr "Сообщение было отправлено на электронный адрес"
|
74 |
+
|
75 |
+
#: cerber-news.php:135
|
76 |
+
msgid "Cool!"
|
77 |
+
msgstr "Отлично!"
|
78 |
+
|
79 |
+
#: wp-cerber.php:3174
|
80 |
msgid "Activity details"
|
81 |
msgstr "Подробно об активности"
|
82 |
|
83 |
+
#: wp-cerber.php:3063
|
84 |
msgid "Your license is valid until"
|
85 |
msgstr "Ваша лицензия действительна до"
|
86 |
|
87 |
+
#: wp-cerber.php:3059
|
88 |
msgid "Your login page:"
|
89 |
msgstr "Ваша страница входа:"
|
90 |
|
91 |
+
#: wp-cerber.php:3033
|
92 |
msgid "To change reporting settings visit"
|
93 |
msgstr "Для смены настроек отчетности зайдите"
|
94 |
|
95 |
+
#: wp-cerber.php:3030
|
96 |
msgid "Weekly report"
|
97 |
msgstr "Недельный отчет"
|
98 |
|
99 |
+
#: wp-cerber.php:616
|
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:634
|
104 |
msgid "Click to send now"
|
105 |
msgstr "Нажмите для отправки сейчас"
|
106 |
|
107 |
#. translators: preposition of time
|
108 |
+
#: settings.php:618
|
109 |
msgctxt "preposition of time"
|
110 |
msgid "at"
|
111 |
msgstr "в"
|
112 |
|
113 |
+
#: settings.php:608
|
114 |
msgid "Saturday"
|
115 |
msgstr "Суббота"
|
116 |
|
117 |
+
#: settings.php:607
|
118 |
msgid "Friday"
|
119 |
msgstr "Пятница"
|
120 |
|
121 |
+
#: settings.php:606
|
122 |
msgid "Thursday"
|
123 |
msgstr "Четверг"
|
124 |
|
125 |
+
#: settings.php:605
|
126 |
msgid "Wednesday"
|
127 |
msgstr "Среда"
|
128 |
|
129 |
+
#: settings.php:604
|
130 |
msgid "Tuesday"
|
131 |
msgstr "Вторник"
|
132 |
|
133 |
+
#: settings.php:603
|
134 |
msgid "Monday"
|
135 |
msgstr "Понедельник"
|
136 |
|
137 |
+
#: settings.php:602
|
138 |
msgid "Sunday"
|
139 |
msgstr "Воскресенье"
|
140 |
|
141 |
+
#: settings.php:190
|
142 |
msgid "Weekly reports"
|
143 |
msgstr "Недельные отчеты"
|
144 |
|
145 |
+
#: dashboard.php:1622
|
146 |
msgid "Main settings"
|
147 |
msgstr "Основные настройки"
|
148 |
|
149 |
+
#: settings.php:661 settings.php:662
|
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:382 settings.php:505
|
154 |
msgid "%s allowed registrations in %s minutes from one IP"
|
155 |
msgstr "%s разрешенных регистраций в %s минут с одного IP"
|
156 |
|
157 |
+
#: settings.php:143
|
158 |
msgid "Mark it as spam"
|
159 |
msgstr "Пометить как спам"
|
160 |
|
161 |
+
#: settings.php:143
|
162 |
msgid "Deny it completely"
|
163 |
msgstr "Полностью запретить"
|
164 |
|
165 |
+
#: settings.php:125
|
166 |
msgid "Sort users in dashboard"
|
167 |
msgstr "Сортировать пользователей в консоли"
|
168 |
|
169 |
+
#: settings.php:122
|
170 |
msgid "Registration limit"
|
171 |
msgstr "Предел регистраций"
|
172 |
|
173 |
+
#: settings.php:111
|
174 |
msgid "Allow REST API for logged in users"
|
175 |
msgstr "Разрешить REST API для авторизованных пользователей"
|
176 |
|
177 |
+
#: dashboard.php:2208
|
178 |
msgid "Use REST API"
|
179 |
msgstr "использование REST API"
|
180 |
|
181 |
+
#: dashboard.php:2207
|
182 |
msgid "Use XML-RPC"
|
183 |
msgstr "использование XML-RPC"
|
184 |
|
185 |
+
#: dashboard.php:2206
|
186 |
msgid "Register on the website"
|
187 |
msgstr "регистрация на сайте"
|
188 |
|
189 |
+
#: dashboard.php:2205
|
190 |
msgid "Log in to the website"
|
191 |
msgstr "авторизация на сайте"
|
192 |
|
193 |
+
#: dashboard.php:2204
|
194 |
msgid "Post comments"
|
195 |
msgstr "отправка комментариев"
|
196 |
|
197 |
+
#: dashboard.php:2203
|
198 |
msgid "Submit forms"
|
199 |
msgstr "отправка форм"
|
200 |
|
201 |
+
#: dashboard.php:2184
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
msgid "Click on a country name to add it to the list of selected countries"
|
203 |
msgstr "Нажмите на страну чтобы добавить ее в список выбранных"
|
204 |
|
205 |
+
#: dashboard.php:2103
|
206 |
msgid "Start typing here to find a country"
|
207 |
msgstr "Начните печатать тут чтобы найти страну"
|
208 |
|
209 |
+
#: dashboard.php:1344 wp-cerber.php:3014 wp-cerber.php:3682
|
210 |
msgid "Getting Started Guide"
|
211 |
msgstr "Руководство с чего начать"
|
212 |
|
213 |
+
#: dashboard.php:1273
|
214 |
msgid "in the last 24 hours"
|
215 |
msgstr "В последние 24 часа"
|
216 |
|
217 |
+
#: dashboard.php:1023
|
218 |
msgid "You"
|
219 |
msgstr "Вы"
|
220 |
|
221 |
+
#: dashboard.php:956
|
222 |
msgid "Registered"
|
223 |
msgstr "Зарегистрирован"
|
224 |
|
225 |
+
#: dashboard.php:955
|
226 |
msgid "Failed login attempts"
|
227 |
msgstr "Неудачные попытки входа"
|
228 |
|
229 |
+
#: common.php:560
|
230 |
msgid "Multiple suspicious activities were detected"
|
231 |
msgstr "Обнаружена множественная подозрительная активность"
|
232 |
|
233 |
+
#: common.php:531
|
234 |
msgid "Multiple suspicious activities"
|
235 |
msgstr "Множественная подозрительная активность"
|
236 |
|
237 |
+
#: common.php:530
|
238 |
msgid "Limit reached"
|
239 |
msgstr "Предел достигнут"
|
240 |
|
241 |
+
#: settings.php:140
|
|
|
|
|
|
|
|
|
242 |
msgid "Query whitelist"
|
243 |
msgstr "Белый список запросов"
|
244 |
|
245 |
+
#: settings.php:112
|
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:110
|
250 |
msgid "Block access to the WordPress REST API except the following"
|
251 |
msgstr "Блокировать доступ к REST API кроме следующего"
|
252 |
|
253 |
+
#: settings.php:107
|
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:2248
|
258 |
msgid "Security rules have been updated"
|
259 |
msgstr "Правила безопасности обновлены"
|
260 |
|
261 |
+
#: dashboard.php:2047
|
262 |
msgid "No rule"
|
263 |
msgstr "Нет правила"
|
264 |
|
265 |
+
#: dashboard.php:2036
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:1971
|
273 |
msgid "Countries"
|
274 |
msgstr "Страны"
|
275 |
|
277 |
msgid "Spam form submissions denied"
|
278 |
msgstr "Заблокированы отправки форм спама"
|
279 |
|
280 |
+
#: dashboard.php:878 dashboard.php:1966
|
281 |
msgid "Security Rules"
|
282 |
msgstr "Правила безопасности"
|
283 |
|
284 |
+
#: dashboard.php:878
|
285 |
msgid "Cerber Security Rules"
|
286 |
msgstr "Правила безопасности Цербер"
|
287 |
|
288 |
+
#: dashboard.php:645
|
289 |
msgid "All events"
|
290 |
msgstr "Все события"
|
291 |
|
292 |
+
#: dashboard.php:95 dashboard.php:614
|
293 |
msgid "Country"
|
294 |
msgstr "Страна"
|
295 |
|
296 |
+
#: common.php:529
|
297 |
msgid "Blocked by country rule"
|
298 |
msgstr "Заблокирован по ограничению для страны"
|
299 |
|
300 |
+
#: common.php:528
|
301 |
msgid "Malicious activity detected"
|
302 |
msgstr "Обнаружена вредоносная активность"
|
303 |
|
304 |
+
#: common.php:523
|
305 |
msgid "Citadel mode is active"
|
306 |
msgstr "Режим цитадель активен"
|
307 |
|
308 |
+
#: common.php:522
|
309 |
msgid "Bot detected"
|
310 |
msgstr "Обнаружен бот"
|
311 |
|
312 |
+
#: common.php:518
|
313 |
msgid "XML-RPC request denied"
|
314 |
msgstr "Запрос XML-RPC заблокирован"
|
315 |
|
316 |
+
#: common.php:517
|
317 |
msgid "Request to REST API denied"
|
318 |
msgstr "Запрос к REST API заблокирован"
|
319 |
|
320 |
+
#: common.php:492
|
321 |
msgid "Comment denied"
|
322 |
msgstr "Комментарий заблокирован"
|
323 |
|
324 |
+
#: common.php:491
|
325 |
msgid "Form submission denied"
|
326 |
msgstr "Отправка формы заблокирована"
|
327 |
|
333 |
msgid "WP Cerber Security & Antispam"
|
334 |
msgstr "WP Cerber Security & Antispam"
|
335 |
|
336 |
+
#: settings.php:139
|
337 |
msgid "Disable bot detection engine for logged in users"
|
338 |
msgstr "Отключить определение ботов для авторизованных пользователей"
|
339 |
|
340 |
+
#: settings.php:139
|
341 |
msgid "Logged in users"
|
342 |
msgstr "Авторизованные пользователи"
|
343 |
|
344 |
+
#: settings.php:138
|
345 |
msgid "Use less restrictive policies (allow AJAX)"
|
346 |
msgstr "Использовать менее жесткую политику (разрешить AJAX)"
|
347 |
|
348 |
+
#: settings.php:138
|
349 |
msgid "Safe mode"
|
350 |
msgstr "Безопасный режим"
|
351 |
|
352 |
+
#: settings.php:137
|
353 |
msgid "Adjust antispam engine"
|
354 |
msgstr "Настроить антиспам-движок"
|
355 |
|
356 |
+
#: settings.php:135
|
357 |
msgid "Protect all forms on the website with bot detection engine"
|
358 |
msgstr "Защитить все формы на сайте через определение ботов"
|
359 |
|
360 |
+
#: settings.php:135
|
361 |
msgid "Other forms"
|
362 |
msgstr "Другие формы"
|
363 |
|
364 |
+
#: common.php:490
|
365 |
msgid "Spam form submission denied"
|
366 |
msgstr "Отправка формы со спамом заблокирована"
|
367 |
|
368 |
+
#: wp-cerber.php:1217
|
369 |
msgid "Sorry, human verification failed."
|
370 |
msgstr "Извините, проверка на человека не удалась."
|
371 |
|
372 |
+
#: settings.php:144
|
373 |
msgid "Move spam comments to trash after"
|
374 |
msgstr "Удалить спам комментарии в корзину после"
|
375 |
|
376 |
+
#: settings.php:144
|
377 |
msgid "Trash spam comments"
|
378 |
msgstr "Удалить спам комментарии в корзину"
|
379 |
|
380 |
+
#: settings.php:143
|
381 |
msgid "If a spam comment detected"
|
382 |
msgstr "Если обнаружен спам комментарий"
|
383 |
|
384 |
+
#: settings.php:142
|
385 |
msgid "Comment processing"
|
386 |
msgstr "Обработка комментария"
|
387 |
|
388 |
+
#: settings.php:134
|
389 |
msgid "Protect registration form with bot detection engine"
|
390 |
msgstr "Защита регистрации через определение ботов"
|
391 |
|
392 |
+
#: settings.php:133
|
393 |
msgid "Protect comment form with bot detection engine"
|
394 |
msgstr "Защита комментариев через определение ботов"
|
395 |
|
396 |
+
#: settings.php:132
|
397 |
msgid "Cerber antispam engine"
|
398 |
+
msgstr "Движок Цербер-антиспам"
|
399 |
|
400 |
+
#: dashboard.php:881 settings.php:161 wp-cerber.php:3689
|
401 |
msgid "Antispam"
|
402 |
msgstr "Аниспам"
|
403 |
|
404 |
+
#: dashboard.php:881
|
405 |
msgid "Cerber antispam settings"
|
406 |
msgstr "Настройка Цербер антиспам"
|
407 |
|
408 |
+
#: common.php:559
|
409 |
msgid "Bot activity is detected"
|
410 |
msgstr "Обнаружена активность ботов"
|
411 |
|
412 |
+
#: cerber-tools.php:309
|
413 |
msgid "Antispam and bot detection settings"
|
414 |
msgstr "Антиспам и настройки определения ботов"
|
415 |
|
421 |
msgid "Export & Import"
|
422 |
msgstr "Экспорт и Импорт"
|
423 |
|
424 |
+
#: wp-cerber.php:951 wp-cerber.php:957 wp-cerber.php:973 wp-cerber.php:980
|
425 |
msgid "You are not allowed to register."
|
426 |
msgstr "Вам не разрешено зарегистрироваться."
|
427 |
|
428 |
+
#: dashboard.php:1288
|
429 |
msgid "All suspicious activity"
|
430 |
msgstr "Вся подозрительная активность"
|
431 |
|
445 |
msgid "Malicious activities mitigated"
|
446 |
msgstr "Вредоносная активность снижена"
|
447 |
|
448 |
+
#: dashboard.php:457 dashboard.php:616
|
449 |
msgid "Event"
|
450 |
msgstr "Событие"
|
451 |
|
452 |
+
#: common.php:515
|
453 |
msgid "Attempt to register denied"
|
454 |
msgstr "Попытка регистрации отклонена"
|
455 |
|
456 |
+
#: common.php:514
|
457 |
msgid "Attempt to log in denied"
|
458 |
msgstr "Попытка входа отклонена"
|
459 |
|
460 |
+
#: common.php:489
|
461 |
msgid "Spam comment denied"
|
462 |
msgstr "Спам коммнтарий отклонен"
|
463 |
|
464 |
+
#: settings.php:213
|
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:164
|
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:164
|
473 |
msgid "Limit attempts"
|
474 |
msgstr "Ограничение попыток"
|
475 |
|
476 |
+
#: settings.php:71
|
477 |
msgid "Apply limit login rules to IP addresses in the White IP Access List"
|
478 |
msgstr "Применить правила входа для IP адресов в белом списке"
|
479 |
|
480 |
+
#: common.php:504
|
|
|
|
|
|
|
|
|
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 |
+
#: settings.php:150
|
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:162
|
493 |
msgid "Disable reCAPTCHA for logged in users"
|
494 |
msgstr "Отключить reCAPTCHA для авторизованных пользователей"
|
495 |
|
496 |
+
#: settings.php:161
|
497 |
msgid "Enable reCAPTCHA for WordPress comment form"
|
498 |
msgstr "Включить reCAPTCHA в форме комментариев WordPress"
|
499 |
|
500 |
+
#: settings.php:133
|
501 |
msgid "Comment form"
|
502 |
msgstr "Форма комментариев"
|
503 |
|
504 |
+
#: settings.php:150
|
505 |
msgid "Enable invisible reCAPTCHA"
|
506 |
msgstr "Включить невидимую reCAPTCHA"
|
507 |
|
508 |
+
#: settings.php:150
|
509 |
msgid "Invisible reCAPTCHA"
|
510 |
msgstr "невидимая reCAPTCHA"
|
511 |
|
512 |
+
#: common.php:603
|
513 |
msgid "%s ago"
|
514 |
msgstr "%s назад"
|
515 |
|
516 |
+
#: settings.php:185
|
517 |
msgid "Not available"
|
518 |
msgstr "Недоступно"
|
519 |
|
520 |
+
#: settings.php:183
|
521 |
msgid "No devices found"
|
522 |
msgstr "Устройства не найдены"
|
523 |
|
524 |
+
#: settings.php:182
|
525 |
msgid "All connected devices"
|
526 |
msgstr "Все подключенные устройства"
|
527 |
|
528 |
+
#: settings.php:172 settings.php:192
|
529 |
msgid "Use comma to specify multiple values"
|
530 |
msgstr "Используйте запятую для разделения множественных значений"
|
531 |
|
532 |
+
#: settings.php:170
|
533 |
msgid "Email notifications"
|
534 |
msgstr "Уведомления по эл.почте"
|
535 |
|
536 |
+
#: settings.php:80
|
537 |
msgid "Display 404 page"
|
538 |
msgstr "Показывать страницу 404"
|
539 |
|
540 |
+
#: dashboard.php:1092 settings.php:175
|
541 |
msgid "Push notifications"
|
542 |
msgstr "Push уведомления"
|
543 |
|
544 |
+
#: dashboard.php:635
|
545 |
+
msgid "Export"
|
546 |
+
msgstr "Экспорт"
|
547 |
+
|
548 |
+
#: dashboard.php:457
|
549 |
+
msgid "User ID"
|
550 |
+
msgstr "ID пользователя"
|
551 |
+
|
552 |
#: dashboard.php:457
|
553 |
msgid "User login"
|
554 |
msgstr "Имя пользователя"
|
555 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
556 |
#: dashboard.php:457
|
557 |
msgid "IP address"
|
558 |
msgstr "IP адрес"
|
559 |
|
560 |
+
#: dashboard.php:654
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
561 |
msgid "Search for IP or username"
|
562 |
msgstr "Поиск IP или имени пользователя"
|
563 |
|
564 |
+
#: dashboard.php:875
|
565 |
+
msgid "Cerber Dashboard"
|
566 |
+
msgstr "Консоль Cerber"
|
567 |
+
|
568 |
+
#: dashboard.php:654
|
569 |
msgid "Filter"
|
570 |
msgstr "Фильтр"
|
571 |
|
572 |
+
#: dashboard.php:1534
|
573 |
+
msgid "Subscribe"
|
574 |
+
msgstr "Подписаться"
|
575 |
+
|
576 |
+
#: dashboard.php:882
|
577 |
msgid "Cerber tools"
|
578 |
msgstr "Инструменты Cerber"
|
579 |
|
580 |
+
#: cerber-tools.php:239 dashboard.php:1535
|
581 |
+
msgid "Unsubscribe"
|
582 |
+
msgstr "Отменить подписку"
|
583 |
+
|
584 |
+
#: dashboard.php:1566
|
585 |
+
msgid "You've unsubscribed"
|
586 |
+
msgstr "Подписка отменена"
|
587 |
+
|
588 |
+
#: dashboard.php:1563
|
589 |
+
msgid "You've subscribed"
|
590 |
+
msgstr "Вы подписались"
|
591 |
+
|
592 |
+
#: settings.php:99
|
593 |
msgid "if empty, the default format %s will be used"
|
594 |
msgstr "Если пусто, будет использован формат по умолчанию %s"
|
595 |
|
596 |
+
#: wp-cerber.php:3024 wp-cerber.php:3025
|
597 |
msgid "A new activity has been recorded"
|
598 |
msgstr "Отмечена новая активность"
|
599 |
|
600 |
+
#: wp-cerber.php:3469
|
601 |
msgid "User"
|
602 |
msgstr "Пользователь"
|
603 |
|
604 |
+
#: wp-cerber.php:3498
|
|
|
|
|
|
|
|
|
605 |
msgid "To unsubscribe click here"
|
606 |
msgstr "Для отмены подписки нажмите здесь"
|
607 |
|
608 |
+
#: wp-cerber.php:3477
|
609 |
+
msgid "Search string"
|
610 |
+
msgstr "Строка поиска"
|
611 |
+
|
612 |
+
#: settings.php:97
|
613 |
msgid "Preferences"
|
614 |
msgstr "Настройки"
|
615 |
|
616 |
+
#: settings.php:99
|
617 |
msgid "Date format"
|
618 |
msgstr "Формат даты"
|
619 |
|
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:875 dashboard.php:1096 dashboard.php:1621 settings.php:244
|
629 |
msgid "Dashboard"
|
630 |
msgstr "Консоль"
|
631 |
|
632 |
+
#: settings.php:159
|
633 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
634 |
msgstr "Включить reCAPTCHA для формы входа WooCommerce"
|
635 |
|
636 |
+
#: settings.php:158
|
637 |
msgid "Enable reCAPTCHA for WordPress login form"
|
638 |
msgstr "Включить reCAPTCHA для формы входа WordPress"
|
639 |
|
640 |
+
#: settings.php:156
|
641 |
msgid "Enable reCAPTCHA for WooCommerce lost password form"
|
642 |
msgstr "Включить reCAPTCHA для формы восстановления пароля WooCommerce"
|
643 |
|
644 |
+
#: settings.php:155
|
645 |
msgid "Enable reCAPTCHA for WordPress lost password form"
|
646 |
msgstr "Включить reCAPTCHA для формы восстановления пароля WordPress"
|
647 |
|
648 |
+
#: settings.php:153
|
649 |
msgid "Enable reCAPTCHA for WooCommerce registration form"
|
650 |
msgstr "Включить reCAPTCHA для формы регистрации WooCommerce"
|
651 |
|
652 |
+
#: settings.php:152
|
653 |
msgid "Enable reCAPTCHA for WordPress registration form"
|
654 |
msgstr "Включить reCAPTCHA для формы регистрации WordPress"
|
655 |
|
656 |
+
#: settings.php:134 settings.php:152
|
657 |
msgid "Registration form"
|
658 |
msgstr "Форма регистрации"
|
659 |
|
660 |
+
#: settings.php:94
|
661 |
msgid "Cerber Lab protocol"
|
662 |
msgstr "протокол Cerber Lab"
|
663 |
|
664 |
+
#: settings.php:93
|
665 |
msgid "Send malicious IP addresses to the Cerber Lab"
|
666 |
msgstr "Посылать вредоносные IP адреса в Cerber Lab"
|
667 |
|
668 |
+
#: settings.php:93
|
669 |
msgid "Cerber Lab connection"
|
670 |
msgstr "Подключение Cerber Lab"
|
671 |
|
672 |
+
#: dashboard.php:1309
|
673 |
msgid "Recently locked out IP addresses"
|
674 |
msgstr "Недавно заблокированые IP адреса"
|
675 |
|
676 |
+
#: dashboard.php:1279 dashboard.php:1308
|
677 |
msgid "View all"
|
678 |
msgstr "Просмотреть все"
|
679 |
|
680 |
+
#: dashboard.php:873 settings.php:239
|
681 |
msgid "WP Cerber Security"
|
682 |
msgstr "WP Cerber Security"
|
683 |
|
684 |
+
#: dashboard.php:838
|
685 |
msgid "Add network to the Black List"
|
686 |
msgstr "Добавить сеть в черный список"
|
687 |
|
688 |
+
#: dashboard.php:824
|
689 |
msgid "Network:"
|
690 |
msgstr "Сеть:"
|
691 |
|
693 |
msgid "Incorrect IP address or IP range"
|
694 |
msgstr "Неверный IP адрес или диапазон адресов"
|
695 |
|
696 |
+
#: common.php:508
|
697 |
msgid "Request to the Google reCAPTCHA service failed"
|
698 |
msgstr "Запрос к сервису Google reCAPTCHA не удался"
|
699 |
|
700 |
+
#: cerber-lab.php:665
|
701 |
msgid "NO, maybe later"
|
702 |
msgstr "НЕТ, возможно позже"
|
703 |
|
704 |
+
#: cerber-lab.php:664
|
705 |
msgid "OK, nail them all"
|
706 |
msgstr "ОК, прибьем их всех"
|
707 |
|
708 |
+
#: cerber-lab.php:663
|
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:662
|
713 |
msgid "Want to make WP Cerber even more powerful?"
|
714 |
msgstr "Хотите сделать WP Cerber еще мощнее ?"
|
715 |
|
716 |
+
#. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security & Antispam 5.8.6)
|
717 |
+
#. #-#-#-#-#
|
718 |
#. Plugin URI of the plugin/theme
|
719 |
+
#. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security & Antispam 5.8.6)
|
720 |
+
#. #-#-#-#-#
|
721 |
#. Author URI of the plugin/theme
|
722 |
msgid "https://wpcerber.com"
|
723 |
msgstr "https://wpcerber.com"
|
724 |
|
725 |
+
#: wp-cerber.php:3692
|
726 |
msgid "Import settings"
|
727 |
msgstr "Импорт настроек"
|
728 |
|
729 |
+
#: wp-cerber.php:3680
|
730 |
msgid "Your IP address is added to the"
|
731 |
msgstr "Ваш IP адрес добавлен к"
|
732 |
|
733 |
+
#: wp-cerber.php:3663
|
734 |
msgid "Can't activate WP Cerber due to a database error."
|
735 |
msgstr "Невозможно активировать плагин WP Cerber из-за ошибки в базе данных."
|
736 |
|
737 |
+
#: wp-cerber.php:3658
|
738 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
739 |
msgstr "WP Cerber требует WordPress версии %s или выше. У вас версия"
|
740 |
|
741 |
+
#: wp-cerber.php:3654
|
742 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
743 |
msgstr "WP Cerber требует PHP версии %s или выше. У вас версия"
|
744 |
|
745 |
+
#: wp-cerber.php:3066
|
746 |
msgid "This message was sent by"
|
747 |
msgstr "Это сообщение было отправлено"
|
748 |
|
749 |
+
#: wp-cerber.php:3020
|
750 |
msgid "New Custom login URL"
|
751 |
msgstr "Новый URL для входа на сайт"
|
752 |
|
753 |
+
#: wp-cerber.php:3012 wp-cerber.php:3679
|
754 |
msgid "WP Cerber is now active and has started protecting your site"
|
755 |
msgstr "WP Cerber активен и начал защищать ваш сайт"
|
756 |
|
757 |
+
#: wp-cerber.php:3011
|
758 |
msgid "The WP Cerber security plugin is now active"
|
759 |
msgstr "WP Cerber плагин безопасности активен"
|
760 |
|
761 |
+
#: wp-cerber.php:3007
|
762 |
msgid "From country"
|
763 |
msgstr "Из страны"
|
764 |
|
765 |
+
#: wp-cerber.php:3004
|
766 |
msgid "From IP address"
|
767 |
msgstr "С IP адреса"
|
768 |
|
769 |
+
#: wp-cerber.php:3003
|
770 |
msgid "By user"
|
771 |
msgstr "По пользователю"
|
772 |
|
773 |
+
#: wp-cerber.php:2997
|
774 |
msgid "Not logged in"
|
775 |
msgstr "Нет авторизации"
|
776 |
|
777 |
+
#: wp-cerber.php:2994 wp-cerber.php:2995
|
778 |
msgid "The WP Cerber security plugin has been deactivated"
|
779 |
msgstr "WP Cerber плагин деактивирован"
|
780 |
|
781 |
+
#: wp-cerber.php:2991 wp-cerber.php:3002
|
782 |
msgid "Website"
|
783 |
msgstr "Сайт"
|
784 |
|
785 |
+
#: wp-cerber.php:2988
|
786 |
msgid "Hi!"
|
787 |
msgstr "Привет!"
|
788 |
|
789 |
+
#: wp-cerber.php:2987 wp-cerber.php:2989
|
790 |
msgid "A new version of WP Cerber is available to install"
|
791 |
msgstr "Доступна новая версия WP Cerber!"
|
792 |
|
793 |
+
#: wp-cerber.php:2984
|
794 |
msgid "View lockouts in dashboard"
|
795 |
msgstr "Просмотреть список заблокированных IP"
|
796 |
|
797 |
+
#: wp-cerber.php:2983
|
798 |
msgid "View activity for this IP"
|
799 |
msgstr "Посмотреть активность для этого IP"
|
800 |
|
801 |
+
#: wp-cerber.php:2981
|
802 |
msgid "Last lockout was added: %s for IP %s"
|
803 |
msgstr "Последняя блокировка была добавлена %s для IP %s"
|
804 |
|
805 |
+
#: wp-cerber.php:2980
|
806 |
msgid "Number of active lockouts"
|
807 |
msgstr "Число активных блокировок на данный момент"
|
808 |
|
809 |
+
#: wp-cerber.php:2978
|
810 |
msgid "Number of lockouts is increasing"
|
811 |
msgstr "Число блокировок увеличилось"
|
812 |
|
813 |
+
#: wp-cerber.php:2975
|
814 |
msgid "unspecified"
|
815 |
msgstr "неуказано"
|
816 |
|
817 |
+
#: wp-cerber.php:2950 wp-cerber.php:3497
|
818 |
msgid "View activity in dashboard"
|
819 |
msgstr "Просмотреть журнал активности"
|
820 |
|
821 |
+
#: wp-cerber.php:2949
|
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:2948
|
826 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
827 |
msgstr "Режим Цитадель активирован после %d неудачных попыток за %d минут."
|
828 |
|
829 |
+
#: wp-cerber.php:2946
|
830 |
msgid "Citadel mode is activated"
|
831 |
msgstr "Активирован режим Цитадель"
|
832 |
|
833 |
+
#: wp-cerber.php:2924
|
834 |
msgid "WP Cerber notify"
|
835 |
msgstr "Уведомление WP Cerber"
|
836 |
|
837 |
+
#: common.php:554
|
838 |
msgid "Limit on login attempts is reached"
|
839 |
msgstr "Количество попыток исчерпано"
|
840 |
|
841 |
+
#: common.php:555
|
842 |
msgid "Attempt to access"
|
843 |
msgstr "Попытка доступа к"
|
844 |
|
845 |
+
#: wp-cerber.php:967
|
846 |
msgid "Username is not allowed. Please choose another one."
|
847 |
msgstr "Имя пользователя недопустимо. Выберите другое."
|
848 |
|
849 |
+
#: wp-cerber.php:746
|
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:557
|
854 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
855 |
msgstr "Антибот проверка неудачна. Пожалуйста тыкните в квадратную отметку блока reCAPTCHA ниже"
|
856 |
|
857 |
+
#: common.php:173 common.php:227 common.php:231 settings.php:709
|
858 |
+
#: wp-cerber.php:528 wp-cerber.php:540 wp-cerber.php:547 wp-cerber.php:734
|
859 |
+
#: wp-cerber.php:950 wp-cerber.php:956 wp-cerber.php:961 wp-cerber.php:966
|
860 |
+
#: wp-cerber.php:972 wp-cerber.php:979 wp-cerber.php:1080 wp-cerber.php:1217
|
861 |
msgid "ERROR:"
|
862 |
msgstr "ОШИБКА:"
|
863 |
|
876 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
877 |
msgstr "Вход на сайт невозможен. Обратитесь к администратору сайта."
|
878 |
|
879 |
+
#: common.php:553 dashboard.php:291 whois.php:221 whois.php:252
|
880 |
msgid "Unknown"
|
881 |
msgstr "Неизвестен"
|
882 |
|
883 |
+
#: settings.php:736 settings.php:748
|
884 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
885 |
msgstr "<strong>ОШИБКА</strong>: Введите действительный адрес эл.почты."
|
886 |
|
887 |
+
#: settings.php:659 settings.php:660
|
888 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
889 |
msgstr "Внимание! Вы изменили URL страницы авторизации. Новый адрес"
|
890 |
|
891 |
+
#: settings.php:399 settings.php:522
|
892 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
893 |
msgstr "Активировать после %s неудачных авторизаций за последние %s минут"
|
894 |
|
895 |
+
#: settings.php:394 settings.php:517
|
896 |
msgid "Notify admin if the number of active lockouts above"
|
897 |
msgstr "Уведомить администратора, если число заблокированных IP более"
|
898 |
|
899 |
+
#: settings.php:387 settings.php:510
|
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:377 settings.php:500
|
904 |
msgid "%s allowed retries in %s minutes"
|
905 |
msgstr "%s попыток разрешено в течении %s минут"
|
906 |
|
907 |
+
#: settings.php:264
|
908 |
msgid "Help"
|
909 |
msgstr "Помощь"
|
910 |
|
911 |
+
#: cerber-tools.php:43 dashboard.php:882
|
912 |
msgid "Tools"
|
913 |
msgstr "Инструменты"
|
914 |
|
915 |
+
#: settings.php:259
|
916 |
msgid "Users"
|
917 |
msgstr "Пользователи"
|
918 |
|
919 |
+
#: settings.php:257 wp-cerber.php:3690
|
920 |
msgid "Hardening"
|
921 |
msgstr "Панцирь"
|
922 |
|
923 |
+
#: settings.php:252 wp-cerber.php:3687
|
924 |
msgid "Main Settings"
|
925 |
msgstr "Главные настройки"
|
926 |
|
927 |
+
#: cerber-lab.php:666 settings.php:220
|
928 |
msgid "Know more"
|
929 |
msgstr "Узнать больше"
|
930 |
|
931 |
+
#: settings.php:219
|
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:216
|
936 |
msgid "These settings do not affect hosts from the "
|
937 |
msgstr "Эти настройки не применяются к адресам из"
|
938 |
|
939 |
+
#: settings.php:209
|
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:206
|
944 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
945 |
msgstr "Для использования этой настройки необходимо активировать Постоянные ссылки в настройках сайта."
|
946 |
|
947 |
+
#: settings.php:202
|
948 |
msgid "Make your protection smarter!"
|
949 |
msgstr "Сделайте защиту от злоумышленников еще умнее"
|
950 |
|
951 |
+
#: settings.php:158
|
952 |
msgid "Login form"
|
953 |
msgstr "Форма входа"
|
954 |
|
955 |
+
#: settings.php:155
|
956 |
msgid "Lost password form"
|
957 |
msgstr "Форма восстановления пароля"
|
958 |
|
959 |
+
#: settings.php:149
|
960 |
msgid "Secret key"
|
961 |
msgstr "Секретный ключ"
|
962 |
|
963 |
+
#: settings.php:148
|
964 |
msgid "Site key"
|
965 |
msgstr "Ключ сайта"
|
966 |
|
967 |
+
#: settings.php:147
|
968 |
msgid "reCAPTCHA settings"
|
969 |
msgstr "Настройки reCAPTCHA"
|
970 |
|
971 |
+
#: settings.php:124
|
972 |
msgid "in minutes (leave empty to use default WP value)"
|
973 |
msgstr "В минутах (оставьте пустым для значения WP по умолчанию)"
|
974 |
|
975 |
+
#: settings.php:124
|
976 |
msgid "User session expire"
|
977 |
msgstr "Длительность сессии пользователя"
|
978 |
|
979 |
+
#: settings.php:123
|
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:123
|
984 |
msgid "Prohibited usernames"
|
985 |
msgstr "Запрещеные имена пользователей"
|
986 |
|
987 |
+
#: settings.php:121
|
988 |
msgid "User related settings"
|
989 |
msgstr "Настройки пользователей"
|
990 |
|
991 |
+
#: settings.php:110
|
992 |
msgid "Disable REST API"
|
993 |
msgstr "Отключить REST API"
|
994 |
|
995 |
+
#: settings.php:109
|
996 |
msgid "Block access to the RSS, Atom and RDF feeds"
|
997 |
msgstr "Закрыть доступ к RSS, Atom и RDF лентам"
|
998 |
|
999 |
+
#: settings.php:109
|
1000 |
msgid "Disable feeds"
|
1001 |
msgstr "Отключить ленты"
|
1002 |
|
1003 |
+
#: settings.php:108
|
1004 |
msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
|
1005 |
+
msgstr "Закрыть доступ к функциям XML-RPC, включая уведомления и обратные ссылки"
|
1006 |
|
1007 |
+
#: settings.php:108
|
1008 |
msgid "Disable XML-RPC"
|
1009 |
msgstr "Отключить XML-RPC"
|
1010 |
|
1011 |
+
#: settings.php:107
|
1012 |
msgid "Stop user enumeration"
|
1013 |
msgstr "Заблокировать сбор имен"
|
1014 |
|
1015 |
+
#: settings.php:106
|
1016 |
msgid "Hardening WordPress"
|
1017 |
msgstr "Усиление защиты WordPress"
|
1018 |
|
1019 |
+
#: settings.php:95
|
1020 |
msgid "Write failed login attempts to the file"
|
1021 |
msgstr "Записывать попытки входа в файл"
|
1022 |
|
1023 |
+
#: settings.php:95
|
1024 |
msgid "Use file"
|
1025 |
msgstr "Использовать файл"
|
1026 |
|
1027 |
+
#: settings.php:98
|
1028 |
msgid "Retrieve extra WHOIS information for IP"
|
1029 |
msgstr "Получить дополнительную информацию об IP используя WHOIS"
|
1030 |
|
1031 |
+
#: settings.php:98
|
1032 |
msgid "Drill down IP"
|
1033 |
msgstr "Изучать IP"
|
1034 |
|
1035 |
+
#: settings.php:92 settings.php:144
|
1036 |
msgid "days"
|
1037 |
msgstr "дней"
|
1038 |
|
1039 |
+
#: settings.php:92
|
1040 |
msgid "Keep records for"
|
1041 |
msgstr "Хранить записи не более"
|
1042 |
|
1043 |
+
#: settings.php:173
|
1044 |
msgid "notification letters allowed per hour (0 means unlimited)"
|
1045 |
msgstr "разрешенное число писем с уведомлениями в час (0 - без ограничений)"
|
1046 |
|
1047 |
+
#: settings.php:173
|
1048 |
msgid "Notification limit"
|
1049 |
msgstr "Ограничение уведомлений"
|
1050 |
|
1051 |
+
#: settings.php:172
|
1052 |
msgid "if empty, the admin email %s will be used"
|
1053 |
msgstr "Если пусто, то будет использован адрес администратора %s"
|
1054 |
|
1055 |
+
#: settings.php:172 settings.php:192
|
1056 |
msgid "Email Address"
|
1057 |
msgstr "Адрес email"
|
1058 |
|
1059 |
+
#: settings.php:89 settings.php:396 settings.php:519
|
1060 |
msgid "Click to send test"
|
1061 |
msgstr "Нажмите, чтобы протестировать отправку"
|
1062 |
|
1063 |
+
#: settings.php:89
|
1064 |
msgid "Send notification to admin email"
|
1065 |
msgstr "Отправить уведомление на адрес email администратора сайта"
|
1066 |
|
1067 |
+
#: settings.php:88
|
1068 |
msgid "Duration"
|
1069 |
msgstr "Длительность"
|
1070 |
|
1071 |
+
#: settings.php:87
|
1072 |
msgid "Threshold"
|
1073 |
msgstr "Порог"
|
1074 |
|
1075 |
+
#: settings.php:84
|
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:84
|
1080 |
msgid "Disable wp-login.php"
|
1081 |
msgstr "Доступ к wp-login.php"
|
1082 |
|
1083 |
+
#: settings.php:83
|
1084 |
msgid "must not overlap with the existing pages or posts slug"
|
1085 |
msgstr "не должно совпадать с URL существующих страниц или постов"
|
1086 |
|
1087 |
+
#: settings.php:83
|
1088 |
msgid "Custom login URL"
|
1089 |
msgstr "Адрес страницы авторизации"
|
1090 |
|
1091 |
+
#: settings.php:82
|
1092 |
msgid "Custom login page"
|
1093 |
msgstr "Смена URL страницы авторизации"
|
1094 |
|
1095 |
+
#: settings.php:79
|
1096 |
msgid "Immediately block IP after any request to wp-login.php"
|
1097 |
msgstr "Блокировать IP при любом запросе wp-login.php"
|
1098 |
|
1099 |
+
#: settings.php:79
|
1100 |
msgid "Request wp-login.php"
|
1101 |
msgstr "Запрос wp-login.php"
|
1102 |
|
1103 |
+
#: settings.php:78
|
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:78
|
1108 |
msgid "Redirect dashboard requests"
|
1109 |
msgstr "Запросы к панели управления"
|
1110 |
|
1111 |
+
#: settings.php:77
|
1112 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
1113 |
msgstr "Блокировать IP при попытке авторизации с логином несуществующего пользователя"
|
1114 |
|
1115 |
+
#: settings.php:77
|
1116 |
msgid "Non-existent users"
|
1117 |
msgstr "Несуществующие пользователи"
|
1118 |
|
1119 |
+
#: settings.php:76
|
1120 |
msgid "Always block entire subnet Class C of intruders IP"
|
1121 |
msgstr "Всегда блокировать подсеть класса С вместо IP адреса"
|
1122 |
|
1123 |
+
#: settings.php:76
|
1124 |
msgid "Block subnet"
|
1125 |
msgstr "Блокировка подсети"
|
1126 |
|
1127 |
+
#: settings.php:75
|
1128 |
msgid "Proactive security rules"
|
1129 |
msgstr "Проактивные правила безопасности"
|
1130 |
|
1131 |
+
#: dashboard.php:1145 settings.php:73
|
1132 |
msgid "My site is behind a reverse proxy"
|
1133 |
msgstr "Мой сайт подключен к сети через прокси-сервер"
|
1134 |
|
1135 |
+
#: settings.php:73
|
1136 |
msgid "Site connection"
|
1137 |
msgstr "Подключение к сети"
|
1138 |
|
1139 |
+
#: settings.php:72 settings.php:89 settings.php:262 wp-cerber.php:3691
|
1140 |
msgid "Notifications"
|
1141 |
msgstr "Уведомления"
|
1142 |
|
1143 |
+
#: settings.php:70
|
1144 |
msgid "Aggressive lockout"
|
1145 |
msgstr "Ужесточение"
|
1146 |
|
1147 |
+
#: settings.php:69 settings.php:88
|
1148 |
msgid "minutes"
|
1149 |
msgstr "минут"
|
1150 |
|
1151 |
+
#: settings.php:69
|
1152 |
msgid "Lockout duration"
|
1153 |
msgstr "Длительность блокировки"
|
1154 |
|
1155 |
+
#: settings.php:68
|
1156 |
msgid "Attempts"
|
1157 |
msgstr "Попытки"
|
1158 |
|
1159 |
+
#: settings.php:67
|
1160 |
msgid "Limit login attempts"
|
1161 |
msgstr "Ограничение числа попыток авторизации"
|
1162 |
|
1163 |
+
#: dashboard.php:820
|
1164 |
msgid "Abuse email:"
|
1165 |
msgstr "Адрес email для жалоб:"
|
1166 |
|
1167 |
+
#: common.php:744
|
1168 |
msgid "Update to version %s of WP Cerber"
|
1169 |
msgstr "Обновить WP Cerber до версии %s"
|
1170 |
|
1171 |
+
#: common.php:737
|
1172 |
msgid "New version is available"
|
1173 |
msgstr "Доступна новая версия"
|
1174 |
|
1175 |
+
#: dashboard.php:1435
|
1176 |
msgid "View Activity"
|
1177 |
msgstr "Что происходит?"
|
1178 |
|
1179 |
+
#: dashboard.php:1434
|
1180 |
msgid "Deactivate"
|
1181 |
msgstr "Деактивировать"
|
1182 |
|
1183 |
+
#: dashboard.php:1433
|
1184 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
1185 |
msgstr "Внимание! Режим Цитадель активен. Авторизация на сайте заблокирована."
|
1186 |
|
1187 |
+
#: dashboard.php:1343
|
1188 |
msgid "doesn't affect Custom login URL and Access Lists"
|
1189 |
msgstr "не затронет настройки URL страницы авторизации и списки доступа"
|
1190 |
|
1191 |
+
#: dashboard.php:1337
|
1192 |
msgid "Are you sure?"
|
1193 |
msgstr "Вы уверены?"
|
1194 |
|
1195 |
+
#: dashboard.php:1335
|
1196 |
msgid "Load default settings"
|
1197 |
msgstr "Загрузить настройки"
|
1198 |
|
1199 |
+
#: dashboard.php:1333
|
1200 |
msgid "You can easily load default recommended settings using button below"
|
1201 |
msgstr "Вы можете загрузить рекомендованные настройки с помощью всего одной кнопки"
|
1202 |
|
1203 |
+
#: dashboard.php:1332
|
1204 |
msgid "Confused about some settings?"
|
1205 |
msgstr "Сомневаетесь какие настройки оптимальны?"
|
1206 |
|
1207 |
+
#: dashboard.php:1098 settings.php:250
|
1208 |
msgid "Lockouts"
|
1209 |
msgstr "Блокировки"
|
1210 |
|
1211 |
+
#: dashboard.php:1090 settings.php:86
|
1212 |
msgid "Citadel mode"
|
1213 |
msgstr "Режим Цитадель"
|
1214 |
|
1215 |
+
#: dashboard.php:1088 dashboard.php:1089 dashboard.php:1601
|
1216 |
msgid "entry"
|
1217 |
msgid_plural "entries"
|
1218 |
msgstr[0] "элемент"
|
1219 |
msgstr[1] "элемента"
|
1220 |
msgstr[2] "элементов"
|
1221 |
|
1222 |
+
#: dashboard.php:1087
|
1223 |
msgid "Last lockout"
|
1224 |
msgstr "Последняя блокировка"
|
1225 |
|
1226 |
+
#: dashboard.php:1086
|
1227 |
msgid "Lockouts at the moment"
|
1228 |
msgstr "Сейчас заблокировано"
|
1229 |
|
1230 |
+
#: dashboard.php:1084
|
1231 |
msgid "lockouts"
|
1232 |
msgstr "блокировок"
|
1233 |
|
1234 |
+
#: dashboard.php:1083 dashboard.php:1084
|
1235 |
msgid "view all"
|
1236 |
msgstr "просмотреть все"
|
1237 |
|
1238 |
+
#: dashboard.php:1083 dashboard.php:1084
|
1239 |
msgid "in 24 hours"
|
1240 |
msgstr "за 24 часа"
|
1241 |
|
1242 |
+
#: dashboard.php:1083
|
1243 |
msgid "failed attempts"
|
1244 |
msgstr "ошибок авторизации"
|
1245 |
|
1246 |
+
#: dashboard.php:1078
|
1247 |
msgid "disabled"
|
1248 |
msgstr "отключен"
|
1249 |
|
1250 |
+
#: dashboard.php:1077
|
1251 |
msgid "not active"
|
1252 |
msgstr "неактивен"
|
1253 |
|
1254 |
+
#: dashboard.php:1075
|
1255 |
msgid "deactivate"
|
1256 |
msgstr "деактивировать"
|
1257 |
|
1258 |
+
#: dashboard.php:1075
|
1259 |
msgid "active"
|
1260 |
msgstr "активен"
|
1261 |
|
1262 |
+
#: dashboard.php:1041
|
1263 |
msgid "Cerber Quick View"
|
1264 |
msgstr "Сводка от Cerber"
|
1265 |
|
1266 |
+
#: cerber-tools.php:181
|
1267 |
msgid "Error while parsing file"
|
1268 |
msgstr "Возникла ошибка при обработке файла"
|
1269 |
|
1270 |
+
#: cerber-tools.php:177
|
1271 |
msgid "Settings has imported successfully from"
|
1272 |
msgstr "Все настройки успешно загружены"
|
1273 |
|
1274 |
+
#: cerber-tools.php:174
|
1275 |
msgid "Error while updating"
|
1276 |
msgstr "Возникла ошибка при обновлении"
|
1277 |
|
1278 |
+
#: cerber-tools.php:141
|
1279 |
msgid "No file was uploaded or file is corrupted"
|
1280 |
msgstr "Файл не был загружен или имеет неверный формат"
|
1281 |
|
1307 |
msgid "Download file"
|
1308 |
msgstr "Скачать файл"
|
1309 |
|
1310 |
+
#: cerber-tools.php:88 cerber-tools.php:97 cerber-tools.php:174
|
1311 |
+
#: dashboard.php:1099 settings.php:255 wp-cerber.php:3688
|
1312 |
msgid "Access Lists"
|
1313 |
msgstr "Списки доступа"
|
1314 |
|
1328 |
msgid "Export settings to the file"
|
1329 |
msgstr "Экспорт настроек в файл"
|
1330 |
|
1331 |
+
#: dashboard.php:987 dashboard.php:1071
|
1332 |
msgid "Never"
|
1333 |
msgstr "Никогда"
|
1334 |
|
1335 |
+
#: settings.php:125
|
1336 |
+
msgid "by date of registration"
|
1337 |
+
msgstr "по дате регистрации"
|
|
|
|
|
|
|
|
|
1338 |
|
1339 |
+
#: dashboard.php:954
|
1340 |
+
msgid "Last login"
|
1341 |
+
msgstr "Последний вход"
|
1342 |
|
1343 |
+
#: dashboard.php:953
|
1344 |
+
msgid "Comments"
|
1345 |
+
msgstr "Комментарии"
|
1346 |
|
1347 |
+
#: dashboard.php:873 dashboard.php:892
|
1348 |
+
msgid "WP Cerber"
|
1349 |
+
msgstr "WP Cerber"
|
1350 |
|
1351 |
+
#: dashboard.php:842
|
1352 |
+
msgid "Add IP to the Black List"
|
1353 |
+
msgstr "Добавить IP в черный список"
|
1354 |
|
1355 |
+
#: dashboard.php:639
|
1356 |
+
msgid "No activity has been logged."
|
1357 |
+
msgstr "Ни одного события не зафиксировано."
|
1358 |
|
1359 |
+
#: dashboard.php:457 dashboard.php:618 wp-cerber.php:3473
|
1360 |
+
msgid "Username used"
|
1361 |
+
msgstr "Использован логин"
|
1362 |
|
1363 |
+
#: dashboard.php:457 dashboard.php:617
|
1364 |
+
msgid "Local User"
|
1365 |
+
msgstr "Пользователь"
|
1366 |
|
1367 |
+
#: dashboard.php:1097 dashboard.php:1293 settings.php:91 settings.php:246
|
1368 |
+
#: wp-cerber.php:3456
|
1369 |
+
msgid "Activity"
|
1370 |
+
msgstr "Активность"
|
1371 |
|
1372 |
+
#: dashboard.php:457 dashboard.php:615
|
1373 |
+
msgid "Date"
|
1374 |
+
msgstr "Дата"
|
1375 |
|
1376 |
+
#: dashboard.php:385 dashboard.php:1450
|
1377 |
+
msgid "Settings saved"
|
1378 |
+
msgstr "Настройки сохранены."
|
1379 |
|
1380 |
+
#: dashboard.php:368
|
1381 |
+
msgid "Lockout for %s was removed"
|
1382 |
+
msgstr "Удалена блокировка для %s"
|
1383 |
|
1384 |
+
#: dashboard.php:333
|
1385 |
+
msgid "unknown"
|
1386 |
+
msgstr "неизвестно"
|
1387 |
|
1388 |
+
#: dashboard.php:196
|
1389 |
+
msgid "You can't add your IP address"
|
1390 |
+
msgstr "Вы не можете добавить свой адрес IP"
|
1391 |
|
1392 |
+
#: dashboard.php:200
|
1393 |
+
msgid "Address %s was added to Black IP Access List"
|
1394 |
+
msgstr "Адрес %s добавлен в черный список доступа"
|
1395 |
|
1396 |
+
#: dashboard.php:187
|
1397 |
+
msgid "Address %s was added to White IP Access List"
|
1398 |
+
msgstr "Адрес %s добавлен в белый список доступа"
|
1399 |
|
1400 |
+
#: dashboard.php:164
|
1401 |
+
msgid "Add IP to the list"
|
1402 |
+
msgstr "Добавить IP в список"
|
1403 |
|
1404 |
+
#: dashboard.php:160
|
1405 |
+
msgid "List is empty"
|
1406 |
+
msgstr "Список пуст"
|
1407 |
|
1408 |
+
#: dashboard.php:157 dashboard.php:824
|
1409 |
+
msgid "Check for activity"
|
1410 |
+
msgstr "Проверить активность"
|
1411 |
|
1412 |
+
#: dashboard.php:140
|
1413 |
+
msgid "Your IP"
|
1414 |
+
msgstr "Ваш адрес IP"
|
1415 |
|
1416 |
+
#: dashboard.php:133
|
1417 |
+
msgid "Nobody can log in or register from these IPs"
|
1418 |
+
msgstr "Никто не сможет войти или зарегистрироваться с этих IP"
|
1419 |
|
1420 |
+
#: dashboard.php:133 dashboard.php:589 dashboard.php:794 dashboard.php:1089
|
1421 |
+
msgid "Black IP Access List"
|
1422 |
+
msgstr "Черный список доступа по IP"
|
1423 |
|
1424 |
+
#: dashboard.php:131
|
1425 |
+
msgid "These IPs will never be locked out"
|
1426 |
+
msgstr "Эти адреса не будут заблокированы ни при каких условиях"
|
1427 |
|
1428 |
+
#: dashboard.php:131 dashboard.php:588 dashboard.php:792 dashboard.php:1088
|
1429 |
+
#: settings.php:71 settings.php:216 wp-cerber.php:3680
|
1430 |
+
msgid "White IP Access List"
|
1431 |
+
msgstr "Белый список доступа по IP"
|
1432 |
|
1433 |
#: dashboard.php:118
|
1434 |
msgid "No lockouts at the moment. The sky is clear."
|
1435 |
msgstr "Блокировок нет. Все в порядке."
|
1436 |
|
1437 |
+
#: dashboard.php:114
|
1438 |
+
msgid "To view activity, click on the IP"
|
1439 |
+
msgstr "Чтобы увидеть активность, нажмите на адрес IP"
|
|
|
|
|
|
|
|
|
|
|
1440 |
|
1441 |
+
#: dashboard.php:114
|
1442 |
+
msgid "Hint"
|
1443 |
+
msgstr "Подсказка"
|
1444 |
|
1445 |
+
#: dashboard.php:112
|
1446 |
+
msgid "Showing last %d records from %d"
|
1447 |
+
msgstr "Отображены последние %d строк из %d"
|
1448 |
|
1449 |
+
#: dashboard.php:98
|
1450 |
+
msgid "Action"
|
1451 |
+
msgstr "Действие"
|
1452 |
|
1453 |
+
#: dashboard.php:97 wp-cerber.php:2982
|
1454 |
+
msgid "Reason"
|
1455 |
+
msgstr "Причина"
|
1456 |
|
1457 |
+
#: dashboard.php:96
|
1458 |
+
msgid "Expires"
|
1459 |
+
msgstr "Истекает"
|
1460 |
|
1461 |
+
#: dashboard.php:94 dashboard.php:613
|
1462 |
+
msgid "Hostname"
|
1463 |
+
msgstr "Имя узла"
|
1464 |
|
1465 |
+
#: dashboard.php:93 dashboard.php:612 wp-cerber.php:3465
|
1466 |
+
msgid "IP"
|
1467 |
+
msgstr "IP"
|
1468 |
|
1469 |
+
#: dashboard.php:86 dashboard.php:157
|
1470 |
+
msgid "Remove"
|
1471 |
+
msgstr "Удалить"
|
1472 |
|
1473 |
+
#: common.php:512 common.php:557
|
1474 |
+
msgid "Attempt to log in with prohibited username"
|
1475 |
+
msgstr "Попытка входа с запрещенным именем"
|
1476 |
|
1477 |
+
#: common.php:511 common.php:556
|
1478 |
+
msgid "Attempt to log in with non-existent username"
|
1479 |
+
msgstr "Попытка войти с несуществующим именем пользователя"
|
1480 |
|
1481 |
+
#: common.php:510
|
1482 |
+
msgid "Attempt to access prohibited URL"
|
1483 |
+
msgstr "Попытка доступа к запрещенному URL"
|
1484 |
|
1485 |
+
#: common.php:507
|
1486 |
+
msgid "reCAPTCHA settings are incorrect"
|
1487 |
+
msgstr "настройки reCAPTCHA неверны"
|
1488 |
|
1489 |
+
#: common.php:506
|
1490 |
+
msgid "reCAPTCHA verification failed"
|
1491 |
+
msgstr "проверка reCAPTCHA неудачна"
|
1492 |
|
1493 |
+
#: common.php:503
|
1494 |
+
msgid "Password changed"
|
1495 |
+
msgstr "Пароль изменен"
|
1496 |
|
1497 |
+
#: common.php:525
|
1498 |
+
msgid "IP blacklisted"
|
1499 |
+
msgstr "IP в черном списке"
|
1500 |
|
1501 |
+
#: common.php:524 dashboard.php:593 dashboard.php:797
|
1502 |
+
msgid "Locked out"
|
1503 |
+
msgstr "Заблокировано"
|
|
|
1504 |
|
1505 |
+
#: common.php:488
|
1506 |
+
msgid "Citadel activated!"
|
1507 |
+
msgstr "Режим Цитадель активирован!"
|
1508 |
|
1509 |
+
#: common.php:486
|
1510 |
+
msgid "Subnet blocked"
|
1511 |
+
msgstr "Подсеть заблокирована"
|
1512 |
|
1513 |
+
#: common.php:485
|
1514 |
+
msgid "IP blocked"
|
1515 |
+
msgstr "IP заблокирован"
|
1516 |
|
1517 |
+
#: common.php:482
|
1518 |
+
msgid "Login failed"
|
1519 |
+
msgstr "Ошибка авторизации"
|
1520 |
|
1521 |
+
#: common.php:481
|
1522 |
+
msgid "Logged out"
|
1523 |
+
msgstr "Выход"
|
1524 |
|
1525 |
+
#: common.php:480
|
1526 |
+
msgid "Logged in"
|
1527 |
+
msgstr "Вход"
|
1528 |
|
1529 |
+
#: common.php:479 dashboard.php:1287
|
1530 |
+
msgid "User registered"
|
1531 |
+
msgstr "Пользователь зарегистрирован"
|
1532 |
|
1533 |
+
#: common.php:478
|
1534 |
+
msgid "User created"
|
1535 |
+
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"
|
@@ -24,19 +24,19 @@ msgstr ""
|
|
24 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
25 |
"X-Generator: Loco - https://localise.biz/"
|
26 |
|
27 |
-
#: ../dashboard.php:86 ../dashboard.php:
|
28 |
msgid "Remove"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../dashboard.php:93 ../dashboard.php:
|
32 |
msgid "IP"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../dashboard.php:94 ../dashboard.php:
|
36 |
msgid "Hostname"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: ../dashboard.php:95 ../dashboard.php:
|
40 |
msgid "Country"
|
41 |
msgstr ""
|
42 |
|
@@ -44,7 +44,7 @@ msgstr ""
|
|
44 |
msgid "Expires"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: ../dashboard.php:97 ../wp-cerber.php:
|
48 |
msgid "Reason"
|
49 |
msgstr ""
|
50 |
|
@@ -69,8 +69,8 @@ msgstr ""
|
|
69 |
msgid "No lockouts at the moment. The sky is clear."
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: ../dashboard.php:131 ../dashboard.php:
|
73 |
-
#: php:
|
74 |
msgid "White IP Access List"
|
75 |
msgstr ""
|
76 |
|
@@ -78,8 +78,8 @@ msgstr ""
|
|
78 |
msgid "These IPs will never be locked out"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: ../dashboard.php:133 ../dashboard.php:
|
82 |
-
#: php:
|
83 |
msgid "Black IP Access List"
|
84 |
msgstr ""
|
85 |
|
@@ -91,414 +91,422 @@ msgstr ""
|
|
91 |
msgid "Your IP"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: ../dashboard.php:
|
95 |
msgid "Check for activity"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: ../dashboard.php:
|
99 |
msgid "List is empty"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: ../dashboard.php:
|
|
|
|
|
|
|
|
|
103 |
msgid "Add IP to the list"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: ../dashboard.php:
|
|
|
|
|
|
|
|
|
107 |
msgid "Incorrect IP address or IP range"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: ../dashboard.php:
|
111 |
#, php-format
|
112 |
msgid "Address %s was added to White IP Access List"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: ../dashboard.php:
|
116 |
-
msgid "You
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: ../dashboard.php:
|
120 |
#, php-format
|
121 |
msgid "Address %s was added to Black IP Access List"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: ../dashboard.php:
|
125 |
msgid "Unknown"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: ../dashboard.php:
|
129 |
msgid "unknown"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: ../dashboard.php:
|
133 |
msgid "Email has been sent to"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: ../dashboard.php:
|
137 |
msgid "Unable to send email to"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: ../dashboard.php:
|
141 |
#, php-format
|
142 |
msgid "Lockout for %s was removed"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../dashboard.php:
|
146 |
msgid "Settings saved"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../dashboard.php:
|
150 |
msgid "IP address"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: ../dashboard.php:
|
154 |
msgid "Date"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: ../dashboard.php:
|
158 |
msgid "Event"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../dashboard.php:
|
162 |
msgid "Local User"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../dashboard.php:
|
166 |
msgid "User login"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../dashboard.php:
|
170 |
msgid "User ID"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../dashboard.php:
|
174 |
msgid "Username used"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../dashboard.php:
|
178 |
msgid "Locked out"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../dashboard.php:
|
182 |
msgid "Export"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../dashboard.php:
|
186 |
msgid "No activity has been logged."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: ../dashboard.php:
|
190 |
msgid "All events"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: ../dashboard.php:
|
194 |
msgid "Search for IP or username"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ../dashboard.php:
|
198 |
msgid "Filter"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ../dashboard.php:
|
202 |
msgid "Abuse email:"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../dashboard.php:
|
206 |
msgid "Network:"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: ../dashboard.php:
|
210 |
msgid "Add network to the Black List"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../dashboard.php:
|
214 |
msgid "Add IP to the Black List"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ../dashboard.php:
|
218 |
msgid "WP Cerber Security"
|
219 |
msgstr ""
|
220 |
|
221 |
#. Name of the plugin
|
222 |
-
#: ../dashboard.php:
|
223 |
msgid "WP Cerber"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: ../dashboard.php:
|
227 |
msgid "Cerber Dashboard"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../dashboard.php:
|
231 |
-
#: php:
|
232 |
msgid "Dashboard"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: ../dashboard.php:
|
236 |
msgid "Cerber Security Rules"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ../dashboard.php:
|
240 |
msgid "Security Rules"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: ../dashboard.php:
|
244 |
msgid "Cerber antispam settings"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: ../dashboard.php:
|
248 |
msgid "Antispam"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: ../dashboard.php:
|
252 |
msgid "Cerber tools"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: ../dashboard.php:
|
256 |
msgid "Tools"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: ../dashboard.php:
|
260 |
msgid "Comments"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: ../dashboard.php:
|
264 |
msgid "Last login"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../dashboard.php:
|
268 |
msgid "Failed login attempts"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../dashboard.php:
|
272 |
msgid "Registered"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: ../dashboard.php:
|
276 |
msgid "Never"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../dashboard.php:
|
280 |
msgid "You"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../dashboard.php:
|
284 |
msgid "Cerber Quick View"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../dashboard.php:
|
288 |
msgid "active"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ../dashboard.php:
|
292 |
msgid "deactivate"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: ../dashboard.php:
|
296 |
msgid "not active"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: ../dashboard.php:
|
300 |
msgid "disabled"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: ../dashboard.php:
|
304 |
msgid "failed attempts"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: ../dashboard.php:
|
308 |
msgid "in 24 hours"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../dashboard.php:
|
312 |
msgid "view all"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../dashboard.php:
|
316 |
msgid "lockouts"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../dashboard.php:
|
320 |
msgid "Lockouts at the moment"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../dashboard.php:
|
324 |
msgid "Last lockout"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: ../dashboard.php:
|
328 |
msgid "entry"
|
329 |
msgid_plural "entries"
|
330 |
msgstr[0] ""
|
331 |
msgstr[1] ""
|
332 |
|
333 |
-
#: ../dashboard.php:
|
334 |
msgid "Citadel mode"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: ../dashboard.php:
|
338 |
msgid "Push notifications"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: ../dashboard.php:
|
342 |
-
#: php:
|
343 |
msgid "Activity"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: ../dashboard.php:
|
347 |
msgid "Lockouts"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: ../dashboard.php:
|
351 |
-
#: tools.php:88 ../cerber-tools.php:97 ../cerber-tools.php:
|
352 |
msgid "Access Lists"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: ../dashboard.php:
|
356 |
msgid "My site is behind a reverse proxy"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: ../dashboard.php:
|
360 |
msgid "in the last 24 hours"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: ../dashboard.php:
|
364 |
msgid "View all"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: ../dashboard.php:
|
368 |
msgid "User registered"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: ../dashboard.php:
|
372 |
msgid "All suspicious activity"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: ../dashboard.php:
|
376 |
msgid "Recently locked out IP addresses"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: ../dashboard.php:
|
380 |
msgid "Confused about some settings?"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: ../dashboard.php:
|
384 |
msgid "You can easily load default recommended settings using button below"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: ../dashboard.php:
|
388 |
msgid "Load default settings"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: ../dashboard.php:
|
392 |
msgid "Are you sure?"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: ../dashboard.php:
|
396 |
msgid "doesn't affect Custom login URL and Access Lists"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../dashboard.php:
|
400 |
msgid "Getting Started Guide"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: ../dashboard.php:
|
404 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: ../dashboard.php:
|
408 |
msgid "Deactivate"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: ../dashboard.php:
|
412 |
msgid "View Activity"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../dashboard.php:
|
416 |
msgid "Subscribe"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../dashboard.php:
|
420 |
msgid "Unsubscribe"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../dashboard.php:
|
424 |
msgid "You've subscribed"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: ../dashboard.php:
|
428 |
msgid "You've unsubscribed"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: ../dashboard.php:
|
432 |
msgid "Main settings"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../dashboard.php:
|
436 |
msgid "Countries"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: ../dashboard.php:
|
440 |
#, php-format
|
441 |
msgid "Permitted for one country"
|
442 |
msgid_plural "Permitted for %d countries"
|
443 |
msgstr[0] ""
|
444 |
msgstr[1] ""
|
445 |
|
446 |
-
#: ../dashboard.php:
|
447 |
#, php-format
|
448 |
msgid "Not permitted for one country"
|
449 |
msgid_plural "Not permitted for %d countries"
|
450 |
msgstr[0] ""
|
451 |
msgstr[1] ""
|
452 |
|
453 |
-
#: ../dashboard.php:
|
454 |
msgid "No rule"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: ../dashboard.php:
|
458 |
msgid "Start typing here to find a country"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: ../dashboard.php:
|
462 |
msgid "Click on a country name to add it to the list of selected countries"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: ../dashboard.php:
|
466 |
#, php-format
|
467 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
468 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ../dashboard.php:
|
472 |
#, php-format
|
473 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
474 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: ../dashboard.php:
|
478 |
msgid "Submit forms"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: ../dashboard.php:
|
482 |
msgid "Post comments"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../dashboard.php:
|
486 |
msgid "Log in to the website"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: ../dashboard.php:
|
490 |
msgid "Register on the website"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: ../dashboard.php:
|
494 |
msgid "Use XML-RPC"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: ../dashboard.php:
|
498 |
msgid "Use REST API"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: ../dashboard.php:
|
502 |
msgid "Security rules have been updated"
|
503 |
msgstr ""
|
504 |
|
@@ -522,237 +530,237 @@ msgstr ""
|
|
522 |
msgid "Gregory"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: ../wp-cerber.php:
|
526 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: ../wp-cerber.php:
|
530 |
#, php-format
|
531 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: ../wp-cerber.php:
|
535 |
#, php-format
|
536 |
msgid "You have only one attempt remaining."
|
537 |
msgid_plural "You have %d attempts remaining."
|
538 |
msgstr[0] ""
|
539 |
msgstr[1] ""
|
540 |
|
541 |
-
#: ../wp-cerber.php:
|
542 |
-
#: php:
|
543 |
-
#: cerber.php:
|
544 |
-
#: ../wp-cerber.php:
|
545 |
-
#: /settings.php:
|
546 |
msgid "ERROR:"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: ../wp-cerber.php:
|
550 |
msgid ""
|
551 |
"Human verification failed. Please click the square box in the reCAPTCHA "
|
552 |
"block below."
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: ../wp-cerber.php:
|
556 |
msgid ""
|
557 |
"> > > Translator of WP Cerber? To get the PRO license for free, drop your "
|
558 |
"contacts here: https://wpcerber.com/contact/"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: ../wp-cerber.php:
|
562 |
#, php-format
|
563 |
msgid ""
|
564 |
"<strong>ERROR</strong>: The password you entered for the username %s is "
|
565 |
"incorrect."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: ../wp-cerber.php:
|
569 |
-
#: php:
|
570 |
msgid "You are not allowed to register."
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: ../wp-cerber.php:
|
574 |
msgid "Username is not allowed. Please choose another one."
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: ../wp-cerber.php:
|
578 |
msgid "Sorry, human verification failed."
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: ../wp-cerber.php:
|
582 |
msgid "WP Cerber notify"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: ../wp-cerber.php:
|
586 |
msgid "Citadel mode is activated"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: ../wp-cerber.php:
|
590 |
#, php-format
|
591 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: ../wp-cerber.php:
|
595 |
#, php-format
|
596 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: ../wp-cerber.php:
|
600 |
msgid "View activity in dashboard"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: ../wp-cerber.php:
|
604 |
msgid "unspecified"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: ../wp-cerber.php:
|
608 |
msgid "Number of lockouts is increasing"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: ../wp-cerber.php:
|
612 |
msgid "Number of active lockouts"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../wp-cerber.php:
|
616 |
#, php-format
|
617 |
msgid "Last lockout was added: %s for IP %s"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: ../wp-cerber.php:
|
621 |
msgid "View activity for this IP"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: ../wp-cerber.php:
|
625 |
msgid "View lockouts in dashboard"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: ../wp-cerber.php:
|
629 |
msgid "A new version of WP Cerber is available to install"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: ../wp-cerber.php:
|
633 |
msgid "Hi!"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: ../wp-cerber.php:
|
637 |
msgid "Website"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: ../wp-cerber.php:
|
641 |
msgid "The WP Cerber security plugin has been deactivated"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: ../wp-cerber.php:
|
645 |
msgid "Not logged in"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: ../wp-cerber.php:
|
649 |
msgid "By user"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: ../wp-cerber.php:
|
653 |
msgid "From IP address"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../wp-cerber.php:
|
657 |
msgid "From country"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: ../wp-cerber.php:
|
661 |
msgid "The WP Cerber security plugin is now active"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: ../wp-cerber.php:
|
665 |
msgid "WP Cerber is now active and has started protecting your site"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: ../wp-cerber.php:
|
669 |
msgid "New Custom login URL"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: ../wp-cerber.php:
|
673 |
msgid "A new activity has been recorded"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: ../wp-cerber.php:
|
677 |
msgid "Weekly report"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: ../wp-cerber.php:
|
681 |
msgid "To change reporting settings visit"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: ../wp-cerber.php:
|
685 |
msgid "Your login page:"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: ../wp-cerber.php:
|
689 |
msgid "Your license is valid until"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: ../wp-cerber.php:
|
693 |
msgid "This message was sent by"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: ../wp-cerber.php:
|
697 |
#, php-format
|
698 |
msgid "Your last sign-in was %s from %s"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: ../wp-cerber.php:
|
702 |
msgid "Weekly Report"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: ../wp-cerber.php:
|
706 |
msgid "Activity details"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: ../wp-cerber.php:
|
710 |
msgid "Attempts to log in with non-existent username"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: ../wp-cerber.php:
|
714 |
msgid "User"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: ../wp-cerber.php:
|
718 |
msgid "Search string"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: ../wp-cerber.php:
|
722 |
msgid "To unsubscribe click here"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: ../wp-cerber.php:
|
726 |
#, php-format
|
727 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: ../wp-cerber.php:
|
731 |
#, php-format
|
732 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: ../wp-cerber.php:
|
736 |
msgid "Can't activate WP Cerber due to a database error."
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: ../wp-cerber.php:
|
740 |
msgid "Your IP address is added to the"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: ../wp-cerber.php:
|
744 |
msgid "Main Settings"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: ../wp-cerber.php:
|
748 |
msgid "Hardening"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: ../wp-cerber.php:
|
752 |
msgid "Notifications"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: ../wp-cerber.php:
|
756 |
msgid "Import settings"
|
757 |
msgstr ""
|
758 |
|
@@ -776,156 +784,156 @@ msgstr ""
|
|
776 |
msgid "Lockouts occurred"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: ../common.php:
|
780 |
msgid "User created"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: ../common.php:
|
784 |
msgid "Logged in"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../common.php:
|
788 |
msgid "Logged out"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: ../common.php:
|
792 |
msgid "Login failed"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: ../common.php:
|
796 |
msgid "IP blocked"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../common.php:
|
800 |
msgid "Subnet blocked"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../common.php:
|
804 |
msgid "Citadel activated!"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../common.php:
|
808 |
msgid "Spam comment denied"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: ../common.php:
|
812 |
msgid "Spam form submission denied"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: ../common.php:
|
816 |
msgid "Form submission denied"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../common.php:
|
820 |
msgid "Comment denied"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: ../common.php:
|
824 |
msgid "Password changed"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: ../common.php:
|
828 |
msgid "Password reset requested"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../common.php:
|
832 |
msgid "reCAPTCHA verification failed"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../common.php:
|
836 |
msgid "reCAPTCHA settings are incorrect"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: ../common.php:
|
840 |
msgid "Request to the Google reCAPTCHA service failed"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: ../common.php:
|
844 |
msgid "Attempt to access prohibited URL"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: ../common.php:
|
848 |
msgid "Attempt to log in with non-existent username"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: ../common.php:
|
852 |
msgid "Attempt to log in with prohibited username"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: ../common.php:
|
856 |
msgid "Attempt to log in denied"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: ../common.php:
|
860 |
msgid "Attempt to register denied"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: ../common.php:
|
864 |
msgid "Request to REST API denied"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: ../common.php:
|
868 |
msgid "XML-RPC request denied"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: ../common.php:
|
872 |
msgid "Bot detected"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: ../common.php:
|
876 |
msgid "Citadel mode is active"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: ../common.php:
|
880 |
msgid "IP blacklisted"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: ../common.php:
|
884 |
msgid "Malicious activity detected"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: ../common.php:
|
888 |
msgid "Blocked by country rule"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: ../common.php:
|
892 |
msgid "Limit reached"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: ../common.php:
|
896 |
msgid "Multiple suspicious activities"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: ../common.php:
|
900 |
msgid "Limit on login attempts is reached"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: ../common.php:
|
904 |
msgid "Attempt to access"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: ../common.php:
|
908 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: ../common.php:
|
912 |
msgid "Bot activity is detected"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: ../common.php:
|
916 |
msgid "Multiple suspicious activities were detected"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: ../common.php:
|
920 |
#, php-format
|
921 |
msgid "%s ago"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: ../common.php:
|
925 |
msgid "New version is available"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: ../common.php:
|
929 |
#, php-format
|
930 |
msgid "Update to version %s of WP Cerber"
|
931 |
msgstr ""
|
@@ -954,577 +962,577 @@ msgstr ""
|
|
954 |
msgid "NO, maybe later"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: ../cerber-lab.php:666 ../settings.php:
|
958 |
msgid "Know more"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: ../settings.php:
|
962 |
msgid "Limit login attempts"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: ../settings.php:
|
966 |
msgid "Attempts"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: ../settings.php:
|
970 |
msgid "Lockout duration"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: ../settings.php:
|
974 |
msgid "minutes"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: ../settings.php:
|
978 |
msgid "Aggressive lockout"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: ../settings.php:
|
982 |
msgid "Apply limit login rules to IP addresses in the White IP Access List"
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: ../settings.php:
|
986 |
msgid "Site connection"
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: ../settings.php:
|
990 |
msgid "Proactive security rules"
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: ../settings.php:
|
994 |
msgid "Block subnet"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: ../settings.php:
|
998 |
msgid "Always block entire subnet Class C of intruders IP"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: ../settings.php:
|
1002 |
msgid "Non-existent users"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: ../settings.php:
|
1006 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: ../settings.php:
|
1010 |
msgid "Redirect dashboard requests"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: ../settings.php:
|
1014 |
msgid ""
|
1015 |
"Disable automatic redirecting to the login page when /wp-admin/ is requested "
|
1016 |
"by an unauthorized request"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: ../settings.php:
|
1020 |
msgid "Request wp-login.php"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: ../settings.php:
|
1024 |
msgid "Immediately block IP after any request to wp-login.php"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: ../settings.php:
|
1028 |
msgid "Display 404 page"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: ../settings.php:
|
1032 |
msgid "Use 404 template from the active theme"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: ../settings.php:
|
1036 |
msgid "Display simple 404 page"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: ../settings.php:
|
1040 |
msgid "Custom login page"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: ../settings.php:
|
1044 |
msgid "Custom login URL"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: ../settings.php:
|
1048 |
msgid "must not overlap with the existing pages or posts slug"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: ../settings.php:
|
1052 |
msgid "Disable wp-login.php"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: ../settings.php:
|
1056 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: ../settings.php:
|
1060 |
msgid "Threshold"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: ../settings.php:
|
1064 |
msgid "Duration"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: ../settings.php:
|
1068 |
msgid "Send notification to admin email"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: ../settings.php:
|
1072 |
msgid "Click to send test"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: ../settings.php:
|
1076 |
msgid "Keep records for"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: ../settings.php:
|
1080 |
msgid "days"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: ../settings.php:
|
1084 |
msgid "Cerber Lab connection"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: ../settings.php:
|
1088 |
msgid "Send malicious IP addresses to the Cerber Lab"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: ../settings.php:
|
1092 |
msgid "Cerber Lab protocol"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: ../settings.php:
|
1096 |
msgid "Use file"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: ../settings.php:
|
1100 |
msgid "Write failed login attempts to the file"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: ../settings.php:
|
1104 |
msgid "Preferences"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: ../settings.php:
|
1108 |
msgid "Drill down IP"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: ../settings.php:
|
1112 |
msgid "Retrieve extra WHOIS information for IP"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: ../settings.php:
|
1116 |
msgid "Date format"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: ../settings.php:
|
1120 |
#, php-format
|
1121 |
msgid "if empty, the default format %s will be used"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: ../settings.php:
|
1125 |
msgid "Hardening WordPress"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: ../settings.php:
|
1129 |
msgid "Stop user enumeration"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: ../settings.php:
|
1133 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: ../settings.php:
|
1137 |
msgid "Disable XML-RPC"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: ../settings.php:
|
1141 |
msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: ../settings.php:
|
1145 |
msgid "Disable feeds"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: ../settings.php:
|
1149 |
msgid "Block access to the RSS, Atom and RDF feeds"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: ../settings.php:
|
1153 |
msgid "Disable REST API"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: ../settings.php:
|
1157 |
msgid "Block access to the WordPress REST API except the following"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: ../settings.php:
|
1161 |
msgid "Allow REST API for logged in users"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: ../settings.php:
|
1165 |
msgid ""
|
1166 |
"Specify REST API namespaces to be allowed if REST API is disabled. One "
|
1167 |
"string per line."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: ../settings.php:
|
1171 |
msgid "User related settings"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: ../settings.php:
|
1175 |
msgid "Registration limit"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: ../settings.php:
|
1179 |
msgid "Prohibited usernames"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: ../settings.php:
|
1183 |
msgid ""
|
1184 |
"Usernames from this list are not allowed to log in or register. Any IP "
|
1185 |
"address, have tried to use any of these usernames, will be immediately "
|
1186 |
"blocked. Use comma to separate logins."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: ../settings.php:
|
1190 |
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: ../settings.php:
|
1194 |
msgid "User session expire"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: ../settings.php:
|
1198 |
msgid "in minutes (leave empty to use default WP value)"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: ../settings.php:
|
1202 |
msgid "Sort users in dashboard"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: ../settings.php:
|
1206 |
msgid "by date of registration"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: ../settings.php:
|
1210 |
msgid "Cerber antispam engine"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: ../settings.php:
|
1214 |
msgid "Comment form"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: ../settings.php:
|
1218 |
msgid "Protect comment form with bot detection engine"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: ../settings.php:
|
1222 |
msgid "Registration form"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: ../settings.php:
|
1226 |
msgid "Protect registration form with bot detection engine"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: ../settings.php:
|
1230 |
msgid "Other forms"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: ../settings.php:
|
1234 |
msgid "Protect all forms on the website with bot detection engine"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: ../settings.php:
|
1238 |
msgid "Adjust antispam engine"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: ../settings.php:
|
1242 |
msgid "Safe mode"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: ../settings.php:
|
1246 |
msgid "Use less restrictive policies (allow AJAX)"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: ../settings.php:
|
1250 |
msgid "Logged in users"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: ../settings.php:
|
1254 |
msgid "Disable bot detection engine for logged in users"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: ../settings.php:
|
1258 |
msgid "Query whitelist"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: ../settings.php:
|
1262 |
msgid ""
|
1263 |
"Enter a part of query string or query path to exclude a request from "
|
1264 |
"inspection by the engine. One item per line."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: ../settings.php:
|
1268 |
msgid "Comment processing"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: ../settings.php:
|
1272 |
msgid "If a spam comment detected"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: ../settings.php:
|
1276 |
msgid "Deny it completely"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: ../settings.php:
|
1280 |
msgid "Mark it as spam"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: ../settings.php:
|
1284 |
msgid "Trash spam comments"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: ../settings.php:
|
1288 |
msgid "Move spam comments to trash after"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: ../settings.php:
|
1292 |
msgid "reCAPTCHA settings"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: ../settings.php:
|
1296 |
msgid "Site key"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: ../settings.php:
|
1300 |
msgid "Secret key"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: ../settings.php:
|
1304 |
msgid "Invisible reCAPTCHA"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: ../settings.php:
|
1308 |
msgid "Enable invisible reCAPTCHA"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: ../settings.php:
|
1312 |
msgid ""
|
1313 |
"(do not enable it unless you get and enter the Site and Secret keys for the "
|
1314 |
"invisible version)"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: ../settings.php:
|
1318 |
msgid "Enable reCAPTCHA for WordPress registration form"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: ../settings.php:
|
1322 |
msgid "Enable reCAPTCHA for WooCommerce registration form"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: ../settings.php:
|
1326 |
msgid "Lost password form"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: ../settings.php:
|
1330 |
msgid "Enable reCAPTCHA for WordPress lost password form"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: ../settings.php:
|
1334 |
msgid "Enable reCAPTCHA for WooCommerce lost password form"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: ../settings.php:
|
1338 |
msgid "Login form"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: ../settings.php:
|
1342 |
msgid "Enable reCAPTCHA for WordPress login form"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: ../settings.php:
|
1346 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: ../settings.php:
|
1350 |
msgid "Enable reCAPTCHA for WordPress comment form"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: ../settings.php:
|
1354 |
msgid "Disable reCAPTCHA for logged in users"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: ../settings.php:
|
1358 |
msgid "Limit attempts"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: ../settings.php:
|
1362 |
#, php-format
|
1363 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: ../settings.php:
|
1367 |
msgid "Email notifications"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: ../settings.php:
|
1371 |
msgid "Email Address"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: ../settings.php:
|
1375 |
msgid "Use comma to specify multiple values"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: ../settings.php:
|
1379 |
#, php-format
|
1380 |
msgid "if empty, the admin email %s will be used"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: ../settings.php:
|
1384 |
msgid "Notification limit"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: ../settings.php:
|
1388 |
msgid "notification letters allowed per hour (0 means unlimited)"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: ../settings.php:
|
1392 |
msgid "All connected devices"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: ../settings.php:
|
1396 |
msgid "No devices found"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: ../settings.php:
|
1400 |
msgid "Not available"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: ../settings.php:
|
1404 |
msgid "Weekly reports"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: ../settings.php:
|
1408 |
msgid "if empty, email from notification settings will be used"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: ../settings.php:
|
1412 |
msgid "Enable reporting"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: ../settings.php:
|
1416 |
msgid "Make your protection smarter!"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: ../settings.php:
|
1420 |
msgid ""
|
1421 |
"Please enable Permalinks to use this feature. Set Permalink Settings to "
|
1422 |
"something other than Default."
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: ../settings.php:
|
1426 |
msgid ""
|
1427 |
"Be careful when enabling this options. If you forget the custom login URL "
|
1428 |
"you will not be able to login."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: ../settings.php:
|
1432 |
msgid ""
|
1433 |
"In the Citadel mode nobody is able to log in except IPs from the White IP "
|
1434 |
"Access List. Active user sessions will not be affected."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: ../settings.php:
|
1438 |
msgid "These settings do not affect hosts from the "
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: ../settings.php:
|
1442 |
msgid ""
|
1443 |
"Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
|
1444 |
"key on the Google website"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: ../settings.php:
|
1448 |
msgid "Users"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: ../settings.php:
|
1452 |
msgid "Help"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: ../settings.php:
|
1456 |
#, php-format
|
1457 |
msgid "%s allowed retries in %s minutes"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: ../settings.php:
|
1461 |
#, php-format
|
1462 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: ../settings.php:
|
1466 |
#, php-format
|
1467 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: ../settings.php:
|
1471 |
msgid "Notify admin if the number of active lockouts above"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: ../settings.php:
|
1475 |
#, php-format
|
1476 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: ../settings.php:
|
1480 |
msgid "Sunday"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: ../settings.php:
|
1484 |
msgid "Monday"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: ../settings.php:
|
1488 |
msgid "Tuesday"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: ../settings.php:
|
1492 |
msgid "Wednesday"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: ../settings.php:
|
1496 |
msgid "Thursday"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: ../settings.php:
|
1500 |
msgid "Friday"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: ../settings.php:
|
1504 |
msgid "Saturday"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
#. translators: preposition of time
|
1508 |
-
#: ../settings.php:
|
1509 |
msgctxt "preposition of time"
|
1510 |
msgid "at"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: ../settings.php:
|
1514 |
msgid "Click to send now"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: ../settings.php:
|
1518 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: ../settings.php:
|
1522 |
msgid ""
|
1523 |
"If you use a caching plugin, you have to add your new login URL to the list "
|
1524 |
"of pages not to cache."
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: ../settings.php:
|
1528 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
1529 |
msgstr ""
|
1530 |
|
@@ -1589,22 +1597,22 @@ msgstr ""
|
|
1589 |
msgid "Upload file"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: ../cerber-tools.php:
|
1593 |
msgid "No file was uploaded or file is corrupted"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: ../cerber-tools.php:
|
1597 |
msgid "Error while updating"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: ../cerber-tools.php:
|
1601 |
msgid "Settings has imported successfully from"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: ../cerber-tools.php:
|
1605 |
msgid "Error while parsing file"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: ../cerber-tools.php:
|
1609 |
msgid "Antispam and bot detection settings"
|
1610 |
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: Fri Jan 05 2018 22:31:35 GMT+0300\n"
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
24 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
25 |
"X-Generator: Loco - https://localise.biz/"
|
26 |
|
27 |
+
#: ../dashboard.php:86 ../dashboard.php:158
|
28 |
msgid "Remove"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: ../dashboard.php:93 ../dashboard.php:631 ../wp-cerber.php:3529
|
32 |
msgid "IP"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ../dashboard.php:94 ../dashboard.php:632
|
36 |
msgid "Hostname"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: ../dashboard.php:95 ../dashboard.php:633
|
40 |
msgid "Country"
|
41 |
msgstr ""
|
42 |
|
44 |
msgid "Expires"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: ../dashboard.php:97 ../wp-cerber.php:3046
|
48 |
msgid "Reason"
|
49 |
msgstr ""
|
50 |
|
69 |
msgid "No lockouts at the moment. The sky is clear."
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: ../dashboard.php:131 ../dashboard.php:607 ../dashboard.php:811 ../dashboard.
|
73 |
+
#: php:1107 ../wp-cerber.php:3748 ../settings.php:73 ../settings.php:218
|
74 |
msgid "White IP Access List"
|
75 |
msgstr ""
|
76 |
|
78 |
msgid "These IPs will never be locked out"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: ../dashboard.php:133 ../dashboard.php:608 ../dashboard.php:813 ../dashboard.
|
82 |
+
#: php:1108
|
83 |
msgid "Black IP Access List"
|
84 |
msgstr ""
|
85 |
|
91 |
msgid "Your IP"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: ../dashboard.php:158 ../dashboard.php:843
|
95 |
msgid "Check for activity"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: ../dashboard.php:163
|
99 |
msgid "List is empty"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ../dashboard.php:167
|
103 |
+
msgid "IP address, IPv4 address range or subnet"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: ../dashboard.php:168
|
107 |
msgid "Add IP to the list"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: ../dashboard.php:169
|
111 |
+
msgid "Optional comment for this entry"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: ../dashboard.php:194 ../dashboard.php:206
|
115 |
msgid "Incorrect IP address or IP range"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: ../dashboard.php:200
|
119 |
#, php-format
|
120 |
msgid "Address %s was added to White IP Access List"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: ../dashboard.php:210
|
124 |
+
msgid "You cannot add your IP address or network"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: ../dashboard.php:214
|
128 |
#, php-format
|
129 |
msgid "Address %s was added to Black IP Access List"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: ../dashboard.php:311 ../whois.php:221 ../whois.php:252 ../common.php:594
|
133 |
msgid "Unknown"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: ../dashboard.php:353
|
137 |
msgid "unknown"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: ../dashboard.php:377
|
141 |
msgid "Email has been sent to"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: ../dashboard.php:380
|
145 |
msgid "Unable to send email to"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: ../dashboard.php:387
|
149 |
#, php-format
|
150 |
msgid "Lockout for %s was removed"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ../dashboard.php:404 ../dashboard.php:1469
|
154 |
msgid "Settings saved"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: ../dashboard.php:476
|
158 |
msgid "IP address"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ../dashboard.php:476 ../dashboard.php:634
|
162 |
msgid "Date"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: ../dashboard.php:476 ../dashboard.php:635
|
166 |
msgid "Event"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: ../dashboard.php:476 ../dashboard.php:636
|
170 |
msgid "Local User"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: ../dashboard.php:476
|
174 |
msgid "User login"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: ../dashboard.php:476
|
178 |
msgid "User ID"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../dashboard.php:476 ../dashboard.php:637 ../wp-cerber.php:3537
|
182 |
msgid "Username used"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: ../dashboard.php:612 ../dashboard.php:816 ../common.php:565
|
186 |
msgid "Locked out"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: ../dashboard.php:654
|
190 |
msgid "Export"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: ../dashboard.php:658
|
194 |
msgid "No activity has been logged."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ../dashboard.php:664
|
198 |
msgid "All events"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: ../dashboard.php:673
|
202 |
msgid "Search for IP or username"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: ../dashboard.php:673
|
206 |
msgid "Filter"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: ../dashboard.php:839
|
210 |
msgid "Abuse email:"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: ../dashboard.php:843
|
214 |
msgid "Network:"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: ../dashboard.php:857
|
218 |
msgid "Add network to the Black List"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: ../dashboard.php:861
|
222 |
msgid "Add IP to the Black List"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: ../dashboard.php:892 ../settings.php:241
|
226 |
msgid "WP Cerber Security"
|
227 |
msgstr ""
|
228 |
|
229 |
#. Name of the plugin
|
230 |
+
#: ../dashboard.php:892 ../dashboard.php:911
|
231 |
msgid "WP Cerber"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../dashboard.php:894
|
235 |
msgid "Cerber Dashboard"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ../dashboard.php:894 ../dashboard.php:1115 ../dashboard.php:1642 ../settings.
|
239 |
+
#: php:246
|
240 |
msgid "Dashboard"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ../dashboard.php:897
|
244 |
msgid "Cerber Security Rules"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: ../dashboard.php:897 ../dashboard.php:1990
|
248 |
msgid "Security Rules"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: ../dashboard.php:900
|
252 |
msgid "Cerber antispam settings"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: ../dashboard.php:900 ../wp-cerber.php:3757 ../settings.php:163
|
256 |
msgid "Antispam"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../dashboard.php:901
|
260 |
msgid "Cerber tools"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../dashboard.php:901 ../cerber-tools.php:43
|
264 |
msgid "Tools"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../dashboard.php:972
|
268 |
msgid "Comments"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../dashboard.php:973
|
272 |
msgid "Last login"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: ../dashboard.php:974
|
276 |
msgid "Failed login attempts"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: ../dashboard.php:975
|
280 |
msgid "Registered"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: ../dashboard.php:1006 ../dashboard.php:1090
|
284 |
msgid "Never"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: ../dashboard.php:1042
|
288 |
msgid "You"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ../dashboard.php:1060
|
292 |
msgid "Cerber Quick View"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: ../dashboard.php:1094
|
296 |
msgid "active"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: ../dashboard.php:1094
|
300 |
msgid "deactivate"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ../dashboard.php:1096
|
304 |
msgid "not active"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../dashboard.php:1097
|
308 |
msgid "disabled"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../dashboard.php:1102
|
312 |
msgid "failed attempts"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../dashboard.php:1102 ../dashboard.php:1103
|
316 |
msgid "in 24 hours"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ../dashboard.php:1102 ../dashboard.php:1103
|
320 |
msgid "view all"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ../dashboard.php:1103
|
324 |
msgid "lockouts"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ../dashboard.php:1105
|
328 |
msgid "Lockouts at the moment"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: ../dashboard.php:1106
|
332 |
msgid "Last lockout"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: ../dashboard.php:1107 ../dashboard.php:1108 ../dashboard.php:1622
|
336 |
msgid "entry"
|
337 |
msgid_plural "entries"
|
338 |
msgstr[0] ""
|
339 |
msgstr[1] ""
|
340 |
|
341 |
+
#: ../dashboard.php:1109 ../settings.php:88
|
342 |
msgid "Citadel mode"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: ../dashboard.php:1111 ../settings.php:177
|
346 |
msgid "Push notifications"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: ../dashboard.php:1116 ../dashboard.php:1312 ../wp-cerber.php:3520 ../settings.
|
350 |
+
#: php:93 ../settings.php:248
|
351 |
msgid "Activity"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: ../dashboard.php:1117 ../settings.php:252
|
355 |
msgid "Lockouts"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: ../dashboard.php:1118 ../wp-cerber.php:3756 ../settings.php:257 ../cerber-
|
359 |
+
#: tools.php:88 ../cerber-tools.php:97 ../cerber-tools.php:178
|
360 |
msgid "Access Lists"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../dashboard.php:1164 ../settings.php:75
|
364 |
msgid "My site is behind a reverse proxy"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ../dashboard.php:1292
|
368 |
msgid "in the last 24 hours"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ../dashboard.php:1298 ../dashboard.php:1327
|
372 |
msgid "View all"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ../dashboard.php:1306 ../common.php:520
|
376 |
msgid "User registered"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: ../dashboard.php:1307
|
380 |
msgid "All suspicious activity"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: ../dashboard.php:1328
|
384 |
msgid "Recently locked out IP addresses"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: ../dashboard.php:1351
|
388 |
msgid "Confused about some settings?"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: ../dashboard.php:1352
|
392 |
msgid "You can easily load default recommended settings using button below"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: ../dashboard.php:1354
|
396 |
msgid "Load default settings"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: ../dashboard.php:1356
|
400 |
msgid "Are you sure?"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: ../dashboard.php:1362
|
404 |
msgid "doesn't affect Custom login URL and Access Lists"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: ../dashboard.php:1363 ../wp-cerber.php:3078 ../wp-cerber.php:3750
|
408 |
msgid "Getting Started Guide"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: ../dashboard.php:1452
|
412 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../dashboard.php:1453
|
416 |
msgid "Deactivate"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: ../dashboard.php:1454
|
420 |
msgid "View Activity"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: ../dashboard.php:1555
|
424 |
msgid "Subscribe"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: ../dashboard.php:1556 ../cerber-tools.php:243
|
428 |
msgid "Unsubscribe"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: ../dashboard.php:1584
|
432 |
msgid "You've subscribed"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: ../dashboard.php:1587
|
436 |
msgid "You've unsubscribed"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: ../dashboard.php:1643
|
440 |
msgid "Main settings"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: ../dashboard.php:1995
|
444 |
msgid "Countries"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: ../dashboard.php:2060
|
448 |
#, php-format
|
449 |
msgid "Permitted for one country"
|
450 |
msgid_plural "Permitted for %d countries"
|
451 |
msgstr[0] ""
|
452 |
msgstr[1] ""
|
453 |
|
454 |
+
#: ../dashboard.php:2063
|
455 |
#, php-format
|
456 |
msgid "Not permitted for one country"
|
457 |
msgid_plural "Not permitted for %d countries"
|
458 |
msgstr[0] ""
|
459 |
msgstr[1] ""
|
460 |
|
461 |
+
#: ../dashboard.php:2071
|
462 |
msgid "No rule"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: ../dashboard.php:2127
|
466 |
msgid "Start typing here to find a country"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: ../dashboard.php:2210
|
470 |
msgid "Click on a country name to add it to the list of selected countries"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: ../dashboard.php:2214
|
474 |
#, php-format
|
475 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
476 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: ../dashboard.php:2217
|
480 |
#, php-format
|
481 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
482 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../dashboard.php:2229
|
486 |
msgid "Submit forms"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: ../dashboard.php:2230
|
490 |
msgid "Post comments"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: ../dashboard.php:2231
|
494 |
msgid "Log in to the website"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: ../dashboard.php:2232
|
498 |
msgid "Register on the website"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: ../dashboard.php:2233
|
502 |
msgid "Use XML-RPC"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: ../dashboard.php:2234
|
506 |
msgid "Use REST API"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: ../dashboard.php:2274
|
510 |
msgid "Security rules have been updated"
|
511 |
msgstr ""
|
512 |
|
530 |
msgid "Gregory"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../wp-cerber.php:236
|
534 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ../wp-cerber.php:242
|
538 |
#, php-format
|
539 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: ../wp-cerber.php:261
|
543 |
#, php-format
|
544 |
msgid "You have only one attempt remaining."
|
545 |
msgid_plural "You have %d attempts remaining."
|
546 |
msgstr[0] ""
|
547 |
msgstr[1] ""
|
548 |
|
549 |
+
#: ../wp-cerber.php:544 ../wp-cerber.php:556 ../wp-cerber.php:563 ../wp-cerber.
|
550 |
+
#: php:742 ../wp-cerber.php:958 ../wp-cerber.php:964 ../wp-cerber.php:969 ../wp-
|
551 |
+
#: cerber.php:974 ../wp-cerber.php:980 ../wp-cerber.php:987 ../wp-cerber.php:1087
|
552 |
+
#: ../wp-cerber.php:1224 ../common.php:173 ../common.php:227 ../common.php:231 ..
|
553 |
+
#: /settings.php:711
|
554 |
msgid "ERROR:"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: ../wp-cerber.php:573
|
558 |
msgid ""
|
559 |
"Human verification failed. Please click the square box in the reCAPTCHA "
|
560 |
"block below."
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: ../wp-cerber.php:624
|
564 |
msgid ""
|
565 |
"> > > Translator of WP Cerber? To get the PRO license for free, drop your "
|
566 |
"contacts here: https://wpcerber.com/contact/"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: ../wp-cerber.php:754
|
570 |
#, php-format
|
571 |
msgid ""
|
572 |
"<strong>ERROR</strong>: The password you entered for the username %s is "
|
573 |
"incorrect."
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../wp-cerber.php:959 ../wp-cerber.php:965 ../wp-cerber.php:981 ../wp-cerber.
|
577 |
+
#: php:988
|
578 |
msgid "You are not allowed to register."
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: ../wp-cerber.php:975
|
582 |
msgid "Username is not allowed. Please choose another one."
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: ../wp-cerber.php:1224
|
586 |
msgid "Sorry, human verification failed."
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: ../wp-cerber.php:2988
|
590 |
msgid "WP Cerber notify"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: ../wp-cerber.php:3010
|
594 |
msgid "Citadel mode is activated"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: ../wp-cerber.php:3012
|
598 |
#, php-format
|
599 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: ../wp-cerber.php:3013
|
603 |
#, php-format
|
604 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: ../wp-cerber.php:3014 ../wp-cerber.php:3561
|
608 |
msgid "View activity in dashboard"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: ../wp-cerber.php:3039
|
612 |
msgid "unspecified"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: ../wp-cerber.php:3042
|
616 |
msgid "Number of lockouts is increasing"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: ../wp-cerber.php:3044
|
620 |
msgid "Number of active lockouts"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: ../wp-cerber.php:3045
|
624 |
#, php-format
|
625 |
msgid "Last lockout was added: %s for IP %s"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: ../wp-cerber.php:3047
|
629 |
msgid "View activity for this IP"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: ../wp-cerber.php:3048
|
633 |
msgid "View lockouts in dashboard"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: ../wp-cerber.php:3051 ../wp-cerber.php:3053
|
637 |
msgid "A new version of WP Cerber is available to install"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: ../wp-cerber.php:3052
|
641 |
msgid "Hi!"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: ../wp-cerber.php:3055 ../wp-cerber.php:3066
|
645 |
msgid "Website"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: ../wp-cerber.php:3058 ../wp-cerber.php:3059
|
649 |
msgid "The WP Cerber security plugin has been deactivated"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../wp-cerber.php:3061
|
653 |
msgid "Not logged in"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: ../wp-cerber.php:3067
|
657 |
msgid "By user"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: ../wp-cerber.php:3068
|
661 |
msgid "From IP address"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: ../wp-cerber.php:3071
|
665 |
msgid "From country"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: ../wp-cerber.php:3075
|
669 |
msgid "The WP Cerber security plugin is now active"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: ../wp-cerber.php:3076 ../wp-cerber.php:3747
|
673 |
msgid "WP Cerber is now active and has started protecting your site"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: ../wp-cerber.php:3084
|
677 |
msgid "New Custom login URL"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: ../wp-cerber.php:3088 ../wp-cerber.php:3089
|
681 |
msgid "A new activity has been recorded"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: ../wp-cerber.php:3094
|
685 |
msgid "Weekly report"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: ../wp-cerber.php:3097
|
689 |
msgid "To change reporting settings visit"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: ../wp-cerber.php:3123
|
693 |
msgid "Your login page:"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: ../wp-cerber.php:3127
|
697 |
msgid "Your license is valid until"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: ../wp-cerber.php:3130
|
701 |
msgid "This message was sent by"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: ../wp-cerber.php:3150
|
705 |
#, php-format
|
706 |
msgid "Your last sign-in was %s from %s"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: ../wp-cerber.php:3226
|
710 |
msgid "Weekly Report"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: ../wp-cerber.php:3238
|
714 |
msgid "Activity details"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: ../wp-cerber.php:3252
|
718 |
msgid "Attempts to log in with non-existent username"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: ../wp-cerber.php:3533
|
722 |
msgid "User"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: ../wp-cerber.php:3541
|
726 |
msgid "Search string"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: ../wp-cerber.php:3562
|
730 |
msgid "To unsubscribe click here"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: ../wp-cerber.php:3718
|
734 |
#, php-format
|
735 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: ../wp-cerber.php:3722
|
739 |
#, php-format
|
740 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: ../wp-cerber.php:3731
|
744 |
msgid "Can't activate WP Cerber due to a database error."
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: ../wp-cerber.php:3748
|
748 |
msgid "Your IP address is added to the"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: ../wp-cerber.php:3755 ../settings.php:254
|
752 |
msgid "Main Settings"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: ../wp-cerber.php:3758 ../settings.php:259
|
756 |
msgid "Hardening"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: ../wp-cerber.php:3759 ../settings.php:74 ../settings.php:91 ../settings.php:264
|
760 |
msgid "Notifications"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: ../wp-cerber.php:3760
|
764 |
msgid "Import settings"
|
765 |
msgstr ""
|
766 |
|
784 |
msgid "Lockouts occurred"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: ../common.php:519
|
788 |
msgid "User created"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: ../common.php:521
|
792 |
msgid "Logged in"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: ../common.php:522
|
796 |
msgid "Logged out"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: ../common.php:523
|
800 |
msgid "Login failed"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: ../common.php:526
|
804 |
msgid "IP blocked"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: ../common.php:527
|
808 |
msgid "Subnet blocked"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: ../common.php:529
|
812 |
msgid "Citadel activated!"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: ../common.php:530
|
816 |
msgid "Spam comment denied"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: ../common.php:531
|
820 |
msgid "Spam form submission denied"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: ../common.php:532
|
824 |
msgid "Form submission denied"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: ../common.php:533
|
828 |
msgid "Comment denied"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: ../common.php:544
|
832 |
msgid "Password changed"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: ../common.php:545
|
836 |
msgid "Password reset requested"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: ../common.php:547
|
840 |
msgid "reCAPTCHA verification failed"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: ../common.php:548
|
844 |
msgid "reCAPTCHA settings are incorrect"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: ../common.php:549
|
848 |
msgid "Request to the Google reCAPTCHA service failed"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: ../common.php:551
|
852 |
msgid "Attempt to access prohibited URL"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: ../common.php:552 ../common.php:597
|
856 |
msgid "Attempt to log in with non-existent username"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: ../common.php:553 ../common.php:598
|
860 |
msgid "Attempt to log in with prohibited username"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: ../common.php:555
|
864 |
msgid "Attempt to log in denied"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: ../common.php:556
|
868 |
msgid "Attempt to register denied"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: ../common.php:558
|
872 |
msgid "Request to REST API denied"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: ../common.php:559
|
876 |
msgid "XML-RPC request denied"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: ../common.php:563
|
880 |
msgid "Bot detected"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: ../common.php:564
|
884 |
msgid "Citadel mode is active"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: ../common.php:566
|
888 |
msgid "IP blacklisted"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: ../common.php:569
|
892 |
msgid "Malicious activity detected"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: ../common.php:570
|
896 |
msgid "Blocked by country rule"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: ../common.php:571
|
900 |
msgid "Limit reached"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: ../common.php:572
|
904 |
msgid "Multiple suspicious activities"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: ../common.php:595
|
908 |
msgid "Limit on login attempts is reached"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: ../common.php:596
|
912 |
msgid "Attempt to access"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: ../common.php:599
|
916 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: ../common.php:600
|
920 |
msgid "Bot activity is detected"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: ../common.php:601
|
924 |
msgid "Multiple suspicious activities were detected"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: ../common.php:644
|
928 |
#, php-format
|
929 |
msgid "%s ago"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: ../common.php:778
|
933 |
msgid "New version is available"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: ../common.php:785
|
937 |
#, php-format
|
938 |
msgid "Update to version %s of WP Cerber"
|
939 |
msgstr ""
|
962 |
msgid "NO, maybe later"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: ../cerber-lab.php:666 ../settings.php:222
|
966 |
msgid "Know more"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: ../settings.php:69
|
970 |
msgid "Limit login attempts"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: ../settings.php:70
|
974 |
msgid "Attempts"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: ../settings.php:71
|
978 |
msgid "Lockout duration"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: ../settings.php:71 ../settings.php:90
|
982 |
msgid "minutes"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: ../settings.php:72
|
986 |
msgid "Aggressive lockout"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: ../settings.php:73
|
990 |
msgid "Apply limit login rules to IP addresses in the White IP Access List"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: ../settings.php:75
|
994 |
msgid "Site connection"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: ../settings.php:77
|
998 |
msgid "Proactive security rules"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: ../settings.php:78
|
1002 |
msgid "Block subnet"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: ../settings.php:78
|
1006 |
msgid "Always block entire subnet Class C of intruders IP"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: ../settings.php:79
|
1010 |
msgid "Non-existent users"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: ../settings.php:79
|
1014 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: ../settings.php:80
|
1018 |
msgid "Redirect dashboard requests"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: ../settings.php:80
|
1022 |
msgid ""
|
1023 |
"Disable automatic redirecting to the login page when /wp-admin/ is requested "
|
1024 |
"by an unauthorized request"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: ../settings.php:81
|
1028 |
msgid "Request wp-login.php"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: ../settings.php:81
|
1032 |
msgid "Immediately block IP after any request to wp-login.php"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: ../settings.php:82
|
1036 |
msgid "Display 404 page"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: ../settings.php:82
|
1040 |
msgid "Use 404 template from the active theme"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: ../settings.php:82
|
1044 |
msgid "Display simple 404 page"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: ../settings.php:84
|
1048 |
msgid "Custom login page"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: ../settings.php:85
|
1052 |
msgid "Custom login URL"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: ../settings.php:85
|
1056 |
msgid "must not overlap with the existing pages or posts slug"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: ../settings.php:86
|
1060 |
msgid "Disable wp-login.php"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: ../settings.php:86
|
1064 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: ../settings.php:89
|
1068 |
msgid "Threshold"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: ../settings.php:90
|
1072 |
msgid "Duration"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: ../settings.php:91
|
1076 |
msgid "Send notification to admin email"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: ../settings.php:91 ../settings.php:398 ../settings.php:521
|
1080 |
msgid "Click to send test"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: ../settings.php:94
|
1084 |
msgid "Keep records for"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: ../settings.php:94 ../settings.php:146
|
1088 |
msgid "days"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: ../settings.php:95
|
1092 |
msgid "Cerber Lab connection"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: ../settings.php:95
|
1096 |
msgid "Send malicious IP addresses to the Cerber Lab"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: ../settings.php:96
|
1100 |
msgid "Cerber Lab protocol"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: ../settings.php:97
|
1104 |
msgid "Use file"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: ../settings.php:97
|
1108 |
msgid "Write failed login attempts to the file"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: ../settings.php:99
|
1112 |
msgid "Preferences"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: ../settings.php:100
|
1116 |
msgid "Drill down IP"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: ../settings.php:100
|
1120 |
msgid "Retrieve extra WHOIS information for IP"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: ../settings.php:101
|
1124 |
msgid "Date format"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: ../settings.php:101
|
1128 |
#, php-format
|
1129 |
msgid "if empty, the default format %s will be used"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: ../settings.php:108
|
1133 |
msgid "Hardening WordPress"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: ../settings.php:109
|
1137 |
msgid "Stop user enumeration"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: ../settings.php:109
|
1141 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: ../settings.php:110
|
1145 |
msgid "Disable XML-RPC"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: ../settings.php:110
|
1149 |
msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: ../settings.php:111
|
1153 |
msgid "Disable feeds"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: ../settings.php:111
|
1157 |
msgid "Block access to the RSS, Atom and RDF feeds"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: ../settings.php:112
|
1161 |
msgid "Disable REST API"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: ../settings.php:112
|
1165 |
msgid "Block access to the WordPress REST API except the following"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: ../settings.php:113
|
1169 |
msgid "Allow REST API for logged in users"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: ../settings.php:114
|
1173 |
msgid ""
|
1174 |
"Specify REST API namespaces to be allowed if REST API is disabled. One "
|
1175 |
"string per line."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: ../settings.php:123
|
1179 |
msgid "User related settings"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../settings.php:124
|
1183 |
msgid "Registration limit"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: ../settings.php:125
|
1187 |
msgid "Prohibited usernames"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: ../settings.php:125
|
1191 |
msgid ""
|
1192 |
"Usernames from this list are not allowed to log in or register. Any IP "
|
1193 |
"address, have tried to use any of these usernames, will be immediately "
|
1194 |
"blocked. Use comma to separate logins."
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: ../settings.php:125
|
1198 |
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: ../settings.php:126
|
1202 |
msgid "User session expire"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: ../settings.php:126
|
1206 |
msgid "in minutes (leave empty to use default WP value)"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: ../settings.php:127
|
1210 |
msgid "Sort users in dashboard"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: ../settings.php:127
|
1214 |
msgid "by date of registration"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: ../settings.php:134
|
1218 |
msgid "Cerber antispam engine"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: ../settings.php:135
|
1222 |
msgid "Comment form"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: ../settings.php:135
|
1226 |
msgid "Protect comment form with bot detection engine"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: ../settings.php:136 ../settings.php:154
|
1230 |
msgid "Registration form"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: ../settings.php:136
|
1234 |
msgid "Protect registration form with bot detection engine"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: ../settings.php:137
|
1238 |
msgid "Other forms"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: ../settings.php:137
|
1242 |
msgid "Protect all forms on the website with bot detection engine"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: ../settings.php:139
|
1246 |
msgid "Adjust antispam engine"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: ../settings.php:140
|
1250 |
msgid "Safe mode"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: ../settings.php:140
|
1254 |
msgid "Use less restrictive policies (allow AJAX)"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: ../settings.php:141
|
1258 |
msgid "Logged in users"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: ../settings.php:141
|
1262 |
msgid "Disable bot detection engine for logged in users"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: ../settings.php:142
|
1266 |
msgid "Query whitelist"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: ../settings.php:142
|
1270 |
msgid ""
|
1271 |
"Enter a part of query string or query path to exclude a request from "
|
1272 |
"inspection by the engine. One item per line."
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: ../settings.php:144
|
1276 |
msgid "Comment processing"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: ../settings.php:145
|
1280 |
msgid "If a spam comment detected"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: ../settings.php:145
|
1284 |
msgid "Deny it completely"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: ../settings.php:145
|
1288 |
msgid "Mark it as spam"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: ../settings.php:146
|
1292 |
msgid "Trash spam comments"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: ../settings.php:146
|
1296 |
msgid "Move spam comments to trash after"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: ../settings.php:149
|
1300 |
msgid "reCAPTCHA settings"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: ../settings.php:150
|
1304 |
msgid "Site key"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: ../settings.php:151
|
1308 |
msgid "Secret key"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: ../settings.php:152
|
1312 |
msgid "Invisible reCAPTCHA"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: ../settings.php:152
|
1316 |
msgid "Enable invisible reCAPTCHA"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: ../settings.php:152
|
1320 |
msgid ""
|
1321 |
"(do not enable it unless you get and enter the Site and Secret keys for the "
|
1322 |
"invisible version)"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: ../settings.php:154
|
1326 |
msgid "Enable reCAPTCHA for WordPress registration form"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: ../settings.php:155
|
1330 |
msgid "Enable reCAPTCHA for WooCommerce registration form"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: ../settings.php:157
|
1334 |
msgid "Lost password form"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: ../settings.php:157
|
1338 |
msgid "Enable reCAPTCHA for WordPress lost password form"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: ../settings.php:158
|
1342 |
msgid "Enable reCAPTCHA for WooCommerce lost password form"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: ../settings.php:160
|
1346 |
msgid "Login form"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: ../settings.php:160
|
1350 |
msgid "Enable reCAPTCHA for WordPress login form"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: ../settings.php:161
|
1354 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: ../settings.php:163
|
1358 |
msgid "Enable reCAPTCHA for WordPress comment form"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: ../settings.php:164
|
1362 |
msgid "Disable reCAPTCHA for logged in users"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: ../settings.php:166
|
1366 |
msgid "Limit attempts"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: ../settings.php:166
|
1370 |
#, php-format
|
1371 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: ../settings.php:172
|
1375 |
msgid "Email notifications"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: ../settings.php:174 ../settings.php:194
|
1379 |
msgid "Email Address"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: ../settings.php:174 ../settings.php:194
|
1383 |
msgid "Use comma to specify multiple values"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: ../settings.php:174
|
1387 |
#, php-format
|
1388 |
msgid "if empty, the admin email %s will be used"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: ../settings.php:175
|
1392 |
msgid "Notification limit"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: ../settings.php:175
|
1396 |
msgid "notification letters allowed per hour (0 means unlimited)"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: ../settings.php:184
|
1400 |
msgid "All connected devices"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: ../settings.php:185
|
1404 |
msgid "No devices found"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: ../settings.php:187
|
1408 |
msgid "Not available"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: ../settings.php:192
|
1412 |
msgid "Weekly reports"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: ../settings.php:194
|
1416 |
msgid "if empty, email from notification settings will be used"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: ../settings.php:195
|
1420 |
msgid "Enable reporting"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: ../settings.php:204
|
1424 |
msgid "Make your protection smarter!"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: ../settings.php:208
|
1428 |
msgid ""
|
1429 |
"Please enable Permalinks to use this feature. Set Permalink Settings to "
|
1430 |
"something other than Default."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: ../settings.php:211
|
1434 |
msgid ""
|
1435 |
"Be careful when enabling this options. If you forget the custom login URL "
|
1436 |
"you will not be able to login."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: ../settings.php:215
|
1440 |
msgid ""
|
1441 |
"In the Citadel mode nobody is able to log in except IPs from the White IP "
|
1442 |
"Access List. Active user sessions will not be affected."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: ../settings.php:218
|
1446 |
msgid "These settings do not affect hosts from the "
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: ../settings.php:221
|
1450 |
msgid ""
|
1451 |
"Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
|
1452 |
"key on the Google website"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: ../settings.php:261
|
1456 |
msgid "Users"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: ../settings.php:266
|
1460 |
msgid "Help"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: ../settings.php:379 ../settings.php:502
|
1464 |
#, php-format
|
1465 |
msgid "%s allowed retries in %s minutes"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: ../settings.php:384 ../settings.php:507
|
1469 |
#, php-format
|
1470 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: ../settings.php:389 ../settings.php:512
|
1474 |
#, php-format
|
1475 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: ../settings.php:396 ../settings.php:519
|
1479 |
msgid "Notify admin if the number of active lockouts above"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: ../settings.php:401 ../settings.php:524
|
1483 |
#, php-format
|
1484 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: ../settings.php:604
|
1488 |
msgid "Sunday"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: ../settings.php:605
|
1492 |
msgid "Monday"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: ../settings.php:606
|
1496 |
msgid "Tuesday"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: ../settings.php:607
|
1500 |
msgid "Wednesday"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: ../settings.php:608
|
1504 |
msgid "Thursday"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: ../settings.php:609
|
1508 |
msgid "Friday"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: ../settings.php:610
|
1512 |
msgid "Saturday"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
#. translators: preposition of time
|
1516 |
+
#: ../settings.php:620
|
1517 |
msgctxt "preposition of time"
|
1518 |
msgid "at"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: ../settings.php:636
|
1522 |
msgid "Click to send now"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: ../settings.php:661 ../settings.php:662
|
1526 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: ../settings.php:663 ../settings.php:664
|
1530 |
msgid ""
|
1531 |
"If you use a caching plugin, you have to add your new login URL to the list "
|
1532 |
"of pages not to cache."
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: ../settings.php:742 ../settings.php:754
|
1536 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
1537 |
msgstr ""
|
1538 |
|
1597 |
msgid "Upload file"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: ../cerber-tools.php:145
|
1601 |
msgid "No file was uploaded or file is corrupted"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: ../cerber-tools.php:178
|
1605 |
msgid "Error while updating"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: ../cerber-tools.php:181
|
1609 |
msgid "Settings has imported successfully from"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: ../cerber-tools.php:185
|
1613 |
msgid "Error while parsing file"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: ../cerber-tools.php:313
|
1617 |
msgid "Antispam and bot detection settings"
|
1618 |
msgstr ""
|
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: 5.
|
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.
|
@@ -38,7 +38,7 @@ Hardening WordPress with a set of security settings.
|
|
38 |
* Disable automatic redirecting to the login page.
|
39 |
* **Stop user enumeration** (block access to pages like /?author=n and user REST API)
|
40 |
* Proactively **block IP subnet class C** for intruder's IP.
|
41 |
-
*
|
42 |
* [reCAPTCHA for WooCommerce & WordPress forms](https://wpcerber.com/how-to-setup-recaptcha/).
|
43 |
* Invisible reCAPTCHA for WordPress comments forms
|
44 |
* Citadel mode for **massive brute force attack**.
|
@@ -76,13 +76,13 @@ Anti-spam and anti-bot protection for contact, registration, comments and other
|
|
76 |
Cerber antispam and bot detection engine now protects all forms on a website. No reCAPTCHA is needed.
|
77 |
It’s compatible with virtually any form you have. Tested with Caldera Forms, Gravity Forms, Contact Form 7, Ninja Forms, Formidable Forms, Fast Secure Contact Form, Contact Form by WPForms.
|
78 |
|
79 |
-
=
|
80 |
|
81 |
* WooCommerce login form
|
82 |
* WooCommerce register form
|
83 |
* WooCommerce lost password form
|
84 |
|
85 |
-
=
|
86 |
|
87 |
* WordPress login form
|
88 |
* WordPress register form
|
@@ -180,6 +180,12 @@ Completely.
|
|
180 |
|
181 |
Yes. [How to set up reCAPTCHA for WooCommerce](https://wpcerber.com/how-to-setup-recaptcha/).
|
182 |
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
= Can I change login URL (rename wp-login.php)? =
|
184 |
|
185 |
Yes, easily. [How to rename wp-login.php](https://wpcerber.com/how-to-rename-wp-login-php/)
|
@@ -279,6 +285,13 @@ To get access to your dashboard you need to copy the WP Cerber Reset folder to t
|
|
279 |
|
280 |
== Changelog ==
|
281 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
= 5.8.6 =
|
283 |
* New: Regular expressions (REGEX) in the list of prohibited usernames.
|
284 |
* New: Enable/disable weekly reports, a new setting to specify email addresses for weekly reports.
|
5 |
Requires at least: 4.4
|
6 |
Requires PHP: 5.3
|
7 |
Tested up to: 4.9
|
8 |
+
Stable tag: 5.9
|
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.
|
38 |
* Disable automatic redirecting to the login page.
|
39 |
* **Stop user enumeration** (block access to pages like /?author=n and user REST API)
|
40 |
* Proactively **block IP subnet class C** for intruder's IP.
|
41 |
+
* Anti-spam: **reCAPTCHA** to protect WordPress login, register and comment forms.
|
42 |
* [reCAPTCHA for WooCommerce & WordPress forms](https://wpcerber.com/how-to-setup-recaptcha/).
|
43 |
* Invisible reCAPTCHA for WordPress comments forms
|
44 |
* Citadel mode for **massive brute force attack**.
|
76 |
Cerber antispam and bot detection engine now protects all forms on a website. No reCAPTCHA is needed.
|
77 |
It’s compatible with virtually any form you have. Tested with Caldera Forms, Gravity Forms, Contact Form 7, Ninja Forms, Formidable Forms, Fast Secure Contact Form, Contact Form by WPForms.
|
78 |
|
79 |
+
= Anti-spam protection: invisible reCAPTCHA for WooCommerce =
|
80 |
|
81 |
* WooCommerce login form
|
82 |
* WooCommerce register form
|
83 |
* WooCommerce lost password form
|
84 |
|
85 |
+
= Anti-spam protection: invisible reCAPTCHA for WordPress =
|
86 |
|
87 |
* WordPress login form
|
88 |
* WordPress register form
|
180 |
|
181 |
Yes. [How to set up reCAPTCHA for WooCommerce](https://wpcerber.com/how-to-setup-recaptcha/).
|
182 |
|
183 |
+
= Are there any incompatible plugins? =
|
184 |
+
|
185 |
+
The following plugins can cause some issues: Ultimate Member, WPBruiser {no- Captcha anti-Spam}, Plugin Organizer, WP-SpamShield.
|
186 |
+
The Cerber Security plugin won't be updated to fix any issue or conflict related to them, you should decide and stop using one or all of them.
|
187 |
+
Read more: [https://wpcerber.com/compatibility/](https://wpcerber.com/compatibility/).
|
188 |
+
|
189 |
= Can I change login URL (rename wp-login.php)? =
|
190 |
|
191 |
Yes, easily. [How to rename wp-login.php](https://wpcerber.com/how-to-rename-wp-login-php/)
|
285 |
|
286 |
== Changelog ==
|
287 |
|
288 |
+
= 5.9 =
|
289 |
+
* New: You can add comments for new entries in the access lists
|
290 |
+
* Improved compatibility with exotic hosting environments: now the plugin handles URLs with the MultiViews server option enabled.
|
291 |
+
* Improved compatibility with caching plugins
|
292 |
+
* Bug fixed: The plugin logs a logout event if the actual logout doesn't happen
|
293 |
+
* [Read more](https://wpcerber.com/wp-cerber-security-5-9/)
|
294 |
+
|
295 |
= 5.8.6 =
|
296 |
* New: Regular expressions (REGEX) in the list of prohibited usernames.
|
297 |
* New: Enable/disable weekly reports, a new setting to specify email addresses for weekly reports.
|
settings.php
CHANGED
@@ -57,7 +57,9 @@ function cerber_get_setting_list() {
|
|
57 |
add_action('admin_init', 'cerber_settings_init');
|
58 |
function cerber_settings_init(){
|
59 |
|
60 |
-
if (!cerber_is_admin_page() && !strpos($_SERVER['REQUEST_URI'],'/options.php'))
|
|
|
|
|
61 |
|
62 |
// Main Settings tab ---------------------------------------------------------------------
|
63 |
|
@@ -717,6 +719,10 @@ function cerber_sanitize_c($new, $old, $option) {
|
|
717 |
|
718 |
$new['botswhite'] = cerber_text2array($new['botswhite'], "\n");
|
719 |
|
|
|
|
|
|
|
|
|
720 |
return $new;
|
721 |
}
|
722 |
/*
|
@@ -868,7 +874,7 @@ if (is_multisite()) {
|
|
868 |
add_action('admin_init', 'cerber_ms_update');
|
869 |
}
|
870 |
function cerber_ms_update() {
|
871 |
-
if (
|
872 |
return;
|
873 |
}
|
874 |
if ( ! isset( $_POST['option_page'] ) || false === strpos( $_POST['option_page'], 'cerberus-' ) ) {
|
@@ -1023,7 +1029,7 @@ function cerber_upgrade_options() {
|
|
1023 |
continue;
|
1024 |
}
|
1025 |
foreach ( $fields as $field_name => $default ) {
|
1026 |
-
if ( ! isset( $values[ $field_name ] ) && $default !== 1) { // @since 5.7.2 TODO refactor $default
|
1027 |
$values[ $field_name ] = $default;
|
1028 |
}
|
1029 |
}
|
@@ -1102,20 +1108,22 @@ function crb_get_settings($option = '') {
|
|
1102 |
if (!isset($united)) {
|
1103 |
|
1104 |
$options = cerber_get_setting_list();
|
|
|
1105 |
$united = array();
|
1106 |
|
1107 |
-
|
|
|
|
|
|
|
|
|
|
|
1108 |
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
else {
|
1113 |
-
$value = $wpdb->get_var( 'SELECT option_value FROM ' . $wpdb->options . ' WHERE option_name = "' . $opt . '"' );
|
1114 |
}
|
1115 |
|
1116 |
-
|
1117 |
-
$value = unserialize( $value );
|
1118 |
-
}
|
1119 |
|
1120 |
if ( ! $value || ! is_array( $value ) ) {
|
1121 |
continue;
|
@@ -1123,6 +1131,7 @@ function crb_get_settings($option = '') {
|
|
1123 |
|
1124 |
$united = array_merge( $united, $value );
|
1125 |
}
|
|
|
1126 |
}
|
1127 |
|
1128 |
$options = $united;
|
@@ -1138,6 +1147,52 @@ function crb_get_settings($option = '') {
|
|
1138 |
return $options;
|
1139 |
}
|
1140 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1141 |
/*
|
1142 |
Load default settings, except Custom Login URL
|
1143 |
*/
|
57 |
add_action('admin_init', 'cerber_settings_init');
|
58 |
function cerber_settings_init(){
|
59 |
|
60 |
+
if ( ! cerber_is_admin_page( false ) && ! strpos( $_SERVER['REQUEST_URI'], '/options.php' ) ) {
|
61 |
+
return;
|
62 |
+
}
|
63 |
|
64 |
// Main Settings tab ---------------------------------------------------------------------
|
65 |
|
719 |
|
720 |
$new['botswhite'] = cerber_text2array($new['botswhite'], "\n");
|
721 |
|
722 |
+
if ( ! $new['botsany'] && ! $new['botscomm'] && ! $new['botsreg'] ) {
|
723 |
+
update_site_option( 'cerber-antibot', '' );
|
724 |
+
}
|
725 |
+
|
726 |
return $new;
|
727 |
}
|
728 |
/*
|
874 |
add_action('admin_init', 'cerber_ms_update');
|
875 |
}
|
876 |
function cerber_ms_update() {
|
877 |
+
if ( !cerber_is_http_post() || ! isset( $_POST['action'] ) || $_POST['action'] != 'update' ) {
|
878 |
return;
|
879 |
}
|
880 |
if ( ! isset( $_POST['option_page'] ) || false === strpos( $_POST['option_page'], 'cerberus-' ) ) {
|
1029 |
continue;
|
1030 |
}
|
1031 |
foreach ( $fields as $field_name => $default ) {
|
1032 |
+
if ( ! isset( $values[ $field_name ] ) && $default !== 1) { // @since 5.7.2 TODO refactor $default !== 1 to more obvious
|
1033 |
$values[ $field_name ] = $default;
|
1034 |
}
|
1035 |
}
|
1108 |
if (!isset($united)) {
|
1109 |
|
1110 |
$options = cerber_get_setting_list();
|
1111 |
+
$in = 'IN ("' . implode( '","', $options ) . '")';
|
1112 |
$united = array();
|
1113 |
|
1114 |
+
if ( is_multisite() ) {
|
1115 |
+
$set = $wpdb->get_col( 'SELECT meta_value FROM ' . $wpdb->sitemeta . ' WHERE meta_key ' . $in );
|
1116 |
+
}
|
1117 |
+
else {
|
1118 |
+
$set = $wpdb->get_col( 'SELECT option_value FROM ' . $wpdb->options . ' WHERE option_name ' . $in );
|
1119 |
+
}
|
1120 |
|
1121 |
+
foreach ( $set as $item ) {
|
1122 |
+
if ( empty( $item ) ) {
|
1123 |
+
continue;
|
|
|
|
|
1124 |
}
|
1125 |
|
1126 |
+
$value = unserialize( $item );
|
|
|
|
|
1127 |
|
1128 |
if ( ! $value || ! is_array( $value ) ) {
|
1129 |
continue;
|
1131 |
|
1132 |
$united = array_merge( $united, $value );
|
1133 |
}
|
1134 |
+
|
1135 |
}
|
1136 |
|
1137 |
$options = $united;
|
1147 |
return $options;
|
1148 |
}
|
1149 |
|
1150 |
+
/**
|
1151 |
+
* @param string $option Name of site option
|
1152 |
+
*
|
1153 |
+
* @return null|array
|
1154 |
+
* @since 5.8.7
|
1155 |
+
*/
|
1156 |
+
function cerber_get_site_option($option = ''){
|
1157 |
+
global $wpdb;
|
1158 |
+
static $values = array();
|
1159 |
+
|
1160 |
+
if ( ! $option ) {
|
1161 |
+
return null;
|
1162 |
+
}
|
1163 |
+
|
1164 |
+
/**
|
1165 |
+
* For some hosting environments it might be faster, e.g. Redis enabled
|
1166 |
+
*/
|
1167 |
+
if ( defined( 'CERBER_WP_OPTIONS' ) ) {
|
1168 |
+
return get_site_option( $option );
|
1169 |
+
}
|
1170 |
+
|
1171 |
+
if (isset($values[$option])){
|
1172 |
+
return $values[$option];
|
1173 |
+
}
|
1174 |
+
|
1175 |
+
if ( is_multisite() ) {
|
1176 |
+
$value = $wpdb->get_var( 'SELECT meta_value FROM ' . $wpdb->sitemeta . ' WHERE meta_key = "' . $option . '"' );
|
1177 |
+
}
|
1178 |
+
else {
|
1179 |
+
$value = $wpdb->get_var( 'SELECT option_value FROM ' . $wpdb->options . ' WHERE option_name = "' . $option . '"' );
|
1180 |
+
}
|
1181 |
+
|
1182 |
+
if ( $value ) {
|
1183 |
+
$value = @unserialize( $value );
|
1184 |
+
if ( ! is_array( $value ) ) {
|
1185 |
+
$value = null;
|
1186 |
+
}
|
1187 |
+
}
|
1188 |
+
else {
|
1189 |
+
$value = null;
|
1190 |
+
}
|
1191 |
+
|
1192 |
+
$values[$option] = $value;
|
1193 |
+
return $value;
|
1194 |
+
}
|
1195 |
+
|
1196 |
/*
|
1197 |
Load default settings, except Custom Login URL
|
1198 |
*/
|
wp-cerber.php
CHANGED
@@ -5,13 +5,13 @@
|
|
5 |
Description: Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href="https://wpcerber.com">wpcerber.com</a>.
|
6 |
Author: Gregory
|
7 |
Author URI: https://wpcerber.com
|
8 |
-
Version: 5.
|
9 |
Text Domain: wp-cerber
|
10 |
Domain Path: /languages
|
11 |
Network: true
|
12 |
|
13 |
-
Copyright (C) 2015-17 CERBER TECH INC.,
|
14 |
-
|
15 |
|
16 |
Licenced under the GNU GPL.
|
17 |
|
@@ -61,7 +61,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
61 |
exit;
|
62 |
}
|
63 |
|
64 |
-
define( 'CERBER_VER', '5.
|
65 |
define( 'CERBER_LOG_TABLE', 'cerber_log' );
|
66 |
define( 'CERBER_ACL_TABLE', 'cerber_acl' );
|
67 |
define( 'CERBER_BLOCKS_TABLE', 'cerber_blocks' );
|
@@ -98,8 +98,24 @@ if ( defined( 'WP_ADMIN' ) || defined( 'WP_NETWORK_ADMIN' ) ) {
|
|
98 |
require_once( dirname( __FILE__ ) . '/dashboard.php' );
|
99 |
}
|
100 |
|
|
|
|
|
|
|
101 |
cerber_upgrade_all();
|
102 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
class WP_Cerber {
|
104 |
private $remote_ip;
|
105 |
private $session_id;
|
@@ -504,7 +520,7 @@ class WP_Cerber {
|
|
504 |
*
|
505 |
*/
|
506 |
final public function reCaptchaNow() {
|
507 |
-
if (
|
508 |
$this->recaptcha = true;
|
509 |
}
|
510 |
}
|
@@ -598,21 +614,13 @@ add_action( 'plugins_loaded', function () {
|
|
598 |
$wp_cerber = new WP_Cerber();
|
599 |
}
|
600 |
|
601 |
-
|
|
|
602 |
wp_clear_auth_cookie();
|
603 |
-
}
|
604 |
|
605 |
cerber_init_cron();
|
606 |
|
607 |
-
if ( isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == 'GET' ){
|
608 |
-
$antibot = get_site_option( 'cerber-antibot', null );
|
609 |
-
if (!empty($antibot[1])) {
|
610 |
-
foreach ( $antibot[1] as $item ) {
|
611 |
-
setcookie( $item[0], $item[1], time() + 3600, COOKIEPATH );
|
612 |
-
}
|
613 |
-
}
|
614 |
-
}
|
615 |
-
|
616 |
__('> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/','wp-cerber');
|
617 |
|
618 |
}, 1000 );
|
@@ -703,7 +711,7 @@ function cerber_login_head() {
|
|
703 |
|
704 |
$wp_cerber->reCaptcha( 'style' );
|
705 |
|
706 |
-
if (
|
707 |
return;
|
708 |
}
|
709 |
if ( ! cerber_can_msg() ) {
|
@@ -855,11 +863,11 @@ function cerber_login_failed( $user_login ) {
|
|
855 |
|
856 |
|
857 |
// White? Stop further actions.
|
858 |
-
if ( $acl == 'W' &&
|
859 |
return;
|
860 |
}
|
861 |
|
862 |
-
if (
|
863 |
cerber_file_log( $user_login, $ip );
|
864 |
}
|
865 |
|
@@ -1054,8 +1062,7 @@ add_filter( 'pre_user_login', function ( $sanitized_user_login ) {
|
|
1054 |
|
1055 |
// Filter out prohibited usernames
|
1056 |
add_filter( 'illegal_user_logins', function () {
|
1057 |
-
|
1058 |
-
return $wp_cerber->getSettings( 'prohibited' );
|
1059 |
}, 9999 );
|
1060 |
|
1061 |
add_filter( 'option_users_can_register', function ( $value ) {
|
@@ -1284,19 +1291,24 @@ function cerber_redirect( $location, $status ) {
|
|
1284 |
|
1285 |
// Access control ========================================================================================
|
1286 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1287 |
/**
|
1288 |
* Restrict access to vital parts of WP
|
1289 |
*
|
1290 |
*/
|
1291 |
-
|
1292 |
-
function crb_access_control() {
|
1293 |
global $wp_cerber, $cerber_status;
|
1294 |
|
1295 |
if ( is_admin() ) {
|
1296 |
return;
|
1297 |
}
|
1298 |
|
1299 |
-
// IPs from White List are allowed
|
1300 |
$acl = cerber_acl_check();
|
1301 |
if ( $acl == 'W' ) {
|
1302 |
return;
|
@@ -1312,7 +1324,11 @@ function crb_access_control() {
|
|
1312 |
|
1313 |
$opt = $wp_cerber->getSettings();
|
1314 |
|
1315 |
-
|
|
|
|
|
|
|
|
|
1316 |
|
1317 |
if ( $script ) {
|
1318 |
if ( $script == WP_LOGIN_SCRIPT || $script == WP_SIGNUP_SCRIPT || ( $script == WP_REG_URI && ! get_option( 'users_can_register' ) ) ) { // no direct access
|
@@ -1406,18 +1422,11 @@ function crb_access_control() {
|
|
1406 |
* Antispam & Antibot for forms
|
1407 |
*
|
1408 |
*/
|
1409 |
-
add_action( 'init', 'cerber_post_control', 2 );
|
1410 |
function cerber_post_control(){
|
1411 |
-
global $
|
1412 |
-
|
1413 |
-
if ( isset( $_SERVER['REQUEST_METHOD'] ) ) {
|
1414 |
-
$method = $_SERVER['REQUEST_METHOD'];
|
1415 |
-
}
|
1416 |
-
else {
|
1417 |
-
$method = '';
|
1418 |
-
}
|
1419 |
|
1420 |
-
if (
|
1421 |
return;
|
1422 |
}
|
1423 |
|
@@ -1431,6 +1440,8 @@ function cerber_post_control(){
|
|
1431 |
return;
|
1432 |
}
|
1433 |
|
|
|
|
|
1434 |
$deny = false;
|
1435 |
|
1436 |
if ( ! cerber_is_allowed() ) {
|
@@ -1574,8 +1585,7 @@ if ( $wp_cerber->getSettings( 'noredirect' ) ) {
|
|
1574 |
*/
|
1575 |
add_action( 'template_redirect', 'cerber_canonical', 1 );
|
1576 |
function cerber_canonical() {
|
1577 |
-
|
1578 |
-
if ( $wp_cerber->getSettings( 'stopenum' ) ) {
|
1579 |
if ( ! is_admin() && ! empty( $_GET['author'] ) ) {
|
1580 |
cerber_404_page();
|
1581 |
}
|
@@ -1640,17 +1650,6 @@ function cerber_set_cookie( $expire ) {
|
|
1640 |
}
|
1641 |
}
|
1642 |
|
1643 |
-
/*
|
1644 |
-
Mark current user when they logged out
|
1645 |
-
@since 1.0
|
1646 |
-
*/
|
1647 |
-
add_action( 'wp_logout', 'cerber_clear_cookie' );
|
1648 |
-
function cerber_clear_cookie() {
|
1649 |
-
if ( ! headers_sent() ) {
|
1650 |
-
setcookie( 'cerber_logout', 'ok', time() + 24 * 3600, COOKIEPATH );
|
1651 |
-
}
|
1652 |
-
}
|
1653 |
-
|
1654 |
/*
|
1655 |
Track BAD cookies with non-existence user or bad password (hash)
|
1656 |
*/
|
@@ -1658,14 +1657,13 @@ add_action( 'auth_cookie_bad_username', 'cerber_cookie_bad' );
|
|
1658 |
add_action( 'auth_cookie_bad_hash', 'cerber_cookie_bad' );
|
1659 |
function cerber_cookie_bad( $cookie_elements ) {
|
1660 |
cerber_login_failed( $cookie_elements['username'] );
|
1661 |
-
//wp_clear_auth_cookie(); @since 5.05
|
1662 |
}
|
1663 |
|
1664 |
/*
|
1665 |
Get special Cerber Sign for using with cookies
|
1666 |
*/
|
1667 |
function cerber_get_groove() {
|
1668 |
-
$groove =
|
1669 |
if ( empty( $groove ) ) {
|
1670 |
$groove = wp_generate_password( 16, false );
|
1671 |
update_site_option( 'cerber-groove', $groove );
|
@@ -1732,10 +1730,10 @@ function cerber_antibot_code($location) {
|
|
1732 |
return;
|
1733 |
}
|
1734 |
|
1735 |
-
$values =
|
1736 |
|
1737 |
if ( empty( $values ) || !is_array( $values ) ) {
|
1738 |
-
|
1739 |
}
|
1740 |
|
1741 |
?>
|
@@ -1800,29 +1798,38 @@ function cerber_antibot_code($location) {
|
|
1800 |
/**
|
1801 |
* Generates and saves antibot markers
|
1802 |
*
|
1803 |
-
* @return array
|
1804 |
*/
|
1805 |
function cerber_antibot_gene() {
|
1806 |
|
1807 |
-
|
1808 |
-
|
1809 |
-
$max = rand( 2, 4 );
|
1810 |
-
for ( $i = 1; $i <= $max; $i ++ ) {
|
1811 |
-
$length = rand( 10, 16 );
|
1812 |
-
$string1 = str_shuffle( 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' );
|
1813 |
-
$string2 = str_shuffle( '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.@*_[]' );
|
1814 |
-
$ret[0][] = array( substr( $string1, 0, $length ), substr( $string2, 0, $length ) );
|
1815 |
}
|
1816 |
|
1817 |
-
$
|
1818 |
-
|
1819 |
-
|
1820 |
-
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1824 |
|
1825 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1826 |
|
1827 |
return $ret;
|
1828 |
}
|
@@ -1830,6 +1837,8 @@ function cerber_antibot_gene() {
|
|
1830 |
/**
|
1831 |
* Is a POST request (a form) submitted by a bot?
|
1832 |
*
|
|
|
|
|
1833 |
* @return bool
|
1834 |
*/
|
1835 |
function cerber_is_bot($location = '') {
|
@@ -1840,36 +1849,41 @@ function cerber_is_bot($location = '') {
|
|
1840 |
return $ret;
|
1841 |
}
|
1842 |
|
1843 |
-
if (
|
1844 |
$ret = false;
|
|
|
1845 |
return $ret;
|
1846 |
}
|
1847 |
|
1848 |
// Admin || AJAX requests by unauthorized users
|
1849 |
if ( is_admin() ) {
|
1850 |
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
|
1851 |
-
if (is_user_logged_in()) {
|
1852 |
$ret = false;
|
|
|
1853 |
return $ret;
|
1854 |
}
|
1855 |
-
elseif (
|
1856 |
-
|
1857 |
-
|
|
|
1858 |
}
|
1859 |
}
|
1860 |
else {
|
1861 |
$ret = false;
|
|
|
1862 |
return $ret;
|
1863 |
}
|
1864 |
}
|
1865 |
|
1866 |
-
if ( ! cerber_antibot_enabled($location) ) {
|
1867 |
$ret = false;
|
|
|
1868 |
return $ret;
|
1869 |
}
|
1870 |
|
1871 |
// Antibot whitelist
|
1872 |
-
if ( ( $list =
|
1873 |
foreach ( $list as $exception ) {
|
1874 |
if ( false !== strpos( trim( $_SERVER['REQUEST_URI'], '/' ), $exception ) ) {
|
1875 |
$ret = false;
|
@@ -1878,7 +1892,7 @@ function cerber_is_bot($location = '') {
|
|
1878 |
}
|
1879 |
}
|
1880 |
|
1881 |
-
$antibot =
|
1882 |
|
1883 |
$ret = false;
|
1884 |
|
@@ -1902,7 +1916,7 @@ function cerber_is_bot($location = '') {
|
|
1902 |
|
1903 |
if ( $ret ) {
|
1904 |
$cerber_status = 11;
|
1905 |
-
if (
|
1906 |
lab_save_push( $wp_cerber->getRemoteIp(), 333, '' );
|
1907 |
}
|
1908 |
}
|
@@ -1985,8 +1999,7 @@ function cerber_geo_rules( $rule_id = '' ) {
|
|
1985 |
*
|
1986 |
*/
|
1987 |
add_filter( 'auth_cookie_expiration', function ( $expire ) {
|
1988 |
-
|
1989 |
-
$time = $wp_cerber->getSettings( 'auth_expire' );
|
1990 |
if ( $time ) {
|
1991 |
$expire = 60 * $time;
|
1992 |
}
|
@@ -2025,8 +2038,11 @@ add_action( 'set_auth_cookie', function () {
|
|
2025 |
});*/
|
2026 |
|
2027 |
add_action( 'clear_auth_cookie', function () {
|
2028 |
-
|
2029 |
-
|
|
|
|
|
|
|
2030 |
|
2031 |
//add_action( 'lostpassword_post', 'cerber_password_post' );
|
2032 |
add_action( 'retrieve_password', function ( $user_login ) {
|
@@ -2256,13 +2272,13 @@ function cerber_blocked_num(){
|
|
2256 |
*/
|
2257 |
function cerber_calc_duration( $ip ) {
|
2258 |
global $wpdb, $wp_cerber;
|
2259 |
-
$range = time() -
|
2260 |
$lockouts = $wpdb->get_var( $wpdb->prepare( 'SELECT count(ip) FROM ' . CERBER_LOG_TABLE . ' WHERE ip = %s AND activity IN (10,11) AND stamp > %d', $ip, $range ) );
|
2261 |
-
if ( $lockouts >=
|
2262 |
-
return
|
2263 |
}
|
2264 |
|
2265 |
-
return
|
2266 |
}
|
2267 |
|
2268 |
/**
|
@@ -2282,17 +2298,20 @@ function cerber_get_remain_count( $ip = '', $check_acl = true, $activity = '7,51
|
|
2282 |
$ip = $wp_cerber->getRemoteIp();
|
2283 |
}
|
2284 |
|
2285 |
-
if (
|
|
|
|
|
2286 |
|
2287 |
if ( $check_acl && cerber_acl_check( $ip, 'W' ) ) {
|
2288 |
return $allowed; // whitelist = infinity attempts
|
2289 |
}
|
2290 |
|
2291 |
-
|
2292 |
-
|
2293 |
-
|
2294 |
|
2295 |
$range = time() - $period * 60;
|
|
|
2296 |
$attempts = $wpdb->get_var( $wpdb->prepare( 'SELECT count(ip) FROM ' . CERBER_LOG_TABLE . ' WHERE ip = %s AND activity IN (%s) AND stamp > %d', $ip, $activity, $range ) );
|
2297 |
|
2298 |
if ( ! $attempts ) {
|
@@ -2420,13 +2439,13 @@ function cerber_get_status( $ip ) {
|
|
2420 |
* @param $ip string|array single IP address, string with IP network, range or associative range array
|
2421 |
* @param $tag string 'B'|'W'
|
2422 |
*
|
2423 |
-
* @return bool|int Result of operation
|
2424 |
*/
|
2425 |
-
function cerber_acl_add( $ip, $tag ) {
|
2426 |
global $wpdb;
|
2427 |
if ( is_string( $ip ) ) {
|
2428 |
if ( $wpdb->get_var( $wpdb->prepare( 'SELECT COUNT(ip) FROM ' . CERBER_ACL_TABLE . ' WHERE ip = %s', $ip ) ) ) {
|
2429 |
-
return false;
|
2430 |
}
|
2431 |
$range = cerber_any2range( $ip );
|
2432 |
if ( is_array( $range ) ) {
|
@@ -2437,8 +2456,13 @@ function cerber_acl_add( $ip, $tag ) {
|
|
2437 |
$end = ip2long( $ip );
|
2438 |
}
|
2439 |
|
2440 |
-
|
2441 |
-
|
|
|
|
|
|
|
|
|
|
|
2442 |
}
|
2443 |
elseif ( is_array( $ip ) ) {
|
2444 |
$range = $ip['range'];
|
@@ -2448,18 +2472,27 @@ function cerber_acl_add( $ip, $tag ) {
|
|
2448 |
return false;
|
2449 |
}
|
2450 |
|
2451 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2452 |
}
|
2453 |
|
2454 |
return false;
|
2455 |
}
|
2456 |
// TODO: move to dashboard.php
|
2457 |
-
function cerber_add_white( $ip ) {
|
2458 |
-
return cerber_acl_add( $ip, 'W' );
|
2459 |
}
|
2460 |
// TODO: move to dashboard.php
|
2461 |
-
function cerber_add_black( $ip ) {
|
2462 |
-
return cerber_acl_add( $ip, 'B' );
|
2463 |
}
|
2464 |
// TODO: move to dashboard.php
|
2465 |
function cerber_acl_remove( $ip ) {
|
@@ -2473,6 +2506,37 @@ function cerber_acl_remove( $ip ) {
|
|
2473 |
return false;
|
2474 |
}
|
2475 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2476 |
/**
|
2477 |
* Check ACLs for given IP. Some extra lines for performance reason.
|
2478 |
*
|
@@ -2604,7 +2668,7 @@ function cerber_get_subnet( $ip ) {
|
|
2604 |
Check if given IP address or wildcard or CIDR is valid
|
2605 |
*/
|
2606 |
function cerber_is_ip_or_net( $ip ) {
|
2607 |
-
if (
|
2608 |
return true;
|
2609 |
}
|
2610 |
// WILDCARD: 192.168.1.*
|
@@ -2795,11 +2859,11 @@ function cerber_is_ip_in_range( $range, $ip = null ) {
|
|
2795 |
Display 404 page to bump bots and bad guys
|
2796 |
*/
|
2797 |
function cerber_404_page() {
|
2798 |
-
global $wp_query
|
2799 |
status_header( '404' );
|
2800 |
$wp_query->set_404();
|
2801 |
|
2802 |
-
if ( 0 ==
|
2803 |
$template = apply_filters( 'cerber_404_template', get_404_template() );
|
2804 |
if ( @file_exists( $template ) ) {
|
2805 |
include( $template );
|
@@ -2841,7 +2905,7 @@ function cerber_enable_citadel() {
|
|
2841 |
if ( get_transient( 'cerber_citadel' ) ) {
|
2842 |
return;
|
2843 |
}
|
2844 |
-
set_transient( 'cerber_citadel', true,
|
2845 |
cerber_log( 12 );
|
2846 |
|
2847 |
// Notify admin
|
@@ -3227,18 +3291,18 @@ function cerber_do_hourly($force = false) {
|
|
3227 |
set_site_transient( 'cerber_multisite', 'executed', 3600 );
|
3228 |
}
|
3229 |
|
3230 |
-
if (
|
3231 |
lab_check_nodes();
|
3232 |
}
|
3233 |
|
3234 |
-
$days = absint(
|
3235 |
$time = time();
|
3236 |
|
3237 |
if ( $days > 0 ) {
|
3238 |
$wpdb->query( 'DELETE FROM ' . CERBER_LOG_TABLE . ' WHERE stamp < ' . ( $time - $days * 24 * 3600 ) );
|
3239 |
}
|
3240 |
|
3241 |
-
if (
|
3242 |
cerber_push_lab();
|
3243 |
}
|
3244 |
|
@@ -3660,7 +3724,11 @@ function cerber_activate() {
|
|
3660 |
|
3661 |
$db_errors = cerber_create_db();
|
3662 |
if ( $db_errors ) {
|
3663 |
-
|
|
|
|
|
|
|
|
|
3664 |
}
|
3665 |
|
3666 |
cerber_upgrade_all();
|
5 |
Description: Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href="https://wpcerber.com">wpcerber.com</a>.
|
6 |
Author: Gregory
|
7 |
Author URI: https://wpcerber.com
|
8 |
+
Version: 5.9
|
9 |
Text Domain: wp-cerber
|
10 |
Domain Path: /languages
|
11 |
Network: true
|
12 |
|
13 |
+
Copyright (C) 2015-17 CERBER TECH INC., https://cerber.tech
|
14 |
+
Copyright (C) 2015-17 Gregory Markov, https://wpcerber.com
|
15 |
|
16 |
Licenced under the GNU GPL.
|
17 |
|
61 |
exit;
|
62 |
}
|
63 |
|
64 |
+
define( 'CERBER_VER', '5.9' );
|
65 |
define( 'CERBER_LOG_TABLE', 'cerber_log' );
|
66 |
define( 'CERBER_ACL_TABLE', 'cerber_acl' );
|
67 |
define( 'CERBER_BLOCKS_TABLE', 'cerber_blocks' );
|
98 |
require_once( dirname( __FILE__ ) . '/dashboard.php' );
|
99 |
}
|
100 |
|
101 |
+
|
102 |
+
// Critical stuff that must be executed first ==================================================
|
103 |
+
|
104 |
cerber_upgrade_all();
|
105 |
|
106 |
+
if ( cerber_is_http_get() ){
|
107 |
+
$antibot = cerber_antibot_gene();
|
108 |
+
if ($antibot && !empty($antibot[1])) {
|
109 |
+
foreach ( $antibot[1] as $item ) {
|
110 |
+
setcookie( $item[0], $item[1], time() + 3600, COOKIEPATH );
|
111 |
+
}
|
112 |
+
}
|
113 |
+
}
|
114 |
+
|
115 |
+
// =============================================================================================
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
class WP_Cerber {
|
120 |
private $remote_ip;
|
121 |
private $session_id;
|
520 |
*
|
521 |
*/
|
522 |
final public function reCaptchaNow() {
|
523 |
+
if ( cerber_is_http_post() && $this->options['sitekey'] && $this->options['secretkey'] ) {
|
524 |
$this->recaptcha = true;
|
525 |
}
|
526 |
}
|
614 |
$wp_cerber = new WP_Cerber();
|
615 |
}
|
616 |
|
617 |
+
/* @since 5.8.8
|
618 |
+
if ( ! cerber_check_groove() && ! cerber_is_allowed() ) {
|
619 |
wp_clear_auth_cookie();
|
620 |
+
}*/
|
621 |
|
622 |
cerber_init_cron();
|
623 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
624 |
__('> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/','wp-cerber');
|
625 |
|
626 |
}, 1000 );
|
711 |
|
712 |
$wp_cerber->reCaptcha( 'style' );
|
713 |
|
714 |
+
if ( !cerber_is_http_get() ) {
|
715 |
return;
|
716 |
}
|
717 |
if ( ! cerber_can_msg() ) {
|
863 |
|
864 |
|
865 |
// White? Stop further actions.
|
866 |
+
if ( $acl == 'W' && !crb_get_settings( 'limitwhite' )) {
|
867 |
return;
|
868 |
}
|
869 |
|
870 |
+
if ( crb_get_settings( 'usefile' ) ) {
|
871 |
cerber_file_log( $user_login, $ip );
|
872 |
}
|
873 |
|
1062 |
|
1063 |
// Filter out prohibited usernames
|
1064 |
add_filter( 'illegal_user_logins', function () {
|
1065 |
+
return (array) crb_get_settings( 'prohibited' );
|
|
|
1066 |
}, 9999 );
|
1067 |
|
1068 |
add_filter( 'option_users_can_register', function ( $value ) {
|
1291 |
|
1292 |
// Access control ========================================================================================
|
1293 |
|
1294 |
+
//add_action( 'init', 'cerber_access_control', 1 );
|
1295 |
+
add_action( 'init', function () {
|
1296 |
+
cerber_access_control();
|
1297 |
+
cerber_post_control();
|
1298 |
+
}, 1 );
|
1299 |
+
|
1300 |
/**
|
1301 |
* Restrict access to vital parts of WP
|
1302 |
*
|
1303 |
*/
|
1304 |
+
function cerber_access_control() {
|
|
|
1305 |
global $wp_cerber, $cerber_status;
|
1306 |
|
1307 |
if ( is_admin() ) {
|
1308 |
return;
|
1309 |
}
|
1310 |
|
1311 |
+
// IPs from the White List are allowed
|
1312 |
$acl = cerber_acl_check();
|
1313 |
if ( $acl == 'W' ) {
|
1314 |
return;
|
1324 |
|
1325 |
$opt = $wp_cerber->getSettings();
|
1326 |
|
1327 |
+
//$script = strtolower( cerber_get_last_in_uri(true) );
|
1328 |
+
$script = strtolower( cerber_get_last_in_uri() );
|
1329 |
+
if ( substr( $script, - 4 ) != '.php' ) {
|
1330 |
+
$script .= '.php'; // Apache MultiViews enabled?
|
1331 |
+
}
|
1332 |
|
1333 |
if ( $script ) {
|
1334 |
if ( $script == WP_LOGIN_SCRIPT || $script == WP_SIGNUP_SCRIPT || ( $script == WP_REG_URI && ! get_option( 'users_can_register' ) ) ) { // no direct access
|
1422 |
* Antispam & Antibot for forms
|
1423 |
*
|
1424 |
*/
|
1425 |
+
//add_action( 'init', 'cerber_post_control', 2 );
|
1426 |
function cerber_post_control(){
|
1427 |
+
global $cerber_status;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1428 |
|
1429 |
+
if ( !cerber_is_http_post() || cerber_acl_check( null, 'W' ) ) {
|
1430 |
return;
|
1431 |
}
|
1432 |
|
1440 |
return;
|
1441 |
}
|
1442 |
|
1443 |
+
// Let's make the checks
|
1444 |
+
|
1445 |
$deny = false;
|
1446 |
|
1447 |
if ( ! cerber_is_allowed() ) {
|
1585 |
*/
|
1586 |
add_action( 'template_redirect', 'cerber_canonical', 1 );
|
1587 |
function cerber_canonical() {
|
1588 |
+
if ( crb_get_settings( 'stopenum' ) ) {
|
|
|
1589 |
if ( ! is_admin() && ! empty( $_GET['author'] ) ) {
|
1590 |
cerber_404_page();
|
1591 |
}
|
1650 |
}
|
1651 |
}
|
1652 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1653 |
/*
|
1654 |
Track BAD cookies with non-existence user or bad password (hash)
|
1655 |
*/
|
1657 |
add_action( 'auth_cookie_bad_hash', 'cerber_cookie_bad' );
|
1658 |
function cerber_cookie_bad( $cookie_elements ) {
|
1659 |
cerber_login_failed( $cookie_elements['username'] );
|
|
|
1660 |
}
|
1661 |
|
1662 |
/*
|
1663 |
Get special Cerber Sign for using with cookies
|
1664 |
*/
|
1665 |
function cerber_get_groove() {
|
1666 |
+
$groove = cerber_get_site_option( 'cerber-groove' );
|
1667 |
if ( empty( $groove ) ) {
|
1668 |
$groove = wp_generate_password( 16, false );
|
1669 |
update_site_option( 'cerber-groove', $groove );
|
1730 |
return;
|
1731 |
}
|
1732 |
|
1733 |
+
$values = cerber_antibot_gene();
|
1734 |
|
1735 |
if ( empty( $values ) || !is_array( $values ) ) {
|
1736 |
+
return;
|
1737 |
}
|
1738 |
|
1739 |
?>
|
1798 |
/**
|
1799 |
* Generates and saves antibot markers
|
1800 |
*
|
1801 |
+
* @return array|bool
|
1802 |
*/
|
1803 |
function cerber_antibot_gene() {
|
1804 |
|
1805 |
+
if ( !crb_get_settings('botsany') && !crb_get_settings('botscomm') && !crb_get_settings('botsreg') ) {
|
1806 |
+
return false;
|
|
|
|
|
|
|
|
|
|
|
|
|
1807 |
}
|
1808 |
|
1809 |
+
$ret = cerber_get_site_option( 'cerber-antibot' );
|
1810 |
+
|
1811 |
+
if ( ! $ret ) {
|
1812 |
+
|
1813 |
+
$ret = array();
|
1814 |
+
|
1815 |
+
$max = rand( 2, 4 );
|
1816 |
+
for ( $i = 1; $i <= $max; $i ++ ) {
|
1817 |
+
$length = rand( 10, 16 );
|
1818 |
+
$string1 = str_shuffle( 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' );
|
1819 |
+
$string2 = str_shuffle( '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.@*_[]' );
|
1820 |
+
$ret[0][] = array( substr( $string1, 0, $length ), substr( $string2, 0, $length ) );
|
1821 |
+
}
|
1822 |
|
1823 |
+
$max = rand( 2, 4 );
|
1824 |
+
for ( $i = 1; $i <= $max; $i ++ ) {
|
1825 |
+
$length = rand( 10, 16 );
|
1826 |
+
$string1 = str_shuffle( 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' );
|
1827 |
+
$string2 = str_shuffle( '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.@*_[]' );
|
1828 |
+
$ret[1][] = array( substr( $string1, 0, $length ), substr( $string2, 0, $length ) );
|
1829 |
+
}
|
1830 |
+
|
1831 |
+
update_site_option( 'cerber-antibot', $ret );
|
1832 |
+
}
|
1833 |
|
1834 |
return $ret;
|
1835 |
}
|
1837 |
/**
|
1838 |
* Is a POST request (a form) submitted by a bot?
|
1839 |
*
|
1840 |
+
* @param $location string identificator of a place where we are check for a bot
|
1841 |
+
*
|
1842 |
* @return bool
|
1843 |
*/
|
1844 |
function cerber_is_bot($location = '') {
|
1849 |
return $ret;
|
1850 |
}
|
1851 |
|
1852 |
+
if ( ! $location || ! cerber_is_http_post() || ( defined( 'DOING_CRON' ) && DOING_CRON ) ) {
|
1853 |
$ret = false;
|
1854 |
+
|
1855 |
return $ret;
|
1856 |
}
|
1857 |
|
1858 |
// Admin || AJAX requests by unauthorized users
|
1859 |
if ( is_admin() ) {
|
1860 |
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
|
1861 |
+
if ( is_user_logged_in() ) {
|
1862 |
$ret = false;
|
1863 |
+
|
1864 |
return $ret;
|
1865 |
}
|
1866 |
+
elseif ( crb_get_settings( 'botssafe' ) ) {
|
1867 |
+
$ret = false;
|
1868 |
+
|
1869 |
+
return $ret;
|
1870 |
}
|
1871 |
}
|
1872 |
else {
|
1873 |
$ret = false;
|
1874 |
+
|
1875 |
return $ret;
|
1876 |
}
|
1877 |
}
|
1878 |
|
1879 |
+
if ( ! cerber_antibot_enabled( $location ) ) {
|
1880 |
$ret = false;
|
1881 |
+
|
1882 |
return $ret;
|
1883 |
}
|
1884 |
|
1885 |
// Antibot whitelist
|
1886 |
+
if ( ( $list = crb_get_settings( 'botswhite' ) ) && is_array( $list ) ) {
|
1887 |
foreach ( $list as $exception ) {
|
1888 |
if ( false !== strpos( trim( $_SERVER['REQUEST_URI'], '/' ), $exception ) ) {
|
1889 |
$ret = false;
|
1892 |
}
|
1893 |
}
|
1894 |
|
1895 |
+
$antibot = cerber_antibot_gene();
|
1896 |
|
1897 |
$ret = false;
|
1898 |
|
1916 |
|
1917 |
if ( $ret ) {
|
1918 |
$cerber_status = 11;
|
1919 |
+
if ( crb_get_settings( 'cerberlab' ) ) {
|
1920 |
lab_save_push( $wp_cerber->getRemoteIp(), 333, '' );
|
1921 |
}
|
1922 |
}
|
1999 |
*
|
2000 |
*/
|
2001 |
add_filter( 'auth_cookie_expiration', function ( $expire ) {
|
2002 |
+
$time = crb_get_settings( 'auth_expire' );
|
|
|
2003 |
if ( $time ) {
|
2004 |
$expire = 60 * $time;
|
2005 |
}
|
2038 |
});*/
|
2039 |
|
2040 |
add_action( 'clear_auth_cookie', function () {
|
2041 |
+
$uid = get_current_user_id();
|
2042 |
+
if ( $uid ) {
|
2043 |
+
cerber_log( 6, '', $uid );
|
2044 |
+
}
|
2045 |
+
} );
|
2046 |
|
2047 |
//add_action( 'lostpassword_post', 'cerber_password_post' );
|
2048 |
add_action( 'retrieve_password', function ( $user_login ) {
|
2272 |
*/
|
2273 |
function cerber_calc_duration( $ip ) {
|
2274 |
global $wpdb, $wp_cerber;
|
2275 |
+
$range = time() - crb_get_settings( 'aglast' ) * 3600;
|
2276 |
$lockouts = $wpdb->get_var( $wpdb->prepare( 'SELECT count(ip) FROM ' . CERBER_LOG_TABLE . ' WHERE ip = %s AND activity IN (10,11) AND stamp > %d', $ip, $range ) );
|
2277 |
+
if ( $lockouts >= crb_get_settings( 'aglocks' ) ) {
|
2278 |
+
return crb_get_settings( 'agperiod' ) * 3600;
|
2279 |
}
|
2280 |
|
2281 |
+
return crb_get_settings( 'lockout' ) * 60;
|
2282 |
}
|
2283 |
|
2284 |
/**
|
2298 |
$ip = $wp_cerber->getRemoteIp();
|
2299 |
}
|
2300 |
|
2301 |
+
if ( ! $allowed ) {
|
2302 |
+
$allowed = absint( crb_get_settings( 'attempts' ) );
|
2303 |
+
}
|
2304 |
|
2305 |
if ( $check_acl && cerber_acl_check( $ip, 'W' ) ) {
|
2306 |
return $allowed; // whitelist = infinity attempts
|
2307 |
}
|
2308 |
|
2309 |
+
if ( ! $period ) {
|
2310 |
+
$period = absint( crb_get_settings( 'period' ) );
|
2311 |
+
}
|
2312 |
|
2313 |
$range = time() - $period * 60;
|
2314 |
+
// TODO: remove prepare, replace $activity with an array of integer
|
2315 |
$attempts = $wpdb->get_var( $wpdb->prepare( 'SELECT count(ip) FROM ' . CERBER_LOG_TABLE . ' WHERE ip = %s AND activity IN (%s) AND stamp > %d', $ip, $activity, $range ) );
|
2316 |
|
2317 |
if ( ! $attempts ) {
|
2439 |
* @param $ip string|array single IP address, string with IP network, range or associative range array
|
2440 |
* @param $tag string 'B'|'W'
|
2441 |
*
|
2442 |
+
* @return bool|int|object Result of operation
|
2443 |
*/
|
2444 |
+
function cerber_acl_add( $ip, $tag, $comment = '') {
|
2445 |
global $wpdb;
|
2446 |
if ( is_string( $ip ) ) {
|
2447 |
if ( $wpdb->get_var( $wpdb->prepare( 'SELECT COUNT(ip) FROM ' . CERBER_ACL_TABLE . ' WHERE ip = %s', $ip ) ) ) {
|
2448 |
+
return false; //__( 'Element is already in list', 'wp-cerber' );
|
2449 |
}
|
2450 |
$range = cerber_any2range( $ip );
|
2451 |
if ( is_array( $range ) ) {
|
2456 |
$end = ip2long( $ip );
|
2457 |
}
|
2458 |
|
2459 |
+
$result = $wpdb->insert( CERBER_ACL_TABLE, array( 'ip' => $ip,
|
2460 |
+
'ip_long_begin' => $begin,
|
2461 |
+
'ip_long_end' => $end,
|
2462 |
+
'tag' => $tag,
|
2463 |
+
'comments' => $comment
|
2464 |
+
), array( '%s', '%d', '%d', '%s', '%s' ) );
|
2465 |
+
return $result;
|
2466 |
}
|
2467 |
elseif ( is_array( $ip ) ) {
|
2468 |
$range = $ip['range'];
|
2472 |
return false;
|
2473 |
}
|
2474 |
|
2475 |
+
$result = $wpdb->insert( CERBER_ACL_TABLE, array( 'ip' => $range,
|
2476 |
+
'ip_long_begin' => $begin,
|
2477 |
+
'ip_long_end' => $end,
|
2478 |
+
'tag' => $tag,
|
2479 |
+
'comments' => $comment
|
2480 |
+
), array( '%s', '%d', '%d', '%s', '%s' ) );
|
2481 |
+
|
2482 |
+
return $result;
|
2483 |
+
|
2484 |
+
//return $wpdb->query( $wpdb->prepare( 'INSERT INTO ' . CERBER_ACL_TABLE . ' (ip, ip_long_begin, ip_long_end, tag) VALUES (%s,%d,%d,%s)', $range, $begin, $end, $tag ) );
|
2485 |
}
|
2486 |
|
2487 |
return false;
|
2488 |
}
|
2489 |
// TODO: move to dashboard.php
|
2490 |
+
function cerber_add_white( $ip, $comment = '' ) {
|
2491 |
+
return cerber_acl_add( $ip, 'W', $comment );
|
2492 |
}
|
2493 |
// TODO: move to dashboard.php
|
2494 |
+
function cerber_add_black( $ip, $comment = '') {
|
2495 |
+
return cerber_acl_add( $ip, 'B', $comment );
|
2496 |
}
|
2497 |
// TODO: move to dashboard.php
|
2498 |
function cerber_acl_remove( $ip ) {
|
2506 |
return false;
|
2507 |
}
|
2508 |
|
2509 |
+
// TODO: move to dashboard.php
|
2510 |
+
/**
|
2511 |
+
* Can a given IP (user input) be added to the blacklist
|
2512 |
+
*
|
2513 |
+
* @param $ip
|
2514 |
+
* @param string $list
|
2515 |
+
*
|
2516 |
+
* @return bool
|
2517 |
+
*/
|
2518 |
+
function cerber_can_be_listed( $ip, $list = 'B' ) {
|
2519 |
+
global $wp_cerber;
|
2520 |
+
if ( $list == 'B' ) {
|
2521 |
+
if ( crb_acl_is_white( $wp_cerber->getRemoteIp() ) ) {
|
2522 |
+
return true;
|
2523 |
+
}
|
2524 |
+
if ( filter_var( $ip, FILTER_VALIDATE_IP ) ) {
|
2525 |
+
if ( cerber_is_myip( $ip ) ) {
|
2526 |
+
return false;
|
2527 |
+
}
|
2528 |
+
}
|
2529 |
+
$range = cerber_any2range( $ip );
|
2530 |
+
if ( cerber_is_ip_in_range( $range ) ) {
|
2531 |
+
return false;
|
2532 |
+
}
|
2533 |
+
|
2534 |
+
return true;
|
2535 |
+
}
|
2536 |
+
|
2537 |
+
return true;
|
2538 |
+
}
|
2539 |
+
|
2540 |
/**
|
2541 |
* Check ACLs for given IP. Some extra lines for performance reason.
|
2542 |
*
|
2668 |
Check if given IP address or wildcard or CIDR is valid
|
2669 |
*/
|
2670 |
function cerber_is_ip_or_net( $ip ) {
|
2671 |
+
if ( filter_var( $ip, FILTER_VALIDATE_IP ) ) {
|
2672 |
return true;
|
2673 |
}
|
2674 |
// WILDCARD: 192.168.1.*
|
2859 |
Display 404 page to bump bots and bad guys
|
2860 |
*/
|
2861 |
function cerber_404_page() {
|
2862 |
+
global $wp_query;
|
2863 |
status_header( '404' );
|
2864 |
$wp_query->set_404();
|
2865 |
|
2866 |
+
if ( 0 == crb_get_settings( 'page404' ) ) {
|
2867 |
$template = apply_filters( 'cerber_404_template', get_404_template() );
|
2868 |
if ( @file_exists( $template ) ) {
|
2869 |
include( $template );
|
2905 |
if ( get_transient( 'cerber_citadel' ) ) {
|
2906 |
return;
|
2907 |
}
|
2908 |
+
set_transient( 'cerber_citadel', true, crb_get_settings( 'ciduration' ) * 60 );
|
2909 |
cerber_log( 12 );
|
2910 |
|
2911 |
// Notify admin
|
3291 |
set_site_transient( 'cerber_multisite', 'executed', 3600 );
|
3292 |
}
|
3293 |
|
3294 |
+
if ( crb_get_settings( 'cerberlab' ) ) {
|
3295 |
lab_check_nodes();
|
3296 |
}
|
3297 |
|
3298 |
+
$days = absint( crb_get_settings( 'keeplog' ) );
|
3299 |
$time = time();
|
3300 |
|
3301 |
if ( $days > 0 ) {
|
3302 |
$wpdb->query( 'DELETE FROM ' . CERBER_LOG_TABLE . ' WHERE stamp < ' . ( $time - $days * 24 * 3600 ) );
|
3303 |
}
|
3304 |
|
3305 |
+
if ( crb_get_settings( 'cerberlab' ) ) {
|
3306 |
cerber_push_lab();
|
3307 |
}
|
3308 |
|
3724 |
|
3725 |
$db_errors = cerber_create_db();
|
3726 |
if ( $db_errors ) {
|
3727 |
+
$e = '';
|
3728 |
+
foreach ( $db_errors as $db_error ) {
|
3729 |
+
$e .= '<p>' . implode( '</p><p>', $db_error ) . '</p>';
|
3730 |
+
}
|
3731 |
+
cerber_stop_activating( '<h3>' . __( "Can't activate WP Cerber due to a database error.", 'wp-cerber' ) . '</h3>'.$e);
|
3732 |
}
|
3733 |
|
3734 |
cerber_upgrade_all();
|