Version Description
- New: The quarantine has got a separate admin page in the WordPress dashboard which allows viewing deleted files, restoring or deleting them.
- New: Now the malware scanner and integrity checker supports multisite WordPress installations.
- Bug fixed: Once an address IP has been locked out after reaching the limit to the number of attempts to log in the "Were sorry, you are not allowed to proceed" forbidden page is being displayed instead of the normal user message "You have exceeded the number of allowed login attempts".
- Bug fixed: PHP Notice: Only variables should be passed by reference in cerber-load.php on line 5377
- Update: Miscellaneous code improvements for traffic inspector
- Read more
Download this release
Release Info
Developer | Gioni |
Plugin | Cerber Security & Antispam |
Version | 7.6 |
Comparing to | |
See all releases |
Code changes from version 7.5 to 7.6
- assets/admin.css +28 -9
- assets/icons/fonts/crb.svg +4 -0
- assets/icons/fonts/crb.ttf +0 -0
- assets/icons/fonts/crb.woff +0 -0
- assets/icons/style.css +15 -3
- assets/scanner.js +7 -0
- cerber-lab.php +2 -10
- cerber-load.php +68 -42
- cerber-news.php +6 -0
- cerber-scanner.php +468 -82
- cerber-tools.php +207 -75
- changelog.txt +14 -7
- common.php +29 -4
- dashboard.php +256 -172
- languages/wp-cerber-es_ES.mo +0 -0
- languages/wp-cerber-es_ES.po +1211 -524
- languages/wp-cerber-nb_NO.mo +0 -0
- languages/wp-cerber-nb_NO.po +887 -453
- languages/wp-cerber-nl_NL.mo +0 -0
- languages/wp-cerber-nl_NL.po +449 -406
- languages/wp-cerber-ru_RU.mo +0 -0
- languages/wp-cerber-ru_RU.po +466 -398
- languages/wp-cerber-sv_SE.mo +0 -0
- languages/wp-cerber-sv_SE.po +453 -410
- languages/wp-cerber.pot +637 -541
- readme.txt +16 -15
- settings.php +122 -71
- wp-cerber.php +78 -5
assets/admin.css
CHANGED
@@ -708,6 +708,10 @@ body.wp-cerber_page_cerber-integrity {
|
|
708 |
border-bottom: none;
|
709 |
/*margin-bottom: 10px;*/
|
710 |
}
|
|
|
|
|
|
|
|
|
711 |
#crb-scan-details {
|
712 |
padding: 0;
|
713 |
border: solid #E5E5E5 2px;
|
@@ -718,14 +722,16 @@ body.wp-cerber_page_cerber-integrity {
|
|
718 |
transition: height 2s;
|
719 |
}
|
720 |
#crb-scan-display div.scan-tile {
|
721 |
-
float: left
|
722 |
-
|
723 |
-
width:
|
|
|
|
|
724 |
text-align: center;
|
725 |
}
|
726 |
#crb-scan-display div.scan-tile div {
|
727 |
display: inline-block;
|
728 |
-
text-align:
|
729 |
}
|
730 |
#crb-scan-display div div p:first-of-type {
|
731 |
font-size: 200%;
|
@@ -740,20 +746,25 @@ body.wp-cerber_page_cerber-integrity {
|
|
740 |
white-space: nowrap;
|
741 |
}
|
742 |
|
743 |
-
|
744 |
width: 23%;
|
745 |
text-align: left !important;
|
746 |
}
|
747 |
-
|
748 |
width: 100%;
|
|
|
749 |
}
|
750 |
-
|
751 |
padding-right: 1em;
|
|
|
|
|
|
|
|
|
752 |
}
|
753 |
|
754 |
@media screen and (max-width: 700px) {
|
755 |
#crb-scan-display div.scan-tile,
|
756 |
-
|
757 |
float: none;
|
758 |
width: 100%;
|
759 |
text-align: center;
|
@@ -763,10 +774,18 @@ body.wp-cerber_page_cerber-integrity {
|
|
763 |
text-align: center;
|
764 |
}
|
765 |
|
766 |
-
|
767 |
width: auto;
|
768 |
margin: 0 auto;
|
769 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
770 |
}
|
771 |
|
772 |
#crb-browse-files {
|
708 |
border-bottom: none;
|
709 |
/*margin-bottom: 10px;*/
|
710 |
}
|
711 |
+
#crb-the-table {
|
712 |
+
display: table;
|
713 |
+
width: 100%;
|
714 |
+
}
|
715 |
#crb-scan-details {
|
716 |
padding: 0;
|
717 |
border: solid #E5E5E5 2px;
|
722 |
transition: height 2s;
|
723 |
}
|
724 |
#crb-scan-display div.scan-tile {
|
725 |
+
/*float: left;*/
|
726 |
+
display: table-cell;
|
727 |
+
width: 25%;
|
728 |
+
vertical-align: middle;
|
729 |
+
/*width: auto;*/
|
730 |
text-align: center;
|
731 |
}
|
732 |
#crb-scan-display div.scan-tile div {
|
733 |
display: inline-block;
|
734 |
+
text-align: center;
|
735 |
}
|
736 |
#crb-scan-display div div p:first-of-type {
|
737 |
font-size: 200%;
|
746 |
white-space: nowrap;
|
747 |
}
|
748 |
|
749 |
+
.crb-scan-info {
|
750 |
width: 23%;
|
751 |
text-align: left !important;
|
752 |
}
|
753 |
+
.crb-scan-info table {
|
754 |
width: 100%;
|
755 |
+
padding-right: 2em;
|
756 |
}
|
757 |
+
.crb-scan-info table td:first-child{
|
758 |
padding-right: 1em;
|
759 |
+
color: #555;
|
760 |
+
}
|
761 |
+
.crb-scan-info table td:last-child{
|
762 |
+
color: #000;
|
763 |
}
|
764 |
|
765 |
@media screen and (max-width: 700px) {
|
766 |
#crb-scan-display div.scan-tile,
|
767 |
+
.crb-scan-info {
|
768 |
float: none;
|
769 |
width: 100%;
|
770 |
text-align: center;
|
774 |
text-align: center;
|
775 |
}
|
776 |
|
777 |
+
.crb-scan-info table {
|
778 |
width: auto;
|
779 |
margin: 0 auto;
|
780 |
}
|
781 |
+
|
782 |
+
#crb-the-table {
|
783 |
+
display: block;
|
784 |
+
}
|
785 |
+
|
786 |
+
#crb-scan-display div.scan-tile {
|
787 |
+
display: block;
|
788 |
+
}
|
789 |
}
|
790 |
|
791 |
#crb-browse-files {
|
assets/icons/fonts/crb.svg
CHANGED
@@ -36,4 +36,8 @@
|
|
36 |
<glyph unicode="" glyph-name="bxs-shield-alt" d="M244.694-98.091c3.456-2.154 7.381-3.243 11.306-3.243s7.851 1.088 11.307 3.243c178.624 111.659 180.693 287.957 180.693 295.424 0 7.36-3.798 14.186-10.026 18.090l-170.666 106.667c-6.912 4.33-15.702 4.33-22.635 0l-170.667-106.667c-6.208-3.904-10.005-10.731-10.005-18.090 0-7.466 2.070-183.765 180.694-295.424zM256 261.334l128-74.667c0 0-3.541-117.333-128-224v298.666z" />
|
37 |
<glyph unicode="" glyph-name="bxs-slider-alt" d="M362.666 176c-27.776 0-51.221-17.877-60.053-42.666h-259.947v-42.666h259.947c8.832-24.768 32.298-42.666 60.053-42.666s51.221 17.899 60.053 42.666h46.613v42.666h-46.613c-8.832 24.79-32.277 42.666-60.053 42.666zM149.333 48c-27.776 0-51.221-17.899-60.053-42.666h-46.614v-42.666h46.614c8.832-24.768 32.278-42.666 60.053-42.666s51.221 17.899 60.054 42.666h259.947v42.666h-259.947c-8.832 24.768-32.278 42.666-60.053 42.666zM273.387 261.334c-8.832 24.789-32.278 42.666-60.053 42.666s-51.221-17.877-60.053-42.666h-110.614v-42.667h110.614c8.832-24.79 32.278-42.667 60.053-42.667s51.221 17.877 60.053 42.666h195.946v42.666h-195.947z" />
|
38 |
<glyph unicode="" glyph-name="bxs-world" d="M256 325.334c-117.632 0-213.333-95.702-213.333-213.334s95.701-213.333 213.333-213.333 213.333 95.702 213.333 213.333-95.702 213.334-213.333 213.334zM192-46.101v30.101l-64 64v42.666l-21.334 42.666h-19.861c9.664 77.034 70.827 138.197 147.862 147.861v-19.861l-21.333-42.666-42.666-42.666-21.334-42.666 21.334-42.666h21.334l21.334-21.334h42.666v-42.666l-40.192-80.363c-8.171 1.984-16.149 4.48-23.808 7.594zM376.618-8.618l-13.952 13.952-21.334 42.666-21.334 21.334-21.334 20.992 21.334 21.674 42.666 21.334v21.334l-21.334 21.334 21.334 42.666v26.346c38.954-31.296 64-79.254 64-133.014 0-47.040-19.136-89.707-50.048-120.618z" />
|
|
|
|
|
|
|
|
|
39 |
</font></defs></svg>
|
36 |
<glyph unicode="" glyph-name="bxs-shield-alt" d="M244.694-98.091c3.456-2.154 7.381-3.243 11.306-3.243s7.851 1.088 11.307 3.243c178.624 111.659 180.693 287.957 180.693 295.424 0 7.36-3.798 14.186-10.026 18.090l-170.666 106.667c-6.912 4.33-15.702 4.33-22.635 0l-170.667-106.667c-6.208-3.904-10.005-10.731-10.005-18.090 0-7.466 2.070-183.765 180.694-295.424zM256 261.334l128-74.667c0 0-3.541-117.333-128-224v298.666z" />
|
37 |
<glyph unicode="" glyph-name="bxs-slider-alt" d="M362.666 176c-27.776 0-51.221-17.877-60.053-42.666h-259.947v-42.666h259.947c8.832-24.768 32.298-42.666 60.053-42.666s51.221 17.899 60.053 42.666h46.613v42.666h-46.613c-8.832 24.79-32.277 42.666-60.053 42.666zM149.333 48c-27.776 0-51.221-17.899-60.053-42.666h-46.614v-42.666h46.614c8.832-24.768 32.278-42.666 60.053-42.666s51.221 17.899 60.054 42.666h259.947v42.666h-259.947c-8.832 24.768-32.278 42.666-60.053 42.666zM273.387 261.334c-8.832 24.789-32.278 42.666-60.053 42.666s-51.221-17.877-60.053-42.666h-110.614v-42.667h110.614c8.832-24.79 32.278-42.667 60.053-42.667s51.221 17.877 60.053 42.666h195.946v42.666h-195.947z" />
|
38 |
<glyph unicode="" glyph-name="bxs-world" d="M256 325.334c-117.632 0-213.333-95.702-213.333-213.334s95.701-213.333 213.333-213.333 213.333 95.702 213.333 213.333-95.702 213.334-213.333 213.334zM192-46.101v30.101l-64 64v42.666l-21.334 42.666h-19.861c9.664 77.034 70.827 138.197 147.862 147.861v-19.861l-21.333-42.666-42.666-42.666-21.334-42.666 21.334-42.666h21.334l21.334-21.334h42.666v-42.666l-40.192-80.363c-8.171 1.984-16.149 4.48-23.808 7.594zM376.618-8.618l-13.952 13.952-21.334 42.666-21.334 21.334-21.334 20.992 21.334 21.674 42.666 21.334v21.334l-21.334 21.334 21.334 42.666v26.346c38.954-31.296 64-79.254 64-133.014 0-47.040-19.136-89.707-50.048-120.618z" />
|
39 |
+
<glyph unicode="" glyph-name="bxl-google" d="M432.704 147.072h-177.643v-73.621h102.23c-9.514-46.784-49.344-73.664-102.23-73.664-62.357 0-112.619 50.262-112.619 112.64 0 62.358 50.262 112.618 112.618 112.618 26.858 0 51.136-9.536 70.186-25.131l55.466 55.446c-33.792 29.462-77.12 47.637-125.654 47.637-105.685 0-190.592-84.885-190.592-190.592s84.886-190.592 190.592-190.592c95.296 0 181.952 69.312 181.952 190.592 0 11.264-1.728 23.403-4.31 34.667z" />
|
40 |
+
<glyph unicode="" glyph-name="bx-bug" d="M422.4 101.334c0 10.923-0.918 21.547-2.262 32h47.914v42.666h-57.493c-8.389 25.751-20.612 48.074-36.209 67.58l0.327-0.422 45.76 45.76-30.166 30.165-46.166-46.144c-25.579 19.563-55.723 31.062-88.106 31.062s-62.528-11.499-88.106-31.062l-46.144 46.144-30.166-30.165 45.76-45.76c-15.27-19.083-27.493-41.405-35.457-65.659l-0.426-1.498h-58.794v-42.666h49.216c-1.365-10.453-2.282-21.077-2.282-32 0-10.986 0.918-21.718 2.304-32.234h-49.237v-42.666h58.859c4.864-14.784 11.094-28.714 18.517-41.558l-49.792-49.792 30.165-30.166 45.184 45.184c29.418-31.872 68.032-51.435 110.4-51.435s80.981 19.563 110.4 51.435l45.184-45.184 30.166 30.166-49.792 49.792c7.445 12.842 13.675 26.774 18.517 41.558h58.858v42.666h-49.259c1.408 10.517 2.325 21.248 2.325 32.234zM256 261.334c47.382 0 88.555-34.646 109.355-85.334h-218.709c20.8 50.688 61.974 85.334 109.355 85.334zM277.334-56.106v146.774h-42.666v-146.774c-58.090 13.12-102.4 78.656-102.4 157.44 0 10.965 0.853 21.654 2.496 32h242.453c1.642-10.346 2.496-21.035 2.496-32 0.022-78.805-44.288-144.32-102.379-157.44z" />
|
41 |
+
<glyph unicode="" glyph-name="bx-chip" d="M426.666 261.334c0 11.782-9.551 21.334-21.334 21.334v0h-42.666v42.666h-42.666v-42.666h-42.666v42.666h-42.666v-42.666h-42.666v42.666h-42.666v-42.666h-42.666c-11.782 0-21.334-9.552-21.334-21.334v0-42.667h-42.666v-42.667h42.666v-42.666h-42.666v-42.666h42.666v-42.666h-42.666v-42.666h42.666v-42.666c0-11.782 9.552-21.334 21.334-21.334v0h42.666v-42.666h42.666v42.666h42.666v-42.666h42.666v42.666h42.666v-42.666h42.666v42.666h42.666c11.782 0 21.334 9.551 21.334 21.334v0 42.666h42.666v42.666h-42.666v42.666h42.666v42.666h-42.666v42.666h42.666v42.666h-42.666v42.666zM384-16h-256v256h256v-256zM213.333 154.667h85.333v-85.333h-85.334z" />
|
42 |
+
<glyph unicode="" glyph-name="bx-trash" d="M106.666-80c0-11.782 9.552-21.334 21.334-21.334v0h256c11.782 0 21.334 9.551 21.334 21.334v0 277.334h42.666v42.666h-106.666v64c0 11.782-9.551 21.334-21.334 21.334v0h-128c-11.782 0-21.334-9.551-21.334-21.334v0-64h-106.666v-42.666h42.666v-277.334zM213.333 282.666h85.333v-42.666h-85.334v42.666zM192 197.333h170.667v-256h-213.333v256h42.667zM192 154.667h42.666v-170.667h-42.666zM277.334 154.667h42.666v-170.667h-42.666z" />
|
43 |
</font></defs></svg>
|
assets/icons/fonts/crb.ttf
CHANGED
Binary file
|
assets/icons/fonts/crb.woff
CHANGED
Binary file
|
assets/icons/style.css
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
@font-face {
|
2 |
font-family: 'crb';
|
3 |
src:
|
4 |
-
url('fonts/crb.ttf?
|
5 |
-
url('fonts/crb.woff?
|
6 |
-
url('fonts/crb.svg?
|
7 |
font-weight: normal;
|
8 |
font-style: normal;
|
9 |
}
|
@@ -23,15 +23,24 @@
|
|
23 |
-moz-osx-font-smoothing: grayscale;
|
24 |
}
|
25 |
|
|
|
|
|
|
|
26 |
.crb-icon-bx-bell:before {
|
27 |
content: "\e200";
|
28 |
}
|
29 |
.crb-icon-bx-briefcase-alt:before {
|
30 |
content: "\e201";
|
31 |
}
|
|
|
|
|
|
|
32 |
.crb-icon-bx-bulb:before {
|
33 |
content: "\e202";
|
34 |
}
|
|
|
|
|
|
|
35 |
.crb-icon-bx-cog:before {
|
36 |
content: "\e203";
|
37 |
}
|
@@ -83,6 +92,9 @@
|
|
83 |
.crb-icon-bx-time:before {
|
84 |
content: "\e219";
|
85 |
}
|
|
|
|
|
|
|
86 |
.crb-icon-bx-wrench:before {
|
87 |
content: "\e220";
|
88 |
}
|
1 |
@font-face {
|
2 |
font-family: 'crb';
|
3 |
src:
|
4 |
+
url('fonts/crb.ttf?d0sjso') format('truetype'),
|
5 |
+
url('fonts/crb.woff?d0sjso') format('woff'),
|
6 |
+
url('fonts/crb.svg?d0sjso#crb') format('svg');
|
7 |
font-weight: normal;
|
8 |
font-style: normal;
|
9 |
}
|
23 |
-moz-osx-font-smoothing: grayscale;
|
24 |
}
|
25 |
|
26 |
+
.crb-icon-bxl-google:before {
|
27 |
+
content: "\e908";
|
28 |
+
}
|
29 |
.crb-icon-bx-bell:before {
|
30 |
content: "\e200";
|
31 |
}
|
32 |
.crb-icon-bx-briefcase-alt:before {
|
33 |
content: "\e201";
|
34 |
}
|
35 |
+
.crb-icon-bx-bug:before {
|
36 |
+
content: "\e949";
|
37 |
+
}
|
38 |
.crb-icon-bx-bulb:before {
|
39 |
content: "\e202";
|
40 |
}
|
41 |
+
.crb-icon-bx-chip:before {
|
42 |
+
content: "\e970";
|
43 |
+
}
|
44 |
.crb-icon-bx-cog:before {
|
45 |
content: "\e203";
|
46 |
}
|
92 |
.crb-icon-bx-time:before {
|
93 |
content: "\e219";
|
94 |
}
|
95 |
+
.crb-icon-bx-trash:before {
|
96 |
+
content: "\ea98";
|
97 |
+
}
|
98 |
.crb-icon-bx-wrench:before {
|
99 |
content: "\e220";
|
100 |
}
|
assets/scanner.js
CHANGED
@@ -194,6 +194,13 @@ jQuery(document).ready(function ($) {
|
|
194 |
$("#crb-performance").html(scanner_data.performance);
|
195 |
$("#crb-smode").html(smode);
|
196 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
$("#crb-total-files").html(scanner_data.total.files);
|
198 |
$("#crb-scanned-files").html(scanner_data.scanned.files);
|
199 |
|
194 |
$("#crb-performance").html(scanner_data.performance);
|
195 |
$("#crb-smode").html(smode);
|
196 |
|
197 |
+
$.each(scanner_data.numbers, function (type, value) {
|
198 |
+
var e = document.getElementById("crb-numbers-" + type);
|
199 |
+
if (e) {
|
200 |
+
$(e).text(value);
|
201 |
+
}
|
202 |
+
});
|
203 |
+
|
204 |
$("#crb-total-files").html(scanner_data.total.files);
|
205 |
$("#crb-scanned-files").html(scanner_data.scanned.files);
|
206 |
|
cerber-lab.php
CHANGED
@@ -524,26 +524,17 @@ function lab_is_cloud_ok(){
|
|
524 |
* @param $details
|
525 |
*/
|
526 |
function lab_save_push( $ip, $reason_id, $details ) {
|
527 |
-
global $wpdb;
|
528 |
$ip = filter_var( $ip, FILTER_VALIDATE_IP );
|
529 |
if ( ! $ip || is_ip_private( $ip ) || cerber_acl_check( $ip, 'W' ) || ! ( crb_get_settings( 'cerberlab' ) || lab_lab() ) ) {
|
530 |
return;
|
531 |
}
|
532 |
$reason_id = absint( $reason_id );
|
533 |
-
if ($reason_id == 8 || $reason_id == 9){
|
534 |
$details = array( 'uri' => $_SERVER['REQUEST_URI'] );
|
535 |
}
|
536 |
if ( is_array( $details ) ) {
|
537 |
$details = serialize( $details );
|
538 |
}
|
539 |
-
/*
|
540 |
-
$wpdb->insert( CERBER_LAB_TABLE, array(
|
541 |
-
'ip' => $ip,
|
542 |
-
'reason_id' => $reason_id,
|
543 |
-
'details' => $details,
|
544 |
-
'stamp' => time(),
|
545 |
-
), array( '%s', '%d', '%s', '%d' ) );
|
546 |
-
*/
|
547 |
$details = cerber_real_escape( $details );
|
548 |
cerber_db_query( 'INSERT INTO ' . CERBER_LAB_TABLE . ' (ip, reason_id, details, stamp) VALUES ("' . $ip . '",' . $reason_id . ',"' . $details . '",' . time() . ')' );
|
549 |
}
|
@@ -672,6 +663,7 @@ function lab_validate_lic( $lic = '' ) {
|
|
672 |
}
|
673 |
|
674 |
if ( ! $ret || empty( $ret['response']['expires_gmt'] ) ) {
|
|
|
675 |
$expires = 0;
|
676 |
}
|
677 |
else {
|
524 |
* @param $details
|
525 |
*/
|
526 |
function lab_save_push( $ip, $reason_id, $details ) {
|
|
|
527 |
$ip = filter_var( $ip, FILTER_VALIDATE_IP );
|
528 |
if ( ! $ip || is_ip_private( $ip ) || cerber_acl_check( $ip, 'W' ) || ! ( crb_get_settings( 'cerberlab' ) || lab_lab() ) ) {
|
529 |
return;
|
530 |
}
|
531 |
$reason_id = absint( $reason_id );
|
532 |
+
if ( $reason_id == 8 || $reason_id == 9 ) {
|
533 |
$details = array( 'uri' => $_SERVER['REQUEST_URI'] );
|
534 |
}
|
535 |
if ( is_array( $details ) ) {
|
536 |
$details = serialize( $details );
|
537 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
538 |
$details = cerber_real_escape( $details );
|
539 |
cerber_db_query( 'INSERT INTO ' . CERBER_LAB_TABLE . ' (ip, reason_id, details, stamp) VALUES ("' . $ip . '",' . $reason_id . ',"' . $details . '",' . time() . ')' );
|
540 |
}
|
663 |
}
|
664 |
|
665 |
if ( ! $ret || empty( $ret['response']['expires_gmt'] ) ) {
|
666 |
+
cerber_admin_notice( 'A network error occurred while verifying the license key. Please try again in a couple of minutes.' );
|
667 |
$expires = 0;
|
668 |
}
|
669 |
else {
|
cerber-load.php
CHANGED
@@ -83,6 +83,8 @@ define( 'CERBER_TECH', 'https://cerber.tech/' );
|
|
83 |
|
84 |
define( 'CERBER_CIREC_LIMIT', 50 ); // Upper limit for allowed nested values during inspection for malware
|
85 |
|
|
|
|
|
86 |
require_once( dirname( __FILE__ ) . '/cerber-pluggable.php' );
|
87 |
require_once( dirname( __FILE__ ) . '/common.php' );
|
88 |
require_once( dirname( __FILE__ ) . '/settings.php' );
|
@@ -258,7 +260,7 @@ class WP_Cerber {
|
|
258 |
$deny = false;
|
259 |
$act = 18;
|
260 |
if ( cerber_is_http_post() ) {
|
261 |
-
if ( ! cerber_is_allowed() ) {
|
262 |
$deny = true;
|
263 |
$act = 18;
|
264 |
}
|
@@ -369,7 +371,8 @@ class WP_Cerber {
|
|
369 |
$min = 1 + ( $block->block_until - time() ) / 60;
|
370 |
|
371 |
return apply_filters( 'cerber_msg_reached',
|
372 |
-
sprintf( __( 'You have reached the login attempts limit. Please try again in %d minutes.', 'wp-cerber' ), $min ),
|
|
|
373 |
$min );
|
374 |
break;
|
375 |
default:
|
@@ -869,9 +872,9 @@ function cerber_wp_login_page() {
|
|
869 |
* @return bool
|
870 |
*/
|
871 |
function cerber_is_login_request() {
|
872 |
-
|
873 |
|
874 |
-
|
875 |
return $ret;
|
876 |
}
|
877 |
|
@@ -888,8 +891,8 @@ function cerber_is_login_request() {
|
|
888 |
$ret = true;
|
889 |
}
|
890 |
}
|
891 |
-
|
892 |
-
|
893 |
$ret = true;
|
894 |
}
|
895 |
|
@@ -1016,9 +1019,12 @@ function cerber_stop_authentication( $user, $password ) {
|
|
1016 |
return $user;
|
1017 |
}
|
1018 |
|
1019 |
-
|
|
|
1020 |
* Handler for failed login attempts
|
1021 |
*
|
|
|
|
|
1022 |
*/
|
1023 |
//add_action( 'wp_login_failed', 'cerber_login_failed' ); // @since 4.18
|
1024 |
function cerber_login_failed( $user_login ) {
|
@@ -1636,14 +1642,14 @@ function cerber_access_control() {
|
|
1636 |
* Antispam & Antibot for forms
|
1637 |
*
|
1638 |
*/
|
1639 |
-
function cerber_post_control(){
|
1640 |
-
|
1641 |
|
1642 |
-
if ( !cerber_is_http_post() || cerber_acl_check( null, 'W' ) ) {
|
1643 |
return;
|
1644 |
}
|
1645 |
|
1646 |
-
if ( !cerber_antibot_enabled('botsany') && !cerber_geo_rules('geo_submit')) {
|
1647 |
return;
|
1648 |
}
|
1649 |
|
@@ -1659,24 +1665,24 @@ function cerber_post_control(){
|
|
1659 |
|
1660 |
if ( ! cerber_is_allowed() ) {
|
1661 |
$deny = true;
|
1662 |
-
cerber_log(18);
|
1663 |
}
|
1664 |
-
|
1665 |
$deny = true;
|
1666 |
cerber_log( 17 );
|
1667 |
}
|
1668 |
-
|
1669 |
-
$deny
|
1670 |
$cerber_status = 16; // TODO: refactor cerber_log, include this status as a second parameter
|
1671 |
cerber_log( 18 );
|
1672 |
}
|
1673 |
-
|
1674 |
-
$deny
|
1675 |
$cerber_status = 18;
|
1676 |
cerber_log( 18 );
|
1677 |
}
|
1678 |
|
1679 |
-
if ($deny){
|
1680 |
cerber_forbidden_page();
|
1681 |
}
|
1682 |
|
@@ -2431,7 +2437,7 @@ function cerber_block_add( $ip = '', $reason_id = 1, $details = '', $duration =
|
|
2431 |
|
2432 |
//$wp_cerber->setProcessed();
|
2433 |
|
2434 |
-
if ( empty($ip) ) {
|
2435 |
$ip = $wp_cerber->getRemoteIp();
|
2436 |
}
|
2437 |
|
@@ -2473,7 +2479,8 @@ function cerber_block_add( $ip = '', $reason_id = 1, $details = '', $duration =
|
|
2473 |
$result = $wpdb->insert( CERBER_BLOCKS_TABLE, array(
|
2474 |
'ip' => $ip,
|
2475 |
'block_until' => $until,
|
2476 |
-
'reason' => $reason
|
|
|
2477 |
), array( '%s', '%d', '%s' ) );
|
2478 |
|
2479 |
if ( $result ) {
|
@@ -2516,7 +2523,9 @@ function cerber_block_delete( $ip ) {
|
|
2516 |
function cerber_block_check( $ip = '' ) {
|
2517 |
|
2518 |
// @since 4.8
|
2519 |
-
if (cerber_get_block($ip))
|
|
|
|
|
2520 |
|
2521 |
return false;
|
2522 |
}
|
@@ -2530,7 +2539,7 @@ function cerber_block_check( $ip = '' ) {
|
|
2530 |
* @return object|bool object if IP is locked out, false otherwise
|
2531 |
*/
|
2532 |
function cerber_get_block( $ip = '' ) {
|
2533 |
-
global $
|
2534 |
|
2535 |
if ( ! $ip ) {
|
2536 |
$wp_cerber = get_wp_cerber();
|
@@ -2546,10 +2555,12 @@ function cerber_get_block( $ip = '' ) {
|
|
2546 |
$subnet = cerber_get_subnet( $ip );
|
2547 |
$where .= ' OR ip = "' . $subnet . '"';
|
2548 |
}
|
2549 |
-
if ( $ret = $wpdb->get_row( 'SELECT * FROM ' . CERBER_BLOCKS_TABLE . $where ) ) {
|
|
|
|
|
|
|
2550 |
return $ret;
|
2551 |
}
|
2552 |
-
|
2553 |
return false;
|
2554 |
}
|
2555 |
|
@@ -2642,11 +2653,12 @@ function cerber_get_remain_count( $ip = '', $check_acl = true, $activity = array
|
|
2642 |
* Is a given IP is allowed to do restricted things?
|
2643 |
* Here Cerber makes its decision.
|
2644 |
*
|
2645 |
-
* @param $ip
|
|
|
2646 |
*
|
2647 |
* @return bool
|
2648 |
*/
|
2649 |
-
function cerber_is_allowed( $ip = '' ) {
|
2650 |
|
2651 |
if ( ! $ip ) {
|
2652 |
$wp_cerber = get_wp_cerber();
|
@@ -2656,11 +2668,7 @@ function cerber_is_allowed( $ip = '' ) {
|
|
2656 |
return false;
|
2657 |
}
|
2658 |
|
2659 |
-
// @since
|
2660 |
-
if ( cerber_block_check( $ip ) ) {
|
2661 |
-
return false;
|
2662 |
-
}
|
2663 |
-
|
2664 |
$tag = cerber_acl_check( $ip );
|
2665 |
if ( $tag == 'W' ) {
|
2666 |
return true;
|
@@ -2669,6 +2677,16 @@ function cerber_is_allowed( $ip = '' ) {
|
|
2669 |
return false;
|
2670 |
}
|
2671 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2672 |
/* @since 4.7.9
|
2673 |
if ( cerber_block_check( $ip ) ) {
|
2674 |
return false;
|
@@ -3404,7 +3422,7 @@ function cerber_send_email( $type = '', $msg = '', $ip = '' ) {
|
|
3404 |
if ($max){
|
3405 |
$last_date = cerber_date( $max );
|
3406 |
//$last = $wpdb->get_row( 'SELECT * FROM ' . CERBER_LOG_TABLE . ' WHERE stamp = ' . $max . ' AND activity IN (10,11)' );
|
3407 |
-
$last = cerber_db_get_row( 'SELECT * FROM ' . CERBER_LOG_TABLE . ' WHERE stamp = ' . $max . ' AND activity IN (10,11)',
|
3408 |
}
|
3409 |
else $last = null;
|
3410 |
if ( ! $last ) { // workaround for the empty log table
|
@@ -3667,9 +3685,14 @@ function cerber_init_cron(){
|
|
3667 |
}
|
3668 |
|
3669 |
add_action( 'cerber_hourly_1', 'cerber_do_hourly' );
|
3670 |
-
function cerber_do_hourly($force = false) {
|
3671 |
global $wpdb, $wp_cerber;
|
3672 |
|
|
|
|
|
|
|
|
|
|
|
3673 |
if (is_multisite()) {
|
3674 |
if ( ! $force && get_site_transient( 'cerber_multisite' ) ) {
|
3675 |
return;
|
@@ -4327,6 +4350,7 @@ function cerber_create_db($recreate = true) {
|
|
4327 |
ip varchar(39) CHARACTER SET ascii NOT NULL COMMENT 'Remote IP',
|
4328 |
block_until bigint(20) unsigned NOT NULL COMMENT 'Unix timestamp',
|
4329 |
reason varchar(250) NOT NULL COMMENT 'Why IP was blocked',
|
|
|
4330 |
UNIQUE KEY ip (ip)
|
4331 |
) DEFAULT CHARSET=utf8 COMMENT='Cerber list of currently blocked IPs';
|
4332 |
";
|
@@ -4506,7 +4530,7 @@ function cerber_upgrade_db( $force = false ) {
|
|
4506 |
}
|
4507 |
|
4508 |
// @since 6.1
|
4509 |
-
if ( $force || !cerber_is_index( CERBER_LOG_TABLE, 'session_index' ) ) {
|
4510 |
$sql[] = 'ALTER TABLE ' . CERBER_LOG_TABLE . ' ADD INDEX session_index (session_id)';
|
4511 |
}
|
4512 |
|
@@ -4518,6 +4542,11 @@ function cerber_upgrade_db( $force = false ) {
|
|
4518 |
$sql[] = 'ALTER TABLE ' . cerber_get_db_prefix() . CERBER_SCAN_TABLE . " ADD file_status INT UNSIGNED NOT NULL DEFAULT '0' AFTER scan_status";
|
4519 |
}
|
4520 |
|
|
|
|
|
|
|
|
|
|
|
4521 |
if (!empty($sql)) {
|
4522 |
foreach ( $sql as $query ) {
|
4523 |
if ( !$wpdb->query( $query ) && $wpdb->last_error ) {
|
@@ -4943,10 +4972,6 @@ function cerber_traffic_log(){
|
|
4943 |
$details[8] = $_COOKIE;
|
4944 |
}
|
4945 |
if ( !empty( $details ) ) {
|
4946 |
-
/*
|
4947 |
-
foreach ( $details as &$detail ) {
|
4948 |
-
$detail = mb_substr($detail, 0, 1048576); // 1 Mb for ASCII
|
4949 |
-
}*/
|
4950 |
$details = cerber_prepare_fields( $details );
|
4951 |
$details = serialize($details);
|
4952 |
}
|
@@ -5374,7 +5399,8 @@ function cerber_inspect_value( &$value = '', $reset = false ) {
|
|
5374 |
|
5375 |
if ( cerber_is_base64_encoded( $value ) ) {
|
5376 |
//$crb_x64 = true;
|
5377 |
-
$
|
|
|
5378 |
}
|
5379 |
else {
|
5380 |
$parsed = cerber_parse_value( $value );
|
@@ -5408,15 +5434,15 @@ function cerber_parse_value( &$value ) {
|
|
5408 |
$ret = array( array(), array() );
|
5409 |
$code_tokens = array( T_STRING, T_EVAL );
|
5410 |
|
5411 |
-
$clean = preg_replace( "/[\r\n\s]+/", '', $value );
|
5412 |
|
5413 |
-
if ( $tokens = token_get_all( '<?php ' . $clean ) ) {
|
5414 |
foreach ( $tokens as $token ) {
|
5415 |
if ( ! is_array( $token ) ) {
|
5416 |
continue;
|
5417 |
}
|
5418 |
if ( in_array( $token[0], $code_tokens ) && isset( $list[ $token[1] ] ) ) {
|
5419 |
-
if ( preg_match( '/' . $token[1] . '\((?!\)).+\)
|
5420 |
$ret[0] = array( $token[0], $list[ $token[1] ] );
|
5421 |
break;
|
5422 |
}
|
83 |
|
84 |
define( 'CERBER_CIREC_LIMIT', 50 ); // Upper limit for allowed nested values during inspection for malware
|
85 |
|
86 |
+
define( 'CERBER_AGGRESSIVE', 1 );
|
87 |
+
|
88 |
require_once( dirname( __FILE__ ) . '/cerber-pluggable.php' );
|
89 |
require_once( dirname( __FILE__ ) . '/common.php' );
|
90 |
require_once( dirname( __FILE__ ) . '/settings.php' );
|
260 |
$deny = false;
|
261 |
$act = 18;
|
262 |
if ( cerber_is_http_post() ) {
|
263 |
+
if ( ! cerber_is_allowed( null, array( 1, 3 ) ) ) {
|
264 |
$deny = true;
|
265 |
$act = 18;
|
266 |
}
|
371 |
$min = 1 + ( $block->block_until - time() ) / 60;
|
372 |
|
373 |
return apply_filters( 'cerber_msg_reached',
|
374 |
+
//sprintf( __( 'You have reached the login attempts limit. Please try again in %d minutes.', 'wp-cerber' ), $min ),
|
375 |
+
sprintf( __( 'You have exceeded the number of allowed login attempts. Please try again in %d minutes.', 'wp-cerber' ), $min ),
|
376 |
$min );
|
377 |
break;
|
378 |
default:
|
872 |
* @return bool
|
873 |
*/
|
874 |
function cerber_is_login_request() {
|
875 |
+
static $ret;
|
876 |
|
877 |
+
if ( isset( $ret ) ) {
|
878 |
return $ret;
|
879 |
}
|
880 |
|
891 |
$ret = true;
|
892 |
}
|
893 |
}
|
894 |
+
//elseif ( strtolower( cerber_parse_uri( true ) ) == WP_LOGIN_SCRIPT ) {
|
895 |
+
elseif ( cerber_get_uri_script() == WP_LOGIN_SCRIPT ) {
|
896 |
$ret = true;
|
897 |
}
|
898 |
|
1019 |
return $user;
|
1020 |
}
|
1021 |
|
1022 |
+
/**
|
1023 |
+
*
|
1024 |
* Handler for failed login attempts
|
1025 |
*
|
1026 |
+
* @param $user_login
|
1027 |
+
*
|
1028 |
*/
|
1029 |
//add_action( 'wp_login_failed', 'cerber_login_failed' ); // @since 4.18
|
1030 |
function cerber_login_failed( $user_login ) {
|
1642 |
* Antispam & Antibot for forms
|
1643 |
*
|
1644 |
*/
|
1645 |
+
function cerber_post_control() {
|
1646 |
+
global $cerber_status;
|
1647 |
|
1648 |
+
if ( ! cerber_is_http_post() || cerber_acl_check( null, 'W' ) ) {
|
1649 |
return;
|
1650 |
}
|
1651 |
|
1652 |
+
if ( ! cerber_antibot_enabled( 'botsany' ) && ! cerber_geo_rules( 'geo_submit' ) ) {
|
1653 |
return;
|
1654 |
}
|
1655 |
|
1665 |
|
1666 |
if ( ! cerber_is_allowed() ) {
|
1667 |
$deny = true;
|
1668 |
+
cerber_log( 18 );
|
1669 |
}
|
1670 |
+
elseif ( cerber_is_bot( 'botsany' ) ) {
|
1671 |
$deny = true;
|
1672 |
cerber_log( 17 );
|
1673 |
}
|
1674 |
+
elseif ( ! cerber_geo_allowed( 'geo_submit' ) ) {
|
1675 |
+
$deny = true;
|
1676 |
$cerber_status = 16; // TODO: refactor cerber_log, include this status as a second parameter
|
1677 |
cerber_log( 18 );
|
1678 |
}
|
1679 |
+
elseif ( lab_is_blocked( null, true ) ) {
|
1680 |
+
$deny = true;
|
1681 |
$cerber_status = 18;
|
1682 |
cerber_log( 18 );
|
1683 |
}
|
1684 |
|
1685 |
+
if ( $deny ) {
|
1686 |
cerber_forbidden_page();
|
1687 |
}
|
1688 |
|
2437 |
|
2438 |
//$wp_cerber->setProcessed();
|
2439 |
|
2440 |
+
if ( empty( $ip ) || ! filter_var( $ip, FILTER_VALIDATE_IP ) ) {
|
2441 |
$ip = $wp_cerber->getRemoteIp();
|
2442 |
}
|
2443 |
|
2479 |
$result = $wpdb->insert( CERBER_BLOCKS_TABLE, array(
|
2480 |
'ip' => $ip,
|
2481 |
'block_until' => $until,
|
2482 |
+
'reason' => $reason,
|
2483 |
+
'reason_id' => absint( $reason_id )
|
2484 |
), array( '%s', '%d', '%s' ) );
|
2485 |
|
2486 |
if ( $result ) {
|
2523 |
function cerber_block_check( $ip = '' ) {
|
2524 |
|
2525 |
// @since 4.8
|
2526 |
+
if ( cerber_get_block( $ip ) ) {
|
2527 |
+
return true;
|
2528 |
+
}
|
2529 |
|
2530 |
return false;
|
2531 |
}
|
2539 |
* @return object|bool object if IP is locked out, false otherwise
|
2540 |
*/
|
2541 |
function cerber_get_block( $ip = '' ) {
|
2542 |
+
global $wp_cerber;
|
2543 |
|
2544 |
if ( ! $ip ) {
|
2545 |
$wp_cerber = get_wp_cerber();
|
2555 |
$subnet = cerber_get_subnet( $ip );
|
2556 |
$where .= ' OR ip = "' . $subnet . '"';
|
2557 |
}
|
2558 |
+
/*if ( $ret = $wpdb->get_row( 'SELECT * FROM ' . CERBER_BLOCKS_TABLE . $where ) ) {
|
2559 |
+
return $ret;
|
2560 |
+
}*/
|
2561 |
+
if ( $ret = cerber_db_get_row( 'SELECT * FROM ' . CERBER_BLOCKS_TABLE . $where, MYSQL_FETCH_OBJECT ) ) {
|
2562 |
return $ret;
|
2563 |
}
|
|
|
2564 |
return false;
|
2565 |
}
|
2566 |
|
2653 |
* Is a given IP is allowed to do restricted things?
|
2654 |
* Here Cerber makes its decision.
|
2655 |
*
|
2656 |
+
* @param string $ip IP address
|
2657 |
+
* @param array $allowed a list of reason ids @since 7.5.2
|
2658 |
*
|
2659 |
* @return bool
|
2660 |
*/
|
2661 |
+
function cerber_is_allowed( $ip = '', $allowed = array() ) {
|
2662 |
|
2663 |
if ( ! $ip ) {
|
2664 |
$wp_cerber = get_wp_cerber();
|
2668 |
return false;
|
2669 |
}
|
2670 |
|
2671 |
+
// @since 7.5.2
|
|
|
|
|
|
|
|
|
2672 |
$tag = cerber_acl_check( $ip );
|
2673 |
if ( $tag == 'W' ) {
|
2674 |
return true;
|
2677 |
return false;
|
2678 |
}
|
2679 |
|
2680 |
+
// @since 4.7.9
|
2681 |
+
if ( $b = cerber_get_block( $ip ) ) {
|
2682 |
+
if ( empty( $allowed ) ) {
|
2683 |
+
return false;
|
2684 |
+
}
|
2685 |
+
elseif ( ! in_array( $b->reason_id, $allowed ) ) {
|
2686 |
+
return false;
|
2687 |
+
}
|
2688 |
+
}
|
2689 |
+
|
2690 |
/* @since 4.7.9
|
2691 |
if ( cerber_block_check( $ip ) ) {
|
2692 |
return false;
|
3422 |
if ($max){
|
3423 |
$last_date = cerber_date( $max );
|
3424 |
//$last = $wpdb->get_row( 'SELECT * FROM ' . CERBER_LOG_TABLE . ' WHERE stamp = ' . $max . ' AND activity IN (10,11)' );
|
3425 |
+
$last = cerber_db_get_row( 'SELECT * FROM ' . CERBER_LOG_TABLE . ' WHERE stamp = ' . $max . ' AND activity IN (10,11)', MYSQL_FETCH_OBJECT );
|
3426 |
}
|
3427 |
else $last = null;
|
3428 |
if ( ! $last ) { // workaround for the empty log table
|
3685 |
}
|
3686 |
|
3687 |
add_action( 'cerber_hourly_1', 'cerber_do_hourly' );
|
3688 |
+
function cerber_do_hourly( $force = false ) {
|
3689 |
global $wpdb, $wp_cerber;
|
3690 |
|
3691 |
+
// Avoid multiple executions on a weird hosting
|
3692 |
+
if ( ( $hour = get_site_transient( 'crb_hourly_1' ) ) && $hour == date( 'G' ) ) {
|
3693 |
+
return;
|
3694 |
+
}
|
3695 |
+
|
3696 |
if (is_multisite()) {
|
3697 |
if ( ! $force && get_site_transient( 'cerber_multisite' ) ) {
|
3698 |
return;
|
4350 |
ip varchar(39) CHARACTER SET ascii NOT NULL COMMENT 'Remote IP',
|
4351 |
block_until bigint(20) unsigned NOT NULL COMMENT 'Unix timestamp',
|
4352 |
reason varchar(250) NOT NULL COMMENT 'Why IP was blocked',
|
4353 |
+
reason_id int(11) unsigned NOT NULL DEFAULT '0',
|
4354 |
UNIQUE KEY ip (ip)
|
4355 |
) DEFAULT CHARSET=utf8 COMMENT='Cerber list of currently blocked IPs';
|
4356 |
";
|
4530 |
}
|
4531 |
|
4532 |
// @since 6.1
|
4533 |
+
if ( $force || ! cerber_is_index( CERBER_LOG_TABLE, 'session_index' ) ) {
|
4534 |
$sql[] = 'ALTER TABLE ' . CERBER_LOG_TABLE . ' ADD INDEX session_index (session_id)';
|
4535 |
}
|
4536 |
|
4542 |
$sql[] = 'ALTER TABLE ' . cerber_get_db_prefix() . CERBER_SCAN_TABLE . " ADD file_status INT UNSIGNED NOT NULL DEFAULT '0' AFTER scan_status";
|
4543 |
}
|
4544 |
|
4545 |
+
// @since 7.5.2
|
4546 |
+
if ( $force || ! cerber_is_column( CERBER_BLOCKS_TABLE, 'reason_id' ) ) {
|
4547 |
+
$sql[] = 'ALTER TABLE ' . CERBER_BLOCKS_TABLE . ' ADD reason_id int(11) unsigned NOT NULL DEFAULT "0"';
|
4548 |
+
}
|
4549 |
+
|
4550 |
if (!empty($sql)) {
|
4551 |
foreach ( $sql as $query ) {
|
4552 |
if ( !$wpdb->query( $query ) && $wpdb->last_error ) {
|
4972 |
$details[8] = $_COOKIE;
|
4973 |
}
|
4974 |
if ( !empty( $details ) ) {
|
|
|
|
|
|
|
|
|
4975 |
$details = cerber_prepare_fields( $details );
|
4976 |
$details = serialize($details);
|
4977 |
}
|
5399 |
|
5400 |
if ( cerber_is_base64_encoded( $value ) ) {
|
5401 |
//$crb_x64 = true;
|
5402 |
+
$varbyref = base64_decode( $value );
|
5403 |
+
$found = cerber_inspect_value( $varbyref );
|
5404 |
}
|
5405 |
else {
|
5406 |
$parsed = cerber_parse_value( $value );
|
5434 |
$ret = array( array(), array() );
|
5435 |
$code_tokens = array( T_STRING, T_EVAL );
|
5436 |
|
5437 |
+
$clean = preg_replace( "/[\r\n\s]+/", '', cerber_remove_comments( $value ) );
|
5438 |
|
5439 |
+
if ( $tokens = @token_get_all( '<?php ' . $clean ) ) {
|
5440 |
foreach ( $tokens as $token ) {
|
5441 |
if ( ! is_array( $token ) ) {
|
5442 |
continue;
|
5443 |
}
|
5444 |
if ( in_array( $token[0], $code_tokens ) && isset( $list[ $token[1] ] ) ) {
|
5445 |
+
if ( preg_match( '/' . $token[1] . '\((?!\)).+\)/i', $clean ) ) {
|
5446 |
$ret[0] = array( $token[0], $list[ $token[1] ] );
|
5447 |
break;
|
5448 |
}
|
cerber-news.php
CHANGED
@@ -161,6 +161,12 @@ function cerber_push_the_news( $version ) {
|
|
161 |
$news['7.5'][] = 'Now the plugin inspects user sign ups (user registrations) on multisite WordPress installations and BuddyPress.';
|
162 |
$news['7.5'][] = 'The search for user activity, as well as enabling activity notifications, is improved.';
|
163 |
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
if ( ! empty( $news[ $version ] ) ) {
|
165 |
//$text = '<h3>What\'s new in WP Cerber '.$version.'</h3>';
|
166 |
|
161 |
$news['7.5'][] = 'Now the plugin inspects user sign ups (user registrations) on multisite WordPress installations and BuddyPress.';
|
162 |
$news['7.5'][] = 'The search for user activity, as well as enabling activity notifications, is improved.';
|
163 |
|
164 |
+
$news['7.6'][] = 'The quarantine has got a separate admin page in the WordPress dashboard which allows viewing deleted files, restoring or deleting them.';
|
165 |
+
$news['7.6'][] = 'Now the malware scanner and integrity checker supports multisite WordPress installations.';
|
166 |
+
$news['7.6'][] = 'Bug fixed: Once an address IP has been locked out after reaching the limit to the number of attempts to log in the "We’re sorry, you are not allowed to proceed" forbidden page is being displayed instead of the normal user message "You have exceeded the number of allowed login attempts".';
|
167 |
+
$news['7.6'][] = 'Bug fixed: PHP Notice: Only variables should be passed by reference in cerber-load.php on line 5377';
|
168 |
+
|
169 |
+
|
170 |
if ( ! empty( $news[ $version ] ) ) {
|
171 |
//$text = '<h3>What\'s new in WP Cerber '.$version.'</h3>';
|
172 |
|
cerber-scanner.php
CHANGED
@@ -49,7 +49,6 @@ define( 'CERBER_MAX_SECONDS_CLOUD', 25 );
|
|
49 |
define( 'CERBER_FOK', 1 );
|
50 |
define( 'CERBER_VULN', 4 );
|
51 |
define( 'CERBER_NOHASH', 5 );
|
52 |
-
|
53 |
define( 'CERBER_IMD', 15 );
|
54 |
define( 'CERBER_SCF', 16 );
|
55 |
define( 'CERBER_PMC', 17 );
|
@@ -71,7 +70,7 @@ define( 'CRB_SCAN_DTE', '__CERBER__SECURITY_SCAN_DATA_E' );
|
|
71 |
|
72 |
function cerber_integrity_page() {
|
73 |
|
74 |
-
$tab = cerber_get_tab( 'scanner', array( 'scanner', 'scan_settings', 'scan_schedule', 'help' ) );
|
75 |
|
76 |
?>
|
77 |
<div class="wrap crb-admin">
|
@@ -79,14 +78,15 @@ function cerber_integrity_page() {
|
|
79 |
<h1><?php _e( 'Site Integrity', 'wp-cerber' ) ?></h1>
|
80 |
|
81 |
<h2 class="nav-tab-wrapper cerber-tabs">
|
82 |
-
|
83 |
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
|
|
88 |
|
89 |
-
|
90 |
?>
|
91 |
</h2>
|
92 |
|
@@ -103,6 +103,9 @@ function cerber_integrity_page() {
|
|
103 |
case 'scan_schedule':
|
104 |
cerber_show_settings_page( 'schedule' );
|
105 |
break;
|
|
|
|
|
|
|
106 |
case 'help':
|
107 |
cerber_show_help();
|
108 |
break;
|
@@ -429,6 +432,7 @@ function cerber_scanner( $control, $mode ) {
|
|
429 |
if ( ! cerber_is_cloud_request() ) {
|
430 |
$response['step_issues'] = $scan['step_issues'];
|
431 |
$response['scanned'] = $scan['scanned'];
|
|
|
432 |
|
433 |
$response['started'] = cerber_date( $scan['started'] );
|
434 |
$response['elapsed'] = time() - $scan['started'];
|
@@ -611,6 +615,8 @@ function cerber_step_scanning() {
|
|
611 |
|
612 |
$update['issues'] = cerber_merge_issues( $scan['issues'], $scan['step_issues'] );
|
613 |
|
|
|
|
|
614 |
$ret = cerber_update_scan( $update );
|
615 |
|
616 |
if ( isset( $update['finished'] ) || isset( $update['aborted'] ) ) {
|
@@ -821,7 +827,8 @@ function cerber_delete_old_scans() {
|
|
821 |
}
|
822 |
|
823 |
$keep = array_merge( $q_list, $f_list );
|
824 |
-
|
|
|
825 |
$delete = array_diff( $all, $keep );
|
826 |
|
827 |
if ( ! $delete ) {
|
@@ -1055,7 +1062,16 @@ function cerber_merge_issues( $issues1, $issues2 ) {
|
|
1055 |
* @return int|mixed
|
1056 |
*/
|
1057 |
function cerber_calculate_risk( $issue ) {
|
1058 |
-
$risk = array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1059 |
|
1060 |
if ( isset( $risk[ $issue[0] ] ) ) {
|
1061 |
return $risk[ $issue[0] ];
|
@@ -1095,6 +1111,7 @@ function cerber_calculate_risk( $issue ) {
|
|
1095 |
case CERBER_USF:
|
1096 |
case CERBER_SCF:
|
1097 |
case CERBER_PMC:
|
|
|
1098 |
if ( $size_factor ) {
|
1099 |
return $size_factor;
|
1100 |
}
|
@@ -1461,7 +1478,7 @@ function cerber_verify_wp() {
|
|
1461 |
|
1462 |
// In case the default name 'wp-content' of the CONTENT folder has been changed
|
1463 |
|
1464 |
-
$wp_content_dir = basename(
|
1465 |
if ( $wp_content_dir != 'wp-content' ) {
|
1466 |
$new_data = array();
|
1467 |
foreach ( $data as $key => $item ) {
|
@@ -1500,14 +1517,14 @@ function _crb_not_existing( $file_name ) {
|
|
1500 |
static $themes_prefix, $plugins_prefix;
|
1501 |
|
1502 |
if ( $themes_prefix == null ) {
|
1503 |
-
$themes_prefix = basename(
|
1504 |
}
|
1505 |
if ( 0 === strpos( $file_name, $themes_prefix ) ) {
|
1506 |
return false;
|
1507 |
}
|
1508 |
|
1509 |
if ( $plugins_prefix == null ) {
|
1510 |
-
$plugins_prefix = basename(
|
1511 |
}
|
1512 |
if ( 0 === strpos( $file_name, $plugins_prefix ) ) {
|
1513 |
return false;
|
@@ -1681,11 +1698,15 @@ function cerber_process_files(){
|
|
1681 |
case CERBER_FT_ROOT:
|
1682 |
if ( cerber_is_htaccess( $file['file_name'] ) ) {
|
1683 |
$section = 'WordPress';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1684 |
}
|
1685 |
-
//if ( ! empty( $scan['integrity']['wordpress'] ) ) {
|
1686 |
-
// $integrity_verified = true;
|
1687 |
-
//}
|
1688 |
-
$do_not_del = true;
|
1689 |
$severity_limit = 1;
|
1690 |
break;
|
1691 |
case CERBER_FT_CONF:
|
@@ -2125,7 +2146,12 @@ function cerber_get_php_unsafe(){
|
|
2125 |
'dl' => array(10, 'Loads a PHP extension on the web server at runtime.'),
|
2126 |
'eval' => array( 9, 'May be used to execute malicious code on the web server. Pairing with base64_decode function indicates malicious code.' ),
|
2127 |
'str_rot13' => array(9, 'Perform the rot13 transform on a string. May be used to obfuscate malware.'),
|
2128 |
-
'
|
|
|
|
|
|
|
|
|
|
|
2129 |
'socket_create' => array(6, 'Creates a network connection with any remote host. May be used to load malicious code from any web server with no restrictions.'),
|
2130 |
'create_function' => array(6, 'Create an anonymous (lambda-style) function. Deprecated. A native anonymous function must be used instead.'),
|
2131 |
|
@@ -2141,6 +2167,7 @@ function cerber_get_php_unsafe(){
|
|
2141 |
'gzinflate' => array(4, 'Inflate a deflated string. May be used to obfuscate malware.'),
|
2142 |
'gzdeflate' => array(4, 'Deflate a string. May be used to obfuscate malware.'),
|
2143 |
|
|
|
2144 |
'curl_exec' => array(4, 'Load external data from any web server. May be used to load malicious code from any web server with no restrictions.'),
|
2145 |
'file_get_contents' => array(4, 'Read the entire file into a string. May be used to load malicious code from any web server with no restrictions.'),
|
2146 |
|
@@ -2162,6 +2189,7 @@ function cerber_get_php_unsafe(){
|
|
2162 |
'fileperms' => array(1, ''),
|
2163 |
'getenv' => array(1, ''),
|
2164 |
'phpinfo' => array(1, ''),
|
|
|
2165 |
|
2166 |
);
|
2167 |
}
|
@@ -2697,36 +2725,20 @@ function cerber_obtain_hash( $url, $nocache = false ) {
|
|
2697 |
function cerber_detect_file( $file_name ) {
|
2698 |
static $abspath = null;
|
2699 |
static $upload_dir = null;
|
|
|
2700 |
static $plugin_dir = null;
|
2701 |
static $theme_dir = null;
|
2702 |
static $content_dir = null;
|
2703 |
static $len = null;
|
2704 |
|
2705 |
if ( $abspath === null ) {
|
2706 |
-
$abspath
|
2707 |
-
|
2708 |
-
|
2709 |
-
$
|
2710 |
-
|
2711 |
-
|
2712 |
-
|
2713 |
-
$content_dir = dirname( cerber_get_plugins_dir() );
|
2714 |
-
}
|
2715 |
-
if ( $upload_dir === null ) {
|
2716 |
-
// TODO: implement this for multisite
|
2717 |
-
//$wp_upload_dir = wp_upload_dir();
|
2718 |
-
//$upload_dir = mb_substr( $wp_upload_dir['path'], $len );
|
2719 |
-
//$upload_dir = $wp_upload_dir['path'];
|
2720 |
-
$upload_dir = cerber_get_upload_dir();
|
2721 |
-
}
|
2722 |
-
if ( $plugin_dir === null ) {
|
2723 |
-
//$plugin_dir = mb_substr( cerber_get_plugins_dir(), $len );
|
2724 |
-
$plugin_dir = cerber_get_plugins_dir();
|
2725 |
-
}
|
2726 |
-
if ( $theme_dir === null ) {
|
2727 |
-
//$theme_dir = get_theme_root();
|
2728 |
-
//$theme_dir = $content_dir . DIRECTORY_SEPARATOR . 'themes';
|
2729 |
-
$theme_dir = cerber_get_themes_dir();
|
2730 |
}
|
2731 |
|
2732 |
// Check in a particular order for a better performance
|
@@ -2738,26 +2750,32 @@ function cerber_detect_file( $file_name ) {
|
|
2738 |
return CERBER_FT_WP; // WP
|
2739 |
}
|
2740 |
|
2741 |
-
if ( 0 === strpos( $file_name, $plugin_dir
|
2742 |
return CERBER_FT_PLUGIN; // Plugin
|
2743 |
}
|
2744 |
|
2745 |
-
if ( 0 === strpos( $file_name, $theme_dir
|
2746 |
return CERBER_FT_THEME; // Theme
|
2747 |
}
|
2748 |
|
2749 |
-
if ( 0 === strpos( $file_name, $upload_dir
|
2750 |
return CERBER_FT_UPLOAD; // Upload folder
|
2751 |
}
|
2752 |
|
2753 |
-
if (
|
2754 |
-
if ( 0 === strpos( $file_name, $
|
|
|
|
|
|
|
|
|
|
|
|
|
2755 |
return CERBER_FT_LNG; // Translations
|
2756 |
}
|
2757 |
-
if ( 0 === strpos( $file_name, $content_dir .
|
2758 |
return CERBER_FT_MUP; // A file in MU plugins folder
|
2759 |
}
|
2760 |
-
if ( $file_name === $content_dir .
|
2761 |
return CERBER_FT_WP; // WP
|
2762 |
}
|
2763 |
|
@@ -2798,7 +2816,9 @@ function cerber_is_htaccess( $file_name ) {
|
|
2798 |
function cerber_is_dropin( $file_name ) {
|
2799 |
$dropins = _get_dropins();
|
2800 |
if ( isset( $dropins[ basename( $file_name ) ] ) ) {
|
2801 |
-
|
|
|
|
|
2802 |
}
|
2803 |
|
2804 |
return false;
|
@@ -3114,6 +3134,11 @@ function cerber_scan_directory( $root, $pattern = null, $function ) {
|
|
3114 |
return array( $dir_counter, $file_counter );
|
3115 |
}
|
3116 |
|
|
|
|
|
|
|
|
|
|
|
3117 |
function cerber_normal_path( $file_name ) {
|
3118 |
return str_replace( array( '/', '\\' ), DIRECTORY_SEPARATOR, $file_name );
|
3119 |
}
|
@@ -3446,6 +3471,7 @@ function cerber_get_short_name( $file_row ) {
|
|
3446 |
if ( ! $file_row ) {
|
3447 |
return '';
|
3448 |
}
|
|
|
3449 |
$len = null;
|
3450 |
switch ( $file_row['file_type'] ) {
|
3451 |
case CERBER_FT_PLUGIN:
|
@@ -3455,25 +3481,145 @@ function cerber_get_short_name( $file_row ) {
|
|
3455 |
$len = mb_strlen( cerber_get_themes_dir() );
|
3456 |
break;
|
3457 |
case CERBER_FT_UPLOAD:
|
3458 |
-
|
|
|
|
|
|
|
|
|
|
|
3459 |
break;
|
3460 |
default:
|
3461 |
-
if ( 0 === strpos( $
|
3462 |
$len = mb_strlen( cerber_get_abspath() ) - 1;
|
3463 |
}
|
3464 |
}
|
3465 |
|
3466 |
if ( $len ) {
|
3467 |
-
|
3468 |
}
|
|
|
|
|
|
|
3469 |
|
3470 |
-
return $
|
3471 |
}
|
3472 |
|
3473 |
function cerber_scanner_dashboard( $msg = '' ) {
|
3474 |
?>
|
3475 |
<div id="crb-scan-display">
|
3476 |
-
<div id="crb-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3477 |
<table>
|
3478 |
<tr><td>Started</td><td id="crb-started" data-init="-">-</td></tr>
|
3479 |
<tr><td>Finished</td><td id="crb-finished" data-init="-">-</td></tr>
|
@@ -3509,30 +3655,30 @@ function cerber_scanner_dashboard( $msg = '' ) {
|
|
3509 |
</div>
|
3510 |
<div id="crb-scan-details">
|
3511 |
<table class="crb-table" id="crb-browse-files">
|
3512 |
-
|
3513 |
-
|
3514 |
-
|
3515 |
-
|
3516 |
-
|
3517 |
-
|
3518 |
-
|
3519 |
-
|
3520 |
-
|
3521 |
-
|
3522 |
-
|
3523 |
-
|
3524 |
-
|
3525 |
-
|
3526 |
|
3527 |
-
|
3528 |
-
|
3529 |
-
|
3530 |
-
|
3531 |
|
3532 |
-
|
3533 |
-
|
3534 |
-
|
3535 |
-
|
3536 |
</table>
|
3537 |
</div>
|
3538 |
|
@@ -3848,12 +3994,11 @@ function cerber_get_the_folder() {
|
|
3848 |
}
|
3849 |
|
3850 |
$opt = cerber_get_set( '_cerber_mnemosyne' );
|
3851 |
-
$u = wp_upload_dir();
|
3852 |
|
3853 |
if ( $opt && isset( $opt[4] ) && isset( $opt[ $opt[4] ] ) ) {
|
3854 |
$key = preg_replace( '/[^a-z0-9]/i', '', $opt[ $opt[4] ] );
|
3855 |
if ( $key ) {
|
3856 |
-
$folder =
|
3857 |
if ( is_dir( $folder ) ) {
|
3858 |
if ( ! wp_is_writable( $folder ) ) {
|
3859 |
if ( ! chmod( $folder, 0755 ) ) {
|
@@ -3871,7 +4016,7 @@ function cerber_get_the_folder() {
|
|
3871 |
// Let's create the folder
|
3872 |
|
3873 |
$key = substr( str_shuffle( '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ' ), 0, rand( 16, 20 ) );
|
3874 |
-
$folder =
|
3875 |
|
3876 |
if ( ! mkdir( $folder, 0755, true ) ) {
|
3877 |
// TODO: try to set permissions for the parent folder
|
@@ -4327,7 +4472,7 @@ function cerber_quarantine_move( $file_name, $scan_id ) {
|
|
4327 |
fwrite( $f, 'Information for restoring deleted files.' . PHP_EOL
|
4328 |
. 'Deletion date | Deleted file => Original file to copy to restore.' . PHP_EOL
|
4329 |
. '-----------------------------------------------------------------'
|
4330 |
-
. PHP_EOL .
|
4331 |
}
|
4332 |
else {
|
4333 |
if ( ! $f = fopen( $restore, 'a' ) ) {
|
@@ -4637,7 +4782,7 @@ function cerber_scan_report( $scan ) {
|
|
4637 |
foreach ( $section['issues'] as $k=>$issue ) {
|
4638 |
if ( $issue[0] < 10 ) {
|
4639 |
if ( $issue[0] == CERBER_VULN ) {
|
4640 |
-
$vlist .= $issue[1];
|
4641 |
}
|
4642 |
else {
|
4643 |
$extra .= cerber_get_html_label($issue[0]);
|
@@ -4844,5 +4989,246 @@ function cerber_get_vulnerabilities( $plugin_slug, $plugin ) {
|
|
4844 |
$ret = '<h3 style="color:#FF0000">Vulnerability found!</h3>You need to update this plugin immediately! <ol><li>' . implode( '</li><li>', $report ) . '</li></ol><p>Information provided by <a href="https://wpvulndb.com/">WPScan Vulnerability Database</a></p>';
|
4845 |
}*/
|
4846 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4847 |
return $ret;
|
4848 |
}
|
49 |
define( 'CERBER_FOK', 1 );
|
50 |
define( 'CERBER_VULN', 4 );
|
51 |
define( 'CERBER_NOHASH', 5 );
|
|
|
52 |
define( 'CERBER_IMD', 15 );
|
53 |
define( 'CERBER_SCF', 16 );
|
54 |
define( 'CERBER_PMC', 17 );
|
70 |
|
71 |
function cerber_integrity_page() {
|
72 |
|
73 |
+
$tab = cerber_get_tab( 'scanner', array( 'scanner', 'scan_settings', 'scan_schedule', 'scan_quarantine', 'help' ) );
|
74 |
|
75 |
?>
|
76 |
<div class="wrap crb-admin">
|
78 |
<h1><?php _e( 'Site Integrity', 'wp-cerber' ) ?></h1>
|
79 |
|
80 |
<h2 class="nav-tab-wrapper cerber-tabs">
|
81 |
+
<?php
|
82 |
|
83 |
+
echo '<a href="' . cerber_admin_link( 'scanner' ) . '" class="nav-tab ' . ( $tab == 'scanner' ? 'nav-tab-active' : '' ) . '"><i class="crb-icon crb-icon-bx-radar"></i> ' . __( 'Security Scanner', 'wp-cerber' ) . '</a>';
|
84 |
+
echo '<a href="' . cerber_admin_link( 'scan_settings' ) . '" class="nav-tab ' . ( $tab == 'scan_settings' ? 'nav-tab-active' : '' ) . '"><i class="crb-icon crb-icon-bxs-slider-alt"></i> ' . __( 'Settings' ) . '</a>';
|
85 |
+
echo '<a href="' . cerber_admin_link( 'scan_schedule' ) . '" class="nav-tab ' . ( $tab == 'scan_schedule' ? 'nav-tab-active' : '' ) . '"><i class="crb-icon crb-icon-bx-time"></i> ' . __( 'Scheduling' ) . '</a>';
|
86 |
+
echo '<a href="' . cerber_admin_link( 'scan_quarantine' ) . '" class="nav-tab ' . ( $tab == 'scan_quarantine' ? 'nav-tab-active' : '' ) . '"><i class="crb-icon crb-icon-bx-trash"></i> ' . __( 'Quarantine' ) . '</a>';
|
87 |
+
echo '<a href="' . cerber_admin_link( 'help', array( 'page' => cerber_get_admin_page() ) ) . '" class="nav-tab ' . ( $tab == 'help' ? 'nav-tab-active' : '' ) . '"><i class="crb-icon crb-icon-bx-idea"></i> ' . __( 'Help', 'wp-cerber' ) . '</a>';
|
88 |
|
89 |
+
echo lab_indicator();
|
90 |
?>
|
91 |
</h2>
|
92 |
|
103 |
case 'scan_schedule':
|
104 |
cerber_show_settings_page( 'schedule' );
|
105 |
break;
|
106 |
+
case 'scan_quarantine':
|
107 |
+
cerber_show_quarantine();
|
108 |
+
break;
|
109 |
case 'help':
|
110 |
cerber_show_help();
|
111 |
break;
|
432 |
if ( ! cerber_is_cloud_request() ) {
|
433 |
$response['step_issues'] = $scan['step_issues'];
|
434 |
$response['scanned'] = $scan['scanned'];
|
435 |
+
$response['numbers'] = $scan['numbers'];
|
436 |
|
437 |
$response['started'] = cerber_date( $scan['started'] );
|
438 |
$response['elapsed'] = time() - $scan['started'];
|
615 |
|
616 |
$update['issues'] = cerber_merge_issues( $scan['issues'], $scan['step_issues'] );
|
617 |
|
618 |
+
cerber_make_numbers( $update, $scan );
|
619 |
+
|
620 |
$ret = cerber_update_scan( $update );
|
621 |
|
622 |
if ( isset( $update['finished'] ) || isset( $update['aborted'] ) ) {
|
827 |
}
|
828 |
|
829 |
$keep = array_merge( $q_list, $f_list );
|
830 |
+
//$all = array_column( $scans, 'the_id' );
|
831 |
+
$all = crb_array_column( $scans, 'the_id' );
|
832 |
$delete = array_diff( $all, $keep );
|
833 |
|
834 |
if ( ! $delete ) {
|
1062 |
* @return int|mixed
|
1063 |
*/
|
1064 |
function cerber_calculate_risk( $issue ) {
|
1065 |
+
$risk = array(
|
1066 |
+
CERBER_FOK => 0,
|
1067 |
+
CERBER_VULN => 3,
|
1068 |
+
10 => 1,
|
1069 |
+
11 => 2,
|
1070 |
+
5 => 3,
|
1071 |
+
6 => 3,
|
1072 |
+
7 => 3,
|
1073 |
+
8 => 3
|
1074 |
+
);
|
1075 |
|
1076 |
if ( isset( $risk[ $issue[0] ] ) ) {
|
1077 |
return $risk[ $issue[0] ];
|
1111 |
case CERBER_USF:
|
1112 |
case CERBER_SCF:
|
1113 |
case CERBER_PMC:
|
1114 |
+
case CERBER_DIR:
|
1115 |
if ( $size_factor ) {
|
1116 |
return $size_factor;
|
1117 |
}
|
1478 |
|
1479 |
// In case the default name 'wp-content' of the CONTENT folder has been changed
|
1480 |
|
1481 |
+
$wp_content_dir = basename( cerber_get_content_dir() );
|
1482 |
if ( $wp_content_dir != 'wp-content' ) {
|
1483 |
$new_data = array();
|
1484 |
foreach ( $data as $key => $item ) {
|
1517 |
static $themes_prefix, $plugins_prefix;
|
1518 |
|
1519 |
if ( $themes_prefix == null ) {
|
1520 |
+
$themes_prefix = basename( cerber_get_content_dir() ) . DIRECTORY_SEPARATOR . 'themes' . DIRECTORY_SEPARATOR;
|
1521 |
}
|
1522 |
if ( 0 === strpos( $file_name, $themes_prefix ) ) {
|
1523 |
return false;
|
1524 |
}
|
1525 |
|
1526 |
if ( $plugins_prefix == null ) {
|
1527 |
+
$plugins_prefix = basename( cerber_get_content_dir() ) . DIRECTORY_SEPARATOR . basename( cerber_get_plugins_dir() ) . DIRECTORY_SEPARATOR;
|
1528 |
}
|
1529 |
if ( 0 === strpos( $file_name, $plugins_prefix ) ) {
|
1530 |
return false;
|
1698 |
case CERBER_FT_ROOT:
|
1699 |
if ( cerber_is_htaccess( $file['file_name'] ) ) {
|
1700 |
$section = 'WordPress';
|
1701 |
+
$status = CERBER_FOK;
|
1702 |
+
}
|
1703 |
+
if ( ! empty( $scan['integrity']['wordpress'] ) ) {
|
1704 |
+
//$integrity_verified = true;
|
1705 |
+
$do_not_del = false;
|
1706 |
+
}
|
1707 |
+
else {
|
1708 |
+
$do_not_del = true;
|
1709 |
}
|
|
|
|
|
|
|
|
|
1710 |
$severity_limit = 1;
|
1711 |
break;
|
1712 |
case CERBER_FT_CONF:
|
2146 |
'dl' => array(10, 'Loads a PHP extension on the web server at runtime.'),
|
2147 |
'eval' => array( 9, 'May be used to execute malicious code on the web server. Pairing with base64_decode function indicates malicious code.' ),
|
2148 |
'str_rot13' => array(9, 'Perform the rot13 transform on a string. May be used to obfuscate malware.'),
|
2149 |
+
'mysql_connect' => array(9, 'Open a new connection to the MySQL server'),
|
2150 |
+
'mysqli_connect' => array(9, 'Open a new connection to the MySQL server'),
|
2151 |
+
'mysql_query' => array(9, 'Performs a query on the database'),
|
2152 |
+
'mysqli_query' => array(9, 'Performs a query on the database'),
|
2153 |
+
|
2154 |
+
'base64_decode' => array(7, 'May be used to obfuscate and hinder detection of malicious code. Pairing with eval function indicates malicious code.'),
|
2155 |
'socket_create' => array(6, 'Creates a network connection with any remote host. May be used to load malicious code from any web server with no restrictions.'),
|
2156 |
'create_function' => array(6, 'Create an anonymous (lambda-style) function. Deprecated. A native anonymous function must be used instead.'),
|
2157 |
|
2167 |
'gzinflate' => array(4, 'Inflate a deflated string. May be used to obfuscate malware.'),
|
2168 |
'gzdeflate' => array(4, 'Deflate a string. May be used to obfuscate malware.'),
|
2169 |
|
2170 |
+
'curl_init' => array(4, 'Load external data from any web server. May be used to load malicious code from any web server with no restrictions.'),
|
2171 |
'curl_exec' => array(4, 'Load external data from any web server. May be used to load malicious code from any web server with no restrictions.'),
|
2172 |
'file_get_contents' => array(4, 'Read the entire file into a string. May be used to load malicious code from any web server with no restrictions.'),
|
2173 |
|
2189 |
'fileperms' => array(1, ''),
|
2190 |
'getenv' => array(1, ''),
|
2191 |
'phpinfo' => array(1, ''),
|
2192 |
+
'header' => array(1, ''),
|
2193 |
|
2194 |
);
|
2195 |
}
|
2725 |
function cerber_detect_file( $file_name ) {
|
2726 |
static $abspath = null;
|
2727 |
static $upload_dir = null;
|
2728 |
+
static $upload_dir_mu = null;
|
2729 |
static $plugin_dir = null;
|
2730 |
static $theme_dir = null;
|
2731 |
static $content_dir = null;
|
2732 |
static $len = null;
|
2733 |
|
2734 |
if ( $abspath === null ) {
|
2735 |
+
$abspath = cerber_get_abspath();
|
2736 |
+
$len = strlen( $abspath );
|
2737 |
+
$content_dir = cerber_get_content_dir() . DIRECTORY_SEPARATOR;
|
2738 |
+
$upload_dir = cerber_get_upload_dir() . DIRECTORY_SEPARATOR;
|
2739 |
+
$upload_dir_mu = cerber_get_upload_dir_mu() . DIRECTORY_SEPARATOR;
|
2740 |
+
$plugin_dir = cerber_get_plugins_dir() . DIRECTORY_SEPARATOR;
|
2741 |
+
$theme_dir = cerber_get_themes_dir() . DIRECTORY_SEPARATOR;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2742 |
}
|
2743 |
|
2744 |
// Check in a particular order for a better performance
|
2750 |
return CERBER_FT_WP; // WP
|
2751 |
}
|
2752 |
|
2753 |
+
if ( 0 === strpos( $file_name, $plugin_dir ) ) {
|
2754 |
return CERBER_FT_PLUGIN; // Plugin
|
2755 |
}
|
2756 |
|
2757 |
+
if ( 0 === strpos( $file_name, $theme_dir ) ) {
|
2758 |
return CERBER_FT_THEME; // Theme
|
2759 |
}
|
2760 |
|
2761 |
+
if ( 0 === strpos( $file_name, $upload_dir ) ) {
|
2762 |
return CERBER_FT_UPLOAD; // Upload folder
|
2763 |
}
|
2764 |
|
2765 |
+
if ( is_multisite() ) {
|
2766 |
+
if ( 0 === strpos( $file_name, $upload_dir_mu ) ) {
|
2767 |
+
return CERBER_FT_UPLOAD; // Upload folder
|
2768 |
+
}
|
2769 |
+
}
|
2770 |
+
|
2771 |
+
if ( 0 === strpos( $file_name, $content_dir ) ) {
|
2772 |
+
if ( 0 === strpos( $file_name, $content_dir . 'languages' . DIRECTORY_SEPARATOR ) ) {
|
2773 |
return CERBER_FT_LNG; // Translations
|
2774 |
}
|
2775 |
+
if ( 0 === strpos( $file_name, $content_dir . 'mu-plugins' . DIRECTORY_SEPARATOR ) ) {
|
2776 |
return CERBER_FT_MUP; // A file in MU plugins folder
|
2777 |
}
|
2778 |
+
if ( $file_name === $content_dir . 'index.php' ) {
|
2779 |
return CERBER_FT_WP; // WP
|
2780 |
}
|
2781 |
|
2816 |
function cerber_is_dropin( $file_name ) {
|
2817 |
$dropins = _get_dropins();
|
2818 |
if ( isset( $dropins[ basename( $file_name ) ] ) ) {
|
2819 |
+
if ( 0 === strpos( $file_name, cerber_get_content_dir() . DIRECTORY_SEPARATOR ) ) {
|
2820 |
+
return true;
|
2821 |
+
}
|
2822 |
}
|
2823 |
|
2824 |
return false;
|
3134 |
return array( $dir_counter, $file_counter );
|
3135 |
}
|
3136 |
|
3137 |
+
/**
|
3138 |
+
* @param $file_name string
|
3139 |
+
*
|
3140 |
+
* @return string
|
3141 |
+
*/
|
3142 |
function cerber_normal_path( $file_name ) {
|
3143 |
return str_replace( array( '/', '\\' ), DIRECTORY_SEPARATOR, $file_name );
|
3144 |
}
|
3471 |
if ( ! $file_row ) {
|
3472 |
return '';
|
3473 |
}
|
3474 |
+
$file_name = $file_row['file_name'];
|
3475 |
$len = null;
|
3476 |
switch ( $file_row['file_type'] ) {
|
3477 |
case CERBER_FT_PLUGIN:
|
3481 |
$len = mb_strlen( cerber_get_themes_dir() );
|
3482 |
break;
|
3483 |
case CERBER_FT_UPLOAD:
|
3484 |
+
if ( is_multisite() && false !== strpos( $file_name, cerber_get_upload_dir_mu() . DIRECTORY_SEPARATOR ) ) {
|
3485 |
+
$len = mb_strlen( dirname( cerber_get_upload_dir_mu() ) );
|
3486 |
+
}
|
3487 |
+
else {
|
3488 |
+
$len = mb_strlen( dirname( cerber_get_upload_dir() ) );
|
3489 |
+
}
|
3490 |
break;
|
3491 |
default:
|
3492 |
+
if ( 0 === strpos( $file_name, rtrim( cerber_get_abspath(), '/\\' ) ) ) {
|
3493 |
$len = mb_strlen( cerber_get_abspath() ) - 1;
|
3494 |
}
|
3495 |
}
|
3496 |
|
3497 |
if ( $len ) {
|
3498 |
+
$ret = mb_substr( $file_name, $len );
|
3499 |
}
|
3500 |
+
else {
|
3501 |
+
$ret = $file_name;
|
3502 |
+
}
|
3503 |
|
3504 |
+
return $ret;
|
3505 |
}
|
3506 |
|
3507 |
function cerber_scanner_dashboard( $msg = '' ) {
|
3508 |
?>
|
3509 |
<div id="crb-scan-display">
|
3510 |
+
<div id="crb-the-table">
|
3511 |
+
<div class="crb-scan-info scan-tile">
|
3512 |
+
<table>
|
3513 |
+
<tr>
|
3514 |
+
<td><?php _e( 'Started', 'wp-cerber' ); ?></td>
|
3515 |
+
<td id="crb-started" data-init="-">-</td>
|
3516 |
+
</tr>
|
3517 |
+
<tr>
|
3518 |
+
<td><?php _e( 'Finished', 'wp-cerber' ); ?></td>
|
3519 |
+
<td id="crb-finished" data-init="-">-</td>
|
3520 |
+
</tr>
|
3521 |
+
<tr>
|
3522 |
+
<td><?php _e( 'Duration', 'wp-cerber' ); ?></td>
|
3523 |
+
<td id="crb-duration" data-init="-">-</td>
|
3524 |
+
</tr>
|
3525 |
+
<tr>
|
3526 |
+
<td><?php _e( 'Performance', 'wp-cerber' ); ?></td>
|
3527 |
+
<td id="crb-performance" data-init="-">-</td>
|
3528 |
+
</tr>
|
3529 |
+
<tr>
|
3530 |
+
<td>Mode</td>
|
3531 |
+
<td id="crb-smode" data-init="-">-</td>
|
3532 |
+
</tr>
|
3533 |
+
</table>
|
3534 |
+
</div>
|
3535 |
+
<div class="crb-scan-info scan-tile">
|
3536 |
+
<table>
|
3537 |
+
<tr>
|
3538 |
+
<td><?php _e( 'Vulnerabilities', 'wp-cerber' ); ?></td>
|
3539 |
+
<td id="crb-numbers-4" data-init="-">-</td>
|
3540 |
+
</tr>
|
3541 |
+
<tr>
|
3542 |
+
<td><?php _e( 'New files', 'wp-cerber' ); ?></td>
|
3543 |
+
<td id="crb-numbers-51" data-init="-">-</td>
|
3544 |
+
</tr>
|
3545 |
+
<tr>
|
3546 |
+
<td><?php _e( 'Changed files', 'wp-cerber' ); ?></td>
|
3547 |
+
<td id="crb-numbers-50" data-init="-">-</td>
|
3548 |
+
</tr>
|
3549 |
+
<tr>
|
3550 |
+
<td><?php _e( 'Unwanted extensions', 'wp-cerber' ); ?></td>
|
3551 |
+
<td id="crb-numbers-30" data-init="-">-</td>
|
3552 |
+
</tr>
|
3553 |
+
<tr>
|
3554 |
+
<td><?php _e( 'Unattended files', 'wp-cerber' ); ?></td>
|
3555 |
+
<td id="crb-numbers-18" data-init="-">-</td>
|
3556 |
+
</tr>
|
3557 |
+
</table>
|
3558 |
+
</div>
|
3559 |
+
<div class="scan-tile">
|
3560 |
+
<div><p><span id="crb-scanned-files" data-init="-">0</span> / <span id="crb-total-files"
|
3561 |
+
data-init="-">0</span>
|
3562 |
+
</p>
|
3563 |
+
<p><?php echo __( 'Scanned', 'wp-cerber' ) . ' / ' . __( 'Files to scan', 'wp-cerber' ); ?></p>
|
3564 |
+
</div>
|
3565 |
+
</div>
|
3566 |
+
|
3567 |
+
<div class="scan-tile">
|
3568 |
+
<div><p><span id="crb-critical" data-init="-">0</span> / <span id="crb-warning" data-init="-">0</span>
|
3569 |
+
</p>
|
3570 |
+
<p><?php _e( 'Critical issues', 'wp-cerber' ); ?> / <?php _e( 'Issues total', 'wp-cerber' ); ?></p>
|
3571 |
+
</div>
|
3572 |
+
</div>
|
3573 |
+
|
3574 |
+
</div>
|
3575 |
+
|
3576 |
+
<div id="crb-scan-progress">
|
3577 |
+
<div>
|
3578 |
+
<div id="the-scan-bar"></div>
|
3579 |
+
</div>
|
3580 |
+
</div>
|
3581 |
+
|
3582 |
+
<p id="crb-scan-message"><?php echo $msg; ?></p>
|
3583 |
+
|
3584 |
+
</div>
|
3585 |
+
<div id="crb-scan-details">
|
3586 |
+
<table class="crb-table" id="crb-browse-files">
|
3587 |
+
<?php
|
3588 |
+
$rows = array();
|
3589 |
+
$rows[] = '<tr class="crb-scan-container" id="crb-wordpress" style=""><td colspan="6">WordPress</td></tr>';
|
3590 |
+
$rows[] = '<tr class="crb-scan-container" id="crb-muplugins" style=""><td colspan="6">Must use plugins</td></tr>';
|
3591 |
+
$rows[] = '<tr class="crb-scan-container" id="crb-dropins" style=""><td colspan="6">Drop-ins</td></tr>';
|
3592 |
+
$rows[] = '<tr class="crb-scan-container" id="crb-plugins" style=""><td colspan="6">Plugins</td></tr>';
|
3593 |
+
|
3594 |
+
/*
|
3595 |
+
$plugins = get_plugins();
|
3596 |
+
foreach ( $plugins as $plugin ) {
|
3597 |
+
$rows[] = '<tr class="crb-scan-section" id="' . sha1( $plugin['Name'] ) . '" style="display:none;"></tr>';
|
3598 |
+
}
|
3599 |
+
*/
|
3600 |
+
$rows[] = '<tr class="crb-scan-container" id="crb-themes" style=""><td colspan="6">Themes</td></tr>';
|
3601 |
+
|
3602 |
+
/*$themes = wp_get_themes();
|
3603 |
+
foreach ( $themes as $theme_folder => $theme ) {
|
3604 |
+
$rows[] = '<tr class="crb-scan-section" id="' . sha1( $theme->get( 'Name' ) ) . '" style="display:none;"></tr>';
|
3605 |
+
}*/
|
3606 |
+
|
3607 |
+
$rows[] = '<tr class="crb-scan-container" id="crb-uploads" style=""><td colspan="6">Uploads folder</td></tr>';
|
3608 |
+
$rows[] = '<tr class="crb-scan-container" id="crb-unattended" style=""><td colspan="6">Unattended files</td></tr>';
|
3609 |
+
echo implode("\n",$rows);
|
3610 |
+
?>
|
3611 |
+
</table>
|
3612 |
+
</div>
|
3613 |
+
|
3614 |
+
<?php
|
3615 |
+
|
3616 |
+
cerber_ref_upload_form();
|
3617 |
+
}
|
3618 |
+
|
3619 |
+
function cerber_scanner_dashboardold( $msg = '' ) {
|
3620 |
+
?>
|
3621 |
+
<div id="crb-scan-display">
|
3622 |
+
<div id="" class="scan-tile">
|
3623 |
<table>
|
3624 |
<tr><td>Started</td><td id="crb-started" data-init="-">-</td></tr>
|
3625 |
<tr><td>Finished</td><td id="crb-finished" data-init="-">-</td></tr>
|
3655 |
</div>
|
3656 |
<div id="crb-scan-details">
|
3657 |
<table class="crb-table" id="crb-browse-files">
|
3658 |
+
<?php
|
3659 |
+
$rows = array();
|
3660 |
+
$rows[] = '<tr class="crb-scan-container" id="crb-wordpress" style=""><td colspan="6">WordPress</td></tr>';
|
3661 |
+
$rows[] = '<tr class="crb-scan-container" id="crb-muplugins" style=""><td colspan="6">Must use plugins</td></tr>';
|
3662 |
+
$rows[] = '<tr class="crb-scan-container" id="crb-dropins" style=""><td colspan="6">Drop-ins</td></tr>';
|
3663 |
+
$rows[] = '<tr class="crb-scan-container" id="crb-plugins" style=""><td colspan="6">Plugins</td></tr>';
|
3664 |
+
|
3665 |
+
/*
|
3666 |
+
$plugins = get_plugins();
|
3667 |
+
foreach ( $plugins as $plugin ) {
|
3668 |
+
$rows[] = '<tr class="crb-scan-section" id="' . sha1( $plugin['Name'] ) . '" style="display:none;"></tr>';
|
3669 |
+
}
|
3670 |
+
*/
|
3671 |
+
$rows[] = '<tr class="crb-scan-container" id="crb-themes" style=""><td colspan="6">Themes</td></tr>';
|
3672 |
|
3673 |
+
/*$themes = wp_get_themes();
|
3674 |
+
foreach ( $themes as $theme_folder => $theme ) {
|
3675 |
+
$rows[] = '<tr class="crb-scan-section" id="' . sha1( $theme->get( 'Name' ) ) . '" style="display:none;"></tr>';
|
3676 |
+
}*/
|
3677 |
|
3678 |
+
$rows[] = '<tr class="crb-scan-container" id="crb-uploads" style=""><td colspan="6">Uploads folder</td></tr>';
|
3679 |
+
$rows[] = '<tr class="crb-scan-container" id="crb-unattended" style=""><td colspan="6">Unattended files</td></tr>';
|
3680 |
+
echo implode("\n",$rows);
|
3681 |
+
?>
|
3682 |
</table>
|
3683 |
</div>
|
3684 |
|
3994 |
}
|
3995 |
|
3996 |
$opt = cerber_get_set( '_cerber_mnemosyne' );
|
|
|
3997 |
|
3998 |
if ( $opt && isset( $opt[4] ) && isset( $opt[ $opt[4] ] ) ) {
|
3999 |
$key = preg_replace( '/[^a-z0-9]/i', '', $opt[ $opt[4] ] );
|
4000 |
if ( $key ) {
|
4001 |
+
$folder = cerber_get_upload_dir() . DIRECTORY_SEPARATOR . 'wp-cerber-' . $key . DIRECTORY_SEPARATOR;
|
4002 |
if ( is_dir( $folder ) ) {
|
4003 |
if ( ! wp_is_writable( $folder ) ) {
|
4004 |
if ( ! chmod( $folder, 0755 ) ) {
|
4016 |
// Let's create the folder
|
4017 |
|
4018 |
$key = substr( str_shuffle( '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ' ), 0, rand( 16, 20 ) );
|
4019 |
+
$folder = cerber_get_upload_dir() . DIRECTORY_SEPARATOR . 'wp-cerber-' . $key . DIRECTORY_SEPARATOR;
|
4020 |
|
4021 |
if ( ! mkdir( $folder, 0755, true ) ) {
|
4022 |
// TODO: try to set permissions for the parent folder
|
4472 |
fwrite( $f, 'Information for restoring deleted files.' . PHP_EOL
|
4473 |
. 'Deletion date | Deleted file => Original file to copy to restore.' . PHP_EOL
|
4474 |
. '-----------------------------------------------------------------'
|
4475 |
+
. PHP_EOL . `` );
|
4476 |
}
|
4477 |
else {
|
4478 |
if ( ! $f = fopen( $restore, 'a' ) ) {
|
4782 |
foreach ( $section['issues'] as $k=>$issue ) {
|
4783 |
if ( $issue[0] < 10 ) {
|
4784 |
if ( $issue[0] == CERBER_VULN ) {
|
4785 |
+
$vlist .= $issue[1] . '<br/>';
|
4786 |
}
|
4787 |
else {
|
4788 |
$extra .= cerber_get_html_label($issue[0]);
|
4989 |
$ret = '<h3 style="color:#FF0000">Vulnerability found!</h3>You need to update this plugin immediately! <ol><li>' . implode( '</li><li>', $report ) . '</li></ol><p>Information provided by <a href="https://wpvulndb.com/">WPScan Vulnerability Database</a></p>';
|
4990 |
}*/
|
4991 |
|
4992 |
+
return $ret;
|
4993 |
+
}
|
4994 |
+
|
4995 |
+
function cerber_make_numbers( &$update = array(), &$scan = array() ) {
|
4996 |
+
if ( ! isset( $scan['numbers'] ) ) {
|
4997 |
+
$update['numbers'] = array();
|
4998 |
+
}
|
4999 |
+
else {
|
5000 |
+
$update['numbers'] = $scan['numbers'];
|
5001 |
+
}
|
5002 |
+
foreach ( $scan['step_issues'] as $set ) {
|
5003 |
+
if ( $set['setype'] != 21 ) {
|
5004 |
+
foreach ( $set['issues'] as $issue ) {
|
5005 |
+
if ( ! isset( $update['numbers'][ $issue[0] ] ) ) {
|
5006 |
+
$update['numbers'][ $issue[0] ] = 0;
|
5007 |
+
}
|
5008 |
+
$update['numbers'][ $issue[0] ] ++;
|
5009 |
+
// extra issue
|
5010 |
+
if ( ! empty( $issue[3] ) ) {
|
5011 |
+
if ( ! isset( $update['numbers'][ $issue[3] ] ) ) {
|
5012 |
+
$update['numbers'][ $issue[3] ] = 0;
|
5013 |
+
}
|
5014 |
+
$update['numbers'][ $issue[3] ] ++;
|
5015 |
+
}
|
5016 |
+
}
|
5017 |
+
}
|
5018 |
+
else {
|
5019 |
+
if ( ! isset( $update['numbers'][ CERBER_USF ] ) ) {
|
5020 |
+
$update['numbers'][ CERBER_USF] = 0;
|
5021 |
+
}
|
5022 |
+
$update['numbers'][ CERBER_USF ] += count( $set['issues'] );
|
5023 |
+
}
|
5024 |
+
}
|
5025 |
+
|
5026 |
+
}
|
5027 |
+
|
5028 |
+
function cerber_show_quarantine() {
|
5029 |
+
|
5030 |
+
$folder = cerber_get_the_folder();
|
5031 |
+
if ( is_wp_error( $folder ) ) {
|
5032 |
+
echo $folder->get_error_message();
|
5033 |
+
|
5034 |
+
return;
|
5035 |
+
}
|
5036 |
+
|
5037 |
+
$no_files = __( 'There are no files in the quarantine at the moment.', 'wp-cerber' );
|
5038 |
+
$per_page = cerber_get_per_page();
|
5039 |
+
$first = ( cerber_get_pn() - 1 ) * $per_page;
|
5040 |
+
$last = $first + $per_page;
|
5041 |
+
$list = array();
|
5042 |
+
|
5043 |
+
if ( ! $dirs = glob( $folder . 'quarantine' . DIRECTORY_SEPARATOR . '*', GLOB_ONLYDIR ) ) {
|
5044 |
+
echo $no_files;
|
5045 |
+
|
5046 |
+
return;
|
5047 |
+
}
|
5048 |
+
|
5049 |
+
$count = 0;
|
5050 |
+
foreach ( $dirs as $dir ) {
|
5051 |
+
$f = $dir . '/.restore';
|
5052 |
+
$scan_id = basename( $dir );
|
5053 |
+
if ( file_exists( $f ) && $handle = @fopen( $f, "r" ) ) {
|
5054 |
+
$ln = 0;
|
5055 |
+
while ( ( $line = fgets( $handle ) ) !== false ) {
|
5056 |
+
$ln ++;
|
5057 |
+
if ( $ln <= 4 || empty( $line ) ) {
|
5058 |
+
continue;
|
5059 |
+
}
|
5060 |
+
$line = trim( $line );
|
5061 |
+
if ( empty( $line ) ) {
|
5062 |
+
continue;
|
5063 |
+
}
|
5064 |
+
$v = crb_parse_qline( $dir, $line );
|
5065 |
+
if ( $v ) {
|
5066 |
+
if ( $count >= $first && $count <= $last ) {
|
5067 |
+
$v['scan_id'] = $scan_id;
|
5068 |
+
$list[] = $v;
|
5069 |
+
}
|
5070 |
+
$count ++;
|
5071 |
+
}
|
5072 |
+
}
|
5073 |
+
if ( ! feof( $handle ) ) {
|
5074 |
+
echo "Error: unexpected I/O Error";
|
5075 |
+
}
|
5076 |
+
fclose( $handle );
|
5077 |
+
}
|
5078 |
+
}
|
5079 |
+
|
5080 |
+
if ( ! $list ) {
|
5081 |
+
echo $no_files;
|
5082 |
+
|
5083 |
+
return;
|
5084 |
+
}
|
5085 |
+
|
5086 |
+
//echo nl2br( print_r( $list, 1 ) );
|
5087 |
+
|
5088 |
+
$rows = array();
|
5089 |
+
$ofs = get_option( 'gmt_offset' ) * 3600;
|
5090 |
+
$confirm = ' onclick="return confirm(\'' . __( 'Are you sure?', 'wp-cerber' ) . '\');"';
|
5091 |
+
|
5092 |
+
foreach ( $list as $file ) {
|
5093 |
+
$delete = wp_nonce_url( add_query_arg( array(
|
5094 |
+
'crb-qdo' => 'delete',
|
5095 |
+
'crb-qscan' => $file['scan_id'],
|
5096 |
+
'crb-qfile' => $file['qfile']
|
5097 |
+
) ), 'control', 'cerber_nonce' );
|
5098 |
+
$restore = ( ! $file['can'] ) ? '' : ' | <a ' . $confirm . ' href="' . wp_nonce_url( add_query_arg( array(
|
5099 |
+
'crb-qdo' => 'restore',
|
5100 |
+
'crb-qscan' => $file['scan_id'],
|
5101 |
+
'crb-qfile' => $file['qfile']
|
5102 |
+
) ), 'control', 'cerber_nonce' ) . '">' . __( 'Restore', 'wp-cerber' ) . '</a>';
|
5103 |
+
$moved = strtotime( $file['date'] ) - $ofs;
|
5104 |
+
$will = cerber_auto_date( $file['scan_id'] + DAY_IN_SECONDS * crb_get_settings( 'scan_qcleanup' ) );
|
5105 |
+
$rows[] = '<td><span title="' . cerber_date( $file['scan_id'] ) . '">' . cerber_auto_date( $file['scan_id'] ) . '</span></td><td><span title="' . cerber_date( $moved ) . '">' . cerber_auto_date( $moved ) . '</span></td><td>' . $will . '</td><td>' . $file['size'] . '</td><td>' . $file['source'] . '</td><td><a ' . $confirm . ' href="' . $delete . '">' . __( 'Delete permanently', 'wp-cerber' ) . '</a>' . $restore . '</td>';
|
5106 |
+
}
|
5107 |
+
|
5108 |
+
$heading = array(
|
5109 |
+
__( 'Scanned', 'wp-cerber' ),
|
5110 |
+
__( 'Moved to quarantine', 'wp-cerber' ),
|
5111 |
+
__( 'Automatic deletion', 'wp-cerber' ),
|
5112 |
+
__( 'Size', 'wp-cerber' ),
|
5113 |
+
__( 'File', 'wp-cerber' ),
|
5114 |
+
__( 'Action', 'wp-cerber' ),
|
5115 |
+
);
|
5116 |
+
|
5117 |
+
|
5118 |
+
$titles = '<tr><th>' . implode( '</th><th>', $heading ) . '</th></tr>';
|
5119 |
+
|
5120 |
+
$table = '<table class="widefat crb-table cerber-margin"><thead>' . $titles . '</thead><tfoot>' . $titles . '</tfoot>' . implode( '</tr><tr>', $rows ) . '</tr></table>';
|
5121 |
+
|
5122 |
+
$table .= cerber_page_navi( $count, $per_page );
|
5123 |
+
|
5124 |
+
//$showing = '<h3>' . sprintf( __( 'Showing last %d records from %d', 'wp-cerber' ), count( $rows ), $count ) . '</h3>';
|
5125 |
+
|
5126 |
+
//$table .= '<div class="cerber-margin"><p><b>' . __( 'Hint', 'wp-cerber' ) . ':</b> ' . __( 'To view activity, click on the IP', 'wp-cerber' ) . '</p></div>';
|
5127 |
+
|
5128 |
+
echo $table;
|
5129 |
+
}
|
5130 |
+
|
5131 |
+
function cerber_quarantine_do( $what, $scan_id, $qfile ) {
|
5132 |
+
$scan_id = absint( $scan_id );
|
5133 |
+
if ( ! $scan_id ) {
|
5134 |
+
cerber_admin_notice( 'Error: Wrong scan parameters.' );
|
5135 |
+
|
5136 |
+
return;
|
5137 |
+
}
|
5138 |
+
$dir = cerber_get_the_folder() . 'quarantine' . DIRECTORY_SEPARATOR . $scan_id;
|
5139 |
+
|
5140 |
+
$file = $dir . DIRECTORY_SEPARATOR . $qfile;
|
5141 |
+
if ( ! @is_file( $file ) ) {
|
5142 |
+
cerber_admin_notice( 'Error: No file to process' );
|
5143 |
+
|
5144 |
+
return;
|
5145 |
+
}
|
5146 |
+
|
5147 |
+
$rst = $dir . '/.restore';
|
5148 |
+
if ( ! file_exists( $rst ) || ! $handle = @fopen( $rst, 'r' ) ) {
|
5149 |
+
cerber_admin_notice( 'Error: A restore registry file is corrupt or missing.' );
|
5150 |
+
|
5151 |
+
return;
|
5152 |
+
}
|
5153 |
+
|
5154 |
+
$data = null;
|
5155 |
+
while ( ( $line = fgets( $handle ) ) !== false ) {
|
5156 |
+
if ( $p = crb_parse_qline( $dir, $line ) ) {
|
5157 |
+
if ( $p['qfile'] == $qfile ) {
|
5158 |
+
$data = $p;
|
5159 |
+
break;
|
5160 |
+
}
|
5161 |
+
}
|
5162 |
+
}
|
5163 |
+
|
5164 |
+
if ( ! $data ) {
|
5165 |
+
cerber_admin_notice( 'Error: No information about this file. Unable to proceed.' );
|
5166 |
+
|
5167 |
+
return;
|
5168 |
+
}
|
5169 |
+
|
5170 |
+
$err = null;
|
5171 |
+
$msg = null;
|
5172 |
+
switch ( $what ) {
|
5173 |
+
case 'delete':
|
5174 |
+
if ( unlink( $file ) ) {
|
5175 |
+
$msg = __( 'The file has been deleted permanently.', 'wp-cerber' );
|
5176 |
+
}
|
5177 |
+
else {
|
5178 |
+
$err = 'Unable to delete the file: ' . $file;
|
5179 |
+
}
|
5180 |
+
break;
|
5181 |
+
case 'restore':
|
5182 |
+
if ( $data['can'] ) {
|
5183 |
+
if ( @rename( $file, $data['source'] ) ) {
|
5184 |
+
$msg = __( 'The file has been restored to its original location.', 'wp-cerber' );
|
5185 |
+
}
|
5186 |
+
else {
|
5187 |
+
$err = 'A file error occurred while restoring the file. Check permissions of folders.';
|
5188 |
+
}
|
5189 |
+
}
|
5190 |
+
else {
|
5191 |
+
$err = 'This file cannot be restored and needs to be manually copied. <p>See instructions in this file: ' . $rst . '</p>';
|
5192 |
+
}
|
5193 |
+
break;
|
5194 |
+
}
|
5195 |
+
if ( $err ) {
|
5196 |
+
cerber_admin_notice( $err );
|
5197 |
+
}
|
5198 |
+
if ( $msg ) {
|
5199 |
+
cerber_admin_message( $msg );
|
5200 |
+
}
|
5201 |
+
}
|
5202 |
+
|
5203 |
+
function crb_parse_qline( $dir, $line ) {
|
5204 |
+
list( $date, $info ) = explode( '|', $line );
|
5205 |
+
list( $qfile, $source ) = explode( '=>', $info );
|
5206 |
+
$date = trim( $date );
|
5207 |
+
$qfile = trim( $qfile );
|
5208 |
+
$source = trim( $source );
|
5209 |
+
if ( ! $qfile ) {
|
5210 |
+
return false;
|
5211 |
+
}
|
5212 |
+
$fname = $dir . '/' . $qfile;
|
5213 |
+
if ( ! @is_file( $fname ) ) {
|
5214 |
+
return false;
|
5215 |
+
}
|
5216 |
+
$size = @filesize( $fname );
|
5217 |
+
$size = ( is_numeric( $size ) ) ? $size : 0;
|
5218 |
+
$sdir = dirname( $source ) . DIRECTORY_SEPARATOR;
|
5219 |
+
$can = ( file_exists( $sdir ) ) ? true : false;
|
5220 |
+
if ( $can ) {
|
5221 |
+
$can = ( file_exists( $source ) ) ? false : true;
|
5222 |
+
}
|
5223 |
+
|
5224 |
+
$ret = array(
|
5225 |
+
'date' => $date,
|
5226 |
+
'size' => crb_size_format( $size ),
|
5227 |
+
'qfile' => $qfile,
|
5228 |
+
'source' => $source,
|
5229 |
+
'sdir' => $sdir,
|
5230 |
+
'can' => $can
|
5231 |
+
);
|
5232 |
+
|
5233 |
return $ret;
|
5234 |
}
|
cerber-tools.php
CHANGED
@@ -136,57 +136,70 @@ function cerber_export(){
|
|
136 |
* Import plugin settings from a file
|
137 |
*
|
138 |
*/
|
139 |
-
add_action('admin_init','cerber_import');
|
140 |
-
function cerber_import(){
|
141 |
global $wpdb, $wp_cerber;
|
142 |
if ( ! isset( $_POST['cerber_import'] ) || ! cerber_is_http_post() ) {
|
143 |
return;
|
144 |
}
|
145 |
-
check_admin_referer('crb_import','crb_field');
|
146 |
-
if (!current_user_can('manage_options'))
|
|
|
|
|
147 |
$ok = true;
|
148 |
-
if (!is_uploaded_file($_FILES['ifile']['tmp_name'])) {
|
149 |
-
cerber_admin_notice( __('No file was uploaded or file is corrupted','wp-cerber'));
|
|
|
150 |
return;
|
151 |
}
|
152 |
-
|
153 |
-
$p
|
154 |
-
$data = substr($file,0
|
155 |
-
$sys
|
156 |
-
if ($sys[3] == 'EOF' && crc32($data) == $sys[2] && ($data = json_decode($data, true))) {
|
157 |
-
|
158 |
-
if ($_POST['importset'] && $data['options'] && !empty($data['options']) && is_array($data['options'])) {
|
159 |
-
$data['options']['loginpath'] = urldecode($data['options']['loginpath']); // needed for filter cerber_sanitize_m()
|
160 |
-
if ($data['home'] != get_home_url()) {
|
161 |
-
$data['options']['sitekey']
|
162 |
-
$data['options']['secretkey'] = $wp_cerber->getSettings('secretkey');
|
163 |
}
|
164 |
-
cerber_save_options($data['options']); // @since 2.0
|
165 |
if ( isset( $data['geo-rules'] ) ) {
|
166 |
update_site_option( 'geo_rule_set', $data['geo-rules'] );
|
167 |
}
|
168 |
}
|
169 |
|
170 |
-
if ($_POST['importacl'] && $data['acl'] && is_array($data['acl']) && !empty($data['acl'])) {
|
171 |
$acl_ok = true;
|
172 |
-
if (false === $wpdb->query("DELETE FROM ".CERBER_ACL_TABLE))
|
173 |
-
|
|
|
|
|
174 |
// 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;
|
175 |
// @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;
|
176 |
-
$ip = cerber_parse_ip($row[0]);
|
177 |
if ( ! cerber_acl_add( $ip, $row[1], $row[2] ) ) {
|
178 |
$acl_ok = false;
|
179 |
break;
|
180 |
}
|
181 |
}
|
182 |
-
if (
|
|
|
|
|
183 |
}
|
184 |
|
185 |
-
|
|
|
|
|
|
|
|
|
|
|
186 |
}
|
187 |
-
|
|
|
|
|
188 |
}
|
189 |
-
if (!$ok) cerber_admin_notice(__('Error while parsing file','wp-cerber'));
|
190 |
}
|
191 |
|
192 |
/**
|
@@ -194,20 +207,11 @@ function cerber_import(){
|
|
194 |
*/
|
195 |
function cerber_show_diag(){
|
196 |
$sections = array();
|
197 |
-
|
198 |
-
if (
|
199 |
-
|
200 |
-
}
|
201 |
-
if ( ! function_exists( 'http_response_code' ) ) {
|
202 |
-
$issues[] = 'The PHP function http_response_code() is not found or disabled.';
|
203 |
-
}
|
204 |
-
if ( !is_numeric($_SERVER['REQUEST_TIME_FLOAT'] ) ) {
|
205 |
-
$issues[] = 'The server environment variable $_SERVER[\'REQUEST_TIME_FLOAT\'] is not correctly set.';
|
206 |
}
|
207 |
-
|
208 |
-
$issues = '<p>'.implode('</p><p>',$issues).'</p>';
|
209 |
-
$sections[] = array('<h3><span class="dashicons dashicons-warning"></span> Non-critical issues found</h3>',$issues);
|
210 |
-
}
|
211 |
?>
|
212 |
<!-- <h3 style="margin-top: 3em;">Diagnostic and maintenance</h3>
|
213 |
<a href="javascript:void(0)" onclick="toggle_visibility('diagnostic'); return false;">Show diagnostic information</a>
|
@@ -253,6 +257,14 @@ function cerber_show_diag(){
|
|
253 |
</p>
|
254 |
</div>
|
255 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
256 |
if ( $report = get_site_option( '_cerber_report' ) ) {
|
257 |
echo '<div class="diag-section"><h3>Reports</h3>';
|
258 |
echo cerber_ago_time($report[0]).' ('.cerber_date($report[0]).')';
|
@@ -333,23 +345,7 @@ function cerber_show_lic() {
|
|
333 |
<?php
|
334 |
}
|
335 |
|
336 |
-
|
337 |
-
* Display reCAPTCHA admin page
|
338 |
-
*
|
339 |
-
*/
|
340 |
-
function cerber_recaptcha_page() {
|
341 |
-
?>
|
342 |
-
<div class="wrap crb-admin">
|
343 |
-
<h2><?php _e( 'Antispam and bot detection settings', 'wp-cerber' ) ?></h2>
|
344 |
-
<?php
|
345 |
-
cerber_show_aside( 'recaptcha' );
|
346 |
-
echo '<div class="crb-main">';
|
347 |
-
cerber_show_settings_page( 'recaptcha' );
|
348 |
-
echo '</div';
|
349 |
-
?>
|
350 |
-
</div>
|
351 |
-
<?php
|
352 |
-
}
|
353 |
|
354 |
function cerber_show_wp_diag(){
|
355 |
global $wpdb;
|
@@ -363,11 +359,9 @@ function cerber_show_wp_diag(){
|
|
363 |
array( 'Memory limit', @ini_get( 'memory_limit' ) )
|
364 |
) );
|
365 |
|
366 |
-
$uploads = wp_upload_dir();
|
367 |
-
|
368 |
$folders = array(
|
369 |
array( 'WordPress root folder (ABSPATH) ', ABSPATH ),
|
370 |
-
array( 'Uploads folder',
|
371 |
//array( 'Content folder (WP_CONTENT_DIR) ', WP_CONTENT_DIR ),
|
372 |
array( 'Content folder', dirname( cerber_get_plugins_dir() ) ),
|
373 |
//array( 'Plugins folder (WP_PLUGIN_DIR) ', WP_PLUGIN_DIR ),
|
@@ -379,22 +373,6 @@ function cerber_show_wp_diag(){
|
|
379 |
array( 'Security scanner quarantine folder', cerber_get_the_folder() . 'quarantine' . DIRECTORY_SEPARATOR ),
|
380 |
);
|
381 |
|
382 |
-
foreach ( $folders as &$folder ) {
|
383 |
-
$folder[2] = '';
|
384 |
-
$folder[3] = '';
|
385 |
-
if ( file_exists( $folder[1] ) ) {
|
386 |
-
if ( wp_is_writable( $folder[1] ) ) {
|
387 |
-
$folder[2] = 'Writable';
|
388 |
-
}
|
389 |
-
else {
|
390 |
-
$folder[2] = 'Write protected';
|
391 |
-
}
|
392 |
-
$folder[3] = cerber_get_chmod($folder[1]);
|
393 |
-
}
|
394 |
-
else {
|
395 |
-
$folder[2] = 'Not found';
|
396 |
-
}
|
397 |
-
}
|
398 |
if ( file_exists( ABSPATH . 'wp-config.php' )) {
|
399 |
$config = ABSPATH . 'wp-config.php';
|
400 |
}
|
@@ -405,10 +383,50 @@ function cerber_show_wp_diag(){
|
|
405 |
$config = 'None?';
|
406 |
}
|
407 |
$folders[] = array( 'WordPress config file', $config );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
408 |
$folders[] = array( 'Directory separator', DIRECTORY_SEPARATOR );
|
409 |
|
410 |
$ret[] = '<p>File system</p>'.cerber_make_plain_table( $folders );
|
411 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
412 |
$pls = array();
|
413 |
$list = get_option('active_plugins');
|
414 |
foreach($list as $plugin) {
|
@@ -433,4 +451,118 @@ function cerber_make_plain_table( $data ) {
|
|
433 |
|
434 |
function cerber_get_chmod( $file ) {
|
435 |
return substr( sprintf( '%o', @fileperms( $file ) ), - 4 );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
436 |
}
|
136 |
* Import plugin settings from a file
|
137 |
*
|
138 |
*/
|
139 |
+
add_action( 'admin_init', 'cerber_import' );
|
140 |
+
function cerber_import() {
|
141 |
global $wpdb, $wp_cerber;
|
142 |
if ( ! isset( $_POST['cerber_import'] ) || ! cerber_is_http_post() ) {
|
143 |
return;
|
144 |
}
|
145 |
+
check_admin_referer( 'crb_import', 'crb_field' );
|
146 |
+
if ( ! current_user_can( 'manage_options' ) ) {
|
147 |
+
wp_die( 'Upload failed.' );
|
148 |
+
}
|
149 |
$ok = true;
|
150 |
+
if ( ! is_uploaded_file( $_FILES['ifile']['tmp_name'] ) ) {
|
151 |
+
cerber_admin_notice( __( 'No file was uploaded or file is corrupted', 'wp-cerber' ) );
|
152 |
+
|
153 |
return;
|
154 |
}
|
155 |
+
elseif ( $file = file_get_contents( $_FILES['ifile']['tmp_name'] ) ) {
|
156 |
+
$p = strrpos( $file, '==/' );
|
157 |
+
$data = substr( $file, 0, $p );
|
158 |
+
$sys = explode( '/', substr( $file, $p ) );
|
159 |
+
if ( $sys[3] == 'EOF' && crc32( $data ) == $sys[2] && ( $data = json_decode( $data, true ) ) ) {
|
160 |
+
|
161 |
+
if ( $_POST['importset'] && $data['options'] && ! empty( $data['options'] ) && is_array( $data['options'] ) ) {
|
162 |
+
$data['options']['loginpath'] = urldecode( $data['options']['loginpath'] ); // needed for filter cerber_sanitize_m()
|
163 |
+
if ( $data['home'] != get_home_url() ) {
|
164 |
+
$data['options']['sitekey'] = $wp_cerber->getSettings( 'sitekey' );
|
165 |
+
$data['options']['secretkey'] = $wp_cerber->getSettings( 'secretkey' );
|
166 |
}
|
167 |
+
cerber_save_options( $data['options'] ); // @since 2.0
|
168 |
if ( isset( $data['geo-rules'] ) ) {
|
169 |
update_site_option( 'geo_rule_set', $data['geo-rules'] );
|
170 |
}
|
171 |
}
|
172 |
|
173 |
+
if ( $_POST['importacl'] && $data['acl'] && is_array( $data['acl'] ) && ! empty( $data['acl'] ) ) {
|
174 |
$acl_ok = true;
|
175 |
+
if ( false === $wpdb->query( "DELETE FROM " . CERBER_ACL_TABLE ) ) {
|
176 |
+
$acl_ok = false;
|
177 |
+
}
|
178 |
+
foreach ( $data['acl'] as $row ) {
|
179 |
// 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;
|
180 |
// @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;
|
181 |
+
$ip = cerber_parse_ip( $row[0] );
|
182 |
if ( ! cerber_acl_add( $ip, $row[1], $row[2] ) ) {
|
183 |
$acl_ok = false;
|
184 |
break;
|
185 |
}
|
186 |
}
|
187 |
+
if ( ! $acl_ok ) {
|
188 |
+
cerber_admin_notice( __( 'Error while updating', 'wp-cerber' ) . ' ' . __( 'Access Lists', 'wp-cerber' ) );
|
189 |
+
}
|
190 |
}
|
191 |
|
192 |
+
cerber_upgrade_options(); // In case it was settings from an older version
|
193 |
+
|
194 |
+
cerber_admin_message( __( 'Settings has imported successfully from', 'wp-cerber' ) . ' ' . $_FILES['ifile']['name'] );
|
195 |
+
}
|
196 |
+
else {
|
197 |
+
$ok = false;
|
198 |
}
|
199 |
+
}
|
200 |
+
if ( ! $ok ) {
|
201 |
+
cerber_admin_notice( __( 'Error while parsing file', 'wp-cerber' ) );
|
202 |
}
|
|
|
203 |
}
|
204 |
|
205 |
/**
|
207 |
*/
|
208 |
function cerber_show_diag(){
|
209 |
$sections = array();
|
210 |
+
|
211 |
+
if ( $d = cerber_environment_diag() ) {
|
212 |
+
$sections [] = $d;
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
}
|
214 |
+
|
|
|
|
|
|
|
215 |
?>
|
216 |
<!-- <h3 style="margin-top: 3em;">Diagnostic and maintenance</h3>
|
217 |
<a href="javascript:void(0)" onclick="toggle_visibility('diagnostic'); return false;">Show diagnostic information</a>
|
257 |
</p>
|
258 |
</div>
|
259 |
<?php
|
260 |
+
echo '<div class="diag-section"><h3>Cron</h3>';
|
261 |
+
if ( $c = cerber_cron_diag() ) {
|
262 |
+
echo '<span style="color: red;">' . $c . '</span>';
|
263 |
+
}
|
264 |
+
else {
|
265 |
+
echo 'No issues detected.';
|
266 |
+
}
|
267 |
+
echo '</div>';
|
268 |
if ( $report = get_site_option( '_cerber_report' ) ) {
|
269 |
echo '<div class="diag-section"><h3>Reports</h3>';
|
270 |
echo cerber_ago_time($report[0]).' ('.cerber_date($report[0]).')';
|
345 |
<?php
|
346 |
}
|
347 |
|
348 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
349 |
|
350 |
function cerber_show_wp_diag(){
|
351 |
global $wpdb;
|
359 |
array( 'Memory limit', @ini_get( 'memory_limit' ) )
|
360 |
) );
|
361 |
|
|
|
|
|
362 |
$folders = array(
|
363 |
array( 'WordPress root folder (ABSPATH) ', ABSPATH ),
|
364 |
+
array( 'Uploads folder', cerber_get_upload_dir() ),
|
365 |
//array( 'Content folder (WP_CONTENT_DIR) ', WP_CONTENT_DIR ),
|
366 |
array( 'Content folder', dirname( cerber_get_plugins_dir() ) ),
|
367 |
//array( 'Plugins folder (WP_PLUGIN_DIR) ', WP_PLUGIN_DIR ),
|
373 |
array( 'Security scanner quarantine folder', cerber_get_the_folder() . 'quarantine' . DIRECTORY_SEPARATOR ),
|
374 |
);
|
375 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
376 |
if ( file_exists( ABSPATH . 'wp-config.php' )) {
|
377 |
$config = ABSPATH . 'wp-config.php';
|
378 |
}
|
383 |
$config = 'None?';
|
384 |
}
|
385 |
$folders[] = array( 'WordPress config file', $config );
|
386 |
+
|
387 |
+
if ( file_exists( ABSPATH . '.htaccess' ) ) {
|
388 |
+
$folders[] = array( 'Main .htaccess file', ABSPATH . '.htaccess' );
|
389 |
+
}
|
390 |
+
|
391 |
+
foreach ( $folders as &$folder ) {
|
392 |
+
$folder[2] = '';
|
393 |
+
$folder[3] = '';
|
394 |
+
if ( file_exists( $folder[1] ) ) {
|
395 |
+
if ( wp_is_writable( $folder[1] ) ) {
|
396 |
+
$folder[2] = 'Writable';
|
397 |
+
}
|
398 |
+
else {
|
399 |
+
$folder[2] = 'Write protected';
|
400 |
+
}
|
401 |
+
$folder[3] = cerber_get_chmod( $folder[1] );
|
402 |
+
}
|
403 |
+
else {
|
404 |
+
$folder[2] = 'Not found';
|
405 |
+
}
|
406 |
+
}
|
407 |
+
|
408 |
+
|
409 |
$folders[] = array( 'Directory separator', DIRECTORY_SEPARATOR );
|
410 |
|
411 |
$ret[] = '<p>File system</p>'.cerber_make_plain_table( $folders );
|
412 |
|
413 |
+
if ( is_multisite() ) {
|
414 |
+
$mu = array();
|
415 |
+
if ( defined( 'UPLOADS' ) ) {
|
416 |
+
$mu[] = array( 'UPLOADS', UPLOADS );
|
417 |
+
}
|
418 |
+
if ( defined( 'BLOGUPLOADDIR' ) ) {
|
419 |
+
$mu[] = array( 'BLOGUPLOADDIR', BLOGUPLOADDIR );
|
420 |
+
}
|
421 |
+
if ( defined( 'UPLOADBLOGSDIR' ) ) {
|
422 |
+
$mu[] = array( 'UPLOADBLOGSDIR', UPLOADBLOGSDIR );
|
423 |
+
}
|
424 |
+
|
425 |
+
$mu[] = array( 'Uploads folder for sites', cerber_get_upload_dir_mu() );
|
426 |
+
|
427 |
+
$ret[] = '<p>Multisite system constant</p>' . cerber_make_plain_table( $mu );
|
428 |
+
}
|
429 |
+
|
430 |
$pls = array();
|
431 |
$list = get_option('active_plugins');
|
432 |
foreach($list as $plugin) {
|
451 |
|
452 |
function cerber_get_chmod( $file ) {
|
453 |
return substr( sprintf( '%o', @fileperms( $file ) ), - 4 );
|
454 |
+
}
|
455 |
+
|
456 |
+
/*
|
457 |
+
* Create database diagnostic report
|
458 |
+
*
|
459 |
+
*
|
460 |
+
*/
|
461 |
+
function cerber_db_diag(){
|
462 |
+
global $wpdb,$wp_cerber;
|
463 |
+
$ret = array();
|
464 |
+
|
465 |
+
$ret[]= 'Database name: '.DB_NAME;
|
466 |
+
|
467 |
+
$pool = $wpdb->get_row('SHOW VARIABLES LIKE "innodb_buffer_pool_size"');
|
468 |
+
$pool_size = round($pool->Value / 1048576);
|
469 |
+
$inno = 'InnoDB buffer pool size: <b>'.$pool_size.' MB</b>';
|
470 |
+
if ($pool_size < 16) $inno .= ' Your pool size is extremely small!';
|
471 |
+
elseif ($pool_size < 64) $inno .= ' It seems that your pool size is too small.';
|
472 |
+
$ret[]= $inno;
|
473 |
+
|
474 |
+
$ret[]= cerber_table_info(CERBER_LOG_TABLE);
|
475 |
+
$ret[]= cerber_table_info(CERBER_ACL_TABLE);
|
476 |
+
$ret[]= cerber_table_info(CERBER_BLOCKS_TABLE);
|
477 |
+
$ret[]= cerber_table_info(CERBER_TRAF_TABLE);
|
478 |
+
|
479 |
+
if ($wp_cerber->getRemoteIp() == '127.0.0.1') $ret[] = '<p style="color: #DF0000;">It seems that we are unable to get IP addresses.</p>';
|
480 |
+
|
481 |
+
if ($errors = get_site_option( '_cerber_db_errors')){
|
482 |
+
$err = '<p style="color: #DF0000;">Some minor DB errors were detected</p><textarea>'.print_r($errors,1).'</textarea>';
|
483 |
+
update_site_option( '_cerber_db_errors', '');
|
484 |
+
}
|
485 |
+
else $err = '';
|
486 |
+
|
487 |
+
return $err.implode('<br>',$ret);
|
488 |
+
}
|
489 |
+
|
490 |
+
/**
|
491 |
+
* Creates mini report about given database table
|
492 |
+
*
|
493 |
+
* @param $table
|
494 |
+
*
|
495 |
+
* @return string
|
496 |
+
*/
|
497 |
+
function cerber_table_info( $table ) {
|
498 |
+
global $wpdb;
|
499 |
+
if (!cerber_is_table($table)){
|
500 |
+
return '<p style="color: #DF0000;">ERROR. Database table ' . $table . ' not found! Click repair button below.</p>';
|
501 |
+
}
|
502 |
+
$cols = $wpdb->get_results( "SHOW FULL COLUMNS FROM " . $table );
|
503 |
+
|
504 |
+
$columns = '<table><tr><th style="width: 30%">Field</th><th style="width: 30%">Type</th><th style="width: 30%">Collation</th></tr>';
|
505 |
+
foreach ( $cols as $column ) {
|
506 |
+
$column = obj_to_arr_deep( $column );
|
507 |
+
$field = array_shift( $column );
|
508 |
+
$type = array_shift( $column );
|
509 |
+
$collation = array_shift( $column );
|
510 |
+
$columns .= '<tr><td><b>' . $field . '<b></td><td>' . $type . '</td><td>' . $collation . '</td></tr>';
|
511 |
+
}
|
512 |
+
$columns .= '</table>';
|
513 |
+
|
514 |
+
$rows = absint( cerber_db_get_var( 'SELECT COUNT(*) FROM ' . $table ) );
|
515 |
+
|
516 |
+
$sts = $wpdb->get_row( 'SHOW TABLE STATUS WHERE NAME = "' . $table .'"');
|
517 |
+
$status = '<table>';
|
518 |
+
foreach ( $sts as $key => $value ) {
|
519 |
+
$status .= '<tr><td><b>' . $key . '<b></td><td>' . $value . '</td></tr>';
|
520 |
+
}
|
521 |
+
$status .= '</table>';
|
522 |
+
|
523 |
+
$truncate = '';
|
524 |
+
if ($rows) {
|
525 |
+
$truncate = ' <a href="'.wp_nonce_url( add_query_arg( array( 'truncate' => $table ) ), 'control', 'cerber_nonce' ).'" class="crb-button-tiny" onclick="return confirm(\'Confirm emptying the table. It cannot be rolled back.\')">Delete all rows</a>';
|
526 |
+
}
|
527 |
+
|
528 |
+
return '<p style="font-size: 110%;">Table: <b>' . $table . '</b>, rows: ' . $rows . $truncate. '</p><table class="diag-table"><tr><td class="diag-td">' . $columns . '</td><td class="diag-td">'. $status.'</td></tr></table>';
|
529 |
+
}
|
530 |
+
|
531 |
+
|
532 |
+
function cerber_environment_diag() {
|
533 |
+
$issues = array();
|
534 |
+
if ( version_compare( '5.4', phpversion(), '>' ) ) {
|
535 |
+
$issues[] = 'Your site run on the outdated version of PHP ' . phpversion() . '. We strongly encourage you to upgrade it to a newer version of PHP.';
|
536 |
+
}
|
537 |
+
if ( ! function_exists( 'http_response_code' ) ) {
|
538 |
+
$issues[] = 'The PHP function http_response_code() is not found or disabled.';
|
539 |
+
}
|
540 |
+
if ( ! is_numeric( $_SERVER['REQUEST_TIME_FLOAT'] ) ) {
|
541 |
+
$issues[] = 'The server environment variable $_SERVER[\'REQUEST_TIME_FLOAT\'] is not set correctly.';
|
542 |
+
}
|
543 |
+
|
544 |
+
if ( $c = cerber_cron_diag() ) {
|
545 |
+
$issues[] = $c;
|
546 |
+
}
|
547 |
+
|
548 |
+
$ret = null;
|
549 |
+
if ( $issues ) {
|
550 |
+
$issues = '<p>' . implode( '</p><p>', $issues ) . '</p>';
|
551 |
+
$ret = array(
|
552 |
+
'<h3><span style="color: red;" class="dashicons dashicons-warning"></span> Some issues detected. They can affect plugin functionality.</h3>',
|
553 |
+
$issues
|
554 |
+
);
|
555 |
+
}
|
556 |
+
|
557 |
+
return $ret;
|
558 |
+
}
|
559 |
+
|
560 |
+
function cerber_cron_diag(){
|
561 |
+
$c1 = (date( 'G' ) - get_site_transient( 'crb_hourly_1' ));
|
562 |
+
$c2 = (date( 'G' ) - get_site_transient( 'crb_hourly_2' ));
|
563 |
+
if ( $c1 > 0 || $c2 > 0 ) {
|
564 |
+
$issues[] = 'Scheduled cron tasks are not executed properly.';
|
565 |
+
}
|
566 |
+
|
567 |
+
return false;
|
568 |
}
|
changelog.txt
CHANGED
@@ -1,11 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
= 7.5 =
|
2 |
-
New:
|
3 |
-
New: The traffic logger can save headers, cookies and the $_SERVER variable for every HTTP request.
|
4 |
-
New: The scanner now scans installed plugins for known vulnerabilities. If you have enabled scheduled automatic scans you will be notified in a email report.
|
5 |
-
Update: A set of new malware signatures amd patterns have been added to detect malware submitted through a contact form as well as any HTTP request fields.
|
6 |
-
Update: Now the plugin inspects user sign ups (user registrations) on multisite WordPress installations and BuddyPress.
|
7 |
-
Update: The search for user activity, as well as enabling activity notifications, is improved.
|
8 |
-
*[Read more](https://wpcerber.com/wp-cerber-security-7-5/)
|
9 |
|
10 |
= 7.2 =
|
11 |
* New: Monitoring new and changed files.
|
1 |
+
= 7.6 =
|
2 |
+
* New: The quarantine has got a separate admin page in the WordPress dashboard which allows viewing deleted files, restoring or deleting them.
|
3 |
+
* New: Now the malware scanner and integrity checker supports multisite WordPress installations.
|
4 |
+
* Bug fixed: Once an address IP has been locked out after reaching the limit to the number of attempts to log in the "We’re sorry, you are not allowed to proceed" forbidden page is being displayed instead of the normal user message "You have exceeded the number of allowed login attempts".
|
5 |
+
* Bug fixed: PHP Notice: Only variables should be passed by reference in cerber-load.php on line 5377
|
6 |
+
* Update: Miscellaneous code improvements for traffic inspector
|
7 |
+
|
8 |
= 7.5 =
|
9 |
+
* New: Firewall algorithms have been improved and now inspect the contents of all files that are being tried to upload on a website.
|
10 |
+
* New: The traffic logger can save headers, cookies and the $_SERVER variable for every HTTP request.
|
11 |
+
* New: The scanner now scans installed plugins for known vulnerabilities. If you have enabled scheduled automatic scans you will be notified in a email report.
|
12 |
+
* Update: A set of new malware signatures amd patterns have been added to detect malware submitted through a contact form as well as any HTTP request fields.
|
13 |
+
* Update: Now the plugin inspects user sign ups (user registrations) on multisite WordPress installations and BuddyPress.
|
14 |
+
* Update: The search for user activity, as well as enabling activity notifications, is improved.
|
15 |
+
* [Read more](https://wpcerber.com/wp-cerber-security-7-5/)
|
16 |
|
17 |
= 7.2 =
|
18 |
* New: Monitoring new and changed files.
|
common.php
CHANGED
@@ -58,9 +58,9 @@ function cerber_admin_link($tab = '', $args = array()){
|
|
58 |
//return add_query_arg(array('record_id'=>$record_id,'mode'=>'view_record'),admin_url('admin.php?page=storage'));
|
59 |
|
60 |
if ( empty( $args['page'] ) ) {
|
61 |
-
if ( in_array( $tab, array( '
|
62 |
$page = 'cerber-recaptcha';
|
63 |
-
|
64 |
}
|
65 |
elseif ( in_array( $tab, array( 'imex', 'diagnostic', 'license' ) ) ) {
|
66 |
$page = 'cerber-tools';
|
@@ -71,7 +71,7 @@ function cerber_admin_link($tab = '', $args = array()){
|
|
71 |
elseif ( in_array( $tab, array( 'geo' ) ) ) {
|
72 |
$page = 'cerber-rules';
|
73 |
}
|
74 |
-
elseif ( in_array( $tab, array( 'scanner', 'scan_settings', 'scan_schedule' ) ) ) {
|
75 |
$page = 'cerber-integrity';
|
76 |
}
|
77 |
else {
|
@@ -493,6 +493,29 @@ function recursive_search_key($array, $needle){
|
|
493 |
return false;
|
494 |
}
|
495 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
/**
|
497 |
* Return true if a REST API URL has been requested
|
498 |
*
|
@@ -968,8 +991,10 @@ function cerber_admin_message($msg){
|
|
968 |
* @return string
|
969 |
*/
|
970 |
function cerber_ago_time( $time ) {
|
|
|
971 |
|
972 |
-
|
|
|
973 |
}
|
974 |
|
975 |
function cerber_auto_date( $time ) {
|
58 |
//return add_query_arg(array('record_id'=>$record_id,'mode'=>'view_record'),admin_url('admin.php?page=storage'));
|
59 |
|
60 |
if ( empty( $args['page'] ) ) {
|
61 |
+
if ( in_array( $tab, array( 'antispam', 'captcha' ) ) ) {
|
62 |
$page = 'cerber-recaptcha';
|
63 |
+
//$tab = null;
|
64 |
}
|
65 |
elseif ( in_array( $tab, array( 'imex', 'diagnostic', 'license' ) ) ) {
|
66 |
$page = 'cerber-tools';
|
71 |
elseif ( in_array( $tab, array( 'geo' ) ) ) {
|
72 |
$page = 'cerber-rules';
|
73 |
}
|
74 |
+
elseif ( in_array( $tab, array( 'scanner', 'scan_settings', 'scan_schedule', 'scan_quarantine' ) ) ) {
|
75 |
$page = 'cerber-integrity';
|
76 |
}
|
77 |
else {
|
493 |
return false;
|
494 |
}
|
495 |
|
496 |
+
/**
|
497 |
+
* array_column() implementation for PHP < 5.5
|
498 |
+
*
|
499 |
+
* @param array $arr Multidimensional array
|
500 |
+
* @param string $column Column key
|
501 |
+
*
|
502 |
+
* @return array
|
503 |
+
*/
|
504 |
+
function crb_array_column( $arr = array(), $column = '' ) {
|
505 |
+
global $x_column;
|
506 |
+
$x_column = $column;
|
507 |
+
|
508 |
+
$ret = array_map( function ( $element ) {
|
509 |
+
global $x_column;
|
510 |
+
|
511 |
+
return $element[ $x_column ];
|
512 |
+
}, $arr );
|
513 |
+
|
514 |
+
$ret = array_values( $ret );
|
515 |
+
|
516 |
+
return $ret;
|
517 |
+
}
|
518 |
+
|
519 |
/**
|
520 |
* Return true if a REST API URL has been requested
|
521 |
*
|
991 |
* @return string
|
992 |
*/
|
993 |
function cerber_ago_time( $time ) {
|
994 |
+
$diff = human_time_diff( $time );
|
995 |
|
996 |
+
// _x( 'at', 'preposition of time',
|
997 |
+
return ( $time <= time() ) ? sprintf( __( '%s ago' ), $diff ) : sprintf( _x( 'in %s', 'preposition of a period of time like: in 6 hours', 'wp-cerber' ), $diff );
|
998 |
}
|
999 |
|
1000 |
function cerber_auto_date( $time ) {
|
dashboard.php
CHANGED
@@ -60,8 +60,9 @@ function cerber_admin_menu() {
|
|
60 |
add_submenu_page( 'cerber-security', __( 'Cerber Security Rules', 'wp-cerber' ), __( 'Security Rules', 'wp-cerber' ), 'manage_options', 'cerber-rules', 'cerber_rules_page' );
|
61 |
}
|
62 |
|
63 |
-
if (
|
64 |
-
add_submenu_page( 'cerber-security', 'Cerber Security: Site Integrity', __( 'Site Integrity', 'wp-cerber' ), 'manage_options', 'cerber-integrity', 'cerber_integrity_page' );
|
|
|
65 |
}
|
66 |
|
67 |
add_submenu_page( 'cerber-security', __( 'Cerber antispam settings', 'wp-cerber' ), __( 'Antispam', 'wp-cerber' ), 'manage_options', 'cerber-recaptcha', 'cerber_recaptcha_page' );
|
@@ -448,7 +449,7 @@ function cerber_admin_request(){
|
|
448 |
elseif ( isset( $_GET['force_repair_db'] ) ) {
|
449 |
cerber_create_db();
|
450 |
cerber_upgrade_db( true );
|
451 |
-
cerber_admin_message( 'Cerber\'s tables
|
452 |
cerber_safe_redirect('force_repair_db');
|
453 |
}
|
454 |
elseif ( isset( $_GET['truncate'] ) ) {
|
@@ -472,32 +473,42 @@ function cerber_admin_request(){
|
|
472 |
cerber_admin_message( 'The cache has been cleaned up');
|
473 |
cerber_safe_redirect('clean_up_the_cache');
|
474 |
}
|
|
|
|
|
|
|
|
|
475 |
}
|
476 |
|
477 |
if ( cerber_is_http_post() ) {
|
478 |
if ( isset( $_POST['crb_geo_rules'] ) ) {
|
479 |
crb_save_geo_rules();
|
480 |
}
|
481 |
-
|
482 |
$lic = preg_replace( "/[^A-Z0-9]/i", '', $_POST['cerber_license'] );
|
483 |
-
if ( !empty($lic) && strlen( $lic ) != LAB_KEY_LENGTH ) {
|
484 |
return;
|
485 |
}
|
486 |
-
lab_update_key($lic);
|
487 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
488 |
}
|
489 |
-
|
490 |
-
|
491 |
|
492 |
}
|
493 |
|
494 |
-
function cerber_safe_redirect($args){
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
}
|
502 |
/**
|
503 |
* Generate export CSV file using $_GET parameters (via cerber_activity_query())
|
@@ -634,7 +645,8 @@ function cerber_show_activity($args = array(), $echo = true){
|
|
634 |
if ( $row->user_id ) {
|
635 |
if ( isset( $user_cache[ $row->user_id ] ) ) {
|
636 |
$name = $user_cache[ $row->user_id ];
|
637 |
-
}
|
|
|
638 |
|
639 |
if ( ! is_multisite() && $u->roles ) {
|
640 |
$r = array();
|
@@ -644,8 +656,8 @@ function cerber_show_activity($args = array(), $echo = true){
|
|
644 |
$r = '<span class="act-role">' . implode( ', ', $r ) . '</span>';
|
645 |
}
|
646 |
else {
|
647 |
-
|
648 |
-
|
649 |
|
650 |
$name = '<a href="' . $base_url . '&filter_user=' . $row->user_id . '"><b>' . $u->display_name . '</b></a><p>' . $r . '</p>';
|
651 |
|
@@ -653,12 +665,14 @@ function cerber_show_activity($args = array(), $echo = true){
|
|
653 |
$avatar = get_avatar( $row->user_id, 32 );
|
654 |
$name = '<table class="crb-avatar"><tr><td>' . $avatar . '</td><td>' . $name . '</td></tr></table>';
|
655 |
}
|
656 |
-
}
|
|
|
657 |
$name = '';
|
658 |
}
|
659 |
|
660 |
$user_cache[ $row->user_id ] = $name;
|
661 |
-
}
|
|
|
662 |
$name = '';
|
663 |
}
|
664 |
|
@@ -1309,7 +1323,7 @@ function cerber_quick_w(){
|
|
1309 |
<a href="'.$dash.'"><i class="crb-icon crb-icon-bxs-dashboard"></i> ' . __('Dashboard','wp-cerber').'</a> |
|
1310 |
<a href="'.$act.'"><i class="crb-icon crb-icon-bx-pulse"></i> ' . __('Activity','wp-cerber').'</a> |
|
1311 |
<a href="'.$acl.'"><i class="crb-icon crb-icon-bx-show"></i> ' . __('Traffic','wp-cerber').'</a> |
|
1312 |
-
<a href="'.$loc.'"><
|
1313 |
</div>';
|
1314 |
if ( $new = cerber_check_version() ) {
|
1315 |
echo '<div class="up-cerber">' . $new['msg'] . '</div>';
|
@@ -1320,12 +1334,16 @@ function cerber_quick_w(){
|
|
1320 |
Show Help tab screen
|
1321 |
*/
|
1322 |
function cerber_show_help() {
|
1323 |
-
|
1324 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1325 |
}
|
1326 |
-
else {
|
1327 |
-
cerber_show_scan_help();
|
1328 |
-
}
|
1329 |
}
|
1330 |
|
1331 |
function cerber_show_scan_help() {
|
@@ -1405,44 +1423,73 @@ function cerber_show_scan_help() {
|
|
1405 |
|
1406 |
}
|
1407 |
|
1408 |
-
function
|
1409 |
-
|
1410 |
-
|
1411 |
-
if (lab_lab()){
|
1412 |
-
$support = '<p style="margin: 2em 0 5em 0;">Submit a support ticket in your personal support area: <a href="https://my.wpcerber.com/">https://my.wpcerber.com</a></p>';
|
1413 |
-
}
|
1414 |
-
else {
|
1415 |
-
$support = '<p>Support for the free version is provided on the <a target="_blank" href="https://wordpress.org/support/plugin/wp-cerber">WordPress forum only</a>, though, please note, that it is free support hence it is
|
1416 |
-
not always possible to answer all questions on a timely manner, although we do try.</p>
|
1417 |
-
|
1418 |
-
<p><a href="https://wpcerber.com/pro/" class="crb-button-tiny">If you need professional and priority support 24/7/365, please buy a PRO license</a></p>';
|
1419 |
-
}
|
1420 |
-
|
1421 |
?>
|
1422 |
-
|
1423 |
<table id="admin-help">
|
1424 |
-
<tr
|
|
|
|
|
|
|
|
|
1425 |
|
1426 |
-
|
1427 |
|
1428 |
-
|
|
|
|
|
1429 |
|
1430 |
-
<p
|
|
|
|
|
|
|
|
|
|
|
1431 |
|
1432 |
-
<
|
1433 |
|
1434 |
-
<p
|
|
|
|
|
|
|
1435 |
|
1436 |
-
<h3>
|
1437 |
|
1438 |
-
|
1439 |
|
1440 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1441 |
|
1442 |
-
<form style="margin-top: 2em;" action="https://wpcerber.com" target="_blank">
|
1443 |
-
<h3>Search plugin documentation on wpcerber.com</h3>
|
1444 |
-
<input type="text" style="width: 80%;" name="s" placeholder="Enter term to search"><input type="submit" value="Search" class="button button-primary">
|
1445 |
-
</form>
|
1446 |
|
1447 |
<h3>Troubleshooting</h3>
|
1448 |
|
@@ -1591,6 +1638,45 @@ function cerber_show_general_help() {
|
|
1591 |
<?php
|
1592 |
}
|
1593 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1594 |
/**
|
1595 |
*
|
1596 |
* Dashboard v.1
|
@@ -1947,28 +2033,40 @@ add_action('admin_init',function(){
|
|
1947 |
/*
|
1948 |
Pagination
|
1949 |
*/
|
1950 |
-
function cerber_page_navi($total, $per_page ){
|
1951 |
$max_links = 10;
|
1952 |
if ( ! $per_page ) {
|
1953 |
$per_page = 25;
|
1954 |
}
|
1955 |
-
$page
|
1956 |
-
$last_page = ceil($total / $per_page);
|
1957 |
-
$ret
|
1958 |
-
if($last_page > 1){
|
1959 |
-
$start =1 + $max_links * intval(($page-1)
|
1960 |
-
$end
|
1961 |
-
if ($end > $last_page)
|
1962 |
-
|
1963 |
-
|
1964 |
-
|
1965 |
-
|
1966 |
-
}
|
1967 |
-
|
1968 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1969 |
}
|
|
|
1970 |
return $ret;
|
1971 |
}
|
|
|
1972 |
function cerber_get_pn(){
|
1973 |
$page = 1;
|
1974 |
if ( isset( $_GET['pagen'] ) ) {
|
@@ -1991,81 +2089,6 @@ function cerber_action_links($actions, $plugin_file, $plugin_data, $context){
|
|
1991 |
}
|
1992 |
return $actions;
|
1993 |
}
|
1994 |
-
/*
|
1995 |
-
* Create database diagnostic report
|
1996 |
-
*
|
1997 |
-
*
|
1998 |
-
*/
|
1999 |
-
function cerber_db_diag(){
|
2000 |
-
global $wpdb,$wp_cerber;
|
2001 |
-
$ret = array();
|
2002 |
-
|
2003 |
-
$ret[]= 'Database name: '.DB_NAME;
|
2004 |
-
|
2005 |
-
$pool = $wpdb->get_row('SHOW VARIABLES LIKE "innodb_buffer_pool_size"');
|
2006 |
-
$pool_size = round($pool->Value / 1048576);
|
2007 |
-
$inno = 'InnoDB buffer pool size: <b>'.$pool_size.' MB</b>';
|
2008 |
-
if ($pool_size < 16) $inno .= ' Your pool size is extremely small!';
|
2009 |
-
elseif ($pool_size < 64) $inno .= ' It seems that your pool size is too small.';
|
2010 |
-
$ret[]= $inno;
|
2011 |
-
|
2012 |
-
$ret[]= cerber_table_info(CERBER_LOG_TABLE);
|
2013 |
-
$ret[]= cerber_table_info(CERBER_ACL_TABLE);
|
2014 |
-
$ret[]= cerber_table_info(CERBER_BLOCKS_TABLE);
|
2015 |
-
$ret[]= cerber_table_info(CERBER_TRAF_TABLE);
|
2016 |
-
|
2017 |
-
if ($wp_cerber->getRemoteIp() == '127.0.0.1') $ret[] = '<p style="color: #DF0000;">It seems that we are unable to get IP addresses.</p>';
|
2018 |
-
|
2019 |
-
if ($errors = get_site_option( '_cerber_db_errors')){
|
2020 |
-
$err = '<p style="color: #DF0000;">Some minor DB errors were detected</p><textarea>'.print_r($errors,1).'</textarea>';
|
2021 |
-
update_site_option( '_cerber_db_errors', '');
|
2022 |
-
}
|
2023 |
-
else $err = '';
|
2024 |
-
|
2025 |
-
return $err.implode('<br>',$ret);
|
2026 |
-
}
|
2027 |
-
|
2028 |
-
/**
|
2029 |
-
* Creates mini report about given database table
|
2030 |
-
*
|
2031 |
-
* @param $table
|
2032 |
-
*
|
2033 |
-
* @return string
|
2034 |
-
*/
|
2035 |
-
function cerber_table_info( $table ) {
|
2036 |
-
global $wpdb;
|
2037 |
-
if (!cerber_is_table($table)){
|
2038 |
-
return '<p style="color: #DF0000;">ERROR. Database table ' . $table . ' not found! Click repair button below.</p>';
|
2039 |
-
}
|
2040 |
-
$cols = $wpdb->get_results( "SHOW FULL COLUMNS FROM " . $table );
|
2041 |
-
|
2042 |
-
$columns = '<table><tr><th style="width: 30%">Field</th><th style="width: 30%">Type</th><th style="width: 30%">Collation</th></tr>';
|
2043 |
-
foreach ( $cols as $column ) {
|
2044 |
-
$column = obj_to_arr_deep( $column );
|
2045 |
-
$field = array_shift( $column );
|
2046 |
-
$type = array_shift( $column );
|
2047 |
-
$collation = array_shift( $column );
|
2048 |
-
$columns .= '<tr><td><b>' . $field . '<b></td><td>' . $type . '</td><td>' . $collation . '</td></tr>';
|
2049 |
-
}
|
2050 |
-
$columns .= '</table>';
|
2051 |
-
|
2052 |
-
$rows = absint( cerber_db_get_var( 'SELECT COUNT(*) FROM ' . $table ) );
|
2053 |
-
|
2054 |
-
$sts = $wpdb->get_row( 'SHOW TABLE STATUS WHERE NAME = "' . $table .'"');
|
2055 |
-
$status = '<table>';
|
2056 |
-
foreach ( $sts as $key => $value ) {
|
2057 |
-
$status .= '<tr><td><b>' . $key . '<b></td><td>' . $value . '</td></tr>';
|
2058 |
-
}
|
2059 |
-
$status .= '</table>';
|
2060 |
-
|
2061 |
-
$truncate = '';
|
2062 |
-
if ($rows) {
|
2063 |
-
$truncate = ' <a href="'.wp_nonce_url( add_query_arg( array( 'truncate' => $table ) ), 'control', 'cerber_nonce' ).'" class="crb-button-tiny" onclick="return confirm(\'Confirm emptying the table. It cannot be rolled back.\')">Delete all rows</a>';
|
2064 |
-
}
|
2065 |
-
|
2066 |
-
return '<p style="font-size: 110%;">Table: <b>' . $table . '</b>, rows: ' . $rows . $truncate. '</p><table class="diag-table"><tr><td class="diag-td">' . $columns . '</td><td class="diag-td">'. $status.'</td></tr></table>';
|
2067 |
-
}
|
2068 |
-
|
2069 |
|
2070 |
/*
|
2071 |
function add_some_pointers() {
|
@@ -2238,6 +2261,7 @@ function cerber_admin_head(){
|
|
2238 |
|
2239 |
/* Hide alien's crappy messages */
|
2240 |
.update-nag,
|
|
|
2241 |
#setting-error-tgmpa,
|
2242 |
.pms-cross-promo,
|
2243 |
.vc_license-activation-notice,
|
@@ -2367,22 +2391,13 @@ function cerber_footer_text2($text){
|
|
2367 |
*
|
2368 |
*/
|
2369 |
function cerber_screen_options() {
|
2370 |
-
if ( !
|
2371 |
-
$id = $_GET['tab'];
|
2372 |
-
}
|
2373 |
-
else {
|
2374 |
-
$id = $_GET['page'];
|
2375 |
-
}
|
2376 |
-
if ($id == 'cerber-traffic') {
|
2377 |
-
$id = 'traffic';
|
2378 |
-
}
|
2379 |
-
if ( !in_array( $id, array( 'lockouts', 'activity', 'traffic' ) ) ) {
|
2380 |
return;
|
2381 |
}
|
2382 |
$args = array(
|
2383 |
//'label' => __( 'Number of items per page:' ),
|
2384 |
'default' => 25,
|
2385 |
-
'option'
|
2386 |
);
|
2387 |
add_screen_option( 'per_page', $args );
|
2388 |
// add_screen_option( 'layout_columns', array('max' => 2, 'default' => 2) );
|
@@ -2394,43 +2409,57 @@ function cerber_screen_options() {
|
|
2394 |
*/
|
2395 |
add_filter('set-screen-option', 'cerber_save_screen_option', 10, 3);
|
2396 |
function cerber_save_screen_option($status, $option, $value) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2397 |
if ( ! empty( $_GET['tab'] ) ) {
|
2398 |
$id = $_GET['tab'];
|
2399 |
}
|
2400 |
else {
|
2401 |
$id = $_GET['page'];
|
2402 |
}
|
2403 |
-
if ($id == 'cerber-traffic') {
|
2404 |
$id = 'traffic';
|
2405 |
-
}
|
2406 |
-
if ( in_array( $id, array( 'lockouts', 'activity', 'traffic' ) ) ) {
|
2407 |
-
if ( 'cerber_screen_'.$id == $option ) {
|
2408 |
-
return $value;
|
2409 |
-
}
|
2410 |
}
|
2411 |
-
|
|
|
|
|
|
|
|
|
2412 |
}
|
|
|
2413 |
/*
|
2414 |
* Retrieve option for current screen
|
2415 |
* @since 3.0
|
2416 |
*
|
2417 |
*/
|
2418 |
-
function cerber_get_per_page(){
|
2419 |
if ( is_multisite() ) {
|
2420 |
return 50; // temporary workaround
|
2421 |
}
|
|
|
|
|
|
|
2422 |
$screen = get_current_screen();
|
2423 |
-
$screen_option = $screen->get_option('per_page', 'option')
|
2424 |
-
|
2425 |
-
|
2426 |
-
|
2427 |
-
|
2428 |
-
|
2429 |
-
|
2430 |
-
|
|
|
2431 |
}
|
2432 |
|
2433 |
-
return $
|
2434 |
}
|
2435 |
|
2436 |
function cerber_rules_page(){
|
@@ -3492,4 +3521,59 @@ function cerber_check_ajax(){
|
|
3492 |
if ( ! current_user_can( 'manage_options' ) ) {
|
3493 |
wp_die('Oops! Access denied.');
|
3494 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3495 |
}
|
60 |
add_submenu_page( 'cerber-security', __( 'Cerber Security Rules', 'wp-cerber' ), __( 'Security Rules', 'wp-cerber' ), 'manage_options', 'cerber-rules', 'cerber_rules_page' );
|
61 |
}
|
62 |
|
63 |
+
if ( cerber_get_upload_dir_mu() ) {
|
64 |
+
$hook = add_submenu_page( 'cerber-security', 'Cerber Security: Site Integrity', __( 'Site Integrity', 'wp-cerber' ), 'manage_options', 'cerber-integrity', 'cerber_integrity_page' );
|
65 |
+
add_action( 'load-' . $hook, 'cerber_screen_options' );
|
66 |
}
|
67 |
|
68 |
add_submenu_page( 'cerber-security', __( 'Cerber antispam settings', 'wp-cerber' ), __( 'Antispam', 'wp-cerber' ), 'manage_options', 'cerber-recaptcha', 'cerber_recaptcha_page' );
|
449 |
elseif ( isset( $_GET['force_repair_db'] ) ) {
|
450 |
cerber_create_db();
|
451 |
cerber_upgrade_db( true );
|
452 |
+
cerber_admin_message( 'Cerber\'s DB tables have been upgraded' );
|
453 |
cerber_safe_redirect('force_repair_db');
|
454 |
}
|
455 |
elseif ( isset( $_GET['truncate'] ) ) {
|
473 |
cerber_admin_message( 'The cache has been cleaned up');
|
474 |
cerber_safe_redirect('clean_up_the_cache');
|
475 |
}
|
476 |
+
elseif ( isset( $_GET['crb-qdo'] ) ) {
|
477 |
+
cerber_quarantine_do( $_GET['crb-qdo'], $_GET['crb-qscan'], $_GET['crb-qfile'] );
|
478 |
+
cerber_safe_redirect( array( 'crb-qdo', 'crb-qscan', 'crb-qfile' ) );
|
479 |
+
}
|
480 |
}
|
481 |
|
482 |
if ( cerber_is_http_post() ) {
|
483 |
if ( isset( $_POST['crb_geo_rules'] ) ) {
|
484 |
crb_save_geo_rules();
|
485 |
}
|
486 |
+
elseif ( isset( $_POST['cerber_license'] ) ) {
|
487 |
$lic = preg_replace( "/[^A-Z0-9]/i", '', $_POST['cerber_license'] );
|
488 |
+
if ( ! empty( $lic ) && strlen( $lic ) != LAB_KEY_LENGTH ) {
|
489 |
return;
|
490 |
}
|
491 |
+
lab_update_key( $lic );
|
492 |
+
if ( $lic ) {
|
493 |
+
if ( lab_validate_lic() ) {
|
494 |
+
cerber_admin_message( '<b>Great! You\'ve entered a valid license key.</b><p>Now, whenever you see a green shield icon in the top right-hand corner of a Cerber\'s admin page, it means the professional version works as intended and your website is protected by Cerber Cloud Protection.</p><p>Thanks for being our client.</p>' );
|
495 |
+
}
|
496 |
+
else {
|
497 |
+
cerber_admin_notice( 'Error! You have entered an invalid or expired license key.' );
|
498 |
+
}
|
499 |
+
}
|
500 |
}
|
501 |
+
}
|
|
|
502 |
|
503 |
}
|
504 |
|
505 |
+
function cerber_safe_redirect( $args ) {
|
506 |
+
if ( ! is_array( $args ) ) {
|
507 |
+
$args = array( $args );
|
508 |
+
}
|
509 |
+
$args[] = 'cerber_nonce';
|
510 |
+
wp_safe_redirect( remove_query_arg( $args ) );
|
511 |
+
exit(); // mandatory!
|
512 |
}
|
513 |
/**
|
514 |
* Generate export CSV file using $_GET parameters (via cerber_activity_query())
|
645 |
if ( $row->user_id ) {
|
646 |
if ( isset( $user_cache[ $row->user_id ] ) ) {
|
647 |
$name = $user_cache[ $row->user_id ];
|
648 |
+
}
|
649 |
+
elseif ( $u = get_userdata( $row->user_id ) ) {
|
650 |
|
651 |
if ( ! is_multisite() && $u->roles ) {
|
652 |
$r = array();
|
656 |
$r = '<span class="act-role">' . implode( ', ', $r ) . '</span>';
|
657 |
}
|
658 |
else {
|
659 |
+
$r = '';
|
660 |
+
}
|
661 |
|
662 |
$name = '<a href="' . $base_url . '&filter_user=' . $row->user_id . '"><b>' . $u->display_name . '</b></a><p>' . $r . '</p>';
|
663 |
|
665 |
$avatar = get_avatar( $row->user_id, 32 );
|
666 |
$name = '<table class="crb-avatar"><tr><td>' . $avatar . '</td><td>' . $name . '</td></tr></table>';
|
667 |
}
|
668 |
+
}
|
669 |
+
else {
|
670 |
$name = '';
|
671 |
}
|
672 |
|
673 |
$user_cache[ $row->user_id ] = $name;
|
674 |
+
}
|
675 |
+
else {
|
676 |
$name = '';
|
677 |
}
|
678 |
|
1323 |
<a href="'.$dash.'"><i class="crb-icon crb-icon-bxs-dashboard"></i> ' . __('Dashboard','wp-cerber').'</a> |
|
1324 |
<a href="'.$act.'"><i class="crb-icon crb-icon-bx-pulse"></i> ' . __('Activity','wp-cerber').'</a> |
|
1325 |
<a href="'.$acl.'"><i class="crb-icon crb-icon-bx-show"></i> ' . __('Traffic','wp-cerber').'</a> |
|
1326 |
+
<a href="'.$loc.'"><i class="crb-icon crb-icon-bx-chip"></i> ' . __('Antispam','wp-cerber').'</a>
|
1327 |
</div>';
|
1328 |
if ( $new = cerber_check_version() ) {
|
1329 |
echo '<div class="up-cerber">' . $new['msg'] . '</div>';
|
1334 |
Show Help tab screen
|
1335 |
*/
|
1336 |
function cerber_show_help() {
|
1337 |
+
switch ( $_GET['page'] ) {
|
1338 |
+
case 'cerber-integrity':
|
1339 |
+
cerber_show_scan_help();
|
1340 |
+
break;
|
1341 |
+
case 'cerber-recaptcha':
|
1342 |
+
cerber_show_anti_help();
|
1343 |
+
break;
|
1344 |
+
default:
|
1345 |
+
cerber_show_general_help();
|
1346 |
}
|
|
|
|
|
|
|
1347 |
}
|
1348 |
|
1349 |
function cerber_show_scan_help() {
|
1423 |
|
1424 |
}
|
1425 |
|
1426 |
+
function cerber_show_anti_help() {
|
1427 |
+
global $crb_assets_url;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1428 |
?>
|
1429 |
+
<div id="crb-help">
|
1430 |
<table id="admin-help">
|
1431 |
+
<tr>
|
1432 |
+
<td>
|
1433 |
+
<?php
|
1434 |
+
|
1435 |
+
cerber_help();
|
1436 |
|
1437 |
+
?>
|
1438 |
|
1439 |
+
</td>
|
1440 |
+
<td>
|
1441 |
+
<h3>Setting up anti-spam protection</h3>
|
1442 |
|
1443 |
+
<p>
|
1444 |
+
The Cerber anti-spam and bot detection engine is capable to protect virtually any form on a website. It’s a great alternative to reCAPTCHA.
|
1445 |
+
Tested with Caldera Forms, Gravity Forms, Contact Form 7, Ninja Forms, Formidable Forms, Fast Secure Contact Form, Contact Form by WPForms and WooCommerce forms.
|
1446 |
+
</p>
|
1447 |
+
<p><span class="dashicons dashicons-before dashicons-book-alt"></span> <a target="_blank" href="https://wpcerber.com/how-to-stop-spam-user-registrations-wordpress/">How to stop spam user registrations on your WordPress</a></p>
|
1448 |
+
<p><span class="dashicons dashicons-before dashicons-book-alt"></span> <a target="_blank" href="https://wpcerber.com/antispam-for-wordpress-contact-forms/">How to stop spam form submissions on your WordPress</a></p>
|
1449 |
|
1450 |
+
<h3>Configuring exceptions for the antispam engine</h3>
|
1451 |
|
1452 |
+
<p>
|
1453 |
+
Usually, you need to specify an exception if you use a plugin or some technology that communicates with your website by submitting forms or sending POST requests programmatically. In this case, Cerber can block these legitimate requests because it recognizes them as generated by bots. This may lead to multiple false positives which you can see on the Activity tab. These entries are marked as <b>Spam form submission denied</b>.
|
1454 |
+
</p>
|
1455 |
+
<p><span class="dashicons dashicons-before dashicons-book-alt"></span> <a href="https://wpcerber.com/antispam-exception-for-specific-http-request/" target="_blank">Configuring exceptions for the antispam engine</a></p>
|
1456 |
|
1457 |
+
<h3>How to set up reCAPTCHA</h3>
|
1458 |
|
1459 |
+
<p>
|
1460 |
|
1461 |
+
Before you can start using reCAPTCHA on the website, you have to obtain a Site key and a Secret key on the Google website. To get the keys you have to have Google account.
|
1462 |
+
|
1463 |
+
Register your website and get both keys here: <a href="" target="_blank" rel="noopener noreferrer">https://www.google.com/recaptcha/admin</a>
|
1464 |
+
|
1465 |
+
Note: If you are going to use an invisible version, you must get and use Site key and a Secret key for the invisible version only.
|
1466 |
+
|
1467 |
+
<p><span class="dashicons dashicons-before dashicons-book-alt"></span> <a target="_blank" href="https://wpcerber.com/how-to-setup-recaptcha/">How to set up reCAPTCHA in details</a></p>
|
1468 |
+
<p><span class="dashicons dashicons-before dashicons-book-alt"></span> <a target="_blank" href="https://wpcerber.com/why-recaptcha-does-not-protect-wordpress/">Why does reCAPTCHA not protect WordPress against bots and brute-force attacks?</a></p>
|
1469 |
+
</p>
|
1470 |
+
|
1471 |
+
</td>
|
1472 |
+
</tr>
|
1473 |
+
</table>
|
1474 |
+
</div>
|
1475 |
+
<?php
|
1476 |
+
|
1477 |
+
}
|
1478 |
+
|
1479 |
+
function cerber_show_general_help() {
|
1480 |
+
global $crb_assets_url;
|
1481 |
+
|
1482 |
+
?>
|
1483 |
+
<div id="crb-help">
|
1484 |
+
<table id="admin-help">
|
1485 |
+
<tr><td>
|
1486 |
+
|
1487 |
+
<?php
|
1488 |
+
|
1489 |
+
cerber_help();
|
1490 |
+
|
1491 |
+
?>
|
1492 |
|
|
|
|
|
|
|
|
|
1493 |
|
1494 |
<h3>Troubleshooting</h3>
|
1495 |
|
1638 |
<?php
|
1639 |
}
|
1640 |
|
1641 |
+
function cerber_help() {
|
1642 |
+
global $crb_assets_url;
|
1643 |
+
|
1644 |
+
if ( lab_lab() ) {
|
1645 |
+
$support = '<p style="margin: 2em 0 5em 0;">Submit a support ticket in your personal support area: <a href="https://my.wpcerber.com/">https://my.wpcerber.com</a></p>';
|
1646 |
+
}
|
1647 |
+
else {
|
1648 |
+
$support = '<p>Support for the free version is provided on the <a target="_blank" href="https://wordpress.org/support/plugin/wp-cerber">WordPress forum only</a>, though, please note, that it is free support hence it is
|
1649 |
+
not always possible to answer all questions on a timely manner, although we do try.</p>
|
1650 |
+
|
1651 |
+
<p><a href="https://wpcerber.com/pro/" class="crb-button-tiny">If you need professional and priority support 24/7/365, please buy a PRO license</a></p>';
|
1652 |
+
}
|
1653 |
+
|
1654 |
+
?>
|
1655 |
+
|
1656 |
+
<img style="width: 120px; float: left; margin-right: 30px; margin-bottom: 30px;" src="<?php echo $crb_assets_url . 'wrench.png' ?>"/>
|
1657 |
+
|
1658 |
+
<h3 style="font-size: 150%;">How to configure the plugin</h3>
|
1659 |
+
|
1660 |
+
<p style="font-size: 120%;">To get the most out of Cerber Security, you need to configure the plugin properly</p>
|
1661 |
+
|
1662 |
+
<p style="font-size: 120%;">Please read this first: <a target="_blank" href="https://wpcerber.com/getting-started/">Getting Started Guide</a></p>
|
1663 |
+
|
1664 |
+
<p style="clear: both;"></p>
|
1665 |
+
|
1666 |
+
<h3>Do you have a question or need help?</h3>
|
1667 |
+
|
1668 |
+
<?php echo $support; ?>
|
1669 |
+
|
1670 |
+
<p><span class="dashicons dashicons-before dashicons-format-chat"></span> <a target="_blank" href="https://wordpress.org/support/plugin/wp-cerber">Get answer on the support forum</a></p>
|
1671 |
+
|
1672 |
+
<form style="margin-top: 2em;" action="https://wpcerber.com" target="_blank">
|
1673 |
+
<h3>Search plugin documentation on wpcerber.com</h3>
|
1674 |
+
<input type="text" style="width: 80%;" name="s" placeholder="Enter term to search"><input type="submit" value="Search" class="button button-primary">
|
1675 |
+
</form>
|
1676 |
+
|
1677 |
+
<?php
|
1678 |
+
}
|
1679 |
+
|
1680 |
/**
|
1681 |
*
|
1682 |
* Dashboard v.1
|
2033 |
/*
|
2034 |
Pagination
|
2035 |
*/
|
2036 |
+
function cerber_page_navi( $total, $per_page ) {
|
2037 |
$max_links = 10;
|
2038 |
if ( ! $per_page ) {
|
2039 |
$per_page = 25;
|
2040 |
}
|
2041 |
+
$page = cerber_get_pn();
|
2042 |
+
$last_page = ceil( $total / $per_page );
|
2043 |
+
$ret = '';
|
2044 |
+
if ( $last_page > 1 ) {
|
2045 |
+
$start = 1 + $max_links * intval( ( $page - 1 ) / $max_links );
|
2046 |
+
$end = $start + $max_links - 1;
|
2047 |
+
if ( $end > $last_page ) {
|
2048 |
+
$end = $last_page;
|
2049 |
+
}
|
2050 |
+
if ( $start > $max_links ) {
|
2051 |
+
$links[] = '<a href="' . esc_url( add_query_arg( 'pagen', $start - 1 ) ) . '" class="arrows"><b>«</b></a>';
|
2052 |
+
}
|
2053 |
+
for ( $i = $start; $i <= $end; $i ++ ) {
|
2054 |
+
if ( $page != $i ) {
|
2055 |
+
$links[] = '<a href="' . esc_url( add_query_arg( 'pagen', $i ) ) . '" >' . $i . '</a>';
|
2056 |
+
}
|
2057 |
+
else {
|
2058 |
+
$links[] = '<a class="active" style="font-size: 16px;">' . $i . '</a> ';
|
2059 |
+
}
|
2060 |
+
}
|
2061 |
+
if ( $end < $last_page ) {
|
2062 |
+
$links[] = '<a href="' . esc_url( add_query_arg( 'pagen', $i ) ) . '" class="arrows">»</a>'; // ➝
|
2063 |
+
}
|
2064 |
+
$ret = '<table class="cerber-margin" style="margin-top:1em; border-collapse: collapse;"><tr><td><div class="pagination">' . implode( ' ', $links ) . '</div></td><td><span style="margin-left:2em;"><b>' . $total . ' ' . _n( 'entry', 'entries', $total, 'wp-cerber' ) . '</b></span></td></tr></table>';
|
2065 |
}
|
2066 |
+
|
2067 |
return $ret;
|
2068 |
}
|
2069 |
+
|
2070 |
function cerber_get_pn(){
|
2071 |
$page = 1;
|
2072 |
if ( isset( $_GET['pagen'] ) ) {
|
2089 |
}
|
2090 |
return $actions;
|
2091 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2092 |
|
2093 |
/*
|
2094 |
function add_some_pointers() {
|
2261 |
|
2262 |
/* Hide alien's crappy messages */
|
2263 |
.update-nag,
|
2264 |
+
#update-nag,
|
2265 |
#setting-error-tgmpa,
|
2266 |
.pms-cross-promo,
|
2267 |
.vc_license-activation-notice,
|
2391 |
*
|
2392 |
*/
|
2393 |
function cerber_screen_options() {
|
2394 |
+
if ( ! $id = crb_get_configurable_screen() ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2395 |
return;
|
2396 |
}
|
2397 |
$args = array(
|
2398 |
//'label' => __( 'Number of items per page:' ),
|
2399 |
'default' => 25,
|
2400 |
+
'option' => 'cerber_screen_' . $id,
|
2401 |
);
|
2402 |
add_screen_option( 'per_page', $args );
|
2403 |
// add_screen_option( 'layout_columns', array('max' => 2, 'default' => 2) );
|
2409 |
*/
|
2410 |
add_filter('set-screen-option', 'cerber_save_screen_option', 10, 3);
|
2411 |
function cerber_save_screen_option($status, $option, $value) {
|
2412 |
+
|
2413 |
+
if ( $id = crb_get_configurable_screen() ) {
|
2414 |
+
if ( 'cerber_screen_' . $id == $option ) {
|
2415 |
+
return $value;
|
2416 |
+
}
|
2417 |
+
}
|
2418 |
+
return $status;
|
2419 |
+
}
|
2420 |
+
|
2421 |
+
function crb_get_configurable_screen() {
|
2422 |
if ( ! empty( $_GET['tab'] ) ) {
|
2423 |
$id = $_GET['tab'];
|
2424 |
}
|
2425 |
else {
|
2426 |
$id = $_GET['page'];
|
2427 |
}
|
2428 |
+
if ( $id == 'cerber-traffic' ) {
|
2429 |
$id = 'traffic';
|
|
|
|
|
|
|
|
|
|
|
2430 |
}
|
2431 |
+
if ( ! in_array( $id, array( 'lockouts', 'activity', 'traffic', 'scan_quarantine' ) ) ) {
|
2432 |
+
return false;
|
2433 |
+
}
|
2434 |
+
|
2435 |
+
return $id;
|
2436 |
}
|
2437 |
+
|
2438 |
/*
|
2439 |
* Retrieve option for current screen
|
2440 |
* @since 3.0
|
2441 |
*
|
2442 |
*/
|
2443 |
+
function cerber_get_per_page() {
|
2444 |
if ( is_multisite() ) {
|
2445 |
return 50; // temporary workaround
|
2446 |
}
|
2447 |
+
|
2448 |
+
$ret = 25;
|
2449 |
+
|
2450 |
$screen = get_current_screen();
|
2451 |
+
if ( $screen_option = $screen->get_option( 'per_page', 'option' ) ) {
|
2452 |
+
$per_page = absint( get_user_meta( get_current_user_id(), $screen_option, true ) );
|
2453 |
+
if ( empty ( $per_page ) || $per_page < 1 ) {
|
2454 |
+
$per_page = absint( $screen->get_option( 'per_page', 'default' ) );
|
2455 |
+
}
|
2456 |
+
if ( empty ( $per_page ) || $per_page < 1 ) {
|
2457 |
+
$per_page = 25;
|
2458 |
+
}
|
2459 |
+
$ret = $per_page;
|
2460 |
}
|
2461 |
|
2462 |
+
return $ret;
|
2463 |
}
|
2464 |
|
2465 |
function cerber_rules_page(){
|
3521 |
if ( ! current_user_can( 'manage_options' ) ) {
|
3522 |
wp_die('Oops! Access denied.');
|
3523 |
}
|
3524 |
+
}
|
3525 |
+
|
3526 |
+
/**
|
3527 |
+
* Display reCAPTCHA admin page
|
3528 |
+
*
|
3529 |
+
*/
|
3530 |
+
function cerber_recaptcha_page() {
|
3531 |
+
|
3532 |
+
$tab = cerber_get_tab( 'antispam', array(
|
3533 |
+
'antispam',
|
3534 |
+
'captcha',
|
3535 |
+
'help',
|
3536 |
+
) );
|
3537 |
+
|
3538 |
+
?>
|
3539 |
+
<div class="wrap crb-admin">
|
3540 |
+
<h2><?php _e( 'Antispam and bot detection settings', 'wp-cerber' ) ?></h2>
|
3541 |
+
|
3542 |
+
<h2 class="nav-tab-wrapper cerber-tabs">
|
3543 |
+
<?php
|
3544 |
+
|
3545 |
+
echo '<a href="' . cerber_admin_link( 'antispam' ) . '" class="nav-tab ' . ( $tab == 'antispam' ? 'nav-tab-active' : '' ) . '"><i class="crb-icon crb-icon-bx-chip"></i> ' . __( 'Antispam engine' ) . '</a>';
|
3546 |
+
echo '<a href="' . cerber_admin_link( 'captcha' ) . '" class="nav-tab ' . ( $tab == 'captcha' ? 'nav-tab-active' : '' ) . '"><i class="crb-icon crb-icon-bxl-google"></i> reCAPTCHA</a>';
|
3547 |
+
echo '<a href="' . cerber_admin_link( 'help', array( 'page' => cerber_get_admin_page() ) ) . '" class="nav-tab ' . ( $tab == 'help' ? 'nav-tab-active' : '' ) . '"><i class="crb-icon crb-icon-bx-idea"></i> ' . __( 'Help', 'wp-cerber' ) . '</a>';
|
3548 |
+
|
3549 |
+
echo lab_indicator();
|
3550 |
+
|
3551 |
+
?>
|
3552 |
+
</h2>
|
3553 |
+
<?php
|
3554 |
+
|
3555 |
+
cerber_show_aside( 'recaptcha' );
|
3556 |
+
|
3557 |
+
echo '<div class="crb-main">';
|
3558 |
+
|
3559 |
+
$section = null;
|
3560 |
+
switch ( $tab ) {
|
3561 |
+
case 'captcha':
|
3562 |
+
$section = 'recaptcha';
|
3563 |
+
break;
|
3564 |
+
case 'help':
|
3565 |
+
cerber_show_help();
|
3566 |
+
break;
|
3567 |
+
default:
|
3568 |
+
$section = 'antispam';
|
3569 |
+
}
|
3570 |
+
|
3571 |
+
if ( $section ) {
|
3572 |
+
cerber_show_settings_page( $section );
|
3573 |
+
}
|
3574 |
+
|
3575 |
+
echo '</div>';
|
3576 |
+
?>
|
3577 |
+
</div>
|
3578 |
+
<?php
|
3579 |
}
|
languages/wp-cerber-es_ES.mo
CHANGED
Binary file
|
languages/wp-cerber-es_ES.po
CHANGED
@@ -8,1121 +8,1118 @@ msgstr ""
|
|
8 |
"Language: es\n"
|
9 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
10 |
|
11 |
-
#: ../settings.php:
|
12 |
msgid "Limit login attempts"
|
13 |
msgstr "Límite de intentos de conexión"
|
14 |
|
15 |
-
#: ../settings.php:
|
16 |
msgid "Attempts"
|
17 |
msgstr "Intentos"
|
18 |
|
19 |
-
#: ../settings.php:
|
20 |
msgid "Lockout duration"
|
21 |
msgstr "Duración del bloqueo"
|
22 |
|
23 |
-
#: ../settings.php:
|
24 |
msgid "minutes"
|
25 |
msgstr "minutos"
|
26 |
|
27 |
-
#: ../settings.php:
|
28 |
msgid "Aggressive lockout"
|
29 |
msgstr "Bloqueo agresivo"
|
30 |
|
31 |
-
#: ../settings.php:
|
32 |
msgid "Site connection"
|
33 |
msgstr "Conexión web"
|
34 |
|
35 |
-
#: ../settings.php:
|
36 |
msgid "Proactive security rules"
|
37 |
msgstr "Normas de seguridad proactivas"
|
38 |
|
39 |
-
#: ../settings.php:
|
40 |
msgid "Block subnet"
|
41 |
msgstr "Bloquear subred"
|
42 |
|
43 |
-
#: ../settings.php:
|
44 |
msgid "Request wp-login.php"
|
45 |
msgstr "Solicitud wp-login.php"
|
46 |
|
47 |
-
#: ../settings.php:
|
48 |
msgid "Immediately block IP after any request to wp-login.php"
|
49 |
msgstr "Bloquear IP inmediatamente después de cualquier solicitud a wp-login.php"
|
50 |
|
51 |
-
#: ../settings.php:
|
52 |
msgid "Redirect dashboard requests"
|
53 |
msgstr "Redirigir peticiones al escritorio"
|
54 |
|
55 |
-
#: ../settings.php:
|
56 |
msgid "Custom login page"
|
57 |
-
msgstr "
|
58 |
|
59 |
-
#: ../settings.php:
|
60 |
msgid "Custom login URL"
|
61 |
-
msgstr "
|
62 |
|
63 |
-
#: ../settings.php:
|
64 |
msgid "must not overlap with the existing pages or posts slug"
|
65 |
msgstr "no debe solaparse con el slug actual de páginas o entradas"
|
66 |
|
67 |
-
#: ../settings.php:
|
68 |
msgid "Disable wp-login.php"
|
69 |
msgstr "Desactivar 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 "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 |
|
79 |
-
#: ../settings.php:
|
80 |
msgid "Threshold"
|
81 |
msgstr "Umbral"
|
82 |
|
83 |
-
#: ../settings.php:
|
84 |
msgid "Duration"
|
85 |
msgstr "Duración"
|
86 |
|
87 |
-
#: ../
|
|
|
88 |
msgid "Notifications"
|
89 |
msgstr "Notificaciones"
|
90 |
|
91 |
-
#: ../settings.php:
|
92 |
msgid "Send notification to admin email"
|
93 |
msgstr "Enviar una notificación al correo del administrador"
|
94 |
|
95 |
-
#: ../
|
96 |
-
#: tools.php:
|
97 |
msgid "Access Lists"
|
98 |
msgstr "Listas de acceso"
|
99 |
|
100 |
-
#: ../dashboard.php:
|
101 |
-
#: php:
|
102 |
msgid "Activity"
|
103 |
msgstr "Actividad"
|
104 |
|
105 |
-
#: ../
|
106 |
msgid "Lockouts"
|
107 |
msgstr "Bloqueos"
|
108 |
|
109 |
-
#: ../settings.php:
|
110 |
msgid "%s allowed retries in %s minutes"
|
111 |
msgstr "%s reintentos admitidos en %s minutos"
|
112 |
|
113 |
-
#: ../settings.php:
|
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:
|
|
|
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 |
|
133 |
-
#: ../dashboard.php:
|
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:
|
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:
|
182 |
-
#: php:
|
183 |
msgid "White IP Access List"
|
184 |
-
msgstr "Lista
|
185 |
|
186 |
-
#: ../dashboard.php:
|
187 |
-
#: php:
|
188 |
msgid "Black IP Access List"
|
189 |
-
msgstr "Lista Negra de
|
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
|
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 |
-
#: ../
|
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 |
|
211 |
-
#: ../cerber-tools.php:
|
|
|
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 |
|
231 |
-
#: ../settings.php:
|
232 |
msgid "Non-existent users"
|
233 |
msgstr "Usuarios inexistentes"
|
234 |
|
235 |
-
#: ../settings.php:
|
236 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
237 |
msgstr "Bloquear IP inmediatamente al intentar iniciar sesión con un nombre de usuario inexistente"
|
238 |
|
239 |
-
#: ../settings.php:
|
240 |
-
msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
|
241 |
-
msgstr "Desactivar la redirección automática a la página de inicio de sesión cuando /wp-admin/ es solicitado por una petición no autorizada"
|
242 |
-
|
243 |
-
#: ../settings.php:202
|
244 |
msgid "Make your protection smarter!"
|
245 |
msgstr "¡Haz que tu protección sea más inteligente!"
|
246 |
|
247 |
-
#: ../settings.php:
|
248 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
249 |
msgstr "Por favor, activa los enlaces permanentes para utilizar esta función. Establece las opciones de enlaces permanentes a algún valor no predeterminado."
|
250 |
|
251 |
-
#: ../settings.php:
|
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 |
|
259 |
-
#: ../settings.php:
|
|
|
260 |
msgid "Help"
|
261 |
msgstr "Ayuda"
|
262 |
|
263 |
-
#: ../settings.php:
|
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 |
-
#: ../
|
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 |
-
#: ../
|
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:
|
282 |
msgid "No activity has been logged."
|
283 |
msgstr "No hay actividad registrada."
|
284 |
|
285 |
-
#: ../dashboard.php:
|
286 |
msgid "Expires"
|
287 |
msgstr "Caduca"
|
288 |
|
289 |
-
#: ../dashboard.php:
|
290 |
msgid "No lockouts at the moment. The sky is clear."
|
291 |
msgstr "No hay bloqueos en este momento. El cielo esta despejado."
|
292 |
|
293 |
-
#: ../dashboard.php:
|
294 |
msgid "These IPs will never be locked out"
|
295 |
msgstr "Estas IPs nunca se bloquearán"
|
296 |
|
297 |
-
#: ../dashboard.php:
|
298 |
msgid "Your IP"
|
299 |
msgstr "Tu IP"
|
300 |
|
301 |
-
#: ../
|
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 |
-
#: ../
|
306 |
msgid "Can't activate WP Cerber due to a database error."
|
307 |
-
msgstr "No se puede activar WP Cerber debido a un error
|
308 |
|
309 |
-
#: ../settings.php:
|
310 |
msgid "Notify admin if the number of active lockouts above"
|
311 |
msgstr "Notificar al administrador si el número de bloqueos activos es superior a"
|
312 |
|
313 |
-
#: ../settings.php:
|
314 |
msgid "days"
|
315 |
msgstr "días"
|
316 |
|
317 |
-
#: ../dashboard.php:
|
318 |
msgid "Cerber Quick View"
|
319 |
-
msgstr "Vista Rápida
|
320 |
|
321 |
-
#: ../dashboard.php:
|
322 |
msgid "Hint"
|
323 |
msgstr "Sugerencia"
|
324 |
|
325 |
-
#: ../dashboard.php:
|
326 |
msgid "To view activity, click on the IP"
|
327 |
msgstr "Para ver la actividad, haz clic en la IP"
|
328 |
|
329 |
-
#: ../dashboard.php:
|
|
|
330 |
msgid "Check for activity"
|
331 |
msgstr "Comprobar actividad"
|
332 |
|
333 |
-
#: ../settings.php:
|
334 |
msgid "Always block entire subnet Class C of intruders IP"
|
335 |
msgstr "Bloquear siempre todas las subredes de clase C de IPs intrusas"
|
336 |
|
337 |
-
#: ../settings.php:
|
338 |
msgid "Click to send test"
|
339 |
msgstr "Pulsa para enviar una prueba"
|
340 |
|
341 |
-
#: ../settings.php:
|
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:
|
346 |
msgid "Comments"
|
347 |
msgstr "Comentarios"
|
348 |
|
349 |
-
#: ../common.php:
|
350 |
msgid "Update to version %s of WP Cerber"
|
351 |
msgstr "Actualizar a la versión %s de WP Cerber"
|
352 |
|
353 |
-
#: ../
|
354 |
msgid "View activity in dashboard"
|
355 |
-
msgstr "Ver actividad en el
|
356 |
|
357 |
-
#: ../
|
358 |
msgid "Number of active lockouts"
|
359 |
msgstr "Número de bloqueos activos"
|
360 |
|
361 |
-
#: ../
|
362 |
msgid "View lockouts in dashboard"
|
363 |
-
msgstr "Ver los bloqueos en el
|
364 |
|
365 |
-
#: ../
|
366 |
msgid "This message was sent by"
|
367 |
msgstr "Este mensaje fue enviado por"
|
368 |
|
369 |
-
#: ../dashboard.php:
|
370 |
msgid "Tools"
|
371 |
msgstr "Herramientas"
|
372 |
|
373 |
-
#: ../cerber-tools.php:
|
374 |
msgid "Export settings to the file"
|
375 |
msgstr "Exportar ajustes al archivo"
|
376 |
|
377 |
-
#: ../cerber-tools.php:
|
378 |
msgid "When you click the button below you will get a configuration file, which you can upload on another site."
|
379 |
msgstr "Al pulsar el botón de abajo obtendrás un archivo de configuración, que luego se puede cargar en otro sitio."
|
380 |
|
381 |
-
#: ../cerber-tools.php:
|
382 |
msgid "What do you want to export?"
|
383 |
msgstr "¿Qué quieres exportar?"
|
384 |
|
385 |
-
#: ../cerber-tools.php:
|
386 |
msgid "Download file"
|
387 |
msgstr "Descargar archivo"
|
388 |
|
389 |
-
#: ../cerber-tools.php:
|
390 |
msgid "Import settings from the file"
|
391 |
-
msgstr "Importar ajustes desde
|
392 |
|
393 |
-
#: ../cerber-tools.php:
|
394 |
msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
|
395 |
-
msgstr "Al pulsar el botón de abajo se cargará el archivo y
|
396 |
|
397 |
-
#: ../cerber-tools.php:
|
398 |
msgid "Select file to import."
|
399 |
msgstr "Seleccionar archivo a importar."
|
400 |
|
401 |
-
#: ../cerber-tools.php:
|
402 |
msgid "Maximum upload file size: %s."
|
403 |
msgstr "Tamaño máximo permitido: %s."
|
404 |
|
405 |
-
#: ../cerber-tools.php:
|
406 |
msgid "What do you want to import?"
|
407 |
msgstr "¿Qué quieres importar?"
|
408 |
|
409 |
-
#: ../cerber-tools.php:
|
410 |
msgid "Upload file"
|
411 |
msgstr "Cargar archivo"
|
412 |
|
413 |
-
#: ../cerber-tools.php:
|
414 |
msgid "No file was uploaded or file is corrupted"
|
415 |
-
msgstr "Ningún archivo subido ni
|
416 |
|
417 |
-
#: ../cerber-tools.php:
|
418 |
msgid "Error while updating"
|
419 |
msgstr "Ha habido un error al actualizar"
|
420 |
|
421 |
-
#: ../cerber-tools.php:
|
422 |
msgid "Settings has imported successfully from"
|
423 |
msgstr "La configuración se ha importado con éxito desde"
|
424 |
|
425 |
-
#: ../cerber-tools.php:
|
426 |
msgid "Error while parsing file"
|
427 |
msgstr "Error al analizar el archivo"
|
428 |
|
429 |
-
#: ../dashboard.php:
|
430 |
msgid "Hostname"
|
431 |
msgstr "Host"
|
432 |
|
433 |
-
#: ../dashboard.php:
|
434 |
msgid "unknown"
|
435 |
msgstr "desconocido"
|
436 |
|
437 |
-
#: ../settings.php:
|
438 |
msgid "Keep records for"
|
439 |
msgstr "Mantener un registro de"
|
440 |
|
441 |
-
#: ../dashboard.php:
|
442 |
msgid "active"
|
443 |
msgstr "activar"
|
444 |
|
445 |
-
#: ../dashboard.php:
|
446 |
msgid "deactivate"
|
447 |
msgstr "desactivar"
|
448 |
|
449 |
-
#: ../dashboard.php:
|
450 |
msgid "not active"
|
451 |
msgstr "no activo"
|
452 |
|
453 |
-
#: ../dashboard.php:
|
454 |
msgid "disabled"
|
455 |
msgstr "desactivado"
|
456 |
|
457 |
-
#: ../dashboard.php:
|
458 |
msgid "failed attempts"
|
459 |
msgstr "intentos fallidos"
|
460 |
|
461 |
-
#: ../dashboard.php:
|
462 |
msgid "in 24 hours"
|
463 |
msgstr "en 24 horas"
|
464 |
|
465 |
-
#: ../dashboard.php:
|
466 |
msgid "view all"
|
467 |
msgstr "ver todo"
|
468 |
|
469 |
-
#: ../dashboard.php:
|
470 |
msgid "lockouts"
|
471 |
msgstr "bloqueos"
|
472 |
|
473 |
-
#: ../dashboard.php:
|
474 |
msgid "Lockouts at the moment"
|
475 |
msgstr "Bloqueos en este momento"
|
476 |
|
477 |
-
#: ../dashboard.php:
|
478 |
msgid "Last lockout"
|
479 |
msgstr "Último bloqueo"
|
480 |
|
481 |
-
#: ../dashboard.php:
|
482 |
msgid "entry"
|
483 |
msgid_plural "entries"
|
484 |
msgstr[0] "entrada"
|
485 |
msgstr[1] "entradas"
|
486 |
|
487 |
-
#: ../dashboard.php:
|
488 |
msgid "Confused about some settings?"
|
489 |
msgstr "¿Confundido acerca de algunos ajustes?"
|
490 |
|
491 |
-
#: ../dashboard.php:
|
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:
|
496 |
msgid "Load default settings"
|
497 |
msgstr "Cargar ajustes predeterminados"
|
498 |
|
499 |
-
#: ../dashboard.php:
|
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:
|
504 |
msgid "New version is available"
|
505 |
msgstr "Nueva versión disponible"
|
506 |
|
507 |
#. Name of the plugin
|
508 |
-
#: ../dashboard.php:
|
509 |
msgid "WP Cerber"
|
510 |
msgstr "WP Cerber"
|
511 |
|
512 |
-
#: ../
|
513 |
msgid "WP Cerber notify"
|
514 |
msgstr "Notificación de WP Cerber"
|
515 |
|
516 |
-
#: ../
|
517 |
msgid "Citadel mode is activated"
|
518 |
msgstr "El Modo Ciudadela está activado."
|
519 |
|
520 |
-
#: ../
|
521 |
msgid "New Custom login URL"
|
522 |
msgstr "Nueva URL de acceso personalizada"
|
523 |
|
524 |
-
#: ../
|
525 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
526 |
-
msgstr "WP Cerber
|
527 |
|
528 |
-
#: ../
|
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 |
|
532 |
-
#: ../settings.php:
|
533 |
msgid "Use file"
|
534 |
msgstr "Usar archivo"
|
535 |
|
536 |
-
#: ../settings.php:
|
537 |
msgid "Write failed login attempts to the file"
|
538 |
msgstr "Registrar los intentos de acceso fallidos en el archivo"
|
539 |
|
540 |
-
#: ../dashboard.php:
|
541 |
msgid "Deactivate"
|
542 |
msgstr "Desactivar"
|
543 |
|
544 |
-
#: ../dashboard.php:
|
545 |
msgid "Reason"
|
546 |
msgstr "Motivo"
|
547 |
|
548 |
-
#: ../dashboard.php:
|
549 |
msgid "Add IP to the list"
|
550 |
msgstr "Añadir IP a la lista"
|
551 |
|
552 |
-
#: ../dashboard.php:
|
553 |
msgid "Add IP to the Black List"
|
554 |
msgstr "Añadir IP a la lista negra"
|
555 |
|
556 |
-
#: ../common.php:
|
557 |
msgid "Attempt to access"
|
558 |
msgstr "Intento de acceso"
|
559 |
|
560 |
-
#: ../common.php:
|
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:
|
565 |
msgid "Attempt to log in with non-existent username"
|
566 |
msgstr "Intento de acceso con nombre de usuario inexistente"
|
567 |
|
568 |
-
#: ../
|
569 |
msgid "Last lockout was added: %s for IP %s"
|
570 |
msgstr "Último bloqueo añadido: %s para la IP %s"
|
571 |
|
572 |
-
#: ../
|
573 |
msgid "Hardening"
|
574 |
msgstr "Endurecimiento"
|
575 |
|
576 |
-
#: ../dashboard.php:
|
577 |
msgid "Abuse email:"
|
578 |
msgstr "Correo electrónico de abuso:"
|
579 |
|
580 |
-
#: ../settings.php:
|
581 |
msgid "Email Address"
|
582 |
msgstr "Dirección de correo electrónico"
|
583 |
|
584 |
-
#: ../settings.php:
|
585 |
msgid "if empty, the admin email %s will be used"
|
586 |
msgstr "Si está vacío, se utilizará el correo de administrador: %s"
|
587 |
|
588 |
-
#: ../settings.php:
|
589 |
msgid "Drill down IP"
|
590 |
msgstr "Desglosar IP"
|
591 |
|
592 |
-
#: ../settings.php:
|
593 |
msgid "Retrieve extra WHOIS information for IP"
|
594 |
-
msgstr "
|
595 |
|
596 |
-
#: ../settings.php:
|
597 |
msgid "Hardening WordPress"
|
598 |
msgstr "Protegiendo WordPress"
|
599 |
|
600 |
-
#: ../settings.php:
|
601 |
msgid "Stop user enumeration"
|
602 |
msgstr "Impedir la enumeración de usuarios"
|
603 |
|
604 |
-
#: ../settings.php:
|
605 |
msgid "Disable XML-RPC"
|
606 |
msgstr "Desactivar XML-RPC"
|
607 |
|
608 |
-
#: ../settings.php:
|
609 |
msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
|
610 |
msgstr "Bloquear el acceso al servidor XML-RPC (incluyendo pingbacks y trackbacks)"
|
611 |
|
612 |
-
#: ../settings.php:
|
613 |
msgid "Disable feeds"
|
614 |
msgstr "Desactivar feeds"
|
615 |
|
616 |
-
#: ../settings.php:
|
617 |
msgid "Block access to the RSS, Atom and RDF feeds"
|
618 |
-
msgstr "Bloquear el acceso a los feeds RSS, Atom y RDF"
|
619 |
|
620 |
-
#: ../settings.php:
|
621 |
msgid "Disable REST API"
|
622 |
msgstr "Desactivar la API REST"
|
623 |
|
624 |
-
#: ../settings.php:
|
625 |
msgid "These settings do not affect hosts from the "
|
626 |
msgstr "Estos ajustes no afectan a los hosts de "
|
627 |
|
628 |
-
#: ../settings.php:
|
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 |
-
#: ../
|
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 |
|
636 |
-
#: ../dashboard.php:
|
637 |
msgid "Action"
|
638 |
msgstr "Acción"
|
639 |
|
640 |
-
#: ../dashboard.php:
|
641 |
msgid "Nobody can log in or register from these IPs"
|
642 |
msgstr "Nadie puede acceder desde estas direcciones IP"
|
643 |
|
644 |
-
#: ../dashboard.php:
|
645 |
msgid "Incorrect IP address or IP range"
|
646 |
msgstr "Dirección o rango de IP incorrecta"
|
647 |
|
648 |
-
#: ../dashboard.php:
|
649 |
msgid "Settings saved"
|
650 |
msgstr "Ajustes guardados."
|
651 |
|
652 |
-
#: ../dashboard.php:
|
653 |
msgid "Network:"
|
654 |
msgstr "Red:"
|
655 |
|
656 |
-
#: ../dashboard.php:
|
657 |
msgid "Add network to the Black List"
|
658 |
msgstr "Añadir red a la Lista Negra"
|
659 |
|
660 |
-
#: ../dashboard.php:
|
661 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
662 |
-
msgstr "¡Atención! El Modo Ciudadela
|
663 |
|
664 |
-
#: ../dashboard.php:
|
|
|
665 |
msgid "Unknown"
|
666 |
msgstr "Desconocido"
|
667 |
|
668 |
#. Author of the plugin
|
669 |
#:
|
670 |
msgid "Gregory"
|
671 |
-
msgstr ""
|
672 |
-
|
673 |
-
#: ../
|
674 |
-
#:
|
675 |
-
#:
|
676 |
-
#:
|
677 |
-
#:
|
|
|
678 |
msgid "ERROR:"
|
679 |
msgstr "ERROR:"
|
680 |
|
681 |
-
#: ../
|
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 |
-
#: ../
|
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 |
-
#: ../
|
690 |
msgid "Username is not allowed. Please choose another one."
|
691 |
msgstr "Nombre de usuario no permitido. Por favor, elige otro."
|
692 |
|
693 |
-
#: ../
|
694 |
msgid "unspecified"
|
695 |
msgstr "no especificado"
|
696 |
|
697 |
-
#: ../
|
698 |
msgid "Number of lockouts is increasing"
|
699 |
msgstr "El número de bloqueos está aumentando"
|
700 |
|
701 |
-
#: ../
|
702 |
msgid "View activity for this IP"
|
703 |
msgstr "Ver actividad de esta IP"
|
704 |
|
705 |
-
#: ../
|
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 |
-
#: ../
|
710 |
msgid "Hi!"
|
711 |
msgstr "¡Hola!"
|
712 |
|
713 |
-
#: ../
|
714 |
msgid "Website"
|
715 |
msgstr "Web"
|
716 |
|
717 |
-
#: ../
|
718 |
msgid "The WP Cerber security plugin has been deactivated"
|
719 |
-
msgstr "El plugin WP Cerber
|
720 |
|
721 |
-
#: ../
|
722 |
msgid "Not logged in"
|
723 |
msgstr "No conectado"
|
724 |
|
725 |
-
#: ../
|
726 |
msgid "By user"
|
727 |
msgstr "Por usuario"
|
728 |
|
729 |
-
#: ../
|
730 |
msgid "From IP address"
|
731 |
msgstr "De la dirección IP"
|
732 |
|
733 |
-
#: ../
|
734 |
msgid "From country"
|
735 |
msgstr "Del país"
|
736 |
|
737 |
-
#: ../
|
738 |
msgid "The WP Cerber security plugin is now active"
|
739 |
-
msgstr "El plugin WP Cerber
|
740 |
|
741 |
-
#: ../
|
742 |
msgid "Your IP address is added to the"
|
743 |
msgstr "Tu dirección IP se ha añadido a la"
|
744 |
|
745 |
-
#: ../
|
746 |
msgid "Import settings"
|
747 |
msgstr "Importar ajustes"
|
748 |
|
749 |
-
#: ../settings.php:
|
750 |
msgid "Notification limit"
|
751 |
msgstr "Límite de notificaciones"
|
752 |
|
753 |
-
#: ../settings.php:
|
754 |
msgid "notification letters allowed per hour (0 means unlimited)"
|
755 |
msgstr "notificaciones permitidas por hora (0 significa ilimitadas)"
|
756 |
|
757 |
-
#: ../settings.php:
|
758 |
msgid "User related settings"
|
759 |
msgstr "Ajustes de usuario"
|
760 |
|
761 |
-
#: ../settings.php:
|
762 |
msgid "Prohibited usernames"
|
763 |
msgstr "Nombres de usuario prohibidos"
|
764 |
|
765 |
-
#: ../settings.php:
|
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 "Los nombres de usuario de esta lista no pueden iniciar una sesión o registrarse. Toda dirección IP que intente usar cualquiera de estos nombres de usuario será bloqueada inmediatamente. Usa comas para separar los nombres de usuario."
|
768 |
|
769 |
-
#: ../settings.php:
|
770 |
msgid "User session expire"
|
771 |
msgstr "Las sesiones de usuario caducan"
|
772 |
|
773 |
-
#: ../settings.php:
|
774 |
msgid "in minutes (leave empty to use default WP value)"
|
775 |
msgstr "en minutos (dejar vacío para usar el valor de WP predeterminado)"
|
776 |
|
777 |
-
#: ../settings.php:
|
778 |
msgid "reCAPTCHA settings"
|
779 |
msgstr "Ajustes de reCAPTCHA"
|
780 |
|
781 |
-
#: ../settings.php:
|
782 |
msgid "Site key"
|
783 |
msgstr "Clave del sitio"
|
784 |
|
785 |
-
#: ../settings.php:
|
786 |
msgid "Secret key"
|
787 |
msgstr "Clave secreta"
|
788 |
|
789 |
-
#: ../settings.php:
|
790 |
msgid "Enable reCAPTCHA for WordPress registration form"
|
791 |
msgstr "Habilitar reCAPTCHA para el formulario de registro de WordPress"
|
792 |
|
793 |
-
#: ../settings.php:
|
794 |
msgid "Lost password form"
|
795 |
-
msgstr "Formulario de contraseña
|
796 |
|
797 |
-
#: ../settings.php:
|
798 |
msgid "Login form"
|
799 |
msgstr "Formulario de inicio de sesión"
|
800 |
|
801 |
-
#: ../settings.php:
|
802 |
msgid "Enable reCAPTCHA for WordPress login form"
|
803 |
msgstr "Habilitar reCAPTCHA para el formulario de acceso WordPress"
|
804 |
|
805 |
-
#: ../settings.php:
|
806 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
807 |
msgstr "Para poder usar reCAPTCHA, antes tienes que obtener una clave de sitio y una clave secreta en la web de Google"
|
808 |
|
809 |
-
#: ../cerber-lab.php:
|
810 |
msgid "Know more"
|
811 |
-
msgstr "(
|
812 |
|
813 |
-
#: ../dashboard.php:
|
814 |
msgid "WP Cerber Security"
|
815 |
msgstr "Seguridad WP Cerber"
|
816 |
|
817 |
-
#: ../settings.php:
|
818 |
msgid "Users"
|
819 |
msgstr "Usuarios"
|
820 |
|
821 |
-
#: ../common.php:
|
822 |
msgid "User created"
|
823 |
msgstr "Usuario creado"
|
824 |
|
825 |
-
#: ../dashboard.php:
|
826 |
msgid "User registered"
|
827 |
msgstr "Usuario registrado"
|
828 |
|
829 |
-
#: ../common.php:
|
830 |
msgid "reCAPTCHA verification failed"
|
831 |
msgstr "Fallo de verificación reCAPTCHA"
|
832 |
|
833 |
-
#: ../common.php:
|
834 |
msgid "reCAPTCHA settings are incorrect"
|
835 |
msgstr "Los ajustes reCAPTCHA son incorrectos"
|
836 |
|
837 |
-
#: ../common.php:
|
838 |
msgid "Attempt to access prohibited URL"
|
839 |
msgstr "Intento de acceso a URL prohibida"
|
840 |
|
841 |
-
#: ../common.php:
|
842 |
msgid "Attempt to log in with prohibited username"
|
843 |
msgstr "Intento de acceso con nombre de usuario prohibido"
|
844 |
|
845 |
-
#: ../settings.php:
|
846 |
msgid "Cerber Lab connection"
|
847 |
msgstr "Conexión WP Cerber"
|
848 |
|
849 |
-
#: ../settings.php:
|
850 |
msgid "Send malicious IP addresses to the Cerber Lab"
|
851 |
msgstr "Enviar direcciones IP maliciosas al Laboratorio de Cerber"
|
852 |
|
853 |
-
#: ../settings.php:
|
854 |
msgid "Cerber Lab protocol"
|
855 |
msgstr "Protocolo WP Cerber"
|
856 |
|
857 |
-
#: ../settings.php:
|
858 |
msgid "Registration form"
|
859 |
msgstr "Formulario de registro"
|
860 |
|
861 |
-
#: ../settings.php:
|
862 |
msgid "Enable reCAPTCHA for WooCommerce registration form"
|
863 |
msgstr "Habilitar reCAPTCHA para el formulario de registro WooCommerce"
|
864 |
|
865 |
-
#: ../settings.php:
|
866 |
msgid "Enable reCAPTCHA for WordPress lost password form"
|
867 |
-
msgstr "Habilitar reCAPTCHA para formulario WordPress de contraseña
|
868 |
|
869 |
-
#: ../settings.php:
|
870 |
msgid "Enable reCAPTCHA for WooCommerce lost password form"
|
871 |
-
msgstr "Habilitar reCAPTCHA para formulario WooCommerce de contraseña
|
872 |
|
873 |
-
#: ../settings.php:
|
874 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
875 |
-
msgstr "Habilitar reCAPTCHA para el formulario de acceso WooCommerce"
|
876 |
|
877 |
-
#: ../common.php:
|
878 |
msgid "Request to the Google reCAPTCHA service failed"
|
879 |
msgstr "Error solicitando el servicio reCAPTCHA de Google"
|
880 |
|
881 |
-
#: ../dashboard.php:
|
882 |
msgid "View all"
|
883 |
msgstr "Ver todo"
|
884 |
|
885 |
-
#: ../dashboard.php:
|
886 |
msgid "Recently locked out IP addresses"
|
887 |
msgstr "Direcciones IP recientemente bloqueadas"
|
888 |
|
889 |
-
#: ../cerber-lab.php:
|
890 |
msgid "OK, nail them all"
|
891 |
-
msgstr "OK,
|
892 |
|
893 |
-
#: ../cerber-lab.php:
|
894 |
msgid "NO, maybe later"
|
895 |
msgstr "NO, tal vez más tarde"
|
896 |
|
897 |
-
#: ../dashboard.php:
|
898 |
-
#: php:
|
899 |
msgid "Dashboard"
|
900 |
-
msgstr "
|
901 |
|
902 |
-
#: ../cerber-lab.php:
|
903 |
msgid "Want to make WP Cerber even more powerful?"
|
904 |
-
msgstr "¿Quieres hacer WP Cerber aun más potente?"
|
905 |
|
906 |
-
#: ../cerber-lab.php:
|
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
|
909 |
|
910 |
-
#: ../dashboard.php:
|
911 |
msgid "IP address"
|
912 |
msgstr "Dirección IP"
|
913 |
|
914 |
-
#: ../dashboard.php:
|
915 |
msgid "User login"
|
916 |
msgstr "Acceso de Usuario"
|
917 |
|
918 |
-
#: ../dashboard.php:
|
919 |
msgid "User ID"
|
920 |
msgstr "ID de usuario"
|
921 |
|
922 |
-
#: ../dashboard.php:
|
923 |
msgid "Export"
|
924 |
msgstr "Exportar"
|
925 |
|
926 |
-
#: ../dashboard.php:
|
927 |
msgid "Search for IP or username"
|
928 |
-
msgstr "
|
929 |
|
930 |
-
#: ../dashboard.php:
|
931 |
msgid "Filter"
|
932 |
msgstr "Filtrar"
|
933 |
|
934 |
-
#: ../dashboard.php:
|
935 |
msgid "Cerber Dashboard"
|
936 |
msgstr "Panel de Control"
|
937 |
|
938 |
-
#: ../dashboard.php:
|
939 |
msgid "Cerber tools"
|
940 |
msgstr "Herramientas Cerber"
|
941 |
|
942 |
-
#: ../dashboard.php:
|
943 |
msgid "Subscribe"
|
944 |
msgstr "Suscribirse"
|
945 |
|
946 |
-
#: ../dashboard.php:
|
947 |
msgid "Unsubscribe"
|
948 |
msgstr "Cancelar Subscripción"
|
949 |
|
950 |
-
#: ../dashboard.php:
|
951 |
msgid "You've subscribed"
|
952 |
msgstr "Te has suscrito"
|
953 |
|
954 |
-
#: ../dashboard.php:
|
955 |
msgid "You've unsubscribed"
|
956 |
msgstr "Has cancelado tu suscripción"
|
957 |
|
958 |
-
#: ../
|
959 |
msgid "A new activity has been recorded"
|
960 |
msgstr "Una nueva actividad ha sido registrada"
|
961 |
|
962 |
-
#: ../
|
963 |
msgid "User"
|
964 |
msgstr "Usuario"
|
965 |
|
966 |
-
#: ../
|
967 |
msgid "Search string"
|
968 |
msgstr "Cadena de búsqueda"
|
969 |
|
970 |
-
#: ../
|
971 |
msgid "To unsubscribe click here"
|
972 |
msgstr "Para anular la suscripción, pulsar aquí"
|
973 |
|
974 |
-
#: ../settings.php:
|
975 |
msgid "Preferences"
|
976 |
msgstr "Preferencias"
|
977 |
|
978 |
-
#: ../settings.php:
|
979 |
msgid "Date format"
|
980 |
msgstr "Formato de fecha"
|
981 |
|
982 |
-
#: ../settings.php:
|
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 |
-
#: ../
|
987 |
msgid "Push notifications"
|
988 |
msgstr "Notificaciones"
|
989 |
|
990 |
-
#: ../settings.php:
|
991 |
msgid "Email notifications"
|
992 |
msgstr "Notificaciones por correo"
|
993 |
|
994 |
-
#: ../settings.php:
|
995 |
msgid "Use comma to specify multiple values"
|
996 |
-
msgstr ""
|
997 |
|
998 |
-
#: ../settings.php:
|
999 |
msgid "All connected devices"
|
1000 |
-
msgstr ""
|
1001 |
|
1002 |
-
#: ../settings.php:
|
1003 |
msgid "No devices found"
|
1004 |
-
msgstr ""
|
1005 |
|
1006 |
-
#: ../settings.php:
|
1007 |
msgid "Not available"
|
1008 |
-
msgstr ""
|
1009 |
|
1010 |
-
#: ../common.php:
|
1011 |
msgid "Password reset requested"
|
1012 |
-
msgstr "
|
1013 |
|
1014 |
-
#: ../common.php:
|
1015 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1016 |
-
msgstr ""
|
1017 |
|
1018 |
-
#: ../common.php:
|
1019 |
msgid "%s ago"
|
1020 |
-
msgstr ""
|
1021 |
|
1022 |
-
#: ../settings.php:
|
1023 |
msgid "Apply limit login rules to IP addresses in the White IP Access List"
|
1024 |
-
msgstr "Aplicar reglas de inicio de sesión limitadas a las direcciones IPs en la lista
|
1025 |
|
1026 |
-
#: ../settings.php:
|
1027 |
msgid "Display 404 page"
|
1028 |
msgstr "Mostrar página error 404"
|
1029 |
|
1030 |
-
#: ../settings.php:
|
1031 |
msgid "Invisible reCAPTCHA"
|
1032 |
msgstr "ReCAPTCHA invisible"
|
1033 |
|
1034 |
-
#: ../settings.php:
|
1035 |
msgid "Enable invisible reCAPTCHA"
|
1036 |
msgstr "Habilitar reCAPTCHA invisible"
|
1037 |
|
1038 |
-
#: ../settings.php:
|
1039 |
msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
|
1040 |
msgstr "(no habilitar a menos que se obtenga e introduzca el Sitio y las Claves secretas para la versión invisible)"
|
1041 |
|
1042 |
-
#: ../settings.php:
|
1043 |
msgid "Enable reCAPTCHA for WordPress comment form"
|
1044 |
msgstr "Habilitar reCAPTCHA para el formulario de comentarios de WordPress"
|
1045 |
|
1046 |
-
#: ../settings.php:
|
1047 |
msgid "Disable reCAPTCHA for logged in users"
|
1048 |
-
msgstr "
|
1049 |
|
1050 |
-
#: ../settings.php:
|
1051 |
msgid "Limit attempts"
|
1052 |
msgstr "Límite de intentos"
|
1053 |
|
1054 |
-
#: ../settings.php:
|
1055 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1056 |
-
msgstr "Bloquear dirección IP durante %s minutos después de %s intentos fallidos
|
1057 |
|
1058 |
-
#: ../settings.php:
|
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 "
|
1061 |
|
1062 |
-
#: ../dashboard.php:
|
1063 |
msgid "Event"
|
1064 |
msgstr "Evento"
|
1065 |
|
1066 |
-
#: ../common.php:
|
1067 |
msgid "Spam comments denied"
|
1068 |
msgstr "Comentarios spam denegados"
|
1069 |
|
1070 |
-
#: ../common.php:
|
1071 |
msgid "Malicious IP addresses detected"
|
1072 |
msgstr "Direcciones IP maliciosas detectadas"
|
1073 |
|
1074 |
-
#: ../common.php:
|
1075 |
msgid "Lockouts occurred"
|
1076 |
msgstr "Bloqueos realizados"
|
1077 |
|
1078 |
-
#: ../dashboard.php:
|
1079 |
msgid "All suspicious activity"
|
1080 |
msgstr "Todas las actividades sospechosas"
|
1081 |
|
1082 |
-
#: ../
|
1083 |
-
#: php:
|
1084 |
msgid "You are not allowed to register."
|
1085 |
-
msgstr ""
|
1086 |
|
1087 |
-
#: ../common.php:
|
1088 |
msgid "Spam comment denied"
|
1089 |
msgstr "Comentario spam denegado"
|
1090 |
|
1091 |
-
#: ../common.php:
|
1092 |
msgid "Attempt to log in denied"
|
1093 |
-
msgstr "Intento de
|
1094 |
|
1095 |
-
#: ../common.php:
|
1096 |
msgid "Attempt to register denied"
|
1097 |
msgstr "Intento de registro denegado"
|
1098 |
|
1099 |
-
#: ../common.php:
|
1100 |
msgid "Malicious activities mitigated"
|
1101 |
-
msgstr "Actividades mitigadas"
|
1102 |
|
1103 |
-
#: ../dashboard.php:
|
1104 |
msgid "Cerber antispam settings"
|
1105 |
-
msgstr ""
|
1106 |
|
1107 |
-
#: ../dashboard.php:
|
|
|
1108 |
msgid "Antispam"
|
1109 |
-
msgstr ""
|
1110 |
|
1111 |
-
#: ../settings.php:
|
1112 |
msgid "Cerber antispam engine"
|
1113 |
msgstr "Control antispam de Cerber"
|
1114 |
|
1115 |
-
#: ../settings.php:
|
1116 |
msgid "Comment form"
|
1117 |
msgstr "Formulario de comentarios"
|
1118 |
|
1119 |
-
#: ../settings.php:
|
1120 |
msgid "Protect comment form with bot detection engine"
|
1121 |
msgstr "Proteger los comentarios de bots automáticos"
|
1122 |
|
1123 |
-
#: ../settings.php:
|
1124 |
msgid "Protect registration form with bot detection engine"
|
1125 |
-
msgstr "Proteger el formulario de
|
1126 |
|
1127 |
#: ../cerber-tools.php:48
|
1128 |
msgid "Export & Import"
|
@@ -1136,406 +1133,1096 @@ msgstr "Diagnóstico"
|
|
1136 |
msgid "License"
|
1137 |
msgstr "Licencia"
|
1138 |
|
1139 |
-
#: ../
|
1140 |
msgid "Antispam and bot detection settings"
|
1141 |
msgstr "Antispam y ajustes de detección de bots"
|
1142 |
|
1143 |
-
#: ../
|
1144 |
msgid "Sorry, human verification failed."
|
1145 |
-
msgstr ""
|
1146 |
|
1147 |
-
#: ../common.php:
|
1148 |
msgid "Bot activity is detected"
|
1149 |
-
msgstr ""
|
1150 |
|
1151 |
-
#: ../settings.php:
|
1152 |
msgid "Comment processing"
|
1153 |
-
msgstr "
|
1154 |
|
1155 |
-
#: ../settings.php:
|
1156 |
msgid "If a spam comment detected"
|
1157 |
msgstr "Si se ha detectado spam"
|
1158 |
|
1159 |
-
#: ../settings.php:
|
1160 |
msgid "Trash spam comments"
|
1161 |
msgstr "Papelera de spam "
|
1162 |
|
1163 |
-
#: ../settings.php:
|
1164 |
msgid "Move spam comments to trash after"
|
1165 |
-
msgstr "
|
1166 |
|
1167 |
-
#: ../common.php:
|
1168 |
msgid "Spam form submission denied"
|
1169 |
-
msgstr ""
|
1170 |
|
1171 |
-
#: ../settings.php:
|
1172 |
msgid "Other forms"
|
1173 |
msgstr "Otros formularios"
|
1174 |
|
1175 |
-
#: ../settings.php:
|
1176 |
msgid "Protect all forms on the website with bot detection engine"
|
1177 |
-
msgstr "Proteger todos los formularios del sitio web con el motor de detección de
|
1178 |
|
1179 |
-
#: ../settings.php:
|
1180 |
msgid "Adjust antispam engine"
|
1181 |
msgstr "Ajustar el motor antispam"
|
1182 |
|
1183 |
-
#: ../settings.php:
|
1184 |
msgid "Safe mode"
|
1185 |
msgstr "Modo Seguro"
|
1186 |
|
1187 |
-
#: ../settings.php:
|
1188 |
msgid "Use less restrictive policies (allow AJAX)"
|
1189 |
msgstr "Utilizar políticas menos restrictivas (permitir AJAX)"
|
1190 |
|
1191 |
-
#: ../settings.php:
|
1192 |
msgid "Logged in users"
|
1193 |
msgstr "Usuarios conectados"
|
1194 |
|
1195 |
-
#: ../settings.php:
|
1196 |
msgid "Disable bot detection engine for logged in users"
|
1197 |
msgstr "Deshabilitar motor de detección de bot para usuarios conectados"
|
1198 |
|
1199 |
-
|
1200 |
-
#:
|
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:
|
1209 |
msgid "All events"
|
1210 |
-
msgstr ""
|
1211 |
|
1212 |
-
#: ../dashboard.php:
|
1213 |
msgid "Cerber Security Rules"
|
1214 |
-
msgstr ""
|
1215 |
|
1216 |
-
#: ../dashboard.php:
|
1217 |
msgid "Security Rules"
|
1218 |
-
msgstr ""
|
1219 |
|
1220 |
-
#: ../dashboard.php:
|
1221 |
msgid "Failed login attempts"
|
1222 |
-
msgstr ""
|
1223 |
|
1224 |
-
#: ../dashboard.php:
|
1225 |
msgid "Registered"
|
1226 |
-
msgstr ""
|
1227 |
|
1228 |
-
#: ../dashboard.php:
|
1229 |
msgid "You"
|
1230 |
-
msgstr ""
|
1231 |
|
1232 |
-
#: ../common.php:
|
1233 |
msgid "Spam form submissions denied"
|
1234 |
msgstr "Envíos de formularios spam denegados"
|
1235 |
|
1236 |
-
#: ../dashboard.php:
|
1237 |
msgid "Getting Started Guide"
|
1238 |
msgstr "Guía de Introducción"
|
1239 |
|
1240 |
-
#: ../dashboard.php:
|
1241 |
msgid "Countries"
|
1242 |
-
msgstr ""
|
1243 |
|
1244 |
-
#: ../dashboard.php:
|
1245 |
msgid "Permitted for one country"
|
1246 |
msgid_plural "Permitted for %d countries"
|
1247 |
-
msgstr[0] ""
|
1248 |
-
msgstr[1] ""
|
1249 |
|
1250 |
-
#: ../dashboard.php:
|
1251 |
msgid "No rule"
|
1252 |
-
msgstr ""
|
1253 |
|
1254 |
-
#: ../dashboard.php:
|
1255 |
msgid "Security rules have been updated"
|
1256 |
-
msgstr ""
|
1257 |
|
1258 |
#. URI of the plugin
|
1259 |
#:
|
1260 |
msgid "https://wpcerber.com"
|
1261 |
-
msgstr ""
|
1262 |
|
1263 |
-
#: ../common.php:
|
1264 |
msgid "Form submission denied"
|
1265 |
-
msgstr ""
|
1266 |
|
1267 |
-
#: ../common.php:
|
1268 |
msgid "Comment denied"
|
1269 |
-
msgstr ""
|
1270 |
|
1271 |
-
#: ../common.php:
|
1272 |
msgid "Request to REST API denied"
|
1273 |
-
msgstr ""
|
1274 |
|
1275 |
-
#: ../common.php:
|
1276 |
msgid "XML-RPC request denied"
|
1277 |
-
msgstr ""
|
1278 |
|
1279 |
-
#: ../common.php:
|
1280 |
msgid "Bot detected"
|
1281 |
-
msgstr ""
|
1282 |
|
1283 |
-
#: ../common.php:
|
1284 |
msgid "Citadel mode is active"
|
1285 |
-
msgstr ""
|
1286 |
|
1287 |
-
#: ../common.php:
|
1288 |
msgid "Malicious activity detected"
|
1289 |
-
msgstr ""
|
1290 |
|
1291 |
-
#: ../common.php:
|
1292 |
msgid "Blocked by country rule"
|
1293 |
-
msgstr ""
|
1294 |
|
1295 |
-
#: ../common.php:
|
1296 |
msgid "Limit reached"
|
1297 |
-
msgstr ""
|
1298 |
|
1299 |
-
#: ../common.php:
|
1300 |
msgid "Multiple suspicious activities"
|
1301 |
-
msgstr ""
|
1302 |
|
1303 |
-
#: ../common.php:
|
1304 |
msgid "Multiple suspicious activities were detected"
|
1305 |
-
msgstr ""
|
1306 |
|
1307 |
-
#: ../settings.php:
|
1308 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
1309 |
-
msgstr "Bloquear
|
1310 |
|
1311 |
-
#: ../settings.php:
|
1312 |
msgid "Block access to the WordPress REST API except the following"
|
1313 |
msgstr "Bloquear el acceso a la API de WordPress excepto los siguientes espacios de nombres"
|
1314 |
|
1315 |
-
#: ../settings.php:
|
1316 |
msgid "Allow REST API for logged in users"
|
1317 |
msgstr "Permitir API REST para usuarios que inician sesión"
|
1318 |
|
1319 |
-
#: ../settings.php:
|
1320 |
msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
|
1321 |
msgstr "Especificar espacios de nombres de la API REST para ser permitido si se desactiva la API REST. Una cadena por línea."
|
1322 |
|
1323 |
-
#: ../settings.php:
|
1324 |
msgid "Registration limit"
|
1325 |
-
msgstr ""
|
1326 |
|
1327 |
-
#: ../settings.php:
|
1328 |
msgid "Sort users in dashboard"
|
1329 |
-
msgstr "Ordenar usuarios en el
|
1330 |
|
1331 |
-
#: ../settings.php:
|
1332 |
msgid "by date of registration"
|
1333 |
msgstr "por fecha de registro"
|
1334 |
|
1335 |
-
#: ../settings.php:
|
1336 |
msgid "Query whitelist"
|
1337 |
-
msgstr "
|
1338 |
|
1339 |
-
#: ../settings.php:
|
1340 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1341 |
-
msgstr ""
|
1342 |
|
1343 |
-
#: ../dashboard.php:
|
1344 |
msgid "Start typing here to find a country"
|
1345 |
-
msgstr ""
|
1346 |
|
1347 |
-
#: ../dashboard.php:
|
1348 |
msgid "Click on a country name to add it to the list of selected countries"
|
1349 |
-
msgstr ""
|
1350 |
|
1351 |
-
#: ../dashboard.php:
|
1352 |
msgid "Submit forms"
|
1353 |
-
msgstr ""
|
1354 |
|
1355 |
-
#: ../dashboard.php:
|
1356 |
msgid "Post comments"
|
1357 |
-
msgstr ""
|
1358 |
|
1359 |
-
#: ../dashboard.php:
|
1360 |
msgid "Log in to the website"
|
1361 |
-
msgstr ""
|
1362 |
|
1363 |
-
#: ../dashboard.php:
|
1364 |
msgid "Register on the website"
|
1365 |
-
msgstr ""
|
1366 |
|
1367 |
-
#: ../dashboard.php:
|
1368 |
msgid "Use XML-RPC"
|
1369 |
-
msgstr ""
|
1370 |
|
1371 |
-
#: ../dashboard.php:
|
1372 |
msgid "Use REST API"
|
1373 |
-
msgstr ""
|
1374 |
|
1375 |
-
#: ../settings.php:
|
1376 |
msgid "Deny it completely"
|
1377 |
msgstr "Denegarlo completamente"
|
1378 |
|
1379 |
-
#: ../settings.php:
|
1380 |
msgid "Mark it as spam"
|
1381 |
msgstr "Marcar como spam"
|
1382 |
|
1383 |
-
#: ../dashboard.php:
|
1384 |
msgid "in the last 24 hours"
|
1385 |
-
msgstr ""
|
1386 |
|
1387 |
-
#: ../dashboard.php:
|
1388 |
msgid "Main settings"
|
1389 |
msgstr "Ajustes"
|
1390 |
|
1391 |
-
#: ../settings.php:
|
1392 |
msgid "Weekly reports"
|
1393 |
msgstr "Informes semanales"
|
1394 |
|
1395 |
-
#: ../settings.php:
|
1396 |
msgid "Sunday"
|
1397 |
-
msgstr ""
|
1398 |
|
1399 |
-
#: ../settings.php:
|
1400 |
msgid "Monday"
|
1401 |
-
msgstr ""
|
1402 |
|
1403 |
-
#: ../settings.php:
|
1404 |
msgid "Tuesday"
|
1405 |
-
msgstr ""
|
1406 |
|
1407 |
-
#: ../settings.php:
|
1408 |
msgid "Wednesday"
|
1409 |
-
msgstr ""
|
1410 |
|
1411 |
-
#: ../settings.php:
|
1412 |
msgid "Thursday"
|
1413 |
-
msgstr ""
|
1414 |
|
1415 |
-
#: ../settings.php:
|
1416 |
msgid "Friday"
|
1417 |
-
msgstr ""
|
1418 |
|
1419 |
-
#: ../settings.php:
|
1420 |
msgid "Saturday"
|
1421 |
-
msgstr ""
|
1422 |
|
1423 |
-
#: ../settings.php:
|
1424 |
msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
|
1425 |
-
msgstr ""
|
1426 |
|
1427 |
#. translators: preposition of time
|
1428 |
-
#: ../settings.php:
|
1429 |
msgctxt "preposition of time"
|
1430 |
msgid "at"
|
1431 |
-
msgstr ""
|
1432 |
|
1433 |
-
#: ../
|
1434 |
msgid "Weekly report"
|
1435 |
-
msgstr ""
|
1436 |
|
1437 |
-
#: ../
|
1438 |
msgid "To change reporting settings visit"
|
1439 |
-
msgstr ""
|
1440 |
|
1441 |
-
#: ../
|
1442 |
msgid "Your login page:"
|
1443 |
-
msgstr ""
|
1444 |
|
1445 |
-
#: ../
|
1446 |
msgid "Your license is valid until"
|
1447 |
-
msgstr ""
|
1448 |
|
1449 |
-
#: ../
|
1450 |
msgid "Activity details"
|
1451 |
-
msgstr ""
|
1452 |
|
1453 |
-
#: ../settings.php:
|
1454 |
msgid "Click to send now"
|
1455 |
msgstr "Pulsa para enviar ahora"
|
1456 |
|
1457 |
-
#: ../
|
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:
|
1462 |
msgid "Email has been sent to"
|
1463 |
-
msgstr ""
|
1464 |
|
1465 |
-
#: ../dashboard.php:
|
1466 |
msgid "Unable to send email to"
|
1467 |
-
msgstr ""
|
1468 |
|
1469 |
-
#: ../dashboard.php:
|
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:
|
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:
|
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 ""
|
1484 |
|
1485 |
-
|
1486 |
-
#:
|
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 |
|
1494 |
-
#: ../settings.php:
|
1495 |
msgid "Use 404 template from the active theme"
|
1496 |
-
msgstr ""
|
1497 |
|
1498 |
-
#: ../settings.php:
|
1499 |
msgid "Display simple 404 page"
|
1500 |
-
msgstr ""
|
1501 |
|
1502 |
-
#: ../settings.php:
|
1503 |
msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
|
1504 |
-
msgstr ""
|
1505 |
|
1506 |
-
#: ../settings.php:
|
1507 |
msgid "if empty, email from notification settings will be used"
|
1508 |
-
msgstr ""
|
1509 |
|
1510 |
-
#: ../settings.php:
|
1511 |
msgid "Enable reporting"
|
1512 |
-
msgstr ""
|
1513 |
|
1514 |
-
#: ../
|
1515 |
msgid "Your last sign-in was %s from %s"
|
1516 |
-
msgstr ""
|
1517 |
|
1518 |
-
#: ../
|
1519 |
msgid "Attempts to log in with non-existent username"
|
1520 |
-
msgstr ""
|
1521 |
|
1522 |
-
#: ../dashboard.php:
|
1523 |
msgid "IP address, IPv4 address range or subnet"
|
1524 |
-
msgstr ""
|
1525 |
|
1526 |
-
#: ../dashboard.php:
|
1527 |
msgid "Optional comment for this entry"
|
1528 |
-
msgstr ""
|
1529 |
|
1530 |
-
#: ../dashboard.php:
|
1531 |
msgid "You cannot add your IP address or network"
|
1532 |
-
msgstr ""
|
1533 |
|
1534 |
-
#: ../cerber-news.php:
|
1535 |
msgid "Cool!"
|
1536 |
-
msgstr ""
|
1537 |
|
1538 |
-
#: ../settings.php:
|
1539 |
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1540 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1541 |
|
8 |
"Language: es\n"
|
9 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
10 |
|
11 |
+
#: ../settings.php:75
|
12 |
msgid "Limit login attempts"
|
13 |
msgstr "Límite de intentos de conexión"
|
14 |
|
15 |
+
#: ../settings.php:76
|
16 |
msgid "Attempts"
|
17 |
msgstr "Intentos"
|
18 |
|
19 |
+
#: ../settings.php:77
|
20 |
msgid "Lockout duration"
|
21 |
msgstr "Duración del bloqueo"
|
22 |
|
23 |
+
#: ../settings.php:77 ../settings.php:103
|
24 |
msgid "minutes"
|
25 |
msgstr "minutos"
|
26 |
|
27 |
+
#: ../settings.php:78
|
28 |
msgid "Aggressive lockout"
|
29 |
msgstr "Bloqueo agresivo"
|
30 |
|
31 |
+
#: ../settings.php:81
|
32 |
msgid "Site connection"
|
33 |
msgstr "Conexión web"
|
34 |
|
35 |
+
#: ../settings.php:83
|
36 |
msgid "Proactive security rules"
|
37 |
msgstr "Normas de seguridad proactivas"
|
38 |
|
39 |
+
#: ../settings.php:84
|
40 |
msgid "Block subnet"
|
41 |
msgstr "Bloquear subred"
|
42 |
|
43 |
+
#: ../settings.php:87
|
44 |
msgid "Request wp-login.php"
|
45 |
msgstr "Solicitud wp-login.php"
|
46 |
|
47 |
+
#: ../settings.php:87
|
48 |
msgid "Immediately block IP after any request to wp-login.php"
|
49 |
msgstr "Bloquear IP inmediatamente después de cualquier solicitud a wp-login.php"
|
50 |
|
51 |
+
#: ../settings.php:84
|
52 |
msgid "Redirect dashboard requests"
|
53 |
msgstr "Redirigir peticiones al escritorio"
|
54 |
|
55 |
+
#: ../settings.php:90
|
56 |
msgid "Custom login page"
|
57 |
+
msgstr "Página de acceso personalizada"
|
58 |
|
59 |
+
#: ../settings.php:91
|
60 |
msgid "Custom login URL"
|
61 |
+
msgstr "URL de acceso personalizada"
|
62 |
|
63 |
+
#: ../settings.php:97
|
64 |
msgid "must not overlap with the existing pages or posts slug"
|
65 |
msgstr "no debe solaparse con el slug actual de páginas o entradas"
|
66 |
|
67 |
+
#: ../settings.php:99
|
68 |
msgid "Disable wp-login.php"
|
69 |
msgstr "Desactivar wp-login.php"
|
70 |
|
71 |
+
#: ../settings.php:99
|
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:1285 ../settings.php:101
|
76 |
msgid "Citadel mode"
|
77 |
msgstr "Modo Ciudadela"
|
78 |
|
79 |
+
#: ../settings.php:102
|
80 |
msgid "Threshold"
|
81 |
msgstr "Umbral"
|
82 |
|
83 |
+
#: ../settings.php:103
|
84 |
msgid "Duration"
|
85 |
msgstr "Duración"
|
86 |
|
87 |
+
#: ../cerber-load.php:4261 ../settings.php:80 ../settings.php:104 ../settings.php:
|
88 |
+
#: 581
|
89 |
msgid "Notifications"
|
90 |
msgstr "Notificaciones"
|
91 |
|
92 |
+
#: ../settings.php:104
|
93 |
msgid "Send notification to admin email"
|
94 |
msgstr "Enviar una notificación al correo del administrador"
|
95 |
|
96 |
+
#: ../cerber-load.php:4258 ../settings.php:571 ../cerber-tools.php:92 ../cerber-
|
97 |
+
#: tools.php:101 ../cerber-tools.php:182
|
98 |
msgid "Access Lists"
|
99 |
msgstr "Listas de acceso"
|
100 |
|
101 |
+
#: ../dashboard.php:1319 ../dashboard.php:1645 ../cerber-load.php:3983 ..
|
102 |
+
#: /settings.php:106 ../settings.php:560
|
103 |
msgid "Activity"
|
104 |
msgstr "Actividad"
|
105 |
|
106 |
+
#: ../settings.php:564
|
107 |
msgid "Lockouts"
|
108 |
msgstr "Bloqueos"
|
109 |
|
110 |
+
#: ../settings.php:694 ../settings.php:816
|
111 |
msgid "%s allowed retries in %s minutes"
|
112 |
msgstr "%s reintentos admitidos en %s minutos"
|
113 |
|
114 |
+
#: ../settings.php:716 ../settings.php:838
|
115 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
116 |
msgstr "Habilitar después de %s intentos de acceso fallidos en los últimos %s minutos"
|
117 |
|
118 |
+
#: ../dashboard.php:133 ../dashboard.php:711 ../dashboard.php:3050 ../cerber-load.
|
119 |
+
#: php:3992
|
120 |
msgid "IP"
|
121 |
msgstr "IP"
|
122 |
|
123 |
+
#: ../dashboard.php:543 ../dashboard.php:714 ../dashboard.php:3048
|
124 |
msgid "Date"
|
125 |
msgstr "Fecha"
|
126 |
|
127 |
+
#: ../dashboard.php:543 ../dashboard.php:716 ../dashboard.php:3053
|
128 |
msgid "Local User"
|
129 |
msgstr "Usuario local"
|
130 |
|
131 |
+
#: ../dashboard.php:543 ../dashboard.php:717 ../cerber-load.php:4000
|
132 |
msgid "Username used"
|
133 |
msgstr "Nombre utilizado"
|
134 |
|
135 |
+
#: ../dashboard.php:152
|
136 |
msgid "Showing last %d records from %d"
|
137 |
msgstr "Mostrando los últimos %d registros de %d"
|
138 |
|
139 |
+
#: ../common.php:835
|
140 |
msgid "Logged in"
|
141 |
msgstr "Sesión iniciada"
|
142 |
|
143 |
+
#: ../common.php:836
|
144 |
msgid "Logged out"
|
145 |
msgstr "Desconectado"
|
146 |
|
147 |
+
#: ../common.php:837
|
148 |
msgid "Login failed"
|
149 |
msgstr "Error de inicio de sesión"
|
150 |
|
151 |
+
#: ../common.php:840
|
152 |
msgid "IP blocked"
|
153 |
msgstr "IP bloqueada"
|
154 |
|
155 |
+
#: ../common.php:841
|
156 |
msgid "Subnet blocked"
|
157 |
msgstr "Subred bloqueada"
|
158 |
|
159 |
+
#: ../common.php:843
|
160 |
msgid "Citadel activated!"
|
161 |
msgstr "¡Ciudadela activada!"
|
162 |
|
163 |
+
#: ../dashboard.php:691 ../dashboard.php:919 ../dashboard.php:2880 ../common.php:
|
164 |
+
#: 889
|
165 |
msgid "Locked out"
|
166 |
msgstr "Bloqueado"
|
167 |
|
168 |
+
#: ../common.php:890
|
169 |
msgid "IP blacklisted"
|
170 |
msgstr "IP en la lista negra"
|
171 |
|
172 |
+
#: ../common.php:858
|
173 |
msgid "Password changed"
|
174 |
msgstr "Contraseña cambiada"
|
175 |
|
176 |
+
#: ../dashboard.php:126 ../dashboard.php:199
|
177 |
msgid "Remove"
|
178 |
msgstr "Eliminar"
|
179 |
|
180 |
+
#: ../dashboard.php:429
|
181 |
msgid "Lockout for %s was removed"
|
182 |
msgstr "Se ha eliminado el bloqueo de %s"
|
183 |
|
184 |
+
#: ../dashboard.php:171 ../dashboard.php:686 ../dashboard.php:913 ../dashboard.
|
185 |
+
#: php:1283 ../dashboard.php:2875 ../cerber-load.php:4246 ../settings.php:518
|
186 |
msgid "White IP Access List"
|
187 |
+
msgstr "Lista de IP's permitidas"
|
188 |
|
189 |
+
#: ../dashboard.php:173 ../dashboard.php:687 ../dashboard.php:916 ../dashboard.
|
190 |
+
#: php:1284 ../dashboard.php:2876
|
191 |
msgid "Black IP Access List"
|
192 |
+
msgstr "Lista Negra de IP's"
|
193 |
|
194 |
+
#: ../dashboard.php:205
|
195 |
msgid "List is empty"
|
196 |
msgstr "La lista está vacía"
|
197 |
|
198 |
+
#: ../dashboard.php:242
|
199 |
msgid "Address %s was added to White IP Access List"
|
200 |
+
msgstr "Dirección %s añadida a la lista de IP's permitidas"
|
201 |
|
202 |
+
#: ../dashboard.php:256
|
203 |
msgid "Address %s was added to Black IP Access List"
|
204 |
msgstr "Dirección %s añadida a la lista negra de IPs"
|
205 |
|
206 |
+
#: ../cerber-load.php:3415
|
207 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
208 |
msgstr "El Modo Ciudadela se activa después de %d intentos fallidos de inicio de sesión en %d minutos."
|
209 |
|
210 |
+
#: ../dashboard.php:1806 ../dashboard.php:2210
|
211 |
msgid "View Activity"
|
212 |
msgstr "Ver actividad"
|
213 |
|
214 |
+
#: ../dashboard.php:2724 ../cerber-tools.php:91 ../cerber-tools.php:100 ../cerber-
|
215 |
+
#: scanner.php:85
|
216 |
msgid "Settings"
|
217 |
msgstr "Ajustes"
|
218 |
|
219 |
+
#: ../dashboard.php:1146
|
220 |
msgid "Last login"
|
221 |
msgstr "Último acceso"
|
222 |
|
223 |
+
#: ../dashboard.php:1179 ../dashboard.php:1266 ../common.php:1000
|
224 |
msgid "Never"
|
225 |
msgstr "Nunca"
|
226 |
|
227 |
+
#: ../dashboard.php:1691
|
228 |
msgid "Are you sure?"
|
229 |
msgstr "¿Estás seguro?"
|
230 |
|
231 |
+
#: ../dashboard.php:1487 ../settings.php:81
|
232 |
msgid "My site is behind a reverse proxy"
|
233 |
msgstr "Mi web está detrás de un proxy inverso"
|
234 |
|
235 |
+
#: ../settings.php:85
|
236 |
msgid "Non-existent users"
|
237 |
msgstr "Usuarios inexistentes"
|
238 |
|
239 |
+
#: ../settings.php:85
|
240 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
241 |
msgstr "Bloquear IP inmediatamente al intentar iniciar sesión con un nombre de usuario inexistente"
|
242 |
|
243 |
+
#: ../settings.php:504
|
|
|
|
|
|
|
|
|
244 |
msgid "Make your protection smarter!"
|
245 |
msgstr "¡Haz que tu protección sea más inteligente!"
|
246 |
|
247 |
+
#: ../settings.php:508
|
248 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
249 |
msgstr "Por favor, activa los enlaces permanentes para utilizar esta función. Establece las opciones de enlaces permanentes a algún valor no predeterminado."
|
250 |
|
251 |
+
#: ../cerber-load.php:4256 ../settings.php:567
|
|
|
|
|
|
|
|
|
252 |
msgid "Main Settings"
|
253 |
msgstr "Ajustes"
|
254 |
|
255 |
+
#: ../dashboard.php:2725 ../settings.php:584 ../cerber-tools.php:51 ../cerber-
|
256 |
+
#: scanner.php:87
|
257 |
msgid "Help"
|
258 |
msgstr "Ayuda"
|
259 |
|
260 |
+
#: ../settings.php:704 ../settings.php:826
|
261 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
262 |
msgstr "Aumentar la duración del bloqueo en %s horas después de %s bloqueos en las últimas %s horas"
|
263 |
|
264 |
+
#: ../cerber-load.php:368
|
265 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
266 |
msgstr "No puedes iniciar sesión. Pregunta al administrador para obtener ayuda."
|
267 |
|
268 |
+
#: ../cerber-load.php:394
|
|
|
|
|
|
|
|
|
269 |
msgid "You have only one attempt remaining."
|
270 |
msgid_plural "You have %d attempts remaining."
|
271 |
msgstr[0] "Queda solo un intento restante."
|
272 |
msgstr[1] "Quedan %d intentos restantes."
|
273 |
|
274 |
+
#: ../dashboard.php:739
|
275 |
msgid "No activity has been logged."
|
276 |
msgstr "No hay actividad registrada."
|
277 |
|
278 |
+
#: ../dashboard.php:136
|
279 |
msgid "Expires"
|
280 |
msgstr "Caduca"
|
281 |
|
282 |
+
#: ../dashboard.php:158
|
283 |
msgid "No lockouts at the moment. The sky is clear."
|
284 |
msgstr "No hay bloqueos en este momento. El cielo esta despejado."
|
285 |
|
286 |
+
#: ../dashboard.php:171
|
287 |
msgid "These IPs will never be locked out"
|
288 |
msgstr "Estas IPs nunca se bloquearán"
|
289 |
|
290 |
+
#: ../dashboard.php:180
|
291 |
msgid "Your IP"
|
292 |
msgstr "Tu IP"
|
293 |
|
294 |
+
#: ../cerber-load.php:3416
|
295 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
296 |
msgstr "El último intento fallido fue el %s desde la IP %s con el nombre de usuario: %s."
|
297 |
|
298 |
+
#: ../cerber-load.php:4211
|
299 |
msgid "Can't activate WP Cerber due to a database error."
|
300 |
+
msgstr "No se puede activar WP Cerber debido a un error en la base de datos."
|
301 |
|
302 |
+
#: ../settings.php:711 ../settings.php:833
|
303 |
msgid "Notify admin if the number of active lockouts above"
|
304 |
msgstr "Notificar al administrador si el número de bloqueos activos es superior a"
|
305 |
|
306 |
+
#: ../settings.php:107 ../settings.php:183 ../settings.php:358 ../settings.php:423
|
307 |
msgid "days"
|
308 |
msgstr "días"
|
309 |
|
310 |
+
#: ../dashboard.php:1236
|
311 |
msgid "Cerber Quick View"
|
312 |
+
msgstr "Vista Rápida de Cerber"
|
313 |
|
314 |
+
#: ../dashboard.php:154
|
315 |
msgid "Hint"
|
316 |
msgstr "Sugerencia"
|
317 |
|
318 |
+
#: ../dashboard.php:154
|
319 |
msgid "To view activity, click on the IP"
|
320 |
msgstr "Para ver la actividad, haz clic en la IP"
|
321 |
|
322 |
+
#: ../dashboard.php:198 ../dashboard.php:890 ../dashboard.php:921 ../dashboard.
|
323 |
+
#: php:1019
|
324 |
msgid "Check for activity"
|
325 |
msgstr "Comprobar actividad"
|
326 |
|
327 |
+
#: ../settings.php:84
|
328 |
msgid "Always block entire subnet Class C of intruders IP"
|
329 |
msgstr "Bloquear siempre todas las subredes de clase C de IPs intrusas"
|
330 |
|
331 |
+
#: ../settings.php:104 ../settings.php:713 ../settings.php:835
|
332 |
msgid "Click to send test"
|
333 |
msgstr "Pulsa para enviar una prueba"
|
334 |
|
335 |
+
#: ../settings.php:1000 ../settings.php:1001
|
336 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
337 |
msgstr "¡Atención! ¡Has cambiado la dirección URL de conexión! La nueva URL de acceso es"
|
338 |
|
339 |
+
#: ../dashboard.php:1145
|
340 |
msgid "Comments"
|
341 |
msgstr "Comentarios"
|
342 |
|
343 |
+
#: ../common.php:1185
|
344 |
msgid "Update to version %s of WP Cerber"
|
345 |
msgstr "Actualizar a la versión %s de WP Cerber"
|
346 |
|
347 |
+
#: ../cerber-load.php:3417 ../cerber-load.php:4024
|
348 |
msgid "View activity in dashboard"
|
349 |
+
msgstr "Ver actividad en el Dashboard"
|
350 |
|
351 |
+
#: ../cerber-load.php:3447
|
352 |
msgid "Number of active lockouts"
|
353 |
msgstr "Número de bloqueos activos"
|
354 |
|
355 |
+
#: ../cerber-load.php:3451
|
356 |
msgid "View lockouts in dashboard"
|
357 |
+
msgstr "Ver los bloqueos en el Dashboard"
|
358 |
|
359 |
+
#: ../cerber-load.php:3539
|
360 |
msgid "This message was sent by"
|
361 |
msgstr "Este mensaje fue enviado por"
|
362 |
|
363 |
+
#: ../dashboard.php:68 ../cerber-tools.php:43
|
364 |
msgid "Tools"
|
365 |
msgstr "Herramientas"
|
366 |
|
367 |
+
#: ../cerber-tools.php:88
|
368 |
msgid "Export settings to the file"
|
369 |
msgstr "Exportar ajustes al archivo"
|
370 |
|
371 |
+
#: ../cerber-tools.php:89
|
372 |
msgid "When you click the button below you will get a configuration file, which you can upload on another site."
|
373 |
msgstr "Al pulsar el botón de abajo obtendrás un archivo de configuración, que luego se puede cargar en otro sitio."
|
374 |
|
375 |
+
#: ../cerber-tools.php:90
|
376 |
msgid "What do you want to export?"
|
377 |
msgstr "¿Qué quieres exportar?"
|
378 |
|
379 |
+
#: ../cerber-tools.php:93
|
380 |
msgid "Download file"
|
381 |
msgstr "Descargar archivo"
|
382 |
|
383 |
+
#: ../cerber-tools.php:95
|
384 |
msgid "Import settings from the file"
|
385 |
+
msgstr "Importar ajustes desde archivo"
|
386 |
|
387 |
+
#: ../cerber-tools.php:96
|
388 |
msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
|
389 |
+
msgstr "Al pulsar el botón de abajo se cargará el archivo y todas las configuraciones existentes dejarán de estar activas."
|
390 |
|
391 |
+
#: ../cerber-tools.php:97
|
392 |
msgid "Select file to import."
|
393 |
msgstr "Seleccionar archivo a importar."
|
394 |
|
395 |
+
#: ../cerber-tools.php:97
|
396 |
msgid "Maximum upload file size: %s."
|
397 |
msgstr "Tamaño máximo permitido: %s."
|
398 |
|
399 |
+
#: ../cerber-tools.php:100
|
400 |
msgid "What do you want to import?"
|
401 |
msgstr "¿Qué quieres importar?"
|
402 |
|
403 |
+
#: ../cerber-tools.php:102 ../cerber-scanner.php:3588
|
404 |
msgid "Upload file"
|
405 |
msgstr "Cargar archivo"
|
406 |
|
407 |
+
#: ../cerber-tools.php:149
|
408 |
msgid "No file was uploaded or file is corrupted"
|
409 |
+
msgstr "Ningún archivo subido ni dañado"
|
410 |
|
411 |
+
#: ../cerber-tools.php:182
|
412 |
msgid "Error while updating"
|
413 |
msgstr "Ha habido un error al actualizar"
|
414 |
|
415 |
+
#: ../cerber-tools.php:185
|
416 |
msgid "Settings has imported successfully from"
|
417 |
msgstr "La configuración se ha importado con éxito desde"
|
418 |
|
419 |
+
#: ../cerber-tools.php:189
|
420 |
msgid "Error while parsing file"
|
421 |
msgstr "Error al analizar el archivo"
|
422 |
|
423 |
+
#: ../dashboard.php:134 ../dashboard.php:712
|
424 |
msgid "Hostname"
|
425 |
msgstr "Host"
|
426 |
|
427 |
+
#: ../dashboard.php:395
|
428 |
msgid "unknown"
|
429 |
msgstr "desconocido"
|
430 |
|
431 |
+
#: ../settings.php:107 ../settings.php:354
|
432 |
msgid "Keep records for"
|
433 |
msgstr "Mantener un registro de"
|
434 |
|
435 |
+
#: ../dashboard.php:1270 ../dashboard.php:1292
|
436 |
msgid "active"
|
437 |
msgstr "activar"
|
438 |
|
439 |
+
#: ../dashboard.php:1270
|
440 |
msgid "deactivate"
|
441 |
msgstr "desactivar"
|
442 |
|
443 |
+
#: ../dashboard.php:1272
|
444 |
msgid "not active"
|
445 |
msgstr "no activo"
|
446 |
|
447 |
+
#: ../dashboard.php:1273 ../dashboard.php:1287
|
448 |
msgid "disabled"
|
449 |
msgstr "desactivado"
|
450 |
|
451 |
+
#: ../dashboard.php:1278
|
452 |
msgid "failed attempts"
|
453 |
msgstr "intentos fallidos"
|
454 |
|
455 |
+
#: ../dashboard.php:1278 ../dashboard.php:1279
|
456 |
msgid "in 24 hours"
|
457 |
msgstr "en 24 horas"
|
458 |
|
459 |
+
#: ../dashboard.php:1278 ../dashboard.php:1279
|
460 |
msgid "view all"
|
461 |
msgstr "ver todo"
|
462 |
|
463 |
+
#: ../dashboard.php:1279
|
464 |
msgid "lockouts"
|
465 |
msgstr "bloqueos"
|
466 |
|
467 |
+
#: ../dashboard.php:1281
|
468 |
msgid "Lockouts at the moment"
|
469 |
msgstr "Bloqueos en este momento"
|
470 |
|
471 |
+
#: ../dashboard.php:1282
|
472 |
msgid "Last lockout"
|
473 |
msgstr "Último bloqueo"
|
474 |
|
475 |
+
#: ../dashboard.php:1283 ../dashboard.php:1284 ../dashboard.php:1977
|
476 |
msgid "entry"
|
477 |
msgid_plural "entries"
|
478 |
msgstr[0] "entrada"
|
479 |
msgstr[1] "entradas"
|
480 |
|
481 |
+
#: ../dashboard.php:1686
|
482 |
msgid "Confused about some settings?"
|
483 |
msgstr "¿Confundido acerca de algunos ajustes?"
|
484 |
|
485 |
+
#: ../dashboard.php:1687
|
486 |
msgid "You can easily load default recommended settings using button below"
|
487 |
msgstr "Se pueden cargar fácilmente los valores recomendados predeterminados usando el botón de abajo"
|
488 |
|
489 |
+
#: ../dashboard.php:1689
|
490 |
msgid "Load default settings"
|
491 |
msgstr "Cargar ajustes predeterminados"
|
492 |
|
493 |
+
#: ../dashboard.php:1697
|
494 |
msgid "doesn't affect Custom login URL and Access Lists"
|
495 |
msgstr "no afecta a la URL de acceso personalizada ni a las listas de acceso"
|
496 |
|
497 |
+
#: ../common.php:1178 ../settings.php:225
|
498 |
msgid "New version is available"
|
499 |
msgstr "Nueva versión disponible"
|
500 |
|
501 |
#. Name of the plugin
|
502 |
+
#: ../dashboard.php:52 ../dashboard.php:80
|
503 |
msgid "WP Cerber"
|
504 |
msgstr "WP Cerber"
|
505 |
|
506 |
+
#: ../cerber-load.php:3391
|
507 |
msgid "WP Cerber notify"
|
508 |
msgstr "Notificación de WP Cerber"
|
509 |
|
510 |
+
#: ../cerber-load.php:3413
|
511 |
msgid "Citadel mode is activated"
|
512 |
msgstr "El Modo Ciudadela está activado."
|
513 |
|
514 |
+
#: ../cerber-load.php:3486
|
515 |
msgid "New Custom login URL"
|
516 |
msgstr "Nueva URL de acceso personalizada"
|
517 |
|
518 |
+
#: ../cerber-load.php:4198
|
519 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
520 |
+
msgstr "WP Cerber necesita una versión PHP %s o superior. Se está ejecutando actualmente"
|
521 |
|
522 |
+
#: ../cerber-load.php:4202
|
523 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
524 |
+
msgstr "WP Cerber requiere la versión de WordPress %s o superior. Se está ejecutando actualmente"
|
525 |
|
526 |
+
#: ../settings.php:110
|
527 |
msgid "Use file"
|
528 |
msgstr "Usar archivo"
|
529 |
|
530 |
+
#: ../settings.php:110
|
531 |
msgid "Write failed login attempts to the file"
|
532 |
msgstr "Registrar los intentos de acceso fallidos en el archivo"
|
533 |
|
534 |
+
#: ../dashboard.php:1805
|
535 |
msgid "Deactivate"
|
536 |
msgstr "Desactivar"
|
537 |
|
538 |
+
#: ../dashboard.php:137 ../cerber-load.php:3449
|
539 |
msgid "Reason"
|
540 |
msgstr "Motivo"
|
541 |
|
542 |
+
#: ../dashboard.php:210
|
543 |
msgid "Add IP to the list"
|
544 |
msgstr "Añadir IP a la lista"
|
545 |
|
546 |
+
#: ../dashboard.php:976
|
547 |
msgid "Add IP to the Black List"
|
548 |
msgstr "Añadir IP a la lista negra"
|
549 |
|
550 |
+
#: ../common.php:925
|
551 |
msgid "Attempt to access"
|
552 |
msgstr "Intento de acceso"
|
553 |
|
554 |
+
#: ../common.php:924
|
555 |
msgid "Limit on login attempts is reached"
|
556 |
msgstr "Se han alcanzado todos los intentos de inicio de sesión"
|
557 |
|
558 |
+
#: ../common.php:866 ../common.php:926
|
559 |
msgid "Attempt to log in with non-existent username"
|
560 |
msgstr "Intento de acceso con nombre de usuario inexistente"
|
561 |
|
562 |
+
#: ../cerber-load.php:3448
|
563 |
msgid "Last lockout was added: %s for IP %s"
|
564 |
msgstr "Último bloqueo añadido: %s para la IP %s"
|
565 |
|
566 |
+
#: ../cerber-load.php:4260 ../settings.php:574
|
567 |
msgid "Hardening"
|
568 |
msgstr "Endurecimiento"
|
569 |
|
570 |
+
#: ../dashboard.php:953
|
571 |
msgid "Abuse email:"
|
572 |
msgstr "Correo electrónico de abuso:"
|
573 |
|
574 |
+
#: ../settings.php:212 ../settings.php:253 ../settings.php:485
|
575 |
msgid "Email Address"
|
576 |
msgstr "Dirección de correo electrónico"
|
577 |
|
578 |
+
#: ../settings.php:221
|
579 |
msgid "if empty, the admin email %s will be used"
|
580 |
msgstr "Si está vacío, se utilizará el correo de administrador: %s"
|
581 |
|
582 |
+
#: ../settings.php:113
|
583 |
msgid "Drill down IP"
|
584 |
msgstr "Desglosar IP"
|
585 |
|
586 |
+
#: ../settings.php:113
|
587 |
msgid "Retrieve extra WHOIS information for IP"
|
588 |
+
msgstr "Conseguir información extra de la IP por WHOIS"
|
589 |
|
590 |
+
#: ../settings.php:121
|
591 |
msgid "Hardening WordPress"
|
592 |
msgstr "Protegiendo WordPress"
|
593 |
|
594 |
+
#: ../settings.php:122
|
595 |
msgid "Stop user enumeration"
|
596 |
msgstr "Impedir la enumeración de usuarios"
|
597 |
|
598 |
+
#: ../settings.php:124
|
599 |
msgid "Disable XML-RPC"
|
600 |
msgstr "Desactivar XML-RPC"
|
601 |
|
602 |
+
#: ../settings.php:124
|
603 |
msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
|
604 |
msgstr "Bloquear el acceso al servidor XML-RPC (incluyendo pingbacks y trackbacks)"
|
605 |
|
606 |
+
#: ../settings.php:125
|
607 |
msgid "Disable feeds"
|
608 |
msgstr "Desactivar feeds"
|
609 |
|
610 |
+
#: ../settings.php:125
|
611 |
msgid "Block access to the RSS, Atom and RDF feeds"
|
612 |
+
msgstr "Bloquear el acceso a los feeds de RSS, Atom y RDF"
|
613 |
|
614 |
+
#: ../settings.php:126
|
615 |
msgid "Disable REST API"
|
616 |
msgstr "Desactivar la API REST"
|
617 |
|
618 |
+
#: ../settings.php:518
|
619 |
msgid "These settings do not affect hosts from the "
|
620 |
msgstr "Estos ajustes no afectan a los hosts de "
|
621 |
|
622 |
+
#: ../settings.php:1078 ../settings.php:1090 ../settings.php:1218
|
623 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
624 |
msgstr "<strong>ERROR</strong>: por favor, introduce una dirección de correo electrónico válida."
|
625 |
|
626 |
+
#: ../cerber-load.php:3479 ../cerber-load.php:4245
|
627 |
msgid "WP Cerber is now active and has started protecting your site"
|
628 |
msgstr "WP Cerber está activo actualmente y está protegiendo tu web"
|
629 |
|
630 |
+
#: ../dashboard.php:138
|
631 |
msgid "Action"
|
632 |
msgstr "Acción"
|
633 |
|
634 |
+
#: ../dashboard.php:173
|
635 |
msgid "Nobody can log in or register from these IPs"
|
636 |
msgstr "Nadie puede acceder desde estas direcciones IP"
|
637 |
|
638 |
+
#: ../dashboard.php:236 ../dashboard.php:248
|
639 |
msgid "Incorrect IP address or IP range"
|
640 |
msgstr "Dirección o rango de IP incorrecta"
|
641 |
|
642 |
+
#: ../dashboard.php:445 ../dashboard.php:1821
|
643 |
msgid "Settings saved"
|
644 |
msgstr "Ajustes guardados."
|
645 |
|
646 |
+
#: ../dashboard.php:957
|
647 |
msgid "Network:"
|
648 |
msgstr "Red:"
|
649 |
|
650 |
+
#: ../dashboard.php:971
|
651 |
msgid "Add network to the Black List"
|
652 |
msgstr "Añadir red a la Lista Negra"
|
653 |
|
654 |
+
#: ../dashboard.php:1804
|
655 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
656 |
+
msgstr "¡Atención! El Modo Ciudadela se ha activado. Ahora nadie puede iniciar sesión."
|
657 |
|
658 |
+
#: ../dashboard.php:353 ../dashboard.php:2805 ../whois.php:223 ../whois.php:254 ..
|
659 |
+
#: /common.php:923 ../common.php:1269
|
660 |
msgid "Unknown"
|
661 |
msgstr "Desconocido"
|
662 |
|
663 |
#. Author of the plugin
|
664 |
#:
|
665 |
msgid "Gregory"
|
666 |
+
msgstr "Gregory"
|
667 |
+
|
668 |
+
#: ../common.php:209 ../common.php:272 ../common.php:277 ../common.php:282 ..
|
669 |
+
#: /cerber-load.php:677 ../cerber-load.php:689 ../cerber-load.php:696 ../cerber-
|
670 |
+
#: load.php:950 ../cerber-load.php:1172 ../cerber-load.php:1178 ../cerber-load.
|
671 |
+
#: php:1183 ../cerber-load.php:1188 ../cerber-load.php:1194 ../cerber-load.php:
|
672 |
+
#: 1201 ../cerber-load.php:1303 ../cerber-load.php:1440 ../settings.php:979 ..
|
673 |
+
#: /settings.php:1048
|
674 |
msgid "ERROR:"
|
675 |
msgstr "ERROR:"
|
676 |
|
677 |
+
#: ../cerber-load.php:706
|
678 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
679 |
msgstr "La verificación humana ha fallado. Por favor, pulsa en la casilla cuadrada del siguiente bloque reCAPTCHA."
|
680 |
|
681 |
+
#: ../cerber-load.php:962
|
682 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
683 |
msgstr "<strong>ERROR</strong>: La contraseña introducida para el nombre de usuario %s es incorrecta."
|
684 |
|
685 |
+
#: ../cerber-load.php:1189
|
686 |
msgid "Username is not allowed. Please choose another one."
|
687 |
msgstr "Nombre de usuario no permitido. Por favor, elige otro."
|
688 |
|
689 |
+
#: ../cerber-load.php:3442
|
690 |
msgid "unspecified"
|
691 |
msgstr "no especificado"
|
692 |
|
693 |
+
#: ../cerber-load.php:3445
|
694 |
msgid "Number of lockouts is increasing"
|
695 |
msgstr "El número de bloqueos está aumentando"
|
696 |
|
697 |
+
#: ../cerber-load.php:3450
|
698 |
msgid "View activity for this IP"
|
699 |
msgstr "Ver actividad de esta IP"
|
700 |
|
701 |
+
#: ../cerber-load.php:3454 ../cerber-load.php:3456
|
702 |
msgid "A new version of WP Cerber is available to install"
|
703 |
msgstr "Una nueva versión de WP Cerber está disponible"
|
704 |
|
705 |
+
#: ../cerber-load.php:3455
|
706 |
msgid "Hi!"
|
707 |
msgstr "¡Hola!"
|
708 |
|
709 |
+
#: ../cerber-load.php:3458 ../cerber-load.php:3469
|
710 |
msgid "Website"
|
711 |
msgstr "Web"
|
712 |
|
713 |
+
#: ../cerber-load.php:3461 ../cerber-load.php:3462
|
714 |
msgid "The WP Cerber security plugin has been deactivated"
|
715 |
+
msgstr "El plugin WP Cerber ha sido desactivado"
|
716 |
|
717 |
+
#: ../cerber-load.php:3464
|
718 |
msgid "Not logged in"
|
719 |
msgstr "No conectado"
|
720 |
|
721 |
+
#: ../cerber-load.php:3470
|
722 |
msgid "By user"
|
723 |
msgstr "Por usuario"
|
724 |
|
725 |
+
#: ../cerber-load.php:3471
|
726 |
msgid "From IP address"
|
727 |
msgstr "De la dirección IP"
|
728 |
|
729 |
+
#: ../cerber-load.php:3474
|
730 |
msgid "From country"
|
731 |
msgstr "Del país"
|
732 |
|
733 |
+
#: ../cerber-load.php:3478
|
734 |
msgid "The WP Cerber security plugin is now active"
|
735 |
+
msgstr "El plugin WP Cerber ha sido activado"
|
736 |
|
737 |
+
#: ../cerber-load.php:4246
|
738 |
msgid "Your IP address is added to the"
|
739 |
msgstr "Tu dirección IP se ha añadido a la"
|
740 |
|
741 |
+
#: ../cerber-load.php:4262
|
742 |
msgid "Import settings"
|
743 |
msgstr "Importar ajustes"
|
744 |
|
745 |
+
#: ../settings.php:224
|
746 |
msgid "Notification limit"
|
747 |
msgstr "Límite de notificaciones"
|
748 |
|
749 |
+
#: ../settings.php:224
|
750 |
msgid "notification letters allowed per hour (0 means unlimited)"
|
751 |
msgstr "notificaciones permitidas por hora (0 significa ilimitadas)"
|
752 |
|
753 |
+
#: ../settings.php:144
|
754 |
msgid "User related settings"
|
755 |
msgstr "Ajustes de usuario"
|
756 |
|
757 |
+
#: ../settings.php:148
|
758 |
msgid "Prohibited usernames"
|
759 |
msgstr "Nombres de usuario prohibidos"
|
760 |
|
761 |
+
#: ../settings.php:154
|
762 |
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."
|
763 |
msgstr "Los nombres de usuario de esta lista no pueden iniciar una sesión o registrarse. Toda dirección IP que intente usar cualquiera de estos nombres de usuario será bloqueada inmediatamente. Usa comas para separar los nombres de usuario."
|
764 |
|
765 |
+
#: ../settings.php:156
|
766 |
msgid "User session expire"
|
767 |
msgstr "Las sesiones de usuario caducan"
|
768 |
|
769 |
+
#: ../settings.php:156
|
770 |
msgid "in minutes (leave empty to use default WP value)"
|
771 |
msgstr "en minutos (dejar vacío para usar el valor de WP predeterminado)"
|
772 |
|
773 |
+
#: ../settings.php:186
|
774 |
msgid "reCAPTCHA settings"
|
775 |
msgstr "Ajustes de reCAPTCHA"
|
776 |
|
777 |
+
#: ../settings.php:187
|
778 |
msgid "Site key"
|
779 |
msgstr "Clave del sitio"
|
780 |
|
781 |
+
#: ../settings.php:188
|
782 |
msgid "Secret key"
|
783 |
msgstr "Clave secreta"
|
784 |
|
785 |
+
#: ../settings.php:191
|
786 |
msgid "Enable reCAPTCHA for WordPress registration form"
|
787 |
msgstr "Habilitar reCAPTCHA para el formulario de registro de WordPress"
|
788 |
|
789 |
+
#: ../settings.php:194
|
790 |
msgid "Lost password form"
|
791 |
+
msgstr "Formulario de recuperación de contraseña"
|
792 |
|
793 |
+
#: ../settings.php:197
|
794 |
msgid "Login form"
|
795 |
msgstr "Formulario de inicio de sesión"
|
796 |
|
797 |
+
#: ../settings.php:197
|
798 |
msgid "Enable reCAPTCHA for WordPress login form"
|
799 |
msgstr "Habilitar reCAPTCHA para el formulario de acceso WordPress"
|
800 |
|
801 |
+
#: ../settings.php:521
|
802 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
803 |
msgstr "Para poder usar reCAPTCHA, antes tienes que obtener una clave de sitio y una clave secreta en la web de Google"
|
804 |
|
805 |
+
#: ../cerber-lab.php:750 ../settings.php:522
|
806 |
msgid "Know more"
|
807 |
+
msgstr "(Más información)"
|
808 |
|
809 |
+
#: ../dashboard.php:52 ../settings.php:550
|
810 |
msgid "WP Cerber Security"
|
811 |
msgstr "Seguridad WP Cerber"
|
812 |
|
813 |
+
#: ../settings.php:577
|
814 |
msgid "Users"
|
815 |
msgstr "Usuarios"
|
816 |
|
817 |
+
#: ../common.php:833
|
818 |
msgid "User created"
|
819 |
msgstr "Usuario creado"
|
820 |
|
821 |
+
#: ../dashboard.php:1638 ../common.php:834
|
822 |
msgid "User registered"
|
823 |
msgstr "Usuario registrado"
|
824 |
|
825 |
+
#: ../common.php:861
|
826 |
msgid "reCAPTCHA verification failed"
|
827 |
msgstr "Fallo de verificación reCAPTCHA"
|
828 |
|
829 |
+
#: ../common.php:862
|
830 |
msgid "reCAPTCHA settings are incorrect"
|
831 |
msgstr "Los ajustes reCAPTCHA son incorrectos"
|
832 |
|
833 |
+
#: ../common.php:865
|
834 |
msgid "Attempt to access prohibited URL"
|
835 |
msgstr "Intento de acceso a URL prohibida"
|
836 |
|
837 |
+
#: ../common.php:867 ../common.php:927
|
838 |
msgid "Attempt to log in with prohibited username"
|
839 |
msgstr "Intento de acceso con nombre de usuario prohibido"
|
840 |
|
841 |
+
#: ../settings.php:108
|
842 |
msgid "Cerber Lab connection"
|
843 |
msgstr "Conexión WP Cerber"
|
844 |
|
845 |
+
#: ../settings.php:108
|
846 |
msgid "Send malicious IP addresses to the Cerber Lab"
|
847 |
msgstr "Enviar direcciones IP maliciosas al Laboratorio de Cerber"
|
848 |
|
849 |
+
#: ../settings.php:109
|
850 |
msgid "Cerber Lab protocol"
|
851 |
msgstr "Protocolo WP Cerber"
|
852 |
|
853 |
+
#: ../settings.php:166 ../settings.php:191
|
854 |
msgid "Registration form"
|
855 |
msgstr "Formulario de registro"
|
856 |
|
857 |
+
#: ../settings.php:192
|
858 |
msgid "Enable reCAPTCHA for WooCommerce registration form"
|
859 |
msgstr "Habilitar reCAPTCHA para el formulario de registro WooCommerce"
|
860 |
|
861 |
+
#: ../settings.php:194
|
862 |
msgid "Enable reCAPTCHA for WordPress lost password form"
|
863 |
+
msgstr "Habilitar reCAPTCHA para formulario WordPress de recuperación de contraseña"
|
864 |
|
865 |
+
#: ../settings.php:195
|
866 |
msgid "Enable reCAPTCHA for WooCommerce lost password form"
|
867 |
+
msgstr "Habilitar reCAPTCHA para formulario WooCommerce de recuperación de contraseña"
|
868 |
|
869 |
+
#: ../settings.php:198
|
870 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
871 |
+
msgstr "Habilitar reCAPTCHA para el formulario de acceso a WooCommerce"
|
872 |
|
873 |
+
#: ../common.php:863
|
874 |
msgid "Request to the Google reCAPTCHA service failed"
|
875 |
msgstr "Error solicitando el servicio reCAPTCHA de Google"
|
876 |
|
877 |
+
#: ../dashboard.php:1630 ../dashboard.php:1660
|
878 |
msgid "View all"
|
879 |
msgstr "Ver todo"
|
880 |
|
881 |
+
#: ../dashboard.php:1661
|
882 |
msgid "Recently locked out IP addresses"
|
883 |
msgstr "Direcciones IP recientemente bloqueadas"
|
884 |
|
885 |
+
#: ../cerber-lab.php:748
|
886 |
msgid "OK, nail them all"
|
887 |
+
msgstr "OK, eliminarlos todos"
|
888 |
|
889 |
+
#: ../cerber-lab.php:749
|
890 |
msgid "NO, maybe later"
|
891 |
msgstr "NO, tal vez más tarde"
|
892 |
|
893 |
+
#: ../dashboard.php:54 ../dashboard.php:1318 ../dashboard.php:1997 ../settings.
|
894 |
+
#: php:556
|
895 |
msgid "Dashboard"
|
896 |
+
msgstr "Dashboard"
|
897 |
|
898 |
+
#: ../cerber-lab.php:746
|
899 |
msgid "Want to make WP Cerber even more powerful?"
|
900 |
+
msgstr "¿Quieres hacer tu WP Cerber aun más potente?"
|
901 |
|
902 |
+
#: ../cerber-lab.php:747
|
903 |
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."
|
904 |
+
msgstr "Dejar a WP Cerber enviar direcciones IP maliciosas bloqueadas al laboratorio Cerber. Esto ayuda a que el equipo del plugin desarrolle nuevos algoritmos para WP Cerber y ayude a defender WordPress de las nuevas amenazas y botnets que aparecen día tras día. Puedes desactivar el envío de datos en cualquier momento en la configuración del plugin."
|
905 |
|
906 |
+
#: ../dashboard.php:543
|
907 |
msgid "IP address"
|
908 |
msgstr "Dirección IP"
|
909 |
|
910 |
+
#: ../dashboard.php:543
|
911 |
msgid "User login"
|
912 |
msgstr "Acceso de Usuario"
|
913 |
|
914 |
+
#: ../dashboard.php:543
|
915 |
msgid "User ID"
|
916 |
msgstr "ID de usuario"
|
917 |
|
918 |
+
#: ../dashboard.php:735
|
919 |
msgid "Export"
|
920 |
msgstr "Exportar"
|
921 |
|
922 |
+
#: ../dashboard.php:757
|
923 |
msgid "Search for IP or username"
|
924 |
+
msgstr "Buscar IP o nombre de usuario"
|
925 |
|
926 |
+
#: ../dashboard.php:757
|
927 |
msgid "Filter"
|
928 |
msgstr "Filtrar"
|
929 |
|
930 |
+
#: ../dashboard.php:54
|
931 |
msgid "Cerber Dashboard"
|
932 |
msgstr "Panel de Control"
|
933 |
|
934 |
+
#: ../dashboard.php:68
|
935 |
msgid "Cerber tools"
|
936 |
msgstr "Herramientas Cerber"
|
937 |
|
938 |
+
#: ../dashboard.php:1907
|
939 |
msgid "Subscribe"
|
940 |
msgstr "Suscribirse"
|
941 |
|
942 |
+
#: ../dashboard.php:1908 ../cerber-tools.php:272
|
943 |
msgid "Unsubscribe"
|
944 |
msgstr "Cancelar Subscripción"
|
945 |
|
946 |
+
#: ../dashboard.php:1936
|
947 |
msgid "You've subscribed"
|
948 |
msgstr "Te has suscrito"
|
949 |
|
950 |
+
#: ../dashboard.php:1939
|
951 |
msgid "You've unsubscribed"
|
952 |
msgstr "Has cancelado tu suscripción"
|
953 |
|
954 |
+
#: ../cerber-load.php:3490 ../cerber-load.php:3491
|
955 |
msgid "A new activity has been recorded"
|
956 |
msgstr "Una nueva actividad ha sido registrada"
|
957 |
|
958 |
+
#: ../cerber-load.php:3996
|
959 |
msgid "User"
|
960 |
msgstr "Usuario"
|
961 |
|
962 |
+
#: ../cerber-load.php:4004
|
963 |
msgid "Search string"
|
964 |
msgstr "Cadena de búsqueda"
|
965 |
|
966 |
+
#: ../cerber-load.php:4025
|
967 |
msgid "To unsubscribe click here"
|
968 |
msgstr "Para anular la suscripción, pulsar aquí"
|
969 |
|
970 |
+
#: ../settings.php:112
|
971 |
msgid "Preferences"
|
972 |
msgstr "Preferencias"
|
973 |
|
974 |
+
#: ../settings.php:114
|
975 |
msgid "Date format"
|
976 |
msgstr "Formato de fecha"
|
977 |
|
978 |
+
#: ../settings.php:114
|
979 |
msgid "if empty, the default format %s will be used"
|
980 |
msgstr "Si está vacío, se utilizará el formato por defecto %s"
|
981 |
|
982 |
+
#: ../settings.php:230
|
983 |
msgid "Push notifications"
|
984 |
msgstr "Notificaciones"
|
985 |
|
986 |
+
#: ../settings.php:209
|
987 |
msgid "Email notifications"
|
988 |
msgstr "Notificaciones por correo"
|
989 |
|
990 |
+
#: ../settings.php:216 ../settings.php:258 ../settings.php:322 ../settings.php:489
|
991 |
msgid "Use comma to specify multiple values"
|
992 |
+
msgstr "Separa con comas los distintos valores"
|
993 |
|
994 |
+
#: ../settings.php:238
|
995 |
msgid "All connected devices"
|
996 |
+
msgstr "Todos los dispositivos conectados"
|
997 |
|
998 |
+
#: ../settings.php:241
|
999 |
msgid "No devices found"
|
1000 |
+
msgstr "No se encontraron dispositivos"
|
1001 |
|
1002 |
+
#: ../settings.php:245
|
1003 |
msgid "Not available"
|
1004 |
+
msgstr "No disponible"
|
1005 |
|
1006 |
+
#: ../common.php:859
|
1007 |
msgid "Password reset requested"
|
1008 |
+
msgstr "Se ha solicitado una recuperación de contraseña"
|
1009 |
|
1010 |
+
#: ../common.php:928
|
1011 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1012 |
+
msgstr "Se ha alcanzado el límite de verificaciones reCAPTCHA permitidas"
|
1013 |
|
1014 |
+
#: ../common.php:995
|
1015 |
msgid "%s ago"
|
1016 |
+
msgstr "hace %s"
|
1017 |
|
1018 |
+
#: ../settings.php:79
|
1019 |
msgid "Apply limit login rules to IP addresses in the White IP Access List"
|
1020 |
+
msgstr "Aplicar reglas de inicio de sesión limitadas a las direcciones IPs en la lista IP's permitidas"
|
1021 |
|
1022 |
+
#: ../settings.php:88
|
1023 |
msgid "Display 404 page"
|
1024 |
msgstr "Mostrar página error 404"
|
1025 |
|
1026 |
+
#: ../settings.php:189
|
1027 |
msgid "Invisible reCAPTCHA"
|
1028 |
msgstr "ReCAPTCHA invisible"
|
1029 |
|
1030 |
+
#: ../settings.php:189
|
1031 |
msgid "Enable invisible reCAPTCHA"
|
1032 |
msgstr "Habilitar reCAPTCHA invisible"
|
1033 |
|
1034 |
+
#: ../settings.php:189
|
1035 |
msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
|
1036 |
msgstr "(no habilitar a menos que se obtenga e introduzca el Sitio y las Claves secretas para la versión invisible)"
|
1037 |
|
1038 |
+
#: ../settings.php:200
|
1039 |
msgid "Enable reCAPTCHA for WordPress comment form"
|
1040 |
msgstr "Habilitar reCAPTCHA para el formulario de comentarios de WordPress"
|
1041 |
|
1042 |
+
#: ../settings.php:201
|
1043 |
msgid "Disable reCAPTCHA for logged in users"
|
1044 |
+
msgstr "Desactivar la verificación reCaptcha a usuarios conectados"
|
1045 |
|
1046 |
+
#: ../settings.php:203
|
1047 |
msgid "Limit attempts"
|
1048 |
msgstr "Límite de intentos"
|
1049 |
|
1050 |
+
#: ../settings.php:203
|
1051 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1052 |
+
msgstr "Bloquear dirección IP durante %s minutos después de %s intentos fallidos en %s minutos"
|
1053 |
|
1054 |
+
#: ../settings.php:515
|
1055 |
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."
|
1056 |
+
msgstr "Durante el modo Ciudadela, nadie puede iniciar sesión, a excepción de las IPs de la lista de IP's permitidas. Las sesiones de usuario activas no se verán afectadas."
|
1057 |
|
1058 |
+
#: ../dashboard.php:543 ../dashboard.php:715
|
1059 |
msgid "Event"
|
1060 |
msgstr "Evento"
|
1061 |
|
1062 |
+
#: ../common.php:152
|
1063 |
msgid "Spam comments denied"
|
1064 |
msgstr "Comentarios spam denegados"
|
1065 |
|
1066 |
+
#: ../common.php:154
|
1067 |
msgid "Malicious IP addresses detected"
|
1068 |
msgstr "Direcciones IP maliciosas detectadas"
|
1069 |
|
1070 |
+
#: ../common.php:155
|
1071 |
msgid "Lockouts occurred"
|
1072 |
msgstr "Bloqueos realizados"
|
1073 |
|
1074 |
+
#: ../dashboard.php:1639
|
1075 |
msgid "All suspicious activity"
|
1076 |
msgstr "Todas las actividades sospechosas"
|
1077 |
|
1078 |
+
#: ../cerber-load.php:1173 ../cerber-load.php:1179 ../cerber-load.php:1195 ..
|
1079 |
+
#: /cerber-load.php:1202
|
1080 |
msgid "You are not allowed to register."
|
1081 |
+
msgstr "No tienes acceso al registro."
|
1082 |
|
1083 |
+
#: ../common.php:844
|
1084 |
msgid "Spam comment denied"
|
1085 |
msgstr "Comentario spam denegado"
|
1086 |
|
1087 |
+
#: ../common.php:869
|
1088 |
msgid "Attempt to log in denied"
|
1089 |
+
msgstr "Intento de inicio de sesión denegado"
|
1090 |
|
1091 |
+
#: ../common.php:870
|
1092 |
msgid "Attempt to register denied"
|
1093 |
msgstr "Intento de registro denegado"
|
1094 |
|
1095 |
+
#: ../common.php:149
|
1096 |
msgid "Malicious activities mitigated"
|
1097 |
+
msgstr "Actividades maliciosas mitigadas"
|
1098 |
|
1099 |
+
#: ../dashboard.php:67
|
1100 |
msgid "Cerber antispam settings"
|
1101 |
+
msgstr "Configuración de Cerber Antispam"
|
1102 |
|
1103 |
+
#: ../dashboard.php:67 ../dashboard.php:1321 ../cerber-load.php:4259 ../settings.
|
1104 |
+
#: php:200
|
1105 |
msgid "Antispam"
|
1106 |
+
msgstr "Antispam"
|
1107 |
|
1108 |
+
#: ../settings.php:164
|
1109 |
msgid "Cerber antispam engine"
|
1110 |
msgstr "Control antispam de Cerber"
|
1111 |
|
1112 |
+
#: ../settings.php:165
|
1113 |
msgid "Comment form"
|
1114 |
msgstr "Formulario de comentarios"
|
1115 |
|
1116 |
+
#: ../settings.php:165
|
1117 |
msgid "Protect comment form with bot detection engine"
|
1118 |
msgstr "Proteger los comentarios de bots automáticos"
|
1119 |
|
1120 |
+
#: ../settings.php:166
|
1121 |
msgid "Protect registration form with bot detection engine"
|
1122 |
+
msgstr "Proteger el formulario de registro de bots automáticos"
|
1123 |
|
1124 |
#: ../cerber-tools.php:48
|
1125 |
msgid "Export & Import"
|
1133 |
msgid "License"
|
1134 |
msgstr "Licencia"
|
1135 |
|
1136 |
+
#: ../dashboard.php:3446
|
1137 |
msgid "Antispam and bot detection settings"
|
1138 |
msgstr "Antispam y ajustes de detección de bots"
|
1139 |
|
1140 |
+
#: ../cerber-load.php:1440
|
1141 |
msgid "Sorry, human verification failed."
|
1142 |
+
msgstr "Lo sentimos, no pudimos asegurar que eres un humano."
|
1143 |
|
1144 |
+
#: ../common.php:929
|
1145 |
msgid "Bot activity is detected"
|
1146 |
+
msgstr "Se ha detectado el uso de bots"
|
1147 |
|
1148 |
+
#: ../settings.php:181
|
1149 |
msgid "Comment processing"
|
1150 |
+
msgstr "Procesamiento de comentarios"
|
1151 |
|
1152 |
+
#: ../settings.php:182
|
1153 |
msgid "If a spam comment detected"
|
1154 |
msgstr "Si se ha detectado spam"
|
1155 |
|
1156 |
+
#: ../settings.php:183
|
1157 |
msgid "Trash spam comments"
|
1158 |
msgstr "Papelera de spam "
|
1159 |
|
1160 |
+
#: ../settings.php:183
|
1161 |
msgid "Move spam comments to trash after"
|
1162 |
+
msgstr "Trasladar comentarios spam a la papelera después de "
|
1163 |
|
1164 |
+
#: ../common.php:845
|
1165 |
msgid "Spam form submission denied"
|
1166 |
+
msgstr "Formulario de spam denegado"
|
1167 |
|
1168 |
+
#: ../settings.php:167
|
1169 |
msgid "Other forms"
|
1170 |
msgstr "Otros formularios"
|
1171 |
|
1172 |
+
#: ../settings.php:167
|
1173 |
msgid "Protect all forms on the website with bot detection engine"
|
1174 |
+
msgstr "Proteger todos los formularios del sitio web con el motor de detección de bots"
|
1175 |
|
1176 |
+
#: ../settings.php:169
|
1177 |
msgid "Adjust antispam engine"
|
1178 |
msgstr "Ajustar el motor antispam"
|
1179 |
|
1180 |
+
#: ../settings.php:170
|
1181 |
msgid "Safe mode"
|
1182 |
msgstr "Modo Seguro"
|
1183 |
|
1184 |
+
#: ../settings.php:170
|
1185 |
msgid "Use less restrictive policies (allow AJAX)"
|
1186 |
msgstr "Utilizar políticas menos restrictivas (permitir AJAX)"
|
1187 |
|
1188 |
+
#: ../dashboard.php:3081 ../settings.php:171
|
1189 |
msgid "Logged in users"
|
1190 |
msgstr "Usuarios conectados"
|
1191 |
|
1192 |
+
#: ../settings.php:171
|
1193 |
msgid "Disable bot detection engine for logged in users"
|
1194 |
msgstr "Deshabilitar motor de detección de bot para usuarios conectados"
|
1195 |
|
1196 |
+
#: ../dashboard.php:135 ../dashboard.php:713
|
|
|
|
|
|
|
|
|
|
|
1197 |
msgid "Country"
|
1198 |
+
msgstr "País"
|
1199 |
|
1200 |
+
#: ../dashboard.php:746
|
1201 |
msgid "All events"
|
1202 |
+
msgstr "Todos los eventos"
|
1203 |
|
1204 |
+
#: ../dashboard.php:60
|
1205 |
msgid "Cerber Security Rules"
|
1206 |
+
msgstr "Reglas de Seguridad Cerber"
|
1207 |
|
1208 |
+
#: ../dashboard.php:60 ../dashboard.php:2378
|
1209 |
msgid "Security Rules"
|
1210 |
+
msgstr "Normas de Seguridad"
|
1211 |
|
1212 |
+
#: ../dashboard.php:1147
|
1213 |
msgid "Failed login attempts"
|
1214 |
+
msgstr "Intentos de inicio de sesión fallidos"
|
1215 |
|
1216 |
+
#: ../dashboard.php:1063 ../dashboard.php:1148
|
1217 |
msgid "Registered"
|
1218 |
+
msgstr "Registrado"
|
1219 |
|
1220 |
+
#: ../dashboard.php:1218
|
1221 |
msgid "You"
|
1222 |
+
msgstr "Tú"
|
1223 |
|
1224 |
+
#: ../common.php:153
|
1225 |
msgid "Spam form submissions denied"
|
1226 |
msgstr "Envíos de formularios spam denegados"
|
1227 |
|
1228 |
+
#: ../dashboard.php:1698 ../cerber-load.php:3481 ../cerber-load.php:4248
|
1229 |
msgid "Getting Started Guide"
|
1230 |
msgstr "Guía de Introducción"
|
1231 |
|
1232 |
+
#: ../dashboard.php:2383
|
1233 |
msgid "Countries"
|
1234 |
+
msgstr "Países"
|
1235 |
|
1236 |
+
#: ../dashboard.php:2446
|
1237 |
msgid "Permitted for one country"
|
1238 |
msgid_plural "Permitted for %d countries"
|
1239 |
+
msgstr[0] "Permitido para un país"
|
1240 |
+
msgstr[1] "Permitido para %d países"
|
1241 |
|
1242 |
+
#: ../dashboard.php:2457
|
1243 |
msgid "No rule"
|
1244 |
+
msgstr "Ninguna regla"
|
1245 |
|
1246 |
+
#: ../dashboard.php:2669
|
1247 |
msgid "Security rules have been updated"
|
1248 |
+
msgstr "La configuración de seguridad se ha actualizado"
|
1249 |
|
1250 |
#. URI of the plugin
|
1251 |
#:
|
1252 |
msgid "https://wpcerber.com"
|
1253 |
+
msgstr "https://wpcerber.com"
|
1254 |
|
1255 |
+
#: ../common.php:846
|
1256 |
msgid "Form submission denied"
|
1257 |
+
msgstr "Se ha denegado la subida del formulario"
|
1258 |
|
1259 |
+
#: ../common.php:847
|
1260 |
msgid "Comment denied"
|
1261 |
+
msgstr "Comentario denegado"
|
1262 |
|
1263 |
+
#: ../common.php:875
|
1264 |
msgid "Request to REST API denied"
|
1265 |
+
msgstr "Petición de uso de la API REST denegada"
|
1266 |
|
1267 |
+
#: ../common.php:876
|
1268 |
msgid "XML-RPC request denied"
|
1269 |
+
msgstr "Petición de uso de XML-RPC denegada"
|
1270 |
|
1271 |
+
#: ../common.php:887
|
1272 |
msgid "Bot detected"
|
1273 |
+
msgstr "Bot detectado"
|
1274 |
|
1275 |
+
#: ../common.php:888
|
1276 |
msgid "Citadel mode is active"
|
1277 |
+
msgstr "El modo Ciudadela está activo"
|
1278 |
|
1279 |
+
#: ../common.php:892
|
1280 |
msgid "Malicious activity detected"
|
1281 |
+
msgstr "Se ha detectado actividad maliciosa"
|
1282 |
|
1283 |
+
#: ../common.php:893
|
1284 |
msgid "Blocked by country rule"
|
1285 |
+
msgstr "Bloqueado por norma del país"
|
1286 |
|
1287 |
+
#: ../common.php:894
|
1288 |
msgid "Limit reached"
|
1289 |
+
msgstr "Se ha alcanzado el límite"
|
1290 |
|
1291 |
+
#: ../common.php:895
|
1292 |
msgid "Multiple suspicious activities"
|
1293 |
+
msgstr "Multiples actividades sospechosas"
|
1294 |
|
1295 |
+
#: ../common.php:930
|
1296 |
msgid "Multiple suspicious activities were detected"
|
1297 |
+
msgstr "Se detectaron multiples actividades sospechosas"
|
1298 |
|
1299 |
+
#: ../settings.php:122
|
1300 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
1301 |
+
msgstr "Bloquear al usuario páginas como /?author=n y datos de usuario mediante la API REST"
|
1302 |
|
1303 |
+
#: ../settings.php:126
|
1304 |
msgid "Block access to the WordPress REST API except the following"
|
1305 |
msgstr "Bloquear el acceso a la API de WordPress excepto los siguientes espacios de nombres"
|
1306 |
|
1307 |
+
#: ../settings.php:127
|
1308 |
msgid "Allow REST API for logged in users"
|
1309 |
msgstr "Permitir API REST para usuarios que inician sesión"
|
1310 |
|
1311 |
+
#: ../settings.php:134
|
1312 |
msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
|
1313 |
msgstr "Especificar espacios de nombres de la API REST para ser permitido si se desactiva la API REST. Una cadena por línea."
|
1314 |
|
1315 |
+
#: ../settings.php:146
|
1316 |
msgid "Registration limit"
|
1317 |
+
msgstr "Límite de registro"
|
1318 |
|
1319 |
+
#: ../settings.php:157
|
1320 |
msgid "Sort users in dashboard"
|
1321 |
+
msgstr "Ordenar usuarios en el Dashboard"
|
1322 |
|
1323 |
+
#: ../settings.php:157
|
1324 |
msgid "by date of registration"
|
1325 |
msgstr "por fecha de registro"
|
1326 |
|
1327 |
+
#: ../settings.php:172
|
1328 |
msgid "Query whitelist"
|
1329 |
+
msgstr "Whitelist de consultas"
|
1330 |
|
1331 |
+
#: ../settings.php:699 ../settings.php:821
|
1332 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1333 |
+
msgstr "%s registros permitidos en %s minutos desde una IP"
|
1334 |
|
1335 |
+
#: ../dashboard.php:2513
|
1336 |
msgid "Start typing here to find a country"
|
1337 |
+
msgstr "Escribe aquí para encontrar un país"
|
1338 |
|
1339 |
+
#: ../dashboard.php:2596
|
1340 |
msgid "Click on a country name to add it to the list of selected countries"
|
1341 |
+
msgstr "Haz click en el nombre del país para añadirlo a la lista de países seleccionados"
|
1342 |
|
1343 |
+
#: ../dashboard.php:2620
|
1344 |
msgid "Submit forms"
|
1345 |
+
msgstr "Enviar formularios"
|
1346 |
|
1347 |
+
#: ../dashboard.php:2621
|
1348 |
msgid "Post comments"
|
1349 |
+
msgstr "Publicar un comentario"
|
1350 |
|
1351 |
+
#: ../dashboard.php:2622
|
1352 |
msgid "Log in to the website"
|
1353 |
+
msgstr "Inicia sesión en la página"
|
1354 |
|
1355 |
+
#: ../dashboard.php:2623
|
1356 |
msgid "Register on the website"
|
1357 |
+
msgstr "Regístrate en la página"
|
1358 |
|
1359 |
+
#: ../dashboard.php:2624
|
1360 |
msgid "Use XML-RPC"
|
1361 |
+
msgstr "Usar XML-RPC"
|
1362 |
|
1363 |
+
#: ../dashboard.php:2625
|
1364 |
msgid "Use REST API"
|
1365 |
+
msgstr "Usar la API REST"
|
1366 |
|
1367 |
+
#: ../settings.php:182
|
1368 |
msgid "Deny it completely"
|
1369 |
msgstr "Denegarlo completamente"
|
1370 |
|
1371 |
+
#: ../settings.php:182
|
1372 |
msgid "Mark it as spam"
|
1373 |
msgstr "Marcar como spam"
|
1374 |
|
1375 |
+
#: ../dashboard.php:1624
|
1376 |
msgid "in the last 24 hours"
|
1377 |
+
msgstr "en las últimas 24 horas"
|
1378 |
|
1379 |
+
#: ../dashboard.php:1998
|
1380 |
msgid "Main settings"
|
1381 |
msgstr "Ajustes"
|
1382 |
|
1383 |
+
#: ../settings.php:250
|
1384 |
msgid "Weekly reports"
|
1385 |
msgstr "Informes semanales"
|
1386 |
|
1387 |
+
#: ../settings.php:937
|
1388 |
msgid "Sunday"
|
1389 |
+
msgstr "Domingo"
|
1390 |
|
1391 |
+
#: ../settings.php:938
|
1392 |
msgid "Monday"
|
1393 |
+
msgstr "Lunes"
|
1394 |
|
1395 |
+
#: ../settings.php:939
|
1396 |
msgid "Tuesday"
|
1397 |
+
msgstr "Martes"
|
1398 |
|
1399 |
+
#: ../settings.php:940
|
1400 |
msgid "Wednesday"
|
1401 |
+
msgstr "Miércoles"
|
1402 |
|
1403 |
+
#: ../settings.php:941
|
1404 |
msgid "Thursday"
|
1405 |
+
msgstr "Jueves"
|
1406 |
|
1407 |
+
#: ../settings.php:942
|
1408 |
msgid "Friday"
|
1409 |
+
msgstr "Viernes"
|
1410 |
|
1411 |
+
#: ../settings.php:943
|
1412 |
msgid "Saturday"
|
1413 |
+
msgstr "Sábado"
|
1414 |
|
1415 |
+
#: ../settings.php:1002 ../settings.php:1003
|
1416 |
msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
|
1417 |
+
msgstr "Si utilizas un plugin de \"caching\", tendrás que añadir la nueva URL de inicio de sesión la lista de páginas, no a la caché."
|
1418 |
|
1419 |
#. translators: preposition of time
|
1420 |
+
#: ../settings.php:953
|
1421 |
msgctxt "preposition of time"
|
1422 |
msgid "at"
|
1423 |
+
msgstr "a las"
|
1424 |
|
1425 |
+
#: ../cerber-load.php:3496
|
1426 |
msgid "Weekly report"
|
1427 |
+
msgstr "Informe semanal"
|
1428 |
|
1429 |
+
#: ../cerber-load.php:3499 ../cerber-load.php:3509
|
1430 |
msgid "To change reporting settings visit"
|
1431 |
+
msgstr "Para cambiar la configuración de los informes, visita"
|
1432 |
|
1433 |
+
#: ../cerber-load.php:3532
|
1434 |
msgid "Your login page:"
|
1435 |
+
msgstr "Tu página de inicio:"
|
1436 |
|
1437 |
+
#: ../cerber-load.php:3536
|
1438 |
msgid "Your license is valid until"
|
1439 |
+
msgstr "Tu licencia es válida hasta"
|
1440 |
|
1441 |
+
#: ../cerber-load.php:3642
|
1442 |
msgid "Activity details"
|
1443 |
+
msgstr "Detalles de la actividad"
|
1444 |
|
1445 |
+
#: ../settings.php:969
|
1446 |
msgid "Click to send now"
|
1447 |
msgstr "Pulsa para enviar ahora"
|
1448 |
|
1449 |
+
#: ../cerber-load.php:814
|
1450 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1451 |
+
msgstr "> > > Eres uno de los traductores de WP Cerber? Puedes conseguir una licencia PRO gratis en: https://wpcerber.com/contact/"
|
1452 |
|
1453 |
+
#: ../dashboard.php:420
|
1454 |
msgid "Email has been sent to"
|
1455 |
+
msgstr "Se ha enviado el email a"
|
1456 |
|
1457 |
+
#: ../dashboard.php:423
|
1458 |
msgid "Unable to send email to"
|
1459 |
+
msgstr "No se ha podido enviar el email a"
|
1460 |
|
1461 |
+
#: ../dashboard.php:2449
|
1462 |
msgid "Not permitted for one country"
|
1463 |
msgid_plural "Not permitted for %d countries"
|
1464 |
+
msgstr[0] "No permitido para un país"
|
1465 |
+
msgstr[1] "No permitido para %d países"
|
1466 |
|
1467 |
+
#: ../dashboard.php:2600
|
1468 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1469 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
1470 |
+
msgstr "Solo los países seleccionados pueden %s, los otros no."
|
1471 |
|
1472 |
+
#: ../dashboard.php:2603
|
1473 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1474 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
1475 |
+
msgstr "Los países seleccionados no pueden %s, los demás sí."
|
1476 |
|
1477 |
+
#: ../cerber-load.php:3630
|
|
|
|
|
|
|
|
|
|
|
1478 |
msgid "Weekly Report"
|
1479 |
+
msgstr "Informe semanal"
|
1480 |
|
1481 |
+
#: ../settings.php:88
|
1482 |
msgid "Use 404 template from the active theme"
|
1483 |
+
msgstr "Usar la plantilla de página 404 del tema activo"
|
1484 |
|
1485 |
+
#: ../settings.php:88
|
1486 |
msgid "Display simple 404 page"
|
1487 |
+
msgstr "Mostrar una página de error 404 simple"
|
1488 |
|
1489 |
+
#: ../settings.php:178
|
1490 |
msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
|
1491 |
+
msgstr "Introduce las partes de la Query String o directorios que quieras excluir de la inspección del motor. Uno por línea"
|
1492 |
|
1493 |
+
#: ../settings.php:263 ../settings.php:494
|
1494 |
msgid "if empty, email from notification settings will be used"
|
1495 |
+
msgstr "si está vacío, se usará el email introducido en los ajustes de notificaciones"
|
1496 |
|
1497 |
+
#: ../settings.php:251
|
1498 |
msgid "Enable reporting"
|
1499 |
+
msgstr "Habilitar informes"
|
1500 |
|
1501 |
+
#: ../cerber-load.php:3560
|
1502 |
msgid "Your last sign-in was %s from %s"
|
1503 |
+
msgstr "Tu último inicio de sesión fue el %s, desde %s"
|
1504 |
|
1505 |
+
#: ../cerber-load.php:3656
|
1506 |
msgid "Attempts to log in with non-existent username"
|
1507 |
+
msgstr "Intentos de inicio de sesión con un usuario no existente"
|
1508 |
|
1509 |
+
#: ../dashboard.php:209
|
1510 |
msgid "IP address, IPv4 address range or subnet"
|
1511 |
+
msgstr "Dirección IP, Rango de IPv4 o subred"
|
1512 |
|
1513 |
+
#: ../dashboard.php:211
|
1514 |
msgid "Optional comment for this entry"
|
1515 |
+
msgstr "Comentario opcional"
|
1516 |
|
1517 |
+
#: ../dashboard.php:252
|
1518 |
msgid "You cannot add your IP address or network"
|
1519 |
+
msgstr "No puedes añadir tu propia red o dirección IP "
|
1520 |
|
1521 |
+
#: ../cerber-news.php:190
|
1522 |
msgid "Cool!"
|
1523 |
+
msgstr "¡Genial!"
|
1524 |
|
1525 |
+
#: ../settings.php:154
|
1526 |
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1527 |
+
msgstr "Para especificar un patrón REGEX, envuelve el patrón entre dos / barras */."
|
1528 |
+
|
1529 |
+
#: ../dashboard.php:56
|
1530 |
+
msgid "Cerber Traffic Inspector"
|
1531 |
+
msgstr "Inspector de Tráfico Cerber"
|
1532 |
+
|
1533 |
+
#: ../dashboard.php:56 ../dashboard.php:1288 ../dashboard.php:2718
|
1534 |
+
msgid "Traffic Inspector"
|
1535 |
+
msgstr "Inspector de tráfico"
|
1536 |
+
|
1537 |
+
#: ../dashboard.php:1320
|
1538 |
+
msgid "Traffic"
|
1539 |
+
msgstr "Tráfico"
|
1540 |
+
|
1541 |
+
#: ../dashboard.php:2723
|
1542 |
+
msgid "Live traffic"
|
1543 |
+
msgstr "Tráfico en vivo"
|
1544 |
+
|
1545 |
+
#: ../dashboard.php:3049
|
1546 |
+
msgid "Request"
|
1547 |
+
msgstr "Solicitud"
|
1548 |
+
|
1549 |
+
#: ../dashboard.php:3051
|
1550 |
+
msgid "Host Info"
|
1551 |
+
msgstr "Información del Host"
|
1552 |
+
|
1553 |
+
#: ../dashboard.php:3052
|
1554 |
+
msgid "User Agent"
|
1555 |
+
msgstr "Navegador"
|
1556 |
+
|
1557 |
+
#: ../dashboard.php:3077
|
1558 |
+
msgid "All requests"
|
1559 |
+
msgstr "Todas las peticiones"
|
1560 |
+
|
1561 |
+
#: ../dashboard.php:3082
|
1562 |
+
msgid "Not logged in visitors"
|
1563 |
+
msgstr "Visitantes que no han iniciado sesión"
|
1564 |
+
|
1565 |
+
#: ../dashboard.php:3083
|
1566 |
+
msgid "Form submissions"
|
1567 |
+
msgstr "Envío de formularios"
|
1568 |
+
|
1569 |
+
#: ../dashboard.php:3084
|
1570 |
+
msgid "Page Not Found"
|
1571 |
+
msgstr "No se ha encontrado la página"
|
1572 |
+
|
1573 |
+
#: ../dashboard.php:3085
|
1574 |
+
msgid "REST API"
|
1575 |
+
msgstr "API REST"
|
1576 |
+
|
1577 |
+
#: ../dashboard.php:3086
|
1578 |
+
msgid "XML-RPC"
|
1579 |
+
msgstr "XML-RPC"
|
1580 |
+
|
1581 |
+
#: ../dashboard.php:3091
|
1582 |
+
msgid "Longer than"
|
1583 |
+
msgstr "Más largo(a) que"
|
1584 |
+
|
1585 |
+
#: ../dashboard.php:3107
|
1586 |
+
msgid "Refresh"
|
1587 |
+
msgstr "Actualizar"
|
1588 |
+
|
1589 |
+
#: ../common.php:115
|
1590 |
+
msgid "Check for requests"
|
1591 |
+
msgstr "Buscar nuevas solicitudes"
|
1592 |
+
|
1593 |
+
#: ../common.php:1204
|
1594 |
+
msgid "Not specified"
|
1595 |
+
msgstr "No especificado(a)"
|
1596 |
+
|
1597 |
+
#: ../settings.php:293
|
1598 |
+
msgid "Logging mode"
|
1599 |
+
msgstr "Modo de reportes"
|
1600 |
+
|
1601 |
+
#: ../settings.php:299
|
1602 |
+
msgid "Logging disabled"
|
1603 |
+
msgstr "Inicio de sesión desactivado"
|
1604 |
+
|
1605 |
+
#: ../settings.php:300
|
1606 |
+
msgid "Smart"
|
1607 |
+
msgstr "Inteligente"
|
1608 |
+
|
1609 |
+
#: ../settings.php:301
|
1610 |
+
msgid "All traffic"
|
1611 |
+
msgstr "Todo el tráfico"
|
1612 |
+
|
1613 |
+
#: ../settings.php:305
|
1614 |
+
msgid "Ignore crawlers"
|
1615 |
+
msgstr "Ignorar crawlers"
|
1616 |
+
|
1617 |
+
#: ../settings.php:315
|
1618 |
+
msgid "Mask these form fields"
|
1619 |
+
msgstr "Ocultar el origen de estos campos"
|
1620 |
+
|
1621 |
+
#: ../settings.php:351
|
1622 |
+
msgid "milliseconds"
|
1623 |
+
msgstr "milisegundos"
|
1624 |
+
|
1625 |
+
#: ../settings.php:271
|
1626 |
+
msgid "Inspection"
|
1627 |
+
msgstr "Inspección"
|
1628 |
+
|
1629 |
+
#: ../settings.php:272
|
1630 |
+
msgid "Enable traffic inspection"
|
1631 |
+
msgstr "Habilitar inspección del tráfico"
|
1632 |
+
|
1633 |
+
#: ../settings.php:292
|
1634 |
+
msgid "Logging"
|
1635 |
+
msgstr "Registros"
|
1636 |
+
|
1637 |
+
#: ../settings.php:310
|
1638 |
+
msgid "Save request fields"
|
1639 |
+
msgstr "Guardar campos de petición de datos"
|
1640 |
+
|
1641 |
+
#: ../settings.php:346
|
1642 |
+
msgid "Page generation time threshold"
|
1643 |
+
msgstr "Umbral de tiempo de generación de la página"
|
1644 |
+
|
1645 |
+
#: ../dashboard.php:3069
|
1646 |
+
msgid "No requests have been logged."
|
1647 |
+
msgstr "No se ha registrado ninguna solicitud"
|
1648 |
+
|
1649 |
+
#: ../dashboard.php:1287
|
1650 |
+
msgid "enabled"
|
1651 |
+
msgstr "activado/a"
|
1652 |
+
|
1653 |
+
#: ../dashboard.php:1292
|
1654 |
+
msgid "no connection"
|
1655 |
+
msgstr "sin conexión"
|
1656 |
+
|
1657 |
+
#: ../dashboard.php:3403
|
1658 |
+
msgid "Advanced search"
|
1659 |
+
msgstr "Búsqueda avanzada"
|
1660 |
+
|
1661 |
+
#: ../dashboard.php:1053
|
1662 |
+
msgid "Last seen"
|
1663 |
+
msgstr "Visto por última vez"
|
1664 |
+
|
1665 |
+
#: ../common.php:871 ../common.php:931
|
1666 |
+
msgid "Probing for vulnerable PHP code"
|
1667 |
+
msgstr "Buscando código PHP vulnerable"
|
1668 |
+
|
1669 |
+
#: ../dashboard.php:3361
|
1670 |
+
msgid "Any"
|
1671 |
+
msgstr "Cualquiera"
|
1672 |
+
|
1673 |
+
#: ../cerber-load.php:3281
|
1674 |
+
msgid "We're sorry, you are not allowed to proceed"
|
1675 |
+
msgstr "Lo sentimos, no estás autorizado para continuar"
|
1676 |
+
|
1677 |
+
#: ../settings.php:283
|
1678 |
+
msgid "Request whitelist"
|
1679 |
+
msgstr "Solicitar whitelist"
|
1680 |
+
|
1681 |
+
#: ../settings.php:289
|
1682 |
+
msgid "Enter a request URI to exclude the request from inspection. One item per line."
|
1683 |
+
msgstr "Introduce una 'request URI' que excluir de la inspección. Una por línea"
|
1684 |
+
|
1685 |
+
#: ../settings.php:327
|
1686 |
+
msgid "Save request headers"
|
1687 |
+
msgstr "Guardar los headers de petición"
|
1688 |
+
|
1689 |
+
#: ../settings.php:333
|
1690 |
+
msgid "Save $_SERVER"
|
1691 |
+
msgstr "Guardar $_SERVER"
|
1692 |
+
|
1693 |
+
#: ../settings.php:339
|
1694 |
+
msgid "Save request cookies"
|
1695 |
+
msgstr "Guardar los cookies de petición"
|
1696 |
+
|
1697 |
+
#: ../settings.php:123
|
1698 |
+
msgid "Protect admin scripts"
|
1699 |
+
msgstr "Proteger los scripts de administrador"
|
1700 |
+
|
1701 |
+
#: ../settings.php:123
|
1702 |
+
msgid "Block unauthorized access to load-scripts.php and load-styles.php"
|
1703 |
+
msgstr "Bloquear el acceso no autorizado a los load-scripts.php y load-styles.php"
|
1704 |
+
|
1705 |
+
#: ../common.php:1830
|
1706 |
+
msgid "Unable to create the directory"
|
1707 |
+
msgstr "No se ha podido crear el directorio"
|
1708 |
+
|
1709 |
+
#: ../common.php:1835
|
1710 |
+
msgid "Destination folder access denied"
|
1711 |
+
msgstr "El acceso a la carpeta de destino ha sido denegado"
|
1712 |
+
|
1713 |
+
#: ../common.php:1838
|
1714 |
+
msgid "File not found"
|
1715 |
+
msgstr "No se ha encontrado el archivo"
|
1716 |
+
|
1717 |
+
#: ../common.php:1841
|
1718 |
+
msgid "Unable to copy the file"
|
1719 |
+
msgstr "No se ha podido copiar el archivo"
|
1720 |
+
|
1721 |
+
#: ../common.php:1847
|
1722 |
+
msgid "Unable to delete the file"
|
1723 |
+
msgstr "No se ha podido eliminar el archivo"
|
1724 |
+
|
1725 |
+
#: ../settings.php:72
|
1726 |
+
msgid "Plugin initialization"
|
1727 |
+
msgstr "Inicialización del plugin"
|
1728 |
+
|
1729 |
+
#: ../settings.php:73
|
1730 |
+
msgid "Load security engine"
|
1731 |
+
msgstr "Cargar módulo de seguridad"
|
1732 |
+
|
1733 |
+
#: ../settings.php:73
|
1734 |
+
msgid "Legacy mode"
|
1735 |
+
msgstr "Modo Legacy"
|
1736 |
+
|
1737 |
+
#: ../settings.php:73
|
1738 |
+
msgid "Standard mode"
|
1739 |
+
msgstr "Modo Standard"
|
1740 |
+
|
1741 |
+
#: ../settings.php:980
|
1742 |
+
msgid "Plugin initialization mode has not been changed"
|
1743 |
+
msgstr "El modo de inicialización del plugin no se ha cambiado"
|
1744 |
+
|
1745 |
+
#. Description of the plugin
|
1746 |
+
#:
|
1747 |
+
msgid "This is a standard boot module for WP Cerber Security & Antispam plugin. It was installed when you set the plugin initialization mode to Standard. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1748 |
+
msgstr "Este es un módulo de inicio Standard del plugin WP Cerber Security & Antispam. Se instaló cuando cambiaste el modo de inicialización del plugin a Standard. Para saber más, vaya aquí: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1749 |
+
|
1750 |
+
#: ../common.php:872
|
1751 |
+
msgid "Attempt to upload executable file denied"
|
1752 |
+
msgstr "Se ha denegado el intento de subida del ejecutable"
|
1753 |
+
|
1754 |
+
#: ../common.php:873
|
1755 |
+
msgid "File upload denied"
|
1756 |
+
msgstr "Subida denegada"
|
1757 |
+
|
1758 |
+
#: ../settings.php:96
|
1759 |
+
msgid "Custom login URL may contain only letters, numbers, dashes and underscores"
|
1760 |
+
msgstr "La URL de acceso solo puede contener letras, números, guiones y guiones bajos."
|
1761 |
+
|
1762 |
+
#: ../settings.php:178 ../settings.php:289
|
1763 |
+
msgid "To specify a REGEX pattern, enclose a whole line in two braces."
|
1764 |
+
msgstr "Para especificar un patrón REGEX, escribe la línea entera entre llaves."
|
1765 |
+
|
1766 |
+
#: ../settings.php:511
|
1767 |
+
msgid "Be careful about enabling these options."
|
1768 |
+
msgstr "Ten cuidado a la hora de activar estas opciones."
|
1769 |
+
|
1770 |
+
#: ../settings.php:511
|
1771 |
+
msgid "If you forget your Custom login URL, you will be unable to log in."
|
1772 |
+
msgstr "Si olvidas tu URL de acceso personalizada, no podrás iniciar sesión."
|
1773 |
+
|
1774 |
+
#: ../dashboard.php:64 ../cerber-scanner.php:79
|
1775 |
+
msgid "Site Integrity"
|
1776 |
+
msgstr "Integridad del sitio"
|
1777 |
+
|
1778 |
+
#: ../dashboard.php:1305 ../dashboard.php:1307 ../cerber-scanner.php:1176
|
1779 |
+
msgid "Disabled"
|
1780 |
+
msgstr "Desactivada"
|
1781 |
+
|
1782 |
+
#: ../dashboard.php:1306 ../cerber-scanner.php:750
|
1783 |
+
msgid "Quick Scan"
|
1784 |
+
msgstr "Escáner rápido"
|
1785 |
+
|
1786 |
+
#: ../dashboard.php:1308 ../cerber-scanner.php:750
|
1787 |
+
msgid "Full Scan"
|
1788 |
+
msgstr "Escáner completo"
|
1789 |
+
|
1790 |
+
#. Name of the plugin
|
1791 |
+
#:
|
1792 |
+
msgid "WP Cerber Security, Antispam & Malware Scan"
|
1793 |
+
msgstr "WP Cerber Security - Escáner de malware y Antispam"
|
1794 |
+
|
1795 |
+
#: ../common.php:896
|
1796 |
+
msgid "Denied"
|
1797 |
+
msgstr "Denegado"
|
1798 |
+
|
1799 |
+
#: ../settings.php:79 ../settings.php:278
|
1800 |
+
msgid "Use White IP Access List"
|
1801 |
+
msgstr "Usar la lista de IP permitidas"
|
1802 |
+
|
1803 |
+
#: ../settings.php:86
|
1804 |
+
msgid "Disable dashboard redirection"
|
1805 |
+
msgstr "Deshabilitar la redirección al dashboard"
|
1806 |
+
|
1807 |
+
#: ../settings.php:86
|
1808 |
+
msgid "Disable automatic redirection to the login page when /wp-admin/ is requested by an unauthorized request"
|
1809 |
+
msgstr "Deshabilitar la redirección automática a la página de inicio de sesión cuando /wp-admin/ sea solicitado por un usuario no autorizado"
|
1810 |
+
|
1811 |
+
#: ../settings.php:367
|
1812 |
+
msgid "Scanner settings"
|
1813 |
+
msgstr "Configuración de Escaneo"
|
1814 |
+
|
1815 |
+
#: ../settings.php:368
|
1816 |
+
msgid "Custom signatures"
|
1817 |
+
msgstr "Firmas personalizadas"
|
1818 |
+
|
1819 |
+
#: ../settings.php:374
|
1820 |
+
msgid "Specify custom PHP code signatures. One item per line. To specify a REGEX pattern, enclose a whole line in two braces."
|
1821 |
+
msgstr "Especifica una firma personalizada del código PHP. Una por línea. Para designar un patrón REGEX, escribe la línea entera entre llaves."
|
1822 |
+
|
1823 |
+
#: ../settings.php:376
|
1824 |
+
msgid "Unwanted file extensions"
|
1825 |
+
msgstr "Extensiones no deseadas"
|
1826 |
+
|
1827 |
+
#: ../settings.php:382
|
1828 |
+
msgid "Specify file extensions to search for. Full scan only. Use comma to separate items."
|
1829 |
+
msgstr "Especifica la extensión de archivo que quieras buscar. Solo para Escáner completo. Separa cada elemento con comas."
|
1830 |
+
|
1831 |
+
#: ../settings.php:384
|
1832 |
+
msgid "Directories to exclude"
|
1833 |
+
msgstr "Directorios a excluir"
|
1834 |
+
|
1835 |
+
#: ../settings.php:390
|
1836 |
+
msgid "Specify directories to exclude from scanning. Use absolute paths. One item per line."
|
1837 |
+
msgstr "Especifica los directorios que no quieres que se incluyan en la búsqueda. Utiliza la dirección completa. Un ítem por línea."
|
1838 |
+
|
1839 |
+
#: ../settings.php:405
|
1840 |
+
msgid "Scan temporary directory"
|
1841 |
+
msgstr "Escanear directorios temporales"
|
1842 |
+
|
1843 |
+
#: ../settings.php:412
|
1844 |
+
msgid "Scan session directory"
|
1845 |
+
msgstr "Escanear directorio de sesión"
|
1846 |
+
|
1847 |
+
#: ../settings.php:418
|
1848 |
+
msgid "Delete quarantined files after"
|
1849 |
+
msgstr "Eliminar los archivos de cuarentena al acabar"
|
1850 |
+
|
1851 |
+
#: ../settings.php:433
|
1852 |
+
msgid "Launch Quick Scan"
|
1853 |
+
msgstr "Iniciar el Escaneo Rápido"
|
1854 |
+
|
1855 |
+
#: ../cerber-scanner.php:1177
|
1856 |
+
msgid "Every hour"
|
1857 |
+
msgstr "Cada hora"
|
1858 |
+
|
1859 |
+
#: ../cerber-scanner.php:1178
|
1860 |
+
msgid "Every 3 hours"
|
1861 |
+
msgstr "Cada 3 horas"
|
1862 |
+
|
1863 |
+
#: ../cerber-scanner.php:1179
|
1864 |
+
msgid "Every 6 hours"
|
1865 |
+
msgstr "Cada 6 horas"
|
1866 |
+
|
1867 |
+
#: ../settings.php:440
|
1868 |
+
msgid "Launch Full Scan"
|
1869 |
+
msgstr "Iniciar escáner completo"
|
1870 |
+
|
1871 |
+
#: ../settings.php:450
|
1872 |
+
msgid "Low severity"
|
1873 |
+
msgstr "Leve"
|
1874 |
+
|
1875 |
+
#: ../settings.php:450
|
1876 |
+
msgid "Medium severity"
|
1877 |
+
msgstr "Grave"
|
1878 |
+
|
1879 |
+
#: ../settings.php:450
|
1880 |
+
msgid "High severity"
|
1881 |
+
msgstr "Muy grave"
|
1882 |
+
|
1883 |
+
#: ../settings.php:451
|
1884 |
+
msgid "Report an issue if any of the following is true"
|
1885 |
+
msgstr "Informar de cualquier problema si cualquiera de los siguientes es verdadero"
|
1886 |
+
|
1887 |
+
#: ../settings.php:459
|
1888 |
+
msgid "Send email report"
|
1889 |
+
msgstr "Enviar informe por email"
|
1890 |
+
|
1891 |
+
#: ../settings.php:465
|
1892 |
+
msgid "After every scan"
|
1893 |
+
msgstr "Después de cada escáner"
|
1894 |
+
|
1895 |
+
#: ../settings.php:466
|
1896 |
+
msgid "If any changes in scan results occurred"
|
1897 |
+
msgstr "Si ocurriese cualquier cambio en los resultados del escáner"
|
1898 |
+
|
1899 |
+
#: ../settings.php:471
|
1900 |
+
msgid "Include file sizes"
|
1901 |
+
msgstr "Incluir el tamaño de los archivos"
|
1902 |
+
|
1903 |
+
#: ../settings.php:478
|
1904 |
+
msgid "Include scan errors"
|
1905 |
+
msgstr "Incluir los errores en el escáner"
|
1906 |
+
|
1907 |
+
#: ../cerber-load.php:4257 ../cerber-scanner.php:84
|
1908 |
+
msgid "Security Scanner"
|
1909 |
+
msgstr "Escaneo de Seguridad"
|
1910 |
+
|
1911 |
+
#: ../cerber-scanner.php:86
|
1912 |
+
msgid "Scheduling"
|
1913 |
+
msgstr "Programación"
|
1914 |
+
|
1915 |
+
#: ../cerber-scanner.php:133
|
1916 |
+
msgid "Currently a scheduled scan in progress. Please wait until it is finished."
|
1917 |
+
msgstr "Ahora mismo hay un escáner programado en proceso. Por favor, espera a que haya finalizado."
|
1918 |
+
|
1919 |
+
#: ../cerber-scanner.php:137
|
1920 |
+
msgid "Previous scan started %s has not been completed. Continue scanning?"
|
1921 |
+
msgstr "El escáner anterior empezado %s no se ha completado. ¿Seguir escaneando?"
|
1922 |
+
|
1923 |
+
#: ../cerber-scanner.php:146
|
1924 |
+
msgid "It seems this website has never been scanned. To start scanning click the button below."
|
1925 |
+
msgstr "Parece que esta página no se ha analizado nunca... Para realizar un escáner, haz click en el botón de abajo."
|
1926 |
+
|
1927 |
+
#: ../cerber-scanner.php:149
|
1928 |
+
msgid "Start Quick Scan"
|
1929 |
+
msgstr "Empezar un Escaneo Rápido"
|
1930 |
+
|
1931 |
+
#: ../cerber-scanner.php:150
|
1932 |
+
msgid "Start Full Scan"
|
1933 |
+
msgstr "Empezar un Escaneo Completo"
|
1934 |
+
|
1935 |
+
#: ../cerber-scanner.php:151
|
1936 |
+
msgid "Stop Scanning"
|
1937 |
+
msgstr "Parar el Escaneo"
|
1938 |
+
|
1939 |
+
#: ../cerber-scanner.php:152
|
1940 |
+
msgid "Continue Scanning"
|
1941 |
+
msgstr "Continuar el Escaneo"
|
1942 |
+
|
1943 |
+
#: ../cerber-scanner.php:181
|
1944 |
+
msgid "Delete"
|
1945 |
+
msgstr "Borrar"
|
1946 |
+
|
1947 |
+
#: ../cerber-scanner.php:1126
|
1948 |
+
msgid "Verified"
|
1949 |
+
msgstr "Verificado"
|
1950 |
+
|
1951 |
+
#: ../cerber-scanner.php:1133
|
1952 |
+
msgid "Integrity data not found"
|
1953 |
+
msgstr "No se han encontrado datos de integridad"
|
1954 |
+
|
1955 |
+
#: ../cerber-scanner.php:1134
|
1956 |
+
msgid "Unable to check the integrity of the plugin due to a network error"
|
1957 |
+
msgstr "No se ha podido verificar la integridad del plugin por un error de red"
|
1958 |
+
|
1959 |
+
#: ../cerber-scanner.php:1135
|
1960 |
+
msgid "Unable to check the integrity of WordPress files due to a network error"
|
1961 |
+
msgstr "No se ha podido verificar la integridad de los archivos de Wordpress por un error de red"
|
1962 |
+
|
1963 |
+
#: ../cerber-scanner.php:1136
|
1964 |
+
msgid "Unable to check the integrity of the theme due to a network error"
|
1965 |
+
msgstr "No se ha podido verificar la integridad del tema por un error de red"
|
1966 |
+
|
1967 |
+
#: ../cerber-scanner.php:1139
|
1968 |
+
msgid "Local file doesn't exist"
|
1969 |
+
msgstr "No existe un archivo local"
|
1970 |
+
|
1971 |
+
#: ../cerber-scanner.php:1141
|
1972 |
+
msgid "Unable to process file"
|
1973 |
+
msgstr "No se ha podido procesar el archivo"
|
1974 |
+
|
1975 |
+
#: ../cerber-scanner.php:1142 ../cerber-scanner.php:4435
|
1976 |
+
msgid "Unable to open file"
|
1977 |
+
msgstr "No se ha podido abrir el archivo"
|
1978 |
+
|
1979 |
+
#: ../cerber-scanner.php:1144
|
1980 |
+
msgid "Checksum mismatch"
|
1981 |
+
msgstr "Error de Checksum"
|
1982 |
+
|
1983 |
+
#: ../cerber-scanner.php:1147
|
1984 |
+
msgid "Suspicious code found"
|
1985 |
+
msgstr "Se ha encontrado código malicioso"
|
1986 |
+
|
1987 |
+
#: ../cerber-scanner.php:1148
|
1988 |
+
msgid "Potentially malicious code found"
|
1989 |
+
msgstr "Pieza de código potencialmente malicioso encontrado"
|
1990 |
+
|
1991 |
+
#: ../cerber-scanner.php:1149
|
1992 |
+
msgid "Unattended suspicious file"
|
1993 |
+
msgstr "Archivo sospechoso sin tratar"
|
1994 |
+
|
1995 |
+
#: ../cerber-scanner.php:1150
|
1996 |
+
msgid "Executable code found"
|
1997 |
+
msgstr "Se ha encontrado código ejecutable"
|
1998 |
+
|
1999 |
+
#: ../cerber-scanner.php:1154
|
2000 |
+
msgid "Unwanted file extension"
|
2001 |
+
msgstr "No se admite la extensión del archivo"
|
2002 |
+
|
2003 |
+
#: ../cerber-scanner.php:1156
|
2004 |
+
msgid "Content has been modified"
|
2005 |
+
msgstr "El contenido se ha modificado"
|
2006 |
+
|
2007 |
+
#: ../cerber-scanner.php:1157
|
2008 |
+
msgid "New file"
|
2009 |
+
msgstr "Nuevo archivo"
|
2010 |
+
|
2011 |
+
#: ../cerber-scanner.php:2205
|
2012 |
+
msgid "Custom signature found"
|
2013 |
+
msgstr "Se ha encontrado una firma digital personalizada"
|
2014 |
+
|
2015 |
+
#: ../cerber-scanner.php:3411
|
2016 |
+
msgid "Scanning folders for files"
|
2017 |
+
msgstr "Buscando los archivos en las carpetas"
|
2018 |
+
|
2019 |
+
#: ../cerber-scanner.php:3415
|
2020 |
+
msgid "Parsing the list of files"
|
2021 |
+
msgstr "Analizando la lista de archivos"
|
2022 |
+
|
2023 |
+
#: ../cerber-scanner.php:3416
|
2024 |
+
msgid "Checking for new and modified files"
|
2025 |
+
msgstr "Buscando por nuevos archivos o archivos modificados"
|
2026 |
+
|
2027 |
+
#: ../cerber-scanner.php:3417
|
2028 |
+
msgid "Verifying the integrity of WordPress"
|
2029 |
+
msgstr "Verificando la integridad de WordPress"
|
2030 |
+
|
2031 |
+
#: ../cerber-scanner.php:3418
|
2032 |
+
msgid "Verifying the integrity of the plugins"
|
2033 |
+
msgstr "Verificando la integridad de los plugins"
|
2034 |
+
|
2035 |
+
#: ../cerber-scanner.php:3419
|
2036 |
+
msgid "Verifying the integrity of the themes"
|
2037 |
+
msgstr "Verificando la integridad de los temas"
|
2038 |
+
|
2039 |
+
#: ../cerber-scanner.php:3420
|
2040 |
+
msgid "Searching for malicious code"
|
2041 |
+
msgstr "Buscando líneas de código malicioso"
|
2042 |
+
|
2043 |
+
#: ../cerber-scanner.php:3421
|
2044 |
+
msgid "Finalizing the scan"
|
2045 |
+
msgstr "Finalizando el escáner"
|
2046 |
+
|
2047 |
+
#: ../cerber-scanner.php:3499
|
2048 |
+
msgid "Files to scan"
|
2049 |
+
msgstr "Archivos a escanear"
|
2050 |
+
|
2051 |
+
#: ../cerber-scanner.php:3507
|
2052 |
+
msgid "Critical issues"
|
2053 |
+
msgstr "Problemas críticos"
|
2054 |
+
|
2055 |
+
#: ../cerber-scanner.php:3511 ../cerber-scanner.php:4625
|
2056 |
+
msgid "Issues total"
|
2057 |
+
msgstr "Problemas encontrados"
|
2058 |
+
|
2059 |
+
#: ../cerber-scanner.php:3871
|
2060 |
+
msgid "The directory is not writable"
|
2061 |
+
msgstr "El nombre del directorio no es válido"
|
2062 |
+
|
2063 |
+
#: ../cerber-scanner.php:3889
|
2064 |
+
msgid "Unable to create WP CERBER directory"
|
2065 |
+
msgstr "No se ha podido crear el directorio WP CERBER"
|
2066 |
+
|
2067 |
+
#: ../cerber-scanner.php:4096
|
2068 |
+
msgid "File access error. Possibly scan results are outdated. Please run Quick or Full Scan."
|
2069 |
+
msgstr "Error al acceder al archivo. Los resultados del escáner están probablemente desactualizado. Por favor, realiza un Escáner Rápido o Completo"
|
2070 |
+
|
2071 |
+
#: ../cerber-scanner.php:4707
|
2072 |
+
msgid "To view full report visit"
|
2073 |
+
msgstr "Para ver el informe completo, visita"
|
2074 |
+
|
2075 |
+
#: ../cerber-load.php:3506
|
2076 |
+
msgid "Scanner Report"
|
2077 |
+
msgstr "Informe del escáner"
|
2078 |
+
|
2079 |
+
#: ../settings.php:392
|
2080 |
+
msgid "Monitor new files"
|
2081 |
+
msgstr "Monitorizar nuevos archivos"
|
2082 |
+
|
2083 |
+
#: ../settings.php:399
|
2084 |
+
msgid "Monitor modified files"
|
2085 |
+
msgstr "Monitorizar archivos modificados"
|
2086 |
+
|
2087 |
+
#: ../settings.php:467
|
2088 |
+
msgid "If new issues found"
|
2089 |
+
msgstr "Si se encontrasen nuevos problemas"
|
2090 |
+
|
2091 |
+
#: ../settings.php:1223
|
2092 |
+
msgid "The schedule has been updated"
|
2093 |
+
msgstr "La programación se ha actualizado"
|
2094 |
+
|
2095 |
+
#: ../settings.php:1226
|
2096 |
+
msgid "Unable to updated the schedule"
|
2097 |
+
msgstr "No se ha podido actualizar la programación"
|
2098 |
+
|
2099 |
+
#: ../cerber-scanner.php:1153 ../cerber-scanner.php:2368
|
2100 |
+
msgid "Suspicious directives found"
|
2101 |
+
msgstr "Se han encontrado directivas sospechosas"
|
2102 |
+
|
2103 |
+
#: ../cerber-scanner.php:2366
|
2104 |
+
msgid "Suspicious code instruction found"
|
2105 |
+
msgstr "Se han encontrado instrucciones sospechosas en el código"
|
2106 |
+
|
2107 |
+
#: ../cerber-scanner.php:2367
|
2108 |
+
msgid "Suspicious code signatures found"
|
2109 |
+
msgstr "Se han encontrado firmas sospechosas en el código"
|
2110 |
+
|
2111 |
+
#: ../cerber-scanner.php:2370
|
2112 |
+
msgid "To solve this issue you have to reinstall %s or update it to the latest version."
|
2113 |
+
msgstr "Para solucionar este problema tendrás que reinstalar %s o actualizarlo a su versión más reciente."
|
2114 |
+
|
2115 |
+
#: ../cerber-scanner.php:2371
|
2116 |
+
msgid "Please upload a reference ZIP archive"
|
2117 |
+
msgstr "Por favor, sube un archivo ZIP de referencia"
|
2118 |
+
|
2119 |
+
#: ../cerber-scanner.php:2372
|
2120 |
+
msgid "Resolve issue"
|
2121 |
+
msgstr "Resolver problema"
|
2122 |
+
|
2123 |
+
#: ../cerber-scanner.php:3583
|
2124 |
+
msgid "We have not found any integrity data to verify"
|
2125 |
+
msgstr "No hemos encontrado ningún dato del que verificar integridad"
|
2126 |
+
|
2127 |
+
#: ../cerber-scanner.php:3585
|
2128 |
+
msgid "You have to upload a ZIP archive from which you've installed it. This enables the security scanner to verify the integrity of the code and detect malware."
|
2129 |
+
msgstr "Tienes que subir el archivo ZIP desde donde lo has instalado. Esto permite al escáner de seguridad verificar la integridad del código y detectar malware"
|
2130 |
+
|
2131 |
+
#: ../cerber-scanner.php:4581
|
2132 |
+
msgid "Full Scan Report"
|
2133 |
+
msgstr "Informe del escáner completo"
|
2134 |
+
|
2135 |
+
#: ../cerber-scanner.php:4581
|
2136 |
+
msgid "Quick Scan Report"
|
2137 |
+
msgstr "Informe del escáner rápido"
|
2138 |
+
|
2139 |
+
#: ../cerber-scanner.php:4594
|
2140 |
+
msgid "Files scanned"
|
2141 |
+
msgstr "Archivos escaneados"
|
2142 |
+
|
2143 |
+
#: ../dashboard.php:198 ../dashboard.php:926 ../dashboard.php:957 ../dashboard.
|
2144 |
+
#: php:1069
|
2145 |
+
msgid "Check for activities"
|
2146 |
+
msgstr "Buscar nuevas actividades"
|
2147 |
+
|
2148 |
+
#: ../dashboard.php:1032
|
2149 |
+
msgid "Activated"
|
2150 |
+
msgstr "Activado"
|
2151 |
+
|
2152 |
+
#: ../common.php:878
|
2153 |
+
msgid "Malicious request denied"
|
2154 |
+
msgstr "Petición maliciosa denegada"
|
2155 |
+
|
2156 |
+
#: ../common.php:882
|
2157 |
+
msgid "User activated"
|
2158 |
+
msgstr "Usuario activado"
|
2159 |
+
|
2160 |
+
#: ../common.php:897
|
2161 |
+
msgid "Suspicious number of fields"
|
2162 |
+
msgstr "Número de campos sospechoso"
|
2163 |
+
|
2164 |
+
#: ../common.php:898
|
2165 |
+
msgid "Suspicious number of nested values"
|
2166 |
+
msgstr "Número sospechoso de valores anidados"
|
2167 |
+
|
2168 |
+
#: ../common.php:899 ../common.php:932
|
2169 |
+
msgid "Malicious code detected"
|
2170 |
+
msgstr "Se ha detectado código malicioso"
|
2171 |
+
|
2172 |
+
#: ../common.php:933
|
2173 |
+
msgid "Attempt to upload a file with malicious code"
|
2174 |
+
msgstr "Se ha intentado subir un archivo de código malicioso"
|
2175 |
+
|
2176 |
+
#: ../common.php:1080
|
2177 |
+
msgid "Bytes"
|
2178 |
+
msgstr "Bytes"
|
2179 |
+
|
2180 |
+
#: ../cerber-scanner.php:1132
|
2181 |
+
msgid "Vulnerability found"
|
2182 |
+
msgstr "Se ha encontrado una vulnerabilidad"
|
2183 |
+
|
2184 |
+
#: ../cerber-scanner.php:1137
|
2185 |
+
msgid "Unable to check the integrity due to a DB error"
|
2186 |
+
msgstr "No se ha podido comprobar la integridad por un error en la base de datos."
|
2187 |
+
|
2188 |
+
#: ../cerber-scanner.php:3412
|
2189 |
+
msgid "Scanning the upload folder for files"
|
2190 |
+
msgstr "Buscando archivos en la carpeta de subidas"
|
2191 |
+
|
2192 |
+
#: ../cerber-scanner.php:3413
|
2193 |
+
msgid "Scanning the temp folder for files"
|
2194 |
+
msgstr "Buscando archivos en la carpeta Temp"
|
2195 |
+
|
2196 |
+
#: ../cerber-scanner.php:3414
|
2197 |
+
msgid "Scanning the session folder for files"
|
2198 |
+
msgstr "Escaneando archivos en la carpeta de sesión"
|
2199 |
+
|
2200 |
+
#: ../settings.php:432
|
2201 |
+
msgid "Automated recurring scan schedule"
|
2202 |
+
msgstr "Programación de escáneres automáticos"
|
2203 |
+
|
2204 |
+
#: ../settings.php:448
|
2205 |
+
msgid "Scan results reporting"
|
2206 |
+
msgstr "Creación de informes de resultados"
|
2207 |
+
|
2208 |
+
#: ../dashboard.php:3079
|
2209 |
+
msgid "Suspicious activity"
|
2210 |
+
msgstr "Actividad sospechosa"
|
2211 |
+
|
2212 |
+
#: ../dashboard.php:3080
|
2213 |
+
msgid "Errors"
|
2214 |
+
msgstr "Errores"
|
2215 |
+
|
2216 |
+
#: ../dashboard.php:3451
|
2217 |
+
msgid "Antispam engine"
|
2218 |
+
msgstr "Módulo Antispam"
|
2219 |
+
|
2220 |
+
#. Description of the plugin
|
2221 |
+
#:
|
2222 |
+
msgid "Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications."
|
2223 |
+
msgstr "Defiende tu página Wordpress de ataques de hackers, spam, troyanos y virus. Detector de malware y comprobador de integridad. ¡Haz más seguro tu Wordpress con este conjunto de algoritmos de seguridad intensivos! Protege tu sitio de spam con un sofisticado bot de detección y reCAPTCHA's. Sigue la actividad del usuario y el intruso con un eficiente sistema de notificaciones por correo, móvil y de escritorio."
|
2224 |
+
|
2225 |
+
#: ../cerber-load.php:375
|
2226 |
+
msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
|
2227 |
+
msgstr "Has excedido el número de intentos de sesión permitidos. Por favor, inténtalo de nuevo en %d minutos."
|
2228 |
|
languages/wp-cerber-nb_NO.mo
CHANGED
Binary file
|
languages/wp-cerber-nb_NO.po
CHANGED
@@ -8,43 +8,43 @@ msgstr ""
|
|
8 |
"Language: nb\n"
|
9 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
10 |
|
11 |
-
#: ../settings.php:
|
12 |
msgid "Limit login attempts"
|
13 |
msgstr "Begrens innloggingsforsøk"
|
14 |
|
15 |
-
#: ../settings.php:
|
16 |
msgid "Attempts"
|
17 |
msgstr "Forsøk"
|
18 |
|
19 |
-
#: ../settings.php:
|
20 |
msgid "Lockout duration"
|
21 |
msgstr "Varighet for utestengelse"
|
22 |
|
23 |
-
#: ../settings.php:
|
24 |
msgid "minutes"
|
25 |
msgstr "minutter"
|
26 |
|
27 |
-
#: ../settings.php:
|
28 |
msgid "Aggressive lockout"
|
29 |
msgstr "Aggressiv utestengelse"
|
30 |
|
31 |
-
#: ../settings.php:
|
32 |
msgid "Site connection"
|
33 |
msgstr "Sidetilkobling"
|
34 |
|
35 |
-
#: ../settings.php:
|
36 |
msgid "Proactive security rules"
|
37 |
msgstr "Proaktive sikkerhetsregler"
|
38 |
|
39 |
-
#: ../settings.php:
|
40 |
msgid "Block subnet"
|
41 |
msgstr "Blokkér subnet"
|
42 |
|
43 |
-
#: ../settings.php:
|
44 |
msgid "Request wp-login.php"
|
45 |
msgstr "Kobling til wp-login.php"
|
46 |
|
47 |
-
#: ../settings.php:
|
48 |
msgid "Immediately block IP after any request to wp-login.php"
|
49 |
msgstr "Blokkér umiddelbart IP-en etter ethvert forsøk på å koble til wp-login.php"
|
50 |
|
@@ -52,322 +52,315 @@ msgstr "Blokkér umiddelbart IP-en etter ethvert forsøk på å koble til wp-log
|
|
52 |
msgid "Redirect dashboard requests"
|
53 |
msgstr "Omdiriger kontrollpanel-koblinger"
|
54 |
|
55 |
-
#: ../settings.php:
|
56 |
msgid "Custom login page"
|
57 |
msgstr "Egendefinert innloggingsside"
|
58 |
|
59 |
-
#: ../settings.php:
|
60 |
msgid "Custom login URL"
|
61 |
msgstr "Egendefinert URL for innlogging"
|
62 |
|
63 |
-
#: ../settings.php:
|
64 |
msgid "must not overlap with the existing pages or posts slug"
|
65 |
msgstr "må ikke være lik eksisterende sider eller slug"
|
66 |
|
67 |
-
#: ../settings.php:
|
68 |
msgid "Disable wp-login.php"
|
69 |
msgstr "Deaktiver 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 "Blokkér direkte tilgang til wp-login.php og returnér HTTP 404 Ikke Funnet-feil."
|
74 |
|
75 |
-
#: ../dashboard.php:
|
76 |
msgid "Citadel mode"
|
77 |
msgstr "Vakttårnsmodus"
|
78 |
|
79 |
-
#: ../settings.php:
|
80 |
msgid "Threshold"
|
81 |
msgstr "Terskel"
|
82 |
|
83 |
-
#: ../settings.php:
|
84 |
msgid "Duration"
|
85 |
msgstr "Varighet"
|
86 |
|
87 |
-
#: ../cerber-load.php:
|
88 |
-
#:
|
89 |
msgid "Notifications"
|
90 |
msgstr "Varsling"
|
91 |
|
92 |
-
#: ../settings.php:
|
93 |
msgid "Send notification to admin email"
|
94 |
msgstr "Send varsel til admins e-postadresse"
|
95 |
|
96 |
-
#: ../cerber-load.php:
|
97 |
#: tools.php:101 ../cerber-tools.php:182
|
98 |
msgid "Access Lists"
|
99 |
msgstr "Tilgangsliste"
|
100 |
|
101 |
-
#: ../dashboard.php:
|
102 |
-
#: /settings.php:
|
103 |
msgid "Activity"
|
104 |
msgstr "Aktivitet"
|
105 |
|
106 |
-
#: ../settings.php:
|
107 |
msgid "Lockouts"
|
108 |
msgstr "Utestengelser"
|
109 |
|
110 |
-
#: ../settings.php:
|
111 |
msgid "%s allowed retries in %s minutes"
|
112 |
msgstr "%s tillatte forsøk på %s minutter"
|
113 |
|
114 |
-
#: ../settings.php:
|
115 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
116 |
msgstr "Aktivér etter %s mislykkede innloggingsforsøk på %s minutter"
|
117 |
|
118 |
-
#: ../dashboard.php:
|
119 |
-
#: php:
|
120 |
msgid "IP"
|
121 |
msgstr "IP-adresse"
|
122 |
|
123 |
-
#: ../dashboard.php:
|
124 |
msgid "Date"
|
125 |
msgstr "Dato"
|
126 |
|
127 |
-
#: ../dashboard.php:
|
128 |
msgid "Local User"
|
129 |
msgstr "Lokal bruker"
|
130 |
|
131 |
-
#: ../dashboard.php:
|
132 |
msgid "Username used"
|
133 |
msgstr "Brukernavn brukt"
|
134 |
|
135 |
-
#: ../dashboard.php:
|
136 |
msgid "Showing last %d records from %d"
|
137 |
msgstr "Viser siste %d oppføringer fra %d"
|
138 |
|
139 |
-
#: ../common.php:
|
140 |
msgid "Logged in"
|
141 |
msgstr "Logget inn"
|
142 |
|
143 |
-
#: ../common.php:
|
144 |
msgid "Logged out"
|
145 |
msgstr "Logget ut"
|
146 |
|
147 |
-
#: ../common.php:
|
148 |
msgid "Login failed"
|
149 |
msgstr "Innlogging feilet"
|
150 |
|
151 |
-
#: ../common.php:
|
152 |
msgid "IP blocked"
|
153 |
msgstr "IP blokkert"
|
154 |
|
155 |
-
#: ../common.php:
|
156 |
msgid "Subnet blocked"
|
157 |
msgstr "Subnet blokkert"
|
158 |
|
159 |
-
#: ../common.php:
|
160 |
msgid "Citadel activated!"
|
161 |
msgstr "Vakttårn aktivert!"
|
162 |
|
163 |
-
#: ../dashboard.php:
|
164 |
-
#:
|
165 |
msgid "Locked out"
|
166 |
msgstr "Utestengt"
|
167 |
|
168 |
-
#: ../common.php:
|
169 |
msgid "IP blacklisted"
|
170 |
msgstr "IP svartelistet"
|
171 |
|
172 |
-
#: ../common.php:
|
173 |
msgid "Password changed"
|
174 |
msgstr "Passord endret"
|
175 |
|
176 |
-
#: ../dashboard.php:
|
177 |
msgid "Remove"
|
178 |
msgstr "Fjern"
|
179 |
|
180 |
-
#: ../dashboard.php:
|
181 |
msgid "Lockout for %s was removed"
|
182 |
msgstr "Utestengelse for %s ble fjernet"
|
183 |
|
184 |
-
#: ../dashboard.php:
|
185 |
-
#: php:
|
186 |
-
#: /settings.php:365
|
187 |
msgid "White IP Access List"
|
188 |
msgstr "Hvit IP-tilgangsliste"
|
189 |
|
190 |
-
#: ../dashboard.php:
|
191 |
-
#: php:
|
192 |
msgid "Black IP Access List"
|
193 |
msgstr "Svart IP-tilgangsliste"
|
194 |
|
195 |
-
#: ../dashboard.php:
|
196 |
msgid "List is empty"
|
197 |
msgstr "Listen er tom"
|
198 |
|
199 |
-
#: ../dashboard.php:
|
200 |
msgid "Address %s was added to White IP Access List"
|
201 |
msgstr "Adressen %s ble lagt til den hvite IP-tilgangslisten"
|
202 |
|
203 |
-
#: ../dashboard.php:
|
204 |
msgid "Address %s was added to Black IP Access List"
|
205 |
msgstr "Adressen %s ble lagt til den svarte IP-tilgangslisten"
|
206 |
|
207 |
-
#: ../cerber-load.php:
|
208 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
209 |
msgstr "Vakttårnsmodus ble aktivert etter %d mislykkede innloggingsforsøk på %d minutter"
|
210 |
|
211 |
-
#: ../dashboard.php:
|
212 |
msgid "View Activity"
|
213 |
msgstr "Se aktivitet"
|
214 |
|
215 |
-
#: ../dashboard.php:
|
|
|
216 |
msgid "Settings"
|
217 |
msgstr "Innstillinger"
|
218 |
|
219 |
-
#: ../dashboard.php:
|
220 |
msgid "Last login"
|
221 |
msgstr "Siste innlogging"
|
222 |
|
223 |
-
#: ../dashboard.php:
|
224 |
msgid "Never"
|
225 |
msgstr "Aldri"
|
226 |
|
227 |
-
#: ../dashboard.php:
|
228 |
msgid "Are you sure?"
|
229 |
msgstr "Er du sikker?"
|
230 |
|
231 |
-
#: ../dashboard.php:
|
232 |
msgid "My site is behind a reverse proxy"
|
233 |
msgstr "Min side er bak en reverse proxy"
|
234 |
|
235 |
-
#: ../settings.php:
|
236 |
msgid "Non-existent users"
|
237 |
msgstr "Ikke-eksisterende brukere"
|
238 |
|
239 |
-
#: ../settings.php:
|
240 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
241 |
msgstr "Blokkér umiddelbart IP når noen prøver å logge inn med et ikke-eksisterende brukernavn"
|
242 |
|
243 |
-
#: ../settings.php:
|
244 |
-
msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
|
245 |
-
msgstr "Deaktivér automatisk omdirigering til innloggingssiden når /wp-admin/ blir forsøkt tilkoblet fra en uatorisert forespørsel"
|
246 |
-
|
247 |
-
#: ../settings.php:351
|
248 |
msgid "Make your protection smarter!"
|
249 |
msgstr "Gjør din beskyttelse smartere!"
|
250 |
|
251 |
-
#: ../settings.php:
|
252 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
253 |
msgstr "Vennligst "
|
254 |
|
255 |
-
#: ../cerber-load.php:
|
256 |
msgid "Main Settings"
|
257 |
msgstr "Hovedinnstillinger"
|
258 |
|
259 |
-
#: ../dashboard.php:
|
|
|
260 |
msgid "Help"
|
261 |
msgstr "Hjelp"
|
262 |
|
263 |
-
#: ../settings.php:
|
264 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
265 |
msgstr "Øk varigheten av utestengelser til %s timer etter %s utestengelser i løpet av de siste %s timer"
|
266 |
|
267 |
-
#: ../cerber-load.php:
|
268 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
269 |
msgstr "Du har ikke tillatelse til å logge inn. Spør din administrator om du trenger hjelp."
|
270 |
|
271 |
-
#: ../cerber-load.php:
|
272 |
-
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
273 |
-
msgstr "Du har nådd grensen for antall tillatte innloggingsforsøk. Vennligst prøv igjen om %d minutter."
|
274 |
-
|
275 |
-
#: ../cerber-load.php:383
|
276 |
msgid "You have only one attempt remaining."
|
277 |
msgid_plural "You have %d attempts remaining."
|
278 |
msgstr[0] "Du har kun ett forsøk igjen."
|
279 |
msgstr[1] "Du har %d forsøk igjen."
|
280 |
|
281 |
-
#: ../dashboard.php:
|
282 |
msgid "No activity has been logged."
|
283 |
msgstr "Ingen aktivitet har blitt registrert."
|
284 |
|
285 |
-
#: ../dashboard.php:
|
286 |
msgid "Expires"
|
287 |
msgstr "Utgår"
|
288 |
|
289 |
-
#: ../dashboard.php:
|
290 |
msgid "No lockouts at the moment. The sky is clear."
|
291 |
msgstr "Ingen utestengelser akkurat nå. Kysten er klar."
|
292 |
|
293 |
-
#: ../dashboard.php:
|
294 |
msgid "These IPs will never be locked out"
|
295 |
msgstr "Disse IP-er vil aldri bli utestengt"
|
296 |
|
297 |
-
#: ../dashboard.php:
|
298 |
msgid "Your IP"
|
299 |
msgstr "Din IP"
|
300 |
|
301 |
-
#: ../cerber-load.php:
|
302 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
303 |
msgstr "Siste mislykkede forsøk var %s fra IP %s med brukernavn %s."
|
304 |
|
305 |
-
#: ../cerber-load.php:
|
306 |
msgid "Can't activate WP Cerber due to a database error."
|
307 |
msgstr "Kunne ikke aktivere WP Cerber på grunn av en databasefeil."
|
308 |
|
309 |
-
#: ../settings.php:
|
310 |
msgid "Notify admin if the number of active lockouts above"
|
311 |
msgstr "Varsle administratoren om antallet aktive utestengelser overskrider"
|
312 |
|
313 |
-
#: ../settings.php:
|
314 |
msgid "days"
|
315 |
msgstr "dager"
|
316 |
|
317 |
-
#: ../dashboard.php:
|
318 |
msgid "Cerber Quick View"
|
319 |
msgstr "Cerber hurtigvisning"
|
320 |
|
321 |
-
#: ../dashboard.php:
|
322 |
msgid "Hint"
|
323 |
msgstr "Hint"
|
324 |
|
325 |
-
#: ../dashboard.php:
|
326 |
msgid "To view activity, click on the IP"
|
327 |
msgstr "For å se aktivitet klikk på IP-en"
|
328 |
|
329 |
-
#: ../dashboard.php:
|
330 |
-
#: php:
|
331 |
msgid "Check for activity"
|
332 |
msgstr "Sjekk etter aktivitet"
|
333 |
|
334 |
-
#: ../settings.php:
|
335 |
msgid "Always block entire subnet Class C of intruders IP"
|
336 |
msgstr "Alltid blokkér hele subnet Class C av inntrengerens IP"
|
337 |
|
338 |
-
#: ../settings.php:
|
339 |
msgid "Click to send test"
|
340 |
msgstr "Klikk for å sende test"
|
341 |
|
342 |
-
#: ../settings.php:
|
343 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
344 |
msgstr "OBS! Du har endret innloggings-adressen. Din nye URL for innlogging er"
|
345 |
|
346 |
-
#: ../dashboard.php:
|
347 |
msgid "Comments"
|
348 |
msgstr "Kommentarer"
|
349 |
|
350 |
-
#: ../common.php:
|
351 |
msgid "Update to version %s of WP Cerber"
|
352 |
msgstr "Oppdatér til versjon %s av WP Cerber"
|
353 |
|
354 |
-
#: ../cerber-load.php:
|
355 |
msgid "View activity in dashboard"
|
356 |
msgstr "Se aktivitet i kontrollpanelet"
|
357 |
|
358 |
-
#: ../cerber-load.php:
|
359 |
msgid "Number of active lockouts"
|
360 |
msgstr "Antall aktive utestengelser"
|
361 |
|
362 |
-
#: ../cerber-load.php:
|
363 |
msgid "View lockouts in dashboard"
|
364 |
msgstr "Se utestengelser i kontrollpanelet"
|
365 |
|
366 |
-
#: ../cerber-load.php:
|
367 |
msgid "This message was sent by"
|
368 |
msgstr "Denne meldingen ble sendt av"
|
369 |
|
370 |
-
#: ../dashboard.php:
|
371 |
msgid "Tools"
|
372 |
msgstr "Verktøy"
|
373 |
|
@@ -407,7 +400,7 @@ msgstr "Maksimum tillatte filstørrelse for opplasting: %s."
|
|
407 |
msgid "What do you want to import?"
|
408 |
msgstr "Hva ønsker du å importere?"
|
409 |
|
410 |
-
#: ../cerber-tools.php:102
|
411 |
msgid "Upload file"
|
412 |
msgstr "Last opp fil"
|
413 |
|
@@ -427,243 +420,243 @@ msgstr "Innstillinger ble importert fra"
|
|
427 |
msgid "Error while parsing file"
|
428 |
msgstr "Feil under parsing av filen"
|
429 |
|
430 |
-
#: ../dashboard.php:
|
431 |
msgid "Hostname"
|
432 |
msgstr "Vertsnavn"
|
433 |
|
434 |
-
#: ../dashboard.php:
|
435 |
msgid "unknown"
|
436 |
msgstr "ukjent"
|
437 |
|
438 |
-
#: ../settings.php:
|
439 |
msgid "Keep records for"
|
440 |
msgstr "Behold logger"
|
441 |
|
442 |
-
#: ../dashboard.php:
|
443 |
msgid "active"
|
444 |
msgstr "aktive"
|
445 |
|
446 |
-
#: ../dashboard.php:
|
447 |
msgid "deactivate"
|
448 |
msgstr "deaktiver"
|
449 |
|
450 |
-
#: ../dashboard.php:
|
451 |
msgid "not active"
|
452 |
msgstr "ikke aktive"
|
453 |
|
454 |
-
#: ../dashboard.php:
|
455 |
msgid "disabled"
|
456 |
msgstr "deaktivert"
|
457 |
|
458 |
-
#: ../dashboard.php:
|
459 |
msgid "failed attempts"
|
460 |
msgstr "mislykkede forsøk"
|
461 |
|
462 |
-
#: ../dashboard.php:
|
463 |
msgid "in 24 hours"
|
464 |
msgstr "på 24 timer"
|
465 |
|
466 |
-
#: ../dashboard.php:
|
467 |
msgid "view all"
|
468 |
msgstr "se alle"
|
469 |
|
470 |
-
#: ../dashboard.php:
|
471 |
msgid "lockouts"
|
472 |
msgstr "utestengelser"
|
473 |
|
474 |
-
#: ../dashboard.php:
|
475 |
msgid "Lockouts at the moment"
|
476 |
msgstr "Utestengelser akkurat nå"
|
477 |
|
478 |
-
#: ../dashboard.php:
|
479 |
msgid "Last lockout"
|
480 |
msgstr "Siste utestengelse"
|
481 |
|
482 |
-
#: ../dashboard.php:
|
483 |
msgid "entry"
|
484 |
msgid_plural "entries"
|
485 |
msgstr[0] "oppføring"
|
486 |
msgstr[1] "oppføringer"
|
487 |
|
488 |
-
#: ../dashboard.php:
|
489 |
msgid "Confused about some settings?"
|
490 |
msgstr "Usikker på noen innstillinger?"
|
491 |
|
492 |
-
#: ../dashboard.php:
|
493 |
msgid "You can easily load default recommended settings using button below"
|
494 |
msgstr "Du kan enkelt laste inn anbefalte standardinnstillinger via knappen under"
|
495 |
|
496 |
-
#: ../dashboard.php:
|
497 |
msgid "Load default settings"
|
498 |
msgstr "Last inn standardinnstillinger"
|
499 |
|
500 |
-
#: ../dashboard.php:
|
501 |
msgid "doesn't affect Custom login URL and Access Lists"
|
502 |
msgstr "påvirker ikke egendefinert innloggings-URL og tilgangslister"
|
503 |
|
504 |
-
#: ../common.php:
|
505 |
msgid "New version is available"
|
506 |
msgstr "Ny versjon er tilgjengelig"
|
507 |
|
508 |
#. Name of the plugin
|
509 |
-
#: ../dashboard.php:52 ../dashboard.php:
|
510 |
msgid "WP Cerber"
|
511 |
msgstr "WP Cerber"
|
512 |
|
513 |
-
#: ../cerber-load.php:
|
514 |
msgid "WP Cerber notify"
|
515 |
msgstr "WP Cerber-varsling"
|
516 |
|
517 |
-
#: ../cerber-load.php:
|
518 |
msgid "Citadel mode is activated"
|
519 |
msgstr "Vakttårns-modus er aktivert"
|
520 |
|
521 |
-
#: ../cerber-load.php:
|
522 |
msgid "New Custom login URL"
|
523 |
msgstr "Ny egendefinert innloggings-URL"
|
524 |
|
525 |
-
#: ../cerber-load.php:
|
526 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
527 |
msgstr "WP Cerber krever PHP versjon %s eller høyere. Du kjører"
|
528 |
|
529 |
-
#: ../cerber-load.php:
|
530 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
531 |
msgstr "WP Cerber krever WordPress versjon %s eller høyere. Du kjører"
|
532 |
|
533 |
-
#: ../settings.php:
|
534 |
msgid "Use file"
|
535 |
msgstr "Bruk fil"
|
536 |
|
537 |
-
#: ../settings.php:
|
538 |
msgid "Write failed login attempts to the file"
|
539 |
msgstr "Skriv mislykkede innloggingsforsøk til filen"
|
540 |
|
541 |
-
#: ../dashboard.php:
|
542 |
msgid "Deactivate"
|
543 |
msgstr "Deaktivér"
|
544 |
|
545 |
-
#: ../dashboard.php:
|
546 |
msgid "Reason"
|
547 |
msgstr "Grunn"
|
548 |
|
549 |
-
#: ../dashboard.php:
|
550 |
msgid "Add IP to the list"
|
551 |
msgstr "Legg IP til listen"
|
552 |
|
553 |
-
#: ../dashboard.php:
|
554 |
msgid "Add IP to the Black List"
|
555 |
msgstr "Legg IP til svartelisten"
|
556 |
|
557 |
-
#: ../common.php:
|
558 |
msgid "Attempt to access"
|
559 |
msgstr "Forsøk på å få tilgang til"
|
560 |
|
561 |
-
#: ../common.php:
|
562 |
msgid "Limit on login attempts is reached"
|
563 |
msgstr "Grensen for innloggingsforsøk er nådd"
|
564 |
|
565 |
-
#: ../common.php:
|
566 |
msgid "Attempt to log in with non-existent username"
|
567 |
msgstr "Forsøk på å logge inn med ikke-eksisterende brukernavn"
|
568 |
|
569 |
-
#: ../cerber-load.php:
|
570 |
msgid "Last lockout was added: %s for IP %s"
|
571 |
msgstr "Siste utestengelse ble lagt til: %s for IP %s"
|
572 |
|
573 |
-
#: ../cerber-load.php:
|
574 |
msgid "Hardening"
|
575 |
msgstr "Forsterking"
|
576 |
|
577 |
-
#: ../dashboard.php:
|
578 |
msgid "Abuse email:"
|
579 |
msgstr "Repportering av misbruk:"
|
580 |
|
581 |
-
#: ../settings.php:
|
582 |
msgid "Email Address"
|
583 |
msgstr "E-postadresse"
|
584 |
|
585 |
-
#: ../settings.php:
|
586 |
msgid "if empty, the admin email %s will be used"
|
587 |
msgstr "Hvis tom, vil e-postadressen %s bli brukt"
|
588 |
|
589 |
-
#: ../settings.php:
|
590 |
msgid "Drill down IP"
|
591 |
msgstr "Inspiser IP"
|
592 |
|
593 |
-
#: ../settings.php:
|
594 |
msgid "Retrieve extra WHOIS information for IP"
|
595 |
msgstr "Hent ekstra WHOIS-informasjon for IP"
|
596 |
|
597 |
-
#: ../settings.php:
|
598 |
msgid "Hardening WordPress"
|
599 |
msgstr "Forsterke WordPress"
|
600 |
|
601 |
-
#: ../settings.php:
|
602 |
msgid "Stop user enumeration"
|
603 |
msgstr "Stopp opplisting av brukere"
|
604 |
|
605 |
-
#: ../settings.php:
|
606 |
msgid "Disable XML-RPC"
|
607 |
msgstr "Deaktivér XML-RPC"
|
608 |
|
609 |
-
#: ../settings.php:
|
610 |
msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
|
611 |
msgstr "Blokkér tilgang til XML-RPC-serveren (inkluderer Pingbacks og Trackbacks)"
|
612 |
|
613 |
-
#: ../settings.php:
|
614 |
msgid "Disable feeds"
|
615 |
msgstr "Deaktiver feeds"
|
616 |
|
617 |
-
#: ../settings.php:
|
618 |
msgid "Block access to the RSS, Atom and RDF feeds"
|
619 |
msgstr "Blokkér tilgang til RSS- Atom- og RDF-feeds"
|
620 |
|
621 |
-
#: ../settings.php:
|
622 |
msgid "Disable REST API"
|
623 |
msgstr "Deaktivér REST API"
|
624 |
|
625 |
-
#: ../settings.php:
|
626 |
msgid "These settings do not affect hosts from the "
|
627 |
msgstr "Disse innstillingene påvirker ikke verter fra "
|
628 |
|
629 |
-
#: ../settings.php:
|
630 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
631 |
msgstr "<strong>FEIL</strong>: vennligst skriv inn en gyldig e-postadresse"
|
632 |
|
633 |
-
#: ../cerber-load.php:
|
634 |
msgid "WP Cerber is now active and has started protecting your site"
|
635 |
msgstr "WP Cerber er nå aktiv og har begynt å beskytte siden din"
|
636 |
|
637 |
-
#: ../dashboard.php:
|
638 |
msgid "Action"
|
639 |
msgstr "Handling"
|
640 |
|
641 |
-
#: ../dashboard.php:
|
642 |
msgid "Nobody can log in or register from these IPs"
|
643 |
msgstr "Ingen kan logge inn eller registrere seg fra disse IP-ene"
|
644 |
|
645 |
-
#: ../dashboard.php:
|
646 |
msgid "Incorrect IP address or IP range"
|
647 |
msgstr "Feil IP-adresse eller IP-rekkevidde"
|
648 |
|
649 |
-
#: ../dashboard.php:
|
650 |
msgid "Settings saved"
|
651 |
msgstr "Innstillingene er lagret"
|
652 |
|
653 |
-
#: ../dashboard.php:
|
654 |
msgid "Network:"
|
655 |
msgstr "Nettverk:"
|
656 |
|
657 |
-
#: ../dashboard.php:
|
658 |
msgid "Add network to the Black List"
|
659 |
msgstr "Legg nettverk til svartelisten"
|
660 |
|
661 |
-
#: ../dashboard.php:
|
662 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
663 |
msgstr "Advarsel! Vakttårns-modus er nå aktiv. Ingen vil kunne logge inn."
|
664 |
|
665 |
-
#: ../dashboard.php:
|
666 |
-
#: /common.php:
|
667 |
msgid "Unknown"
|
668 |
msgstr "Ukjent"
|
669 |
|
@@ -672,265 +665,265 @@ msgstr "Ukjent"
|
|
672 |
msgid "Gregory"
|
673 |
msgstr "Gregory"
|
674 |
|
675 |
-
#: ../common.php:
|
676 |
-
#: /cerber-load.php:
|
677 |
-
#: load.php:
|
678 |
-
#: php:
|
679 |
-
#:
|
680 |
-
#: /settings.php:
|
681 |
msgid "ERROR:"
|
682 |
msgstr "FEIL:"
|
683 |
|
684 |
-
#: ../cerber-load.php:
|
685 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
686 |
msgstr "Bekreftelse av menneskelighet feilet. Vennligst klikk den firkantige boksen i reCAPTCHA-blokken under."
|
687 |
|
688 |
-
#: ../cerber-load.php:
|
689 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
690 |
msgstr "<strong>FEIL</strong>: Passordet du skrev inn for brukernavnet %s er ugyldig."
|
691 |
|
692 |
-
#: ../cerber-load.php:
|
693 |
msgid "Username is not allowed. Please choose another one."
|
694 |
msgstr "Brukernavnet er ikke tillatt. Vennligst velg et annet brukernavn."
|
695 |
|
696 |
-
#: ../cerber-load.php:
|
697 |
msgid "unspecified"
|
698 |
msgstr "uspesifisert"
|
699 |
|
700 |
-
#: ../cerber-load.php:
|
701 |
msgid "Number of lockouts is increasing"
|
702 |
msgstr "Antallet utestengelser stiger"
|
703 |
|
704 |
-
#: ../cerber-load.php:
|
705 |
msgid "View activity for this IP"
|
706 |
msgstr "Se aktivitet for denne IP"
|
707 |
|
708 |
-
#: ../cerber-load.php:
|
709 |
msgid "A new version of WP Cerber is available to install"
|
710 |
msgstr "En ny versjon av WP Cerber er tilgjengelig for installasjon"
|
711 |
|
712 |
-
#: ../cerber-load.php:
|
713 |
msgid "Hi!"
|
714 |
msgstr "Hei!"
|
715 |
|
716 |
-
#: ../cerber-load.php:
|
717 |
msgid "Website"
|
718 |
msgstr "Webside"
|
719 |
|
720 |
-
#: ../cerber-load.php:
|
721 |
msgid "The WP Cerber security plugin has been deactivated"
|
722 |
msgstr "Sikkerhetstillegget WP Cerber har blitt deaktivert"
|
723 |
|
724 |
-
#: ../cerber-load.php:
|
725 |
msgid "Not logged in"
|
726 |
msgstr "Ikke innlogget"
|
727 |
|
728 |
-
#: ../cerber-load.php:
|
729 |
msgid "By user"
|
730 |
msgstr "Etter brukernavn"
|
731 |
|
732 |
-
#: ../cerber-load.php:
|
733 |
msgid "From IP address"
|
734 |
msgstr "Fra IP-adresse"
|
735 |
|
736 |
-
#: ../cerber-load.php:
|
737 |
msgid "From country"
|
738 |
msgstr "Fra land"
|
739 |
|
740 |
-
#: ../cerber-load.php:
|
741 |
msgid "The WP Cerber security plugin is now active"
|
742 |
msgstr "Sikkerhetstillegget WP Cerber er nå aktivt"
|
743 |
|
744 |
-
#: ../cerber-load.php:
|
745 |
msgid "Your IP address is added to the"
|
746 |
msgstr "Din IP-adresse ble lagt til"
|
747 |
|
748 |
-
#: ../cerber-load.php:
|
749 |
msgid "Import settings"
|
750 |
msgstr "Importer innstillinger"
|
751 |
|
752 |
-
#: ../settings.php:
|
753 |
msgid "Notification limit"
|
754 |
msgstr "Grense for varslinger"
|
755 |
|
756 |
-
#: ../settings.php:
|
757 |
msgid "notification letters allowed per hour (0 means unlimited)"
|
758 |
msgstr "varslingsmeldinger tillatt per time (0 betyr ubegrenset)"
|
759 |
|
760 |
-
#: ../settings.php:
|
761 |
msgid "User related settings"
|
762 |
msgstr "Brukerrelaterte innstillinger"
|
763 |
|
764 |
-
#: ../settings.php:
|
765 |
msgid "Prohibited usernames"
|
766 |
msgstr "Blokkerte brukernavn"
|
767 |
|
768 |
-
#: ../settings.php:
|
769 |
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."
|
770 |
msgstr "Brukernavn fra denne listen har ikke tilgang til å logge inn eller registrere seg. Enhver IP som forsøker å bruke noen av disse brukernavnene blir blokkert umiddelbart. Bruk komma for å skille brukernavn."
|
771 |
|
772 |
-
#: ../settings.php:
|
773 |
msgid "User session expire"
|
774 |
msgstr "Brukerøktens varighet"
|
775 |
|
776 |
-
#: ../settings.php:
|
777 |
msgid "in minutes (leave empty to use default WP value)"
|
778 |
msgstr "i minutter (la stå tom for å bruke WordPress' standardverdi)"
|
779 |
|
780 |
-
#: ../settings.php:
|
781 |
msgid "reCAPTCHA settings"
|
782 |
msgstr "reCAPTCHA-innstillinger"
|
783 |
|
784 |
-
#: ../settings.php:
|
785 |
msgid "Site key"
|
786 |
msgstr "Site key"
|
787 |
|
788 |
-
#: ../settings.php:
|
789 |
msgid "Secret key"
|
790 |
msgstr "Secret key"
|
791 |
|
792 |
-
#: ../settings.php:
|
793 |
msgid "Enable reCAPTCHA for WordPress registration form"
|
794 |
msgstr "Slå på reCAPTCHA for WordPress' registreringsskjema"
|
795 |
|
796 |
-
#: ../settings.php:
|
797 |
msgid "Lost password form"
|
798 |
msgstr "Skjema for mistet passord"
|
799 |
|
800 |
-
#: ../settings.php:
|
801 |
msgid "Login form"
|
802 |
msgstr "Innloggingsskjema"
|
803 |
|
804 |
-
#: ../settings.php:
|
805 |
msgid "Enable reCAPTCHA for WordPress login form"
|
806 |
msgstr "Slå på reCAPTCHA for WordPress' innloggingsskjema"
|
807 |
|
808 |
-
#: ../settings.php:
|
809 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
810 |
msgstr "Før du kan ta i bruk reCAPTCHA må du skaffe deg en Site key og Secret key på Googles webside"
|
811 |
|
812 |
-
#: ../cerber-lab.php:
|
813 |
msgid "Know more"
|
814 |
msgstr "Lær mer"
|
815 |
|
816 |
-
#: ../dashboard.php:52 ../settings.php:
|
817 |
msgid "WP Cerber Security"
|
818 |
msgstr "WP Cerber-sikkerhet"
|
819 |
|
820 |
-
#: ../settings.php:
|
821 |
msgid "Users"
|
822 |
msgstr "Brukere"
|
823 |
|
824 |
-
#: ../common.php:
|
825 |
msgid "User created"
|
826 |
msgstr "Bruker opprettet"
|
827 |
|
828 |
-
#: ../dashboard.php:
|
829 |
msgid "User registered"
|
830 |
msgstr "Bruker registrert"
|
831 |
|
832 |
-
#: ../common.php:
|
833 |
msgid "reCAPTCHA verification failed"
|
834 |
msgstr "reCAPTCHA-godkjenning mislyktes"
|
835 |
|
836 |
-
#: ../common.php:
|
837 |
msgid "reCAPTCHA settings are incorrect"
|
838 |
msgstr "reCAPTCHA-innstillingene er feil"
|
839 |
|
840 |
-
#: ../common.php:
|
841 |
msgid "Attempt to access prohibited URL"
|
842 |
msgstr "Forsøk på å koble til forbudt URL"
|
843 |
|
844 |
-
#: ../common.php:
|
845 |
msgid "Attempt to log in with prohibited username"
|
846 |
msgstr "Forsøk på å logge inn med forbudt brukernavn"
|
847 |
|
848 |
-
#: ../settings.php:
|
849 |
msgid "Cerber Lab connection"
|
850 |
msgstr "Tilkobling til Cerber Lab"
|
851 |
|
852 |
-
#: ../settings.php:
|
853 |
msgid "Send malicious IP addresses to the Cerber Lab"
|
854 |
msgstr "Send ondsinnede IP-adresser til Cerber Lab"
|
855 |
|
856 |
-
#: ../settings.php:
|
857 |
msgid "Cerber Lab protocol"
|
858 |
msgstr "Cerber Lab protokoll"
|
859 |
|
860 |
-
#: ../settings.php:
|
861 |
msgid "Registration form"
|
862 |
msgstr "Registreringsskjema"
|
863 |
|
864 |
-
#: ../settings.php:
|
865 |
msgid "Enable reCAPTCHA for WooCommerce registration form"
|
866 |
msgstr "Slå på reCAPTCHA for WooCommerces registreringsskjema"
|
867 |
|
868 |
-
#: ../settings.php:
|
869 |
msgid "Enable reCAPTCHA for WordPress lost password form"
|
870 |
msgstr "Slå på reCAPTCHA for WordPress' skjema for mistet passord"
|
871 |
|
872 |
-
#: ../settings.php:
|
873 |
msgid "Enable reCAPTCHA for WooCommerce lost password form"
|
874 |
msgstr "Slå på reCAPTCHA for WooCommerce mistet passord-skjema"
|
875 |
|
876 |
-
#: ../settings.php:
|
877 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
878 |
msgstr "Slå på reCAPTCHA for WooCommerce innloggings-skjema"
|
879 |
|
880 |
-
#: ../common.php:
|
881 |
msgid "Request to the Google reCAPTCHA service failed"
|
882 |
msgstr "Forespørsel til Googles reCAPTCHA-tjeneste mislyktes"
|
883 |
|
884 |
-
#: ../dashboard.php:
|
885 |
msgid "View all"
|
886 |
msgstr "Se alle"
|
887 |
|
888 |
-
#: ../dashboard.php:
|
889 |
msgid "Recently locked out IP addresses"
|
890 |
msgstr "Nylig utestengte IP-adresser"
|
891 |
|
892 |
-
#: ../cerber-lab.php:
|
893 |
msgid "OK, nail them all"
|
894 |
msgstr "OK, ta alle sammen"
|
895 |
|
896 |
-
#: ../cerber-lab.php:
|
897 |
msgid "NO, maybe later"
|
898 |
msgstr "NEI, kanskje senere"
|
899 |
|
900 |
-
#: ../dashboard.php:54 ../dashboard.php:
|
901 |
-
#: php:
|
902 |
msgid "Dashboard"
|
903 |
msgstr "Kontrollpanel"
|
904 |
|
905 |
-
#: ../cerber-lab.php:
|
906 |
msgid "Want to make WP Cerber even more powerful?"
|
907 |
msgstr "Vil du gjøre WP Cerber enda sterkere?"
|
908 |
|
909 |
-
#: ../cerber-lab.php:
|
910 |
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."
|
911 |
msgstr "Tillat at WP Cerber sender utestengde ondsinnede IP-adresser til Cerber Lab. Dette hjelper plugin-teamet å utvikle nye algoritmer som vil beskytte WordPress mot nye trusler og botnett som dukker opp hver dag. Du kan slå av sendingen i plugin-innstillingene når som helst."
|
912 |
|
913 |
-
#: ../dashboard.php:
|
914 |
msgid "IP address"
|
915 |
msgstr "IP-adresse"
|
916 |
|
917 |
-
#: ../dashboard.php:
|
918 |
msgid "User login"
|
919 |
msgstr "Brukernavn"
|
920 |
|
921 |
-
#: ../dashboard.php:
|
922 |
msgid "User ID"
|
923 |
msgstr "Bruker-ID"
|
924 |
|
925 |
-
#: ../dashboard.php:
|
926 |
msgid "Export"
|
927 |
msgstr "Eksporter"
|
928 |
|
929 |
-
#: ../dashboard.php:
|
930 |
msgid "Search for IP or username"
|
931 |
msgstr "Søk etter IP eller brukernavn"
|
932 |
|
933 |
-
#: ../dashboard.php:
|
934 |
msgid "Filter"
|
935 |
msgstr "Filter"
|
936 |
|
@@ -938,193 +931,193 @@ msgstr "Filter"
|
|
938 |
msgid "Cerber Dashboard"
|
939 |
msgstr "Cerber-kontrollpanel"
|
940 |
|
941 |
-
#: ../dashboard.php:
|
942 |
msgid "Cerber tools"
|
943 |
msgstr "Cerber-verktøy"
|
944 |
|
945 |
-
#: ../dashboard.php:
|
946 |
msgid "Subscribe"
|
947 |
msgstr "Abbonér"
|
948 |
|
949 |
-
#: ../dashboard.php:
|
950 |
msgid "Unsubscribe"
|
951 |
msgstr "Avslutt abonnementet"
|
952 |
|
953 |
-
#: ../dashboard.php:
|
954 |
msgid "You've subscribed"
|
955 |
msgstr "Du abbonerer"
|
956 |
|
957 |
-
#: ../dashboard.php:
|
958 |
msgid "You've unsubscribed"
|
959 |
msgstr "Du har avsluttet abonnementet"
|
960 |
|
961 |
-
#: ../cerber-load.php:
|
962 |
msgid "A new activity has been recorded"
|
963 |
msgstr "En ny aktivitet har blitt registrert"
|
964 |
|
965 |
-
#: ../cerber-load.php:
|
966 |
msgid "User"
|
967 |
msgstr "Bruker"
|
968 |
|
969 |
-
#: ../cerber-load.php:
|
970 |
msgid "Search string"
|
971 |
msgstr "Søkeord"
|
972 |
|
973 |
-
#: ../cerber-load.php:
|
974 |
msgid "To unsubscribe click here"
|
975 |
msgstr "Klikk her for å avslutte abbonementet"
|
976 |
|
977 |
-
#: ../settings.php:
|
978 |
msgid "Preferences"
|
979 |
msgstr "Valg"
|
980 |
|
981 |
-
#: ../settings.php:
|
982 |
msgid "Date format"
|
983 |
msgstr "Datoformat"
|
984 |
|
985 |
-
#: ../settings.php:
|
986 |
msgid "if empty, the default format %s will be used"
|
987 |
msgstr "hvis blank, vil formatet %s bli brukt"
|
988 |
|
989 |
-
#: ../settings.php:
|
990 |
msgid "Push notifications"
|
991 |
msgstr "Push-varsler"
|
992 |
|
993 |
-
#: ../settings.php:
|
994 |
msgid "Email notifications"
|
995 |
msgstr "E-postvarsel"
|
996 |
|
997 |
-
#: ../settings.php:
|
998 |
msgid "Use comma to specify multiple values"
|
999 |
msgstr "Bruk komma for å skille mellom flere verdier"
|
1000 |
|
1001 |
-
#: ../settings.php:
|
1002 |
msgid "All connected devices"
|
1003 |
msgstr "Alle tilkoblede enheter"
|
1004 |
|
1005 |
-
#: ../settings.php:
|
1006 |
msgid "No devices found"
|
1007 |
msgstr "Ingen enheter funnet"
|
1008 |
|
1009 |
-
#: ../settings.php:
|
1010 |
msgid "Not available"
|
1011 |
msgstr "Ikke tilgjengelig"
|
1012 |
|
1013 |
-
#: ../common.php:
|
1014 |
msgid "Password reset requested"
|
1015 |
msgstr "Nullstilling av passord forespurt"
|
1016 |
|
1017 |
-
#: ../common.php:
|
1018 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1019 |
msgstr "Grensen for mislykkede reCAPTCHA-verifiseringer er nådd"
|
1020 |
|
1021 |
-
#: ../common.php:
|
1022 |
msgid "%s ago"
|
1023 |
msgstr "%s siden"
|
1024 |
|
1025 |
-
#: ../settings.php:
|
1026 |
msgid "Apply limit login rules to IP addresses in the White IP Access List"
|
1027 |
msgstr "Aktivér regler for begrensning av innloggingsforsøk for hvitlistede IP-adresser."
|
1028 |
|
1029 |
-
#: ../settings.php:
|
1030 |
msgid "Display 404 page"
|
1031 |
msgstr "Vis 404-siden"
|
1032 |
|
1033 |
-
#: ../settings.php:
|
1034 |
msgid "Invisible reCAPTCHA"
|
1035 |
msgstr "Usynlig reCAPTCHA"
|
1036 |
|
1037 |
-
#: ../settings.php:
|
1038 |
msgid "Enable invisible reCAPTCHA"
|
1039 |
msgstr "Aktivér usynlig reCAPTCHA"
|
1040 |
|
1041 |
-
#: ../settings.php:
|
1042 |
msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
|
1043 |
msgstr "(ikke aktivér denne med mindre du legger inn sidenøkkel og hemmelig nøkkel for den usynlige versjonen)"
|
1044 |
|
1045 |
-
#: ../settings.php:
|
1046 |
msgid "Enable reCAPTCHA for WordPress comment form"
|
1047 |
msgstr "Aktivér reCAPTCHA for WordPress' kommentarskjema"
|
1048 |
|
1049 |
-
#: ../settings.php:
|
1050 |
msgid "Disable reCAPTCHA for logged in users"
|
1051 |
msgstr "Deaktivér reCAPTCHA for innloggede brukere"
|
1052 |
|
1053 |
-
#: ../settings.php:
|
1054 |
msgid "Limit attempts"
|
1055 |
msgstr "Begrens forsøk"
|
1056 |
|
1057 |
-
#: ../settings.php:
|
1058 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1059 |
msgstr "Steng ute IP-adresser for %s minutter etter %s mislykkede forsøk på %s minutter"
|
1060 |
|
1061 |
-
#: ../settings.php:
|
1062 |
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."
|
1063 |
msgstr "I vakttårnsmodus kan ingen andre enn hvitlistede IP-adresser logge seg inn. Allerede innloggede brukere vil ikke bli påvirket."
|
1064 |
|
1065 |
-
#: ../dashboard.php:
|
1066 |
msgid "Event"
|
1067 |
msgstr "Hendelse"
|
1068 |
|
1069 |
-
#: ../common.php:
|
1070 |
msgid "Spam comments denied"
|
1071 |
msgstr "Spam-kommentarer nektet"
|
1072 |
|
1073 |
-
#: ../common.php:
|
1074 |
msgid "Malicious IP addresses detected"
|
1075 |
msgstr "Ondsinnede IP-adresser oppdaget"
|
1076 |
|
1077 |
-
#: ../common.php:
|
1078 |
msgid "Lockouts occurred"
|
1079 |
msgstr "Utestengelser"
|
1080 |
|
1081 |
-
#: ../dashboard.php:
|
1082 |
msgid "All suspicious activity"
|
1083 |
msgstr "All mistenkelig aktivitet"
|
1084 |
|
1085 |
-
#: ../cerber-load.php:
|
1086 |
-
#: /cerber-load.php:
|
1087 |
msgid "You are not allowed to register."
|
1088 |
msgstr "Du har ikke tilgang til å registrere deg"
|
1089 |
|
1090 |
-
#: ../common.php:
|
1091 |
msgid "Spam comment denied"
|
1092 |
msgstr "Spam-kommentar nektet"
|
1093 |
|
1094 |
-
#: ../common.php:
|
1095 |
msgid "Attempt to log in denied"
|
1096 |
msgstr "Innloggingsforsøk nektet"
|
1097 |
|
1098 |
-
#: ../common.php:
|
1099 |
msgid "Attempt to register denied"
|
1100 |
msgstr "Registreringsforsøk nektet"
|
1101 |
|
1102 |
-
#: ../common.php:
|
1103 |
msgid "Malicious activities mitigated"
|
1104 |
msgstr "Mistenkelige aktiviteter redusert"
|
1105 |
|
1106 |
-
#: ../dashboard.php:
|
1107 |
msgid "Cerber antispam settings"
|
1108 |
msgstr "Cerber antispam-innstillinger"
|
1109 |
|
1110 |
-
#: ../dashboard.php:
|
1111 |
-
#: php:
|
1112 |
msgid "Antispam"
|
1113 |
msgstr "Antispam"
|
1114 |
|
1115 |
-
#: ../settings.php:
|
1116 |
msgid "Cerber antispam engine"
|
1117 |
msgstr "Cerber antispam-system"
|
1118 |
|
1119 |
-
#: ../settings.php:
|
1120 |
msgid "Comment form"
|
1121 |
msgstr "Kommentarskjema"
|
1122 |
|
1123 |
-
#: ../settings.php:
|
1124 |
msgid "Protect comment form with bot detection engine"
|
1125 |
msgstr "Beskytt kommentarskjema med system for bot-oppdagelse"
|
1126 |
|
1127 |
-
#: ../settings.php:
|
1128 |
msgid "Protect registration form with bot detection engine"
|
1129 |
msgstr "Beskytt registreringssskjema med system for bot-oppdagelse"
|
1130 |
|
@@ -1140,76 +1133,71 @@ msgstr "Diagnose"
|
|
1140 |
msgid "License"
|
1141 |
msgstr "Lisens"
|
1142 |
|
1143 |
-
#: ../
|
1144 |
msgid "Antispam and bot detection settings"
|
1145 |
msgstr "Innstillinger for antispam og bot-oppdagelse"
|
1146 |
|
1147 |
-
#: ../cerber-load.php:
|
1148 |
msgid "Sorry, human verification failed."
|
1149 |
msgstr "Beklager, menneskeverifisering feilet"
|
1150 |
|
1151 |
-
#: ../common.php:
|
1152 |
msgid "Bot activity is detected"
|
1153 |
msgstr "Bot-aktivitet er oppdaget"
|
1154 |
|
1155 |
-
#: ../settings.php:
|
1156 |
msgid "Comment processing"
|
1157 |
msgstr "Behandler kommentaren"
|
1158 |
|
1159 |
-
#: ../settings.php:
|
1160 |
msgid "If a spam comment detected"
|
1161 |
msgstr "Hvis en spam-kommentar oppdages"
|
1162 |
|
1163 |
-
#: ../settings.php:
|
1164 |
msgid "Trash spam comments"
|
1165 |
msgstr "Kast spam-kommentarer i papirkurven"
|
1166 |
|
1167 |
-
#: ../settings.php:
|
1168 |
msgid "Move spam comments to trash after"
|
1169 |
msgstr "Flytt spam-kommentarer til papirkurven etter"
|
1170 |
|
1171 |
-
#: ../common.php:
|
1172 |
msgid "Spam form submission denied"
|
1173 |
msgstr "Innsending av skjema nektet pga. spam"
|
1174 |
|
1175 |
-
#: ../settings.php:
|
1176 |
msgid "Other forms"
|
1177 |
msgstr "Andre skjemaer"
|
1178 |
|
1179 |
-
#: ../settings.php:
|
1180 |
msgid "Protect all forms on the website with bot detection engine"
|
1181 |
msgstr "Beskytt alle skjemaer på websiden med systemet for bot-oppdagelse"
|
1182 |
|
1183 |
-
#: ../settings.php:
|
1184 |
msgid "Adjust antispam engine"
|
1185 |
msgstr "Justér antispam-systemet"
|
1186 |
|
1187 |
-
#: ../settings.php:
|
1188 |
msgid "Safe mode"
|
1189 |
msgstr "Sikkermodus"
|
1190 |
|
1191 |
-
#: ../settings.php:
|
1192 |
msgid "Use less restrictive policies (allow AJAX)"
|
1193 |
msgstr "Bruk mindre restriktive regler (tillat AJAX)"
|
1194 |
|
1195 |
-
#: ../dashboard.php:
|
1196 |
msgid "Logged in users"
|
1197 |
msgstr "Innloggede brukere"
|
1198 |
|
1199 |
-
#: ../settings.php:
|
1200 |
msgid "Disable bot detection engine for logged in users"
|
1201 |
msgstr "Deaktivér systemet for bot-oppdagelse for innloggede brukere"
|
1202 |
|
1203 |
-
|
1204 |
-
#:
|
1205 |
-
msgid "WP Cerber Security & Antispam"
|
1206 |
-
msgstr "WP Cerber Sikkerhet og Antispam"
|
1207 |
-
|
1208 |
-
#: ../dashboard.php:131 ../dashboard.php:697
|
1209 |
msgid "Country"
|
1210 |
msgstr "Land"
|
1211 |
|
1212 |
-
#: ../dashboard.php:
|
1213 |
msgid "All events"
|
1214 |
msgstr "Alle hendelser"
|
1215 |
|
@@ -1217,45 +1205,45 @@ msgstr "Alle hendelser"
|
|
1217 |
msgid "Cerber Security Rules"
|
1218 |
msgstr "Cerber sikkerhetsregler"
|
1219 |
|
1220 |
-
#: ../dashboard.php:60 ../dashboard.php:
|
1221 |
msgid "Security Rules"
|
1222 |
msgstr "Sikkerhetsregler"
|
1223 |
|
1224 |
-
#: ../dashboard.php:
|
1225 |
msgid "Failed login attempts"
|
1226 |
msgstr "Mislykkede innloggingsforsøk"
|
1227 |
|
1228 |
-
#: ../dashboard.php:
|
1229 |
msgid "Registered"
|
1230 |
msgstr "Registrert"
|
1231 |
|
1232 |
-
#: ../dashboard.php:
|
1233 |
msgid "You"
|
1234 |
msgstr "Deg"
|
1235 |
|
1236 |
-
#: ../common.php:
|
1237 |
msgid "Spam form submissions denied"
|
1238 |
msgstr "Innsending av skjema nektet pga. spam"
|
1239 |
|
1240 |
-
#: ../dashboard.php:
|
1241 |
msgid "Getting Started Guide"
|
1242 |
msgstr "Hurtigstartsguide"
|
1243 |
|
1244 |
-
#: ../dashboard.php:
|
1245 |
msgid "Countries"
|
1246 |
msgstr "Land"
|
1247 |
|
1248 |
-
#: ../dashboard.php:
|
1249 |
msgid "Permitted for one country"
|
1250 |
msgid_plural "Permitted for %d countries"
|
1251 |
msgstr[0] "Tillatt for ett land"
|
1252 |
msgstr[1] "Tillatt for %s land"
|
1253 |
|
1254 |
-
#: ../dashboard.php:
|
1255 |
msgid "No rule"
|
1256 |
msgstr "Ingen regel"
|
1257 |
|
1258 |
-
#: ../dashboard.php:
|
1259 |
msgid "Security rules have been updated"
|
1260 |
msgstr "Sikkerhetsreglene har blitt oppdatert"
|
1261 |
|
@@ -1264,282 +1252,277 @@ msgstr "Sikkerhetsreglene har blitt oppdatert"
|
|
1264 |
msgid "https://wpcerber.com"
|
1265 |
msgstr "https://wpcerber.com"
|
1266 |
|
1267 |
-
#: ../common.php:
|
1268 |
msgid "Form submission denied"
|
1269 |
msgstr "Innsending av skjema nektet"
|
1270 |
|
1271 |
-
#: ../common.php:
|
1272 |
msgid "Comment denied"
|
1273 |
msgstr "Kommentar nektet"
|
1274 |
|
1275 |
-
#: ../common.php:
|
1276 |
msgid "Request to REST API denied"
|
1277 |
msgstr "Forespørsel til REST API nektet"
|
1278 |
|
1279 |
-
#: ../common.php:
|
1280 |
msgid "XML-RPC request denied"
|
1281 |
msgstr "Forespørsel til XML-RPC nektet"
|
1282 |
|
1283 |
-
#: ../common.php:
|
1284 |
msgid "Bot detected"
|
1285 |
msgstr "Bot oppdaget"
|
1286 |
|
1287 |
-
#: ../common.php:
|
1288 |
msgid "Citadel mode is active"
|
1289 |
msgstr "Vakttårnsmodus er aktiv"
|
1290 |
|
1291 |
-
#: ../common.php:
|
1292 |
msgid "Malicious activity detected"
|
1293 |
msgstr "Mistenkelig aktivitet oppdaget"
|
1294 |
|
1295 |
-
#: ../common.php:
|
1296 |
msgid "Blocked by country rule"
|
1297 |
msgstr "Blokkert av land-regel"
|
1298 |
|
1299 |
-
#: ../common.php:
|
1300 |
msgid "Limit reached"
|
1301 |
msgstr "Grensen er nådd"
|
1302 |
|
1303 |
-
#: ../common.php:
|
1304 |
msgid "Multiple suspicious activities"
|
1305 |
msgstr "Flere mistenkelige aktiviteter"
|
1306 |
|
1307 |
-
#: ../common.php:
|
1308 |
msgid "Multiple suspicious activities were detected"
|
1309 |
msgstr "Flere mistenkelige aktiviteter ble oppdaget"
|
1310 |
|
1311 |
-
#: ../settings.php:
|
1312 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
1313 |
msgstr "Blokkér tilgang til brukersider som /?author=n og brukerdata via REST API"
|
1314 |
|
1315 |
-
#: ../settings.php:
|
1316 |
msgid "Block access to the WordPress REST API except the following"
|
1317 |
msgstr "Blokkér tilgang til WordPress' REST API, bortsett fra følgende"
|
1318 |
|
1319 |
-
#: ../settings.php:
|
1320 |
msgid "Allow REST API for logged in users"
|
1321 |
msgstr "Tillat REST API for innloggede brukere"
|
1322 |
|
1323 |
-
#: ../settings.php:
|
1324 |
msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
|
1325 |
msgstr "Spesifisér REST API navneområder som skal tillates når REST API er deaktivert. En string per linje."
|
1326 |
|
1327 |
-
#: ../settings.php:
|
1328 |
msgid "Registration limit"
|
1329 |
msgstr "Grense for registreringer"
|
1330 |
|
1331 |
-
#: ../settings.php:
|
1332 |
msgid "Sort users in dashboard"
|
1333 |
msgstr "Sorter brukere i kontrollpanelet"
|
1334 |
|
1335 |
-
#: ../settings.php:
|
1336 |
msgid "by date of registration"
|
1337 |
msgstr "etter registreringsdato"
|
1338 |
|
1339 |
-
#: ../settings.php:
|
1340 |
msgid "Query whitelist"
|
1341 |
msgstr "Forespør hvitliste"
|
1342 |
|
1343 |
-
#: ../settings.php:
|
1344 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1345 |
msgstr "%s tillatte registreringer på %s minutter fra én IP-adresse"
|
1346 |
|
1347 |
-
#: ../dashboard.php:
|
1348 |
msgid "Start typing here to find a country"
|
1349 |
msgstr "Begynn å skrive her for å finne et land"
|
1350 |
|
1351 |
-
#: ../dashboard.php:
|
1352 |
msgid "Click on a country name to add it to the list of selected countries"
|
1353 |
msgstr "Klikk på et land for å legge det til listen over valgte land"
|
1354 |
|
1355 |
-
#: ../dashboard.php:
|
1356 |
msgid "Submit forms"
|
1357 |
msgstr "Send inn skjemaer"
|
1358 |
|
1359 |
-
#: ../dashboard.php:
|
1360 |
msgid "Post comments"
|
1361 |
msgstr "Publisér kommentarer"
|
1362 |
|
1363 |
-
#: ../dashboard.php:
|
1364 |
msgid "Log in to the website"
|
1365 |
msgstr "Logg inn på websiden"
|
1366 |
|
1367 |
-
#: ../dashboard.php:
|
1368 |
msgid "Register on the website"
|
1369 |
msgstr "Registrer på websiden"
|
1370 |
|
1371 |
-
#: ../dashboard.php:
|
1372 |
msgid "Use XML-RPC"
|
1373 |
msgstr "Bruk XML-RPC"
|
1374 |
|
1375 |
-
#: ../dashboard.php:
|
1376 |
msgid "Use REST API"
|
1377 |
msgstr "Bruk REST API"
|
1378 |
|
1379 |
-
#: ../settings.php:
|
1380 |
msgid "Deny it completely"
|
1381 |
msgstr "Nekt det fullstendig"
|
1382 |
|
1383 |
-
#: ../settings.php:
|
1384 |
msgid "Mark it as spam"
|
1385 |
msgstr "Marker det som spam"
|
1386 |
|
1387 |
-
#: ../dashboard.php:
|
1388 |
msgid "in the last 24 hours"
|
1389 |
msgstr "i løpet av de siste 24 timer"
|
1390 |
|
1391 |
-
#: ../dashboard.php:
|
1392 |
msgid "Main settings"
|
1393 |
msgstr "Hovedinnstillinger"
|
1394 |
|
1395 |
-
#: ../settings.php:
|
1396 |
msgid "Weekly reports"
|
1397 |
msgstr "Ukentlige rapporter"
|
1398 |
|
1399 |
-
#: ../settings.php:
|
1400 |
msgid "Sunday"
|
1401 |
msgstr "Søndag"
|
1402 |
|
1403 |
-
#: ../settings.php:
|
1404 |
msgid "Monday"
|
1405 |
msgstr "Mandag"
|
1406 |
|
1407 |
-
#: ../settings.php:
|
1408 |
msgid "Tuesday"
|
1409 |
msgstr "Tirsdag"
|
1410 |
|
1411 |
-
#: ../settings.php:
|
1412 |
msgid "Wednesday"
|
1413 |
msgstr "Onsdag"
|
1414 |
|
1415 |
-
#: ../settings.php:
|
1416 |
msgid "Thursday"
|
1417 |
msgstr "Torsdag"
|
1418 |
|
1419 |
-
#: ../settings.php:
|
1420 |
msgid "Friday"
|
1421 |
msgstr "Fredag"
|
1422 |
|
1423 |
-
#: ../settings.php:
|
1424 |
msgid "Saturday"
|
1425 |
msgstr "Lørdag"
|
1426 |
|
1427 |
-
#: ../settings.php:
|
1428 |
msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
|
1429 |
msgstr "Hvis du bruker en plugin for caching, må du legge din nye innloggings-URL til listen over sider som ikke skal caches."
|
1430 |
|
1431 |
#. translators: preposition of time
|
1432 |
-
#: ../settings.php:
|
1433 |
msgctxt "preposition of time"
|
1434 |
msgid "at"
|
1435 |
msgstr "klokken"
|
1436 |
|
1437 |
-
#: ../cerber-load.php:
|
1438 |
msgid "Weekly report"
|
1439 |
msgstr "Ukentlig rapport"
|
1440 |
|
1441 |
-
#: ../cerber-load.php:
|
1442 |
msgid "To change reporting settings visit"
|
1443 |
msgstr "For å endre rapporteringsinnstillingene, besøk"
|
1444 |
|
1445 |
-
#: ../cerber-load.php:
|
1446 |
msgid "Your login page:"
|
1447 |
msgstr "Din innloggingsside"
|
1448 |
|
1449 |
-
#: ../cerber-load.php:
|
1450 |
msgid "Your license is valid until"
|
1451 |
msgstr "Din lisens er gyldig inntil"
|
1452 |
|
1453 |
-
#: ../cerber-load.php:
|
1454 |
msgid "Activity details"
|
1455 |
msgstr "Aktivitetsdetaljer"
|
1456 |
|
1457 |
-
#: ../settings.php:
|
1458 |
msgid "Click to send now"
|
1459 |
msgstr "Klikk for å sende nå"
|
1460 |
|
1461 |
-
#: ../cerber-load.php:
|
1462 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1463 |
msgstr "> > > WP Cerber-oversetter? For å få en gratis PRO-lisens, legg igjen din kontaktinfo her: https://wpcerber.com/contact"
|
1464 |
|
1465 |
-
#: ../dashboard.php:
|
1466 |
msgid "Email has been sent to"
|
1467 |
msgstr "E-post har blitt sendt til"
|
1468 |
|
1469 |
-
#: ../dashboard.php:
|
1470 |
msgid "Unable to send email to"
|
1471 |
msgstr "Kunne ikke sende e-post til"
|
1472 |
|
1473 |
-
#: ../dashboard.php:
|
1474 |
msgid "Not permitted for one country"
|
1475 |
msgid_plural "Not permitted for %d countries"
|
1476 |
msgstr[0] "Ikke tillatt for ett land"
|
1477 |
msgstr[1] "Ikke tillatt for %d land"
|
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 "Valgte land er tillatt å %s, andre land er ikke tillatt å"
|
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 "Valgte land er ikke tillatt å %s, andre land er tillatt å"
|
1488 |
|
1489 |
-
|
1490 |
-
#:
|
1491 |
-
msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1492 |
-
msgstr "Beskytter siden mot brute force-angrep, botter og hackere. Antispam-beskyttelse via Cerbers eget system og reCAPTCHA. Omfattende kontroll av brukeraktivitet. Begrens innlogging etter IP-adresselister. Begrens innloggingsforsøk. Finn ut mer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1493 |
-
|
1494 |
-
#: ../cerber-load.php:3551
|
1495 |
msgid "Weekly Report"
|
1496 |
msgstr "Ukentlig rapport"
|
1497 |
|
1498 |
-
#: ../settings.php:
|
1499 |
msgid "Use 404 template from the active theme"
|
1500 |
msgstr "Bruk malen for 404-siden fra det aktive temaet."
|
1501 |
|
1502 |
-
#: ../settings.php:
|
1503 |
msgid "Display simple 404 page"
|
1504 |
msgstr "Vis en enkel 404-side"
|
1505 |
|
1506 |
-
#: ../settings.php:
|
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 "Skriv inn en del av en spørringsstreng for å ekskludere en forespørsel fra undersøkelse av systemet. En feorespørsel per linje."
|
1509 |
|
1510 |
-
#: ../settings.php:
|
1511 |
msgid "if empty, email from notification settings will be used"
|
1512 |
msgstr "hvis feltet er tomt, vil e-postadressen fra varselinnstillingene bli brukt"
|
1513 |
|
1514 |
-
#: ../settings.php:
|
1515 |
msgid "Enable reporting"
|
1516 |
msgstr "Aktivér rapportering"
|
1517 |
|
1518 |
-
#: ../cerber-load.php:
|
1519 |
msgid "Your last sign-in was %s from %s"
|
1520 |
msgstr "Din siste innlogging var %s fra %s"
|
1521 |
|
1522 |
-
#: ../cerber-load.php:
|
1523 |
msgid "Attempts to log in with non-existent username"
|
1524 |
msgstr "Forsøk på å logge inn med ikke-eksisterende brukernavn"
|
1525 |
|
1526 |
-
#: ../dashboard.php:
|
1527 |
msgid "IP address, IPv4 address range or subnet"
|
1528 |
msgstr "IP-adresse, IPv4-adresseområde eller subnet"
|
1529 |
|
1530 |
-
#: ../dashboard.php:
|
1531 |
msgid "Optional comment for this entry"
|
1532 |
msgstr "Valgfri kommentar for denne oppføringen"
|
1533 |
|
1534 |
-
#: ../dashboard.php:
|
1535 |
msgid "You cannot add your IP address or network"
|
1536 |
msgstr "Du kan ikke legge til din IP-adresse eller nettverk"
|
1537 |
|
1538 |
-
#: ../cerber-news.php:
|
1539 |
msgid "Cool!"
|
1540 |
msgstr "Kult!"
|
1541 |
|
1542 |
-
#: ../settings.php:
|
1543 |
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1544 |
msgstr "For å spesifisere et REGEX-mønster, pakk mønsteret inn i to skråstreker."
|
1545 |
|
@@ -1547,215 +1530,215 @@ msgstr "For å spesifisere et REGEX-mønster, pakk mønsteret inn i to skråstre
|
|
1547 |
msgid "Cerber Traffic Inspector"
|
1548 |
msgstr "Cerber Trafikkinspektør"
|
1549 |
|
1550 |
-
#: ../dashboard.php:56 ../dashboard.php:
|
1551 |
msgid "Traffic Inspector"
|
1552 |
msgstr "Trafikkinspektør"
|
1553 |
|
1554 |
-
#: ../dashboard.php:
|
1555 |
msgid "Traffic"
|
1556 |
msgstr "Trafikk"
|
1557 |
|
1558 |
-
#: ../dashboard.php:
|
1559 |
msgid "Live traffic"
|
1560 |
msgstr "Live trafikk"
|
1561 |
|
1562 |
-
#: ../dashboard.php:
|
1563 |
msgid "Request"
|
1564 |
msgstr "Forespørsel"
|
1565 |
|
1566 |
-
#: ../dashboard.php:
|
1567 |
msgid "Host Info"
|
1568 |
msgstr "Vertsinformasjon"
|
1569 |
|
1570 |
-
#: ../dashboard.php:
|
1571 |
msgid "User Agent"
|
1572 |
msgstr "Brukeragent"
|
1573 |
|
1574 |
-
#: ../dashboard.php:
|
1575 |
msgid "All requests"
|
1576 |
msgstr "Alle forespørsler"
|
1577 |
|
1578 |
-
#: ../dashboard.php:
|
1579 |
msgid "Not logged in visitors"
|
1580 |
msgstr "Ikke-innloggede besøkende"
|
1581 |
|
1582 |
-
#: ../dashboard.php:
|
1583 |
msgid "Form submissions"
|
1584 |
msgstr "Innsendte skjema"
|
1585 |
|
1586 |
-
#: ../dashboard.php:
|
1587 |
msgid "Page Not Found"
|
1588 |
msgstr "Siden ikke funnet"
|
1589 |
|
1590 |
-
#: ../dashboard.php:
|
1591 |
msgid "REST API"
|
1592 |
msgstr "REST API"
|
1593 |
|
1594 |
-
#: ../dashboard.php:
|
1595 |
msgid "XML-RPC"
|
1596 |
msgstr "XML-RPC"
|
1597 |
|
1598 |
-
#: ../dashboard.php:
|
1599 |
msgid "Longer than"
|
1600 |
msgstr "Lengre enn"
|
1601 |
|
1602 |
-
#: ../dashboard.php:
|
1603 |
msgid "Refresh"
|
1604 |
msgstr "Oppdater"
|
1605 |
|
1606 |
-
#: ../common.php:
|
1607 |
msgid "Check for requests"
|
1608 |
msgstr "Se etter forespørsler"
|
1609 |
|
1610 |
-
#: ../common.php:
|
1611 |
msgid "Not specified"
|
1612 |
msgstr "Ikke spesifisert"
|
1613 |
|
1614 |
-
#: ../settings.php:
|
1615 |
msgid "Logging mode"
|
1616 |
msgstr "Loggføringsmodus"
|
1617 |
|
1618 |
-
#: ../settings.php:
|
1619 |
msgid "Logging disabled"
|
1620 |
msgstr "Loggføring deaktivert"
|
1621 |
|
1622 |
-
#: ../settings.php:
|
1623 |
msgid "Smart"
|
1624 |
msgstr "Smart"
|
1625 |
|
1626 |
-
#: ../settings.php:
|
1627 |
msgid "All traffic"
|
1628 |
msgstr "All trafikk"
|
1629 |
|
1630 |
-
#: ../settings.php:
|
1631 |
msgid "Ignore crawlers"
|
1632 |
msgstr "Ingrorer søkeroboter"
|
1633 |
|
1634 |
-
#: ../settings.php:
|
1635 |
msgid "Mask these form fields"
|
1636 |
msgstr "Maskér disse skjemafeltene"
|
1637 |
|
1638 |
-
#: ../settings.php:
|
1639 |
msgid "milliseconds"
|
1640 |
msgstr "millisekunder"
|
1641 |
|
1642 |
-
#: ../settings.php:
|
1643 |
msgid "Inspection"
|
1644 |
msgstr "Inspeksjon"
|
1645 |
|
1646 |
-
#: ../settings.php:
|
1647 |
msgid "Enable traffic inspection"
|
1648 |
msgstr "Aktiver trafikkinspeksjon"
|
1649 |
|
1650 |
-
#: ../settings.php:
|
1651 |
msgid "Logging"
|
1652 |
msgstr "Loggføring"
|
1653 |
|
1654 |
-
#: ../settings.php:
|
1655 |
msgid "Save request fields"
|
1656 |
msgstr "Lagre forespørselfelter"
|
1657 |
|
1658 |
-
#: ../settings.php:
|
1659 |
msgid "Page generation time threshold"
|
1660 |
msgstr "Tidsgrense for sidegenerering"
|
1661 |
|
1662 |
-
#: ../dashboard.php:
|
1663 |
msgid "No requests have been logged."
|
1664 |
msgstr "Ingen forespørsler har blitt loggført"
|
1665 |
|
1666 |
-
#: ../dashboard.php:
|
1667 |
msgid "enabled"
|
1668 |
msgstr "aktivert"
|
1669 |
|
1670 |
-
#: ../dashboard.php:
|
1671 |
msgid "no connection"
|
1672 |
msgstr "ingen forbindelse"
|
1673 |
|
1674 |
-
#: ../dashboard.php:
|
1675 |
msgid "Advanced search"
|
1676 |
msgstr "Avansert søk"
|
1677 |
|
1678 |
-
#: ../dashboard.php:
|
1679 |
msgid "Last seen"
|
1680 |
msgstr "Sist sett"
|
1681 |
|
1682 |
-
#: ../common.php:
|
1683 |
msgid "Probing for vulnerable PHP code"
|
1684 |
msgstr "Søker etter sårbar PHP-kode"
|
1685 |
|
1686 |
-
#: ../dashboard.php:
|
1687 |
msgid "Any"
|
1688 |
msgstr "Enhver"
|
1689 |
|
1690 |
-
#: ../cerber-load.php:
|
1691 |
msgid "We're sorry, you are not allowed to proceed"
|
1692 |
msgstr "Beklager, du har ikke tillatelse til å fortsette"
|
1693 |
|
1694 |
-
#: ../settings.php:
|
1695 |
msgid "Request whitelist"
|
1696 |
msgstr "Be om hvitlisting"
|
1697 |
|
1698 |
-
#: ../settings.php:
|
1699 |
msgid "Enter a request URI to exclude the request from inspection. One item per line."
|
1700 |
msgstr "Skriv inn en forespørsels-URI for å ekskludere feorespørselen fra inspeksjon. Ett element per linje"
|
1701 |
|
1702 |
-
#: ../settings.php:
|
1703 |
msgid "Save request headers"
|
1704 |
msgstr "Lagre forespørsels-headere"
|
1705 |
|
1706 |
-
#: ../settings.php:
|
1707 |
msgid "Save $_SERVER"
|
1708 |
msgstr "Lagre $_SERVER"
|
1709 |
|
1710 |
-
#: ../settings.php:
|
1711 |
msgid "Save request cookies"
|
1712 |
msgstr "Lagre forespørsels-cookies"
|
1713 |
|
1714 |
-
#: ../settings.php:
|
1715 |
msgid "Protect admin scripts"
|
1716 |
msgstr "Beskytt admin-scripts"
|
1717 |
|
1718 |
-
#: ../settings.php:
|
1719 |
msgid "Block unauthorized access to load-scripts.php and load-styles.php"
|
1720 |
msgstr "Blokker uautorisert tilgang til load-scripts.php og load-styles.php"
|
1721 |
|
1722 |
-
#: ../common.php:
|
1723 |
msgid "Unable to create the directory"
|
1724 |
msgstr "Kunne ikke opprette mappen"
|
1725 |
|
1726 |
-
#: ../common.php:
|
1727 |
msgid "Destination folder access denied"
|
1728 |
msgstr "Tilgang til målmappen ble nektet"
|
1729 |
|
1730 |
-
#: ../common.php:
|
1731 |
msgid "File not found"
|
1732 |
msgstr "Kunne ikke finne filen"
|
1733 |
|
1734 |
-
#: ../common.php:
|
1735 |
msgid "Unable to copy the file"
|
1736 |
msgstr "Kunne ikke kopiere filen"
|
1737 |
|
1738 |
-
#: ../common.php:
|
1739 |
msgid "Unable to delete the file"
|
1740 |
msgstr "Kunne ikke slette filen"
|
1741 |
|
1742 |
-
#: ../settings.php:
|
1743 |
msgid "Plugin initialization"
|
1744 |
msgstr "Initialisering av plugin"
|
1745 |
|
1746 |
-
#: ../settings.php:
|
1747 |
msgid "Load security engine"
|
1748 |
msgstr "Last inn sikkerhetssystem"
|
1749 |
|
1750 |
-
#: ../settings.php:
|
1751 |
msgid "Legacy mode"
|
1752 |
msgstr "Legacy-modus"
|
1753 |
|
1754 |
-
#: ../settings.php:
|
1755 |
msgid "Standard mode"
|
1756 |
msgstr "Standardmodus"
|
1757 |
|
1758 |
-
#: ../settings.php:
|
1759 |
msgid "Plugin initialization mode has not been changed"
|
1760 |
msgstr "Initialisering av plugin er ikke forandret"
|
1761 |
|
@@ -1764,32 +1747,483 @@ msgstr "Initialisering av plugin er ikke forandret"
|
|
1764 |
msgid "This is a standard boot module for WP Cerber Security & Antispam plugin. It was installed when you set the plugin initialization mode to Standard. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1765 |
msgstr "Dette er en standard oppstartsmodul for WP Cerber Security & Antispam plugin. Den ble installert når du satte pluginens initialiseringsmodus til Standard. Les mer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1766 |
|
1767 |
-
#: ../common.php:
|
1768 |
msgid "Attempt to upload executable file denied"
|
1769 |
msgstr "Forsøk på å laste opp kjørbar fil ble nektet"
|
1770 |
|
1771 |
-
#: ../common.php:
|
1772 |
msgid "File upload denied"
|
1773 |
msgstr "Filopplasting ble nektet"
|
1774 |
|
1775 |
-
|
1776 |
-
#:
|
1777 |
-
msgid "Protects WordPress against brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user and bot activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1778 |
-
msgstr ""
|
1779 |
-
|
1780 |
-
#: ../settings.php:94
|
1781 |
msgid "Custom login URL may contain only letters, numbers, dashes and underscores"
|
1782 |
-
msgstr ""
|
1783 |
|
1784 |
-
#: ../settings.php:
|
1785 |
msgid "To specify a REGEX pattern, enclose a whole line in two braces."
|
1786 |
-
msgstr ""
|
1787 |
|
1788 |
-
#: ../settings.php:
|
1789 |
msgid "Be careful about enabling these options."
|
1790 |
-
msgstr ""
|
1791 |
|
1792 |
-
#: ../settings.php:
|
1793 |
msgid "If you forget your Custom login URL, you will be unable to log in."
|
1794 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1795 |
|
8 |
"Language: nb\n"
|
9 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
10 |
|
11 |
+
#: ../settings.php:75
|
12 |
msgid "Limit login attempts"
|
13 |
msgstr "Begrens innloggingsforsøk"
|
14 |
|
15 |
+
#: ../settings.php:76
|
16 |
msgid "Attempts"
|
17 |
msgstr "Forsøk"
|
18 |
|
19 |
+
#: ../settings.php:77
|
20 |
msgid "Lockout duration"
|
21 |
msgstr "Varighet for utestengelse"
|
22 |
|
23 |
+
#: ../settings.php:77 ../settings.php:103
|
24 |
msgid "minutes"
|
25 |
msgstr "minutter"
|
26 |
|
27 |
+
#: ../settings.php:78
|
28 |
msgid "Aggressive lockout"
|
29 |
msgstr "Aggressiv utestengelse"
|
30 |
|
31 |
+
#: ../settings.php:81
|
32 |
msgid "Site connection"
|
33 |
msgstr "Sidetilkobling"
|
34 |
|
35 |
+
#: ../settings.php:83
|
36 |
msgid "Proactive security rules"
|
37 |
msgstr "Proaktive sikkerhetsregler"
|
38 |
|
39 |
+
#: ../settings.php:84
|
40 |
msgid "Block subnet"
|
41 |
msgstr "Blokkér subnet"
|
42 |
|
43 |
+
#: ../settings.php:87
|
44 |
msgid "Request wp-login.php"
|
45 |
msgstr "Kobling til wp-login.php"
|
46 |
|
47 |
+
#: ../settings.php:87
|
48 |
msgid "Immediately block IP after any request to wp-login.php"
|
49 |
msgstr "Blokkér umiddelbart IP-en etter ethvert forsøk på å koble til wp-login.php"
|
50 |
|
52 |
msgid "Redirect dashboard requests"
|
53 |
msgstr "Omdiriger kontrollpanel-koblinger"
|
54 |
|
55 |
+
#: ../settings.php:90
|
56 |
msgid "Custom login page"
|
57 |
msgstr "Egendefinert innloggingsside"
|
58 |
|
59 |
+
#: ../settings.php:91
|
60 |
msgid "Custom login URL"
|
61 |
msgstr "Egendefinert URL for innlogging"
|
62 |
|
63 |
+
#: ../settings.php:97
|
64 |
msgid "must not overlap with the existing pages or posts slug"
|
65 |
msgstr "må ikke være lik eksisterende sider eller slug"
|
66 |
|
67 |
+
#: ../settings.php:99
|
68 |
msgid "Disable wp-login.php"
|
69 |
msgstr "Deaktiver wp-login.php"
|
70 |
|
71 |
+
#: ../settings.php:99
|
72 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
73 |
msgstr "Blokkér direkte tilgang til wp-login.php og returnér HTTP 404 Ikke Funnet-feil."
|
74 |
|
75 |
+
#: ../dashboard.php:1285 ../settings.php:101
|
76 |
msgid "Citadel mode"
|
77 |
msgstr "Vakttårnsmodus"
|
78 |
|
79 |
+
#: ../settings.php:102
|
80 |
msgid "Threshold"
|
81 |
msgstr "Terskel"
|
82 |
|
83 |
+
#: ../settings.php:103
|
84 |
msgid "Duration"
|
85 |
msgstr "Varighet"
|
86 |
|
87 |
+
#: ../cerber-load.php:4261 ../settings.php:80 ../settings.php:104 ../settings.php:
|
88 |
+
#: 581
|
89 |
msgid "Notifications"
|
90 |
msgstr "Varsling"
|
91 |
|
92 |
+
#: ../settings.php:104
|
93 |
msgid "Send notification to admin email"
|
94 |
msgstr "Send varsel til admins e-postadresse"
|
95 |
|
96 |
+
#: ../cerber-load.php:4258 ../settings.php:571 ../cerber-tools.php:92 ../cerber-
|
97 |
#: tools.php:101 ../cerber-tools.php:182
|
98 |
msgid "Access Lists"
|
99 |
msgstr "Tilgangsliste"
|
100 |
|
101 |
+
#: ../dashboard.php:1319 ../dashboard.php:1645 ../cerber-load.php:3983 ..
|
102 |
+
#: /settings.php:106 ../settings.php:560
|
103 |
msgid "Activity"
|
104 |
msgstr "Aktivitet"
|
105 |
|
106 |
+
#: ../settings.php:564
|
107 |
msgid "Lockouts"
|
108 |
msgstr "Utestengelser"
|
109 |
|
110 |
+
#: ../settings.php:694 ../settings.php:816
|
111 |
msgid "%s allowed retries in %s minutes"
|
112 |
msgstr "%s tillatte forsøk på %s minutter"
|
113 |
|
114 |
+
#: ../settings.php:716 ../settings.php:838
|
115 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
116 |
msgstr "Aktivér etter %s mislykkede innloggingsforsøk på %s minutter"
|
117 |
|
118 |
+
#: ../dashboard.php:133 ../dashboard.php:711 ../dashboard.php:3050 ../cerber-load.
|
119 |
+
#: php:3992
|
120 |
msgid "IP"
|
121 |
msgstr "IP-adresse"
|
122 |
|
123 |
+
#: ../dashboard.php:543 ../dashboard.php:714 ../dashboard.php:3048
|
124 |
msgid "Date"
|
125 |
msgstr "Dato"
|
126 |
|
127 |
+
#: ../dashboard.php:543 ../dashboard.php:716 ../dashboard.php:3053
|
128 |
msgid "Local User"
|
129 |
msgstr "Lokal bruker"
|
130 |
|
131 |
+
#: ../dashboard.php:543 ../dashboard.php:717 ../cerber-load.php:4000
|
132 |
msgid "Username used"
|
133 |
msgstr "Brukernavn brukt"
|
134 |
|
135 |
+
#: ../dashboard.php:152
|
136 |
msgid "Showing last %d records from %d"
|
137 |
msgstr "Viser siste %d oppføringer fra %d"
|
138 |
|
139 |
+
#: ../common.php:835
|
140 |
msgid "Logged in"
|
141 |
msgstr "Logget inn"
|
142 |
|
143 |
+
#: ../common.php:836
|
144 |
msgid "Logged out"
|
145 |
msgstr "Logget ut"
|
146 |
|
147 |
+
#: ../common.php:837
|
148 |
msgid "Login failed"
|
149 |
msgstr "Innlogging feilet"
|
150 |
|
151 |
+
#: ../common.php:840
|
152 |
msgid "IP blocked"
|
153 |
msgstr "IP blokkert"
|
154 |
|
155 |
+
#: ../common.php:841
|
156 |
msgid "Subnet blocked"
|
157 |
msgstr "Subnet blokkert"
|
158 |
|
159 |
+
#: ../common.php:843
|
160 |
msgid "Citadel activated!"
|
161 |
msgstr "Vakttårn aktivert!"
|
162 |
|
163 |
+
#: ../dashboard.php:691 ../dashboard.php:919 ../dashboard.php:2880 ../common.php:
|
164 |
+
#: 889
|
165 |
msgid "Locked out"
|
166 |
msgstr "Utestengt"
|
167 |
|
168 |
+
#: ../common.php:890
|
169 |
msgid "IP blacklisted"
|
170 |
msgstr "IP svartelistet"
|
171 |
|
172 |
+
#: ../common.php:858
|
173 |
msgid "Password changed"
|
174 |
msgstr "Passord endret"
|
175 |
|
176 |
+
#: ../dashboard.php:126 ../dashboard.php:199
|
177 |
msgid "Remove"
|
178 |
msgstr "Fjern"
|
179 |
|
180 |
+
#: ../dashboard.php:429
|
181 |
msgid "Lockout for %s was removed"
|
182 |
msgstr "Utestengelse for %s ble fjernet"
|
183 |
|
184 |
+
#: ../dashboard.php:171 ../dashboard.php:686 ../dashboard.php:913 ../dashboard.
|
185 |
+
#: php:1283 ../dashboard.php:2875 ../cerber-load.php:4246 ../settings.php:518
|
|
|
186 |
msgid "White IP Access List"
|
187 |
msgstr "Hvit IP-tilgangsliste"
|
188 |
|
189 |
+
#: ../dashboard.php:173 ../dashboard.php:687 ../dashboard.php:916 ../dashboard.
|
190 |
+
#: php:1284 ../dashboard.php:2876
|
191 |
msgid "Black IP Access List"
|
192 |
msgstr "Svart IP-tilgangsliste"
|
193 |
|
194 |
+
#: ../dashboard.php:205
|
195 |
msgid "List is empty"
|
196 |
msgstr "Listen er tom"
|
197 |
|
198 |
+
#: ../dashboard.php:242
|
199 |
msgid "Address %s was added to White IP Access List"
|
200 |
msgstr "Adressen %s ble lagt til den hvite IP-tilgangslisten"
|
201 |
|
202 |
+
#: ../dashboard.php:256
|
203 |
msgid "Address %s was added to Black IP Access List"
|
204 |
msgstr "Adressen %s ble lagt til den svarte IP-tilgangslisten"
|
205 |
|
206 |
+
#: ../cerber-load.php:3415
|
207 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
208 |
msgstr "Vakttårnsmodus ble aktivert etter %d mislykkede innloggingsforsøk på %d minutter"
|
209 |
|
210 |
+
#: ../dashboard.php:1806 ../dashboard.php:2210
|
211 |
msgid "View Activity"
|
212 |
msgstr "Se aktivitet"
|
213 |
|
214 |
+
#: ../dashboard.php:2724 ../cerber-tools.php:91 ../cerber-tools.php:100 ../cerber-
|
215 |
+
#: scanner.php:85
|
216 |
msgid "Settings"
|
217 |
msgstr "Innstillinger"
|
218 |
|
219 |
+
#: ../dashboard.php:1146
|
220 |
msgid "Last login"
|
221 |
msgstr "Siste innlogging"
|
222 |
|
223 |
+
#: ../dashboard.php:1179 ../dashboard.php:1266 ../common.php:1000
|
224 |
msgid "Never"
|
225 |
msgstr "Aldri"
|
226 |
|
227 |
+
#: ../dashboard.php:1691
|
228 |
msgid "Are you sure?"
|
229 |
msgstr "Er du sikker?"
|
230 |
|
231 |
+
#: ../dashboard.php:1487 ../settings.php:81
|
232 |
msgid "My site is behind a reverse proxy"
|
233 |
msgstr "Min side er bak en reverse proxy"
|
234 |
|
235 |
+
#: ../settings.php:85
|
236 |
msgid "Non-existent users"
|
237 |
msgstr "Ikke-eksisterende brukere"
|
238 |
|
239 |
+
#: ../settings.php:85
|
240 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
241 |
msgstr "Blokkér umiddelbart IP når noen prøver å logge inn med et ikke-eksisterende brukernavn"
|
242 |
|
243 |
+
#: ../settings.php:504
|
|
|
|
|
|
|
|
|
244 |
msgid "Make your protection smarter!"
|
245 |
msgstr "Gjør din beskyttelse smartere!"
|
246 |
|
247 |
+
#: ../settings.php:508
|
248 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
249 |
msgstr "Vennligst "
|
250 |
|
251 |
+
#: ../cerber-load.php:4256 ../settings.php:567
|
252 |
msgid "Main Settings"
|
253 |
msgstr "Hovedinnstillinger"
|
254 |
|
255 |
+
#: ../dashboard.php:2725 ../settings.php:584 ../cerber-tools.php:51 ../cerber-
|
256 |
+
#: scanner.php:87
|
257 |
msgid "Help"
|
258 |
msgstr "Hjelp"
|
259 |
|
260 |
+
#: ../settings.php:704 ../settings.php:826
|
261 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
262 |
msgstr "Øk varigheten av utestengelser til %s timer etter %s utestengelser i løpet av de siste %s timer"
|
263 |
|
264 |
+
#: ../cerber-load.php:368
|
265 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
266 |
msgstr "Du har ikke tillatelse til å logge inn. Spør din administrator om du trenger hjelp."
|
267 |
|
268 |
+
#: ../cerber-load.php:394
|
|
|
|
|
|
|
|
|
269 |
msgid "You have only one attempt remaining."
|
270 |
msgid_plural "You have %d attempts remaining."
|
271 |
msgstr[0] "Du har kun ett forsøk igjen."
|
272 |
msgstr[1] "Du har %d forsøk igjen."
|
273 |
|
274 |
+
#: ../dashboard.php:739
|
275 |
msgid "No activity has been logged."
|
276 |
msgstr "Ingen aktivitet har blitt registrert."
|
277 |
|
278 |
+
#: ../dashboard.php:136
|
279 |
msgid "Expires"
|
280 |
msgstr "Utgår"
|
281 |
|
282 |
+
#: ../dashboard.php:158
|
283 |
msgid "No lockouts at the moment. The sky is clear."
|
284 |
msgstr "Ingen utestengelser akkurat nå. Kysten er klar."
|
285 |
|
286 |
+
#: ../dashboard.php:171
|
287 |
msgid "These IPs will never be locked out"
|
288 |
msgstr "Disse IP-er vil aldri bli utestengt"
|
289 |
|
290 |
+
#: ../dashboard.php:180
|
291 |
msgid "Your IP"
|
292 |
msgstr "Din IP"
|
293 |
|
294 |
+
#: ../cerber-load.php:3416
|
295 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
296 |
msgstr "Siste mislykkede forsøk var %s fra IP %s med brukernavn %s."
|
297 |
|
298 |
+
#: ../cerber-load.php:4211
|
299 |
msgid "Can't activate WP Cerber due to a database error."
|
300 |
msgstr "Kunne ikke aktivere WP Cerber på grunn av en databasefeil."
|
301 |
|
302 |
+
#: ../settings.php:711 ../settings.php:833
|
303 |
msgid "Notify admin if the number of active lockouts above"
|
304 |
msgstr "Varsle administratoren om antallet aktive utestengelser overskrider"
|
305 |
|
306 |
+
#: ../settings.php:107 ../settings.php:183 ../settings.php:358 ../settings.php:423
|
307 |
msgid "days"
|
308 |
msgstr "dager"
|
309 |
|
310 |
+
#: ../dashboard.php:1236
|
311 |
msgid "Cerber Quick View"
|
312 |
msgstr "Cerber hurtigvisning"
|
313 |
|
314 |
+
#: ../dashboard.php:154
|
315 |
msgid "Hint"
|
316 |
msgstr "Hint"
|
317 |
|
318 |
+
#: ../dashboard.php:154
|
319 |
msgid "To view activity, click on the IP"
|
320 |
msgstr "For å se aktivitet klikk på IP-en"
|
321 |
|
322 |
+
#: ../dashboard.php:198 ../dashboard.php:890 ../dashboard.php:921 ../dashboard.
|
323 |
+
#: php:1019
|
324 |
msgid "Check for activity"
|
325 |
msgstr "Sjekk etter aktivitet"
|
326 |
|
327 |
+
#: ../settings.php:84
|
328 |
msgid "Always block entire subnet Class C of intruders IP"
|
329 |
msgstr "Alltid blokkér hele subnet Class C av inntrengerens IP"
|
330 |
|
331 |
+
#: ../settings.php:104 ../settings.php:713 ../settings.php:835
|
332 |
msgid "Click to send test"
|
333 |
msgstr "Klikk for å sende test"
|
334 |
|
335 |
+
#: ../settings.php:1000 ../settings.php:1001
|
336 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
337 |
msgstr "OBS! Du har endret innloggings-adressen. Din nye URL for innlogging er"
|
338 |
|
339 |
+
#: ../dashboard.php:1145
|
340 |
msgid "Comments"
|
341 |
msgstr "Kommentarer"
|
342 |
|
343 |
+
#: ../common.php:1185
|
344 |
msgid "Update to version %s of WP Cerber"
|
345 |
msgstr "Oppdatér til versjon %s av WP Cerber"
|
346 |
|
347 |
+
#: ../cerber-load.php:3417 ../cerber-load.php:4024
|
348 |
msgid "View activity in dashboard"
|
349 |
msgstr "Se aktivitet i kontrollpanelet"
|
350 |
|
351 |
+
#: ../cerber-load.php:3447
|
352 |
msgid "Number of active lockouts"
|
353 |
msgstr "Antall aktive utestengelser"
|
354 |
|
355 |
+
#: ../cerber-load.php:3451
|
356 |
msgid "View lockouts in dashboard"
|
357 |
msgstr "Se utestengelser i kontrollpanelet"
|
358 |
|
359 |
+
#: ../cerber-load.php:3539
|
360 |
msgid "This message was sent by"
|
361 |
msgstr "Denne meldingen ble sendt av"
|
362 |
|
363 |
+
#: ../dashboard.php:68 ../cerber-tools.php:43
|
364 |
msgid "Tools"
|
365 |
msgstr "Verktøy"
|
366 |
|
400 |
msgid "What do you want to import?"
|
401 |
msgstr "Hva ønsker du å importere?"
|
402 |
|
403 |
+
#: ../cerber-tools.php:102 ../cerber-scanner.php:3588
|
404 |
msgid "Upload file"
|
405 |
msgstr "Last opp fil"
|
406 |
|
420 |
msgid "Error while parsing file"
|
421 |
msgstr "Feil under parsing av filen"
|
422 |
|
423 |
+
#: ../dashboard.php:134 ../dashboard.php:712
|
424 |
msgid "Hostname"
|
425 |
msgstr "Vertsnavn"
|
426 |
|
427 |
+
#: ../dashboard.php:395
|
428 |
msgid "unknown"
|
429 |
msgstr "ukjent"
|
430 |
|
431 |
+
#: ../settings.php:107 ../settings.php:354
|
432 |
msgid "Keep records for"
|
433 |
msgstr "Behold logger"
|
434 |
|
435 |
+
#: ../dashboard.php:1270 ../dashboard.php:1292
|
436 |
msgid "active"
|
437 |
msgstr "aktive"
|
438 |
|
439 |
+
#: ../dashboard.php:1270
|
440 |
msgid "deactivate"
|
441 |
msgstr "deaktiver"
|
442 |
|
443 |
+
#: ../dashboard.php:1272
|
444 |
msgid "not active"
|
445 |
msgstr "ikke aktive"
|
446 |
|
447 |
+
#: ../dashboard.php:1273 ../dashboard.php:1287
|
448 |
msgid "disabled"
|
449 |
msgstr "deaktivert"
|
450 |
|
451 |
+
#: ../dashboard.php:1278
|
452 |
msgid "failed attempts"
|
453 |
msgstr "mislykkede forsøk"
|
454 |
|
455 |
+
#: ../dashboard.php:1278 ../dashboard.php:1279
|
456 |
msgid "in 24 hours"
|
457 |
msgstr "på 24 timer"
|
458 |
|
459 |
+
#: ../dashboard.php:1278 ../dashboard.php:1279
|
460 |
msgid "view all"
|
461 |
msgstr "se alle"
|
462 |
|
463 |
+
#: ../dashboard.php:1279
|
464 |
msgid "lockouts"
|
465 |
msgstr "utestengelser"
|
466 |
|
467 |
+
#: ../dashboard.php:1281
|
468 |
msgid "Lockouts at the moment"
|
469 |
msgstr "Utestengelser akkurat nå"
|
470 |
|
471 |
+
#: ../dashboard.php:1282
|
472 |
msgid "Last lockout"
|
473 |
msgstr "Siste utestengelse"
|
474 |
|
475 |
+
#: ../dashboard.php:1283 ../dashboard.php:1284 ../dashboard.php:1977
|
476 |
msgid "entry"
|
477 |
msgid_plural "entries"
|
478 |
msgstr[0] "oppføring"
|
479 |
msgstr[1] "oppføringer"
|
480 |
|
481 |
+
#: ../dashboard.php:1686
|
482 |
msgid "Confused about some settings?"
|
483 |
msgstr "Usikker på noen innstillinger?"
|
484 |
|
485 |
+
#: ../dashboard.php:1687
|
486 |
msgid "You can easily load default recommended settings using button below"
|
487 |
msgstr "Du kan enkelt laste inn anbefalte standardinnstillinger via knappen under"
|
488 |
|
489 |
+
#: ../dashboard.php:1689
|
490 |
msgid "Load default settings"
|
491 |
msgstr "Last inn standardinnstillinger"
|
492 |
|
493 |
+
#: ../dashboard.php:1697
|
494 |
msgid "doesn't affect Custom login URL and Access Lists"
|
495 |
msgstr "påvirker ikke egendefinert innloggings-URL og tilgangslister"
|
496 |
|
497 |
+
#: ../common.php:1178 ../settings.php:225
|
498 |
msgid "New version is available"
|
499 |
msgstr "Ny versjon er tilgjengelig"
|
500 |
|
501 |
#. Name of the plugin
|
502 |
+
#: ../dashboard.php:52 ../dashboard.php:80
|
503 |
msgid "WP Cerber"
|
504 |
msgstr "WP Cerber"
|
505 |
|
506 |
+
#: ../cerber-load.php:3391
|
507 |
msgid "WP Cerber notify"
|
508 |
msgstr "WP Cerber-varsling"
|
509 |
|
510 |
+
#: ../cerber-load.php:3413
|
511 |
msgid "Citadel mode is activated"
|
512 |
msgstr "Vakttårns-modus er aktivert"
|
513 |
|
514 |
+
#: ../cerber-load.php:3486
|
515 |
msgid "New Custom login URL"
|
516 |
msgstr "Ny egendefinert innloggings-URL"
|
517 |
|
518 |
+
#: ../cerber-load.php:4198
|
519 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
520 |
msgstr "WP Cerber krever PHP versjon %s eller høyere. Du kjører"
|
521 |
|
522 |
+
#: ../cerber-load.php:4202
|
523 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
524 |
msgstr "WP Cerber krever WordPress versjon %s eller høyere. Du kjører"
|
525 |
|
526 |
+
#: ../settings.php:110
|
527 |
msgid "Use file"
|
528 |
msgstr "Bruk fil"
|
529 |
|
530 |
+
#: ../settings.php:110
|
531 |
msgid "Write failed login attempts to the file"
|
532 |
msgstr "Skriv mislykkede innloggingsforsøk til filen"
|
533 |
|
534 |
+
#: ../dashboard.php:1805
|
535 |
msgid "Deactivate"
|
536 |
msgstr "Deaktivér"
|
537 |
|
538 |
+
#: ../dashboard.php:137 ../cerber-load.php:3449
|
539 |
msgid "Reason"
|
540 |
msgstr "Grunn"
|
541 |
|
542 |
+
#: ../dashboard.php:210
|
543 |
msgid "Add IP to the list"
|
544 |
msgstr "Legg IP til listen"
|
545 |
|
546 |
+
#: ../dashboard.php:976
|
547 |
msgid "Add IP to the Black List"
|
548 |
msgstr "Legg IP til svartelisten"
|
549 |
|
550 |
+
#: ../common.php:925
|
551 |
msgid "Attempt to access"
|
552 |
msgstr "Forsøk på å få tilgang til"
|
553 |
|
554 |
+
#: ../common.php:924
|
555 |
msgid "Limit on login attempts is reached"
|
556 |
msgstr "Grensen for innloggingsforsøk er nådd"
|
557 |
|
558 |
+
#: ../common.php:866 ../common.php:926
|
559 |
msgid "Attempt to log in with non-existent username"
|
560 |
msgstr "Forsøk på å logge inn med ikke-eksisterende brukernavn"
|
561 |
|
562 |
+
#: ../cerber-load.php:3448
|
563 |
msgid "Last lockout was added: %s for IP %s"
|
564 |
msgstr "Siste utestengelse ble lagt til: %s for IP %s"
|
565 |
|
566 |
+
#: ../cerber-load.php:4260 ../settings.php:574
|
567 |
msgid "Hardening"
|
568 |
msgstr "Forsterking"
|
569 |
|
570 |
+
#: ../dashboard.php:953
|
571 |
msgid "Abuse email:"
|
572 |
msgstr "Repportering av misbruk:"
|
573 |
|
574 |
+
#: ../settings.php:212 ../settings.php:253 ../settings.php:485
|
575 |
msgid "Email Address"
|
576 |
msgstr "E-postadresse"
|
577 |
|
578 |
+
#: ../settings.php:221
|
579 |
msgid "if empty, the admin email %s will be used"
|
580 |
msgstr "Hvis tom, vil e-postadressen %s bli brukt"
|
581 |
|
582 |
+
#: ../settings.php:113
|
583 |
msgid "Drill down IP"
|
584 |
msgstr "Inspiser IP"
|
585 |
|
586 |
+
#: ../settings.php:113
|
587 |
msgid "Retrieve extra WHOIS information for IP"
|
588 |
msgstr "Hent ekstra WHOIS-informasjon for IP"
|
589 |
|
590 |
+
#: ../settings.php:121
|
591 |
msgid "Hardening WordPress"
|
592 |
msgstr "Forsterke WordPress"
|
593 |
|
594 |
+
#: ../settings.php:122
|
595 |
msgid "Stop user enumeration"
|
596 |
msgstr "Stopp opplisting av brukere"
|
597 |
|
598 |
+
#: ../settings.php:124
|
599 |
msgid "Disable XML-RPC"
|
600 |
msgstr "Deaktivér XML-RPC"
|
601 |
|
602 |
+
#: ../settings.php:124
|
603 |
msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
|
604 |
msgstr "Blokkér tilgang til XML-RPC-serveren (inkluderer Pingbacks og Trackbacks)"
|
605 |
|
606 |
+
#: ../settings.php:125
|
607 |
msgid "Disable feeds"
|
608 |
msgstr "Deaktiver feeds"
|
609 |
|
610 |
+
#: ../settings.php:125
|
611 |
msgid "Block access to the RSS, Atom and RDF feeds"
|
612 |
msgstr "Blokkér tilgang til RSS- Atom- og RDF-feeds"
|
613 |
|
614 |
+
#: ../settings.php:126
|
615 |
msgid "Disable REST API"
|
616 |
msgstr "Deaktivér REST API"
|
617 |
|
618 |
+
#: ../settings.php:518
|
619 |
msgid "These settings do not affect hosts from the "
|
620 |
msgstr "Disse innstillingene påvirker ikke verter fra "
|
621 |
|
622 |
+
#: ../settings.php:1078 ../settings.php:1090 ../settings.php:1218
|
623 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
624 |
msgstr "<strong>FEIL</strong>: vennligst skriv inn en gyldig e-postadresse"
|
625 |
|
626 |
+
#: ../cerber-load.php:3479 ../cerber-load.php:4245
|
627 |
msgid "WP Cerber is now active and has started protecting your site"
|
628 |
msgstr "WP Cerber er nå aktiv og har begynt å beskytte siden din"
|
629 |
|
630 |
+
#: ../dashboard.php:138
|
631 |
msgid "Action"
|
632 |
msgstr "Handling"
|
633 |
|
634 |
+
#: ../dashboard.php:173
|
635 |
msgid "Nobody can log in or register from these IPs"
|
636 |
msgstr "Ingen kan logge inn eller registrere seg fra disse IP-ene"
|
637 |
|
638 |
+
#: ../dashboard.php:236 ../dashboard.php:248
|
639 |
msgid "Incorrect IP address or IP range"
|
640 |
msgstr "Feil IP-adresse eller IP-rekkevidde"
|
641 |
|
642 |
+
#: ../dashboard.php:445 ../dashboard.php:1821
|
643 |
msgid "Settings saved"
|
644 |
msgstr "Innstillingene er lagret"
|
645 |
|
646 |
+
#: ../dashboard.php:957
|
647 |
msgid "Network:"
|
648 |
msgstr "Nettverk:"
|
649 |
|
650 |
+
#: ../dashboard.php:971
|
651 |
msgid "Add network to the Black List"
|
652 |
msgstr "Legg nettverk til svartelisten"
|
653 |
|
654 |
+
#: ../dashboard.php:1804
|
655 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
656 |
msgstr "Advarsel! Vakttårns-modus er nå aktiv. Ingen vil kunne logge inn."
|
657 |
|
658 |
+
#: ../dashboard.php:353 ../dashboard.php:2805 ../whois.php:223 ../whois.php:254 ..
|
659 |
+
#: /common.php:923 ../common.php:1269
|
660 |
msgid "Unknown"
|
661 |
msgstr "Ukjent"
|
662 |
|
665 |
msgid "Gregory"
|
666 |
msgstr "Gregory"
|
667 |
|
668 |
+
#: ../common.php:209 ../common.php:272 ../common.php:277 ../common.php:282 ..
|
669 |
+
#: /cerber-load.php:677 ../cerber-load.php:689 ../cerber-load.php:696 ../cerber-
|
670 |
+
#: load.php:950 ../cerber-load.php:1172 ../cerber-load.php:1178 ../cerber-load.
|
671 |
+
#: php:1183 ../cerber-load.php:1188 ../cerber-load.php:1194 ../cerber-load.php:
|
672 |
+
#: 1201 ../cerber-load.php:1303 ../cerber-load.php:1440 ../settings.php:979 ..
|
673 |
+
#: /settings.php:1048
|
674 |
msgid "ERROR:"
|
675 |
msgstr "FEIL:"
|
676 |
|
677 |
+
#: ../cerber-load.php:706
|
678 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
679 |
msgstr "Bekreftelse av menneskelighet feilet. Vennligst klikk den firkantige boksen i reCAPTCHA-blokken under."
|
680 |
|
681 |
+
#: ../cerber-load.php:962
|
682 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
683 |
msgstr "<strong>FEIL</strong>: Passordet du skrev inn for brukernavnet %s er ugyldig."
|
684 |
|
685 |
+
#: ../cerber-load.php:1189
|
686 |
msgid "Username is not allowed. Please choose another one."
|
687 |
msgstr "Brukernavnet er ikke tillatt. Vennligst velg et annet brukernavn."
|
688 |
|
689 |
+
#: ../cerber-load.php:3442
|
690 |
msgid "unspecified"
|
691 |
msgstr "uspesifisert"
|
692 |
|
693 |
+
#: ../cerber-load.php:3445
|
694 |
msgid "Number of lockouts is increasing"
|
695 |
msgstr "Antallet utestengelser stiger"
|
696 |
|
697 |
+
#: ../cerber-load.php:3450
|
698 |
msgid "View activity for this IP"
|
699 |
msgstr "Se aktivitet for denne IP"
|
700 |
|
701 |
+
#: ../cerber-load.php:3454 ../cerber-load.php:3456
|
702 |
msgid "A new version of WP Cerber is available to install"
|
703 |
msgstr "En ny versjon av WP Cerber er tilgjengelig for installasjon"
|
704 |
|
705 |
+
#: ../cerber-load.php:3455
|
706 |
msgid "Hi!"
|
707 |
msgstr "Hei!"
|
708 |
|
709 |
+
#: ../cerber-load.php:3458 ../cerber-load.php:3469
|
710 |
msgid "Website"
|
711 |
msgstr "Webside"
|
712 |
|
713 |
+
#: ../cerber-load.php:3461 ../cerber-load.php:3462
|
714 |
msgid "The WP Cerber security plugin has been deactivated"
|
715 |
msgstr "Sikkerhetstillegget WP Cerber har blitt deaktivert"
|
716 |
|
717 |
+
#: ../cerber-load.php:3464
|
718 |
msgid "Not logged in"
|
719 |
msgstr "Ikke innlogget"
|
720 |
|
721 |
+
#: ../cerber-load.php:3470
|
722 |
msgid "By user"
|
723 |
msgstr "Etter brukernavn"
|
724 |
|
725 |
+
#: ../cerber-load.php:3471
|
726 |
msgid "From IP address"
|
727 |
msgstr "Fra IP-adresse"
|
728 |
|
729 |
+
#: ../cerber-load.php:3474
|
730 |
msgid "From country"
|
731 |
msgstr "Fra land"
|
732 |
|
733 |
+
#: ../cerber-load.php:3478
|
734 |
msgid "The WP Cerber security plugin is now active"
|
735 |
msgstr "Sikkerhetstillegget WP Cerber er nå aktivt"
|
736 |
|
737 |
+
#: ../cerber-load.php:4246
|
738 |
msgid "Your IP address is added to the"
|
739 |
msgstr "Din IP-adresse ble lagt til"
|
740 |
|
741 |
+
#: ../cerber-load.php:4262
|
742 |
msgid "Import settings"
|
743 |
msgstr "Importer innstillinger"
|
744 |
|
745 |
+
#: ../settings.php:224
|
746 |
msgid "Notification limit"
|
747 |
msgstr "Grense for varslinger"
|
748 |
|
749 |
+
#: ../settings.php:224
|
750 |
msgid "notification letters allowed per hour (0 means unlimited)"
|
751 |
msgstr "varslingsmeldinger tillatt per time (0 betyr ubegrenset)"
|
752 |
|
753 |
+
#: ../settings.php:144
|
754 |
msgid "User related settings"
|
755 |
msgstr "Brukerrelaterte innstillinger"
|
756 |
|
757 |
+
#: ../settings.php:148
|
758 |
msgid "Prohibited usernames"
|
759 |
msgstr "Blokkerte brukernavn"
|
760 |
|
761 |
+
#: ../settings.php:154
|
762 |
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."
|
763 |
msgstr "Brukernavn fra denne listen har ikke tilgang til å logge inn eller registrere seg. Enhver IP som forsøker å bruke noen av disse brukernavnene blir blokkert umiddelbart. Bruk komma for å skille brukernavn."
|
764 |
|
765 |
+
#: ../settings.php:156
|
766 |
msgid "User session expire"
|
767 |
msgstr "Brukerøktens varighet"
|
768 |
|
769 |
+
#: ../settings.php:156
|
770 |
msgid "in minutes (leave empty to use default WP value)"
|
771 |
msgstr "i minutter (la stå tom for å bruke WordPress' standardverdi)"
|
772 |
|
773 |
+
#: ../settings.php:186
|
774 |
msgid "reCAPTCHA settings"
|
775 |
msgstr "reCAPTCHA-innstillinger"
|
776 |
|
777 |
+
#: ../settings.php:187
|
778 |
msgid "Site key"
|
779 |
msgstr "Site key"
|
780 |
|
781 |
+
#: ../settings.php:188
|
782 |
msgid "Secret key"
|
783 |
msgstr "Secret key"
|
784 |
|
785 |
+
#: ../settings.php:191
|
786 |
msgid "Enable reCAPTCHA for WordPress registration form"
|
787 |
msgstr "Slå på reCAPTCHA for WordPress' registreringsskjema"
|
788 |
|
789 |
+
#: ../settings.php:194
|
790 |
msgid "Lost password form"
|
791 |
msgstr "Skjema for mistet passord"
|
792 |
|
793 |
+
#: ../settings.php:197
|
794 |
msgid "Login form"
|
795 |
msgstr "Innloggingsskjema"
|
796 |
|
797 |
+
#: ../settings.php:197
|
798 |
msgid "Enable reCAPTCHA for WordPress login form"
|
799 |
msgstr "Slå på reCAPTCHA for WordPress' innloggingsskjema"
|
800 |
|
801 |
+
#: ../settings.php:521
|
802 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
803 |
msgstr "Før du kan ta i bruk reCAPTCHA må du skaffe deg en Site key og Secret key på Googles webside"
|
804 |
|
805 |
+
#: ../cerber-lab.php:750 ../settings.php:522
|
806 |
msgid "Know more"
|
807 |
msgstr "Lær mer"
|
808 |
|
809 |
+
#: ../dashboard.php:52 ../settings.php:550
|
810 |
msgid "WP Cerber Security"
|
811 |
msgstr "WP Cerber-sikkerhet"
|
812 |
|
813 |
+
#: ../settings.php:577
|
814 |
msgid "Users"
|
815 |
msgstr "Brukere"
|
816 |
|
817 |
+
#: ../common.php:833
|
818 |
msgid "User created"
|
819 |
msgstr "Bruker opprettet"
|
820 |
|
821 |
+
#: ../dashboard.php:1638 ../common.php:834
|
822 |
msgid "User registered"
|
823 |
msgstr "Bruker registrert"
|
824 |
|
825 |
+
#: ../common.php:861
|
826 |
msgid "reCAPTCHA verification failed"
|
827 |
msgstr "reCAPTCHA-godkjenning mislyktes"
|
828 |
|
829 |
+
#: ../common.php:862
|
830 |
msgid "reCAPTCHA settings are incorrect"
|
831 |
msgstr "reCAPTCHA-innstillingene er feil"
|
832 |
|
833 |
+
#: ../common.php:865
|
834 |
msgid "Attempt to access prohibited URL"
|
835 |
msgstr "Forsøk på å koble til forbudt URL"
|
836 |
|
837 |
+
#: ../common.php:867 ../common.php:927
|
838 |
msgid "Attempt to log in with prohibited username"
|
839 |
msgstr "Forsøk på å logge inn med forbudt brukernavn"
|
840 |
|
841 |
+
#: ../settings.php:108
|
842 |
msgid "Cerber Lab connection"
|
843 |
msgstr "Tilkobling til Cerber Lab"
|
844 |
|
845 |
+
#: ../settings.php:108
|
846 |
msgid "Send malicious IP addresses to the Cerber Lab"
|
847 |
msgstr "Send ondsinnede IP-adresser til Cerber Lab"
|
848 |
|
849 |
+
#: ../settings.php:109
|
850 |
msgid "Cerber Lab protocol"
|
851 |
msgstr "Cerber Lab protokoll"
|
852 |
|
853 |
+
#: ../settings.php:166 ../settings.php:191
|
854 |
msgid "Registration form"
|
855 |
msgstr "Registreringsskjema"
|
856 |
|
857 |
+
#: ../settings.php:192
|
858 |
msgid "Enable reCAPTCHA for WooCommerce registration form"
|
859 |
msgstr "Slå på reCAPTCHA for WooCommerces registreringsskjema"
|
860 |
|
861 |
+
#: ../settings.php:194
|
862 |
msgid "Enable reCAPTCHA for WordPress lost password form"
|
863 |
msgstr "Slå på reCAPTCHA for WordPress' skjema for mistet passord"
|
864 |
|
865 |
+
#: ../settings.php:195
|
866 |
msgid "Enable reCAPTCHA for WooCommerce lost password form"
|
867 |
msgstr "Slå på reCAPTCHA for WooCommerce mistet passord-skjema"
|
868 |
|
869 |
+
#: ../settings.php:198
|
870 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
871 |
msgstr "Slå på reCAPTCHA for WooCommerce innloggings-skjema"
|
872 |
|
873 |
+
#: ../common.php:863
|
874 |
msgid "Request to the Google reCAPTCHA service failed"
|
875 |
msgstr "Forespørsel til Googles reCAPTCHA-tjeneste mislyktes"
|
876 |
|
877 |
+
#: ../dashboard.php:1630 ../dashboard.php:1660
|
878 |
msgid "View all"
|
879 |
msgstr "Se alle"
|
880 |
|
881 |
+
#: ../dashboard.php:1661
|
882 |
msgid "Recently locked out IP addresses"
|
883 |
msgstr "Nylig utestengte IP-adresser"
|
884 |
|
885 |
+
#: ../cerber-lab.php:748
|
886 |
msgid "OK, nail them all"
|
887 |
msgstr "OK, ta alle sammen"
|
888 |
|
889 |
+
#: ../cerber-lab.php:749
|
890 |
msgid "NO, maybe later"
|
891 |
msgstr "NEI, kanskje senere"
|
892 |
|
893 |
+
#: ../dashboard.php:54 ../dashboard.php:1318 ../dashboard.php:1997 ../settings.
|
894 |
+
#: php:556
|
895 |
msgid "Dashboard"
|
896 |
msgstr "Kontrollpanel"
|
897 |
|
898 |
+
#: ../cerber-lab.php:746
|
899 |
msgid "Want to make WP Cerber even more powerful?"
|
900 |
msgstr "Vil du gjøre WP Cerber enda sterkere?"
|
901 |
|
902 |
+
#: ../cerber-lab.php:747
|
903 |
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."
|
904 |
msgstr "Tillat at WP Cerber sender utestengde ondsinnede IP-adresser til Cerber Lab. Dette hjelper plugin-teamet å utvikle nye algoritmer som vil beskytte WordPress mot nye trusler og botnett som dukker opp hver dag. Du kan slå av sendingen i plugin-innstillingene når som helst."
|
905 |
|
906 |
+
#: ../dashboard.php:543
|
907 |
msgid "IP address"
|
908 |
msgstr "IP-adresse"
|
909 |
|
910 |
+
#: ../dashboard.php:543
|
911 |
msgid "User login"
|
912 |
msgstr "Brukernavn"
|
913 |
|
914 |
+
#: ../dashboard.php:543
|
915 |
msgid "User ID"
|
916 |
msgstr "Bruker-ID"
|
917 |
|
918 |
+
#: ../dashboard.php:735
|
919 |
msgid "Export"
|
920 |
msgstr "Eksporter"
|
921 |
|
922 |
+
#: ../dashboard.php:757
|
923 |
msgid "Search for IP or username"
|
924 |
msgstr "Søk etter IP eller brukernavn"
|
925 |
|
926 |
+
#: ../dashboard.php:757
|
927 |
msgid "Filter"
|
928 |
msgstr "Filter"
|
929 |
|
931 |
msgid "Cerber Dashboard"
|
932 |
msgstr "Cerber-kontrollpanel"
|
933 |
|
934 |
+
#: ../dashboard.php:68
|
935 |
msgid "Cerber tools"
|
936 |
msgstr "Cerber-verktøy"
|
937 |
|
938 |
+
#: ../dashboard.php:1907
|
939 |
msgid "Subscribe"
|
940 |
msgstr "Abbonér"
|
941 |
|
942 |
+
#: ../dashboard.php:1908 ../cerber-tools.php:272
|
943 |
msgid "Unsubscribe"
|
944 |
msgstr "Avslutt abonnementet"
|
945 |
|
946 |
+
#: ../dashboard.php:1936
|
947 |
msgid "You've subscribed"
|
948 |
msgstr "Du abbonerer"
|
949 |
|
950 |
+
#: ../dashboard.php:1939
|
951 |
msgid "You've unsubscribed"
|
952 |
msgstr "Du har avsluttet abonnementet"
|
953 |
|
954 |
+
#: ../cerber-load.php:3490 ../cerber-load.php:3491
|
955 |
msgid "A new activity has been recorded"
|
956 |
msgstr "En ny aktivitet har blitt registrert"
|
957 |
|
958 |
+
#: ../cerber-load.php:3996
|
959 |
msgid "User"
|
960 |
msgstr "Bruker"
|
961 |
|
962 |
+
#: ../cerber-load.php:4004
|
963 |
msgid "Search string"
|
964 |
msgstr "Søkeord"
|
965 |
|
966 |
+
#: ../cerber-load.php:4025
|
967 |
msgid "To unsubscribe click here"
|
968 |
msgstr "Klikk her for å avslutte abbonementet"
|
969 |
|
970 |
+
#: ../settings.php:112
|
971 |
msgid "Preferences"
|
972 |
msgstr "Valg"
|
973 |
|
974 |
+
#: ../settings.php:114
|
975 |
msgid "Date format"
|
976 |
msgstr "Datoformat"
|
977 |
|
978 |
+
#: ../settings.php:114
|
979 |
msgid "if empty, the default format %s will be used"
|
980 |
msgstr "hvis blank, vil formatet %s bli brukt"
|
981 |
|
982 |
+
#: ../settings.php:230
|
983 |
msgid "Push notifications"
|
984 |
msgstr "Push-varsler"
|
985 |
|
986 |
+
#: ../settings.php:209
|
987 |
msgid "Email notifications"
|
988 |
msgstr "E-postvarsel"
|
989 |
|
990 |
+
#: ../settings.php:216 ../settings.php:258 ../settings.php:322 ../settings.php:489
|
991 |
msgid "Use comma to specify multiple values"
|
992 |
msgstr "Bruk komma for å skille mellom flere verdier"
|
993 |
|
994 |
+
#: ../settings.php:238
|
995 |
msgid "All connected devices"
|
996 |
msgstr "Alle tilkoblede enheter"
|
997 |
|
998 |
+
#: ../settings.php:241
|
999 |
msgid "No devices found"
|
1000 |
msgstr "Ingen enheter funnet"
|
1001 |
|
1002 |
+
#: ../settings.php:245
|
1003 |
msgid "Not available"
|
1004 |
msgstr "Ikke tilgjengelig"
|
1005 |
|
1006 |
+
#: ../common.php:859
|
1007 |
msgid "Password reset requested"
|
1008 |
msgstr "Nullstilling av passord forespurt"
|
1009 |
|
1010 |
+
#: ../common.php:928
|
1011 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1012 |
msgstr "Grensen for mislykkede reCAPTCHA-verifiseringer er nådd"
|
1013 |
|
1014 |
+
#: ../common.php:995
|
1015 |
msgid "%s ago"
|
1016 |
msgstr "%s siden"
|
1017 |
|
1018 |
+
#: ../settings.php:79
|
1019 |
msgid "Apply limit login rules to IP addresses in the White IP Access List"
|
1020 |
msgstr "Aktivér regler for begrensning av innloggingsforsøk for hvitlistede IP-adresser."
|
1021 |
|
1022 |
+
#: ../settings.php:88
|
1023 |
msgid "Display 404 page"
|
1024 |
msgstr "Vis 404-siden"
|
1025 |
|
1026 |
+
#: ../settings.php:189
|
1027 |
msgid "Invisible reCAPTCHA"
|
1028 |
msgstr "Usynlig reCAPTCHA"
|
1029 |
|
1030 |
+
#: ../settings.php:189
|
1031 |
msgid "Enable invisible reCAPTCHA"
|
1032 |
msgstr "Aktivér usynlig reCAPTCHA"
|
1033 |
|
1034 |
+
#: ../settings.php:189
|
1035 |
msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
|
1036 |
msgstr "(ikke aktivér denne med mindre du legger inn sidenøkkel og hemmelig nøkkel for den usynlige versjonen)"
|
1037 |
|
1038 |
+
#: ../settings.php:200
|
1039 |
msgid "Enable reCAPTCHA for WordPress comment form"
|
1040 |
msgstr "Aktivér reCAPTCHA for WordPress' kommentarskjema"
|
1041 |
|
1042 |
+
#: ../settings.php:201
|
1043 |
msgid "Disable reCAPTCHA for logged in users"
|
1044 |
msgstr "Deaktivér reCAPTCHA for innloggede brukere"
|
1045 |
|
1046 |
+
#: ../settings.php:203
|
1047 |
msgid "Limit attempts"
|
1048 |
msgstr "Begrens forsøk"
|
1049 |
|
1050 |
+
#: ../settings.php:203
|
1051 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1052 |
msgstr "Steng ute IP-adresser for %s minutter etter %s mislykkede forsøk på %s minutter"
|
1053 |
|
1054 |
+
#: ../settings.php:515
|
1055 |
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."
|
1056 |
msgstr "I vakttårnsmodus kan ingen andre enn hvitlistede IP-adresser logge seg inn. Allerede innloggede brukere vil ikke bli påvirket."
|
1057 |
|
1058 |
+
#: ../dashboard.php:543 ../dashboard.php:715
|
1059 |
msgid "Event"
|
1060 |
msgstr "Hendelse"
|
1061 |
|
1062 |
+
#: ../common.php:152
|
1063 |
msgid "Spam comments denied"
|
1064 |
msgstr "Spam-kommentarer nektet"
|
1065 |
|
1066 |
+
#: ../common.php:154
|
1067 |
msgid "Malicious IP addresses detected"
|
1068 |
msgstr "Ondsinnede IP-adresser oppdaget"
|
1069 |
|
1070 |
+
#: ../common.php:155
|
1071 |
msgid "Lockouts occurred"
|
1072 |
msgstr "Utestengelser"
|
1073 |
|
1074 |
+
#: ../dashboard.php:1639
|
1075 |
msgid "All suspicious activity"
|
1076 |
msgstr "All mistenkelig aktivitet"
|
1077 |
|
1078 |
+
#: ../cerber-load.php:1173 ../cerber-load.php:1179 ../cerber-load.php:1195 ..
|
1079 |
+
#: /cerber-load.php:1202
|
1080 |
msgid "You are not allowed to register."
|
1081 |
msgstr "Du har ikke tilgang til å registrere deg"
|
1082 |
|
1083 |
+
#: ../common.php:844
|
1084 |
msgid "Spam comment denied"
|
1085 |
msgstr "Spam-kommentar nektet"
|
1086 |
|
1087 |
+
#: ../common.php:869
|
1088 |
msgid "Attempt to log in denied"
|
1089 |
msgstr "Innloggingsforsøk nektet"
|
1090 |
|
1091 |
+
#: ../common.php:870
|
1092 |
msgid "Attempt to register denied"
|
1093 |
msgstr "Registreringsforsøk nektet"
|
1094 |
|
1095 |
+
#: ../common.php:149
|
1096 |
msgid "Malicious activities mitigated"
|
1097 |
msgstr "Mistenkelige aktiviteter redusert"
|
1098 |
|
1099 |
+
#: ../dashboard.php:67
|
1100 |
msgid "Cerber antispam settings"
|
1101 |
msgstr "Cerber antispam-innstillinger"
|
1102 |
|
1103 |
+
#: ../dashboard.php:67 ../dashboard.php:1321 ../cerber-load.php:4259 ../settings.
|
1104 |
+
#: php:200
|
1105 |
msgid "Antispam"
|
1106 |
msgstr "Antispam"
|
1107 |
|
1108 |
+
#: ../settings.php:164
|
1109 |
msgid "Cerber antispam engine"
|
1110 |
msgstr "Cerber antispam-system"
|
1111 |
|
1112 |
+
#: ../settings.php:165
|
1113 |
msgid "Comment form"
|
1114 |
msgstr "Kommentarskjema"
|
1115 |
|
1116 |
+
#: ../settings.php:165
|
1117 |
msgid "Protect comment form with bot detection engine"
|
1118 |
msgstr "Beskytt kommentarskjema med system for bot-oppdagelse"
|
1119 |
|
1120 |
+
#: ../settings.php:166
|
1121 |
msgid "Protect registration form with bot detection engine"
|
1122 |
msgstr "Beskytt registreringssskjema med system for bot-oppdagelse"
|
1123 |
|
1133 |
msgid "License"
|
1134 |
msgstr "Lisens"
|
1135 |
|
1136 |
+
#: ../dashboard.php:3446
|
1137 |
msgid "Antispam and bot detection settings"
|
1138 |
msgstr "Innstillinger for antispam og bot-oppdagelse"
|
1139 |
|
1140 |
+
#: ../cerber-load.php:1440
|
1141 |
msgid "Sorry, human verification failed."
|
1142 |
msgstr "Beklager, menneskeverifisering feilet"
|
1143 |
|
1144 |
+
#: ../common.php:929
|
1145 |
msgid "Bot activity is detected"
|
1146 |
msgstr "Bot-aktivitet er oppdaget"
|
1147 |
|
1148 |
+
#: ../settings.php:181
|
1149 |
msgid "Comment processing"
|
1150 |
msgstr "Behandler kommentaren"
|
1151 |
|
1152 |
+
#: ../settings.php:182
|
1153 |
msgid "If a spam comment detected"
|
1154 |
msgstr "Hvis en spam-kommentar oppdages"
|
1155 |
|
1156 |
+
#: ../settings.php:183
|
1157 |
msgid "Trash spam comments"
|
1158 |
msgstr "Kast spam-kommentarer i papirkurven"
|
1159 |
|
1160 |
+
#: ../settings.php:183
|
1161 |
msgid "Move spam comments to trash after"
|
1162 |
msgstr "Flytt spam-kommentarer til papirkurven etter"
|
1163 |
|
1164 |
+
#: ../common.php:845
|
1165 |
msgid "Spam form submission denied"
|
1166 |
msgstr "Innsending av skjema nektet pga. spam"
|
1167 |
|
1168 |
+
#: ../settings.php:167
|
1169 |
msgid "Other forms"
|
1170 |
msgstr "Andre skjemaer"
|
1171 |
|
1172 |
+
#: ../settings.php:167
|
1173 |
msgid "Protect all forms on the website with bot detection engine"
|
1174 |
msgstr "Beskytt alle skjemaer på websiden med systemet for bot-oppdagelse"
|
1175 |
|
1176 |
+
#: ../settings.php:169
|
1177 |
msgid "Adjust antispam engine"
|
1178 |
msgstr "Justér antispam-systemet"
|
1179 |
|
1180 |
+
#: ../settings.php:170
|
1181 |
msgid "Safe mode"
|
1182 |
msgstr "Sikkermodus"
|
1183 |
|
1184 |
+
#: ../settings.php:170
|
1185 |
msgid "Use less restrictive policies (allow AJAX)"
|
1186 |
msgstr "Bruk mindre restriktive regler (tillat AJAX)"
|
1187 |
|
1188 |
+
#: ../dashboard.php:3081 ../settings.php:171
|
1189 |
msgid "Logged in users"
|
1190 |
msgstr "Innloggede brukere"
|
1191 |
|
1192 |
+
#: ../settings.php:171
|
1193 |
msgid "Disable bot detection engine for logged in users"
|
1194 |
msgstr "Deaktivér systemet for bot-oppdagelse for innloggede brukere"
|
1195 |
|
1196 |
+
#: ../dashboard.php:135 ../dashboard.php:713
|
|
|
|
|
|
|
|
|
|
|
1197 |
msgid "Country"
|
1198 |
msgstr "Land"
|
1199 |
|
1200 |
+
#: ../dashboard.php:746
|
1201 |
msgid "All events"
|
1202 |
msgstr "Alle hendelser"
|
1203 |
|
1205 |
msgid "Cerber Security Rules"
|
1206 |
msgstr "Cerber sikkerhetsregler"
|
1207 |
|
1208 |
+
#: ../dashboard.php:60 ../dashboard.php:2378
|
1209 |
msgid "Security Rules"
|
1210 |
msgstr "Sikkerhetsregler"
|
1211 |
|
1212 |
+
#: ../dashboard.php:1147
|
1213 |
msgid "Failed login attempts"
|
1214 |
msgstr "Mislykkede innloggingsforsøk"
|
1215 |
|
1216 |
+
#: ../dashboard.php:1063 ../dashboard.php:1148
|
1217 |
msgid "Registered"
|
1218 |
msgstr "Registrert"
|
1219 |
|
1220 |
+
#: ../dashboard.php:1218
|
1221 |
msgid "You"
|
1222 |
msgstr "Deg"
|
1223 |
|
1224 |
+
#: ../common.php:153
|
1225 |
msgid "Spam form submissions denied"
|
1226 |
msgstr "Innsending av skjema nektet pga. spam"
|
1227 |
|
1228 |
+
#: ../dashboard.php:1698 ../cerber-load.php:3481 ../cerber-load.php:4248
|
1229 |
msgid "Getting Started Guide"
|
1230 |
msgstr "Hurtigstartsguide"
|
1231 |
|
1232 |
+
#: ../dashboard.php:2383
|
1233 |
msgid "Countries"
|
1234 |
msgstr "Land"
|
1235 |
|
1236 |
+
#: ../dashboard.php:2446
|
1237 |
msgid "Permitted for one country"
|
1238 |
msgid_plural "Permitted for %d countries"
|
1239 |
msgstr[0] "Tillatt for ett land"
|
1240 |
msgstr[1] "Tillatt for %s land"
|
1241 |
|
1242 |
+
#: ../dashboard.php:2457
|
1243 |
msgid "No rule"
|
1244 |
msgstr "Ingen regel"
|
1245 |
|
1246 |
+
#: ../dashboard.php:2669
|
1247 |
msgid "Security rules have been updated"
|
1248 |
msgstr "Sikkerhetsreglene har blitt oppdatert"
|
1249 |
|
1252 |
msgid "https://wpcerber.com"
|
1253 |
msgstr "https://wpcerber.com"
|
1254 |
|
1255 |
+
#: ../common.php:846
|
1256 |
msgid "Form submission denied"
|
1257 |
msgstr "Innsending av skjema nektet"
|
1258 |
|
1259 |
+
#: ../common.php:847
|
1260 |
msgid "Comment denied"
|
1261 |
msgstr "Kommentar nektet"
|
1262 |
|
1263 |
+
#: ../common.php:875
|
1264 |
msgid "Request to REST API denied"
|
1265 |
msgstr "Forespørsel til REST API nektet"
|
1266 |
|
1267 |
+
#: ../common.php:876
|
1268 |
msgid "XML-RPC request denied"
|
1269 |
msgstr "Forespørsel til XML-RPC nektet"
|
1270 |
|
1271 |
+
#: ../common.php:887
|
1272 |
msgid "Bot detected"
|
1273 |
msgstr "Bot oppdaget"
|
1274 |
|
1275 |
+
#: ../common.php:888
|
1276 |
msgid "Citadel mode is active"
|
1277 |
msgstr "Vakttårnsmodus er aktiv"
|
1278 |
|
1279 |
+
#: ../common.php:892
|
1280 |
msgid "Malicious activity detected"
|
1281 |
msgstr "Mistenkelig aktivitet oppdaget"
|
1282 |
|
1283 |
+
#: ../common.php:893
|
1284 |
msgid "Blocked by country rule"
|
1285 |
msgstr "Blokkert av land-regel"
|
1286 |
|
1287 |
+
#: ../common.php:894
|
1288 |
msgid "Limit reached"
|
1289 |
msgstr "Grensen er nådd"
|
1290 |
|
1291 |
+
#: ../common.php:895
|
1292 |
msgid "Multiple suspicious activities"
|
1293 |
msgstr "Flere mistenkelige aktiviteter"
|
1294 |
|
1295 |
+
#: ../common.php:930
|
1296 |
msgid "Multiple suspicious activities were detected"
|
1297 |
msgstr "Flere mistenkelige aktiviteter ble oppdaget"
|
1298 |
|
1299 |
+
#: ../settings.php:122
|
1300 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
1301 |
msgstr "Blokkér tilgang til brukersider som /?author=n og brukerdata via REST API"
|
1302 |
|
1303 |
+
#: ../settings.php:126
|
1304 |
msgid "Block access to the WordPress REST API except the following"
|
1305 |
msgstr "Blokkér tilgang til WordPress' REST API, bortsett fra følgende"
|
1306 |
|
1307 |
+
#: ../settings.php:127
|
1308 |
msgid "Allow REST API for logged in users"
|
1309 |
msgstr "Tillat REST API for innloggede brukere"
|
1310 |
|
1311 |
+
#: ../settings.php:134
|
1312 |
msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
|
1313 |
msgstr "Spesifisér REST API navneområder som skal tillates når REST API er deaktivert. En string per linje."
|
1314 |
|
1315 |
+
#: ../settings.php:146
|
1316 |
msgid "Registration limit"
|
1317 |
msgstr "Grense for registreringer"
|
1318 |
|
1319 |
+
#: ../settings.php:157
|
1320 |
msgid "Sort users in dashboard"
|
1321 |
msgstr "Sorter brukere i kontrollpanelet"
|
1322 |
|
1323 |
+
#: ../settings.php:157
|
1324 |
msgid "by date of registration"
|
1325 |
msgstr "etter registreringsdato"
|
1326 |
|
1327 |
+
#: ../settings.php:172
|
1328 |
msgid "Query whitelist"
|
1329 |
msgstr "Forespør hvitliste"
|
1330 |
|
1331 |
+
#: ../settings.php:699 ../settings.php:821
|
1332 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1333 |
msgstr "%s tillatte registreringer på %s minutter fra én IP-adresse"
|
1334 |
|
1335 |
+
#: ../dashboard.php:2513
|
1336 |
msgid "Start typing here to find a country"
|
1337 |
msgstr "Begynn å skrive her for å finne et land"
|
1338 |
|
1339 |
+
#: ../dashboard.php:2596
|
1340 |
msgid "Click on a country name to add it to the list of selected countries"
|
1341 |
msgstr "Klikk på et land for å legge det til listen over valgte land"
|
1342 |
|
1343 |
+
#: ../dashboard.php:2620
|
1344 |
msgid "Submit forms"
|
1345 |
msgstr "Send inn skjemaer"
|
1346 |
|
1347 |
+
#: ../dashboard.php:2621
|
1348 |
msgid "Post comments"
|
1349 |
msgstr "Publisér kommentarer"
|
1350 |
|
1351 |
+
#: ../dashboard.php:2622
|
1352 |
msgid "Log in to the website"
|
1353 |
msgstr "Logg inn på websiden"
|
1354 |
|
1355 |
+
#: ../dashboard.php:2623
|
1356 |
msgid "Register on the website"
|
1357 |
msgstr "Registrer på websiden"
|
1358 |
|
1359 |
+
#: ../dashboard.php:2624
|
1360 |
msgid "Use XML-RPC"
|
1361 |
msgstr "Bruk XML-RPC"
|
1362 |
|
1363 |
+
#: ../dashboard.php:2625
|
1364 |
msgid "Use REST API"
|
1365 |
msgstr "Bruk REST API"
|
1366 |
|
1367 |
+
#: ../settings.php:182
|
1368 |
msgid "Deny it completely"
|
1369 |
msgstr "Nekt det fullstendig"
|
1370 |
|
1371 |
+
#: ../settings.php:182
|
1372 |
msgid "Mark it as spam"
|
1373 |
msgstr "Marker det som spam"
|
1374 |
|
1375 |
+
#: ../dashboard.php:1624
|
1376 |
msgid "in the last 24 hours"
|
1377 |
msgstr "i løpet av de siste 24 timer"
|
1378 |
|
1379 |
+
#: ../dashboard.php:1998
|
1380 |
msgid "Main settings"
|
1381 |
msgstr "Hovedinnstillinger"
|
1382 |
|
1383 |
+
#: ../settings.php:250
|
1384 |
msgid "Weekly reports"
|
1385 |
msgstr "Ukentlige rapporter"
|
1386 |
|
1387 |
+
#: ../settings.php:937
|
1388 |
msgid "Sunday"
|
1389 |
msgstr "Søndag"
|
1390 |
|
1391 |
+
#: ../settings.php:938
|
1392 |
msgid "Monday"
|
1393 |
msgstr "Mandag"
|
1394 |
|
1395 |
+
#: ../settings.php:939
|
1396 |
msgid "Tuesday"
|
1397 |
msgstr "Tirsdag"
|
1398 |
|
1399 |
+
#: ../settings.php:940
|
1400 |
msgid "Wednesday"
|
1401 |
msgstr "Onsdag"
|
1402 |
|
1403 |
+
#: ../settings.php:941
|
1404 |
msgid "Thursday"
|
1405 |
msgstr "Torsdag"
|
1406 |
|
1407 |
+
#: ../settings.php:942
|
1408 |
msgid "Friday"
|
1409 |
msgstr "Fredag"
|
1410 |
|
1411 |
+
#: ../settings.php:943
|
1412 |
msgid "Saturday"
|
1413 |
msgstr "Lørdag"
|
1414 |
|
1415 |
+
#: ../settings.php:1002 ../settings.php:1003
|
1416 |
msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
|
1417 |
msgstr "Hvis du bruker en plugin for caching, må du legge din nye innloggings-URL til listen over sider som ikke skal caches."
|
1418 |
|
1419 |
#. translators: preposition of time
|
1420 |
+
#: ../settings.php:953
|
1421 |
msgctxt "preposition of time"
|
1422 |
msgid "at"
|
1423 |
msgstr "klokken"
|
1424 |
|
1425 |
+
#: ../cerber-load.php:3496
|
1426 |
msgid "Weekly report"
|
1427 |
msgstr "Ukentlig rapport"
|
1428 |
|
1429 |
+
#: ../cerber-load.php:3499 ../cerber-load.php:3509
|
1430 |
msgid "To change reporting settings visit"
|
1431 |
msgstr "For å endre rapporteringsinnstillingene, besøk"
|
1432 |
|
1433 |
+
#: ../cerber-load.php:3532
|
1434 |
msgid "Your login page:"
|
1435 |
msgstr "Din innloggingsside"
|
1436 |
|
1437 |
+
#: ../cerber-load.php:3536
|
1438 |
msgid "Your license is valid until"
|
1439 |
msgstr "Din lisens er gyldig inntil"
|
1440 |
|
1441 |
+
#: ../cerber-load.php:3642
|
1442 |
msgid "Activity details"
|
1443 |
msgstr "Aktivitetsdetaljer"
|
1444 |
|
1445 |
+
#: ../settings.php:969
|
1446 |
msgid "Click to send now"
|
1447 |
msgstr "Klikk for å sende nå"
|
1448 |
|
1449 |
+
#: ../cerber-load.php:814
|
1450 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1451 |
msgstr "> > > WP Cerber-oversetter? For å få en gratis PRO-lisens, legg igjen din kontaktinfo her: https://wpcerber.com/contact"
|
1452 |
|
1453 |
+
#: ../dashboard.php:420
|
1454 |
msgid "Email has been sent to"
|
1455 |
msgstr "E-post har blitt sendt til"
|
1456 |
|
1457 |
+
#: ../dashboard.php:423
|
1458 |
msgid "Unable to send email to"
|
1459 |
msgstr "Kunne ikke sende e-post til"
|
1460 |
|
1461 |
+
#: ../dashboard.php:2449
|
1462 |
msgid "Not permitted for one country"
|
1463 |
msgid_plural "Not permitted for %d countries"
|
1464 |
msgstr[0] "Ikke tillatt for ett land"
|
1465 |
msgstr[1] "Ikke tillatt for %d land"
|
1466 |
|
1467 |
+
#: ../dashboard.php:2600
|
1468 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1469 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
1470 |
msgstr "Valgte land er tillatt å %s, andre land er ikke tillatt å"
|
1471 |
|
1472 |
+
#: ../dashboard.php:2603
|
1473 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1474 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
1475 |
msgstr "Valgte land er ikke tillatt å %s, andre land er tillatt å"
|
1476 |
|
1477 |
+
#: ../cerber-load.php:3630
|
|
|
|
|
|
|
|
|
|
|
1478 |
msgid "Weekly Report"
|
1479 |
msgstr "Ukentlig rapport"
|
1480 |
|
1481 |
+
#: ../settings.php:88
|
1482 |
msgid "Use 404 template from the active theme"
|
1483 |
msgstr "Bruk malen for 404-siden fra det aktive temaet."
|
1484 |
|
1485 |
+
#: ../settings.php:88
|
1486 |
msgid "Display simple 404 page"
|
1487 |
msgstr "Vis en enkel 404-side"
|
1488 |
|
1489 |
+
#: ../settings.php:178
|
1490 |
msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
|
1491 |
msgstr "Skriv inn en del av en spørringsstreng for å ekskludere en forespørsel fra undersøkelse av systemet. En feorespørsel per linje."
|
1492 |
|
1493 |
+
#: ../settings.php:263 ../settings.php:494
|
1494 |
msgid "if empty, email from notification settings will be used"
|
1495 |
msgstr "hvis feltet er tomt, vil e-postadressen fra varselinnstillingene bli brukt"
|
1496 |
|
1497 |
+
#: ../settings.php:251
|
1498 |
msgid "Enable reporting"
|
1499 |
msgstr "Aktivér rapportering"
|
1500 |
|
1501 |
+
#: ../cerber-load.php:3560
|
1502 |
msgid "Your last sign-in was %s from %s"
|
1503 |
msgstr "Din siste innlogging var %s fra %s"
|
1504 |
|
1505 |
+
#: ../cerber-load.php:3656
|
1506 |
msgid "Attempts to log in with non-existent username"
|
1507 |
msgstr "Forsøk på å logge inn med ikke-eksisterende brukernavn"
|
1508 |
|
1509 |
+
#: ../dashboard.php:209
|
1510 |
msgid "IP address, IPv4 address range or subnet"
|
1511 |
msgstr "IP-adresse, IPv4-adresseområde eller subnet"
|
1512 |
|
1513 |
+
#: ../dashboard.php:211
|
1514 |
msgid "Optional comment for this entry"
|
1515 |
msgstr "Valgfri kommentar for denne oppføringen"
|
1516 |
|
1517 |
+
#: ../dashboard.php:252
|
1518 |
msgid "You cannot add your IP address or network"
|
1519 |
msgstr "Du kan ikke legge til din IP-adresse eller nettverk"
|
1520 |
|
1521 |
+
#: ../cerber-news.php:190
|
1522 |
msgid "Cool!"
|
1523 |
msgstr "Kult!"
|
1524 |
|
1525 |
+
#: ../settings.php:154
|
1526 |
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1527 |
msgstr "For å spesifisere et REGEX-mønster, pakk mønsteret inn i to skråstreker."
|
1528 |
|
1530 |
msgid "Cerber Traffic Inspector"
|
1531 |
msgstr "Cerber Trafikkinspektør"
|
1532 |
|
1533 |
+
#: ../dashboard.php:56 ../dashboard.php:1288 ../dashboard.php:2718
|
1534 |
msgid "Traffic Inspector"
|
1535 |
msgstr "Trafikkinspektør"
|
1536 |
|
1537 |
+
#: ../dashboard.php:1320
|
1538 |
msgid "Traffic"
|
1539 |
msgstr "Trafikk"
|
1540 |
|
1541 |
+
#: ../dashboard.php:2723
|
1542 |
msgid "Live traffic"
|
1543 |
msgstr "Live trafikk"
|
1544 |
|
1545 |
+
#: ../dashboard.php:3049
|
1546 |
msgid "Request"
|
1547 |
msgstr "Forespørsel"
|
1548 |
|
1549 |
+
#: ../dashboard.php:3051
|
1550 |
msgid "Host Info"
|
1551 |
msgstr "Vertsinformasjon"
|
1552 |
|
1553 |
+
#: ../dashboard.php:3052
|
1554 |
msgid "User Agent"
|
1555 |
msgstr "Brukeragent"
|
1556 |
|
1557 |
+
#: ../dashboard.php:3077
|
1558 |
msgid "All requests"
|
1559 |
msgstr "Alle forespørsler"
|
1560 |
|
1561 |
+
#: ../dashboard.php:3082
|
1562 |
msgid "Not logged in visitors"
|
1563 |
msgstr "Ikke-innloggede besøkende"
|
1564 |
|
1565 |
+
#: ../dashboard.php:3083
|
1566 |
msgid "Form submissions"
|
1567 |
msgstr "Innsendte skjema"
|
1568 |
|
1569 |
+
#: ../dashboard.php:3084
|
1570 |
msgid "Page Not Found"
|
1571 |
msgstr "Siden ikke funnet"
|
1572 |
|
1573 |
+
#: ../dashboard.php:3085
|
1574 |
msgid "REST API"
|
1575 |
msgstr "REST API"
|
1576 |
|
1577 |
+
#: ../dashboard.php:3086
|
1578 |
msgid "XML-RPC"
|
1579 |
msgstr "XML-RPC"
|
1580 |
|
1581 |
+
#: ../dashboard.php:3091
|
1582 |
msgid "Longer than"
|
1583 |
msgstr "Lengre enn"
|
1584 |
|
1585 |
+
#: ../dashboard.php:3107
|
1586 |
msgid "Refresh"
|
1587 |
msgstr "Oppdater"
|
1588 |
|
1589 |
+
#: ../common.php:115
|
1590 |
msgid "Check for requests"
|
1591 |
msgstr "Se etter forespørsler"
|
1592 |
|
1593 |
+
#: ../common.php:1204
|
1594 |
msgid "Not specified"
|
1595 |
msgstr "Ikke spesifisert"
|
1596 |
|
1597 |
+
#: ../settings.php:293
|
1598 |
msgid "Logging mode"
|
1599 |
msgstr "Loggføringsmodus"
|
1600 |
|
1601 |
+
#: ../settings.php:299
|
1602 |
msgid "Logging disabled"
|
1603 |
msgstr "Loggføring deaktivert"
|
1604 |
|
1605 |
+
#: ../settings.php:300
|
1606 |
msgid "Smart"
|
1607 |
msgstr "Smart"
|
1608 |
|
1609 |
+
#: ../settings.php:301
|
1610 |
msgid "All traffic"
|
1611 |
msgstr "All trafikk"
|
1612 |
|
1613 |
+
#: ../settings.php:305
|
1614 |
msgid "Ignore crawlers"
|
1615 |
msgstr "Ingrorer søkeroboter"
|
1616 |
|
1617 |
+
#: ../settings.php:315
|
1618 |
msgid "Mask these form fields"
|
1619 |
msgstr "Maskér disse skjemafeltene"
|
1620 |
|
1621 |
+
#: ../settings.php:351
|
1622 |
msgid "milliseconds"
|
1623 |
msgstr "millisekunder"
|
1624 |
|
1625 |
+
#: ../settings.php:271
|
1626 |
msgid "Inspection"
|
1627 |
msgstr "Inspeksjon"
|
1628 |
|
1629 |
+
#: ../settings.php:272
|
1630 |
msgid "Enable traffic inspection"
|
1631 |
msgstr "Aktiver trafikkinspeksjon"
|
1632 |
|
1633 |
+
#: ../settings.php:292
|
1634 |
msgid "Logging"
|
1635 |
msgstr "Loggføring"
|
1636 |
|
1637 |
+
#: ../settings.php:310
|
1638 |
msgid "Save request fields"
|
1639 |
msgstr "Lagre forespørselfelter"
|
1640 |
|
1641 |
+
#: ../settings.php:346
|
1642 |
msgid "Page generation time threshold"
|
1643 |
msgstr "Tidsgrense for sidegenerering"
|
1644 |
|
1645 |
+
#: ../dashboard.php:3069
|
1646 |
msgid "No requests have been logged."
|
1647 |
msgstr "Ingen forespørsler har blitt loggført"
|
1648 |
|
1649 |
+
#: ../dashboard.php:1287
|
1650 |
msgid "enabled"
|
1651 |
msgstr "aktivert"
|
1652 |
|
1653 |
+
#: ../dashboard.php:1292
|
1654 |
msgid "no connection"
|
1655 |
msgstr "ingen forbindelse"
|
1656 |
|
1657 |
+
#: ../dashboard.php:3403
|
1658 |
msgid "Advanced search"
|
1659 |
msgstr "Avansert søk"
|
1660 |
|
1661 |
+
#: ../dashboard.php:1053
|
1662 |
msgid "Last seen"
|
1663 |
msgstr "Sist sett"
|
1664 |
|
1665 |
+
#: ../common.php:871 ../common.php:931
|
1666 |
msgid "Probing for vulnerable PHP code"
|
1667 |
msgstr "Søker etter sårbar PHP-kode"
|
1668 |
|
1669 |
+
#: ../dashboard.php:3361
|
1670 |
msgid "Any"
|
1671 |
msgstr "Enhver"
|
1672 |
|
1673 |
+
#: ../cerber-load.php:3281
|
1674 |
msgid "We're sorry, you are not allowed to proceed"
|
1675 |
msgstr "Beklager, du har ikke tillatelse til å fortsette"
|
1676 |
|
1677 |
+
#: ../settings.php:283
|
1678 |
msgid "Request whitelist"
|
1679 |
msgstr "Be om hvitlisting"
|
1680 |
|
1681 |
+
#: ../settings.php:289
|
1682 |
msgid "Enter a request URI to exclude the request from inspection. One item per line."
|
1683 |
msgstr "Skriv inn en forespørsels-URI for å ekskludere feorespørselen fra inspeksjon. Ett element per linje"
|
1684 |
|
1685 |
+
#: ../settings.php:327
|
1686 |
msgid "Save request headers"
|
1687 |
msgstr "Lagre forespørsels-headere"
|
1688 |
|
1689 |
+
#: ../settings.php:333
|
1690 |
msgid "Save $_SERVER"
|
1691 |
msgstr "Lagre $_SERVER"
|
1692 |
|
1693 |
+
#: ../settings.php:339
|
1694 |
msgid "Save request cookies"
|
1695 |
msgstr "Lagre forespørsels-cookies"
|
1696 |
|
1697 |
+
#: ../settings.php:123
|
1698 |
msgid "Protect admin scripts"
|
1699 |
msgstr "Beskytt admin-scripts"
|
1700 |
|
1701 |
+
#: ../settings.php:123
|
1702 |
msgid "Block unauthorized access to load-scripts.php and load-styles.php"
|
1703 |
msgstr "Blokker uautorisert tilgang til load-scripts.php og load-styles.php"
|
1704 |
|
1705 |
+
#: ../common.php:1830
|
1706 |
msgid "Unable to create the directory"
|
1707 |
msgstr "Kunne ikke opprette mappen"
|
1708 |
|
1709 |
+
#: ../common.php:1835
|
1710 |
msgid "Destination folder access denied"
|
1711 |
msgstr "Tilgang til målmappen ble nektet"
|
1712 |
|
1713 |
+
#: ../common.php:1838
|
1714 |
msgid "File not found"
|
1715 |
msgstr "Kunne ikke finne filen"
|
1716 |
|
1717 |
+
#: ../common.php:1841
|
1718 |
msgid "Unable to copy the file"
|
1719 |
msgstr "Kunne ikke kopiere filen"
|
1720 |
|
1721 |
+
#: ../common.php:1847
|
1722 |
msgid "Unable to delete the file"
|
1723 |
msgstr "Kunne ikke slette filen"
|
1724 |
|
1725 |
+
#: ../settings.php:72
|
1726 |
msgid "Plugin initialization"
|
1727 |
msgstr "Initialisering av plugin"
|
1728 |
|
1729 |
+
#: ../settings.php:73
|
1730 |
msgid "Load security engine"
|
1731 |
msgstr "Last inn sikkerhetssystem"
|
1732 |
|
1733 |
+
#: ../settings.php:73
|
1734 |
msgid "Legacy mode"
|
1735 |
msgstr "Legacy-modus"
|
1736 |
|
1737 |
+
#: ../settings.php:73
|
1738 |
msgid "Standard mode"
|
1739 |
msgstr "Standardmodus"
|
1740 |
|
1741 |
+
#: ../settings.php:980
|
1742 |
msgid "Plugin initialization mode has not been changed"
|
1743 |
msgstr "Initialisering av plugin er ikke forandret"
|
1744 |
|
1747 |
msgid "This is a standard boot module for WP Cerber Security & Antispam plugin. It was installed when you set the plugin initialization mode to Standard. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1748 |
msgstr "Dette er en standard oppstartsmodul for WP Cerber Security & Antispam plugin. Den ble installert når du satte pluginens initialiseringsmodus til Standard. Les mer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1749 |
|
1750 |
+
#: ../common.php:872
|
1751 |
msgid "Attempt to upload executable file denied"
|
1752 |
msgstr "Forsøk på å laste opp kjørbar fil ble nektet"
|
1753 |
|
1754 |
+
#: ../common.php:873
|
1755 |
msgid "File upload denied"
|
1756 |
msgstr "Filopplasting ble nektet"
|
1757 |
|
1758 |
+
#: ../settings.php:96
|
|
|
|
|
|
|
|
|
|
|
1759 |
msgid "Custom login URL may contain only letters, numbers, dashes and underscores"
|
1760 |
+
msgstr "Egendefinert innloggingsadresse kan kun inneholde bokstaver, tall, bindestreker og understreker."
|
1761 |
|
1762 |
+
#: ../settings.php:178 ../settings.php:289
|
1763 |
msgid "To specify a REGEX pattern, enclose a whole line in two braces."
|
1764 |
+
msgstr "For å spesifisere et REGEX-mønster, kan du pakke en linke inn i { og }."
|
1765 |
|
1766 |
+
#: ../settings.php:511
|
1767 |
msgid "Be careful about enabling these options."
|
1768 |
+
msgstr "Vær forsiktig med å aktivere disse valgene."
|
1769 |
|
1770 |
+
#: ../settings.php:511
|
1771 |
msgid "If you forget your Custom login URL, you will be unable to log in."
|
1772 |
+
msgstr "Hvis du glemmer din egendefinerte innloggingsadresse, vil du ikke kunne logge inn."
|
1773 |
+
|
1774 |
+
#: ../dashboard.php:64 ../cerber-scanner.php:79
|
1775 |
+
msgid "Site Integrity"
|
1776 |
+
msgstr "Sideintegritet"
|
1777 |
+
|
1778 |
+
#: ../dashboard.php:1305 ../dashboard.php:1307 ../cerber-scanner.php:1176
|
1779 |
+
msgid "Disabled"
|
1780 |
+
msgstr "Deaktivert"
|
1781 |
+
|
1782 |
+
#: ../dashboard.php:1306 ../cerber-scanner.php:750
|
1783 |
+
msgid "Quick Scan"
|
1784 |
+
msgstr "Hurtigskann"
|
1785 |
+
|
1786 |
+
#: ../dashboard.php:1308 ../cerber-scanner.php:750
|
1787 |
+
msgid "Full Scan"
|
1788 |
+
msgstr "Full skann"
|
1789 |
+
|
1790 |
+
#. Name of the plugin
|
1791 |
+
#:
|
1792 |
+
msgid "WP Cerber Security, Antispam & Malware Scan"
|
1793 |
+
msgstr "WP Cerber Sikkerhet, Antispam & Malware-søk"
|
1794 |
+
|
1795 |
+
#: ../common.php:896
|
1796 |
+
msgid "Denied"
|
1797 |
+
msgstr "Nektet"
|
1798 |
+
|
1799 |
+
#: ../settings.php:79 ../settings.php:278
|
1800 |
+
msgid "Use White IP Access List"
|
1801 |
+
msgstr "Bruk hvitliste"
|
1802 |
+
|
1803 |
+
#: ../settings.php:86
|
1804 |
+
msgid "Disable dashboard redirection"
|
1805 |
+
msgstr "Deaktiver omdirigering av kontrollpanelet"
|
1806 |
+
|
1807 |
+
#: ../settings.php:86
|
1808 |
+
msgid "Disable automatic redirection to the login page when /wp-admin/ is requested by an unauthorized request"
|
1809 |
+
msgstr "Deaktiver automatisk omdirigering til innloggingssiden ved uautoriserte oppslag på /wp-admin/ "
|
1810 |
+
|
1811 |
+
#: ../settings.php:367
|
1812 |
+
msgid "Scanner settings"
|
1813 |
+
msgstr "Skannerinnstillinger"
|
1814 |
+
|
1815 |
+
#: ../settings.php:368
|
1816 |
+
msgid "Custom signatures"
|
1817 |
+
msgstr "Egendefinerte signaturer"
|
1818 |
+
|
1819 |
+
#: ../settings.php:374
|
1820 |
+
msgid "Specify custom PHP code signatures. One item per line. To specify a REGEX pattern, enclose a whole line in two braces."
|
1821 |
+
msgstr "Spesifiser egendefinerte PHP-signaturer. Ett element per linje. For å spesifisere REGEX-mønster, pakk en linje inn i { og }."
|
1822 |
+
|
1823 |
+
#: ../settings.php:376
|
1824 |
+
msgid "Unwanted file extensions"
|
1825 |
+
msgstr "Uønskede filendelser"
|
1826 |
+
|
1827 |
+
#: ../settings.php:382
|
1828 |
+
msgid "Specify file extensions to search for. Full scan only. Use comma to separate items."
|
1829 |
+
msgstr "Spesifiser filendelser å søke etter. Kun tilgjengelig under full skann. Bruk komma for å skille mellom elementer."
|
1830 |
+
|
1831 |
+
#: ../settings.php:384
|
1832 |
+
msgid "Directories to exclude"
|
1833 |
+
msgstr "Mapper å ekskludere"
|
1834 |
+
|
1835 |
+
#: ../settings.php:390
|
1836 |
+
msgid "Specify directories to exclude from scanning. Use absolute paths. One item per line."
|
1837 |
+
msgstr "Spesifiser mapper som skal ekskluderes fra skanningen. Bruk absolutte adresser. Ett element per linje."
|
1838 |
+
|
1839 |
+
#: ../settings.php:405
|
1840 |
+
msgid "Scan temporary directory"
|
1841 |
+
msgstr "Skann midlertidig katalog"
|
1842 |
+
|
1843 |
+
#: ../settings.php:412
|
1844 |
+
#, fuzzy
|
1845 |
+
msgid "Scan session directory"
|
1846 |
+
msgstr "Skann øktkatalog"
|
1847 |
+
|
1848 |
+
#: ../settings.php:418
|
1849 |
+
msgid "Delete quarantined files after"
|
1850 |
+
msgstr "Slett filer i karantene etter"
|
1851 |
+
|
1852 |
+
#: ../settings.php:433
|
1853 |
+
msgid "Launch Quick Scan"
|
1854 |
+
msgstr "Start hurtigskann"
|
1855 |
+
|
1856 |
+
#: ../cerber-scanner.php:1177
|
1857 |
+
msgid "Every hour"
|
1858 |
+
msgstr "Hver time"
|
1859 |
+
|
1860 |
+
#: ../cerber-scanner.php:1178
|
1861 |
+
msgid "Every 3 hours"
|
1862 |
+
msgstr "Hver 3. time"
|
1863 |
+
|
1864 |
+
#: ../cerber-scanner.php:1179
|
1865 |
+
msgid "Every 6 hours"
|
1866 |
+
msgstr "Hver 6. time"
|
1867 |
+
|
1868 |
+
#: ../settings.php:440
|
1869 |
+
msgid "Launch Full Scan"
|
1870 |
+
msgstr "Start full skann"
|
1871 |
+
|
1872 |
+
#: ../settings.php:450
|
1873 |
+
msgid "Low severity"
|
1874 |
+
msgstr "Lav alvorlighetsgrad"
|
1875 |
+
|
1876 |
+
#: ../settings.php:450
|
1877 |
+
msgid "Medium severity"
|
1878 |
+
msgstr "Medium alvorlighetsgrad"
|
1879 |
+
|
1880 |
+
#: ../settings.php:450
|
1881 |
+
msgid "High severity"
|
1882 |
+
msgstr "Høy alvorlighetsgrad"
|
1883 |
+
|
1884 |
+
#: ../settings.php:451
|
1885 |
+
msgid "Report an issue if any of the following is true"
|
1886 |
+
msgstr "Rapporter en hendelse hvis noe av følgende stemmer"
|
1887 |
+
|
1888 |
+
#: ../settings.php:459
|
1889 |
+
msgid "Send email report"
|
1890 |
+
msgstr "Send rapport på e-post"
|
1891 |
+
|
1892 |
+
#: ../settings.php:465
|
1893 |
+
msgid "After every scan"
|
1894 |
+
msgstr "Etter hver skanning"
|
1895 |
+
|
1896 |
+
#: ../settings.php:466
|
1897 |
+
msgid "If any changes in scan results occurred"
|
1898 |
+
msgstr "Hvis det oppdages en endring i skanningsresultatet"
|
1899 |
+
|
1900 |
+
#: ../settings.php:471
|
1901 |
+
msgid "Include file sizes"
|
1902 |
+
msgstr "Inkluder filstørrelser"
|
1903 |
+
|
1904 |
+
#: ../settings.php:478
|
1905 |
+
msgid "Include scan errors"
|
1906 |
+
msgstr "Inkluder skanningsfeil"
|
1907 |
+
|
1908 |
+
#: ../cerber-load.php:4257 ../cerber-scanner.php:84
|
1909 |
+
msgid "Security Scanner"
|
1910 |
+
msgstr "Sikkerhetsskanning"
|
1911 |
+
|
1912 |
+
#: ../cerber-scanner.php:86
|
1913 |
+
msgid "Scheduling"
|
1914 |
+
msgstr "Planlegging"
|
1915 |
+
|
1916 |
+
#: ../cerber-scanner.php:133
|
1917 |
+
msgid "Currently a scheduled scan in progress. Please wait until it is finished."
|
1918 |
+
msgstr "En planlagt skanning pågår. Vennligst vent til den er fullført."
|
1919 |
+
|
1920 |
+
#: ../cerber-scanner.php:137
|
1921 |
+
msgid "Previous scan started %s has not been completed. Continue scanning?"
|
1922 |
+
msgstr "Forrige skanning som startet %s er ikke fullført. Fortsette skanningen?"
|
1923 |
+
|
1924 |
+
#: ../cerber-scanner.php:146
|
1925 |
+
msgid "It seems this website has never been scanned. To start scanning click the button below."
|
1926 |
+
msgstr "Det ser ut for at denne websiden aldri har blitt skannet. Trykk på knappen under for å starte skanning."
|
1927 |
+
|
1928 |
+
#: ../cerber-scanner.php:149
|
1929 |
+
msgid "Start Quick Scan"
|
1930 |
+
msgstr "Start hurtigskanning"
|
1931 |
+
|
1932 |
+
#: ../cerber-scanner.php:150
|
1933 |
+
msgid "Start Full Scan"
|
1934 |
+
msgstr "Start full skanning"
|
1935 |
+
|
1936 |
+
#: ../cerber-scanner.php:151
|
1937 |
+
msgid "Stop Scanning"
|
1938 |
+
msgstr "Stopp skanning"
|
1939 |
+
|
1940 |
+
#: ../cerber-scanner.php:152
|
1941 |
+
msgid "Continue Scanning"
|
1942 |
+
msgstr "Fortsett skanning"
|
1943 |
+
|
1944 |
+
#: ../cerber-scanner.php:181
|
1945 |
+
msgid "Delete"
|
1946 |
+
msgstr "Slett"
|
1947 |
+
|
1948 |
+
#: ../cerber-scanner.php:1126
|
1949 |
+
msgid "Verified"
|
1950 |
+
msgstr "Verifisert"
|
1951 |
+
|
1952 |
+
#: ../cerber-scanner.php:1133
|
1953 |
+
msgid "Integrity data not found"
|
1954 |
+
msgstr "Integritetsdata ikke funnet"
|
1955 |
+
|
1956 |
+
#: ../cerber-scanner.php:1134
|
1957 |
+
msgid "Unable to check the integrity of the plugin due to a network error"
|
1958 |
+
msgstr "Forhindret fra å sjekke pluginens integritet på grunn av en nettverksfeil"
|
1959 |
+
|
1960 |
+
#: ../cerber-scanner.php:1135
|
1961 |
+
msgid "Unable to check the integrity of WordPress files due to a network error"
|
1962 |
+
msgstr "Forhindret fra å sjekke WordPress-filenes integritet på grunn av en nettverksfeil"
|
1963 |
+
|
1964 |
+
#: ../cerber-scanner.php:1136
|
1965 |
+
msgid "Unable to check the integrity of the theme due to a network error"
|
1966 |
+
msgstr "Forhindret fra å sjekke malens integritet på grunn av en nettverksfeil"
|
1967 |
+
|
1968 |
+
#: ../cerber-scanner.php:1139
|
1969 |
+
msgid "Local file doesn't exist"
|
1970 |
+
msgstr "Den lokale filen eksisterer ikke"
|
1971 |
+
|
1972 |
+
#: ../cerber-scanner.php:1141
|
1973 |
+
msgid "Unable to process file"
|
1974 |
+
msgstr "Kunne ikke behandle filen"
|
1975 |
+
|
1976 |
+
#: ../cerber-scanner.php:1142 ../cerber-scanner.php:4435
|
1977 |
+
msgid "Unable to open file"
|
1978 |
+
msgstr "Kunne ikke åpne filen"
|
1979 |
+
|
1980 |
+
#: ../cerber-scanner.php:1144
|
1981 |
+
msgid "Checksum mismatch"
|
1982 |
+
msgstr "Sjekksummen matcher ikke"
|
1983 |
+
|
1984 |
+
#: ../cerber-scanner.php:1147
|
1985 |
+
msgid "Suspicious code found"
|
1986 |
+
msgstr "Mistenkelig kode ble funnet"
|
1987 |
+
|
1988 |
+
#: ../cerber-scanner.php:1148
|
1989 |
+
msgid "Potentially malicious code found"
|
1990 |
+
msgstr "Potensielt ondsinnet kode ble funnet"
|
1991 |
+
|
1992 |
+
#: ../cerber-scanner.php:1149
|
1993 |
+
msgid "Unattended suspicious file"
|
1994 |
+
msgstr "Ubehandlet mistenkelig fil"
|
1995 |
+
|
1996 |
+
#: ../cerber-scanner.php:1150
|
1997 |
+
msgid "Executable code found"
|
1998 |
+
msgstr "Kjørbar kode ble funnet"
|
1999 |
+
|
2000 |
+
#: ../cerber-scanner.php:1154
|
2001 |
+
msgid "Unwanted file extension"
|
2002 |
+
msgstr "Uønsket filendelse"
|
2003 |
+
|
2004 |
+
#: ../cerber-scanner.php:1156
|
2005 |
+
msgid "Content has been modified"
|
2006 |
+
msgstr "Innholdet er modifisert"
|
2007 |
+
|
2008 |
+
#: ../cerber-scanner.php:1157
|
2009 |
+
msgid "New file"
|
2010 |
+
msgstr "Ny fil"
|
2011 |
+
|
2012 |
+
#: ../cerber-scanner.php:2205
|
2013 |
+
msgid "Custom signature found"
|
2014 |
+
msgstr "Egendefinert signatur funnet"
|
2015 |
+
|
2016 |
+
#: ../cerber-scanner.php:3411
|
2017 |
+
msgid "Scanning folders for files"
|
2018 |
+
msgstr "Skanner mapper for filer"
|
2019 |
+
|
2020 |
+
#: ../cerber-scanner.php:3415
|
2021 |
+
msgid "Parsing the list of files"
|
2022 |
+
msgstr "Analyserer fillisten"
|
2023 |
+
|
2024 |
+
#: ../cerber-scanner.php:3416
|
2025 |
+
msgid "Checking for new and modified files"
|
2026 |
+
msgstr "Sjekker etter nye og modifiserte filer"
|
2027 |
+
|
2028 |
+
#: ../cerber-scanner.php:3417
|
2029 |
+
msgid "Verifying the integrity of WordPress"
|
2030 |
+
msgstr "Verifiserer integriteten til WordPress"
|
2031 |
+
|
2032 |
+
#: ../cerber-scanner.php:3418
|
2033 |
+
msgid "Verifying the integrity of the plugins"
|
2034 |
+
msgstr "Verifiserer integriteten til plugins"
|
2035 |
+
|
2036 |
+
#: ../cerber-scanner.php:3419
|
2037 |
+
msgid "Verifying the integrity of the themes"
|
2038 |
+
msgstr "Verifiserer integriteten til maler"
|
2039 |
+
|
2040 |
+
#: ../cerber-scanner.php:3420
|
2041 |
+
msgid "Searching for malicious code"
|
2042 |
+
msgstr "Søker etter ondsinnet kode"
|
2043 |
+
|
2044 |
+
#: ../cerber-scanner.php:3421
|
2045 |
+
msgid "Finalizing the scan"
|
2046 |
+
msgstr "Ferdigstiller skanningen"
|
2047 |
+
|
2048 |
+
#: ../cerber-scanner.php:3499
|
2049 |
+
msgid "Files to scan"
|
2050 |
+
msgstr "Filer å skanne"
|
2051 |
+
|
2052 |
+
#: ../cerber-scanner.php:3507
|
2053 |
+
msgid "Critical issues"
|
2054 |
+
msgstr "Kritiske hendelser"
|
2055 |
+
|
2056 |
+
#: ../cerber-scanner.php:3511 ../cerber-scanner.php:4625
|
2057 |
+
msgid "Issues total"
|
2058 |
+
msgstr "Totale hendelser"
|
2059 |
+
|
2060 |
+
#: ../cerber-scanner.php:3871
|
2061 |
+
msgid "The directory is not writable"
|
2062 |
+
msgstr "Kan ikke skrive til mappen"
|
2063 |
+
|
2064 |
+
#: ../cerber-scanner.php:3889
|
2065 |
+
msgid "Unable to create WP CERBER directory"
|
2066 |
+
msgstr "Kan ikke opprette WP CERBER-mappen"
|
2067 |
+
|
2068 |
+
#: ../cerber-scanner.php:4096
|
2069 |
+
msgid "File access error. Possibly scan results are outdated. Please run Quick or Full Scan."
|
2070 |
+
msgstr "Filtilgangsfeil. Skanningsresultatene kan være utdaterte. Vennligst utfør hurtigskann eller full skanning."
|
2071 |
+
|
2072 |
+
#: ../cerber-scanner.php:4707
|
2073 |
+
msgid "To view full report visit"
|
2074 |
+
msgstr "For å se full rapport, besøk"
|
2075 |
+
|
2076 |
+
#: ../cerber-load.php:3506
|
2077 |
+
msgid "Scanner Report"
|
2078 |
+
msgstr "Skannerapport"
|
2079 |
+
|
2080 |
+
#: ../settings.php:392
|
2081 |
+
msgid "Monitor new files"
|
2082 |
+
msgstr "Overvåk nye filer"
|
2083 |
+
|
2084 |
+
#: ../settings.php:399
|
2085 |
+
msgid "Monitor modified files"
|
2086 |
+
msgstr "Overvåk modifiserte filer"
|
2087 |
+
|
2088 |
+
#: ../settings.php:467
|
2089 |
+
msgid "If new issues found"
|
2090 |
+
msgstr "Hvis nye hendelser oppdages"
|
2091 |
+
|
2092 |
+
#: ../settings.php:1223
|
2093 |
+
msgid "The schedule has been updated"
|
2094 |
+
msgstr "Planleggingen oppdateres"
|
2095 |
+
|
2096 |
+
#: ../settings.php:1226
|
2097 |
+
msgid "Unable to updated the schedule"
|
2098 |
+
msgstr "Planleggingen kan ikke oppdateres"
|
2099 |
+
|
2100 |
+
#: ../cerber-scanner.php:1153 ../cerber-scanner.php:2368
|
2101 |
+
msgid "Suspicious directives found"
|
2102 |
+
msgstr "Fant mistenkelige direktiver"
|
2103 |
+
|
2104 |
+
#: ../cerber-scanner.php:2366
|
2105 |
+
msgid "Suspicious code instruction found"
|
2106 |
+
msgstr "Fant mistenkelig kodeinstruksjon"
|
2107 |
+
|
2108 |
+
#: ../cerber-scanner.php:2367
|
2109 |
+
msgid "Suspicious code signatures found"
|
2110 |
+
msgstr "Fant mistenkelige kodesignaturer"
|
2111 |
+
|
2112 |
+
#: ../cerber-scanner.php:2370
|
2113 |
+
msgid "To solve this issue you have to reinstall %s or update it to the latest version."
|
2114 |
+
msgstr "For å løse denne hendelsen må du installere %s eller oppdatere den til siste versjon."
|
2115 |
+
|
2116 |
+
#: ../cerber-scanner.php:2371
|
2117 |
+
msgid "Please upload a reference ZIP archive"
|
2118 |
+
msgstr "Vennligst last opp en referanse-ZIP"
|
2119 |
+
|
2120 |
+
#: ../cerber-scanner.php:2372
|
2121 |
+
msgid "Resolve issue"
|
2122 |
+
msgstr "Løs hendelse"
|
2123 |
+
|
2124 |
+
#: ../cerber-scanner.php:3583
|
2125 |
+
msgid "We have not found any integrity data to verify"
|
2126 |
+
msgstr "Kunne ikke finne noen integritetsdata å verifisere"
|
2127 |
+
|
2128 |
+
#: ../cerber-scanner.php:3585
|
2129 |
+
msgid "You have to upload a ZIP archive from which you've installed it. This enables the security scanner to verify the integrity of the code and detect malware."
|
2130 |
+
msgstr "Du må laste opp en ZIP-fil som du har installert fra. Dette gjør det mulig for sikkerhetsskanningen å verifisere kodens integritet og oppdage malware."
|
2131 |
+
|
2132 |
+
#: ../cerber-scanner.php:4581
|
2133 |
+
msgid "Full Scan Report"
|
2134 |
+
msgstr "Full skanningsrapport"
|
2135 |
+
|
2136 |
+
#: ../cerber-scanner.php:4581
|
2137 |
+
msgid "Quick Scan Report"
|
2138 |
+
msgstr "Hurtigskanningsrapport"
|
2139 |
+
|
2140 |
+
#: ../cerber-scanner.php:4594
|
2141 |
+
msgid "Files scanned"
|
2142 |
+
msgstr "Filer skannet"
|
2143 |
+
|
2144 |
+
#: ../dashboard.php:198 ../dashboard.php:926 ../dashboard.php:957 ../dashboard.
|
2145 |
+
#: php:1069
|
2146 |
+
msgid "Check for activities"
|
2147 |
+
msgstr "Sjekk for aktivitet"
|
2148 |
+
|
2149 |
+
#: ../dashboard.php:1032
|
2150 |
+
msgid "Activated"
|
2151 |
+
msgstr "Aktivert"
|
2152 |
+
|
2153 |
+
#: ../common.php:878
|
2154 |
+
msgid "Malicious request denied"
|
2155 |
+
msgstr "Mistenkelig forespørsel nektet"
|
2156 |
+
|
2157 |
+
#: ../common.php:882
|
2158 |
+
msgid "User activated"
|
2159 |
+
msgstr "Brukeraktivert"
|
2160 |
+
|
2161 |
+
#: ../common.php:897
|
2162 |
+
msgid "Suspicious number of fields"
|
2163 |
+
msgstr "Mistenkelig antall felt"
|
2164 |
+
|
2165 |
+
#: ../common.php:898
|
2166 |
+
msgid "Suspicious number of nested values"
|
2167 |
+
msgstr "Mistenkelig antall nøstede verdier"
|
2168 |
+
|
2169 |
+
#: ../common.php:899 ../common.php:932
|
2170 |
+
msgid "Malicious code detected"
|
2171 |
+
msgstr "Ondsinnet kode oppdaget"
|
2172 |
+
|
2173 |
+
#: ../common.php:933
|
2174 |
+
msgid "Attempt to upload a file with malicious code"
|
2175 |
+
msgstr "Forsøk på å laste opp en fil med ondsinnet kode"
|
2176 |
+
|
2177 |
+
#: ../common.php:1080
|
2178 |
+
msgid "Bytes"
|
2179 |
+
msgstr "Bytes"
|
2180 |
+
|
2181 |
+
#: ../cerber-scanner.php:1132
|
2182 |
+
msgid "Vulnerability found"
|
2183 |
+
msgstr "Svakhet funnet"
|
2184 |
+
|
2185 |
+
#: ../cerber-scanner.php:1137
|
2186 |
+
msgid "Unable to check the integrity due to a DB error"
|
2187 |
+
msgstr "Kunne ikke sjekke integriteten på grunn av en databasefeil"
|
2188 |
+
|
2189 |
+
#: ../cerber-scanner.php:3412
|
2190 |
+
msgid "Scanning the upload folder for files"
|
2191 |
+
msgstr "Skanner upload-mappen for filer"
|
2192 |
+
|
2193 |
+
#: ../cerber-scanner.php:3413
|
2194 |
+
msgid "Scanning the temp folder for files"
|
2195 |
+
msgstr "Skanner temp-mappen for filer"
|
2196 |
+
|
2197 |
+
#: ../cerber-scanner.php:3414
|
2198 |
+
msgid "Scanning the session folder for files"
|
2199 |
+
msgstr "Skanner øktmappen for filer"
|
2200 |
+
|
2201 |
+
#: ../settings.php:432
|
2202 |
+
msgid "Automated recurring scan schedule"
|
2203 |
+
msgstr "Automatisert gjentakende skanningsplan"
|
2204 |
+
|
2205 |
+
#: ../settings.php:448
|
2206 |
+
msgid "Scan results reporting"
|
2207 |
+
msgstr "Rapportering av skanneresultater"
|
2208 |
+
|
2209 |
+
#: ../dashboard.php:3079
|
2210 |
+
msgid "Suspicious activity"
|
2211 |
+
msgstr "Mistenkelig aktivitet"
|
2212 |
+
|
2213 |
+
#: ../dashboard.php:3080
|
2214 |
+
msgid "Errors"
|
2215 |
+
msgstr "Feil"
|
2216 |
+
|
2217 |
+
#: ../dashboard.php:3451
|
2218 |
+
msgid "Antispam engine"
|
2219 |
+
msgstr "Antispam-system"
|
2220 |
+
|
2221 |
+
#. Description of the plugin
|
2222 |
+
#:
|
2223 |
+
msgid "Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications."
|
2224 |
+
msgstr "Beskytter WordPress mot hackerangrep, spam, trojanske hester og viruser. Malware skanner og integritetssjekker. Forsterker WordPress med et sett avanserte sikkerhetsalgoritmer. Spambeskyttelse med et sofistikert system for oppdagelse av boter og reCAPTCHA. Sporer bruker- og inntrengeraktivitet med epost-, mobil-, og skrivebordsvarslinger."
|
2225 |
+
|
2226 |
+
#: ../cerber-load.php:375
|
2227 |
+
msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
|
2228 |
+
msgstr "Du har overskredet antallet tillatte innloggingsforsøk. Vennligst prøv igjen om %d minutter."
|
2229 |
|
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 "Citadelstand"
|
78 |
|
@@ -84,8 +84,8 @@ msgstr "Drempelwaarde"
|
|
84 |
msgid "Duration"
|
85 |
msgstr "Duur"
|
86 |
|
87 |
-
#: ../cerber-load.php:
|
88 |
-
#:
|
89 |
msgid "Notifications"
|
90 |
msgstr "Meldingen"
|
91 |
|
@@ -93,42 +93,42 @@ msgstr "Meldingen"
|
|
93 |
msgid "Send notification to admin email"
|
94 |
msgstr "Melding versturen naar admin e-mailadres"
|
95 |
|
96 |
-
#: ../cerber-load.php:
|
97 |
#: tools.php:101 ../cerber-tools.php:182
|
98 |
msgid "Access Lists"
|
99 |
msgstr "Toegangslijsten"
|
100 |
|
101 |
-
#: ../dashboard.php:
|
102 |
-
#: /settings.php:106 ../settings.php:
|
103 |
msgid "Activity"
|
104 |
msgstr "Activiteit"
|
105 |
|
106 |
-
#: ../settings.php:
|
107 |
msgid "Lockouts"
|
108 |
msgstr "Uitsluitingen"
|
109 |
|
110 |
-
#: ../settings.php:
|
111 |
msgid "%s allowed retries in %s minutes"
|
112 |
msgstr "%s toegestane pogingen in %s minuten"
|
113 |
|
114 |
-
#: ../settings.php:
|
115 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
116 |
msgstr "Aanzetten na %s mislukte inlogpogingen binnen %s minuten"
|
117 |
|
118 |
-
#: ../dashboard.php:133 ../dashboard.php:
|
119 |
-
#: 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 "Lokale gebruiker"
|
130 |
|
131 |
-
#: ../dashboard.php:
|
132 |
msgid "Username used"
|
133 |
msgstr "Toegepaste gebruikersnaam"
|
134 |
|
@@ -136,41 +136,41 @@ msgstr "Toegepaste gebruikersnaam"
|
|
136 |
msgid "Showing last %d records from %d"
|
137 |
msgstr "Laatste %d records van %d"
|
138 |
|
139 |
-
#: ../common.php:
|
140 |
msgid "Logged in"
|
141 |
msgstr "Ingelogd"
|
142 |
|
143 |
-
#: ../common.php:
|
144 |
msgid "Logged out"
|
145 |
msgstr "Uitgelogd"
|
146 |
|
147 |
-
#: ../common.php:
|
148 |
msgid "Login failed"
|
149 |
msgstr "Inloggen mislukt"
|
150 |
|
151 |
-
#: ../common.php:
|
152 |
msgid "IP blocked"
|
153 |
msgstr "IP geblokkeerd"
|
154 |
|
155 |
-
#: ../common.php:
|
156 |
msgid "Subnet blocked"
|
157 |
msgstr "Subnet geblokkeerd"
|
158 |
|
159 |
-
#: ../common.php:
|
160 |
msgid "Citadel activated!"
|
161 |
msgstr "Citadelstand geactiveerd!"
|
162 |
|
163 |
-
#: ../dashboard.php:
|
164 |
-
#:
|
165 |
#, fuzzy
|
166 |
msgid "Locked out"
|
167 |
msgstr "Buitengesloten"
|
168 |
|
169 |
-
#: ../common.php:
|
170 |
msgid "IP blacklisted"
|
171 |
msgstr "IP uitgesloten"
|
172 |
|
173 |
-
#: ../common.php:
|
174 |
msgid "Password changed"
|
175 |
msgstr "Wachtwoord veranderd"
|
176 |
|
@@ -182,14 +182,14 @@ msgstr "Verwijderen"
|
|
182 |
msgid "Lockout for %s was removed"
|
183 |
msgstr "Uitsluiting voor %s is verwijderd"
|
184 |
|
185 |
-
#: ../dashboard.php:171 ../dashboard.php:
|
186 |
-
#: php:
|
187 |
#, fuzzy
|
188 |
msgid "White IP Access List"
|
189 |
msgstr "Lijst Toegelaten IP-adressen"
|
190 |
|
191 |
-
#: ../dashboard.php:173 ../dashboard.php:
|
192 |
-
#: php:
|
193 |
#, fuzzy
|
194 |
msgid "Black IP Access List"
|
195 |
msgstr "Uitgesloten IP-adressen"
|
@@ -208,34 +208,34 @@ msgstr "Adres %s toegevoegd aan de Lijst Toegelaten IP-adressen"
|
|
208 |
msgid "Address %s was added to Black IP Access List"
|
209 |
msgstr "Adres %s toegevoegd aan de Lijst Uitgesloten IP-adressen "
|
210 |
|
211 |
-
#: ../cerber-load.php:
|
212 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
213 |
msgstr "Citadelstand geactiveerd na %d mislukte inlogpogingen binnen %d minuten"
|
214 |
|
215 |
-
#: ../dashboard.php:
|
216 |
#, fuzzy
|
217 |
msgid "View Activity"
|
218 |
msgstr "Activiteit bekijken"
|
219 |
|
220 |
-
#: ../dashboard.php:
|
221 |
-
#: scanner.php:
|
222 |
msgid "Settings"
|
223 |
msgstr "Instellingen"
|
224 |
|
225 |
-
#: ../dashboard.php:
|
226 |
#, fuzzy
|
227 |
msgid "Last login"
|
228 |
msgstr "Laatst ingelogd"
|
229 |
|
230 |
-
#: ../dashboard.php:
|
231 |
msgid "Never"
|
232 |
msgstr "Nooit"
|
233 |
|
234 |
-
#: ../dashboard.php:
|
235 |
msgid "Are you sure?"
|
236 |
msgstr "Weet je het zeker?"
|
237 |
|
238 |
-
#: ../dashboard.php:
|
239 |
msgid "My site is behind a reverse proxy"
|
240 |
msgstr "Mijn website draait achter een reverse proxy"
|
241 |
|
@@ -247,46 +247,38 @@ msgstr "Niet-bestaande gebruikers"
|
|
247 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
248 |
msgstr "IP meteen blokkeren bij inlogpoging op niet-bestaande gebruiker"
|
249 |
|
250 |
-
#: ../settings.php:
|
251 |
-
msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
|
252 |
-
msgstr "Omleiding naar de inlogpagina uitschakelen bij ongeautoriseerde verzoeken aan /wp-admin/"
|
253 |
-
|
254 |
-
#: ../settings.php:503
|
255 |
msgid "Make your protection smarter!"
|
256 |
msgstr "Maak je bescherming slimmer!"
|
257 |
|
258 |
-
#: ../settings.php:
|
259 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
260 |
msgstr "Schakel Permalinks in om deze functionaliteit te gebruiken. Stel de Permalinks instelling in op iets anders dan Standaard."
|
261 |
|
262 |
-
#: ../cerber-load.php:
|
263 |
msgid "Main Settings"
|
264 |
msgstr "Hoofdinstellingen"
|
265 |
|
266 |
-
#: ../dashboard.php:
|
267 |
-
#: scanner.php:
|
268 |
msgid "Help"
|
269 |
msgstr "Hulp"
|
270 |
|
271 |
-
#: ../settings.php:
|
272 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
273 |
msgstr "Uitsluitingsduur ophogen naar %s uren na %s uitsluitingen in de laatste %s uren"
|
274 |
|
275 |
-
#: ../cerber-load.php:
|
276 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
277 |
msgstr "Je hebt geen toestemming om in te loggen. Vraag je beheerder om informatie."
|
278 |
|
279 |
-
#: ../cerber-load.php:
|
280 |
-
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
281 |
-
msgstr "Je hebt de limiet voor inlogpogingen bereikt. Probeer het opnieuw na %d minuten."
|
282 |
-
|
283 |
-
#: ../cerber-load.php:386
|
284 |
msgid "You have only one attempt remaining."
|
285 |
msgid_plural "You have %d attempts remaining."
|
286 |
msgstr[0] "Slechts één inlogpoging resterend!"
|
287 |
msgstr[1] "%s inlogpogingen resterend."
|
288 |
|
289 |
-
#: ../dashboard.php:
|
290 |
msgid "No activity has been logged."
|
291 |
msgstr "Geen activiteit waargenomen."
|
292 |
|
@@ -307,23 +299,23 @@ msgstr "Deze IP's worden nooit geblokkeerd."
|
|
307 |
msgid "Your IP"
|
308 |
msgstr "Jouw IP"
|
309 |
|
310 |
-
#: ../cerber-load.php:
|
311 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
312 |
msgstr "Laatste mislukte inlogpoging was op %s vanaf IP %s op gebruiker %s."
|
313 |
|
314 |
-
#: ../cerber-load.php:
|
315 |
msgid "Can't activate WP Cerber due to a database error."
|
316 |
msgstr "Kan WP Cerber niet activeren door een fout in de database"
|
317 |
|
318 |
-
#: ../settings.php:
|
319 |
msgid "Notify admin if the number of active lockouts above"
|
320 |
msgstr "Waarschuw de beheerder als het aantal actieve uitsluitingen stijgt tot boven"
|
321 |
|
322 |
-
#: ../settings.php:107 ../settings.php:183 ../settings.php:
|
323 |
msgid "days"
|
324 |
msgstr "dagen"
|
325 |
|
326 |
-
#: ../dashboard.php:
|
327 |
msgid "Cerber Quick View"
|
328 |
msgstr "Cerber Quick View"
|
329 |
|
@@ -344,35 +336,35 @@ msgstr "Check voor activiteit"
|
|
344 |
msgid "Always block entire subnet Class C of intruders IP"
|
345 |
msgstr "Altijd gehele IP Class C subnet blokkeren van aanvaller"
|
346 |
|
347 |
-
#: ../settings.php:104 ../settings.php:
|
348 |
msgid "Click to send test"
|
349 |
msgstr "Klik om test te verzenden"
|
350 |
|
351 |
-
#: ../settings.php:
|
352 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
353 |
msgstr "Let op! Je hebt de inlog-URL veranderd. De nieuwe inlog-URL is"
|
354 |
|
355 |
-
#: ../dashboard.php:
|
356 |
msgid "Comments"
|
357 |
msgstr "Reacties"
|
358 |
|
359 |
-
#: ../common.php:
|
360 |
msgid "Update to version %s of WP Cerber"
|
361 |
msgstr "WP Cerber updaten naar versie %s"
|
362 |
|
363 |
-
#: ../cerber-load.php:
|
364 |
msgid "View activity in dashboard"
|
365 |
msgstr "Activiteiten bekijken in dashboard"
|
366 |
|
367 |
-
#: ../cerber-load.php:
|
368 |
msgid "Number of active lockouts"
|
369 |
msgstr "Aantal actieve uitsluitingen"
|
370 |
|
371 |
-
#: ../cerber-load.php:
|
372 |
msgid "View lockouts in dashboard"
|
373 |
msgstr "Uitsluitingen bekijken in dashboard"
|
374 |
|
375 |
-
#: ../cerber-load.php:
|
376 |
msgid "This message was sent by"
|
377 |
msgstr "Dit bericht is verzonden door"
|
378 |
|
@@ -416,7 +408,7 @@ msgstr "Maximum bestandsgrootte: %s"
|
|
416 |
msgid "What do you want to import?"
|
417 |
msgstr "Wat wil je importeren?"
|
418 |
|
419 |
-
#: ../cerber-tools.php:102 ../cerber-scanner.php:
|
420 |
msgid "Upload file"
|
421 |
msgstr "Bestand uploaden"
|
422 |
|
@@ -436,7 +428,7 @@ msgstr "Instellingen geïmporteerd van"
|
|
436 |
msgid "Error while parsing file"
|
437 |
msgstr "Fout bij verwerken bestand"
|
438 |
|
439 |
-
#: ../dashboard.php:134 ../dashboard.php:
|
440 |
msgid "Hostname"
|
441 |
msgstr "Hostnaam"
|
442 |
|
@@ -444,78 +436,78 @@ msgstr "Hostnaam"
|
|
444 |
msgid "unknown"
|
445 |
msgstr "onbekend"
|
446 |
|
447 |
-
#: ../settings.php:107 ../settings.php:
|
448 |
#, fuzzy
|
449 |
msgid "Keep records for"
|
450 |
msgstr "Gegevens behouden tot"
|
451 |
|
452 |
-
#: ../dashboard.php:
|
453 |
msgid "active"
|
454 |
msgstr "actief"
|
455 |
|
456 |
-
#: ../dashboard.php:
|
457 |
msgid "deactivate"
|
458 |
msgstr "deactiveren"
|
459 |
|
460 |
-
#: ../dashboard.php:
|
461 |
msgid "not active"
|
462 |
msgstr "niet actief"
|
463 |
|
464 |
-
#: ../dashboard.php:
|
465 |
msgid "disabled"
|
466 |
msgstr "gedeactiveerd"
|
467 |
|
468 |
-
#: ../dashboard.php:
|
469 |
msgid "failed attempts"
|
470 |
msgstr "mislukte pogingen"
|
471 |
|
472 |
-
#: ../dashboard.php:
|
473 |
msgid "in 24 hours"
|
474 |
msgstr "in 24 uur"
|
475 |
|
476 |
-
#: ../dashboard.php:
|
477 |
msgid "view all"
|
478 |
msgstr "bekijk alles"
|
479 |
|
480 |
-
#: ../dashboard.php:
|
481 |
msgid "lockouts"
|
482 |
msgstr "uitsluitingen"
|
483 |
|
484 |
-
#: ../dashboard.php:
|
485 |
msgid "Lockouts at the moment"
|
486 |
msgstr "Uitsluitingen op dit moment"
|
487 |
|
488 |
-
#: ../dashboard.php:
|
489 |
#, fuzzy
|
490 |
msgid "Last lockout"
|
491 |
msgstr "Recente uitsluiting"
|
492 |
|
493 |
-
#: ../dashboard.php:
|
494 |
msgid "entry"
|
495 |
msgid_plural "entries"
|
496 |
msgstr[0] "item"
|
497 |
msgstr[1] "items"
|
498 |
|
499 |
-
#: ../dashboard.php:
|
500 |
#, fuzzy
|
501 |
msgid "Confused about some settings?"
|
502 |
msgstr "Onzeker over sommige instellingen?"
|
503 |
|
504 |
-
#: ../dashboard.php:
|
505 |
#, fuzzy
|
506 |
msgid "You can easily load default recommended settings using button below"
|
507 |
msgstr "Met onderstaande knop laad je de aanbevolen instellingen"
|
508 |
|
509 |
-
#: ../dashboard.php:
|
510 |
#, fuzzy
|
511 |
msgid "Load default settings"
|
512 |
msgstr "Aanbevolen instellingen laden"
|
513 |
|
514 |
-
#: ../dashboard.php:
|
515 |
msgid "doesn't affect Custom login URL and Access Lists"
|
516 |
msgstr "heeft geen invloed op Aangepaste inlog-URL en Toegangslijsten"
|
517 |
|
518 |
-
#: ../common.php:
|
519 |
msgid "New version is available"
|
520 |
msgstr "Nieuwe versie beschikbaar"
|
521 |
|
@@ -524,23 +516,23 @@ msgstr "Nieuwe versie beschikbaar"
|
|
524 |
msgid "WP Cerber"
|
525 |
msgstr "WP Cerber"
|
526 |
|
527 |
-
#: ../cerber-load.php:
|
528 |
msgid "WP Cerber notify"
|
529 |
msgstr "WP Cerber melding"
|
530 |
|
531 |
-
#: ../cerber-load.php:
|
532 |
msgid "Citadel mode is activated"
|
533 |
msgstr "Citadelstand is actief"
|
534 |
|
535 |
-
#: ../cerber-load.php:
|
536 |
msgid "New Custom login URL"
|
537 |
msgstr "Nieuwe Aangepaste inlog-URL"
|
538 |
|
539 |
-
#: ../cerber-load.php:
|
540 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
541 |
msgstr "WP Cerber vereist PHP %s of hoger. Je gebruikt nu"
|
542 |
|
543 |
-
#: ../cerber-load.php:
|
544 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
545 |
msgstr "WP Cerber vereist WordPress %s of hoger. Je gebruikt nu"
|
546 |
|
@@ -552,11 +544,11 @@ msgstr "Bestand gebruiken"
|
|
552 |
msgid "Write failed login attempts to the file"
|
553 |
msgstr "Mislukte pogingen opslaan in bestand"
|
554 |
|
555 |
-
#: ../dashboard.php:
|
556 |
msgid "Deactivate"
|
557 |
msgstr "Deactiveren"
|
558 |
|
559 |
-
#: ../dashboard.php:137 ../cerber-load.php:
|
560 |
msgid "Reason"
|
561 |
msgstr "Reden"
|
562 |
|
@@ -564,35 +556,35 @@ msgstr "Reden"
|
|
564 |
msgid "Add IP to the list"
|
565 |
msgstr "IP-adres toevoegen aan lijst"
|
566 |
|
567 |
-
#: ../dashboard.php:
|
568 |
msgid "Add IP to the Black List"
|
569 |
msgstr "IP-adres toevoegen aan Uitsluitingslijst"
|
570 |
|
571 |
-
#: ../common.php:
|
572 |
msgid "Attempt to access"
|
573 |
msgstr "Poging tot toegang"
|
574 |
|
575 |
-
#: ../common.php:
|
576 |
msgid "Limit on login attempts is reached"
|
577 |
msgstr "Limiet voor aantal inlogpogingen is bereikt"
|
578 |
|
579 |
-
#: ../common.php:
|
580 |
msgid "Attempt to log in with non-existent username"
|
581 |
msgstr "Inlogpoging met onbekende gebruikersnaam"
|
582 |
|
583 |
-
#: ../cerber-load.php:
|
584 |
msgid "Last lockout was added: %s for IP %s"
|
585 |
msgstr "Laatste uitsluiting was toegevoegd: %s voor IP-adres %s"
|
586 |
|
587 |
-
#: ../cerber-load.php:
|
588 |
msgid "Hardening"
|
589 |
msgstr "Versterking"
|
590 |
|
591 |
-
#: ../dashboard.php:
|
592 |
msgid "Abuse email:"
|
593 |
msgstr "E-mail voor misbruik:"
|
594 |
|
595 |
-
#: ../settings.php:212 ../settings.php:253 ../settings.php:
|
596 |
msgid "Email Address"
|
597 |
msgstr "E-mailadres"
|
598 |
|
@@ -636,15 +628,15 @@ msgstr "Blokkeer toegang tot de RSS-, Atom- en RDF-feeds"
|
|
636 |
msgid "Disable REST API"
|
637 |
msgstr "REST API uitschakelen"
|
638 |
|
639 |
-
#: ../settings.php:
|
640 |
msgid "These settings do not affect hosts from the "
|
641 |
msgstr "Deze instellingen gelden niet voor hosts van de "
|
642 |
|
643 |
-
#: ../settings.php:
|
644 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
645 |
msgstr "<strong>LET OP</strong>: voer een geldig e-mailadres in."
|
646 |
|
647 |
-
#: ../cerber-load.php:
|
648 |
msgid "WP Cerber is now active and has started protecting your site"
|
649 |
msgstr "WP Cerber is actief en beschermt nu je website"
|
650 |
|
@@ -660,24 +652,24 @@ msgstr "Niemand kan aanmelden of inloggen vanaf deze IP's"
|
|
660 |
msgid "Incorrect IP address or IP range"
|
661 |
msgstr "IP-adres of -reeks is incorrect"
|
662 |
|
663 |
-
#: ../dashboard.php:445 ../dashboard.php:
|
664 |
msgid "Settings saved"
|
665 |
msgstr "Instellingen opgeslagen"
|
666 |
|
667 |
-
#: ../dashboard.php:
|
668 |
msgid "Network:"
|
669 |
msgstr "Netwerk:"
|
670 |
|
671 |
-
#: ../dashboard.php:
|
672 |
msgid "Add network to the Black List"
|
673 |
msgstr "Netwerk toevoegen aan Uitsluitingslijst"
|
674 |
|
675 |
-
#: ../dashboard.php:
|
676 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
677 |
msgstr "Let op! Citadelstand is actief; niemand kan inloggen."
|
678 |
|
679 |
-
#: ../dashboard.php:353 ../dashboard.php:
|
680 |
-
#: /common.php:
|
681 |
msgid "Unknown"
|
682 |
msgstr "Onbekend"
|
683 |
|
@@ -686,80 +678,80 @@ msgstr "Onbekend"
|
|
686 |
msgid "Gregory"
|
687 |
msgstr "Gregory"
|
688 |
|
689 |
-
#: ../common.php:
|
690 |
-
#: /cerber-load.php:
|
691 |
-
#: load.php:
|
692 |
-
#: php:
|
693 |
-
#:
|
694 |
-
#: /settings.php:
|
695 |
msgid "ERROR:"
|
696 |
msgstr "FOUT:"
|
697 |
|
698 |
-
#: ../cerber-load.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 |
-
#: ../cerber-load.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 |
-
#: ../cerber-load.php:
|
707 |
msgid "Username is not allowed. Please choose another one."
|
708 |
msgstr "Gebruikersnaam is niet toegestaan, kies een andere."
|
709 |
|
710 |
-
#: ../cerber-load.php:
|
711 |
msgid "unspecified"
|
712 |
msgstr "niet gespecificeerd"
|
713 |
|
714 |
-
#: ../cerber-load.php:
|
715 |
msgid "Number of lockouts is increasing"
|
716 |
msgstr "Aantal uitsluitingen loopt op"
|
717 |
|
718 |
-
#: ../cerber-load.php:
|
719 |
msgid "View activity for this IP"
|
720 |
msgstr "Bekijk activiteit voor dit adres"
|
721 |
|
722 |
-
#: ../cerber-load.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 |
-
#: ../cerber-load.php:
|
727 |
msgid "Hi!"
|
728 |
msgstr "Hallo!"
|
729 |
|
730 |
-
#: ../cerber-load.php:
|
731 |
msgid "Website"
|
732 |
msgstr "Website"
|
733 |
|
734 |
-
#: ../cerber-load.php:
|
735 |
msgid "The WP Cerber security plugin has been deactivated"
|
736 |
msgstr "WP Cerber is gedeactiveerd"
|
737 |
|
738 |
-
#: ../cerber-load.php:
|
739 |
msgid "Not logged in"
|
740 |
msgstr "Niet ingelogd"
|
741 |
|
742 |
-
#: ../cerber-load.php:
|
743 |
msgid "By user"
|
744 |
msgstr "Door gebruiker"
|
745 |
|
746 |
-
#: ../cerber-load.php:
|
747 |
msgid "From IP address"
|
748 |
msgstr "Van IP-adres"
|
749 |
|
750 |
-
#: ../cerber-load.php:
|
751 |
msgid "From country"
|
752 |
msgstr "Uit land"
|
753 |
|
754 |
-
#: ../cerber-load.php:
|
755 |
msgid "The WP Cerber security plugin is now active"
|
756 |
msgstr "WP Cerber is actief"
|
757 |
|
758 |
-
#: ../cerber-load.php:
|
759 |
msgid "Your IP address is added to the"
|
760 |
msgstr "Je IP-adres is toegevoegd aan de "
|
761 |
|
762 |
-
#: ../cerber-load.php:
|
763 |
msgid "Import settings"
|
764 |
msgstr "Instellingen importeren"
|
765 |
|
@@ -819,44 +811,44 @@ msgstr "Login-formulier"
|
|
819 |
msgid "Enable reCAPTCHA for WordPress login form"
|
820 |
msgstr "ReCAPTCHA inschakelen voor WordPress inlogpagina"
|
821 |
|
822 |
-
#: ../settings.php:
|
823 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
824 |
msgstr "Haal eerst een Site-sleutel en Geheime Sleutel op van Google om reCAPTCHA te kunnen gebruiken"
|
825 |
|
826 |
-
#: ../cerber-lab.php:
|
827 |
msgid "Know more"
|
828 |
msgstr "Meer weten"
|
829 |
|
830 |
-
#: ../dashboard.php:52 ../settings.php:
|
831 |
msgid "WP Cerber Security"
|
832 |
msgstr "WP Cerber Security"
|
833 |
|
834 |
-
#: ../settings.php:
|
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,60 +884,60 @@ 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 |
|
907 |
-
#: ../cerber-lab.php:
|
908 |
msgid "OK, nail them all"
|
909 |
msgstr "OK, zet ze allemaal vast"
|
910 |
|
911 |
-
#: ../cerber-lab.php:
|
912 |
msgid "NO, maybe later"
|
913 |
msgstr "Nee, misschien later"
|
914 |
|
915 |
-
#: ../dashboard.php:54 ../dashboard.php:
|
916 |
-
#: php:
|
917 |
msgid "Dashboard"
|
918 |
msgstr "Dashboard"
|
919 |
|
920 |
-
#: ../cerber-lab.php:
|
921 |
msgid "Want to make WP Cerber even more powerful?"
|
922 |
msgstr "Wil je WP Cerber nog beter maken?"
|
923 |
|
924 |
-
#: ../cerber-lab.php:
|
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 afgeblokte kwaadaardige IP-adressen te delen met Cerber Lab. Dat helpt ons om algoritmes te 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 |
|
@@ -957,35 +949,35 @@ msgstr "Cerber Dashboard"
|
|
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 |
-
#: ../cerber-load.php:
|
977 |
msgid "A new activity has been recorded"
|
978 |
msgstr "Er is nieuwe activiteit waargenomen"
|
979 |
|
980 |
-
#: ../cerber-load.php:
|
981 |
msgid "User"
|
982 |
msgstr "Gebruiker"
|
983 |
|
984 |
-
#: ../cerber-load.php:
|
985 |
msgid "Search string"
|
986 |
msgstr "Zoekfrase"
|
987 |
|
988 |
-
#: ../cerber-load.php:
|
989 |
msgid "To unsubscribe click here"
|
990 |
msgstr "Klik om uit te schrijven"
|
991 |
|
@@ -1009,7 +1001,7 @@ msgstr "Push meldingen"
|
|
1009 |
msgid "Email notifications"
|
1010 |
msgstr "E-mail meldingen"
|
1011 |
|
1012 |
-
#: ../settings.php:216 ../settings.php:258 ../settings.php:
|
1013 |
msgid "Use comma to specify multiple values"
|
1014 |
msgstr "Scheid meer waarden met komma's"
|
1015 |
|
@@ -1025,15 +1017,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 |
|
@@ -1073,48 +1065,48 @@ msgstr "Beperk aantal pogingen"
|
|
1073 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1074 |
msgstr "Sluit IP-adressen uit voor %s minuten na %s mislukte pogingen in %s minuten"
|
1075 |
|
1076 |
-
#: ../settings.php:
|
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 Citadelstand 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 |
|
1084 |
-
#: ../common.php:
|
1085 |
msgid "Spam comments denied"
|
1086 |
msgstr "Spamreacties afgewezen"
|
1087 |
|
1088 |
-
#: ../common.php:
|
1089 |
msgid "Malicious IP addresses detected"
|
1090 |
msgstr "Kwaadaardige IP-adressen gevonden"
|
1091 |
|
1092 |
-
#: ../common.php:
|
1093 |
msgid "Lockouts occurred"
|
1094 |
msgstr "Uitsluitingen"
|
1095 |
|
1096 |
-
#: ../dashboard.php:
|
1097 |
msgid "All suspicious activity"
|
1098 |
msgstr "Alle verdachte activiteit"
|
1099 |
|
1100 |
-
#: ../cerber-load.php:
|
1101 |
-
#: /cerber-load.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 |
|
1117 |
-
#: ../common.php:
|
1118 |
msgid "Malicious activities mitigated"
|
1119 |
msgstr "Verdachte activiteiten afgevangen"
|
1120 |
|
@@ -1122,7 +1114,7 @@ msgstr "Verdachte activiteiten afgevangen"
|
|
1122 |
msgid "Cerber antispam settings"
|
1123 |
msgstr "Cerber Antispam-instellingen"
|
1124 |
|
1125 |
-
#: ../dashboard.php:67 ../dashboard.php:
|
1126 |
#: php:200
|
1127 |
msgid "Antispam"
|
1128 |
msgstr "Antispam"
|
@@ -1155,15 +1147,15 @@ msgstr "Diagnose"
|
|
1155 |
msgid "License"
|
1156 |
msgstr "Licentie"
|
1157 |
|
1158 |
-
#: ../
|
1159 |
msgid "Antispam and bot detection settings"
|
1160 |
msgstr "Antispam- en botdetectie-instellingen"
|
1161 |
|
1162 |
-
#: ../cerber-load.php:
|
1163 |
msgid "Sorry, human verification failed."
|
1164 |
msgstr "Sorry, de verificatie faalt."
|
1165 |
|
1166 |
-
#: ../common.php:
|
1167 |
msgid "Bot activity is detected"
|
1168 |
msgstr "Bot-activiteit getedecteerd"
|
1169 |
|
@@ -1183,7 +1175,7 @@ msgstr "Spamreacties weggooien"
|
|
1183 |
msgid "Move spam comments to trash after"
|
1184 |
msgstr "Verwijder spamreacties na"
|
1185 |
|
1186 |
-
#: ../common.php:
|
1187 |
msgid "Spam form submission denied"
|
1188 |
msgstr "Geweigerd wegens spam"
|
1189 |
|
@@ -1207,7 +1199,7 @@ msgstr "Veilige stand"
|
|
1207 |
msgid "Use less restrictive policies (allow AJAX)"
|
1208 |
msgstr "Minder restricties (sta AJAX toe)"
|
1209 |
|
1210 |
-
#: ../dashboard.php:
|
1211 |
msgid "Logged in users"
|
1212 |
msgstr "Ingelogde gebruikers"
|
1213 |
|
@@ -1215,16 +1207,11 @@ msgstr "Ingelogde gebruikers"
|
|
1215 |
msgid "Disable bot detection engine for logged in users"
|
1216 |
msgstr "Zet bot-detectie uit voor ingelogde gebruikers"
|
1217 |
|
1218 |
-
|
1219 |
-
#:
|
1220 |
-
msgid "WP Cerber Security & Antispam"
|
1221 |
-
msgstr "WP Cerber Security & Antispam"
|
1222 |
-
|
1223 |
-
#: ../dashboard.php:135 ../dashboard.php:701
|
1224 |
msgid "Country"
|
1225 |
msgstr "Land"
|
1226 |
|
1227 |
-
#: ../dashboard.php:
|
1228 |
msgid "All events"
|
1229 |
msgstr "Alle gebeurtenissen"
|
1230 |
|
@@ -1232,45 +1219,45 @@ msgstr "Alle gebeurtenissen"
|
|
1232 |
msgid "Cerber Security Rules"
|
1233 |
msgstr "Cerber Beveiligingsregels"
|
1234 |
|
1235 |
-
#: ../dashboard.php:60 ../dashboard.php:
|
1236 |
msgid "Security Rules"
|
1237 |
msgstr "Beveiligingsregels"
|
1238 |
|
1239 |
-
#: ../dashboard.php:
|
1240 |
msgid "Failed login attempts"
|
1241 |
msgstr "Gefaalde loginpogingen"
|
1242 |
|
1243 |
-
#: ../dashboard.php:
|
1244 |
msgid "Registered"
|
1245 |
msgstr "Geregistreerd"
|
1246 |
|
1247 |
-
#: ../dashboard.php:
|
1248 |
msgid "You"
|
1249 |
msgstr "Jij"
|
1250 |
|
1251 |
-
#: ../common.php:
|
1252 |
msgid "Spam form submissions denied"
|
1253 |
msgstr "Spam formulierafgifte afgewezen "
|
1254 |
|
1255 |
-
#: ../dashboard.php:
|
1256 |
msgid "Getting Started Guide"
|
1257 |
msgstr "Startgids"
|
1258 |
|
1259 |
-
#: ../dashboard.php:
|
1260 |
msgid "Countries"
|
1261 |
msgstr "Landen"
|
1262 |
|
1263 |
-
#: ../dashboard.php:
|
1264 |
msgid "Permitted for one country"
|
1265 |
msgid_plural "Permitted for %d countries"
|
1266 |
msgstr[0] "Toegestaan voor één land"
|
1267 |
msgstr[1] "Toegestaan voor %d landen"
|
1268 |
|
1269 |
-
#: ../dashboard.php:
|
1270 |
msgid "No rule"
|
1271 |
msgstr "Geen regel"
|
1272 |
|
1273 |
-
#: ../dashboard.php:
|
1274 |
msgid "Security rules have been updated"
|
1275 |
msgstr "Beveiligingsregels zijn vernieuwd"
|
1276 |
|
@@ -1279,47 +1266,47 @@ msgstr "Beveiligingsregels zijn vernieuwd"
|
|
1279 |
msgid "https://wpcerber.com"
|
1280 |
msgstr "https://wpcerber.com"
|
1281 |
|
1282 |
-
#: ../common.php:
|
1283 |
msgid "Form submission denied"
|
1284 |
msgstr "Formulierafgifte afgewezen"
|
1285 |
|
1286 |
-
#: ../common.php:
|
1287 |
msgid "Comment denied"
|
1288 |
msgstr "Commentaar afgewezen"
|
1289 |
|
1290 |
-
#: ../common.php:
|
1291 |
msgid "Request to REST API denied"
|
1292 |
msgstr "Verzoek aan REST API afgewezen"
|
1293 |
|
1294 |
-
#: ../common.php:
|
1295 |
msgid "XML-RPC request denied"
|
1296 |
msgstr "XML-RPC-verzoek afgewezen"
|
1297 |
|
1298 |
-
#: ../common.php:
|
1299 |
msgid "Bot detected"
|
1300 |
msgstr "Bot gedetecteerd"
|
1301 |
|
1302 |
-
#: ../common.php:
|
1303 |
msgid "Citadel mode is active"
|
1304 |
msgstr "Citadelstand actief"
|
1305 |
|
1306 |
-
#: ../common.php:
|
1307 |
msgid "Malicious activity detected"
|
1308 |
msgstr "Verdachte activiteit gedetecteerd "
|
1309 |
|
1310 |
-
#: ../common.php:
|
1311 |
msgid "Blocked by country rule"
|
1312 |
msgstr "Geblokkeerd door landenregel"
|
1313 |
|
1314 |
-
#: ../common.php:
|
1315 |
msgid "Limit reached"
|
1316 |
msgstr "Limiet bereikt"
|
1317 |
|
1318 |
-
#: ../common.php:
|
1319 |
msgid "Multiple suspicious activities"
|
1320 |
msgstr "Meerdere verdachte activiteiten"
|
1321 |
|
1322 |
-
#: ../common.php:
|
1323 |
msgid "Multiple suspicious activities were detected"
|
1324 |
msgstr "Meerdere verdachte activiteiten gedetecteerd"
|
1325 |
|
@@ -1355,39 +1342,39 @@ msgstr "per registratiedatum"
|
|
1355 |
msgid "Query whitelist"
|
1356 |
msgstr "Toegestane queries"
|
1357 |
|
1358 |
-
#: ../settings.php:
|
1359 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1360 |
msgstr "%s toegestane registraties in %s minuten van één IP"
|
1361 |
|
1362 |
-
#: ../dashboard.php:
|
1363 |
msgid "Start typing here to find a country"
|
1364 |
msgstr "Begin te typen om een land te vinden"
|
1365 |
|
1366 |
-
#: ../dashboard.php:
|
1367 |
msgid "Click on a country name to add it to the list of selected countries"
|
1368 |
msgstr "Klik op een landnaam om toe te voegen aan de lijst gekozen landen"
|
1369 |
|
1370 |
-
#: ../dashboard.php:
|
1371 |
msgid "Submit forms"
|
1372 |
msgstr "Formulieren versturen"
|
1373 |
|
1374 |
-
#: ../dashboard.php:
|
1375 |
msgid "Post comments"
|
1376 |
msgstr "Commentaar plaatsen"
|
1377 |
|
1378 |
-
#: ../dashboard.php:
|
1379 |
msgid "Log in to the website"
|
1380 |
msgstr "Inloggen bij de website"
|
1381 |
|
1382 |
-
#: ../dashboard.php:
|
1383 |
msgid "Register on the website"
|
1384 |
msgstr "Registreren bij de website"
|
1385 |
|
1386 |
-
#: ../dashboard.php:
|
1387 |
msgid "Use XML-RPC"
|
1388 |
msgstr "Benut XML-RPC"
|
1389 |
|
1390 |
-
#: ../dashboard.php:
|
1391 |
msgid "Use REST API"
|
1392 |
msgstr "Benut REST API"
|
1393 |
|
@@ -1399,11 +1386,11 @@ msgstr "Volledig negeren"
|
|
1399 |
msgid "Mark it as spam"
|
1400 |
msgstr "Markeren als spam"
|
1401 |
|
1402 |
-
#: ../dashboard.php:
|
1403 |
msgid "in the last 24 hours"
|
1404 |
msgstr "in de afgelopen 24 uur"
|
1405 |
|
1406 |
-
#: ../dashboard.php:
|
1407 |
msgid "Main settings"
|
1408 |
msgstr "Hoofdinstellingen"
|
1409 |
|
@@ -1411,69 +1398,69 @@ msgstr "Hoofdinstellingen"
|
|
1411 |
msgid "Weekly reports"
|
1412 |
msgstr "Weekrapporten"
|
1413 |
|
1414 |
-
#: ../settings.php:
|
1415 |
msgid "Sunday"
|
1416 |
msgstr "zondag"
|
1417 |
|
1418 |
-
#: ../settings.php:
|
1419 |
msgid "Monday"
|
1420 |
msgstr "maandag"
|
1421 |
|
1422 |
-
#: ../settings.php:
|
1423 |
msgid "Tuesday"
|
1424 |
msgstr "dinsdag"
|
1425 |
|
1426 |
-
#: ../settings.php:
|
1427 |
msgid "Wednesday"
|
1428 |
msgstr "woensdag"
|
1429 |
|
1430 |
-
#: ../settings.php:
|
1431 |
msgid "Thursday"
|
1432 |
msgstr "donderdag"
|
1433 |
|
1434 |
-
#: ../settings.php:
|
1435 |
msgid "Friday"
|
1436 |
msgstr "vrijdag"
|
1437 |
|
1438 |
-
#: ../settings.php:
|
1439 |
msgid "Saturday"
|
1440 |
msgstr "zaterdag"
|
1441 |
|
1442 |
-
#: ../settings.php:
|
1443 |
msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
|
1444 |
msgstr "Gebruik je een caching plugin, dan moet je je nieuwe login URL toevoegen aan de niet te cachen pagina's."
|
1445 |
|
1446 |
#. translators: preposition of time
|
1447 |
-
#: ../settings.php:
|
1448 |
msgctxt "preposition of time"
|
1449 |
msgid "at"
|
1450 |
msgstr "op"
|
1451 |
|
1452 |
-
#: ../cerber-load.php:
|
1453 |
msgid "Weekly report"
|
1454 |
msgstr "Weekrapport"
|
1455 |
|
1456 |
-
#: ../cerber-load.php:
|
1457 |
msgid "To change reporting settings visit"
|
1458 |
msgstr "Om je rapportageinstellingen aan te passen, ga naar"
|
1459 |
|
1460 |
-
#: ../cerber-load.php:
|
1461 |
msgid "Your login page:"
|
1462 |
msgstr "Je login-pagina:"
|
1463 |
|
1464 |
-
#: ../cerber-load.php:
|
1465 |
msgid "Your license is valid until"
|
1466 |
msgstr "Je licentie geldt tot"
|
1467 |
|
1468 |
-
#: ../cerber-load.php:
|
1469 |
msgid "Activity details"
|
1470 |
msgstr "Details van activiteiten"
|
1471 |
|
1472 |
-
#: ../settings.php:
|
1473 |
msgid "Click to send now"
|
1474 |
msgstr "Klik om nu te versturen"
|
1475 |
|
1476 |
-
#: ../cerber-load.php:
|
1477 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1478 |
msgstr ">>> Vertaler van WP Cerber? Om een gratis Pro-licentie te krijgen, geef je contactinformatie op bij: https://wpcerber.com/contact/"
|
1479 |
|
@@ -1485,28 +1472,23 @@ msgstr "E-mail is verzonden naar"
|
|
1485 |
msgid "Unable to send email to"
|
1486 |
msgstr "Kan geen e-mail verzenden naar"
|
1487 |
|
1488 |
-
#: ../dashboard.php:
|
1489 |
msgid "Not permitted for one country"
|
1490 |
msgid_plural "Not permitted for %d countries"
|
1491 |
msgstr[0] "Niet toegestaan voor één land"
|
1492 |
msgstr[1] "Niet toegestaan voor %d landen"
|
1493 |
|
1494 |
-
#: ../dashboard.php:
|
1495 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1496 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
1497 |
msgstr "Gekozen landen mogen %s, overige landen niet"
|
1498 |
|
1499 |
-
#: ../dashboard.php:
|
1500 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1501 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
1502 |
msgstr "Gekozen landen mogen niet %s, overige landen wel"
|
1503 |
|
1504 |
-
|
1505 |
-
#:
|
1506 |
-
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>."
|
1507 |
-
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>."
|
1508 |
-
|
1509 |
-
#: ../cerber-load.php:3596
|
1510 |
msgid "Weekly Report"
|
1511 |
msgstr "Weekrapport"
|
1512 |
|
@@ -1522,7 +1504,7 @@ msgstr "Toon eenvoudige 404-pagina"
|
|
1522 |
msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
|
1523 |
msgstr "Voer een deel van een query-tekenreeks of -pad in om een request uit te sluiten van inspectie. Eén item per regel."
|
1524 |
|
1525 |
-
#: ../settings.php:263 ../settings.php:
|
1526 |
msgid "if empty, email from notification settings will be used"
|
1527 |
msgstr "Indien leeg, gebruiken we de email van de meldingsinstellingen"
|
1528 |
|
@@ -1531,11 +1513,11 @@ msgid "Enable reporting"
|
|
1531 |
msgstr "Rapporteren aanzetten"
|
1532 |
|
1533 |
#. How to interpret this line? Do you mean 'was DATE/TIME from IP ADDRESS' ?
|
1534 |
-
#: ../cerber-load.php:
|
1535 |
msgid "Your last sign-in was %s from %s"
|
1536 |
msgstr "Je laatste inlog was op %s vanaf %s"
|
1537 |
|
1538 |
-
#: ../cerber-load.php:
|
1539 |
msgid "Attempts to log in with non-existent username"
|
1540 |
msgstr "Pogingen om in te loggen met een onbekende gebruikersnaam"
|
1541 |
|
@@ -1551,7 +1533,7 @@ msgstr "Opmerking hierbij"
|
|
1551 |
msgid "You cannot add your IP address or network"
|
1552 |
msgstr "Je kunt je eigen IP of netwerk niet toevoegen"
|
1553 |
|
1554 |
-
#: ../cerber-news.php:
|
1555 |
msgid "Cool!"
|
1556 |
msgstr "Mooi!"
|
1557 |
|
@@ -1563,68 +1545,68 @@ msgstr "Je kunt REGEX-patronen gebruiken; sluit deze op in voorwaartse slashes z
|
|
1563 |
msgid "Cerber Traffic Inspector"
|
1564 |
msgstr "Cerber Verkeersinspectie"
|
1565 |
|
1566 |
-
#: ../dashboard.php:56 ../dashboard.php:
|
1567 |
msgid "Traffic Inspector"
|
1568 |
msgstr "Verkeersinspectie"
|
1569 |
|
1570 |
-
#: ../dashboard.php:
|
1571 |
msgid "Traffic"
|
1572 |
msgstr "Verkeer"
|
1573 |
|
1574 |
-
#: ../dashboard.php:
|
1575 |
msgid "Live traffic"
|
1576 |
msgstr "Live verkeer"
|
1577 |
|
1578 |
-
#: ../dashboard.php:
|
1579 |
msgid "Request"
|
1580 |
msgstr "Verzoek"
|
1581 |
|
1582 |
-
#: ../dashboard.php:
|
1583 |
msgid "Host Info"
|
1584 |
msgstr "Host Info"
|
1585 |
|
1586 |
#. Do you mean a program for browsing the web like Chrome? Or a ftp user agent or so?
|
1587 |
-
#: ../dashboard.php:
|
1588 |
msgid "User Agent"
|
1589 |
msgstr "Webbrowser"
|
1590 |
|
1591 |
-
#: ../dashboard.php:
|
1592 |
msgid "All requests"
|
1593 |
msgstr "Alle verzoeken"
|
1594 |
|
1595 |
-
#: ../dashboard.php:
|
1596 |
msgid "Not logged in visitors"
|
1597 |
msgstr "Niet-ingelogde bezoekers"
|
1598 |
|
1599 |
-
#: ../dashboard.php:
|
1600 |
msgid "Form submissions"
|
1601 |
msgstr "Formulierverzendingen"
|
1602 |
|
1603 |
-
#: ../dashboard.php:
|
1604 |
msgid "Page Not Found"
|
1605 |
msgstr "Pagina niet gevonden"
|
1606 |
|
1607 |
-
#: ../dashboard.php:
|
1608 |
msgid "REST API"
|
1609 |
msgstr "REST API"
|
1610 |
|
1611 |
-
#: ../dashboard.php:
|
1612 |
msgid "XML-RPC"
|
1613 |
msgstr "XML-RPC"
|
1614 |
|
1615 |
-
#: ../dashboard.php:
|
1616 |
msgid "Longer than"
|
1617 |
msgstr "Langer dan"
|
1618 |
|
1619 |
-
#: ../dashboard.php:
|
1620 |
msgid "Refresh"
|
1621 |
msgstr "Ververs"
|
1622 |
|
1623 |
-
#: ../common.php:
|
1624 |
msgid "Check for requests"
|
1625 |
msgstr "Controleer op verzoeken"
|
1626 |
|
1627 |
-
#: ../common.php:
|
1628 |
msgid "Not specified"
|
1629 |
msgstr "Niet gespecificeerd"
|
1630 |
|
@@ -1652,7 +1634,7 @@ msgstr "Negeer crawlers"
|
|
1652 |
msgid "Mask these form fields"
|
1653 |
msgstr "Verberg deze formuliervelden"
|
1654 |
|
1655 |
-
#: ../settings.php:
|
1656 |
msgid "milliseconds"
|
1657 |
msgstr "milliseconden"
|
1658 |
|
@@ -1672,40 +1654,40 @@ msgstr "Rapporteren"
|
|
1672 |
msgid "Save request fields"
|
1673 |
msgstr "Bewaar verzoekvelden"
|
1674 |
|
1675 |
-
#: ../settings.php:
|
1676 |
msgid "Page generation time threshold"
|
1677 |
msgstr "Drempeltijd paginaopbouw"
|
1678 |
|
1679 |
-
#: ../dashboard.php:
|
1680 |
msgid "No requests have been logged."
|
1681 |
msgstr "Er zijn geen verzoeken geregistreerd."
|
1682 |
|
1683 |
-
#: ../dashboard.php:
|
1684 |
msgid "enabled"
|
1685 |
msgstr "aan"
|
1686 |
|
1687 |
-
#: ../dashboard.php:
|
1688 |
msgid "no connection"
|
1689 |
msgstr "geen verbinding"
|
1690 |
|
1691 |
-
#: ../dashboard.php:
|
1692 |
msgid "Advanced search"
|
1693 |
msgstr "Geavanceerd zoeken"
|
1694 |
|
1695 |
-
#: ../dashboard.php:
|
1696 |
msgid "Last seen"
|
1697 |
msgstr "Laatst gezien"
|
1698 |
|
1699 |
#. A fix for "Probing for vulnerable PHP script".
|
1700 |
-
#: ../common.php:
|
1701 |
msgid "Probing for vulnerable PHP code"
|
1702 |
msgstr "Op zoek naar kwetsbare PHP-code"
|
1703 |
|
1704 |
-
#: ../dashboard.php:
|
1705 |
msgid "Any"
|
1706 |
msgstr "Enig"
|
1707 |
|
1708 |
-
#: ../cerber-load.php:
|
1709 |
msgid "We're sorry, you are not allowed to proceed"
|
1710 |
msgstr "Excuus, je mag niet doorgaan"
|
1711 |
|
@@ -1717,15 +1699,15 @@ msgstr "Verzoek om whitelist"
|
|
1717 |
msgid "Enter a request URI to exclude the request from inspection. One item per line."
|
1718 |
msgstr "Voer een 'request URI' in om deze van inspectie uit te sluiten. Eén per regel."
|
1719 |
|
1720 |
-
#: ../settings.php:
|
1721 |
msgid "Save request headers"
|
1722 |
msgstr "Sla 'request headers' op"
|
1723 |
|
1724 |
-
#: ../settings.php:
|
1725 |
msgid "Save $_SERVER"
|
1726 |
msgstr "Sla $_SERVER op"
|
1727 |
|
1728 |
-
#: ../settings.php:
|
1729 |
msgid "Save request cookies"
|
1730 |
msgstr "Sla 'request cookies' op"
|
1731 |
|
@@ -1738,23 +1720,23 @@ msgid "Block unauthorized access to load-scripts.php and load-styles.php"
|
|
1738 |
msgstr "Blokkeer ongeoorloofde toegang tot load-scripts.php en load-styles.php\n"
|
1739 |
""
|
1740 |
|
1741 |
-
#: ../common.php:
|
1742 |
msgid "Unable to create the directory"
|
1743 |
msgstr "Kan map niet aanmaken"
|
1744 |
|
1745 |
-
#: ../common.php:
|
1746 |
msgid "Destination folder access denied"
|
1747 |
msgstr "Toegang bestemmingsmap afgewezen"
|
1748 |
|
1749 |
-
#: ../common.php:
|
1750 |
msgid "File not found"
|
1751 |
msgstr "Bestand niet gevonden"
|
1752 |
|
1753 |
-
#: ../common.php:
|
1754 |
msgid "Unable to copy the file"
|
1755 |
msgstr "Kan bestand niet kopiëren"
|
1756 |
|
1757 |
-
#: ../common.php:
|
1758 |
msgid "Unable to delete the file"
|
1759 |
msgstr "Kan bestand niet verwijderen"
|
1760 |
|
@@ -1774,7 +1756,7 @@ msgstr "Verouderde stand"
|
|
1774 |
msgid "Standard mode"
|
1775 |
msgstr "Standaardinstelling"
|
1776 |
|
1777 |
-
#: ../settings.php:
|
1778 |
msgid "Plugin initialization mode has not been changed"
|
1779 |
msgstr "Plugin initialisatie is niet aangepast"
|
1780 |
|
@@ -1783,19 +1765,14 @@ msgstr "Plugin initialisatie is niet aangepast"
|
|
1783 |
msgid "This is a standard boot module for WP Cerber Security & Antispam plugin. It was installed when you set the plugin initialization mode to Standard. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1784 |
msgstr "Dit is de standaard opstartmodule van de WP Cerber Security & Antispam plugin, geïnstalleerd toen je de plugin initialisatie op Standaard hebt gezet. Meer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1785 |
|
1786 |
-
#: ../common.php:
|
1787 |
msgid "Attempt to upload executable file denied"
|
1788 |
msgstr "Poging afgewezen om programmabestand te uploaden"
|
1789 |
|
1790 |
-
#: ../common.php:
|
1791 |
msgid "File upload denied"
|
1792 |
msgstr "Bestandsupload afgewezen"
|
1793 |
|
1794 |
-
#. Description of the plugin
|
1795 |
-
#:
|
1796 |
-
msgid "Protects WordPress against brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user and bot activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1797 |
-
msgstr "Beschermt WordPress tegen brute force aanvallen, bots en hackers. Spambescherming met Cerber Antispam en reCAPTCHA. Beheer gebruikers- en botactiviteiten. Beperk login met IP toegangslijsten. Beperk login-pogingen. Meer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1798 |
-
|
1799 |
#: ../settings.php:96
|
1800 |
msgid "Custom login URL may contain only letters, numbers, dashes and underscores"
|
1801 |
msgstr "Aangepaste inlog-URL mag alleen letters, cijfers, koppel- en lage streepjes bevatten"
|
@@ -1805,27 +1782,27 @@ msgstr "Aangepaste inlog-URL mag alleen letters, cijfers, koppel- en lage streep
|
|
1805 |
msgid "To specify a REGEX pattern, enclose a whole line in two braces."
|
1806 |
msgstr "Zet bij een REGEX-patroon de hele regel tussen accolades { }."
|
1807 |
|
1808 |
-
#: ../settings.php:
|
1809 |
msgid "Be careful about enabling these options."
|
1810 |
msgstr "Wees voorzichtig met deze opties!"
|
1811 |
|
1812 |
-
#: ../settings.php:
|
1813 |
msgid "If you forget your Custom login URL, you will be unable to log in."
|
1814 |
msgstr "Als je de Aangepaste inlog-URL vergeet, kun je niet meer inloggen."
|
1815 |
|
1816 |
-
#: ../dashboard.php:64 ../cerber-scanner.php:
|
1817 |
msgid "Site Integrity"
|
1818 |
msgstr "Site-integriteit"
|
1819 |
|
1820 |
-
#: ../dashboard.php:
|
1821 |
msgid "Disabled"
|
1822 |
msgstr "Uitgeschakeld"
|
1823 |
|
1824 |
-
#: ../dashboard.php:
|
1825 |
msgid "Quick Scan"
|
1826 |
msgstr "Snelle Scan"
|
1827 |
|
1828 |
-
#: ../dashboard.php:
|
1829 |
msgid "Full Scan"
|
1830 |
msgstr "Volledige scan"
|
1831 |
|
@@ -1834,14 +1811,10 @@ msgstr "Volledige scan"
|
|
1834 |
msgid "WP Cerber Security, Antispam & Malware Scan"
|
1835 |
msgstr "WP Cerber Security, Antispam & Malware Scan"
|
1836 |
|
1837 |
-
#: ../common.php:
|
1838 |
msgid "Denied"
|
1839 |
msgstr "Afgewezen"
|
1840 |
|
1841 |
-
#: ../cerber-load.php:3472
|
1842 |
-
msgid "Scanner report"
|
1843 |
-
msgstr "Scanner-rapport"
|
1844 |
-
|
1845 |
#: ../settings.php:79 ../settings.php:278
|
1846 |
msgid "Use White IP Access List"
|
1847 |
msgstr "Lijst Toegelaten IP-adressen gebruiken"
|
@@ -1854,352 +1827,422 @@ msgstr "Dashboard omleiding uitzetten"
|
|
1854 |
msgid "Disable automatic redirection to the login page when /wp-admin/ is requested by an unauthorized request"
|
1855 |
msgstr "Automatische omleiding naar de loginpagina uitzetten als /wp-admin/ ongeautoriseerd wordt opgevraagd"
|
1856 |
|
1857 |
-
#: ../settings.php:
|
1858 |
msgid "Scanner settings"
|
1859 |
msgstr "Scanner-instellingen"
|
1860 |
|
1861 |
-
#: ../settings.php:
|
1862 |
msgid "Custom signatures"
|
1863 |
msgstr "Ondertekening op maat"
|
1864 |
|
1865 |
-
#: ../settings.php:
|
1866 |
msgid "Specify custom PHP code signatures. One item per line. To specify a REGEX pattern, enclose a whole line in two braces."
|
1867 |
msgstr "Eigen PHP code ondertekeningen, één per regel. Zet bij een REGEX-patroon de hele regel tussen accolades { }."
|
1868 |
|
1869 |
-
#: ../settings.php:
|
1870 |
msgid "Unwanted file extensions"
|
1871 |
msgstr "Ongewenste bestandsextensies"
|
1872 |
|
1873 |
-
#: ../settings.php:
|
1874 |
msgid "Specify file extensions to search for. Full scan only. Use comma to separate items."
|
1875 |
msgstr "Geef gewenste bestandsextensies op, gescheiden door komma's. Alleen volledige scan."
|
1876 |
|
1877 |
-
#: ../settings.php:
|
1878 |
msgid "Directories to exclude"
|
1879 |
msgstr "Uit te sluiten mappen"
|
1880 |
|
1881 |
-
#: ../settings.php:
|
1882 |
msgid "Specify directories to exclude from scanning. Use absolute paths. One item per line."
|
1883 |
msgstr "Geef mappen op om van scannen uit te sluiten. Eén per regel, absolute paden opgeven."
|
1884 |
|
1885 |
-
#: ../settings.php:
|
1886 |
-
msgid "Report new files"
|
1887 |
-
msgstr "Rapporteer nieuwe bestanden"
|
1888 |
-
|
1889 |
-
#: ../settings.php:398
|
1890 |
-
msgid "Report modified files"
|
1891 |
-
msgstr "Rapporteer gewijzigde bestanden"
|
1892 |
-
|
1893 |
-
#: ../settings.php:404
|
1894 |
msgid "Scan temporary directory"
|
1895 |
msgstr "Scan tijdelijke map"
|
1896 |
|
1897 |
-
#: ../settings.php:
|
1898 |
msgid "Scan session directory"
|
1899 |
msgstr "Scan sessiemap"
|
1900 |
|
1901 |
-
#: ../settings.php:
|
1902 |
msgid "Delete quarantined files after"
|
1903 |
msgstr "Wis bestanden in quarantaine na"
|
1904 |
|
1905 |
-
#: ../settings.php:
|
1906 |
msgid "Launch Quick Scan"
|
1907 |
msgstr "Begin Snelle Scan"
|
1908 |
|
1909 |
-
#: ../cerber-scanner.php:
|
1910 |
msgid "Every hour"
|
1911 |
msgstr "Elk uur"
|
1912 |
|
1913 |
-
#: ../cerber-scanner.php:
|
1914 |
msgid "Every 3 hours"
|
1915 |
msgstr "Elke 3 uur"
|
1916 |
|
1917 |
-
#: ../cerber-scanner.php:
|
1918 |
msgid "Every 6 hours"
|
1919 |
msgstr "Elke 6 uur"
|
1920 |
|
1921 |
-
#: ../settings.php:
|
1922 |
msgid "Launch Full Scan"
|
1923 |
msgstr "Start volledige scan"
|
1924 |
|
1925 |
-
#: ../settings.php:
|
1926 |
msgid "Low severity"
|
1927 |
msgstr "Niet ernstig"
|
1928 |
|
1929 |
-
#: ../settings.php:
|
1930 |
msgid "Medium severity"
|
1931 |
msgstr "Ernstig"
|
1932 |
|
1933 |
-
#: ../settings.php:
|
1934 |
msgid "High severity"
|
1935 |
msgstr "Zeer ernstig"
|
1936 |
|
1937 |
-
#: ../settings.php:
|
1938 |
msgid "Report an issue if any of the following is true"
|
1939 |
msgstr "Rapporteer "
|
1940 |
|
1941 |
-
#: ../settings.php:
|
1942 |
msgid "Send email report"
|
1943 |
msgstr "Stuur e-mail-rapport"
|
1944 |
|
1945 |
-
#: ../settings.php:
|
1946 |
msgid "After every scan"
|
1947 |
msgstr "Na elke scan"
|
1948 |
|
1949 |
-
#: ../settings.php:
|
1950 |
msgid "If any changes in scan results occurred"
|
1951 |
msgstr "Bij veranderingen in de scanresultaten"
|
1952 |
|
1953 |
#: ../settings.php:471
|
1954 |
-
msgid "If new issues detected"
|
1955 |
-
msgstr "Bij detectie van nieuwe problemen"
|
1956 |
-
|
1957 |
-
#: ../settings.php:470
|
1958 |
msgid "Include file sizes"
|
1959 |
msgstr "Voeg bestandsgrootte toe"
|
1960 |
|
1961 |
-
#: ../settings.php:
|
1962 |
msgid "Include scan errors"
|
1963 |
msgstr "Voeg scanfouten toe"
|
1964 |
|
1965 |
-
#: ../cerber-scanner.php:
|
1966 |
msgid "Security Scanner"
|
1967 |
msgstr "Veiligheidsscanner"
|
1968 |
|
1969 |
-
#: ../cerber-scanner.php:
|
1970 |
msgid "Scheduling"
|
1971 |
msgstr "Agenderen"
|
1972 |
|
1973 |
-
#: ../cerber-scanner.php:
|
1974 |
msgid "Currently a scheduled scan in progress. Please wait until it is finished."
|
1975 |
msgstr "Er loopt een geagendeerde scan; wacht totdat deze afloopt."
|
1976 |
|
1977 |
-
#: ../cerber-scanner.php:
|
1978 |
msgid "Previous scan started %s has not been completed. Continue scanning?"
|
1979 |
msgstr "Voorgaande scan die begon op %s is nog niet klaar. Daarmee doorgaan?"
|
1980 |
|
1981 |
-
#: ../cerber-scanner.php:
|
1982 |
msgid "It seems this website has never been scanned. To start scanning click the button below."
|
1983 |
msgstr "Deze site lijkt nooit te zijn gescand. Klik onderstaande knop om nu te scannen."
|
1984 |
|
1985 |
-
#: ../cerber-scanner.php:
|
1986 |
msgid "Start Quick Scan"
|
1987 |
msgstr "Begin Snelle Scan"
|
1988 |
|
1989 |
-
#: ../cerber-scanner.php:
|
1990 |
msgid "Start Full Scan"
|
1991 |
msgstr "Begin Volledige Scan"
|
1992 |
|
1993 |
-
#: ../cerber-scanner.php:
|
1994 |
msgid "Stop Scanning"
|
1995 |
msgstr "Stop Scannen"
|
1996 |
|
1997 |
-
#: ../cerber-scanner.php:
|
1998 |
msgid "Continue Scanning"
|
1999 |
msgstr "Hervat Scannen"
|
2000 |
|
2001 |
-
#: ../cerber-scanner.php:
|
2002 |
msgid "Delete"
|
2003 |
msgstr "Wis"
|
2004 |
|
2005 |
-
#: ../cerber-scanner.php:
|
2006 |
msgid "Verified"
|
2007 |
msgstr "Geverifieerd"
|
2008 |
|
2009 |
-
#: ../cerber-scanner.php:
|
2010 |
msgid "Integrity data not found"
|
2011 |
msgstr "Intergriteitsgegevens niet gevonden"
|
2012 |
|
2013 |
-
#: ../cerber-scanner.php:
|
2014 |
msgid "Unable to check the integrity of the plugin due to a network error"
|
2015 |
msgstr "Kan integriteit van plugin niet controleren door een netwerkfout"
|
2016 |
|
2017 |
-
#: ../cerber-scanner.php:
|
2018 |
msgid "Unable to check the integrity of WordPress files due to a network error"
|
2019 |
msgstr "Kan integriteit van Wordpressbestanden niet controleren door een netwerkfout"
|
2020 |
|
2021 |
-
#: ../cerber-scanner.php:
|
2022 |
msgid "Unable to check the integrity of the theme due to a network error"
|
2023 |
msgstr "Kan integriteit van thema niet controleren door een netwerkfout"
|
2024 |
|
2025 |
-
#: ../cerber-scanner.php:
|
2026 |
msgid "Local file doesn't exist"
|
2027 |
msgstr "Lokaal bestand bestaat niet"
|
2028 |
|
2029 |
-
#: ../cerber-scanner.php:
|
2030 |
msgid "Unable to process file"
|
2031 |
msgstr "Kan bestand niet verwerken"
|
2032 |
|
2033 |
-
#: ../cerber-scanner.php:
|
2034 |
msgid "Unable to open file"
|
2035 |
msgstr "Kan bestand niet openen"
|
2036 |
|
2037 |
-
#: ../cerber-scanner.php:
|
2038 |
msgid "Checksum mismatch"
|
2039 |
msgstr "Controlegetal klopt niet"
|
2040 |
|
2041 |
-
#: ../cerber-scanner.php:
|
2042 |
msgid "Suspicious code found"
|
2043 |
msgstr "Verdachte code gevonden"
|
2044 |
|
2045 |
-
#: ../cerber-scanner.php:
|
2046 |
msgid "Potentially malicious code found"
|
2047 |
msgstr "Mogelijk verdachte code gevonden"
|
2048 |
|
2049 |
-
#: ../cerber-scanner.php:
|
2050 |
msgid "Unattended suspicious file"
|
2051 |
msgstr "Verdacht losstaand bestand"
|
2052 |
|
2053 |
-
#: ../cerber-scanner.php:
|
2054 |
msgid "Executable code found"
|
2055 |
msgstr "Uitvoerbare code gevonden"
|
2056 |
|
2057 |
-
#: ../cerber-scanner.php:
|
2058 |
msgid "Unwanted file extension"
|
2059 |
msgstr "Ongewenste bestandsextensie"
|
2060 |
|
2061 |
-
#: ../cerber-scanner.php:
|
2062 |
msgid "Content has been modified"
|
2063 |
msgstr "Inhoud is gewijzigd"
|
2064 |
|
2065 |
-
#: ../cerber-scanner.php:
|
2066 |
msgid "New file"
|
2067 |
msgstr "Nieuw bestand"
|
2068 |
|
2069 |
-
#: ../cerber-scanner.php:
|
2070 |
msgid "Custom signature found"
|
2071 |
msgstr "Eigen ondertekening gevonden"
|
2072 |
|
2073 |
-
#: ../cerber-scanner.php:
|
2074 |
msgid "Scanning folders for files"
|
2075 |
msgstr "Scan mappen voor bestanden"
|
2076 |
|
2077 |
-
#: ../cerber-scanner.php:
|
2078 |
msgid "Parsing the list of files"
|
2079 |
msgstr "Bezig de bestandslijst door te nemen"
|
2080 |
|
2081 |
-
#: ../cerber-scanner.php:
|
2082 |
msgid "Checking for new and modified files"
|
2083 |
msgstr "Controleren op nieuwe en gewijzigde bestanden"
|
2084 |
|
2085 |
-
#: ../cerber-scanner.php:
|
2086 |
msgid "Verifying the integrity of WordPress"
|
2087 |
msgstr "Integriteit van WordPress controleren"
|
2088 |
|
2089 |
-
#: ../cerber-scanner.php:
|
2090 |
msgid "Verifying the integrity of the plugins"
|
2091 |
msgstr "Integriteit van plugins controleren"
|
2092 |
|
2093 |
-
#: ../cerber-scanner.php:
|
2094 |
msgid "Verifying the integrity of the themes"
|
2095 |
msgstr "Integriteit van thema's controleren"
|
2096 |
|
2097 |
-
#: ../cerber-scanner.php:
|
2098 |
msgid "Searching for malicious code"
|
2099 |
msgstr "Kwaadaardige code zoeken"
|
2100 |
|
2101 |
-
#: ../cerber-scanner.php:
|
2102 |
msgid "Finalizing the scan"
|
2103 |
msgstr "Scan afronden"
|
2104 |
|
2105 |
-
#: ../cerber-scanner.php:
|
2106 |
msgid "Files to scan"
|
2107 |
msgstr "Bestanden te scannen"
|
2108 |
|
2109 |
-
#: ../cerber-scanner.php:
|
2110 |
msgid "Critical issues"
|
2111 |
msgstr "Kritieke problemen"
|
2112 |
|
2113 |
-
#: ../cerber-scanner.php:
|
2114 |
msgid "Issues total"
|
2115 |
msgstr "Totaal aan problemen"
|
2116 |
|
2117 |
-
#: ../cerber-scanner.php:
|
2118 |
msgid "The directory is not writable"
|
2119 |
msgstr "Map is niet schrijfbaar"
|
2120 |
|
2121 |
-
#: ../cerber-scanner.php:
|
2122 |
msgid "Unable to create WP CERBER directory"
|
2123 |
msgstr "Kan WP Cerber-map niet aanmaken"
|
2124 |
|
2125 |
-
#: ../cerber-scanner.php:
|
2126 |
msgid "File access error. Possibly scan results are outdated. Please run Quick or Full Scan."
|
2127 |
msgstr "Fout bij bestandstoegang. Scanresultaten zijn mogelijk verouderd. Scan opnieuw."
|
2128 |
|
2129 |
-
#: ../cerber-scanner.php:
|
2130 |
-
msgid "Cerber Security Scanner"
|
2131 |
-
msgstr "Cerber Security Scanner"
|
2132 |
-
|
2133 |
-
#: ../cerber-scanner.php:4594
|
2134 |
msgid "To view full report visit"
|
2135 |
msgstr "Ga voor volledig rapport naar"
|
2136 |
|
2137 |
-
#: ../cerber-load.php:
|
2138 |
msgid "Scanner Report"
|
2139 |
msgstr "Scannerrapport"
|
2140 |
|
2141 |
-
#: ../settings.php:
|
2142 |
msgid "Monitor new files"
|
2143 |
msgstr "Nieuwe bestanden bewaken"
|
2144 |
|
2145 |
-
#: ../settings.php:
|
2146 |
msgid "Monitor modified files"
|
2147 |
msgstr "Gewijzigde bestanden bewaken"
|
2148 |
|
2149 |
-
#: ../settings.php:
|
2150 |
msgid "If new issues found"
|
2151 |
msgstr "Bij nieuw gevonden problemen"
|
2152 |
|
2153 |
-
#: ../settings.php:
|
2154 |
msgid "The schedule has been updated"
|
2155 |
msgstr "Het schema is aangepast"
|
2156 |
|
2157 |
-
#: ../settings.php:
|
2158 |
msgid "Unable to updated the schedule"
|
2159 |
msgstr "Kan schema niet aanpassen"
|
2160 |
|
2161 |
#. Is it really 'directives' or do you mean 'directories' ?
|
2162 |
-
#: ../cerber-scanner.php:
|
2163 |
msgid "Suspicious directives found"
|
2164 |
msgstr "Verdachte instellingen gevonden"
|
2165 |
|
2166 |
-
#: ../cerber-scanner.php:
|
2167 |
msgid "Suspicious code instruction found"
|
2168 |
msgstr "Verdachte code-instructie gevonden"
|
2169 |
|
2170 |
-
#: ../cerber-scanner.php:
|
2171 |
msgid "Suspicious code signatures found"
|
2172 |
msgstr "Verdachte code-ondertekeningen gevonden"
|
2173 |
|
2174 |
-
#: ../cerber-scanner.php:
|
2175 |
msgid "To solve this issue you have to reinstall %s or update it to the latest version."
|
2176 |
msgstr "Herinstalleer of update %s om dit probleem op te lossen."
|
2177 |
|
2178 |
-
#: ../cerber-scanner.php:
|
2179 |
msgid "Please upload a reference ZIP archive"
|
2180 |
msgstr "Upload een referentie-ZIP-archief"
|
2181 |
|
2182 |
-
#: ../cerber-scanner.php:
|
2183 |
msgid "Resolve issue"
|
2184 |
msgstr "Probleem oplossen"
|
2185 |
|
2186 |
-
#: ../cerber-scanner.php:
|
2187 |
msgid "We have not found any integrity data to verify"
|
2188 |
msgstr "We vinden geen integriteitsgegevens om te verifiëren"
|
2189 |
|
2190 |
-
#: ../cerber-scanner.php:
|
2191 |
msgid "You have to upload a ZIP archive from which you've installed it. This enables the security scanner to verify the integrity of the code and detect malware."
|
2192 |
msgstr "Je moet het ZIP-archief uploaden vanwaar dit is geïnstalleerd. Daarmee kan de scanner de integriteit van de code controleren en malware herkennen."
|
2193 |
|
2194 |
-
#: ../cerber-scanner.php:
|
2195 |
msgid "Full Scan Report"
|
2196 |
msgstr "Rapport Volledige Scan"
|
2197 |
|
2198 |
-
#: ../cerber-scanner.php:
|
2199 |
msgid "Quick Scan Report"
|
2200 |
msgstr "Rapportage Snelle Scan"
|
2201 |
|
2202 |
-
#: ../cerber-scanner.php:
|
2203 |
msgid "Files scanned"
|
2204 |
msgstr "Bestanden gescand"
|
2205 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:1285 ../settings.php:101
|
76 |
msgid "Citadel mode"
|
77 |
msgstr "Citadelstand"
|
78 |
|
84 |
msgid "Duration"
|
85 |
msgstr "Duur"
|
86 |
|
87 |
+
#: ../cerber-load.php:4261 ../settings.php:80 ../settings.php:104 ../settings.php:
|
88 |
+
#: 581
|
89 |
msgid "Notifications"
|
90 |
msgstr "Meldingen"
|
91 |
|
93 |
msgid "Send notification to admin email"
|
94 |
msgstr "Melding versturen naar admin e-mailadres"
|
95 |
|
96 |
+
#: ../cerber-load.php:4258 ../settings.php:571 ../cerber-tools.php:92 ../cerber-
|
97 |
#: tools.php:101 ../cerber-tools.php:182
|
98 |
msgid "Access Lists"
|
99 |
msgstr "Toegangslijsten"
|
100 |
|
101 |
+
#: ../dashboard.php:1319 ../dashboard.php:1645 ../cerber-load.php:3983 ..
|
102 |
+
#: /settings.php:106 ../settings.php:560
|
103 |
msgid "Activity"
|
104 |
msgstr "Activiteit"
|
105 |
|
106 |
+
#: ../settings.php:564
|
107 |
msgid "Lockouts"
|
108 |
msgstr "Uitsluitingen"
|
109 |
|
110 |
+
#: ../settings.php:694 ../settings.php:816
|
111 |
msgid "%s allowed retries in %s minutes"
|
112 |
msgstr "%s toegestane pogingen in %s minuten"
|
113 |
|
114 |
+
#: ../settings.php:716 ../settings.php:838
|
115 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
116 |
msgstr "Aanzetten na %s mislukte inlogpogingen binnen %s minuten"
|
117 |
|
118 |
+
#: ../dashboard.php:133 ../dashboard.php:711 ../dashboard.php:3050 ../cerber-load.
|
119 |
+
#: php:3992
|
120 |
msgid "IP"
|
121 |
msgstr "IP"
|
122 |
|
123 |
+
#: ../dashboard.php:543 ../dashboard.php:714 ../dashboard.php:3048
|
124 |
msgid "Date"
|
125 |
msgstr "Datum"
|
126 |
|
127 |
+
#: ../dashboard.php:543 ../dashboard.php:716 ../dashboard.php:3053
|
128 |
msgid "Local User"
|
129 |
msgstr "Lokale gebruiker"
|
130 |
|
131 |
+
#: ../dashboard.php:543 ../dashboard.php:717 ../cerber-load.php:4000
|
132 |
msgid "Username used"
|
133 |
msgstr "Toegepaste gebruikersnaam"
|
134 |
|
136 |
msgid "Showing last %d records from %d"
|
137 |
msgstr "Laatste %d records van %d"
|
138 |
|
139 |
+
#: ../common.php:835
|
140 |
msgid "Logged in"
|
141 |
msgstr "Ingelogd"
|
142 |
|
143 |
+
#: ../common.php:836
|
144 |
msgid "Logged out"
|
145 |
msgstr "Uitgelogd"
|
146 |
|
147 |
+
#: ../common.php:837
|
148 |
msgid "Login failed"
|
149 |
msgstr "Inloggen mislukt"
|
150 |
|
151 |
+
#: ../common.php:840
|
152 |
msgid "IP blocked"
|
153 |
msgstr "IP geblokkeerd"
|
154 |
|
155 |
+
#: ../common.php:841
|
156 |
msgid "Subnet blocked"
|
157 |
msgstr "Subnet geblokkeerd"
|
158 |
|
159 |
+
#: ../common.php:843
|
160 |
msgid "Citadel activated!"
|
161 |
msgstr "Citadelstand geactiveerd!"
|
162 |
|
163 |
+
#: ../dashboard.php:691 ../dashboard.php:919 ../dashboard.php:2880 ../common.php:
|
164 |
+
#: 889
|
165 |
#, fuzzy
|
166 |
msgid "Locked out"
|
167 |
msgstr "Buitengesloten"
|
168 |
|
169 |
+
#: ../common.php:890
|
170 |
msgid "IP blacklisted"
|
171 |
msgstr "IP uitgesloten"
|
172 |
|
173 |
+
#: ../common.php:858
|
174 |
msgid "Password changed"
|
175 |
msgstr "Wachtwoord veranderd"
|
176 |
|
182 |
msgid "Lockout for %s was removed"
|
183 |
msgstr "Uitsluiting voor %s is verwijderd"
|
184 |
|
185 |
+
#: ../dashboard.php:171 ../dashboard.php:686 ../dashboard.php:913 ../dashboard.
|
186 |
+
#: php:1283 ../dashboard.php:2875 ../cerber-load.php:4246 ../settings.php:518
|
187 |
#, fuzzy
|
188 |
msgid "White IP Access List"
|
189 |
msgstr "Lijst Toegelaten IP-adressen"
|
190 |
|
191 |
+
#: ../dashboard.php:173 ../dashboard.php:687 ../dashboard.php:916 ../dashboard.
|
192 |
+
#: php:1284 ../dashboard.php:2876
|
193 |
#, fuzzy
|
194 |
msgid "Black IP Access List"
|
195 |
msgstr "Uitgesloten IP-adressen"
|
208 |
msgid "Address %s was added to Black IP Access List"
|
209 |
msgstr "Adres %s toegevoegd aan de Lijst Uitgesloten IP-adressen "
|
210 |
|
211 |
+
#: ../cerber-load.php:3415
|
212 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
213 |
msgstr "Citadelstand geactiveerd na %d mislukte inlogpogingen binnen %d minuten"
|
214 |
|
215 |
+
#: ../dashboard.php:1806 ../dashboard.php:2210
|
216 |
#, fuzzy
|
217 |
msgid "View Activity"
|
218 |
msgstr "Activiteit bekijken"
|
219 |
|
220 |
+
#: ../dashboard.php:2724 ../cerber-tools.php:91 ../cerber-tools.php:100 ../cerber-
|
221 |
+
#: scanner.php:85
|
222 |
msgid "Settings"
|
223 |
msgstr "Instellingen"
|
224 |
|
225 |
+
#: ../dashboard.php:1146
|
226 |
#, fuzzy
|
227 |
msgid "Last login"
|
228 |
msgstr "Laatst ingelogd"
|
229 |
|
230 |
+
#: ../dashboard.php:1179 ../dashboard.php:1266 ../common.php:1000
|
231 |
msgid "Never"
|
232 |
msgstr "Nooit"
|
233 |
|
234 |
+
#: ../dashboard.php:1691
|
235 |
msgid "Are you sure?"
|
236 |
msgstr "Weet je het zeker?"
|
237 |
|
238 |
+
#: ../dashboard.php:1487 ../settings.php:81
|
239 |
msgid "My site is behind a reverse proxy"
|
240 |
msgstr "Mijn website draait achter een reverse proxy"
|
241 |
|
247 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
248 |
msgstr "IP meteen blokkeren bij inlogpoging op niet-bestaande gebruiker"
|
249 |
|
250 |
+
#: ../settings.php:504
|
|
|
|
|
|
|
|
|
251 |
msgid "Make your protection smarter!"
|
252 |
msgstr "Maak je bescherming slimmer!"
|
253 |
|
254 |
+
#: ../settings.php:508
|
255 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
256 |
msgstr "Schakel Permalinks in om deze functionaliteit te gebruiken. Stel de Permalinks instelling in op iets anders dan Standaard."
|
257 |
|
258 |
+
#: ../cerber-load.php:4256 ../settings.php:567
|
259 |
msgid "Main Settings"
|
260 |
msgstr "Hoofdinstellingen"
|
261 |
|
262 |
+
#: ../dashboard.php:2725 ../settings.php:584 ../cerber-tools.php:51 ../cerber-
|
263 |
+
#: scanner.php:87
|
264 |
msgid "Help"
|
265 |
msgstr "Hulp"
|
266 |
|
267 |
+
#: ../settings.php:704 ../settings.php:826
|
268 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
269 |
msgstr "Uitsluitingsduur ophogen naar %s uren na %s uitsluitingen in de laatste %s uren"
|
270 |
|
271 |
+
#: ../cerber-load.php:368
|
272 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
273 |
msgstr "Je hebt geen toestemming om in te loggen. Vraag je beheerder om informatie."
|
274 |
|
275 |
+
#: ../cerber-load.php:394
|
|
|
|
|
|
|
|
|
276 |
msgid "You have only one attempt remaining."
|
277 |
msgid_plural "You have %d attempts remaining."
|
278 |
msgstr[0] "Slechts één inlogpoging resterend!"
|
279 |
msgstr[1] "%s inlogpogingen resterend."
|
280 |
|
281 |
+
#: ../dashboard.php:739
|
282 |
msgid "No activity has been logged."
|
283 |
msgstr "Geen activiteit waargenomen."
|
284 |
|
299 |
msgid "Your IP"
|
300 |
msgstr "Jouw IP"
|
301 |
|
302 |
+
#: ../cerber-load.php:3416
|
303 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
304 |
msgstr "Laatste mislukte inlogpoging was op %s vanaf IP %s op gebruiker %s."
|
305 |
|
306 |
+
#: ../cerber-load.php:4211
|
307 |
msgid "Can't activate WP Cerber due to a database error."
|
308 |
msgstr "Kan WP Cerber niet activeren door een fout in de database"
|
309 |
|
310 |
+
#: ../settings.php:711 ../settings.php:833
|
311 |
msgid "Notify admin if the number of active lockouts above"
|
312 |
msgstr "Waarschuw de beheerder als het aantal actieve uitsluitingen stijgt tot boven"
|
313 |
|
314 |
+
#: ../settings.php:107 ../settings.php:183 ../settings.php:358 ../settings.php:423
|
315 |
msgid "days"
|
316 |
msgstr "dagen"
|
317 |
|
318 |
+
#: ../dashboard.php:1236
|
319 |
msgid "Cerber Quick View"
|
320 |
msgstr "Cerber Quick View"
|
321 |
|
336 |
msgid "Always block entire subnet Class C of intruders IP"
|
337 |
msgstr "Altijd gehele IP Class C subnet blokkeren van aanvaller"
|
338 |
|
339 |
+
#: ../settings.php:104 ../settings.php:713 ../settings.php:835
|
340 |
msgid "Click to send test"
|
341 |
msgstr "Klik om test te verzenden"
|
342 |
|
343 |
+
#: ../settings.php:1000 ../settings.php:1001
|
344 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
345 |
msgstr "Let op! Je hebt de inlog-URL veranderd. De nieuwe inlog-URL is"
|
346 |
|
347 |
+
#: ../dashboard.php:1145
|
348 |
msgid "Comments"
|
349 |
msgstr "Reacties"
|
350 |
|
351 |
+
#: ../common.php:1185
|
352 |
msgid "Update to version %s of WP Cerber"
|
353 |
msgstr "WP Cerber updaten naar versie %s"
|
354 |
|
355 |
+
#: ../cerber-load.php:3417 ../cerber-load.php:4024
|
356 |
msgid "View activity in dashboard"
|
357 |
msgstr "Activiteiten bekijken in dashboard"
|
358 |
|
359 |
+
#: ../cerber-load.php:3447
|
360 |
msgid "Number of active lockouts"
|
361 |
msgstr "Aantal actieve uitsluitingen"
|
362 |
|
363 |
+
#: ../cerber-load.php:3451
|
364 |
msgid "View lockouts in dashboard"
|
365 |
msgstr "Uitsluitingen bekijken in dashboard"
|
366 |
|
367 |
+
#: ../cerber-load.php:3539
|
368 |
msgid "This message was sent by"
|
369 |
msgstr "Dit bericht is verzonden door"
|
370 |
|
408 |
msgid "What do you want to import?"
|
409 |
msgstr "Wat wil je importeren?"
|
410 |
|
411 |
+
#: ../cerber-tools.php:102 ../cerber-scanner.php:3588
|
412 |
msgid "Upload file"
|
413 |
msgstr "Bestand uploaden"
|
414 |
|
428 |
msgid "Error while parsing file"
|
429 |
msgstr "Fout bij verwerken bestand"
|
430 |
|
431 |
+
#: ../dashboard.php:134 ../dashboard.php:712
|
432 |
msgid "Hostname"
|
433 |
msgstr "Hostnaam"
|
434 |
|
436 |
msgid "unknown"
|
437 |
msgstr "onbekend"
|
438 |
|
439 |
+
#: ../settings.php:107 ../settings.php:354
|
440 |
#, fuzzy
|
441 |
msgid "Keep records for"
|
442 |
msgstr "Gegevens behouden tot"
|
443 |
|
444 |
+
#: ../dashboard.php:1270 ../dashboard.php:1292
|
445 |
msgid "active"
|
446 |
msgstr "actief"
|
447 |
|
448 |
+
#: ../dashboard.php:1270
|
449 |
msgid "deactivate"
|
450 |
msgstr "deactiveren"
|
451 |
|
452 |
+
#: ../dashboard.php:1272
|
453 |
msgid "not active"
|
454 |
msgstr "niet actief"
|
455 |
|
456 |
+
#: ../dashboard.php:1273 ../dashboard.php:1287
|
457 |
msgid "disabled"
|
458 |
msgstr "gedeactiveerd"
|
459 |
|
460 |
+
#: ../dashboard.php:1278
|
461 |
msgid "failed attempts"
|
462 |
msgstr "mislukte pogingen"
|
463 |
|
464 |
+
#: ../dashboard.php:1278 ../dashboard.php:1279
|
465 |
msgid "in 24 hours"
|
466 |
msgstr "in 24 uur"
|
467 |
|
468 |
+
#: ../dashboard.php:1278 ../dashboard.php:1279
|
469 |
msgid "view all"
|
470 |
msgstr "bekijk alles"
|
471 |
|
472 |
+
#: ../dashboard.php:1279
|
473 |
msgid "lockouts"
|
474 |
msgstr "uitsluitingen"
|
475 |
|
476 |
+
#: ../dashboard.php:1281
|
477 |
msgid "Lockouts at the moment"
|
478 |
msgstr "Uitsluitingen op dit moment"
|
479 |
|
480 |
+
#: ../dashboard.php:1282
|
481 |
#, fuzzy
|
482 |
msgid "Last lockout"
|
483 |
msgstr "Recente uitsluiting"
|
484 |
|
485 |
+
#: ../dashboard.php:1283 ../dashboard.php:1284 ../dashboard.php:1977
|
486 |
msgid "entry"
|
487 |
msgid_plural "entries"
|
488 |
msgstr[0] "item"
|
489 |
msgstr[1] "items"
|
490 |
|
491 |
+
#: ../dashboard.php:1686
|
492 |
#, fuzzy
|
493 |
msgid "Confused about some settings?"
|
494 |
msgstr "Onzeker over sommige instellingen?"
|
495 |
|
496 |
+
#: ../dashboard.php:1687
|
497 |
#, fuzzy
|
498 |
msgid "You can easily load default recommended settings using button below"
|
499 |
msgstr "Met onderstaande knop laad je de aanbevolen instellingen"
|
500 |
|
501 |
+
#: ../dashboard.php:1689
|
502 |
#, fuzzy
|
503 |
msgid "Load default settings"
|
504 |
msgstr "Aanbevolen instellingen laden"
|
505 |
|
506 |
+
#: ../dashboard.php:1697
|
507 |
msgid "doesn't affect Custom login URL and Access Lists"
|
508 |
msgstr "heeft geen invloed op Aangepaste inlog-URL en Toegangslijsten"
|
509 |
|
510 |
+
#: ../common.php:1178 ../settings.php:225
|
511 |
msgid "New version is available"
|
512 |
msgstr "Nieuwe versie beschikbaar"
|
513 |
|
516 |
msgid "WP Cerber"
|
517 |
msgstr "WP Cerber"
|
518 |
|
519 |
+
#: ../cerber-load.php:3391
|
520 |
msgid "WP Cerber notify"
|
521 |
msgstr "WP Cerber melding"
|
522 |
|
523 |
+
#: ../cerber-load.php:3413
|
524 |
msgid "Citadel mode is activated"
|
525 |
msgstr "Citadelstand is actief"
|
526 |
|
527 |
+
#: ../cerber-load.php:3486
|
528 |
msgid "New Custom login URL"
|
529 |
msgstr "Nieuwe Aangepaste inlog-URL"
|
530 |
|
531 |
+
#: ../cerber-load.php:4198
|
532 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
533 |
msgstr "WP Cerber vereist PHP %s of hoger. Je gebruikt nu"
|
534 |
|
535 |
+
#: ../cerber-load.php:4202
|
536 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
537 |
msgstr "WP Cerber vereist WordPress %s of hoger. Je gebruikt nu"
|
538 |
|
544 |
msgid "Write failed login attempts to the file"
|
545 |
msgstr "Mislukte pogingen opslaan in bestand"
|
546 |
|
547 |
+
#: ../dashboard.php:1805
|
548 |
msgid "Deactivate"
|
549 |
msgstr "Deactiveren"
|
550 |
|
551 |
+
#: ../dashboard.php:137 ../cerber-load.php:3449
|
552 |
msgid "Reason"
|
553 |
msgstr "Reden"
|
554 |
|
556 |
msgid "Add IP to the list"
|
557 |
msgstr "IP-adres toevoegen aan lijst"
|
558 |
|
559 |
+
#: ../dashboard.php:976
|
560 |
msgid "Add IP to the Black List"
|
561 |
msgstr "IP-adres toevoegen aan Uitsluitingslijst"
|
562 |
|
563 |
+
#: ../common.php:925
|
564 |
msgid "Attempt to access"
|
565 |
msgstr "Poging tot toegang"
|
566 |
|
567 |
+
#: ../common.php:924
|
568 |
msgid "Limit on login attempts is reached"
|
569 |
msgstr "Limiet voor aantal inlogpogingen is bereikt"
|
570 |
|
571 |
+
#: ../common.php:866 ../common.php:926
|
572 |
msgid "Attempt to log in with non-existent username"
|
573 |
msgstr "Inlogpoging met onbekende gebruikersnaam"
|
574 |
|
575 |
+
#: ../cerber-load.php:3448
|
576 |
msgid "Last lockout was added: %s for IP %s"
|
577 |
msgstr "Laatste uitsluiting was toegevoegd: %s voor IP-adres %s"
|
578 |
|
579 |
+
#: ../cerber-load.php:4260 ../settings.php:574
|
580 |
msgid "Hardening"
|
581 |
msgstr "Versterking"
|
582 |
|
583 |
+
#: ../dashboard.php:953
|
584 |
msgid "Abuse email:"
|
585 |
msgstr "E-mail voor misbruik:"
|
586 |
|
587 |
+
#: ../settings.php:212 ../settings.php:253 ../settings.php:485
|
588 |
msgid "Email Address"
|
589 |
msgstr "E-mailadres"
|
590 |
|
628 |
msgid "Disable REST API"
|
629 |
msgstr "REST API uitschakelen"
|
630 |
|
631 |
+
#: ../settings.php:518
|
632 |
msgid "These settings do not affect hosts from the "
|
633 |
msgstr "Deze instellingen gelden niet voor hosts van de "
|
634 |
|
635 |
+
#: ../settings.php:1078 ../settings.php:1090 ../settings.php:1218
|
636 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
637 |
msgstr "<strong>LET OP</strong>: voer een geldig e-mailadres in."
|
638 |
|
639 |
+
#: ../cerber-load.php:3479 ../cerber-load.php:4245
|
640 |
msgid "WP Cerber is now active and has started protecting your site"
|
641 |
msgstr "WP Cerber is actief en beschermt nu je website"
|
642 |
|
652 |
msgid "Incorrect IP address or IP range"
|
653 |
msgstr "IP-adres of -reeks is incorrect"
|
654 |
|
655 |
+
#: ../dashboard.php:445 ../dashboard.php:1821
|
656 |
msgid "Settings saved"
|
657 |
msgstr "Instellingen opgeslagen"
|
658 |
|
659 |
+
#: ../dashboard.php:957
|
660 |
msgid "Network:"
|
661 |
msgstr "Netwerk:"
|
662 |
|
663 |
+
#: ../dashboard.php:971
|
664 |
msgid "Add network to the Black List"
|
665 |
msgstr "Netwerk toevoegen aan Uitsluitingslijst"
|
666 |
|
667 |
+
#: ../dashboard.php:1804
|
668 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
669 |
msgstr "Let op! Citadelstand is actief; niemand kan inloggen."
|
670 |
|
671 |
+
#: ../dashboard.php:353 ../dashboard.php:2805 ../whois.php:223 ../whois.php:254 ..
|
672 |
+
#: /common.php:923 ../common.php:1269
|
673 |
msgid "Unknown"
|
674 |
msgstr "Onbekend"
|
675 |
|
678 |
msgid "Gregory"
|
679 |
msgstr "Gregory"
|
680 |
|
681 |
+
#: ../common.php:209 ../common.php:272 ../common.php:277 ../common.php:282 ..
|
682 |
+
#: /cerber-load.php:677 ../cerber-load.php:689 ../cerber-load.php:696 ../cerber-
|
683 |
+
#: load.php:950 ../cerber-load.php:1172 ../cerber-load.php:1178 ../cerber-load.
|
684 |
+
#: php:1183 ../cerber-load.php:1188 ../cerber-load.php:1194 ../cerber-load.php:
|
685 |
+
#: 1201 ../cerber-load.php:1303 ../cerber-load.php:1440 ../settings.php:979 ..
|
686 |
+
#: /settings.php:1048
|
687 |
msgid "ERROR:"
|
688 |
msgstr "FOUT:"
|
689 |
|
690 |
+
#: ../cerber-load.php:706
|
691 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
692 |
msgstr "Menselijke verificatie mislukt. Klik het vierkant in onderstaand reCAPTCHA-blok."
|
693 |
|
694 |
+
#: ../cerber-load.php:962
|
695 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
696 |
msgstr "<strong>LET OP</strong>: je geeft een foutief wachtwoord op voor gebruiker %s."
|
697 |
|
698 |
+
#: ../cerber-load.php:1189
|
699 |
msgid "Username is not allowed. Please choose another one."
|
700 |
msgstr "Gebruikersnaam is niet toegestaan, kies een andere."
|
701 |
|
702 |
+
#: ../cerber-load.php:3442
|
703 |
msgid "unspecified"
|
704 |
msgstr "niet gespecificeerd"
|
705 |
|
706 |
+
#: ../cerber-load.php:3445
|
707 |
msgid "Number of lockouts is increasing"
|
708 |
msgstr "Aantal uitsluitingen loopt op"
|
709 |
|
710 |
+
#: ../cerber-load.php:3450
|
711 |
msgid "View activity for this IP"
|
712 |
msgstr "Bekijk activiteit voor dit adres"
|
713 |
|
714 |
+
#: ../cerber-load.php:3454 ../cerber-load.php:3456
|
715 |
msgid "A new version of WP Cerber is available to install"
|
716 |
msgstr "Nieuwe versie WP Cerber is klaar voor installatie"
|
717 |
|
718 |
+
#: ../cerber-load.php:3455
|
719 |
msgid "Hi!"
|
720 |
msgstr "Hallo!"
|
721 |
|
722 |
+
#: ../cerber-load.php:3458 ../cerber-load.php:3469
|
723 |
msgid "Website"
|
724 |
msgstr "Website"
|
725 |
|
726 |
+
#: ../cerber-load.php:3461 ../cerber-load.php:3462
|
727 |
msgid "The WP Cerber security plugin has been deactivated"
|
728 |
msgstr "WP Cerber is gedeactiveerd"
|
729 |
|
730 |
+
#: ../cerber-load.php:3464
|
731 |
msgid "Not logged in"
|
732 |
msgstr "Niet ingelogd"
|
733 |
|
734 |
+
#: ../cerber-load.php:3470
|
735 |
msgid "By user"
|
736 |
msgstr "Door gebruiker"
|
737 |
|
738 |
+
#: ../cerber-load.php:3471
|
739 |
msgid "From IP address"
|
740 |
msgstr "Van IP-adres"
|
741 |
|
742 |
+
#: ../cerber-load.php:3474
|
743 |
msgid "From country"
|
744 |
msgstr "Uit land"
|
745 |
|
746 |
+
#: ../cerber-load.php:3478
|
747 |
msgid "The WP Cerber security plugin is now active"
|
748 |
msgstr "WP Cerber is actief"
|
749 |
|
750 |
+
#: ../cerber-load.php:4246
|
751 |
msgid "Your IP address is added to the"
|
752 |
msgstr "Je IP-adres is toegevoegd aan de "
|
753 |
|
754 |
+
#: ../cerber-load.php:4262
|
755 |
msgid "Import settings"
|
756 |
msgstr "Instellingen importeren"
|
757 |
|
811 |
msgid "Enable reCAPTCHA for WordPress login form"
|
812 |
msgstr "ReCAPTCHA inschakelen voor WordPress inlogpagina"
|
813 |
|
814 |
+
#: ../settings.php:521
|
815 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
816 |
msgstr "Haal eerst een Site-sleutel en Geheime Sleutel op van Google om reCAPTCHA te kunnen gebruiken"
|
817 |
|
818 |
+
#: ../cerber-lab.php:750 ../settings.php:522
|
819 |
msgid "Know more"
|
820 |
msgstr "Meer weten"
|
821 |
|
822 |
+
#: ../dashboard.php:52 ../settings.php:550
|
823 |
msgid "WP Cerber Security"
|
824 |
msgstr "WP Cerber Security"
|
825 |
|
826 |
+
#: ../settings.php:577
|
827 |
msgid "Users"
|
828 |
msgstr "Gebruikers"
|
829 |
|
830 |
+
#: ../common.php:833
|
831 |
msgid "User created"
|
832 |
msgstr "Gebruiker toegevoegd"
|
833 |
|
834 |
+
#: ../dashboard.php:1638 ../common.php:834
|
835 |
msgid "User registered"
|
836 |
msgstr "Gebruiker geregistreerd"
|
837 |
|
838 |
+
#: ../common.php:861
|
839 |
msgid "reCAPTCHA verification failed"
|
840 |
msgstr "reCAPTCHA verificatie mislukt"
|
841 |
|
842 |
+
#: ../common.php:862
|
843 |
msgid "reCAPTCHA settings are incorrect"
|
844 |
msgstr "foutieve reCAPTCHA-instellingen"
|
845 |
|
846 |
#. 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" ?
|
847 |
+
#: ../common.php:865
|
848 |
msgid "Attempt to access prohibited URL"
|
849 |
msgstr "Poging verboden URL te benaderen"
|
850 |
|
851 |
+
#: ../common.php:867 ../common.php:927
|
852 |
msgid "Attempt to log in with prohibited username"
|
853 |
msgstr "Inlogpoging met verboden gebruikersnaam"
|
854 |
|
884 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
885 |
msgstr "ReCAPTCHA inschakelen voor WooCommerce inlogpagina"
|
886 |
|
887 |
+
#: ../common.php:863
|
888 |
msgid "Request to the Google reCAPTCHA service failed"
|
889 |
msgstr "Verzoek aan Google ReCAPTCHA-service"
|
890 |
|
891 |
+
#: ../dashboard.php:1630 ../dashboard.php:1660
|
892 |
msgid "View all"
|
893 |
msgstr "Zie alle"
|
894 |
|
895 |
+
#: ../dashboard.php:1661
|
896 |
msgid "Recently locked out IP addresses"
|
897 |
msgstr "Recent buitengesloten IP-adressen"
|
898 |
|
899 |
+
#: ../cerber-lab.php:748
|
900 |
msgid "OK, nail them all"
|
901 |
msgstr "OK, zet ze allemaal vast"
|
902 |
|
903 |
+
#: ../cerber-lab.php:749
|
904 |
msgid "NO, maybe later"
|
905 |
msgstr "Nee, misschien later"
|
906 |
|
907 |
+
#: ../dashboard.php:54 ../dashboard.php:1318 ../dashboard.php:1997 ../settings.
|
908 |
+
#: php:556
|
909 |
msgid "Dashboard"
|
910 |
msgstr "Dashboard"
|
911 |
|
912 |
+
#: ../cerber-lab.php:746
|
913 |
msgid "Want to make WP Cerber even more powerful?"
|
914 |
msgstr "Wil je WP Cerber nog beter maken?"
|
915 |
|
916 |
+
#: ../cerber-lab.php:747
|
917 |
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."
|
918 |
msgstr "Sta WP Cerber toe om afgeblokte kwaadaardige IP-adressen te delen met Cerber Lab. Dat helpt ons om algoritmes te ontwikkelen om WordPress steeds te beschermen tegen nieuwe bedreigingen en botnets. Je kunt je toestemming elk moment intrekken."
|
919 |
|
920 |
+
#: ../dashboard.php:543
|
921 |
msgid "IP address"
|
922 |
msgstr "IP-adres"
|
923 |
|
924 |
+
#: ../dashboard.php:543
|
925 |
msgid "User login"
|
926 |
msgstr "Gebruikers-login"
|
927 |
|
928 |
+
#: ../dashboard.php:543
|
929 |
msgid "User ID"
|
930 |
msgstr "Gebruikers-ID"
|
931 |
|
932 |
+
#: ../dashboard.php:735
|
933 |
msgid "Export"
|
934 |
msgstr "Export"
|
935 |
|
936 |
+
#: ../dashboard.php:757
|
937 |
msgid "Search for IP or username"
|
938 |
msgstr "Zoek IP of gebruikersnaam"
|
939 |
|
940 |
+
#: ../dashboard.php:757
|
941 |
msgid "Filter"
|
942 |
msgstr "Filter"
|
943 |
|
949 |
msgid "Cerber tools"
|
950 |
msgstr "Cerber tools"
|
951 |
|
952 |
+
#: ../dashboard.php:1907
|
953 |
msgid "Subscribe"
|
954 |
msgstr "Inschrijven"
|
955 |
|
956 |
+
#: ../dashboard.php:1908 ../cerber-tools.php:272
|
957 |
msgid "Unsubscribe"
|
958 |
msgstr "Uitschrijven"
|
959 |
|
960 |
+
#: ../dashboard.php:1936
|
961 |
msgid "You've subscribed"
|
962 |
msgstr "Je bent ingeschreven"
|
963 |
|
964 |
+
#: ../dashboard.php:1939
|
965 |
msgid "You've unsubscribed"
|
966 |
msgstr "Je bent uitgeschreven"
|
967 |
|
968 |
+
#: ../cerber-load.php:3490 ../cerber-load.php:3491
|
969 |
msgid "A new activity has been recorded"
|
970 |
msgstr "Er is nieuwe activiteit waargenomen"
|
971 |
|
972 |
+
#: ../cerber-load.php:3996
|
973 |
msgid "User"
|
974 |
msgstr "Gebruiker"
|
975 |
|
976 |
+
#: ../cerber-load.php:4004
|
977 |
msgid "Search string"
|
978 |
msgstr "Zoekfrase"
|
979 |
|
980 |
+
#: ../cerber-load.php:4025
|
981 |
msgid "To unsubscribe click here"
|
982 |
msgstr "Klik om uit te schrijven"
|
983 |
|
1001 |
msgid "Email notifications"
|
1002 |
msgstr "E-mail meldingen"
|
1003 |
|
1004 |
+
#: ../settings.php:216 ../settings.php:258 ../settings.php:322 ../settings.php:489
|
1005 |
msgid "Use comma to specify multiple values"
|
1006 |
msgstr "Scheid meer waarden met komma's"
|
1007 |
|
1017 |
msgid "Not available"
|
1018 |
msgstr "Niet beschikbaar"
|
1019 |
|
1020 |
+
#: ../common.php:859
|
1021 |
msgid "Password reset requested"
|
1022 |
msgstr "Wachtwoordvernieuwing aangevraagd"
|
1023 |
|
1024 |
+
#: ../common.php:928
|
1025 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1026 |
msgstr "Grens bereikt van foutieve reCAPTCHA's"
|
1027 |
|
1028 |
+
#: ../common.php:995
|
1029 |
msgid "%s ago"
|
1030 |
msgstr "%s geleden"
|
1031 |
|
1065 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1066 |
msgstr "Sluit IP-adressen uit voor %s minuten na %s mislukte pogingen in %s minuten"
|
1067 |
|
1068 |
+
#: ../settings.php:515
|
1069 |
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."
|
1070 |
msgstr "In de Citadelstand kunnen alleen adressen van de Lijst Toegelaten IP-adressen inloggen. Heeft geen effect op reeds ingelogde gebruikers."
|
1071 |
|
1072 |
+
#: ../dashboard.php:543 ../dashboard.php:715
|
1073 |
msgid "Event"
|
1074 |
msgstr "Gebeurtenis"
|
1075 |
|
1076 |
+
#: ../common.php:152
|
1077 |
msgid "Spam comments denied"
|
1078 |
msgstr "Spamreacties afgewezen"
|
1079 |
|
1080 |
+
#: ../common.php:154
|
1081 |
msgid "Malicious IP addresses detected"
|
1082 |
msgstr "Kwaadaardige IP-adressen gevonden"
|
1083 |
|
1084 |
+
#: ../common.php:155
|
1085 |
msgid "Lockouts occurred"
|
1086 |
msgstr "Uitsluitingen"
|
1087 |
|
1088 |
+
#: ../dashboard.php:1639
|
1089 |
msgid "All suspicious activity"
|
1090 |
msgstr "Alle verdachte activiteit"
|
1091 |
|
1092 |
+
#: ../cerber-load.php:1173 ../cerber-load.php:1179 ../cerber-load.php:1195 ..
|
1093 |
+
#: /cerber-load.php:1202
|
1094 |
msgid "You are not allowed to register."
|
1095 |
msgstr "Je mag niet aanmelden."
|
1096 |
|
1097 |
+
#: ../common.php:844
|
1098 |
msgid "Spam comment denied"
|
1099 |
msgstr "Spamreactie afgewezen."
|
1100 |
|
1101 |
+
#: ../common.php:869
|
1102 |
msgid "Attempt to log in denied"
|
1103 |
msgstr "Inlogpoging afgewezen"
|
1104 |
|
1105 |
+
#: ../common.php:870
|
1106 |
msgid "Attempt to register denied"
|
1107 |
msgstr "Aanmeldingspoging afgewezen"
|
1108 |
|
1109 |
+
#: ../common.php:149
|
1110 |
msgid "Malicious activities mitigated"
|
1111 |
msgstr "Verdachte activiteiten afgevangen"
|
1112 |
|
1114 |
msgid "Cerber antispam settings"
|
1115 |
msgstr "Cerber Antispam-instellingen"
|
1116 |
|
1117 |
+
#: ../dashboard.php:67 ../dashboard.php:1321 ../cerber-load.php:4259 ../settings.
|
1118 |
#: php:200
|
1119 |
msgid "Antispam"
|
1120 |
msgstr "Antispam"
|
1147 |
msgid "License"
|
1148 |
msgstr "Licentie"
|
1149 |
|
1150 |
+
#: ../dashboard.php:3446
|
1151 |
msgid "Antispam and bot detection settings"
|
1152 |
msgstr "Antispam- en botdetectie-instellingen"
|
1153 |
|
1154 |
+
#: ../cerber-load.php:1440
|
1155 |
msgid "Sorry, human verification failed."
|
1156 |
msgstr "Sorry, de verificatie faalt."
|
1157 |
|
1158 |
+
#: ../common.php:929
|
1159 |
msgid "Bot activity is detected"
|
1160 |
msgstr "Bot-activiteit getedecteerd"
|
1161 |
|
1175 |
msgid "Move spam comments to trash after"
|
1176 |
msgstr "Verwijder spamreacties na"
|
1177 |
|
1178 |
+
#: ../common.php:845
|
1179 |
msgid "Spam form submission denied"
|
1180 |
msgstr "Geweigerd wegens spam"
|
1181 |
|
1199 |
msgid "Use less restrictive policies (allow AJAX)"
|
1200 |
msgstr "Minder restricties (sta AJAX toe)"
|
1201 |
|
1202 |
+
#: ../dashboard.php:3081 ../settings.php:171
|
1203 |
msgid "Logged in users"
|
1204 |
msgstr "Ingelogde gebruikers"
|
1205 |
|
1207 |
msgid "Disable bot detection engine for logged in users"
|
1208 |
msgstr "Zet bot-detectie uit voor ingelogde gebruikers"
|
1209 |
|
1210 |
+
#: ../dashboard.php:135 ../dashboard.php:713
|
|
|
|
|
|
|
|
|
|
|
1211 |
msgid "Country"
|
1212 |
msgstr "Land"
|
1213 |
|
1214 |
+
#: ../dashboard.php:746
|
1215 |
msgid "All events"
|
1216 |
msgstr "Alle gebeurtenissen"
|
1217 |
|
1219 |
msgid "Cerber Security Rules"
|
1220 |
msgstr "Cerber Beveiligingsregels"
|
1221 |
|
1222 |
+
#: ../dashboard.php:60 ../dashboard.php:2378
|
1223 |
msgid "Security Rules"
|
1224 |
msgstr "Beveiligingsregels"
|
1225 |
|
1226 |
+
#: ../dashboard.php:1147
|
1227 |
msgid "Failed login attempts"
|
1228 |
msgstr "Gefaalde loginpogingen"
|
1229 |
|
1230 |
+
#: ../dashboard.php:1063 ../dashboard.php:1148
|
1231 |
msgid "Registered"
|
1232 |
msgstr "Geregistreerd"
|
1233 |
|
1234 |
+
#: ../dashboard.php:1218
|
1235 |
msgid "You"
|
1236 |
msgstr "Jij"
|
1237 |
|
1238 |
+
#: ../common.php:153
|
1239 |
msgid "Spam form submissions denied"
|
1240 |
msgstr "Spam formulierafgifte afgewezen "
|
1241 |
|
1242 |
+
#: ../dashboard.php:1698 ../cerber-load.php:3481 ../cerber-load.php:4248
|
1243 |
msgid "Getting Started Guide"
|
1244 |
msgstr "Startgids"
|
1245 |
|
1246 |
+
#: ../dashboard.php:2383
|
1247 |
msgid "Countries"
|
1248 |
msgstr "Landen"
|
1249 |
|
1250 |
+
#: ../dashboard.php:2446
|
1251 |
msgid "Permitted for one country"
|
1252 |
msgid_plural "Permitted for %d countries"
|
1253 |
msgstr[0] "Toegestaan voor één land"
|
1254 |
msgstr[1] "Toegestaan voor %d landen"
|
1255 |
|
1256 |
+
#: ../dashboard.php:2457
|
1257 |
msgid "No rule"
|
1258 |
msgstr "Geen regel"
|
1259 |
|
1260 |
+
#: ../dashboard.php:2669
|
1261 |
msgid "Security rules have been updated"
|
1262 |
msgstr "Beveiligingsregels zijn vernieuwd"
|
1263 |
|
1266 |
msgid "https://wpcerber.com"
|
1267 |
msgstr "https://wpcerber.com"
|
1268 |
|
1269 |
+
#: ../common.php:846
|
1270 |
msgid "Form submission denied"
|
1271 |
msgstr "Formulierafgifte afgewezen"
|
1272 |
|
1273 |
+
#: ../common.php:847
|
1274 |
msgid "Comment denied"
|
1275 |
msgstr "Commentaar afgewezen"
|
1276 |
|
1277 |
+
#: ../common.php:875
|
1278 |
msgid "Request to REST API denied"
|
1279 |
msgstr "Verzoek aan REST API afgewezen"
|
1280 |
|
1281 |
+
#: ../common.php:876
|
1282 |
msgid "XML-RPC request denied"
|
1283 |
msgstr "XML-RPC-verzoek afgewezen"
|
1284 |
|
1285 |
+
#: ../common.php:887
|
1286 |
msgid "Bot detected"
|
1287 |
msgstr "Bot gedetecteerd"
|
1288 |
|
1289 |
+
#: ../common.php:888
|
1290 |
msgid "Citadel mode is active"
|
1291 |
msgstr "Citadelstand actief"
|
1292 |
|
1293 |
+
#: ../common.php:892
|
1294 |
msgid "Malicious activity detected"
|
1295 |
msgstr "Verdachte activiteit gedetecteerd "
|
1296 |
|
1297 |
+
#: ../common.php:893
|
1298 |
msgid "Blocked by country rule"
|
1299 |
msgstr "Geblokkeerd door landenregel"
|
1300 |
|
1301 |
+
#: ../common.php:894
|
1302 |
msgid "Limit reached"
|
1303 |
msgstr "Limiet bereikt"
|
1304 |
|
1305 |
+
#: ../common.php:895
|
1306 |
msgid "Multiple suspicious activities"
|
1307 |
msgstr "Meerdere verdachte activiteiten"
|
1308 |
|
1309 |
+
#: ../common.php:930
|
1310 |
msgid "Multiple suspicious activities were detected"
|
1311 |
msgstr "Meerdere verdachte activiteiten gedetecteerd"
|
1312 |
|
1342 |
msgid "Query whitelist"
|
1343 |
msgstr "Toegestane queries"
|
1344 |
|
1345 |
+
#: ../settings.php:699 ../settings.php:821
|
1346 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1347 |
msgstr "%s toegestane registraties in %s minuten van één IP"
|
1348 |
|
1349 |
+
#: ../dashboard.php:2513
|
1350 |
msgid "Start typing here to find a country"
|
1351 |
msgstr "Begin te typen om een land te vinden"
|
1352 |
|
1353 |
+
#: ../dashboard.php:2596
|
1354 |
msgid "Click on a country name to add it to the list of selected countries"
|
1355 |
msgstr "Klik op een landnaam om toe te voegen aan de lijst gekozen landen"
|
1356 |
|
1357 |
+
#: ../dashboard.php:2620
|
1358 |
msgid "Submit forms"
|
1359 |
msgstr "Formulieren versturen"
|
1360 |
|
1361 |
+
#: ../dashboard.php:2621
|
1362 |
msgid "Post comments"
|
1363 |
msgstr "Commentaar plaatsen"
|
1364 |
|
1365 |
+
#: ../dashboard.php:2622
|
1366 |
msgid "Log in to the website"
|
1367 |
msgstr "Inloggen bij de website"
|
1368 |
|
1369 |
+
#: ../dashboard.php:2623
|
1370 |
msgid "Register on the website"
|
1371 |
msgstr "Registreren bij de website"
|
1372 |
|
1373 |
+
#: ../dashboard.php:2624
|
1374 |
msgid "Use XML-RPC"
|
1375 |
msgstr "Benut XML-RPC"
|
1376 |
|
1377 |
+
#: ../dashboard.php:2625
|
1378 |
msgid "Use REST API"
|
1379 |
msgstr "Benut REST API"
|
1380 |
|
1386 |
msgid "Mark it as spam"
|
1387 |
msgstr "Markeren als spam"
|
1388 |
|
1389 |
+
#: ../dashboard.php:1624
|
1390 |
msgid "in the last 24 hours"
|
1391 |
msgstr "in de afgelopen 24 uur"
|
1392 |
|
1393 |
+
#: ../dashboard.php:1998
|
1394 |
msgid "Main settings"
|
1395 |
msgstr "Hoofdinstellingen"
|
1396 |
|
1398 |
msgid "Weekly reports"
|
1399 |
msgstr "Weekrapporten"
|
1400 |
|
1401 |
+
#: ../settings.php:937
|
1402 |
msgid "Sunday"
|
1403 |
msgstr "zondag"
|
1404 |
|
1405 |
+
#: ../settings.php:938
|
1406 |
msgid "Monday"
|
1407 |
msgstr "maandag"
|
1408 |
|
1409 |
+
#: ../settings.php:939
|
1410 |
msgid "Tuesday"
|
1411 |
msgstr "dinsdag"
|
1412 |
|
1413 |
+
#: ../settings.php:940
|
1414 |
msgid "Wednesday"
|
1415 |
msgstr "woensdag"
|
1416 |
|
1417 |
+
#: ../settings.php:941
|
1418 |
msgid "Thursday"
|
1419 |
msgstr "donderdag"
|
1420 |
|
1421 |
+
#: ../settings.php:942
|
1422 |
msgid "Friday"
|
1423 |
msgstr "vrijdag"
|
1424 |
|
1425 |
+
#: ../settings.php:943
|
1426 |
msgid "Saturday"
|
1427 |
msgstr "zaterdag"
|
1428 |
|
1429 |
+
#: ../settings.php:1002 ../settings.php:1003
|
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 "Gebruik je een caching plugin, dan moet je je nieuwe login URL toevoegen aan de niet te cachen pagina's."
|
1432 |
|
1433 |
#. translators: preposition of time
|
1434 |
+
#: ../settings.php:953
|
1435 |
msgctxt "preposition of time"
|
1436 |
msgid "at"
|
1437 |
msgstr "op"
|
1438 |
|
1439 |
+
#: ../cerber-load.php:3496
|
1440 |
msgid "Weekly report"
|
1441 |
msgstr "Weekrapport"
|
1442 |
|
1443 |
+
#: ../cerber-load.php:3499 ../cerber-load.php:3509
|
1444 |
msgid "To change reporting settings visit"
|
1445 |
msgstr "Om je rapportageinstellingen aan te passen, ga naar"
|
1446 |
|
1447 |
+
#: ../cerber-load.php:3532
|
1448 |
msgid "Your login page:"
|
1449 |
msgstr "Je login-pagina:"
|
1450 |
|
1451 |
+
#: ../cerber-load.php:3536
|
1452 |
msgid "Your license is valid until"
|
1453 |
msgstr "Je licentie geldt tot"
|
1454 |
|
1455 |
+
#: ../cerber-load.php:3642
|
1456 |
msgid "Activity details"
|
1457 |
msgstr "Details van activiteiten"
|
1458 |
|
1459 |
+
#: ../settings.php:969
|
1460 |
msgid "Click to send now"
|
1461 |
msgstr "Klik om nu te versturen"
|
1462 |
|
1463 |
+
#: ../cerber-load.php:814
|
1464 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1465 |
msgstr ">>> Vertaler van WP Cerber? Om een gratis Pro-licentie te krijgen, geef je contactinformatie op bij: https://wpcerber.com/contact/"
|
1466 |
|
1472 |
msgid "Unable to send email to"
|
1473 |
msgstr "Kan geen e-mail verzenden naar"
|
1474 |
|
1475 |
+
#: ../dashboard.php:2449
|
1476 |
msgid "Not permitted for one country"
|
1477 |
msgid_plural "Not permitted for %d countries"
|
1478 |
msgstr[0] "Niet toegestaan voor één land"
|
1479 |
msgstr[1] "Niet toegestaan voor %d landen"
|
1480 |
|
1481 |
+
#: ../dashboard.php:2600
|
1482 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1483 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
1484 |
msgstr "Gekozen landen mogen %s, overige landen niet"
|
1485 |
|
1486 |
+
#: ../dashboard.php:2603
|
1487 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1488 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
1489 |
msgstr "Gekozen landen mogen niet %s, overige landen wel"
|
1490 |
|
1491 |
+
#: ../cerber-load.php:3630
|
|
|
|
|
|
|
|
|
|
|
1492 |
msgid "Weekly Report"
|
1493 |
msgstr "Weekrapport"
|
1494 |
|
1504 |
msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
|
1505 |
msgstr "Voer een deel van een query-tekenreeks of -pad in om een request uit te sluiten van inspectie. Eén item per regel."
|
1506 |
|
1507 |
+
#: ../settings.php:263 ../settings.php:494
|
1508 |
msgid "if empty, email from notification settings will be used"
|
1509 |
msgstr "Indien leeg, gebruiken we de email van de meldingsinstellingen"
|
1510 |
|
1513 |
msgstr "Rapporteren aanzetten"
|
1514 |
|
1515 |
#. How to interpret this line? Do you mean 'was DATE/TIME from IP ADDRESS' ?
|
1516 |
+
#: ../cerber-load.php:3560
|
1517 |
msgid "Your last sign-in was %s from %s"
|
1518 |
msgstr "Je laatste inlog was op %s vanaf %s"
|
1519 |
|
1520 |
+
#: ../cerber-load.php:3656
|
1521 |
msgid "Attempts to log in with non-existent username"
|
1522 |
msgstr "Pogingen om in te loggen met een onbekende gebruikersnaam"
|
1523 |
|
1533 |
msgid "You cannot add your IP address or network"
|
1534 |
msgstr "Je kunt je eigen IP of netwerk niet toevoegen"
|
1535 |
|
1536 |
+
#: ../cerber-news.php:190
|
1537 |
msgid "Cool!"
|
1538 |
msgstr "Mooi!"
|
1539 |
|
1545 |
msgid "Cerber Traffic Inspector"
|
1546 |
msgstr "Cerber Verkeersinspectie"
|
1547 |
|
1548 |
+
#: ../dashboard.php:56 ../dashboard.php:1288 ../dashboard.php:2718
|
1549 |
msgid "Traffic Inspector"
|
1550 |
msgstr "Verkeersinspectie"
|
1551 |
|
1552 |
+
#: ../dashboard.php:1320
|
1553 |
msgid "Traffic"
|
1554 |
msgstr "Verkeer"
|
1555 |
|
1556 |
+
#: ../dashboard.php:2723
|
1557 |
msgid "Live traffic"
|
1558 |
msgstr "Live verkeer"
|
1559 |
|
1560 |
+
#: ../dashboard.php:3049
|
1561 |
msgid "Request"
|
1562 |
msgstr "Verzoek"
|
1563 |
|
1564 |
+
#: ../dashboard.php:3051
|
1565 |
msgid "Host Info"
|
1566 |
msgstr "Host Info"
|
1567 |
|
1568 |
#. Do you mean a program for browsing the web like Chrome? Or a ftp user agent or so?
|
1569 |
+
#: ../dashboard.php:3052
|
1570 |
msgid "User Agent"
|
1571 |
msgstr "Webbrowser"
|
1572 |
|
1573 |
+
#: ../dashboard.php:3077
|
1574 |
msgid "All requests"
|
1575 |
msgstr "Alle verzoeken"
|
1576 |
|
1577 |
+
#: ../dashboard.php:3082
|
1578 |
msgid "Not logged in visitors"
|
1579 |
msgstr "Niet-ingelogde bezoekers"
|
1580 |
|
1581 |
+
#: ../dashboard.php:3083
|
1582 |
msgid "Form submissions"
|
1583 |
msgstr "Formulierverzendingen"
|
1584 |
|
1585 |
+
#: ../dashboard.php:3084
|
1586 |
msgid "Page Not Found"
|
1587 |
msgstr "Pagina niet gevonden"
|
1588 |
|
1589 |
+
#: ../dashboard.php:3085
|
1590 |
msgid "REST API"
|
1591 |
msgstr "REST API"
|
1592 |
|
1593 |
+
#: ../dashboard.php:3086
|
1594 |
msgid "XML-RPC"
|
1595 |
msgstr "XML-RPC"
|
1596 |
|
1597 |
+
#: ../dashboard.php:3091
|
1598 |
msgid "Longer than"
|
1599 |
msgstr "Langer dan"
|
1600 |
|
1601 |
+
#: ../dashboard.php:3107
|
1602 |
msgid "Refresh"
|
1603 |
msgstr "Ververs"
|
1604 |
|
1605 |
+
#: ../common.php:115
|
1606 |
msgid "Check for requests"
|
1607 |
msgstr "Controleer op verzoeken"
|
1608 |
|
1609 |
+
#: ../common.php:1204
|
1610 |
msgid "Not specified"
|
1611 |
msgstr "Niet gespecificeerd"
|
1612 |
|
1634 |
msgid "Mask these form fields"
|
1635 |
msgstr "Verberg deze formuliervelden"
|
1636 |
|
1637 |
+
#: ../settings.php:351
|
1638 |
msgid "milliseconds"
|
1639 |
msgstr "milliseconden"
|
1640 |
|
1654 |
msgid "Save request fields"
|
1655 |
msgstr "Bewaar verzoekvelden"
|
1656 |
|
1657 |
+
#: ../settings.php:346
|
1658 |
msgid "Page generation time threshold"
|
1659 |
msgstr "Drempeltijd paginaopbouw"
|
1660 |
|
1661 |
+
#: ../dashboard.php:3069
|
1662 |
msgid "No requests have been logged."
|
1663 |
msgstr "Er zijn geen verzoeken geregistreerd."
|
1664 |
|
1665 |
+
#: ../dashboard.php:1287
|
1666 |
msgid "enabled"
|
1667 |
msgstr "aan"
|
1668 |
|
1669 |
+
#: ../dashboard.php:1292
|
1670 |
msgid "no connection"
|
1671 |
msgstr "geen verbinding"
|
1672 |
|
1673 |
+
#: ../dashboard.php:3403
|
1674 |
msgid "Advanced search"
|
1675 |
msgstr "Geavanceerd zoeken"
|
1676 |
|
1677 |
+
#: ../dashboard.php:1053
|
1678 |
msgid "Last seen"
|
1679 |
msgstr "Laatst gezien"
|
1680 |
|
1681 |
#. A fix for "Probing for vulnerable PHP script".
|
1682 |
+
#: ../common.php:871 ../common.php:931
|
1683 |
msgid "Probing for vulnerable PHP code"
|
1684 |
msgstr "Op zoek naar kwetsbare PHP-code"
|
1685 |
|
1686 |
+
#: ../dashboard.php:3361
|
1687 |
msgid "Any"
|
1688 |
msgstr "Enig"
|
1689 |
|
1690 |
+
#: ../cerber-load.php:3281
|
1691 |
msgid "We're sorry, you are not allowed to proceed"
|
1692 |
msgstr "Excuus, je mag niet doorgaan"
|
1693 |
|
1699 |
msgid "Enter a request URI to exclude the request from inspection. One item per line."
|
1700 |
msgstr "Voer een 'request URI' in om deze van inspectie uit te sluiten. Eén per regel."
|
1701 |
|
1702 |
+
#: ../settings.php:327
|
1703 |
msgid "Save request headers"
|
1704 |
msgstr "Sla 'request headers' op"
|
1705 |
|
1706 |
+
#: ../settings.php:333
|
1707 |
msgid "Save $_SERVER"
|
1708 |
msgstr "Sla $_SERVER op"
|
1709 |
|
1710 |
+
#: ../settings.php:339
|
1711 |
msgid "Save request cookies"
|
1712 |
msgstr "Sla 'request cookies' op"
|
1713 |
|
1720 |
msgstr "Blokkeer ongeoorloofde toegang tot load-scripts.php en load-styles.php\n"
|
1721 |
""
|
1722 |
|
1723 |
+
#: ../common.php:1830
|
1724 |
msgid "Unable to create the directory"
|
1725 |
msgstr "Kan map niet aanmaken"
|
1726 |
|
1727 |
+
#: ../common.php:1835
|
1728 |
msgid "Destination folder access denied"
|
1729 |
msgstr "Toegang bestemmingsmap afgewezen"
|
1730 |
|
1731 |
+
#: ../common.php:1838
|
1732 |
msgid "File not found"
|
1733 |
msgstr "Bestand niet gevonden"
|
1734 |
|
1735 |
+
#: ../common.php:1841
|
1736 |
msgid "Unable to copy the file"
|
1737 |
msgstr "Kan bestand niet kopiëren"
|
1738 |
|
1739 |
+
#: ../common.php:1847
|
1740 |
msgid "Unable to delete the file"
|
1741 |
msgstr "Kan bestand niet verwijderen"
|
1742 |
|
1756 |
msgid "Standard mode"
|
1757 |
msgstr "Standaardinstelling"
|
1758 |
|
1759 |
+
#: ../settings.php:980
|
1760 |
msgid "Plugin initialization mode has not been changed"
|
1761 |
msgstr "Plugin initialisatie is niet aangepast"
|
1762 |
|
1765 |
msgid "This is a standard boot module for WP Cerber Security & Antispam plugin. It was installed when you set the plugin initialization mode to Standard. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1766 |
msgstr "Dit is de standaard opstartmodule van de WP Cerber Security & Antispam plugin, geïnstalleerd toen je de plugin initialisatie op Standaard hebt gezet. Meer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1767 |
|
1768 |
+
#: ../common.php:872
|
1769 |
msgid "Attempt to upload executable file denied"
|
1770 |
msgstr "Poging afgewezen om programmabestand te uploaden"
|
1771 |
|
1772 |
+
#: ../common.php:873
|
1773 |
msgid "File upload denied"
|
1774 |
msgstr "Bestandsupload afgewezen"
|
1775 |
|
|
|
|
|
|
|
|
|
|
|
1776 |
#: ../settings.php:96
|
1777 |
msgid "Custom login URL may contain only letters, numbers, dashes and underscores"
|
1778 |
msgstr "Aangepaste inlog-URL mag alleen letters, cijfers, koppel- en lage streepjes bevatten"
|
1782 |
msgid "To specify a REGEX pattern, enclose a whole line in two braces."
|
1783 |
msgstr "Zet bij een REGEX-patroon de hele regel tussen accolades { }."
|
1784 |
|
1785 |
+
#: ../settings.php:511
|
1786 |
msgid "Be careful about enabling these options."
|
1787 |
msgstr "Wees voorzichtig met deze opties!"
|
1788 |
|
1789 |
+
#: ../settings.php:511
|
1790 |
msgid "If you forget your Custom login URL, you will be unable to log in."
|
1791 |
msgstr "Als je de Aangepaste inlog-URL vergeet, kun je niet meer inloggen."
|
1792 |
|
1793 |
+
#: ../dashboard.php:64 ../cerber-scanner.php:79
|
1794 |
msgid "Site Integrity"
|
1795 |
msgstr "Site-integriteit"
|
1796 |
|
1797 |
+
#: ../dashboard.php:1305 ../dashboard.php:1307 ../cerber-scanner.php:1176
|
1798 |
msgid "Disabled"
|
1799 |
msgstr "Uitgeschakeld"
|
1800 |
|
1801 |
+
#: ../dashboard.php:1306 ../cerber-scanner.php:750
|
1802 |
msgid "Quick Scan"
|
1803 |
msgstr "Snelle Scan"
|
1804 |
|
1805 |
+
#: ../dashboard.php:1308 ../cerber-scanner.php:750
|
1806 |
msgid "Full Scan"
|
1807 |
msgstr "Volledige scan"
|
1808 |
|
1811 |
msgid "WP Cerber Security, Antispam & Malware Scan"
|
1812 |
msgstr "WP Cerber Security, Antispam & Malware Scan"
|
1813 |
|
1814 |
+
#: ../common.php:896
|
1815 |
msgid "Denied"
|
1816 |
msgstr "Afgewezen"
|
1817 |
|
|
|
|
|
|
|
|
|
1818 |
#: ../settings.php:79 ../settings.php:278
|
1819 |
msgid "Use White IP Access List"
|
1820 |
msgstr "Lijst Toegelaten IP-adressen gebruiken"
|
1827 |
msgid "Disable automatic redirection to the login page when /wp-admin/ is requested by an unauthorized request"
|
1828 |
msgstr "Automatische omleiding naar de loginpagina uitzetten als /wp-admin/ ongeautoriseerd wordt opgevraagd"
|
1829 |
|
1830 |
+
#: ../settings.php:367
|
1831 |
msgid "Scanner settings"
|
1832 |
msgstr "Scanner-instellingen"
|
1833 |
|
1834 |
+
#: ../settings.php:368
|
1835 |
msgid "Custom signatures"
|
1836 |
msgstr "Ondertekening op maat"
|
1837 |
|
1838 |
+
#: ../settings.php:374
|
1839 |
msgid "Specify custom PHP code signatures. One item per line. To specify a REGEX pattern, enclose a whole line in two braces."
|
1840 |
msgstr "Eigen PHP code ondertekeningen, één per regel. Zet bij een REGEX-patroon de hele regel tussen accolades { }."
|
1841 |
|
1842 |
+
#: ../settings.php:376
|
1843 |
msgid "Unwanted file extensions"
|
1844 |
msgstr "Ongewenste bestandsextensies"
|
1845 |
|
1846 |
+
#: ../settings.php:382
|
1847 |
msgid "Specify file extensions to search for. Full scan only. Use comma to separate items."
|
1848 |
msgstr "Geef gewenste bestandsextensies op, gescheiden door komma's. Alleen volledige scan."
|
1849 |
|
1850 |
+
#: ../settings.php:384
|
1851 |
msgid "Directories to exclude"
|
1852 |
msgstr "Uit te sluiten mappen"
|
1853 |
|
1854 |
+
#: ../settings.php:390
|
1855 |
msgid "Specify directories to exclude from scanning. Use absolute paths. One item per line."
|
1856 |
msgstr "Geef mappen op om van scannen uit te sluiten. Eén per regel, absolute paden opgeven."
|
1857 |
|
1858 |
+
#: ../settings.php:405
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1859 |
msgid "Scan temporary directory"
|
1860 |
msgstr "Scan tijdelijke map"
|
1861 |
|
1862 |
+
#: ../settings.php:412
|
1863 |
msgid "Scan session directory"
|
1864 |
msgstr "Scan sessiemap"
|
1865 |
|
1866 |
+
#: ../settings.php:418
|
1867 |
msgid "Delete quarantined files after"
|
1868 |
msgstr "Wis bestanden in quarantaine na"
|
1869 |
|
1870 |
+
#: ../settings.php:433
|
1871 |
msgid "Launch Quick Scan"
|
1872 |
msgstr "Begin Snelle Scan"
|
1873 |
|
1874 |
+
#: ../cerber-scanner.php:1177
|
1875 |
msgid "Every hour"
|
1876 |
msgstr "Elk uur"
|
1877 |
|
1878 |
+
#: ../cerber-scanner.php:1178
|
1879 |
msgid "Every 3 hours"
|
1880 |
msgstr "Elke 3 uur"
|
1881 |
|
1882 |
+
#: ../cerber-scanner.php:1179
|
1883 |
msgid "Every 6 hours"
|
1884 |
msgstr "Elke 6 uur"
|
1885 |
|
1886 |
+
#: ../settings.php:440
|
1887 |
msgid "Launch Full Scan"
|
1888 |
msgstr "Start volledige scan"
|
1889 |
|
1890 |
+
#: ../settings.php:450
|
1891 |
msgid "Low severity"
|
1892 |
msgstr "Niet ernstig"
|
1893 |
|
1894 |
+
#: ../settings.php:450
|
1895 |
msgid "Medium severity"
|
1896 |
msgstr "Ernstig"
|
1897 |
|
1898 |
+
#: ../settings.php:450
|
1899 |
msgid "High severity"
|
1900 |
msgstr "Zeer ernstig"
|
1901 |
|
1902 |
+
#: ../settings.php:451
|
1903 |
msgid "Report an issue if any of the following is true"
|
1904 |
msgstr "Rapporteer "
|
1905 |
|
1906 |
+
#: ../settings.php:459
|
1907 |
msgid "Send email report"
|
1908 |
msgstr "Stuur e-mail-rapport"
|
1909 |
|
1910 |
+
#: ../settings.php:465
|
1911 |
msgid "After every scan"
|
1912 |
msgstr "Na elke scan"
|
1913 |
|
1914 |
+
#: ../settings.php:466
|
1915 |
msgid "If any changes in scan results occurred"
|
1916 |
msgstr "Bij veranderingen in de scanresultaten"
|
1917 |
|
1918 |
#: ../settings.php:471
|
|
|
|
|
|
|
|
|
1919 |
msgid "Include file sizes"
|
1920 |
msgstr "Voeg bestandsgrootte toe"
|
1921 |
|
1922 |
+
#: ../settings.php:478
|
1923 |
msgid "Include scan errors"
|
1924 |
msgstr "Voeg scanfouten toe"
|
1925 |
|
1926 |
+
#: ../cerber-load.php:4257 ../cerber-scanner.php:84
|
1927 |
msgid "Security Scanner"
|
1928 |
msgstr "Veiligheidsscanner"
|
1929 |
|
1930 |
+
#: ../cerber-scanner.php:86
|
1931 |
msgid "Scheduling"
|
1932 |
msgstr "Agenderen"
|
1933 |
|
1934 |
+
#: ../cerber-scanner.php:133
|
1935 |
msgid "Currently a scheduled scan in progress. Please wait until it is finished."
|
1936 |
msgstr "Er loopt een geagendeerde scan; wacht totdat deze afloopt."
|
1937 |
|
1938 |
+
#: ../cerber-scanner.php:137
|
1939 |
msgid "Previous scan started %s has not been completed. Continue scanning?"
|
1940 |
msgstr "Voorgaande scan die begon op %s is nog niet klaar. Daarmee doorgaan?"
|
1941 |
|
1942 |
+
#: ../cerber-scanner.php:146
|
1943 |
msgid "It seems this website has never been scanned. To start scanning click the button below."
|
1944 |
msgstr "Deze site lijkt nooit te zijn gescand. Klik onderstaande knop om nu te scannen."
|
1945 |
|
1946 |
+
#: ../cerber-scanner.php:149
|
1947 |
msgid "Start Quick Scan"
|
1948 |
msgstr "Begin Snelle Scan"
|
1949 |
|
1950 |
+
#: ../cerber-scanner.php:150
|
1951 |
msgid "Start Full Scan"
|
1952 |
msgstr "Begin Volledige Scan"
|
1953 |
|
1954 |
+
#: ../cerber-scanner.php:151
|
1955 |
msgid "Stop Scanning"
|
1956 |
msgstr "Stop Scannen"
|
1957 |
|
1958 |
+
#: ../cerber-scanner.php:152
|
1959 |
msgid "Continue Scanning"
|
1960 |
msgstr "Hervat Scannen"
|
1961 |
|
1962 |
+
#: ../cerber-scanner.php:181
|
1963 |
msgid "Delete"
|
1964 |
msgstr "Wis"
|
1965 |
|
1966 |
+
#: ../cerber-scanner.php:1126
|
1967 |
msgid "Verified"
|
1968 |
msgstr "Geverifieerd"
|
1969 |
|
1970 |
+
#: ../cerber-scanner.php:1133
|
1971 |
msgid "Integrity data not found"
|
1972 |
msgstr "Intergriteitsgegevens niet gevonden"
|
1973 |
|
1974 |
+
#: ../cerber-scanner.php:1134
|
1975 |
msgid "Unable to check the integrity of the plugin due to a network error"
|
1976 |
msgstr "Kan integriteit van plugin niet controleren door een netwerkfout"
|
1977 |
|
1978 |
+
#: ../cerber-scanner.php:1135
|
1979 |
msgid "Unable to check the integrity of WordPress files due to a network error"
|
1980 |
msgstr "Kan integriteit van Wordpressbestanden niet controleren door een netwerkfout"
|
1981 |
|
1982 |
+
#: ../cerber-scanner.php:1136
|
1983 |
msgid "Unable to check the integrity of the theme due to a network error"
|
1984 |
msgstr "Kan integriteit van thema niet controleren door een netwerkfout"
|
1985 |
|
1986 |
+
#: ../cerber-scanner.php:1139
|
1987 |
msgid "Local file doesn't exist"
|
1988 |
msgstr "Lokaal bestand bestaat niet"
|
1989 |
|
1990 |
+
#: ../cerber-scanner.php:1141
|
1991 |
msgid "Unable to process file"
|
1992 |
msgstr "Kan bestand niet verwerken"
|
1993 |
|
1994 |
+
#: ../cerber-scanner.php:1142 ../cerber-scanner.php:4435
|
1995 |
msgid "Unable to open file"
|
1996 |
msgstr "Kan bestand niet openen"
|
1997 |
|
1998 |
+
#: ../cerber-scanner.php:1144
|
1999 |
msgid "Checksum mismatch"
|
2000 |
msgstr "Controlegetal klopt niet"
|
2001 |
|
2002 |
+
#: ../cerber-scanner.php:1147
|
2003 |
msgid "Suspicious code found"
|
2004 |
msgstr "Verdachte code gevonden"
|
2005 |
|
2006 |
+
#: ../cerber-scanner.php:1148
|
2007 |
msgid "Potentially malicious code found"
|
2008 |
msgstr "Mogelijk verdachte code gevonden"
|
2009 |
|
2010 |
+
#: ../cerber-scanner.php:1149
|
2011 |
msgid "Unattended suspicious file"
|
2012 |
msgstr "Verdacht losstaand bestand"
|
2013 |
|
2014 |
+
#: ../cerber-scanner.php:1150
|
2015 |
msgid "Executable code found"
|
2016 |
msgstr "Uitvoerbare code gevonden"
|
2017 |
|
2018 |
+
#: ../cerber-scanner.php:1154
|
2019 |
msgid "Unwanted file extension"
|
2020 |
msgstr "Ongewenste bestandsextensie"
|
2021 |
|
2022 |
+
#: ../cerber-scanner.php:1156
|
2023 |
msgid "Content has been modified"
|
2024 |
msgstr "Inhoud is gewijzigd"
|
2025 |
|
2026 |
+
#: ../cerber-scanner.php:1157
|
2027 |
msgid "New file"
|
2028 |
msgstr "Nieuw bestand"
|
2029 |
|
2030 |
+
#: ../cerber-scanner.php:2205
|
2031 |
msgid "Custom signature found"
|
2032 |
msgstr "Eigen ondertekening gevonden"
|
2033 |
|
2034 |
+
#: ../cerber-scanner.php:3411
|
2035 |
msgid "Scanning folders for files"
|
2036 |
msgstr "Scan mappen voor bestanden"
|
2037 |
|
2038 |
+
#: ../cerber-scanner.php:3415
|
2039 |
msgid "Parsing the list of files"
|
2040 |
msgstr "Bezig de bestandslijst door te nemen"
|
2041 |
|
2042 |
+
#: ../cerber-scanner.php:3416
|
2043 |
msgid "Checking for new and modified files"
|
2044 |
msgstr "Controleren op nieuwe en gewijzigde bestanden"
|
2045 |
|
2046 |
+
#: ../cerber-scanner.php:3417
|
2047 |
msgid "Verifying the integrity of WordPress"
|
2048 |
msgstr "Integriteit van WordPress controleren"
|
2049 |
|
2050 |
+
#: ../cerber-scanner.php:3418
|
2051 |
msgid "Verifying the integrity of the plugins"
|
2052 |
msgstr "Integriteit van plugins controleren"
|
2053 |
|
2054 |
+
#: ../cerber-scanner.php:3419
|
2055 |
msgid "Verifying the integrity of the themes"
|
2056 |
msgstr "Integriteit van thema's controleren"
|
2057 |
|
2058 |
+
#: ../cerber-scanner.php:3420
|
2059 |
msgid "Searching for malicious code"
|
2060 |
msgstr "Kwaadaardige code zoeken"
|
2061 |
|
2062 |
+
#: ../cerber-scanner.php:3421
|
2063 |
msgid "Finalizing the scan"
|
2064 |
msgstr "Scan afronden"
|
2065 |
|
2066 |
+
#: ../cerber-scanner.php:3499
|
2067 |
msgid "Files to scan"
|
2068 |
msgstr "Bestanden te scannen"
|
2069 |
|
2070 |
+
#: ../cerber-scanner.php:3507
|
2071 |
msgid "Critical issues"
|
2072 |
msgstr "Kritieke problemen"
|
2073 |
|
2074 |
+
#: ../cerber-scanner.php:3511 ../cerber-scanner.php:4625
|
2075 |
msgid "Issues total"
|
2076 |
msgstr "Totaal aan problemen"
|
2077 |
|
2078 |
+
#: ../cerber-scanner.php:3871
|
2079 |
msgid "The directory is not writable"
|
2080 |
msgstr "Map is niet schrijfbaar"
|
2081 |
|
2082 |
+
#: ../cerber-scanner.php:3889
|
2083 |
msgid "Unable to create WP CERBER directory"
|
2084 |
msgstr "Kan WP Cerber-map niet aanmaken"
|
2085 |
|
2086 |
+
#: ../cerber-scanner.php:4096
|
2087 |
msgid "File access error. Possibly scan results are outdated. Please run Quick or Full Scan."
|
2088 |
msgstr "Fout bij bestandstoegang. Scanresultaten zijn mogelijk verouderd. Scan opnieuw."
|
2089 |
|
2090 |
+
#: ../cerber-scanner.php:4707
|
|
|
|
|
|
|
|
|
2091 |
msgid "To view full report visit"
|
2092 |
msgstr "Ga voor volledig rapport naar"
|
2093 |
|
2094 |
+
#: ../cerber-load.php:3506
|
2095 |
msgid "Scanner Report"
|
2096 |
msgstr "Scannerrapport"
|
2097 |
|
2098 |
+
#: ../settings.php:392
|
2099 |
msgid "Monitor new files"
|
2100 |
msgstr "Nieuwe bestanden bewaken"
|
2101 |
|
2102 |
+
#: ../settings.php:399
|
2103 |
msgid "Monitor modified files"
|
2104 |
msgstr "Gewijzigde bestanden bewaken"
|
2105 |
|
2106 |
+
#: ../settings.php:467
|
2107 |
msgid "If new issues found"
|
2108 |
msgstr "Bij nieuw gevonden problemen"
|
2109 |
|
2110 |
+
#: ../settings.php:1223
|
2111 |
msgid "The schedule has been updated"
|
2112 |
msgstr "Het schema is aangepast"
|
2113 |
|
2114 |
+
#: ../settings.php:1226
|
2115 |
msgid "Unable to updated the schedule"
|
2116 |
msgstr "Kan schema niet aanpassen"
|
2117 |
|
2118 |
#. Is it really 'directives' or do you mean 'directories' ?
|
2119 |
+
#: ../cerber-scanner.php:1153 ../cerber-scanner.php:2368
|
2120 |
msgid "Suspicious directives found"
|
2121 |
msgstr "Verdachte instellingen gevonden"
|
2122 |
|
2123 |
+
#: ../cerber-scanner.php:2366
|
2124 |
msgid "Suspicious code instruction found"
|
2125 |
msgstr "Verdachte code-instructie gevonden"
|
2126 |
|
2127 |
+
#: ../cerber-scanner.php:2367
|
2128 |
msgid "Suspicious code signatures found"
|
2129 |
msgstr "Verdachte code-ondertekeningen gevonden"
|
2130 |
|
2131 |
+
#: ../cerber-scanner.php:2370
|
2132 |
msgid "To solve this issue you have to reinstall %s or update it to the latest version."
|
2133 |
msgstr "Herinstalleer of update %s om dit probleem op te lossen."
|
2134 |
|
2135 |
+
#: ../cerber-scanner.php:2371
|
2136 |
msgid "Please upload a reference ZIP archive"
|
2137 |
msgstr "Upload een referentie-ZIP-archief"
|
2138 |
|
2139 |
+
#: ../cerber-scanner.php:2372
|
2140 |
msgid "Resolve issue"
|
2141 |
msgstr "Probleem oplossen"
|
2142 |
|
2143 |
+
#: ../cerber-scanner.php:3583
|
2144 |
msgid "We have not found any integrity data to verify"
|
2145 |
msgstr "We vinden geen integriteitsgegevens om te verifiëren"
|
2146 |
|
2147 |
+
#: ../cerber-scanner.php:3585
|
2148 |
msgid "You have to upload a ZIP archive from which you've installed it. This enables the security scanner to verify the integrity of the code and detect malware."
|
2149 |
msgstr "Je moet het ZIP-archief uploaden vanwaar dit is geïnstalleerd. Daarmee kan de scanner de integriteit van de code controleren en malware herkennen."
|
2150 |
|
2151 |
+
#: ../cerber-scanner.php:4581
|
2152 |
msgid "Full Scan Report"
|
2153 |
msgstr "Rapport Volledige Scan"
|
2154 |
|
2155 |
+
#: ../cerber-scanner.php:4581
|
2156 |
msgid "Quick Scan Report"
|
2157 |
msgstr "Rapportage Snelle Scan"
|
2158 |
|
2159 |
+
#: ../cerber-scanner.php:4594
|
2160 |
msgid "Files scanned"
|
2161 |
msgstr "Bestanden gescand"
|
2162 |
|
2163 |
+
#: ../dashboard.php:198 ../dashboard.php:926 ../dashboard.php:957 ../dashboard.
|
2164 |
+
#: php:1069
|
2165 |
+
msgid "Check for activities"
|
2166 |
+
msgstr "Check op activiteiten"
|
2167 |
+
|
2168 |
+
#: ../dashboard.php:1032
|
2169 |
+
msgid "Activated"
|
2170 |
+
msgstr "Geactiveerd"
|
2171 |
+
|
2172 |
+
#: ../common.php:878
|
2173 |
+
msgid "Malicious request denied"
|
2174 |
+
msgstr "Kwaadaardige request afgewezen"
|
2175 |
+
|
2176 |
+
#: ../common.php:882
|
2177 |
+
msgid "User activated"
|
2178 |
+
msgstr "Gebruiker-geactiveerd"
|
2179 |
+
|
2180 |
+
#: ../common.php:897
|
2181 |
+
msgid "Suspicious number of fields"
|
2182 |
+
msgstr "Verdacht aantal velden"
|
2183 |
+
|
2184 |
+
#: ../common.php:898
|
2185 |
+
msgid "Suspicious number of nested values"
|
2186 |
+
msgstr "Verdacht aantal geneste waarden"
|
2187 |
+
|
2188 |
+
#: ../common.php:899 ../common.php:932
|
2189 |
+
msgid "Malicious code detected"
|
2190 |
+
msgstr "Kwaadaardige code ontdekt"
|
2191 |
+
|
2192 |
+
#: ../common.php:933
|
2193 |
+
msgid "Attempt to upload a file with malicious code"
|
2194 |
+
msgstr "Poging een bestand met kwaadaardige code te uploaden"
|
2195 |
+
|
2196 |
+
#: ../common.php:1080
|
2197 |
+
msgid "Bytes"
|
2198 |
+
msgstr "Bytes"
|
2199 |
+
|
2200 |
+
#: ../cerber-scanner.php:1132
|
2201 |
+
msgid "Vulnerability found"
|
2202 |
+
msgstr "Kwetsbaarheid gevonden"
|
2203 |
+
|
2204 |
+
#: ../cerber-scanner.php:1137
|
2205 |
+
msgid "Unable to check the integrity due to a DB error"
|
2206 |
+
msgstr "Kan integriteit niet controleren door DB-fout"
|
2207 |
+
|
2208 |
+
#: ../cerber-scanner.php:3412
|
2209 |
+
msgid "Scanning the upload folder for files"
|
2210 |
+
msgstr "Scan de upload-map voor bestanden"
|
2211 |
+
|
2212 |
+
#: ../cerber-scanner.php:3413
|
2213 |
+
msgid "Scanning the temp folder for files"
|
2214 |
+
msgstr "Scan de temp-map voor bestanden"
|
2215 |
+
|
2216 |
+
#: ../cerber-scanner.php:3414
|
2217 |
+
msgid "Scanning the session folder for files"
|
2218 |
+
msgstr "Scan de sessie-map voor bestanden"
|
2219 |
+
|
2220 |
+
#: ../settings.php:432
|
2221 |
+
msgid "Automated recurring scan schedule"
|
2222 |
+
msgstr "Schema voor geautomatiseerde scans"
|
2223 |
+
|
2224 |
+
#: ../settings.php:448
|
2225 |
+
msgid "Scan results reporting"
|
2226 |
+
msgstr "Rapportage scanresultaten"
|
2227 |
+
|
2228 |
+
#: ../dashboard.php:3079
|
2229 |
+
msgid "Suspicious activity"
|
2230 |
+
msgstr ""
|
2231 |
+
|
2232 |
+
#: ../dashboard.php:3080
|
2233 |
+
msgid "Errors"
|
2234 |
+
msgstr ""
|
2235 |
+
|
2236 |
+
#: ../dashboard.php:3451
|
2237 |
+
msgid "Antispam engine"
|
2238 |
+
msgstr ""
|
2239 |
+
|
2240 |
+
#. Description of the plugin
|
2241 |
+
#:
|
2242 |
+
msgid "Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications."
|
2243 |
+
msgstr ""
|
2244 |
+
|
2245 |
+
#: ../cerber-load.php:375
|
2246 |
+
msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
|
2247 |
+
msgstr ""
|
2248 |
+
|
languages/wp-cerber-ru_RU.mo
CHANGED
Binary file
|
languages/wp-cerber-ru_RU.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the Plugins - Cerber Security, Antispam & Malware Scan - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2018-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -11,307 +11,375 @@ msgstr ""
|
|
11 |
"Language: ru\n"
|
12 |
"Project-Id-Version: Plugins - Cerber Security, Antispam & Malware Scan - Stable (latest release)\n"
|
13 |
|
14 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
msgid "Unable to updated the schedule"
|
16 |
msgstr "Невозможно обновить запланированное"
|
17 |
|
18 |
-
#: settings.php:
|
19 |
msgid "The schedule has been updated"
|
20 |
msgstr "Запланированное обновлено"
|
21 |
|
22 |
-
#: settings.php:
|
23 |
msgid "Include scan errors"
|
24 |
msgstr "Включать ошибки сканера"
|
25 |
|
26 |
-
#: settings.php:
|
27 |
msgid "Include file sizes"
|
28 |
msgstr "Включать размеры файлов"
|
29 |
|
30 |
-
#: settings.php:
|
31 |
msgid "If new issues found"
|
32 |
msgstr "Если найдены новые проблемы"
|
33 |
|
34 |
-
#: settings.php:
|
35 |
msgid "If any changes in scan results occurred"
|
36 |
msgstr "Если найдены изменения в результатах сканирования"
|
37 |
|
38 |
-
#: settings.php:
|
39 |
msgid "After every scan"
|
40 |
msgstr "После каждого сканирования"
|
41 |
|
42 |
-
#: settings.php:
|
43 |
msgid "Report an issue if any of the following is true"
|
44 |
msgstr "Отчитываться о проблемах, если нижеперечисленное верно"
|
45 |
|
46 |
-
#: settings.php:
|
47 |
msgid "Send email report"
|
48 |
msgstr "Отсылать отчет по эл.почте"
|
49 |
|
50 |
-
#: settings.php:
|
51 |
msgid "Medium severity"
|
52 |
msgstr "Средняя тяжесть"
|
53 |
|
54 |
-
#: settings.php:
|
55 |
msgid "High severity"
|
56 |
msgstr "Высокая тяжесть"
|
57 |
|
58 |
-
#: settings.php:
|
59 |
-
msgid "Launch Full Scan"
|
60 |
-
msgstr "Запуск полного сканирования"
|
61 |
-
|
62 |
-
#: settings.php:449
|
63 |
msgid "Low severity"
|
64 |
msgstr "Низкая тяжесть"
|
65 |
|
66 |
-
#: settings.php:
|
67 |
-
msgid "Launch Quick Scan"
|
68 |
-
msgstr "Запуск быстрого сканирования"
|
69 |
-
|
70 |
-
#: settings.php:398
|
71 |
msgid "Monitor modified files"
|
72 |
msgstr "Наблюдать за изменением файлов"
|
73 |
|
74 |
-
#: settings.php:
|
75 |
msgid "Monitor new files"
|
76 |
msgstr "Наблюдать за новыми файлами"
|
77 |
|
78 |
-
#:
|
79 |
-
msgid "Specify directories to exclude from scanning. Use absolute paths. One item per line."
|
80 |
-
msgstr "Укажите каталоги для исключения сканирования. Используйте абсолютный путь, 1 элемент на строку."
|
81 |
-
|
82 |
-
#: cerber-scanner.php:4594
|
83 |
msgid "To view full report visit"
|
84 |
msgstr "Для просмотра полного отчета зайдите на"
|
85 |
|
86 |
-
#: cerber-scanner.php:
|
87 |
-
msgid "Quick Scan Report"
|
88 |
-
msgstr "Отчет быстрого сканирования"
|
89 |
-
|
90 |
-
#: cerber-scanner.php:4511
|
91 |
-
msgid "Files scanned"
|
92 |
-
msgstr "Просканировано файлов"
|
93 |
-
|
94 |
-
#: cerber-scanner.php:4495
|
95 |
-
msgid "Full Scan Report"
|
96 |
-
msgstr "Отчет полного сканирования"
|
97 |
-
|
98 |
-
#: cerber-scanner.php:4015
|
99 |
-
msgid "File access error. Possibly scan results are outdated. Please run Quick or Full Scan."
|
100 |
-
msgstr "Ошибка доступа к файлу. Возможно результаты сканирования устарели. Запустите быстрое или полное сканирование."
|
101 |
-
|
102 |
-
#: cerber-scanner.php:3503
|
103 |
msgid "You have to upload a ZIP archive from which you've installed it. This enables the security scanner to verify the integrity of the code and detect malware."
|
104 |
msgstr "Вам нужно загрузить zip-архив, из которого вы это установили. Это даст возможность сканеру безопасности проверить целостность файлов, кода и определить вредоносный код."
|
105 |
|
106 |
-
#: cerber-scanner.php:
|
107 |
msgid "We have not found any integrity data to verify"
|
108 |
msgstr "Не найдены данные о целостности для проверки"
|
109 |
|
110 |
-
#: cerber-scanner.php:
|
111 |
-
msgid "Finalizing the scan"
|
112 |
-
msgstr "Завершение сканирования"
|
113 |
-
|
114 |
-
#: cerber-scanner.php:3347
|
115 |
msgid "Searching for malicious code"
|
116 |
msgstr "Поиск вредоносного кода"
|
117 |
|
118 |
-
#: cerber-scanner.php:
|
119 |
msgid "Verifying the integrity of the themes"
|
120 |
msgstr "Проверка целостности тем"
|
121 |
|
122 |
-
#: cerber-scanner.php:
|
123 |
msgid "Verifying the integrity of the plugins"
|
124 |
msgstr "Проверка целостности плагинов"
|
125 |
|
126 |
-
#: cerber-scanner.php:
|
127 |
msgid "Verifying the integrity of WordPress"
|
128 |
msgstr "Проверка целостности WordPress"
|
129 |
|
130 |
-
#: cerber-scanner.php:
|
131 |
msgid "Checking for new and modified files"
|
132 |
msgstr "Поиск новых и измененных файлов"
|
133 |
|
134 |
-
#: cerber-scanner.php:
|
135 |
msgid "Parsing the list of files"
|
136 |
msgstr "Обработка списка файлов"
|
137 |
|
138 |
-
#: cerber-scanner.php:
|
139 |
msgid "Scanning folders for files"
|
140 |
msgstr "Поиск файлов в каталогах"
|
141 |
|
142 |
-
#: cerber-scanner.php:
|
143 |
msgid "Resolve issue"
|
144 |
msgstr "Решить проблему"
|
145 |
|
146 |
-
#: cerber-scanner.php:
|
147 |
msgid "Please upload a reference ZIP archive"
|
148 |
msgstr "Пожалуйста, загрузите установочный zip-архив"
|
149 |
|
150 |
-
#: cerber-scanner.php:
|
151 |
msgid "To solve this issue you have to reinstall %s or update it to the latest version."
|
152 |
msgstr "Для решения этой проблемы нужно переустановить %s или обновить до последней версии."
|
153 |
|
154 |
-
#: cerber-scanner.php:
|
155 |
msgid "Suspicious code signatures found"
|
156 |
msgstr "Найдены подозрительные отпечатки кода"
|
157 |
|
158 |
-
#: cerber-scanner.php:
|
159 |
msgid "Suspicious code instruction found"
|
160 |
msgstr "Найдены подозрительные инструкции в коде"
|
161 |
|
162 |
-
#: cerber-scanner.php:
|
163 |
msgid "Every 6 hours"
|
164 |
msgstr "Каждые 6 часов"
|
165 |
|
166 |
-
#: cerber-scanner.php:
|
167 |
msgid "Disabled"
|
168 |
msgstr "Отключено"
|
169 |
|
170 |
-
#: cerber-scanner.php:
|
171 |
msgid "Every hour"
|
172 |
msgstr "Каждый час"
|
173 |
|
174 |
-
#: cerber-scanner.php:
|
175 |
msgid "Every 3 hours"
|
176 |
msgstr "Каждые 3 часа"
|
177 |
|
178 |
-
#: cerber-scanner.php:
|
179 |
msgid "New file"
|
180 |
msgstr "Новый файл"
|
181 |
|
182 |
-
#: cerber-scanner.php:
|
183 |
msgid "Unwanted file extension"
|
184 |
msgstr "Файл с нежелательным расширением"
|
185 |
|
186 |
-
#: cerber-scanner.php:
|
187 |
msgid "Suspicious directives found"
|
188 |
msgstr "Найдены подозрительные директивы"
|
189 |
|
190 |
-
#: cerber-scanner.php:
|
191 |
msgid "Checksum mismatch"
|
192 |
msgstr "Несовпадение контрольной суммы"
|
193 |
|
194 |
-
#: cerber-scanner.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
msgid "Full Scan"
|
196 |
-
msgstr "
|
197 |
|
198 |
-
#: cerber-scanner.php:
|
199 |
msgid "Quick Scan"
|
200 |
-
msgstr "
|
201 |
|
202 |
-
#: cerber-scanner.php:
|
203 |
msgid "It seems this website has never been scanned. To start scanning click the button below."
|
204 |
-
msgstr "Похоже этот сайт еще не
|
205 |
|
206 |
-
#: cerber-scanner.php:
|
207 |
msgid "Previous scan started %s has not been completed. Continue scanning?"
|
208 |
-
msgstr "Предыдущая попытка
|
209 |
|
210 |
-
#: cerber-scanner.php:
|
211 |
msgid "Currently a scheduled scan in progress. Please wait until it is finished."
|
212 |
-
msgstr "Сейчас выполняется
|
213 |
-
|
214 |
-
#: cerber-scanner.php:83
|
215 |
-
msgid "Scheduling"
|
216 |
-
msgstr "Планирование"
|
217 |
|
218 |
-
#: cerber-load.php:
|
219 |
msgid "Scanner Report"
|
220 |
-
msgstr "Отчет
|
221 |
|
222 |
-
#: cerber-scanner.php:
|
223 |
msgid "Site Integrity"
|
224 |
msgstr "Целостность сайта"
|
225 |
|
226 |
-
#: cerber-scanner.php:
|
227 |
msgid "Security Scanner"
|
228 |
msgstr "Сканер безопасности"
|
229 |
|
230 |
-
#: cerber-scanner.php:
|
231 |
msgid "Start Quick Scan"
|
232 |
msgstr "Начать быструю проверку"
|
233 |
|
234 |
-
#: cerber-scanner.php:
|
235 |
msgid "Start Full Scan"
|
236 |
msgstr "Начать полную проверку"
|
237 |
|
238 |
-
#: cerber-scanner.php:
|
239 |
msgid "Stop Scanning"
|
240 |
msgstr "Остановить проверку"
|
241 |
|
242 |
-
#: cerber-scanner.php:
|
243 |
msgid "Delete"
|
244 |
msgstr "Удалить"
|
245 |
|
246 |
-
#: cerber-scanner.php:
|
247 |
msgid "Verified"
|
248 |
msgstr "Проверено"
|
249 |
|
250 |
-
#: cerber-scanner.php:
|
251 |
msgid "Integrity data not found"
|
252 |
msgstr "Данные о целостности не найдены"
|
253 |
|
254 |
-
#: cerber-scanner.php:
|
255 |
msgid "Unable to check the integrity of the plugin due to a network error"
|
256 |
msgstr "Невозможно проверить целостность плагина из-за ошибки сети"
|
257 |
|
258 |
-
#: cerber-scanner.php:
|
259 |
msgid "Unable to check the integrity of WordPress files due to a network error"
|
260 |
msgstr "Невозможно проверить целостность WordPress из-за ошибки сети"
|
261 |
|
262 |
-
#: cerber-scanner.php:
|
263 |
msgid "Unable to check the integrity of the theme due to a network error"
|
264 |
msgstr "Невозможно проверить целостность темы из-за ошибки сети"
|
265 |
|
266 |
-
#: cerber-scanner.php:
|
267 |
msgid "Local file doesn't exist"
|
268 |
msgstr "Локальный файл отсутствует"
|
269 |
|
270 |
-
#: cerber-scanner.php:
|
271 |
msgid "Unable to process file"
|
272 |
msgstr "Невозможно обработать файл"
|
273 |
|
274 |
-
#: cerber-scanner.php:
|
275 |
msgid "Unable to open file"
|
276 |
msgstr "Невозможно открыть файл"
|
277 |
|
278 |
-
#: cerber-scanner.php:
|
279 |
msgid "Content has been modified"
|
280 |
msgstr "Содержимое изменено"
|
281 |
|
282 |
-
#: cerber-scanner.php:
|
283 |
msgid "Suspicious code found"
|
284 |
msgstr "Найден подозрительный код"
|
285 |
|
286 |
-
#: cerber-scanner.php:
|
287 |
msgid "Potentially malicious code found"
|
288 |
msgstr "Найден возможно вредоносный код"
|
289 |
|
290 |
-
#: cerber-scanner.php:
|
291 |
msgid "Unattended suspicious file"
|
292 |
msgstr "Нештатный подозрительный файл"
|
293 |
|
294 |
-
#: cerber-scanner.php:
|
295 |
msgid "Executable code found"
|
296 |
msgstr "Обнаружен исполняемый код"
|
297 |
|
298 |
-
#: cerber-scanner.php:
|
299 |
msgid "Files to scan"
|
300 |
msgstr "Файлы для проверки"
|
301 |
|
302 |
-
#: cerber-scanner.php:
|
303 |
msgid "Critical issues"
|
304 |
msgstr "Критические проблемы"
|
305 |
|
306 |
-
#: cerber-scanner.php:
|
307 |
msgid "Issues total"
|
308 |
msgstr "Всего проблем"
|
309 |
|
310 |
-
#: cerber-scanner.php:
|
311 |
msgid "The directory is not writable"
|
312 |
msgstr "Каталог незаписываем"
|
313 |
|
314 |
-
#: cerber-scanner.php:
|
315 |
msgid "Unable to create WP CERBER directory"
|
316 |
msgstr "Невозможно создать каталог WP CERBER"
|
317 |
|
@@ -323,35 +391,35 @@ msgstr "Использовать белый список IP"
|
|
323 |
msgid "Disable dashboard redirection"
|
324 |
msgstr "Отключить перенаправление с консоли"
|
325 |
|
326 |
-
#: settings.php:
|
327 |
msgid "Scanner settings"
|
328 |
msgstr "Настройки сканера"
|
329 |
|
330 |
-
#: settings.php:
|
331 |
msgid "Specify custom PHP code signatures. One item per line. To specify a REGEX pattern, enclose a whole line in two braces."
|
332 |
msgstr "Укажите пользовательские подписи PHP кода. Один элемент на строку. Для использования регулярных выражений, включите строку в фигурные скобки { }."
|
333 |
|
334 |
-
#: settings.php:
|
335 |
msgid "Unwanted file extensions"
|
336 |
msgstr "Нежелательные расширения файлов"
|
337 |
|
338 |
-
#: settings.php:
|
339 |
msgid "Specify file extensions to search for. Full scan only. Use comma to separate items."
|
340 |
msgstr "Укажите расширения файлов для поиска. Используется только при полной проверке. Испольуйте запятую для разделения элементов."
|
341 |
|
342 |
-
#: settings.php:
|
343 |
msgid "Directories to exclude"
|
344 |
msgstr "Каталоги для исключения"
|
345 |
|
346 |
-
#: settings.php:
|
347 |
msgid "Scan temporary directory"
|
348 |
msgstr "Проверять каталог временных файлов"
|
349 |
|
350 |
-
#: settings.php:
|
351 |
msgid "Scan session directory"
|
352 |
msgstr "Проверять каталог файлов сессий"
|
353 |
|
354 |
-
#: settings.php:
|
355 |
msgid "Delete quarantined files after"
|
356 |
msgstr "Удалять файлы карантина через"
|
357 |
|
@@ -359,27 +427,27 @@ msgstr "Удалять файлы карантина через"
|
|
359 |
msgid "WP Cerber Security, Antispam & Malware Scan"
|
360 |
msgstr "WP Cerber Security, Antispam & Malware Scan"
|
361 |
|
362 |
-
#: cerber-scanner.php:
|
363 |
msgid "Continue Scanning"
|
364 |
msgstr "Продолжить проверку"
|
365 |
|
366 |
-
#: cerber-scanner.php:
|
367 |
msgid "Custom signature found"
|
368 |
msgstr "Найден пользовательский отпечаток"
|
369 |
|
370 |
-
#: settings.php:
|
371 |
msgid "Custom signatures"
|
372 |
msgstr "Пользовательские отпечатки"
|
373 |
|
374 |
-
#: settings.php:
|
375 |
msgid "If you forget your Custom login URL, you will be unable to log in."
|
376 |
msgstr "Если вы забудете ваш пользовательский URL входа, то вы не сможете войти."
|
377 |
|
378 |
-
#: settings.php:
|
379 |
msgid "Be careful about enabling these options."
|
380 |
msgstr "Будьте осторожны при включении этих настроек."
|
381 |
|
382 |
-
#: common.php:
|
383 |
msgid "Denied"
|
384 |
msgstr "Запрещено"
|
385 |
|
@@ -391,23 +459,23 @@ msgstr "Пользовательский URL для входа может сод
|
|
391 |
msgid "To specify a REGEX pattern, enclose a whole line in two braces."
|
392 |
msgstr "Для использования регулярных выражений заключите строку целиком в фигурные скобки { }."
|
393 |
|
394 |
-
#: common.php:
|
395 |
msgid "Attempt to upload executable file denied"
|
396 |
msgstr "Предотвращена загрузка исполняемого файла"
|
397 |
|
398 |
-
#: common.php:
|
399 |
msgid "File upload denied"
|
400 |
msgstr "Предотвращена загрузка файла"
|
401 |
|
402 |
-
#: common.php:
|
403 |
msgid "File not found"
|
404 |
msgstr "Файл не найден"
|
405 |
|
406 |
-
#: common.php:
|
407 |
msgid "Unable to copy the file"
|
408 |
msgstr "Невозможно скопировать файл"
|
409 |
|
410 |
-
#: common.php:
|
411 |
msgid "Unable to delete the file"
|
412 |
msgstr "Невозможно удалить файл"
|
413 |
|
@@ -427,15 +495,15 @@ msgstr "Старый режим"
|
|
427 |
msgid "Standard mode"
|
428 |
msgstr "Стандартный режим"
|
429 |
|
430 |
-
#: settings.php:
|
431 |
msgid "Plugin initialization mode has not been changed"
|
432 |
msgstr "Режим инициализации плагина не был изменен"
|
433 |
|
434 |
-
#: common.php:
|
435 |
msgid "Destination folder access denied"
|
436 |
msgstr "Доступ к каталогу назначения закрыт"
|
437 |
|
438 |
-
#: common.php:
|
439 |
msgid "Unable to create the directory"
|
440 |
msgstr "Невозможно создать каталог"
|
441 |
|
@@ -447,7 +515,7 @@ msgstr "Защита скриптов администратора"
|
|
447 |
msgid "Block unauthorized access to load-scripts.php and load-styles.php"
|
448 |
msgstr "Блокировка неавторизованного доступа к load-scripts.php и load-styles.php"
|
449 |
|
450 |
-
#: cerber-load.php:
|
451 |
msgid "We're sorry, you are not allowed to proceed"
|
452 |
msgstr "Извините, вам не разрешено продолжить"
|
453 |
|
@@ -459,27 +527,27 @@ msgstr "Введите URI запроса для исключения из ин
|
|
459 |
msgid "Request whitelist"
|
460 |
msgstr "Белый список запросов"
|
461 |
|
462 |
-
#: dashboard.php:
|
463 |
msgid "Any"
|
464 |
msgstr "Любой"
|
465 |
|
466 |
-
#: settings.php:
|
467 |
msgid "milliseconds"
|
468 |
msgstr "миллисекунд"
|
469 |
|
470 |
-
#: settings.php:
|
471 |
msgid "Page generation time threshold"
|
472 |
msgstr "Порог времени генерации страницы"
|
473 |
|
474 |
-
#: settings.php:
|
475 |
msgid "Save request cookies"
|
476 |
msgstr "Сохранять куки запроса"
|
477 |
|
478 |
-
#: settings.php:
|
479 |
msgid "Save $_SERVER"
|
480 |
msgstr "Сохранять $_SERVER"
|
481 |
|
482 |
-
#: settings.php:
|
483 |
msgid "Save request headers"
|
484 |
msgstr "Сохранять заголовки запроса"
|
485 |
|
@@ -523,75 +591,75 @@ msgstr "Включить инспектирование трафика"
|
|
523 |
msgid "Inspection"
|
524 |
msgstr "Инспектирование"
|
525 |
|
526 |
-
#: dashboard.php:
|
527 |
msgid "Advanced search"
|
528 |
msgstr "Улучшенный поиск"
|
529 |
|
530 |
-
#: dashboard.php:
|
531 |
msgid "Refresh"
|
532 |
msgstr "Обновить"
|
533 |
|
534 |
-
#: dashboard.php:
|
535 |
msgid "Longer than"
|
536 |
msgstr "Дольше чем"
|
537 |
|
538 |
-
#: dashboard.php:
|
539 |
msgid "XML-RPC"
|
540 |
msgstr "XML-RPC"
|
541 |
|
542 |
-
#: dashboard.php:
|
543 |
msgid "REST API"
|
544 |
msgstr "REST API"
|
545 |
|
546 |
-
#: dashboard.php:
|
547 |
msgid "Page Not Found"
|
548 |
msgstr "Страница не найдена"
|
549 |
|
550 |
-
#: dashboard.php:
|
551 |
msgid "Form submissions"
|
552 |
msgstr "Отправки форм"
|
553 |
|
554 |
-
#: dashboard.php:
|
555 |
msgid "Not logged in visitors"
|
556 |
msgstr "Неавторизованные посетители"
|
557 |
|
558 |
-
#: dashboard.php:
|
559 |
msgid "All requests"
|
560 |
msgstr "Все запросы"
|
561 |
|
562 |
-
#: dashboard.php:
|
563 |
msgid "No requests have been logged."
|
564 |
msgstr "В журнале нет данных о запросах."
|
565 |
|
566 |
-
#: dashboard.php:
|
567 |
msgid "User Agent"
|
568 |
msgstr "User Agent"
|
569 |
|
570 |
-
#: dashboard.php:
|
571 |
msgid "Host Info"
|
572 |
msgstr "Информация о хосте"
|
573 |
|
574 |
-
#: dashboard.php:
|
575 |
msgid "Request"
|
576 |
msgstr "Запрос"
|
577 |
|
578 |
-
#: dashboard.php:
|
579 |
msgid "Live traffic"
|
580 |
msgstr "Живой трафик"
|
581 |
|
582 |
-
#: dashboard.php:
|
583 |
msgid "Traffic"
|
584 |
msgstr "Трафик"
|
585 |
|
586 |
-
#: dashboard.php:
|
587 |
msgid "no connection"
|
588 |
msgstr "нет подключения"
|
589 |
|
590 |
-
#: dashboard.php:
|
591 |
msgid "enabled"
|
592 |
msgstr "включено"
|
593 |
|
594 |
-
#: dashboard.php:56 dashboard.php:
|
595 |
msgid "Traffic Inspector"
|
596 |
msgstr "Инспектор трафика"
|
597 |
|
@@ -599,19 +667,19 @@ msgstr "Инспектор трафика"
|
|
599 |
msgid "Cerber Traffic Inspector"
|
600 |
msgstr "Цербер-инспектор трафика"
|
601 |
|
602 |
-
#: common.php:
|
603 |
msgid "Not specified"
|
604 |
msgstr "Не указано"
|
605 |
|
606 |
-
#: dashboard.php:
|
607 |
msgid "Last seen"
|
608 |
msgstr "Последний раз"
|
609 |
|
610 |
-
#: common.php:
|
611 |
msgid "Check for requests"
|
612 |
msgstr "Проверить запросы"
|
613 |
|
614 |
-
#: common.php:
|
615 |
msgid "Probing for vulnerable PHP code"
|
616 |
msgstr "Проверка на уязвимый PHP-код"
|
617 |
|
@@ -627,7 +695,7 @@ msgstr "Необязательный комментарий к этой запи
|
|
627 |
msgid "You cannot add your IP address or network"
|
628 |
msgstr "Вы не можете добавить ваш IP-адрес или сеть"
|
629 |
|
630 |
-
#: cerber-news.php:
|
631 |
msgid "Cool!"
|
632 |
msgstr "Отлично!"
|
633 |
|
@@ -639,19 +707,19 @@ msgstr "Сообщение было отправлено на электронн
|
|
639 |
msgid "Unable to send email to"
|
640 |
msgstr "Невозможно отправить email на"
|
641 |
|
642 |
-
#: dashboard.php:
|
643 |
msgid "Not permitted for one country"
|
644 |
msgid_plural "Not permitted for %d countries"
|
645 |
msgstr[0] "Не разрешено в одной стране"
|
646 |
msgstr[1] "Не разрешено в %d странах"
|
647 |
msgstr[2] "Не разрешено в %d странах"
|
648 |
|
649 |
-
#: dashboard.php:
|
650 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
651 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
652 |
msgstr "Выбранным странам разрешено %s, остальным странам - нет"
|
653 |
|
654 |
-
#: dashboard.php:
|
655 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
656 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
657 |
msgstr "Выбранным странам не разрешено %s, остальным странам разрешено"
|
@@ -668,7 +736,7 @@ msgstr "Для использования регулярных выражени
|
|
668 |
msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
|
669 |
msgstr "Введите часть строки или пути запроса для исключения запроса из проверки движком. Один элемент на строку."
|
670 |
|
671 |
-
#: settings.php:263 settings.php:
|
672 |
msgid "if empty, email from notification settings will be used"
|
673 |
msgstr "если не задано, будет использован адрес из настроек уведомлений"
|
674 |
|
@@ -676,15 +744,15 @@ msgstr "если не задано, будет использован адрес
|
|
676 |
msgid "Enable reporting"
|
677 |
msgstr "Включить отчеты"
|
678 |
|
679 |
-
#: cerber-load.php:
|
680 |
msgid "Your last sign-in was %s from %s"
|
681 |
msgstr "Ваш последний вход был %s с %s"
|
682 |
|
683 |
-
#: cerber-load.php:
|
684 |
msgid "Weekly Report"
|
685 |
msgstr "Недельный отчет"
|
686 |
|
687 |
-
#: cerber-load.php:
|
688 |
msgid "Attempts to log in with non-existent username"
|
689 |
msgstr "Попытка войти с несуществующим именем пользователя"
|
690 |
|
@@ -692,31 +760,31 @@ msgstr "Попытка войти с несуществующим именем
|
|
692 |
msgid "Use 404 template from the active theme"
|
693 |
msgstr "Использовать шаблон 404 активной темы"
|
694 |
|
695 |
-
#: cerber-load.php:
|
696 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
697 |
msgstr ">>> Переводите WP Cerber? Получите PRO лицензию бесплатно, оставьте контакты здесь: https://wpcerber.com/contact/"
|
698 |
|
699 |
-
#: cerber-load.php:
|
700 |
msgid "Weekly report"
|
701 |
msgstr "Недельный отчет"
|
702 |
|
703 |
-
#: cerber-load.php:
|
704 |
msgid "To change reporting settings visit"
|
705 |
msgstr "Для смены настроек отчетности зайдите"
|
706 |
|
707 |
-
#: cerber-load.php:
|
708 |
msgid "Your login page:"
|
709 |
msgstr "Ваша страница входа:"
|
710 |
|
711 |
-
#: cerber-load.php:
|
712 |
msgid "Your license is valid until"
|
713 |
msgstr "Ваша лицензия действительна до"
|
714 |
|
715 |
-
#: cerber-load.php:
|
716 |
msgid "Activity details"
|
717 |
msgstr "Подробно об активности"
|
718 |
|
719 |
-
#: dashboard.php:
|
720 |
msgid "Main settings"
|
721 |
msgstr "Основные настройки"
|
722 |
|
@@ -724,105 +792,105 @@ msgstr "Основные настройки"
|
|
724 |
msgid "Weekly reports"
|
725 |
msgstr "Недельные отчеты"
|
726 |
|
727 |
-
#: settings.php:
|
728 |
msgid "Sunday"
|
729 |
msgstr "Воскресенье"
|
730 |
|
731 |
-
#: settings.php:
|
732 |
msgid "Monday"
|
733 |
msgstr "Понедельник"
|
734 |
|
735 |
-
#: settings.php:
|
736 |
msgid "Tuesday"
|
737 |
msgstr "Вторник"
|
738 |
|
739 |
-
#: settings.php:
|
740 |
msgid "Wednesday"
|
741 |
msgstr "Среда"
|
742 |
|
743 |
-
#: settings.php:
|
744 |
msgid "Thursday"
|
745 |
msgstr "Четверг"
|
746 |
|
747 |
-
#: settings.php:
|
748 |
msgid "Friday"
|
749 |
msgstr "Пятница"
|
750 |
|
751 |
-
#: settings.php:
|
752 |
msgid "Saturday"
|
753 |
msgstr "Суббота"
|
754 |
|
755 |
#. translators: preposition of time
|
756 |
-
#: settings.php:
|
757 |
msgctxt "preposition of time"
|
758 |
msgid "at"
|
759 |
msgstr "в"
|
760 |
|
761 |
-
#: settings.php:
|
762 |
msgid "Click to send now"
|
763 |
msgstr "Нажмите для отправки сейчас"
|
764 |
|
765 |
-
#: common.php:
|
766 |
msgid "Limit reached"
|
767 |
msgstr "Предел достигнут"
|
768 |
|
769 |
-
#: common.php:
|
770 |
msgid "Multiple suspicious activities"
|
771 |
msgstr "Множественная подозрительная активность"
|
772 |
|
773 |
-
#: common.php:
|
774 |
msgid "Multiple suspicious activities were detected"
|
775 |
msgstr "Обнаружена множественная подозрительная активность"
|
776 |
|
777 |
-
#: dashboard.php:
|
778 |
msgid "Failed login attempts"
|
779 |
msgstr "Неудачные попытки входа"
|
780 |
|
781 |
-
#: dashboard.php:
|
782 |
msgid "Registered"
|
783 |
msgstr "Зарегистрирован"
|
784 |
|
785 |
-
#: dashboard.php:
|
786 |
msgid "You"
|
787 |
msgstr "Вы"
|
788 |
|
789 |
-
#: dashboard.php:
|
790 |
msgid "in the last 24 hours"
|
791 |
msgstr "В последние 24 часа"
|
792 |
|
793 |
-
#: cerber-load.php:
|
794 |
msgid "Getting Started Guide"
|
795 |
msgstr "Руководство с чего начать"
|
796 |
|
797 |
-
#: dashboard.php:
|
798 |
msgid "Start typing here to find a country"
|
799 |
msgstr "Начните печатать тут чтобы найти страну"
|
800 |
|
801 |
-
#: dashboard.php:
|
802 |
msgid "Click on a country name to add it to the list of selected countries"
|
803 |
msgstr "Нажмите на страну чтобы добавить ее в список выбранных"
|
804 |
|
805 |
-
#: dashboard.php:
|
806 |
msgid "Submit forms"
|
807 |
msgstr "отправка форм"
|
808 |
|
809 |
-
#: dashboard.php:
|
810 |
msgid "Post comments"
|
811 |
msgstr "отправка комментариев"
|
812 |
|
813 |
-
#: dashboard.php:
|
814 |
msgid "Log in to the website"
|
815 |
msgstr "авторизация на сайте"
|
816 |
|
817 |
-
#: dashboard.php:
|
818 |
msgid "Register on the website"
|
819 |
msgstr "регистрация на сайте"
|
820 |
|
821 |
-
#: dashboard.php:
|
822 |
msgid "Use XML-RPC"
|
823 |
msgstr "использование XML-RPC"
|
824 |
|
825 |
-
#: dashboard.php:
|
826 |
msgid "Use REST API"
|
827 |
msgstr "использование REST API"
|
828 |
|
@@ -846,51 +914,51 @@ msgstr "Полностью запретить"
|
|
846 |
msgid "Mark it as spam"
|
847 |
msgstr "Пометить как спам"
|
848 |
|
849 |
-
#: settings.php:
|
850 |
msgid "%s allowed registrations in %s minutes from one IP"
|
851 |
msgstr "%s разрешенных регистраций в %s минут с одного IP"
|
852 |
|
853 |
-
#: settings.php:
|
854 |
msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
|
855 |
msgstr "Если вы используете плагин кеширования, вам нужно добавить новый URL входа в список исключений кеширования"
|
856 |
|
857 |
-
#: common.php:
|
858 |
msgid "Form submission denied"
|
859 |
msgstr "Отправка формы заблокирована"
|
860 |
|
861 |
-
#: common.php:
|
862 |
msgid "Comment denied"
|
863 |
msgstr "Комментарий заблокирован"
|
864 |
|
865 |
-
#: common.php:
|
866 |
msgid "Request to REST API denied"
|
867 |
msgstr "Запрос к REST API заблокирован"
|
868 |
|
869 |
-
#: common.php:
|
870 |
msgid "XML-RPC request denied"
|
871 |
msgstr "Запрос XML-RPC заблокирован"
|
872 |
|
873 |
-
#: common.php:
|
874 |
msgid "Bot detected"
|
875 |
msgstr "Обнаружен бот"
|
876 |
|
877 |
-
#: common.php:
|
878 |
msgid "Citadel mode is active"
|
879 |
msgstr "Режим цитадель активен"
|
880 |
|
881 |
-
#: common.php:
|
882 |
msgid "Malicious activity detected"
|
883 |
msgstr "Обнаружена вредоносная активность"
|
884 |
|
885 |
-
#: common.php:
|
886 |
msgid "Blocked by country rule"
|
887 |
msgstr "Заблокирован по ограничению для страны"
|
888 |
|
889 |
-
#: dashboard.php:135 dashboard.php:
|
890 |
msgid "Country"
|
891 |
msgstr "Страна"
|
892 |
|
893 |
-
#: dashboard.php:
|
894 |
msgid "All events"
|
895 |
msgstr "Все события"
|
896 |
|
@@ -898,30 +966,30 @@ msgstr "Все события"
|
|
898 |
msgid "Cerber Security Rules"
|
899 |
msgstr "Правила безопасности Цербер"
|
900 |
|
901 |
-
#: dashboard.php:60 dashboard.php:
|
902 |
msgid "Security Rules"
|
903 |
msgstr "Правила безопасности"
|
904 |
|
905 |
-
#: common.php:
|
906 |
msgid "Spam form submissions denied"
|
907 |
msgstr "Заблокированы отправки форм спама"
|
908 |
|
909 |
-
#: dashboard.php:
|
910 |
msgid "Countries"
|
911 |
msgstr "Страны"
|
912 |
|
913 |
-
#: dashboard.php:
|
914 |
msgid "Permitted for one country"
|
915 |
msgid_plural "Permitted for %d countries"
|
916 |
msgstr[0] "Разрешается для одной страны"
|
917 |
msgstr[1] "Разрешается для %d стран"
|
918 |
msgstr[2] "Разрешается для %d стран"
|
919 |
|
920 |
-
#: dashboard.php:
|
921 |
msgid "No rule"
|
922 |
msgstr "Нет правила"
|
923 |
|
924 |
-
#: dashboard.php:
|
925 |
msgid "Security rules have been updated"
|
926 |
msgstr "Правила безопасности обновлены"
|
927 |
|
@@ -945,7 +1013,7 @@ msgstr "Блокировать доступ к REST API кроме следую
|
|
945 |
msgid "License"
|
946 |
msgstr "Лицензия"
|
947 |
|
948 |
-
#: common.php:
|
949 |
msgid "Spam form submission denied"
|
950 |
msgstr "Отправка формы со спамом заблокирована"
|
951 |
|
@@ -973,7 +1041,7 @@ msgstr "Использовать менее жесткую политику (р
|
|
973 |
msgid "Disable bot detection engine for logged in users"
|
974 |
msgstr "Отключить определение ботов для авторизованных пользователей"
|
975 |
|
976 |
-
#: dashboard.php:
|
977 |
msgid "Logged in users"
|
978 |
msgstr "Авторизованные пользователи"
|
979 |
|
@@ -989,7 +1057,7 @@ msgstr "Диагностика"
|
|
989 |
msgid "Antispam and bot detection settings"
|
990 |
msgstr "Антиспам и настройки определения ботов"
|
991 |
|
992 |
-
#: common.php:
|
993 |
msgid "Bot activity is detected"
|
994 |
msgstr "Обнаружена активность ботов"
|
995 |
|
@@ -997,7 +1065,7 @@ msgstr "Обнаружена активность ботов"
|
|
997 |
msgid "Cerber antispam settings"
|
998 |
msgstr "Настройка Цербер антиспам"
|
999 |
|
1000 |
-
#: cerber-load.php:
|
1001 |
msgid "Antispam"
|
1002 |
msgstr "Аниспам"
|
1003 |
|
@@ -1025,7 +1093,7 @@ msgstr "Удалить спам комментарии в корзину"
|
|
1025 |
msgid "Move spam comments to trash after"
|
1026 |
msgstr "Удалить спам комментарии в корзину после"
|
1027 |
|
1028 |
-
#: cerber-load.php:
|
1029 |
msgid "Sorry, human verification failed."
|
1030 |
msgstr "Извините, проверка на человека не удалась."
|
1031 |
|
@@ -1033,52 +1101,52 @@ msgstr "Извините, проверка на человека не удала
|
|
1033 |
msgid "Cerber antispam engine"
|
1034 |
msgstr "Движок Цербер-антиспам"
|
1035 |
|
1036 |
-
#: common.php:
|
1037 |
msgid "Spam comment denied"
|
1038 |
msgstr "Спам коммнтарий отклонен"
|
1039 |
|
1040 |
-
#: common.php:
|
1041 |
msgid "Attempt to log in denied"
|
1042 |
msgstr "Попытка входа отклонена"
|
1043 |
|
1044 |
-
#: common.php:
|
1045 |
msgid "Attempt to register denied"
|
1046 |
msgstr "Попытка регистрации отклонена"
|
1047 |
|
1048 |
-
#: common.php:
|
1049 |
msgid "Malicious activities mitigated"
|
1050 |
msgstr "Вредоносная активность снижена"
|
1051 |
|
1052 |
-
#: common.php:
|
1053 |
msgid "Malicious IP addresses detected"
|
1054 |
msgstr "Найдены вредоносные IP адреса"
|
1055 |
|
1056 |
-
#: common.php:
|
1057 |
msgid "Lockouts occurred"
|
1058 |
msgstr "Блокировок произошло"
|
1059 |
|
1060 |
-
#: dashboard.php:
|
1061 |
msgid "All suspicious activity"
|
1062 |
msgstr "Вся подозрительная активность"
|
1063 |
|
1064 |
-
#: cerber-load.php:
|
1065 |
-
#: cerber-load.php:
|
1066 |
msgid "You are not allowed to register."
|
1067 |
msgstr "Вам не разрешено зарегистрироваться."
|
1068 |
|
1069 |
-
#: dashboard.php:
|
1070 |
msgid "Event"
|
1071 |
msgstr "Событие"
|
1072 |
|
1073 |
-
#: common.php:
|
1074 |
msgid "Spam comments denied"
|
1075 |
msgstr "Спам-комментарии отклонены"
|
1076 |
|
1077 |
-
#: common.php:
|
1078 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1079 |
msgstr "Достигнут предел проверки reCAPTCHA"
|
1080 |
|
1081 |
-
#: common.php:
|
1082 |
msgid "Password reset requested"
|
1083 |
msgstr "Запрошен сброс пароля"
|
1084 |
|
@@ -1094,7 +1162,7 @@ msgstr "Ограничение попыток"
|
|
1094 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1095 |
msgstr "Блокировать IP адрес на %s минут после %s неудачных попыток в течении %s минут"
|
1096 |
|
1097 |
-
#: settings.php:
|
1098 |
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."
|
1099 |
msgstr "В режиме Цитадель никто не может войти кроме как с IP в белом списке. Активные сессии пользователей не будут затронуты."
|
1100 |
|
@@ -1102,7 +1170,7 @@ msgstr "В режиме Цитадель никто не может войти
|
|
1102 |
msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
|
1103 |
msgstr "(не включайте, если у вас нет или вы не вводили ключ сайта и секретный ключ для невидимой версии)"
|
1104 |
|
1105 |
-
#: common.php:
|
1106 |
msgid "%s ago"
|
1107 |
msgstr "%s назад"
|
1108 |
|
@@ -1142,7 +1210,7 @@ msgstr "Показывать страницу 404"
|
|
1142 |
msgid "Email notifications"
|
1143 |
msgstr "Уведомления по эл.почте"
|
1144 |
|
1145 |
-
#: settings.php:216 settings.php:258 settings.php:
|
1146 |
msgid "Use comma to specify multiple values"
|
1147 |
msgstr "Используйте запятую для разделения множественных значений"
|
1148 |
|
@@ -1154,23 +1222,23 @@ msgstr "Все подключенные устройства"
|
|
1154 |
msgid "No devices found"
|
1155 |
msgstr "Устройства не найдены"
|
1156 |
|
1157 |
-
#: cerber-load.php:
|
1158 |
msgid "To unsubscribe click here"
|
1159 |
msgstr "Для отмены подписки нажмите здесь"
|
1160 |
|
1161 |
-
#: cerber-load.php:
|
1162 |
msgid "Search string"
|
1163 |
msgstr "Строка поиска"
|
1164 |
|
1165 |
-
#: cerber-load.php:
|
1166 |
msgid "User"
|
1167 |
msgstr "Пользователь"
|
1168 |
|
1169 |
-
#: cerber-load.php:
|
1170 |
msgid "A new activity has been recorded"
|
1171 |
msgstr "Отмечена новая активность"
|
1172 |
|
1173 |
-
#: cerber-tools.php:273 dashboard.php:
|
1174 |
msgid "Unsubscribe"
|
1175 |
msgstr "Отменить подписку"
|
1176 |
|
@@ -1178,31 +1246,31 @@ msgstr "Отменить подписку"
|
|
1178 |
msgid "Cerber tools"
|
1179 |
msgstr "Инструменты Cerber"
|
1180 |
|
1181 |
-
#: dashboard.php:
|
1182 |
msgid "Subscribe"
|
1183 |
msgstr "Подписаться"
|
1184 |
|
1185 |
-
#: dashboard.php:
|
1186 |
msgid "Filter"
|
1187 |
msgstr "Фильтр"
|
1188 |
|
1189 |
-
#: dashboard.php:
|
1190 |
msgid "Search for IP or username"
|
1191 |
msgstr "Поиск IP или имени пользователя"
|
1192 |
|
1193 |
-
#: dashboard.php:
|
1194 |
msgid "Export"
|
1195 |
msgstr "Экспорт"
|
1196 |
|
1197 |
-
#: dashboard.php:
|
1198 |
msgid "User ID"
|
1199 |
msgstr "ID пользователя"
|
1200 |
|
1201 |
-
#: dashboard.php:
|
1202 |
msgid "User login"
|
1203 |
msgstr "Имя пользователя"
|
1204 |
|
1205 |
-
#: dashboard.php:
|
1206 |
msgid "IP address"
|
1207 |
msgstr "IP адрес"
|
1208 |
|
@@ -1210,11 +1278,11 @@ msgstr "IP адрес"
|
|
1210 |
msgid "if empty, the default format %s will be used"
|
1211 |
msgstr "Если пусто, будет использован формат по умолчанию %s"
|
1212 |
|
1213 |
-
#: dashboard.php:
|
1214 |
msgid "You've unsubscribed"
|
1215 |
msgstr "Подписка отменена"
|
1216 |
|
1217 |
-
#: dashboard.php:
|
1218 |
msgid "You've subscribed"
|
1219 |
msgstr "Вы подписались"
|
1220 |
|
@@ -1234,7 +1302,7 @@ msgstr "Формат даты"
|
|
1234 |
msgid "Gregory"
|
1235 |
msgstr "Gregory"
|
1236 |
|
1237 |
-
#: dashboard.php:54 dashboard.php:
|
1238 |
msgid "Dashboard"
|
1239 |
msgstr "Консоль"
|
1240 |
|
@@ -1274,23 +1342,23 @@ msgstr "Посылать вредоносные IP адреса в Cerber Lab"
|
|
1274 |
msgid "Cerber Lab connection"
|
1275 |
msgstr "Подключение Cerber Lab"
|
1276 |
|
1277 |
-
#: dashboard.php:
|
1278 |
msgid "Recently locked out IP addresses"
|
1279 |
msgstr "Недавно заблокированые IP адреса"
|
1280 |
|
1281 |
-
#: dashboard.php:
|
1282 |
msgid "View all"
|
1283 |
msgstr "Просмотреть все"
|
1284 |
|
1285 |
-
#: dashboard.php:52 settings.php:
|
1286 |
msgid "WP Cerber Security"
|
1287 |
msgstr "WP Cerber Security"
|
1288 |
|
1289 |
-
#: dashboard.php:
|
1290 |
msgid "Add network to the Black List"
|
1291 |
msgstr "Добавить сеть в черный список"
|
1292 |
|
1293 |
-
#: dashboard.php:
|
1294 |
msgid "Network:"
|
1295 |
msgstr "Сеть:"
|
1296 |
|
@@ -1298,23 +1366,23 @@ msgstr "Сеть:"
|
|
1298 |
msgid "Incorrect IP address or IP range"
|
1299 |
msgstr "Неверный IP адрес или диапазон адресов"
|
1300 |
|
1301 |
-
#: common.php:
|
1302 |
msgid "Request to the Google reCAPTCHA service failed"
|
1303 |
msgstr "Запрос к сервису Google reCAPTCHA не удался"
|
1304 |
|
1305 |
-
#: cerber-lab.php:
|
1306 |
msgid "NO, maybe later"
|
1307 |
msgstr "НЕТ, возможно позже"
|
1308 |
|
1309 |
-
#: cerber-lab.php:
|
1310 |
msgid "OK, nail them all"
|
1311 |
msgstr "ОК, прибьем их всех"
|
1312 |
|
1313 |
-
#: cerber-lab.php:
|
1314 |
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."
|
1315 |
msgstr "Разрешить WP Cerber посылать заблокированные IP адреса в Cerber Lab. Это помогает команде плагина разрабатывать новые алгоритмы для WP Cerber, которые будут защищать WordPress против новых угроз и ботнетов появляюшихся каждый день. Вы всегда можете отключить отсылку в настройках плагина, в любой момент."
|
1316 |
|
1317 |
-
#: cerber-lab.php:
|
1318 |
msgid "Want to make WP Cerber even more powerful?"
|
1319 |
msgstr "Хотите сделать WP Cerber еще мощнее ?"
|
1320 |
|
@@ -1330,11 +1398,11 @@ msgstr "Защищает сайт от атак перебора, ботов, х
|
|
1330 |
msgid "Remove"
|
1331 |
msgstr "Удалить"
|
1332 |
|
1333 |
-
#: cerber-load.php:
|
1334 |
msgid "IP"
|
1335 |
msgstr "IP"
|
1336 |
|
1337 |
-
#: dashboard.php:134 dashboard.php:
|
1338 |
msgid "Hostname"
|
1339 |
msgstr "Имя узла"
|
1340 |
|
@@ -1342,7 +1410,7 @@ msgstr "Имя узла"
|
|
1342 |
msgid "Expires"
|
1343 |
msgstr "Истекает"
|
1344 |
|
1345 |
-
#: cerber-load.php:
|
1346 |
msgid "Reason"
|
1347 |
msgstr "Причина"
|
1348 |
|
@@ -1358,8 +1426,8 @@ msgstr "Подсказка"
|
|
1358 |
msgid "No lockouts at the moment. The sky is clear."
|
1359 |
msgstr "Блокировок нет. Все в порядке."
|
1360 |
|
1361 |
-
#: cerber-load.php:
|
1362 |
-
#: dashboard.php:
|
1363 |
msgid "White IP Access List"
|
1364 |
msgstr "Белый список доступа по IP"
|
1365 |
|
@@ -1367,8 +1435,8 @@ msgstr "Белый список доступа по IP"
|
|
1367 |
msgid "These IPs will never be locked out"
|
1368 |
msgstr "Эти адреса не будут заблокированы ни при каких условиях"
|
1369 |
|
1370 |
-
#: dashboard.php:173 dashboard.php:
|
1371 |
-
#: dashboard.php:
|
1372 |
msgid "Black IP Access List"
|
1373 |
msgstr "Черный список доступа по IP"
|
1374 |
|
@@ -1376,8 +1444,8 @@ msgstr "Черный список доступа по IP"
|
|
1376 |
msgid "Your IP"
|
1377 |
msgstr "Ваш адрес IP"
|
1378 |
|
1379 |
-
#: dashboard.php:198 dashboard.php:
|
1380 |
-
msgid "Check for
|
1381 |
msgstr "Проверить активность"
|
1382 |
|
1383 |
#: dashboard.php:205
|
@@ -1404,68 +1472,68 @@ msgstr "неизвестно"
|
|
1404 |
msgid "Lockout for %s was removed"
|
1405 |
msgstr "Удалена блокировка для %s"
|
1406 |
|
1407 |
-
#: common.php:
|
1408 |
msgid "Locked out"
|
1409 |
msgstr "Заблокировано"
|
1410 |
|
1411 |
-
#: dashboard.php:
|
1412 |
msgid "Date"
|
1413 |
msgstr "Дата"
|
1414 |
|
1415 |
-
#: cerber-load.php:
|
1416 |
-
#: settings.php:
|
1417 |
msgid "Activity"
|
1418 |
msgstr "Активность"
|
1419 |
|
1420 |
-
#: dashboard.php:
|
1421 |
msgid "Local User"
|
1422 |
msgstr "Пользователь"
|
1423 |
|
1424 |
-
#: cerber-load.php:
|
1425 |
msgid "Username used"
|
1426 |
msgstr "Использован логин"
|
1427 |
|
1428 |
-
#: dashboard.php:
|
1429 |
msgid "No activity has been logged."
|
1430 |
msgstr "Ни одного события не зафиксировано."
|
1431 |
|
1432 |
-
#: dashboard.php:
|
1433 |
msgid "Add IP to the Black List"
|
1434 |
msgstr "Добавить IP в черный список"
|
1435 |
|
1436 |
-
#: common.php:
|
1437 |
msgid "Login failed"
|
1438 |
msgstr "Ошибка авторизации"
|
1439 |
|
1440 |
-
#: common.php:
|
1441 |
msgid "IP blocked"
|
1442 |
msgstr "IP заблокирован"
|
1443 |
|
1444 |
-
#: common.php:
|
1445 |
msgid "Subnet blocked"
|
1446 |
msgstr "Подсеть заблокирована"
|
1447 |
|
1448 |
-
#: common.php:
|
1449 |
msgid "Citadel activated!"
|
1450 |
msgstr "Режим Цитадель активирован!"
|
1451 |
|
1452 |
-
#: common.php:
|
1453 |
msgid "IP blacklisted"
|
1454 |
msgstr "IP в черном списке"
|
1455 |
|
1456 |
-
#: common.php:
|
1457 |
msgid "Password changed"
|
1458 |
msgstr "Пароль изменен"
|
1459 |
|
1460 |
-
#: dashboard.php:
|
1461 |
msgid "Comments"
|
1462 |
msgstr "Комментарии"
|
1463 |
|
1464 |
-
#: dashboard.php:
|
1465 |
msgid "Last login"
|
1466 |
msgstr "Последний вход"
|
1467 |
|
1468 |
-
#: common.php:
|
1469 |
msgid "Never"
|
1470 |
msgstr "Никогда"
|
1471 |
|
@@ -1477,13 +1545,13 @@ msgstr "Экспорт настроек в файл"
|
|
1477 |
msgid "What do you want to export?"
|
1478 |
msgstr "Что вы хотите экспортировать"
|
1479 |
|
1480 |
-
#: cerber-scanner.php:
|
1481 |
-
#: dashboard.php:
|
1482 |
msgid "Settings"
|
1483 |
msgstr "Настройки"
|
1484 |
|
1485 |
-
#: cerber-load.php:
|
1486 |
-
#: cerber-tools.php:182 settings.php:
|
1487 |
msgid "Access Lists"
|
1488 |
msgstr "Списки доступа"
|
1489 |
|
@@ -1507,7 +1575,7 @@ msgstr "Выберите файл для загрузки."
|
|
1507 |
msgid "What do you want to import?"
|
1508 |
msgstr "Что вы хотите импортировать?"
|
1509 |
|
1510 |
-
#: cerber-scanner.php:
|
1511 |
msgid "Upload file"
|
1512 |
msgstr "Загрузить файл"
|
1513 |
|
@@ -1527,185 +1595,185 @@ msgstr "Все настройки успешно загружены"
|
|
1527 |
msgid "Error while parsing file"
|
1528 |
msgstr "Возникла ошибка при обработке файла"
|
1529 |
|
1530 |
-
#: dashboard.php:
|
1531 |
msgid "Cerber Quick View"
|
1532 |
msgstr "Сводка от Cerber"
|
1533 |
|
1534 |
-
#: dashboard.php:
|
1535 |
msgid "active"
|
1536 |
msgstr "активен"
|
1537 |
|
1538 |
-
#: dashboard.php:
|
1539 |
msgid "deactivate"
|
1540 |
msgstr "деактивировать"
|
1541 |
|
1542 |
-
#: dashboard.php:
|
1543 |
msgid "not active"
|
1544 |
msgstr "неактивен"
|
1545 |
|
1546 |
-
#: dashboard.php:
|
1547 |
msgid "disabled"
|
1548 |
msgstr "отключен"
|
1549 |
|
1550 |
-
#: dashboard.php:
|
1551 |
msgid "failed attempts"
|
1552 |
msgstr "ошибок авторизации"
|
1553 |
|
1554 |
-
#: dashboard.php:
|
1555 |
msgid "in 24 hours"
|
1556 |
msgstr "за 24 часа"
|
1557 |
|
1558 |
-
#: dashboard.php:
|
1559 |
msgid "view all"
|
1560 |
msgstr "просмотреть все"
|
1561 |
|
1562 |
-
#: dashboard.php:
|
1563 |
msgid "lockouts"
|
1564 |
msgstr "блокировок"
|
1565 |
|
1566 |
-
#: dashboard.php:
|
1567 |
msgid "Lockouts at the moment"
|
1568 |
msgstr "Сейчас заблокировано"
|
1569 |
|
1570 |
-
#: dashboard.php:
|
1571 |
msgid "Last lockout"
|
1572 |
msgstr "Последняя блокировка"
|
1573 |
|
1574 |
-
#: dashboard.php:
|
1575 |
msgid "entry"
|
1576 |
msgid_plural "entries"
|
1577 |
msgstr[0] "элемент"
|
1578 |
msgstr[1] "элемента"
|
1579 |
msgstr[2] "элементов"
|
1580 |
|
1581 |
-
#: dashboard.php:
|
1582 |
msgid "Citadel mode"
|
1583 |
msgstr "Режим Цитадель"
|
1584 |
|
1585 |
-
#: settings.php:
|
1586 |
msgid "Lockouts"
|
1587 |
msgstr "Блокировки"
|
1588 |
|
1589 |
-
#: dashboard.php:
|
1590 |
msgid "Confused about some settings?"
|
1591 |
msgstr "Сомневаетесь какие настройки оптимальны?"
|
1592 |
|
1593 |
-
#: dashboard.php:
|
1594 |
msgid "You can easily load default recommended settings using button below"
|
1595 |
msgstr "Вы можете загрузить рекомендованные настройки с помощью всего одной кнопки"
|
1596 |
|
1597 |
-
#: dashboard.php:
|
1598 |
msgid "Load default settings"
|
1599 |
msgstr "Загрузить настройки"
|
1600 |
|
1601 |
-
#: dashboard.php:
|
1602 |
msgid "Are you sure?"
|
1603 |
msgstr "Вы уверены?"
|
1604 |
|
1605 |
-
#: dashboard.php:
|
1606 |
msgid "doesn't affect Custom login URL and Access Lists"
|
1607 |
msgstr "не затронет настройки URL страницы авторизации и списки доступа"
|
1608 |
|
1609 |
-
#: dashboard.php:
|
1610 |
msgid "Deactivate"
|
1611 |
msgstr "Деактивировать"
|
1612 |
|
1613 |
-
#: dashboard.php:
|
1614 |
msgid "View Activity"
|
1615 |
msgstr "Что происходит?"
|
1616 |
|
1617 |
-
#: common.php:
|
1618 |
msgid "New version is available"
|
1619 |
msgstr "Доступна новая версия"
|
1620 |
|
1621 |
-
#: common.php:
|
1622 |
msgid "Update to version %s of WP Cerber"
|
1623 |
msgstr "Обновить WP Cerber до версии %s"
|
1624 |
|
1625 |
-
#: cerber-load.php:
|
1626 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
1627 |
msgstr "Вход на сайт невозможен. Обратитесь к администратору сайта."
|
1628 |
|
1629 |
-
#: cerber-load.php:
|
1630 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
1631 |
msgstr "Вход невозможен. Слишком много ошибочных попыток. Попробуйте войти через %d минут."
|
1632 |
|
1633 |
-
#: cerber-load.php:
|
1634 |
msgid "You have only one attempt remaining."
|
1635 |
msgid_plural "You have %d attempts remaining."
|
1636 |
msgstr[0] "У вас есть только одна попытка для входа"
|
1637 |
msgstr[1] "У вас осталось %d попытки для входа."
|
1638 |
msgstr[2] "У вас осталось %d попыток для входа."
|
1639 |
|
1640 |
-
#: common.php:
|
1641 |
msgid "Attempt to access"
|
1642 |
msgstr "Попытка доступа к"
|
1643 |
|
1644 |
-
#: common.php:
|
1645 |
msgid "Limit on login attempts is reached"
|
1646 |
msgstr "Количество попыток исчерпано"
|
1647 |
|
1648 |
-
#: common.php:
|
1649 |
msgid "Attempt to log in with non-existent username"
|
1650 |
msgstr "Попытка войти с несуществующим именем пользователя"
|
1651 |
|
1652 |
-
#: cerber-load.php:
|
1653 |
msgid "WP Cerber notify"
|
1654 |
msgstr "Уведомление WP Cerber"
|
1655 |
|
1656 |
-
#: cerber-load.php:
|
1657 |
msgid "Citadel mode is activated"
|
1658 |
msgstr "Активирован режим Цитадель"
|
1659 |
|
1660 |
-
#: cerber-load.php:
|
1661 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
1662 |
msgstr "Последняя неудачная попытка была в %s с IP адреса %s с логином %s."
|
1663 |
|
1664 |
-
#: cerber-load.php:
|
1665 |
msgid "View activity in dashboard"
|
1666 |
msgstr "Просмотреть журнал активности"
|
1667 |
|
1668 |
-
#: cerber-load.php:
|
1669 |
msgid "Number of active lockouts"
|
1670 |
msgstr "Число активных блокировок на данный момент"
|
1671 |
|
1672 |
-
#: cerber-load.php:
|
1673 |
msgid "Last lockout was added: %s for IP %s"
|
1674 |
msgstr "Последняя блокировка была добавлена %s для IP %s"
|
1675 |
|
1676 |
-
#: cerber-load.php:
|
1677 |
msgid "View lockouts in dashboard"
|
1678 |
msgstr "Просмотреть список заблокированных IP"
|
1679 |
|
1680 |
-
#: cerber-load.php:
|
1681 |
msgid "New Custom login URL"
|
1682 |
msgstr "Новый URL для входа на сайт"
|
1683 |
|
1684 |
-
#: cerber-load.php:
|
1685 |
msgid "This message was sent by"
|
1686 |
msgstr "Это сообщение было отправлено"
|
1687 |
|
1688 |
-
#: cerber-load.php:
|
1689 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
1690 |
msgstr "WP Cerber требует PHP версии %s или выше. У вас версия"
|
1691 |
|
1692 |
-
#: cerber-load.php:
|
1693 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
1694 |
msgstr "WP Cerber требует WordPress версии %s или выше. У вас версия"
|
1695 |
|
1696 |
-
#: cerber-load.php:
|
1697 |
msgid "Can't activate WP Cerber due to a database error."
|
1698 |
msgstr "Невозможно активировать плагин WP Cerber из-за ошибки в базе данных."
|
1699 |
|
1700 |
-
#: cerber-load.php:
|
1701 |
msgid "Main Settings"
|
1702 |
msgstr "Главные настройки"
|
1703 |
|
1704 |
-
#: cerber-load.php:
|
1705 |
msgid "Hardening"
|
1706 |
msgstr "Панцирь"
|
1707 |
|
1708 |
-
#: dashboard.php:
|
1709 |
msgid "Abuse email:"
|
1710 |
msgstr "Адрес email для жалоб:"
|
1711 |
|
@@ -1729,7 +1797,7 @@ msgstr "минут"
|
|
1729 |
msgid "Aggressive lockout"
|
1730 |
msgstr "Ужесточение"
|
1731 |
|
1732 |
-
#: cerber-load.php:
|
1733 |
msgid "Notifications"
|
1734 |
msgstr "Уведомления"
|
1735 |
|
@@ -1737,7 +1805,7 @@ msgstr "Уведомления"
|
|
1737 |
msgid "Site connection"
|
1738 |
msgstr "Подключение к сети"
|
1739 |
|
1740 |
-
#: dashboard.php:
|
1741 |
msgid "My site is behind a reverse proxy"
|
1742 |
msgstr "Мой сайт подключен к сети через прокси-сервер"
|
1743 |
|
@@ -1801,7 +1869,7 @@ msgstr "Длительность"
|
|
1801 |
msgid "Send notification to admin email"
|
1802 |
msgstr "Отправить уведомление на адрес email администратора сайта"
|
1803 |
|
1804 |
-
#: settings.php:212 settings.php:253 settings.php:
|
1805 |
msgid "Email Address"
|
1806 |
msgstr "Адрес email"
|
1807 |
|
@@ -1809,11 +1877,11 @@ msgstr "Адрес email"
|
|
1809 |
msgid "if empty, the admin email %s will be used"
|
1810 |
msgstr "Если пусто, то будет использован адрес администратора %s"
|
1811 |
|
1812 |
-
#: settings.php:107 settings.php:
|
1813 |
msgid "Keep records for"
|
1814 |
msgstr "Хранить записи не более"
|
1815 |
|
1816 |
-
#: settings.php:107 settings.php:183 settings.php:
|
1817 |
msgid "days"
|
1818 |
msgstr "дней"
|
1819 |
|
@@ -1845,15 +1913,15 @@ msgstr "Отключить XML-RPC"
|
|
1845 |
msgid "Disable REST API"
|
1846 |
msgstr "Отключить REST API"
|
1847 |
|
1848 |
-
#: settings.php:
|
1849 |
msgid "Make your protection smarter!"
|
1850 |
msgstr "Сделайте защиту от злоумышленников еще умнее"
|
1851 |
|
1852 |
-
#: settings.php:
|
1853 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
1854 |
msgstr "Для использования этой настройки необходимо активировать Постоянные ссылки в настройках сайта."
|
1855 |
|
1856 |
-
#: settings.php:
|
1857 |
msgid "These settings do not affect hosts from the "
|
1858 |
msgstr "Эти настройки не применяются к адресам из"
|
1859 |
|
@@ -1861,92 +1929,92 @@ msgstr "Эти настройки не применяются к адресам
|
|
1861 |
msgid "Tools"
|
1862 |
msgstr "Инструменты"
|
1863 |
|
1864 |
-
#: cerber-scanner.php:
|
1865 |
-
#: settings.php:
|
1866 |
msgid "Help"
|
1867 |
msgstr "Помощь"
|
1868 |
|
1869 |
-
#: settings.php:
|
1870 |
msgid "%s allowed retries in %s minutes"
|
1871 |
msgstr "%s попыток разрешено в течении %s минут"
|
1872 |
|
1873 |
-
#: settings.php:
|
1874 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
1875 |
msgstr "Увеличить длительность блокировки до %s часов после %s блокировок в течение последних %s часов"
|
1876 |
|
1877 |
-
#: settings.php:
|
1878 |
msgid "Notify admin if the number of active lockouts above"
|
1879 |
msgstr "Уведомить администратора, если число заблокированных IP более"
|
1880 |
|
1881 |
-
#: settings.php:
|
1882 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
1883 |
msgstr "Активировать после %s неудачных авторизаций за последние %s минут"
|
1884 |
|
1885 |
-
#: settings.php:
|
1886 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
1887 |
msgstr "Внимание! Вы изменили URL страницы авторизации. Новый адрес"
|
1888 |
|
1889 |
-
#: cerber-load.php:
|
1890 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
1891 |
msgstr "Режим Цитадель активирован после %d неудачных попыток за %d минут."
|
1892 |
|
1893 |
-
#: common.php:
|
1894 |
msgid "Logged in"
|
1895 |
msgstr "Вход"
|
1896 |
|
1897 |
-
#: common.php:
|
1898 |
msgid "Logged out"
|
1899 |
msgstr "Выход"
|
1900 |
|
1901 |
-
#: cerber-load.php:
|
1902 |
msgid "Import settings"
|
1903 |
msgstr "Импорт настроек"
|
1904 |
|
1905 |
-
#: cerber-load.php:
|
1906 |
msgid "Your IP address is added to the"
|
1907 |
msgstr "Ваш IP адрес добавлен к"
|
1908 |
|
1909 |
-
#: cerber-load.php:
|
1910 |
msgid "WP Cerber is now active and has started protecting your site"
|
1911 |
msgstr "WP Cerber активен и начал защищать ваш сайт"
|
1912 |
|
1913 |
-
#: cerber-load.php:
|
1914 |
msgid "The WP Cerber security plugin is now active"
|
1915 |
msgstr "WP Cerber плагин безопасности активен"
|
1916 |
|
1917 |
-
#: cerber-load.php:
|
1918 |
msgid "From country"
|
1919 |
msgstr "Из страны"
|
1920 |
|
1921 |
-
#: cerber-load.php:
|
1922 |
msgid "From IP address"
|
1923 |
msgstr "С IP адреса"
|
1924 |
|
1925 |
-
#: cerber-load.php:
|
1926 |
msgid "By user"
|
1927 |
msgstr "По пользователю"
|
1928 |
|
1929 |
-
#: cerber-load.php:
|
1930 |
msgid "Not logged in"
|
1931 |
msgstr "Нет авторизации"
|
1932 |
|
1933 |
-
#: cerber-load.php:
|
1934 |
msgid "The WP Cerber security plugin has been deactivated"
|
1935 |
msgstr "WP Cerber плагин деактивирован"
|
1936 |
|
1937 |
-
#: cerber-load.php:
|
1938 |
msgid "Website"
|
1939 |
msgstr "Сайт"
|
1940 |
|
1941 |
-
#: cerber-load.php:
|
1942 |
msgid "Hi!"
|
1943 |
msgstr "Привет!"
|
1944 |
|
1945 |
-
#: cerber-load.php:
|
1946 |
msgid "A new version of WP Cerber is available to install"
|
1947 |
msgstr "Доступна новая версия WP Cerber!"
|
1948 |
|
1949 |
-
#: cerber-load.php:
|
1950 |
msgid "View activity for this IP"
|
1951 |
msgstr "Посмотреть активность для этого IP"
|
1952 |
|
@@ -1958,53 +2026,53 @@ msgstr "Действие"
|
|
1958 |
msgid "WP Cerber"
|
1959 |
msgstr "WP Cerber"
|
1960 |
|
1961 |
-
#: cerber-load.php:
|
1962 |
msgid "Number of lockouts is increasing"
|
1963 |
msgstr "Число блокировок увеличилось"
|
1964 |
|
1965 |
-
#: cerber-load.php:
|
1966 |
msgid "unspecified"
|
1967 |
msgstr "неуказано"
|
1968 |
|
1969 |
-
#: cerber-load.php:
|
1970 |
msgid "Username is not allowed. Please choose another one."
|
1971 |
msgstr "Имя пользователя недопустимо. Выберите другое."
|
1972 |
|
1973 |
-
#: cerber-load.php:
|
1974 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
1975 |
msgstr "<strong>ОШИБКА</strong>: Пароль введенный для пользователя %s is некорректен."
|
1976 |
|
1977 |
-
#: cerber-load.php:
|
1978 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
1979 |
msgstr "Антибот проверка неудачна. Пожалуйста тыкните в квадратную отметку блока reCAPTCHA ниже"
|
1980 |
|
1981 |
-
#: cerber-load.php:
|
1982 |
-
#: cerber-load.php:
|
1983 |
-
#: cerber-load.php:
|
1984 |
-
#: cerber-load.php:
|
1985 |
-
#: common.php:
|
1986 |
-
#: settings.php:
|
1987 |
msgid "ERROR:"
|
1988 |
msgstr "ОШИБКА:"
|
1989 |
|
1990 |
-
#: common.php:
|
1991 |
#: whois.php:223 whois.php:254
|
1992 |
msgid "Unknown"
|
1993 |
msgstr "Неизвестен"
|
1994 |
|
1995 |
-
#: settings.php:
|
1996 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
1997 |
msgstr "<strong>ОШИБКА</strong>: Введите действительный адрес эл.почты."
|
1998 |
|
1999 |
-
#: settings.php:
|
2000 |
msgid "Users"
|
2001 |
msgstr "Пользователи"
|
2002 |
|
2003 |
-
#: cerber-lab.php:
|
2004 |
msgid "Know more"
|
2005 |
msgstr "Узнать больше"
|
2006 |
|
2007 |
-
#: settings.php:
|
2008 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
2009 |
msgstr "Перед использованием reCAPTCHA вам нужно получить ключ сайта и секретный ключ на сайте Google"
|
2010 |
|
@@ -2064,35 +2132,35 @@ msgstr "Максимальный размер загружаемого файл
|
|
2064 |
msgid "Nobody can log in or register from these IPs"
|
2065 |
msgstr "Никто не сможет войти или зарегистрироваться с этих IP"
|
2066 |
|
2067 |
-
#: common.php:
|
2068 |
msgid "Attempt to log in with prohibited username"
|
2069 |
msgstr "Попытка входа с запрещенным именем"
|
2070 |
|
2071 |
-
#: common.php:
|
2072 |
msgid "Attempt to access prohibited URL"
|
2073 |
msgstr "Попытка доступа к запрещенному URL"
|
2074 |
|
2075 |
-
#: common.php:
|
2076 |
msgid "reCAPTCHA settings are incorrect"
|
2077 |
msgstr "настройки reCAPTCHA неверны"
|
2078 |
|
2079 |
-
#: common.php:
|
2080 |
msgid "reCAPTCHA verification failed"
|
2081 |
msgstr "проверка reCAPTCHA неудачна"
|
2082 |
|
2083 |
-
#: common.php:
|
2084 |
msgid "User registered"
|
2085 |
msgstr "Пользователь зарегистрирован"
|
2086 |
|
2087 |
-
#: common.php:
|
2088 |
msgid "User created"
|
2089 |
msgstr "Пользователь создан"
|
2090 |
|
2091 |
-
#: dashboard.php:445 dashboard.php:
|
2092 |
msgid "Settings saved"
|
2093 |
msgstr "Настройки сохранены."
|
2094 |
|
2095 |
-
#: dashboard.php:
|
2096 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
2097 |
msgstr "Внимание! Режим Цитадель активен. Авторизация на сайте заблокирована."
|
2098 |
|
@@ -2121,15 +2189,15 @@ msgid "by date of registration"
|
|
2121 |
msgstr "по дате регистрации"
|
2122 |
|
2123 |
#. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security, Antispam & Malware Scan
|
2124 |
-
#. 7.
|
2125 |
#. Plugin URI of the plugin/theme
|
2126 |
#. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security, Antispam & Malware Scan
|
2127 |
-
#. 7.
|
2128 |
#. Author URI of the plugin/theme
|
2129 |
msgid "https://wpcerber.com"
|
2130 |
msgstr "https://wpcerber.com"
|
2131 |
|
2132 |
-
#: settings.php:104 settings.php:
|
2133 |
msgid "Click to send test"
|
2134 |
msgstr "Нажмите, чтобы протестировать отправку"
|
2135 |
|
2 |
# This file is distributed under the same license as the Plugins - Cerber Security, Antispam & Malware Scan - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2018-08-21 01:41:57+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
"Language: ru\n"
|
12 |
"Project-Id-Version: Plugins - Cerber Security, Antispam & Malware Scan - Stable (latest release)\n"
|
13 |
|
14 |
+
#: cerber-scanner.php:1131
|
15 |
+
msgid "Vulnerability found"
|
16 |
+
msgstr "Обнаружена уязвимость"
|
17 |
+
|
18 |
+
#: cerber-scanner.php:1136
|
19 |
+
msgid "Unable to check the integrity due to a DB error"
|
20 |
+
msgstr "Невозможно проверить целостность из-за ошибки БД"
|
21 |
+
|
22 |
+
#: cerber-scanner.php:3410
|
23 |
+
msgid "Scanning the temp folder for files"
|
24 |
+
msgstr "Поиск файлов в временном каталоге"
|
25 |
+
|
26 |
+
#: cerber-scanner.php:3409
|
27 |
+
msgid "Scanning the upload folder for files"
|
28 |
+
msgstr "Поиск файлов в каталоге uploads"
|
29 |
+
|
30 |
+
#: cerber-scanner.php:3411
|
31 |
+
msgid "Scanning the session folder for files"
|
32 |
+
msgstr "Поиск файлов в каталоге сессий"
|
33 |
+
|
34 |
+
#: common.php:855
|
35 |
+
msgid "Malicious request denied"
|
36 |
+
msgstr "Заблокирован вредоносный запрос"
|
37 |
+
|
38 |
+
#: common.php:859
|
39 |
+
msgid "User activated"
|
40 |
+
msgstr "Пользователь активирован"
|
41 |
+
|
42 |
+
#: common.php:874
|
43 |
+
msgid "Suspicious number of fields"
|
44 |
+
msgstr "Подозрительное число полей"
|
45 |
+
|
46 |
+
#: common.php:875
|
47 |
+
msgid "Suspicious number of nested values"
|
48 |
+
msgstr "Подозрительное количество вложенных значений"
|
49 |
+
|
50 |
+
#: common.php:876 common.php:909
|
51 |
+
msgid "Malicious code detected"
|
52 |
+
msgstr "Обнаружен вредоносный код"
|
53 |
+
|
54 |
+
#: common.php:910
|
55 |
+
msgid "Attempt to upload a file with malicious code"
|
56 |
+
msgstr "Попытка загрузки файла с вредоносным кодом"
|
57 |
+
|
58 |
+
#: common.php:1057
|
59 |
+
msgid "Bytes"
|
60 |
+
msgstr "Байт"
|
61 |
+
|
62 |
+
#: dashboard.php:1023
|
63 |
+
msgid "Activated"
|
64 |
+
msgstr "Активация"
|
65 |
+
|
66 |
+
#: dashboard.php:3144
|
67 |
+
msgid "Suspicious activity"
|
68 |
+
msgstr "Подозрительная активность"
|
69 |
+
|
70 |
+
#: dashboard.php:3145
|
71 |
+
msgid "Errors"
|
72 |
+
msgstr "Ошибки"
|
73 |
+
|
74 |
+
#: settings.php:448
|
75 |
+
msgid "Scan results reporting"
|
76 |
+
msgstr "Отчет о результатах проверки"
|
77 |
+
|
78 |
+
#: settings.php:432
|
79 |
+
msgid "Automated recurring scan schedule"
|
80 |
+
msgstr "План автоматической повторной проверки"
|
81 |
+
|
82 |
+
#: settings.php:1217
|
83 |
msgid "Unable to updated the schedule"
|
84 |
msgstr "Невозможно обновить запланированное"
|
85 |
|
86 |
+
#: settings.php:1214
|
87 |
msgid "The schedule has been updated"
|
88 |
msgstr "Запланированное обновлено"
|
89 |
|
90 |
+
#: settings.php:478
|
91 |
msgid "Include scan errors"
|
92 |
msgstr "Включать ошибки сканера"
|
93 |
|
94 |
+
#: settings.php:471
|
95 |
msgid "Include file sizes"
|
96 |
msgstr "Включать размеры файлов"
|
97 |
|
98 |
+
#: settings.php:467
|
99 |
msgid "If new issues found"
|
100 |
msgstr "Если найдены новые проблемы"
|
101 |
|
102 |
+
#: settings.php:466
|
103 |
msgid "If any changes in scan results occurred"
|
104 |
msgstr "Если найдены изменения в результатах сканирования"
|
105 |
|
106 |
+
#: settings.php:465
|
107 |
msgid "After every scan"
|
108 |
msgstr "После каждого сканирования"
|
109 |
|
110 |
+
#: settings.php:451
|
111 |
msgid "Report an issue if any of the following is true"
|
112 |
msgstr "Отчитываться о проблемах, если нижеперечисленное верно"
|
113 |
|
114 |
+
#: settings.php:459
|
115 |
msgid "Send email report"
|
116 |
msgstr "Отсылать отчет по эл.почте"
|
117 |
|
118 |
+
#: settings.php:450
|
119 |
msgid "Medium severity"
|
120 |
msgstr "Средняя тяжесть"
|
121 |
|
122 |
+
#: settings.php:450
|
123 |
msgid "High severity"
|
124 |
msgstr "Высокая тяжесть"
|
125 |
|
126 |
+
#: settings.php:450
|
|
|
|
|
|
|
|
|
127 |
msgid "Low severity"
|
128 |
msgstr "Низкая тяжесть"
|
129 |
|
130 |
+
#: settings.php:399
|
|
|
|
|
|
|
|
|
131 |
msgid "Monitor modified files"
|
132 |
msgstr "Наблюдать за изменением файлов"
|
133 |
|
134 |
+
#: settings.php:392
|
135 |
msgid "Monitor new files"
|
136 |
msgstr "Наблюдать за новыми файлами"
|
137 |
|
138 |
+
#: cerber-scanner.php:4696
|
|
|
|
|
|
|
|
|
139 |
msgid "To view full report visit"
|
140 |
msgstr "Для просмотра полного отчета зайдите на"
|
141 |
|
142 |
+
#: cerber-scanner.php:3573
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
msgid "You have to upload a ZIP archive from which you've installed it. This enables the security scanner to verify the integrity of the code and detect malware."
|
144 |
msgstr "Вам нужно загрузить zip-архив, из которого вы это установили. Это даст возможность сканеру безопасности проверить целостность файлов, кода и определить вредоносный код."
|
145 |
|
146 |
+
#: cerber-scanner.php:3571
|
147 |
msgid "We have not found any integrity data to verify"
|
148 |
msgstr "Не найдены данные о целостности для проверки"
|
149 |
|
150 |
+
#: cerber-scanner.php:3417
|
|
|
|
|
|
|
|
|
151 |
msgid "Searching for malicious code"
|
152 |
msgstr "Поиск вредоносного кода"
|
153 |
|
154 |
+
#: cerber-scanner.php:3416
|
155 |
msgid "Verifying the integrity of the themes"
|
156 |
msgstr "Проверка целостности тем"
|
157 |
|
158 |
+
#: cerber-scanner.php:3415
|
159 |
msgid "Verifying the integrity of the plugins"
|
160 |
msgstr "Проверка целостности плагинов"
|
161 |
|
162 |
+
#: cerber-scanner.php:3414
|
163 |
msgid "Verifying the integrity of WordPress"
|
164 |
msgstr "Проверка целостности WordPress"
|
165 |
|
166 |
+
#: cerber-scanner.php:3413
|
167 |
msgid "Checking for new and modified files"
|
168 |
msgstr "Поиск новых и измененных файлов"
|
169 |
|
170 |
+
#: cerber-scanner.php:3412
|
171 |
msgid "Parsing the list of files"
|
172 |
msgstr "Обработка списка файлов"
|
173 |
|
174 |
+
#: cerber-scanner.php:3408
|
175 |
msgid "Scanning folders for files"
|
176 |
msgstr "Поиск файлов в каталогах"
|
177 |
|
178 |
+
#: cerber-scanner.php:2364
|
179 |
msgid "Resolve issue"
|
180 |
msgstr "Решить проблему"
|
181 |
|
182 |
+
#: cerber-scanner.php:2363
|
183 |
msgid "Please upload a reference ZIP archive"
|
184 |
msgstr "Пожалуйста, загрузите установочный zip-архив"
|
185 |
|
186 |
+
#: cerber-scanner.php:2362
|
187 |
msgid "To solve this issue you have to reinstall %s or update it to the latest version."
|
188 |
msgstr "Для решения этой проблемы нужно переустановить %s или обновить до последней версии."
|
189 |
|
190 |
+
#: cerber-scanner.php:2359
|
191 |
msgid "Suspicious code signatures found"
|
192 |
msgstr "Найдены подозрительные отпечатки кода"
|
193 |
|
194 |
+
#: cerber-scanner.php:2358
|
195 |
msgid "Suspicious code instruction found"
|
196 |
msgstr "Найдены подозрительные инструкции в коде"
|
197 |
|
198 |
+
#: cerber-scanner.php:1178
|
199 |
msgid "Every 6 hours"
|
200 |
msgstr "Каждые 6 часов"
|
201 |
|
202 |
+
#: cerber-scanner.php:1175 dashboard.php:1296 dashboard.php:1298
|
203 |
msgid "Disabled"
|
204 |
msgstr "Отключено"
|
205 |
|
206 |
+
#: cerber-scanner.php:1176
|
207 |
msgid "Every hour"
|
208 |
msgstr "Каждый час"
|
209 |
|
210 |
+
#: cerber-scanner.php:1177
|
211 |
msgid "Every 3 hours"
|
212 |
msgstr "Каждые 3 часа"
|
213 |
|
214 |
+
#: cerber-scanner.php:1156
|
215 |
msgid "New file"
|
216 |
msgstr "Новый файл"
|
217 |
|
218 |
+
#: cerber-scanner.php:1153
|
219 |
msgid "Unwanted file extension"
|
220 |
msgstr "Файл с нежелательным расширением"
|
221 |
|
222 |
+
#: cerber-scanner.php:1152 cerber-scanner.php:2360
|
223 |
msgid "Suspicious directives found"
|
224 |
msgstr "Найдены подозрительные директивы"
|
225 |
|
226 |
+
#: cerber-scanner.php:1143
|
227 |
msgid "Checksum mismatch"
|
228 |
msgstr "Несовпадение контрольной суммы"
|
229 |
|
230 |
+
#: cerber-scanner.php:86
|
231 |
+
msgid "Scheduling"
|
232 |
+
msgstr "Планирование"
|
233 |
+
|
234 |
+
#: settings.php:440
|
235 |
+
msgid "Launch Full Scan"
|
236 |
+
msgstr "Запуск полной проверки"
|
237 |
+
|
238 |
+
#: settings.php:433
|
239 |
+
msgid "Launch Quick Scan"
|
240 |
+
msgstr "Запуск быстрой проверки"
|
241 |
+
|
242 |
+
#: cerber-scanner.php:4570
|
243 |
+
msgid "Quick Scan Report"
|
244 |
+
msgstr "Отчет быстрой проверки"
|
245 |
+
|
246 |
+
#: settings.php:390
|
247 |
+
msgid "Specify directories to exclude from scanning. Use absolute paths. One item per line."
|
248 |
+
msgstr "Укажите каталоги для исключения проверки. Используйте абсолютный путь, 1 элемент на строку."
|
249 |
+
|
250 |
+
#: cerber-scanner.php:4583
|
251 |
+
msgid "Files scanned"
|
252 |
+
msgstr "Проверено файлов"
|
253 |
+
|
254 |
+
#: cerber-scanner.php:4570
|
255 |
+
msgid "Full Scan Report"
|
256 |
+
msgstr "Отчет полной проверки"
|
257 |
+
|
258 |
+
#: cerber-scanner.php:4085
|
259 |
+
msgid "File access error. Possibly scan results are outdated. Please run Quick or Full Scan."
|
260 |
+
msgstr "Ошибка доступа к файлу. Возможно результаты проверки устарели. Запустите быструю или полную проверку."
|
261 |
+
|
262 |
+
#: cerber-scanner.php:3418
|
263 |
+
msgid "Finalizing the scan"
|
264 |
+
msgstr "Завершение проверки"
|
265 |
+
|
266 |
+
#: cerber-scanner.php:750 dashboard.php:1299
|
267 |
msgid "Full Scan"
|
268 |
+
msgstr "Полная проверка"
|
269 |
|
270 |
+
#: cerber-scanner.php:750 dashboard.php:1297
|
271 |
msgid "Quick Scan"
|
272 |
+
msgstr "Быстрая проверка"
|
273 |
|
274 |
+
#: cerber-scanner.php:146
|
275 |
msgid "It seems this website has never been scanned. To start scanning click the button below."
|
276 |
+
msgstr "Похоже этот сайт еще не проверялся, нажмите кнопку ниже для начала проверки."
|
277 |
|
278 |
+
#: cerber-scanner.php:137
|
279 |
msgid "Previous scan started %s has not been completed. Continue scanning?"
|
280 |
+
msgstr "Предыдущая попытка проверки, начатая %s, не завершена. Продолжить проверку?"
|
281 |
|
282 |
+
#: cerber-scanner.php:133
|
283 |
msgid "Currently a scheduled scan in progress. Please wait until it is finished."
|
284 |
+
msgstr "Сейчас выполняется запланированная проверка. Дождитесь пока она завершится."
|
|
|
|
|
|
|
|
|
285 |
|
286 |
+
#: cerber-load.php:3488
|
287 |
msgid "Scanner Report"
|
288 |
+
msgstr "Отчет проверки"
|
289 |
|
290 |
+
#: cerber-scanner.php:79 dashboard.php:64
|
291 |
msgid "Site Integrity"
|
292 |
msgstr "Целостность сайта"
|
293 |
|
294 |
+
#: cerber-load.php:4234 cerber-scanner.php:84
|
295 |
msgid "Security Scanner"
|
296 |
msgstr "Сканер безопасности"
|
297 |
|
298 |
+
#: cerber-scanner.php:149
|
299 |
msgid "Start Quick Scan"
|
300 |
msgstr "Начать быструю проверку"
|
301 |
|
302 |
+
#: cerber-scanner.php:150
|
303 |
msgid "Start Full Scan"
|
304 |
msgstr "Начать полную проверку"
|
305 |
|
306 |
+
#: cerber-scanner.php:151
|
307 |
msgid "Stop Scanning"
|
308 |
msgstr "Остановить проверку"
|
309 |
|
310 |
+
#: cerber-scanner.php:181
|
311 |
msgid "Delete"
|
312 |
msgstr "Удалить"
|
313 |
|
314 |
+
#: cerber-scanner.php:1125
|
315 |
msgid "Verified"
|
316 |
msgstr "Проверено"
|
317 |
|
318 |
+
#: cerber-scanner.php:1132
|
319 |
msgid "Integrity data not found"
|
320 |
msgstr "Данные о целостности не найдены"
|
321 |
|
322 |
+
#: cerber-scanner.php:1133
|
323 |
msgid "Unable to check the integrity of the plugin due to a network error"
|
324 |
msgstr "Невозможно проверить целостность плагина из-за ошибки сети"
|
325 |
|
326 |
+
#: cerber-scanner.php:1134
|
327 |
msgid "Unable to check the integrity of WordPress files due to a network error"
|
328 |
msgstr "Невозможно проверить целостность WordPress из-за ошибки сети"
|
329 |
|
330 |
+
#: cerber-scanner.php:1135
|
331 |
msgid "Unable to check the integrity of the theme due to a network error"
|
332 |
msgstr "Невозможно проверить целостность темы из-за ошибки сети"
|
333 |
|
334 |
+
#: cerber-scanner.php:1138
|
335 |
msgid "Local file doesn't exist"
|
336 |
msgstr "Локальный файл отсутствует"
|
337 |
|
338 |
+
#: cerber-scanner.php:1140
|
339 |
msgid "Unable to process file"
|
340 |
msgstr "Невозможно обработать файл"
|
341 |
|
342 |
+
#: cerber-scanner.php:1141 cerber-scanner.php:4424
|
343 |
msgid "Unable to open file"
|
344 |
msgstr "Невозможно открыть файл"
|
345 |
|
346 |
+
#: cerber-scanner.php:1155
|
347 |
msgid "Content has been modified"
|
348 |
msgstr "Содержимое изменено"
|
349 |
|
350 |
+
#: cerber-scanner.php:1146
|
351 |
msgid "Suspicious code found"
|
352 |
msgstr "Найден подозрительный код"
|
353 |
|
354 |
+
#: cerber-scanner.php:1147
|
355 |
msgid "Potentially malicious code found"
|
356 |
msgstr "Найден возможно вредоносный код"
|
357 |
|
358 |
+
#: cerber-scanner.php:1148
|
359 |
msgid "Unattended suspicious file"
|
360 |
msgstr "Нештатный подозрительный файл"
|
361 |
|
362 |
+
#: cerber-scanner.php:1149
|
363 |
msgid "Executable code found"
|
364 |
msgstr "Обнаружен исполняемый код"
|
365 |
|
366 |
+
#: cerber-scanner.php:3487
|
367 |
msgid "Files to scan"
|
368 |
msgstr "Файлы для проверки"
|
369 |
|
370 |
+
#: cerber-scanner.php:3495
|
371 |
msgid "Critical issues"
|
372 |
msgstr "Критические проблемы"
|
373 |
|
374 |
+
#: cerber-scanner.php:3499 cerber-scanner.php:4614
|
375 |
msgid "Issues total"
|
376 |
msgstr "Всего проблем"
|
377 |
|
378 |
+
#: cerber-scanner.php:3860
|
379 |
msgid "The directory is not writable"
|
380 |
msgstr "Каталог незаписываем"
|
381 |
|
382 |
+
#: cerber-scanner.php:3878
|
383 |
msgid "Unable to create WP CERBER directory"
|
384 |
msgstr "Невозможно создать каталог WP CERBER"
|
385 |
|
391 |
msgid "Disable dashboard redirection"
|
392 |
msgstr "Отключить перенаправление с консоли"
|
393 |
|
394 |
+
#: settings.php:367
|
395 |
msgid "Scanner settings"
|
396 |
msgstr "Настройки сканера"
|
397 |
|
398 |
+
#: settings.php:374
|
399 |
msgid "Specify custom PHP code signatures. One item per line. To specify a REGEX pattern, enclose a whole line in two braces."
|
400 |
msgstr "Укажите пользовательские подписи PHP кода. Один элемент на строку. Для использования регулярных выражений, включите строку в фигурные скобки { }."
|
401 |
|
402 |
+
#: settings.php:376
|
403 |
msgid "Unwanted file extensions"
|
404 |
msgstr "Нежелательные расширения файлов"
|
405 |
|
406 |
+
#: settings.php:382
|
407 |
msgid "Specify file extensions to search for. Full scan only. Use comma to separate items."
|
408 |
msgstr "Укажите расширения файлов для поиска. Используется только при полной проверке. Испольуйте запятую для разделения элементов."
|
409 |
|
410 |
+
#: settings.php:384
|
411 |
msgid "Directories to exclude"
|
412 |
msgstr "Каталоги для исключения"
|
413 |
|
414 |
+
#: settings.php:405
|
415 |
msgid "Scan temporary directory"
|
416 |
msgstr "Проверять каталог временных файлов"
|
417 |
|
418 |
+
#: settings.php:412
|
419 |
msgid "Scan session directory"
|
420 |
msgstr "Проверять каталог файлов сессий"
|
421 |
|
422 |
+
#: settings.php:418
|
423 |
msgid "Delete quarantined files after"
|
424 |
msgstr "Удалять файлы карантина через"
|
425 |
|
427 |
msgid "WP Cerber Security, Antispam & Malware Scan"
|
428 |
msgstr "WP Cerber Security, Antispam & Malware Scan"
|
429 |
|
430 |
+
#: cerber-scanner.php:152
|
431 |
msgid "Continue Scanning"
|
432 |
msgstr "Продолжить проверку"
|
433 |
|
434 |
+
#: cerber-scanner.php:2197
|
435 |
msgid "Custom signature found"
|
436 |
msgstr "Найден пользовательский отпечаток"
|
437 |
|
438 |
+
#: settings.php:368
|
439 |
msgid "Custom signatures"
|
440 |
msgstr "Пользовательские отпечатки"
|
441 |
|
442 |
+
#: settings.php:511
|
443 |
msgid "If you forget your Custom login URL, you will be unable to log in."
|
444 |
msgstr "Если вы забудете ваш пользовательский URL входа, то вы не сможете войти."
|
445 |
|
446 |
+
#: settings.php:511
|
447 |
msgid "Be careful about enabling these options."
|
448 |
msgstr "Будьте осторожны при включении этих настроек."
|
449 |
|
450 |
+
#: common.php:873
|
451 |
msgid "Denied"
|
452 |
msgstr "Запрещено"
|
453 |
|
459 |
msgid "To specify a REGEX pattern, enclose a whole line in two braces."
|
460 |
msgstr "Для использования регулярных выражений заключите строку целиком в фигурные скобки { }."
|
461 |
|
462 |
+
#: common.php:849
|
463 |
msgid "Attempt to upload executable file denied"
|
464 |
msgstr "Предотвращена загрузка исполняемого файла"
|
465 |
|
466 |
+
#: common.php:850
|
467 |
msgid "File upload denied"
|
468 |
msgstr "Предотвращена загрузка файла"
|
469 |
|
470 |
+
#: common.php:1815
|
471 |
msgid "File not found"
|
472 |
msgstr "Файл не найден"
|
473 |
|
474 |
+
#: common.php:1818
|
475 |
msgid "Unable to copy the file"
|
476 |
msgstr "Невозможно скопировать файл"
|
477 |
|
478 |
+
#: common.php:1824
|
479 |
msgid "Unable to delete the file"
|
480 |
msgstr "Невозможно удалить файл"
|
481 |
|
495 |
msgid "Standard mode"
|
496 |
msgstr "Стандартный режим"
|
497 |
|
498 |
+
#: settings.php:971
|
499 |
msgid "Plugin initialization mode has not been changed"
|
500 |
msgstr "Режим инициализации плагина не был изменен"
|
501 |
|
502 |
+
#: common.php:1812
|
503 |
msgid "Destination folder access denied"
|
504 |
msgstr "Доступ к каталогу назначения закрыт"
|
505 |
|
506 |
+
#: common.php:1807
|
507 |
msgid "Unable to create the directory"
|
508 |
msgstr "Невозможно создать каталог"
|
509 |
|
515 |
msgid "Block unauthorized access to load-scripts.php and load-styles.php"
|
516 |
msgstr "Блокировка неавторизованного доступа к load-scripts.php и load-styles.php"
|
517 |
|
518 |
+
#: cerber-load.php:3263
|
519 |
msgid "We're sorry, you are not allowed to proceed"
|
520 |
msgstr "Извините, вам не разрешено продолжить"
|
521 |
|
527 |
msgid "Request whitelist"
|
528 |
msgstr "Белый список запросов"
|
529 |
|
530 |
+
#: dashboard.php:3426
|
531 |
msgid "Any"
|
532 |
msgstr "Любой"
|
533 |
|
534 |
+
#: settings.php:351
|
535 |
msgid "milliseconds"
|
536 |
msgstr "миллисекунд"
|
537 |
|
538 |
+
#: settings.php:346
|
539 |
msgid "Page generation time threshold"
|
540 |
msgstr "Порог времени генерации страницы"
|
541 |
|
542 |
+
#: settings.php:339
|
543 |
msgid "Save request cookies"
|
544 |
msgstr "Сохранять куки запроса"
|
545 |
|
546 |
+
#: settings.php:333
|
547 |
msgid "Save $_SERVER"
|
548 |
msgstr "Сохранять $_SERVER"
|
549 |
|
550 |
+
#: settings.php:327
|
551 |
msgid "Save request headers"
|
552 |
msgstr "Сохранять заголовки запроса"
|
553 |
|
591 |
msgid "Inspection"
|
592 |
msgstr "Инспектирование"
|
593 |
|
594 |
+
#: dashboard.php:3468
|
595 |
msgid "Advanced search"
|
596 |
msgstr "Улучшенный поиск"
|
597 |
|
598 |
+
#: dashboard.php:3172
|
599 |
msgid "Refresh"
|
600 |
msgstr "Обновить"
|
601 |
|
602 |
+
#: dashboard.php:3156
|
603 |
msgid "Longer than"
|
604 |
msgstr "Дольше чем"
|
605 |
|
606 |
+
#: dashboard.php:3151
|
607 |
msgid "XML-RPC"
|
608 |
msgstr "XML-RPC"
|
609 |
|
610 |
+
#: dashboard.php:3150
|
611 |
msgid "REST API"
|
612 |
msgstr "REST API"
|
613 |
|
614 |
+
#: dashboard.php:3149
|
615 |
msgid "Page Not Found"
|
616 |
msgstr "Страница не найдена"
|
617 |
|
618 |
+
#: dashboard.php:3148
|
619 |
msgid "Form submissions"
|
620 |
msgstr "Отправки форм"
|
621 |
|
622 |
+
#: dashboard.php:3147
|
623 |
msgid "Not logged in visitors"
|
624 |
msgstr "Неавторизованные посетители"
|
625 |
|
626 |
+
#: dashboard.php:3142
|
627 |
msgid "All requests"
|
628 |
msgstr "Все запросы"
|
629 |
|
630 |
+
#: dashboard.php:3134
|
631 |
msgid "No requests have been logged."
|
632 |
msgstr "В журнале нет данных о запросах."
|
633 |
|
634 |
+
#: dashboard.php:3117
|
635 |
msgid "User Agent"
|
636 |
msgstr "User Agent"
|
637 |
|
638 |
+
#: dashboard.php:3116
|
639 |
msgid "Host Info"
|
640 |
msgstr "Информация о хосте"
|
641 |
|
642 |
+
#: dashboard.php:3114
|
643 |
msgid "Request"
|
644 |
msgstr "Запрос"
|
645 |
|
646 |
+
#: dashboard.php:2788
|
647 |
msgid "Live traffic"
|
648 |
msgstr "Живой трафик"
|
649 |
|
650 |
+
#: dashboard.php:1311
|
651 |
msgid "Traffic"
|
652 |
msgstr "Трафик"
|
653 |
|
654 |
+
#: dashboard.php:1283
|
655 |
msgid "no connection"
|
656 |
msgstr "нет подключения"
|
657 |
|
658 |
+
#: dashboard.php:1278
|
659 |
msgid "enabled"
|
660 |
msgstr "включено"
|
661 |
|
662 |
+
#: dashboard.php:56 dashboard.php:1279 dashboard.php:2783
|
663 |
msgid "Traffic Inspector"
|
664 |
msgstr "Инспектор трафика"
|
665 |
|
667 |
msgid "Cerber Traffic Inspector"
|
668 |
msgstr "Цербер-инспектор трафика"
|
669 |
|
670 |
+
#: common.php:1181
|
671 |
msgid "Not specified"
|
672 |
msgstr "Не указано"
|
673 |
|
674 |
+
#: dashboard.php:1044
|
675 |
msgid "Last seen"
|
676 |
msgstr "Последний раз"
|
677 |
|
678 |
+
#: common.php:115
|
679 |
msgid "Check for requests"
|
680 |
msgstr "Проверить запросы"
|
681 |
|
682 |
+
#: common.php:848 common.php:908
|
683 |
msgid "Probing for vulnerable PHP code"
|
684 |
msgstr "Проверка на уязвимый PHP-код"
|
685 |
|
695 |
msgid "You cannot add your IP address or network"
|
696 |
msgstr "Вы не можете добавить ваш IP-адрес или сеть"
|
697 |
|
698 |
+
#: cerber-news.php:190
|
699 |
msgid "Cool!"
|
700 |
msgstr "Отлично!"
|
701 |
|
707 |
msgid "Unable to send email to"
|
708 |
msgstr "Невозможно отправить email на"
|
709 |
|
710 |
+
#: dashboard.php:2514
|
711 |
msgid "Not permitted for one country"
|
712 |
msgid_plural "Not permitted for %d countries"
|
713 |
msgstr[0] "Не разрешено в одной стране"
|
714 |
msgstr[1] "Не разрешено в %d странах"
|
715 |
msgstr[2] "Не разрешено в %d странах"
|
716 |
|
717 |
+
#: dashboard.php:2665
|
718 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
719 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
720 |
msgstr "Выбранным странам разрешено %s, остальным странам - нет"
|
721 |
|
722 |
+
#: dashboard.php:2668
|
723 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
724 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
725 |
msgstr "Выбранным странам не разрешено %s, остальным странам разрешено"
|
736 |
msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
|
737 |
msgstr "Введите часть строки или пути запроса для исключения запроса из проверки движком. Один элемент на строку."
|
738 |
|
739 |
+
#: settings.php:263 settings.php:494
|
740 |
msgid "if empty, email from notification settings will be used"
|
741 |
msgstr "если не задано, будет использован адрес из настроек уведомлений"
|
742 |
|
744 |
msgid "Enable reporting"
|
745 |
msgstr "Включить отчеты"
|
746 |
|
747 |
+
#: cerber-load.php:3542
|
748 |
msgid "Your last sign-in was %s from %s"
|
749 |
msgstr "Ваш последний вход был %s с %s"
|
750 |
|
751 |
+
#: cerber-load.php:3612
|
752 |
msgid "Weekly Report"
|
753 |
msgstr "Недельный отчет"
|
754 |
|
755 |
+
#: cerber-load.php:3638
|
756 |
msgid "Attempts to log in with non-existent username"
|
757 |
msgstr "Попытка войти с несуществующим именем пользователя"
|
758 |
|
760 |
msgid "Use 404 template from the active theme"
|
761 |
msgstr "Использовать шаблон 404 активной темы"
|
762 |
|
763 |
+
#: cerber-load.php:811
|
764 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
765 |
msgstr ">>> Переводите WP Cerber? Получите PRO лицензию бесплатно, оставьте контакты здесь: https://wpcerber.com/contact/"
|
766 |
|
767 |
+
#: cerber-load.php:3478
|
768 |
msgid "Weekly report"
|
769 |
msgstr "Недельный отчет"
|
770 |
|
771 |
+
#: cerber-load.php:3481 cerber-load.php:3491
|
772 |
msgid "To change reporting settings visit"
|
773 |
msgstr "Для смены настроек отчетности зайдите"
|
774 |
|
775 |
+
#: cerber-load.php:3514
|
776 |
msgid "Your login page:"
|
777 |
msgstr "Ваша страница входа:"
|
778 |
|
779 |
+
#: cerber-load.php:3518
|
780 |
msgid "Your license is valid until"
|
781 |
msgstr "Ваша лицензия действительна до"
|
782 |
|
783 |
+
#: cerber-load.php:3624
|
784 |
msgid "Activity details"
|
785 |
msgstr "Подробно об активности"
|
786 |
|
787 |
+
#: dashboard.php:1989
|
788 |
msgid "Main settings"
|
789 |
msgstr "Основные настройки"
|
790 |
|
792 |
msgid "Weekly reports"
|
793 |
msgstr "Недельные отчеты"
|
794 |
|
795 |
+
#: settings.php:928
|
796 |
msgid "Sunday"
|
797 |
msgstr "Воскресенье"
|
798 |
|
799 |
+
#: settings.php:929
|
800 |
msgid "Monday"
|
801 |
msgstr "Понедельник"
|
802 |
|
803 |
+
#: settings.php:930
|
804 |
msgid "Tuesday"
|
805 |
msgstr "Вторник"
|
806 |
|
807 |
+
#: settings.php:931
|
808 |
msgid "Wednesday"
|
809 |
msgstr "Среда"
|
810 |
|
811 |
+
#: settings.php:932
|
812 |
msgid "Thursday"
|
813 |
msgstr "Четверг"
|
814 |
|
815 |
+
#: settings.php:933
|
816 |
msgid "Friday"
|
817 |
msgstr "Пятница"
|
818 |
|
819 |
+
#: settings.php:934
|
820 |
msgid "Saturday"
|
821 |
msgstr "Суббота"
|
822 |
|
823 |
#. translators: preposition of time
|
824 |
+
#: settings.php:944
|
825 |
msgctxt "preposition of time"
|
826 |
msgid "at"
|
827 |
msgstr "в"
|
828 |
|
829 |
+
#: settings.php:960
|
830 |
msgid "Click to send now"
|
831 |
msgstr "Нажмите для отправки сейчас"
|
832 |
|
833 |
+
#: common.php:871
|
834 |
msgid "Limit reached"
|
835 |
msgstr "Предел достигнут"
|
836 |
|
837 |
+
#: common.php:872
|
838 |
msgid "Multiple suspicious activities"
|
839 |
msgstr "Множественная подозрительная активность"
|
840 |
|
841 |
+
#: common.php:907
|
842 |
msgid "Multiple suspicious activities were detected"
|
843 |
msgstr "Обнаружена множественная подозрительная активность"
|
844 |
|
845 |
+
#: dashboard.php:1138
|
846 |
msgid "Failed login attempts"
|
847 |
msgstr "Неудачные попытки входа"
|
848 |
|
849 |
+
#: dashboard.php:1054 dashboard.php:1139
|
850 |
msgid "Registered"
|
851 |
msgstr "Зарегистрирован"
|
852 |
|
853 |
+
#: dashboard.php:1209
|
854 |
msgid "You"
|
855 |
msgstr "Вы"
|
856 |
|
857 |
+
#: dashboard.php:1615
|
858 |
msgid "in the last 24 hours"
|
859 |
msgstr "В последние 24 часа"
|
860 |
|
861 |
+
#: cerber-load.php:3463 cerber-load.php:4225 dashboard.php:1689
|
862 |
msgid "Getting Started Guide"
|
863 |
msgstr "Руководство с чего начать"
|
864 |
|
865 |
+
#: dashboard.php:2578
|
866 |
msgid "Start typing here to find a country"
|
867 |
msgstr "Начните печатать тут чтобы найти страну"
|
868 |
|
869 |
+
#: dashboard.php:2661
|
870 |
msgid "Click on a country name to add it to the list of selected countries"
|
871 |
msgstr "Нажмите на страну чтобы добавить ее в список выбранных"
|
872 |
|
873 |
+
#: dashboard.php:2685
|
874 |
msgid "Submit forms"
|
875 |
msgstr "отправка форм"
|
876 |
|
877 |
+
#: dashboard.php:2686
|
878 |
msgid "Post comments"
|
879 |
msgstr "отправка комментариев"
|
880 |
|
881 |
+
#: dashboard.php:2687
|
882 |
msgid "Log in to the website"
|
883 |
msgstr "авторизация на сайте"
|
884 |
|
885 |
+
#: dashboard.php:2688
|
886 |
msgid "Register on the website"
|
887 |
msgstr "регистрация на сайте"
|
888 |
|
889 |
+
#: dashboard.php:2689
|
890 |
msgid "Use XML-RPC"
|
891 |
msgstr "использование XML-RPC"
|
892 |
|
893 |
+
#: dashboard.php:2690
|
894 |
msgid "Use REST API"
|
895 |
msgstr "использование REST API"
|
896 |
|
914 |
msgid "Mark it as spam"
|
915 |
msgstr "Пометить как спам"
|
916 |
|
917 |
+
#: settings.php:690 settings.php:812
|
918 |
msgid "%s allowed registrations in %s minutes from one IP"
|
919 |
msgstr "%s разрешенных регистраций в %s минут с одного IP"
|
920 |
|
921 |
+
#: settings.php:993 settings.php:994
|
922 |
msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
|
923 |
msgstr "Если вы используете плагин кеширования, вам нужно добавить новый URL входа в список исключений кеширования"
|
924 |
|
925 |
+
#: common.php:823
|
926 |
msgid "Form submission denied"
|
927 |
msgstr "Отправка формы заблокирована"
|
928 |
|
929 |
+
#: common.php:824
|
930 |
msgid "Comment denied"
|
931 |
msgstr "Комментарий заблокирован"
|
932 |
|
933 |
+
#: common.php:852
|
934 |
msgid "Request to REST API denied"
|
935 |
msgstr "Запрос к REST API заблокирован"
|
936 |
|
937 |
+
#: common.php:853
|
938 |
msgid "XML-RPC request denied"
|
939 |
msgstr "Запрос XML-RPC заблокирован"
|
940 |
|
941 |
+
#: common.php:864
|
942 |
msgid "Bot detected"
|
943 |
msgstr "Обнаружен бот"
|
944 |
|
945 |
+
#: common.php:865
|
946 |
msgid "Citadel mode is active"
|
947 |
msgstr "Режим цитадель активен"
|
948 |
|
949 |
+
#: common.php:869
|
950 |
msgid "Malicious activity detected"
|
951 |
msgstr "Обнаружена вредоносная активность"
|
952 |
|
953 |
+
#: common.php:870
|
954 |
msgid "Blocked by country rule"
|
955 |
msgstr "Заблокирован по ограничению для страны"
|
956 |
|
957 |
+
#: dashboard.php:135 dashboard.php:704
|
958 |
msgid "Country"
|
959 |
msgstr "Страна"
|
960 |
|
961 |
+
#: dashboard.php:737
|
962 |
msgid "All events"
|
963 |
msgstr "Все события"
|
964 |
|
966 |
msgid "Cerber Security Rules"
|
967 |
msgstr "Правила безопасности Цербер"
|
968 |
|
969 |
+
#: dashboard.php:60 dashboard.php:2443
|
970 |
msgid "Security Rules"
|
971 |
msgstr "Правила безопасности"
|
972 |
|
973 |
+
#: common.php:153
|
974 |
msgid "Spam form submissions denied"
|
975 |
msgstr "Заблокированы отправки форм спама"
|
976 |
|
977 |
+
#: dashboard.php:2448
|
978 |
msgid "Countries"
|
979 |
msgstr "Страны"
|
980 |
|
981 |
+
#: dashboard.php:2511
|
982 |
msgid "Permitted for one country"
|
983 |
msgid_plural "Permitted for %d countries"
|
984 |
msgstr[0] "Разрешается для одной страны"
|
985 |
msgstr[1] "Разрешается для %d стран"
|
986 |
msgstr[2] "Разрешается для %d стран"
|
987 |
|
988 |
+
#: dashboard.php:2522
|
989 |
msgid "No rule"
|
990 |
msgstr "Нет правила"
|
991 |
|
992 |
+
#: dashboard.php:2734
|
993 |
msgid "Security rules have been updated"
|
994 |
msgstr "Правила безопасности обновлены"
|
995 |
|
1013 |
msgid "License"
|
1014 |
msgstr "Лицензия"
|
1015 |
|
1016 |
+
#: common.php:822
|
1017 |
msgid "Spam form submission denied"
|
1018 |
msgstr "Отправка формы со спамом заблокирована"
|
1019 |
|
1041 |
msgid "Disable bot detection engine for logged in users"
|
1042 |
msgstr "Отключить определение ботов для авторизованных пользователей"
|
1043 |
|
1044 |
+
#: dashboard.php:3146 settings.php:171
|
1045 |
msgid "Logged in users"
|
1046 |
msgstr "Авторизованные пользователи"
|
1047 |
|
1057 |
msgid "Antispam and bot detection settings"
|
1058 |
msgstr "Антиспам и настройки определения ботов"
|
1059 |
|
1060 |
+
#: common.php:906
|
1061 |
msgid "Bot activity is detected"
|
1062 |
msgstr "Обнаружена активность ботов"
|
1063 |
|
1065 |
msgid "Cerber antispam settings"
|
1066 |
msgstr "Настройка Цербер антиспам"
|
1067 |
|
1068 |
+
#: cerber-load.php:4236 dashboard.php:67 dashboard.php:1312 settings.php:200
|
1069 |
msgid "Antispam"
|
1070 |
msgstr "Аниспам"
|
1071 |
|
1093 |
msgid "Move spam comments to trash after"
|
1094 |
msgstr "Удалить спам комментарии в корзину после"
|
1095 |
|
1096 |
+
#: cerber-load.php:1434
|
1097 |
msgid "Sorry, human verification failed."
|
1098 |
msgstr "Извините, проверка на человека не удалась."
|
1099 |
|
1101 |
msgid "Cerber antispam engine"
|
1102 |
msgstr "Движок Цербер-антиспам"
|
1103 |
|
1104 |
+
#: common.php:821
|
1105 |
msgid "Spam comment denied"
|
1106 |
msgstr "Спам коммнтарий отклонен"
|
1107 |
|
1108 |
+
#: common.php:846
|
1109 |
msgid "Attempt to log in denied"
|
1110 |
msgstr "Попытка входа отклонена"
|
1111 |
|
1112 |
+
#: common.php:847
|
1113 |
msgid "Attempt to register denied"
|
1114 |
msgstr "Попытка регистрации отклонена"
|
1115 |
|
1116 |
+
#: common.php:149
|
1117 |
msgid "Malicious activities mitigated"
|
1118 |
msgstr "Вредоносная активность снижена"
|
1119 |
|
1120 |
+
#: common.php:154
|
1121 |
msgid "Malicious IP addresses detected"
|
1122 |
msgstr "Найдены вредоносные IP адреса"
|
1123 |
|
1124 |
+
#: common.php:155
|
1125 |
msgid "Lockouts occurred"
|
1126 |
msgstr "Блокировок произошло"
|
1127 |
|
1128 |
+
#: dashboard.php:1630
|
1129 |
msgid "All suspicious activity"
|
1130 |
msgstr "Вся подозрительная активность"
|
1131 |
|
1132 |
+
#: cerber-load.php:1167 cerber-load.php:1173 cerber-load.php:1189
|
1133 |
+
#: cerber-load.php:1196
|
1134 |
msgid "You are not allowed to register."
|
1135 |
msgstr "Вам не разрешено зарегистрироваться."
|
1136 |
|
1137 |
+
#: dashboard.php:537 dashboard.php:706
|
1138 |
msgid "Event"
|
1139 |
msgstr "Событие"
|
1140 |
|
1141 |
+
#: common.php:152
|
1142 |
msgid "Spam comments denied"
|
1143 |
msgstr "Спам-комментарии отклонены"
|
1144 |
|
1145 |
+
#: common.php:905
|
1146 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1147 |
msgstr "Достигнут предел проверки reCAPTCHA"
|
1148 |
|
1149 |
+
#: common.php:836
|
1150 |
msgid "Password reset requested"
|
1151 |
msgstr "Запрошен сброс пароля"
|
1152 |
|
1162 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1163 |
msgstr "Блокировать IP адрес на %s минут после %s неудачных попыток в течении %s минут"
|
1164 |
|
1165 |
+
#: settings.php:515
|
1166 |
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."
|
1167 |
msgstr "В режиме Цитадель никто не может войти кроме как с IP в белом списке. Активные сессии пользователей не будут затронуты."
|
1168 |
|
1170 |
msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
|
1171 |
msgstr "(не включайте, если у вас нет или вы не вводили ключ сайта и секретный ключ для невидимой версии)"
|
1172 |
|
1173 |
+
#: common.php:972
|
1174 |
msgid "%s ago"
|
1175 |
msgstr "%s назад"
|
1176 |
|
1210 |
msgid "Email notifications"
|
1211 |
msgstr "Уведомления по эл.почте"
|
1212 |
|
1213 |
+
#: settings.php:216 settings.php:258 settings.php:322 settings.php:489
|
1214 |
msgid "Use comma to specify multiple values"
|
1215 |
msgstr "Используйте запятую для разделения множественных значений"
|
1216 |
|
1222 |
msgid "No devices found"
|
1223 |
msgstr "Устройства не найдены"
|
1224 |
|
1225 |
+
#: cerber-load.php:4002
|
1226 |
msgid "To unsubscribe click here"
|
1227 |
msgstr "Для отмены подписки нажмите здесь"
|
1228 |
|
1229 |
+
#: cerber-load.php:3981
|
1230 |
msgid "Search string"
|
1231 |
msgstr "Строка поиска"
|
1232 |
|
1233 |
+
#: cerber-load.php:3973
|
1234 |
msgid "User"
|
1235 |
msgstr "Пользователь"
|
1236 |
|
1237 |
+
#: cerber-load.php:3472 cerber-load.php:3473
|
1238 |
msgid "A new activity has been recorded"
|
1239 |
msgstr "Отмечена новая активность"
|
1240 |
|
1241 |
+
#: cerber-tools.php:273 dashboard.php:1899
|
1242 |
msgid "Unsubscribe"
|
1243 |
msgstr "Отменить подписку"
|
1244 |
|
1246 |
msgid "Cerber tools"
|
1247 |
msgstr "Инструменты Cerber"
|
1248 |
|
1249 |
+
#: dashboard.php:1898
|
1250 |
msgid "Subscribe"
|
1251 |
msgstr "Подписаться"
|
1252 |
|
1253 |
+
#: dashboard.php:748
|
1254 |
msgid "Filter"
|
1255 |
msgstr "Фильтр"
|
1256 |
|
1257 |
+
#: dashboard.php:748
|
1258 |
msgid "Search for IP or username"
|
1259 |
msgstr "Поиск IP или имени пользователя"
|
1260 |
|
1261 |
+
#: dashboard.php:726
|
1262 |
msgid "Export"
|
1263 |
msgstr "Экспорт"
|
1264 |
|
1265 |
+
#: dashboard.php:537
|
1266 |
msgid "User ID"
|
1267 |
msgstr "ID пользователя"
|
1268 |
|
1269 |
+
#: dashboard.php:537
|
1270 |
msgid "User login"
|
1271 |
msgstr "Имя пользователя"
|
1272 |
|
1273 |
+
#: dashboard.php:537
|
1274 |
msgid "IP address"
|
1275 |
msgstr "IP адрес"
|
1276 |
|
1278 |
msgid "if empty, the default format %s will be used"
|
1279 |
msgstr "Если пусто, будет использован формат по умолчанию %s"
|
1280 |
|
1281 |
+
#: dashboard.php:1930
|
1282 |
msgid "You've unsubscribed"
|
1283 |
msgstr "Подписка отменена"
|
1284 |
|
1285 |
+
#: dashboard.php:1927
|
1286 |
msgid "You've subscribed"
|
1287 |
msgstr "Вы подписались"
|
1288 |
|
1302 |
msgid "Gregory"
|
1303 |
msgstr "Gregory"
|
1304 |
|
1305 |
+
#: dashboard.php:54 dashboard.php:1309 dashboard.php:1988 settings.php:547
|
1306 |
msgid "Dashboard"
|
1307 |
msgstr "Консоль"
|
1308 |
|
1342 |
msgid "Cerber Lab connection"
|
1343 |
msgstr "Подключение Cerber Lab"
|
1344 |
|
1345 |
+
#: dashboard.php:1652
|
1346 |
msgid "Recently locked out IP addresses"
|
1347 |
msgstr "Недавно заблокированые IP адреса"
|
1348 |
|
1349 |
+
#: dashboard.php:1621 dashboard.php:1651
|
1350 |
msgid "View all"
|
1351 |
msgstr "Просмотреть все"
|
1352 |
|
1353 |
+
#: dashboard.php:52 settings.php:541
|
1354 |
msgid "WP Cerber Security"
|
1355 |
msgstr "WP Cerber Security"
|
1356 |
|
1357 |
+
#: dashboard.php:962
|
1358 |
msgid "Add network to the Black List"
|
1359 |
msgstr "Добавить сеть в черный список"
|
1360 |
|
1361 |
+
#: dashboard.php:948
|
1362 |
msgid "Network:"
|
1363 |
msgstr "Сеть:"
|
1364 |
|
1366 |
msgid "Incorrect IP address or IP range"
|
1367 |
msgstr "Неверный IP адрес или диапазон адресов"
|
1368 |
|
1369 |
+
#: common.php:840
|
1370 |
msgid "Request to the Google reCAPTCHA service failed"
|
1371 |
msgstr "Запрос к сервису Google reCAPTCHA не удался"
|
1372 |
|
1373 |
+
#: cerber-lab.php:757
|
1374 |
msgid "NO, maybe later"
|
1375 |
msgstr "НЕТ, возможно позже"
|
1376 |
|
1377 |
+
#: cerber-lab.php:756
|
1378 |
msgid "OK, nail them all"
|
1379 |
msgstr "ОК, прибьем их всех"
|
1380 |
|
1381 |
+
#: cerber-lab.php:755
|
1382 |
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."
|
1383 |
msgstr "Разрешить WP Cerber посылать заблокированные IP адреса в Cerber Lab. Это помогает команде плагина разрабатывать новые алгоритмы для WP Cerber, которые будут защищать WordPress против новых угроз и ботнетов появляюшихся каждый день. Вы всегда можете отключить отсылку в настройках плагина, в любой момент."
|
1384 |
|
1385 |
+
#: cerber-lab.php:754
|
1386 |
msgid "Want to make WP Cerber even more powerful?"
|
1387 |
msgstr "Хотите сделать WP Cerber еще мощнее ?"
|
1388 |
|
1398 |
msgid "Remove"
|
1399 |
msgstr "Удалить"
|
1400 |
|
1401 |
+
#: cerber-load.php:3969 dashboard.php:133 dashboard.php:702 dashboard.php:3115
|
1402 |
msgid "IP"
|
1403 |
msgstr "IP"
|
1404 |
|
1405 |
+
#: dashboard.php:134 dashboard.php:703
|
1406 |
msgid "Hostname"
|
1407 |
msgstr "Имя узла"
|
1408 |
|
1410 |
msgid "Expires"
|
1411 |
msgstr "Истекает"
|
1412 |
|
1413 |
+
#: cerber-load.php:3431 dashboard.php:137
|
1414 |
msgid "Reason"
|
1415 |
msgstr "Причина"
|
1416 |
|
1426 |
msgid "No lockouts at the moment. The sky is clear."
|
1427 |
msgstr "Блокировок нет. Все в порядке."
|
1428 |
|
1429 |
+
#: cerber-load.php:4223 dashboard.php:171 dashboard.php:677 dashboard.php:904
|
1430 |
+
#: dashboard.php:1274 dashboard.php:2940 settings.php:518
|
1431 |
msgid "White IP Access List"
|
1432 |
msgstr "Белый список доступа по IP"
|
1433 |
|
1435 |
msgid "These IPs will never be locked out"
|
1436 |
msgstr "Эти адреса не будут заблокированы ни при каких условиях"
|
1437 |
|
1438 |
+
#: dashboard.php:173 dashboard.php:678 dashboard.php:907 dashboard.php:1275
|
1439 |
+
#: dashboard.php:2941
|
1440 |
msgid "Black IP Access List"
|
1441 |
msgstr "Черный список доступа по IP"
|
1442 |
|
1444 |
msgid "Your IP"
|
1445 |
msgstr "Ваш адрес IP"
|
1446 |
|
1447 |
+
#: dashboard.php:198 dashboard.php:917 dashboard.php:948 dashboard.php:1060
|
1448 |
+
msgid "Check for activities"
|
1449 |
msgstr "Проверить активность"
|
1450 |
|
1451 |
#: dashboard.php:205
|
1472 |
msgid "Lockout for %s was removed"
|
1473 |
msgstr "Удалена блокировка для %s"
|
1474 |
|
1475 |
+
#: common.php:866 dashboard.php:682 dashboard.php:910 dashboard.php:2945
|
1476 |
msgid "Locked out"
|
1477 |
msgstr "Заблокировано"
|
1478 |
|
1479 |
+
#: dashboard.php:537 dashboard.php:705 dashboard.php:3113
|
1480 |
msgid "Date"
|
1481 |
msgstr "Дата"
|
1482 |
|
1483 |
+
#: cerber-load.php:3960 dashboard.php:1310 dashboard.php:1636 settings.php:106
|
1484 |
+
#: settings.php:551
|
1485 |
msgid "Activity"
|
1486 |
msgstr "Активность"
|
1487 |
|
1488 |
+
#: dashboard.php:537 dashboard.php:707 dashboard.php:3118
|
1489 |
msgid "Local User"
|
1490 |
msgstr "Пользователь"
|
1491 |
|
1492 |
+
#: cerber-load.php:3977 dashboard.php:537 dashboard.php:708
|
1493 |
msgid "Username used"
|
1494 |
msgstr "Использован логин"
|
1495 |
|
1496 |
+
#: dashboard.php:730
|
1497 |
msgid "No activity has been logged."
|
1498 |
msgstr "Ни одного события не зафиксировано."
|
1499 |
|
1500 |
+
#: dashboard.php:967
|
1501 |
msgid "Add IP to the Black List"
|
1502 |
msgstr "Добавить IP в черный список"
|
1503 |
|
1504 |
+
#: common.php:814
|
1505 |
msgid "Login failed"
|
1506 |
msgstr "Ошибка авторизации"
|
1507 |
|
1508 |
+
#: common.php:817
|
1509 |
msgid "IP blocked"
|
1510 |
msgstr "IP заблокирован"
|
1511 |
|
1512 |
+
#: common.php:818
|
1513 |
msgid "Subnet blocked"
|
1514 |
msgstr "Подсеть заблокирована"
|
1515 |
|
1516 |
+
#: common.php:820
|
1517 |
msgid "Citadel activated!"
|
1518 |
msgstr "Режим Цитадель активирован!"
|
1519 |
|
1520 |
+
#: common.php:867
|
1521 |
msgid "IP blacklisted"
|
1522 |
msgstr "IP в черном списке"
|
1523 |
|
1524 |
+
#: common.php:835
|
1525 |
msgid "Password changed"
|
1526 |
msgstr "Пароль изменен"
|
1527 |
|
1528 |
+
#: dashboard.php:1136
|
1529 |
msgid "Comments"
|
1530 |
msgstr "Комментарии"
|
1531 |
|
1532 |
+
#: dashboard.php:1137
|
1533 |
msgid "Last login"
|
1534 |
msgstr "Последний вход"
|
1535 |
|
1536 |
+
#: common.php:977 dashboard.php:1170 dashboard.php:1257
|
1537 |
msgid "Never"
|
1538 |
msgstr "Никогда"
|
1539 |
|
1545 |
msgid "What do you want to export?"
|
1546 |
msgstr "Что вы хотите экспортировать"
|
1547 |
|
1548 |
+
#: cerber-scanner.php:85 cerber-tools.php:91 cerber-tools.php:100
|
1549 |
+
#: dashboard.php:2789
|
1550 |
msgid "Settings"
|
1551 |
msgstr "Настройки"
|
1552 |
|
1553 |
+
#: cerber-load.php:4235 cerber-tools.php:92 cerber-tools.php:101
|
1554 |
+
#: cerber-tools.php:182 settings.php:562
|
1555 |
msgid "Access Lists"
|
1556 |
msgstr "Списки доступа"
|
1557 |
|
1575 |
msgid "What do you want to import?"
|
1576 |
msgstr "Что вы хотите импортировать?"
|
1577 |
|
1578 |
+
#: cerber-scanner.php:3576 cerber-tools.php:102
|
1579 |
msgid "Upload file"
|
1580 |
msgstr "Загрузить файл"
|
1581 |
|
1595 |
msgid "Error while parsing file"
|
1596 |
msgstr "Возникла ошибка при обработке файла"
|
1597 |
|
1598 |
+
#: dashboard.php:1227
|
1599 |
msgid "Cerber Quick View"
|
1600 |
msgstr "Сводка от Cerber"
|
1601 |
|
1602 |
+
#: dashboard.php:1261 dashboard.php:1283
|
1603 |
msgid "active"
|
1604 |
msgstr "активен"
|
1605 |
|
1606 |
+
#: dashboard.php:1261
|
1607 |
msgid "deactivate"
|
1608 |
msgstr "деактивировать"
|
1609 |
|
1610 |
+
#: dashboard.php:1263
|
1611 |
msgid "not active"
|
1612 |
msgstr "неактивен"
|
1613 |
|
1614 |
+
#: dashboard.php:1264 dashboard.php:1278
|
1615 |
msgid "disabled"
|
1616 |
msgstr "отключен"
|
1617 |
|
1618 |
+
#: dashboard.php:1269
|
1619 |
msgid "failed attempts"
|
1620 |
msgstr "ошибок авторизации"
|
1621 |
|
1622 |
+
#: dashboard.php:1269 dashboard.php:1270
|
1623 |
msgid "in 24 hours"
|
1624 |
msgstr "за 24 часа"
|
1625 |
|
1626 |
+
#: dashboard.php:1269 dashboard.php:1270
|
1627 |
msgid "view all"
|
1628 |
msgstr "просмотреть все"
|
1629 |
|
1630 |
+
#: dashboard.php:1270
|
1631 |
msgid "lockouts"
|
1632 |
msgstr "блокировок"
|
1633 |
|
1634 |
+
#: dashboard.php:1272
|
1635 |
msgid "Lockouts at the moment"
|
1636 |
msgstr "Сейчас заблокировано"
|
1637 |
|
1638 |
+
#: dashboard.php:1273
|
1639 |
msgid "Last lockout"
|
1640 |
msgstr "Последняя блокировка"
|
1641 |
|
1642 |
+
#: dashboard.php:1274 dashboard.php:1275 dashboard.php:1968
|
1643 |
msgid "entry"
|
1644 |
msgid_plural "entries"
|
1645 |
msgstr[0] "элемент"
|
1646 |
msgstr[1] "элемента"
|
1647 |
msgstr[2] "элементов"
|
1648 |
|
1649 |
+
#: dashboard.php:1276 settings.php:101
|
1650 |
msgid "Citadel mode"
|
1651 |
msgstr "Режим Цитадель"
|
1652 |
|
1653 |
+
#: settings.php:555
|
1654 |
msgid "Lockouts"
|
1655 |
msgstr "Блокировки"
|
1656 |
|
1657 |
+
#: dashboard.php:1677
|
1658 |
msgid "Confused about some settings?"
|
1659 |
msgstr "Сомневаетесь какие настройки оптимальны?"
|
1660 |
|
1661 |
+
#: dashboard.php:1678
|
1662 |
msgid "You can easily load default recommended settings using button below"
|
1663 |
msgstr "Вы можете загрузить рекомендованные настройки с помощью всего одной кнопки"
|
1664 |
|
1665 |
+
#: dashboard.php:1680
|
1666 |
msgid "Load default settings"
|
1667 |
msgstr "Загрузить настройки"
|
1668 |
|
1669 |
+
#: dashboard.php:1682
|
1670 |
msgid "Are you sure?"
|
1671 |
msgstr "Вы уверены?"
|
1672 |
|
1673 |
+
#: dashboard.php:1688
|
1674 |
msgid "doesn't affect Custom login URL and Access Lists"
|
1675 |
msgstr "не затронет настройки URL страницы авторизации и списки доступа"
|
1676 |
|
1677 |
+
#: dashboard.php:1796
|
1678 |
msgid "Deactivate"
|
1679 |
msgstr "Деактивировать"
|
1680 |
|
1681 |
+
#: dashboard.php:1797 dashboard.php:2275
|
1682 |
msgid "View Activity"
|
1683 |
msgstr "Что происходит?"
|
1684 |
|
1685 |
+
#: common.php:1155 settings.php:225
|
1686 |
msgid "New version is available"
|
1687 |
msgstr "Доступна новая версия"
|
1688 |
|
1689 |
+
#: common.php:1162
|
1690 |
msgid "Update to version %s of WP Cerber"
|
1691 |
msgstr "Обновить WP Cerber до версии %s"
|
1692 |
|
1693 |
+
#: cerber-load.php:366
|
1694 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
1695 |
msgstr "Вход на сайт невозможен. Обратитесь к администратору сайта."
|
1696 |
|
1697 |
+
#: cerber-load.php:372
|
1698 |
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
1699 |
msgstr "Вход невозможен. Слишком много ошибочных попыток. Попробуйте войти через %d минут."
|
1700 |
|
1701 |
+
#: cerber-load.php:391
|
1702 |
msgid "You have only one attempt remaining."
|
1703 |
msgid_plural "You have %d attempts remaining."
|
1704 |
msgstr[0] "У вас есть только одна попытка для входа"
|
1705 |
msgstr[1] "У вас осталось %d попытки для входа."
|
1706 |
msgstr[2] "У вас осталось %d попыток для входа."
|
1707 |
|
1708 |
+
#: common.php:902
|
1709 |
msgid "Attempt to access"
|
1710 |
msgstr "Попытка доступа к"
|
1711 |
|
1712 |
+
#: common.php:901
|
1713 |
msgid "Limit on login attempts is reached"
|
1714 |
msgstr "Количество попыток исчерпано"
|
1715 |
|
1716 |
+
#: common.php:843 common.php:903
|
1717 |
msgid "Attempt to log in with non-existent username"
|
1718 |
msgstr "Попытка войти с несуществующим именем пользователя"
|
1719 |
|
1720 |
+
#: cerber-load.php:3373
|
1721 |
msgid "WP Cerber notify"
|
1722 |
msgstr "Уведомление WP Cerber"
|
1723 |
|
1724 |
+
#: cerber-load.php:3395
|
1725 |
msgid "Citadel mode is activated"
|
1726 |
msgstr "Активирован режим Цитадель"
|
1727 |
|
1728 |
+
#: cerber-load.php:3398
|
1729 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
1730 |
msgstr "Последняя неудачная попытка была в %s с IP адреса %s с логином %s."
|
1731 |
|
1732 |
+
#: cerber-load.php:3399 cerber-load.php:4001
|
1733 |
msgid "View activity in dashboard"
|
1734 |
msgstr "Просмотреть журнал активности"
|
1735 |
|
1736 |
+
#: cerber-load.php:3429
|
1737 |
msgid "Number of active lockouts"
|
1738 |
msgstr "Число активных блокировок на данный момент"
|
1739 |
|
1740 |
+
#: cerber-load.php:3430
|
1741 |
msgid "Last lockout was added: %s for IP %s"
|
1742 |
msgstr "Последняя блокировка была добавлена %s для IP %s"
|
1743 |
|
1744 |
+
#: cerber-load.php:3433
|
1745 |
msgid "View lockouts in dashboard"
|
1746 |
msgstr "Просмотреть список заблокированных IP"
|
1747 |
|
1748 |
+
#: cerber-load.php:3468
|
1749 |
msgid "New Custom login URL"
|
1750 |
msgstr "Новый URL для входа на сайт"
|
1751 |
|
1752 |
+
#: cerber-load.php:3521
|
1753 |
msgid "This message was sent by"
|
1754 |
msgstr "Это сообщение было отправлено"
|
1755 |
|
1756 |
+
#: cerber-load.php:4175
|
1757 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
1758 |
msgstr "WP Cerber требует PHP версии %s или выше. У вас версия"
|
1759 |
|
1760 |
+
#: cerber-load.php:4179
|
1761 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
1762 |
msgstr "WP Cerber требует WordPress версии %s или выше. У вас версия"
|
1763 |
|
1764 |
+
#: cerber-load.php:4188
|
1765 |
msgid "Can't activate WP Cerber due to a database error."
|
1766 |
msgstr "Невозможно активировать плагин WP Cerber из-за ошибки в базе данных."
|
1767 |
|
1768 |
+
#: cerber-load.php:4233 settings.php:558
|
1769 |
msgid "Main Settings"
|
1770 |
msgstr "Главные настройки"
|
1771 |
|
1772 |
+
#: cerber-load.php:4237 settings.php:565
|
1773 |
msgid "Hardening"
|
1774 |
msgstr "Панцирь"
|
1775 |
|
1776 |
+
#: dashboard.php:944
|
1777 |
msgid "Abuse email:"
|
1778 |
msgstr "Адрес email для жалоб:"
|
1779 |
|
1797 |
msgid "Aggressive lockout"
|
1798 |
msgstr "Ужесточение"
|
1799 |
|
1800 |
+
#: cerber-load.php:4238 settings.php:80 settings.php:104 settings.php:572
|
1801 |
msgid "Notifications"
|
1802 |
msgstr "Уведомления"
|
1803 |
|
1805 |
msgid "Site connection"
|
1806 |
msgstr "Подключение к сети"
|
1807 |
|
1808 |
+
#: dashboard.php:1478 settings.php:81
|
1809 |
msgid "My site is behind a reverse proxy"
|
1810 |
msgstr "Мой сайт подключен к сети через прокси-сервер"
|
1811 |
|
1869 |
msgid "Send notification to admin email"
|
1870 |
msgstr "Отправить уведомление на адрес email администратора сайта"
|
1871 |
|
1872 |
+
#: settings.php:212 settings.php:253 settings.php:485
|
1873 |
msgid "Email Address"
|
1874 |
msgstr "Адрес email"
|
1875 |
|
1877 |
msgid "if empty, the admin email %s will be used"
|
1878 |
msgstr "Если пусто, то будет использован адрес администратора %s"
|
1879 |
|
1880 |
+
#: settings.php:107 settings.php:354
|
1881 |
msgid "Keep records for"
|
1882 |
msgstr "Хранить записи не более"
|
1883 |
|
1884 |
+
#: settings.php:107 settings.php:183 settings.php:358 settings.php:423
|
1885 |
msgid "days"
|
1886 |
msgstr "дней"
|
1887 |
|
1913 |
msgid "Disable REST API"
|
1914 |
msgstr "Отключить REST API"
|
1915 |
|
1916 |
+
#: settings.php:504
|
1917 |
msgid "Make your protection smarter!"
|
1918 |
msgstr "Сделайте защиту от злоумышленников еще умнее"
|
1919 |
|
1920 |
+
#: settings.php:508
|
1921 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
1922 |
msgstr "Для использования этой настройки необходимо активировать Постоянные ссылки в настройках сайта."
|
1923 |
|
1924 |
+
#: settings.php:518
|
1925 |
msgid "These settings do not affect hosts from the "
|
1926 |
msgstr "Эти настройки не применяются к адресам из"
|
1927 |
|
1929 |
msgid "Tools"
|
1930 |
msgstr "Инструменты"
|
1931 |
|
1932 |
+
#: cerber-scanner.php:87 cerber-tools.php:51 dashboard.php:2790
|
1933 |
+
#: settings.php:575
|
1934 |
msgid "Help"
|
1935 |
msgstr "Помощь"
|
1936 |
|
1937 |
+
#: settings.php:685 settings.php:807
|
1938 |
msgid "%s allowed retries in %s minutes"
|
1939 |
msgstr "%s попыток разрешено в течении %s минут"
|
1940 |
|
1941 |
+
#: settings.php:695 settings.php:817
|
1942 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
1943 |
msgstr "Увеличить длительность блокировки до %s часов после %s блокировок в течение последних %s часов"
|
1944 |
|
1945 |
+
#: settings.php:702 settings.php:824
|
1946 |
msgid "Notify admin if the number of active lockouts above"
|
1947 |
msgstr "Уведомить администратора, если число заблокированных IP более"
|
1948 |
|
1949 |
+
#: settings.php:707 settings.php:829
|
1950 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
1951 |
msgstr "Активировать после %s неудачных авторизаций за последние %s минут"
|
1952 |
|
1953 |
+
#: settings.php:991 settings.php:992
|
1954 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
1955 |
msgstr "Внимание! Вы изменили URL страницы авторизации. Новый адрес"
|
1956 |
|
1957 |
+
#: cerber-load.php:3397
|
1958 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
1959 |
msgstr "Режим Цитадель активирован после %d неудачных попыток за %d минут."
|
1960 |
|
1961 |
+
#: common.php:812
|
1962 |
msgid "Logged in"
|
1963 |
msgstr "Вход"
|
1964 |
|
1965 |
+
#: common.php:813
|
1966 |
msgid "Logged out"
|
1967 |
msgstr "Выход"
|
1968 |
|
1969 |
+
#: cerber-load.php:4239
|
1970 |
msgid "Import settings"
|
1971 |
msgstr "Импорт настроек"
|
1972 |
|
1973 |
+
#: cerber-load.php:4223
|
1974 |
msgid "Your IP address is added to the"
|
1975 |
msgstr "Ваш IP адрес добавлен к"
|
1976 |
|
1977 |
+
#: cerber-load.php:3461 cerber-load.php:4222
|
1978 |
msgid "WP Cerber is now active and has started protecting your site"
|
1979 |
msgstr "WP Cerber активен и начал защищать ваш сайт"
|
1980 |
|
1981 |
+
#: cerber-load.php:3460
|
1982 |
msgid "The WP Cerber security plugin is now active"
|
1983 |
msgstr "WP Cerber плагин безопасности активен"
|
1984 |
|
1985 |
+
#: cerber-load.php:3456
|
1986 |
msgid "From country"
|
1987 |
msgstr "Из страны"
|
1988 |
|
1989 |
+
#: cerber-load.php:3453
|
1990 |
msgid "From IP address"
|
1991 |
msgstr "С IP адреса"
|
1992 |
|
1993 |
+
#: cerber-load.php:3452
|
1994 |
msgid "By user"
|
1995 |
msgstr "По пользователю"
|
1996 |
|
1997 |
+
#: cerber-load.php:3446
|
1998 |
msgid "Not logged in"
|
1999 |
msgstr "Нет авторизации"
|
2000 |
|
2001 |
+
#: cerber-load.php:3443 cerber-load.php:3444
|
2002 |
msgid "The WP Cerber security plugin has been deactivated"
|
2003 |
msgstr "WP Cerber плагин деактивирован"
|
2004 |
|
2005 |
+
#: cerber-load.php:3440 cerber-load.php:3451
|
2006 |
msgid "Website"
|
2007 |
msgstr "Сайт"
|
2008 |
|
2009 |
+
#: cerber-load.php:3437
|
2010 |
msgid "Hi!"
|
2011 |
msgstr "Привет!"
|
2012 |
|
2013 |
+
#: cerber-load.php:3436 cerber-load.php:3438
|
2014 |
msgid "A new version of WP Cerber is available to install"
|
2015 |
msgstr "Доступна новая версия WP Cerber!"
|
2016 |
|
2017 |
+
#: cerber-load.php:3432
|
2018 |
msgid "View activity for this IP"
|
2019 |
msgstr "Посмотреть активность для этого IP"
|
2020 |
|
2026 |
msgid "WP Cerber"
|
2027 |
msgstr "WP Cerber"
|
2028 |
|
2029 |
+
#: cerber-load.php:3427
|
2030 |
msgid "Number of lockouts is increasing"
|
2031 |
msgstr "Число блокировок увеличилось"
|
2032 |
|
2033 |
+
#: cerber-load.php:3424
|
2034 |
msgid "unspecified"
|
2035 |
msgstr "неуказано"
|
2036 |
|
2037 |
+
#: cerber-load.php:1183
|
2038 |
msgid "Username is not allowed. Please choose another one."
|
2039 |
msgstr "Имя пользователя недопустимо. Выберите другое."
|
2040 |
|
2041 |
+
#: cerber-load.php:959
|
2042 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
2043 |
msgstr "<strong>ОШИБКА</strong>: Пароль введенный для пользователя %s is некорректен."
|
2044 |
|
2045 |
+
#: cerber-load.php:703
|
2046 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
2047 |
msgstr "Антибот проверка неудачна. Пожалуйста тыкните в квадратную отметку блока reCAPTCHA ниже"
|
2048 |
|
2049 |
+
#: cerber-load.php:674 cerber-load.php:686 cerber-load.php:693
|
2050 |
+
#: cerber-load.php:947 cerber-load.php:1166 cerber-load.php:1172
|
2051 |
+
#: cerber-load.php:1177 cerber-load.php:1182 cerber-load.php:1188
|
2052 |
+
#: cerber-load.php:1195 cerber-load.php:1297 cerber-load.php:1434
|
2053 |
+
#: common.php:209 common.php:272 common.php:277 common.php:282 settings.php:970
|
2054 |
+
#: settings.php:1039
|
2055 |
msgid "ERROR:"
|
2056 |
msgstr "ОШИБКА:"
|
2057 |
|
2058 |
+
#: common.php:900 common.php:1246 dashboard.php:353 dashboard.php:2870
|
2059 |
#: whois.php:223 whois.php:254
|
2060 |
msgid "Unknown"
|
2061 |
msgstr "Неизвестен"
|
2062 |
|
2063 |
+
#: settings.php:1069 settings.php:1081 settings.php:1209
|
2064 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
2065 |
msgstr "<strong>ОШИБКА</strong>: Введите действительный адрес эл.почты."
|
2066 |
|
2067 |
+
#: settings.php:568
|
2068 |
msgid "Users"
|
2069 |
msgstr "Пользователи"
|
2070 |
|
2071 |
+
#: cerber-lab.php:758 settings.php:522
|
2072 |
msgid "Know more"
|
2073 |
msgstr "Узнать больше"
|
2074 |
|
2075 |
+
#: settings.php:521
|
2076 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
2077 |
msgstr "Перед использованием reCAPTCHA вам нужно получить ключ сайта и секретный ключ на сайте Google"
|
2078 |
|
2132 |
msgid "Nobody can log in or register from these IPs"
|
2133 |
msgstr "Никто не сможет войти или зарегистрироваться с этих IP"
|
2134 |
|
2135 |
+
#: common.php:844 common.php:904
|
2136 |
msgid "Attempt to log in with prohibited username"
|
2137 |
msgstr "Попытка входа с запрещенным именем"
|
2138 |
|
2139 |
+
#: common.php:842
|
2140 |
msgid "Attempt to access prohibited URL"
|
2141 |
msgstr "Попытка доступа к запрещенному URL"
|
2142 |
|
2143 |
+
#: common.php:839
|
2144 |
msgid "reCAPTCHA settings are incorrect"
|
2145 |
msgstr "настройки reCAPTCHA неверны"
|
2146 |
|
2147 |
+
#: common.php:838
|
2148 |
msgid "reCAPTCHA verification failed"
|
2149 |
msgstr "проверка reCAPTCHA неудачна"
|
2150 |
|
2151 |
+
#: common.php:811 dashboard.php:1629
|
2152 |
msgid "User registered"
|
2153 |
msgstr "Пользователь зарегистрирован"
|
2154 |
|
2155 |
+
#: common.php:810
|
2156 |
msgid "User created"
|
2157 |
msgstr "Пользователь создан"
|
2158 |
|
2159 |
+
#: dashboard.php:445 dashboard.php:1812
|
2160 |
msgid "Settings saved"
|
2161 |
msgstr "Настройки сохранены."
|
2162 |
|
2163 |
+
#: dashboard.php:1795
|
2164 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
2165 |
msgstr "Внимание! Режим Цитадель активен. Авторизация на сайте заблокирована."
|
2166 |
|
2189 |
msgstr "по дате регистрации"
|
2190 |
|
2191 |
#. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security, Antispam & Malware Scan
|
2192 |
+
#. 7.5) #-#-#-#-#
|
2193 |
#. Plugin URI of the plugin/theme
|
2194 |
#. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security, Antispam & Malware Scan
|
2195 |
+
#. 7.5) #-#-#-#-#
|
2196 |
#. Author URI of the plugin/theme
|
2197 |
msgid "https://wpcerber.com"
|
2198 |
msgstr "https://wpcerber.com"
|
2199 |
|
2200 |
+
#: settings.php:104 settings.php:704 settings.php:826
|
2201 |
msgid "Click to send test"
|
2202 |
msgstr "Нажмите, чтобы протестировать отправку"
|
2203 |
|
languages/wp-cerber-sv_SE.mo
CHANGED
Binary file
|
languages/wp-cerber-sv_SE.po
CHANGED
@@ -72,7 +72,7 @@ msgstr "Inaktivera wp-login.php"
|
|
72 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
73 |
msgstr "Blockera direktåtkomst till wp-login.php och returnera HTTP 404 inte hittade fel"
|
74 |
|
75 |
-
#: ../dashboard.php:
|
76 |
msgid "Citadel mode"
|
77 |
msgstr "Citadelläge"
|
78 |
|
@@ -84,8 +84,8 @@ msgstr "Gränsvärde"
|
|
84 |
msgid "Duration"
|
85 |
msgstr "Varaktighet"
|
86 |
|
87 |
-
#: ../cerber-load.php:
|
88 |
-
#:
|
89 |
msgid "Notifications"
|
90 |
msgstr "Notiser"
|
91 |
|
@@ -93,42 +93,42 @@ msgstr "Notiser"
|
|
93 |
msgid "Send notification to admin email"
|
94 |
msgstr "Skicka meddelande till admins e-post"
|
95 |
|
96 |
-
#: ../cerber-load.php:
|
97 |
#: tools.php:101 ../cerber-tools.php:182
|
98 |
msgid "Access Lists"
|
99 |
msgstr "Åtkomstlistor"
|
100 |
|
101 |
-
#: ../dashboard.php:
|
102 |
-
#: /settings.php:106 ../settings.php:
|
103 |
msgid "Activity"
|
104 |
msgstr "Aktivitet"
|
105 |
|
106 |
-
#: ../settings.php:
|
107 |
msgid "Lockouts"
|
108 |
msgstr "Utlåsningar"
|
109 |
|
110 |
-
#: ../settings.php:
|
111 |
msgid "%s allowed retries in %s minutes"
|
112 |
msgstr "%s tillåtna försök på %s minuter"
|
113 |
|
114 |
-
#: ../settings.php:
|
115 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
116 |
msgstr "Aktivera efter %s misslyckade inloggningsförsök under senaste %s minuter"
|
117 |
|
118 |
-
#: ../dashboard.php:133 ../dashboard.php:
|
119 |
-
#: 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 "Lokal användare"
|
130 |
|
131 |
-
#: ../dashboard.php:
|
132 |
msgid "Username used"
|
133 |
msgstr "Användarnamn används"
|
134 |
|
@@ -136,40 +136,40 @@ msgstr "Användarnamn används"
|
|
136 |
msgid "Showing last %d records from %d"
|
137 |
msgstr "Visar senaste %d poster från %d"
|
138 |
|
139 |
-
#: ../common.php:
|
140 |
msgid "Logged in"
|
141 |
msgstr "Inloggad"
|
142 |
|
143 |
-
#: ../common.php:
|
144 |
msgid "Logged out"
|
145 |
msgstr "Utloggad"
|
146 |
|
147 |
-
#: ../common.php:
|
148 |
msgid "Login failed"
|
149 |
msgstr "Inloggning misslyckades"
|
150 |
|
151 |
-
#: ../common.php:
|
152 |
msgid "IP blocked"
|
153 |
msgstr "IP blockerad"
|
154 |
|
155 |
-
#: ../common.php:
|
156 |
msgid "Subnet blocked"
|
157 |
msgstr "Undernät blockerat"
|
158 |
|
159 |
-
#: ../common.php:
|
160 |
msgid "Citadel activated!"
|
161 |
msgstr "Citadel aktiverat!"
|
162 |
|
163 |
-
#: ../dashboard.php:
|
164 |
-
#:
|
165 |
msgid "Locked out"
|
166 |
msgstr "Utlåst"
|
167 |
|
168 |
-
#: ../common.php:
|
169 |
msgid "IP blacklisted"
|
170 |
msgstr "IP svartlistad"
|
171 |
|
172 |
-
#: ../common.php:
|
173 |
msgid "Password changed"
|
174 |
msgstr "Lösenord ändrat"
|
175 |
|
@@ -181,13 +181,13 @@ msgstr "Ta bort"
|
|
181 |
msgid "Lockout for %s was removed"
|
182 |
msgstr "Utlåsning för %s borttagen"
|
183 |
|
184 |
-
#: ../dashboard.php:171 ../dashboard.php:
|
185 |
-
#: php:
|
186 |
msgid "White IP Access List"
|
187 |
msgstr "Vita IP-åtkomstlistan"
|
188 |
|
189 |
-
#: ../dashboard.php:173 ../dashboard.php:
|
190 |
-
#: php:
|
191 |
msgid "Black IP Access List"
|
192 |
msgstr "Svarta IP-åtkomstlistan"
|
193 |
|
@@ -203,32 +203,32 @@ msgstr "Adress %s har lagts till i vita IP-åtkomstlistan"
|
|
203 |
msgid "Address %s was added to Black IP Access List"
|
204 |
msgstr "Adress %s har lagts till i svarta IP-åtkomstlistan"
|
205 |
|
206 |
-
#: ../cerber-load.php:
|
207 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
208 |
msgstr "Citadelläge är aktiverad efter %d misslyckades inloggningsförsök inom %d minuter."
|
209 |
|
210 |
-
#: ../dashboard.php:
|
211 |
msgid "View Activity"
|
212 |
msgstr "Visa aktivitet"
|
213 |
|
214 |
-
#: ../dashboard.php:
|
215 |
-
#: scanner.php:
|
216 |
msgid "Settings"
|
217 |
msgstr "Inställningar"
|
218 |
|
219 |
-
#: ../dashboard.php:
|
220 |
msgid "Last login"
|
221 |
msgstr "Senaste inloggning"
|
222 |
|
223 |
-
#: ../dashboard.php:
|
224 |
msgid "Never"
|
225 |
msgstr "Aldrig"
|
226 |
|
227 |
-
#: ../dashboard.php:
|
228 |
msgid "Are you sure?"
|
229 |
msgstr "Är du säker?"
|
230 |
|
231 |
-
#: ../dashboard.php:
|
232 |
msgid "My site is behind a reverse proxy"
|
233 |
msgstr "Min webbplats är bakom en omvänd proxy"
|
234 |
|
@@ -240,46 +240,38 @@ msgstr "Icke-existerande användare"
|
|
240 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
241 |
msgstr "Blockera omedelbart IP vid försök att logga in med ett icke-existerande användarnamn"
|
242 |
|
243 |
-
#: ../settings.php:
|
244 |
-
msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
|
245 |
-
msgstr "Inaktivera automatisk omdirigering till inloggningssidan när /wp-admin/ begärs av en obehörig begäran"
|
246 |
-
|
247 |
-
#: ../settings.php:503
|
248 |
msgid "Make your protection smarter!"
|
249 |
msgstr "Gör ditt skydd smartare!"
|
250 |
|
251 |
-
#: ../settings.php:
|
252 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
253 |
msgstr "Aktivera permalänkar för att använda denna funktion. Ange inställningar för permalänkar till något annat än standard."
|
254 |
|
255 |
-
#: ../cerber-load.php:
|
256 |
msgid "Main Settings"
|
257 |
msgstr "Huvudinställningar"
|
258 |
|
259 |
-
#: ../dashboard.php:
|
260 |
-
#: scanner.php:
|
261 |
msgid "Help"
|
262 |
msgstr "Hjälp"
|
263 |
|
264 |
-
#: ../settings.php:
|
265 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
266 |
msgstr "Öka utlåsningens varaktighet till %s timmar efter %s utlåsningar under de senaste %s timmarna"
|
267 |
|
268 |
-
#: ../cerber-load.php:
|
269 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
270 |
msgstr "Du har inte rätt att logga in. Fråga din administratör om hjälp."
|
271 |
|
272 |
-
#: ../cerber-load.php:
|
273 |
-
msgid "You have reached the login attempts limit. Please try again in %d minutes."
|
274 |
-
msgstr "Du har nått gränsen för inloggningsförsök. Försök igen om %d minuter."
|
275 |
-
|
276 |
-
#: ../cerber-load.php:386
|
277 |
msgid "You have only one attempt remaining."
|
278 |
msgid_plural "You have %d attempts remaining."
|
279 |
msgstr[0] "Du har bara ett försök kvar."
|
280 |
msgstr[1] "Du har %d försök kvar."
|
281 |
|
282 |
-
#: ../dashboard.php:
|
283 |
msgid "No activity has been logged."
|
284 |
msgstr "Ingen aktivitet har loggats."
|
285 |
|
@@ -299,23 +291,23 @@ msgstr "Dessa IP kommer aldrig att vara utlåsta"
|
|
299 |
msgid "Your IP"
|
300 |
msgstr "Ditt IP"
|
301 |
|
302 |
-
#: ../cerber-load.php:
|
303 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
304 |
msgstr "Senast misslyckat försök var %s från IP %s med användarinloggning: %s."
|
305 |
|
306 |
-
#: ../cerber-load.php:
|
307 |
msgid "Can't activate WP Cerber due to a database error."
|
308 |
msgstr "Kan inte aktivera WP Cerber på grund av ett databasfel."
|
309 |
|
310 |
-
#: ../settings.php:
|
311 |
msgid "Notify admin if the number of active lockouts above"
|
312 |
msgstr "Meddela admin om antalet aktiva utlåsningar ovan"
|
313 |
|
314 |
-
#: ../settings.php:107 ../settings.php:183 ../settings.php:
|
315 |
msgid "days"
|
316 |
msgstr "dagar"
|
317 |
|
318 |
-
#: ../dashboard.php:
|
319 |
msgid "Cerber Quick View"
|
320 |
msgstr "Cerber snabböversikt"
|
321 |
|
@@ -336,35 +328,35 @@ msgstr "Kontrollera efter aktivitet"
|
|
336 |
msgid "Always block entire subnet Class C of intruders IP"
|
337 |
msgstr "Blockera alltid hela undernätet Klass C av inkräktande IP"
|
338 |
|
339 |
-
#: ../settings.php:104 ../settings.php:
|
340 |
msgid "Click to send test"
|
341 |
msgstr "Klicka för att skicka test"
|
342 |
|
343 |
-
#: ../settings.php:
|
344 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
345 |
msgstr "Observera! Du har ändrat URL för inloggning! Den nya URL:en för inloggning är"
|
346 |
|
347 |
-
#: ../dashboard.php:
|
348 |
msgid "Comments"
|
349 |
msgstr "Kommentarer"
|
350 |
|
351 |
-
#: ../common.php:
|
352 |
msgid "Update to version %s of WP Cerber"
|
353 |
msgstr "Uppdatera till version %s av WP Cerber"
|
354 |
|
355 |
-
#: ../cerber-load.php:
|
356 |
msgid "View activity in dashboard"
|
357 |
msgstr "Visa aktivitet i adminpanel"
|
358 |
|
359 |
-
#: ../cerber-load.php:
|
360 |
msgid "Number of active lockouts"
|
361 |
msgstr "Antal aktiva utlåsningar"
|
362 |
|
363 |
-
#: ../cerber-load.php:
|
364 |
msgid "View lockouts in dashboard"
|
365 |
msgstr "Visa utlåsningar i adminpanelen"
|
366 |
|
367 |
-
#: ../cerber-load.php:
|
368 |
msgid "This message was sent by"
|
369 |
msgstr "Detta meddelande skickades av"
|
370 |
|
@@ -408,7 +400,7 @@ msgstr "Maximal filstorlek för uppladdning: %s."
|
|
408 |
msgid "What do you want to import?"
|
409 |
msgstr "Vad vill du importera?"
|
410 |
|
411 |
-
#: ../cerber-tools.php:102 ../cerber-scanner.php:
|
412 |
msgid "Upload file"
|
413 |
msgstr "Ladda upp fil"
|
414 |
|
@@ -428,7 +420,7 @@ msgstr "Inställningar har importerats utan problem från"
|
|
428 |
msgid "Error while parsing file"
|
429 |
msgstr "Fel uppstod vid analyseringen av fil"
|
430 |
|
431 |
-
#: ../dashboard.php:134 ../dashboard.php:
|
432 |
msgid "Hostname"
|
433 |
msgstr "Värdnamn"
|
434 |
|
@@ -436,73 +428,73 @@ msgstr "Värdnamn"
|
|
436 |
msgid "unknown"
|
437 |
msgstr "okänd"
|
438 |
|
439 |
-
#: ../settings.php:107 ../settings.php:
|
440 |
msgid "Keep records for"
|
441 |
msgstr "Behåll uppgifter i"
|
442 |
|
443 |
-
#: ../dashboard.php:
|
444 |
msgid "active"
|
445 |
msgstr "aktivt"
|
446 |
|
447 |
-
#: ../dashboard.php:
|
448 |
msgid "deactivate"
|
449 |
msgstr "inaktivera"
|
450 |
|
451 |
-
#: ../dashboard.php:
|
452 |
msgid "not active"
|
453 |
msgstr "Inte aktiv"
|
454 |
|
455 |
-
#: ../dashboard.php:
|
456 |
msgid "disabled"
|
457 |
msgstr "inaktiverad"
|
458 |
|
459 |
-
#: ../dashboard.php:
|
460 |
msgid "failed attempts"
|
461 |
msgstr "misslyckade försök"
|
462 |
|
463 |
-
#: ../dashboard.php:
|
464 |
msgid "in 24 hours"
|
465 |
msgstr "om 24 timmar"
|
466 |
|
467 |
-
#: ../dashboard.php:
|
468 |
msgid "view all"
|
469 |
msgstr "visa alla"
|
470 |
|
471 |
-
#: ../dashboard.php:
|
472 |
msgid "lockouts"
|
473 |
msgstr "Utlåsningar"
|
474 |
|
475 |
-
#: ../dashboard.php:
|
476 |
msgid "Lockouts at the moment"
|
477 |
msgstr "Utlåsningar just nu"
|
478 |
|
479 |
-
#: ../dashboard.php:
|
480 |
msgid "Last lockout"
|
481 |
msgstr "Senaste utlåsning"
|
482 |
|
483 |
-
#: ../dashboard.php:
|
484 |
msgid "entry"
|
485 |
msgid_plural "entries"
|
486 |
msgstr[0] ""
|
487 |
msgstr[1] ""
|
488 |
|
489 |
-
#: ../dashboard.php:
|
490 |
msgid "Confused about some settings?"
|
491 |
msgstr "Förvirrad på några inställningar?"
|
492 |
|
493 |
-
#: ../dashboard.php:
|
494 |
msgid "You can easily load default recommended settings using button below"
|
495 |
msgstr "Du kan enkelt ladda de rekommenderade standardinställningarna med knappen nedan"
|
496 |
|
497 |
-
#: ../dashboard.php:
|
498 |
msgid "Load default settings"
|
499 |
msgstr "Ladda standardinställningar"
|
500 |
|
501 |
-
#: ../dashboard.php:
|
502 |
msgid "doesn't affect Custom login URL and Access Lists"
|
503 |
msgstr "påverkar inte anpassad URL för inloggning och åtkomstlistor"
|
504 |
|
505 |
-
#: ../common.php:
|
506 |
msgid "New version is available"
|
507 |
msgstr "Ny version tillgänglig"
|
508 |
|
@@ -511,23 +503,23 @@ msgstr "Ny version tillgänglig"
|
|
511 |
msgid "WP Cerber"
|
512 |
msgstr "WP Cerber"
|
513 |
|
514 |
-
#: ../cerber-load.php:
|
515 |
msgid "WP Cerber notify"
|
516 |
msgstr "WP Cerber meddelar"
|
517 |
|
518 |
-
#: ../cerber-load.php:
|
519 |
msgid "Citadel mode is activated"
|
520 |
msgstr "Citadelläge är aktiverat"
|
521 |
|
522 |
-
#: ../cerber-load.php:
|
523 |
msgid "New Custom login URL"
|
524 |
msgstr "Ny anpassad URL för inloggning"
|
525 |
|
526 |
-
#: ../cerber-load.php:
|
527 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
528 |
msgstr "WP Cerber kräver PHP %s eller högre. Du kör"
|
529 |
|
530 |
-
#: ../cerber-load.php:
|
531 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
532 |
msgstr "WP Cerber kräver WordPress %s eller högre. Du kör"
|
533 |
|
@@ -539,11 +531,11 @@ msgstr "Använd fil"
|
|
539 |
msgid "Write failed login attempts to the file"
|
540 |
msgstr "Skriv misslyckade inloggningsförsök till fil"
|
541 |
|
542 |
-
#: ../dashboard.php:
|
543 |
msgid "Deactivate"
|
544 |
msgstr "Inaktivera"
|
545 |
|
546 |
-
#: ../dashboard.php:137 ../cerber-load.php:
|
547 |
msgid "Reason"
|
548 |
msgstr "Anledning"
|
549 |
|
@@ -551,35 +543,35 @@ msgstr "Anledning"
|
|
551 |
msgid "Add IP to the list"
|
552 |
msgstr "Lägg till IP till listan"
|
553 |
|
554 |
-
#: ../dashboard.php:
|
555 |
msgid "Add IP to the Black List"
|
556 |
msgstr "Lägg till IP i svartlistan"
|
557 |
|
558 |
-
#: ../common.php:
|
559 |
msgid "Attempt to access"
|
560 |
msgstr "Försök att komma åt"
|
561 |
|
562 |
-
#: ../common.php:
|
563 |
msgid "Limit on login attempts is reached"
|
564 |
msgstr "Gränsen för inloggningsförsök är nådd"
|
565 |
|
566 |
-
#: ../common.php:
|
567 |
msgid "Attempt to log in with non-existent username"
|
568 |
msgstr "Försök att logga in med icke-existerande användarnamn"
|
569 |
|
570 |
-
#: ../cerber-load.php:
|
571 |
msgid "Last lockout was added: %s for IP %s"
|
572 |
msgstr "Senaste utlåsningen lades till: %s för IP %s"
|
573 |
|
574 |
-
#: ../cerber-load.php:
|
575 |
msgid "Hardening"
|
576 |
msgstr "Förstärk"
|
577 |
|
578 |
-
#: ../dashboard.php:
|
579 |
msgid "Abuse email:"
|
580 |
msgstr "E-post för missbruk:"
|
581 |
|
582 |
-
#: ../settings.php:212 ../settings.php:253 ../settings.php:
|
583 |
msgid "Email Address"
|
584 |
msgstr "E-postadress"
|
585 |
|
@@ -623,15 +615,15 @@ msgstr "Blockera åtkomst till RSS, Atom och RDF-flöden"
|
|
623 |
msgid "Disable REST API"
|
624 |
msgstr "Inaktivera REST API"
|
625 |
|
626 |
-
#: ../settings.php:
|
627 |
msgid "These settings do not affect hosts from the "
|
628 |
msgstr "Dessa inställningar påverkar inte servrar från"
|
629 |
|
630 |
-
#: ../settings.php:
|
631 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
632 |
msgstr "<strong>FEL</strong>: Ange en giltig e-postadress."
|
633 |
|
634 |
-
#: ../cerber-load.php:
|
635 |
msgid "WP Cerber is now active and has started protecting your site"
|
636 |
msgstr "WP Cerber är nu aktiv och har börjat skydda din webbplats"
|
637 |
|
@@ -647,24 +639,24 @@ msgstr "Ingen kan logga in eller registrera från dessa IP"
|
|
647 |
msgid "Incorrect IP address or IP range"
|
648 |
msgstr "Felaktig IP-adress eller IP-intervall"
|
649 |
|
650 |
-
#: ../dashboard.php:445 ../dashboard.php:
|
651 |
msgid "Settings saved"
|
652 |
msgstr "Inställningar sparade"
|
653 |
|
654 |
-
#: ../dashboard.php:
|
655 |
msgid "Network:"
|
656 |
msgstr "Nätverk:"
|
657 |
|
658 |
-
#: ../dashboard.php:
|
659 |
msgid "Add network to the Black List"
|
660 |
msgstr "Lägg till nätverk i svartlistan"
|
661 |
|
662 |
-
#: ../dashboard.php:
|
663 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
664 |
msgstr "Observera! Citadelläget är nu aktivt. Ingen kan logga in."
|
665 |
|
666 |
-
#: ../dashboard.php:353 ../dashboard.php:
|
667 |
-
#: /common.php:
|
668 |
msgid "Unknown"
|
669 |
msgstr "Okänd"
|
670 |
|
@@ -673,80 +665,80 @@ msgstr "Okänd"
|
|
673 |
msgid "Gregory"
|
674 |
msgstr "Gregory"
|
675 |
|
676 |
-
#: ../common.php:
|
677 |
-
#: /cerber-load.php:
|
678 |
-
#: load.php:
|
679 |
-
#: php:
|
680 |
-
#:
|
681 |
-
#: /settings.php:
|
682 |
msgid "ERROR:"
|
683 |
msgstr "FEL:"
|
684 |
|
685 |
-
#: ../cerber-load.php:
|
686 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
687 |
msgstr "Mänsklig verifikation misslyckades. Klicka på rutan i reCAPTCHA-blocket nedan."
|
688 |
|
689 |
-
#: ../cerber-load.php:
|
690 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
691 |
msgstr "<strong>FEL</strong>: Lösenordet du angav för användarnamnet %s är felaktigt."
|
692 |
|
693 |
-
#: ../cerber-load.php:
|
694 |
msgid "Username is not allowed. Please choose another one."
|
695 |
msgstr "Användarnamn är inte tillåtet. Välj ett annat."
|
696 |
|
697 |
-
#: ../cerber-load.php:
|
698 |
msgid "unspecified"
|
699 |
msgstr "Ospecificerat"
|
700 |
|
701 |
-
#: ../cerber-load.php:
|
702 |
msgid "Number of lockouts is increasing"
|
703 |
msgstr "Antal utlåsningar är stigande"
|
704 |
|
705 |
-
#: ../cerber-load.php:
|
706 |
msgid "View activity for this IP"
|
707 |
msgstr "Visa aktivitet för detta IP"
|
708 |
|
709 |
-
#: ../cerber-load.php:
|
710 |
msgid "A new version of WP Cerber is available to install"
|
711 |
msgstr "En ny version av WP Cerber är tillgänglig att installeras"
|
712 |
|
713 |
-
#: ../cerber-load.php:
|
714 |
msgid "Hi!"
|
715 |
msgstr "Hej!"
|
716 |
|
717 |
-
#: ../cerber-load.php:
|
718 |
msgid "Website"
|
719 |
msgstr "Webbplats"
|
720 |
|
721 |
-
#: ../cerber-load.php:
|
722 |
msgid "The WP Cerber security plugin has been deactivated"
|
723 |
msgstr "Säkerhetstillägget WP Cerber har blivit avaktiverat"
|
724 |
|
725 |
-
#: ../cerber-load.php:
|
726 |
msgid "Not logged in"
|
727 |
msgstr "Inte inloggad"
|
728 |
|
729 |
-
#: ../cerber-load.php:
|
730 |
msgid "By user"
|
731 |
msgstr "Efter användare"
|
732 |
|
733 |
-
#: ../cerber-load.php:
|
734 |
msgid "From IP address"
|
735 |
msgstr "från IP-adress"
|
736 |
|
737 |
-
#: ../cerber-load.php:
|
738 |
msgid "From country"
|
739 |
msgstr "Från land"
|
740 |
|
741 |
-
#: ../cerber-load.php:
|
742 |
msgid "The WP Cerber security plugin is now active"
|
743 |
msgstr "Säkerhetstillägget WP Cerber är nu aktivt"
|
744 |
|
745 |
-
#: ../cerber-load.php:
|
746 |
msgid "Your IP address is added to the"
|
747 |
msgstr "Din IP-adress läggs till i"
|
748 |
|
749 |
-
#: ../cerber-load.php:
|
750 |
msgid "Import settings"
|
751 |
msgstr "Importera inställningar"
|
752 |
|
@@ -806,43 +798,43 @@ msgstr "Inloggningsformulär"
|
|
806 |
msgid "Enable reCAPTCHA for WordPress login form"
|
807 |
msgstr "Aktivera reCAPTCHA för WordPress inloggningsformulär"
|
808 |
|
809 |
-
#: ../settings.php:
|
810 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
811 |
msgstr "Innan du kan börja använda reCAPTCHA måste du skaffa webbplatsnyckel och hemlig nyckel på Googles webbplats"
|
812 |
|
813 |
-
#: ../cerber-lab.php:
|
814 |
msgid "Know more"
|
815 |
msgstr "Läs mer"
|
816 |
|
817 |
-
#: ../dashboard.php:52 ../settings.php:
|
818 |
msgid "WP Cerber Security"
|
819 |
msgstr "WP Cerber Security"
|
820 |
|
821 |
-
#: ../settings.php:
|
822 |
msgid "Users"
|
823 |
msgstr "Användare"
|
824 |
|
825 |
-
#: ../common.php:
|
826 |
msgid "User created"
|
827 |
msgstr "Användare skapad"
|
828 |
|
829 |
-
#: ../dashboard.php:
|
830 |
msgid "User registered"
|
831 |
msgstr "Användare registrerad"
|
832 |
|
833 |
-
#: ../common.php:
|
834 |
msgid "reCAPTCHA verification failed"
|
835 |
msgstr "reCAPTCHA-verifiering misslyckades"
|
836 |
|
837 |
-
#: ../common.php:
|
838 |
msgid "reCAPTCHA settings are incorrect"
|
839 |
msgstr "reCAPTCHA-inställningarna är felaktiga"
|
840 |
|
841 |
-
#: ../common.php:
|
842 |
msgid "Attempt to access prohibited URL"
|
843 |
msgstr "Försök att få tillgång till förbjuden URL"
|
844 |
|
845 |
-
#: ../common.php:
|
846 |
msgid "Attempt to log in with prohibited username"
|
847 |
msgstr "Försök att logga in med förbjudna användarnamn"
|
848 |
|
@@ -878,60 +870,60 @@ msgstr "Aktivera reCAPTCHA för WooCommerce på formuläret för förlorat löse
|
|
878 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
879 |
msgstr "Aktivera reCAPTCHA för WooCommerce inloggningsformulär"
|
880 |
|
881 |
-
#: ../common.php:
|
882 |
msgid "Request to the Google reCAPTCHA service failed"
|
883 |
msgstr "Begäran om Google reCAPTCHA-tjänsten misslyckades"
|
884 |
|
885 |
-
#: ../dashboard.php:
|
886 |
msgid "View all"
|
887 |
msgstr "Visa alla"
|
888 |
|
889 |
-
#: ../dashboard.php:
|
890 |
msgid "Recently locked out IP addresses"
|
891 |
msgstr "Nyligen utlåsta IP-adresser"
|
892 |
|
893 |
-
#: ../cerber-lab.php:
|
894 |
msgid "OK, nail them all"
|
895 |
msgstr "OK, sätt fast dem alla"
|
896 |
|
897 |
-
#: ../cerber-lab.php:
|
898 |
msgid "NO, maybe later"
|
899 |
msgstr "Nej, kanske senare"
|
900 |
|
901 |
-
#: ../dashboard.php:54 ../dashboard.php:
|
902 |
-
#: php:
|
903 |
msgid "Dashboard"
|
904 |
msgstr "Adminpanel"
|
905 |
|
906 |
-
#: ../cerber-lab.php:
|
907 |
msgid "Want to make WP Cerber even more powerful?"
|
908 |
msgstr "Vill du göra WP Cerber ännu mer kraftfull?"
|
909 |
|
910 |
-
#: ../cerber-lab.php:
|
911 |
msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
|
912 |
msgstr "Tillåt WP Cerber att skicka utlåsta skadliga IP-adresser till Cerber Lab. Detta hjälper teamet för tillägget att utveckla nya algoritmer för WP Cerber som kommer att försvara WordPress mot nya hot och botnets som dyker upp varje dag. Du kan när som helst inaktivera sändningen i inställningarna för tillägget."
|
913 |
|
914 |
-
#: ../dashboard.php:
|
915 |
msgid "IP address"
|
916 |
msgstr "IP-adress"
|
917 |
|
918 |
-
#: ../dashboard.php:
|
919 |
msgid "User login"
|
920 |
msgstr "Användarinloggning"
|
921 |
|
922 |
-
#: ../dashboard.php:
|
923 |
msgid "User ID"
|
924 |
msgstr "Användar-ID"
|
925 |
|
926 |
-
#: ../dashboard.php:
|
927 |
msgid "Export"
|
928 |
msgstr "Exportera"
|
929 |
|
930 |
-
#: ../dashboard.php:
|
931 |
msgid "Search for IP or username"
|
932 |
msgstr "Sök efter IP eller användarnamn"
|
933 |
|
934 |
-
#: ../dashboard.php:
|
935 |
msgid "Filter"
|
936 |
msgstr "Filter"
|
937 |
|
@@ -943,35 +935,35 @@ msgstr "Cerber adminpanel"
|
|
943 |
msgid "Cerber tools"
|
944 |
msgstr "Cerber verktyg"
|
945 |
|
946 |
-
#: ../dashboard.php:
|
947 |
msgid "Subscribe"
|
948 |
msgstr "Prenumerera"
|
949 |
|
950 |
-
#: ../dashboard.php:
|
951 |
msgid "Unsubscribe"
|
952 |
msgstr "Avregistrera prenumeration"
|
953 |
|
954 |
-
#: ../dashboard.php:
|
955 |
msgid "You've subscribed"
|
956 |
msgstr "Du prenumererar"
|
957 |
|
958 |
-
#: ../dashboard.php:
|
959 |
msgid "You've unsubscribed"
|
960 |
msgstr "Du är avregistrerad"
|
961 |
|
962 |
-
#: ../cerber-load.php:
|
963 |
msgid "A new activity has been recorded"
|
964 |
msgstr "En ny aktivitet har registrerats"
|
965 |
|
966 |
-
#: ../cerber-load.php:
|
967 |
msgid "User"
|
968 |
msgstr "Användare"
|
969 |
|
970 |
-
#: ../cerber-load.php:
|
971 |
msgid "Search string"
|
972 |
msgstr "Söksträng"
|
973 |
|
974 |
-
#: ../cerber-load.php:
|
975 |
msgid "To unsubscribe click here"
|
976 |
msgstr "För att avregistrera prenumerationen klicka här"
|
977 |
|
@@ -995,7 +987,7 @@ msgstr "Pushmeddelanden"
|
|
995 |
msgid "Email notifications"
|
996 |
msgstr "E-postmeddelanden"
|
997 |
|
998 |
-
#: ../settings.php:216 ../settings.php:258 ../settings.php:
|
999 |
msgid "Use comma to specify multiple values"
|
1000 |
msgstr "Använd komma för att ange flera värden"
|
1001 |
|
@@ -1011,15 +1003,15 @@ msgstr "Hittade inga enheter"
|
|
1011 |
msgid "Not available"
|
1012 |
msgstr "Inte tillgänglig"
|
1013 |
|
1014 |
-
#: ../common.php:
|
1015 |
msgid "Password reset requested"
|
1016 |
msgstr "Lösenordsåterställning begärd"
|
1017 |
|
1018 |
-
#: ../common.php:
|
1019 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1020 |
msgstr "Gräns för om misslyckade reCAPTCHA-verifieringar uppnås"
|
1021 |
|
1022 |
-
#: ../common.php:
|
1023 |
msgid "%s ago"
|
1024 |
msgstr "%s sedan"
|
1025 |
|
@@ -1059,48 +1051,48 @@ msgstr "Begränsa försök"
|
|
1059 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1060 |
msgstr "Lås ut IP-adress i %s minuter efter %s misslyckade försök inom %s minuter"
|
1061 |
|
1062 |
-
#: ../settings.php:
|
1063 |
msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
|
1064 |
msgstr "I Citadel-läget kan ingen logga in utom IP-adresser från den vita IP-åtkomstlistan. Aktiva användarsessioner påverkas inte."
|
1065 |
|
1066 |
-
#: ../dashboard.php:
|
1067 |
msgid "Event"
|
1068 |
msgstr "Händelse"
|
1069 |
|
1070 |
-
#: ../common.php:
|
1071 |
msgid "Spam comments denied"
|
1072 |
msgstr "Skräppostkommentarer nekades"
|
1073 |
|
1074 |
-
#: ../common.php:
|
1075 |
msgid "Malicious IP addresses detected"
|
1076 |
msgstr "Skadliga IP-adresser upptäcktes"
|
1077 |
|
1078 |
-
#: ../common.php:
|
1079 |
msgid "Lockouts occurred"
|
1080 |
msgstr "Utlåsningar inträffade"
|
1081 |
|
1082 |
-
#: ../dashboard.php:
|
1083 |
msgid "All suspicious activity"
|
1084 |
msgstr "All misstänkt aktivitet"
|
1085 |
|
1086 |
-
#: ../cerber-load.php:
|
1087 |
-
#: /cerber-load.php:
|
1088 |
msgid "You are not allowed to register."
|
1089 |
msgstr "Du har inte behörighet att registrera."
|
1090 |
|
1091 |
-
#: ../common.php:
|
1092 |
msgid "Spam comment denied"
|
1093 |
msgstr "Skräppostkommentar nekad"
|
1094 |
|
1095 |
-
#: ../common.php:
|
1096 |
msgid "Attempt to log in denied"
|
1097 |
msgstr "Försök att logga in nekad"
|
1098 |
|
1099 |
-
#: ../common.php:
|
1100 |
msgid "Attempt to register denied"
|
1101 |
msgstr "Försök att registrera nekad"
|
1102 |
|
1103 |
-
#: ../common.php:
|
1104 |
msgid "Malicious activities mitigated"
|
1105 |
msgstr "Skadliga aktiviteter mildrades"
|
1106 |
|
@@ -1108,7 +1100,7 @@ msgstr "Skadliga aktiviteter mildrades"
|
|
1108 |
msgid "Cerber antispam settings"
|
1109 |
msgstr "Cerber antispam inställningar"
|
1110 |
|
1111 |
-
#: ../dashboard.php:67 ../dashboard.php:
|
1112 |
#: php:200
|
1113 |
msgid "Antispam"
|
1114 |
msgstr "Antispam"
|
@@ -1141,15 +1133,15 @@ msgstr "Diagnostik"
|
|
1141 |
msgid "License"
|
1142 |
msgstr "Licens"
|
1143 |
|
1144 |
-
#: ../
|
1145 |
msgid "Antispam and bot detection settings"
|
1146 |
msgstr "Inställningar för antispam och botdetektering"
|
1147 |
|
1148 |
-
#: ../cerber-load.php:
|
1149 |
msgid "Sorry, human verification failed."
|
1150 |
msgstr "Tyvärr, mänsklig verifiering misslyckades."
|
1151 |
|
1152 |
-
#: ../common.php:
|
1153 |
msgid "Bot activity is detected"
|
1154 |
msgstr "Botaktivitet är upptäckt"
|
1155 |
|
@@ -1169,7 +1161,7 @@ msgstr "Släng skräppostkommentarer"
|
|
1169 |
msgid "Move spam comments to trash after"
|
1170 |
msgstr "Flytta skräppostkommentarer till papperskorgen efter"
|
1171 |
|
1172 |
-
#: ../common.php:
|
1173 |
msgid "Spam form submission denied"
|
1174 |
msgstr "Skräppost nekades att skickas in via formulär"
|
1175 |
|
@@ -1193,7 +1185,7 @@ msgstr "Säkert läge"
|
|
1193 |
msgid "Use less restrictive policies (allow AJAX)"
|
1194 |
msgstr "Använd mindre restriktiva policyer (tillåt AJAX)"
|
1195 |
|
1196 |
-
#: ../dashboard.php:
|
1197 |
msgid "Logged in users"
|
1198 |
msgstr "Inloggade användare"
|
1199 |
|
@@ -1201,16 +1193,11 @@ msgstr "Inloggade användare"
|
|
1201 |
msgid "Disable bot detection engine for logged in users"
|
1202 |
msgstr "Inaktivera botdetekteringsmotor för inloggade användare"
|
1203 |
|
1204 |
-
|
1205 |
-
#:
|
1206 |
-
msgid "WP Cerber Security & Antispam"
|
1207 |
-
msgstr "WP Cerber Security & Antispam"
|
1208 |
-
|
1209 |
-
#: ../dashboard.php:135 ../dashboard.php:701
|
1210 |
msgid "Country"
|
1211 |
msgstr "Land"
|
1212 |
|
1213 |
-
#: ../dashboard.php:
|
1214 |
msgid "All events"
|
1215 |
msgstr "Alla händelser"
|
1216 |
|
@@ -1218,45 +1205,45 @@ msgstr "Alla händelser"
|
|
1218 |
msgid "Cerber Security Rules"
|
1219 |
msgstr "Cerber säkerhetsregler"
|
1220 |
|
1221 |
-
#: ../dashboard.php:60 ../dashboard.php:
|
1222 |
msgid "Security Rules"
|
1223 |
msgstr "Säkerhetsregler"
|
1224 |
|
1225 |
-
#: ../dashboard.php:
|
1226 |
msgid "Failed login attempts"
|
1227 |
msgstr "Misslyckade inloggningsförsök"
|
1228 |
|
1229 |
-
#: ../dashboard.php:
|
1230 |
msgid "Registered"
|
1231 |
msgstr "Registrerad"
|
1232 |
|
1233 |
-
#: ../dashboard.php:
|
1234 |
msgid "You"
|
1235 |
msgstr "Du"
|
1236 |
|
1237 |
-
#: ../common.php:
|
1238 |
msgid "Spam form submissions denied"
|
1239 |
msgstr "Inskickning av skräppostformulär nekad"
|
1240 |
|
1241 |
-
#: ../dashboard.php:
|
1242 |
msgid "Getting Started Guide"
|
1243 |
msgstr "Komma igång guiden"
|
1244 |
|
1245 |
-
#: ../dashboard.php:
|
1246 |
msgid "Countries"
|
1247 |
msgstr "Länder"
|
1248 |
|
1249 |
-
#: ../dashboard.php:
|
1250 |
msgid "Permitted for one country"
|
1251 |
msgid_plural "Permitted for %d countries"
|
1252 |
msgstr[0] "Tillåtet för ett land"
|
1253 |
msgstr[1] "Tillåtet för %d länder"
|
1254 |
|
1255 |
-
#: ../dashboard.php:
|
1256 |
msgid "No rule"
|
1257 |
msgstr "Ingen regel"
|
1258 |
|
1259 |
-
#: ../dashboard.php:
|
1260 |
msgid "Security rules have been updated"
|
1261 |
msgstr "Säkerhetsregler har uppdaterats"
|
1262 |
|
@@ -1265,47 +1252,47 @@ msgstr "Säkerhetsregler har uppdaterats"
|
|
1265 |
msgid "https://wpcerber.com"
|
1266 |
msgstr "https://wpcerber.com"
|
1267 |
|
1268 |
-
#: ../common.php:
|
1269 |
msgid "Form submission denied"
|
1270 |
msgstr "Formulärinlämning nekad"
|
1271 |
|
1272 |
-
#: ../common.php:
|
1273 |
msgid "Comment denied"
|
1274 |
msgstr "Kommentar nekad"
|
1275 |
|
1276 |
-
#: ../common.php:
|
1277 |
msgid "Request to REST API denied"
|
1278 |
msgstr "Begäran till REST API nekad"
|
1279 |
|
1280 |
-
#: ../common.php:
|
1281 |
msgid "XML-RPC request denied"
|
1282 |
msgstr "XML-RPC-förfråga nekad"
|
1283 |
|
1284 |
-
#: ../common.php:
|
1285 |
msgid "Bot detected"
|
1286 |
msgstr "Bot upptäckt"
|
1287 |
|
1288 |
-
#: ../common.php:
|
1289 |
msgid "Citadel mode is active"
|
1290 |
msgstr "Citadelläget är aktivt"
|
1291 |
|
1292 |
-
#: ../common.php:
|
1293 |
msgid "Malicious activity detected"
|
1294 |
msgstr "Skadlig aktivitet upptäckt"
|
1295 |
|
1296 |
-
#: ../common.php:
|
1297 |
msgid "Blocked by country rule"
|
1298 |
msgstr "Blockerad av landsregeln"
|
1299 |
|
1300 |
-
#: ../common.php:
|
1301 |
msgid "Limit reached"
|
1302 |
msgstr "Gräns nådd"
|
1303 |
|
1304 |
-
#: ../common.php:
|
1305 |
msgid "Multiple suspicious activities"
|
1306 |
msgstr "Flera misstänkta aktiviteter"
|
1307 |
|
1308 |
-
#: ../common.php:
|
1309 |
msgid "Multiple suspicious activities were detected"
|
1310 |
msgstr "Flera misstänkta aktiviteter upptäcktes"
|
1311 |
|
@@ -1341,39 +1328,39 @@ msgstr "efter registreringsdatum"
|
|
1341 |
msgid "Query whitelist"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: ../settings.php:
|
1345 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1346 |
msgstr "%s tillåtna registreringar inom %s minuter från ett IP"
|
1347 |
|
1348 |
-
#: ../dashboard.php:
|
1349 |
msgid "Start typing here to find a country"
|
1350 |
msgstr "Börja skriva här för att hitta ett land"
|
1351 |
|
1352 |
-
#: ../dashboard.php:
|
1353 |
msgid "Click on a country name to add it to the list of selected countries"
|
1354 |
msgstr "Klicka på ett landsnamn för att lägga till det i listan över valda länder"
|
1355 |
|
1356 |
-
#: ../dashboard.php:
|
1357 |
msgid "Submit forms"
|
1358 |
msgstr "Skicka formulär"
|
1359 |
|
1360 |
-
#: ../dashboard.php:
|
1361 |
msgid "Post comments"
|
1362 |
msgstr "Publicera kommentarer"
|
1363 |
|
1364 |
-
#: ../dashboard.php:
|
1365 |
msgid "Log in to the website"
|
1366 |
msgstr "Logga in på webbplatsen"
|
1367 |
|
1368 |
-
#: ../dashboard.php:
|
1369 |
msgid "Register on the website"
|
1370 |
msgstr "Registrera på webbplatsen"
|
1371 |
|
1372 |
-
#: ../dashboard.php:
|
1373 |
msgid "Use XML-RPC"
|
1374 |
msgstr "Använd XML-RPC"
|
1375 |
|
1376 |
-
#: ../dashboard.php:
|
1377 |
msgid "Use REST API"
|
1378 |
msgstr "Använd REST API"
|
1379 |
|
@@ -1385,11 +1372,11 @@ msgstr "Förneka det fullständigt"
|
|
1385 |
msgid "Mark it as spam"
|
1386 |
msgstr "Markera det som skräppost"
|
1387 |
|
1388 |
-
#: ../dashboard.php:
|
1389 |
msgid "in the last 24 hours"
|
1390 |
msgstr "under de senaste 24 timmarna"
|
1391 |
|
1392 |
-
#: ../dashboard.php:
|
1393 |
msgid "Main settings"
|
1394 |
msgstr "Huvudinställningar"
|
1395 |
|
@@ -1397,69 +1384,69 @@ msgstr "Huvudinställningar"
|
|
1397 |
msgid "Weekly reports"
|
1398 |
msgstr "Veckovisa rapporter"
|
1399 |
|
1400 |
-
#: ../settings.php:
|
1401 |
msgid "Sunday"
|
1402 |
msgstr "Söndag"
|
1403 |
|
1404 |
-
#: ../settings.php:
|
1405 |
msgid "Monday"
|
1406 |
msgstr "Måndag"
|
1407 |
|
1408 |
-
#: ../settings.php:
|
1409 |
msgid "Tuesday"
|
1410 |
msgstr "Tisdag"
|
1411 |
|
1412 |
-
#: ../settings.php:
|
1413 |
msgid "Wednesday"
|
1414 |
msgstr "Onsdag"
|
1415 |
|
1416 |
-
#: ../settings.php:
|
1417 |
msgid "Thursday"
|
1418 |
msgstr "Torsdag"
|
1419 |
|
1420 |
-
#: ../settings.php:
|
1421 |
msgid "Friday"
|
1422 |
msgstr "Fredag"
|
1423 |
|
1424 |
-
#: ../settings.php:
|
1425 |
msgid "Saturday"
|
1426 |
msgstr "Lördag"
|
1427 |
|
1428 |
-
#: ../settings.php:
|
1429 |
msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
|
1430 |
msgstr "Om du använder ett cachetillägg måste du lägga till din nya URL för inloggning till listan över sidor som inte ska caches."
|
1431 |
|
1432 |
#. translators: preposition of time
|
1433 |
-
#: ../settings.php:
|
1434 |
msgctxt "preposition of time"
|
1435 |
msgid "at"
|
1436 |
msgstr "vid"
|
1437 |
|
1438 |
-
#: ../cerber-load.php:
|
1439 |
msgid "Weekly report"
|
1440 |
msgstr "Veckorapport"
|
1441 |
|
1442 |
-
#: ../cerber-load.php:
|
1443 |
msgid "To change reporting settings visit"
|
1444 |
msgstr "För att ändra rapporteringsinställningar besök"
|
1445 |
|
1446 |
-
#: ../cerber-load.php:
|
1447 |
msgid "Your login page:"
|
1448 |
msgstr "Din inloggningssida:"
|
1449 |
|
1450 |
-
#: ../cerber-load.php:
|
1451 |
msgid "Your license is valid until"
|
1452 |
msgstr "Din licens är giltig till"
|
1453 |
|
1454 |
-
#: ../cerber-load.php:
|
1455 |
msgid "Activity details"
|
1456 |
msgstr "Aktivitetsdetaljer"
|
1457 |
|
1458 |
-
#: ../settings.php:
|
1459 |
msgid "Click to send now"
|
1460 |
msgstr "Klicka för att skicka nu"
|
1461 |
|
1462 |
-
#: ../cerber-load.php:
|
1463 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1464 |
msgstr ">>> Översättare av WP Cerber? För att få PRO-licens gratis, uppge dina kontaktuppgifter här: https://wpcerber.com/contact/"
|
1465 |
|
@@ -1471,28 +1458,23 @@ msgstr "E-post har skickats till"
|
|
1471 |
msgid "Unable to send email to"
|
1472 |
msgstr "Det går inte att skicka e-post till"
|
1473 |
|
1474 |
-
#: ../dashboard.php:
|
1475 |
msgid "Not permitted for one country"
|
1476 |
msgid_plural "Not permitted for %d countries"
|
1477 |
msgstr[0] "Inte tillåtet för ett land"
|
1478 |
msgstr[1] "Inte tillåtet för %d länder"
|
1479 |
|
1480 |
-
#: ../dashboard.php:
|
1481 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1482 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
1483 |
msgstr "Valda länder är tillåtna att %s, andra länder är inte tillåtna att"
|
1484 |
|
1485 |
-
#: ../dashboard.php:
|
1486 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1487 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
1488 |
msgstr "Valda länder är inte tillåtna att %s, andra länder har tillåtelse att"
|
1489 |
|
1490 |
-
|
1491 |
-
#:
|
1492 |
-
msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1493 |
-
msgstr ""
|
1494 |
-
|
1495 |
-
#: ../cerber-load.php:3596
|
1496 |
msgid "Weekly Report"
|
1497 |
msgstr "Veckorapport"
|
1498 |
|
@@ -1508,7 +1490,7 @@ msgstr "Visa enkel 404 sida"
|
|
1508 |
msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
|
1509 |
msgstr "Ange en del av frågesträngen eller sökvägen för att exkludera en begäran från inspektion av sökmotor. Ett objekt per rad."
|
1510 |
|
1511 |
-
#: ../settings.php:263 ../settings.php:
|
1512 |
msgid "if empty, email from notification settings will be used"
|
1513 |
msgstr "Om det är tomt kommer e-post från meddelandeinställningar att användas"
|
1514 |
|
@@ -1516,11 +1498,11 @@ msgstr "Om det är tomt kommer e-post från meddelandeinställningar att använd
|
|
1516 |
msgid "Enable reporting"
|
1517 |
msgstr "Aktivera rapportering"
|
1518 |
|
1519 |
-
#: ../cerber-load.php:
|
1520 |
msgid "Your last sign-in was %s from %s"
|
1521 |
msgstr "Din senaste inloggning var %s från %s"
|
1522 |
|
1523 |
-
#: ../cerber-load.php:
|
1524 |
msgid "Attempts to log in with non-existent username"
|
1525 |
msgstr "Försök att logga in med icke-existerande användarnamn"
|
1526 |
|
@@ -1536,79 +1518,79 @@ msgstr "Valfri kommentar för detta inlägg"
|
|
1536 |
msgid "You cannot add your IP address or network"
|
1537 |
msgstr "Du kan inte lägga till din IP-adress eller ditt nätverk"
|
1538 |
|
1539 |
-
#: ../cerber-news.php:
|
1540 |
msgid "Cool!"
|
1541 |
msgstr "Häftigt!"
|
1542 |
|
1543 |
#: ../settings.php:154
|
1544 |
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1545 |
-
msgstr ""
|
1546 |
|
1547 |
#: ../dashboard.php:56
|
1548 |
msgid "Cerber Traffic Inspector"
|
1549 |
msgstr "Cerber trafikkontroll"
|
1550 |
|
1551 |
-
#: ../dashboard.php:56 ../dashboard.php:
|
1552 |
msgid "Traffic Inspector"
|
1553 |
msgstr "Trafikinspektion"
|
1554 |
|
1555 |
-
#: ../dashboard.php:
|
1556 |
msgid "Traffic"
|
1557 |
msgstr "Trafik"
|
1558 |
|
1559 |
-
#: ../dashboard.php:
|
1560 |
msgid "Live traffic"
|
1561 |
msgstr "Live trafik"
|
1562 |
|
1563 |
-
#: ../dashboard.php:
|
1564 |
msgid "Request"
|
1565 |
msgstr "Förfrågan"
|
1566 |
|
1567 |
-
#: ../dashboard.php:
|
1568 |
msgid "Host Info"
|
1569 |
msgstr "Server information"
|
1570 |
|
1571 |
-
#: ../dashboard.php:
|
1572 |
msgid "User Agent"
|
1573 |
msgstr "Användaragent"
|
1574 |
|
1575 |
-
#: ../dashboard.php:
|
1576 |
msgid "All requests"
|
1577 |
msgstr "Alla förfrågningar"
|
1578 |
|
1579 |
-
#: ../dashboard.php:
|
1580 |
msgid "Not logged in visitors"
|
1581 |
msgstr "Inte inloggade besökare"
|
1582 |
|
1583 |
-
#: ../dashboard.php:
|
1584 |
msgid "Form submissions"
|
1585 |
msgstr "Formulärinlämningar"
|
1586 |
|
1587 |
-
#: ../dashboard.php:
|
1588 |
msgid "Page Not Found"
|
1589 |
msgstr "Sidan hittades inte"
|
1590 |
|
1591 |
-
#: ../dashboard.php:
|
1592 |
msgid "REST API"
|
1593 |
msgstr "REST API"
|
1594 |
|
1595 |
-
#: ../dashboard.php:
|
1596 |
msgid "XML-RPC"
|
1597 |
msgstr "XML-RPC"
|
1598 |
|
1599 |
-
#: ../dashboard.php:
|
1600 |
msgid "Longer than"
|
1601 |
msgstr "Längre än"
|
1602 |
|
1603 |
-
#: ../dashboard.php:
|
1604 |
msgid "Refresh"
|
1605 |
msgstr "Uppdatera"
|
1606 |
|
1607 |
-
#: ../common.php:
|
1608 |
msgid "Check for requests"
|
1609 |
msgstr "Kontrollera efter förfrågningar"
|
1610 |
|
1611 |
-
#: ../common.php:
|
1612 |
msgid "Not specified"
|
1613 |
msgstr "Inte specificerad"
|
1614 |
|
@@ -1636,7 +1618,7 @@ msgstr "Ignorera sökrobotar"
|
|
1636 |
msgid "Mask these form fields"
|
1637 |
msgstr "Maskera dessa formulärfält"
|
1638 |
|
1639 |
-
#: ../settings.php:
|
1640 |
msgid "milliseconds"
|
1641 |
msgstr "millisekunder"
|
1642 |
|
@@ -1656,59 +1638,59 @@ msgstr "Loggning"
|
|
1656 |
msgid "Save request fields"
|
1657 |
msgstr "Spara förfrågningsfält"
|
1658 |
|
1659 |
-
#: ../settings.php:
|
1660 |
msgid "Page generation time threshold"
|
1661 |
msgstr "Tidsgräns för sidgenerering"
|
1662 |
|
1663 |
-
#: ../dashboard.php:
|
1664 |
msgid "No requests have been logged."
|
1665 |
msgstr "Inga förfrågningar har loggats."
|
1666 |
|
1667 |
-
#: ../dashboard.php:
|
1668 |
msgid "enabled"
|
1669 |
msgstr "aktiverad"
|
1670 |
|
1671 |
-
#: ../dashboard.php:
|
1672 |
msgid "no connection"
|
1673 |
msgstr "Ingen anslutning"
|
1674 |
|
1675 |
-
#: ../dashboard.php:
|
1676 |
msgid "Advanced search"
|
1677 |
msgstr "Avancerad sökning"
|
1678 |
|
1679 |
-
#: ../dashboard.php:
|
1680 |
msgid "Last seen"
|
1681 |
msgstr "Senast sedd"
|
1682 |
|
1683 |
-
#: ../common.php:
|
1684 |
msgid "Probing for vulnerable PHP code"
|
1685 |
msgstr "Söker efter sårbar PHP-kod"
|
1686 |
|
1687 |
-
#: ../dashboard.php:
|
1688 |
msgid "Any"
|
1689 |
msgstr "Någon"
|
1690 |
|
1691 |
-
#: ../cerber-load.php:
|
1692 |
msgid "We're sorry, you are not allowed to proceed"
|
1693 |
msgstr "Vi är ledsna, du saknar behörighet att fortsätta"
|
1694 |
|
1695 |
#: ../settings.php:283
|
1696 |
msgid "Request whitelist"
|
1697 |
-
msgstr ""
|
1698 |
|
1699 |
#: ../settings.php:289
|
1700 |
msgid "Enter a request URI to exclude the request from inspection. One item per line."
|
1701 |
msgstr "Ange en URI-begäran för att utesluta begäran från inspektion. Ett objekt per rad."
|
1702 |
|
1703 |
-
#: ../settings.php:
|
1704 |
msgid "Save request headers"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: ../settings.php:
|
1708 |
msgid "Save $_SERVER"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: ../settings.php:
|
1712 |
msgid "Save request cookies"
|
1713 |
msgstr ""
|
1714 |
|
@@ -1720,23 +1702,23 @@ msgstr "Skydda adminskript"
|
|
1720 |
msgid "Block unauthorized access to load-scripts.php and load-styles.php"
|
1721 |
msgstr "Blockera obehörig åtkomst till load-scripts.php och load-styles.php"
|
1722 |
|
1723 |
-
#: ../common.php:
|
1724 |
msgid "Unable to create the directory"
|
1725 |
msgstr "Det går inte att skapa katalogen"
|
1726 |
|
1727 |
-
#: ../common.php:
|
1728 |
msgid "Destination folder access denied"
|
1729 |
msgstr "Åtkomst till destinationsmapp nekad"
|
1730 |
|
1731 |
-
#: ../common.php:
|
1732 |
msgid "File not found"
|
1733 |
msgstr "Filen hittades inte"
|
1734 |
|
1735 |
-
#: ../common.php:
|
1736 |
msgid "Unable to copy the file"
|
1737 |
msgstr "Det går inte att kopiera filen"
|
1738 |
|
1739 |
-
#: ../common.php:
|
1740 |
msgid "Unable to delete the file"
|
1741 |
msgstr "Det går inte att ta bort filen."
|
1742 |
|
@@ -1756,7 +1738,7 @@ msgstr "Bakåtkompatibelt läge"
|
|
1756 |
msgid "Standard mode"
|
1757 |
msgstr "Standardläge"
|
1758 |
|
1759 |
-
#: ../settings.php:
|
1760 |
msgid "Plugin initialization mode has not been changed"
|
1761 |
msgstr "Tilläggets initialiseringsläge har inte ändrats"
|
1762 |
|
@@ -1765,48 +1747,43 @@ msgstr "Tilläggets initialiseringsläge har inte ändrats"
|
|
1765 |
msgid "This is a standard boot module for WP Cerber Security & Antispam plugin. It was installed when you set the plugin initialization mode to Standard. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: ../common.php:
|
1769 |
msgid "Attempt to upload executable file denied"
|
1770 |
msgstr "Försök att ladda upp körbar fil nekad"
|
1771 |
|
1772 |
-
#: ../common.php:
|
1773 |
msgid "File upload denied"
|
1774 |
msgstr "Filuppladdning nekad"
|
1775 |
|
1776 |
-
#. Description of the plugin
|
1777 |
-
#:
|
1778 |
-
msgid "Protects WordPress against brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user and bot activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1779 |
-
msgstr "Skyddar WordPress mot brute force attacks, bots och hackare. Antispam-skydd med Cerber antispam-motor och reCAPTCHA. Omfattande kontroll av användar- och botaktivitet. Begränsa inloggning via IP-åtkomstlistor. Begränsa inloggningsförsök. Läs mer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1780 |
-
|
1781 |
#: ../settings.php:96
|
1782 |
msgid "Custom login URL may contain only letters, numbers, dashes and underscores"
|
1783 |
msgstr "Anpassad URL för inloggning kan endast innehålla bokstäver, siffror, bindestreck och understreck"
|
1784 |
|
1785 |
#: ../settings.php:178 ../settings.php:289
|
1786 |
msgid "To specify a REGEX pattern, enclose a whole line in two braces."
|
1787 |
-
msgstr ""
|
1788 |
|
1789 |
-
#: ../settings.php:
|
1790 |
msgid "Be careful about enabling these options."
|
1791 |
msgstr "Var försiktig med att aktivera dessa alternativ."
|
1792 |
|
1793 |
-
#: ../settings.php:
|
1794 |
msgid "If you forget your Custom login URL, you will be unable to log in."
|
1795 |
msgstr "Om du glömmer din anpassade URL för inloggning kommer du inte att kunna logga in."
|
1796 |
|
1797 |
-
#: ../dashboard.php:64 ../cerber-scanner.php:
|
1798 |
msgid "Site Integrity"
|
1799 |
msgstr "Webbplatsintegritet"
|
1800 |
|
1801 |
-
#: ../dashboard.php:
|
1802 |
msgid "Disabled"
|
1803 |
msgstr "Inaktiverad"
|
1804 |
|
1805 |
-
#: ../dashboard.php:
|
1806 |
msgid "Quick Scan"
|
1807 |
msgstr "Snabb skanning"
|
1808 |
|
1809 |
-
#: ../dashboard.php:
|
1810 |
msgid "Full Scan"
|
1811 |
msgstr "Fullständig skanning"
|
1812 |
|
@@ -1815,14 +1792,10 @@ msgstr "Fullständig skanning"
|
|
1815 |
msgid "WP Cerber Security, Antispam & Malware Scan"
|
1816 |
msgstr "WP Cerber Security, Antispam & Malware Scan"
|
1817 |
|
1818 |
-
#: ../common.php:
|
1819 |
msgid "Denied"
|
1820 |
msgstr "Nekad"
|
1821 |
|
1822 |
-
#: ../cerber-load.php:3472
|
1823 |
-
msgid "Scanner report"
|
1824 |
-
msgstr "Skanningsrapport"
|
1825 |
-
|
1826 |
#: ../settings.php:79 ../settings.php:278
|
1827 |
msgid "Use White IP Access List"
|
1828 |
msgstr "Använd vit IP-åtkomstlista"
|
@@ -1835,351 +1808,421 @@ msgstr "Inaktivera omdirigering av adminpanel"
|
|
1835 |
msgid "Disable automatic redirection to the login page when /wp-admin/ is requested by an unauthorized request"
|
1836 |
msgstr "Inaktivera automatisk omdirigering till inloggningssidan när /wp-admin/ begärs av en obehörig förfrågan"
|
1837 |
|
1838 |
-
#: ../settings.php:
|
1839 |
msgid "Scanner settings"
|
1840 |
msgstr "Skanningsinställningar"
|
1841 |
|
1842 |
-
#: ../settings.php:
|
1843 |
msgid "Custom signatures"
|
1844 |
msgstr "Anpassade signaturer"
|
1845 |
|
1846 |
-
#: ../settings.php:
|
1847 |
msgid "Specify custom PHP code signatures. One item per line. To specify a REGEX pattern, enclose a whole line in two braces."
|
1848 |
-
msgstr ""
|
1849 |
|
1850 |
-
#: ../settings.php:
|
1851 |
msgid "Unwanted file extensions"
|
1852 |
msgstr "Oönskade filtillägg"
|
1853 |
|
1854 |
-
#: ../settings.php:
|
1855 |
msgid "Specify file extensions to search for. Full scan only. Use comma to separate items."
|
1856 |
msgstr "Specifiera filtillägg att söka efter. Endast fullständig skanning. Använd komma för att separera objekt."
|
1857 |
|
1858 |
-
#: ../settings.php:
|
1859 |
msgid "Directories to exclude"
|
1860 |
msgstr "Kataloger att exkludera"
|
1861 |
|
1862 |
-
#: ../settings.php:
|
1863 |
msgid "Specify directories to exclude from scanning. Use absolute paths. One item per line."
|
1864 |
msgstr "Ange kataloger som ska exkluderas från skanning. Använd absoluta sökvägar. Ett objekt per rad."
|
1865 |
|
1866 |
-
#: ../settings.php:
|
1867 |
-
msgid "Report new files"
|
1868 |
-
msgstr "Rapportera nya filer"
|
1869 |
-
|
1870 |
-
#: ../settings.php:398
|
1871 |
-
msgid "Report modified files"
|
1872 |
-
msgstr "Rapportera ändrade filer"
|
1873 |
-
|
1874 |
-
#: ../settings.php:404
|
1875 |
msgid "Scan temporary directory"
|
1876 |
msgstr "Skanna tillfällig katalog"
|
1877 |
|
1878 |
-
#: ../settings.php:
|
1879 |
msgid "Scan session directory"
|
1880 |
msgstr "Skanna sessionskatalog"
|
1881 |
|
1882 |
-
#: ../settings.php:
|
1883 |
msgid "Delete quarantined files after"
|
1884 |
msgstr "Ta bort filer i karantän efter"
|
1885 |
|
1886 |
-
#: ../settings.php:
|
1887 |
msgid "Launch Quick Scan"
|
1888 |
msgstr "Starta snabbskanning"
|
1889 |
|
1890 |
-
#: ../cerber-scanner.php:
|
1891 |
msgid "Every hour"
|
1892 |
msgstr "Varje timme"
|
1893 |
|
1894 |
-
#: ../cerber-scanner.php:
|
1895 |
msgid "Every 3 hours"
|
1896 |
msgstr "Var 3:e timme"
|
1897 |
|
1898 |
-
#: ../cerber-scanner.php:
|
1899 |
msgid "Every 6 hours"
|
1900 |
msgstr "Var 6:e timme"
|
1901 |
|
1902 |
-
#: ../settings.php:
|
1903 |
msgid "Launch Full Scan"
|
1904 |
msgstr "Starta fullständig skanning"
|
1905 |
|
1906 |
-
#: ../settings.php:
|
1907 |
msgid "Low severity"
|
1908 |
msgstr "Låg allvarlighet"
|
1909 |
|
1910 |
-
#: ../settings.php:
|
1911 |
msgid "Medium severity"
|
1912 |
msgstr "Medel allvarlighet"
|
1913 |
|
1914 |
-
#: ../settings.php:
|
1915 |
msgid "High severity"
|
1916 |
msgstr "Hög allvarlighet"
|
1917 |
|
1918 |
-
#: ../settings.php:
|
1919 |
msgid "Report an issue if any of the following is true"
|
1920 |
msgstr "Rapportera ett problem om något av följande är sant"
|
1921 |
|
1922 |
-
#: ../settings.php:
|
1923 |
msgid "Send email report"
|
1924 |
msgstr "Skicka e-postrapport"
|
1925 |
|
1926 |
-
#: ../settings.php:
|
1927 |
msgid "After every scan"
|
1928 |
msgstr "Efter varje skanning"
|
1929 |
|
1930 |
-
#: ../settings.php:
|
1931 |
msgid "If any changes in scan results occurred"
|
1932 |
msgstr "Om några ändringar i skanningsresultat uppstod"
|
1933 |
|
1934 |
#: ../settings.php:471
|
1935 |
-
msgid "If new issues detected"
|
1936 |
-
msgstr "Om nya problem hittas"
|
1937 |
-
|
1938 |
-
#: ../settings.php:470
|
1939 |
msgid "Include file sizes"
|
1940 |
msgstr "Inkludera filstorlekar"
|
1941 |
|
1942 |
-
#: ../settings.php:
|
1943 |
msgid "Include scan errors"
|
1944 |
msgstr "Inkludera skanningsfel"
|
1945 |
|
1946 |
-
#: ../cerber-scanner.php:
|
1947 |
msgid "Security Scanner"
|
1948 |
msgstr "Säkerhetsskanning"
|
1949 |
|
1950 |
-
#: ../cerber-scanner.php:
|
1951 |
msgid "Scheduling"
|
1952 |
msgstr "Schemaläggning"
|
1953 |
|
1954 |
-
#: ../cerber-scanner.php:
|
1955 |
msgid "Currently a scheduled scan in progress. Please wait until it is finished."
|
1956 |
msgstr "För närvarande pågår en schemalagd skanning. Vänta tills det är klart."
|
1957 |
|
1958 |
-
#: ../cerber-scanner.php:
|
1959 |
msgid "Previous scan started %s has not been completed. Continue scanning?"
|
1960 |
msgstr "Föregående skanning startad %s har inte slutförts. Fortsätt skanning?"
|
1961 |
|
1962 |
-
#: ../cerber-scanner.php:
|
1963 |
msgid "It seems this website has never been scanned. To start scanning click the button below."
|
1964 |
msgstr "Det verkar som om denna webbplats aldrig har skannats. För att börja skanna, klicka på knappen nedan."
|
1965 |
|
1966 |
-
#: ../cerber-scanner.php:
|
1967 |
msgid "Start Quick Scan"
|
1968 |
msgstr "Starta snabb skanning"
|
1969 |
|
1970 |
-
#: ../cerber-scanner.php:
|
1971 |
msgid "Start Full Scan"
|
1972 |
msgstr "Starta fullständig skanning"
|
1973 |
|
1974 |
-
#: ../cerber-scanner.php:
|
1975 |
msgid "Stop Scanning"
|
1976 |
msgstr "Sluta skanna"
|
1977 |
|
1978 |
-
#: ../cerber-scanner.php:
|
1979 |
msgid "Continue Scanning"
|
1980 |
msgstr "Fortsätter skanning"
|
1981 |
|
1982 |
-
#: ../cerber-scanner.php:
|
1983 |
msgid "Delete"
|
1984 |
msgstr "Ta bort"
|
1985 |
|
1986 |
-
#: ../cerber-scanner.php:
|
1987 |
msgid "Verified"
|
1988 |
msgstr "Verifierad"
|
1989 |
|
1990 |
-
#: ../cerber-scanner.php:
|
1991 |
msgid "Integrity data not found"
|
1992 |
msgstr "Integritetsdata hittades inte"
|
1993 |
|
1994 |
-
#: ../cerber-scanner.php:
|
1995 |
msgid "Unable to check the integrity of the plugin due to a network error"
|
1996 |
msgstr "Kan inte kontrollera tilläggets integritet på grund av ett nätverksfel"
|
1997 |
|
1998 |
-
#: ../cerber-scanner.php:
|
1999 |
msgid "Unable to check the integrity of WordPress files due to a network error"
|
2000 |
msgstr "Kan inte kontrollera integriteten för WordPress-filer på grund av ett nätverksfel"
|
2001 |
|
2002 |
-
#: ../cerber-scanner.php:
|
2003 |
msgid "Unable to check the integrity of the theme due to a network error"
|
2004 |
msgstr "Kan inte kontrollera integriteten för tema på grund av ett nätverksfel"
|
2005 |
|
2006 |
-
#: ../cerber-scanner.php:
|
2007 |
msgid "Local file doesn't exist"
|
2008 |
msgstr "Lokal fil finns inte"
|
2009 |
|
2010 |
-
#: ../cerber-scanner.php:
|
2011 |
msgid "Unable to process file"
|
2012 |
msgstr "Kan inte bearbeta fil"
|
2013 |
|
2014 |
-
#: ../cerber-scanner.php:
|
2015 |
msgid "Unable to open file"
|
2016 |
msgstr "Kan inte öppna fil"
|
2017 |
|
2018 |
-
#: ../cerber-scanner.php:
|
2019 |
msgid "Checksum mismatch"
|
2020 |
msgstr "Kontrollsumma matchar inte"
|
2021 |
|
2022 |
-
#: ../cerber-scanner.php:
|
2023 |
msgid "Suspicious code found"
|
2024 |
msgstr "Misstänkt kod hittad"
|
2025 |
|
2026 |
-
#: ../cerber-scanner.php:
|
2027 |
msgid "Potentially malicious code found"
|
2028 |
msgstr "Potentiellt skadlig kod hittad"
|
2029 |
|
2030 |
-
#: ../cerber-scanner.php:
|
2031 |
msgid "Unattended suspicious file"
|
2032 |
msgstr "Obevakad misstänkt fil"
|
2033 |
|
2034 |
-
#: ../cerber-scanner.php:
|
2035 |
msgid "Executable code found"
|
2036 |
msgstr "Körbar kod hittad"
|
2037 |
|
2038 |
-
#: ../cerber-scanner.php:
|
2039 |
msgid "Unwanted file extension"
|
2040 |
msgstr "Oönskade filtillägg"
|
2041 |
|
2042 |
-
#: ../cerber-scanner.php:
|
2043 |
msgid "Content has been modified"
|
2044 |
msgstr "Innehållet har blivit ändrat"
|
2045 |
|
2046 |
-
#: ../cerber-scanner.php:
|
2047 |
msgid "New file"
|
2048 |
msgstr "Ny fil"
|
2049 |
|
2050 |
-
#: ../cerber-scanner.php:
|
2051 |
msgid "Custom signature found"
|
2052 |
msgstr "Anpassad signatur hittad"
|
2053 |
|
2054 |
-
#: ../cerber-scanner.php:
|
2055 |
msgid "Scanning folders for files"
|
2056 |
msgstr "Skanna mappar efter filer"
|
2057 |
|
2058 |
-
#: ../cerber-scanner.php:
|
2059 |
msgid "Parsing the list of files"
|
2060 |
msgstr "Analysera listan över filer"
|
2061 |
|
2062 |
-
#: ../cerber-scanner.php:
|
2063 |
msgid "Checking for new and modified files"
|
2064 |
msgstr "Söker efter nya och ändrade filer"
|
2065 |
|
2066 |
-
#: ../cerber-scanner.php:
|
2067 |
msgid "Verifying the integrity of WordPress"
|
2068 |
msgstr "Verifierar integriteten av WordPress"
|
2069 |
|
2070 |
-
#: ../cerber-scanner.php:
|
2071 |
msgid "Verifying the integrity of the plugins"
|
2072 |
msgstr "Verifierar integriteten av tilläggen"
|
2073 |
|
2074 |
-
#: ../cerber-scanner.php:
|
2075 |
msgid "Verifying the integrity of the themes"
|
2076 |
msgstr "Verifierar integriteten av teman"
|
2077 |
|
2078 |
-
#: ../cerber-scanner.php:
|
2079 |
msgid "Searching for malicious code"
|
2080 |
msgstr "Söker efter skadlig kod"
|
2081 |
|
2082 |
-
#: ../cerber-scanner.php:
|
2083 |
msgid "Finalizing the scan"
|
2084 |
msgstr "Slutför skanningen"
|
2085 |
|
2086 |
-
#: ../cerber-scanner.php:
|
2087 |
msgid "Files to scan"
|
2088 |
msgstr "Filer att skanna"
|
2089 |
|
2090 |
-
#: ../cerber-scanner.php:
|
2091 |
msgid "Critical issues"
|
2092 |
msgstr "Kritiska problem"
|
2093 |
|
2094 |
-
#: ../cerber-scanner.php:
|
2095 |
msgid "Issues total"
|
2096 |
msgstr "Problem totalt"
|
2097 |
|
2098 |
-
#: ../cerber-scanner.php:
|
2099 |
msgid "The directory is not writable"
|
2100 |
msgstr "Katalogen är inte skrivbar"
|
2101 |
|
2102 |
-
#: ../cerber-scanner.php:
|
2103 |
msgid "Unable to create WP CERBER directory"
|
2104 |
msgstr "Kan inte skapa WP CERBER-katalog"
|
2105 |
|
2106 |
-
#: ../cerber-scanner.php:
|
2107 |
msgid "File access error. Possibly scan results are outdated. Please run Quick or Full Scan."
|
2108 |
msgstr "Filåtkomstfel. Möjliga skanningsresultat är föråldrade. Kör snabb eller full skanning."
|
2109 |
|
2110 |
-
#: ../cerber-scanner.php:
|
2111 |
-
msgid "Cerber Security Scanner"
|
2112 |
-
msgstr ""
|
2113 |
-
|
2114 |
-
#: ../cerber-scanner.php:4594
|
2115 |
msgid "To view full report visit"
|
2116 |
msgstr "För att visa fullständigt rapport besök"
|
2117 |
|
2118 |
-
#: ../cerber-load.php:
|
2119 |
msgid "Scanner Report"
|
2120 |
msgstr "Skanningsrapport"
|
2121 |
|
2122 |
-
#: ../settings.php:
|
2123 |
msgid "Monitor new files"
|
2124 |
msgstr "Övervaka nya filer"
|
2125 |
|
2126 |
-
#: ../settings.php:
|
2127 |
msgid "Monitor modified files"
|
2128 |
msgstr "Övervaka ändrade filer"
|
2129 |
|
2130 |
-
#: ../settings.php:
|
2131 |
msgid "If new issues found"
|
2132 |
msgstr "Om nya problem hittas"
|
2133 |
|
2134 |
-
#: ../settings.php:
|
2135 |
msgid "The schedule has been updated"
|
2136 |
msgstr "Schemat har uppdaterats"
|
2137 |
|
2138 |
-
#: ../settings.php:
|
2139 |
msgid "Unable to updated the schedule"
|
2140 |
msgstr "Det gick inte att uppdatera schemat"
|
2141 |
|
2142 |
-
#: ../cerber-scanner.php:
|
2143 |
msgid "Suspicious directives found"
|
2144 |
msgstr "Suspekta direktiv hittades"
|
2145 |
|
2146 |
-
#: ../cerber-scanner.php:
|
2147 |
msgid "Suspicious code instruction found"
|
2148 |
msgstr "Misstänkt kodinstruktion hittades"
|
2149 |
|
2150 |
-
#: ../cerber-scanner.php:
|
2151 |
msgid "Suspicious code signatures found"
|
2152 |
msgstr "Misstänkta kodsignaturer hittades"
|
2153 |
|
2154 |
-
#: ../cerber-scanner.php:
|
2155 |
msgid "To solve this issue you have to reinstall %s or update it to the latest version."
|
2156 |
msgstr "För att lösa problemet måste du installera om %s eller uppdatera den till den senaste versionen."
|
2157 |
|
2158 |
-
#: ../cerber-scanner.php:
|
2159 |
msgid "Please upload a reference ZIP archive"
|
2160 |
msgstr "Ladda upp ett referens-ZIP-arkiv"
|
2161 |
|
2162 |
-
#: ../cerber-scanner.php:
|
2163 |
msgid "Resolve issue"
|
2164 |
msgstr "Lös problemet"
|
2165 |
|
2166 |
-
#: ../cerber-scanner.php:
|
2167 |
msgid "We have not found any integrity data to verify"
|
2168 |
msgstr "Vi har inte hittat några integritetsdata att verifiera"
|
2169 |
|
2170 |
-
#: ../cerber-scanner.php:
|
2171 |
msgid "You have to upload a ZIP archive from which you've installed it. This enables the security scanner to verify the integrity of the code and detect malware."
|
2172 |
msgstr "Du måste ladda upp ett ZIP-arkiv från där du har installerat det. Detta gör det möjligt för säkerhetsskannern att verifiera kodens integritet och upptäcka skadlig kod."
|
2173 |
|
2174 |
-
#: ../cerber-scanner.php:
|
2175 |
msgid "Full Scan Report"
|
2176 |
msgstr "Fullständig skanningsrapport"
|
2177 |
|
2178 |
-
#: ../cerber-scanner.php:
|
2179 |
msgid "Quick Scan Report"
|
2180 |
msgstr "Snabbskanningsrapport"
|
2181 |
|
2182 |
-
#: ../cerber-scanner.php:
|
2183 |
msgid "Files scanned"
|
2184 |
msgstr "Filerna skannas"
|
2185 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
73 |
msgstr "Blockera direktåtkomst till wp-login.php och returnera HTTP 404 inte hittade fel"
|
74 |
|
75 |
+
#: ../dashboard.php:1285 ../settings.php:101
|
76 |
msgid "Citadel mode"
|
77 |
msgstr "Citadelläge"
|
78 |
|
84 |
msgid "Duration"
|
85 |
msgstr "Varaktighet"
|
86 |
|
87 |
+
#: ../cerber-load.php:4261 ../settings.php:80 ../settings.php:104 ../settings.php:
|
88 |
+
#: 581
|
89 |
msgid "Notifications"
|
90 |
msgstr "Notiser"
|
91 |
|
93 |
msgid "Send notification to admin email"
|
94 |
msgstr "Skicka meddelande till admins e-post"
|
95 |
|
96 |
+
#: ../cerber-load.php:4258 ../settings.php:571 ../cerber-tools.php:92 ../cerber-
|
97 |
#: tools.php:101 ../cerber-tools.php:182
|
98 |
msgid "Access Lists"
|
99 |
msgstr "Åtkomstlistor"
|
100 |
|
101 |
+
#: ../dashboard.php:1319 ../dashboard.php:1645 ../cerber-load.php:3983 ..
|
102 |
+
#: /settings.php:106 ../settings.php:560
|
103 |
msgid "Activity"
|
104 |
msgstr "Aktivitet"
|
105 |
|
106 |
+
#: ../settings.php:564
|
107 |
msgid "Lockouts"
|
108 |
msgstr "Utlåsningar"
|
109 |
|
110 |
+
#: ../settings.php:694 ../settings.php:816
|
111 |
msgid "%s allowed retries in %s minutes"
|
112 |
msgstr "%s tillåtna försök på %s minuter"
|
113 |
|
114 |
+
#: ../settings.php:716 ../settings.php:838
|
115 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
116 |
msgstr "Aktivera efter %s misslyckade inloggningsförsök under senaste %s minuter"
|
117 |
|
118 |
+
#: ../dashboard.php:133 ../dashboard.php:711 ../dashboard.php:3050 ../cerber-load.
|
119 |
+
#: php:3992
|
120 |
msgid "IP"
|
121 |
msgstr "IP"
|
122 |
|
123 |
+
#: ../dashboard.php:543 ../dashboard.php:714 ../dashboard.php:3048
|
124 |
msgid "Date"
|
125 |
msgstr "Datum"
|
126 |
|
127 |
+
#: ../dashboard.php:543 ../dashboard.php:716 ../dashboard.php:3053
|
128 |
msgid "Local User"
|
129 |
msgstr "Lokal användare"
|
130 |
|
131 |
+
#: ../dashboard.php:543 ../dashboard.php:717 ../cerber-load.php:4000
|
132 |
msgid "Username used"
|
133 |
msgstr "Användarnamn används"
|
134 |
|
136 |
msgid "Showing last %d records from %d"
|
137 |
msgstr "Visar senaste %d poster från %d"
|
138 |
|
139 |
+
#: ../common.php:835
|
140 |
msgid "Logged in"
|
141 |
msgstr "Inloggad"
|
142 |
|
143 |
+
#: ../common.php:836
|
144 |
msgid "Logged out"
|
145 |
msgstr "Utloggad"
|
146 |
|
147 |
+
#: ../common.php:837
|
148 |
msgid "Login failed"
|
149 |
msgstr "Inloggning misslyckades"
|
150 |
|
151 |
+
#: ../common.php:840
|
152 |
msgid "IP blocked"
|
153 |
msgstr "IP blockerad"
|
154 |
|
155 |
+
#: ../common.php:841
|
156 |
msgid "Subnet blocked"
|
157 |
msgstr "Undernät blockerat"
|
158 |
|
159 |
+
#: ../common.php:843
|
160 |
msgid "Citadel activated!"
|
161 |
msgstr "Citadel aktiverat!"
|
162 |
|
163 |
+
#: ../dashboard.php:691 ../dashboard.php:919 ../dashboard.php:2880 ../common.php:
|
164 |
+
#: 889
|
165 |
msgid "Locked out"
|
166 |
msgstr "Utlåst"
|
167 |
|
168 |
+
#: ../common.php:890
|
169 |
msgid "IP blacklisted"
|
170 |
msgstr "IP svartlistad"
|
171 |
|
172 |
+
#: ../common.php:858
|
173 |
msgid "Password changed"
|
174 |
msgstr "Lösenord ändrat"
|
175 |
|
181 |
msgid "Lockout for %s was removed"
|
182 |
msgstr "Utlåsning för %s borttagen"
|
183 |
|
184 |
+
#: ../dashboard.php:171 ../dashboard.php:686 ../dashboard.php:913 ../dashboard.
|
185 |
+
#: php:1283 ../dashboard.php:2875 ../cerber-load.php:4246 ../settings.php:518
|
186 |
msgid "White IP Access List"
|
187 |
msgstr "Vita IP-åtkomstlistan"
|
188 |
|
189 |
+
#: ../dashboard.php:173 ../dashboard.php:687 ../dashboard.php:916 ../dashboard.
|
190 |
+
#: php:1284 ../dashboard.php:2876
|
191 |
msgid "Black IP Access List"
|
192 |
msgstr "Svarta IP-åtkomstlistan"
|
193 |
|
203 |
msgid "Address %s was added to Black IP Access List"
|
204 |
msgstr "Adress %s har lagts till i svarta IP-åtkomstlistan"
|
205 |
|
206 |
+
#: ../cerber-load.php:3415
|
207 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
208 |
msgstr "Citadelläge är aktiverad efter %d misslyckades inloggningsförsök inom %d minuter."
|
209 |
|
210 |
+
#: ../dashboard.php:1806 ../dashboard.php:2210
|
211 |
msgid "View Activity"
|
212 |
msgstr "Visa aktivitet"
|
213 |
|
214 |
+
#: ../dashboard.php:2724 ../cerber-tools.php:91 ../cerber-tools.php:100 ../cerber-
|
215 |
+
#: scanner.php:85
|
216 |
msgid "Settings"
|
217 |
msgstr "Inställningar"
|
218 |
|
219 |
+
#: ../dashboard.php:1146
|
220 |
msgid "Last login"
|
221 |
msgstr "Senaste inloggning"
|
222 |
|
223 |
+
#: ../dashboard.php:1179 ../dashboard.php:1266 ../common.php:1000
|
224 |
msgid "Never"
|
225 |
msgstr "Aldrig"
|
226 |
|
227 |
+
#: ../dashboard.php:1691
|
228 |
msgid "Are you sure?"
|
229 |
msgstr "Är du säker?"
|
230 |
|
231 |
+
#: ../dashboard.php:1487 ../settings.php:81
|
232 |
msgid "My site is behind a reverse proxy"
|
233 |
msgstr "Min webbplats är bakom en omvänd proxy"
|
234 |
|
240 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
241 |
msgstr "Blockera omedelbart IP vid försök att logga in med ett icke-existerande användarnamn"
|
242 |
|
243 |
+
#: ../settings.php:504
|
|
|
|
|
|
|
|
|
244 |
msgid "Make your protection smarter!"
|
245 |
msgstr "Gör ditt skydd smartare!"
|
246 |
|
247 |
+
#: ../settings.php:508
|
248 |
msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
|
249 |
msgstr "Aktivera permalänkar för att använda denna funktion. Ange inställningar för permalänkar till något annat än standard."
|
250 |
|
251 |
+
#: ../cerber-load.php:4256 ../settings.php:567
|
252 |
msgid "Main Settings"
|
253 |
msgstr "Huvudinställningar"
|
254 |
|
255 |
+
#: ../dashboard.php:2725 ../settings.php:584 ../cerber-tools.php:51 ../cerber-
|
256 |
+
#: scanner.php:87
|
257 |
msgid "Help"
|
258 |
msgstr "Hjälp"
|
259 |
|
260 |
+
#: ../settings.php:704 ../settings.php:826
|
261 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
262 |
msgstr "Öka utlåsningens varaktighet till %s timmar efter %s utlåsningar under de senaste %s timmarna"
|
263 |
|
264 |
+
#: ../cerber-load.php:368
|
265 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
266 |
msgstr "Du har inte rätt att logga in. Fråga din administratör om hjälp."
|
267 |
|
268 |
+
#: ../cerber-load.php:394
|
|
|
|
|
|
|
|
|
269 |
msgid "You have only one attempt remaining."
|
270 |
msgid_plural "You have %d attempts remaining."
|
271 |
msgstr[0] "Du har bara ett försök kvar."
|
272 |
msgstr[1] "Du har %d försök kvar."
|
273 |
|
274 |
+
#: ../dashboard.php:739
|
275 |
msgid "No activity has been logged."
|
276 |
msgstr "Ingen aktivitet har loggats."
|
277 |
|
291 |
msgid "Your IP"
|
292 |
msgstr "Ditt IP"
|
293 |
|
294 |
+
#: ../cerber-load.php:3416
|
295 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
296 |
msgstr "Senast misslyckat försök var %s från IP %s med användarinloggning: %s."
|
297 |
|
298 |
+
#: ../cerber-load.php:4211
|
299 |
msgid "Can't activate WP Cerber due to a database error."
|
300 |
msgstr "Kan inte aktivera WP Cerber på grund av ett databasfel."
|
301 |
|
302 |
+
#: ../settings.php:711 ../settings.php:833
|
303 |
msgid "Notify admin if the number of active lockouts above"
|
304 |
msgstr "Meddela admin om antalet aktiva utlåsningar ovan"
|
305 |
|
306 |
+
#: ../settings.php:107 ../settings.php:183 ../settings.php:358 ../settings.php:423
|
307 |
msgid "days"
|
308 |
msgstr "dagar"
|
309 |
|
310 |
+
#: ../dashboard.php:1236
|
311 |
msgid "Cerber Quick View"
|
312 |
msgstr "Cerber snabböversikt"
|
313 |
|
328 |
msgid "Always block entire subnet Class C of intruders IP"
|
329 |
msgstr "Blockera alltid hela undernätet Klass C av inkräktande IP"
|
330 |
|
331 |
+
#: ../settings.php:104 ../settings.php:713 ../settings.php:835
|
332 |
msgid "Click to send test"
|
333 |
msgstr "Klicka för att skicka test"
|
334 |
|
335 |
+
#: ../settings.php:1000 ../settings.php:1001
|
336 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
337 |
msgstr "Observera! Du har ändrat URL för inloggning! Den nya URL:en för inloggning är"
|
338 |
|
339 |
+
#: ../dashboard.php:1145
|
340 |
msgid "Comments"
|
341 |
msgstr "Kommentarer"
|
342 |
|
343 |
+
#: ../common.php:1185
|
344 |
msgid "Update to version %s of WP Cerber"
|
345 |
msgstr "Uppdatera till version %s av WP Cerber"
|
346 |
|
347 |
+
#: ../cerber-load.php:3417 ../cerber-load.php:4024
|
348 |
msgid "View activity in dashboard"
|
349 |
msgstr "Visa aktivitet i adminpanel"
|
350 |
|
351 |
+
#: ../cerber-load.php:3447
|
352 |
msgid "Number of active lockouts"
|
353 |
msgstr "Antal aktiva utlåsningar"
|
354 |
|
355 |
+
#: ../cerber-load.php:3451
|
356 |
msgid "View lockouts in dashboard"
|
357 |
msgstr "Visa utlåsningar i adminpanelen"
|
358 |
|
359 |
+
#: ../cerber-load.php:3539
|
360 |
msgid "This message was sent by"
|
361 |
msgstr "Detta meddelande skickades av"
|
362 |
|
400 |
msgid "What do you want to import?"
|
401 |
msgstr "Vad vill du importera?"
|
402 |
|
403 |
+
#: ../cerber-tools.php:102 ../cerber-scanner.php:3588
|
404 |
msgid "Upload file"
|
405 |
msgstr "Ladda upp fil"
|
406 |
|
420 |
msgid "Error while parsing file"
|
421 |
msgstr "Fel uppstod vid analyseringen av fil"
|
422 |
|
423 |
+
#: ../dashboard.php:134 ../dashboard.php:712
|
424 |
msgid "Hostname"
|
425 |
msgstr "Värdnamn"
|
426 |
|
428 |
msgid "unknown"
|
429 |
msgstr "okänd"
|
430 |
|
431 |
+
#: ../settings.php:107 ../settings.php:354
|
432 |
msgid "Keep records for"
|
433 |
msgstr "Behåll uppgifter i"
|
434 |
|
435 |
+
#: ../dashboard.php:1270 ../dashboard.php:1292
|
436 |
msgid "active"
|
437 |
msgstr "aktivt"
|
438 |
|
439 |
+
#: ../dashboard.php:1270
|
440 |
msgid "deactivate"
|
441 |
msgstr "inaktivera"
|
442 |
|
443 |
+
#: ../dashboard.php:1272
|
444 |
msgid "not active"
|
445 |
msgstr "Inte aktiv"
|
446 |
|
447 |
+
#: ../dashboard.php:1273 ../dashboard.php:1287
|
448 |
msgid "disabled"
|
449 |
msgstr "inaktiverad"
|
450 |
|
451 |
+
#: ../dashboard.php:1278
|
452 |
msgid "failed attempts"
|
453 |
msgstr "misslyckade försök"
|
454 |
|
455 |
+
#: ../dashboard.php:1278 ../dashboard.php:1279
|
456 |
msgid "in 24 hours"
|
457 |
msgstr "om 24 timmar"
|
458 |
|
459 |
+
#: ../dashboard.php:1278 ../dashboard.php:1279
|
460 |
msgid "view all"
|
461 |
msgstr "visa alla"
|
462 |
|
463 |
+
#: ../dashboard.php:1279
|
464 |
msgid "lockouts"
|
465 |
msgstr "Utlåsningar"
|
466 |
|
467 |
+
#: ../dashboard.php:1281
|
468 |
msgid "Lockouts at the moment"
|
469 |
msgstr "Utlåsningar just nu"
|
470 |
|
471 |
+
#: ../dashboard.php:1282
|
472 |
msgid "Last lockout"
|
473 |
msgstr "Senaste utlåsning"
|
474 |
|
475 |
+
#: ../dashboard.php:1283 ../dashboard.php:1284 ../dashboard.php:1977
|
476 |
msgid "entry"
|
477 |
msgid_plural "entries"
|
478 |
msgstr[0] ""
|
479 |
msgstr[1] ""
|
480 |
|
481 |
+
#: ../dashboard.php:1686
|
482 |
msgid "Confused about some settings?"
|
483 |
msgstr "Förvirrad på några inställningar?"
|
484 |
|
485 |
+
#: ../dashboard.php:1687
|
486 |
msgid "You can easily load default recommended settings using button below"
|
487 |
msgstr "Du kan enkelt ladda de rekommenderade standardinställningarna med knappen nedan"
|
488 |
|
489 |
+
#: ../dashboard.php:1689
|
490 |
msgid "Load default settings"
|
491 |
msgstr "Ladda standardinställningar"
|
492 |
|
493 |
+
#: ../dashboard.php:1697
|
494 |
msgid "doesn't affect Custom login URL and Access Lists"
|
495 |
msgstr "påverkar inte anpassad URL för inloggning och åtkomstlistor"
|
496 |
|
497 |
+
#: ../common.php:1178 ../settings.php:225
|
498 |
msgid "New version is available"
|
499 |
msgstr "Ny version tillgänglig"
|
500 |
|
503 |
msgid "WP Cerber"
|
504 |
msgstr "WP Cerber"
|
505 |
|
506 |
+
#: ../cerber-load.php:3391
|
507 |
msgid "WP Cerber notify"
|
508 |
msgstr "WP Cerber meddelar"
|
509 |
|
510 |
+
#: ../cerber-load.php:3413
|
511 |
msgid "Citadel mode is activated"
|
512 |
msgstr "Citadelläge är aktiverat"
|
513 |
|
514 |
+
#: ../cerber-load.php:3486
|
515 |
msgid "New Custom login URL"
|
516 |
msgstr "Ny anpassad URL för inloggning"
|
517 |
|
518 |
+
#: ../cerber-load.php:4198
|
519 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
520 |
msgstr "WP Cerber kräver PHP %s eller högre. Du kör"
|
521 |
|
522 |
+
#: ../cerber-load.php:4202
|
523 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
524 |
msgstr "WP Cerber kräver WordPress %s eller högre. Du kör"
|
525 |
|
531 |
msgid "Write failed login attempts to the file"
|
532 |
msgstr "Skriv misslyckade inloggningsförsök till fil"
|
533 |
|
534 |
+
#: ../dashboard.php:1805
|
535 |
msgid "Deactivate"
|
536 |
msgstr "Inaktivera"
|
537 |
|
538 |
+
#: ../dashboard.php:137 ../cerber-load.php:3449
|
539 |
msgid "Reason"
|
540 |
msgstr "Anledning"
|
541 |
|
543 |
msgid "Add IP to the list"
|
544 |
msgstr "Lägg till IP till listan"
|
545 |
|
546 |
+
#: ../dashboard.php:976
|
547 |
msgid "Add IP to the Black List"
|
548 |
msgstr "Lägg till IP i svartlistan"
|
549 |
|
550 |
+
#: ../common.php:925
|
551 |
msgid "Attempt to access"
|
552 |
msgstr "Försök att komma åt"
|
553 |
|
554 |
+
#: ../common.php:924
|
555 |
msgid "Limit on login attempts is reached"
|
556 |
msgstr "Gränsen för inloggningsförsök är nådd"
|
557 |
|
558 |
+
#: ../common.php:866 ../common.php:926
|
559 |
msgid "Attempt to log in with non-existent username"
|
560 |
msgstr "Försök att logga in med icke-existerande användarnamn"
|
561 |
|
562 |
+
#: ../cerber-load.php:3448
|
563 |
msgid "Last lockout was added: %s for IP %s"
|
564 |
msgstr "Senaste utlåsningen lades till: %s för IP %s"
|
565 |
|
566 |
+
#: ../cerber-load.php:4260 ../settings.php:574
|
567 |
msgid "Hardening"
|
568 |
msgstr "Förstärk"
|
569 |
|
570 |
+
#: ../dashboard.php:953
|
571 |
msgid "Abuse email:"
|
572 |
msgstr "E-post för missbruk:"
|
573 |
|
574 |
+
#: ../settings.php:212 ../settings.php:253 ../settings.php:485
|
575 |
msgid "Email Address"
|
576 |
msgstr "E-postadress"
|
577 |
|
615 |
msgid "Disable REST API"
|
616 |
msgstr "Inaktivera REST API"
|
617 |
|
618 |
+
#: ../settings.php:518
|
619 |
msgid "These settings do not affect hosts from the "
|
620 |
msgstr "Dessa inställningar påverkar inte servrar från"
|
621 |
|
622 |
+
#: ../settings.php:1078 ../settings.php:1090 ../settings.php:1218
|
623 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
624 |
msgstr "<strong>FEL</strong>: Ange en giltig e-postadress."
|
625 |
|
626 |
+
#: ../cerber-load.php:3479 ../cerber-load.php:4245
|
627 |
msgid "WP Cerber is now active and has started protecting your site"
|
628 |
msgstr "WP Cerber är nu aktiv och har börjat skydda din webbplats"
|
629 |
|
639 |
msgid "Incorrect IP address or IP range"
|
640 |
msgstr "Felaktig IP-adress eller IP-intervall"
|
641 |
|
642 |
+
#: ../dashboard.php:445 ../dashboard.php:1821
|
643 |
msgid "Settings saved"
|
644 |
msgstr "Inställningar sparade"
|
645 |
|
646 |
+
#: ../dashboard.php:957
|
647 |
msgid "Network:"
|
648 |
msgstr "Nätverk:"
|
649 |
|
650 |
+
#: ../dashboard.php:971
|
651 |
msgid "Add network to the Black List"
|
652 |
msgstr "Lägg till nätverk i svartlistan"
|
653 |
|
654 |
+
#: ../dashboard.php:1804
|
655 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
656 |
msgstr "Observera! Citadelläget är nu aktivt. Ingen kan logga in."
|
657 |
|
658 |
+
#: ../dashboard.php:353 ../dashboard.php:2805 ../whois.php:223 ../whois.php:254 ..
|
659 |
+
#: /common.php:923 ../common.php:1269
|
660 |
msgid "Unknown"
|
661 |
msgstr "Okänd"
|
662 |
|
665 |
msgid "Gregory"
|
666 |
msgstr "Gregory"
|
667 |
|
668 |
+
#: ../common.php:209 ../common.php:272 ../common.php:277 ../common.php:282 ..
|
669 |
+
#: /cerber-load.php:677 ../cerber-load.php:689 ../cerber-load.php:696 ../cerber-
|
670 |
+
#: load.php:950 ../cerber-load.php:1172 ../cerber-load.php:1178 ../cerber-load.
|
671 |
+
#: php:1183 ../cerber-load.php:1188 ../cerber-load.php:1194 ../cerber-load.php:
|
672 |
+
#: 1201 ../cerber-load.php:1303 ../cerber-load.php:1440 ../settings.php:979 ..
|
673 |
+
#: /settings.php:1048
|
674 |
msgid "ERROR:"
|
675 |
msgstr "FEL:"
|
676 |
|
677 |
+
#: ../cerber-load.php:706
|
678 |
msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
|
679 |
msgstr "Mänsklig verifikation misslyckades. Klicka på rutan i reCAPTCHA-blocket nedan."
|
680 |
|
681 |
+
#: ../cerber-load.php:962
|
682 |
msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
|
683 |
msgstr "<strong>FEL</strong>: Lösenordet du angav för användarnamnet %s är felaktigt."
|
684 |
|
685 |
+
#: ../cerber-load.php:1189
|
686 |
msgid "Username is not allowed. Please choose another one."
|
687 |
msgstr "Användarnamn är inte tillåtet. Välj ett annat."
|
688 |
|
689 |
+
#: ../cerber-load.php:3442
|
690 |
msgid "unspecified"
|
691 |
msgstr "Ospecificerat"
|
692 |
|
693 |
+
#: ../cerber-load.php:3445
|
694 |
msgid "Number of lockouts is increasing"
|
695 |
msgstr "Antal utlåsningar är stigande"
|
696 |
|
697 |
+
#: ../cerber-load.php:3450
|
698 |
msgid "View activity for this IP"
|
699 |
msgstr "Visa aktivitet för detta IP"
|
700 |
|
701 |
+
#: ../cerber-load.php:3454 ../cerber-load.php:3456
|
702 |
msgid "A new version of WP Cerber is available to install"
|
703 |
msgstr "En ny version av WP Cerber är tillgänglig att installeras"
|
704 |
|
705 |
+
#: ../cerber-load.php:3455
|
706 |
msgid "Hi!"
|
707 |
msgstr "Hej!"
|
708 |
|
709 |
+
#: ../cerber-load.php:3458 ../cerber-load.php:3469
|
710 |
msgid "Website"
|
711 |
msgstr "Webbplats"
|
712 |
|
713 |
+
#: ../cerber-load.php:3461 ../cerber-load.php:3462
|
714 |
msgid "The WP Cerber security plugin has been deactivated"
|
715 |
msgstr "Säkerhetstillägget WP Cerber har blivit avaktiverat"
|
716 |
|
717 |
+
#: ../cerber-load.php:3464
|
718 |
msgid "Not logged in"
|
719 |
msgstr "Inte inloggad"
|
720 |
|
721 |
+
#: ../cerber-load.php:3470
|
722 |
msgid "By user"
|
723 |
msgstr "Efter användare"
|
724 |
|
725 |
+
#: ../cerber-load.php:3471
|
726 |
msgid "From IP address"
|
727 |
msgstr "från IP-adress"
|
728 |
|
729 |
+
#: ../cerber-load.php:3474
|
730 |
msgid "From country"
|
731 |
msgstr "Från land"
|
732 |
|
733 |
+
#: ../cerber-load.php:3478
|
734 |
msgid "The WP Cerber security plugin is now active"
|
735 |
msgstr "Säkerhetstillägget WP Cerber är nu aktivt"
|
736 |
|
737 |
+
#: ../cerber-load.php:4246
|
738 |
msgid "Your IP address is added to the"
|
739 |
msgstr "Din IP-adress läggs till i"
|
740 |
|
741 |
+
#: ../cerber-load.php:4262
|
742 |
msgid "Import settings"
|
743 |
msgstr "Importera inställningar"
|
744 |
|
798 |
msgid "Enable reCAPTCHA for WordPress login form"
|
799 |
msgstr "Aktivera reCAPTCHA för WordPress inloggningsformulär"
|
800 |
|
801 |
+
#: ../settings.php:521
|
802 |
msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
|
803 |
msgstr "Innan du kan börja använda reCAPTCHA måste du skaffa webbplatsnyckel och hemlig nyckel på Googles webbplats"
|
804 |
|
805 |
+
#: ../cerber-lab.php:750 ../settings.php:522
|
806 |
msgid "Know more"
|
807 |
msgstr "Läs mer"
|
808 |
|
809 |
+
#: ../dashboard.php:52 ../settings.php:550
|
810 |
msgid "WP Cerber Security"
|
811 |
msgstr "WP Cerber Security"
|
812 |
|
813 |
+
#: ../settings.php:577
|
814 |
msgid "Users"
|
815 |
msgstr "Användare"
|
816 |
|
817 |
+
#: ../common.php:833
|
818 |
msgid "User created"
|
819 |
msgstr "Användare skapad"
|
820 |
|
821 |
+
#: ../dashboard.php:1638 ../common.php:834
|
822 |
msgid "User registered"
|
823 |
msgstr "Användare registrerad"
|
824 |
|
825 |
+
#: ../common.php:861
|
826 |
msgid "reCAPTCHA verification failed"
|
827 |
msgstr "reCAPTCHA-verifiering misslyckades"
|
828 |
|
829 |
+
#: ../common.php:862
|
830 |
msgid "reCAPTCHA settings are incorrect"
|
831 |
msgstr "reCAPTCHA-inställningarna är felaktiga"
|
832 |
|
833 |
+
#: ../common.php:865
|
834 |
msgid "Attempt to access prohibited URL"
|
835 |
msgstr "Försök att få tillgång till förbjuden URL"
|
836 |
|
837 |
+
#: ../common.php:867 ../common.php:927
|
838 |
msgid "Attempt to log in with prohibited username"
|
839 |
msgstr "Försök att logga in med förbjudna användarnamn"
|
840 |
|
870 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
871 |
msgstr "Aktivera reCAPTCHA för WooCommerce inloggningsformulär"
|
872 |
|
873 |
+
#: ../common.php:863
|
874 |
msgid "Request to the Google reCAPTCHA service failed"
|
875 |
msgstr "Begäran om Google reCAPTCHA-tjänsten misslyckades"
|
876 |
|
877 |
+
#: ../dashboard.php:1630 ../dashboard.php:1660
|
878 |
msgid "View all"
|
879 |
msgstr "Visa alla"
|
880 |
|
881 |
+
#: ../dashboard.php:1661
|
882 |
msgid "Recently locked out IP addresses"
|
883 |
msgstr "Nyligen utlåsta IP-adresser"
|
884 |
|
885 |
+
#: ../cerber-lab.php:748
|
886 |
msgid "OK, nail them all"
|
887 |
msgstr "OK, sätt fast dem alla"
|
888 |
|
889 |
+
#: ../cerber-lab.php:749
|
890 |
msgid "NO, maybe later"
|
891 |
msgstr "Nej, kanske senare"
|
892 |
|
893 |
+
#: ../dashboard.php:54 ../dashboard.php:1318 ../dashboard.php:1997 ../settings.
|
894 |
+
#: php:556
|
895 |
msgid "Dashboard"
|
896 |
msgstr "Adminpanel"
|
897 |
|
898 |
+
#: ../cerber-lab.php:746
|
899 |
msgid "Want to make WP Cerber even more powerful?"
|
900 |
msgstr "Vill du göra WP Cerber ännu mer kraftfull?"
|
901 |
|
902 |
+
#: ../cerber-lab.php:747
|
903 |
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."
|
904 |
msgstr "Tillåt WP Cerber att skicka utlåsta skadliga IP-adresser till Cerber Lab. Detta hjälper teamet för tillägget att utveckla nya algoritmer för WP Cerber som kommer att försvara WordPress mot nya hot och botnets som dyker upp varje dag. Du kan när som helst inaktivera sändningen i inställningarna för tillägget."
|
905 |
|
906 |
+
#: ../dashboard.php:543
|
907 |
msgid "IP address"
|
908 |
msgstr "IP-adress"
|
909 |
|
910 |
+
#: ../dashboard.php:543
|
911 |
msgid "User login"
|
912 |
msgstr "Användarinloggning"
|
913 |
|
914 |
+
#: ../dashboard.php:543
|
915 |
msgid "User ID"
|
916 |
msgstr "Användar-ID"
|
917 |
|
918 |
+
#: ../dashboard.php:735
|
919 |
msgid "Export"
|
920 |
msgstr "Exportera"
|
921 |
|
922 |
+
#: ../dashboard.php:757
|
923 |
msgid "Search for IP or username"
|
924 |
msgstr "Sök efter IP eller användarnamn"
|
925 |
|
926 |
+
#: ../dashboard.php:757
|
927 |
msgid "Filter"
|
928 |
msgstr "Filter"
|
929 |
|
935 |
msgid "Cerber tools"
|
936 |
msgstr "Cerber verktyg"
|
937 |
|
938 |
+
#: ../dashboard.php:1907
|
939 |
msgid "Subscribe"
|
940 |
msgstr "Prenumerera"
|
941 |
|
942 |
+
#: ../dashboard.php:1908 ../cerber-tools.php:272
|
943 |
msgid "Unsubscribe"
|
944 |
msgstr "Avregistrera prenumeration"
|
945 |
|
946 |
+
#: ../dashboard.php:1936
|
947 |
msgid "You've subscribed"
|
948 |
msgstr "Du prenumererar"
|
949 |
|
950 |
+
#: ../dashboard.php:1939
|
951 |
msgid "You've unsubscribed"
|
952 |
msgstr "Du är avregistrerad"
|
953 |
|
954 |
+
#: ../cerber-load.php:3490 ../cerber-load.php:3491
|
955 |
msgid "A new activity has been recorded"
|
956 |
msgstr "En ny aktivitet har registrerats"
|
957 |
|
958 |
+
#: ../cerber-load.php:3996
|
959 |
msgid "User"
|
960 |
msgstr "Användare"
|
961 |
|
962 |
+
#: ../cerber-load.php:4004
|
963 |
msgid "Search string"
|
964 |
msgstr "Söksträng"
|
965 |
|
966 |
+
#: ../cerber-load.php:4025
|
967 |
msgid "To unsubscribe click here"
|
968 |
msgstr "För att avregistrera prenumerationen klicka här"
|
969 |
|
987 |
msgid "Email notifications"
|
988 |
msgstr "E-postmeddelanden"
|
989 |
|
990 |
+
#: ../settings.php:216 ../settings.php:258 ../settings.php:322 ../settings.php:489
|
991 |
msgid "Use comma to specify multiple values"
|
992 |
msgstr "Använd komma för att ange flera värden"
|
993 |
|
1003 |
msgid "Not available"
|
1004 |
msgstr "Inte tillgänglig"
|
1005 |
|
1006 |
+
#: ../common.php:859
|
1007 |
msgid "Password reset requested"
|
1008 |
msgstr "Lösenordsåterställning begärd"
|
1009 |
|
1010 |
+
#: ../common.php:928
|
1011 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
1012 |
msgstr "Gräns för om misslyckade reCAPTCHA-verifieringar uppnås"
|
1013 |
|
1014 |
+
#: ../common.php:995
|
1015 |
msgid "%s ago"
|
1016 |
msgstr "%s sedan"
|
1017 |
|
1051 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1052 |
msgstr "Lås ut IP-adress i %s minuter efter %s misslyckade försök inom %s minuter"
|
1053 |
|
1054 |
+
#: ../settings.php:515
|
1055 |
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."
|
1056 |
msgstr "I Citadel-läget kan ingen logga in utom IP-adresser från den vita IP-åtkomstlistan. Aktiva användarsessioner påverkas inte."
|
1057 |
|
1058 |
+
#: ../dashboard.php:543 ../dashboard.php:715
|
1059 |
msgid "Event"
|
1060 |
msgstr "Händelse"
|
1061 |
|
1062 |
+
#: ../common.php:152
|
1063 |
msgid "Spam comments denied"
|
1064 |
msgstr "Skräppostkommentarer nekades"
|
1065 |
|
1066 |
+
#: ../common.php:154
|
1067 |
msgid "Malicious IP addresses detected"
|
1068 |
msgstr "Skadliga IP-adresser upptäcktes"
|
1069 |
|
1070 |
+
#: ../common.php:155
|
1071 |
msgid "Lockouts occurred"
|
1072 |
msgstr "Utlåsningar inträffade"
|
1073 |
|
1074 |
+
#: ../dashboard.php:1639
|
1075 |
msgid "All suspicious activity"
|
1076 |
msgstr "All misstänkt aktivitet"
|
1077 |
|
1078 |
+
#: ../cerber-load.php:1173 ../cerber-load.php:1179 ../cerber-load.php:1195 ..
|
1079 |
+
#: /cerber-load.php:1202
|
1080 |
msgid "You are not allowed to register."
|
1081 |
msgstr "Du har inte behörighet att registrera."
|
1082 |
|
1083 |
+
#: ../common.php:844
|
1084 |
msgid "Spam comment denied"
|
1085 |
msgstr "Skräppostkommentar nekad"
|
1086 |
|
1087 |
+
#: ../common.php:869
|
1088 |
msgid "Attempt to log in denied"
|
1089 |
msgstr "Försök att logga in nekad"
|
1090 |
|
1091 |
+
#: ../common.php:870
|
1092 |
msgid "Attempt to register denied"
|
1093 |
msgstr "Försök att registrera nekad"
|
1094 |
|
1095 |
+
#: ../common.php:149
|
1096 |
msgid "Malicious activities mitigated"
|
1097 |
msgstr "Skadliga aktiviteter mildrades"
|
1098 |
|
1100 |
msgid "Cerber antispam settings"
|
1101 |
msgstr "Cerber antispam inställningar"
|
1102 |
|
1103 |
+
#: ../dashboard.php:67 ../dashboard.php:1321 ../cerber-load.php:4259 ../settings.
|
1104 |
#: php:200
|
1105 |
msgid "Antispam"
|
1106 |
msgstr "Antispam"
|
1133 |
msgid "License"
|
1134 |
msgstr "Licens"
|
1135 |
|
1136 |
+
#: ../dashboard.php:3446
|
1137 |
msgid "Antispam and bot detection settings"
|
1138 |
msgstr "Inställningar för antispam och botdetektering"
|
1139 |
|
1140 |
+
#: ../cerber-load.php:1440
|
1141 |
msgid "Sorry, human verification failed."
|
1142 |
msgstr "Tyvärr, mänsklig verifiering misslyckades."
|
1143 |
|
1144 |
+
#: ../common.php:929
|
1145 |
msgid "Bot activity is detected"
|
1146 |
msgstr "Botaktivitet är upptäckt"
|
1147 |
|
1161 |
msgid "Move spam comments to trash after"
|
1162 |
msgstr "Flytta skräppostkommentarer till papperskorgen efter"
|
1163 |
|
1164 |
+
#: ../common.php:845
|
1165 |
msgid "Spam form submission denied"
|
1166 |
msgstr "Skräppost nekades att skickas in via formulär"
|
1167 |
|
1185 |
msgid "Use less restrictive policies (allow AJAX)"
|
1186 |
msgstr "Använd mindre restriktiva policyer (tillåt AJAX)"
|
1187 |
|
1188 |
+
#: ../dashboard.php:3081 ../settings.php:171
|
1189 |
msgid "Logged in users"
|
1190 |
msgstr "Inloggade användare"
|
1191 |
|
1193 |
msgid "Disable bot detection engine for logged in users"
|
1194 |
msgstr "Inaktivera botdetekteringsmotor för inloggade användare"
|
1195 |
|
1196 |
+
#: ../dashboard.php:135 ../dashboard.php:713
|
|
|
|
|
|
|
|
|
|
|
1197 |
msgid "Country"
|
1198 |
msgstr "Land"
|
1199 |
|
1200 |
+
#: ../dashboard.php:746
|
1201 |
msgid "All events"
|
1202 |
msgstr "Alla händelser"
|
1203 |
|
1205 |
msgid "Cerber Security Rules"
|
1206 |
msgstr "Cerber säkerhetsregler"
|
1207 |
|
1208 |
+
#: ../dashboard.php:60 ../dashboard.php:2378
|
1209 |
msgid "Security Rules"
|
1210 |
msgstr "Säkerhetsregler"
|
1211 |
|
1212 |
+
#: ../dashboard.php:1147
|
1213 |
msgid "Failed login attempts"
|
1214 |
msgstr "Misslyckade inloggningsförsök"
|
1215 |
|
1216 |
+
#: ../dashboard.php:1063 ../dashboard.php:1148
|
1217 |
msgid "Registered"
|
1218 |
msgstr "Registrerad"
|
1219 |
|
1220 |
+
#: ../dashboard.php:1218
|
1221 |
msgid "You"
|
1222 |
msgstr "Du"
|
1223 |
|
1224 |
+
#: ../common.php:153
|
1225 |
msgid "Spam form submissions denied"
|
1226 |
msgstr "Inskickning av skräppostformulär nekad"
|
1227 |
|
1228 |
+
#: ../dashboard.php:1698 ../cerber-load.php:3481 ../cerber-load.php:4248
|
1229 |
msgid "Getting Started Guide"
|
1230 |
msgstr "Komma igång guiden"
|
1231 |
|
1232 |
+
#: ../dashboard.php:2383
|
1233 |
msgid "Countries"
|
1234 |
msgstr "Länder"
|
1235 |
|
1236 |
+
#: ../dashboard.php:2446
|
1237 |
msgid "Permitted for one country"
|
1238 |
msgid_plural "Permitted for %d countries"
|
1239 |
msgstr[0] "Tillåtet för ett land"
|
1240 |
msgstr[1] "Tillåtet för %d länder"
|
1241 |
|
1242 |
+
#: ../dashboard.php:2457
|
1243 |
msgid "No rule"
|
1244 |
msgstr "Ingen regel"
|
1245 |
|
1246 |
+
#: ../dashboard.php:2669
|
1247 |
msgid "Security rules have been updated"
|
1248 |
msgstr "Säkerhetsregler har uppdaterats"
|
1249 |
|
1252 |
msgid "https://wpcerber.com"
|
1253 |
msgstr "https://wpcerber.com"
|
1254 |
|
1255 |
+
#: ../common.php:846
|
1256 |
msgid "Form submission denied"
|
1257 |
msgstr "Formulärinlämning nekad"
|
1258 |
|
1259 |
+
#: ../common.php:847
|
1260 |
msgid "Comment denied"
|
1261 |
msgstr "Kommentar nekad"
|
1262 |
|
1263 |
+
#: ../common.php:875
|
1264 |
msgid "Request to REST API denied"
|
1265 |
msgstr "Begäran till REST API nekad"
|
1266 |
|
1267 |
+
#: ../common.php:876
|
1268 |
msgid "XML-RPC request denied"
|
1269 |
msgstr "XML-RPC-förfråga nekad"
|
1270 |
|
1271 |
+
#: ../common.php:887
|
1272 |
msgid "Bot detected"
|
1273 |
msgstr "Bot upptäckt"
|
1274 |
|
1275 |
+
#: ../common.php:888
|
1276 |
msgid "Citadel mode is active"
|
1277 |
msgstr "Citadelläget är aktivt"
|
1278 |
|
1279 |
+
#: ../common.php:892
|
1280 |
msgid "Malicious activity detected"
|
1281 |
msgstr "Skadlig aktivitet upptäckt"
|
1282 |
|
1283 |
+
#: ../common.php:893
|
1284 |
msgid "Blocked by country rule"
|
1285 |
msgstr "Blockerad av landsregeln"
|
1286 |
|
1287 |
+
#: ../common.php:894
|
1288 |
msgid "Limit reached"
|
1289 |
msgstr "Gräns nådd"
|
1290 |
|
1291 |
+
#: ../common.php:895
|
1292 |
msgid "Multiple suspicious activities"
|
1293 |
msgstr "Flera misstänkta aktiviteter"
|
1294 |
|
1295 |
+
#: ../common.php:930
|
1296 |
msgid "Multiple suspicious activities were detected"
|
1297 |
msgstr "Flera misstänkta aktiviteter upptäcktes"
|
1298 |
|
1328 |
msgid "Query whitelist"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: ../settings.php:699 ../settings.php:821
|
1332 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1333 |
msgstr "%s tillåtna registreringar inom %s minuter från ett IP"
|
1334 |
|
1335 |
+
#: ../dashboard.php:2513
|
1336 |
msgid "Start typing here to find a country"
|
1337 |
msgstr "Börja skriva här för att hitta ett land"
|
1338 |
|
1339 |
+
#: ../dashboard.php:2596
|
1340 |
msgid "Click on a country name to add it to the list of selected countries"
|
1341 |
msgstr "Klicka på ett landsnamn för att lägga till det i listan över valda länder"
|
1342 |
|
1343 |
+
#: ../dashboard.php:2620
|
1344 |
msgid "Submit forms"
|
1345 |
msgstr "Skicka formulär"
|
1346 |
|
1347 |
+
#: ../dashboard.php:2621
|
1348 |
msgid "Post comments"
|
1349 |
msgstr "Publicera kommentarer"
|
1350 |
|
1351 |
+
#: ../dashboard.php:2622
|
1352 |
msgid "Log in to the website"
|
1353 |
msgstr "Logga in på webbplatsen"
|
1354 |
|
1355 |
+
#: ../dashboard.php:2623
|
1356 |
msgid "Register on the website"
|
1357 |
msgstr "Registrera på webbplatsen"
|
1358 |
|
1359 |
+
#: ../dashboard.php:2624
|
1360 |
msgid "Use XML-RPC"
|
1361 |
msgstr "Använd XML-RPC"
|
1362 |
|
1363 |
+
#: ../dashboard.php:2625
|
1364 |
msgid "Use REST API"
|
1365 |
msgstr "Använd REST API"
|
1366 |
|
1372 |
msgid "Mark it as spam"
|
1373 |
msgstr "Markera det som skräppost"
|
1374 |
|
1375 |
+
#: ../dashboard.php:1624
|
1376 |
msgid "in the last 24 hours"
|
1377 |
msgstr "under de senaste 24 timmarna"
|
1378 |
|
1379 |
+
#: ../dashboard.php:1998
|
1380 |
msgid "Main settings"
|
1381 |
msgstr "Huvudinställningar"
|
1382 |
|
1384 |
msgid "Weekly reports"
|
1385 |
msgstr "Veckovisa rapporter"
|
1386 |
|
1387 |
+
#: ../settings.php:937
|
1388 |
msgid "Sunday"
|
1389 |
msgstr "Söndag"
|
1390 |
|
1391 |
+
#: ../settings.php:938
|
1392 |
msgid "Monday"
|
1393 |
msgstr "Måndag"
|
1394 |
|
1395 |
+
#: ../settings.php:939
|
1396 |
msgid "Tuesday"
|
1397 |
msgstr "Tisdag"
|
1398 |
|
1399 |
+
#: ../settings.php:940
|
1400 |
msgid "Wednesday"
|
1401 |
msgstr "Onsdag"
|
1402 |
|
1403 |
+
#: ../settings.php:941
|
1404 |
msgid "Thursday"
|
1405 |
msgstr "Torsdag"
|
1406 |
|
1407 |
+
#: ../settings.php:942
|
1408 |
msgid "Friday"
|
1409 |
msgstr "Fredag"
|
1410 |
|
1411 |
+
#: ../settings.php:943
|
1412 |
msgid "Saturday"
|
1413 |
msgstr "Lördag"
|
1414 |
|
1415 |
+
#: ../settings.php:1002 ../settings.php:1003
|
1416 |
msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
|
1417 |
msgstr "Om du använder ett cachetillägg måste du lägga till din nya URL för inloggning till listan över sidor som inte ska caches."
|
1418 |
|
1419 |
#. translators: preposition of time
|
1420 |
+
#: ../settings.php:953
|
1421 |
msgctxt "preposition of time"
|
1422 |
msgid "at"
|
1423 |
msgstr "vid"
|
1424 |
|
1425 |
+
#: ../cerber-load.php:3496
|
1426 |
msgid "Weekly report"
|
1427 |
msgstr "Veckorapport"
|
1428 |
|
1429 |
+
#: ../cerber-load.php:3499 ../cerber-load.php:3509
|
1430 |
msgid "To change reporting settings visit"
|
1431 |
msgstr "För att ändra rapporteringsinställningar besök"
|
1432 |
|
1433 |
+
#: ../cerber-load.php:3532
|
1434 |
msgid "Your login page:"
|
1435 |
msgstr "Din inloggningssida:"
|
1436 |
|
1437 |
+
#: ../cerber-load.php:3536
|
1438 |
msgid "Your license is valid until"
|
1439 |
msgstr "Din licens är giltig till"
|
1440 |
|
1441 |
+
#: ../cerber-load.php:3642
|
1442 |
msgid "Activity details"
|
1443 |
msgstr "Aktivitetsdetaljer"
|
1444 |
|
1445 |
+
#: ../settings.php:969
|
1446 |
msgid "Click to send now"
|
1447 |
msgstr "Klicka för att skicka nu"
|
1448 |
|
1449 |
+
#: ../cerber-load.php:814
|
1450 |
msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
|
1451 |
msgstr ">>> Översättare av WP Cerber? För att få PRO-licens gratis, uppge dina kontaktuppgifter här: https://wpcerber.com/contact/"
|
1452 |
|
1458 |
msgid "Unable to send email to"
|
1459 |
msgstr "Det går inte att skicka e-post till"
|
1460 |
|
1461 |
+
#: ../dashboard.php:2449
|
1462 |
msgid "Not permitted for one country"
|
1463 |
msgid_plural "Not permitted for %d countries"
|
1464 |
msgstr[0] "Inte tillåtet för ett land"
|
1465 |
msgstr[1] "Inte tillåtet för %d länder"
|
1466 |
|
1467 |
+
#: ../dashboard.php:2600
|
1468 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1469 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
1470 |
msgstr "Valda länder är tillåtna att %s, andra länder är inte tillåtna att"
|
1471 |
|
1472 |
+
#: ../dashboard.php:2603
|
1473 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
1474 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
1475 |
msgstr "Valda länder är inte tillåtna att %s, andra länder har tillåtelse att"
|
1476 |
|
1477 |
+
#: ../cerber-load.php:3630
|
|
|
|
|
|
|
|
|
|
|
1478 |
msgid "Weekly Report"
|
1479 |
msgstr "Veckorapport"
|
1480 |
|
1490 |
msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
|
1491 |
msgstr "Ange en del av frågesträngen eller sökvägen för att exkludera en begäran från inspektion av sökmotor. Ett objekt per rad."
|
1492 |
|
1493 |
+
#: ../settings.php:263 ../settings.php:494
|
1494 |
msgid "if empty, email from notification settings will be used"
|
1495 |
msgstr "Om det är tomt kommer e-post från meddelandeinställningar att användas"
|
1496 |
|
1498 |
msgid "Enable reporting"
|
1499 |
msgstr "Aktivera rapportering"
|
1500 |
|
1501 |
+
#: ../cerber-load.php:3560
|
1502 |
msgid "Your last sign-in was %s from %s"
|
1503 |
msgstr "Din senaste inloggning var %s från %s"
|
1504 |
|
1505 |
+
#: ../cerber-load.php:3656
|
1506 |
msgid "Attempts to log in with non-existent username"
|
1507 |
msgstr "Försök att logga in med icke-existerande användarnamn"
|
1508 |
|
1518 |
msgid "You cannot add your IP address or network"
|
1519 |
msgstr "Du kan inte lägga till din IP-adress eller ditt nätverk"
|
1520 |
|
1521 |
+
#: ../cerber-news.php:190
|
1522 |
msgid "Cool!"
|
1523 |
msgstr "Häftigt!"
|
1524 |
|
1525 |
#: ../settings.php:154
|
1526 |
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1527 |
+
msgstr "För specifiera ett REGEX-mönster, omslut ett mönster i två snedstreck."
|
1528 |
|
1529 |
#: ../dashboard.php:56
|
1530 |
msgid "Cerber Traffic Inspector"
|
1531 |
msgstr "Cerber trafikkontroll"
|
1532 |
|
1533 |
+
#: ../dashboard.php:56 ../dashboard.php:1288 ../dashboard.php:2718
|
1534 |
msgid "Traffic Inspector"
|
1535 |
msgstr "Trafikinspektion"
|
1536 |
|
1537 |
+
#: ../dashboard.php:1320
|
1538 |
msgid "Traffic"
|
1539 |
msgstr "Trafik"
|
1540 |
|
1541 |
+
#: ../dashboard.php:2723
|
1542 |
msgid "Live traffic"
|
1543 |
msgstr "Live trafik"
|
1544 |
|
1545 |
+
#: ../dashboard.php:3049
|
1546 |
msgid "Request"
|
1547 |
msgstr "Förfrågan"
|
1548 |
|
1549 |
+
#: ../dashboard.php:3051
|
1550 |
msgid "Host Info"
|
1551 |
msgstr "Server information"
|
1552 |
|
1553 |
+
#: ../dashboard.php:3052
|
1554 |
msgid "User Agent"
|
1555 |
msgstr "Användaragent"
|
1556 |
|
1557 |
+
#: ../dashboard.php:3077
|
1558 |
msgid "All requests"
|
1559 |
msgstr "Alla förfrågningar"
|
1560 |
|
1561 |
+
#: ../dashboard.php:3082
|
1562 |
msgid "Not logged in visitors"
|
1563 |
msgstr "Inte inloggade besökare"
|
1564 |
|
1565 |
+
#: ../dashboard.php:3083
|
1566 |
msgid "Form submissions"
|
1567 |
msgstr "Formulärinlämningar"
|
1568 |
|
1569 |
+
#: ../dashboard.php:3084
|
1570 |
msgid "Page Not Found"
|
1571 |
msgstr "Sidan hittades inte"
|
1572 |
|
1573 |
+
#: ../dashboard.php:3085
|
1574 |
msgid "REST API"
|
1575 |
msgstr "REST API"
|
1576 |
|
1577 |
+
#: ../dashboard.php:3086
|
1578 |
msgid "XML-RPC"
|
1579 |
msgstr "XML-RPC"
|
1580 |
|
1581 |
+
#: ../dashboard.php:3091
|
1582 |
msgid "Longer than"
|
1583 |
msgstr "Längre än"
|
1584 |
|
1585 |
+
#: ../dashboard.php:3107
|
1586 |
msgid "Refresh"
|
1587 |
msgstr "Uppdatera"
|
1588 |
|
1589 |
+
#: ../common.php:115
|
1590 |
msgid "Check for requests"
|
1591 |
msgstr "Kontrollera efter förfrågningar"
|
1592 |
|
1593 |
+
#: ../common.php:1204
|
1594 |
msgid "Not specified"
|
1595 |
msgstr "Inte specificerad"
|
1596 |
|
1618 |
msgid "Mask these form fields"
|
1619 |
msgstr "Maskera dessa formulärfält"
|
1620 |
|
1621 |
+
#: ../settings.php:351
|
1622 |
msgid "milliseconds"
|
1623 |
msgstr "millisekunder"
|
1624 |
|
1638 |
msgid "Save request fields"
|
1639 |
msgstr "Spara förfrågningsfält"
|
1640 |
|
1641 |
+
#: ../settings.php:346
|
1642 |
msgid "Page generation time threshold"
|
1643 |
msgstr "Tidsgräns för sidgenerering"
|
1644 |
|
1645 |
+
#: ../dashboard.php:3069
|
1646 |
msgid "No requests have been logged."
|
1647 |
msgstr "Inga förfrågningar har loggats."
|
1648 |
|
1649 |
+
#: ../dashboard.php:1287
|
1650 |
msgid "enabled"
|
1651 |
msgstr "aktiverad"
|
1652 |
|
1653 |
+
#: ../dashboard.php:1292
|
1654 |
msgid "no connection"
|
1655 |
msgstr "Ingen anslutning"
|
1656 |
|
1657 |
+
#: ../dashboard.php:3403
|
1658 |
msgid "Advanced search"
|
1659 |
msgstr "Avancerad sökning"
|
1660 |
|
1661 |
+
#: ../dashboard.php:1053
|
1662 |
msgid "Last seen"
|
1663 |
msgstr "Senast sedd"
|
1664 |
|
1665 |
+
#: ../common.php:871 ../common.php:931
|
1666 |
msgid "Probing for vulnerable PHP code"
|
1667 |
msgstr "Söker efter sårbar PHP-kod"
|
1668 |
|
1669 |
+
#: ../dashboard.php:3361
|
1670 |
msgid "Any"
|
1671 |
msgstr "Någon"
|
1672 |
|
1673 |
+
#: ../cerber-load.php:3281
|
1674 |
msgid "We're sorry, you are not allowed to proceed"
|
1675 |
msgstr "Vi är ledsna, du saknar behörighet att fortsätta"
|
1676 |
|
1677 |
#: ../settings.php:283
|
1678 |
msgid "Request whitelist"
|
1679 |
+
msgstr "Begär vitlista"
|
1680 |
|
1681 |
#: ../settings.php:289
|
1682 |
msgid "Enter a request URI to exclude the request from inspection. One item per line."
|
1683 |
msgstr "Ange en URI-begäran för att utesluta begäran från inspektion. Ett objekt per rad."
|
1684 |
|
1685 |
+
#: ../settings.php:327
|
1686 |
msgid "Save request headers"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: ../settings.php:333
|
1690 |
msgid "Save $_SERVER"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: ../settings.php:339
|
1694 |
msgid "Save request cookies"
|
1695 |
msgstr ""
|
1696 |
|
1702 |
msgid "Block unauthorized access to load-scripts.php and load-styles.php"
|
1703 |
msgstr "Blockera obehörig åtkomst till load-scripts.php och load-styles.php"
|
1704 |
|
1705 |
+
#: ../common.php:1830
|
1706 |
msgid "Unable to create the directory"
|
1707 |
msgstr "Det går inte att skapa katalogen"
|
1708 |
|
1709 |
+
#: ../common.php:1835
|
1710 |
msgid "Destination folder access denied"
|
1711 |
msgstr "Åtkomst till destinationsmapp nekad"
|
1712 |
|
1713 |
+
#: ../common.php:1838
|
1714 |
msgid "File not found"
|
1715 |
msgstr "Filen hittades inte"
|
1716 |
|
1717 |
+
#: ../common.php:1841
|
1718 |
msgid "Unable to copy the file"
|
1719 |
msgstr "Det går inte att kopiera filen"
|
1720 |
|
1721 |
+
#: ../common.php:1847
|
1722 |
msgid "Unable to delete the file"
|
1723 |
msgstr "Det går inte att ta bort filen."
|
1724 |
|
1738 |
msgid "Standard mode"
|
1739 |
msgstr "Standardläge"
|
1740 |
|
1741 |
+
#: ../settings.php:980
|
1742 |
msgid "Plugin initialization mode has not been changed"
|
1743 |
msgstr "Tilläggets initialiseringsläge har inte ändrats"
|
1744 |
|
1747 |
msgid "This is a standard boot module for WP Cerber Security & Antispam plugin. It was installed when you set the plugin initialization mode to Standard. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: ../common.php:872
|
1751 |
msgid "Attempt to upload executable file denied"
|
1752 |
msgstr "Försök att ladda upp körbar fil nekad"
|
1753 |
|
1754 |
+
#: ../common.php:873
|
1755 |
msgid "File upload denied"
|
1756 |
msgstr "Filuppladdning nekad"
|
1757 |
|
|
|
|
|
|
|
|
|
|
|
1758 |
#: ../settings.php:96
|
1759 |
msgid "Custom login URL may contain only letters, numbers, dashes and underscores"
|
1760 |
msgstr "Anpassad URL för inloggning kan endast innehålla bokstäver, siffror, bindestreck och understreck"
|
1761 |
|
1762 |
#: ../settings.php:178 ../settings.php:289
|
1763 |
msgid "To specify a REGEX pattern, enclose a whole line in two braces."
|
1764 |
+
msgstr "För att ange ett REGEX-mönster, omslut en hel rad i två klammerparenteser."
|
1765 |
|
1766 |
+
#: ../settings.php:511
|
1767 |
msgid "Be careful about enabling these options."
|
1768 |
msgstr "Var försiktig med att aktivera dessa alternativ."
|
1769 |
|
1770 |
+
#: ../settings.php:511
|
1771 |
msgid "If you forget your Custom login URL, you will be unable to log in."
|
1772 |
msgstr "Om du glömmer din anpassade URL för inloggning kommer du inte att kunna logga in."
|
1773 |
|
1774 |
+
#: ../dashboard.php:64 ../cerber-scanner.php:79
|
1775 |
msgid "Site Integrity"
|
1776 |
msgstr "Webbplatsintegritet"
|
1777 |
|
1778 |
+
#: ../dashboard.php:1305 ../dashboard.php:1307 ../cerber-scanner.php:1176
|
1779 |
msgid "Disabled"
|
1780 |
msgstr "Inaktiverad"
|
1781 |
|
1782 |
+
#: ../dashboard.php:1306 ../cerber-scanner.php:750
|
1783 |
msgid "Quick Scan"
|
1784 |
msgstr "Snabb skanning"
|
1785 |
|
1786 |
+
#: ../dashboard.php:1308 ../cerber-scanner.php:750
|
1787 |
msgid "Full Scan"
|
1788 |
msgstr "Fullständig skanning"
|
1789 |
|
1792 |
msgid "WP Cerber Security, Antispam & Malware Scan"
|
1793 |
msgstr "WP Cerber Security, Antispam & Malware Scan"
|
1794 |
|
1795 |
+
#: ../common.php:896
|
1796 |
msgid "Denied"
|
1797 |
msgstr "Nekad"
|
1798 |
|
|
|
|
|
|
|
|
|
1799 |
#: ../settings.php:79 ../settings.php:278
|
1800 |
msgid "Use White IP Access List"
|
1801 |
msgstr "Använd vit IP-åtkomstlista"
|
1808 |
msgid "Disable automatic redirection to the login page when /wp-admin/ is requested by an unauthorized request"
|
1809 |
msgstr "Inaktivera automatisk omdirigering till inloggningssidan när /wp-admin/ begärs av en obehörig förfrågan"
|
1810 |
|
1811 |
+
#: ../settings.php:367
|
1812 |
msgid "Scanner settings"
|
1813 |
msgstr "Skanningsinställningar"
|
1814 |
|
1815 |
+
#: ../settings.php:368
|
1816 |
msgid "Custom signatures"
|
1817 |
msgstr "Anpassade signaturer"
|
1818 |
|
1819 |
+
#: ../settings.php:374
|
1820 |
msgid "Specify custom PHP code signatures. One item per line. To specify a REGEX pattern, enclose a whole line in two braces."
|
1821 |
+
msgstr "Specifiera anpassade PHP-kodsignaturer. Ett objekt per rad. För att ange ett REGEX-mönster, omslut en hel rad i två klammerparenteser."
|
1822 |
|
1823 |
+
#: ../settings.php:376
|
1824 |
msgid "Unwanted file extensions"
|
1825 |
msgstr "Oönskade filtillägg"
|
1826 |
|
1827 |
+
#: ../settings.php:382
|
1828 |
msgid "Specify file extensions to search for. Full scan only. Use comma to separate items."
|
1829 |
msgstr "Specifiera filtillägg att söka efter. Endast fullständig skanning. Använd komma för att separera objekt."
|
1830 |
|
1831 |
+
#: ../settings.php:384
|
1832 |
msgid "Directories to exclude"
|
1833 |
msgstr "Kataloger att exkludera"
|
1834 |
|
1835 |
+
#: ../settings.php:390
|
1836 |
msgid "Specify directories to exclude from scanning. Use absolute paths. One item per line."
|
1837 |
msgstr "Ange kataloger som ska exkluderas från skanning. Använd absoluta sökvägar. Ett objekt per rad."
|
1838 |
|
1839 |
+
#: ../settings.php:405
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1840 |
msgid "Scan temporary directory"
|
1841 |
msgstr "Skanna tillfällig katalog"
|
1842 |
|
1843 |
+
#: ../settings.php:412
|
1844 |
msgid "Scan session directory"
|
1845 |
msgstr "Skanna sessionskatalog"
|
1846 |
|
1847 |
+
#: ../settings.php:418
|
1848 |
msgid "Delete quarantined files after"
|
1849 |
msgstr "Ta bort filer i karantän efter"
|
1850 |
|
1851 |
+
#: ../settings.php:433
|
1852 |
msgid "Launch Quick Scan"
|
1853 |
msgstr "Starta snabbskanning"
|
1854 |
|
1855 |
+
#: ../cerber-scanner.php:1177
|
1856 |
msgid "Every hour"
|
1857 |
msgstr "Varje timme"
|
1858 |
|
1859 |
+
#: ../cerber-scanner.php:1178
|
1860 |
msgid "Every 3 hours"
|
1861 |
msgstr "Var 3:e timme"
|
1862 |
|
1863 |
+
#: ../cerber-scanner.php:1179
|
1864 |
msgid "Every 6 hours"
|
1865 |
msgstr "Var 6:e timme"
|
1866 |
|
1867 |
+
#: ../settings.php:440
|
1868 |
msgid "Launch Full Scan"
|
1869 |
msgstr "Starta fullständig skanning"
|
1870 |
|
1871 |
+
#: ../settings.php:450
|
1872 |
msgid "Low severity"
|
1873 |
msgstr "Låg allvarlighet"
|
1874 |
|
1875 |
+
#: ../settings.php:450
|
1876 |
msgid "Medium severity"
|
1877 |
msgstr "Medel allvarlighet"
|
1878 |
|
1879 |
+
#: ../settings.php:450
|
1880 |
msgid "High severity"
|
1881 |
msgstr "Hög allvarlighet"
|
1882 |
|
1883 |
+
#: ../settings.php:451
|
1884 |
msgid "Report an issue if any of the following is true"
|
1885 |
msgstr "Rapportera ett problem om något av följande är sant"
|
1886 |
|
1887 |
+
#: ../settings.php:459
|
1888 |
msgid "Send email report"
|
1889 |
msgstr "Skicka e-postrapport"
|
1890 |
|
1891 |
+
#: ../settings.php:465
|
1892 |
msgid "After every scan"
|
1893 |
msgstr "Efter varje skanning"
|
1894 |
|
1895 |
+
#: ../settings.php:466
|
1896 |
msgid "If any changes in scan results occurred"
|
1897 |
msgstr "Om några ändringar i skanningsresultat uppstod"
|
1898 |
|
1899 |
#: ../settings.php:471
|
|
|
|
|
|
|
|
|
1900 |
msgid "Include file sizes"
|
1901 |
msgstr "Inkludera filstorlekar"
|
1902 |
|
1903 |
+
#: ../settings.php:478
|
1904 |
msgid "Include scan errors"
|
1905 |
msgstr "Inkludera skanningsfel"
|
1906 |
|
1907 |
+
#: ../cerber-load.php:4257 ../cerber-scanner.php:84
|
1908 |
msgid "Security Scanner"
|
1909 |
msgstr "Säkerhetsskanning"
|
1910 |
|
1911 |
+
#: ../cerber-scanner.php:86
|
1912 |
msgid "Scheduling"
|
1913 |
msgstr "Schemaläggning"
|
1914 |
|
1915 |
+
#: ../cerber-scanner.php:133
|
1916 |
msgid "Currently a scheduled scan in progress. Please wait until it is finished."
|
1917 |
msgstr "För närvarande pågår en schemalagd skanning. Vänta tills det är klart."
|
1918 |
|
1919 |
+
#: ../cerber-scanner.php:137
|
1920 |
msgid "Previous scan started %s has not been completed. Continue scanning?"
|
1921 |
msgstr "Föregående skanning startad %s har inte slutförts. Fortsätt skanning?"
|
1922 |
|
1923 |
+
#: ../cerber-scanner.php:146
|
1924 |
msgid "It seems this website has never been scanned. To start scanning click the button below."
|
1925 |
msgstr "Det verkar som om denna webbplats aldrig har skannats. För att börja skanna, klicka på knappen nedan."
|
1926 |
|
1927 |
+
#: ../cerber-scanner.php:149
|
1928 |
msgid "Start Quick Scan"
|
1929 |
msgstr "Starta snabb skanning"
|
1930 |
|
1931 |
+
#: ../cerber-scanner.php:150
|
1932 |
msgid "Start Full Scan"
|
1933 |
msgstr "Starta fullständig skanning"
|
1934 |
|
1935 |
+
#: ../cerber-scanner.php:151
|
1936 |
msgid "Stop Scanning"
|
1937 |
msgstr "Sluta skanna"
|
1938 |
|
1939 |
+
#: ../cerber-scanner.php:152
|
1940 |
msgid "Continue Scanning"
|
1941 |
msgstr "Fortsätter skanning"
|
1942 |
|
1943 |
+
#: ../cerber-scanner.php:181
|
1944 |
msgid "Delete"
|
1945 |
msgstr "Ta bort"
|
1946 |
|
1947 |
+
#: ../cerber-scanner.php:1126
|
1948 |
msgid "Verified"
|
1949 |
msgstr "Verifierad"
|
1950 |
|
1951 |
+
#: ../cerber-scanner.php:1133
|
1952 |
msgid "Integrity data not found"
|
1953 |
msgstr "Integritetsdata hittades inte"
|
1954 |
|
1955 |
+
#: ../cerber-scanner.php:1134
|
1956 |
msgid "Unable to check the integrity of the plugin due to a network error"
|
1957 |
msgstr "Kan inte kontrollera tilläggets integritet på grund av ett nätverksfel"
|
1958 |
|
1959 |
+
#: ../cerber-scanner.php:1135
|
1960 |
msgid "Unable to check the integrity of WordPress files due to a network error"
|
1961 |
msgstr "Kan inte kontrollera integriteten för WordPress-filer på grund av ett nätverksfel"
|
1962 |
|
1963 |
+
#: ../cerber-scanner.php:1136
|
1964 |
msgid "Unable to check the integrity of the theme due to a network error"
|
1965 |
msgstr "Kan inte kontrollera integriteten för tema på grund av ett nätverksfel"
|
1966 |
|
1967 |
+
#: ../cerber-scanner.php:1139
|
1968 |
msgid "Local file doesn't exist"
|
1969 |
msgstr "Lokal fil finns inte"
|
1970 |
|
1971 |
+
#: ../cerber-scanner.php:1141
|
1972 |
msgid "Unable to process file"
|
1973 |
msgstr "Kan inte bearbeta fil"
|
1974 |
|
1975 |
+
#: ../cerber-scanner.php:1142 ../cerber-scanner.php:4435
|
1976 |
msgid "Unable to open file"
|
1977 |
msgstr "Kan inte öppna fil"
|
1978 |
|
1979 |
+
#: ../cerber-scanner.php:1144
|
1980 |
msgid "Checksum mismatch"
|
1981 |
msgstr "Kontrollsumma matchar inte"
|
1982 |
|
1983 |
+
#: ../cerber-scanner.php:1147
|
1984 |
msgid "Suspicious code found"
|
1985 |
msgstr "Misstänkt kod hittad"
|
1986 |
|
1987 |
+
#: ../cerber-scanner.php:1148
|
1988 |
msgid "Potentially malicious code found"
|
1989 |
msgstr "Potentiellt skadlig kod hittad"
|
1990 |
|
1991 |
+
#: ../cerber-scanner.php:1149
|
1992 |
msgid "Unattended suspicious file"
|
1993 |
msgstr "Obevakad misstänkt fil"
|
1994 |
|
1995 |
+
#: ../cerber-scanner.php:1150
|
1996 |
msgid "Executable code found"
|
1997 |
msgstr "Körbar kod hittad"
|
1998 |
|
1999 |
+
#: ../cerber-scanner.php:1154
|
2000 |
msgid "Unwanted file extension"
|
2001 |
msgstr "Oönskade filtillägg"
|
2002 |
|
2003 |
+
#: ../cerber-scanner.php:1156
|
2004 |
msgid "Content has been modified"
|
2005 |
msgstr "Innehållet har blivit ändrat"
|
2006 |
|
2007 |
+
#: ../cerber-scanner.php:1157
|
2008 |
msgid "New file"
|
2009 |
msgstr "Ny fil"
|
2010 |
|
2011 |
+
#: ../cerber-scanner.php:2205
|
2012 |
msgid "Custom signature found"
|
2013 |
msgstr "Anpassad signatur hittad"
|
2014 |
|
2015 |
+
#: ../cerber-scanner.php:3411
|
2016 |
msgid "Scanning folders for files"
|
2017 |
msgstr "Skanna mappar efter filer"
|
2018 |
|
2019 |
+
#: ../cerber-scanner.php:3415
|
2020 |
msgid "Parsing the list of files"
|
2021 |
msgstr "Analysera listan över filer"
|
2022 |
|
2023 |
+
#: ../cerber-scanner.php:3416
|
2024 |
msgid "Checking for new and modified files"
|
2025 |
msgstr "Söker efter nya och ändrade filer"
|
2026 |
|
2027 |
+
#: ../cerber-scanner.php:3417
|
2028 |
msgid "Verifying the integrity of WordPress"
|
2029 |
msgstr "Verifierar integriteten av WordPress"
|
2030 |
|
2031 |
+
#: ../cerber-scanner.php:3418
|
2032 |
msgid "Verifying the integrity of the plugins"
|
2033 |
msgstr "Verifierar integriteten av tilläggen"
|
2034 |
|
2035 |
+
#: ../cerber-scanner.php:3419
|
2036 |
msgid "Verifying the integrity of the themes"
|
2037 |
msgstr "Verifierar integriteten av teman"
|
2038 |
|
2039 |
+
#: ../cerber-scanner.php:3420
|
2040 |
msgid "Searching for malicious code"
|
2041 |
msgstr "Söker efter skadlig kod"
|
2042 |
|
2043 |
+
#: ../cerber-scanner.php:3421
|
2044 |
msgid "Finalizing the scan"
|
2045 |
msgstr "Slutför skanningen"
|
2046 |
|
2047 |
+
#: ../cerber-scanner.php:3499
|
2048 |
msgid "Files to scan"
|
2049 |
msgstr "Filer att skanna"
|
2050 |
|
2051 |
+
#: ../cerber-scanner.php:3507
|
2052 |
msgid "Critical issues"
|
2053 |
msgstr "Kritiska problem"
|
2054 |
|
2055 |
+
#: ../cerber-scanner.php:3511 ../cerber-scanner.php:4625
|
2056 |
msgid "Issues total"
|
2057 |
msgstr "Problem totalt"
|
2058 |
|
2059 |
+
#: ../cerber-scanner.php:3871
|
2060 |
msgid "The directory is not writable"
|
2061 |
msgstr "Katalogen är inte skrivbar"
|
2062 |
|
2063 |
+
#: ../cerber-scanner.php:3889
|
2064 |
msgid "Unable to create WP CERBER directory"
|
2065 |
msgstr "Kan inte skapa WP CERBER-katalog"
|
2066 |
|
2067 |
+
#: ../cerber-scanner.php:4096
|
2068 |
msgid "File access error. Possibly scan results are outdated. Please run Quick or Full Scan."
|
2069 |
msgstr "Filåtkomstfel. Möjliga skanningsresultat är föråldrade. Kör snabb eller full skanning."
|
2070 |
|
2071 |
+
#: ../cerber-scanner.php:4707
|
|
|
|
|
|
|
|
|
2072 |
msgid "To view full report visit"
|
2073 |
msgstr "För att visa fullständigt rapport besök"
|
2074 |
|
2075 |
+
#: ../cerber-load.php:3506
|
2076 |
msgid "Scanner Report"
|
2077 |
msgstr "Skanningsrapport"
|
2078 |
|
2079 |
+
#: ../settings.php:392
|
2080 |
msgid "Monitor new files"
|
2081 |
msgstr "Övervaka nya filer"
|
2082 |
|
2083 |
+
#: ../settings.php:399
|
2084 |
msgid "Monitor modified files"
|
2085 |
msgstr "Övervaka ändrade filer"
|
2086 |
|
2087 |
+
#: ../settings.php:467
|
2088 |
msgid "If new issues found"
|
2089 |
msgstr "Om nya problem hittas"
|
2090 |
|
2091 |
+
#: ../settings.php:1223
|
2092 |
msgid "The schedule has been updated"
|
2093 |
msgstr "Schemat har uppdaterats"
|
2094 |
|
2095 |
+
#: ../settings.php:1226
|
2096 |
msgid "Unable to updated the schedule"
|
2097 |
msgstr "Det gick inte att uppdatera schemat"
|
2098 |
|
2099 |
+
#: ../cerber-scanner.php:1153 ../cerber-scanner.php:2368
|
2100 |
msgid "Suspicious directives found"
|
2101 |
msgstr "Suspekta direktiv hittades"
|
2102 |
|
2103 |
+
#: ../cerber-scanner.php:2366
|
2104 |
msgid "Suspicious code instruction found"
|
2105 |
msgstr "Misstänkt kodinstruktion hittades"
|
2106 |
|
2107 |
+
#: ../cerber-scanner.php:2367
|
2108 |
msgid "Suspicious code signatures found"
|
2109 |
msgstr "Misstänkta kodsignaturer hittades"
|
2110 |
|
2111 |
+
#: ../cerber-scanner.php:2370
|
2112 |
msgid "To solve this issue you have to reinstall %s or update it to the latest version."
|
2113 |
msgstr "För att lösa problemet måste du installera om %s eller uppdatera den till den senaste versionen."
|
2114 |
|
2115 |
+
#: ../cerber-scanner.php:2371
|
2116 |
msgid "Please upload a reference ZIP archive"
|
2117 |
msgstr "Ladda upp ett referens-ZIP-arkiv"
|
2118 |
|
2119 |
+
#: ../cerber-scanner.php:2372
|
2120 |
msgid "Resolve issue"
|
2121 |
msgstr "Lös problemet"
|
2122 |
|
2123 |
+
#: ../cerber-scanner.php:3583
|
2124 |
msgid "We have not found any integrity data to verify"
|
2125 |
msgstr "Vi har inte hittat några integritetsdata att verifiera"
|
2126 |
|
2127 |
+
#: ../cerber-scanner.php:3585
|
2128 |
msgid "You have to upload a ZIP archive from which you've installed it. This enables the security scanner to verify the integrity of the code and detect malware."
|
2129 |
msgstr "Du måste ladda upp ett ZIP-arkiv från där du har installerat det. Detta gör det möjligt för säkerhetsskannern att verifiera kodens integritet och upptäcka skadlig kod."
|
2130 |
|
2131 |
+
#: ../cerber-scanner.php:4581
|
2132 |
msgid "Full Scan Report"
|
2133 |
msgstr "Fullständig skanningsrapport"
|
2134 |
|
2135 |
+
#: ../cerber-scanner.php:4581
|
2136 |
msgid "Quick Scan Report"
|
2137 |
msgstr "Snabbskanningsrapport"
|
2138 |
|
2139 |
+
#: ../cerber-scanner.php:4594
|
2140 |
msgid "Files scanned"
|
2141 |
msgstr "Filerna skannas"
|
2142 |
|
2143 |
+
#: ../dashboard.php:198 ../dashboard.php:926 ../dashboard.php:957 ../dashboard.
|
2144 |
+
#: php:1069
|
2145 |
+
msgid "Check for activities"
|
2146 |
+
msgstr "Kontrollera efter aktiviteter"
|
2147 |
+
|
2148 |
+
#: ../dashboard.php:1032
|
2149 |
+
msgid "Activated"
|
2150 |
+
msgstr "Aktiverad"
|
2151 |
+
|
2152 |
+
#: ../common.php:878
|
2153 |
+
msgid "Malicious request denied"
|
2154 |
+
msgstr "Skadlig begäran nekad"
|
2155 |
+
|
2156 |
+
#: ../common.php:882
|
2157 |
+
msgid "User activated"
|
2158 |
+
msgstr ""
|
2159 |
+
|
2160 |
+
#: ../common.php:897
|
2161 |
+
msgid "Suspicious number of fields"
|
2162 |
+
msgstr "Misstänkt antal fält"
|
2163 |
+
|
2164 |
+
#: ../common.php:898
|
2165 |
+
msgid "Suspicious number of nested values"
|
2166 |
+
msgstr ""
|
2167 |
+
|
2168 |
+
#: ../common.php:899 ../common.php:932
|
2169 |
+
msgid "Malicious code detected"
|
2170 |
+
msgstr "Skadlig kod upptäckt"
|
2171 |
+
|
2172 |
+
#: ../common.php:933
|
2173 |
+
msgid "Attempt to upload a file with malicious code"
|
2174 |
+
msgstr "Försök att ladda upp en fil med skadlig kod"
|
2175 |
+
|
2176 |
+
#: ../common.php:1080
|
2177 |
+
msgid "Bytes"
|
2178 |
+
msgstr "Bytes"
|
2179 |
+
|
2180 |
+
#: ../cerber-scanner.php:1132
|
2181 |
+
msgid "Vulnerability found"
|
2182 |
+
msgstr "Sårbarhet hittad"
|
2183 |
+
|
2184 |
+
#: ../cerber-scanner.php:1137
|
2185 |
+
msgid "Unable to check the integrity due to a DB error"
|
2186 |
+
msgstr "Det går inte att kontrollera integriteten på grund av ett DB-fel"
|
2187 |
+
|
2188 |
+
#: ../cerber-scanner.php:3412
|
2189 |
+
msgid "Scanning the upload folder for files"
|
2190 |
+
msgstr "Skannar uppladdningsmappen efter filer"
|
2191 |
+
|
2192 |
+
#: ../cerber-scanner.php:3413
|
2193 |
+
msgid "Scanning the temp folder for files"
|
2194 |
+
msgstr "Skannar temp-mappen efter filer"
|
2195 |
+
|
2196 |
+
#: ../cerber-scanner.php:3414
|
2197 |
+
msgid "Scanning the session folder for files"
|
2198 |
+
msgstr "Skannar sessionsmappen efter filer"
|
2199 |
+
|
2200 |
+
#: ../settings.php:432
|
2201 |
+
msgid "Automated recurring scan schedule"
|
2202 |
+
msgstr "Automatiserat återkommande scanningsschema"
|
2203 |
+
|
2204 |
+
#: ../settings.php:448
|
2205 |
+
msgid "Scan results reporting"
|
2206 |
+
msgstr ""
|
2207 |
+
|
2208 |
+
#: ../dashboard.php:3079
|
2209 |
+
msgid "Suspicious activity"
|
2210 |
+
msgstr ""
|
2211 |
+
|
2212 |
+
#: ../dashboard.php:3080
|
2213 |
+
msgid "Errors"
|
2214 |
+
msgstr ""
|
2215 |
+
|
2216 |
+
#: ../dashboard.php:3451
|
2217 |
+
msgid "Antispam engine"
|
2218 |
+
msgstr ""
|
2219 |
+
|
2220 |
+
#. Description of the plugin
|
2221 |
+
#:
|
2222 |
+
msgid "Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications."
|
2223 |
+
msgstr ""
|
2224 |
+
|
2225 |
+
#: ../cerber-load.php:375
|
2226 |
+
msgid "You have exceeded the number of allowed login attempts. Please try again in %d minutes."
|
2227 |
+
msgstr ""
|
2228 |
+
|
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,12 +24,12 @@ 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:52 ../settings.php:
|
28 |
msgid "WP Cerber Security"
|
29 |
msgstr ""
|
30 |
|
31 |
#. Name of the plugin
|
32 |
-
#: ../dashboard.php:52 ../dashboard.php:
|
33 |
msgid "WP Cerber"
|
34 |
msgstr ""
|
35 |
|
@@ -37,8 +37,8 @@ msgstr ""
|
|
37 |
msgid "Cerber Dashboard"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: ../dashboard.php:54 ../dashboard.php:
|
41 |
-
#: php:
|
42 |
msgid "Dashboard"
|
43 |
msgstr ""
|
44 |
|
@@ -46,7 +46,7 @@ msgstr ""
|
|
46 |
msgid "Cerber Traffic Inspector"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: ../dashboard.php:56 ../dashboard.php:
|
50 |
msgid "Traffic Inspector"
|
51 |
msgstr ""
|
52 |
|
@@ -54,572 +54,588 @@ msgstr ""
|
|
54 |
msgid "Cerber Security Rules"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../dashboard.php:60 ../dashboard.php:
|
58 |
msgid "Security Rules"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: ../dashboard.php:64 ../cerber-scanner.php:
|
62 |
msgid "Site Integrity"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../dashboard.php:
|
66 |
msgid "Cerber antispam settings"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../dashboard.php:
|
70 |
-
#: php:
|
71 |
msgid "Antispam"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: ../dashboard.php:
|
75 |
msgid "Cerber tools"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: ../dashboard.php:
|
79 |
msgid "Tools"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: ../dashboard.php:
|
83 |
msgid "Remove"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: ../dashboard.php:
|
87 |
-
#: php:
|
88 |
msgid "IP"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: ../dashboard.php:
|
92 |
msgid "Hostname"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../dashboard.php:
|
96 |
msgid "Country"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../dashboard.php:
|
100 |
msgid "Expires"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: ../dashboard.php:
|
104 |
msgid "Reason"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: ../dashboard.php:
|
108 |
msgid "Action"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: ../dashboard.php:
|
112 |
#, php-format
|
113 |
msgid "Showing last %d records from %d"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: ../dashboard.php:
|
117 |
msgid "Hint"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: ../dashboard.php:
|
121 |
msgid "To view activity, click on the IP"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: ../dashboard.php:
|
125 |
msgid "No lockouts at the moment. The sky is clear."
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: ../dashboard.php:
|
129 |
-
#: php:
|
130 |
msgid "White IP Access List"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../dashboard.php:
|
134 |
msgid "These IPs will never be locked out"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ../dashboard.php:
|
138 |
-
#: php:
|
139 |
msgid "Black IP Access List"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: ../dashboard.php:
|
143 |
msgid "Nobody can log in or register from these IPs"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: ../dashboard.php:
|
147 |
msgid "Your IP"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: ../dashboard.php:
|
151 |
-
#: php:
|
152 |
msgid "Check for activities"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: ../dashboard.php:
|
156 |
msgid "List is empty"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: ../dashboard.php:
|
160 |
msgid "IP address, IPv4 address range or subnet"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: ../dashboard.php:
|
164 |
msgid "Add IP to the list"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: ../dashboard.php:
|
168 |
msgid "Optional comment for this entry"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: ../dashboard.php:
|
172 |
msgid "Incorrect IP address or IP range"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: ../dashboard.php:
|
176 |
#, php-format
|
177 |
msgid "Address %s was added to White IP Access List"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: ../dashboard.php:
|
181 |
msgid "You cannot add your IP address or network"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: ../dashboard.php:
|
185 |
#, php-format
|
186 |
msgid "Address %s was added to Black IP Access List"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: ../dashboard.php:
|
190 |
-
#: /common.php:
|
191 |
msgid "Unknown"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: ../dashboard.php:
|
195 |
msgid "unknown"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: ../dashboard.php:
|
199 |
msgid "Email has been sent to"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: ../dashboard.php:
|
203 |
msgid "Unable to send email to"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: ../dashboard.php:
|
207 |
#, php-format
|
208 |
msgid "Lockout for %s was removed"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: ../dashboard.php:
|
212 |
msgid "Settings saved"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: ../dashboard.php:
|
216 |
msgid "IP address"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: ../dashboard.php:
|
220 |
msgid "Date"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: ../dashboard.php:
|
224 |
msgid "Event"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: ../dashboard.php:
|
228 |
msgid "Local User"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: ../dashboard.php:
|
232 |
msgid "User login"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: ../dashboard.php:
|
236 |
msgid "User ID"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ../dashboard.php:
|
240 |
msgid "Username used"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: ../dashboard.php:
|
244 |
-
#:
|
245 |
msgid "Locked out"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: ../dashboard.php:
|
249 |
msgid "Export"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: ../dashboard.php:
|
253 |
msgid "No activity has been logged."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: ../dashboard.php:
|
257 |
msgid "All events"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: ../dashboard.php:
|
261 |
msgid "Search for IP or username"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: ../dashboard.php:
|
265 |
msgid "Filter"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: ../dashboard.php:
|
269 |
msgid "Abuse email:"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: ../dashboard.php:
|
273 |
msgid "Network:"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: ../dashboard.php:
|
277 |
msgid "Add network to the Black List"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: ../dashboard.php:
|
281 |
msgid "Add IP to the Black List"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: ../dashboard.php:
|
285 |
msgid "Activated"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: ../dashboard.php:
|
289 |
msgid "Last seen"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: ../dashboard.php:
|
293 |
msgid "Registered"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: ../dashboard.php:
|
297 |
msgid "Comments"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: ../dashboard.php:
|
301 |
msgid "Last login"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: ../dashboard.php:
|
305 |
msgid "Failed login attempts"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: ../dashboard.php:
|
309 |
msgid "Never"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: ../dashboard.php:
|
313 |
msgid "You"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: ../dashboard.php:
|
317 |
msgid "Cerber Quick View"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: ../dashboard.php:
|
321 |
msgid "active"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: ../dashboard.php:
|
325 |
msgid "deactivate"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: ../dashboard.php:
|
329 |
msgid "not active"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: ../dashboard.php:
|
333 |
msgid "disabled"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: ../dashboard.php:
|
337 |
msgid "failed attempts"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: ../dashboard.php:
|
341 |
msgid "in 24 hours"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: ../dashboard.php:
|
345 |
msgid "view all"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: ../dashboard.php:
|
349 |
msgid "lockouts"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: ../dashboard.php:
|
353 |
msgid "Lockouts at the moment"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: ../dashboard.php:
|
357 |
msgid "Last lockout"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: ../dashboard.php:
|
361 |
msgid "entry"
|
362 |
msgid_plural "entries"
|
363 |
msgstr[0] ""
|
364 |
msgstr[1] ""
|
365 |
|
366 |
-
#: ../dashboard.php:
|
367 |
msgid "Citadel mode"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: ../dashboard.php:
|
371 |
msgid "enabled"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: ../dashboard.php:
|
375 |
msgid "no connection"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: ../dashboard.php:
|
379 |
msgid "Disabled"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: ../dashboard.php:
|
383 |
msgid "Quick Scan"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: ../dashboard.php:
|
387 |
msgid "Full Scan"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: ../dashboard.php:
|
391 |
-
#: /settings.php:
|
392 |
msgid "Activity"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: ../dashboard.php:
|
396 |
msgid "Traffic"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../dashboard.php:
|
400 |
msgid "My site is behind a reverse proxy"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: ../dashboard.php:
|
404 |
msgid "in the last 24 hours"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: ../dashboard.php:
|
408 |
msgid "View all"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: ../dashboard.php:
|
412 |
msgid "User registered"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../dashboard.php:
|
416 |
msgid "All suspicious activity"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../dashboard.php:
|
420 |
msgid "Recently locked out IP addresses"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../dashboard.php:
|
424 |
msgid "Confused about some settings?"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: ../dashboard.php:
|
428 |
msgid "You can easily load default recommended settings using button below"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: ../dashboard.php:
|
432 |
msgid "Load default settings"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../dashboard.php:
|
436 |
msgid "Are you sure?"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: ../dashboard.php:
|
440 |
msgid "doesn't affect Custom login URL and Access Lists"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: ../dashboard.php:
|
444 |
msgid "Getting Started Guide"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: ../dashboard.php:
|
448 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: ../dashboard.php:
|
452 |
msgid "Deactivate"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: ../dashboard.php:
|
456 |
msgid "View Activity"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: ../dashboard.php:
|
460 |
msgid "Subscribe"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: ../dashboard.php:
|
464 |
msgid "Unsubscribe"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: ../dashboard.php:
|
468 |
msgid "You've subscribed"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ../dashboard.php:
|
472 |
msgid "You've unsubscribed"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ../dashboard.php:
|
476 |
msgid "Main settings"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: ../dashboard.php:
|
480 |
msgid "Countries"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: ../dashboard.php:
|
484 |
#, php-format
|
485 |
msgid "Permitted for one country"
|
486 |
msgid_plural "Permitted for %d countries"
|
487 |
msgstr[0] ""
|
488 |
msgstr[1] ""
|
489 |
|
490 |
-
#: ../dashboard.php:
|
491 |
#, php-format
|
492 |
msgid "Not permitted for one country"
|
493 |
msgid_plural "Not permitted for %d countries"
|
494 |
msgstr[0] ""
|
495 |
msgstr[1] ""
|
496 |
|
497 |
-
#: ../dashboard.php:
|
498 |
msgid "No rule"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: ../dashboard.php:
|
502 |
msgid "Start typing here to find a country"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: ../dashboard.php:
|
506 |
msgid "Click on a country name to add it to the list of selected countries"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: ../dashboard.php:
|
510 |
#, php-format
|
511 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
512 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: ../dashboard.php:
|
516 |
#, php-format
|
517 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
518 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: ../dashboard.php:
|
522 |
msgid "Submit forms"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: ../dashboard.php:
|
526 |
msgid "Post comments"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: ../dashboard.php:
|
530 |
msgid "Log in to the website"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ../dashboard.php:
|
534 |
msgid "Register on the website"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../dashboard.php:
|
538 |
msgid "Use XML-RPC"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../dashboard.php:
|
542 |
msgid "Use REST API"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: ../dashboard.php:
|
546 |
msgid "Security rules have been updated"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: ../dashboard.php:
|
550 |
msgid "Live traffic"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: ../dashboard.php:
|
554 |
-
#: scanner.php:
|
555 |
msgid "Settings"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: ../dashboard.php:
|
559 |
-
#: scanner.php:87
|
560 |
msgid "Help"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../dashboard.php:
|
564 |
msgid "Request"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: ../dashboard.php:
|
568 |
msgid "Host Info"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: ../dashboard.php:
|
572 |
msgid "User Agent"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: ../dashboard.php:
|
576 |
msgid "No requests have been logged."
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: ../dashboard.php:
|
580 |
msgid "All requests"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: ../dashboard.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
584 |
msgid "Logged in users"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: ../dashboard.php:
|
588 |
msgid "Not logged in visitors"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: ../dashboard.php:
|
592 |
msgid "Form submissions"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: ../dashboard.php:
|
596 |
msgid "Page Not Found"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: ../dashboard.php:
|
600 |
msgid "REST API"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: ../dashboard.php:
|
604 |
msgid "XML-RPC"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: ../dashboard.php:
|
608 |
msgid "Longer than"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: ../dashboard.php:
|
612 |
msgid "Refresh"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../dashboard.php:
|
616 |
msgid "Any"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: ../dashboard.php:
|
620 |
msgid "Advanced search"
|
621 |
msgstr ""
|
622 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
623 |
#. Name of the plugin
|
624 |
msgid "WP Cerber Security, Antispam & Malware Scan"
|
625 |
msgstr ""
|
@@ -630,10 +646,11 @@ msgstr ""
|
|
630 |
|
631 |
#. Description of the plugin
|
632 |
msgid ""
|
633 |
-
"
|
634 |
-
"
|
635 |
-
"
|
636 |
-
"
|
|
|
637 |
msgstr ""
|
638 |
|
639 |
#. Author of the plugin
|
@@ -665,245 +682,251 @@ msgid "Lockouts occurred"
|
|
665 |
msgstr ""
|
666 |
|
667 |
#: ../common.php:209 ../common.php:272 ../common.php:277 ../common.php:282 ..
|
668 |
-
#: /cerber-load.php:
|
669 |
-
#: load.php:
|
670 |
-
#: php:
|
671 |
-
#:
|
672 |
-
#: /settings.php:
|
673 |
msgid "ERROR:"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: ../common.php:
|
677 |
msgid "User created"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: ../common.php:
|
681 |
msgid "Logged in"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: ../common.php:
|
685 |
msgid "Logged out"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: ../common.php:
|
689 |
msgid "Login failed"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: ../common.php:
|
693 |
msgid "IP blocked"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: ../common.php:
|
697 |
msgid "Subnet blocked"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: ../common.php:
|
701 |
msgid "Citadel activated!"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: ../common.php:
|
705 |
msgid "Spam comment denied"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: ../common.php:
|
709 |
msgid "Spam form submission denied"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: ../common.php:
|
713 |
msgid "Form submission denied"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: ../common.php:
|
717 |
msgid "Comment denied"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: ../common.php:
|
721 |
msgid "Password changed"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: ../common.php:
|
725 |
msgid "Password reset requested"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: ../common.php:
|
729 |
msgid "reCAPTCHA verification failed"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: ../common.php:
|
733 |
msgid "reCAPTCHA settings are incorrect"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: ../common.php:
|
737 |
msgid "Request to the Google reCAPTCHA service failed"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: ../common.php:
|
741 |
msgid "Attempt to access prohibited URL"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: ../common.php:
|
745 |
msgid "Attempt to log in with non-existent username"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: ../common.php:
|
749 |
msgid "Attempt to log in with prohibited username"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: ../common.php:
|
753 |
msgid "Attempt to log in denied"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: ../common.php:
|
757 |
msgid "Attempt to register denied"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: ../common.php:
|
761 |
msgid "Probing for vulnerable PHP code"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: ../common.php:
|
765 |
msgid "Attempt to upload executable file denied"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: ../common.php:
|
769 |
msgid "File upload denied"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: ../common.php:
|
773 |
msgid "Request to REST API denied"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: ../common.php:
|
777 |
msgid "XML-RPC request denied"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: ../common.php:
|
781 |
msgid "Malicious request denied"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: ../common.php:
|
785 |
msgid "User activated"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: ../common.php:
|
789 |
msgid "Bot detected"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: ../common.php:
|
793 |
msgid "Citadel mode is active"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: ../common.php:
|
797 |
msgid "IP blacklisted"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: ../common.php:
|
801 |
msgid "Malicious activity detected"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: ../common.php:
|
805 |
msgid "Blocked by country rule"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: ../common.php:
|
809 |
msgid "Limit reached"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: ../common.php:
|
813 |
msgid "Multiple suspicious activities"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: ../common.php:
|
817 |
msgid "Denied"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: ../common.php:
|
821 |
msgid "Suspicious number of fields"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: ../common.php:
|
825 |
msgid "Suspicious number of nested values"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: ../common.php:
|
829 |
msgid "Malicious code detected"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: ../common.php:
|
833 |
msgid "Limit on login attempts is reached"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: ../common.php:
|
837 |
msgid "Attempt to access"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: ../common.php:
|
841 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: ../common.php:
|
845 |
msgid "Bot activity is detected"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: ../common.php:
|
849 |
msgid "Multiple suspicious activities were detected"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: ../common.php:
|
853 |
msgid "Attempt to upload a file with malicious code"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: ../common.php:
|
857 |
#, php-format
|
858 |
msgid "%s ago"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: ../common.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
862 |
msgid "Bytes"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: ../common.php:
|
866 |
msgid "New version is available"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: ../common.php:
|
870 |
#, php-format
|
871 |
msgid "Update to version %s of WP Cerber"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: ../common.php:
|
875 |
msgid "Not specified"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: ../common.php:
|
879 |
msgid "Unable to create the directory"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: ../common.php:
|
883 |
msgid "Destination folder access denied"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: ../common.php:
|
887 |
msgid "File not found"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: ../common.php:
|
891 |
msgid "Unable to copy the file"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: ../common.php:
|
895 |
msgid "Unable to delete the file"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: ../cerber-news.php:
|
899 |
msgid "Cool!"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: ../cerber-lab.php:
|
903 |
msgid "Want to make WP Cerber even more powerful?"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: ../cerber-lab.php:
|
907 |
msgid ""
|
908 |
"Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. "
|
909 |
"This helps the plugin team to develop new algorithms for WP Cerber that will "
|
@@ -911,1059 +934,1060 @@ msgid ""
|
|
911 |
"everyday. You can disable the sending in the plugin settings at any time."
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: ../cerber-lab.php:
|
915 |
msgid "OK, nail them all"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: ../cerber-lab.php:
|
919 |
msgid "NO, maybe later"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: ../cerber-lab.php:
|
923 |
msgid "Know more"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: ../cerber-load.php:
|
927 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: ../cerber-load.php:
|
931 |
#, php-format
|
932 |
-
msgid "
|
|
|
|
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: ../cerber-load.php:
|
936 |
#, php-format
|
937 |
msgid "You have only one attempt remaining."
|
938 |
msgid_plural "You have %d attempts remaining."
|
939 |
msgstr[0] ""
|
940 |
msgstr[1] ""
|
941 |
|
942 |
-
#: ../cerber-load.php:
|
943 |
msgid ""
|
944 |
"Human verification failed. Please click the square box in the reCAPTCHA "
|
945 |
"block below."
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: ../cerber-load.php:
|
949 |
msgid ""
|
950 |
"> > > Translator of WP Cerber? To get the PRO license for free, drop your "
|
951 |
"contacts here: https://wpcerber.com/contact/"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: ../cerber-load.php:
|
955 |
#, php-format
|
956 |
msgid ""
|
957 |
"<strong>ERROR</strong>: The password you entered for the username %s is "
|
958 |
"incorrect."
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: ../cerber-load.php:
|
962 |
-
#: /cerber-load.php:
|
963 |
msgid "You are not allowed to register."
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: ../cerber-load.php:
|
967 |
msgid "Username is not allowed. Please choose another one."
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: ../cerber-load.php:
|
971 |
msgid "Sorry, human verification failed."
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: ../cerber-load.php:
|
975 |
msgid "We're sorry, you are not allowed to proceed"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: ../cerber-load.php:
|
979 |
msgid "WP Cerber notify"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: ../cerber-load.php:
|
983 |
msgid "Citadel mode is activated"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: ../cerber-load.php:
|
987 |
#, php-format
|
988 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: ../cerber-load.php:
|
992 |
#, php-format
|
993 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: ../cerber-load.php:
|
997 |
msgid "View activity in dashboard"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: ../cerber-load.php:
|
1001 |
msgid "unspecified"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: ../cerber-load.php:
|
1005 |
msgid "Number of lockouts is increasing"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: ../cerber-load.php:
|
1009 |
msgid "Number of active lockouts"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: ../cerber-load.php:
|
1013 |
#, php-format
|
1014 |
msgid "Last lockout was added: %s for IP %s"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: ../cerber-load.php:
|
1018 |
msgid "View activity for this IP"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: ../cerber-load.php:
|
1022 |
msgid "View lockouts in dashboard"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: ../cerber-load.php:
|
1026 |
msgid "A new version of WP Cerber is available to install"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: ../cerber-load.php:
|
1030 |
msgid "Hi!"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: ../cerber-load.php:
|
1034 |
msgid "Website"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: ../cerber-load.php:
|
1038 |
msgid "The WP Cerber security plugin has been deactivated"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: ../cerber-load.php:
|
1042 |
msgid "Not logged in"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: ../cerber-load.php:
|
1046 |
msgid "By user"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: ../cerber-load.php:
|
1050 |
msgid "From IP address"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: ../cerber-load.php:
|
1054 |
msgid "From country"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: ../cerber-load.php:
|
1058 |
msgid "The WP Cerber security plugin is now active"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: ../cerber-load.php:
|
1062 |
msgid "WP Cerber is now active and has started protecting your site"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: ../cerber-load.php:
|
1066 |
msgid "New Custom login URL"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: ../cerber-load.php:
|
1070 |
msgid "A new activity has been recorded"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: ../cerber-load.php:
|
1074 |
msgid "Weekly report"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: ../cerber-load.php:
|
1078 |
msgid "To change reporting settings visit"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: ../cerber-load.php:
|
1082 |
msgid "Scanner Report"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: ../cerber-load.php:
|
1086 |
msgid "Your login page:"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: ../cerber-load.php:
|
1090 |
msgid "Your license is valid until"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: ../cerber-load.php:
|
1094 |
msgid "This message was sent by"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: ../cerber-load.php:
|
1098 |
#, php-format
|
1099 |
msgid "Your last sign-in was %s from %s"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: ../cerber-load.php:
|
1103 |
msgid "Weekly Report"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: ../cerber-load.php:
|
1107 |
msgid "Activity details"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: ../cerber-load.php:
|
1111 |
msgid "Attempts to log in with non-existent username"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: ../cerber-load.php:
|
1115 |
msgid "User"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: ../cerber-load.php:
|
1119 |
msgid "Search string"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: ../cerber-load.php:
|
1123 |
msgid "To unsubscribe click here"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: ../cerber-load.php:
|
1127 |
#, php-format
|
1128 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: ../cerber-load.php:
|
1132 |
#, php-format
|
1133 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: ../cerber-load.php:
|
1137 |
msgid "Can't activate WP Cerber due to a database error."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: ../cerber-load.php:
|
1141 |
msgid "Your IP address is added to the"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: ../cerber-load.php:
|
1145 |
msgid "Main Settings"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: ../cerber-load.php:
|
1149 |
msgid "Security Scanner"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: ../cerber-load.php:
|
1153 |
-
#: tools.php:101 ../cerber-tools.php:
|
1154 |
msgid "Access Lists"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: ../cerber-load.php:
|
1158 |
msgid "Hardening"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: ../cerber-load.php:
|
1162 |
-
#:
|
1163 |
msgid "Notifications"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: ../cerber-load.php:
|
1167 |
msgid "Import settings"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: ../settings.php:
|
1171 |
msgid "Plugin initialization"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: ../settings.php:
|
1175 |
msgid "Load security engine"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: ../settings.php:
|
1179 |
msgid "Legacy mode"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: ../settings.php:
|
1183 |
msgid "Standard mode"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: ../settings.php:
|
1187 |
msgid "Limit login attempts"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: ../settings.php:
|
1191 |
msgid "Attempts"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: ../settings.php:
|
1195 |
msgid "Lockout duration"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: ../settings.php:
|
1199 |
msgid "minutes"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: ../settings.php:
|
1203 |
msgid "Aggressive lockout"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: ../settings.php:
|
1207 |
msgid "Use White IP Access List"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: ../settings.php:
|
1211 |
msgid "Apply limit login rules to IP addresses in the White IP Access List"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: ../settings.php:
|
1215 |
msgid "Site connection"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: ../settings.php:
|
1219 |
msgid "Proactive security rules"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: ../settings.php:
|
1223 |
msgid "Block subnet"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: ../settings.php:
|
1227 |
msgid "Always block entire subnet Class C of intruders IP"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: ../settings.php:
|
1231 |
msgid "Non-existent users"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: ../settings.php:
|
1235 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: ../settings.php:
|
1239 |
msgid "Disable dashboard redirection"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: ../settings.php:
|
1243 |
msgid ""
|
1244 |
"Disable automatic redirection to the login page when /wp-admin/ is requested "
|
1245 |
"by an unauthorized request"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: ../settings.php:
|
1249 |
msgid "Request wp-login.php"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: ../settings.php:
|
1253 |
msgid "Immediately block IP after any request to wp-login.php"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: ../settings.php:
|
1257 |
msgid "Display 404 page"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: ../settings.php:
|
1261 |
msgid "Use 404 template from the active theme"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: ../settings.php:
|
1265 |
msgid "Display simple 404 page"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: ../settings.php:
|
1269 |
msgid "Custom login page"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: ../settings.php:
|
1273 |
msgid "Custom login URL"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: ../settings.php:
|
1277 |
msgid "Custom login URL may contain only letters, numbers, dashes and underscores"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: ../settings.php:
|
1281 |
msgid "must not overlap with the existing pages or posts slug"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: ../settings.php:
|
1285 |
msgid "Disable wp-login.php"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: ../settings.php:
|
1289 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: ../settings.php:
|
1293 |
msgid "Threshold"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: ../settings.php:
|
1297 |
msgid "Duration"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: ../settings.php:
|
1301 |
msgid "Send notification to admin email"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: ../settings.php:
|
1305 |
msgid "Click to send test"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: ../settings.php:
|
1309 |
msgid "Keep records for"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: ../settings.php:
|
1313 |
msgid "days"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: ../settings.php:
|
1317 |
msgid "Cerber Lab connection"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: ../settings.php:
|
1321 |
msgid "Send malicious IP addresses to the Cerber Lab"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: ../settings.php:
|
1325 |
msgid "Cerber Lab protocol"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: ../settings.php:
|
1329 |
msgid "Use file"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#: ../settings.php:
|
1333 |
msgid "Write failed login attempts to the file"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: ../settings.php:
|
1337 |
msgid "Preferences"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: ../settings.php:
|
1341 |
msgid "Drill down IP"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: ../settings.php:
|
1345 |
msgid "Retrieve extra WHOIS information for IP"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: ../settings.php:
|
1349 |
msgid "Date format"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: ../settings.php:
|
1353 |
#, php-format
|
1354 |
msgid "if empty, the default format %s will be used"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: ../settings.php:
|
1358 |
msgid "Hardening WordPress"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: ../settings.php:
|
1362 |
msgid "Stop user enumeration"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: ../settings.php:
|
1366 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: ../settings.php:
|
1370 |
msgid "Protect admin scripts"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: ../settings.php:
|
1374 |
msgid "Block unauthorized access to load-scripts.php and load-styles.php"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#: ../settings.php:
|
1378 |
msgid "Disable XML-RPC"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: ../settings.php:
|
1382 |
msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: ../settings.php:
|
1386 |
msgid "Disable feeds"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: ../settings.php:
|
1390 |
msgid "Block access to the RSS, Atom and RDF feeds"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: ../settings.php:
|
1394 |
msgid "Disable REST API"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: ../settings.php:
|
1398 |
msgid "Block access to the WordPress REST API except the following"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: ../settings.php:
|
1402 |
msgid "Allow REST API for logged in users"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: ../settings.php:
|
1406 |
msgid ""
|
1407 |
"Specify REST API namespaces to be allowed if REST API is disabled. One "
|
1408 |
"string per line."
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: ../settings.php:
|
1412 |
msgid "User related settings"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: ../settings.php:
|
1416 |
msgid "Registration limit"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: ../settings.php:
|
1420 |
msgid "Prohibited usernames"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: ../settings.php:
|
1424 |
msgid ""
|
1425 |
"Usernames from this list are not allowed to log in or register. Any IP "
|
1426 |
"address, have tried to use any of these usernames, will be immediately "
|
1427 |
"blocked. Use comma to separate logins."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: ../settings.php:
|
1431 |
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: ../settings.php:
|
1435 |
msgid "User session expire"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: ../settings.php:
|
1439 |
msgid "in minutes (leave empty to use default WP value)"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: ../settings.php:
|
1443 |
msgid "Sort users in dashboard"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: ../settings.php:
|
1447 |
msgid "by date of registration"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: ../settings.php:
|
1451 |
msgid "Cerber antispam engine"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: ../settings.php:
|
1455 |
msgid "Comment form"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: ../settings.php:
|
1459 |
msgid "Protect comment form with bot detection engine"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: ../settings.php:
|
1463 |
msgid "Registration form"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: ../settings.php:
|
1467 |
msgid "Protect registration form with bot detection engine"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: ../settings.php:
|
1471 |
msgid "Other forms"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: ../settings.php:
|
1475 |
msgid "Protect all forms on the website with bot detection engine"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: ../settings.php:
|
1479 |
msgid "Adjust antispam engine"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: ../settings.php:
|
1483 |
msgid "Safe mode"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: ../settings.php:
|
1487 |
msgid "Use less restrictive policies (allow AJAX)"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: ../settings.php:
|
1491 |
msgid "Disable bot detection engine for logged in users"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: ../settings.php:
|
1495 |
msgid "Query whitelist"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: ../settings.php:
|
1499 |
msgid ""
|
1500 |
"Enter a part of query string or query path to exclude a request from "
|
1501 |
"inspection by the engine. One item per line."
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: ../settings.php:
|
1505 |
msgid "To specify a REGEX pattern, enclose a whole line in two braces."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: ../settings.php:
|
1509 |
msgid "Comment processing"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: ../settings.php:
|
1513 |
msgid "If a spam comment detected"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: ../settings.php:
|
1517 |
msgid "Deny it completely"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: ../settings.php:
|
1521 |
msgid "Mark it as spam"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: ../settings.php:
|
1525 |
msgid "Trash spam comments"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: ../settings.php:
|
1529 |
msgid "Move spam comments to trash after"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: ../settings.php:
|
1533 |
msgid "reCAPTCHA settings"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: ../settings.php:
|
1537 |
msgid "Site key"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: ../settings.php:
|
1541 |
msgid "Secret key"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: ../settings.php:
|
1545 |
msgid "Invisible reCAPTCHA"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: ../settings.php:
|
1549 |
msgid "Enable invisible reCAPTCHA"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: ../settings.php:
|
1553 |
msgid ""
|
1554 |
"(do not enable it unless you get and enter the Site and Secret keys for the "
|
1555 |
"invisible version)"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: ../settings.php:
|
1559 |
msgid "Enable reCAPTCHA for WordPress registration form"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: ../settings.php:
|
1563 |
msgid "Enable reCAPTCHA for WooCommerce registration form"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: ../settings.php:
|
1567 |
msgid "Lost password form"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: ../settings.php:
|
1571 |
msgid "Enable reCAPTCHA for WordPress lost password form"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: ../settings.php:
|
1575 |
msgid "Enable reCAPTCHA for WooCommerce lost password form"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: ../settings.php:
|
1579 |
msgid "Login form"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: ../settings.php:
|
1583 |
msgid "Enable reCAPTCHA for WordPress login form"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: ../settings.php:
|
1587 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: ../settings.php:
|
1591 |
msgid "Enable reCAPTCHA for WordPress comment form"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: ../settings.php:
|
1595 |
msgid "Disable reCAPTCHA for logged in users"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: ../settings.php:
|
1599 |
msgid "Limit attempts"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: ../settings.php:
|
1603 |
#, php-format
|
1604 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: ../settings.php:
|
1608 |
msgid "Email notifications"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: ../settings.php:
|
1612 |
msgid "Email Address"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: ../settings.php:
|
1616 |
msgid "Use comma to specify multiple values"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: ../settings.php:
|
1620 |
#, php-format
|
1621 |
msgid "if empty, the admin email %s will be used"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: ../settings.php:
|
1625 |
msgid "Notification limit"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: ../settings.php:
|
1629 |
msgid "notification letters allowed per hour (0 means unlimited)"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: ../settings.php:
|
1633 |
msgid "Push notifications"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: ../settings.php:
|
1637 |
msgid "All connected devices"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: ../settings.php:
|
1641 |
msgid "No devices found"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: ../settings.php:
|
1645 |
msgid "Not available"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: ../settings.php:
|
1649 |
msgid "Weekly reports"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
-
#: ../settings.php:
|
1653 |
msgid "Enable reporting"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: ../settings.php:
|
1657 |
msgid "if empty, email from notification settings will be used"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#: ../settings.php:
|
1661 |
msgid "Inspection"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: ../settings.php:
|
1665 |
msgid "Enable traffic inspection"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: ../settings.php:
|
1669 |
msgid "Request whitelist"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: ../settings.php:
|
1673 |
msgid ""
|
1674 |
"Enter a request URI to exclude the request from inspection. One item per "
|
1675 |
"line."
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: ../settings.php:
|
1679 |
msgid "Logging"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: ../settings.php:
|
1683 |
msgid "Logging mode"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: ../settings.php:
|
1687 |
msgid "Logging disabled"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#: ../settings.php:
|
1691 |
msgid "Smart"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: ../settings.php:
|
1695 |
msgid "All traffic"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: ../settings.php:
|
1699 |
msgid "Ignore crawlers"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: ../settings.php:
|
1703 |
msgid "Save request fields"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: ../settings.php:
|
1707 |
msgid "Mask these form fields"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: ../settings.php:
|
1711 |
msgid "Save request headers"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: ../settings.php:
|
1715 |
msgid "Save $_SERVER"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: ../settings.php:
|
1719 |
msgid "Save request cookies"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: ../settings.php:
|
1723 |
msgid "Page generation time threshold"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: ../settings.php:
|
1727 |
msgid "milliseconds"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#: ../settings.php:
|
1731 |
msgid "Scanner settings"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: ../settings.php:
|
1735 |
msgid "Custom signatures"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: ../settings.php:
|
1739 |
msgid ""
|
1740 |
"Specify custom PHP code signatures. One item per line. To specify a REGEX "
|
1741 |
"pattern, enclose a whole line in two braces."
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: ../settings.php:
|
1745 |
msgid "Unwanted file extensions"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: ../settings.php:
|
1749 |
msgid ""
|
1750 |
"Specify file extensions to search for. Full scan only. Use comma to separate "
|
1751 |
"items."
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: ../settings.php:
|
1755 |
msgid "Directories to exclude"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: ../settings.php:
|
1759 |
msgid ""
|
1760 |
"Specify directories to exclude from scanning. Use absolute paths. One item "
|
1761 |
"per line."
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: ../settings.php:
|
1765 |
msgid "Monitor new files"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: ../settings.php:
|
1769 |
msgid "Monitor modified files"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: ../settings.php:
|
1773 |
msgid "Scan temporary directory"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: ../settings.php:
|
1777 |
msgid "Scan session directory"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: ../settings.php:
|
1781 |
msgid "Delete quarantined files after"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: ../settings.php:
|
1785 |
msgid "Automated recurring scan schedule"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: ../settings.php:
|
1789 |
msgid "Launch Quick Scan"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: ../settings.php:
|
1793 |
msgid "Launch Full Scan"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: ../settings.php:
|
1797 |
msgid "Scan results reporting"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: ../settings.php:
|
1801 |
msgid "Low severity"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: ../settings.php:
|
1805 |
msgid "Medium severity"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: ../settings.php:
|
1809 |
msgid "High severity"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: ../settings.php:
|
1813 |
msgid "Report an issue if any of the following is true"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: ../settings.php:
|
1817 |
msgid "Send email report"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#: ../settings.php:
|
1821 |
msgid "After every scan"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#: ../settings.php:
|
1825 |
msgid "If any changes in scan results occurred"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: ../settings.php:
|
1829 |
msgid "If new issues found"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#: ../settings.php:
|
1833 |
msgid "Include file sizes"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#: ../settings.php:
|
1837 |
msgid "Include scan errors"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#: ../settings.php:
|
1841 |
msgid "Make your protection smarter!"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
-
#: ../settings.php:
|
1845 |
msgid ""
|
1846 |
"Please enable Permalinks to use this feature. Set Permalink Settings to "
|
1847 |
"something other than Default."
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: ../settings.php:
|
1851 |
msgid "Be careful about enabling these options."
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: ../settings.php:
|
1855 |
msgid "If you forget your Custom login URL, you will be unable to log in."
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: ../settings.php:
|
1859 |
msgid ""
|
1860 |
"In the Citadel mode nobody is able to log in except IPs from the White IP "
|
1861 |
"Access List. Active user sessions will not be affected."
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#: ../settings.php:
|
1865 |
msgid "These settings do not affect hosts from the "
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: ../settings.php:
|
1869 |
msgid ""
|
1870 |
"Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
|
1871 |
"key on the Google website"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: ../settings.php:
|
1875 |
msgid "Lockouts"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: ../settings.php:
|
1879 |
msgid "Users"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: ../settings.php:
|
1883 |
#, php-format
|
1884 |
msgid "%s allowed retries in %s minutes"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#: ../settings.php:
|
1888 |
#, php-format
|
1889 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
-
#: ../settings.php:
|
1893 |
#, php-format
|
1894 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#: ../settings.php:
|
1898 |
msgid "Notify admin if the number of active lockouts above"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: ../settings.php:
|
1902 |
#, php-format
|
1903 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: ../settings.php:
|
1907 |
msgid "Sunday"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
-
#: ../settings.php:
|
1911 |
msgid "Monday"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: ../settings.php:
|
1915 |
msgid "Tuesday"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: ../settings.php:
|
1919 |
msgid "Wednesday"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: ../settings.php:
|
1923 |
msgid "Thursday"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: ../settings.php:
|
1927 |
msgid "Friday"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: ../settings.php:
|
1931 |
msgid "Saturday"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
|
1935 |
-
|
1936 |
-
msgctxt "preposition of time"
|
1937 |
msgid "at"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
-
#: ../settings.php:
|
1941 |
msgid "Click to send now"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#: ../settings.php:
|
1945 |
msgid "Plugin initialization mode has not been changed"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#: ../settings.php:
|
1949 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: ../settings.php:
|
1953 |
msgid ""
|
1954 |
"If you use a caching plugin, you have to add your new login URL to the list "
|
1955 |
"of pages not to cache."
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: ../settings.php:
|
1959 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#: ../settings.php:
|
1963 |
msgid "The schedule has been updated"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: ../settings.php:
|
1967 |
msgid "Unable to updated the schedule"
|
1968 |
msgstr ""
|
1969 |
|
@@ -2020,281 +2044,353 @@ msgstr ""
|
|
2020 |
msgid "What do you want to import?"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: ../cerber-tools.php:102 ../cerber-scanner.php:
|
2024 |
msgid "Upload file"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: ../cerber-tools.php:
|
2028 |
msgid "No file was uploaded or file is corrupted"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: ../cerber-tools.php:
|
2032 |
msgid "Error while updating"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
#: ../cerber-tools.php:
|
2036 |
msgid "Settings has imported successfully from"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: ../cerber-tools.php:
|
2040 |
msgid "Error while parsing file"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: ../cerber-
|
2044 |
-
msgid "
|
2045 |
msgstr ""
|
2046 |
|
2047 |
#: ../cerber-scanner.php:86
|
2048 |
-
msgid "
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: ../cerber-scanner.php:
|
2052 |
msgid "Currently a scheduled scan in progress. Please wait until it is finished."
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: ../cerber-scanner.php:
|
2056 |
#, php-format
|
2057 |
msgid "Previous scan started %s has not been completed. Continue scanning?"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: ../cerber-scanner.php:
|
2061 |
msgid ""
|
2062 |
"It seems this website has never been scanned. To start scanning click the "
|
2063 |
"button below."
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: ../cerber-scanner.php:
|
2067 |
msgid "Start Quick Scan"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: ../cerber-scanner.php:
|
2071 |
msgid "Start Full Scan"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#: ../cerber-scanner.php:
|
2075 |
msgid "Stop Scanning"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#: ../cerber-scanner.php:
|
2079 |
msgid "Continue Scanning"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: ../cerber-scanner.php:
|
2083 |
msgid "Delete"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
-
#: ../cerber-scanner.php:
|
2087 |
msgid "Verified"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
-
#: ../cerber-scanner.php:
|
2091 |
msgid "Vulnerability found"
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#: ../cerber-scanner.php:
|
2095 |
msgid "Integrity data not found"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
-
#: ../cerber-scanner.php:
|
2099 |
msgid "Unable to check the integrity of the plugin due to a network error"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: ../cerber-scanner.php:
|
2103 |
msgid "Unable to check the integrity of WordPress files due to a network error"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: ../cerber-scanner.php:
|
2107 |
msgid "Unable to check the integrity of the theme due to a network error"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: ../cerber-scanner.php:
|
2111 |
msgid "Unable to check the integrity due to a DB error"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: ../cerber-scanner.php:
|
2115 |
msgid "Local file doesn't exist"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: ../cerber-scanner.php:
|
2119 |
msgid "Unable to process file"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: ../cerber-scanner.php:
|
2123 |
msgid "Unable to open file"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
-
#: ../cerber-scanner.php:
|
2127 |
msgid "Checksum mismatch"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: ../cerber-scanner.php:
|
2131 |
msgid "Suspicious code found"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: ../cerber-scanner.php:
|
2135 |
msgid "Potentially malicious code found"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#: ../cerber-scanner.php:
|
2139 |
msgid "Unattended suspicious file"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: ../cerber-scanner.php:
|
2143 |
msgid "Executable code found"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: ../cerber-scanner.php:
|
2147 |
msgid "Suspicious directives found"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: ../cerber-scanner.php:
|
2151 |
msgid "Unwanted file extension"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: ../cerber-scanner.php:
|
2155 |
msgid "Content has been modified"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: ../cerber-scanner.php:
|
2159 |
msgid "New file"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: ../cerber-scanner.php:
|
2163 |
msgid "Every hour"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: ../cerber-scanner.php:
|
2167 |
msgid "Every 3 hours"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: ../cerber-scanner.php:
|
2171 |
msgid "Every 6 hours"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: ../cerber-scanner.php:
|
2175 |
msgid "Custom signature found"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
-
#: ../cerber-scanner.php:
|
2179 |
msgid "Suspicious code instruction found"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: ../cerber-scanner.php:
|
2183 |
msgid "Suspicious code signatures found"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: ../cerber-scanner.php:
|
2187 |
#, php-format
|
2188 |
msgid ""
|
2189 |
"To solve this issue you have to reinstall %s or update it to the latest "
|
2190 |
"version."
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#: ../cerber-scanner.php:
|
2194 |
msgid "Please upload a reference ZIP archive"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#: ../cerber-scanner.php:
|
2198 |
msgid "Resolve issue"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
-
#: ../cerber-scanner.php:
|
2202 |
msgid "Scanning folders for files"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
#: ../cerber-scanner.php:
|
2206 |
msgid "Scanning the upload folder for files"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#: ../cerber-scanner.php:
|
2210 |
msgid "Scanning the temp folder for files"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#: ../cerber-scanner.php:
|
2214 |
msgid "Scanning the session folder for files"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#: ../cerber-scanner.php:
|
2218 |
msgid "Parsing the list of files"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
-
#: ../cerber-scanner.php:
|
2222 |
msgid "Checking for new and modified files"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: ../cerber-scanner.php:
|
2226 |
msgid "Verifying the integrity of WordPress"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
-
#: ../cerber-scanner.php:
|
2230 |
msgid "Verifying the integrity of the plugins"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#: ../cerber-scanner.php:
|
2234 |
msgid "Verifying the integrity of the themes"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: ../cerber-scanner.php:
|
2238 |
msgid "Searching for malicious code"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: ../cerber-scanner.php:
|
2242 |
msgid "Finalizing the scan"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: ../cerber-scanner.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2246 |
msgid "Files to scan"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: ../cerber-scanner.php:
|
2250 |
msgid "Critical issues"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: ../cerber-scanner.php:
|
2254 |
msgid "Issues total"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: ../cerber-scanner.php:
|
2258 |
msgid "We have not found any integrity data to verify"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: ../cerber-scanner.php:
|
2262 |
msgid ""
|
2263 |
"You have to upload a ZIP archive from which you've installed it. This "
|
2264 |
"enables the security scanner to verify the integrity of the code and detect "
|
2265 |
"malware."
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: ../cerber-scanner.php:
|
2269 |
msgid "The directory is not writable"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: ../cerber-scanner.php:
|
2273 |
msgid "Unable to create WP CERBER directory"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: ../cerber-scanner.php:
|
2277 |
msgid ""
|
2278 |
"File access error. Possibly scan results are outdated. Please run Quick or "
|
2279 |
"Full Scan."
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: ../cerber-scanner.php:
|
2283 |
msgid "Full Scan Report"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: ../cerber-scanner.php:
|
2287 |
msgid "Quick Scan Report"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: ../cerber-scanner.php:
|
2291 |
msgid "Files scanned"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: ../cerber-scanner.php:
|
2295 |
msgid "To view full report visit"
|
2296 |
msgstr ""
|
2297 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2298 |
#. Description of the plugin
|
2299 |
msgid ""
|
2300 |
"This is a standard boot module for WP Cerber Security & Antispam plugin. It "
|
5 |
"Project-Id-Version: WP Cerber\n"
|
6 |
"Report-Msgid-Bugs-To: \n"
|
7 |
"POT-Creation-Date: Tue Sep 08 2015 21:38:11 GMT+0300\n"
|
8 |
+
"POT-Revision-Date: Sat Sep 01 2018 22:41:45 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:52 ../settings.php:554
|
28 |
msgid "WP Cerber Security"
|
29 |
msgstr ""
|
30 |
|
31 |
#. Name of the plugin
|
32 |
+
#: ../dashboard.php:52 ../dashboard.php:81
|
33 |
msgid "WP Cerber"
|
34 |
msgstr ""
|
35 |
|
37 |
msgid "Cerber Dashboard"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ../dashboard.php:54 ../dashboard.php:1323 ../dashboard.php:2086 ../settings.
|
41 |
+
#: php:560
|
42 |
msgid "Dashboard"
|
43 |
msgstr ""
|
44 |
|
46 |
msgid "Cerber Traffic Inspector"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: ../dashboard.php:56 ../dashboard.php:1293 ../dashboard.php:2812
|
50 |
msgid "Traffic Inspector"
|
51 |
msgstr ""
|
52 |
|
54 |
msgid "Cerber Security Rules"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: ../dashboard.php:60 ../dashboard.php:2472
|
58 |
msgid "Security Rules"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: ../dashboard.php:64 ../cerber-scanner.php:78
|
62 |
msgid "Site Integrity"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: ../dashboard.php:68
|
66 |
msgid "Cerber antispam settings"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: ../dashboard.php:68 ../dashboard.php:1326 ../cerber-load.php:4259 ../settings.
|
70 |
+
#: php:204
|
71 |
msgid "Antispam"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: ../dashboard.php:69
|
75 |
msgid "Cerber tools"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: ../dashboard.php:69 ../cerber-tools.php:43
|
79 |
msgid "Tools"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: ../dashboard.php:127 ../dashboard.php:200
|
83 |
msgid "Remove"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: ../dashboard.php:134 ../dashboard.php:716 ../dashboard.php:3144 ../cerber-load.
|
87 |
+
#: php:3992
|
88 |
msgid "IP"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../dashboard.php:135 ../dashboard.php:717
|
92 |
msgid "Hostname"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: ../dashboard.php:136 ../dashboard.php:718
|
96 |
msgid "Country"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: ../dashboard.php:137
|
100 |
msgid "Expires"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: ../dashboard.php:138 ../cerber-load.php:3449
|
104 |
msgid "Reason"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: ../dashboard.php:139 ../cerber-scanner.php:5114
|
108 |
msgid "Action"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: ../dashboard.php:153
|
112 |
#, php-format
|
113 |
msgid "Showing last %d records from %d"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: ../dashboard.php:155
|
117 |
msgid "Hint"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: ../dashboard.php:155
|
121 |
msgid "To view activity, click on the IP"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: ../dashboard.php:159
|
125 |
msgid "No lockouts at the moment. The sky is clear."
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: ../dashboard.php:172 ../dashboard.php:691 ../dashboard.php:918 ../dashboard.
|
129 |
+
#: php:1288 ../dashboard.php:2969 ../cerber-load.php:4246 ../settings.php:522
|
130 |
msgid "White IP Access List"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ../dashboard.php:172
|
134 |
msgid "These IPs will never be locked out"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: ../dashboard.php:174 ../dashboard.php:692 ../dashboard.php:921 ../dashboard.
|
138 |
+
#: php:1289 ../dashboard.php:2970
|
139 |
msgid "Black IP Access List"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: ../dashboard.php:174
|
143 |
msgid "Nobody can log in or register from these IPs"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: ../dashboard.php:181
|
147 |
msgid "Your IP"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: ../dashboard.php:199 ../dashboard.php:931 ../dashboard.php:962 ../dashboard.
|
151 |
+
#: php:1074
|
152 |
msgid "Check for activities"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: ../dashboard.php:206
|
156 |
msgid "List is empty"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: ../dashboard.php:210
|
160 |
msgid "IP address, IPv4 address range or subnet"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: ../dashboard.php:211
|
164 |
msgid "Add IP to the list"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: ../dashboard.php:212
|
168 |
msgid "Optional comment for this entry"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: ../dashboard.php:237 ../dashboard.php:249
|
172 |
msgid "Incorrect IP address or IP range"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: ../dashboard.php:243
|
176 |
#, php-format
|
177 |
msgid "Address %s was added to White IP Access List"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: ../dashboard.php:253
|
181 |
msgid "You cannot add your IP address or network"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: ../dashboard.php:257
|
185 |
#, php-format
|
186 |
msgid "Address %s was added to Black IP Access List"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: ../dashboard.php:354 ../dashboard.php:2899 ../whois.php:223 ../whois.php:254 ..
|
190 |
+
#: /common.php:923 ../common.php:1271
|
191 |
msgid "Unknown"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../dashboard.php:396
|
195 |
msgid "unknown"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: ../dashboard.php:421
|
199 |
msgid "Email has been sent to"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: ../dashboard.php:424
|
203 |
msgid "Unable to send email to"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: ../dashboard.php:430
|
207 |
#, php-format
|
208 |
msgid "Lockout for %s was removed"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../dashboard.php:446 ../dashboard.php:1898
|
212 |
msgid "Settings saved"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: ../dashboard.php:548
|
216 |
msgid "IP address"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ../dashboard.php:548 ../dashboard.php:719 ../dashboard.php:3142
|
220 |
msgid "Date"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: ../dashboard.php:548 ../dashboard.php:720
|
224 |
msgid "Event"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: ../dashboard.php:548 ../dashboard.php:721 ../dashboard.php:3147
|
228 |
msgid "Local User"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: ../dashboard.php:548
|
232 |
msgid "User login"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: ../dashboard.php:548
|
236 |
msgid "User ID"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../dashboard.php:548 ../dashboard.php:722 ../cerber-load.php:4000
|
240 |
msgid "Username used"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ../dashboard.php:696 ../dashboard.php:924 ../dashboard.php:2974 ../common.php:
|
244 |
+
#: 889
|
245 |
msgid "Locked out"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: ../dashboard.php:740
|
249 |
msgid "Export"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: ../dashboard.php:744
|
253 |
msgid "No activity has been logged."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: ../dashboard.php:751
|
257 |
msgid "All events"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: ../dashboard.php:762
|
261 |
msgid "Search for IP or username"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: ../dashboard.php:762
|
265 |
msgid "Filter"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: ../dashboard.php:958
|
269 |
msgid "Abuse email:"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: ../dashboard.php:962
|
273 |
msgid "Network:"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: ../dashboard.php:976
|
277 |
msgid "Add network to the Black List"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: ../dashboard.php:981
|
281 |
msgid "Add IP to the Black List"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: ../dashboard.php:1037
|
285 |
msgid "Activated"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: ../dashboard.php:1058
|
289 |
msgid "Last seen"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: ../dashboard.php:1068 ../dashboard.php:1153
|
293 |
msgid "Registered"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: ../dashboard.php:1150
|
297 |
msgid "Comments"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: ../dashboard.php:1151
|
301 |
msgid "Last login"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: ../dashboard.php:1152
|
305 |
msgid "Failed login attempts"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: ../dashboard.php:1184 ../dashboard.php:1271 ../common.php:1002
|
309 |
msgid "Never"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: ../dashboard.php:1223
|
313 |
msgid "You"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: ../dashboard.php:1241
|
317 |
msgid "Cerber Quick View"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: ../dashboard.php:1275 ../dashboard.php:1297
|
321 |
msgid "active"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: ../dashboard.php:1275
|
325 |
msgid "deactivate"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: ../dashboard.php:1277
|
329 |
msgid "not active"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: ../dashboard.php:1278 ../dashboard.php:1292
|
333 |
msgid "disabled"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: ../dashboard.php:1283
|
337 |
msgid "failed attempts"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../dashboard.php:1283 ../dashboard.php:1284
|
341 |
msgid "in 24 hours"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: ../dashboard.php:1283 ../dashboard.php:1284
|
345 |
msgid "view all"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: ../dashboard.php:1284
|
349 |
msgid "lockouts"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: ../dashboard.php:1286
|
353 |
msgid "Lockouts at the moment"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: ../dashboard.php:1287
|
357 |
msgid "Last lockout"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: ../dashboard.php:1288 ../dashboard.php:1289 ../dashboard.php:2064
|
361 |
msgid "entry"
|
362 |
msgid_plural "entries"
|
363 |
msgstr[0] ""
|
364 |
msgstr[1] ""
|
365 |
|
366 |
+
#: ../dashboard.php:1290 ../settings.php:102
|
367 |
msgid "Citadel mode"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: ../dashboard.php:1292
|
371 |
msgid "enabled"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: ../dashboard.php:1297
|
375 |
msgid "no connection"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: ../dashboard.php:1310 ../dashboard.php:1312 ../cerber-scanner.php:1192
|
379 |
msgid "Disabled"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: ../dashboard.php:1311 ../cerber-scanner.php:756
|
383 |
msgid "Quick Scan"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: ../dashboard.php:1313 ../cerber-scanner.php:756
|
387 |
msgid "Full Scan"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: ../dashboard.php:1324 ../dashboard.php:1722 ../cerber-load.php:3983 ..
|
391 |
+
#: /settings.php:107 ../settings.php:564
|
392 |
msgid "Activity"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: ../dashboard.php:1325
|
396 |
msgid "Traffic"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: ../dashboard.php:1525 ../settings.php:82
|
400 |
msgid "My site is behind a reverse proxy"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: ../dashboard.php:1701
|
404 |
msgid "in the last 24 hours"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: ../dashboard.php:1707 ../dashboard.php:1737
|
408 |
msgid "View all"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: ../dashboard.php:1715 ../common.php:834
|
412 |
msgid "User registered"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../dashboard.php:1716
|
416 |
msgid "All suspicious activity"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: ../dashboard.php:1738
|
420 |
msgid "Recently locked out IP addresses"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: ../dashboard.php:1763
|
424 |
msgid "Confused about some settings?"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: ../dashboard.php:1764
|
428 |
msgid "You can easily load default recommended settings using button below"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: ../dashboard.php:1766
|
432 |
msgid "Load default settings"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: ../dashboard.php:1768 ../cerber-scanner.php:5090
|
436 |
msgid "Are you sure?"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: ../dashboard.php:1774
|
440 |
msgid "doesn't affect Custom login URL and Access Lists"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: ../dashboard.php:1775 ../cerber-load.php:3481 ../cerber-load.php:4248
|
444 |
msgid "Getting Started Guide"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: ../dashboard.php:1881
|
448 |
msgid "Attention! Citadel mode is now active. Nobody is able to log in."
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: ../dashboard.php:1882
|
452 |
msgid "Deactivate"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: ../dashboard.php:1883 ../dashboard.php:2299
|
456 |
msgid "View Activity"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: ../dashboard.php:1984
|
460 |
msgid "Subscribe"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: ../dashboard.php:1985 ../cerber-tools.php:285
|
464 |
msgid "Unsubscribe"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: ../dashboard.php:2013
|
468 |
msgid "You've subscribed"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: ../dashboard.php:2016
|
472 |
msgid "You've unsubscribed"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: ../dashboard.php:2087
|
476 |
msgid "Main settings"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: ../dashboard.php:2477
|
480 |
msgid "Countries"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: ../dashboard.php:2540
|
484 |
#, php-format
|
485 |
msgid "Permitted for one country"
|
486 |
msgid_plural "Permitted for %d countries"
|
487 |
msgstr[0] ""
|
488 |
msgstr[1] ""
|
489 |
|
490 |
+
#: ../dashboard.php:2543
|
491 |
#, php-format
|
492 |
msgid "Not permitted for one country"
|
493 |
msgid_plural "Not permitted for %d countries"
|
494 |
msgstr[0] ""
|
495 |
msgstr[1] ""
|
496 |
|
497 |
+
#: ../dashboard.php:2551
|
498 |
msgid "No rule"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: ../dashboard.php:2607
|
502 |
msgid "Start typing here to find a country"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: ../dashboard.php:2690
|
506 |
msgid "Click on a country name to add it to the list of selected countries"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: ../dashboard.php:2694
|
510 |
#, php-format
|
511 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
512 |
msgid "Selected countries are permitted to %s, other countries are not permitted to"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: ../dashboard.php:2697
|
516 |
#, php-format
|
517 |
msgctxt "to is a marker of infinitive, e.g. \"to use it\""
|
518 |
msgid "Selected countries are not permitted to %s, other countries are permitted to"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: ../dashboard.php:2714
|
522 |
msgid "Submit forms"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: ../dashboard.php:2715
|
526 |
msgid "Post comments"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../dashboard.php:2716
|
530 |
msgid "Log in to the website"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../dashboard.php:2717
|
534 |
msgid "Register on the website"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ../dashboard.php:2718
|
538 |
msgid "Use XML-RPC"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ../dashboard.php:2719
|
542 |
msgid "Use REST API"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: ../dashboard.php:2763
|
546 |
msgid "Security rules have been updated"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: ../dashboard.php:2817
|
550 |
msgid "Live traffic"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: ../dashboard.php:2818 ../cerber-tools.php:91 ../cerber-tools.php:100 ../cerber-
|
554 |
+
#: scanner.php:84
|
555 |
msgid "Settings"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: ../dashboard.php:2819 ../dashboard.php:3547 ../settings.php:588 ../cerber-
|
559 |
+
#: tools.php:51 ../cerber-scanner.php:87
|
560 |
msgid "Help"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: ../dashboard.php:3143
|
564 |
msgid "Request"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: ../dashboard.php:3145
|
568 |
msgid "Host Info"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: ../dashboard.php:3146
|
572 |
msgid "User Agent"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: ../dashboard.php:3163
|
576 |
msgid "No requests have been logged."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: ../dashboard.php:3171
|
580 |
msgid "All requests"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: ../dashboard.php:3173
|
584 |
+
msgid "Suspicious activity"
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#: ../dashboard.php:3174
|
588 |
+
msgid "Errors"
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
#: ../dashboard.php:3175 ../settings.php:172
|
592 |
msgid "Logged in users"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: ../dashboard.php:3176
|
596 |
msgid "Not logged in visitors"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: ../dashboard.php:3177
|
600 |
msgid "Form submissions"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: ../dashboard.php:3178
|
604 |
msgid "Page Not Found"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: ../dashboard.php:3179
|
608 |
msgid "REST API"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: ../dashboard.php:3180
|
612 |
msgid "XML-RPC"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: ../dashboard.php:3185
|
616 |
msgid "Longer than"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: ../dashboard.php:3201
|
620 |
msgid "Refresh"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: ../dashboard.php:3455
|
624 |
msgid "Any"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: ../dashboard.php:3497
|
628 |
msgid "Advanced search"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: ../dashboard.php:3540
|
632 |
+
msgid "Antispam and bot detection settings"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: ../dashboard.php:3545
|
636 |
+
msgid "Antispam engine"
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
#. Name of the plugin
|
640 |
msgid "WP Cerber Security, Antispam & Malware Scan"
|
641 |
msgstr ""
|
646 |
|
647 |
#. Description of the plugin
|
648 |
msgid ""
|
649 |
+
"Defends WordPress against hacker attacks, spam, trojans, and viruses. "
|
650 |
+
"Malware scanner and integrity checker. Hardening WordPress with a set of "
|
651 |
+
"comprehensive security algorithms. Spam protection with a sophisticated bot "
|
652 |
+
"detection engine and reCAPTCHA. Tracks user and intruder activity with "
|
653 |
+
"powerful email, mobile and desktop notifications."
|
654 |
msgstr ""
|
655 |
|
656 |
#. Author of the plugin
|
682 |
msgstr ""
|
683 |
|
684 |
#: ../common.php:209 ../common.php:272 ../common.php:277 ../common.php:282 ..
|
685 |
+
#: /cerber-load.php:677 ../cerber-load.php:689 ../cerber-load.php:696 ../cerber-
|
686 |
+
#: load.php:950 ../cerber-load.php:1172 ../cerber-load.php:1178 ../cerber-load.
|
687 |
+
#: php:1183 ../cerber-load.php:1188 ../cerber-load.php:1194 ../cerber-load.php:
|
688 |
+
#: 1201 ../cerber-load.php:1303 ../cerber-load.php:1440 ../settings.php:983 ..
|
689 |
+
#: /settings.php:1066
|
690 |
msgid "ERROR:"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: ../common.php:833
|
694 |
msgid "User created"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: ../common.php:835
|
698 |
msgid "Logged in"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: ../common.php:836
|
702 |
msgid "Logged out"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: ../common.php:837
|
706 |
msgid "Login failed"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: ../common.php:840
|
710 |
msgid "IP blocked"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: ../common.php:841
|
714 |
msgid "Subnet blocked"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: ../common.php:843
|
718 |
msgid "Citadel activated!"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: ../common.php:844
|
722 |
msgid "Spam comment denied"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: ../common.php:845
|
726 |
msgid "Spam form submission denied"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: ../common.php:846
|
730 |
msgid "Form submission denied"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: ../common.php:847
|
734 |
msgid "Comment denied"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: ../common.php:858
|
738 |
msgid "Password changed"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../common.php:859
|
742 |
msgid "Password reset requested"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../common.php:861
|
746 |
msgid "reCAPTCHA verification failed"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: ../common.php:862
|
750 |
msgid "reCAPTCHA settings are incorrect"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: ../common.php:863
|
754 |
msgid "Request to the Google reCAPTCHA service failed"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: ../common.php:865
|
758 |
msgid "Attempt to access prohibited URL"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: ../common.php:866 ../common.php:926
|
762 |
msgid "Attempt to log in with non-existent username"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: ../common.php:867 ../common.php:927
|
766 |
msgid "Attempt to log in with prohibited username"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: ../common.php:869
|
770 |
msgid "Attempt to log in denied"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: ../common.php:870
|
774 |
msgid "Attempt to register denied"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: ../common.php:871 ../common.php:931
|
778 |
msgid "Probing for vulnerable PHP code"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../common.php:872
|
782 |
msgid "Attempt to upload executable file denied"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: ../common.php:873
|
786 |
msgid "File upload denied"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: ../common.php:875
|
790 |
msgid "Request to REST API denied"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: ../common.php:876
|
794 |
msgid "XML-RPC request denied"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: ../common.php:878
|
798 |
msgid "Malicious request denied"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: ../common.php:882
|
802 |
msgid "User activated"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: ../common.php:887
|
806 |
msgid "Bot detected"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: ../common.php:888
|
810 |
msgid "Citadel mode is active"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: ../common.php:890
|
814 |
msgid "IP blacklisted"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: ../common.php:892
|
818 |
msgid "Malicious activity detected"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: ../common.php:893
|
822 |
msgid "Blocked by country rule"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: ../common.php:894
|
826 |
msgid "Limit reached"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: ../common.php:895
|
830 |
msgid "Multiple suspicious activities"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: ../common.php:896
|
834 |
msgid "Denied"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: ../common.php:897
|
838 |
msgid "Suspicious number of fields"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: ../common.php:898
|
842 |
msgid "Suspicious number of nested values"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: ../common.php:899 ../common.php:932
|
846 |
msgid "Malicious code detected"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: ../common.php:924
|
850 |
msgid "Limit on login attempts is reached"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: ../common.php:925
|
854 |
msgid "Attempt to access"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: ../common.php:928
|
858 |
msgid "Limit on failed reCAPTCHA verifications is reached"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: ../common.php:929
|
862 |
msgid "Bot activity is detected"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: ../common.php:930
|
866 |
msgid "Multiple suspicious activities were detected"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: ../common.php:933
|
870 |
msgid "Attempt to upload a file with malicious code"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: ../common.php:997
|
874 |
#, php-format
|
875 |
msgid "%s ago"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: ../common.php:997
|
879 |
+
#, php-format
|
880 |
+
msgctxt "preposition of a period of time like: in 6 hours"
|
881 |
+
msgid "in %s"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: ../common.php:1082
|
885 |
msgid "Bytes"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: ../common.php:1180 ../settings.php:229
|
889 |
msgid "New version is available"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: ../common.php:1187
|
893 |
#, php-format
|
894 |
msgid "Update to version %s of WP Cerber"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: ../common.php:1206
|
898 |
msgid "Not specified"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: ../common.php:1832
|
902 |
msgid "Unable to create the directory"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: ../common.php:1837
|
906 |
msgid "Destination folder access denied"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: ../common.php:1840
|
910 |
msgid "File not found"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: ../common.php:1843
|
914 |
msgid "Unable to copy the file"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: ../common.php:1849
|
918 |
msgid "Unable to delete the file"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: ../cerber-news.php:196
|
922 |
msgid "Cool!"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: ../cerber-lab.php:746
|
926 |
msgid "Want to make WP Cerber even more powerful?"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: ../cerber-lab.php:747
|
930 |
msgid ""
|
931 |
"Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. "
|
932 |
"This helps the plugin team to develop new algorithms for WP Cerber that will "
|
934 |
"everyday. You can disable the sending in the plugin settings at any time."
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: ../cerber-lab.php:748
|
938 |
msgid "OK, nail them all"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: ../cerber-lab.php:749
|
942 |
msgid "NO, maybe later"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: ../cerber-lab.php:750 ../settings.php:526
|
946 |
msgid "Know more"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: ../cerber-load.php:368
|
950 |
msgid "You are not allowed to log in. Ask your administrator for assistance."
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: ../cerber-load.php:375
|
954 |
#, php-format
|
955 |
+
msgid ""
|
956 |
+
"You have exceeded the number of allowed login attempts. Please try again in "
|
957 |
+
"%d minutes."
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: ../cerber-load.php:394
|
961 |
#, php-format
|
962 |
msgid "You have only one attempt remaining."
|
963 |
msgid_plural "You have %d attempts remaining."
|
964 |
msgstr[0] ""
|
965 |
msgstr[1] ""
|
966 |
|
967 |
+
#: ../cerber-load.php:706
|
968 |
msgid ""
|
969 |
"Human verification failed. Please click the square box in the reCAPTCHA "
|
970 |
"block below."
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: ../cerber-load.php:814
|
974 |
msgid ""
|
975 |
"> > > Translator of WP Cerber? To get the PRO license for free, drop your "
|
976 |
"contacts here: https://wpcerber.com/contact/"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: ../cerber-load.php:962
|
980 |
#, php-format
|
981 |
msgid ""
|
982 |
"<strong>ERROR</strong>: The password you entered for the username %s is "
|
983 |
"incorrect."
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: ../cerber-load.php:1173 ../cerber-load.php:1179 ../cerber-load.php:1195 ..
|
987 |
+
#: /cerber-load.php:1202
|
988 |
msgid "You are not allowed to register."
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: ../cerber-load.php:1189
|
992 |
msgid "Username is not allowed. Please choose another one."
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: ../cerber-load.php:1440
|
996 |
msgid "Sorry, human verification failed."
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: ../cerber-load.php:3281
|
1000 |
msgid "We're sorry, you are not allowed to proceed"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: ../cerber-load.php:3391
|
1004 |
msgid "WP Cerber notify"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: ../cerber-load.php:3413
|
1008 |
msgid "Citadel mode is activated"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: ../cerber-load.php:3415
|
1012 |
#, php-format
|
1013 |
msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: ../cerber-load.php:3416
|
1017 |
#, php-format
|
1018 |
msgid "Last failed attempt was at %s from IP %s with user login: %s."
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: ../cerber-load.php:3417 ../cerber-load.php:4024
|
1022 |
msgid "View activity in dashboard"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: ../cerber-load.php:3442
|
1026 |
msgid "unspecified"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: ../cerber-load.php:3445
|
1030 |
msgid "Number of lockouts is increasing"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: ../cerber-load.php:3447
|
1034 |
msgid "Number of active lockouts"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: ../cerber-load.php:3448
|
1038 |
#, php-format
|
1039 |
msgid "Last lockout was added: %s for IP %s"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: ../cerber-load.php:3450
|
1043 |
msgid "View activity for this IP"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: ../cerber-load.php:3451
|
1047 |
msgid "View lockouts in dashboard"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: ../cerber-load.php:3454 ../cerber-load.php:3456
|
1051 |
msgid "A new version of WP Cerber is available to install"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: ../cerber-load.php:3455
|
1055 |
msgid "Hi!"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: ../cerber-load.php:3458 ../cerber-load.php:3469
|
1059 |
msgid "Website"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: ../cerber-load.php:3461 ../cerber-load.php:3462
|
1063 |
msgid "The WP Cerber security plugin has been deactivated"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: ../cerber-load.php:3464
|
1067 |
msgid "Not logged in"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: ../cerber-load.php:3470
|
1071 |
msgid "By user"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: ../cerber-load.php:3471
|
1075 |
msgid "From IP address"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: ../cerber-load.php:3474
|
1079 |
msgid "From country"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: ../cerber-load.php:3478
|
1083 |
msgid "The WP Cerber security plugin is now active"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: ../cerber-load.php:3479 ../cerber-load.php:4245
|
1087 |
msgid "WP Cerber is now active and has started protecting your site"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: ../cerber-load.php:3486
|
1091 |
msgid "New Custom login URL"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: ../cerber-load.php:3490 ../cerber-load.php:3491
|
1095 |
msgid "A new activity has been recorded"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: ../cerber-load.php:3496
|
1099 |
msgid "Weekly report"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: ../cerber-load.php:3499 ../cerber-load.php:3509
|
1103 |
msgid "To change reporting settings visit"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: ../cerber-load.php:3506
|
1107 |
msgid "Scanner Report"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: ../cerber-load.php:3532
|
1111 |
msgid "Your login page:"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: ../cerber-load.php:3536
|
1115 |
msgid "Your license is valid until"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: ../cerber-load.php:3539
|
1119 |
msgid "This message was sent by"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: ../cerber-load.php:3560
|
1123 |
#, php-format
|
1124 |
msgid "Your last sign-in was %s from %s"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: ../cerber-load.php:3630
|
1128 |
msgid "Weekly Report"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: ../cerber-load.php:3642
|
1132 |
msgid "Activity details"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: ../cerber-load.php:3656
|
1136 |
msgid "Attempts to log in with non-existent username"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: ../cerber-load.php:3996
|
1140 |
msgid "User"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: ../cerber-load.php:4004
|
1144 |
msgid "Search string"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: ../cerber-load.php:4025
|
1148 |
msgid "To unsubscribe click here"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: ../cerber-load.php:4198
|
1152 |
#, php-format
|
1153 |
msgid "The WP Cerber requires PHP %s or higher. You are running"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: ../cerber-load.php:4202
|
1157 |
#, php-format
|
1158 |
msgid "The WP Cerber requires WordPress %s or higher. You are running"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: ../cerber-load.php:4211
|
1162 |
msgid "Can't activate WP Cerber due to a database error."
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: ../cerber-load.php:4246
|
1166 |
msgid "Your IP address is added to the"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: ../cerber-load.php:4256 ../settings.php:571
|
1170 |
msgid "Main Settings"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: ../cerber-load.php:4257 ../cerber-scanner.php:83
|
1174 |
msgid "Security Scanner"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: ../cerber-load.php:4258 ../settings.php:575 ../cerber-tools.php:92 ../cerber-
|
1178 |
+
#: tools.php:101 ../cerber-tools.php:188
|
1179 |
msgid "Access Lists"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../cerber-load.php:4260 ../settings.php:578
|
1183 |
msgid "Hardening"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: ../cerber-load.php:4261 ../settings.php:81 ../settings.php:105 ../settings.php:
|
1187 |
+
#: 585
|
1188 |
msgid "Notifications"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: ../cerber-load.php:4262
|
1192 |
msgid "Import settings"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: ../settings.php:73
|
1196 |
msgid "Plugin initialization"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: ../settings.php:74
|
1200 |
msgid "Load security engine"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: ../settings.php:74
|
1204 |
msgid "Legacy mode"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: ../settings.php:74
|
1208 |
msgid "Standard mode"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: ../settings.php:76
|
1212 |
msgid "Limit login attempts"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: ../settings.php:77
|
1216 |
msgid "Attempts"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: ../settings.php:78
|
1220 |
msgid "Lockout duration"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: ../settings.php:78 ../settings.php:104
|
1224 |
msgid "minutes"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: ../settings.php:79
|
1228 |
msgid "Aggressive lockout"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: ../settings.php:80 ../settings.php:282
|
1232 |
msgid "Use White IP Access List"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: ../settings.php:80
|
1236 |
msgid "Apply limit login rules to IP addresses in the White IP Access List"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: ../settings.php:82
|
1240 |
msgid "Site connection"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: ../settings.php:84
|
1244 |
msgid "Proactive security rules"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: ../settings.php:85
|
1248 |
msgid "Block subnet"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: ../settings.php:85
|
1252 |
msgid "Always block entire subnet Class C of intruders IP"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: ../settings.php:86
|
1256 |
msgid "Non-existent users"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: ../settings.php:86
|
1260 |
msgid "Immediately block IP when attempting to login with a non-existent username"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: ../settings.php:87
|
1264 |
msgid "Disable dashboard redirection"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: ../settings.php:87
|
1268 |
msgid ""
|
1269 |
"Disable automatic redirection to the login page when /wp-admin/ is requested "
|
1270 |
"by an unauthorized request"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: ../settings.php:88
|
1274 |
msgid "Request wp-login.php"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: ../settings.php:88
|
1278 |
msgid "Immediately block IP after any request to wp-login.php"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: ../settings.php:89
|
1282 |
msgid "Display 404 page"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: ../settings.php:89
|
1286 |
msgid "Use 404 template from the active theme"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: ../settings.php:89
|
1290 |
msgid "Display simple 404 page"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: ../settings.php:91
|
1294 |
msgid "Custom login page"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: ../settings.php:92
|
1298 |
msgid "Custom login URL"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: ../settings.php:97
|
1302 |
msgid "Custom login URL may contain only letters, numbers, dashes and underscores"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: ../settings.php:98
|
1306 |
msgid "must not overlap with the existing pages or posts slug"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: ../settings.php:100
|
1310 |
msgid "Disable wp-login.php"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: ../settings.php:100
|
1314 |
msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: ../settings.php:103
|
1318 |
msgid "Threshold"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: ../settings.php:104 ../cerber-scanner.php:3522
|
1322 |
msgid "Duration"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: ../settings.php:105
|
1326 |
msgid "Send notification to admin email"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: ../settings.php:105 ../settings.php:717 ../settings.php:839
|
1330 |
msgid "Click to send test"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: ../settings.php:108 ../settings.php:358
|
1334 |
msgid "Keep records for"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: ../settings.php:108 ../settings.php:184 ../settings.php:362 ../settings.php:427
|
1338 |
msgid "days"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: ../settings.php:109
|
1342 |
msgid "Cerber Lab connection"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: ../settings.php:109
|
1346 |
msgid "Send malicious IP addresses to the Cerber Lab"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: ../settings.php:110
|
1350 |
msgid "Cerber Lab protocol"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: ../settings.php:111
|
1354 |
msgid "Use file"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: ../settings.php:111
|
1358 |
msgid "Write failed login attempts to the file"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: ../settings.php:113
|
1362 |
msgid "Preferences"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: ../settings.php:114
|
1366 |
msgid "Drill down IP"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: ../settings.php:114
|
1370 |
msgid "Retrieve extra WHOIS information for IP"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: ../settings.php:115
|
1374 |
msgid "Date format"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: ../settings.php:115
|
1378 |
#, php-format
|
1379 |
msgid "if empty, the default format %s will be used"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: ../settings.php:122
|
1383 |
msgid "Hardening WordPress"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: ../settings.php:123
|
1387 |
msgid "Stop user enumeration"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: ../settings.php:123
|
1391 |
msgid "Block access to user pages like /?author=n and user data via REST API"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: ../settings.php:124
|
1395 |
msgid "Protect admin scripts"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: ../settings.php:124
|
1399 |
msgid "Block unauthorized access to load-scripts.php and load-styles.php"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: ../settings.php:125
|
1403 |
msgid "Disable XML-RPC"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: ../settings.php:125
|
1407 |
msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: ../settings.php:126
|
1411 |
msgid "Disable feeds"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: ../settings.php:126
|
1415 |
msgid "Block access to the RSS, Atom and RDF feeds"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: ../settings.php:127
|
1419 |
msgid "Disable REST API"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: ../settings.php:127
|
1423 |
msgid "Block access to the WordPress REST API except the following"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: ../settings.php:128
|
1427 |
msgid "Allow REST API for logged in users"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: ../settings.php:135
|
1431 |
msgid ""
|
1432 |
"Specify REST API namespaces to be allowed if REST API is disabled. One "
|
1433 |
"string per line."
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: ../settings.php:145
|
1437 |
msgid "User related settings"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: ../settings.php:147
|
1441 |
msgid "Registration limit"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: ../settings.php:149
|
1445 |
msgid "Prohibited usernames"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: ../settings.php:155
|
1449 |
msgid ""
|
1450 |
"Usernames from this list are not allowed to log in or register. Any IP "
|
1451 |
"address, have tried to use any of these usernames, will be immediately "
|
1452 |
"blocked. Use comma to separate logins."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: ../settings.php:155
|
1456 |
msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: ../settings.php:157
|
1460 |
msgid "User session expire"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: ../settings.php:157
|
1464 |
msgid "in minutes (leave empty to use default WP value)"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: ../settings.php:158
|
1468 |
msgid "Sort users in dashboard"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: ../settings.php:158
|
1472 |
msgid "by date of registration"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: ../settings.php:165
|
1476 |
msgid "Cerber antispam engine"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: ../settings.php:166
|
1480 |
msgid "Comment form"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: ../settings.php:166
|
1484 |
msgid "Protect comment form with bot detection engine"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: ../settings.php:167 ../settings.php:195
|
1488 |
msgid "Registration form"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: ../settings.php:167
|
1492 |
msgid "Protect registration form with bot detection engine"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: ../settings.php:168
|
1496 |
msgid "Other forms"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: ../settings.php:168
|
1500 |
msgid "Protect all forms on the website with bot detection engine"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: ../settings.php:170
|
1504 |
msgid "Adjust antispam engine"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: ../settings.php:171
|
1508 |
msgid "Safe mode"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: ../settings.php:171
|
1512 |
msgid "Use less restrictive policies (allow AJAX)"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: ../settings.php:172
|
1516 |
msgid "Disable bot detection engine for logged in users"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: ../settings.php:173
|
1520 |
msgid "Query whitelist"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: ../settings.php:179
|
1524 |
msgid ""
|
1525 |
"Enter a part of query string or query path to exclude a request from "
|
1526 |
"inspection by the engine. One item per line."
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: ../settings.php:179 ../settings.php:293
|
1530 |
msgid "To specify a REGEX pattern, enclose a whole line in two braces."
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: ../settings.php:182
|
1534 |
msgid "Comment processing"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: ../settings.php:183
|
1538 |
msgid "If a spam comment detected"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: ../settings.php:183
|
1542 |
msgid "Deny it completely"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: ../settings.php:183
|
1546 |
msgid "Mark it as spam"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: ../settings.php:184
|
1550 |
msgid "Trash spam comments"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: ../settings.php:184
|
1554 |
msgid "Move spam comments to trash after"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: ../settings.php:190
|
1558 |
msgid "reCAPTCHA settings"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: ../settings.php:191
|
1562 |
msgid "Site key"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: ../settings.php:192
|
1566 |
msgid "Secret key"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: ../settings.php:193
|
1570 |
msgid "Invisible reCAPTCHA"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: ../settings.php:193
|
1574 |
msgid "Enable invisible reCAPTCHA"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: ../settings.php:193
|
1578 |
msgid ""
|
1579 |
"(do not enable it unless you get and enter the Site and Secret keys for the "
|
1580 |
"invisible version)"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: ../settings.php:195
|
1584 |
msgid "Enable reCAPTCHA for WordPress registration form"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: ../settings.php:196
|
1588 |
msgid "Enable reCAPTCHA for WooCommerce registration form"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: ../settings.php:198
|
1592 |
msgid "Lost password form"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: ../settings.php:198
|
1596 |
msgid "Enable reCAPTCHA for WordPress lost password form"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: ../settings.php:199
|
1600 |
msgid "Enable reCAPTCHA for WooCommerce lost password form"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: ../settings.php:201
|
1604 |
msgid "Login form"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: ../settings.php:201
|
1608 |
msgid "Enable reCAPTCHA for WordPress login form"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: ../settings.php:202
|
1612 |
msgid "Enable reCAPTCHA for WooCommerce login form"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: ../settings.php:204
|
1616 |
msgid "Enable reCAPTCHA for WordPress comment form"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: ../settings.php:205
|
1620 |
msgid "Disable reCAPTCHA for logged in users"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: ../settings.php:207
|
1624 |
msgid "Limit attempts"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: ../settings.php:207
|
1628 |
#, php-format
|
1629 |
msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: ../settings.php:213
|
1633 |
msgid "Email notifications"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: ../settings.php:216 ../settings.php:257 ../settings.php:489
|
1637 |
msgid "Email Address"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: ../settings.php:220 ../settings.php:262 ../settings.php:326 ../settings.php:493
|
1641 |
msgid "Use comma to specify multiple values"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: ../settings.php:225
|
1645 |
#, php-format
|
1646 |
msgid "if empty, the admin email %s will be used"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: ../settings.php:228
|
1650 |
msgid "Notification limit"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: ../settings.php:228
|
1654 |
msgid "notification letters allowed per hour (0 means unlimited)"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: ../settings.php:234
|
1658 |
msgid "Push notifications"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: ../settings.php:242
|
1662 |
msgid "All connected devices"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: ../settings.php:245
|
1666 |
msgid "No devices found"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: ../settings.php:249
|
1670 |
msgid "Not available"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: ../settings.php:254
|
1674 |
msgid "Weekly reports"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: ../settings.php:255
|
1678 |
msgid "Enable reporting"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: ../settings.php:267 ../settings.php:498
|
1682 |
msgid "if empty, email from notification settings will be used"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: ../settings.php:275
|
1686 |
msgid "Inspection"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: ../settings.php:276
|
1690 |
msgid "Enable traffic inspection"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: ../settings.php:287
|
1694 |
msgid "Request whitelist"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: ../settings.php:293
|
1698 |
msgid ""
|
1699 |
"Enter a request URI to exclude the request from inspection. One item per "
|
1700 |
"line."
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: ../settings.php:296
|
1704 |
msgid "Logging"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: ../settings.php:297
|
1708 |
msgid "Logging mode"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: ../settings.php:303
|
1712 |
msgid "Logging disabled"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: ../settings.php:304
|
1716 |
msgid "Smart"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: ../settings.php:305
|
1720 |
msgid "All traffic"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: ../settings.php:309
|
1724 |
msgid "Ignore crawlers"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: ../settings.php:314
|
1728 |
msgid "Save request fields"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: ../settings.php:319
|
1732 |
msgid "Mask these form fields"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: ../settings.php:331
|
1736 |
msgid "Save request headers"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: ../settings.php:337
|
1740 |
msgid "Save $_SERVER"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: ../settings.php:343
|
1744 |
msgid "Save request cookies"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: ../settings.php:350
|
1748 |
msgid "Page generation time threshold"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: ../settings.php:355
|
1752 |
msgid "milliseconds"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: ../settings.php:371
|
1756 |
msgid "Scanner settings"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: ../settings.php:372
|
1760 |
msgid "Custom signatures"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: ../settings.php:378
|
1764 |
msgid ""
|
1765 |
"Specify custom PHP code signatures. One item per line. To specify a REGEX "
|
1766 |
"pattern, enclose a whole line in two braces."
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: ../settings.php:380
|
1770 |
msgid "Unwanted file extensions"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: ../settings.php:386
|
1774 |
msgid ""
|
1775 |
"Specify file extensions to search for. Full scan only. Use comma to separate "
|
1776 |
"items."
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: ../settings.php:388
|
1780 |
msgid "Directories to exclude"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: ../settings.php:394
|
1784 |
msgid ""
|
1785 |
"Specify directories to exclude from scanning. Use absolute paths. One item "
|
1786 |
"per line."
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: ../settings.php:396
|
1790 |
msgid "Monitor new files"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: ../settings.php:403
|
1794 |
msgid "Monitor modified files"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: ../settings.php:409
|
1798 |
msgid "Scan temporary directory"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: ../settings.php:416
|
1802 |
msgid "Scan session directory"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: ../settings.php:422
|
1806 |
msgid "Delete quarantined files after"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: ../settings.php:436
|
1810 |
msgid "Automated recurring scan schedule"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: ../settings.php:437
|
1814 |
msgid "Launch Quick Scan"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: ../settings.php:444
|
1818 |
msgid "Launch Full Scan"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: ../settings.php:452
|
1822 |
msgid "Scan results reporting"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
+
#: ../settings.php:454
|
1826 |
msgid "Low severity"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
+
#: ../settings.php:454
|
1830 |
msgid "Medium severity"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
+
#: ../settings.php:454
|
1834 |
msgid "High severity"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: ../settings.php:455
|
1838 |
msgid "Report an issue if any of the following is true"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: ../settings.php:463
|
1842 |
msgid "Send email report"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: ../settings.php:469
|
1846 |
msgid "After every scan"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: ../settings.php:470
|
1850 |
msgid "If any changes in scan results occurred"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: ../settings.php:471
|
1854 |
msgid "If new issues found"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: ../settings.php:475
|
1858 |
msgid "Include file sizes"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
+
#: ../settings.php:482
|
1862 |
msgid "Include scan errors"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: ../settings.php:508
|
1866 |
msgid "Make your protection smarter!"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
+
#: ../settings.php:512
|
1870 |
msgid ""
|
1871 |
"Please enable Permalinks to use this feature. Set Permalink Settings to "
|
1872 |
"something other than Default."
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: ../settings.php:515
|
1876 |
msgid "Be careful about enabling these options."
|
1877 |
msgstr ""
|
1878 |
|
1879 |
+
#: ../settings.php:515
|
1880 |
msgid "If you forget your Custom login URL, you will be unable to log in."
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: ../settings.php:519
|
1884 |
msgid ""
|
1885 |
"In the Citadel mode nobody is able to log in except IPs from the White IP "
|
1886 |
"Access List. Active user sessions will not be affected."
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: ../settings.php:522
|
1890 |
msgid "These settings do not affect hosts from the "
|
1891 |
msgstr ""
|
1892 |
|
1893 |
+
#: ../settings.php:525
|
1894 |
msgid ""
|
1895 |
"Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
|
1896 |
"key on the Google website"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: ../settings.php:568
|
1900 |
msgid "Lockouts"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: ../settings.php:581
|
1904 |
msgid "Users"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: ../settings.php:698 ../settings.php:820
|
1908 |
#, php-format
|
1909 |
msgid "%s allowed retries in %s minutes"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: ../settings.php:703 ../settings.php:825
|
1913 |
#, php-format
|
1914 |
msgid "%s allowed registrations in %s minutes from one IP"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: ../settings.php:708 ../settings.php:830
|
1918 |
#, php-format
|
1919 |
msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: ../settings.php:715 ../settings.php:837
|
1923 |
msgid "Notify admin if the number of active lockouts above"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: ../settings.php:720 ../settings.php:842
|
1927 |
#, php-format
|
1928 |
msgid "Enable after %s failed login attempts in last %s minutes"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: ../settings.php:941
|
1932 |
msgid "Sunday"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: ../settings.php:942
|
1936 |
msgid "Monday"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: ../settings.php:943
|
1940 |
msgid "Tuesday"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: ../settings.php:944
|
1944 |
msgid "Wednesday"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: ../settings.php:945
|
1948 |
msgid "Thursday"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: ../settings.php:946
|
1952 |
msgid "Friday"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: ../settings.php:947
|
1956 |
msgid "Saturday"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: ../settings.php:957
|
1960 |
+
msgctxt "preposition of time like: at 11:00"
|
|
|
1961 |
msgid "at"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: ../settings.php:973
|
1965 |
msgid "Click to send now"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: ../settings.php:984
|
1969 |
msgid "Plugin initialization mode has not been changed"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: ../settings.php:1004 ../settings.php:1005
|
1973 |
msgid "Attention! You have changed the login URL! The new login URL is"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: ../settings.php:1006 ../settings.php:1007
|
1977 |
msgid ""
|
1978 |
"If you use a caching plugin, you have to add your new login URL to the list "
|
1979 |
"of pages not to cache."
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: ../settings.php:1090 ../settings.php:1102 ../settings.php:1230
|
1983 |
msgid "<strong>ERROR</strong>: please enter a valid email address."
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: ../settings.php:1235
|
1987 |
msgid "The schedule has been updated"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: ../settings.php:1238
|
1991 |
msgid "Unable to updated the schedule"
|
1992 |
msgstr ""
|
1993 |
|
2044 |
msgid "What do you want to import?"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
+
#: ../cerber-tools.php:102 ../cerber-scanner.php:3722
|
2048 |
msgid "Upload file"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: ../cerber-tools.php:151
|
2052 |
msgid "No file was uploaded or file is corrupted"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: ../cerber-tools.php:188
|
2056 |
msgid "Error while updating"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: ../cerber-tools.php:194
|
2060 |
msgid "Settings has imported successfully from"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: ../cerber-tools.php:201
|
2064 |
msgid "Error while parsing file"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: ../cerber-scanner.php:85
|
2068 |
+
msgid "Scheduling"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
#: ../cerber-scanner.php:86
|
2072 |
+
msgid "Quarantine"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: ../cerber-scanner.php:136
|
2076 |
msgid "Currently a scheduled scan in progress. Please wait until it is finished."
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: ../cerber-scanner.php:140
|
2080 |
#, php-format
|
2081 |
msgid "Previous scan started %s has not been completed. Continue scanning?"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: ../cerber-scanner.php:149
|
2085 |
msgid ""
|
2086 |
"It seems this website has never been scanned. To start scanning click the "
|
2087 |
"button below."
|
2088 |
msgstr ""
|
2089 |
|
2090 |
+
#: ../cerber-scanner.php:152
|
2091 |
msgid "Start Quick Scan"
|
2092 |
msgstr ""
|
2093 |
|
2094 |
+
#: ../cerber-scanner.php:153
|
2095 |
msgid "Start Full Scan"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
+
#: ../cerber-scanner.php:154
|
2099 |
msgid "Stop Scanning"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: ../cerber-scanner.php:155
|
2103 |
msgid "Continue Scanning"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: ../cerber-scanner.php:184
|
2107 |
msgid "Delete"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: ../cerber-scanner.php:1142
|
2111 |
msgid "Verified"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: ../cerber-scanner.php:1148
|
2115 |
msgid "Vulnerability found"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: ../cerber-scanner.php:1149
|
2119 |
msgid "Integrity data not found"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: ../cerber-scanner.php:1150
|
2123 |
msgid "Unable to check the integrity of the plugin due to a network error"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: ../cerber-scanner.php:1151
|
2127 |
msgid "Unable to check the integrity of WordPress files due to a network error"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: ../cerber-scanner.php:1152
|
2131 |
msgid "Unable to check the integrity of the theme due to a network error"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: ../cerber-scanner.php:1153
|
2135 |
msgid "Unable to check the integrity due to a DB error"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: ../cerber-scanner.php:1155
|
2139 |
msgid "Local file doesn't exist"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: ../cerber-scanner.php:1157
|
2143 |
msgid "Unable to process file"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: ../cerber-scanner.php:1158 ../cerber-scanner.php:4569
|
2147 |
msgid "Unable to open file"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: ../cerber-scanner.php:1160
|
2151 |
msgid "Checksum mismatch"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: ../cerber-scanner.php:1163
|
2155 |
msgid "Suspicious code found"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: ../cerber-scanner.php:1164
|
2159 |
msgid "Potentially malicious code found"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: ../cerber-scanner.php:1165
|
2163 |
msgid "Unattended suspicious file"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: ../cerber-scanner.php:1166
|
2167 |
msgid "Executable code found"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: ../cerber-scanner.php:1169 ../cerber-scanner.php:2388
|
2171 |
msgid "Suspicious directives found"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: ../cerber-scanner.php:1170
|
2175 |
msgid "Unwanted file extension"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: ../cerber-scanner.php:1172
|
2179 |
msgid "Content has been modified"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: ../cerber-scanner.php:1173
|
2183 |
msgid "New file"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: ../cerber-scanner.php:1193
|
2187 |
msgid "Every hour"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
+
#: ../cerber-scanner.php:1194
|
2191 |
msgid "Every 3 hours"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: ../cerber-scanner.php:1195
|
2195 |
msgid "Every 6 hours"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: ../cerber-scanner.php:2225
|
2199 |
msgid "Custom signature found"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: ../cerber-scanner.php:2386
|
2203 |
msgid "Suspicious code instruction found"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: ../cerber-scanner.php:2387
|
2207 |
msgid "Suspicious code signatures found"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: ../cerber-scanner.php:2390
|
2211 |
#, php-format
|
2212 |
msgid ""
|
2213 |
"To solve this issue you have to reinstall %s or update it to the latest "
|
2214 |
"version."
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: ../cerber-scanner.php:2391
|
2218 |
msgid "Please upload a reference ZIP archive"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: ../cerber-scanner.php:2392
|
2222 |
msgid "Resolve issue"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: ../cerber-scanner.php:3433
|
2226 |
msgid "Scanning folders for files"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: ../cerber-scanner.php:3434
|
2230 |
msgid "Scanning the upload folder for files"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: ../cerber-scanner.php:3435
|
2234 |
msgid "Scanning the temp folder for files"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: ../cerber-scanner.php:3436
|
2238 |
msgid "Scanning the session folder for files"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: ../cerber-scanner.php:3437
|
2242 |
msgid "Parsing the list of files"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
+
#: ../cerber-scanner.php:3438
|
2246 |
msgid "Checking for new and modified files"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: ../cerber-scanner.php:3439
|
2250 |
msgid "Verifying the integrity of WordPress"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: ../cerber-scanner.php:3440
|
2254 |
msgid "Verifying the integrity of the plugins"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: ../cerber-scanner.php:3441
|
2258 |
msgid "Verifying the integrity of the themes"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: ../cerber-scanner.php:3442
|
2262 |
msgid "Searching for malicious code"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: ../cerber-scanner.php:3443
|
2266 |
msgid "Finalizing the scan"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
+
#: ../cerber-scanner.php:3514
|
2270 |
+
msgid "Started"
|
2271 |
+
msgstr ""
|
2272 |
+
|
2273 |
+
#: ../cerber-scanner.php:3518
|
2274 |
+
msgid "Finished"
|
2275 |
+
msgstr ""
|
2276 |
+
|
2277 |
+
#: ../cerber-scanner.php:3526
|
2278 |
+
msgid "Performance"
|
2279 |
+
msgstr ""
|
2280 |
+
|
2281 |
+
#: ../cerber-scanner.php:3538
|
2282 |
+
msgid "Vulnerabilities"
|
2283 |
+
msgstr ""
|
2284 |
+
|
2285 |
+
#: ../cerber-scanner.php:3542
|
2286 |
+
msgid "New files"
|
2287 |
+
msgstr ""
|
2288 |
+
|
2289 |
+
#: ../cerber-scanner.php:3546
|
2290 |
+
msgid "Changed files"
|
2291 |
+
msgstr ""
|
2292 |
+
|
2293 |
+
#: ../cerber-scanner.php:3550
|
2294 |
+
msgid "Unwanted extensions"
|
2295 |
+
msgstr ""
|
2296 |
+
|
2297 |
+
#: ../cerber-scanner.php:3554
|
2298 |
+
msgid "Unattended files"
|
2299 |
+
msgstr ""
|
2300 |
+
|
2301 |
+
#: ../cerber-scanner.php:3563 ../cerber-scanner.php:5109
|
2302 |
+
msgid "Scanned"
|
2303 |
+
msgstr ""
|
2304 |
+
|
2305 |
+
#: ../cerber-scanner.php:3563 ../cerber-scanner.php:3633
|
2306 |
msgid "Files to scan"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
+
#: ../cerber-scanner.php:3570 ../cerber-scanner.php:3641
|
2310 |
msgid "Critical issues"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
+
#: ../cerber-scanner.php:3570 ../cerber-scanner.php:3645 ../cerber-scanner.php:4759
|
2314 |
msgid "Issues total"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
+
#: ../cerber-scanner.php:3717
|
2318 |
msgid "We have not found any integrity data to verify"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
+
#: ../cerber-scanner.php:3719
|
2322 |
msgid ""
|
2323 |
"You have to upload a ZIP archive from which you've installed it. This "
|
2324 |
"enables the security scanner to verify the integrity of the code and detect "
|
2325 |
"malware."
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: ../cerber-scanner.php:4005
|
2329 |
msgid "The directory is not writable"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: ../cerber-scanner.php:4023
|
2333 |
msgid "Unable to create WP CERBER directory"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: ../cerber-scanner.php:4230
|
2337 |
msgid ""
|
2338 |
"File access error. Possibly scan results are outdated. Please run Quick or "
|
2339 |
"Full Scan."
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: ../cerber-scanner.php:4715
|
2343 |
msgid "Full Scan Report"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
+
#: ../cerber-scanner.php:4715
|
2347 |
msgid "Quick Scan Report"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: ../cerber-scanner.php:4728
|
2351 |
msgid "Files scanned"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
+
#: ../cerber-scanner.php:4841
|
2355 |
msgid "To view full report visit"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: ../cerber-scanner.php:5037
|
2359 |
+
msgid "There are no files in the quarantine at the moment."
|
2360 |
+
msgstr ""
|
2361 |
+
|
2362 |
+
#: ../cerber-scanner.php:5102
|
2363 |
+
msgid "Restore"
|
2364 |
+
msgstr ""
|
2365 |
+
|
2366 |
+
#: ../cerber-scanner.php:5105
|
2367 |
+
msgid "Delete permanently"
|
2368 |
+
msgstr ""
|
2369 |
+
|
2370 |
+
#: ../cerber-scanner.php:5110
|
2371 |
+
msgid "Moved to quarantine"
|
2372 |
+
msgstr ""
|
2373 |
+
|
2374 |
+
#: ../cerber-scanner.php:5111
|
2375 |
+
msgid "Automatic deletion"
|
2376 |
+
msgstr ""
|
2377 |
+
|
2378 |
+
#: ../cerber-scanner.php:5112
|
2379 |
+
msgid "Size"
|
2380 |
+
msgstr ""
|
2381 |
+
|
2382 |
+
#: ../cerber-scanner.php:5113
|
2383 |
+
msgid "File"
|
2384 |
+
msgstr ""
|
2385 |
+
|
2386 |
+
#: ../cerber-scanner.php:5175
|
2387 |
+
msgid "The file has been deleted permanently."
|
2388 |
+
msgstr ""
|
2389 |
+
|
2390 |
+
#: ../cerber-scanner.php:5184
|
2391 |
+
msgid "The file has been restored to its original location."
|
2392 |
+
msgstr ""
|
2393 |
+
|
2394 |
#. Description of the plugin
|
2395 |
msgid ""
|
2396 |
"This is a standard boot module for WP Cerber Security & Antispam plugin. It "
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: security, malware scanner, antispam, firewall, limit login attempts, custo
|
|
5 |
Requires at least: 4.5
|
6 |
Requires PHP: 5.4
|
7 |
Tested up to: 4.9
|
8 |
-
Stable tag: 7.
|
9 |
License: GPLv2
|
10 |
|
11 |
Protection against hacker attacks and bots. Malware scanner & integrity checker. Monitor user activity. Antispam reCAPTCHA. Limit login attempts.
|
@@ -307,14 +307,22 @@ To get access to your dashboard you need to copy the WP Cerber Reset folder to t
|
|
307 |
|
308 |
|
309 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
= 7.5 =
|
311 |
-
New:
|
312 |
-
New: The traffic logger can save headers, cookies and the $_SERVER variable for every HTTP request.
|
313 |
-
New: The scanner now scans installed plugins for known vulnerabilities. If you have enabled scheduled automatic scans you will be notified in a email report.
|
314 |
-
Update: A set of new malware signatures amd patterns have been added to detect malware submitted through a contact form as well as any HTTP request fields.
|
315 |
-
Update: Now the plugin inspects user sign ups (user registrations) on multisite WordPress installations and BuddyPress.
|
316 |
-
Update: The search for user activity, as well as enabling activity notifications, is improved.
|
317 |
-
*[Read more](https://wpcerber.com/wp-cerber-security-7-5/)
|
318 |
|
319 |
= 7.2 =
|
320 |
* New: Monitoring new and changed files.
|
@@ -465,13 +473,6 @@ Update: The search for user activity, as well as enabling activity notifications
|
|
465 |
* Fixed bug: Password reset link that is generated by the WooCommerce reset password form can be corrupted if reCAPTCHA is enabled for the form.
|
466 |
* Fixed bug: The plugin doesn’t block IPv6 addresses from the Black IP Access List (versions affected: 4.0 – 4.3).
|
467 |
|
468 |
-
= 4.3 =
|
469 |
-
* New: Use powerful subscriptions to get email notifications according to filters for events you have set.
|
470 |
-
* New: Search and/or filter activity by IP address, username (login), specific event and a user. You may use any combination of them.
|
471 |
-
* New: Now you can export activity from your WordPress website to a CSV file. You may export all activities or just a set of filtered out activities.
|
472 |
-
* Update: Now you can specify multiple email boxes for notifications.
|
473 |
-
* Update: The Spanish translation has been updated, thanks to [leemon](https://profiles.wordpress.org/leemon/).
|
474 |
-
|
475 |
== Other Notes ==
|
476 |
|
477 |
1. If you want to test out plugin's features, do this from another computer and remove that computer's network from the White Access List. Cerber is smart enough to recognize "the boss".
|
5 |
Requires at least: 4.5
|
6 |
Requires PHP: 5.4
|
7 |
Tested up to: 4.9
|
8 |
+
Stable tag: 7.6
|
9 |
License: GPLv2
|
10 |
|
11 |
Protection against hacker attacks and bots. Malware scanner & integrity checker. Monitor user activity. Antispam reCAPTCHA. Limit login attempts.
|
307 |
|
308 |
|
309 |
== Changelog ==
|
310 |
+
= 7.6 =
|
311 |
+
* New: The quarantine has got a separate admin page in the WordPress dashboard which allows viewing deleted files, restoring or deleting them.
|
312 |
+
* New: Now [the malware scanner and integrity checker](https://wpcerber.com/wordpress-security-scanner/) supports multisite WordPress installations.
|
313 |
+
* Bug fixed: Once an address IP has been locked out after reaching the limit to the number of attempts to log in the "We’re sorry, you are not allowed to proceed" forbidden page is being displayed instead of the normal user message "You have exceeded the number of allowed login attempts".
|
314 |
+
* Bug fixed: PHP Notice: Only variables should be passed by reference in cerber-load.php on line 5377
|
315 |
+
* Update: Miscellaneous code improvements for traffic inspector
|
316 |
+
* [Read more](https://wpcerber.com/wp-cerber-security-7-6/)
|
317 |
+
|
318 |
= 7.5 =
|
319 |
+
* New: Firewall algorithms have been improved and now inspect the contents of all files that are being tried to upload on a website.
|
320 |
+
* New: The traffic logger can save headers, cookies and the $_SERVER variable for every HTTP request.
|
321 |
+
* New: The scanner now scans installed plugins for known vulnerabilities. If you have enabled scheduled automatic scans you will be notified in a email report.
|
322 |
+
* Update: A set of new malware signatures amd patterns have been added to detect malware submitted through a contact form as well as any HTTP request fields.
|
323 |
+
* Update: Now the plugin inspects user sign ups (user registrations) on multisite WordPress installations and BuddyPress.
|
324 |
+
* Update: The search for user activity, as well as enabling activity notifications, is improved.
|
325 |
+
* [Read more](https://wpcerber.com/wp-cerber-security-7-5/)
|
326 |
|
327 |
= 7.2 =
|
328 |
* New: Monitoring new and changed files.
|
473 |
* Fixed bug: Password reset link that is generated by the WooCommerce reset password form can be corrupted if reCAPTCHA is enabled for the form.
|
474 |
* Fixed bug: The plugin doesn’t block IPv6 addresses from the Black IP Access List (versions affected: 4.0 – 4.3).
|
475 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
476 |
== Other Notes ==
|
477 |
|
478 |
1. If you want to test out plugin's features, do this from another computer and remove that computer's network from the White Access List. Cerber is smart enough to recognize "the boss".
|
settings.php
CHANGED
@@ -38,6 +38,7 @@ if ( ! defined( 'WPINC' ) ) { exit; }
|
|
38 |
define('CERBER_OPT','cerber-main');
|
39 |
define('CERBER_OPT_H','cerber-hardening');
|
40 |
define('CERBER_OPT_U','cerber-users');
|
|
|
41 |
define('CERBER_OPT_C','cerber-recaptcha');
|
42 |
define('CERBER_OPT_N','cerber-notifications');
|
43 |
define('CERBER_OPT_T','cerber-traffic');
|
@@ -51,7 +52,7 @@ define('CERBER_OPT_E','cerber-schedule');
|
|
51 |
*/
|
52 |
|
53 |
function cerber_get_setting_list() {
|
54 |
-
return array( CERBER_OPT, CERBER_OPT_H, CERBER_OPT_U, CERBER_OPT_C, CERBER_OPT_N, CERBER_OPT_T, CERBER_OPT_S, CERBER_OPT_E );
|
55 |
}
|
56 |
|
57 |
/*
|
@@ -158,18 +159,18 @@ function cerber_settings_init(){
|
|
158 |
|
159 |
// Antibot & reCAPTCHA -----------------------------------------------------------------------------
|
160 |
|
161 |
-
$tab='
|
162 |
-
register_setting( 'cerberus-'.$tab,
|
163 |
|
164 |
-
add_settings_section('antibot', __('Cerber antispam engine','wp-cerber'), 'cerber_sapi_section',
|
165 |
-
add_settings_field('botscomm',__('Comment form','wp-cerber'),'cerberus_field_show',
|
166 |
-
add_settings_field('botsreg',__('Registration form','wp-cerber'),'cerberus_field_show',
|
167 |
-
add_settings_field('botsany',__('Other forms','wp-cerber'),'cerberus_field_show',
|
168 |
|
169 |
-
add_settings_section('antibot_more', __('Adjust antispam engine','wp-cerber'), 'cerber_sapi_section',
|
170 |
-
add_settings_field('botssafe',__('Safe mode','wp-cerber'),'cerberus_field_show',
|
171 |
-
add_settings_field('botsnoauth',__('Logged in users','wp-cerber'),'cerberus_field_show',
|
172 |
-
add_settings_field( 'botswhite', __( 'Query whitelist', 'wp-cerber' ), 'cerber_field_show',
|
173 |
array( 'group' => $tab,
|
174 |
'setting' => 'botswhite',
|
175 |
'type' => 'textarea',
|
@@ -178,10 +179,13 @@ function cerber_settings_init(){
|
|
178 |
'label' => __( 'Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line.', 'wp-cerber' ) . ' ' . __( 'To specify a REGEX pattern, enclose a whole line in two braces.', 'wp-cerber' ) . ' <a href="https://wpcerber.com/antispam-for-wordpress-contact-forms/" target="_blank">Read more</a>',
|
179 |
) );
|
180 |
|
181 |
-
add_settings_section('commproc', __('Comment processing','wp-cerber'), 'cerber_sapi_section',
|
182 |
-
add_settings_field('spamcomm',__('If a spam comment detected','wp-cerber'),'cerberus_field_show',
|
183 |
-
add_settings_field('trashafter',__('Trash spam comments','wp-cerber'),'cerberus_field_show',
|
184 |
-
//add_settings_field('deleteafter',__('Delete comments from trash after','wp-cerber'),'cerberus_field_show',
|
|
|
|
|
|
|
185 |
|
186 |
add_settings_section('recap', __('reCAPTCHA settings','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_C);
|
187 |
add_settings_field('sitekey',__('Site key','wp-cerber'),'cerberus_field_show',CERBER_OPT_C,'recap',array('group'=>$tab,'option'=>'sitekey','type'=>'text','size' => 60));
|
@@ -531,9 +535,18 @@ function cerber_sapi_section($args){
|
|
531 |
*
|
532 |
*/
|
533 |
function cerber_settings_page(){
|
534 |
-
global $wpdb;
|
535 |
|
536 |
-
$tab = cerber_get_tab('dashboard', array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
537 |
|
538 |
?>
|
539 |
<div class="wrap crb-admin">
|
@@ -941,7 +954,7 @@ function cerber_time_select($args, $settings){
|
|
941 |
$selected = '';
|
942 |
}
|
943 |
$ret = cerber_select( 'cerber-' . $args['group'] . '[' . $field . ']', $php_week, $selected );
|
944 |
-
$ret .= ' ' .
|
945 |
|
946 |
// Hours
|
947 |
$hours = array();
|
@@ -1030,6 +1043,20 @@ add_filter( 'pre_update_option_'.CERBER_OPT_U, function ($new, $old, $option) {
|
|
1030 |
/*
|
1031 |
Sanitizing/checking user input for reCAPTCHA tab settings
|
1032 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1033 |
add_filter( 'pre_update_option_'.CERBER_OPT_C, function ($new, $old, $option) {
|
1034 |
global $wp_cerber;
|
1035 |
// Check ability to make external HTTP requests
|
@@ -1045,12 +1072,6 @@ add_filter( 'pre_update_option_'.CERBER_OPT_C, function ($new, $old, $option) {
|
|
1045 |
$new['recaptcha-number'] = absint( $new['recaptcha-number'] );
|
1046 |
$new['recaptcha-within'] = absint( $new['recaptcha-within'] );
|
1047 |
|
1048 |
-
$new['botswhite'] = cerber_text2array($new['botswhite'], "\n");
|
1049 |
-
|
1050 |
-
if ( ! $new['botsany'] && ! $new['botscomm'] && ! $new['botsreg'] ) {
|
1051 |
-
update_site_option( 'cerber-antibot', '' );
|
1052 |
-
}
|
1053 |
-
|
1054 |
return $new;
|
1055 |
}, 10, 3 );
|
1056 |
/*
|
@@ -1221,22 +1242,24 @@ add_filter( 'pre_update_option_' . CERBER_OPT_E, function ( $new, $old, $option
|
|
1221 |
}, 10, 3 );
|
1222 |
|
1223 |
/**
|
1224 |
-
* Let's sanitize them all
|
1225 |
* @since 4.1
|
1226 |
*
|
1227 |
*/
|
1228 |
-
add_filter( 'pre_update_option','cerber_o_o_sanitizer', 10
|
1229 |
-
function cerber_o_o_sanitizer($value, $option, $old_value) {
|
1230 |
-
if (in_array($option, cerber_get_setting_list())){
|
1231 |
-
if (is_array($value)){
|
1232 |
-
array_walk_recursive($value, function (&$element, $key) {
|
1233 |
-
if (!is_array(
|
1234 |
-
|
|
|
|
|
1235 |
}
|
1236 |
else {
|
1237 |
-
$value = sanitize_text_field($value);
|
1238 |
}
|
1239 |
-
$value = cerber_normalize($value, $option);
|
1240 |
}
|
1241 |
|
1242 |
return $value;
|
@@ -1352,10 +1375,11 @@ function cerber_ms_update() {
|
|
1352 |
}
|
1353 |
|
1354 |
/*
|
1355 |
-
* Default settings
|
|
|
1356 |
*
|
1357 |
*/
|
1358 |
-
function cerber_get_defaults(
|
1359 |
$all_defaults = array(
|
1360 |
CERBER_OPT => array(
|
1361 |
'boot-mode' => 0,
|
@@ -1411,17 +1435,19 @@ function cerber_get_defaults($field = null) {
|
|
1411 |
'auth_expire' => '',
|
1412 |
'usersort' => '',
|
1413 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1414 |
CERBER_OPT_C => array(
|
1415 |
-
'botscomm' => 1,
|
1416 |
-
'botsreg' => 0,
|
1417 |
-
'botsany' => 0,
|
1418 |
-
'botssafe' => 0,
|
1419 |
-
'botsnoauth' => 1,
|
1420 |
-
'botswhite' => '',
|
1421 |
-
|
1422 |
-
'spamcomm' => 0,
|
1423 |
-
'trashafter' => 7,
|
1424 |
-
'trashafter-enabled' => 0,
|
1425 |
'sitekey' => '',
|
1426 |
'secretkey' => '',
|
1427 |
'invirecap' => 0,
|
@@ -1483,17 +1509,8 @@ function cerber_get_defaults($field = null) {
|
|
1483 |
'email-scan' => ''
|
1484 |
)
|
1485 |
);
|
1486 |
-
|
1487 |
-
|
1488 |
-
if ( isset( $option[ $field ] ) ) {
|
1489 |
-
return $option[ $field ];
|
1490 |
-
}
|
1491 |
-
}
|
1492 |
-
return false;
|
1493 |
-
}
|
1494 |
-
else {
|
1495 |
-
return $all_defaults;
|
1496 |
-
}
|
1497 |
}
|
1498 |
|
1499 |
/**
|
@@ -1501,40 +1518,72 @@ function cerber_get_defaults($field = null) {
|
|
1501 |
*
|
1502 |
*/
|
1503 |
function cerber_upgrade_options() {
|
1504 |
-
// @since 4.4,
|
1505 |
-
if ($main = get_site_option( CERBER_OPT )) {
|
1506 |
if ( ! empty( $main['email'] ) || ! empty( $main['emailrate'] ) ) {
|
1507 |
$new = get_site_option( CERBER_OPT_N, array() );
|
1508 |
$new['email'] = $main['email'];
|
1509 |
$new['emailrate'] = $main['emailrate'];
|
1510 |
update_site_option( CERBER_OPT_N, $new );
|
1511 |
-
|
1512 |
-
$main['
|
1513 |
-
$main['emailrate'] = '';
|
1514 |
update_site_option( CERBER_OPT, $main );
|
1515 |
}
|
1516 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1517 |
// @since 5.7
|
1518 |
-
// Upgrade
|
1519 |
-
foreach ( cerber_get_defaults() as $option_name => $
|
1520 |
$values = get_site_option( $option_name );
|
1521 |
if ( ! $values ) {
|
1522 |
$values = array();
|
1523 |
}
|
1524 |
-
|
|
|
1525 |
if ( ! isset( $values[ $field_name ] ) && $default !== 1) { // @since 5.7.2 TODO refactor $default !== 1 to more obvious
|
1526 |
$values[ $field_name ] = $default;
|
1527 |
}
|
1528 |
}
|
1529 |
|
|
|
|
|
1530 |
|
1531 |
-
// Must be
|
1532 |
$values = cerber_normalize($values, $option_name); // @since 5.8.2
|
1533 |
|
1534 |
update_site_option( $option_name, $values );
|
1535 |
}
|
1536 |
}
|
1537 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1538 |
|
1539 |
/*
|
1540 |
*
|
@@ -1542,14 +1591,16 @@ function cerber_upgrade_options() {
|
|
1542 |
* @since 2.0
|
1543 |
*
|
1544 |
*/
|
1545 |
-
function cerber_save_options($options){
|
1546 |
foreach ( cerber_get_defaults() as $option_name => $fields ) {
|
1547 |
-
$
|
1548 |
foreach ( $fields as $field_name => $def ) {
|
1549 |
-
if (isset($options[$field_name]))
|
|
|
|
|
1550 |
}
|
1551 |
-
if (!empty($
|
1552 |
-
$result = update_site_option($option_name
|
1553 |
}
|
1554 |
}
|
1555 |
}
|
38 |
define('CERBER_OPT','cerber-main');
|
39 |
define('CERBER_OPT_H','cerber-hardening');
|
40 |
define('CERBER_OPT_U','cerber-users');
|
41 |
+
define('CERBER_OPT_A','cerber-antispam');
|
42 |
define('CERBER_OPT_C','cerber-recaptcha');
|
43 |
define('CERBER_OPT_N','cerber-notifications');
|
44 |
define('CERBER_OPT_T','cerber-traffic');
|
52 |
*/
|
53 |
|
54 |
function cerber_get_setting_list() {
|
55 |
+
return array( CERBER_OPT, CERBER_OPT_H, CERBER_OPT_U, CERBER_OPT_A, CERBER_OPT_C, CERBER_OPT_N, CERBER_OPT_T, CERBER_OPT_S, CERBER_OPT_E );
|
56 |
}
|
57 |
|
58 |
/*
|
159 |
|
160 |
// Antibot & reCAPTCHA -----------------------------------------------------------------------------
|
161 |
|
162 |
+
$tab='antispam'; // 'cerber-recaptcha' settings
|
163 |
+
register_setting( 'cerberus-'.$tab, CERBER_OPT_A);
|
164 |
|
165 |
+
add_settings_section('antibot', __('Cerber antispam engine','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_A);
|
166 |
+
add_settings_field('botscomm',__('Comment form','wp-cerber'),'cerberus_field_show',CERBER_OPT_A,'antibot',array('group'=>$tab,'option'=>'botscomm','type'=>'checkbox','label'=>__('Protect comment form with bot detection engine','wp-cerber') ));
|
167 |
+
add_settings_field('botsreg',__('Registration form','wp-cerber'),'cerberus_field_show',CERBER_OPT_A,'antibot',array('group'=>$tab,'option'=>'botsreg','type'=>'checkbox','label'=>__('Protect registration form with bot detection engine','wp-cerber') ));
|
168 |
+
add_settings_field('botsany',__('Other forms','wp-cerber'),'cerberus_field_show',CERBER_OPT_A,'antibot',array('group'=>$tab,'option'=>'botsany','type'=>'checkbox','label'=>__('Protect all forms on the website with bot detection engine','wp-cerber') ));
|
169 |
|
170 |
+
add_settings_section('antibot_more', __('Adjust antispam engine','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_A);
|
171 |
+
add_settings_field('botssafe',__('Safe mode','wp-cerber'),'cerberus_field_show',CERBER_OPT_A,'antibot_more',array('group'=>$tab,'option'=>'botssafe','type'=>'checkbox','label'=>__('Use less restrictive policies (allow AJAX)','wp-cerber') ));
|
172 |
+
add_settings_field('botsnoauth',__('Logged in users','wp-cerber'),'cerberus_field_show',CERBER_OPT_A,'antibot_more',array('group'=>$tab,'option'=>'botsnoauth','type'=>'checkbox','label'=>__('Disable bot detection engine for logged in users','wp-cerber') ));
|
173 |
+
add_settings_field( 'botswhite', __( 'Query whitelist', 'wp-cerber' ), 'cerber_field_show', CERBER_OPT_A, 'antibot_more',
|
174 |
array( 'group' => $tab,
|
175 |
'setting' => 'botswhite',
|
176 |
'type' => 'textarea',
|
179 |
'label' => __( 'Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line.', 'wp-cerber' ) . ' ' . __( 'To specify a REGEX pattern, enclose a whole line in two braces.', 'wp-cerber' ) . ' <a href="https://wpcerber.com/antispam-for-wordpress-contact-forms/" target="_blank">Read more</a>',
|
180 |
) );
|
181 |
|
182 |
+
add_settings_section('commproc', __('Comment processing','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_A);
|
183 |
+
add_settings_field('spamcomm',__('If a spam comment detected','wp-cerber'),'cerberus_field_show',CERBER_OPT_A,'commproc',array('group'=>$tab, 'option'=>'spamcomm', 'type'=>'select', 'set' => array(__('Deny it completely','wp-cerber'),__('Mark it as spam','wp-cerber'))));
|
184 |
+
add_settings_field('trashafter',__('Trash spam comments','wp-cerber'),'cerberus_field_show',CERBER_OPT_A,'commproc',array('group'=>$tab,'option'=>'trashafter','type'=>'text','enabled'=>__('Move spam comments to trash after'),'label'=>__('days','wp-cerber'),'size'=>3));
|
185 |
+
//add_settings_field('deleteafter',__('Delete comments from trash after','wp-cerber'),'cerberus_field_show',CERBER_OPT_A,'commproc',array('group'=>$tab,'option'=>'deleteafter','type'=>'text','label'=>__('days','wp-cerber'),'size'=>3));
|
186 |
+
|
187 |
+
$tab='recaptcha'; // 'cerber-recaptcha' settings
|
188 |
+
register_setting( 'cerberus-'.$tab, CERBER_OPT_C);
|
189 |
|
190 |
add_settings_section('recap', __('reCAPTCHA settings','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_C);
|
191 |
add_settings_field('sitekey',__('Site key','wp-cerber'),'cerberus_field_show',CERBER_OPT_C,'recap',array('group'=>$tab,'option'=>'sitekey','type'=>'text','size' => 60));
|
535 |
*
|
536 |
*/
|
537 |
function cerber_settings_page(){
|
|
|
538 |
|
539 |
+
$tab = cerber_get_tab( 'dashboard', array(
|
540 |
+
'main',
|
541 |
+
'acl',
|
542 |
+
'activity',
|
543 |
+
'lockouts',
|
544 |
+
'messages',
|
545 |
+
'help',
|
546 |
+
'hardening',
|
547 |
+
'users',
|
548 |
+
'notifications'
|
549 |
+
) );
|
550 |
|
551 |
?>
|
552 |
<div class="wrap crb-admin">
|
954 |
$selected = '';
|
955 |
}
|
956 |
$ret = cerber_select( 'cerber-' . $args['group'] . '[' . $field . ']', $php_week, $selected );
|
957 |
+
$ret .= ' ' . _x( 'at', 'preposition of time like: at 11:00', 'wp-cerber' ) . ' ';
|
958 |
|
959 |
// Hours
|
960 |
$hours = array();
|
1043 |
/*
|
1044 |
Sanitizing/checking user input for reCAPTCHA tab settings
|
1045 |
*/
|
1046 |
+
add_filter( 'pre_update_option_' . CERBER_OPT_A, function ( $new, $old, $option ) {
|
1047 |
+
if ( ! empty( $new['botswhite'] ) ) {
|
1048 |
+
$new['botswhite'] = cerber_text2array( $new['botswhite'], "\n" );
|
1049 |
+
}
|
1050 |
+
|
1051 |
+
if ( empty( $new['botsany'] ) && empty( $new['botscomm'] ) && empty( $new['botsreg'] ) ) {
|
1052 |
+
update_site_option( 'cerber-antibot', '' );
|
1053 |
+
}
|
1054 |
+
|
1055 |
+
return $new;
|
1056 |
+
}, 10, 3 );
|
1057 |
+
/*
|
1058 |
+
Sanitizing/checking user input for reCAPTCHA tab settings
|
1059 |
+
*/
|
1060 |
add_filter( 'pre_update_option_'.CERBER_OPT_C, function ($new, $old, $option) {
|
1061 |
global $wp_cerber;
|
1062 |
// Check ability to make external HTTP requests
|
1072 |
$new['recaptcha-number'] = absint( $new['recaptcha-number'] );
|
1073 |
$new['recaptcha-within'] = absint( $new['recaptcha-within'] );
|
1074 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1075 |
return $new;
|
1076 |
}, 10, 3 );
|
1077 |
/*
|
1242 |
}, 10, 3 );
|
1243 |
|
1244 |
/**
|
1245 |
+
* Let's sanitize and normalize them all
|
1246 |
* @since 4.1
|
1247 |
*
|
1248 |
*/
|
1249 |
+
add_filter( 'pre_update_option', 'cerber_o_o_sanitizer', 10, 3 );
|
1250 |
+
function cerber_o_o_sanitizer( $value, $option, $old_value ) {
|
1251 |
+
if ( in_array( $option, cerber_get_setting_list() ) ) {
|
1252 |
+
if ( is_array( $value ) ) {
|
1253 |
+
array_walk_recursive( $value, function ( &$element, $key ) {
|
1254 |
+
if ( ! is_array( $element ) ) {
|
1255 |
+
$element = sanitize_text_field( $element );
|
1256 |
+
}
|
1257 |
+
} );
|
1258 |
}
|
1259 |
else {
|
1260 |
+
$value = sanitize_text_field( $value );
|
1261 |
}
|
1262 |
+
$value = cerber_normalize( $value, $option );
|
1263 |
}
|
1264 |
|
1265 |
return $value;
|
1375 |
}
|
1376 |
|
1377 |
/*
|
1378 |
+
* Default settings.
|
1379 |
+
* Each setting field must have a default value!
|
1380 |
*
|
1381 |
*/
|
1382 |
+
function cerber_get_defaults() {
|
1383 |
$all_defaults = array(
|
1384 |
CERBER_OPT => array(
|
1385 |
'boot-mode' => 0,
|
1435 |
'auth_expire' => '',
|
1436 |
'usersort' => '',
|
1437 |
),
|
1438 |
+
CERBER_OPT_A => array(
|
1439 |
+
'botscomm' => 1,
|
1440 |
+
'botsreg' => 0,
|
1441 |
+
'botsany' => 0,
|
1442 |
+
'botssafe' => 0,
|
1443 |
+
'botsnoauth' => 1,
|
1444 |
+
'botswhite' => '',
|
1445 |
+
|
1446 |
+
'spamcomm' => 0,
|
1447 |
+
'trashafter' => 7,
|
1448 |
+
'trashafter-enabled' => 0,
|
1449 |
+
),
|
1450 |
CERBER_OPT_C => array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1451 |
'sitekey' => '',
|
1452 |
'secretkey' => '',
|
1453 |
'invirecap' => 0,
|
1509 |
'email-scan' => ''
|
1510 |
)
|
1511 |
);
|
1512 |
+
|
1513 |
+
return $all_defaults;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1514 |
}
|
1515 |
|
1516 |
/**
|
1518 |
*
|
1519 |
*/
|
1520 |
function cerber_upgrade_options() {
|
1521 |
+
// @since 4.4, move fields to a new option
|
1522 |
+
if ( $main = get_site_option( CERBER_OPT ) ) {
|
1523 |
if ( ! empty( $main['email'] ) || ! empty( $main['emailrate'] ) ) {
|
1524 |
$new = get_site_option( CERBER_OPT_N, array() );
|
1525 |
$new['email'] = $main['email'];
|
1526 |
$new['emailrate'] = $main['emailrate'];
|
1527 |
update_site_option( CERBER_OPT_N, $new );
|
1528 |
+
unset( $main['email'] );
|
1529 |
+
unset( $main['emailrate'] );
|
|
|
1530 |
update_site_option( CERBER_OPT, $main );
|
1531 |
}
|
1532 |
}
|
1533 |
+
// @since 7.5.4, move some fields CERBER_OPT_С => CERBER_OPT_A
|
1534 |
+
crb_move_fields( CERBER_OPT_C, CERBER_OPT_A, array(
|
1535 |
+
'botscomm',
|
1536 |
+
'botsreg',
|
1537 |
+
'botsany',
|
1538 |
+
'botssafe',
|
1539 |
+
'botsnoauth',
|
1540 |
+
'botswhite',
|
1541 |
+
'spamcomm',
|
1542 |
+
'trashafter'
|
1543 |
+
) );
|
1544 |
// @since 5.7
|
1545 |
+
// Upgrade plugin settings
|
1546 |
+
foreach ( cerber_get_defaults() as $option_name => $def_fields ) {
|
1547 |
$values = get_site_option( $option_name );
|
1548 |
if ( ! $values ) {
|
1549 |
$values = array();
|
1550 |
}
|
1551 |
+
// Add new settings (fields) with their default values
|
1552 |
+
foreach ( $def_fields as $field_name => $default ) {
|
1553 |
if ( ! isset( $values[ $field_name ] ) && $default !== 1) { // @since 5.7.2 TODO refactor $default !== 1 to more obvious
|
1554 |
$values[ $field_name ] = $default;
|
1555 |
}
|
1556 |
}
|
1557 |
|
1558 |
+
// Remove non-existing/outdated fields, @since 7.5.7
|
1559 |
+
$values = array_intersect_key( $values, $def_fields );
|
1560 |
|
1561 |
+
// Must be after all operations above
|
1562 |
$values = cerber_normalize($values, $option_name); // @since 5.8.2
|
1563 |
|
1564 |
update_site_option( $option_name, $values );
|
1565 |
}
|
1566 |
}
|
1567 |
|
1568 |
+
/**
|
1569 |
+
* @param string $from
|
1570 |
+
* @param string $to
|
1571 |
+
* @param array $fields
|
1572 |
+
*/
|
1573 |
+
function crb_move_fields( $from, $to, $fields ) {
|
1574 |
+
if ( ! get_site_option( $to ) ) {
|
1575 |
+
$old = get_site_option( $from );
|
1576 |
+
$new = array();
|
1577 |
+
foreach ( $fields as $key ) {
|
1578 |
+
if ( isset( $old[ $key ] ) ) {
|
1579 |
+
$new[ $key ] = $old[ $key ]; // move old values
|
1580 |
+
unset( $old[ $key ] ); // clean up old values
|
1581 |
+
}
|
1582 |
+
}
|
1583 |
+
update_site_option( $to, $new );
|
1584 |
+
update_site_option( $from, $old );
|
1585 |
+
}
|
1586 |
+
}
|
1587 |
|
1588 |
/*
|
1589 |
*
|
1591 |
* @since 2.0
|
1592 |
*
|
1593 |
*/
|
1594 |
+
function cerber_save_options( $options ) {
|
1595 |
foreach ( cerber_get_defaults() as $option_name => $fields ) {
|
1596 |
+
$filtered = array();
|
1597 |
foreach ( $fields as $field_name => $def ) {
|
1598 |
+
if ( isset( $options[ $field_name ] ) ) {
|
1599 |
+
$filtered[ $field_name ] = $options[ $field_name ];
|
1600 |
+
}
|
1601 |
}
|
1602 |
+
if ( ! empty( $filtered ) ) {
|
1603 |
+
$result = update_site_option( $option_name, $filtered );
|
1604 |
}
|
1605 |
}
|
1606 |
}
|
wp-cerber.php
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
/*
|
3 |
Plugin Name: WP Cerber Security, Antispam & Malware Scan
|
4 |
Plugin URI: https://wpcerber.com
|
5 |
-
Description:
|
6 |
Author: Gregory
|
7 |
Author URI: https://wpcerber.com
|
8 |
-
Version: 7.
|
9 |
Text Domain: wp-cerber
|
10 |
Domain Path: /languages
|
11 |
Network: true
|
@@ -31,7 +31,7 @@
|
|
31 |
|
32 |
*/
|
33 |
|
34 |
-
define( 'CERBER_VER', '7.
|
35 |
|
36 |
function cerber_plugin_file() {
|
37 |
return __FILE__;
|
@@ -68,17 +68,90 @@ function cerber_get_themes_dir() {
|
|
68 |
static $dir = null;
|
69 |
|
70 |
if ( $dir === null ) {
|
71 |
-
$dir =
|
72 |
}
|
73 |
|
74 |
return $dir;
|
75 |
}
|
76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
function cerber_get_upload_dir() {
|
78 |
static $dir = null;
|
79 |
if ( $dir === null ) {
|
|
|
|
|
|
|
80 |
$wp_upload_dir = wp_upload_dir();
|
81 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
}
|
83 |
|
84 |
return $dir;
|
2 |
/*
|
3 |
Plugin Name: WP Cerber Security, Antispam & Malware Scan
|
4 |
Plugin URI: https://wpcerber.com
|
5 |
+
Description: Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications.
|
6 |
Author: Gregory
|
7 |
Author URI: https://wpcerber.com
|
8 |
+
Version: 7.6
|
9 |
Text Domain: wp-cerber
|
10 |
Domain Path: /languages
|
11 |
Network: true
|
31 |
|
32 |
*/
|
33 |
|
34 |
+
define( 'CERBER_VER', '7.6' );
|
35 |
|
36 |
function cerber_plugin_file() {
|
37 |
return __FILE__;
|
68 |
static $dir = null;
|
69 |
|
70 |
if ( $dir === null ) {
|
71 |
+
$dir = cerber_get_content_dir() . DIRECTORY_SEPARATOR . 'themes';
|
72 |
}
|
73 |
|
74 |
return $dir;
|
75 |
}
|
76 |
|
77 |
+
function cerber_get_content_dir() {
|
78 |
+
static $dir = null;
|
79 |
+
|
80 |
+
if ( $dir === null ) {
|
81 |
+
$dir = dirname( cerber_get_plugins_dir() );
|
82 |
+
}
|
83 |
+
|
84 |
+
return $dir;
|
85 |
+
}
|
86 |
+
|
87 |
+
/**
|
88 |
+
* @return null|string Full path. For MU it returns the uploads folder of the main site.
|
89 |
+
*/
|
90 |
function cerber_get_upload_dir() {
|
91 |
static $dir = null;
|
92 |
if ( $dir === null ) {
|
93 |
+
if ( is_multisite() ) {
|
94 |
+
switch_to_blog( get_main_site_id() );
|
95 |
+
}
|
96 |
$wp_upload_dir = wp_upload_dir();
|
97 |
+
if ( is_multisite() ) {
|
98 |
+
restore_current_blog();
|
99 |
+
}
|
100 |
+
$dir = cerber_normal_path( $wp_upload_dir['basedir'] );
|
101 |
+
}
|
102 |
+
|
103 |
+
return $dir;
|
104 |
+
}
|
105 |
+
|
106 |
+
/**
|
107 |
+
* Return path to root uploads folder for all sites in the MU network
|
108 |
+
*
|
109 |
+
* @return bool|null|string
|
110 |
+
*/
|
111 |
+
function cerber_get_upload_dir_mu() {
|
112 |
+
global $blog_id, $wpdb;
|
113 |
+
static $dir = null;
|
114 |
+
|
115 |
+
if ( $dir === null ) {
|
116 |
+
if ( is_multisite() && ( $id = cerber_db_get_var( 'SELECT MAX(blog_id) FROM ' . $wpdb->blogs ) ) ) {
|
117 |
+
if ( $id == get_main_site_id() ) {
|
118 |
+
// no child sites in the network
|
119 |
+
$dir = cerber_get_upload_dir();
|
120 |
+
}
|
121 |
+
else {
|
122 |
+
$tmp = $blog_id;
|
123 |
+
$blog_id = $id;
|
124 |
+
$wp_upload_dir = wp_upload_dir();
|
125 |
+
$blog_id = $tmp;
|
126 |
+
$site_dir = rtrim( $wp_upload_dir['basedir'], '/' ) . '/';
|
127 |
+
// A new network created post-3.5
|
128 |
+
$end = '/sites/' . $id.'/';
|
129 |
+
if ( $p = mb_strpos( $site_dir, $end ) ) {
|
130 |
+
$dir = mb_substr( $site_dir, 0, $p );
|
131 |
+
}
|
132 |
+
else {
|
133 |
+
$id = 1; // workaround for old MU installations
|
134 |
+
$end = '/' . $id . '/files/';
|
135 |
+
if ( $p = mb_strpos( $site_dir, $end ) ) {
|
136 |
+
$dir = mb_substr( $site_dir, 0, $p );
|
137 |
+
}
|
138 |
+
else {
|
139 |
+
// A custom path has been configured by site admin?
|
140 |
+
// see also UPLOADS, BLOGUPLOADDIR, BLOGUPLOADDIR
|
141 |
+
$dir = ABSPATH.UPLOADBLOGSDIR;
|
142 |
+
if ( ! file_exists( $dir ) ) {
|
143 |
+
$dir = false;
|
144 |
+
}
|
145 |
+
}
|
146 |
+
}
|
147 |
+
if ( $dir ) {
|
148 |
+
$dir = cerber_normal_path( $dir );
|
149 |
+
}
|
150 |
+
}
|
151 |
+
}
|
152 |
+
else {
|
153 |
+
$dir = cerber_get_upload_dir();
|
154 |
+
}
|
155 |
}
|
156 |
|
157 |
return $dir;
|