Cerber Security & Antispam - Version 6.7

Version Description

  • New: Regular expressions are now available for the Traffic Inspector Request whitelist and Antispam Query whitelist.
  • Update: Antispam engine algorithms have been updated to improve AJAX requests handling and reduce false positives.
  • Update: Improved compatibility with WooCommerce, Formidable Forms, Gravity Forms and AJAX file upload.
  • Update: Any symbols other than letters, numbers, dashes and underscores are not permitted in Custom login URL anymore.
  • Bug fixed: The Safe antispam mode doesnt work correctly on some website configurations. That may lead to false positives and erroneous spam form submission detection.
  • Read more
Download this release

Release Info

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

Code changes from version 6.5 to 6.7

assets/admin.css CHANGED
@@ -644,6 +644,12 @@ a.nav-tab:first-child{
644
  text-align: center;
645
  }
646
 
 
 
 
 
 
 
647
  /* Widgets */
648
 
649
  #cerber_quick .inside {
644
  text-align: center;
645
  }
646
 
647
+ /* Scanner page */
648
+
649
+ #crb-scanner {
650
+ text-align: center;
651
+ }
652
+
653
  /* Widgets */
654
 
655
  #cerber_quick .inside {
cerber-lab.php CHANGED
@@ -35,7 +35,7 @@
35
  if ( ! defined( 'WPINC' ) ) { exit; }
36
 
37
  define( 'LAB_NODE_MAX', 7 ); // Maximum node ID
38
- define( 'LAB_DELAY_MAX', 1500 ); // milliseconds, reasonable maximum of processing time while connecting to a node
39
  define( 'LAB_RECHECK', 15 * 60 ); // seconds, allowed interval for rechecking nodes
40
  define( 'LAB_INTERVAL', 180 ); // seconds, push interval
41
  define( 'LAB_DNS_TTL', 3 * 24 * 3600 ); // seconds, interval of updating DNS cache for nodes IPs
@@ -371,11 +371,12 @@ function lab_get_node($node_id = null){
371
  /**
372
  * Check all nodes and find the closest and active one.
373
  *
374
- * @param bool $force if true perform check without checking allowed interval LAB_RECHECK
 
375
  *
376
  * @return bool|int
377
  */
378
- function lab_check_nodes($force = false) {
379
 
380
  $nodes = lab_get_nodes();
381
  if (!$force && isset($nodes['last_check']) && (time() - $nodes['last_check']) < LAB_RECHECK ) return false;
@@ -384,6 +385,9 @@ function lab_check_nodes($force = false) {
384
  update_site_option( '_cerberlab_', $nodes );
385
 
386
  for ( $i = 1; $i <= LAB_NODE_MAX; $i ++ ) {
 
 
 
387
  lab_send_request( array( 'test' => 'test', 'key' => 1 ), $i );
388
  }
389
 
@@ -434,7 +438,8 @@ function lab_update_node_last($node_id, $last = array()) {
434
  }
435
 
436
  function lab_get_nodes() {
437
- return cerber_get_site_option( '_cerberlab_' );
 
438
  }
439
 
440
  /**
@@ -446,7 +451,7 @@ function lab_status(){
446
 
447
  $ret = '';
448
 
449
- if ( ! crb_get_settings( 'cerberlab' ) ) {
450
  $ret .= '<p style = "color:red;"><b>Cerber Lab connection is disabled</b></p>';
451
  }
452
 
35
  if ( ! defined( 'WPINC' ) ) { exit; }
36
 
37
  define( 'LAB_NODE_MAX', 7 ); // Maximum node ID
38
+ define( 'LAB_DELAY_MAX', 2000 ); // milliseconds, reasonable maximum of processing time while connecting to a node
39
  define( 'LAB_RECHECK', 15 * 60 ); // seconds, allowed interval for rechecking nodes
40
  define( 'LAB_INTERVAL', 180 ); // seconds, push interval
41
  define( 'LAB_DNS_TTL', 3 * 24 * 3600 ); // seconds, interval of updating DNS cache for nodes IPs
371
  /**
372
  * Check all nodes and find the closest and active one.
373
  *
374
+ * @param bool $force If true performs checking nodes without checking allowed interval LAB_RECHECK
375
+ * @param bool $kick_dns If true preload DNS cache to eliminate DNS resolving delay
376
  *
377
  * @return bool|int
378
  */
379
+ function lab_check_nodes($force = false, $kick_dns = false) {
380
 
381
  $nodes = lab_get_nodes();
382
  if (!$force && isset($nodes['last_check']) && (time() - $nodes['last_check']) < LAB_RECHECK ) return false;
385
  update_site_option( '_cerberlab_', $nodes );
386
 
387
  for ( $i = 1; $i <= LAB_NODE_MAX; $i ++ ) {
388
+ if ( $kick_dns ) {
389
+ @gethostbyname( 'node' . $i . '.cerberlab.net' );
390
+ }
391
  lab_send_request( array( 'test' => 'test', 'key' => 1 ), $i );
392
  }
393
 
438
  }
439
 
440
  function lab_get_nodes() {
441
+ //return cerber_get_site_option( '_cerberlab_' );
442
+ return get_site_option( '_cerberlab_' );
443
  }
444
 
445
  /**
451
 
452
  $ret = '';
453
 
454
+ if ( ! crb_get_settings( 'cerberlab' ) && ! lab_lab() ) {
455
  $ret .= '<p style = "color:red;"><b>Cerber Lab connection is disabled</b></p>';
456
  }
457
 
cerber-load.php CHANGED
@@ -60,7 +60,9 @@ define( 'CERBER_LAB_TABLE', 'cerber_lab' );
60
  define( 'CERBER_LAB_IP_TABLE', 'cerber_lab_ip' );
61
  define( 'CERBER_LAB_NET_TABLE', 'cerber_lab_net' );
62
  define( 'CERBER_GEO_TABLE', 'cerber_countries' );
 
63
 
 
64
  define( 'CERBER_MARKER1', 'WP CERBER GROOVE' );
65
 
66
  define( 'WP_LOGIN_SCRIPT', 'wp-login.php' );
@@ -723,6 +725,10 @@ function cerber_init() {
723
  return;
724
  }
725
 
 
 
 
 
726
  cerber_request_time();
727
  cerber_upgrade_all();
728
 
@@ -734,7 +740,7 @@ function cerber_init() {
734
  $antibot = cerber_antibot_gene();
735
  if ( $antibot && ! empty( $antibot[1] ) ) {
736
  foreach ( $antibot[1] as $item ) {
737
- setcookie( $item[0], $item[1], time() + 3600, COOKIEPATH );
738
  }
739
  }
740
 
@@ -842,6 +848,14 @@ function cerber_wp_login_page() {
842
  * @return bool
843
  */
844
  function cerber_is_login_request() {
 
 
 
 
 
 
 
 
845
  if ( $path = crb_get_settings( 'loginpath' ) ) {
846
  $request = $_SERVER['REQUEST_URI'];
847
  if ( $pos = strpos( $request, '?' ) ) {
@@ -850,15 +864,15 @@ function cerber_is_login_request() {
850
  $request = explode( '/', rtrim( $request, '/' ) );
851
  $request = end( $request ); // @since 4.8
852
  if ( $path == $request && ! cerber_is_rest_url() ) {
853
- return true;
854
  }
855
  }
856
  //elseif ( strtolower( cerber_parse_uri( true ) ) == WP_LOGIN_SCRIPT ) {
857
  elseif ( cerber_get_uri_script() == WP_LOGIN_SCRIPT ) {
858
- return true;
859
  }
860
 
861
- return false;
862
  }
863
 
864
  /*
@@ -1645,7 +1659,7 @@ function cerber_antibot_control(){
1645
  }
1646
 
1647
  /**
1648
- * Exception for POST query control
1649
  *
1650
  * @return bool
1651
  */
@@ -1694,9 +1708,86 @@ function cerber_is_antibot_exception(){
1694
  }
1695
  }
1696
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1697
  return false;
1698
  }
1699
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1700
  /*
1701
  * Disable pingback URL (hide from HEAD)
1702
  */
@@ -1988,7 +2079,7 @@ function cerber_antibot_gene($recreate = false) {
1988
  *
1989
  * @return bool
1990
  */
1991
- function cerber_is_bot($location = '') {
1992
  global $wp_cerber, $cerber_status;
1993
  static $ret = null;
1994
 
@@ -2005,16 +2096,14 @@ function cerber_is_bot($location = '') {
2005
  // Admin || AJAX requests by unauthorized users
2006
  if ( is_admin() ) {
2007
  if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
2008
- if ( is_user_logged_in() ) {
2009
  $ret = false;
2010
  }
2011
  elseif ( ! empty( $_POST['action'] ) ) {
2012
- if ($_POST['action'] == 'heartbeat'){ // WP heartbeat
2013
- $ret = false;
2014
- }
2015
- }
2016
- elseif ( crb_get_settings( 'botssafe' ) ) {
2017
- $ret = false;
2018
  }
2019
  }
2020
  else {
@@ -2034,8 +2123,15 @@ function cerber_is_bot($location = '') {
2034
 
2035
  // Antibot whitelist
2036
  if ( ( $list = crb_get_settings( 'botswhite' ) ) && is_array( $list ) ) {
2037
- foreach ( $list as $exception ) {
2038
- if ( false !== strpos( trim( $_SERVER['REQUEST_URI'], '/' ), $exception ) ) {
 
 
 
 
 
 
 
2039
  $ret = false;
2040
  return $ret;
2041
  }
@@ -2048,21 +2144,25 @@ function cerber_is_bot($location = '') {
2048
 
2049
  if ( ! empty( $antibot ) ) {
2050
 
2051
- foreach ( $antibot[0] as $fields ) {
2052
- if ( empty( $_POST[ $fields[0] ] ) || $_POST[ $fields[0] ] != $fields[1] ) {
2053
- $ret = true;
2054
- break;
 
 
 
 
2055
  }
2056
  }
2057
 
2058
- if (!$ret){
2059
  foreach ( $antibot[1] as $fields ) {
2060
  if ( empty( $_COOKIE[ $fields[0] ] ) || $_COOKIE[ $fields[0] ] != $fields[1] ) {
2061
  $ret = true;
2062
  break;
2063
  }
2064
  }
2065
- }
2066
 
2067
  if ( $ret ) {
2068
  $cerber_status = 11;
@@ -2552,7 +2652,7 @@ function cerber_is_prohibited( $username ) {
2552
  foreach ( $list as $item ) {
2553
  if ( mb_substr( $item, 0, 1 ) == '/' && mb_substr( $item, - 1 ) == '/' ) {
2554
  $pattern = trim( $item, '/' );
2555
- if ( mb_ereg_match( $pattern, $username, 'i' ) ) {
2556
  return true;
2557
  }
2558
  }
@@ -2750,7 +2850,7 @@ function cerber_acl_check( $ip = null, $tag = '' ) {
2750
  if ( $tag != 'W' && $tag != 'B' ) {
2751
  $ret = false;
2752
  }
2753
- elseif ( $wpdb->get_var( 'SELECT ip FROM ' . CERBER_ACL_TABLE . ' WHERE ip_long_begin <= '.$long.' AND '.$long.' <= ip_long_end AND tag = "'.$tag.'" LIMIT 1' ) ) {
2754
  $ret = true;
2755
  }
2756
  else {
@@ -2762,11 +2862,11 @@ function cerber_acl_check( $ip = null, $tag = '' ) {
2762
  }
2763
  else {
2764
  // We use two queries because of possible overlapping an IP and its network
2765
- if ( $ret = $wpdb->get_var( 'SELECT tag FROM ' . CERBER_ACL_TABLE . ' WHERE ip_long_begin <= ' . $long . ' AND ' . $long . ' <= ip_long_end AND tag = "W" LIMIT 1' ) ) {
2766
  $cache[ $key ] = $ret;
2767
  return $ret;
2768
  }
2769
- if ( $ret = $wpdb->get_var( 'SELECT tag FROM ' . CERBER_ACL_TABLE . ' WHERE ip_long_begin <= ' . $long . ' AND ' . $long . ' <= ip_long_end AND tag = "B" LIMIT 1' ) ) {
2770
  $cache[ $key ] = $ret;
2771
  return $ret;
2772
  }
@@ -3505,8 +3605,8 @@ function cerber_do_hourly($force = false) {
3505
  set_site_transient( 'cerber_multisite', 'executed', 3600 );
3506
  }
3507
 
3508
- if ( crb_get_settings( 'cerberlab' ) ) {
3509
- lab_check_nodes();
3510
  }
3511
 
3512
  $time = time();
@@ -3931,8 +4031,8 @@ function cerber_subscribe_params() {
3931
  Plugin activation
3932
  */
3933
  //register_activation_hook( __FILE__, 'cerber_activate' );
3934
- register_activation_hook( cerber_plugin_file(), 'cerber_activate' );
3935
- function cerber_activate() {
3936
  global $wp_version;
3937
  $assets_url = cerber_plugin_dir_url() . 'assets';
3938
 
@@ -3956,11 +4056,24 @@ function cerber_activate() {
3956
  cerber_stop_activating( '<h3>' . __( "Can't activate WP Cerber due to a database error.", 'wp-cerber' ) . '</h3>'.$e);
3957
  }
3958
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3959
  cerber_upgrade_all();
3960
 
3961
  cerber_cookie1();
3962
  cerber_disable_citadel();
3963
- //cerber_get_groove();
3964
 
3965
  $wp_cerber = get_wp_cerber();
3966
 
@@ -3989,18 +4102,10 @@ function cerber_activate() {
3989
  '</p>' );
3990
 
3991
 
3992
- // Check for existing options
3993
- $opt = cerber_get_options();
3994
-
3995
- if ( !empty( $opt ) && is_array( $opt ) ) {
3996
- $opt = array_filter( $opt );
3997
- if ( ! empty( $opt ) ) {
3998
- return;
3999
- }
4000
  }
4001
 
4002
- cerber_load_defaults();
4003
-
4004
  cerber_send_notify( 'activated' );
4005
 
4006
  $pi = get_file_data( cerber_plugin_file(), array( 'Version' => 'Version' ), 'plugin' );
@@ -4757,7 +4862,9 @@ function cerber_to_log($wp_type = 0, $http_code, $user_id){
4757
 
4758
  if ($wp_type < 515) {
4759
  if ( $wp_type < 502 && ! $user_id ) { // @since 6.3
4760
- return true;
 
 
4761
  }
4762
  return false;
4763
  }
@@ -4766,6 +4873,8 @@ function cerber_to_log($wp_type = 0, $http_code, $user_id){
4766
  $wp_type < 600 ||
4767
  $user_id ||
4768
  cerber_is_http_post() ||
 
 
4769
  isset($_GET['s']) ||
4770
  cerber_get_non_wp_fields()){
4771
  return true;
@@ -4853,7 +4962,7 @@ function cerber_request_time() {
4853
  }
4854
 
4855
  /**
4856
- * Return non WP public query fields
4857
  *
4858
  * @param array $fields An associative array field => value to check
4859
  *
@@ -4929,11 +5038,17 @@ function cerber_beast(){
4929
  $uri = cerber_purify_uri();
4930
 
4931
  if ( $tiwhite = crb_get_settings( 'tiwhite' ) ) {
4932
- foreach ( (array)$tiwhite as $item ) {
4933
- if ($item == $uri){
 
 
 
 
 
 
4934
  return;
4935
  }
4936
- }
4937
  }
4938
 
4939
  $wp_cerber->InspectRequest();
@@ -4943,7 +5058,7 @@ function cerber_beast(){
4943
  if ( $uri_script && $script_filename = cerber_script_filename() ) {
4944
  // Scaning for executable scripts?
4945
  //if ( false === strrpos( $script_filename, $uri ) ) {
4946
- if ( !cerber_script_exists( $uri ) ) {
4947
  $wp_cerber = get_wp_cerber();
4948
  $cerber_status = 13;
4949
  cerber_log( 55 );
60
  define( 'CERBER_LAB_IP_TABLE', 'cerber_lab_ip' );
61
  define( 'CERBER_LAB_NET_TABLE', 'cerber_lab_net' );
62
  define( 'CERBER_GEO_TABLE', 'cerber_countries' );
63
+ define( 'CERBER_SCAN_TABLE', 'cerber_scan' );
64
 
65
+ define( 'CERBER_PREFIX', '_cerber_' );
66
  define( 'CERBER_MARKER1', 'WP CERBER GROOVE' );
67
 
68
  define( 'WP_LOGIN_SCRIPT', 'wp-login.php' );
725
  return;
726
  }
727
 
728
+ if ( ! crb_get_settings() ) {
729
+ cerber_load_defaults(); // Normally works on the plugins activation stage only
730
+ }
731
+
732
  cerber_request_time();
733
  cerber_upgrade_all();
734
 
740
  $antibot = cerber_antibot_gene();
741
  if ( $antibot && ! empty( $antibot[1] ) ) {
742
  foreach ( $antibot[1] as $item ) {
743
+ setcookie( $item[0], $item[1], time() + 3600 * 24, cerber_get_cookie_path() );
744
  }
745
  }
746
 
848
  * @return bool
849
  */
850
  function cerber_is_login_request() {
851
+ static $ret;
852
+
853
+ if ( isset( $ret ) ) {
854
+ return $ret;
855
+ }
856
+
857
+ $ret = false;
858
+
859
  if ( $path = crb_get_settings( 'loginpath' ) ) {
860
  $request = $_SERVER['REQUEST_URI'];
861
  if ( $pos = strpos( $request, '?' ) ) {
864
  $request = explode( '/', rtrim( $request, '/' ) );
865
  $request = end( $request ); // @since 4.8
866
  if ( $path == $request && ! cerber_is_rest_url() ) {
867
+ $ret = true;
868
  }
869
  }
870
  //elseif ( strtolower( cerber_parse_uri( true ) ) == WP_LOGIN_SCRIPT ) {
871
  elseif ( cerber_get_uri_script() == WP_LOGIN_SCRIPT ) {
872
+ $ret = true;
873
  }
874
 
875
+ return $ret;
876
  }
877
 
878
  /*
1659
  }
1660
 
1661
  /**
1662
+ * Exception for POST request control
1663
  *
1664
  * @return bool
1665
  */
1708
  }
1709
  }
1710
 
1711
+ if ( class_exists( 'WooCommerce' ) ) {
1712
+ if ( cerber_is_permalink_enabled() ) {
1713
+ if ( 0 === strpos( cerber_get_site_root() . cerber_purify_uri(), get_home_url() . '/wc-api/' ) ) {
1714
+ return true;
1715
+ }
1716
+ }
1717
+ elseif ( ! empty( $_GET['wc-api'] ) ) {
1718
+ if ( cerber_check_remote_domain( array( '*.paypal.com', '*.stripe.com' ) ) ) {
1719
+ return true;
1720
+ }
1721
+ }
1722
+ }
1723
+
1724
  return false;
1725
  }
1726
 
1727
+ /**
1728
+ * What antibot mode must be used.
1729
+ *
1730
+ * @return int 1 = Cookies + Fields, 2 = Cookies only
1731
+ */
1732
+ function cerber_antibot_mode() {
1733
+ global $wp;
1734
+ //static $list;
1735
+
1736
+ if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
1737
+ if ( crb_get_settings( 'botssafe' ) ) {
1738
+ return 2;
1739
+ }
1740
+ if ( ! empty( $_POST['action'] ) ) {
1741
+ if ( $_POST['action'] == 'heartbeat' ) { // WP heartbeat
1742
+ //$nonce_state = wp_verify_nonce( $_POST['_nonce'], 'heartbeat-nonce' );
1743
+ return 2;
1744
+ }
1745
+ }
1746
+
1747
+ }
1748
+
1749
+ // Check for third party exceptions
1750
+
1751
+ if ( class_exists( 'WooCommerce' ) ) {
1752
+
1753
+ if ( !empty( $_GET['wc-ajax'] ) &&
1754
+ $_GET['wc-ajax'] == 'get_refreshed_fragments' &&
1755
+ count( $_GET ) == 1 &&
1756
+ empty( $_POST )
1757
+ ) {
1758
+
1759
+ return 2;
1760
+ }
1761
+
1762
+ if ( cerber_is_permalink_enabled() ) {
1763
+ if ( function_exists( 'wc_get_page_id' ) && 0 === strpos( cerber_get_site_root() . cerber_purify_uri(), get_permalink( wc_get_page_id( 'checkout' ) ) ) ) {
1764
+ return 2;
1765
+ }
1766
+ }
1767
+ else {
1768
+ if ( ! empty( $_GET['order-received'] ) && ! empty( $_GET['key'] ) ) {
1769
+ return 2;
1770
+ }
1771
+ }
1772
+ }
1773
+
1774
+ if ( class_exists( 'GFForms' ) ) {
1775
+ if ( !empty( $_GET['gf_page'] ) &&
1776
+ count( $_POST ) == 4 &&
1777
+ count( $_FILES ) == 1 &&
1778
+ ! empty( $_POST['name'] ) &&
1779
+ ! empty( $_POST['form_id'] ) &&
1780
+ ! empty( $_POST['field_id'] ) &&
1781
+ ! empty( $_POST['gform_unique_id'] )
1782
+ ) {
1783
+
1784
+ return 2;
1785
+ }
1786
+ }
1787
+
1788
+ return 1;
1789
+ }
1790
+
1791
  /*
1792
  * Disable pingback URL (hide from HEAD)
1793
  */
2079
  *
2080
  * @return bool
2081
  */
2082
+ function cerber_is_bot( $location = '' ) {
2083
  global $wp_cerber, $cerber_status;
2084
  static $ret = null;
2085
 
2096
  // Admin || AJAX requests by unauthorized users
2097
  if ( is_admin() ) {
2098
  if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
2099
+ if ( is_user_logged_in() ) {
2100
  $ret = false;
2101
  }
2102
  elseif ( ! empty( $_POST['action'] ) ) {
2103
+ if ( $_POST['action'] == 'heartbeat' ) { // WP heartbeat
2104
+ //$nonce_state = wp_verify_nonce( $_POST['_nonce'], 'heartbeat-nonce' );
2105
+ $ret = false;
2106
+ }
 
 
2107
  }
2108
  }
2109
  else {
2123
 
2124
  // Antibot whitelist
2125
  if ( ( $list = crb_get_settings( 'botswhite' ) ) && is_array( $list ) ) {
2126
+ foreach ( $list as $item ) {
2127
+ if ( substr( $item, 0, 1 ) == '{' && substr( $item, - 1 ) == '}' ) {
2128
+ $pattern = '/' . substr( $item, 1, - 1 ) . '/i';
2129
+ if ( @preg_match( $pattern, '/' . trim( $_SERVER['REQUEST_URI'], '/' ) ) ) {
2130
+ $ret = false;
2131
+ return $ret;
2132
+ }
2133
+ }
2134
+ elseif ( false !== strpos( '/' . trim( $_SERVER['REQUEST_URI'], '/' ), $item ) ) {
2135
  $ret = false;
2136
  return $ret;
2137
  }
2144
 
2145
  if ( ! empty( $antibot ) ) {
2146
 
2147
+ $mode = cerber_antibot_mode();
2148
+
2149
+ if ( $mode == 1 ) {
2150
+ foreach ( $antibot[0] as $fields ) {
2151
+ if ( empty( $_POST[ $fields[0] ] ) || $_POST[ $fields[0] ] != $fields[1] ) {
2152
+ $ret = true;
2153
+ break;
2154
+ }
2155
  }
2156
  }
2157
 
2158
+ if ( ! $ret ) {
2159
  foreach ( $antibot[1] as $fields ) {
2160
  if ( empty( $_COOKIE[ $fields[0] ] ) || $_COOKIE[ $fields[0] ] != $fields[1] ) {
2161
  $ret = true;
2162
  break;
2163
  }
2164
  }
2165
+ }
2166
 
2167
  if ( $ret ) {
2168
  $cerber_status = 11;
2652
  foreach ( $list as $item ) {
2653
  if ( mb_substr( $item, 0, 1 ) == '/' && mb_substr( $item, - 1 ) == '/' ) {
2654
  $pattern = trim( $item, '/' );
2655
+ if ( @mb_ereg_match( $pattern, $username, 'i' ) ) {
2656
  return true;
2657
  }
2658
  }
2850
  if ( $tag != 'W' && $tag != 'B' ) {
2851
  $ret = false;
2852
  }
2853
+ elseif ( cerber_db_get_var( 'SELECT ip FROM ' . CERBER_ACL_TABLE . ' WHERE ip_long_begin <= '.$long.' AND '.$long.' <= ip_long_end AND tag = "'.$tag.'" LIMIT 1' ) ) {
2854
  $ret = true;
2855
  }
2856
  else {
2862
  }
2863
  else {
2864
  // We use two queries because of possible overlapping an IP and its network
2865
+ if ( $ret = cerber_db_get_var( 'SELECT tag FROM ' . CERBER_ACL_TABLE . ' WHERE ip_long_begin <= ' . $long . ' AND ' . $long . ' <= ip_long_end AND tag = "W" LIMIT 1' ) ) {
2866
  $cache[ $key ] = $ret;
2867
  return $ret;
2868
  }
2869
+ if ( $ret = cerber_db_get_var( 'SELECT tag FROM ' . CERBER_ACL_TABLE . ' WHERE ip_long_begin <= ' . $long . ' AND ' . $long . ' <= ip_long_end AND tag = "B" LIMIT 1' ) ) {
2870
  $cache[ $key ] = $ret;
2871
  return $ret;
2872
  }
3605
  set_site_transient( 'cerber_multisite', 'executed', 3600 );
3606
  }
3607
 
3608
+ if ( crb_get_settings( 'cerberlab' ) || lab_lab() ) {
3609
+ lab_check_nodes(true, true);
3610
  }
3611
 
3612
  $time = time();
4031
  Plugin activation
4032
  */
4033
  //register_activation_hook( __FILE__, 'cerber_activate' );
4034
+ register_activation_hook( cerber_plugin_file(), 'cerber_set_up' );
4035
+ function cerber_set_up() {
4036
  global $wp_version;
4037
  $assets_url = cerber_plugin_dir_url() . 'assets';
4038
 
4056
  cerber_stop_activating( '<h3>' . __( "Can't activate WP Cerber due to a database error.", 'wp-cerber' ) . '</h3>'.$e);
4057
  }
4058
 
4059
+ // Check for existing options
4060
+ $opt = cerber_get_options();
4061
+ $new = true;
4062
+ if ( ! empty( $opt ) && is_array( $opt ) ) {
4063
+ $opt = array_filter( $opt );
4064
+ if ( ! empty( $opt ) ) {
4065
+ $new = false;
4066
+ }
4067
+ }
4068
+
4069
+ if ( $new ) {
4070
+ cerber_load_defaults();
4071
+ }
4072
+
4073
  cerber_upgrade_all();
4074
 
4075
  cerber_cookie1();
4076
  cerber_disable_citadel();
 
4077
 
4078
  $wp_cerber = get_wp_cerber();
4079
 
4102
  '</p>' );
4103
 
4104
 
4105
+ if ( ! $new ) {
4106
+ return;
 
 
 
 
 
 
4107
  }
4108
 
 
 
4109
  cerber_send_notify( 'activated' );
4110
 
4111
  $pi = get_file_data( cerber_plugin_file(), array( 'Version' => 'Version' ), 'plugin' );
4862
 
4863
  if ($wp_type < 515) {
4864
  if ( $wp_type < 502 && ! $user_id ) { // @since 6.3
4865
+ if ( ! empty( $_GET ) || ! empty( $_POST ) || ! empty( $_FILES ) ) {
4866
+ return true;
4867
+ }
4868
  }
4869
  return false;
4870
  }
4873
  $wp_type < 600 ||
4874
  $user_id ||
4875
  cerber_is_http_post() ||
4876
+ ! empty( $_POST ) ||
4877
+ ! empty( $_FILES ) ||
4878
  isset($_GET['s']) ||
4879
  cerber_get_non_wp_fields()){
4880
  return true;
4962
  }
4963
 
4964
  /**
4965
+ * Return non WP public query $_GET fields
4966
  *
4967
  * @param array $fields An associative array field => value to check
4968
  *
5038
  $uri = cerber_purify_uri();
5039
 
5040
  if ( $tiwhite = crb_get_settings( 'tiwhite' ) ) {
5041
+ foreach ( (array) $tiwhite as $item ) {
5042
+ if ( substr( $item, 0, 1 ) == '{' && substr( $item, - 1 ) == '}' ) {
5043
+ $pattern = '/' . substr( $item, 1, - 1 ) . '/i';
5044
+ if ( @preg_match( $pattern, $uri ) ) {
5045
+ return;
5046
+ }
5047
+ }
5048
+ elseif ( $item == $uri ) {
5049
  return;
5050
  }
5051
+ }
5052
  }
5053
 
5054
  $wp_cerber->InspectRequest();
5058
  if ( $uri_script && $script_filename = cerber_script_filename() ) {
5059
  // Scaning for executable scripts?
5060
  //if ( false === strrpos( $script_filename, $uri ) ) {
5061
+ if ( ! cerber_script_exists( $uri ) && !cerber_is_login_request() ) {
5062
  $wp_cerber = get_wp_cerber();
5063
  $cerber_status = 13;
5064
  cerber_log( 55 );
cerber-news.php CHANGED
@@ -136,6 +136,14 @@ function cerber_push_the_news( $version ) {
136
  $news['6.5'][] = 'In the Smart mode if a user is not logged in, all requests to the admin dashboard are logged.';
137
  $news['6.5'][] = 'Performance of the logging subsystem is improved: the DB query has been updated.';
138
 
 
 
 
 
 
 
 
 
139
  if ( ! empty( $news[ $version ] ) ) {
140
  //$text = '<h3>What\'s new in WP Cerber '.$version.'</h3>';
141
 
136
  $news['6.5'][] = 'In the Smart mode if a user is not logged in, all requests to the admin dashboard are logged.';
137
  $news['6.5'][] = 'Performance of the logging subsystem is improved: the DB query has been updated.';
138
 
139
+ $news['6.7'][] = 'Antispam engine algorithms have been updated to improve AJAX requests handling and reduce false positives.';
140
+ $news['6.7'][] = 'Improved compatibility with WooCommerce, Formidable Forms, Gravity Forms and AJAX file upload.';
141
+ $news['6.7'][] = 'Regular expressions are now available for the Traffic Inspector Request whitelist and Antispam Query whitelist.';
142
+ $news['6.7'][] = 'Any symbols other than letters, numbers, dashes and underscores are not permitted for Custom login URL anymore. Previously configured URLs will work fine.';
143
+ $news['6.7'][] = 'Bug fixed: the Safe antispam mode doesn\'t work correctly on some website configurations. That may leads to false positives and erroneous spam form submission detection.';
144
+ $news['6.7'][] = 'Norwegian Bokmål and Dutch language translations have updated. Thanks to Jos Knippen and Eirik Vorland.';
145
+
146
+
147
  if ( ! empty( $news[ $version ] ) ) {
148
  //$text = '<h3>What\'s new in WP Cerber '.$version.'</h3>';
149
 
changelog.txt ADDED
@@ -0,0 +1,262 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ = 6.7 =
2
+ * New: Regular expressions are now available for the Traffic Inspector Request whitelist and Antispam Query whitelist.
3
+ * Update: Antispam engine algorithms have been updated to improve AJAX requests handling and reduce false positives.
4
+ * Update: Improved compatibility with WooCommerce, Formidable Forms, Gravity Forms and AJAX file upload.
5
+ * Update: Any symbols other than letters, numbers, dashes and underscores are not permitted in Custom login URL anymore.
6
+ * Bug fixed: The Safe antispam mode doesn’t work correctly on some website configurations. That may lead to false positives and erroneous spam form submission detection.
7
+ * [Read more](https://wpcerber.com/wp-cerber-security-6-7/)
8
+
9
+ = 6.5 =
10
+ * New: A new, advanced initialization mode which reinforces overall security performance.
11
+ * New: Traffic Inspector's algorithms detect and deny any attempt to upload executable files or an .htaccess file via any POST request.
12
+ * New: A new setting to disable email notifications about new versions of the plugin.
13
+ * New: Search in the traffic log improved. Search in the User agent string and filter out the HTTP method (GET/POST) are available.
14
+ * Update: Performance of the logging subsystem is improved.
15
+ * Update: In the Smart mode if a user is not logged in, all requests to the admin dashboard are logged.
16
+ * Bug fixed: If a user tries to log in with an email address and an incorrect password, the "Invalid username" message is shown.
17
+ * Bug fixed: On a multisite installation with websites in subdirectories a user activation link doesn't work.
18
+ * [Read more](https://wpcerber.com/wp-cerber-security-6-5/)
19
+
20
+ = 6.2 =
21
+ * New: Protection against (DoS) attacks that exploit recently discovered vulnerability (CVE-2018-6389).
22
+ * New: The Traffic Inspector algorithm detects malformed and double extensions like .php.jpg more precisely.
23
+ * New: The Access Lists now accept IPv6 addresses in any form and handle them in a shortened form. All existing IPs will be converted.
24
+ * Bug fixed: If the WP REST API is blocked, a request with a specially malformed URL can bypass protection. Thanks to Tomasz Wasiak.
25
+ * Bug fixed: An IPv4 range in the Access Lists might not work as expected, depending on server/site settings.
26
+
27
+ = 6.1 =
28
+ * New: Traffic Inspector has got a Request White List setting.
29
+ * New: An Activity filter for the Advanced search form on the Traffic Inspector page.
30
+ * Bug fixed: Two reCAPTCHA widgets on login/registration forms.
31
+ * Bug fixed: A legitimate IP address can be locked out by Traffic Inspector on a Windows hosting (server).
32
+
33
+ = 6.0 =
34
+ * New: Traffic Inspector. It’s a specialized request inspection algorithm that performs inspection all suspicious incoming HTTP requests and block them before they can harm a website.
35
+ * New: Traffic Inspector optionally logs all or just suspicious and malicious requests so you can inspect them.
36
+ * New: Added ability to clean up Cerber’s DB tables.
37
+ * New: If the web server has some issues and those issues can affect plugin functionality, they are shown on the Diagnostic page.
38
+ * Added protection to prevent scheduled tasks from being executed multiple times an hour.
39
+ * JavaScript antispam code is improved to eliminate excessive fields in GET requests.
40
+ * To eliminate possible warning messages, the inet_pton() function has been replaced with filter_var().
41
+
42
+ = 5.9 =
43
+ * New: You can add comments for new entries in the access lists
44
+ * Improved compatibility with exotic hosting environments: now the plugin handles URLs with the MultiViews server option enabled.
45
+ * Improved compatibility with caching plugins
46
+ * Bug fixed: The plugin logs a logout event if the actual logout doesn't happen
47
+ * [Read more](https://wpcerber.com/wp-cerber-security-5-9/)
48
+
49
+ = 5.8.6 =
50
+ * New: Regular expressions (REGEX) in the list of prohibited usernames.
51
+ * New: Enable/disable weekly reports, a new setting to specify email addresses for weekly reports.
52
+ * Improved compatibility with non-standard authentication processes, WooCommerce and exotic/outdated hosting environments.
53
+ * Bug fixed: Some interface elements of WordPress Customizer might not work.
54
+ * [Read more](https://wpcerber.com/wp-cerber-security-5-8-6/)
55
+
56
+ = 5.8 =
57
+ * New: Now the plugin will send a brief security report (activity for past seven days) to specified email addresses.
58
+ * Plugin admin interface pages: compatibility with screen readers has been improved.
59
+ * REST API: the deprecated rest_enabled filter is used for WordPress older than 4.7.
60
+ * Bug fixed: After updating the plugin to the 5.7 version some disabled checkboxes (and corresponding disabled settings) are set to their default, enabled states.
61
+ * Bug fixed: An IP address in the white access list may be locked out as a suspicious IP.
62
+ * [Read more](https://wpcerber.com/wp-cerber-security-5-8/)
63
+
64
+ = 5.7 =
65
+ * New: Limit access to WordPress REST API for logged in users only.
66
+ * New: For new users the plugin records the date of registration, the IP address and a user who has added a new user.
67
+ * New: Sorting users on the Users admin page by date of registration.
68
+ * New: User registration monitoring and activity logging functions has been improved.
69
+ * Translations has been updated, thanks to Jon Knippen, Wojciech Górski and Francesco.
70
+ * Bug fixed: Stop user enumeration via REST API doesn’t work on a multisite WordPress installation.
71
+ * [Read more](https://wpcerber.com/wp-cerber-security-5-7/)
72
+
73
+ = 5.5 =
74
+ * New: White list for the WordPress anti-spam engine.
75
+ * New: White list for REST API requests.
76
+ * New: Disable access to user data via REST API and stop REST API user enumeration.
77
+ * [Read more](https://wpcerber.com/wp-cerber-security-5-5/)
78
+
79
+ = 5.2 =
80
+ * Bug fixed: Hidden custom login URL may be discovered by using specially formatted URL.
81
+ * Bug fixed: Customized CSS styles don’t work on the Custom login page.
82
+
83
+ = 5.1 =
84
+ * New: Anti-spam and anti-bot for contact and other forms. Cerber antispam and bot detection engine now protects all forms on a website. It’s compatible with virtually any form. Tested with Caldera Forms, Gravity Forms, Contact Form 7, Ninja Forms, Formidable Forms, Fast Secure Contact Form, Contact Form by WPForms.
85
+ * New: Portuguese of Portugal translation has been added, thanks to Helderk.
86
+ * Bug fixed: A user with admin account is unable to approve comments with pending status in the WordPress Dashboard.
87
+
88
+ = 5.0 =
89
+ * New: A new antispam and bot detection engine that protects comment and user registration forms from bot attacks. After several attempts bot IP will be locked out.
90
+ * New: You can tell Cerber either to mark detected spam comments as spam or deny them completely.
91
+ * New: Cerber can automatically move spam comments older than the specified amount of days to trash.
92
+ * New: Added the cerber_404_template filter for specifying an alternative to the default 404 page not found template.
93
+ * New: Added code to avoid possible conflict between Custom login URL and REST API.
94
+ * New: Italian translation has been added, thanks to Francesco Venuti.
95
+ * Bug fixed: WordPress database error: Table '...cerber_lab_net' doesn't exist.
96
+
97
+ = 4.9 =
98
+ * New: Additional details will be logged and displayed on the Activity page: the URL of a request and decision the plugin engine had made.
99
+ * New: Added a nice panel with performance indicators showing key events and plugin performance in the last 24 hours.
100
+ * New: To improve reliability self check-up code has been added.
101
+ * New: Polish translation has been added, thanks to Wojciech Górski.
102
+ * New: On a multisite WP installation scheduled tasks will be executed once per hour for the entire network: there will no excess SQL queries when the plugin executes hourly cron tasks.
103
+ * Bug fixed: The language for visible reCAPTCHA doesn't set according to the site language setting. It's always English.
104
+
105
+ = 4.8.2 =
106
+ * New: Starting with this version all database tables will be created with a default database engine. It should be InnoDB.
107
+ * New: To improve compatibility with some plugins the email notification function has been updated and now uses the comma-separated list of email addresses instead of an array.
108
+ * Bug fixed: An IP address from a range might not be allowed to log in if you have overlapping IP ranges in the both IP Access List.
109
+ * Bug fixed: A reason of blocking an IP address is not shown in notification emails if Always block entire subnet Class C of intruders IP is selected in the settings.
110
+
111
+ = 4.8 =
112
+ * New: You can enable/disable applying limit login rules to IP addresses in the White IP Access List.
113
+ * New: Block malicious IP addresses after a specified number of failed attempts to solve visible or invisible reCAPTCHA.
114
+ * New: Track password reset requests with username entered.
115
+
116
+ = 4.7.7 =
117
+ * New: invisible reCAPTCHA (classic, visible also available).
118
+ * New: reCAPTCHA for comment forms. Works well as anti-spam tool.
119
+ * Fixed bug: "Add network to the Black List" and "Add IP to the Black List" buttons on the Activity tab doesn't work in the Safari web browser.
120
+
121
+ = 4.5 =
122
+ * New: Instant mobile and browser notifications with Pushbullet.
123
+ * New: Ability to choose a 404 page template.
124
+ * New: Events on the Activity tab are displaying with user roles and avatars.
125
+ * Update: PHP function file_get_contents() has been replaced with cURL to improve compatibilty with restrictive hostings.
126
+ * Fixed bug: Password reset link that is generated by the WooCommerce reset password form can be corrupted if reCAPTCHA is enabled for the form.
127
+ * Fixed bug: The plugin doesn’t block IPv6 addresses from the Black IP Access List (versions affected: 4.0 – 4.3).
128
+
129
+ = 4.3 =
130
+ * New: Use powerful subscriptions to get email notifications according to filters for events you have set.
131
+ * New: Search and/or filter activity by IP address, username (login), specific event and a user. You may use any combination of them.
132
+ * 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.
133
+ * Update: Now you can specify multiple email boxes for notifications.
134
+ * Update: The Spanish translation has been updated, thanks to [leemon](https://profiles.wordpress.org/leemon/).
135
+
136
+ = 4.1 =
137
+ * New: Date format field allows you to specify a desirable format for displaying dates and time.
138
+ * Updated code for registration_errors filter to handle errors right way.
139
+ * The French translation has been updated.
140
+ * Fixed issue: Loading settings from a file with reCAPTCHA key and secret on a different website overwrite existing reCAPTCHA key and secret with values from the file.
141
+ * Fixed bug: The plugin tries to validate reCAPTCHA on WooCommerce login form if the validation enabled for the default WordPress login form only.
142
+
143
+ = 4.0 =
144
+ * New: reCAPTCHA for WooCommerce forms. [How to set up reCAPTCHA](https://wpcerber.com/how-to-setup-recaptcha/).
145
+ * New: IP Access Lists has got support for IP networks in three forms: ability to restrict access with IPv4 ranges, IPv4 CIDR notation and IPv4 subnets: A,B,C has been added. [Access Lists for WordPress](https://wpcerber.com/using-ip-access-lists-to-protect-wordpress/).
146
+ * New: Cerber can automatically detect an IP network of an intruder and suggest you to block entire network right from the Activity screen.
147
+ * New: Norwegian translation added, thanks to [Eirik Vorland](https://www.facebook.com/KjellDaSensei).
148
+ * Update: WP REST API is controlled by Access Lists. While REST API is blocked for the rest of the world, IP addresses from the White Access List can use WP REST API.
149
+ * Update: The WP Cerber admin menu is moved from Settings to the main admin menu.
150
+ * Update: To make Cerber more compatible with other plugins, the order of the init hook on the Custom login page (Custom login URL) has been changed.
151
+ * Update: Several languages and translations has been updated.
152
+ * Update: Large amount of code has been rewritten to improve performance and stability.
153
+ * Fixed bug: If a hacker or a bot uses login from the list of prohibited usernames or non-existent username, Citadel mode is unable to be automatically activated.
154
+ * Fixed bug: reCAPTCHA for an ordinary WordPress login form is incompatible with a WooCommerce login form.
155
+ * Fixed issue: In some cases the plugin log first digits of an IP address as an ID of existing user.
156
+
157
+ = 3.0 =
158
+ * New: [reCAPTCHA to protect WordPress forms spam registrations. Also available for lost password and login forms.](https://wpcerber.com/how-to-setup-recaptcha/)
159
+ * New: Registration, XML RCP, WP REST API are controlled by IP Access Lists now. If a particular IP address is locked out or blacklisted registration is impossible.
160
+ * New: Action Get WHOIS info and trigger IP locked out to create automation scenarios with the [jetFlow.io automation plugin](http://jetflow.io).
161
+ * New: Notification emails will contain Reason of a lockout.
162
+ * New: The activity DB table will be optimized after removing old records daily.
163
+ * Update: Column Username on the Activity tab now shows real value that submitted with WordPress login form.
164
+ * Update: Text domain is updated to 'wp-cerber'
165
+ * Fixed issue: If a user enter correct email address and wrong password to log in, IP address is locked immediately.
166
+
167
+ = 2.9 =
168
+ * New: Checking for a prohibited username (login). You can specify list of logins manually on the new settings page (Users).
169
+ * New: Rate limiting for notification letters. Set it on the main settings page.
170
+ * New: If new user registration disabled, automatic redirection from wp-register.php to the login page is blocked (404 error). Remote IP will be locked out.
171
+ * New: You can set user session expiration timeout.
172
+ * New: Define constant CERBER_IP_KEY if you want the plugin to use it as a key to get IP address from $_SERVER variable.
173
+ * Update: Improved WP-CLI compatibility.
174
+ * Update: All dates are displayed in a localized format with date_i18n function.
175
+ * Fixed bugs: incorrect admin URL in notification letters for multisite with multiple domains configuration, lack of error message on the login form if IP is blocked, CSRF vulnerability on the import settings page
176
+ * Removed calls of deprecated function get_currentuserinfo().
177
+
178
+ = 2.7.2 =
179
+ * Fixed bug for non-English WordPress configuration: the plugin is unable to block IP in some server environment. If you have configured language other than English you have to install this release.
180
+
181
+ = 2.7.1 =
182
+ * Fixed two small bugs related to 1) unable to remove IP subnet from the Access Lists and 2) getting IP address in case of reverse proxy doesn't work properly.
183
+
184
+ = 2.7 =
185
+
186
+ * New: Now you can view extra WHOIS information for IP addresses in the activity log including country, network info, abuse contact, etc.
187
+ * New: Added ability to disable WP REST API, see [Hardening WordPress](https://wpcerber.com/hardening-wordpress/)
188
+ * New: Added ability to add IP address to the Black List from the Activity tab. Nail it!
189
+ * New: Added Spanish translation, thanks to Ismael.
190
+ * New: Added ability to set numbers of displayed rows (lines) on the Activity and Lockout tabs. Click Screen Options on the top-right.
191
+ * Fixed minor security issue: Actions to remove IP on the Access Lists tab were not protected against CSRF attacks. Thanks to Gerard.
192
+ * Update: Small changes on the dashboard widget.
193
+ * Update: Action taken by the plugin (plugin makes a decision) now marked with dark vertical bar on the right side of the labels (Activity tab).
194
+
195
+ = 2.0.1.6 =
196
+ * New: Added Reason column on the Lockouts screen which will display cause of blocking particular IP.
197
+ * New: Added Hardening WP with options: disable XML-RPC completely, disable user enumeration, disable feeds (RSS, Atom, RSD).
198
+ * New: Added Custom email address for notifications.
199
+ * New: Added Dutch and Czech translations.
200
+ * New: Added Quick info about IP on Activity tab.
201
+ * Update: Removed option 'Allow whitelist in Citadel mode'. Now this whitelist is enabled by default all the time.
202
+ * Update: For notifications on the multisite installation the admin email address from the Network Settings will be used.
203
+ * Fixed Bug: Disable wp-login.php doesn't work for subfolder installation.
204
+ * Fixed Bug: Custom login URL doesn't work without trailing slash.
205
+ * Fixed Bug: Any request to wp-signup.php reveal hidden Custom login URL.
206
+
207
+ = 1.9 =
208
+ * Code refactoring and cleaning up.
209
+ * Unlocalized strings was localized.
210
+
211
+ = 1.8.1 =
212
+ * Fixed minor bug: no content (empty cells) in the custom colums added by other plugins on the Users screen in the Dashboard.
213
+
214
+ = 1.8 =
215
+ * New! added Hostname column for the Activity and Lockouts tabs.
216
+ * New! added ability to write failed login attempts to the specified file or to the syslog file. Use it to protect site with fail2ban.
217
+ * Added Ukrainian translation (Український переклад).
218
+
219
+ = 1.7 =
220
+ * Added ability to remove old records from the user activity log. Log will be cleaned up automatically. Check out new Keep records for field on the settings page.
221
+ * Added pagination for the Activity and Lockouts tabs.
222
+ * Added German (Deutsch) translation, thanks to mario.
223
+ * Added ability to reset settings to the recommended defaults at any time.
224
+
225
+ = 1.6 =
226
+ * New: beautiful widget for the dashboard to keep an eye on things. Get quick analytic with trends over 24 hours and ability to manually deactivate Citadel mode.
227
+ * French translation added, thanks to hardesfred.
228
+ * Hardening WordPress. Removed automatically redirection from /login/ to the login page, from /admin/ and /dashboard/ to the dashboard.
229
+ * Fixed issue with lost password link in the multisite mode.
230
+ * Now compatible with User Switching plugin.
231
+ * Added ability to manually deactivate Citadel mode, once it automatically switches on.
232
+
233
+ = 1.5 =
234
+ * New feature: importing and exporting settings and access lists from/to the file.
235
+ * Limited notifications in the dashboard.
236
+
237
+ = 1.4 =
238
+ * Added support Multisite mode for limit login attempts.
239
+ * Added Number of comments column on the Users screen in dashboard.
240
+ * Updated notification settings.
241
+ * Updated languages files.
242
+
243
+ = 1.3 =
244
+ * Fixed issue with hanging up during redirect to /wp-admin/ on some circumstance.
245
+ * Fixed minor issue with limit login attempts for non-admin users.
246
+ * Added Date of registration column on the Users screen in dashboard.
247
+ * Some UI improvements on access-list screen.
248
+ * Performance optimization & code refactoring.
249
+
250
+ = 1.2 =
251
+ * Added localization & internationalization files. You can use Loco Translate plugin to make your own translation.
252
+ * Added Russian translation.
253
+ * Added headers for failed attempts to use such headers with [fail2ban](http://www.fail2ban.org).
254
+
255
+ = 1.1 =
256
+ * Added ability to filter out Activity List by IP, username or particular event. You can see what happens and when it happened with particular IP or username. When IP reaches limit login attempts and when it was blocked.
257
+ * Added protection from adding to the Black IP Access List subnet belongs to current user's session IP.
258
+ * Added option to work with site/server behind reverse proxy.
259
+ * Update installation instruction.
260
+
261
+ = 1.0 =
262
+ * Initial version
common.php CHANGED
@@ -134,7 +134,8 @@ function cerber_calculate_kpi($period = 1){
134
 
135
  $stamp = time() - $period * 24 * 3600;
136
  $in = implode( ',', crb_get_activity_set( 'malicious' ) );
137
- $unique_ip = $wpdb->get_var('SELECT COUNT(DISTINCT ip) FROM '. CERBER_LOG_TABLE .' WHERE activity IN ('.$in.') AND stamp > '.$stamp);
 
138
 
139
  $kpi_list = array(
140
  //array( __('Incidents detected','wp-cerber').'</a>', cerber_count_log( array( 16, 40, 50, 51, 52, 53, 54 ) ) ),
@@ -483,7 +484,7 @@ function recursive_search_key($array, $needle){
483
  * @since 3.0
484
  */
485
  function cerber_is_rest_url(){
486
- static $cache = null;
487
 
488
  if ( defined( 'REST_REQUEST' ) && REST_REQUEST ) {
489
  return true;
@@ -493,21 +494,20 @@ function cerber_is_rest_url(){
493
  return true;
494
  }
495
 
496
- if ( isset( $cache ) ) {
497
- return $cache;
498
  }
499
 
 
500
  $uri = '/' . trim( $_SERVER['REQUEST_URI'], '/' ) . '/';
501
 
502
  if ( 0 === strpos( $uri, '/' . rest_get_url_prefix() . '/' ) ) {
503
  if ( 0 === strpos( get_home_url() . urldecode( $uri ), get_rest_url() ) ) {
504
- $cache = true;
505
- return true;
506
  }
507
  }
508
 
509
- $cache = false;
510
- return false;
511
  }
512
 
513
  /**
@@ -600,7 +600,7 @@ function crb_get_rest_path() {
600
  if (isset($_REQUEST['rest_route'])){
601
  $ret = ltrim( $_REQUEST['rest_route'], '/' );
602
  }
603
- elseif ( get_option( 'permalink_structure' ) ) {
604
  $pos = strlen( get_rest_url() );
605
  $ret = substr( get_home_url() . urldecode( $_SERVER['REQUEST_URI'] ), $pos );
606
  $ret = trim( $ret, '/' );
@@ -641,12 +641,21 @@ function cerber_last_uri( $check_php = false ) {
641
  * @return bool|string script name or false if executable script is not detected
642
  */
643
  function cerber_get_uri_script() {
 
 
 
 
 
 
644
  $last = cerber_last_uri();
645
  if ( cerber_detect_exec_extension( $last ) ) {
646
- return $last;
 
 
 
647
  }
648
 
649
- return false;
650
  }
651
 
652
  /**
@@ -702,6 +711,28 @@ function cerber_detect_exec_extension( $line, $extra = array() ) {
702
  return false;
703
  }
704
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
705
  /**
706
  * Clean up the requested URI from parameters and extra slashes
707
  *
@@ -1182,23 +1213,86 @@ function cerber_real_escape($string){
1182
  }
1183
 
1184
  /**
1185
- * Performs generic direct SQL query to the site DB
1186
  *
1187
  * The reason: https://make.wordpress.org/core/2017/10/31/changed-behaviour-of-esc_sql-in-wordpress-4-8-3/
1188
  *
1189
  * @param $query string An SQL query
1190
  *
1191
- * @return bool|mysqli_result
1192
  * @since 6.0
1193
  */
1194
  function cerber_db_query( $query ) {
1195
- global $wpdb;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1196
  static $db;
1197
 
1198
  if ( ! isset( $db ) || ! is_object( $db ) ) {
1199
  // Check for connected DB handler
1200
  if ( ! is_object( $wpdb ) || empty( $wpdb->dbh ) ) {
1201
- if ( ! $db = cerber_direct_db_connect() ) {
1202
  return false;
1203
  }
1204
  }
@@ -1207,14 +1301,7 @@ function cerber_db_query( $query ) {
1207
  }
1208
  }
1209
 
1210
- if ( $db->use_mysqli ) {
1211
- $ret = mysqli_query( $db->dbh, $query );
1212
- }
1213
- else {
1214
- $ret = mysql_query( $query, $db->dbh ); // For compatibility reason
1215
- }
1216
-
1217
- return $ret;
1218
  }
1219
 
1220
  /**
@@ -1222,7 +1309,7 @@ function cerber_db_query( $query ) {
1222
  *
1223
  * @return bool|wpdb
1224
  */
1225
- function cerber_direct_db_connect() {
1226
  if ( ! defined( 'CRB_ABSPATH' ) ) {
1227
  define( 'CRB_ABSPATH', dirname( __FILE__, 4 ) );
1228
  }
@@ -1232,7 +1319,7 @@ function cerber_direct_db_connect() {
1232
  $config = str_replace( '<?php', '', $config );
1233
  $config = str_replace( '?>', '', $config );
1234
  ob_start();
1235
- @eval( $config ); // This eval is OK. Getting site DB parameters.
1236
  ob_end_clean();
1237
  if ( defined( 'DB_USER' ) && defined( 'DB_PASSWORD' ) && defined( 'DB_NAME' ) && defined( 'DB_HOST' ) ) {
1238
  require_once( $db_class );
@@ -1262,10 +1349,10 @@ function cerber_remove_comments( $string = '' ) {
1262
  */
1263
  function cerber_set_groove( $expire ) {
1264
  if ( ! headers_sent() ) {
1265
- setcookie( 'cerber_groove', md5( cerber_get_groove() ), $expire + 1, COOKIEPATH );
1266
 
1267
  $groove_x = cerber_get_groove_x();
1268
- setcookie( 'cerber_groove_x_'.$groove_x[0], $groove_x[1], $expire + 1, COOKIEPATH );
1269
  }
1270
  }
1271
 
@@ -1325,6 +1412,14 @@ function cerber_get_groove_x( $regenerate = false ) {
1325
  return $groove_x;
1326
  }
1327
 
 
 
 
 
 
 
 
 
1328
  /**
1329
  * Synchronize plugin settings with rules in the .htaccess file
1330
  *
@@ -1340,7 +1435,7 @@ function cerber_htaccess_sync( $settings = array() ) {
1340
 
1341
  $rules = array();
1342
 
1343
- if ( $settings['adminphp'] ) {
1344
  // https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-6389
1345
  $groove_x = cerber_get_groove_x();
1346
  $cookie = 'cerber_groove_x_'.$groove_x[0];
@@ -1416,6 +1511,51 @@ function cerber_get_htaccess_file() {
1416
  return $file;
1417
  }
1418
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1419
  /**
1420
  * Prepare files (install/deinstall) for different boot modes
1421
  *
@@ -1479,4 +1619,19 @@ function cerber_get_mode() {
1479
  }
1480
 
1481
  return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1482
  }
134
 
135
  $stamp = time() - $period * 24 * 3600;
136
  $in = implode( ',', crb_get_activity_set( 'malicious' ) );
137
+ //$unique_ip = $wpdb->get_var('SELECT COUNT(DISTINCT ip) FROM '. CERBER_LOG_TABLE .' WHERE activity IN ('.$in.') AND stamp > '.$stamp);
138
+ $unique_ip = cerber_db_get_var( 'SELECT COUNT(DISTINCT ip) FROM ' . CERBER_LOG_TABLE . ' WHERE activity IN (' . $in . ') AND stamp > ' . $stamp );
139
 
140
  $kpi_list = array(
141
  //array( __('Incidents detected','wp-cerber').'</a>', cerber_count_log( array( 16, 40, 50, 51, 52, 53, 54 ) ) ),
484
  * @since 3.0
485
  */
486
  function cerber_is_rest_url(){
487
+ static $ret = null;
488
 
489
  if ( defined( 'REST_REQUEST' ) && REST_REQUEST ) {
490
  return true;
494
  return true;
495
  }
496
 
497
+ if ( isset( $ret ) ) {
498
+ return $ret;
499
  }
500
 
501
+ $ret = false;
502
  $uri = '/' . trim( $_SERVER['REQUEST_URI'], '/' ) . '/';
503
 
504
  if ( 0 === strpos( $uri, '/' . rest_get_url_prefix() . '/' ) ) {
505
  if ( 0 === strpos( get_home_url() . urldecode( $uri ), get_rest_url() ) ) {
506
+ $ret = true;
 
507
  }
508
  }
509
 
510
+ return $ret;
 
511
  }
512
 
513
  /**
600
  if (isset($_REQUEST['rest_route'])){
601
  $ret = ltrim( $_REQUEST['rest_route'], '/' );
602
  }
603
+ elseif ( cerber_is_permalink_enabled() ) {
604
  $pos = strlen( get_rest_url() );
605
  $ret = substr( get_home_url() . urldecode( $_SERVER['REQUEST_URI'] ), $pos );
606
  $ret = trim( $ret, '/' );
641
  * @return bool|string script name or false if executable script is not detected
642
  */
643
  function cerber_get_uri_script() {
644
+ static $ret;
645
+
646
+ if ( isset( $ret ) ) {
647
+ return $ret;
648
+ }
649
+
650
  $last = cerber_last_uri();
651
  if ( cerber_detect_exec_extension( $last ) ) {
652
+ $ret = $last;
653
+ }
654
+ else {
655
+ $ret = false;
656
  }
657
 
658
+ return $ret;
659
  }
660
 
661
  /**
711
  return false;
712
  }
713
 
714
+ /**
715
+ * Return home with subfolders removed
716
+ *
717
+ * @return string
718
+ */
719
+ function cerber_get_site_root(){
720
+ static $home_url;
721
+
722
+ if ( isset( $home_url ) ) {
723
+ return $home_url;
724
+ }
725
+
726
+ $home_url = get_home_url();
727
+ $p1 = strpos( $home_url, '//' );
728
+ $p2 = strpos( $home_url, '/', $p1 + 2 );
729
+ if ( $p2 !== false ) {
730
+ $home_url = substr( $home_url, 0, $p2 );
731
+ }
732
+
733
+ return $home_url;
734
+ }
735
+
736
  /**
737
  * Clean up the requested URI from parameters and extra slashes
738
  *
1213
  }
1214
 
1215
  /**
1216
+ * Execute generic direct SQL query on the site DB
1217
  *
1218
  * The reason: https://make.wordpress.org/core/2017/10/31/changed-behaviour-of-esc_sql-in-wordpress-4-8-3/
1219
  *
1220
  * @param $query string An SQL query
1221
  *
1222
+ * @return bool|mysqli_result|resource
1223
  * @since 6.0
1224
  */
1225
  function cerber_db_query( $query ) {
1226
+ global $cerber_db_errors;
1227
+
1228
+ $db = cerber_get_db();
1229
+
1230
+ if ( ! $db ) {
1231
+ return false;
1232
+ }
1233
+
1234
+ if ( $db->use_mysqli ) {
1235
+ $ret = mysqli_query( $db->dbh, $query );
1236
+ if ( ! $ret ) {
1237
+ if ( ! isset( $cerber_db_errors ) ) {
1238
+ $cerber_db_errors = array();
1239
+ }
1240
+ $cerber_db_errors[] = mysqli_error( $db->dbh );
1241
+ }
1242
+ }
1243
+ else {
1244
+ $ret = mysql_query( $query, $db->dbh ); // For compatibility reason only
1245
+ }
1246
+
1247
+ return $ret;
1248
+ }
1249
+
1250
+ function cerber_db_get_results( $query, $type = MYSQLI_NUM ) {
1251
+ $db = cerber_get_db();
1252
+
1253
+ if ( $result = cerber_db_query( $query ) ) {
1254
+ if ( $db->use_mysqli ) {
1255
+ return $result->fetch_all( $type );
1256
+ }
1257
+ else {
1258
+ if ( $type == MYSQLI_NUM ) {
1259
+ return mysql_fetch_array( $result, MYSQL_NUM ); // For compatibility reason only
1260
+ }
1261
+ else {
1262
+ return mysql_fetch_assoc( $result ); // For compatibility reason only
1263
+ }
1264
+ }
1265
+ }
1266
+
1267
+ return false;
1268
+ }
1269
+
1270
+ function cerber_db_get_var( $query ) {
1271
+ $db = cerber_get_db();
1272
+
1273
+ if ( $result = cerber_db_query( $query ) ) {
1274
+ if ( $db->use_mysqli ) {
1275
+ //$r = $result->fetch_row();
1276
+ $r = mysqli_fetch_row( $result );
1277
+ }
1278
+ else {
1279
+ $r = mysql_fetch_row( $result ); // For compatibility reason only
1280
+ }
1281
+
1282
+ return $r[0];
1283
+ }
1284
+
1285
+ return false;
1286
+ }
1287
+
1288
+ function cerber_get_db() {
1289
+ global $wpdb, $cerber_db_errors;
1290
  static $db;
1291
 
1292
  if ( ! isset( $db ) || ! is_object( $db ) ) {
1293
  // Check for connected DB handler
1294
  if ( ! is_object( $wpdb ) || empty( $wpdb->dbh ) ) {
1295
+ if ( ! $db = cerber_db_connect() ) {
1296
  return false;
1297
  }
1298
  }
1301
  }
1302
  }
1303
 
1304
+ return $db;
 
 
 
 
 
 
 
1305
  }
1306
 
1307
  /**
1309
  *
1310
  * @return bool|wpdb
1311
  */
1312
+ function cerber_db_connect() {
1313
  if ( ! defined( 'CRB_ABSPATH' ) ) {
1314
  define( 'CRB_ABSPATH', dirname( __FILE__, 4 ) );
1315
  }
1319
  $config = str_replace( '<?php', '', $config );
1320
  $config = str_replace( '?>', '', $config );
1321
  ob_start();
1322
+ @eval( $config ); // This eval is OK. Getting site DB connection parameters.
1323
  ob_end_clean();
1324
  if ( defined( 'DB_USER' ) && defined( 'DB_PASSWORD' ) && defined( 'DB_NAME' ) && defined( 'DB_HOST' ) ) {
1325
  require_once( $db_class );
1349
  */
1350
  function cerber_set_groove( $expire ) {
1351
  if ( ! headers_sent() ) {
1352
+ setcookie( 'cerber_groove', md5( cerber_get_groove() ), $expire + 1, cerber_get_cookie_path() );
1353
 
1354
  $groove_x = cerber_get_groove_x();
1355
+ setcookie( 'cerber_groove_x_'.$groove_x[0], $groove_x[1], $expire + 1, cerber_get_cookie_path() );
1356
  }
1357
  }
1358
 
1412
  return $groove_x;
1413
  }
1414
 
1415
+ function cerber_get_cookie_path(){
1416
+ if ( defined( 'COOKIEPATH' ) ) {
1417
+ return COOKIEPATH;
1418
+ }
1419
+
1420
+ return '/';
1421
+ }
1422
+
1423
  /**
1424
  * Synchronize plugin settings with rules in the .htaccess file
1425
  *
1435
 
1436
  $rules = array();
1437
 
1438
+ if ( !empty($settings['adminphp']) ) {
1439
  // https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-6389
1440
  $groove_x = cerber_get_groove_x();
1441
  $cookie = 'cerber_groove_x_'.$groove_x[0];
1511
  return $file;
1512
  }
1513
 
1514
+ /**
1515
+ * Check if the remote domain match mask
1516
+ *
1517
+ * @param $domain_mask array|string Mask(s) to check remote domain against
1518
+ *
1519
+ * @return bool True if hostname match at least one domain from the list
1520
+ */
1521
+ function cerber_check_remote_domain( $domain_mask ) {
1522
+
1523
+ $hostname = @gethostbyaddr( cerber_get_remote_ip() );
1524
+
1525
+ if ( ! $hostname || filter_var( $hostname, FILTER_VALIDATE_IP ) ) {
1526
+ return false;
1527
+ }
1528
+
1529
+ if ( ! is_array( $domain_mask ) ) {
1530
+ $domain_mask = array( $domain_mask );
1531
+ }
1532
+
1533
+ foreach ( $domain_mask as $mask ) {
1534
+
1535
+ if ( substr_count( $mask, '.' ) != substr_count( $hostname, '.' ) ) {
1536
+ continue;
1537
+ }
1538
+
1539
+ $parts = array_reverse( explode( '.', $hostname ) );
1540
+
1541
+ $ok = true;
1542
+
1543
+ foreach ( array_reverse( explode( '.', $mask ) ) as $i => $item ) {
1544
+ if ( $item != '*' && $item != $parts[ $i ] ) {
1545
+ $ok = false;
1546
+ break;
1547
+ }
1548
+ }
1549
+
1550
+ if ( $ok == true ) {
1551
+ return true;
1552
+ }
1553
+
1554
+ }
1555
+
1556
+ return false;
1557
+ }
1558
+
1559
  /**
1560
  * Prepare files (install/deinstall) for different boot modes
1561
  *
1619
  }
1620
 
1621
  return 0;
1622
+ }
1623
+
1624
+ function cerber_is_permalink_enabled() {
1625
+ static $ret;
1626
+ if ( isset( $ret ) ) {
1627
+ return $ret;
1628
+ }
1629
+ if ( get_option( 'permalink_structure' ) ) {
1630
+ $ret = true;
1631
+ }
1632
+ else {
1633
+ $ret = false;
1634
+ }
1635
+
1636
+ return $ret;
1637
  }
dashboard.php CHANGED
@@ -30,18 +30,54 @@
30
  */
31
 
32
 
 
33
 
 
34
 
 
 
 
 
 
 
 
 
 
 
35
 
 
 
 
36
 
 
 
 
37
 
 
 
38
 
 
 
 
39
 
 
 
40
 
 
41
 
42
- if ( ! defined( 'WPINC' ) ) { exit; }
43
-
44
- require_once( dirname( __FILE__ ) . '/cerber-tools.php' );
 
 
 
 
 
 
 
 
 
 
45
 
46
  /*
47
  Display lockouts in dashboard for admins
@@ -183,7 +219,7 @@ add_action('admin_init','cerber_acl_form_process');
183
  function cerber_acl_form_process(){
184
 
185
  if ( ! cerber_is_http_post() || ! isset( $_POST['cerber_nonce'] ) ) {
186
- return;
187
  }
188
  if ( ! current_user_can( 'manage_options' ) || ! wp_verify_nonce( $_POST['cerber_nonce'], 'cerber_dashboard' ) ) {
189
  return;
@@ -978,49 +1014,6 @@ function cerber_user_extra_view($user_id, $context = 'activity'){
978
 
979
  }
980
 
981
- /*
982
- Add admin menu, init admin stuff
983
- */
984
- if ( ! is_multisite() ) {
985
- add_action( 'admin_menu', 'cerber_admin_menu' );
986
- }
987
- else {
988
- add_action( 'network_admin_menu', 'cerber_admin_menu' ); // only network wide menu allowed in multisite mode
989
- }
990
- function cerber_admin_menu() {
991
-
992
- if ( cerber_is_admin_page(false) ) {
993
- cerber_check_environment();
994
- }
995
-
996
- $hook = add_menu_page( __( 'WP Cerber Security', 'wp-cerber' ), __( 'WP Cerber', 'wp-cerber' ), 'manage_options', 'cerber-security', 'cerber_settings_page', 'dashicons-shield', '100' );
997
- add_action( 'load-' . $hook, 'cerber_screen_options' );
998
- add_submenu_page( 'cerber-security', __( 'Cerber Dashboard', 'wp-cerber' ), __( 'Dashboard' ), 'manage_options', 'cerber-security', 'cerber_settings_page' );
999
-
1000
- $hook = add_submenu_page( 'cerber-security', __( 'Cerber Traffic Inspector', 'wp-cerber' ), __( 'Traffic Inspector', 'wp-cerber' ), 'manage_options', 'cerber-traffic', 'cerber_traffic_page' );
1001
- add_action( 'load-' . $hook, 'cerber_screen_options' );
1002
-
1003
- if (lab_lab()) {
1004
- add_submenu_page( 'cerber-security', __( 'Cerber Security Rules', 'wp-cerber' ), __( 'Security Rules', 'wp-cerber' ), 'manage_options', 'cerber-rules', 'cerber_rules_page' );
1005
- }
1006
-
1007
- add_submenu_page( 'cerber-security', __( 'Cerber antispam settings', 'wp-cerber' ), __( 'Antispam', 'wp-cerber' ), 'manage_options', 'cerber-recaptcha', 'cerber_recaptcha_page' );
1008
- add_submenu_page( 'cerber-security', __( 'Cerber tools', 'wp-cerber' ), __( 'Tools', 'wp-cerber' ), 'manage_options', 'cerber-tools', 'cerber_tools_page' );
1009
-
1010
- }
1011
-
1012
- add_action( 'admin_bar_menu', 'cerber_admin_bar' );
1013
- function cerber_admin_bar( $wp_admin_bar ) {
1014
- if (!is_multisite()) return;
1015
- $args = array(
1016
- 'parent' => 'network-admin',
1017
- 'id' => 'cerber_admin',
1018
- 'title' => __('WP Cerber','wp-cerber'),
1019
- 'href' => cerber_admin_link(),
1020
- );
1021
- $wp_admin_bar->add_node( $args );
1022
- }
1023
-
1024
  /*
1025
  Check if currently displayed page is a Cerber admin dashboard page with optional checking a set of GET params
1026
  */
@@ -1123,7 +1116,8 @@ add_filter( 'manage_users_custom_column' , function ($value, $column, $user_id)
1123
  break;
1124
  case 'cbfl' :
1125
  $u = get_userdata( $user_id );
1126
- $failed = $wpdb->get_var( 'SELECT COUNT(user_id) FROM ' . CERBER_LOG_TABLE . ' WHERE user_login = \'' . $u->user_login . '\' AND activity = 7 AND stamp > ' . ( time() - 24 * 3600 ) );
 
1127
  if ( $failed ) {
1128
  $act_link = cerber_admin_link( 'activity' );
1129
  $ret = '<a href="' . $act_link . '&filter_login=' . $u->user_login . '&filter_activity=7">' . $failed . '</a>';
@@ -1133,7 +1127,8 @@ add_filter( 'manage_users_custom_column' , function ($value, $column, $user_id)
1133
  }
1134
  break;
1135
  case 'cbdr' :
1136
- $time = strtotime($wpdb->get_var("SELECT user_registered FROM $wpdb->users WHERE id = ".$user_id));
 
1137
  if ($time < (time() - DAY_IN_SECONDS)){
1138
  $ret = cerber_date($time);
1139
  }
@@ -1150,7 +1145,8 @@ add_filter( 'manage_users_custom_column' , function ($value, $column, $user_id)
1150
  }
1151
  $uid = absint( $rm['user'] );
1152
  if ( $uid ) {
1153
- $name = $wpdb->get_var( 'SELECT meta_value FROM ' . $wpdb->usermeta . ' WHERE user_id = ' . $uid . ' AND meta_key = "nickname"' );
 
1154
  if (!$user_ID) {
1155
  $user_ID = get_current_user_id();
1156
  }
@@ -1187,25 +1183,25 @@ function cerber_quick_w(){
1187
  $acl = cerber_admin_link('traffic');
1188
  $loc = cerber_admin_link('antispam');
1189
 
1190
- $failed = $wpdb->get_var('SELECT count(ip) FROM '. CERBER_LOG_TABLE .' WHERE activity IN (7) AND stamp > '.(time() - 24 * 3600));
1191
- $failed_prev = $wpdb->get_var('SELECT count(ip) FROM '. CERBER_LOG_TABLE .' WHERE activity IN (7) AND stamp > '.(time() - 48 * 3600).' AND stamp < '.(time() - 24 * 3600));
1192
 
1193
  $failed_ch = cerber_percent($failed_prev,$failed);
1194
 
1195
- $locked = $wpdb->get_var('SELECT count(ip) FROM '. CERBER_LOG_TABLE .' WHERE activity IN (10,11) AND stamp > '.(time() - 24 * 3600));
1196
- $locked_prev = $wpdb->get_var('SELECT count(ip) FROM '. CERBER_LOG_TABLE .' WHERE activity IN (10,11) AND stamp > '.(time() - 48 * 3600).' AND stamp < '.(time() - 24 * 3600));
1197
 
1198
  $locked_ch = cerber_percent($locked_prev,$locked);
1199
 
1200
  //$lockouts = $wpdb->get_var('SELECT count(ip) FROM '. CERBER_BLOCKS_TABLE);
1201
 
1202
  $lockouts = cerber_blocked_num();
1203
- if ($last = $wpdb->get_var('SELECT MAX(stamp) FROM '.CERBER_LOG_TABLE.' WHERE activity IN (10,11)')) {
1204
  $last = cerber_ago_time( $last );
1205
  }
1206
  else $last = __('Never','wp-cerber');
1207
- $w_count = $wpdb->get_var('SELECT count(ip) FROM '. CERBER_ACL_TABLE .' WHERE tag ="W"' );
1208
- $b_count = $wpdb->get_var('SELECT count(ip) FROM '. CERBER_ACL_TABLE .' WHERE tag ="B"' );
1209
 
1210
  if (cerber_is_citadel()) $citadel = '<span style="color:#FF0000;">'.__('active','wp-cerber').'</span> (<a href="'.wp_nonce_url(add_query_arg(array('citadel' => 'deactivate')),'control','cerber_nonce').'">'.__('deactivate','wp-cerber').'</a>)';
1211
  else {
@@ -1276,7 +1272,7 @@ function cerber_show_help() {
1276
 
1277
  <p style="font-size: 120%;">To get the most out of Cerber Security, you need to configure the plugin properly</p>
1278
 
1279
- <p style="font-size: 120%;">Please read this first: <a href="https://wpcerber.com/getting-started/">Getting Started Guide</a></p>
1280
 
1281
  <p style="clear: both;"></p>
1282
 
@@ -1284,8 +1280,8 @@ function cerber_show_help() {
1284
 
1285
  <?php echo $support; ?>
1286
 
1287
- <p><span class="dashicons dashicons-before dashicons-book-alt"></span> <a href="https://wpcerber.com/toc/" target="_blank">Read articles on wpcerber.com</a></p>
1288
- <p><span class="dashicons dashicons-before dashicons-format-chat"></span> <a href="https://wordpress.org/support/plugin/wp-cerber">Get answer on the support forum</a></p>
1289
 
1290
 
1291
  <form style="margin-top: 2em;" action="https://wpcerber.com" target="_blank">
@@ -1298,9 +1294,9 @@ function cerber_show_help() {
1298
  <p>Traffic Inspector is a set of specialized request inspection algorithms that acts as an additional protection layer (firewall) for your WordPress</p>
1299
 
1300
  <p>
1301
- <span class="dashicons dashicons-before dashicons-book-alt"></span> <a href="https://wpcerber.com/traffic-inspector-in-a-nutshell/">Traffic Inspector in a nutshell</a>
1302
  </p>
1303
- <p><span class="dashicons dashicons-before dashicons-book-alt"></span> <a href="https://wpcerber.com/wordpress-traffic-inspector-how-to/">Traffic Inspector and logging how to</a>
1304
  </p>
1305
 
1306
 
@@ -1308,9 +1304,9 @@ function cerber_show_help() {
1308
  <td>
1309
  <h3>What is IP address of your computer?</h3>
1310
 
1311
- <p>To find out your current IP address go to this page: <a href="https://wpcerber.com/what-is-my-ip/">What is my IP</a>. If you see a different IP address on the Activity tab for your login or logout events you probably need to check <b><?php _e('My site is behind a reverse proxy','wp-cerber'); ?></b>.</p>
1312
  <p>
1313
- <span class="dashicons dashicons-before dashicons-book-alt"></span> <a href="https://wpcerber.com/wordpress-ip-address-detection/">Solving problem with incorrect IP address detection</a>
1314
  </p>
1315
 
1316
 
@@ -1320,9 +1316,9 @@ function cerber_show_help() {
1320
  The Cerber antispam and bot detection engine is capable to protect virtually any form on a website. It’s a great alternative to reCAPTCHA.
1321
  </p>
1322
  <p>
1323
- <span class="dashicons dashicons-before dashicons-book-alt"></span> <a href="https://wpcerber.com/how-to-stop-spam-user-registrations-wordpress/">How to stop spam user registrations on your WordPress</a>
1324
  </p>
1325
- <p><span class="dashicons dashicons-before dashicons-book-alt"></span> <a href="https://wpcerber.com/antispam-for-wordpress-contact-forms/">Antispam protection for contact forms</a>
1326
  </p>
1327
 
1328
 
@@ -1333,17 +1329,17 @@ function cerber_show_help() {
1333
  Before you start receiving notifications you need to install a free Pushbullet mobile application on your mobile device or free browser extension available for Chrome, Firefox and Opera.
1334
  </p>
1335
  <p><span class="dashicons dashicons-before dashicons-book-alt"></span>
1336
- <a href="https://wpcerber.com/wordpress-mobile-and-browser-notifications-pushbullet/">A three steps instruction how to set up push notifications</a>
1337
  </p>
1338
  <p><span class="dashicons dashicons-before dashicons-book-alt"></span>
1339
- <a href="https://wpcerber.com/wordpress-notifications-made-easy/">How to get alerts for specific activity on your website</a>
1340
  </p>
1341
 
1342
  <h3>WordPress security explained</h3>
1343
- <p><span class="dashicons dashicons-before dashicons-book-alt"></span> <a href="https://wpcerber.com/why-recaptcha-does-not-protect-wordpress/">Why does reCAPTCHA not protect WordPress against bots and brute-force attacks?</a></p>
1344
- <p><span class="dashicons dashicons-before dashicons-book-alt"></span> <a href="https://wpcerber.com/why-we-need-to-use-custom-login-url/">Why you need to use Custom login URL for your WordPress</a></p>
1345
- <p><span class="dashicons-before dashicons-book-alt"></span> <a href="https://wpcerber.com/why-its-important-to-restrict-access-to-rest-api/">Why it's important to restrict access to the WP REST API</a></p>
1346
- <p><span class="dashicons-before dashicons-book-alt"></span> <a href="https://wpcerber.com/mitigating-brute-force-dos-and-ddos-attacks/">Brute-force, DoS, and DDoS attacks - what's the difference?</a></p>
1347
  </td>
1348
  </tr>
1349
  </table>
@@ -2558,8 +2554,11 @@ function cerber_traffic_page(){
2558
  cerber_show_activity();
2559
  }
2560
 
2561
- echo '</div></div>';
2562
 
 
 
 
2563
  }
2564
 
2565
 
30
  */
31
 
32
 
33
+ if ( ! defined( 'WPINC' ) ) { exit; }
34
 
35
+ require_once( dirname( __FILE__ ) . '/cerber-tools.php' );
36
 
37
+ /*
38
+ Add admin menu, init admin stuff
39
+ */
40
+ if ( ! is_multisite() ) {
41
+ add_action( 'admin_menu', 'cerber_admin_menu' );
42
+ }
43
+ else {
44
+ add_action( 'network_admin_menu', 'cerber_admin_menu' ); // only network wide menu allowed in multisite mode
45
+ }
46
+ function cerber_admin_menu() {
47
 
48
+ if ( cerber_is_admin_page( false ) ) {
49
+ cerber_check_environment();
50
+ }
51
 
52
+ $hook = add_menu_page( __( 'WP Cerber Security', 'wp-cerber' ), __( 'WP Cerber', 'wp-cerber' ), 'manage_options', 'cerber-security', 'cerber_settings_page', 'dashicons-shield', '100' );
53
+ add_action( 'load-' . $hook, 'cerber_screen_options' );
54
+ add_submenu_page( 'cerber-security', __( 'Cerber Dashboard', 'wp-cerber' ), __( 'Dashboard' ), 'manage_options', 'cerber-security', 'cerber_settings_page' );
55
 
56
+ $hook = add_submenu_page( 'cerber-security', __( 'Cerber Traffic Inspector', 'wp-cerber' ), __( 'Traffic Inspector', 'wp-cerber' ), 'manage_options', 'cerber-traffic', 'cerber_traffic_page' );
57
+ add_action( 'load-' . $hook, 'cerber_screen_options' );
58
 
59
+ if ( lab_lab() ) {
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
+ add_submenu_page( 'cerber-security', __( 'Cerber antispam settings', 'wp-cerber' ), __( 'Antispam', 'wp-cerber' ), 'manage_options', 'cerber-recaptcha', 'cerber_recaptcha_page' );
64
+ add_submenu_page( 'cerber-security', __( 'Cerber tools', 'wp-cerber' ), __( 'Tools', 'wp-cerber' ), 'manage_options', 'cerber-tools', 'cerber_tools_page' );
65
 
66
+ }
67
 
68
+ add_action( 'admin_bar_menu', 'cerber_admin_bar' );
69
+ function cerber_admin_bar( $wp_admin_bar ) {
70
+ if ( ! is_multisite() ) {
71
+ return;
72
+ }
73
+ $args = array(
74
+ 'parent' => 'network-admin',
75
+ 'id' => 'cerber_admin',
76
+ 'title' => __( 'WP Cerber', 'wp-cerber' ),
77
+ 'href' => cerber_admin_link(),
78
+ );
79
+ $wp_admin_bar->add_node( $args );
80
+ }
81
 
82
  /*
83
  Display lockouts in dashboard for admins
219
  function cerber_acl_form_process(){
220
 
221
  if ( ! cerber_is_http_post() || ! isset( $_POST['cerber_nonce'] ) ) {
222
+ return;
223
  }
224
  if ( ! current_user_can( 'manage_options' ) || ! wp_verify_nonce( $_POST['cerber_nonce'], 'cerber_dashboard' ) ) {
225
  return;
1014
 
1015
  }
1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1017
  /*
1018
  Check if currently displayed page is a Cerber admin dashboard page with optional checking a set of GET params
1019
  */
1116
  break;
1117
  case 'cbfl' :
1118
  $u = get_userdata( $user_id );
1119
+ //$failed = $wpdb->get_var( 'SELECT COUNT(user_id) FROM ' . CERBER_LOG_TABLE . ' WHERE user_login = \'' . $u->user_login . '\' AND activity = 7 AND stamp > ' . ( time() - 24 * 3600 ) );
1120
+ $failed = cerber_db_get_var( 'SELECT COUNT(user_id) FROM ' . CERBER_LOG_TABLE . ' WHERE user_login = "' . $u->user_login . '" AND activity = 7 AND stamp > ' . ( time() - 24 * 3600 ) );
1121
  if ( $failed ) {
1122
  $act_link = cerber_admin_link( 'activity' );
1123
  $ret = '<a href="' . $act_link . '&filter_login=' . $u->user_login . '&filter_activity=7">' . $failed . '</a>';
1127
  }
1128
  break;
1129
  case 'cbdr' :
1130
+ //$time = strtotime($wpdb->get_var("SELECT user_registered FROM $wpdb->users WHERE id = ".$user_id));
1131
+ $time = strtotime( cerber_db_get_var( "SELECT user_registered FROM $wpdb->users WHERE id = " . $user_id ) );
1132
  if ($time < (time() - DAY_IN_SECONDS)){
1133
  $ret = cerber_date($time);
1134
  }
1145
  }
1146
  $uid = absint( $rm['user'] );
1147
  if ( $uid ) {
1148
+ //$name = $wpdb->get_var( 'SELECT meta_value FROM ' . $wpdb->usermeta . ' WHERE user_id = ' . $uid . ' AND meta_key = "nickname"' );
1149
+ $name = cerber_db_get_var( 'SELECT meta_value FROM ' . $wpdb->usermeta . ' WHERE user_id = ' . $uid . ' AND meta_key = "nickname"' );
1150
  if (!$user_ID) {
1151
  $user_ID = get_current_user_id();
1152
  }
1183
  $acl = cerber_admin_link('traffic');
1184
  $loc = cerber_admin_link('antispam');
1185
 
1186
+ $failed = cerber_db_get_var('SELECT count(ip) FROM '. CERBER_LOG_TABLE .' WHERE activity IN (7) AND stamp > '.(time() - 24 * 3600));
1187
+ $failed_prev = cerber_db_get_var('SELECT count(ip) FROM '. CERBER_LOG_TABLE .' WHERE activity IN (7) AND stamp > '.(time() - 48 * 3600).' AND stamp < '.(time() - 24 * 3600));
1188
 
1189
  $failed_ch = cerber_percent($failed_prev,$failed);
1190
 
1191
+ $locked = cerber_db_get_var('SELECT count(ip) FROM '. CERBER_LOG_TABLE .' WHERE activity IN (10,11) AND stamp > '.(time() - 24 * 3600));
1192
+ $locked_prev = cerber_db_get_var('SELECT count(ip) FROM '. CERBER_LOG_TABLE .' WHERE activity IN (10,11) AND stamp > '.(time() - 48 * 3600).' AND stamp < '.(time() - 24 * 3600));
1193
 
1194
  $locked_ch = cerber_percent($locked_prev,$locked);
1195
 
1196
  //$lockouts = $wpdb->get_var('SELECT count(ip) FROM '. CERBER_BLOCKS_TABLE);
1197
 
1198
  $lockouts = cerber_blocked_num();
1199
+ if ($last = cerber_db_get_var('SELECT MAX(stamp) FROM '.CERBER_LOG_TABLE.' WHERE activity IN (10,11)')) {
1200
  $last = cerber_ago_time( $last );
1201
  }
1202
  else $last = __('Never','wp-cerber');
1203
+ $w_count = cerber_db_get_var('SELECT count(ip) FROM '. CERBER_ACL_TABLE .' WHERE tag ="W"' );
1204
+ $b_count = cerber_db_get_var('SELECT count(ip) FROM '. CERBER_ACL_TABLE .' WHERE tag ="B"' );
1205
 
1206
  if (cerber_is_citadel()) $citadel = '<span style="color:#FF0000;">'.__('active','wp-cerber').'</span> (<a href="'.wp_nonce_url(add_query_arg(array('citadel' => 'deactivate')),'control','cerber_nonce').'">'.__('deactivate','wp-cerber').'</a>)';
1207
  else {
1272
 
1273
  <p style="font-size: 120%;">To get the most out of Cerber Security, you need to configure the plugin properly</p>
1274
 
1275
+ <p style="font-size: 120%;">Please read this first: <a target="_blank" href="https://wpcerber.com/getting-started/">Getting Started Guide</a></p>
1276
 
1277
  <p style="clear: both;"></p>
1278
 
1280
 
1281
  <?php echo $support; ?>
1282
 
1283
+ <p><span class="dashicons dashicons-before dashicons-book-alt"></span> <a target="_blank" href="https://wpcerber.com/toc/">Read articles on wpcerber.com</a></p>
1284
+ <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>
1285
 
1286
 
1287
  <form style="margin-top: 2em;" action="https://wpcerber.com" target="_blank">
1294
  <p>Traffic Inspector is a set of specialized request inspection algorithms that acts as an additional protection layer (firewall) for your WordPress</p>
1295
 
1296
  <p>
1297
+ <span class="dashicons dashicons-before dashicons-book-alt"></span> <a target="_blank" href="https://wpcerber.com/traffic-inspector-in-a-nutshell/">Traffic Inspector in a nutshell</a>
1298
  </p>
1299
+ <p><span class="dashicons dashicons-before dashicons-book-alt"></span> <a target="_blank" href="https://wpcerber.com/wordpress-traffic-inspector-how-to/">Traffic Inspector and logging how to</a>
1300
  </p>
1301
 
1302
 
1304
  <td>
1305
  <h3>What is IP address of your computer?</h3>
1306
 
1307
+ <p>To find out your current IP address go to this page: <a target="_blank" href="https://wpcerber.com/what-is-my-ip/">What is my IP</a>. If you see a different IP address on the Activity tab for your login or logout events you probably need to check <b><?php _e('My site is behind a reverse proxy','wp-cerber'); ?></b>.</p>
1308
  <p>
1309
+ <span class="dashicons dashicons-before dashicons-book-alt"></span> <a target="_blank" href="https://wpcerber.com/wordpress-ip-address-detection/">Solving problem with incorrect IP address detection</a>
1310
  </p>
1311
 
1312
 
1316
  The Cerber antispam and bot detection engine is capable to protect virtually any form on a website. It’s a great alternative to reCAPTCHA.
1317
  </p>
1318
  <p>
1319
+ <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>
1320
  </p>
1321
+ <p><span class="dashicons dashicons-before dashicons-book-alt"></span> <a target="_blank" href="https://wpcerber.com/antispam-for-wordpress-contact-forms/">Antispam protection for contact forms</a>
1322
  </p>
1323
 
1324
 
1329
  Before you start receiving notifications you need to install a free Pushbullet mobile application on your mobile device or free browser extension available for Chrome, Firefox and Opera.
1330
  </p>
1331
  <p><span class="dashicons dashicons-before dashicons-book-alt"></span>
1332
+ <a target="_blank" href="https://wpcerber.com/wordpress-mobile-and-browser-notifications-pushbullet/">A three steps instruction how to set up push notifications</a>
1333
  </p>
1334
  <p><span class="dashicons dashicons-before dashicons-book-alt"></span>
1335
+ <a target="_blank" href="https://wpcerber.com/wordpress-notifications-made-easy/">How to get alerts for specific activity on your website</a>
1336
  </p>
1337
 
1338
  <h3>WordPress security explained</h3>
1339
+ <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>
1340
+ <p><span class="dashicons dashicons-before dashicons-book-alt"></span> <a target="_blank" href="https://wpcerber.com/why-we-need-to-use-custom-login-url/">Why you need to use Custom login URL for your WordPress</a></p>
1341
+ <p><span class="dashicons-before dashicons-book-alt"></span> <a target="_blank" href="https://wpcerber.com/why-its-important-to-restrict-access-to-rest-api/">Why it's important to restrict access to the WP REST API</a></p>
1342
+ <p><span class="dashicons-before dashicons-book-alt"></span> <a target="_blank" href="https://wpcerber.com/mitigating-brute-force-dos-and-ddos-attacks/">Brute-force, DoS, and DDoS attacks - what's the difference?</a></p>
1343
  </td>
1344
  </tr>
1345
  </table>
2554
  cerber_show_activity();
2555
  }
2556
 
2557
+ echo '</div>';
2558
 
2559
+ ?>
2560
+ </div>
2561
+ <?php
2562
  }
2563
 
2564
 
languages/wp-cerber-nb_NO.mo CHANGED
Binary file
languages/wp-cerber-nb_NO.po CHANGED
@@ -8,665 +8,666 @@ msgstr ""
8
  "Language: nb\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
 
11
- #: ../settings.php:70
12
  msgid "Limit login attempts"
13
  msgstr "Begrens innloggingsforsøk"
14
 
15
- #: ../settings.php:71
16
  msgid "Attempts"
17
  msgstr "Forsøk"
18
 
19
- #: ../settings.php:72
20
  msgid "Lockout duration"
21
  msgstr "Varighet for utestengelse"
22
 
23
- #: ../settings.php:72 ../settings.php:91
24
  msgid "minutes"
25
  msgstr "minutter"
26
 
27
- #: ../settings.php:73
28
  msgid "Aggressive lockout"
29
  msgstr "Aggressiv utestengelse"
30
 
31
- #: ../settings.php:76
32
  msgid "Site connection"
33
  msgstr "Sidetilkobling"
34
 
35
- #: ../settings.php:78
36
  msgid "Proactive security rules"
37
  msgstr "Proaktive sikkerhetsregler"
38
 
39
- #: ../settings.php:79
40
  msgid "Block subnet"
41
  msgstr "Blokkér subnet"
42
 
43
- #: ../settings.php:82
44
  msgid "Request wp-login.php"
45
  msgstr "Kobling til wp-login.php"
46
 
47
- #: ../settings.php:82
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
 
51
- #: ../settings.php:81
52
  msgid "Redirect dashboard requests"
53
  msgstr "Omdiriger kontrollpanel-koblinger"
54
 
55
- #: ../settings.php:85
56
  msgid "Custom login page"
57
  msgstr "Egendefinert innloggingsside"
58
 
59
- #: ../settings.php:86
60
  msgid "Custom login URL"
61
  msgstr "Egendefinert URL for innlogging"
62
 
63
- #: ../settings.php:86
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:87
68
  msgid "Disable wp-login.php"
69
  msgstr "Deaktiver wp-login.php"
70
 
71
- #: ../settings.php:87
72
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
73
  msgstr "Blokkér direkte tilgang til wp-login.php og returnér HTTP 404 Ikke Funnet-feil."
74
 
75
- #: ../dashboard.php:1208 ../settings.php:89
76
  msgid "Citadel mode"
77
  msgstr "Vakttårnsmodus"
78
 
79
- #: ../settings.php:90
80
  msgid "Threshold"
81
  msgstr "Terskel"
82
 
83
- #: ../settings.php:91
84
  msgid "Duration"
85
  msgstr "Varighet"
86
 
87
- #: ../wp-cerber.php:3910 ../settings.php:75 ../settings.php:92 ../settings.php:368
 
88
  msgid "Notifications"
89
  msgstr "Varsling"
90
 
91
- #: ../settings.php:92
92
  msgid "Send notification to admin email"
93
  msgstr "Send varsel til admins e-postadresse"
94
 
95
- #: ../wp-cerber.php:3907 ../settings.php:361 ../cerber-tools.php:88 ../cerber-
96
- #: tools.php:97 ../cerber-tools.php:178
97
  msgid "Access Lists"
98
  msgstr "Tilgangsliste"
99
 
100
- #: ../dashboard.php:1226 ../dashboard.php:1423 ../wp-cerber.php:3671 ../settings.
101
- #: php:94 ../settings.php:352
102
  msgid "Activity"
103
  msgstr "Aktivitet"
104
 
105
- #: ../settings.php:356
106
  msgid "Lockouts"
107
  msgstr "Utestengelser"
108
 
109
- #: ../settings.php:477 ../settings.php:599
110
  msgid "%s allowed retries in %s minutes"
111
  msgstr "%s tillatte forsøk på %s minutter"
112
 
113
- #: ../settings.php:499 ../settings.php:621
114
  msgid "Enable after %s failed login attempts in last %s minutes"
115
  msgstr "Aktivér etter %s mislykkede innloggingsforsøk på %s minutter"
116
 
117
- #: ../dashboard.php:93 ../dashboard.php:652 ../dashboard.php:2784 ../wp-cerber.
118
- #: php:3680
119
  msgid "IP"
120
  msgstr "IP-adresse"
121
 
122
- #: ../dashboard.php:491 ../dashboard.php:655 ../dashboard.php:2782
123
  msgid "Date"
124
  msgstr "Dato"
125
 
126
- #: ../dashboard.php:491 ../dashboard.php:657 ../dashboard.php:2787
127
  msgid "Local User"
128
  msgstr "Lokal bruker"
129
 
130
- #: ../dashboard.php:491 ../dashboard.php:658 ../wp-cerber.php:3688
131
  msgid "Username used"
132
  msgstr "Brukernavn brukt"
133
 
134
- #: ../dashboard.php:112
135
  msgid "Showing last %d records from %d"
136
  msgstr "Viser siste %d oppføringer fra %d"
137
 
138
- #: ../common.php:613
139
  msgid "Logged in"
140
  msgstr "Logget inn"
141
 
142
- #: ../common.php:614
143
  msgid "Logged out"
144
  msgstr "Logget ut"
145
 
146
- #: ../common.php:615
147
  msgid "Login failed"
148
  msgstr "Innlogging feilet"
149
 
150
- #: ../common.php:618
151
  msgid "IP blocked"
152
  msgstr "IP blokkert"
153
 
154
- #: ../common.php:619
155
  msgid "Subnet blocked"
156
  msgstr "Subnet blokkert"
157
 
158
- #: ../common.php:621
159
  msgid "Citadel activated!"
160
  msgstr "Vakttårn aktivert!"
161
 
162
- #: ../dashboard.php:632 ../dashboard.php:836 ../dashboard.php:2630 ../common.php:
163
- #: 658
164
  msgid "Locked out"
165
  msgstr "Utestengt"
166
 
167
- #: ../common.php:659
168
  msgid "IP blacklisted"
169
  msgstr "IP svartelistet"
170
 
171
- #: ../common.php:636
172
  msgid "Password changed"
173
  msgstr "Passord endret"
174
 
175
- #: ../dashboard.php:86 ../dashboard.php:159
176
  msgid "Remove"
177
  msgstr "Fjern"
178
 
179
- #: ../dashboard.php:390
180
  msgid "Lockout for %s was removed"
181
  msgstr "Utestengelse for %s ble fjernet"
182
 
183
- #: ../dashboard.php:131 ../dashboard.php:627 ../dashboard.php:830 ../dashboard.
184
- #: php:1206 ../dashboard.php:2625 ../wp-cerber.php:3899 ../settings.php:74 ..
185
- #: /settings.php:322
186
  msgid "White IP Access List"
187
  msgstr "Hvit IP-tilgangsliste"
188
 
189
- #: ../dashboard.php:133 ../dashboard.php:628 ../dashboard.php:833 ../dashboard.
190
- #: php:1207 ../dashboard.php:2626
191
  msgid "Black IP Access List"
192
  msgstr "Svart IP-tilgangsliste"
193
 
194
- #: ../dashboard.php:165
195
  msgid "List is empty"
196
  msgstr "Listen er tom"
197
 
198
- #: ../dashboard.php:202
199
  msgid "Address %s was added to White IP Access List"
200
  msgstr "Adressen %s ble lagt til den hvite IP-tilgangslisten"
201
 
202
- #: ../dashboard.php:216
203
  msgid "Address %s was added to Black IP Access List"
204
  msgstr "Adressen %s ble lagt til den svarte IP-tilgangslisten"
205
 
206
- #: ../wp-cerber.php:3142
207
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
208
  msgstr "Vakttårnsmodus ble aktivert etter %d mislykkede innloggingsforsøk på %d minutter"
209
 
210
- #: ../dashboard.php:1566
211
  msgid "View Activity"
212
  msgstr "Se aktivitet"
213
 
214
- #: ../dashboard.php:2482 ../cerber-tools.php:87 ../cerber-tools.php:96
215
  msgid "Settings"
216
  msgstr "Innstillinger"
217
 
218
- #: ../dashboard.php:1072
219
  msgid "Last login"
220
  msgstr "Siste innlogging"
221
 
222
- #: ../dashboard.php:1105 ../dashboard.php:1189
223
  msgid "Never"
224
  msgstr "Aldri"
225
 
226
- #: ../dashboard.php:1467
227
  msgid "Are you sure?"
228
  msgstr "Er du sikker?"
229
 
230
- #: ../dashboard.php:1274 ../settings.php:76
231
  msgid "My site is behind a reverse proxy"
232
  msgstr "Min side er bak en reverse proxy"
233
 
234
- #: ../settings.php:80
235
  msgid "Non-existent users"
236
  msgstr "Ikke-eksisterende brukere"
237
 
238
- #: ../settings.php:80
239
  msgid "Immediately block IP when attempting to login with a non-existent username"
240
  msgstr "Blokkér umiddelbart IP når noen prøver å logge inn med et ikke-eksisterende brukernavn"
241
 
242
- #: ../settings.php:81
243
  msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
244
  msgstr "Deaktivér automatisk omdirigering til innloggingssiden når /wp-admin/ blir forsøkt tilkoblet fra en uatorisert forespørsel"
245
 
246
- #: ../settings.php:308
247
  msgid "Make your protection smarter!"
248
  msgstr "Gjør din beskyttelse smartere!"
249
 
250
- #: ../settings.php:312
251
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
252
  msgstr "Vennligst "
253
 
254
- #: ../settings.php:315
255
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
256
  msgstr "Vær forsiktig når du velger dette alternativet. Glemmer du din nye URL for innlogging, vil du ikke kunne logge deg inn."
257
 
258
- #: ../wp-cerber.php:3906 ../settings.php:358
259
  msgid "Main Settings"
260
  msgstr "Hovedinnstillinger"
261
 
262
- #: ../settings.php:370
263
  msgid "Help"
264
  msgstr "Hjelp"
265
 
266
- #: ../settings.php:487 ../settings.php:609
267
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
268
  msgstr "Øk varigheten av utestengelser til %s timer etter %s utestengelser i løpet av de siste %s timer"
269
 
270
- #: ../wp-cerber.php:299
271
  msgid "You are not allowed to log in. Ask your administrator for assistance."
272
  msgstr "Du har ikke tillatelse til å logge inn. Spør din administrator om du trenger hjelp."
273
 
274
- #: ../wp-cerber.php:305
275
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
276
  msgstr "Du har nådd grensen for antall tillatte innloggingsforsøk. Vennligst prøv igjen om %d minutter."
277
 
278
- #: ../wp-cerber.php:324
279
  msgid "You have only one attempt remaining."
280
  msgid_plural "You have %d attempts remaining."
281
  msgstr[0] "Du har kun ett forsøk igjen."
282
  msgstr[1] "Du har %d forsøk igjen."
283
 
284
- #: ../dashboard.php:680
285
  msgid "No activity has been logged."
286
  msgstr "Ingen aktivitet har blitt registrert."
287
 
288
- #: ../dashboard.php:96
289
  msgid "Expires"
290
  msgstr "Utgår"
291
 
292
- #: ../dashboard.php:118
293
  msgid "No lockouts at the moment. The sky is clear."
294
  msgstr "Ingen utestengelser akkurat nå. Kysten er klar."
295
 
296
- #: ../dashboard.php:131
297
  msgid "These IPs will never be locked out"
298
  msgstr "Disse IP-er vil aldri bli utestengt"
299
 
300
- #: ../dashboard.php:140
301
  msgid "Your IP"
302
  msgstr "Din IP"
303
 
304
- #: ../wp-cerber.php:3143
305
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
306
  msgstr "Siste mislykkede forsøk var %s fra IP %s med brukernavn %s."
307
 
308
- #: ../wp-cerber.php:3882
309
  msgid "Can't activate WP Cerber due to a database error."
310
  msgstr "Kunne ikke aktivere WP Cerber på grunn av en databasefeil."
311
 
312
- #: ../settings.php:494 ../settings.php:616
313
  msgid "Notify admin if the number of active lockouts above"
314
  msgstr "Varsle administratoren om antallet aktive utestengelser overskrider"
315
 
316
- #: ../settings.php:95 ../settings.php:168 ../settings.php:298
317
  msgid "days"
318
  msgstr "dager"
319
 
320
- #: ../dashboard.php:1159
321
  msgid "Cerber Quick View"
322
  msgstr "Cerber hurtigvisning"
323
 
324
- #: ../dashboard.php:114
325
  msgid "Hint"
326
  msgstr "Hint"
327
 
328
- #: ../dashboard.php:114
329
  msgid "To view activity, click on the IP"
330
  msgstr "For å se aktivitet klikk på IP-en"
331
 
332
- #: ../dashboard.php:158 ../dashboard.php:843 ../dashboard.php:870 ../dashboard.
333
- #: php:961
334
  msgid "Check for activity"
335
  msgstr "Sjekk etter aktivitet"
336
 
337
- #: ../settings.php:79
338
  msgid "Always block entire subnet Class C of intruders IP"
339
  msgstr "Alltid blokkér hele subnet Class C av inntrengerens IP"
340
 
341
- #: ../settings.php:92 ../settings.php:496 ../settings.php:618
342
  msgid "Click to send test"
343
  msgstr "Klikk for å sende test"
344
 
345
- #: ../settings.php:758 ../settings.php:759
346
  msgid "Attention! You have changed the login URL! The new login URL is"
347
  msgstr "OBS! Du har endret innloggings-adressen. Din nye URL for innlogging er"
348
 
349
- #: ../dashboard.php:1071
350
  msgid "Comments"
351
  msgstr "Kommentarer"
352
 
353
- #: ../common.php:891
354
  msgid "Update to version %s of WP Cerber"
355
  msgstr "Oppdatér til versjon %s av WP Cerber"
356
 
357
- #: ../wp-cerber.php:3144 ../wp-cerber.php:3712
358
  msgid "View activity in dashboard"
359
  msgstr "Se aktivitet i kontrollpanelet"
360
 
361
- #: ../wp-cerber.php:3174
362
  msgid "Number of active lockouts"
363
  msgstr "Antall aktive utestengelser"
364
 
365
- #: ../wp-cerber.php:3178
366
  msgid "View lockouts in dashboard"
367
  msgstr "Se utestengelser i kontrollpanelet"
368
 
369
- #: ../wp-cerber.php:3260
370
  msgid "This message was sent by"
371
  msgstr "Denne meldingen ble sendt av"
372
 
373
- #: ../dashboard.php:1000 ../cerber-tools.php:43
374
  msgid "Tools"
375
  msgstr "Verktøy"
376
 
377
- #: ../cerber-tools.php:84
378
  msgid "Export settings to the file"
379
  msgstr "Eksportér innstillinger til filen"
380
 
381
- #: ../cerber-tools.php:85
382
  msgid "When you click the button below you will get a configuration file, which you can upload on another site."
383
  msgstr "Når du klikker knappen under, vil du få en konfigurasjonsfil som du kan laste opp på en annen side."
384
 
385
- #: ../cerber-tools.php:86
386
  msgid "What do you want to export?"
387
  msgstr "Hva ønsker du å eksportere?"
388
 
389
- #: ../cerber-tools.php:89
390
  msgid "Download file"
391
  msgstr "Last ned fil"
392
 
393
- #: ../cerber-tools.php:91
394
  msgid "Import settings from the file"
395
  msgstr "Importér innstillinger fra filen"
396
 
397
- #: ../cerber-tools.php:92
398
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
399
  msgstr "Når du klikker på knappen under, vil filen lastes opp og alle eksisterende innstillinger vil bli overskrevet."
400
 
401
- #: ../cerber-tools.php:93
402
  msgid "Select file to import."
403
  msgstr "Velg fil å importere."
404
 
405
- #: ../cerber-tools.php:93
406
  msgid "Maximum upload file size: %s."
407
  msgstr "Maksimum tillatte filstørrelse for opplasting: %s."
408
 
409
- #: ../cerber-tools.php:96
410
  msgid "What do you want to import?"
411
  msgstr "Hva ønsker du å importere?"
412
 
413
- #: ../cerber-tools.php:98
414
  msgid "Upload file"
415
  msgstr "Last opp fil"
416
 
417
- #: ../cerber-tools.php:145
418
  msgid "No file was uploaded or file is corrupted"
419
  msgstr "Ingen fil ble lastet opp, eller er filen ødelagt"
420
 
421
- #: ../cerber-tools.php:178
422
  msgid "Error while updating"
423
  msgstr "Feil under oppdatering"
424
 
425
- #: ../cerber-tools.php:181
426
  msgid "Settings has imported successfully from"
427
  msgstr "Innstillinger ble importert fra"
428
 
429
- #: ../cerber-tools.php:185
430
  msgid "Error while parsing file"
431
  msgstr "Feil under parsing av filen"
432
 
433
- #: ../dashboard.php:94 ../dashboard.php:653
434
  msgid "Hostname"
435
  msgstr "Vertsnavn"
436
 
437
- #: ../dashboard.php:355
438
  msgid "unknown"
439
  msgstr "ukjent"
440
 
441
- #: ../settings.php:95 ../settings.php:294
442
  msgid "Keep records for"
443
  msgstr "Behold logger"
444
 
445
- #: ../dashboard.php:1193 ../dashboard.php:1214
446
  msgid "active"
447
  msgstr "aktive"
448
 
449
- #: ../dashboard.php:1193
450
  msgid "deactivate"
451
  msgstr "deaktiver"
452
 
453
- #: ../dashboard.php:1195
454
  msgid "not active"
455
  msgstr "ikke aktive"
456
 
457
- #: ../dashboard.php:1196 ../dashboard.php:1210
458
  msgid "disabled"
459
  msgstr "deaktivert"
460
 
461
- #: ../dashboard.php:1201
462
  msgid "failed attempts"
463
  msgstr "mislykkede forsøk"
464
 
465
- #: ../dashboard.php:1201 ../dashboard.php:1202
466
  msgid "in 24 hours"
467
  msgstr "på 24 timer"
468
 
469
- #: ../dashboard.php:1201 ../dashboard.php:1202
470
  msgid "view all"
471
  msgstr "se alle"
472
 
473
- #: ../dashboard.php:1202
474
  msgid "lockouts"
475
  msgstr "utestengelser"
476
 
477
- #: ../dashboard.php:1204
478
  msgid "Lockouts at the moment"
479
  msgstr "Utestengelser akkurat nå"
480
 
481
- #: ../dashboard.php:1205
482
  msgid "Last lockout"
483
  msgstr "Siste utestengelse"
484
 
485
- #: ../dashboard.php:1206 ../dashboard.php:1207 ../dashboard.php:1737
486
  msgid "entry"
487
  msgid_plural "entries"
488
  msgstr[0] "oppføring"
489
  msgstr[1] "oppføringer"
490
 
491
- #: ../dashboard.php:1462
492
  msgid "Confused about some settings?"
493
  msgstr "Usikker på noen innstillinger?"
494
 
495
- #: ../dashboard.php:1463
496
  msgid "You can easily load default recommended settings using button below"
497
  msgstr "Du kan enkelt laste inn anbefalte standardinnstillinger via knappen under"
498
 
499
- #: ../dashboard.php:1465
500
  msgid "Load default settings"
501
  msgstr "Last inn standardinnstillinger"
502
 
503
- #: ../dashboard.php:1473
504
  msgid "doesn't affect Custom login URL and Access Lists"
505
  msgstr "påvirker ikke egendefinert innloggings-URL og tilgangslister"
506
 
507
- #: ../common.php:884
508
  msgid "New version is available"
509
  msgstr "Ny versjon er tilgjengelig"
510
 
511
  #. Name of the plugin
512
- #: ../dashboard.php:988 ../dashboard.php:1010
513
  msgid "WP Cerber"
514
  msgstr "WP Cerber"
515
 
516
- #: ../wp-cerber.php:3118
517
  msgid "WP Cerber notify"
518
  msgstr "WP Cerber-varsling"
519
 
520
- #: ../wp-cerber.php:3140
521
  msgid "Citadel mode is activated"
522
  msgstr "Vakttårns-modus er aktivert"
523
 
524
- #: ../wp-cerber.php:3214
525
  msgid "New Custom login URL"
526
  msgstr "Ny egendefinert innloggings-URL"
527
 
528
- #: ../wp-cerber.php:3869
529
  msgid "The WP Cerber requires PHP %s or higher. You are running"
530
  msgstr "WP Cerber krever PHP versjon %s eller høyere. Du kjører"
531
 
532
- #: ../wp-cerber.php:3873
533
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
534
  msgstr "WP Cerber krever WordPress versjon %s eller høyere. Du kjører"
535
 
536
- #: ../settings.php:98
537
  msgid "Use file"
538
  msgstr "Bruk fil"
539
 
540
- #: ../settings.php:98
541
  msgid "Write failed login attempts to the file"
542
  msgstr "Skriv mislykkede innloggingsforsøk til filen"
543
 
544
- #: ../dashboard.php:1565
545
  msgid "Deactivate"
546
  msgstr "Deaktivér"
547
 
548
- #: ../dashboard.php:97 ../wp-cerber.php:3176
549
  msgid "Reason"
550
  msgstr "Grunn"
551
 
552
- #: ../dashboard.php:170
553
  msgid "Add IP to the list"
554
  msgstr "Legg IP til listen"
555
 
556
- #: ../dashboard.php:888
557
  msgid "Add IP to the Black List"
558
  msgstr "Legg IP til svartelisten"
559
 
560
- #: ../common.php:689
561
  msgid "Attempt to access"
562
  msgstr "Forsøk på å få tilgang til"
563
 
564
- #: ../common.php:688
565
  msgid "Limit on login attempts is reached"
566
  msgstr "Grensen for innloggingsforsøk er nådd"
567
 
568
- #: ../common.php:644 ../common.php:690
569
  msgid "Attempt to log in with non-existent username"
570
  msgstr "Forsøk på å logge inn med ikke-eksisterende brukernavn"
571
 
572
- #: ../wp-cerber.php:3175
573
  msgid "Last lockout was added: %s for IP %s"
574
  msgstr "Siste utestengelse ble lagt til: %s for IP %s"
575
 
576
- #: ../wp-cerber.php:3909 ../settings.php:363
577
  msgid "Hardening"
578
  msgstr "Forsterking"
579
 
580
- #: ../dashboard.php:866
581
  msgid "Abuse email:"
582
  msgstr "Repportering av misbruk:"
583
 
584
- #: ../settings.php:197 ../settings.php:228
585
  msgid "Email Address"
586
  msgstr "E-postadresse"
587
 
588
- #: ../settings.php:206
589
  msgid "if empty, the admin email %s will be used"
590
  msgstr "Hvis tom, vil e-postadressen %s bli brukt"
591
 
592
- #: ../settings.php:101
593
  msgid "Drill down IP"
594
  msgstr "Inspiser IP"
595
 
596
- #: ../settings.php:101
597
  msgid "Retrieve extra WHOIS information for IP"
598
  msgstr "Hent ekstra WHOIS-informasjon for IP"
599
 
600
- #: ../settings.php:109
601
  msgid "Hardening WordPress"
602
  msgstr "Forsterke WordPress"
603
 
604
- #: ../settings.php:110
605
  msgid "Stop user enumeration"
606
  msgstr "Stopp opplisting av brukere"
607
 
608
- #: ../settings.php:111
609
  msgid "Disable XML-RPC"
610
  msgstr "Deaktivér XML-RPC"
611
 
612
- #: ../settings.php:111
613
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
614
  msgstr "Blokkér tilgang til XML-RPC-serveren (inkluderer Pingbacks og Trackbacks)"
615
 
616
- #: ../settings.php:112
617
  msgid "Disable feeds"
618
  msgstr "Deaktiver feeds"
619
 
620
- #: ../settings.php:112
621
  msgid "Block access to the RSS, Atom and RDF feeds"
622
  msgstr "Blokkér tilgang til RSS- Atom- og RDF-feeds"
623
 
624
- #: ../settings.php:113
625
  msgid "Disable REST API"
626
  msgstr "Deaktivér REST API"
627
 
628
- #: ../settings.php:322
629
  msgid "These settings do not affect hosts from the "
630
  msgstr "Disse innstillingene påvirker ikke verter fra "
631
 
632
- #: ../settings.php:839 ../settings.php:851
633
  msgid "<strong>ERROR</strong>: please enter a valid email address."
634
  msgstr "<strong>FEIL</strong>: vennligst skriv inn en gyldig e-postadresse"
635
 
636
- #: ../wp-cerber.php:3206 ../wp-cerber.php:3898
637
  msgid "WP Cerber is now active and has started protecting your site"
638
  msgstr "WP Cerber er nå aktiv og har begynt å beskytte siden din"
639
 
640
- #: ../dashboard.php:98
641
  msgid "Action"
642
  msgstr "Handling"
643
 
644
- #: ../dashboard.php:133
645
  msgid "Nobody can log in or register from these IPs"
646
  msgstr "Ingen kan logge inn eller registrere seg fra disse IP-ene"
647
 
648
- #: ../dashboard.php:196 ../dashboard.php:208
649
  msgid "Incorrect IP address or IP range"
650
  msgstr "Feil IP-adresse eller IP-rekkevidde"
651
 
652
- #: ../dashboard.php:407 ../dashboard.php:1581
653
  msgid "Settings saved"
654
  msgstr "Innstillingene er lagret"
655
 
656
- #: ../dashboard.php:870
657
  msgid "Network:"
658
  msgstr "Nettverk:"
659
 
660
- #: ../dashboard.php:884
661
  msgid "Add network to the Black List"
662
  msgstr "Legg nettverk til svartelisten"
663
 
664
- #: ../dashboard.php:1564
665
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
666
  msgstr "Advarsel! Vakttårns-modus er nå aktiv. Ingen vil kunne logge inn."
667
 
668
- #: ../dashboard.php:313 ../dashboard.php:2555 ../whois.php:221 ../whois.php:252 ..
669
- #: /common.php:687 ../common.php:966
670
  msgid "Unknown"
671
  msgstr "Ukjent"
672
 
@@ -675,458 +676,459 @@ msgstr "Ukjent"
675
  msgid "Gregory"
676
  msgstr "Gregory"
677
 
678
- #: ../wp-cerber.php:607 ../wp-cerber.php:619 ../wp-cerber.php:626 ../wp-cerber.
679
- #: php:828 ../wp-cerber.php:1044 ../wp-cerber.php:1050 ../wp-cerber.php:1055 ..
680
- #: /wp-cerber.php:1060 ../wp-cerber.php:1066 ../wp-cerber.php:1073 ../wp-cerber.
681
- #: php:1173 ../wp-cerber.php:1310 ../common.php:194 ../common.php:251 ../common.
682
- #: php:255 ../settings.php:808
 
683
  msgid "ERROR:"
684
  msgstr "FEIL:"
685
 
686
- #: ../wp-cerber.php:636
687
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
688
  msgstr "Bekreftelse av menneskelighet feilet. Vennligst klikk den firkantige boksen i reCAPTCHA-blokken under."
689
 
690
- #: ../wp-cerber.php:840
691
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
692
  msgstr "<strong>FEIL</strong>: Passordet du skrev inn for brukernavnet %s er ugyldig."
693
 
694
- #: ../wp-cerber.php:1061
695
  msgid "Username is not allowed. Please choose another one."
696
  msgstr "Brukernavnet er ikke tillatt. Vennligst velg et annet brukernavn."
697
 
698
- #: ../wp-cerber.php:3169
699
  msgid "unspecified"
700
  msgstr "uspesifisert"
701
 
702
- #: ../wp-cerber.php:3172
703
  msgid "Number of lockouts is increasing"
704
  msgstr "Antallet utestengelser stiger"
705
 
706
- #: ../wp-cerber.php:3177
707
  msgid "View activity for this IP"
708
  msgstr "Se aktivitet for denne IP"
709
 
710
- #: ../wp-cerber.php:3181 ../wp-cerber.php:3183
711
  msgid "A new version of WP Cerber is available to install"
712
  msgstr "En ny versjon av WP Cerber er tilgjengelig for installasjon"
713
 
714
- #: ../wp-cerber.php:3182
715
  msgid "Hi!"
716
  msgstr "Hei!"
717
 
718
- #: ../wp-cerber.php:3185 ../wp-cerber.php:3196
719
  msgid "Website"
720
  msgstr "Webside"
721
 
722
- #: ../wp-cerber.php:3188 ../wp-cerber.php:3189
723
  msgid "The WP Cerber security plugin has been deactivated"
724
  msgstr "Sikkerhetstillegget WP Cerber har blitt deaktivert"
725
 
726
- #: ../wp-cerber.php:3191
727
  msgid "Not logged in"
728
  msgstr "Ikke innlogget"
729
 
730
- #: ../wp-cerber.php:3197
731
  msgid "By user"
732
  msgstr "Etter brukernavn"
733
 
734
- #: ../wp-cerber.php:3198
735
  msgid "From IP address"
736
  msgstr "Fra IP-adresse"
737
 
738
- #: ../wp-cerber.php:3201
739
  msgid "From country"
740
  msgstr "Fra land"
741
 
742
- #: ../wp-cerber.php:3205
743
  msgid "The WP Cerber security plugin is now active"
744
  msgstr "Sikkerhetstillegget WP Cerber er nå aktivt"
745
 
746
- #: ../wp-cerber.php:3899
747
  msgid "Your IP address is added to the"
748
  msgstr "Din IP-adresse ble lagt til"
749
 
750
- #: ../wp-cerber.php:3911
751
  msgid "Import settings"
752
  msgstr "Importer innstillinger"
753
 
754
- #: ../settings.php:209
755
  msgid "Notification limit"
756
  msgstr "Grense for varslinger"
757
 
758
- #: ../settings.php:209
759
  msgid "notification letters allowed per hour (0 means unlimited)"
760
  msgstr "varslingsmeldinger tillatt per time (0 betyr ubegrenset)"
761
 
762
- #: ../settings.php:131
763
  msgid "User related settings"
764
  msgstr "Brukerrelaterte innstillinger"
765
 
766
- #: ../settings.php:133
767
  msgid "Prohibited usernames"
768
  msgstr "Blokkerte brukernavn"
769
 
770
- #: ../settings.php:139
771
  msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
772
  msgstr "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."
773
 
774
- #: ../settings.php:141
775
  msgid "User session expire"
776
  msgstr "Brukerøktens varighet"
777
 
778
- #: ../settings.php:141
779
  msgid "in minutes (leave empty to use default WP value)"
780
  msgstr "i minutter (la stå tom for å bruke WordPress' standardverdi)"
781
 
782
- #: ../settings.php:171
783
  msgid "reCAPTCHA settings"
784
  msgstr "reCAPTCHA-innstillinger"
785
 
786
- #: ../settings.php:172
787
  msgid "Site key"
788
  msgstr "Site key"
789
 
790
- #: ../settings.php:173
791
  msgid "Secret key"
792
  msgstr "Secret key"
793
 
794
- #: ../settings.php:176
795
  msgid "Enable reCAPTCHA for WordPress registration form"
796
  msgstr "Slå på reCAPTCHA for WordPress' registreringsskjema"
797
 
798
- #: ../settings.php:179
799
  msgid "Lost password form"
800
  msgstr "Skjema for mistet passord"
801
 
802
- #: ../settings.php:182
803
  msgid "Login form"
804
  msgstr "Innloggingsskjema"
805
 
806
- #: ../settings.php:182
807
  msgid "Enable reCAPTCHA for WordPress login form"
808
  msgstr "Slå på reCAPTCHA for WordPress' innloggingsskjema"
809
 
810
- #: ../settings.php:325
811
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
812
  msgstr "Før du kan ta i bruk reCAPTCHA må du skaffe deg en Site key og Secret key på Googles webside"
813
 
814
- #: ../cerber-lab.php:697 ../settings.php:326
815
  msgid "Know more"
816
  msgstr "Lær mer"
817
 
818
- #: ../dashboard.php:988 ../settings.php:345
819
  msgid "WP Cerber Security"
820
  msgstr "WP Cerber-sikkerhet"
821
 
822
- #: ../settings.php:365
823
  msgid "Users"
824
  msgstr "Brukere"
825
 
826
- #: ../common.php:611
827
  msgid "User created"
828
  msgstr "Bruker opprettet"
829
 
830
- #: ../dashboard.php:1416 ../common.php:612
831
  msgid "User registered"
832
  msgstr "Bruker registrert"
833
 
834
- #: ../common.php:639
835
  msgid "reCAPTCHA verification failed"
836
  msgstr "reCAPTCHA-godkjenning mislyktes"
837
 
838
- #: ../common.php:640
839
  msgid "reCAPTCHA settings are incorrect"
840
  msgstr "reCAPTCHA-innstillingene er feil"
841
 
842
- #: ../common.php:643
843
  msgid "Attempt to access prohibited URL"
844
  msgstr "Forsøk på å koble til forbudt URL"
845
 
846
- #: ../common.php:645 ../common.php:691
847
  msgid "Attempt to log in with prohibited username"
848
  msgstr "Forsøk på å logge inn med forbudt brukernavn"
849
 
850
- #: ../settings.php:96
851
  msgid "Cerber Lab connection"
852
  msgstr "Tilkobling til Cerber Lab"
853
 
854
- #: ../settings.php:96
855
  msgid "Send malicious IP addresses to the Cerber Lab"
856
  msgstr "Send ondsinnede IP-adresser til Cerber Lab"
857
 
858
- #: ../settings.php:97
859
  msgid "Cerber Lab protocol"
860
  msgstr "Cerber Lab protokoll"
861
 
862
- #: ../settings.php:151 ../settings.php:176
863
  msgid "Registration form"
864
  msgstr "Registreringsskjema"
865
 
866
- #: ../settings.php:177
867
  msgid "Enable reCAPTCHA for WooCommerce registration form"
868
  msgstr "Slå på reCAPTCHA for WooCommerces registreringsskjema"
869
 
870
- #: ../settings.php:179
871
  msgid "Enable reCAPTCHA for WordPress lost password form"
872
  msgstr "Slå på reCAPTCHA for WordPress' skjema for mistet passord"
873
 
874
- #: ../settings.php:180
875
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
876
  msgstr "Slå på reCAPTCHA for WooCommerce mistet passord-skjema"
877
 
878
- #: ../settings.php:183
879
  msgid "Enable reCAPTCHA for WooCommerce login form"
880
  msgstr "Slå på reCAPTCHA for WooCommerce innloggings-skjema"
881
 
882
- #: ../common.php:641
883
  msgid "Request to the Google reCAPTCHA service failed"
884
  msgstr "Forespørsel til Googles reCAPTCHA-tjeneste mislyktes"
885
 
886
- #: ../dashboard.php:1408 ../dashboard.php:1438
887
  msgid "View all"
888
  msgstr "Se alle"
889
 
890
- #: ../dashboard.php:1439
891
  msgid "Recently locked out IP addresses"
892
  msgstr "Nylig utestengte IP-adresser"
893
 
894
- #: ../cerber-lab.php:695
895
  msgid "OK, nail them all"
896
  msgstr "OK, ta alle sammen"
897
 
898
- #: ../cerber-lab.php:696
899
  msgid "NO, maybe later"
900
  msgstr "NEI, kanskje senere"
901
 
902
- #: ../dashboard.php:990 ../dashboard.php:1225 ../dashboard.php:1757 ../settings.
903
- #: php:350
904
  msgid "Dashboard"
905
  msgstr "Kontrollpanel"
906
 
907
- #: ../cerber-lab.php:693
908
  msgid "Want to make WP Cerber even more powerful?"
909
  msgstr "Vil du gjøre WP Cerber enda sterkere?"
910
 
911
- #: ../cerber-lab.php:694
912
  msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
913
  msgstr "Tillat at WP Cerber sender utestengde ondsinnede IP-adresser til Cerber Lab. Dette hjelper plugin-teamet å utvikle nye algoritmer som vil beskytte WordPress mot nye trusler og botnett som dukker opp hver dag. Du kan slå av sendingen i plugin-innstillingene når som helst."
914
 
915
- #: ../dashboard.php:491
916
  msgid "IP address"
917
  msgstr "IP-adresse"
918
 
919
- #: ../dashboard.php:491
920
  msgid "User login"
921
  msgstr "Brukernavn"
922
 
923
- #: ../dashboard.php:491
924
  msgid "User ID"
925
  msgstr "Bruker-ID"
926
 
927
- #: ../dashboard.php:676
928
  msgid "Export"
929
  msgstr "Eksporter"
930
 
931
- #: ../dashboard.php:695
932
  msgid "Search for IP or username"
933
  msgstr "Søk etter IP eller brukernavn"
934
 
935
- #: ../dashboard.php:695
936
  msgid "Filter"
937
  msgstr "Filter"
938
 
939
- #: ../dashboard.php:990
940
  msgid "Cerber Dashboard"
941
  msgstr "Cerber-kontrollpanel"
942
 
943
- #: ../dashboard.php:1000
944
  msgid "Cerber tools"
945
  msgstr "Cerber-verktøy"
946
 
947
- #: ../dashboard.php:1667
948
  msgid "Subscribe"
949
  msgstr "Abbonér"
950
 
951
- #: ../dashboard.php:1668 ../cerber-tools.php:266
952
  msgid "Unsubscribe"
953
  msgstr "Avslutt abonnementet"
954
 
955
- #: ../dashboard.php:1696
956
  msgid "You've subscribed"
957
  msgstr "Du abbonerer"
958
 
959
- #: ../dashboard.php:1699
960
  msgid "You've unsubscribed"
961
  msgstr "Du har avsluttet abonnementet"
962
 
963
- #: ../wp-cerber.php:3218 ../wp-cerber.php:3219
964
  msgid "A new activity has been recorded"
965
  msgstr "En ny aktivitet har blitt registrert"
966
 
967
- #: ../wp-cerber.php:3684
968
  msgid "User"
969
  msgstr "Bruker"
970
 
971
- #: ../wp-cerber.php:3692
972
  msgid "Search string"
973
  msgstr "Søkeord"
974
 
975
- #: ../wp-cerber.php:3713
976
  msgid "To unsubscribe click here"
977
  msgstr "Klikk her for å avslutte abbonementet"
978
 
979
- #: ../settings.php:100
980
  msgid "Preferences"
981
  msgstr "Valg"
982
 
983
- #: ../settings.php:102
984
  msgid "Date format"
985
  msgstr "Datoformat"
986
 
987
- #: ../settings.php:102
988
  msgid "if empty, the default format %s will be used"
989
  msgstr "hvis blank, vil formatet %s bli brukt"
990
 
991
- #: ../settings.php:211
992
  msgid "Push notifications"
993
  msgstr "Push-varsler"
994
 
995
- #: ../settings.php:194
996
  msgid "Email notifications"
997
  msgstr "E-postvarsel"
998
 
999
- #: ../settings.php:201 ../settings.php:233 ../settings.php:282
1000
  msgid "Use comma to specify multiple values"
1001
  msgstr "Bruk komma for å skille mellom flere verdier"
1002
 
1003
- #: ../settings.php:218
1004
  msgid "All connected devices"
1005
  msgstr "Alle tilkoblede enheter"
1006
 
1007
- #: ../settings.php:219
1008
  msgid "No devices found"
1009
  msgstr "Ingen enheter funnet"
1010
 
1011
- #: ../settings.php:221
1012
  msgid "Not available"
1013
  msgstr "Ikke tilgjengelig"
1014
 
1015
- #: ../common.php:637
1016
  msgid "Password reset requested"
1017
  msgstr "Nullstilling av passord forespurt"
1018
 
1019
- #: ../common.php:692
1020
  msgid "Limit on failed reCAPTCHA verifications is reached"
1021
  msgstr "Grensen for mislykkede reCAPTCHA-verifiseringer er nådd"
1022
 
1023
- #: ../common.php:750
1024
  msgid "%s ago"
1025
  msgstr "%s siden"
1026
 
1027
- #: ../settings.php:74
1028
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
1029
  msgstr "Aktivér regler for begrensning av innloggingsforsøk for hvitlistede IP-adresser."
1030
 
1031
- #: ../settings.php:83
1032
  msgid "Display 404 page"
1033
  msgstr "Vis 404-siden"
1034
 
1035
- #: ../settings.php:174
1036
  msgid "Invisible reCAPTCHA"
1037
  msgstr "Usynlig reCAPTCHA"
1038
 
1039
- #: ../settings.php:174
1040
  msgid "Enable invisible reCAPTCHA"
1041
  msgstr "Aktivér usynlig reCAPTCHA"
1042
 
1043
- #: ../settings.php:174
1044
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
1045
  msgstr "(ikke aktivér denne med mindre du legger inn sidenøkkel og hemmelig nøkkel for den usynlige versjonen)"
1046
 
1047
- #: ../settings.php:185
1048
  msgid "Enable reCAPTCHA for WordPress comment form"
1049
  msgstr "Aktivér reCAPTCHA for WordPress' kommentarskjema"
1050
 
1051
- #: ../settings.php:186
1052
  msgid "Disable reCAPTCHA for logged in users"
1053
  msgstr "Deaktivér reCAPTCHA for innloggede brukere"
1054
 
1055
- #: ../settings.php:188
1056
  msgid "Limit attempts"
1057
  msgstr "Begrens forsøk"
1058
 
1059
- #: ../settings.php:188
1060
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1061
  msgstr "Steng ute IP-adresser for %s minutter etter %s mislykkede forsøk på %s minutter"
1062
 
1063
- #: ../settings.php:319
1064
  msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
1065
  msgstr "I vakttårnsmodus kan ingen andre enn hvitlistede IP-adresser logge seg inn. Allerede innloggede brukere vil ikke bli påvirket."
1066
 
1067
- #: ../dashboard.php:491 ../dashboard.php:656
1068
  msgid "Event"
1069
  msgstr "Hendelse"
1070
 
1071
- #: ../common.php:137
1072
  msgid "Spam comments denied"
1073
  msgstr "Spam-kommentarer nektet"
1074
 
1075
- #: ../common.php:139
1076
  msgid "Malicious IP addresses detected"
1077
  msgstr "Ondsinnede IP-adresser oppdaget"
1078
 
1079
- #: ../common.php:140
1080
  msgid "Lockouts occurred"
1081
  msgstr "Utestengelser"
1082
 
1083
- #: ../dashboard.php:1417
1084
  msgid "All suspicious activity"
1085
  msgstr "All mistenkelig aktivitet"
1086
 
1087
- #: ../wp-cerber.php:1045 ../wp-cerber.php:1051 ../wp-cerber.php:1067 ../wp-cerber.
1088
- #: php:1074
1089
  msgid "You are not allowed to register."
1090
  msgstr "Du har ikke tilgang til å registrere deg"
1091
 
1092
- #: ../common.php:622
1093
  msgid "Spam comment denied"
1094
  msgstr "Spam-kommentar nektet"
1095
 
1096
- #: ../common.php:647
1097
  msgid "Attempt to log in denied"
1098
  msgstr "Innloggingsforsøk nektet"
1099
 
1100
- #: ../common.php:648
1101
  msgid "Attempt to register denied"
1102
  msgstr "Registreringsforsøk nektet"
1103
 
1104
- #: ../common.php:134
1105
  msgid "Malicious activities mitigated"
1106
  msgstr "Mistenkelige aktiviteter redusert"
1107
 
1108
- #: ../dashboard.php:999
1109
  msgid "Cerber antispam settings"
1110
  msgstr "Cerber antispam-innstillinger"
1111
 
1112
- #: ../dashboard.php:999 ../dashboard.php:1228 ../wp-cerber.php:3908 ../settings.
1113
- #: php:185
1114
  msgid "Antispam"
1115
  msgstr "Antispam"
1116
 
1117
- #: ../settings.php:149
1118
  msgid "Cerber antispam engine"
1119
  msgstr "Cerber antispam-system"
1120
 
1121
- #: ../settings.php:150
1122
  msgid "Comment form"
1123
  msgstr "Kommentarskjema"
1124
 
1125
- #: ../settings.php:150
1126
  msgid "Protect comment form with bot detection engine"
1127
  msgstr "Beskytt kommentarskjema med system for bot-oppdagelse"
1128
 
1129
- #: ../settings.php:151
1130
  msgid "Protect registration form with bot detection engine"
1131
  msgstr "Beskytt registreringssskjema med system for bot-oppdagelse"
1132
 
@@ -1142,63 +1144,63 @@ msgstr "Diagnose"
1142
  msgid "License"
1143
  msgstr "Lisens"
1144
 
1145
- #: ../cerber-tools.php:336
1146
  msgid "Antispam and bot detection settings"
1147
  msgstr "Innstillinger for antispam og bot-oppdagelse"
1148
 
1149
- #: ../wp-cerber.php:1310
1150
  msgid "Sorry, human verification failed."
1151
  msgstr "Beklager, menneskeverifisering feilet"
1152
 
1153
- #: ../common.php:693
1154
  msgid "Bot activity is detected"
1155
  msgstr "Bot-aktivitet er oppdaget"
1156
 
1157
- #: ../settings.php:166
1158
  msgid "Comment processing"
1159
  msgstr "Behandler kommentaren"
1160
 
1161
- #: ../settings.php:167
1162
  msgid "If a spam comment detected"
1163
  msgstr "Hvis en spam-kommentar oppdages"
1164
 
1165
- #: ../settings.php:168
1166
  msgid "Trash spam comments"
1167
  msgstr "Kast spam-kommentarer i papirkurven"
1168
 
1169
- #: ../settings.php:168
1170
  msgid "Move spam comments to trash after"
1171
  msgstr "Flytt spam-kommentarer til papirkurven etter"
1172
 
1173
- #: ../common.php:623
1174
  msgid "Spam form submission denied"
1175
  msgstr "Innsending av skjema nektet pga. spam"
1176
 
1177
- #: ../settings.php:152
1178
  msgid "Other forms"
1179
  msgstr "Andre skjemaer"
1180
 
1181
- #: ../settings.php:152
1182
  msgid "Protect all forms on the website with bot detection engine"
1183
  msgstr "Beskytt alle skjemaer på websiden med systemet for bot-oppdagelse"
1184
 
1185
- #: ../settings.php:154
1186
  msgid "Adjust antispam engine"
1187
  msgstr "Justér antispam-systemet"
1188
 
1189
- #: ../settings.php:155
1190
  msgid "Safe mode"
1191
  msgstr "Sikkermodus"
1192
 
1193
- #: ../settings.php:155
1194
  msgid "Use less restrictive policies (allow AJAX)"
1195
  msgstr "Bruk mindre restriktive regler (tillat AJAX)"
1196
 
1197
- #: ../dashboard.php:2812 ../settings.php:156
1198
  msgid "Logged in users"
1199
  msgstr "Innloggede brukere"
1200
 
1201
- #: ../settings.php:156
1202
  msgid "Disable bot detection engine for logged in users"
1203
  msgstr "Deaktivér systemet for bot-oppdagelse for innloggede brukere"
1204
 
@@ -1207,57 +1209,57 @@ msgstr "Deaktivér systemet for bot-oppdagelse for innloggede brukere"
1207
  msgid "WP Cerber Security & Antispam"
1208
  msgstr "WP Cerber Sikkerhet og Antispam"
1209
 
1210
- #: ../dashboard.php:95 ../dashboard.php:654
1211
  msgid "Country"
1212
  msgstr "Land"
1213
 
1214
- #: ../dashboard.php:686
1215
  msgid "All events"
1216
  msgstr "Alle hendelser"
1217
 
1218
- #: ../dashboard.php:996
1219
  msgid "Cerber Security Rules"
1220
  msgstr "Cerber sikkerhetsregler"
1221
 
1222
- #: ../dashboard.php:996 ../dashboard.php:2136
1223
  msgid "Security Rules"
1224
  msgstr "Sikkerhetsregler"
1225
 
1226
- #: ../dashboard.php:1073
1227
  msgid "Failed login attempts"
1228
  msgstr "Mislykkede innloggingsforsøk"
1229
 
1230
- #: ../dashboard.php:955 ../dashboard.php:1074
1231
  msgid "Registered"
1232
  msgstr "Registrert"
1233
 
1234
- #: ../dashboard.php:1141
1235
  msgid "You"
1236
  msgstr "Deg"
1237
 
1238
- #: ../common.php:138
1239
  msgid "Spam form submissions denied"
1240
  msgstr "Innsending av skjema nektet pga. spam"
1241
 
1242
- #: ../dashboard.php:1474 ../wp-cerber.php:3208 ../wp-cerber.php:3901
1243
  msgid "Getting Started Guide"
1244
  msgstr "Hurtigstartsguide"
1245
 
1246
- #: ../dashboard.php:2141
1247
  msgid "Countries"
1248
  msgstr "Land"
1249
 
1250
- #: ../dashboard.php:2204
1251
  msgid "Permitted for one country"
1252
  msgid_plural "Permitted for %d countries"
1253
  msgstr[0] "Tillatt for ett land"
1254
  msgstr[1] "Tillatt for %s land"
1255
 
1256
- #: ../dashboard.php:2215
1257
  msgid "No rule"
1258
  msgstr "Ingen regel"
1259
 
1260
- #: ../dashboard.php:2427
1261
  msgid "Security rules have been updated"
1262
  msgstr "Sikkerhetsreglene har blitt oppdatert"
1263
 
@@ -1266,224 +1268,224 @@ msgstr "Sikkerhetsreglene har blitt oppdatert"
1266
  msgid "https://wpcerber.com"
1267
  msgstr "https://wpcerber.com"
1268
 
1269
- #: ../common.php:624
1270
  msgid "Form submission denied"
1271
  msgstr "Innsending av skjema nektet"
1272
 
1273
- #: ../common.php:625
1274
  msgid "Comment denied"
1275
  msgstr "Kommentar nektet"
1276
 
1277
- #: ../common.php:651
1278
  msgid "Request to REST API denied"
1279
  msgstr "Forespørsel til REST API nektet"
1280
 
1281
- #: ../common.php:652
1282
  msgid "XML-RPC request denied"
1283
  msgstr "Forespørsel til XML-RPC nektet"
1284
 
1285
- #: ../common.php:656
1286
  msgid "Bot detected"
1287
  msgstr "Bot oppdaget"
1288
 
1289
- #: ../common.php:657
1290
  msgid "Citadel mode is active"
1291
  msgstr "Vakttårnsmodus er aktiv"
1292
 
1293
- #: ../common.php:662
1294
  msgid "Malicious activity detected"
1295
  msgstr "Mistenkelig aktivitet oppdaget"
1296
 
1297
- #: ../common.php:663
1298
  msgid "Blocked by country rule"
1299
  msgstr "Blokkert av land-regel"
1300
 
1301
- #: ../common.php:664
1302
  msgid "Limit reached"
1303
  msgstr "Grensen er nådd"
1304
 
1305
- #: ../common.php:665
1306
  msgid "Multiple suspicious activities"
1307
  msgstr "Flere mistenkelige aktiviteter"
1308
 
1309
- #: ../common.php:694
1310
  msgid "Multiple suspicious activities were detected"
1311
  msgstr "Flere mistenkelige aktiviteter ble oppdaget"
1312
 
1313
- #: ../settings.php:110
1314
  msgid "Block access to user pages like /?author=n and user data via REST API"
1315
  msgstr "Blokkér tilgang til brukersider som /?author=n og brukerdata via REST API"
1316
 
1317
- #: ../settings.php:113
1318
  msgid "Block access to the WordPress REST API except the following"
1319
  msgstr "Blokkér tilgang til WordPress' REST API, bortsett fra følgende"
1320
 
1321
- #: ../settings.php:114
1322
  msgid "Allow REST API for logged in users"
1323
  msgstr "Tillat REST API for innloggede brukere"
1324
 
1325
- #: ../settings.php:121
1326
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
1327
  msgstr "Spesifisér REST API navneområder som skal tillates når REST API er deaktivert. En string per linje."
1328
 
1329
- #: ../settings.php:132
1330
  msgid "Registration limit"
1331
  msgstr "Grense for registreringer"
1332
 
1333
- #: ../settings.php:142
1334
  msgid "Sort users in dashboard"
1335
  msgstr "Sorter brukere i kontrollpanelet"
1336
 
1337
- #: ../settings.php:142
1338
  msgid "by date of registration"
1339
  msgstr "etter registreringsdato"
1340
 
1341
- #: ../settings.php:157
1342
  msgid "Query whitelist"
1343
  msgstr "Forespør hvitliste"
1344
 
1345
- #: ../settings.php:482 ../settings.php:604
1346
  msgid "%s allowed registrations in %s minutes from one IP"
1347
  msgstr "%s tillatte registreringer på %s minutter fra én IP-adresse"
1348
 
1349
- #: ../dashboard.php:2271
1350
  msgid "Start typing here to find a country"
1351
  msgstr "Begynn å skrive her for å finne et land"
1352
 
1353
- #: ../dashboard.php:2354
1354
  msgid "Click on a country name to add it to the list of selected countries"
1355
  msgstr "Klikk på et land for å legge det til listen over valgte land"
1356
 
1357
- #: ../dashboard.php:2378
1358
  msgid "Submit forms"
1359
  msgstr "Send inn skjemaer"
1360
 
1361
- #: ../dashboard.php:2379
1362
  msgid "Post comments"
1363
  msgstr "Publisér kommentarer"
1364
 
1365
- #: ../dashboard.php:2380
1366
  msgid "Log in to the website"
1367
  msgstr "Logg inn på websiden"
1368
 
1369
- #: ../dashboard.php:2381
1370
  msgid "Register on the website"
1371
  msgstr "Registrer på websiden"
1372
 
1373
- #: ../dashboard.php:2382
1374
  msgid "Use XML-RPC"
1375
  msgstr "Bruk XML-RPC"
1376
 
1377
- #: ../dashboard.php:2383
1378
  msgid "Use REST API"
1379
  msgstr "Bruk REST API"
1380
 
1381
- #: ../settings.php:167
1382
  msgid "Deny it completely"
1383
  msgstr "Nekt det fullstendig"
1384
 
1385
- #: ../settings.php:167
1386
  msgid "Mark it as spam"
1387
  msgstr "Marker det som spam"
1388
 
1389
- #: ../dashboard.php:1402
1390
  msgid "in the last 24 hours"
1391
  msgstr "i løpet av de siste 24 timer"
1392
 
1393
- #: ../dashboard.php:1758
1394
  msgid "Main settings"
1395
  msgstr "Hovedinnstillinger"
1396
 
1397
- #: ../settings.php:225
1398
  msgid "Weekly reports"
1399
  msgstr "Ukentlige rapporter"
1400
 
1401
- #: ../settings.php:701
1402
  msgid "Sunday"
1403
  msgstr "Søndag"
1404
 
1405
- #: ../settings.php:702
1406
  msgid "Monday"
1407
  msgstr "Mandag"
1408
 
1409
- #: ../settings.php:703
1410
  msgid "Tuesday"
1411
  msgstr "Tirsdag"
1412
 
1413
- #: ../settings.php:704
1414
  msgid "Wednesday"
1415
  msgstr "Onsdag"
1416
 
1417
- #: ../settings.php:705
1418
  msgid "Thursday"
1419
  msgstr "Torsdag"
1420
 
1421
- #: ../settings.php:706
1422
  msgid "Friday"
1423
  msgstr "Fredag"
1424
 
1425
- #: ../settings.php:707
1426
  msgid "Saturday"
1427
  msgstr "Lørdag"
1428
 
1429
- #: ../settings.php:760 ../settings.php:761
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 "Hvis du bruker en plugin for caching, må du legge din nye innloggings-URL til listen over sider som ikke skal caches."
1432
 
1433
  #. translators: preposition of time
1434
- #: ../settings.php:717
1435
  msgctxt "preposition of time"
1436
  msgid "at"
1437
  msgstr "klokken"
1438
 
1439
- #: ../wp-cerber.php:3224
1440
  msgid "Weekly report"
1441
  msgstr "Ukentlig rapport"
1442
 
1443
- #: ../wp-cerber.php:3227
1444
  msgid "To change reporting settings visit"
1445
  msgstr "For å endre rapporteringsinnstillingene, besøk"
1446
 
1447
- #: ../wp-cerber.php:3253
1448
  msgid "Your login page:"
1449
  msgstr "Din innloggingsside"
1450
 
1451
- #: ../wp-cerber.php:3257
1452
  msgid "Your license is valid until"
1453
  msgstr "Din lisens er gyldig inntil"
1454
 
1455
- #: ../wp-cerber.php:3370
1456
  msgid "Activity details"
1457
  msgstr "Aktivitetsdetaljer"
1458
 
1459
- #: ../settings.php:733
1460
  msgid "Click to send now"
1461
  msgstr "Klikk for å sende nå"
1462
 
1463
- #: ../wp-cerber.php:707
1464
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1465
  msgstr "> > > WP Cerber-oversetter? For å få en gratis PRO-lisens, legg igjen din kontaktinfo her: https://wpcerber.com/contact"
1466
 
1467
- #: ../dashboard.php:380
1468
  msgid "Email has been sent to"
1469
  msgstr "E-post har blitt sendt til"
1470
 
1471
- #: ../dashboard.php:383
1472
  msgid "Unable to send email to"
1473
  msgstr "Kunne ikke sende e-post til"
1474
 
1475
- #: ../dashboard.php:2207
1476
  msgid "Not permitted for one country"
1477
  msgid_plural "Not permitted for %d countries"
1478
  msgstr[0] "Ikke tillatt for ett land"
1479
  msgstr[1] "Ikke tillatt for %d land"
1480
 
1481
- #: ../dashboard.php:2358
1482
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1483
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1484
  msgstr "Valgte land er tillatt å %s, andre land er ikke tillatt å"
1485
 
1486
- #: ../dashboard.php:2361
1487
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1488
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1489
  msgstr "Valgte land er ikke tillatt å %s, andre land er tillatt å"
@@ -1493,195 +1495,306 @@ msgstr "Valgte land er ikke tillatt å %s, andre land er tillatt å"
1493
  msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1494
  msgstr "Beskytter siden mot brute force-angrep, botter og hackere. Antispam-beskyttelse via Cerbers eget system og reCAPTCHA. Omfattende kontroll av brukeraktivitet. Begrens innlogging etter IP-adresselister. Begrens innloggingsforsøk. Finn ut mer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1495
 
1496
- #: ../wp-cerber.php:3358
1497
  msgid "Weekly Report"
1498
  msgstr "Ukentlig rapport"
1499
 
1500
- #: ../settings.php:83
1501
  msgid "Use 404 template from the active theme"
1502
  msgstr "Bruk malen for 404-siden fra det aktive temaet."
1503
 
1504
- #: ../settings.php:83
1505
  msgid "Display simple 404 page"
1506
  msgstr "Vis en enkel 404-side"
1507
 
1508
- #: ../settings.php:163
1509
  msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
1510
  msgstr "Skriv inn en del av en spørringsstreng for å ekskludere en forespørsel fra undersøkelse av systemet. En feorespørsel per linje."
1511
 
1512
- #: ../settings.php:238
1513
  msgid "if empty, email from notification settings will be used"
1514
  msgstr "hvis feltet er tomt, vil e-postadressen fra varselinnstillingene bli brukt"
1515
 
1516
- #: ../settings.php:226
1517
  msgid "Enable reporting"
1518
  msgstr "Aktivér rapportering"
1519
 
1520
- #: ../wp-cerber.php:3280
1521
  msgid "Your last sign-in was %s from %s"
1522
  msgstr "Din siste innlogging var %s fra %s"
1523
 
1524
- #: ../wp-cerber.php:3384
1525
  msgid "Attempts to log in with non-existent username"
1526
  msgstr "Forsøk på å logge inn med ikke-eksisterende brukernavn"
1527
 
1528
- #: ../dashboard.php:169
1529
  msgid "IP address, IPv4 address range or subnet"
1530
  msgstr "IP-adresse, IPv4-adresseområde eller subnet"
1531
 
1532
- #: ../dashboard.php:171
1533
  msgid "Optional comment for this entry"
1534
  msgstr "Valgfri kommentar for denne oppføringen"
1535
 
1536
- #: ../dashboard.php:212
1537
  msgid "You cannot add your IP address or network"
1538
  msgstr "Du kan ikke legge til din IP-adresse eller nettverk"
1539
 
1540
- #: ../cerber-news.php:141
1541
  msgid "Cool!"
1542
  msgstr "Kult!"
1543
 
1544
- #: ../settings.php:139
1545
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1546
  msgstr "For å spesifisere et REGEX-mønster, pakk mønsteret inn i to skråstreker."
1547
 
1548
- #: ../dashboard.php:992
1549
  msgid "Cerber Traffic Inspector"
1550
  msgstr "Cerber Trafikkinspektør"
1551
 
1552
- #: ../dashboard.php:992 ../dashboard.php:1211 ../dashboard.php:2476
1553
  msgid "Traffic Inspector"
1554
  msgstr "Trafikkinspektør"
1555
 
1556
- #: ../dashboard.php:1227
1557
  msgid "Traffic"
1558
  msgstr "Trafikk"
1559
 
1560
- #: ../dashboard.php:2481
1561
  msgid "Live traffic"
1562
  msgstr "Live trafikk"
1563
 
1564
- #: ../dashboard.php:2783
1565
  msgid "Request"
1566
  msgstr "Forespørsel"
1567
 
1568
- #: ../dashboard.php:2785
1569
  msgid "Host Info"
1570
  msgstr "Vertsinformasjon"
1571
 
1572
- #: ../dashboard.php:2786
1573
  msgid "User Agent"
1574
  msgstr "Brukeragent"
1575
 
1576
- #: ../dashboard.php:2811
1577
  msgid "All requests"
1578
  msgstr "Alle forespørsler"
1579
 
1580
- #: ../dashboard.php:2813
1581
  msgid "Not logged in visitors"
1582
  msgstr "Ikke-innloggede besøkende"
1583
 
1584
- #: ../dashboard.php:2814
1585
  msgid "Form submissions"
1586
  msgstr "Innsendte skjema"
1587
 
1588
- #: ../dashboard.php:2815
1589
  msgid "Page Not Found"
1590
  msgstr "Siden ikke funnet"
1591
 
1592
- #: ../dashboard.php:2816
1593
  msgid "REST API"
1594
  msgstr "REST API"
1595
 
1596
- #: ../dashboard.php:2817
1597
  msgid "XML-RPC"
1598
  msgstr "XML-RPC"
1599
 
1600
- #: ../dashboard.php:2821
1601
  msgid "Longer than"
1602
  msgstr "Lengre enn"
1603
 
1604
- #: ../dashboard.php:2834
1605
  msgid "Refresh"
1606
  msgstr "Oppdater"
1607
 
1608
- #: ../common.php:101
1609
  msgid "Check for requests"
1610
  msgstr "Se etter forespørsler"
1611
 
1612
- #: ../common.php:910
1613
  msgid "Not specified"
1614
  msgstr "Ikke spesifisert"
1615
 
1616
- #: ../settings.php:254
1617
  msgid "Logging mode"
1618
  msgstr "Loggføringsmodus"
1619
 
1620
- #: ../settings.php:260
1621
  msgid "Logging disabled"
1622
  msgstr "Loggføring deaktivert"
1623
 
1624
- #: ../settings.php:261
1625
  msgid "Smart"
1626
  msgstr "Smart"
1627
 
1628
- #: ../settings.php:262
1629
  msgid "All traffic"
1630
  msgstr "All trafikk"
1631
 
1632
- #: ../settings.php:266
1633
  msgid "Ignore crawlers"
1634
  msgstr "Ingrorer søkeroboter"
1635
 
1636
- #: ../settings.php:276
1637
  msgid "Mask these form fields"
1638
  msgstr "Maskér disse skjemafeltene"
1639
 
1640
- #: ../settings.php:291
1641
  msgid "milliseconds"
1642
  msgstr "millisekunder"
1643
 
1644
- #: ../settings.php:246
1645
  msgid "Inspection"
1646
  msgstr "Inspeksjon"
1647
 
1648
- #: ../settings.php:247
1649
  msgid "Enable traffic inspection"
1650
  msgstr "Aktiver trafikkinspeksjon"
1651
 
1652
- #: ../settings.php:253
1653
  msgid "Logging"
1654
  msgstr "Loggføring"
1655
 
1656
- #: ../settings.php:271
1657
  msgid "Save request fields"
1658
  msgstr "Lagre forespørselfelter"
1659
 
1660
- #: ../settings.php:286
1661
  msgid "Page generation time threshold"
1662
  msgstr "Tidsgrense for sidegenerering"
1663
 
1664
- #: ../dashboard.php:2803
1665
  msgid "No requests have been logged."
1666
  msgstr "Ingen forespørsler har blitt loggført"
1667
 
1668
- #: ../dashboard.php:1210
1669
  msgid "enabled"
1670
  msgstr "aktivert"
1671
 
1672
- #: ../dashboard.php:1214
1673
  msgid "no connection"
1674
  msgstr "ingen forbindelse"
1675
 
1676
- #: ../dashboard.php:3050
1677
  msgid "Advanced search"
1678
  msgstr "Avansert søk"
1679
 
1680
- #: ../dashboard.php:948
1681
  msgid "Last seen"
1682
  msgstr "Sist sett"
1683
 
1684
- #: ../common.php:649 ../common.php:695
1685
  msgid "Probing for vulnerable PHP code"
1686
  msgstr "Søker etter sårbar PHP-kode"
1687
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  "Language: nb\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
 
11
+ #: ../settings.php:73
12
  msgid "Limit login attempts"
13
  msgstr "Begrens innloggingsforsøk"
14
 
15
+ #: ../settings.php:74
16
  msgid "Attempts"
17
  msgstr "Forsøk"
18
 
19
+ #: ../settings.php:75
20
  msgid "Lockout duration"
21
  msgstr "Varighet for utestengelse"
22
 
23
+ #: ../settings.php:75 ../settings.php:101
24
  msgid "minutes"
25
  msgstr "minutter"
26
 
27
+ #: ../settings.php:76
28
  msgid "Aggressive lockout"
29
  msgstr "Aggressiv utestengelse"
30
 
31
+ #: ../settings.php:79
32
  msgid "Site connection"
33
  msgstr "Sidetilkobling"
34
 
35
+ #: ../settings.php:81
36
  msgid "Proactive security rules"
37
  msgstr "Proaktive sikkerhetsregler"
38
 
39
+ #: ../settings.php:82
40
  msgid "Block subnet"
41
  msgstr "Blokkér subnet"
42
 
43
+ #: ../settings.php:85
44
  msgid "Request wp-login.php"
45
  msgstr "Kobling til wp-login.php"
46
 
47
+ #: ../settings.php:85
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
 
51
+ #: ../settings.php:84
52
  msgid "Redirect dashboard requests"
53
  msgstr "Omdiriger kontrollpanel-koblinger"
54
 
55
+ #: ../settings.php:88
56
  msgid "Custom login page"
57
  msgstr "Egendefinert innloggingsside"
58
 
59
+ #: ../settings.php:89
60
  msgid "Custom login URL"
61
  msgstr "Egendefinert URL for innlogging"
62
 
63
+ #: ../settings.php:95
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:97
68
  msgid "Disable wp-login.php"
69
  msgstr "Deaktiver wp-login.php"
70
 
71
+ #: ../settings.php:97
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:1221 ../settings.php:99
76
  msgid "Citadel mode"
77
  msgstr "Vakttårnsmodus"
78
 
79
+ #: ../settings.php:100
80
  msgid "Threshold"
81
  msgstr "Terskel"
82
 
83
+ #: ../settings.php:101
84
  msgid "Duration"
85
  msgstr "Varighet"
86
 
87
+ #: ../cerber-load.php:4100 ../settings.php:78 ../settings.php:102 ../settings.php:
88
+ #: 411
89
  msgid "Notifications"
90
  msgstr "Varsling"
91
 
92
+ #: ../settings.php:102
93
  msgid "Send notification to admin email"
94
  msgstr "Send varsel til admins e-postadresse"
95
 
96
+ #: ../cerber-load.php:4097 ../settings.php:404 ../cerber-tools.php:92 ../cerber-
97
+ #: tools.php:101 ../cerber-tools.php:182
98
  msgid "Access Lists"
99
  msgstr "Tilgangsliste"
100
 
101
+ #: ../dashboard.php:1239 ../dashboard.php:1467 ../cerber-load.php:3844 ..
102
+ #: /settings.php:104 ../settings.php:395
103
  msgid "Activity"
104
  msgstr "Aktivitet"
105
 
106
+ #: ../settings.php:399
107
  msgid "Lockouts"
108
  msgstr "Utestengelser"
109
 
110
+ #: ../settings.php:520 ../settings.php:642
111
  msgid "%s allowed retries in %s minutes"
112
  msgstr "%s tillatte forsøk på %s minutter"
113
 
114
+ #: ../settings.php:542 ../settings.php:664
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:129 ../dashboard.php:695 ../dashboard.php:2848 ../cerber-load.
119
+ #: php:3853
120
  msgid "IP"
121
  msgstr "IP-adresse"
122
 
123
+ #: ../dashboard.php:534 ../dashboard.php:698 ../dashboard.php:2846
124
  msgid "Date"
125
  msgstr "Dato"
126
 
127
+ #: ../dashboard.php:534 ../dashboard.php:700 ../dashboard.php:2851
128
  msgid "Local User"
129
  msgstr "Lokal bruker"
130
 
131
+ #: ../dashboard.php:534 ../dashboard.php:701 ../cerber-load.php:3861
132
  msgid "Username used"
133
  msgstr "Brukernavn brukt"
134
 
135
+ #: ../dashboard.php:148
136
  msgid "Showing last %d records from %d"
137
  msgstr "Viser siste %d oppføringer fra %d"
138
 
139
+ #: ../common.php:798
140
  msgid "Logged in"
141
  msgstr "Logget inn"
142
 
143
+ #: ../common.php:799
144
  msgid "Logged out"
145
  msgstr "Logget ut"
146
 
147
+ #: ../common.php:800
148
  msgid "Login failed"
149
  msgstr "Innlogging feilet"
150
 
151
+ #: ../common.php:803
152
  msgid "IP blocked"
153
  msgstr "IP blokkert"
154
 
155
+ #: ../common.php:804
156
  msgid "Subnet blocked"
157
  msgstr "Subnet blokkert"
158
 
159
+ #: ../common.php:806
160
  msgid "Citadel activated!"
161
  msgstr "Vakttårn aktivert!"
162
 
163
+ #: ../dashboard.php:675 ../dashboard.php:879 ../dashboard.php:2684 ../common.php:
164
+ #: 845
165
  msgid "Locked out"
166
  msgstr "Utestengt"
167
 
168
+ #: ../common.php:846
169
  msgid "IP blacklisted"
170
  msgstr "IP svartelistet"
171
 
172
+ #: ../common.php:821
173
  msgid "Password changed"
174
  msgstr "Passord endret"
175
 
176
+ #: ../dashboard.php:122 ../dashboard.php:195
177
  msgid "Remove"
178
  msgstr "Fjern"
179
 
180
+ #: ../dashboard.php:425
181
  msgid "Lockout for %s was removed"
182
  msgstr "Utestengelse for %s ble fjernet"
183
 
184
+ #: ../dashboard.php:167 ../dashboard.php:670 ../dashboard.php:873 ../dashboard.
185
+ #: php:1219 ../dashboard.php:2679 ../cerber-load.php:4089 ../settings.php:77 ..
186
+ #: /settings.php:365
187
  msgid "White IP Access List"
188
  msgstr "Hvit IP-tilgangsliste"
189
 
190
+ #: ../dashboard.php:169 ../dashboard.php:671 ../dashboard.php:876 ../dashboard.
191
+ #: php:1220 ../dashboard.php:2680
192
  msgid "Black IP Access List"
193
  msgstr "Svart IP-tilgangsliste"
194
 
195
+ #: ../dashboard.php:201
196
  msgid "List is empty"
197
  msgstr "Listen er tom"
198
 
199
+ #: ../dashboard.php:238
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:252
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:3326
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:1625
212
  msgid "View Activity"
213
  msgstr "Se aktivitet"
214
 
215
+ #: ../dashboard.php:2530 ../cerber-tools.php:91 ../cerber-tools.php:100
216
  msgid "Settings"
217
  msgstr "Innstillinger"
218
 
219
+ #: ../dashboard.php:1082
220
  msgid "Last login"
221
  msgstr "Siste innlogging"
222
 
223
+ #: ../dashboard.php:1115 ../dashboard.php:1202
224
  msgid "Never"
225
  msgstr "Aldri"
226
 
227
+ #: ../dashboard.php:1513
228
  msgid "Are you sure?"
229
  msgstr "Er du sikker?"
230
 
231
+ #: ../dashboard.php:1307 ../settings.php:79
232
  msgid "My site is behind a reverse proxy"
233
  msgstr "Min side er bak en reverse proxy"
234
 
235
+ #: ../settings.php:83
236
  msgid "Non-existent users"
237
  msgstr "Ikke-eksisterende brukere"
238
 
239
+ #: ../settings.php:83
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:84
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:355
252
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
253
  msgstr "Vennligst "
254
 
255
+ #: ../settings.php:358
256
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
257
  msgstr "Vær forsiktig når du velger dette alternativet. Glemmer du din nye URL for innlogging, vil du ikke kunne logge deg inn."
258
 
259
+ #: ../cerber-load.php:4096 ../settings.php:401
260
  msgid "Main Settings"
261
  msgstr "Hovedinnstillinger"
262
 
263
+ #: ../dashboard.php:2531 ../settings.php:413 ../cerber-tools.php:51
264
  msgid "Help"
265
  msgstr "Hjelp"
266
 
267
+ #: ../settings.php:530 ../settings.php:652
268
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
269
  msgstr "Øk varigheten av utestengelser til %s timer etter %s utestengelser i løpet av de siste %s timer"
270
 
271
+ #: ../cerber-load.php:358
272
  msgid "You are not allowed to log in. Ask your administrator for assistance."
273
  msgstr "Du har ikke tillatelse til å logge inn. Spør din administrator om du trenger hjelp."
274
 
275
+ #: ../cerber-load.php:364
276
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
277
  msgstr "Du har nådd grensen for antall tillatte innloggingsforsøk. Vennligst prøv igjen om %d minutter."
278
 
279
+ #: ../cerber-load.php:383
280
  msgid "You have only one attempt remaining."
281
  msgid_plural "You have %d attempts remaining."
282
  msgstr[0] "Du har kun ett forsøk igjen."
283
  msgstr[1] "Du har %d forsøk igjen."
284
 
285
+ #: ../dashboard.php:723
286
  msgid "No activity has been logged."
287
  msgstr "Ingen aktivitet har blitt registrert."
288
 
289
+ #: ../dashboard.php:132
290
  msgid "Expires"
291
  msgstr "Utgår"
292
 
293
+ #: ../dashboard.php:154
294
  msgid "No lockouts at the moment. The sky is clear."
295
  msgstr "Ingen utestengelser akkurat nå. Kysten er klar."
296
 
297
+ #: ../dashboard.php:167
298
  msgid "These IPs will never be locked out"
299
  msgstr "Disse IP-er vil aldri bli utestengt"
300
 
301
+ #: ../dashboard.php:176
302
  msgid "Your IP"
303
  msgstr "Din IP"
304
 
305
+ #: ../cerber-load.php:3327
306
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
307
  msgstr "Siste mislykkede forsøk var %s fra IP %s med brukernavn %s."
308
 
309
+ #: ../cerber-load.php:4056
310
  msgid "Can't activate WP Cerber due to a database error."
311
  msgstr "Kunne ikke aktivere WP Cerber på grunn av en databasefeil."
312
 
313
+ #: ../settings.php:537 ../settings.php:659
314
  msgid "Notify admin if the number of active lockouts above"
315
  msgstr "Varsle administratoren om antallet aktive utestengelser overskrider"
316
 
317
+ #: ../settings.php:105 ../settings.php:179 ../settings.php:341
318
  msgid "days"
319
  msgstr "dager"
320
 
321
+ #: ../dashboard.php:1172
322
  msgid "Cerber Quick View"
323
  msgstr "Cerber hurtigvisning"
324
 
325
+ #: ../dashboard.php:150
326
  msgid "Hint"
327
  msgstr "Hint"
328
 
329
+ #: ../dashboard.php:150
330
  msgid "To view activity, click on the IP"
331
  msgstr "For å se aktivitet klikk på IP-en"
332
 
333
+ #: ../dashboard.php:194 ../dashboard.php:886 ../dashboard.php:913 ../dashboard.
334
+ #: php:1005
335
  msgid "Check for activity"
336
  msgstr "Sjekk etter aktivitet"
337
 
338
+ #: ../settings.php:82
339
  msgid "Always block entire subnet Class C of intruders IP"
340
  msgstr "Alltid blokkér hele subnet Class C av inntrengerens IP"
341
 
342
+ #: ../settings.php:102 ../settings.php:539 ../settings.php:661
343
  msgid "Click to send test"
344
  msgstr "Klikk for å sende test"
345
 
346
+ #: ../settings.php:814 ../settings.php:815
347
  msgid "Attention! You have changed the login URL! The new login URL is"
348
  msgstr "OBS! Du har endret innloggings-adressen. Din nye URL for innlogging er"
349
 
350
+ #: ../dashboard.php:1081
351
  msgid "Comments"
352
  msgstr "Kommentarer"
353
 
354
+ #: ../common.php:1078
355
  msgid "Update to version %s of WP Cerber"
356
  msgstr "Oppdatér til versjon %s av WP Cerber"
357
 
358
+ #: ../cerber-load.php:3328 ../cerber-load.php:3885
359
  msgid "View activity in dashboard"
360
  msgstr "Se aktivitet i kontrollpanelet"
361
 
362
+ #: ../cerber-load.php:3358
363
  msgid "Number of active lockouts"
364
  msgstr "Antall aktive utestengelser"
365
 
366
+ #: ../cerber-load.php:3362
367
  msgid "View lockouts in dashboard"
368
  msgstr "Se utestengelser i kontrollpanelet"
369
 
370
+ #: ../cerber-load.php:3444
371
  msgid "This message was sent by"
372
  msgstr "Denne meldingen ble sendt av"
373
 
374
+ #: ../dashboard.php:64 ../cerber-tools.php:43
375
  msgid "Tools"
376
  msgstr "Verktøy"
377
 
378
+ #: ../cerber-tools.php:88
379
  msgid "Export settings to the file"
380
  msgstr "Eksportér innstillinger til filen"
381
 
382
+ #: ../cerber-tools.php:89
383
  msgid "When you click the button below you will get a configuration file, which you can upload on another site."
384
  msgstr "Når du klikker knappen under, vil du få en konfigurasjonsfil som du kan laste opp på en annen side."
385
 
386
+ #: ../cerber-tools.php:90
387
  msgid "What do you want to export?"
388
  msgstr "Hva ønsker du å eksportere?"
389
 
390
+ #: ../cerber-tools.php:93
391
  msgid "Download file"
392
  msgstr "Last ned fil"
393
 
394
+ #: ../cerber-tools.php:95
395
  msgid "Import settings from the file"
396
  msgstr "Importér innstillinger fra filen"
397
 
398
+ #: ../cerber-tools.php:96
399
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
400
  msgstr "Når du klikker på knappen under, vil filen lastes opp og alle eksisterende innstillinger vil bli overskrevet."
401
 
402
+ #: ../cerber-tools.php:97
403
  msgid "Select file to import."
404
  msgstr "Velg fil å importere."
405
 
406
+ #: ../cerber-tools.php:97
407
  msgid "Maximum upload file size: %s."
408
  msgstr "Maksimum tillatte filstørrelse for opplasting: %s."
409
 
410
+ #: ../cerber-tools.php:100
411
  msgid "What do you want to import?"
412
  msgstr "Hva ønsker du å importere?"
413
 
414
+ #: ../cerber-tools.php:102
415
  msgid "Upload file"
416
  msgstr "Last opp fil"
417
 
418
+ #: ../cerber-tools.php:149
419
  msgid "No file was uploaded or file is corrupted"
420
  msgstr "Ingen fil ble lastet opp, eller er filen ødelagt"
421
 
422
+ #: ../cerber-tools.php:182
423
  msgid "Error while updating"
424
  msgstr "Feil under oppdatering"
425
 
426
+ #: ../cerber-tools.php:185
427
  msgid "Settings has imported successfully from"
428
  msgstr "Innstillinger ble importert fra"
429
 
430
+ #: ../cerber-tools.php:189
431
  msgid "Error while parsing file"
432
  msgstr "Feil under parsing av filen"
433
 
434
+ #: ../dashboard.php:130 ../dashboard.php:696
435
  msgid "Hostname"
436
  msgstr "Vertsnavn"
437
 
438
+ #: ../dashboard.php:391
439
  msgid "unknown"
440
  msgstr "ukjent"
441
 
442
+ #: ../settings.php:105 ../settings.php:337
443
  msgid "Keep records for"
444
  msgstr "Behold logger"
445
 
446
+ #: ../dashboard.php:1206 ../dashboard.php:1227
447
  msgid "active"
448
  msgstr "aktive"
449
 
450
+ #: ../dashboard.php:1206
451
  msgid "deactivate"
452
  msgstr "deaktiver"
453
 
454
+ #: ../dashboard.php:1208
455
  msgid "not active"
456
  msgstr "ikke aktive"
457
 
458
+ #: ../dashboard.php:1209 ../dashboard.php:1223
459
  msgid "disabled"
460
  msgstr "deaktivert"
461
 
462
+ #: ../dashboard.php:1214
463
  msgid "failed attempts"
464
  msgstr "mislykkede forsøk"
465
 
466
+ #: ../dashboard.php:1214 ../dashboard.php:1215
467
  msgid "in 24 hours"
468
  msgstr "på 24 timer"
469
 
470
+ #: ../dashboard.php:1214 ../dashboard.php:1215
471
  msgid "view all"
472
  msgstr "se alle"
473
 
474
+ #: ../dashboard.php:1215
475
  msgid "lockouts"
476
  msgstr "utestengelser"
477
 
478
+ #: ../dashboard.php:1217
479
  msgid "Lockouts at the moment"
480
  msgstr "Utestengelser akkurat nå"
481
 
482
+ #: ../dashboard.php:1218
483
  msgid "Last lockout"
484
  msgstr "Siste utestengelse"
485
 
486
+ #: ../dashboard.php:1219 ../dashboard.php:1220 ../dashboard.php:1796
487
  msgid "entry"
488
  msgid_plural "entries"
489
  msgstr[0] "oppføring"
490
  msgstr[1] "oppføringer"
491
 
492
+ #: ../dashboard.php:1508
493
  msgid "Confused about some settings?"
494
  msgstr "Usikker på noen innstillinger?"
495
 
496
+ #: ../dashboard.php:1509
497
  msgid "You can easily load default recommended settings using button below"
498
  msgstr "Du kan enkelt laste inn anbefalte standardinnstillinger via knappen under"
499
 
500
+ #: ../dashboard.php:1511
501
  msgid "Load default settings"
502
  msgstr "Last inn standardinnstillinger"
503
 
504
+ #: ../dashboard.php:1519
505
  msgid "doesn't affect Custom login URL and Access Lists"
506
  msgstr "påvirker ikke egendefinert innloggings-URL og tilgangslister"
507
 
508
+ #: ../common.php:1071 ../settings.php:221
509
  msgid "New version is available"
510
  msgstr "Ny versjon er tilgjengelig"
511
 
512
  #. Name of the plugin
513
+ #: ../dashboard.php:52 ../dashboard.php:76
514
  msgid "WP Cerber"
515
  msgstr "WP Cerber"
516
 
517
+ #: ../cerber-load.php:3302
518
  msgid "WP Cerber notify"
519
  msgstr "WP Cerber-varsling"
520
 
521
+ #: ../cerber-load.php:3324
522
  msgid "Citadel mode is activated"
523
  msgstr "Vakttårns-modus er aktivert"
524
 
525
+ #: ../cerber-load.php:3398
526
  msgid "New Custom login URL"
527
  msgstr "Ny egendefinert innloggings-URL"
528
 
529
+ #: ../cerber-load.php:4043
530
  msgid "The WP Cerber requires PHP %s or higher. You are running"
531
  msgstr "WP Cerber krever PHP versjon %s eller høyere. Du kjører"
532
 
533
+ #: ../cerber-load.php:4047
534
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
535
  msgstr "WP Cerber krever WordPress versjon %s eller høyere. Du kjører"
536
 
537
+ #: ../settings.php:108
538
  msgid "Use file"
539
  msgstr "Bruk fil"
540
 
541
+ #: ../settings.php:108
542
  msgid "Write failed login attempts to the file"
543
  msgstr "Skriv mislykkede innloggingsforsøk til filen"
544
 
545
+ #: ../dashboard.php:1624
546
  msgid "Deactivate"
547
  msgstr "Deaktivér"
548
 
549
+ #: ../dashboard.php:133 ../cerber-load.php:3360
550
  msgid "Reason"
551
  msgstr "Grunn"
552
 
553
+ #: ../dashboard.php:206
554
  msgid "Add IP to the list"
555
  msgstr "Legg IP til listen"
556
 
557
+ #: ../dashboard.php:932
558
  msgid "Add IP to the Black List"
559
  msgstr "Legg IP til svartelisten"
560
 
561
+ #: ../common.php:876
562
  msgid "Attempt to access"
563
  msgstr "Forsøk på å få tilgang til"
564
 
565
+ #: ../common.php:875
566
  msgid "Limit on login attempts is reached"
567
  msgstr "Grensen for innloggingsforsøk er nådd"
568
 
569
+ #: ../common.php:829 ../common.php:877
570
  msgid "Attempt to log in with non-existent username"
571
  msgstr "Forsøk på å logge inn med ikke-eksisterende brukernavn"
572
 
573
+ #: ../cerber-load.php:3359
574
  msgid "Last lockout was added: %s for IP %s"
575
  msgstr "Siste utestengelse ble lagt til: %s for IP %s"
576
 
577
+ #: ../cerber-load.php:4099 ../settings.php:406
578
  msgid "Hardening"
579
  msgstr "Forsterking"
580
 
581
+ #: ../dashboard.php:909
582
  msgid "Abuse email:"
583
  msgstr "Repportering av misbruk:"
584
 
585
+ #: ../settings.php:208 ../settings.php:243
586
  msgid "Email Address"
587
  msgstr "E-postadresse"
588
 
589
+ #: ../settings.php:217
590
  msgid "if empty, the admin email %s will be used"
591
  msgstr "Hvis tom, vil e-postadressen %s bli brukt"
592
 
593
+ #: ../settings.php:111
594
  msgid "Drill down IP"
595
  msgstr "Inspiser IP"
596
 
597
+ #: ../settings.php:111
598
  msgid "Retrieve extra WHOIS information for IP"
599
  msgstr "Hent ekstra WHOIS-informasjon for IP"
600
 
601
+ #: ../settings.php:119
602
  msgid "Hardening WordPress"
603
  msgstr "Forsterke WordPress"
604
 
605
+ #: ../settings.php:120
606
  msgid "Stop user enumeration"
607
  msgstr "Stopp opplisting av brukere"
608
 
609
+ #: ../settings.php:122
610
  msgid "Disable XML-RPC"
611
  msgstr "Deaktivér XML-RPC"
612
 
613
+ #: ../settings.php:122
614
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
615
  msgstr "Blokkér tilgang til XML-RPC-serveren (inkluderer Pingbacks og Trackbacks)"
616
 
617
+ #: ../settings.php:123
618
  msgid "Disable feeds"
619
  msgstr "Deaktiver feeds"
620
 
621
+ #: ../settings.php:123
622
  msgid "Block access to the RSS, Atom and RDF feeds"
623
  msgstr "Blokkér tilgang til RSS- Atom- og RDF-feeds"
624
 
625
+ #: ../settings.php:124
626
  msgid "Disable REST API"
627
  msgstr "Deaktivér REST API"
628
 
629
+ #: ../settings.php:365
630
  msgid "These settings do not affect hosts from the "
631
  msgstr "Disse innstillingene påvirker ikke verter fra "
632
 
633
+ #: ../settings.php:895 ../settings.php:907
634
  msgid "<strong>ERROR</strong>: please enter a valid email address."
635
  msgstr "<strong>FEIL</strong>: vennligst skriv inn en gyldig e-postadresse"
636
 
637
+ #: ../cerber-load.php:3390 ../cerber-load.php:4088
638
  msgid "WP Cerber is now active and has started protecting your site"
639
  msgstr "WP Cerber er nå aktiv og har begynt å beskytte siden din"
640
 
641
+ #: ../dashboard.php:134
642
  msgid "Action"
643
  msgstr "Handling"
644
 
645
+ #: ../dashboard.php:169
646
  msgid "Nobody can log in or register from these IPs"
647
  msgstr "Ingen kan logge inn eller registrere seg fra disse IP-ene"
648
 
649
+ #: ../dashboard.php:232 ../dashboard.php:244
650
  msgid "Incorrect IP address or IP range"
651
  msgstr "Feil IP-adresse eller IP-rekkevidde"
652
 
653
+ #: ../dashboard.php:441 ../dashboard.php:1640
654
  msgid "Settings saved"
655
  msgstr "Innstillingene er lagret"
656
 
657
+ #: ../dashboard.php:913
658
  msgid "Network:"
659
  msgstr "Nettverk:"
660
 
661
+ #: ../dashboard.php:927
662
  msgid "Add network to the Black List"
663
  msgstr "Legg nettverk til svartelisten"
664
 
665
+ #: ../dashboard.php:1623
666
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
667
  msgstr "Advarsel! Vakttårns-modus er nå aktiv. Ingen vil kunne logge inn."
668
 
669
+ #: ../dashboard.php:349 ../dashboard.php:2609 ../whois.php:221 ../whois.php:252 ..
670
+ #: /common.php:874 ../common.php:1153
671
  msgid "Unknown"
672
  msgstr "Ukjent"
673
 
676
  msgid "Gregory"
677
  msgstr "Gregory"
678
 
679
+ #: ../common.php:203 ../common.php:260 ../common.php:265 ../common.php:270 ..
680
+ #: /cerber-load.php:666 ../cerber-load.php:678 ../cerber-load.php:685 ../cerber-
681
+ #: load.php:926 ../cerber-load.php:1143 ../cerber-load.php:1149 ../cerber-load.
682
+ #: php:1154 ../cerber-load.php:1159 ../cerber-load.php:1165 ../cerber-load.php:
683
+ #: 1172 ../cerber-load.php:1272 ../cerber-load.php:1409 ../settings.php:793 ..
684
+ #: /settings.php:864
685
  msgid "ERROR:"
686
  msgstr "FEIL:"
687
 
688
+ #: ../cerber-load.php:695
689
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
690
  msgstr "Bekreftelse av menneskelighet feilet. Vennligst klikk den firkantige boksen i reCAPTCHA-blokken under."
691
 
692
+ #: ../cerber-load.php:938
693
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
694
  msgstr "<strong>FEIL</strong>: Passordet du skrev inn for brukernavnet %s er ugyldig."
695
 
696
+ #: ../cerber-load.php:1160
697
  msgid "Username is not allowed. Please choose another one."
698
  msgstr "Brukernavnet er ikke tillatt. Vennligst velg et annet brukernavn."
699
 
700
+ #: ../cerber-load.php:3353
701
  msgid "unspecified"
702
  msgstr "uspesifisert"
703
 
704
+ #: ../cerber-load.php:3356
705
  msgid "Number of lockouts is increasing"
706
  msgstr "Antallet utestengelser stiger"
707
 
708
+ #: ../cerber-load.php:3361
709
  msgid "View activity for this IP"
710
  msgstr "Se aktivitet for denne IP"
711
 
712
+ #: ../cerber-load.php:3365 ../cerber-load.php:3367
713
  msgid "A new version of WP Cerber is available to install"
714
  msgstr "En ny versjon av WP Cerber er tilgjengelig for installasjon"
715
 
716
+ #: ../cerber-load.php:3366
717
  msgid "Hi!"
718
  msgstr "Hei!"
719
 
720
+ #: ../cerber-load.php:3369 ../cerber-load.php:3380
721
  msgid "Website"
722
  msgstr "Webside"
723
 
724
+ #: ../cerber-load.php:3372 ../cerber-load.php:3373
725
  msgid "The WP Cerber security plugin has been deactivated"
726
  msgstr "Sikkerhetstillegget WP Cerber har blitt deaktivert"
727
 
728
+ #: ../cerber-load.php:3375
729
  msgid "Not logged in"
730
  msgstr "Ikke innlogget"
731
 
732
+ #: ../cerber-load.php:3381
733
  msgid "By user"
734
  msgstr "Etter brukernavn"
735
 
736
+ #: ../cerber-load.php:3382
737
  msgid "From IP address"
738
  msgstr "Fra IP-adresse"
739
 
740
+ #: ../cerber-load.php:3385
741
  msgid "From country"
742
  msgstr "Fra land"
743
 
744
+ #: ../cerber-load.php:3389
745
  msgid "The WP Cerber security plugin is now active"
746
  msgstr "Sikkerhetstillegget WP Cerber er nå aktivt"
747
 
748
+ #: ../cerber-load.php:4089
749
  msgid "Your IP address is added to the"
750
  msgstr "Din IP-adresse ble lagt til"
751
 
752
+ #: ../cerber-load.php:4101
753
  msgid "Import settings"
754
  msgstr "Importer innstillinger"
755
 
756
+ #: ../settings.php:220
757
  msgid "Notification limit"
758
  msgstr "Grense for varslinger"
759
 
760
+ #: ../settings.php:220
761
  msgid "notification letters allowed per hour (0 means unlimited)"
762
  msgstr "varslingsmeldinger tillatt per time (0 betyr ubegrenset)"
763
 
764
+ #: ../settings.php:142
765
  msgid "User related settings"
766
  msgstr "Brukerrelaterte innstillinger"
767
 
768
+ #: ../settings.php:144
769
  msgid "Prohibited usernames"
770
  msgstr "Blokkerte brukernavn"
771
 
772
+ #: ../settings.php:150
773
  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."
774
  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."
775
 
776
+ #: ../settings.php:152
777
  msgid "User session expire"
778
  msgstr "Brukerøktens varighet"
779
 
780
+ #: ../settings.php:152
781
  msgid "in minutes (leave empty to use default WP value)"
782
  msgstr "i minutter (la stå tom for å bruke WordPress' standardverdi)"
783
 
784
+ #: ../settings.php:182
785
  msgid "reCAPTCHA settings"
786
  msgstr "reCAPTCHA-innstillinger"
787
 
788
+ #: ../settings.php:183
789
  msgid "Site key"
790
  msgstr "Site key"
791
 
792
+ #: ../settings.php:184
793
  msgid "Secret key"
794
  msgstr "Secret key"
795
 
796
+ #: ../settings.php:187
797
  msgid "Enable reCAPTCHA for WordPress registration form"
798
  msgstr "Slå på reCAPTCHA for WordPress' registreringsskjema"
799
 
800
+ #: ../settings.php:190
801
  msgid "Lost password form"
802
  msgstr "Skjema for mistet passord"
803
 
804
+ #: ../settings.php:193
805
  msgid "Login form"
806
  msgstr "Innloggingsskjema"
807
 
808
+ #: ../settings.php:193
809
  msgid "Enable reCAPTCHA for WordPress login form"
810
  msgstr "Slå på reCAPTCHA for WordPress' innloggingsskjema"
811
 
812
+ #: ../settings.php:368
813
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
814
  msgstr "Før du kan ta i bruk reCAPTCHA må du skaffe deg en Site key og Secret key på Googles webside"
815
 
816
+ #: ../cerber-lab.php:720 ../settings.php:369
817
  msgid "Know more"
818
  msgstr "Lær mer"
819
 
820
+ #: ../dashboard.php:52 ../settings.php:388
821
  msgid "WP Cerber Security"
822
  msgstr "WP Cerber-sikkerhet"
823
 
824
+ #: ../settings.php:408
825
  msgid "Users"
826
  msgstr "Brukere"
827
 
828
+ #: ../common.php:796
829
  msgid "User created"
830
  msgstr "Bruker opprettet"
831
 
832
+ #: ../dashboard.php:1460 ../common.php:797
833
  msgid "User registered"
834
  msgstr "Bruker registrert"
835
 
836
+ #: ../common.php:824
837
  msgid "reCAPTCHA verification failed"
838
  msgstr "reCAPTCHA-godkjenning mislyktes"
839
 
840
+ #: ../common.php:825
841
  msgid "reCAPTCHA settings are incorrect"
842
  msgstr "reCAPTCHA-innstillingene er feil"
843
 
844
+ #: ../common.php:828
845
  msgid "Attempt to access prohibited URL"
846
  msgstr "Forsøk på å koble til forbudt URL"
847
 
848
+ #: ../common.php:830 ../common.php:878
849
  msgid "Attempt to log in with prohibited username"
850
  msgstr "Forsøk på å logge inn med forbudt brukernavn"
851
 
852
+ #: ../settings.php:106
853
  msgid "Cerber Lab connection"
854
  msgstr "Tilkobling til Cerber Lab"
855
 
856
+ #: ../settings.php:106
857
  msgid "Send malicious IP addresses to the Cerber Lab"
858
  msgstr "Send ondsinnede IP-adresser til Cerber Lab"
859
 
860
+ #: ../settings.php:107
861
  msgid "Cerber Lab protocol"
862
  msgstr "Cerber Lab protokoll"
863
 
864
+ #: ../settings.php:162 ../settings.php:187
865
  msgid "Registration form"
866
  msgstr "Registreringsskjema"
867
 
868
+ #: ../settings.php:188
869
  msgid "Enable reCAPTCHA for WooCommerce registration form"
870
  msgstr "Slå på reCAPTCHA for WooCommerces registreringsskjema"
871
 
872
+ #: ../settings.php:190
873
  msgid "Enable reCAPTCHA for WordPress lost password form"
874
  msgstr "Slå på reCAPTCHA for WordPress' skjema for mistet passord"
875
 
876
+ #: ../settings.php:191
877
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
878
  msgstr "Slå på reCAPTCHA for WooCommerce mistet passord-skjema"
879
 
880
+ #: ../settings.php:194
881
  msgid "Enable reCAPTCHA for WooCommerce login form"
882
  msgstr "Slå på reCAPTCHA for WooCommerce innloggings-skjema"
883
 
884
+ #: ../common.php:826
885
  msgid "Request to the Google reCAPTCHA service failed"
886
  msgstr "Forespørsel til Googles reCAPTCHA-tjeneste mislyktes"
887
 
888
+ #: ../dashboard.php:1452 ../dashboard.php:1482
889
  msgid "View all"
890
  msgstr "Se alle"
891
 
892
+ #: ../dashboard.php:1483
893
  msgid "Recently locked out IP addresses"
894
  msgstr "Nylig utestengte IP-adresser"
895
 
896
+ #: ../cerber-lab.php:718
897
  msgid "OK, nail them all"
898
  msgstr "OK, ta alle sammen"
899
 
900
+ #: ../cerber-lab.php:719
901
  msgid "NO, maybe later"
902
  msgstr "NEI, kanskje senere"
903
 
904
+ #: ../dashboard.php:54 ../dashboard.php:1238 ../dashboard.php:1816 ../settings.
905
+ #: php:393
906
  msgid "Dashboard"
907
  msgstr "Kontrollpanel"
908
 
909
+ #: ../cerber-lab.php:716
910
  msgid "Want to make WP Cerber even more powerful?"
911
  msgstr "Vil du gjøre WP Cerber enda sterkere?"
912
 
913
+ #: ../cerber-lab.php:717
914
  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."
915
  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."
916
 
917
+ #: ../dashboard.php:534
918
  msgid "IP address"
919
  msgstr "IP-adresse"
920
 
921
+ #: ../dashboard.php:534
922
  msgid "User login"
923
  msgstr "Brukernavn"
924
 
925
+ #: ../dashboard.php:534
926
  msgid "User ID"
927
  msgstr "Bruker-ID"
928
 
929
+ #: ../dashboard.php:719
930
  msgid "Export"
931
  msgstr "Eksporter"
932
 
933
+ #: ../dashboard.php:738
934
  msgid "Search for IP or username"
935
  msgstr "Søk etter IP eller brukernavn"
936
 
937
+ #: ../dashboard.php:738
938
  msgid "Filter"
939
  msgstr "Filter"
940
 
941
+ #: ../dashboard.php:54
942
  msgid "Cerber Dashboard"
943
  msgstr "Cerber-kontrollpanel"
944
 
945
+ #: ../dashboard.php:64
946
  msgid "Cerber tools"
947
  msgstr "Cerber-verktøy"
948
 
949
+ #: ../dashboard.php:1726
950
  msgid "Subscribe"
951
  msgstr "Abbonér"
952
 
953
+ #: ../dashboard.php:1727 ../cerber-tools.php:273
954
  msgid "Unsubscribe"
955
  msgstr "Avslutt abonnementet"
956
 
957
+ #: ../dashboard.php:1755
958
  msgid "You've subscribed"
959
  msgstr "Du abbonerer"
960
 
961
+ #: ../dashboard.php:1758
962
  msgid "You've unsubscribed"
963
  msgstr "Du har avsluttet abonnementet"
964
 
965
+ #: ../cerber-load.php:3402 ../cerber-load.php:3403
966
  msgid "A new activity has been recorded"
967
  msgstr "En ny aktivitet har blitt registrert"
968
 
969
+ #: ../cerber-load.php:3857
970
  msgid "User"
971
  msgstr "Bruker"
972
 
973
+ #: ../cerber-load.php:3865
974
  msgid "Search string"
975
  msgstr "Søkeord"
976
 
977
+ #: ../cerber-load.php:3886
978
  msgid "To unsubscribe click here"
979
  msgstr "Klikk her for å avslutte abbonementet"
980
 
981
+ #: ../settings.php:110
982
  msgid "Preferences"
983
  msgstr "Valg"
984
 
985
+ #: ../settings.php:112
986
  msgid "Date format"
987
  msgstr "Datoformat"
988
 
989
+ #: ../settings.php:112
990
  msgid "if empty, the default format %s will be used"
991
  msgstr "hvis blank, vil formatet %s bli brukt"
992
 
993
+ #: ../settings.php:226
994
  msgid "Push notifications"
995
  msgstr "Push-varsler"
996
 
997
+ #: ../settings.php:205
998
  msgid "Email notifications"
999
  msgstr "E-postvarsel"
1000
 
1001
+ #: ../settings.php:212 ../settings.php:248 ../settings.php:305
1002
  msgid "Use comma to specify multiple values"
1003
  msgstr "Bruk komma for å skille mellom flere verdier"
1004
 
1005
+ #: ../settings.php:233
1006
  msgid "All connected devices"
1007
  msgstr "Alle tilkoblede enheter"
1008
 
1009
+ #: ../settings.php:234
1010
  msgid "No devices found"
1011
  msgstr "Ingen enheter funnet"
1012
 
1013
+ #: ../settings.php:236
1014
  msgid "Not available"
1015
  msgstr "Ikke tilgjengelig"
1016
 
1017
+ #: ../common.php:822
1018
  msgid "Password reset requested"
1019
  msgstr "Nullstilling av passord forespurt"
1020
 
1021
+ #: ../common.php:879
1022
  msgid "Limit on failed reCAPTCHA verifications is reached"
1023
  msgstr "Grensen for mislykkede reCAPTCHA-verifiseringer er nådd"
1024
 
1025
+ #: ../common.php:937
1026
  msgid "%s ago"
1027
  msgstr "%s siden"
1028
 
1029
+ #: ../settings.php:77
1030
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
1031
  msgstr "Aktivér regler for begrensning av innloggingsforsøk for hvitlistede IP-adresser."
1032
 
1033
+ #: ../settings.php:86
1034
  msgid "Display 404 page"
1035
  msgstr "Vis 404-siden"
1036
 
1037
+ #: ../settings.php:185
1038
  msgid "Invisible reCAPTCHA"
1039
  msgstr "Usynlig reCAPTCHA"
1040
 
1041
+ #: ../settings.php:185
1042
  msgid "Enable invisible reCAPTCHA"
1043
  msgstr "Aktivér usynlig reCAPTCHA"
1044
 
1045
+ #: ../settings.php:185
1046
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
1047
  msgstr "(ikke aktivér denne med mindre du legger inn sidenøkkel og hemmelig nøkkel for den usynlige versjonen)"
1048
 
1049
+ #: ../settings.php:196
1050
  msgid "Enable reCAPTCHA for WordPress comment form"
1051
  msgstr "Aktivér reCAPTCHA for WordPress' kommentarskjema"
1052
 
1053
+ #: ../settings.php:197
1054
  msgid "Disable reCAPTCHA for logged in users"
1055
  msgstr "Deaktivér reCAPTCHA for innloggede brukere"
1056
 
1057
+ #: ../settings.php:199
1058
  msgid "Limit attempts"
1059
  msgstr "Begrens forsøk"
1060
 
1061
+ #: ../settings.php:199
1062
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1063
  msgstr "Steng ute IP-adresser for %s minutter etter %s mislykkede forsøk på %s minutter"
1064
 
1065
+ #: ../settings.php:362
1066
  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."
1067
  msgstr "I vakttårnsmodus kan ingen andre enn hvitlistede IP-adresser logge seg inn. Allerede innloggede brukere vil ikke bli påvirket."
1068
 
1069
+ #: ../dashboard.php:534 ../dashboard.php:699
1070
  msgid "Event"
1071
  msgstr "Hendelse"
1072
 
1073
+ #: ../common.php:146
1074
  msgid "Spam comments denied"
1075
  msgstr "Spam-kommentarer nektet"
1076
 
1077
+ #: ../common.php:148
1078
  msgid "Malicious IP addresses detected"
1079
  msgstr "Ondsinnede IP-adresser oppdaget"
1080
 
1081
+ #: ../common.php:149
1082
  msgid "Lockouts occurred"
1083
  msgstr "Utestengelser"
1084
 
1085
+ #: ../dashboard.php:1461
1086
  msgid "All suspicious activity"
1087
  msgstr "All mistenkelig aktivitet"
1088
 
1089
+ #: ../cerber-load.php:1144 ../cerber-load.php:1150 ../cerber-load.php:1166 ..
1090
+ #: /cerber-load.php:1173
1091
  msgid "You are not allowed to register."
1092
  msgstr "Du har ikke tilgang til å registrere deg"
1093
 
1094
+ #: ../common.php:807
1095
  msgid "Spam comment denied"
1096
  msgstr "Spam-kommentar nektet"
1097
 
1098
+ #: ../common.php:832
1099
  msgid "Attempt to log in denied"
1100
  msgstr "Innloggingsforsøk nektet"
1101
 
1102
+ #: ../common.php:833
1103
  msgid "Attempt to register denied"
1104
  msgstr "Registreringsforsøk nektet"
1105
 
1106
+ #: ../common.php:143
1107
  msgid "Malicious activities mitigated"
1108
  msgstr "Mistenkelige aktiviteter redusert"
1109
 
1110
+ #: ../dashboard.php:63
1111
  msgid "Cerber antispam settings"
1112
  msgstr "Cerber antispam-innstillinger"
1113
 
1114
+ #: ../dashboard.php:63 ../dashboard.php:1241 ../cerber-load.php:4098 ../settings.
1115
+ #: php:196
1116
  msgid "Antispam"
1117
  msgstr "Antispam"
1118
 
1119
+ #: ../settings.php:160
1120
  msgid "Cerber antispam engine"
1121
  msgstr "Cerber antispam-system"
1122
 
1123
+ #: ../settings.php:161
1124
  msgid "Comment form"
1125
  msgstr "Kommentarskjema"
1126
 
1127
+ #: ../settings.php:161
1128
  msgid "Protect comment form with bot detection engine"
1129
  msgstr "Beskytt kommentarskjema med system for bot-oppdagelse"
1130
 
1131
+ #: ../settings.php:162
1132
  msgid "Protect registration form with bot detection engine"
1133
  msgstr "Beskytt registreringssskjema med system for bot-oppdagelse"
1134
 
1144
  msgid "License"
1145
  msgstr "Lisens"
1146
 
1147
+ #: ../cerber-tools.php:343
1148
  msgid "Antispam and bot detection settings"
1149
  msgstr "Innstillinger for antispam og bot-oppdagelse"
1150
 
1151
+ #: ../cerber-load.php:1409
1152
  msgid "Sorry, human verification failed."
1153
  msgstr "Beklager, menneskeverifisering feilet"
1154
 
1155
+ #: ../common.php:880
1156
  msgid "Bot activity is detected"
1157
  msgstr "Bot-aktivitet er oppdaget"
1158
 
1159
+ #: ../settings.php:177
1160
  msgid "Comment processing"
1161
  msgstr "Behandler kommentaren"
1162
 
1163
+ #: ../settings.php:178
1164
  msgid "If a spam comment detected"
1165
  msgstr "Hvis en spam-kommentar oppdages"
1166
 
1167
+ #: ../settings.php:179
1168
  msgid "Trash spam comments"
1169
  msgstr "Kast spam-kommentarer i papirkurven"
1170
 
1171
+ #: ../settings.php:179
1172
  msgid "Move spam comments to trash after"
1173
  msgstr "Flytt spam-kommentarer til papirkurven etter"
1174
 
1175
+ #: ../common.php:808
1176
  msgid "Spam form submission denied"
1177
  msgstr "Innsending av skjema nektet pga. spam"
1178
 
1179
+ #: ../settings.php:163
1180
  msgid "Other forms"
1181
  msgstr "Andre skjemaer"
1182
 
1183
+ #: ../settings.php:163
1184
  msgid "Protect all forms on the website with bot detection engine"
1185
  msgstr "Beskytt alle skjemaer på websiden med systemet for bot-oppdagelse"
1186
 
1187
+ #: ../settings.php:165
1188
  msgid "Adjust antispam engine"
1189
  msgstr "Justér antispam-systemet"
1190
 
1191
+ #: ../settings.php:166
1192
  msgid "Safe mode"
1193
  msgstr "Sikkermodus"
1194
 
1195
+ #: ../settings.php:166
1196
  msgid "Use less restrictive policies (allow AJAX)"
1197
  msgstr "Bruk mindre restriktive regler (tillat AJAX)"
1198
 
1199
+ #: ../dashboard.php:2876 ../settings.php:167
1200
  msgid "Logged in users"
1201
  msgstr "Innloggede brukere"
1202
 
1203
+ #: ../settings.php:167
1204
  msgid "Disable bot detection engine for logged in users"
1205
  msgstr "Deaktivér systemet for bot-oppdagelse for innloggede brukere"
1206
 
1209
  msgid "WP Cerber Security & Antispam"
1210
  msgstr "WP Cerber Sikkerhet og Antispam"
1211
 
1212
+ #: ../dashboard.php:131 ../dashboard.php:697
1213
  msgid "Country"
1214
  msgstr "Land"
1215
 
1216
+ #: ../dashboard.php:729
1217
  msgid "All events"
1218
  msgstr "Alle hendelser"
1219
 
1220
+ #: ../dashboard.php:60
1221
  msgid "Cerber Security Rules"
1222
  msgstr "Cerber sikkerhetsregler"
1223
 
1224
+ #: ../dashboard.php:60 ../dashboard.php:2184
1225
  msgid "Security Rules"
1226
  msgstr "Sikkerhetsregler"
1227
 
1228
+ #: ../dashboard.php:1083
1229
  msgid "Failed login attempts"
1230
  msgstr "Mislykkede innloggingsforsøk"
1231
 
1232
+ #: ../dashboard.php:999 ../dashboard.php:1084
1233
  msgid "Registered"
1234
  msgstr "Registrert"
1235
 
1236
+ #: ../dashboard.php:1154
1237
  msgid "You"
1238
  msgstr "Deg"
1239
 
1240
+ #: ../common.php:147
1241
  msgid "Spam form submissions denied"
1242
  msgstr "Innsending av skjema nektet pga. spam"
1243
 
1244
+ #: ../dashboard.php:1520 ../cerber-load.php:3392 ../cerber-load.php:4091
1245
  msgid "Getting Started Guide"
1246
  msgstr "Hurtigstartsguide"
1247
 
1248
+ #: ../dashboard.php:2189
1249
  msgid "Countries"
1250
  msgstr "Land"
1251
 
1252
+ #: ../dashboard.php:2252
1253
  msgid "Permitted for one country"
1254
  msgid_plural "Permitted for %d countries"
1255
  msgstr[0] "Tillatt for ett land"
1256
  msgstr[1] "Tillatt for %s land"
1257
 
1258
+ #: ../dashboard.php:2263
1259
  msgid "No rule"
1260
  msgstr "Ingen regel"
1261
 
1262
+ #: ../dashboard.php:2475
1263
  msgid "Security rules have been updated"
1264
  msgstr "Sikkerhetsreglene har blitt oppdatert"
1265
 
1268
  msgid "https://wpcerber.com"
1269
  msgstr "https://wpcerber.com"
1270
 
1271
+ #: ../common.php:809
1272
  msgid "Form submission denied"
1273
  msgstr "Innsending av skjema nektet"
1274
 
1275
+ #: ../common.php:810
1276
  msgid "Comment denied"
1277
  msgstr "Kommentar nektet"
1278
 
1279
+ #: ../common.php:838
1280
  msgid "Request to REST API denied"
1281
  msgstr "Forespørsel til REST API nektet"
1282
 
1283
+ #: ../common.php:839
1284
  msgid "XML-RPC request denied"
1285
  msgstr "Forespørsel til XML-RPC nektet"
1286
 
1287
+ #: ../common.php:843
1288
  msgid "Bot detected"
1289
  msgstr "Bot oppdaget"
1290
 
1291
+ #: ../common.php:844
1292
  msgid "Citadel mode is active"
1293
  msgstr "Vakttårnsmodus er aktiv"
1294
 
1295
+ #: ../common.php:849
1296
  msgid "Malicious activity detected"
1297
  msgstr "Mistenkelig aktivitet oppdaget"
1298
 
1299
+ #: ../common.php:850
1300
  msgid "Blocked by country rule"
1301
  msgstr "Blokkert av land-regel"
1302
 
1303
+ #: ../common.php:851
1304
  msgid "Limit reached"
1305
  msgstr "Grensen er nådd"
1306
 
1307
+ #: ../common.php:852
1308
  msgid "Multiple suspicious activities"
1309
  msgstr "Flere mistenkelige aktiviteter"
1310
 
1311
+ #: ../common.php:881
1312
  msgid "Multiple suspicious activities were detected"
1313
  msgstr "Flere mistenkelige aktiviteter ble oppdaget"
1314
 
1315
+ #: ../settings.php:120
1316
  msgid "Block access to user pages like /?author=n and user data via REST API"
1317
  msgstr "Blokkér tilgang til brukersider som /?author=n og brukerdata via REST API"
1318
 
1319
+ #: ../settings.php:124
1320
  msgid "Block access to the WordPress REST API except the following"
1321
  msgstr "Blokkér tilgang til WordPress' REST API, bortsett fra følgende"
1322
 
1323
+ #: ../settings.php:125
1324
  msgid "Allow REST API for logged in users"
1325
  msgstr "Tillat REST API for innloggede brukere"
1326
 
1327
+ #: ../settings.php:132
1328
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
1329
  msgstr "Spesifisér REST API navneområder som skal tillates når REST API er deaktivert. En string per linje."
1330
 
1331
+ #: ../settings.php:143
1332
  msgid "Registration limit"
1333
  msgstr "Grense for registreringer"
1334
 
1335
+ #: ../settings.php:153
1336
  msgid "Sort users in dashboard"
1337
  msgstr "Sorter brukere i kontrollpanelet"
1338
 
1339
+ #: ../settings.php:153
1340
  msgid "by date of registration"
1341
  msgstr "etter registreringsdato"
1342
 
1343
+ #: ../settings.php:168
1344
  msgid "Query whitelist"
1345
  msgstr "Forespør hvitliste"
1346
 
1347
+ #: ../settings.php:525 ../settings.php:647
1348
  msgid "%s allowed registrations in %s minutes from one IP"
1349
  msgstr "%s tillatte registreringer på %s minutter fra én IP-adresse"
1350
 
1351
+ #: ../dashboard.php:2319
1352
  msgid "Start typing here to find a country"
1353
  msgstr "Begynn å skrive her for å finne et land"
1354
 
1355
+ #: ../dashboard.php:2402
1356
  msgid "Click on a country name to add it to the list of selected countries"
1357
  msgstr "Klikk på et land for å legge det til listen over valgte land"
1358
 
1359
+ #: ../dashboard.php:2426
1360
  msgid "Submit forms"
1361
  msgstr "Send inn skjemaer"
1362
 
1363
+ #: ../dashboard.php:2427
1364
  msgid "Post comments"
1365
  msgstr "Publisér kommentarer"
1366
 
1367
+ #: ../dashboard.php:2428
1368
  msgid "Log in to the website"
1369
  msgstr "Logg inn på websiden"
1370
 
1371
+ #: ../dashboard.php:2429
1372
  msgid "Register on the website"
1373
  msgstr "Registrer på websiden"
1374
 
1375
+ #: ../dashboard.php:2430
1376
  msgid "Use XML-RPC"
1377
  msgstr "Bruk XML-RPC"
1378
 
1379
+ #: ../dashboard.php:2431
1380
  msgid "Use REST API"
1381
  msgstr "Bruk REST API"
1382
 
1383
+ #: ../settings.php:178
1384
  msgid "Deny it completely"
1385
  msgstr "Nekt det fullstendig"
1386
 
1387
+ #: ../settings.php:178
1388
  msgid "Mark it as spam"
1389
  msgstr "Marker det som spam"
1390
 
1391
+ #: ../dashboard.php:1446
1392
  msgid "in the last 24 hours"
1393
  msgstr "i løpet av de siste 24 timer"
1394
 
1395
+ #: ../dashboard.php:1817
1396
  msgid "Main settings"
1397
  msgstr "Hovedinnstillinger"
1398
 
1399
+ #: ../settings.php:240
1400
  msgid "Weekly reports"
1401
  msgstr "Ukentlige rapporter"
1402
 
1403
+ #: ../settings.php:750
1404
  msgid "Sunday"
1405
  msgstr "Søndag"
1406
 
1407
+ #: ../settings.php:751
1408
  msgid "Monday"
1409
  msgstr "Mandag"
1410
 
1411
+ #: ../settings.php:752
1412
  msgid "Tuesday"
1413
  msgstr "Tirsdag"
1414
 
1415
+ #: ../settings.php:753
1416
  msgid "Wednesday"
1417
  msgstr "Onsdag"
1418
 
1419
+ #: ../settings.php:754
1420
  msgid "Thursday"
1421
  msgstr "Torsdag"
1422
 
1423
+ #: ../settings.php:755
1424
  msgid "Friday"
1425
  msgstr "Fredag"
1426
 
1427
+ #: ../settings.php:756
1428
  msgid "Saturday"
1429
  msgstr "Lørdag"
1430
 
1431
+ #: ../settings.php:816 ../settings.php:817
1432
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1433
  msgstr "Hvis du bruker en plugin for caching, må du legge din nye innloggings-URL til listen over sider som ikke skal caches."
1434
 
1435
  #. translators: preposition of time
1436
+ #: ../settings.php:766
1437
  msgctxt "preposition of time"
1438
  msgid "at"
1439
  msgstr "klokken"
1440
 
1441
+ #: ../cerber-load.php:3408
1442
  msgid "Weekly report"
1443
  msgstr "Ukentlig rapport"
1444
 
1445
+ #: ../cerber-load.php:3411
1446
  msgid "To change reporting settings visit"
1447
  msgstr "For å endre rapporteringsinnstillingene, besøk"
1448
 
1449
+ #: ../cerber-load.php:3437
1450
  msgid "Your login page:"
1451
  msgstr "Din innloggingsside"
1452
 
1453
+ #: ../cerber-load.php:3441
1454
  msgid "Your license is valid until"
1455
  msgstr "Din lisens er gyldig inntil"
1456
 
1457
+ #: ../cerber-load.php:3552
1458
  msgid "Activity details"
1459
  msgstr "Aktivitetsdetaljer"
1460
 
1461
+ #: ../settings.php:782
1462
  msgid "Click to send now"
1463
  msgstr "Klikk for å sende nå"
1464
 
1465
+ #: ../cerber-load.php:796
1466
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1467
  msgstr "> > > WP Cerber-oversetter? For å få en gratis PRO-lisens, legg igjen din kontaktinfo her: https://wpcerber.com/contact"
1468
 
1469
+ #: ../dashboard.php:416
1470
  msgid "Email has been sent to"
1471
  msgstr "E-post har blitt sendt til"
1472
 
1473
+ #: ../dashboard.php:419
1474
  msgid "Unable to send email to"
1475
  msgstr "Kunne ikke sende e-post til"
1476
 
1477
+ #: ../dashboard.php:2255
1478
  msgid "Not permitted for one country"
1479
  msgid_plural "Not permitted for %d countries"
1480
  msgstr[0] "Ikke tillatt for ett land"
1481
  msgstr[1] "Ikke tillatt for %d land"
1482
 
1483
+ #: ../dashboard.php:2406
1484
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1485
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1486
  msgstr "Valgte land er tillatt å %s, andre land er ikke tillatt å"
1487
 
1488
+ #: ../dashboard.php:2409
1489
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1490
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1491
  msgstr "Valgte land er ikke tillatt å %s, andre land er tillatt å"
1495
  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>."
1496
  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>."
1497
 
1498
+ #: ../cerber-load.php:3540
1499
  msgid "Weekly Report"
1500
  msgstr "Ukentlig rapport"
1501
 
1502
+ #: ../settings.php:86
1503
  msgid "Use 404 template from the active theme"
1504
  msgstr "Bruk malen for 404-siden fra det aktive temaet."
1505
 
1506
+ #: ../settings.php:86
1507
  msgid "Display simple 404 page"
1508
  msgstr "Vis en enkel 404-side"
1509
 
1510
+ #: ../settings.php:174
1511
  msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
1512
  msgstr "Skriv inn en del av en spørringsstreng for å ekskludere en forespørsel fra undersøkelse av systemet. En feorespørsel per linje."
1513
 
1514
+ #: ../settings.php:253
1515
  msgid "if empty, email from notification settings will be used"
1516
  msgstr "hvis feltet er tomt, vil e-postadressen fra varselinnstillingene bli brukt"
1517
 
1518
+ #: ../settings.php:241
1519
  msgid "Enable reporting"
1520
  msgstr "Aktivér rapportering"
1521
 
1522
+ #: ../cerber-load.php:3465
1523
  msgid "Your last sign-in was %s from %s"
1524
  msgstr "Din siste innlogging var %s fra %s"
1525
 
1526
+ #: ../cerber-load.php:3566
1527
  msgid "Attempts to log in with non-existent username"
1528
  msgstr "Forsøk på å logge inn med ikke-eksisterende brukernavn"
1529
 
1530
+ #: ../dashboard.php:205
1531
  msgid "IP address, IPv4 address range or subnet"
1532
  msgstr "IP-adresse, IPv4-adresseområde eller subnet"
1533
 
1534
+ #: ../dashboard.php:207
1535
  msgid "Optional comment for this entry"
1536
  msgstr "Valgfri kommentar for denne oppføringen"
1537
 
1538
+ #: ../dashboard.php:248
1539
  msgid "You cannot add your IP address or network"
1540
  msgstr "Du kan ikke legge til din IP-adresse eller nettverk"
1541
 
1542
+ #: ../cerber-news.php:165
1543
  msgid "Cool!"
1544
  msgstr "Kult!"
1545
 
1546
+ #: ../settings.php:150
1547
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1548
  msgstr "For å spesifisere et REGEX-mønster, pakk mønsteret inn i to skråstreker."
1549
 
1550
+ #: ../dashboard.php:56
1551
  msgid "Cerber Traffic Inspector"
1552
  msgstr "Cerber Trafikkinspektør"
1553
 
1554
+ #: ../dashboard.php:56 ../dashboard.php:1224 ../dashboard.php:2524
1555
  msgid "Traffic Inspector"
1556
  msgstr "Trafikkinspektør"
1557
 
1558
+ #: ../dashboard.php:1240
1559
  msgid "Traffic"
1560
  msgstr "Trafikk"
1561
 
1562
+ #: ../dashboard.php:2529
1563
  msgid "Live traffic"
1564
  msgstr "Live trafikk"
1565
 
1566
+ #: ../dashboard.php:2847
1567
  msgid "Request"
1568
  msgstr "Forespørsel"
1569
 
1570
+ #: ../dashboard.php:2849
1571
  msgid "Host Info"
1572
  msgstr "Vertsinformasjon"
1573
 
1574
+ #: ../dashboard.php:2850
1575
  msgid "User Agent"
1576
  msgstr "Brukeragent"
1577
 
1578
+ #: ../dashboard.php:2875
1579
  msgid "All requests"
1580
  msgstr "Alle forespørsler"
1581
 
1582
+ #: ../dashboard.php:2877
1583
  msgid "Not logged in visitors"
1584
  msgstr "Ikke-innloggede besøkende"
1585
 
1586
+ #: ../dashboard.php:2878
1587
  msgid "Form submissions"
1588
  msgstr "Innsendte skjema"
1589
 
1590
+ #: ../dashboard.php:2879
1591
  msgid "Page Not Found"
1592
  msgstr "Siden ikke funnet"
1593
 
1594
+ #: ../dashboard.php:2880
1595
  msgid "REST API"
1596
  msgstr "REST API"
1597
 
1598
+ #: ../dashboard.php:2881
1599
  msgid "XML-RPC"
1600
  msgstr "XML-RPC"
1601
 
1602
+ #: ../dashboard.php:2885
1603
  msgid "Longer than"
1604
  msgstr "Lengre enn"
1605
 
1606
+ #: ../dashboard.php:2898
1607
  msgid "Refresh"
1608
  msgstr "Oppdater"
1609
 
1610
+ #: ../common.php:109
1611
  msgid "Check for requests"
1612
  msgstr "Se etter forespørsler"
1613
 
1614
+ #: ../common.php:1097
1615
  msgid "Not specified"
1616
  msgstr "Ikke spesifisert"
1617
 
1618
+ #: ../settings.php:277
1619
  msgid "Logging mode"
1620
  msgstr "Loggføringsmodus"
1621
 
1622
+ #: ../settings.php:283
1623
  msgid "Logging disabled"
1624
  msgstr "Loggføring deaktivert"
1625
 
1626
+ #: ../settings.php:284
1627
  msgid "Smart"
1628
  msgstr "Smart"
1629
 
1630
+ #: ../settings.php:285
1631
  msgid "All traffic"
1632
  msgstr "All trafikk"
1633
 
1634
+ #: ../settings.php:289
1635
  msgid "Ignore crawlers"
1636
  msgstr "Ingrorer søkeroboter"
1637
 
1638
+ #: ../settings.php:299
1639
  msgid "Mask these form fields"
1640
  msgstr "Maskér disse skjemafeltene"
1641
 
1642
+ #: ../settings.php:334
1643
  msgid "milliseconds"
1644
  msgstr "millisekunder"
1645
 
1646
+ #: ../settings.php:261
1647
  msgid "Inspection"
1648
  msgstr "Inspeksjon"
1649
 
1650
+ #: ../settings.php:262
1651
  msgid "Enable traffic inspection"
1652
  msgstr "Aktiver trafikkinspeksjon"
1653
 
1654
+ #: ../settings.php:276
1655
  msgid "Logging"
1656
  msgstr "Loggføring"
1657
 
1658
+ #: ../settings.php:294
1659
  msgid "Save request fields"
1660
  msgstr "Lagre forespørselfelter"
1661
 
1662
+ #: ../settings.php:329
1663
  msgid "Page generation time threshold"
1664
  msgstr "Tidsgrense for sidegenerering"
1665
 
1666
+ #: ../dashboard.php:2867
1667
  msgid "No requests have been logged."
1668
  msgstr "Ingen forespørsler har blitt loggført"
1669
 
1670
+ #: ../dashboard.php:1223
1671
  msgid "enabled"
1672
  msgstr "aktivert"
1673
 
1674
+ #: ../dashboard.php:1227
1675
  msgid "no connection"
1676
  msgstr "ingen forbindelse"
1677
 
1678
+ #: ../dashboard.php:3159
1679
  msgid "Advanced search"
1680
  msgstr "Avansert søk"
1681
 
1682
+ #: ../dashboard.php:992
1683
  msgid "Last seen"
1684
  msgstr "Sist sett"
1685
 
1686
+ #: ../common.php:834 ../common.php:882
1687
  msgid "Probing for vulnerable PHP code"
1688
  msgstr "Søker etter sårbar PHP-kode"
1689
 
1690
+ #: ../dashboard.php:3119
1691
+ msgid "Any"
1692
+ msgstr "Enhver"
1693
+
1694
+ #: ../cerber-load.php:3192
1695
+ msgid "We're sorry, you are not allowed to proceed"
1696
+ msgstr "Beklager, du har ikke tillatelse til å fortsette"
1697
+
1698
+ #: ../settings.php:267
1699
+ msgid "Request whitelist"
1700
+ msgstr "Be om hvitlisting"
1701
+
1702
+ #: ../settings.php:273
1703
+ msgid "Enter a request URI to exclude the request from inspection. One item per line."
1704
+ msgstr "Skriv inn en forespørsels-URI for å ekskludere feorespørselen fra inspeksjon. Ett element per linje"
1705
+
1706
+ #: ../settings.php:310
1707
+ msgid "Save request headers"
1708
+ msgstr "Lagre forespørsels-headere"
1709
+
1710
+ #: ../settings.php:316
1711
+ msgid "Save $_SERVER"
1712
+ msgstr "Lagre $_SERVER"
1713
+
1714
+ #: ../settings.php:322
1715
+ msgid "Save request cookies"
1716
+ msgstr "Lagre forespørsels-cookies"
1717
+
1718
+ #: ../settings.php:121
1719
+ msgid "Protect admin scripts"
1720
+ msgstr "Beskytt admin-scripts"
1721
+
1722
+ #: ../settings.php:121
1723
+ msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1724
+ msgstr "Blokker uautorisert tilgang til load-scripts.php og load-styles.php"
1725
+
1726
+ #: ../common.php:1583
1727
+ msgid "Unable to create the directory"
1728
+ msgstr "Kunne ikke opprette mappen"
1729
+
1730
+ #: ../common.php:1588
1731
+ msgid "Destination folder access denied"
1732
+ msgstr "Tilgang til målmappen ble nektet"
1733
+
1734
+ #: ../common.php:1591
1735
+ msgid "File not found"
1736
+ msgstr "Kunne ikke finne filen"
1737
+
1738
+ #: ../common.php:1594
1739
+ msgid "Unable to copy the file"
1740
+ msgstr "Kunne ikke kopiere filen"
1741
+
1742
+ #: ../common.php:1600
1743
+ msgid "Unable to delete the file"
1744
+ msgstr "Kunne ikke slette filen"
1745
+
1746
+ #: ../settings.php:70
1747
+ msgid "Plugin initialization"
1748
+ msgstr "Initialisering av plugin"
1749
+
1750
+ #: ../settings.php:71
1751
+ msgid "Load security engine"
1752
+ msgstr "Last inn sikkerhetssystem"
1753
+
1754
+ #: ../settings.php:71
1755
+ msgid "Legacy mode"
1756
+ msgstr "Legacy-modus"
1757
+
1758
+ #: ../settings.php:71
1759
+ msgid "Standard mode"
1760
+ msgstr "Standardmodus"
1761
+
1762
+ #: ../settings.php:794
1763
+ msgid "Plugin initialization mode has not been changed"
1764
+ msgstr "Initialisering av plugin er ikke forandret"
1765
+
1766
+ #. Name of the plugin
1767
+ #:
1768
+ msgid "WP Cerber boot module"
1769
+ msgstr "WP Cerber oppstartsmodul"
1770
+
1771
+ #. Description of the plugin
1772
+ #:
1773
+ 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>."
1774
+ 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>."
1775
+
1776
+ #: ../common.php:835
1777
+ msgid "Attempt to upload executable file denied"
1778
+ msgstr "Forsøk på å laste opp kjørbar fil ble nektet"
1779
+
1780
+ #: ../common.php:836
1781
+ msgid "File upload denied"
1782
+ msgstr "Filopplasting ble nektet"
1783
+
1784
+ #. Description of the plugin
1785
+ #:
1786
+ 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>."
1787
+ msgstr ""
1788
+
1789
+ #: ../settings.php:94
1790
+ msgid "Custom login URL may contain only: letters, numbers, dashes and underscores"
1791
+ msgstr ""
1792
+
1793
+ #: ../settings.php:94
1794
+ msgid "Custom login URL may contain only letters, numbers, dashes and underscores"
1795
+ msgstr ""
1796
+
1797
+ #: ../settings.php:174 ../settings.php:273
1798
+ msgid "To specify a REGEX pattern, enclose a whole line in two braces."
1799
+ msgstr ""
1800
+
languages/wp-cerber-nl_NL.mo CHANGED
Binary file
languages/wp-cerber-nl_NL.po CHANGED
@@ -8,678 +8,679 @@ msgstr ""
8
  "Language: nl\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
 
11
- #: ../settings.php:70
12
  msgid "Limit login attempts"
13
  msgstr "Inlogpogingen beperken"
14
 
15
- #: ../settings.php:71
16
  msgid "Attempts"
17
  msgstr "Pogingen"
18
 
19
- #: ../settings.php:72
20
  msgid "Lockout duration"
21
- msgstr "Lockout duur"
22
 
23
- #: ../settings.php:72 ../settings.php:91
24
  msgid "minutes"
25
  msgstr "minuten"
26
 
27
- #: ../settings.php:73
28
  msgid "Aggressive lockout"
29
  msgstr "Agressieve uitsluiting"
30
 
31
- #: ../settings.php:76
32
  msgid "Site connection"
33
  msgstr "Websiteverbinding"
34
 
35
- #: ../settings.php:78
36
  msgid "Proactive security rules"
37
  msgstr "Proactieve beveiligingsregels"
38
 
39
- #: ../settings.php:79
40
  msgid "Block subnet"
41
  msgstr "Subnet blokkeren"
42
 
43
- #: ../settings.php:82
44
  msgid "Request wp-login.php"
45
  msgstr "Verzoek wp-login.php"
46
 
47
- #: ../settings.php:82
48
  msgid "Immediately block IP after any request to wp-login.php"
49
  msgstr "IP meteen blokkeren bij verzoeken aan wp-login.php"
50
 
51
- #: ../settings.php:81
52
  msgid "Redirect dashboard requests"
53
  msgstr "Dashboardverzoeken omleiden"
54
 
55
- #: ../settings.php:85
56
  msgid "Custom login page"
57
  msgstr "Aangepaste inlogpagina"
58
 
59
- #: ../settings.php:86
60
  msgid "Custom login URL"
61
  msgstr "Aangepaste inlog-URL"
62
 
63
- #: ../settings.php:86
64
  msgid "must not overlap with the existing pages or posts slug"
65
  msgstr "mag niet overlappen met bestaande pagina's of post slugs"
66
 
67
- #: ../settings.php:87
68
  msgid "Disable wp-login.php"
69
  msgstr "Wp-login.php uitschakelen"
70
 
71
- #: ../settings.php:87
72
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
73
  msgstr "Directe toegang tot wp-login.php blokkeren en HTTP 404 Not Found Error teruggeven"
74
 
75
- #: ../dashboard.php:1209 ../settings.php:89
76
  msgid "Citadel mode"
77
- msgstr "Citadelmodus"
78
 
79
- #: ../settings.php:90
80
  msgid "Threshold"
81
  msgstr "Drempelwaarde"
82
 
83
- #: ../settings.php:91
84
  msgid "Duration"
85
  msgstr "Duur"
86
 
87
- #: ../wp-cerber.php:3863 ../settings.php:75 ../settings.php:92 ../settings.php:396
 
88
  msgid "Notifications"
89
  msgstr "Meldingen"
90
 
91
- #: ../settings.php:92
92
  msgid "Send notification to admin email"
93
  msgstr "Melding versturen naar admin e-mailadres"
94
 
95
- #: ../wp-cerber.php:3860 ../settings.php:389 ../cerber-tools.php:88 ../cerber-
96
- #: tools.php:97 ../cerber-tools.php:178
97
  msgid "Access Lists"
98
  msgstr "Toegangslijsten"
99
 
100
- #: ../dashboard.php:1227 ../dashboard.php:1437 ../wp-cerber.php:3624 ../settings.
101
- #: php:94 ../settings.php:380
102
  msgid "Activity"
103
  msgstr "Activiteit"
104
 
105
- #: ../settings.php:384
106
  msgid "Lockouts"
107
  msgstr "Uitsluitingen"
108
 
109
- #: ../settings.php:505 ../settings.php:627
110
  msgid "%s allowed retries in %s minutes"
111
  msgstr "%s toegestane pogingen in %s minuten"
112
 
113
- #: ../settings.php:527 ../settings.php:649
114
  msgid "Enable after %s failed login attempts in last %s minutes"
115
  msgstr "Aanzetten na %s mislukte inlogpogingen binnen %s minuten"
116
 
117
- #: ../dashboard.php:93 ../dashboard.php:652 ../dashboard.php:2812 ../wp-cerber.
118
- #: php:3633
119
  msgid "IP"
120
  msgstr "IP"
121
 
122
- #: ../dashboard.php:491 ../dashboard.php:655 ../dashboard.php:2810
123
  msgid "Date"
124
  msgstr "Datum"
125
 
126
- #: ../dashboard.php:491 ../dashboard.php:657 ../dashboard.php:2815
127
  msgid "Local User"
128
  msgstr "Lokale gebruiker"
129
 
130
- #: ../dashboard.php:491 ../dashboard.php:658 ../wp-cerber.php:3641
131
  msgid "Username used"
132
  msgstr "Toegepaste gebruikersnaam"
133
 
134
- #: ../dashboard.php:112
135
  msgid "Showing last %d records from %d"
136
  msgstr "Laatste %d records van %d"
137
 
138
- #: ../common.php:690
139
  msgid "Logged in"
140
  msgstr "Ingelogd"
141
 
142
- #: ../common.php:691
143
  msgid "Logged out"
144
  msgstr "Uitgelogd"
145
 
146
- #: ../common.php:692
147
  msgid "Login failed"
148
  msgstr "Inloggen mislukt"
149
 
150
- #: ../common.php:695
151
  msgid "IP blocked"
152
  msgstr "IP geblokkeerd"
153
 
154
- #: ../common.php:696
155
  msgid "Subnet blocked"
156
  msgstr "Subnet geblokkeerd"
157
 
158
- #: ../common.php:698
159
  msgid "Citadel activated!"
160
- msgstr "Citadelmodus geactiveerd!"
161
 
162
- #: ../dashboard.php:632 ../dashboard.php:836 ../dashboard.php:2648 ../common.php:
163
- #: 735
164
  #, fuzzy
165
  msgid "Locked out"
166
  msgstr "Buitengesloten"
167
 
168
- #: ../common.php:736
169
  msgid "IP blacklisted"
170
  msgstr "IP uitgesloten"
171
 
172
- #: ../common.php:713
173
  msgid "Password changed"
174
  msgstr "Wachtwoord veranderd"
175
 
176
- #: ../dashboard.php:86 ../dashboard.php:159
177
  msgid "Remove"
178
  msgstr "Verwijderen"
179
 
180
- #: ../dashboard.php:390
181
  msgid "Lockout for %s was removed"
182
  msgstr "Uitsluiting voor %s is verwijderd"
183
 
184
- #: ../dashboard.php:131 ../dashboard.php:627 ../dashboard.php:830 ../dashboard.
185
- #: php:1207 ../dashboard.php:2643 ../wp-cerber.php:3852 ../settings.php:74 ..
186
- #: settings.php:350
187
  #, fuzzy
188
  msgid "White IP Access List"
189
- msgstr "Toegelaten IP-adressen"
190
 
191
- #: ../dashboard.php:133 ../dashboard.php:628 ../dashboard.php:833 ../dashboard.
192
- #: php:1208 ../dashboard.php:2644
193
  #, fuzzy
194
  msgid "Black IP Access List"
195
  msgstr "Uitgesloten IP-adressen"
196
 
197
- #: ../dashboard.php:165
198
  msgid "List is empty"
199
  msgstr "Lijst is leeg"
200
 
201
- #: ../dashboard.php:202
202
  #, fuzzy
203
  msgid "Address %s was added to White IP Access List"
204
  msgstr "Adres %s toegevoegd aan de Lijst Toegelaten IP-adressen"
205
 
206
- #: ../dashboard.php:216
207
  #, fuzzy
208
  msgid "Address %s was added to Black IP Access List"
209
  msgstr "Adres %s toegevoegd aan de Lijst Uitgesloten IP-adressen "
210
 
211
- #: ../wp-cerber.php:3097
212
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
213
- msgstr "Citadelmodus geactiveerd na %d mislukte inlogpogingen binnen %d minuten"
214
 
215
- #: ../dashboard.php:1584
216
  #, fuzzy
217
  msgid "View Activity"
218
  msgstr "Activiteit bekijken"
219
 
220
- #: ../dashboard.php:2500 ../cerber-tools.php:87 ../cerber-tools.php:96
221
  msgid "Settings"
222
  msgstr "Instellingen"
223
 
224
- #: ../dashboard.php:1073
225
  #, fuzzy
226
  msgid "Last login"
227
  msgstr "Laatst ingelogd"
228
 
229
- #: ../dashboard.php:1106 ../dashboard.php:1190
230
  msgid "Never"
231
  msgstr "Nooit"
232
 
233
- #: ../dashboard.php:1481
234
  msgid "Are you sure?"
235
  msgstr "Weet je het zeker?"
236
 
237
- #: ../dashboard.php:1284 ../settings.php:76
238
  msgid "My site is behind a reverse proxy"
239
  msgstr "Mijn website draait achter een reverse proxy"
240
 
241
- #: ../settings.php:80
242
  msgid "Non-existent users"
243
  msgstr "Niet-bestaande gebruikers"
244
 
245
- #: ../settings.php:80
246
  msgid "Immediately block IP when attempting to login with a non-existent username"
247
  msgstr "IP meteen blokkeren bij inlogpoging op niet-bestaande gebruiker"
248
 
249
- #: ../settings.php:81
250
  msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
251
- msgstr "Uitschakelen omleiding naar de inlogpagina bij ongeautoriseerde verzoeken aan /wp-admin/"
252
 
253
- #: ../settings.php:336
254
  msgid "Make your protection smarter!"
255
  msgstr "Maak je bescherming slimmer!"
256
 
257
- #: ../settings.php:340
258
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
259
  msgstr "Schakel Permalinks in om deze functionaliteit te gebruiken. Stel de Permalinks instelling in op iets anders dan Standaard."
260
 
261
- #: ../settings.php:343
262
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
263
  msgstr "Pas op als je deze opties inschakelt! Vergeet je de aangepaste inlog-URL, dan kun je niet meer inloggen."
264
 
265
- #: ../wp-cerber.php:3859 ../settings.php:386
266
  msgid "Main Settings"
267
  msgstr "Hoofdinstellingen"
268
 
269
- #: ../settings.php:398
270
  msgid "Help"
271
  msgstr "Hulp"
272
 
273
- #: ../settings.php:515 ../settings.php:637
274
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
275
  msgstr "Uitsluitingsduur ophogen naar %s uren na %s uitsluitingen in de laatste %s uren"
276
 
277
- #: ../wp-cerber.php:237
278
  msgid "You are not allowed to log in. Ask your administrator for assistance."
279
  msgstr "Je hebt geen toestemming om in te loggen. Vraag je beheerder om informatie."
280
 
281
- #: ../wp-cerber.php:243
282
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
283
  msgstr "Je hebt de limiet voor inlogpogingen bereikt. Probeer het opnieuw na %d minuten."
284
 
285
- #: ../wp-cerber.php:262
286
  msgid "You have only one attempt remaining."
287
  msgid_plural "You have %d attempts remaining."
288
  msgstr[0] "Slechts één inlogpoging resterend!"
289
  msgstr[1] "%s inlogpogingen resterend."
290
 
291
- #: ../dashboard.php:680
292
  msgid "No activity has been logged."
293
  msgstr "Geen activiteit waargenomen."
294
 
295
- #: ../dashboard.php:96
296
  msgid "Expires"
297
  msgstr "Verloopt"
298
 
299
- #: ../dashboard.php:118
300
  #, fuzzy
301
  msgid "No lockouts at the moment. The sky is clear."
302
  msgstr "Momenteel geen uitsluitingen."
303
 
304
- #: ../dashboard.php:131
305
  msgid "These IPs will never be locked out"
306
  msgstr "Deze IP's worden nooit geblokkeerd."
307
 
308
- #: ../dashboard.php:140
309
  msgid "Your IP"
310
  msgstr "Jouw IP"
311
 
312
- #: ../wp-cerber.php:3098
313
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
314
  msgstr "Laatste mislukte inlogpoging was op %s vanaf IP %s op gebruiker %s."
315
 
316
- #: ../wp-cerber.php:3835
317
  msgid "Can't activate WP Cerber due to a database error."
318
  msgstr "Kan WP Cerber niet activeren door een fout in de database"
319
 
320
- #: ../settings.php:522 ../settings.php:644
321
  msgid "Notify admin if the number of active lockouts above"
322
  msgstr "Waarschuw de beheerder als het aantal actieve uitsluitingen stijgt tot boven"
323
 
324
- #: ../settings.php:95 ../settings.php:168 ../settings.php:326
325
  msgid "days"
326
  msgstr "dagen"
327
 
328
- #: ../dashboard.php:1160
329
  msgid "Cerber Quick View"
330
  msgstr "Cerber Quick View"
331
 
332
- #: ../dashboard.php:114
333
  msgid "Hint"
334
  msgstr "Tip"
335
 
336
- #: ../dashboard.php:114
337
  msgid "To view activity, click on the IP"
338
  msgstr "Klik op het IP om activiteiten te bekijken"
339
 
340
- #: ../dashboard.php:158 ../dashboard.php:843 ../dashboard.php:870 ../dashboard.
341
- #: php:962
342
  msgid "Check for activity"
343
  msgstr "Check voor activiteit"
344
 
345
- #: ../settings.php:79
346
  msgid "Always block entire subnet Class C of intruders IP"
347
  msgstr "Altijd gehele IP Class C subnet blokkeren van aanvaller"
348
 
349
- #: ../settings.php:92 ../settings.php:524 ../settings.php:646
350
  msgid "Click to send test"
351
  msgstr "Klik om test te verzenden"
352
 
353
- #: ../settings.php:786 ../settings.php:787
354
  msgid "Attention! You have changed the login URL! The new login URL is"
355
  msgstr "Let op! Je hebt de inlog-URL veranderd. De nieuwe inlog-URL is"
356
 
357
- #: ../dashboard.php:1072
358
  msgid "Comments"
359
  msgstr "Reacties"
360
 
361
- #: ../common.php:968
362
  msgid "Update to version %s of WP Cerber"
363
  msgstr "WP Cerber updaten naar versie %s"
364
 
365
- #: ../wp-cerber.php:3099 ../wp-cerber.php:3665
366
  msgid "View activity in dashboard"
367
  msgstr "Activiteiten bekijken in dashboard"
368
 
369
- #: ../wp-cerber.php:3129
370
  msgid "Number of active lockouts"
371
  msgstr "Aantal actieve uitsluitingen"
372
 
373
- #: ../wp-cerber.php:3133
374
  msgid "View lockouts in dashboard"
375
  msgstr "Uitsluitingen bekijken in dashboard"
376
 
377
- #: ../wp-cerber.php:3215
378
  msgid "This message was sent by"
379
  msgstr "Dit bericht is verzonden door"
380
 
381
- #: ../dashboard.php:1001 ../cerber-tools.php:43
382
  msgid "Tools"
383
  msgstr "Gereedschap"
384
 
385
- #: ../cerber-tools.php:84
386
  msgid "Export settings to the file"
387
  msgstr "Instellingen exporteren naar bestand"
388
 
389
- #: ../cerber-tools.php:85
390
  msgid "When you click the button below you will get a configuration file, which you can upload on another site."
391
  msgstr "Met onderstaande knop genereer je een configuratiebestand dat je bij een andere site kunt uploaden."
392
 
393
- #: ../cerber-tools.php:86
394
  msgid "What do you want to export?"
395
  msgstr "Wat wil je exporteren?"
396
 
397
- #: ../cerber-tools.php:89
398
  msgid "Download file"
399
  msgstr "Bestand downloaden"
400
 
401
- #: ../cerber-tools.php:91
402
  msgid "Import settings from the file"
403
  msgstr "Instellingen importeren van bestand"
404
 
405
- #: ../cerber-tools.php:92
406
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
407
  msgstr "Via onderstaande knop laad je het bestand en overschrijf je alle bestaande instellingen."
408
 
409
- #: ../cerber-tools.php:93
410
  msgid "Select file to import."
411
  msgstr "Kies bestand om te importeren"
412
 
413
- #: ../cerber-tools.php:93
414
  msgid "Maximum upload file size: %s."
415
  msgstr "Maximum bestandsgrootte: %s"
416
 
417
- #: ../cerber-tools.php:96
418
  msgid "What do you want to import?"
419
  msgstr "Wat wil je importeren?"
420
 
421
- #: ../cerber-tools.php:98
422
  msgid "Upload file"
423
  msgstr "Bestand uploaden"
424
 
425
- #: ../cerber-tools.php:145
426
  msgid "No file was uploaded or file is corrupted"
427
  msgstr "Geen bestand geüpload of bestand is beschadigd."
428
 
429
- #: ../cerber-tools.php:178
430
  msgid "Error while updating"
431
  msgstr "Foutmelding tijdens updaten"
432
 
433
- #: ../cerber-tools.php:181
434
  msgid "Settings has imported successfully from"
435
  msgstr "Instellingen geïmporteerd van"
436
 
437
- #: ../cerber-tools.php:185
438
  msgid "Error while parsing file"
439
  msgstr "Fout bij verwerken bestand"
440
 
441
- #: ../dashboard.php:94 ../dashboard.php:653
442
  msgid "Hostname"
443
  msgstr "Hostnaam"
444
 
445
- #: ../dashboard.php:355
446
  msgid "unknown"
447
  msgstr "onbekend"
448
 
449
- #: ../settings.php:95 ../settings.php:322
450
  #, fuzzy
451
  msgid "Keep records for"
452
  msgstr "Gegevens behouden tot"
453
 
454
- #: ../dashboard.php:1194 ../dashboard.php:1215
455
  msgid "active"
456
  msgstr "actief"
457
 
458
- #: ../dashboard.php:1194
459
  msgid "deactivate"
460
  msgstr "deactiveren"
461
 
462
- #: ../dashboard.php:1196
463
  msgid "not active"
464
  msgstr "niet actief"
465
 
466
- #: ../dashboard.php:1197 ../dashboard.php:1211
467
  msgid "disabled"
468
  msgstr "gedeactiveerd"
469
 
470
- #: ../dashboard.php:1202
471
  msgid "failed attempts"
472
  msgstr "mislukte pogingen"
473
 
474
- #: ../dashboard.php:1202 ../dashboard.php:1203
475
  msgid "in 24 hours"
476
  msgstr "in 24 uur"
477
 
478
- #: ../dashboard.php:1202 ../dashboard.php:1203
479
  msgid "view all"
480
  msgstr "bekijk alles"
481
 
482
- #: ../dashboard.php:1203
483
  msgid "lockouts"
484
  msgstr "uitsluitingen"
485
 
486
- #: ../dashboard.php:1205
487
  msgid "Lockouts at the moment"
488
  msgstr "Uitsluitingen op dit moment"
489
 
490
- #: ../dashboard.php:1206
491
  #, fuzzy
492
  msgid "Last lockout"
493
  msgstr "Recente uitsluiting"
494
 
495
- #: ../dashboard.php:1207 ../dashboard.php:1208 ../dashboard.php:1755
496
  msgid "entry"
497
  msgid_plural "entries"
498
  msgstr[0] "item"
499
  msgstr[1] "items"
500
 
501
- #: ../dashboard.php:1476
502
  #, fuzzy
503
  msgid "Confused about some settings?"
504
- msgstr "Verward over sommige instellingen?"
505
 
506
- #: ../dashboard.php:1477
507
  #, fuzzy
508
  msgid "You can easily load default recommended settings using button below"
509
  msgstr "Met onderstaande knop laad je de aanbevolen instellingen"
510
 
511
- #: ../dashboard.php:1479
512
  #, fuzzy
513
  msgid "Load default settings"
514
  msgstr "Aanbevolen instellingen laden"
515
 
516
- #: ../dashboard.php:1487
517
  msgid "doesn't affect Custom login URL and Access Lists"
518
  msgstr "heeft geen invloed op Aangepaste inlog-URL en Toegangslijsten"
519
 
520
- #: ../common.php:961
521
  msgid "New version is available"
522
  msgstr "Nieuwe versie beschikbaar"
523
 
524
  #. Name of the plugin
525
- #: ../dashboard.php:989 ../dashboard.php:1011
526
  msgid "WP Cerber"
527
  msgstr "WP Cerber"
528
 
529
- #: ../wp-cerber.php:3073
530
  msgid "WP Cerber notify"
531
  msgstr "WP Cerber melding"
532
 
533
- #: ../wp-cerber.php:3095
534
  msgid "Citadel mode is activated"
535
- msgstr "Citadel modus is actief"
536
 
537
- #: ../wp-cerber.php:3169
538
  msgid "New Custom login URL"
539
  msgstr "Nieuwe Aangepaste inlog-URL"
540
 
541
- #: ../wp-cerber.php:3822
542
  msgid "The WP Cerber requires PHP %s or higher. You are running"
543
  msgstr "WP Cerber vereist PHP %s of hoger. Je gebruikt nu"
544
 
545
- #: ../wp-cerber.php:3826
546
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
547
  msgstr "WP Cerber vereist WordPress %s of hoger. Je gebruikt nu"
548
 
549
- #: ../settings.php:98
550
  msgid "Use file"
551
  msgstr "Bestand gebruiken"
552
 
553
- #: ../settings.php:98
554
  msgid "Write failed login attempts to the file"
555
  msgstr "Mislukte pogingen opslaan in bestand"
556
 
557
- #: ../dashboard.php:1583
558
  msgid "Deactivate"
559
  msgstr "Deactiveren"
560
 
561
- #: ../dashboard.php:97 ../wp-cerber.php:3131
562
  msgid "Reason"
563
  msgstr "Reden"
564
 
565
- #: ../dashboard.php:170
566
  msgid "Add IP to the list"
567
  msgstr "IP-adres toevoegen aan lijst"
568
 
569
- #: ../dashboard.php:889
570
  msgid "Add IP to the Black List"
571
  msgstr "IP-adres toevoegen aan Uitsluitingslijst"
572
 
573
- #: ../common.php:766
574
  msgid "Attempt to access"
575
  msgstr "Poging tot toegang"
576
 
577
- #: ../common.php:765
578
  msgid "Limit on login attempts is reached"
579
  msgstr "Limiet voor aantal inlogpogingen is bereikt"
580
 
581
- #: ../common.php:721 ../common.php:767
582
  msgid "Attempt to log in with non-existent username"
583
  msgstr "Inlogpoging met onbekende gebruikersnaam"
584
 
585
- #: ../wp-cerber.php:3130
586
  msgid "Last lockout was added: %s for IP %s"
587
  msgstr "Laatste uitsluiting was toegevoegd: %s voor IP-adres %s"
588
 
589
- #: ../wp-cerber.php:3862 ../settings.php:391
590
  msgid "Hardening"
591
  msgstr "Versterking"
592
 
593
- #: ../dashboard.php:866
594
  msgid "Abuse email:"
595
  msgstr "E-mail voor misbruik:"
596
 
597
- #: ../settings.php:197 ../settings.php:228
598
  msgid "Email Address"
599
  msgstr "E-mailadres"
600
 
601
- #: ../settings.php:206
602
  msgid "if empty, the admin email %s will be used"
603
  msgstr "admin e-mail %s wordt gebruikt indien leeg"
604
 
605
- #: ../settings.php:101
606
  msgid "Drill down IP"
607
  msgstr "IP-adres onderzoeken"
608
 
609
- #: ../settings.php:101
610
  msgid "Retrieve extra WHOIS information for IP"
611
  msgstr "Haal extra WHOIS-informatie op voor IP-adres"
612
 
613
- #: ../settings.php:109
614
  msgid "Hardening WordPress"
615
  msgstr "Wordpress versterken"
616
 
617
- #: ../settings.php:110
618
  msgid "Stop user enumeration"
619
  msgstr "Stop nummering gebruikers"
620
 
621
- #: ../settings.php:111
622
  msgid "Disable XML-RPC"
623
  msgstr "XML-RPC uitschakelen"
624
 
625
- #: ../settings.php:111
626
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
627
  msgstr "Toegang tot XML-RPC server uitschakelen (inclusief Pingbacks en Trackbacks)"
628
 
629
- #: ../settings.php:112
630
  msgid "Disable feeds"
631
  msgstr "Feeds uitschakelen"
632
 
633
- #: ../settings.php:112
634
  msgid "Block access to the RSS, Atom and RDF feeds"
635
  msgstr "Blokkeer toegang tot de RSS-, Atom- en RDF-feeds"
636
 
637
- #: ../settings.php:113
638
  msgid "Disable REST API"
639
  msgstr "REST API uitschakelen"
640
 
641
- #: ../settings.php:350
642
  msgid "These settings do not affect hosts from the "
643
- msgstr "Deze instellingen gelden niet voor hosts van de"
644
 
645
- #: ../settings.php:867 ../settings.php:879
646
  msgid "<strong>ERROR</strong>: please enter a valid email address."
647
  msgstr "<strong>LET OP</strong>: voer een geldig e-mailadres in."
648
 
649
- #: ../wp-cerber.php:3161 ../wp-cerber.php:3851
650
  msgid "WP Cerber is now active and has started protecting your site"
651
  msgstr "WP Cerber is actief en beschermt nu je website"
652
 
653
- #: ../dashboard.php:98
654
  msgid "Action"
655
  msgstr "Actie"
656
 
657
- #: ../dashboard.php:133
658
  msgid "Nobody can log in or register from these IPs"
659
  msgstr "Niemand kan aanmelden of inloggen vanaf deze IP's"
660
 
661
- #: ../dashboard.php:196 ../dashboard.php:208
662
  msgid "Incorrect IP address or IP range"
663
  msgstr "IP-adres of -reeks is incorrect"
664
 
665
- #: ../dashboard.php:407 ../dashboard.php:1599
666
  msgid "Settings saved"
667
  msgstr "Instellingen opgeslagen"
668
 
669
- #: ../dashboard.php:870
670
  msgid "Network:"
671
  msgstr "Netwerk:"
672
 
673
- #: ../dashboard.php:884
674
  msgid "Add network to the Black List"
675
  msgstr "Netwerk toevoegen aan Uitsluitingslijst"
676
 
677
- #: ../dashboard.php:1582
678
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
679
- msgstr "Let op! Citadelmodus is actief; niemand kan inloggen."
680
 
681
- #: ../dashboard.php:313 ../dashboard.php:2573 ../whois.php:221 ../whois.php:252 ..
682
- #: common.php:764 ../common.php:1043
683
  msgid "Unknown"
684
  msgstr "Onbekend"
685
 
@@ -688,459 +689,460 @@ msgstr "Onbekend"
688
  msgid "Gregory"
689
  msgstr "Gregory"
690
 
691
- #: ../wp-cerber.php:545 ../wp-cerber.php:557 ../wp-cerber.php:564 ../wp-cerber.
692
- #: php:760 ../wp-cerber.php:976 ../wp-cerber.php:982 ../wp-cerber.php:987 ../wp-
693
- #: cerber.php:992 ../wp-cerber.php:998 ../wp-cerber.php:1005 ../wp-cerber.php:
694
- #: 1105 ../wp-cerber.php:1242 ../common.php:194 ../common.php:251 ../common.php:
695
- #: 255 ../settings.php:836
 
696
  msgid "ERROR:"
697
  msgstr "FOUT:"
698
 
699
- #: ../wp-cerber.php:574
700
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
701
  msgstr "Menselijke verificatie mislukt. Klik het vierkant in onderstaand reCAPTCHA-blok."
702
 
703
- #: ../wp-cerber.php:772
704
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
705
  msgstr "<strong>LET OP</strong>: je geeft een foutief wachtwoord op voor gebruiker %s."
706
 
707
- #: ../wp-cerber.php:993
708
  msgid "Username is not allowed. Please choose another one."
709
  msgstr "Gebruikersnaam is niet toegestaan, kies een andere."
710
 
711
- #: ../wp-cerber.php:3124
712
  msgid "unspecified"
713
  msgstr "niet gespecificeerd"
714
 
715
- #: ../wp-cerber.php:3127
716
  msgid "Number of lockouts is increasing"
717
  msgstr "Aantal uitsluitingen loopt op"
718
 
719
- #: ../wp-cerber.php:3132
720
  msgid "View activity for this IP"
721
  msgstr "Bekijk activiteit voor dit adres"
722
 
723
- #: ../wp-cerber.php:3136 ../wp-cerber.php:3138
724
  msgid "A new version of WP Cerber is available to install"
725
  msgstr "Nieuwe versie WP Cerber is klaar voor installatie"
726
 
727
- #: ../wp-cerber.php:3137
728
  msgid "Hi!"
729
  msgstr "Hallo!"
730
 
731
- #: ../wp-cerber.php:3140 ../wp-cerber.php:3151
732
  msgid "Website"
733
  msgstr "Website"
734
 
735
- #: ../wp-cerber.php:3143 ../wp-cerber.php:3144
736
  msgid "The WP Cerber security plugin has been deactivated"
737
  msgstr "WP Cerber is gedeactiveerd"
738
 
739
- #: ../wp-cerber.php:3146
740
  msgid "Not logged in"
741
  msgstr "Niet ingelogd"
742
 
743
- #: ../wp-cerber.php:3152
744
  msgid "By user"
745
  msgstr "Door gebruiker"
746
 
747
- #: ../wp-cerber.php:3153
748
  msgid "From IP address"
749
  msgstr "Van IP-adres"
750
 
751
- #: ../wp-cerber.php:3156
752
  msgid "From country"
753
  msgstr "Uit land"
754
 
755
- #: ../wp-cerber.php:3160
756
  msgid "The WP Cerber security plugin is now active"
757
  msgstr "WP Cerber is actief"
758
 
759
- #: ../wp-cerber.php:3852
760
  msgid "Your IP address is added to the"
761
  msgstr "Je IP-adres is toegevoegd aan de "
762
 
763
- #: ../wp-cerber.php:3864
764
  msgid "Import settings"
765
  msgstr "Instellingen importeren"
766
 
767
- #: ../settings.php:209
768
  msgid "Notification limit"
769
  msgstr "Limiet aan meldingen"
770
 
771
- #: ../settings.php:209
772
  msgid "notification letters allowed per hour (0 means unlimited)"
773
  msgstr "toegestaan aantal meldingen per uur (0=geen limiet)"
774
 
775
- #: ../settings.php:131
776
  msgid "User related settings"
777
  msgstr "Gebruikersinstellingen"
778
 
779
- #: ../settings.php:133
780
  msgid "Prohibited usernames"
781
  msgstr "Verboden gebruikersnamen"
782
 
783
- #: ../settings.php:139
784
  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."
785
  msgstr "Gebruikersnamen op deze lijst kunnen niet registreren of inloggen. IP-adressen die deze namen gebruiken, worden direct uitgesloten. Scheid namen met een komma."
786
 
787
- #: ../settings.php:141
788
  msgid "User session expire"
789
  msgstr "Gebruikerssessie eindigt"
790
 
791
- #: ../settings.php:141
792
  msgid "in minutes (leave empty to use default WP value)"
793
  msgstr "in minuten (leeg laten voor standaard WP-waarde)"
794
 
795
- #: ../settings.php:171
796
  msgid "reCAPTCHA settings"
797
  msgstr "reCAPTCHA-instellingen"
798
 
799
- #: ../settings.php:172
800
  msgid "Site key"
801
  msgstr "Site-sleutel"
802
 
803
- #: ../settings.php:173
804
  msgid "Secret key"
805
  msgstr "Geheime sleutel"
806
 
807
- #: ../settings.php:176
808
  msgid "Enable reCAPTCHA for WordPress registration form"
809
  msgstr "ReCAPTCHA instellen voor WordPress regstratieformulier"
810
 
811
- #: ../settings.php:179
812
  msgid "Lost password form"
813
  msgstr "Formulier voor zoekgeraakt wachtwoord"
814
 
815
- #: ../settings.php:182
816
  msgid "Login form"
817
  msgstr "Login-formulier"
818
 
819
- #: ../settings.php:182
820
  msgid "Enable reCAPTCHA for WordPress login form"
821
  msgstr "ReCAPTCHA inschakelen voor WordPress inlogpagina"
822
 
823
- #: ../settings.php:353
824
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
825
  msgstr "Haal eerst een Site-sleutel en Geheime Sleutel op van Google om reCAPTCHA te kunnen gebruiken"
826
 
827
- #: ../cerber-lab.php:709 ../settings.php:354
828
  msgid "Know more"
829
  msgstr "Meer weten"
830
 
831
- #: ../dashboard.php:989 ../settings.php:373
832
  msgid "WP Cerber Security"
833
  msgstr "WP Cerber Security"
834
 
835
- #: ../settings.php:393
836
  msgid "Users"
837
  msgstr "Gebruikers"
838
 
839
- #: ../common.php:688
840
  msgid "User created"
841
  msgstr "Gebruiker toegevoegd"
842
 
843
- #: ../dashboard.php:1430 ../common.php:689
844
  msgid "User registered"
845
  msgstr "Gebruiker geregistreerd"
846
 
847
- #: ../common.php:716
848
  msgid "reCAPTCHA verification failed"
849
  msgstr "reCAPTCHA verificatie mislukt"
850
 
851
- #: ../common.php:717
852
  msgid "reCAPTCHA settings are incorrect"
853
  msgstr "foutieve reCAPTCHA-instellingen"
854
 
855
  #. I see this line used where someone tries to log in from a blocked URL. So shouldn't this line be "Attempt to access from a prohibited URL" ?
856
- #: ../common.php:720
857
  msgid "Attempt to access prohibited URL"
858
  msgstr "Poging verboden URL te benaderen"
859
 
860
- #: ../common.php:722 ../common.php:768
861
  msgid "Attempt to log in with prohibited username"
862
  msgstr "Inlogpoging met verboden gebruikersnaam"
863
 
864
- #: ../settings.php:96
865
  msgid "Cerber Lab connection"
866
  msgstr "Cerber Lab verbinding"
867
 
868
- #: ../settings.php:96
869
  msgid "Send malicious IP addresses to the Cerber Lab"
870
  msgstr "Stuur kwaadaardige IP-adressen naar Cerber Lab"
871
 
872
- #: ../settings.php:97
873
  msgid "Cerber Lab protocol"
874
  msgstr "Cerber Lab protocol"
875
 
876
- #: ../settings.php:151 ../settings.php:176
877
  msgid "Registration form"
878
  msgstr "Registratieformulier"
879
 
880
- #: ../settings.php:177
881
  msgid "Enable reCAPTCHA for WooCommerce registration form"
882
  msgstr "ReCAPTCHA inschakelen voor WooCommerce registratie"
883
 
884
- #: ../settings.php:179
885
  msgid "Enable reCAPTCHA for WordPress lost password form"
886
  msgstr "ReCAPTCHA inschakelen om nieuw WordPress wachtwoord op te vragen"
887
 
888
- #: ../settings.php:180
889
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
890
  msgstr "ReCAPTCHA inschakelen om nieuw WooCommerce wachtwoord op te vragen"
891
 
892
- #: ../settings.php:183
893
  msgid "Enable reCAPTCHA for WooCommerce login form"
894
  msgstr "ReCAPTCHA inschakelen voor WooCommerce inlogpagina"
895
 
896
- #: ../common.php:718
897
  msgid "Request to the Google reCAPTCHA service failed"
898
  msgstr "Verzoek aan Google ReCAPTCHA-service"
899
 
900
- #: ../dashboard.php:1422 ../dashboard.php:1452
901
  msgid "View all"
902
  msgstr "Zie alle"
903
 
904
- #: ../dashboard.php:1453
905
  msgid "Recently locked out IP addresses"
906
  msgstr "Recent buitengesloten IP-adressen"
907
 
908
- #: ../cerber-lab.php:707
909
  msgid "OK, nail them all"
910
  msgstr "OK, zet ze allemaal vast"
911
 
912
- #: ../cerber-lab.php:708
913
  msgid "NO, maybe later"
914
  msgstr "Nee, misschien later"
915
 
916
- #: ../dashboard.php:991 ../dashboard.php:1226 ../dashboard.php:1775 ../settings.
917
- #: php:378
918
  msgid "Dashboard"
919
  msgstr "Dashboard"
920
 
921
- #: ../cerber-lab.php:705
922
  msgid "Want to make WP Cerber even more powerful?"
923
  msgstr "Wil je WP Cerber nog beter maken?"
924
 
925
- #: ../cerber-lab.php:706
926
  msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
927
- msgstr "Sta WP Cerber toe om kwaadaardige IP-adressen te delen met Cerber Lab. Zo kunnen we algoritmes ontwikkelen om WordPress steeds te beschermen tegen nieuwe bedreigingen en botnets. Je kunt je toestemming elk moment intrekken."
928
 
929
- #: ../dashboard.php:491
930
  msgid "IP address"
931
  msgstr "IP-adres"
932
 
933
- #: ../dashboard.php:491
934
  msgid "User login"
935
  msgstr "Gebruikers-login"
936
 
937
- #: ../dashboard.php:491
938
  msgid "User ID"
939
  msgstr "Gebruikers-ID"
940
 
941
- #: ../dashboard.php:676
942
  msgid "Export"
943
  msgstr "Export"
944
 
945
- #: ../dashboard.php:695
946
  msgid "Search for IP or username"
947
  msgstr "Zoek IP of gebruikersnaam"
948
 
949
- #: ../dashboard.php:695
950
  msgid "Filter"
951
  msgstr "Filter"
952
 
953
- #: ../dashboard.php:991
954
  msgid "Cerber Dashboard"
955
  msgstr "Cerber Dashboard"
956
 
957
- #: ../dashboard.php:1001
958
  msgid "Cerber tools"
959
  msgstr "Cerber tools"
960
 
961
- #: ../dashboard.php:1685
962
  msgid "Subscribe"
963
  msgstr "Inschrijven"
964
 
965
- #: ../dashboard.php:1686 ../cerber-tools.php:266
966
  msgid "Unsubscribe"
967
  msgstr "Uitschrijven"
968
 
969
- #: ../dashboard.php:1714
970
  msgid "You've subscribed"
971
  msgstr "Je bent ingeschreven"
972
 
973
- #: ../dashboard.php:1717
974
  msgid "You've unsubscribed"
975
  msgstr "Je bent uitgeschreven"
976
 
977
- #: ../wp-cerber.php:3173 ../wp-cerber.php:3174
978
  msgid "A new activity has been recorded"
979
  msgstr "Er is nieuwe activiteit waargenomen"
980
 
981
- #: ../wp-cerber.php:3637
982
  msgid "User"
983
  msgstr "Gebruiker"
984
 
985
- #: ../wp-cerber.php:3645
986
  msgid "Search string"
987
  msgstr "Zoekfrase"
988
 
989
- #: ../wp-cerber.php:3666
990
  msgid "To unsubscribe click here"
991
  msgstr "Klik om uit te schrijven"
992
 
993
- #: ../settings.php:100
994
  msgid "Preferences"
995
  msgstr "Voorkeuren"
996
 
997
- #: ../settings.php:102
998
  msgid "Date format"
999
  msgstr "Datumformaat"
1000
 
1001
- #: ../settings.php:102
1002
  msgid "if empty, the default format %s will be used"
1003
  msgstr "indien leeg, gebruiken we standaardinstelling %s"
1004
 
1005
- #: ../settings.php:211
1006
  msgid "Push notifications"
1007
  msgstr "Push meldingen"
1008
 
1009
- #: ../settings.php:194
1010
  msgid "Email notifications"
1011
  msgstr "E-mail meldingen"
1012
 
1013
- #: ../settings.php:201 ../settings.php:233 ../settings.php:290
1014
  msgid "Use comma to specify multiple values"
1015
  msgstr "Scheid meer waarden met komma's"
1016
 
1017
- #: ../settings.php:218
1018
  msgid "All connected devices"
1019
  msgstr "Alle verbonden apparaten"
1020
 
1021
- #: ../settings.php:219
1022
  msgid "No devices found"
1023
  msgstr "Geen apparaten gevonden"
1024
 
1025
- #: ../settings.php:221
1026
  msgid "Not available"
1027
  msgstr "Niet beschikbaar"
1028
 
1029
- #: ../common.php:714
1030
  msgid "Password reset requested"
1031
  msgstr "Wachtwoordvernieuwing aangevraagd"
1032
 
1033
- #: ../common.php:769
1034
  msgid "Limit on failed reCAPTCHA verifications is reached"
1035
  msgstr "Grens bereikt van foutieve reCAPTCHA's"
1036
 
1037
- #: ../common.php:827
1038
  msgid "%s ago"
1039
  msgstr "%s geleden"
1040
 
1041
- #: ../settings.php:74
1042
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
1043
  msgstr "Pas regels voor inlogbeperking toe op de Lijst Toegelaten IP-adressen"
1044
 
1045
- #: ../settings.php:83
1046
  msgid "Display 404 page"
1047
  msgstr "Toon 404-pagina"
1048
 
1049
- #: ../settings.php:174
1050
  msgid "Invisible reCAPTCHA"
1051
  msgstr "Onzichtbare reCAPTCHA"
1052
 
1053
- #: ../settings.php:174
1054
  msgid "Enable invisible reCAPTCHA"
1055
  msgstr "Zet onzichtbare reCAPTCHA aan"
1056
 
1057
- #: ../settings.php:174
1058
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
1059
  msgstr "(zet pas aan als je de Sitesleutel en Geheime Sleutel voor de onzichtbare versie hebt ontvangen)"
1060
 
1061
- #: ../settings.php:185
1062
  msgid "Enable reCAPTCHA for WordPress comment form"
1063
  msgstr "Zet reCAPTCHA aan voor WordPress reacties"
1064
 
1065
- #: ../settings.php:186
1066
  msgid "Disable reCAPTCHA for logged in users"
1067
  msgstr "Zet reCAPTCHA uit voor ingelogde gebruikers"
1068
 
1069
- #: ../settings.php:188
1070
  msgid "Limit attempts"
1071
  msgstr "Beperk aantal pogingen"
1072
 
1073
- #: ../settings.php:188
1074
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1075
  msgstr "Sluit IP-adressen uit voor %s minuten na %s mislukte pogingen in %s minuten"
1076
 
1077
- #: ../settings.php:347
1078
  msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
1079
- msgstr "In de Citadelmodus kunnen alleen adressen van de Lijst Toegelaten IP-adressen inloggen. Heeft geen effect op reeds ingelogde gebruikers."
1080
 
1081
- #: ../dashboard.php:491 ../dashboard.php:656
1082
  msgid "Event"
1083
  msgstr "Gebeurtenis"
1084
 
1085
- #: ../common.php:137
1086
  msgid "Spam comments denied"
1087
  msgstr "Spamreacties afgewezen"
1088
 
1089
- #: ../common.php:139
1090
  msgid "Malicious IP addresses detected"
1091
  msgstr "Kwaadaardige IP-adressen gevonden"
1092
 
1093
- #: ../common.php:140
1094
  msgid "Lockouts occurred"
1095
  msgstr "Uitsluitingen"
1096
 
1097
- #: ../dashboard.php:1431
1098
  msgid "All suspicious activity"
1099
  msgstr "Alle verdachte activiteit"
1100
 
1101
- #: ../wp-cerber.php:977 ../wp-cerber.php:983 ../wp-cerber.php:999 ../wp-cerber.
1102
- #: php:1006
1103
  msgid "You are not allowed to register."
1104
  msgstr "Je mag niet aanmelden."
1105
 
1106
- #: ../common.php:699
1107
  msgid "Spam comment denied"
1108
  msgstr "Spamreactie afgewezen."
1109
 
1110
- #: ../common.php:724
1111
  msgid "Attempt to log in denied"
1112
  msgstr "Inlogpoging afgewezen"
1113
 
1114
- #: ../common.php:725
1115
  msgid "Attempt to register denied"
1116
  msgstr "Aanmeldingspoging afgewezen"
1117
 
1118
- #: ../common.php:134
1119
  msgid "Malicious activities mitigated"
1120
  msgstr "Verdachte activiteiten afgevangen"
1121
 
1122
- #: ../dashboard.php:1000
1123
  msgid "Cerber antispam settings"
1124
  msgstr "Cerber Antispam-instellingen"
1125
 
1126
- #: ../dashboard.php:1000 ../dashboard.php:1229 ../wp-cerber.php:3861 ../settings.
1127
- #: php:185
1128
  msgid "Antispam"
1129
  msgstr "Antispam"
1130
 
1131
- #: ../settings.php:149
1132
  msgid "Cerber antispam engine"
1133
  msgstr "Cerber Antispam"
1134
 
1135
- #: ../settings.php:150
1136
  msgid "Comment form"
1137
  msgstr "Reactiepagina"
1138
 
1139
- #: ../settings.php:150
1140
  msgid "Protect comment form with bot detection engine"
1141
  msgstr "Bescherm invoer reacties met bot-detectie"
1142
 
1143
- #: ../settings.php:151
1144
  msgid "Protect registration form with bot detection engine"
1145
  msgstr "Bescherm registratiepagina met bot-detectie"
1146
 
@@ -1156,63 +1158,63 @@ msgstr "Diagnose"
1156
  msgid "License"
1157
  msgstr "Licentie"
1158
 
1159
- #: ../cerber-tools.php:336
1160
  msgid "Antispam and bot detection settings"
1161
  msgstr "Antispam- en botdetectie-instellingen"
1162
 
1163
- #: ../wp-cerber.php:1242
1164
  msgid "Sorry, human verification failed."
1165
  msgstr "Sorry, de verificatie faalt."
1166
 
1167
- #: ../common.php:770
1168
  msgid "Bot activity is detected"
1169
  msgstr "Bot-activiteit getedecteerd"
1170
 
1171
- #: ../settings.php:166
1172
  msgid "Comment processing"
1173
  msgstr "Verwerking van reactie"
1174
 
1175
- #: ../settings.php:167
1176
  msgid "If a spam comment detected"
1177
  msgstr "Bij detectie van een spam-reactie"
1178
 
1179
- #: ../settings.php:168
1180
  msgid "Trash spam comments"
1181
  msgstr "Spamreacties weggooien"
1182
 
1183
- #: ../settings.php:168
1184
  msgid "Move spam comments to trash after"
1185
  msgstr "Verwijder spamreacties na"
1186
 
1187
- #: ../common.php:700
1188
  msgid "Spam form submission denied"
1189
  msgstr "Geweigerd wegens spam"
1190
 
1191
- #: ../settings.php:152
1192
  msgid "Other forms"
1193
  msgstr "Andere formulieren"
1194
 
1195
- #: ../settings.php:152
1196
  msgid "Protect all forms on the website with bot detection engine"
1197
  msgstr "Bescherm alle invoerformulieren met bot-detectie"
1198
 
1199
- #: ../settings.php:154
1200
  msgid "Adjust antispam engine"
1201
  msgstr "Antispammechanisme aanpassen"
1202
 
1203
- #: ../settings.php:155
1204
  msgid "Safe mode"
1205
- msgstr "Veilige modus"
1206
 
1207
- #: ../settings.php:155
1208
  msgid "Use less restrictive policies (allow AJAX)"
1209
  msgstr "Minder restricties (sta AJAX toe)"
1210
 
1211
- #: ../dashboard.php:2840 ../settings.php:156
1212
  msgid "Logged in users"
1213
  msgstr "Ingelogde gebruikers"
1214
 
1215
- #: ../settings.php:156
1216
  msgid "Disable bot detection engine for logged in users"
1217
  msgstr "Zet bot-detectie uit voor ingelogde gebruikers"
1218
 
@@ -1221,57 +1223,57 @@ msgstr "Zet bot-detectie uit voor ingelogde gebruikers"
1221
  msgid "WP Cerber Security & Antispam"
1222
  msgstr "WP Cerber Security & Antispam"
1223
 
1224
- #: ../dashboard.php:95 ../dashboard.php:654
1225
  msgid "Country"
1226
  msgstr "Land"
1227
 
1228
- #: ../dashboard.php:686
1229
  msgid "All events"
1230
  msgstr "Alle gebeurtenissen"
1231
 
1232
- #: ../dashboard.php:997
1233
  msgid "Cerber Security Rules"
1234
  msgstr "Cerber Beveiligingsregels"
1235
 
1236
- #: ../dashboard.php:997 ../dashboard.php:2154
1237
  msgid "Security Rules"
1238
  msgstr "Beveiligingsregels"
1239
 
1240
- #: ../dashboard.php:1074
1241
  msgid "Failed login attempts"
1242
  msgstr "Gefaalde loginpogingen"
1243
 
1244
- #: ../dashboard.php:956 ../dashboard.php:1075
1245
  msgid "Registered"
1246
  msgstr "Geregistreerd"
1247
 
1248
- #: ../dashboard.php:1142
1249
  msgid "You"
1250
  msgstr "Jij"
1251
 
1252
- #: ../common.php:138
1253
  msgid "Spam form submissions denied"
1254
  msgstr "Spam formulierafgifte afgewezen "
1255
 
1256
- #: ../dashboard.php:1488 ../wp-cerber.php:3163 ../wp-cerber.php:3854
1257
  msgid "Getting Started Guide"
1258
  msgstr "Startgids"
1259
 
1260
- #: ../dashboard.php:2159
1261
  msgid "Countries"
1262
  msgstr "Landen"
1263
 
1264
- #: ../dashboard.php:2222
1265
  msgid "Permitted for one country"
1266
  msgid_plural "Permitted for %d countries"
1267
  msgstr[0] "Toegestaan voor één land"
1268
  msgstr[1] "Toegestaan voor %d landen"
1269
 
1270
- #: ../dashboard.php:2233
1271
  msgid "No rule"
1272
  msgstr "Geen regel"
1273
 
1274
- #: ../dashboard.php:2445
1275
  msgid "Security rules have been updated"
1276
  msgstr "Beveiligingsregels zijn vernieuwd"
1277
 
@@ -1280,224 +1282,224 @@ msgstr "Beveiligingsregels zijn vernieuwd"
1280
  msgid "https://wpcerber.com"
1281
  msgstr "https://wpcerber.com"
1282
 
1283
- #: ../common.php:701
1284
  msgid "Form submission denied"
1285
  msgstr "Formulierafgifte afgewezen"
1286
 
1287
- #: ../common.php:702
1288
  msgid "Comment denied"
1289
  msgstr "Commentaar afgewezen"
1290
 
1291
- #: ../common.php:728
1292
  msgid "Request to REST API denied"
1293
  msgstr "Verzoek aan REST API afgewezen"
1294
 
1295
- #: ../common.php:729
1296
  msgid "XML-RPC request denied"
1297
  msgstr "XML-RPC-verzoek afgewezen"
1298
 
1299
- #: ../common.php:733
1300
  msgid "Bot detected"
1301
  msgstr "Bot gedetecteerd"
1302
 
1303
- #: ../common.php:734
1304
  msgid "Citadel mode is active"
1305
- msgstr "Citadelmodus actief"
1306
 
1307
- #: ../common.php:739
1308
  msgid "Malicious activity detected"
1309
  msgstr "Verdachte activiteit gedetecteerd "
1310
 
1311
- #: ../common.php:740
1312
  msgid "Blocked by country rule"
1313
  msgstr "Geblokkeerd door landenregel"
1314
 
1315
- #: ../common.php:741
1316
  msgid "Limit reached"
1317
  msgstr "Limiet bereikt"
1318
 
1319
- #: ../common.php:742
1320
  msgid "Multiple suspicious activities"
1321
  msgstr "Meerdere verdachte activiteiten"
1322
 
1323
- #: ../common.php:771
1324
  msgid "Multiple suspicious activities were detected"
1325
  msgstr "Meerdere verdachte activiteiten gedetecteerd"
1326
 
1327
- #: ../settings.php:110
1328
  msgid "Block access to user pages like /?author=n and user data via REST API"
1329
  msgstr "Blokkeer toegang tot gebruikersgegevens en -pagina's als /?author=n via de REST API"
1330
 
1331
- #: ../settings.php:113
1332
  msgid "Block access to the WordPress REST API except the following"
1333
  msgstr "Blokkeer toegang naar de WordPress REST API behalve het volgende"
1334
 
1335
- #: ../settings.php:114
1336
  msgid "Allow REST API for logged in users"
1337
  msgstr "Sta REST API toe voor ingelogde gebruikers"
1338
 
1339
- #: ../settings.php:121
1340
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
1341
  msgstr "Geef toegestane REST API-naamruimtes op als de REST API is uitgeschakeld. Eén tekenreeks per regel."
1342
 
1343
- #: ../settings.php:132
1344
  msgid "Registration limit"
1345
  msgstr "Registratielimiet"
1346
 
1347
- #: ../settings.php:142
1348
  msgid "Sort users in dashboard"
1349
  msgstr "Gebruikers in dashboard sorteren"
1350
 
1351
- #: ../settings.php:142
1352
  msgid "by date of registration"
1353
  msgstr "per registratiedatum"
1354
 
1355
- #: ../settings.php:157
1356
  msgid "Query whitelist"
1357
  msgstr "Toegestane queries"
1358
 
1359
- #: ../settings.php:510 ../settings.php:632
1360
  msgid "%s allowed registrations in %s minutes from one IP"
1361
  msgstr "%s toegestane registraties in %s minuten van één IP"
1362
 
1363
- #: ../dashboard.php:2289
1364
  msgid "Start typing here to find a country"
1365
  msgstr "Begin te typen om een land te vinden"
1366
 
1367
- #: ../dashboard.php:2372
1368
  msgid "Click on a country name to add it to the list of selected countries"
1369
  msgstr "Klik op een landnaam om toe te voegen aan de lijst gekozen landen"
1370
 
1371
- #: ../dashboard.php:2396
1372
  msgid "Submit forms"
1373
  msgstr "Formulieren versturen"
1374
 
1375
- #: ../dashboard.php:2397
1376
  msgid "Post comments"
1377
  msgstr "Commentaar plaatsen"
1378
 
1379
- #: ../dashboard.php:2398
1380
  msgid "Log in to the website"
1381
  msgstr "Inloggen bij de website"
1382
 
1383
- #: ../dashboard.php:2399
1384
  msgid "Register on the website"
1385
  msgstr "Registreren bij de website"
1386
 
1387
- #: ../dashboard.php:2400
1388
  msgid "Use XML-RPC"
1389
  msgstr "Benut XML-RPC"
1390
 
1391
- #: ../dashboard.php:2401
1392
  msgid "Use REST API"
1393
  msgstr "Benut REST API"
1394
 
1395
- #: ../settings.php:167
1396
  msgid "Deny it completely"
1397
  msgstr "Volledig negeren"
1398
 
1399
- #: ../settings.php:167
1400
  msgid "Mark it as spam"
1401
  msgstr "Markeren als spam"
1402
 
1403
- #: ../dashboard.php:1416
1404
  msgid "in the last 24 hours"
1405
  msgstr "in de afgelopen 24 uur"
1406
 
1407
- #: ../dashboard.php:1776
1408
  msgid "Main settings"
1409
  msgstr "Hoofdinstellingen"
1410
 
1411
- #: ../settings.php:225
1412
  msgid "Weekly reports"
1413
  msgstr "Weekrapporten"
1414
 
1415
- #: ../settings.php:729
1416
  msgid "Sunday"
1417
  msgstr "zondag"
1418
 
1419
- #: ../settings.php:730
1420
  msgid "Monday"
1421
  msgstr "maandag"
1422
 
1423
- #: ../settings.php:731
1424
  msgid "Tuesday"
1425
  msgstr "dinsdag"
1426
 
1427
- #: ../settings.php:732
1428
  msgid "Wednesday"
1429
  msgstr "woensdag"
1430
 
1431
- #: ../settings.php:733
1432
  msgid "Thursday"
1433
  msgstr "donderdag"
1434
 
1435
- #: ../settings.php:734
1436
  msgid "Friday"
1437
  msgstr "vrijdag"
1438
 
1439
- #: ../settings.php:735
1440
  msgid "Saturday"
1441
  msgstr "zaterdag"
1442
 
1443
- #: ../settings.php:788 ../settings.php:789
1444
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1445
  msgstr "Gebruik je een caching plugin, dan moet je je nieuwe login URL toevoegen aan de niet te cachen pagina's."
1446
 
1447
  #. translators: preposition of time
1448
- #: ../settings.php:745
1449
  msgctxt "preposition of time"
1450
  msgid "at"
1451
  msgstr "op"
1452
 
1453
- #: ../wp-cerber.php:3179
1454
  msgid "Weekly report"
1455
  msgstr "Weekrapport"
1456
 
1457
- #: ../wp-cerber.php:3182
1458
  msgid "To change reporting settings visit"
1459
  msgstr "Om je rapportageinstellingen aan te passen, ga naar"
1460
 
1461
- #: ../wp-cerber.php:3208
1462
  msgid "Your login page:"
1463
  msgstr "Je login-pagina:"
1464
 
1465
- #: ../wp-cerber.php:3212
1466
  msgid "Your license is valid until"
1467
  msgstr "Je licentie geldt tot"
1468
 
1469
- #: ../wp-cerber.php:3323
1470
  msgid "Activity details"
1471
  msgstr "Details van activiteiten"
1472
 
1473
- #: ../settings.php:761
1474
  msgid "Click to send now"
1475
  msgstr "Klik om nu te versturen"
1476
 
1477
- #: ../wp-cerber.php:639
1478
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1479
  msgstr ">>> Vertaler van WP Cerber? Om een gratis Pro-licentie te krijgen, geef je contactinformatie op bij: https://wpcerber.com/contact/"
1480
 
1481
- #: ../dashboard.php:380
1482
  msgid "Email has been sent to"
1483
  msgstr "E-mail is verzonden naar"
1484
 
1485
- #: ../dashboard.php:383
1486
  msgid "Unable to send email to"
1487
  msgstr "Kan geen e-mail verzenden naar"
1488
 
1489
- #: ../dashboard.php:2225
1490
  msgid "Not permitted for one country"
1491
  msgid_plural "Not permitted for %d countries"
1492
  msgstr[0] "Niet toegestaan voor één land"
1493
  msgstr[1] "Niet toegestaan voor %d landen"
1494
 
1495
- #: ../dashboard.php:2376
1496
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1497
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1498
  msgstr "Gekozen landen mogen %s, overige landen niet"
1499
 
1500
- #: ../dashboard.php:2379
1501
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1502
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1503
  msgstr "Gekozen landen mogen niet %s, overige landen wel"
@@ -1507,226 +1509,310 @@ msgstr "Gekozen landen mogen niet %s, overige landen wel"
1507
  msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1508
  msgstr "Beschermt site tegen brute force-aanvallen, bots en hackers. Spambescherming met Cerber's antispamprogramma en reCAPTCHA. Uitgebreid beheer van gebruikersactiviteit. Beperk login op IP-adres. Limiteer login-pogingen. Meer: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
1509
 
1510
- #: ../wp-cerber.php:3311
1511
  msgid "Weekly Report"
1512
  msgstr "Weekrapport"
1513
 
1514
- #: ../settings.php:83
1515
  msgid "Use 404 template from the active theme"
1516
  msgstr "Gebruik 404-sjabloon van het actieve thema"
1517
 
1518
- #: ../settings.php:83
1519
  msgid "Display simple 404 page"
1520
  msgstr "Toon eenvoudige 404-pagina"
1521
 
1522
- #: ../settings.php:163
1523
  msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
1524
  msgstr "Voer een deel van een query-tekenreeks of -pad in om een request uit te sluiten van inspectie. Eén item per regel."
1525
 
1526
- #: ../settings.php:238
1527
  msgid "if empty, email from notification settings will be used"
1528
  msgstr "Indien leeg, gebruiken we de email van de meldingsinstellingen"
1529
 
1530
- #: ../settings.php:226
1531
  msgid "Enable reporting"
1532
  msgstr "Rapporteren aanzetten"
1533
 
1534
  #. How to interpret this line? Do you mean 'was DATE/TIME from IP ADDRESS' ?
1535
- #: ../wp-cerber.php:3236
1536
  msgid "Your last sign-in was %s from %s"
1537
  msgstr "Je laatste inlog was op %s vanaf %s"
1538
 
1539
- #: ../wp-cerber.php:3337
1540
  msgid "Attempts to log in with non-existent username"
1541
  msgstr "Pogingen om in te loggen met een onbekende gebruikersnaam"
1542
 
1543
- #: ../dashboard.php:169
1544
  msgid "IP address, IPv4 address range or subnet"
1545
  msgstr "IP adres, IPv4 adresreeks of subnet"
1546
 
1547
- #: ../dashboard.php:171
1548
  msgid "Optional comment for this entry"
1549
  msgstr "Opmerking hierbij"
1550
 
1551
- #: ../dashboard.php:212
1552
  msgid "You cannot add your IP address or network"
1553
  msgstr "Je kunt je eigen IP of netwerk niet toevoegen"
1554
 
1555
- #: ../cerber-news.php:153
1556
  msgid "Cool!"
1557
  msgstr "Mooi!"
1558
 
1559
- #: ../settings.php:139
1560
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1561
- msgstr "Sluit een patroon op in twee voorwaartse slashes om er een REGEX patroon van te maken."
1562
 
1563
- #: ../dashboard.php:993
1564
  msgid "Cerber Traffic Inspector"
1565
  msgstr "Cerber Verkeersinspectie"
1566
 
1567
- #: ../dashboard.php:993 ../dashboard.php:1212 ../dashboard.php:2494
1568
  msgid "Traffic Inspector"
1569
  msgstr "Verkeersinspectie"
1570
 
1571
- #: ../dashboard.php:1228
1572
  msgid "Traffic"
1573
  msgstr "Verkeer"
1574
 
1575
- #: ../dashboard.php:2499
1576
  msgid "Live traffic"
1577
  msgstr "Live verkeer"
1578
 
1579
- #: ../dashboard.php:2811
1580
  msgid "Request"
1581
  msgstr "Verzoek"
1582
 
1583
- #: ../dashboard.php:2813
1584
  msgid "Host Info"
1585
  msgstr "Host Info"
1586
 
1587
  #. Do you mean a program for browsing the web like Chrome? Or a ftp user agent or so?
1588
- #: ../dashboard.php:2814
1589
  msgid "User Agent"
1590
  msgstr "Webbrowser"
1591
 
1592
- #: ../dashboard.php:2839
1593
  msgid "All requests"
1594
  msgstr "Alle verzoeken"
1595
 
1596
- #: ../dashboard.php:2841
1597
  msgid "Not logged in visitors"
1598
  msgstr "Niet-ingelogde bezoekers"
1599
 
1600
- #: ../dashboard.php:2842
1601
  msgid "Form submissions"
1602
  msgstr "Formulierverzendingen"
1603
 
1604
- #: ../dashboard.php:2843
1605
  msgid "Page Not Found"
1606
  msgstr "Pagina niet gevonden"
1607
 
1608
- #: ../dashboard.php:2844
1609
  msgid "REST API"
1610
  msgstr "REST API"
1611
 
1612
- #: ../dashboard.php:2845
1613
  msgid "XML-RPC"
1614
  msgstr "XML-RPC"
1615
 
1616
- #: ../dashboard.php:2849
1617
  msgid "Longer than"
1618
  msgstr "Langer dan"
1619
 
1620
- #: ../dashboard.php:2862
1621
  msgid "Refresh"
1622
  msgstr "Ververs"
1623
 
1624
- #: ../common.php:101
1625
  msgid "Check for requests"
1626
  msgstr "Controleer op verzoeken"
1627
 
1628
- #: ../common.php:987
1629
  msgid "Not specified"
1630
  msgstr "Niet gespecificeerd"
1631
 
1632
- #: ../settings.php:262
1633
  msgid "Logging mode"
1634
  msgstr "Rapportagestand"
1635
 
1636
- #: ../settings.php:268
1637
  msgid "Logging disabled"
1638
  msgstr "Rapportage uit"
1639
 
1640
- #: ../settings.php:269
1641
  msgid "Smart"
1642
  msgstr "Slim"
1643
 
1644
- #: ../settings.php:270
1645
  msgid "All traffic"
1646
  msgstr "Alle verkeer"
1647
 
1648
- #: ../settings.php:274
1649
  msgid "Ignore crawlers"
1650
  msgstr "Negeer crawlers"
1651
 
1652
- #: ../settings.php:284
1653
  msgid "Mask these form fields"
1654
  msgstr "Verberg deze formuliervelden"
1655
 
1656
- #: ../settings.php:319
1657
  msgid "milliseconds"
1658
  msgstr "milliseconden"
1659
 
1660
- #: ../settings.php:246
1661
  msgid "Inspection"
1662
  msgstr "Inspectie"
1663
 
1664
- #: ../settings.php:247
1665
  msgid "Enable traffic inspection"
1666
  msgstr "Verkeersinspectie aanzetten"
1667
 
1668
- #: ../settings.php:261
1669
  msgid "Logging"
1670
  msgstr "Rapporteren"
1671
 
1672
- #: ../settings.php:279
1673
  msgid "Save request fields"
1674
  msgstr "Bewaar verzoekvelden"
1675
 
1676
- #: ../settings.php:314
1677
  msgid "Page generation time threshold"
1678
  msgstr "Drempeltijd paginaopbouw"
1679
 
1680
- #: ../dashboard.php:2831
1681
  msgid "No requests have been logged."
1682
  msgstr "Er zijn geen verzoeken geregistreerd."
1683
 
1684
- #: ../dashboard.php:1211
1685
  msgid "enabled"
1686
  msgstr "aan"
1687
 
1688
- #: ../dashboard.php:1215
1689
  msgid "no connection"
1690
  msgstr "geen verbinding"
1691
 
1692
- #: ../dashboard.php:3116
1693
  msgid "Advanced search"
1694
  msgstr "Geavanceerd zoeken"
1695
 
1696
- #: ../dashboard.php:949
1697
  msgid "Last seen"
1698
  msgstr "Laatst gezien"
1699
 
1700
  #. A fix for "Probing for vulnerable PHP script".
1701
- #: ../common.php:726 ../common.php:772
1702
  msgid "Probing for vulnerable PHP code"
1703
  msgstr "Op zoek naar kwetsbare PHP-code"
1704
 
1705
- #: ../dashboard.php:3097
1706
  msgid "Any"
1707
  msgstr "Enig"
1708
 
1709
- #: ../wp-cerber.php:2963
1710
  msgid "We're sorry, you are not allowed to proceed"
1711
  msgstr "Excuus, je mag niet doorgaan"
1712
 
1713
- #: ../settings.php:252
1714
  msgid "Request whitelist"
1715
  msgstr "Verzoek om whitelist"
1716
 
1717
- #: ../settings.php:258
1718
  msgid "Enter a request URI to exclude the request from inspection. One item per line."
1719
  msgstr "Voer een 'request URI' in om deze van inspectie uit te sluiten. Eén per regel."
1720
 
1721
- #: ../settings.php:295
1722
  msgid "Save request headers"
1723
  msgstr "Sla 'request headers' op"
1724
 
1725
- #: ../settings.php:301
1726
  msgid "Save $_SERVER"
1727
  msgstr "Sla $_SERVER op"
1728
 
1729
- #: ../settings.php:307
1730
  msgid "Save request cookies"
1731
  msgstr "Sla 'request cookies' op"
1732
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  "Language: nl\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
 
11
+ #: ../settings.php:73
12
  msgid "Limit login attempts"
13
  msgstr "Inlogpogingen beperken"
14
 
15
+ #: ../settings.php:74
16
  msgid "Attempts"
17
  msgstr "Pogingen"
18
 
19
+ #: ../settings.php:75
20
  msgid "Lockout duration"
21
+ msgstr "Duur uitsluiting"
22
 
23
+ #: ../settings.php:75 ../settings.php:101
24
  msgid "minutes"
25
  msgstr "minuten"
26
 
27
+ #: ../settings.php:76
28
  msgid "Aggressive lockout"
29
  msgstr "Agressieve uitsluiting"
30
 
31
+ #: ../settings.php:79
32
  msgid "Site connection"
33
  msgstr "Websiteverbinding"
34
 
35
+ #: ../settings.php:81
36
  msgid "Proactive security rules"
37
  msgstr "Proactieve beveiligingsregels"
38
 
39
+ #: ../settings.php:82
40
  msgid "Block subnet"
41
  msgstr "Subnet blokkeren"
42
 
43
+ #: ../settings.php:85
44
  msgid "Request wp-login.php"
45
  msgstr "Verzoek wp-login.php"
46
 
47
+ #: ../settings.php:85
48
  msgid "Immediately block IP after any request to wp-login.php"
49
  msgstr "IP meteen blokkeren bij verzoeken aan wp-login.php"
50
 
51
+ #: ../settings.php:84
52
  msgid "Redirect dashboard requests"
53
  msgstr "Dashboardverzoeken omleiden"
54
 
55
+ #: ../settings.php:88
56
  msgid "Custom login page"
57
  msgstr "Aangepaste inlogpagina"
58
 
59
+ #: ../settings.php:89
60
  msgid "Custom login URL"
61
  msgstr "Aangepaste inlog-URL"
62
 
63
+ #: ../settings.php:95
64
  msgid "must not overlap with the existing pages or posts slug"
65
  msgstr "mag niet overlappen met bestaande pagina's of post slugs"
66
 
67
+ #: ../settings.php:97
68
  msgid "Disable wp-login.php"
69
  msgstr "Wp-login.php uitschakelen"
70
 
71
+ #: ../settings.php:97
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:1221 ../settings.php:99
76
  msgid "Citadel mode"
77
+ msgstr "Citadelstand"
78
 
79
+ #: ../settings.php:100
80
  msgid "Threshold"
81
  msgstr "Drempelwaarde"
82
 
83
+ #: ../settings.php:101
84
  msgid "Duration"
85
  msgstr "Duur"
86
 
87
+ #: ../cerber-load.php:4100 ../settings.php:78 ../settings.php:102 ../settings.php:
88
+ #: 411
89
  msgid "Notifications"
90
  msgstr "Meldingen"
91
 
92
+ #: ../settings.php:102
93
  msgid "Send notification to admin email"
94
  msgstr "Melding versturen naar admin e-mailadres"
95
 
96
+ #: ../cerber-load.php:4097 ../settings.php:404 ../cerber-tools.php:92 ../cerber-
97
+ #: tools.php:101 ../cerber-tools.php:182
98
  msgid "Access Lists"
99
  msgstr "Toegangslijsten"
100
 
101
+ #: ../dashboard.php:1239 ../dashboard.php:1467 ../cerber-load.php:3844 ..
102
+ #: /settings.php:104 ../settings.php:395
103
  msgid "Activity"
104
  msgstr "Activiteit"
105
 
106
+ #: ../settings.php:399
107
  msgid "Lockouts"
108
  msgstr "Uitsluitingen"
109
 
110
+ #: ../settings.php:520 ../settings.php:642
111
  msgid "%s allowed retries in %s minutes"
112
  msgstr "%s toegestane pogingen in %s minuten"
113
 
114
+ #: ../settings.php:542 ../settings.php:664
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:129 ../dashboard.php:695 ../dashboard.php:2848 ../cerber-load.
119
+ #: php:3853
120
  msgid "IP"
121
  msgstr "IP"
122
 
123
+ #: ../dashboard.php:534 ../dashboard.php:698 ../dashboard.php:2846
124
  msgid "Date"
125
  msgstr "Datum"
126
 
127
+ #: ../dashboard.php:534 ../dashboard.php:700 ../dashboard.php:2851
128
  msgid "Local User"
129
  msgstr "Lokale gebruiker"
130
 
131
+ #: ../dashboard.php:534 ../dashboard.php:701 ../cerber-load.php:3861
132
  msgid "Username used"
133
  msgstr "Toegepaste gebruikersnaam"
134
 
135
+ #: ../dashboard.php:148
136
  msgid "Showing last %d records from %d"
137
  msgstr "Laatste %d records van %d"
138
 
139
+ #: ../common.php:798
140
  msgid "Logged in"
141
  msgstr "Ingelogd"
142
 
143
+ #: ../common.php:799
144
  msgid "Logged out"
145
  msgstr "Uitgelogd"
146
 
147
+ #: ../common.php:800
148
  msgid "Login failed"
149
  msgstr "Inloggen mislukt"
150
 
151
+ #: ../common.php:803
152
  msgid "IP blocked"
153
  msgstr "IP geblokkeerd"
154
 
155
+ #: ../common.php:804
156
  msgid "Subnet blocked"
157
  msgstr "Subnet geblokkeerd"
158
 
159
+ #: ../common.php:806
160
  msgid "Citadel activated!"
161
+ msgstr "Citadelstand geactiveerd!"
162
 
163
+ #: ../dashboard.php:675 ../dashboard.php:879 ../dashboard.php:2684 ../common.php:
164
+ #: 845
165
  #, fuzzy
166
  msgid "Locked out"
167
  msgstr "Buitengesloten"
168
 
169
+ #: ../common.php:846
170
  msgid "IP blacklisted"
171
  msgstr "IP uitgesloten"
172
 
173
+ #: ../common.php:821
174
  msgid "Password changed"
175
  msgstr "Wachtwoord veranderd"
176
 
177
+ #: ../dashboard.php:122 ../dashboard.php:195
178
  msgid "Remove"
179
  msgstr "Verwijderen"
180
 
181
+ #: ../dashboard.php:425
182
  msgid "Lockout for %s was removed"
183
  msgstr "Uitsluiting voor %s is verwijderd"
184
 
185
+ #: ../dashboard.php:167 ../dashboard.php:670 ../dashboard.php:873 ../dashboard.
186
+ #: php:1219 ../dashboard.php:2679 ../cerber-load.php:4089 ../settings.php:77 ..
187
+ #: /settings.php:365
188
  #, fuzzy
189
  msgid "White IP Access List"
190
+ msgstr "Lijst Toegelaten IP-adressen"
191
 
192
+ #: ../dashboard.php:169 ../dashboard.php:671 ../dashboard.php:876 ../dashboard.
193
+ #: php:1220 ../dashboard.php:2680
194
  #, fuzzy
195
  msgid "Black IP Access List"
196
  msgstr "Uitgesloten IP-adressen"
197
 
198
+ #: ../dashboard.php:201
199
  msgid "List is empty"
200
  msgstr "Lijst is leeg"
201
 
202
+ #: ../dashboard.php:238
203
  #, fuzzy
204
  msgid "Address %s was added to White IP Access List"
205
  msgstr "Adres %s toegevoegd aan de Lijst Toegelaten IP-adressen"
206
 
207
+ #: ../dashboard.php:252
208
  #, fuzzy
209
  msgid "Address %s was added to Black IP Access List"
210
  msgstr "Adres %s toegevoegd aan de Lijst Uitgesloten IP-adressen "
211
 
212
+ #: ../cerber-load.php:3326
213
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
214
+ msgstr "Citadelstand geactiveerd na %d mislukte inlogpogingen binnen %d minuten"
215
 
216
+ #: ../dashboard.php:1625
217
  #, fuzzy
218
  msgid "View Activity"
219
  msgstr "Activiteit bekijken"
220
 
221
+ #: ../dashboard.php:2530 ../cerber-tools.php:91 ../cerber-tools.php:100
222
  msgid "Settings"
223
  msgstr "Instellingen"
224
 
225
+ #: ../dashboard.php:1082
226
  #, fuzzy
227
  msgid "Last login"
228
  msgstr "Laatst ingelogd"
229
 
230
+ #: ../dashboard.php:1115 ../dashboard.php:1202
231
  msgid "Never"
232
  msgstr "Nooit"
233
 
234
+ #: ../dashboard.php:1513
235
  msgid "Are you sure?"
236
  msgstr "Weet je het zeker?"
237
 
238
+ #: ../dashboard.php:1307 ../settings.php:79
239
  msgid "My site is behind a reverse proxy"
240
  msgstr "Mijn website draait achter een reverse proxy"
241
 
242
+ #: ../settings.php:83
243
  msgid "Non-existent users"
244
  msgstr "Niet-bestaande gebruikers"
245
 
246
+ #: ../settings.php:83
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:84
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:351
255
  msgid "Make your protection smarter!"
256
  msgstr "Maak je bescherming slimmer!"
257
 
258
+ #: ../settings.php:355
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
+ #: ../settings.php:358
263
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
264
  msgstr "Pas op als je deze opties inschakelt! Vergeet je de aangepaste inlog-URL, dan kun je niet meer inloggen."
265
 
266
+ #: ../cerber-load.php:4096 ../settings.php:401
267
  msgid "Main Settings"
268
  msgstr "Hoofdinstellingen"
269
 
270
+ #: ../dashboard.php:2531 ../settings.php:413 ../cerber-tools.php:51
271
  msgid "Help"
272
  msgstr "Hulp"
273
 
274
+ #: ../settings.php:530 ../settings.php:652
275
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
276
  msgstr "Uitsluitingsduur ophogen naar %s uren na %s uitsluitingen in de laatste %s uren"
277
 
278
+ #: ../cerber-load.php:358
279
  msgid "You are not allowed to log in. Ask your administrator for assistance."
280
  msgstr "Je hebt geen toestemming om in te loggen. Vraag je beheerder om informatie."
281
 
282
+ #: ../cerber-load.php:364
283
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
284
  msgstr "Je hebt de limiet voor inlogpogingen bereikt. Probeer het opnieuw na %d minuten."
285
 
286
+ #: ../cerber-load.php:383
287
  msgid "You have only one attempt remaining."
288
  msgid_plural "You have %d attempts remaining."
289
  msgstr[0] "Slechts één inlogpoging resterend!"
290
  msgstr[1] "%s inlogpogingen resterend."
291
 
292
+ #: ../dashboard.php:723
293
  msgid "No activity has been logged."
294
  msgstr "Geen activiteit waargenomen."
295
 
296
+ #: ../dashboard.php:132
297
  msgid "Expires"
298
  msgstr "Verloopt"
299
 
300
+ #: ../dashboard.php:154
301
  #, fuzzy
302
  msgid "No lockouts at the moment. The sky is clear."
303
  msgstr "Momenteel geen uitsluitingen."
304
 
305
+ #: ../dashboard.php:167
306
  msgid "These IPs will never be locked out"
307
  msgstr "Deze IP's worden nooit geblokkeerd."
308
 
309
+ #: ../dashboard.php:176
310
  msgid "Your IP"
311
  msgstr "Jouw IP"
312
 
313
+ #: ../cerber-load.php:3327
314
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
315
  msgstr "Laatste mislukte inlogpoging was op %s vanaf IP %s op gebruiker %s."
316
 
317
+ #: ../cerber-load.php:4056
318
  msgid "Can't activate WP Cerber due to a database error."
319
  msgstr "Kan WP Cerber niet activeren door een fout in de database"
320
 
321
+ #: ../settings.php:537 ../settings.php:659
322
  msgid "Notify admin if the number of active lockouts above"
323
  msgstr "Waarschuw de beheerder als het aantal actieve uitsluitingen stijgt tot boven"
324
 
325
+ #: ../settings.php:105 ../settings.php:179 ../settings.php:341
326
  msgid "days"
327
  msgstr "dagen"
328
 
329
+ #: ../dashboard.php:1172
330
  msgid "Cerber Quick View"
331
  msgstr "Cerber Quick View"
332
 
333
+ #: ../dashboard.php:150
334
  msgid "Hint"
335
  msgstr "Tip"
336
 
337
+ #: ../dashboard.php:150
338
  msgid "To view activity, click on the IP"
339
  msgstr "Klik op het IP om activiteiten te bekijken"
340
 
341
+ #: ../dashboard.php:194 ../dashboard.php:886 ../dashboard.php:913 ../dashboard.
342
+ #: php:1005
343
  msgid "Check for activity"
344
  msgstr "Check voor activiteit"
345
 
346
+ #: ../settings.php:82
347
  msgid "Always block entire subnet Class C of intruders IP"
348
  msgstr "Altijd gehele IP Class C subnet blokkeren van aanvaller"
349
 
350
+ #: ../settings.php:102 ../settings.php:539 ../settings.php:661
351
  msgid "Click to send test"
352
  msgstr "Klik om test te verzenden"
353
 
354
+ #: ../settings.php:814 ../settings.php:815
355
  msgid "Attention! You have changed the login URL! The new login URL is"
356
  msgstr "Let op! Je hebt de inlog-URL veranderd. De nieuwe inlog-URL is"
357
 
358
+ #: ../dashboard.php:1081
359
  msgid "Comments"
360
  msgstr "Reacties"
361
 
362
+ #: ../common.php:1078
363
  msgid "Update to version %s of WP Cerber"
364
  msgstr "WP Cerber updaten naar versie %s"
365
 
366
+ #: ../cerber-load.php:3328 ../cerber-load.php:3885
367
  msgid "View activity in dashboard"
368
  msgstr "Activiteiten bekijken in dashboard"
369
 
370
+ #: ../cerber-load.php:3358
371
  msgid "Number of active lockouts"
372
  msgstr "Aantal actieve uitsluitingen"
373
 
374
+ #: ../cerber-load.php:3362
375
  msgid "View lockouts in dashboard"
376
  msgstr "Uitsluitingen bekijken in dashboard"
377
 
378
+ #: ../cerber-load.php:3444
379
  msgid "This message was sent by"
380
  msgstr "Dit bericht is verzonden door"
381
 
382
+ #: ../dashboard.php:64 ../cerber-tools.php:43
383
  msgid "Tools"
384
  msgstr "Gereedschap"
385
 
386
+ #: ../cerber-tools.php:88
387
  msgid "Export settings to the file"
388
  msgstr "Instellingen exporteren naar bestand"
389
 
390
+ #: ../cerber-tools.php:89
391
  msgid "When you click the button below you will get a configuration file, which you can upload on another site."
392
  msgstr "Met onderstaande knop genereer je een configuratiebestand dat je bij een andere site kunt uploaden."
393
 
394
+ #: ../cerber-tools.php:90
395
  msgid "What do you want to export?"
396
  msgstr "Wat wil je exporteren?"
397
 
398
+ #: ../cerber-tools.php:93
399
  msgid "Download file"
400
  msgstr "Bestand downloaden"
401
 
402
+ #: ../cerber-tools.php:95
403
  msgid "Import settings from the file"
404
  msgstr "Instellingen importeren van bestand"
405
 
406
+ #: ../cerber-tools.php:96
407
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
408
  msgstr "Via onderstaande knop laad je het bestand en overschrijf je alle bestaande instellingen."
409
 
410
+ #: ../cerber-tools.php:97
411
  msgid "Select file to import."
412
  msgstr "Kies bestand om te importeren"
413
 
414
+ #: ../cerber-tools.php:97
415
  msgid "Maximum upload file size: %s."
416
  msgstr "Maximum bestandsgrootte: %s"
417
 
418
+ #: ../cerber-tools.php:100
419
  msgid "What do you want to import?"
420
  msgstr "Wat wil je importeren?"
421
 
422
+ #: ../cerber-tools.php:102
423
  msgid "Upload file"
424
  msgstr "Bestand uploaden"
425
 
426
+ #: ../cerber-tools.php:149
427
  msgid "No file was uploaded or file is corrupted"
428
  msgstr "Geen bestand geüpload of bestand is beschadigd."
429
 
430
+ #: ../cerber-tools.php:182
431
  msgid "Error while updating"
432
  msgstr "Foutmelding tijdens updaten"
433
 
434
+ #: ../cerber-tools.php:185
435
  msgid "Settings has imported successfully from"
436
  msgstr "Instellingen geïmporteerd van"
437
 
438
+ #: ../cerber-tools.php:189
439
  msgid "Error while parsing file"
440
  msgstr "Fout bij verwerken bestand"
441
 
442
+ #: ../dashboard.php:130 ../dashboard.php:696
443
  msgid "Hostname"
444
  msgstr "Hostnaam"
445
 
446
+ #: ../dashboard.php:391
447
  msgid "unknown"
448
  msgstr "onbekend"
449
 
450
+ #: ../settings.php:105 ../settings.php:337
451
  #, fuzzy
452
  msgid "Keep records for"
453
  msgstr "Gegevens behouden tot"
454
 
455
+ #: ../dashboard.php:1206 ../dashboard.php:1227
456
  msgid "active"
457
  msgstr "actief"
458
 
459
+ #: ../dashboard.php:1206
460
  msgid "deactivate"
461
  msgstr "deactiveren"
462
 
463
+ #: ../dashboard.php:1208
464
  msgid "not active"
465
  msgstr "niet actief"
466
 
467
+ #: ../dashboard.php:1209 ../dashboard.php:1223
468
  msgid "disabled"
469
  msgstr "gedeactiveerd"
470
 
471
+ #: ../dashboard.php:1214
472
  msgid "failed attempts"
473
  msgstr "mislukte pogingen"
474
 
475
+ #: ../dashboard.php:1214 ../dashboard.php:1215
476
  msgid "in 24 hours"
477
  msgstr "in 24 uur"
478
 
479
+ #: ../dashboard.php:1214 ../dashboard.php:1215
480
  msgid "view all"
481
  msgstr "bekijk alles"
482
 
483
+ #: ../dashboard.php:1215
484
  msgid "lockouts"
485
  msgstr "uitsluitingen"
486
 
487
+ #: ../dashboard.php:1217
488
  msgid "Lockouts at the moment"
489
  msgstr "Uitsluitingen op dit moment"
490
 
491
+ #: ../dashboard.php:1218
492
  #, fuzzy
493
  msgid "Last lockout"
494
  msgstr "Recente uitsluiting"
495
 
496
+ #: ../dashboard.php:1219 ../dashboard.php:1220 ../dashboard.php:1796
497
  msgid "entry"
498
  msgid_plural "entries"
499
  msgstr[0] "item"
500
  msgstr[1] "items"
501
 
502
+ #: ../dashboard.php:1508
503
  #, fuzzy
504
  msgid "Confused about some settings?"
505
+ msgstr "Onzeker over sommige instellingen?"
506
 
507
+ #: ../dashboard.php:1509
508
  #, fuzzy
509
  msgid "You can easily load default recommended settings using button below"
510
  msgstr "Met onderstaande knop laad je de aanbevolen instellingen"
511
 
512
+ #: ../dashboard.php:1511
513
  #, fuzzy
514
  msgid "Load default settings"
515
  msgstr "Aanbevolen instellingen laden"
516
 
517
+ #: ../dashboard.php:1519
518
  msgid "doesn't affect Custom login URL and Access Lists"
519
  msgstr "heeft geen invloed op Aangepaste inlog-URL en Toegangslijsten"
520
 
521
+ #: ../common.php:1071 ../settings.php:221
522
  msgid "New version is available"
523
  msgstr "Nieuwe versie beschikbaar"
524
 
525
  #. Name of the plugin
526
+ #: ../dashboard.php:52 ../dashboard.php:76
527
  msgid "WP Cerber"
528
  msgstr "WP Cerber"
529
 
530
+ #: ../cerber-load.php:3302
531
  msgid "WP Cerber notify"
532
  msgstr "WP Cerber melding"
533
 
534
+ #: ../cerber-load.php:3324
535
  msgid "Citadel mode is activated"
536
+ msgstr "Citadelstand is actief"
537
 
538
+ #: ../cerber-load.php:3398
539
  msgid "New Custom login URL"
540
  msgstr "Nieuwe Aangepaste inlog-URL"
541
 
542
+ #: ../cerber-load.php:4043
543
  msgid "The WP Cerber requires PHP %s or higher. You are running"
544
  msgstr "WP Cerber vereist PHP %s of hoger. Je gebruikt nu"
545
 
546
+ #: ../cerber-load.php:4047
547
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
548
  msgstr "WP Cerber vereist WordPress %s of hoger. Je gebruikt nu"
549
 
550
+ #: ../settings.php:108
551
  msgid "Use file"
552
  msgstr "Bestand gebruiken"
553
 
554
+ #: ../settings.php:108
555
  msgid "Write failed login attempts to the file"
556
  msgstr "Mislukte pogingen opslaan in bestand"
557
 
558
+ #: ../dashboard.php:1624
559
  msgid "Deactivate"
560
  msgstr "Deactiveren"
561
 
562
+ #: ../dashboard.php:133 ../cerber-load.php:3360
563
  msgid "Reason"
564
  msgstr "Reden"
565
 
566
+ #: ../dashboard.php:206
567
  msgid "Add IP to the list"
568
  msgstr "IP-adres toevoegen aan lijst"
569
 
570
+ #: ../dashboard.php:932
571
  msgid "Add IP to the Black List"
572
  msgstr "IP-adres toevoegen aan Uitsluitingslijst"
573
 
574
+ #: ../common.php:876
575
  msgid "Attempt to access"
576
  msgstr "Poging tot toegang"
577
 
578
+ #: ../common.php:875
579
  msgid "Limit on login attempts is reached"
580
  msgstr "Limiet voor aantal inlogpogingen is bereikt"
581
 
582
+ #: ../common.php:829 ../common.php:877
583
  msgid "Attempt to log in with non-existent username"
584
  msgstr "Inlogpoging met onbekende gebruikersnaam"
585
 
586
+ #: ../cerber-load.php:3359
587
  msgid "Last lockout was added: %s for IP %s"
588
  msgstr "Laatste uitsluiting was toegevoegd: %s voor IP-adres %s"
589
 
590
+ #: ../cerber-load.php:4099 ../settings.php:406
591
  msgid "Hardening"
592
  msgstr "Versterking"
593
 
594
+ #: ../dashboard.php:909
595
  msgid "Abuse email:"
596
  msgstr "E-mail voor misbruik:"
597
 
598
+ #: ../settings.php:208 ../settings.php:243
599
  msgid "Email Address"
600
  msgstr "E-mailadres"
601
 
602
+ #: ../settings.php:217
603
  msgid "if empty, the admin email %s will be used"
604
  msgstr "admin e-mail %s wordt gebruikt indien leeg"
605
 
606
+ #: ../settings.php:111
607
  msgid "Drill down IP"
608
  msgstr "IP-adres onderzoeken"
609
 
610
+ #: ../settings.php:111
611
  msgid "Retrieve extra WHOIS information for IP"
612
  msgstr "Haal extra WHOIS-informatie op voor IP-adres"
613
 
614
+ #: ../settings.php:119
615
  msgid "Hardening WordPress"
616
  msgstr "Wordpress versterken"
617
 
618
+ #: ../settings.php:120
619
  msgid "Stop user enumeration"
620
  msgstr "Stop nummering gebruikers"
621
 
622
+ #: ../settings.php:122
623
  msgid "Disable XML-RPC"
624
  msgstr "XML-RPC uitschakelen"
625
 
626
+ #: ../settings.php:122
627
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
628
  msgstr "Toegang tot XML-RPC server uitschakelen (inclusief Pingbacks en Trackbacks)"
629
 
630
+ #: ../settings.php:123
631
  msgid "Disable feeds"
632
  msgstr "Feeds uitschakelen"
633
 
634
+ #: ../settings.php:123
635
  msgid "Block access to the RSS, Atom and RDF feeds"
636
  msgstr "Blokkeer toegang tot de RSS-, Atom- en RDF-feeds"
637
 
638
+ #: ../settings.php:124
639
  msgid "Disable REST API"
640
  msgstr "REST API uitschakelen"
641
 
642
+ #: ../settings.php:365
643
  msgid "These settings do not affect hosts from the "
644
+ msgstr "Deze instellingen gelden niet voor hosts van de "
645
 
646
+ #: ../settings.php:895 ../settings.php:907
647
  msgid "<strong>ERROR</strong>: please enter a valid email address."
648
  msgstr "<strong>LET OP</strong>: voer een geldig e-mailadres in."
649
 
650
+ #: ../cerber-load.php:3390 ../cerber-load.php:4088
651
  msgid "WP Cerber is now active and has started protecting your site"
652
  msgstr "WP Cerber is actief en beschermt nu je website"
653
 
654
+ #: ../dashboard.php:134
655
  msgid "Action"
656
  msgstr "Actie"
657
 
658
+ #: ../dashboard.php:169
659
  msgid "Nobody can log in or register from these IPs"
660
  msgstr "Niemand kan aanmelden of inloggen vanaf deze IP's"
661
 
662
+ #: ../dashboard.php:232 ../dashboard.php:244
663
  msgid "Incorrect IP address or IP range"
664
  msgstr "IP-adres of -reeks is incorrect"
665
 
666
+ #: ../dashboard.php:441 ../dashboard.php:1640
667
  msgid "Settings saved"
668
  msgstr "Instellingen opgeslagen"
669
 
670
+ #: ../dashboard.php:913
671
  msgid "Network:"
672
  msgstr "Netwerk:"
673
 
674
+ #: ../dashboard.php:927
675
  msgid "Add network to the Black List"
676
  msgstr "Netwerk toevoegen aan Uitsluitingslijst"
677
 
678
+ #: ../dashboard.php:1623
679
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
680
+ msgstr "Let op! Citadelstand is actief; niemand kan inloggen."
681
 
682
+ #: ../dashboard.php:349 ../dashboard.php:2609 ../whois.php:221 ../whois.php:252 ..
683
+ #: /common.php:874 ../common.php:1153
684
  msgid "Unknown"
685
  msgstr "Onbekend"
686
 
689
  msgid "Gregory"
690
  msgstr "Gregory"
691
 
692
+ #: ../common.php:203 ../common.php:260 ../common.php:265 ../common.php:270 ..
693
+ #: /cerber-load.php:666 ../cerber-load.php:678 ../cerber-load.php:685 ../cerber-
694
+ #: load.php:926 ../cerber-load.php:1143 ../cerber-load.php:1149 ../cerber-load.
695
+ #: php:1154 ../cerber-load.php:1159 ../cerber-load.php:1165 ../cerber-load.php:
696
+ #: 1172 ../cerber-load.php:1272 ../cerber-load.php:1409 ../settings.php:793 ..
697
+ #: /settings.php:864
698
  msgid "ERROR:"
699
  msgstr "FOUT:"
700
 
701
+ #: ../cerber-load.php:695
702
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
703
  msgstr "Menselijke verificatie mislukt. Klik het vierkant in onderstaand reCAPTCHA-blok."
704
 
705
+ #: ../cerber-load.php:938
706
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
707
  msgstr "<strong>LET OP</strong>: je geeft een foutief wachtwoord op voor gebruiker %s."
708
 
709
+ #: ../cerber-load.php:1160
710
  msgid "Username is not allowed. Please choose another one."
711
  msgstr "Gebruikersnaam is niet toegestaan, kies een andere."
712
 
713
+ #: ../cerber-load.php:3353
714
  msgid "unspecified"
715
  msgstr "niet gespecificeerd"
716
 
717
+ #: ../cerber-load.php:3356
718
  msgid "Number of lockouts is increasing"
719
  msgstr "Aantal uitsluitingen loopt op"
720
 
721
+ #: ../cerber-load.php:3361
722
  msgid "View activity for this IP"
723
  msgstr "Bekijk activiteit voor dit adres"
724
 
725
+ #: ../cerber-load.php:3365 ../cerber-load.php:3367
726
  msgid "A new version of WP Cerber is available to install"
727
  msgstr "Nieuwe versie WP Cerber is klaar voor installatie"
728
 
729
+ #: ../cerber-load.php:3366
730
  msgid "Hi!"
731
  msgstr "Hallo!"
732
 
733
+ #: ../cerber-load.php:3369 ../cerber-load.php:3380
734
  msgid "Website"
735
  msgstr "Website"
736
 
737
+ #: ../cerber-load.php:3372 ../cerber-load.php:3373
738
  msgid "The WP Cerber security plugin has been deactivated"
739
  msgstr "WP Cerber is gedeactiveerd"
740
 
741
+ #: ../cerber-load.php:3375
742
  msgid "Not logged in"
743
  msgstr "Niet ingelogd"
744
 
745
+ #: ../cerber-load.php:3381
746
  msgid "By user"
747
  msgstr "Door gebruiker"
748
 
749
+ #: ../cerber-load.php:3382
750
  msgid "From IP address"
751
  msgstr "Van IP-adres"
752
 
753
+ #: ../cerber-load.php:3385
754
  msgid "From country"
755
  msgstr "Uit land"
756
 
757
+ #: ../cerber-load.php:3389
758
  msgid "The WP Cerber security plugin is now active"
759
  msgstr "WP Cerber is actief"
760
 
761
+ #: ../cerber-load.php:4089
762
  msgid "Your IP address is added to the"
763
  msgstr "Je IP-adres is toegevoegd aan de "
764
 
765
+ #: ../cerber-load.php:4101
766
  msgid "Import settings"
767
  msgstr "Instellingen importeren"
768
 
769
+ #: ../settings.php:220
770
  msgid "Notification limit"
771
  msgstr "Limiet aan meldingen"
772
 
773
+ #: ../settings.php:220
774
  msgid "notification letters allowed per hour (0 means unlimited)"
775
  msgstr "toegestaan aantal meldingen per uur (0=geen limiet)"
776
 
777
+ #: ../settings.php:142
778
  msgid "User related settings"
779
  msgstr "Gebruikersinstellingen"
780
 
781
+ #: ../settings.php:144
782
  msgid "Prohibited usernames"
783
  msgstr "Verboden gebruikersnamen"
784
 
785
+ #: ../settings.php:150
786
  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."
787
  msgstr "Gebruikersnamen op deze lijst kunnen niet registreren of inloggen. IP-adressen die deze namen gebruiken, worden direct uitgesloten. Scheid namen met een komma."
788
 
789
+ #: ../settings.php:152
790
  msgid "User session expire"
791
  msgstr "Gebruikerssessie eindigt"
792
 
793
+ #: ../settings.php:152
794
  msgid "in minutes (leave empty to use default WP value)"
795
  msgstr "in minuten (leeg laten voor standaard WP-waarde)"
796
 
797
+ #: ../settings.php:182
798
  msgid "reCAPTCHA settings"
799
  msgstr "reCAPTCHA-instellingen"
800
 
801
+ #: ../settings.php:183
802
  msgid "Site key"
803
  msgstr "Site-sleutel"
804
 
805
+ #: ../settings.php:184
806
  msgid "Secret key"
807
  msgstr "Geheime sleutel"
808
 
809
+ #: ../settings.php:187
810
  msgid "Enable reCAPTCHA for WordPress registration form"
811
  msgstr "ReCAPTCHA instellen voor WordPress regstratieformulier"
812
 
813
+ #: ../settings.php:190
814
  msgid "Lost password form"
815
  msgstr "Formulier voor zoekgeraakt wachtwoord"
816
 
817
+ #: ../settings.php:193
818
  msgid "Login form"
819
  msgstr "Login-formulier"
820
 
821
+ #: ../settings.php:193
822
  msgid "Enable reCAPTCHA for WordPress login form"
823
  msgstr "ReCAPTCHA inschakelen voor WordPress inlogpagina"
824
 
825
+ #: ../settings.php:368
826
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
827
  msgstr "Haal eerst een Site-sleutel en Geheime Sleutel op van Google om reCAPTCHA te kunnen gebruiken"
828
 
829
+ #: ../cerber-lab.php:720 ../settings.php:369
830
  msgid "Know more"
831
  msgstr "Meer weten"
832
 
833
+ #: ../dashboard.php:52 ../settings.php:388
834
  msgid "WP Cerber Security"
835
  msgstr "WP Cerber Security"
836
 
837
+ #: ../settings.php:408
838
  msgid "Users"
839
  msgstr "Gebruikers"
840
 
841
+ #: ../common.php:796
842
  msgid "User created"
843
  msgstr "Gebruiker toegevoegd"
844
 
845
+ #: ../dashboard.php:1460 ../common.php:797
846
  msgid "User registered"
847
  msgstr "Gebruiker geregistreerd"
848
 
849
+ #: ../common.php:824
850
  msgid "reCAPTCHA verification failed"
851
  msgstr "reCAPTCHA verificatie mislukt"
852
 
853
+ #: ../common.php:825
854
  msgid "reCAPTCHA settings are incorrect"
855
  msgstr "foutieve reCAPTCHA-instellingen"
856
 
857
  #. 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" ?
858
+ #: ../common.php:828
859
  msgid "Attempt to access prohibited URL"
860
  msgstr "Poging verboden URL te benaderen"
861
 
862
+ #: ../common.php:830 ../common.php:878
863
  msgid "Attempt to log in with prohibited username"
864
  msgstr "Inlogpoging met verboden gebruikersnaam"
865
 
866
+ #: ../settings.php:106
867
  msgid "Cerber Lab connection"
868
  msgstr "Cerber Lab verbinding"
869
 
870
+ #: ../settings.php:106
871
  msgid "Send malicious IP addresses to the Cerber Lab"
872
  msgstr "Stuur kwaadaardige IP-adressen naar Cerber Lab"
873
 
874
+ #: ../settings.php:107
875
  msgid "Cerber Lab protocol"
876
  msgstr "Cerber Lab protocol"
877
 
878
+ #: ../settings.php:162 ../settings.php:187
879
  msgid "Registration form"
880
  msgstr "Registratieformulier"
881
 
882
+ #: ../settings.php:188
883
  msgid "Enable reCAPTCHA for WooCommerce registration form"
884
  msgstr "ReCAPTCHA inschakelen voor WooCommerce registratie"
885
 
886
+ #: ../settings.php:190
887
  msgid "Enable reCAPTCHA for WordPress lost password form"
888
  msgstr "ReCAPTCHA inschakelen om nieuw WordPress wachtwoord op te vragen"
889
 
890
+ #: ../settings.php:191
891
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
892
  msgstr "ReCAPTCHA inschakelen om nieuw WooCommerce wachtwoord op te vragen"
893
 
894
+ #: ../settings.php:194
895
  msgid "Enable reCAPTCHA for WooCommerce login form"
896
  msgstr "ReCAPTCHA inschakelen voor WooCommerce inlogpagina"
897
 
898
+ #: ../common.php:826
899
  msgid "Request to the Google reCAPTCHA service failed"
900
  msgstr "Verzoek aan Google ReCAPTCHA-service"
901
 
902
+ #: ../dashboard.php:1452 ../dashboard.php:1482
903
  msgid "View all"
904
  msgstr "Zie alle"
905
 
906
+ #: ../dashboard.php:1483
907
  msgid "Recently locked out IP addresses"
908
  msgstr "Recent buitengesloten IP-adressen"
909
 
910
+ #: ../cerber-lab.php:718
911
  msgid "OK, nail them all"
912
  msgstr "OK, zet ze allemaal vast"
913
 
914
+ #: ../cerber-lab.php:719
915
  msgid "NO, maybe later"
916
  msgstr "Nee, misschien later"
917
 
918
+ #: ../dashboard.php:54 ../dashboard.php:1238 ../dashboard.php:1816 ../settings.
919
+ #: php:393
920
  msgid "Dashboard"
921
  msgstr "Dashboard"
922
 
923
+ #: ../cerber-lab.php:716
924
  msgid "Want to make WP Cerber even more powerful?"
925
  msgstr "Wil je WP Cerber nog beter maken?"
926
 
927
+ #: ../cerber-lab.php:717
928
  msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
929
+ msgstr "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."
930
 
931
+ #: ../dashboard.php:534
932
  msgid "IP address"
933
  msgstr "IP-adres"
934
 
935
+ #: ../dashboard.php:534
936
  msgid "User login"
937
  msgstr "Gebruikers-login"
938
 
939
+ #: ../dashboard.php:534
940
  msgid "User ID"
941
  msgstr "Gebruikers-ID"
942
 
943
+ #: ../dashboard.php:719
944
  msgid "Export"
945
  msgstr "Export"
946
 
947
+ #: ../dashboard.php:738
948
  msgid "Search for IP or username"
949
  msgstr "Zoek IP of gebruikersnaam"
950
 
951
+ #: ../dashboard.php:738
952
  msgid "Filter"
953
  msgstr "Filter"
954
 
955
+ #: ../dashboard.php:54
956
  msgid "Cerber Dashboard"
957
  msgstr "Cerber Dashboard"
958
 
959
+ #: ../dashboard.php:64
960
  msgid "Cerber tools"
961
  msgstr "Cerber tools"
962
 
963
+ #: ../dashboard.php:1726
964
  msgid "Subscribe"
965
  msgstr "Inschrijven"
966
 
967
+ #: ../dashboard.php:1727 ../cerber-tools.php:273
968
  msgid "Unsubscribe"
969
  msgstr "Uitschrijven"
970
 
971
+ #: ../dashboard.php:1755
972
  msgid "You've subscribed"
973
  msgstr "Je bent ingeschreven"
974
 
975
+ #: ../dashboard.php:1758
976
  msgid "You've unsubscribed"
977
  msgstr "Je bent uitgeschreven"
978
 
979
+ #: ../cerber-load.php:3402 ../cerber-load.php:3403
980
  msgid "A new activity has been recorded"
981
  msgstr "Er is nieuwe activiteit waargenomen"
982
 
983
+ #: ../cerber-load.php:3857
984
  msgid "User"
985
  msgstr "Gebruiker"
986
 
987
+ #: ../cerber-load.php:3865
988
  msgid "Search string"
989
  msgstr "Zoekfrase"
990
 
991
+ #: ../cerber-load.php:3886
992
  msgid "To unsubscribe click here"
993
  msgstr "Klik om uit te schrijven"
994
 
995
+ #: ../settings.php:110
996
  msgid "Preferences"
997
  msgstr "Voorkeuren"
998
 
999
+ #: ../settings.php:112
1000
  msgid "Date format"
1001
  msgstr "Datumformaat"
1002
 
1003
+ #: ../settings.php:112
1004
  msgid "if empty, the default format %s will be used"
1005
  msgstr "indien leeg, gebruiken we standaardinstelling %s"
1006
 
1007
+ #: ../settings.php:226
1008
  msgid "Push notifications"
1009
  msgstr "Push meldingen"
1010
 
1011
+ #: ../settings.php:205
1012
  msgid "Email notifications"
1013
  msgstr "E-mail meldingen"
1014
 
1015
+ #: ../settings.php:212 ../settings.php:248 ../settings.php:305
1016
  msgid "Use comma to specify multiple values"
1017
  msgstr "Scheid meer waarden met komma's"
1018
 
1019
+ #: ../settings.php:233
1020
  msgid "All connected devices"
1021
  msgstr "Alle verbonden apparaten"
1022
 
1023
+ #: ../settings.php:234
1024
  msgid "No devices found"
1025
  msgstr "Geen apparaten gevonden"
1026
 
1027
+ #: ../settings.php:236
1028
  msgid "Not available"
1029
  msgstr "Niet beschikbaar"
1030
 
1031
+ #: ../common.php:822
1032
  msgid "Password reset requested"
1033
  msgstr "Wachtwoordvernieuwing aangevraagd"
1034
 
1035
+ #: ../common.php:879
1036
  msgid "Limit on failed reCAPTCHA verifications is reached"
1037
  msgstr "Grens bereikt van foutieve reCAPTCHA's"
1038
 
1039
+ #: ../common.php:937
1040
  msgid "%s ago"
1041
  msgstr "%s geleden"
1042
 
1043
+ #: ../settings.php:77
1044
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
1045
  msgstr "Pas regels voor inlogbeperking toe op de Lijst Toegelaten IP-adressen"
1046
 
1047
+ #: ../settings.php:86
1048
  msgid "Display 404 page"
1049
  msgstr "Toon 404-pagina"
1050
 
1051
+ #: ../settings.php:185
1052
  msgid "Invisible reCAPTCHA"
1053
  msgstr "Onzichtbare reCAPTCHA"
1054
 
1055
+ #: ../settings.php:185
1056
  msgid "Enable invisible reCAPTCHA"
1057
  msgstr "Zet onzichtbare reCAPTCHA aan"
1058
 
1059
+ #: ../settings.php:185
1060
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
1061
  msgstr "(zet pas aan als je de Sitesleutel en Geheime Sleutel voor de onzichtbare versie hebt ontvangen)"
1062
 
1063
+ #: ../settings.php:196
1064
  msgid "Enable reCAPTCHA for WordPress comment form"
1065
  msgstr "Zet reCAPTCHA aan voor WordPress reacties"
1066
 
1067
+ #: ../settings.php:197
1068
  msgid "Disable reCAPTCHA for logged in users"
1069
  msgstr "Zet reCAPTCHA uit voor ingelogde gebruikers"
1070
 
1071
+ #: ../settings.php:199
1072
  msgid "Limit attempts"
1073
  msgstr "Beperk aantal pogingen"
1074
 
1075
+ #: ../settings.php:199
1076
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1077
  msgstr "Sluit IP-adressen uit voor %s minuten na %s mislukte pogingen in %s minuten"
1078
 
1079
+ #: ../settings.php:362
1080
  msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
1081
+ msgstr "In de Citadelstand kunnen alleen adressen van de Lijst Toegelaten IP-adressen inloggen. Heeft geen effect op reeds ingelogde gebruikers."
1082
 
1083
+ #: ../dashboard.php:534 ../dashboard.php:699
1084
  msgid "Event"
1085
  msgstr "Gebeurtenis"
1086
 
1087
+ #: ../common.php:146
1088
  msgid "Spam comments denied"
1089
  msgstr "Spamreacties afgewezen"
1090
 
1091
+ #: ../common.php:148
1092
  msgid "Malicious IP addresses detected"
1093
  msgstr "Kwaadaardige IP-adressen gevonden"
1094
 
1095
+ #: ../common.php:149
1096
  msgid "Lockouts occurred"
1097
  msgstr "Uitsluitingen"
1098
 
1099
+ #: ../dashboard.php:1461
1100
  msgid "All suspicious activity"
1101
  msgstr "Alle verdachte activiteit"
1102
 
1103
+ #: ../cerber-load.php:1144 ../cerber-load.php:1150 ../cerber-load.php:1166 ..
1104
+ #: /cerber-load.php:1173
1105
  msgid "You are not allowed to register."
1106
  msgstr "Je mag niet aanmelden."
1107
 
1108
+ #: ../common.php:807
1109
  msgid "Spam comment denied"
1110
  msgstr "Spamreactie afgewezen."
1111
 
1112
+ #: ../common.php:832
1113
  msgid "Attempt to log in denied"
1114
  msgstr "Inlogpoging afgewezen"
1115
 
1116
+ #: ../common.php:833
1117
  msgid "Attempt to register denied"
1118
  msgstr "Aanmeldingspoging afgewezen"
1119
 
1120
+ #: ../common.php:143
1121
  msgid "Malicious activities mitigated"
1122
  msgstr "Verdachte activiteiten afgevangen"
1123
 
1124
+ #: ../dashboard.php:63
1125
  msgid "Cerber antispam settings"
1126
  msgstr "Cerber Antispam-instellingen"
1127
 
1128
+ #: ../dashboard.php:63 ../dashboard.php:1241 ../cerber-load.php:4098 ../settings.
1129
+ #: php:196
1130
  msgid "Antispam"
1131
  msgstr "Antispam"
1132
 
1133
+ #: ../settings.php:160
1134
  msgid "Cerber antispam engine"
1135
  msgstr "Cerber Antispam"
1136
 
1137
+ #: ../settings.php:161
1138
  msgid "Comment form"
1139
  msgstr "Reactiepagina"
1140
 
1141
+ #: ../settings.php:161
1142
  msgid "Protect comment form with bot detection engine"
1143
  msgstr "Bescherm invoer reacties met bot-detectie"
1144
 
1145
+ #: ../settings.php:162
1146
  msgid "Protect registration form with bot detection engine"
1147
  msgstr "Bescherm registratiepagina met bot-detectie"
1148
 
1158
  msgid "License"
1159
  msgstr "Licentie"
1160
 
1161
+ #: ../cerber-tools.php:343
1162
  msgid "Antispam and bot detection settings"
1163
  msgstr "Antispam- en botdetectie-instellingen"
1164
 
1165
+ #: ../cerber-load.php:1409
1166
  msgid "Sorry, human verification failed."
1167
  msgstr "Sorry, de verificatie faalt."
1168
 
1169
+ #: ../common.php:880
1170
  msgid "Bot activity is detected"
1171
  msgstr "Bot-activiteit getedecteerd"
1172
 
1173
+ #: ../settings.php:177
1174
  msgid "Comment processing"
1175
  msgstr "Verwerking van reactie"
1176
 
1177
+ #: ../settings.php:178
1178
  msgid "If a spam comment detected"
1179
  msgstr "Bij detectie van een spam-reactie"
1180
 
1181
+ #: ../settings.php:179
1182
  msgid "Trash spam comments"
1183
  msgstr "Spamreacties weggooien"
1184
 
1185
+ #: ../settings.php:179
1186
  msgid "Move spam comments to trash after"
1187
  msgstr "Verwijder spamreacties na"
1188
 
1189
+ #: ../common.php:808
1190
  msgid "Spam form submission denied"
1191
  msgstr "Geweigerd wegens spam"
1192
 
1193
+ #: ../settings.php:163
1194
  msgid "Other forms"
1195
  msgstr "Andere formulieren"
1196
 
1197
+ #: ../settings.php:163
1198
  msgid "Protect all forms on the website with bot detection engine"
1199
  msgstr "Bescherm alle invoerformulieren met bot-detectie"
1200
 
1201
+ #: ../settings.php:165
1202
  msgid "Adjust antispam engine"
1203
  msgstr "Antispammechanisme aanpassen"
1204
 
1205
+ #: ../settings.php:166
1206
  msgid "Safe mode"
1207
+ msgstr "Veilige stand"
1208
 
1209
+ #: ../settings.php:166
1210
  msgid "Use less restrictive policies (allow AJAX)"
1211
  msgstr "Minder restricties (sta AJAX toe)"
1212
 
1213
+ #: ../dashboard.php:2876 ../settings.php:167
1214
  msgid "Logged in users"
1215
  msgstr "Ingelogde gebruikers"
1216
 
1217
+ #: ../settings.php:167
1218
  msgid "Disable bot detection engine for logged in users"
1219
  msgstr "Zet bot-detectie uit voor ingelogde gebruikers"
1220
 
1223
  msgid "WP Cerber Security & Antispam"
1224
  msgstr "WP Cerber Security & Antispam"
1225
 
1226
+ #: ../dashboard.php:131 ../dashboard.php:697
1227
  msgid "Country"
1228
  msgstr "Land"
1229
 
1230
+ #: ../dashboard.php:729
1231
  msgid "All events"
1232
  msgstr "Alle gebeurtenissen"
1233
 
1234
+ #: ../dashboard.php:60
1235
  msgid "Cerber Security Rules"
1236
  msgstr "Cerber Beveiligingsregels"
1237
 
1238
+ #: ../dashboard.php:60 ../dashboard.php:2184
1239
  msgid "Security Rules"
1240
  msgstr "Beveiligingsregels"
1241
 
1242
+ #: ../dashboard.php:1083
1243
  msgid "Failed login attempts"
1244
  msgstr "Gefaalde loginpogingen"
1245
 
1246
+ #: ../dashboard.php:999 ../dashboard.php:1084
1247
  msgid "Registered"
1248
  msgstr "Geregistreerd"
1249
 
1250
+ #: ../dashboard.php:1154
1251
  msgid "You"
1252
  msgstr "Jij"
1253
 
1254
+ #: ../common.php:147
1255
  msgid "Spam form submissions denied"
1256
  msgstr "Spam formulierafgifte afgewezen "
1257
 
1258
+ #: ../dashboard.php:1520 ../cerber-load.php:3392 ../cerber-load.php:4091
1259
  msgid "Getting Started Guide"
1260
  msgstr "Startgids"
1261
 
1262
+ #: ../dashboard.php:2189
1263
  msgid "Countries"
1264
  msgstr "Landen"
1265
 
1266
+ #: ../dashboard.php:2252
1267
  msgid "Permitted for one country"
1268
  msgid_plural "Permitted for %d countries"
1269
  msgstr[0] "Toegestaan voor één land"
1270
  msgstr[1] "Toegestaan voor %d landen"
1271
 
1272
+ #: ../dashboard.php:2263
1273
  msgid "No rule"
1274
  msgstr "Geen regel"
1275
 
1276
+ #: ../dashboard.php:2475
1277
  msgid "Security rules have been updated"
1278
  msgstr "Beveiligingsregels zijn vernieuwd"
1279
 
1282
  msgid "https://wpcerber.com"
1283
  msgstr "https://wpcerber.com"
1284
 
1285
+ #: ../common.php:809
1286
  msgid "Form submission denied"
1287
  msgstr "Formulierafgifte afgewezen"
1288
 
1289
+ #: ../common.php:810
1290
  msgid "Comment denied"
1291
  msgstr "Commentaar afgewezen"
1292
 
1293
+ #: ../common.php:838
1294
  msgid "Request to REST API denied"
1295
  msgstr "Verzoek aan REST API afgewezen"
1296
 
1297
+ #: ../common.php:839
1298
  msgid "XML-RPC request denied"
1299
  msgstr "XML-RPC-verzoek afgewezen"
1300
 
1301
+ #: ../common.php:843
1302
  msgid "Bot detected"
1303
  msgstr "Bot gedetecteerd"
1304
 
1305
+ #: ../common.php:844
1306
  msgid "Citadel mode is active"
1307
+ msgstr "Citadelstand actief"
1308
 
1309
+ #: ../common.php:849
1310
  msgid "Malicious activity detected"
1311
  msgstr "Verdachte activiteit gedetecteerd "
1312
 
1313
+ #: ../common.php:850
1314
  msgid "Blocked by country rule"
1315
  msgstr "Geblokkeerd door landenregel"
1316
 
1317
+ #: ../common.php:851
1318
  msgid "Limit reached"
1319
  msgstr "Limiet bereikt"
1320
 
1321
+ #: ../common.php:852
1322
  msgid "Multiple suspicious activities"
1323
  msgstr "Meerdere verdachte activiteiten"
1324
 
1325
+ #: ../common.php:881
1326
  msgid "Multiple suspicious activities were detected"
1327
  msgstr "Meerdere verdachte activiteiten gedetecteerd"
1328
 
1329
+ #: ../settings.php:120
1330
  msgid "Block access to user pages like /?author=n and user data via REST API"
1331
  msgstr "Blokkeer toegang tot gebruikersgegevens en -pagina's als /?author=n via de REST API"
1332
 
1333
+ #: ../settings.php:124
1334
  msgid "Block access to the WordPress REST API except the following"
1335
  msgstr "Blokkeer toegang naar de WordPress REST API behalve het volgende"
1336
 
1337
+ #: ../settings.php:125
1338
  msgid "Allow REST API for logged in users"
1339
  msgstr "Sta REST API toe voor ingelogde gebruikers"
1340
 
1341
+ #: ../settings.php:132
1342
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
1343
  msgstr "Geef toegestane REST API-naamruimtes op als de REST API is uitgeschakeld. Eén tekenreeks per regel."
1344
 
1345
+ #: ../settings.php:143
1346
  msgid "Registration limit"
1347
  msgstr "Registratielimiet"
1348
 
1349
+ #: ../settings.php:153
1350
  msgid "Sort users in dashboard"
1351
  msgstr "Gebruikers in dashboard sorteren"
1352
 
1353
+ #: ../settings.php:153
1354
  msgid "by date of registration"
1355
  msgstr "per registratiedatum"
1356
 
1357
+ #: ../settings.php:168
1358
  msgid "Query whitelist"
1359
  msgstr "Toegestane queries"
1360
 
1361
+ #: ../settings.php:525 ../settings.php:647
1362
  msgid "%s allowed registrations in %s minutes from one IP"
1363
  msgstr "%s toegestane registraties in %s minuten van één IP"
1364
 
1365
+ #: ../dashboard.php:2319
1366
  msgid "Start typing here to find a country"
1367
  msgstr "Begin te typen om een land te vinden"
1368
 
1369
+ #: ../dashboard.php:2402
1370
  msgid "Click on a country name to add it to the list of selected countries"
1371
  msgstr "Klik op een landnaam om toe te voegen aan de lijst gekozen landen"
1372
 
1373
+ #: ../dashboard.php:2426
1374
  msgid "Submit forms"
1375
  msgstr "Formulieren versturen"
1376
 
1377
+ #: ../dashboard.php:2427
1378
  msgid "Post comments"
1379
  msgstr "Commentaar plaatsen"
1380
 
1381
+ #: ../dashboard.php:2428
1382
  msgid "Log in to the website"
1383
  msgstr "Inloggen bij de website"
1384
 
1385
+ #: ../dashboard.php:2429
1386
  msgid "Register on the website"
1387
  msgstr "Registreren bij de website"
1388
 
1389
+ #: ../dashboard.php:2430
1390
  msgid "Use XML-RPC"
1391
  msgstr "Benut XML-RPC"
1392
 
1393
+ #: ../dashboard.php:2431
1394
  msgid "Use REST API"
1395
  msgstr "Benut REST API"
1396
 
1397
+ #: ../settings.php:178
1398
  msgid "Deny it completely"
1399
  msgstr "Volledig negeren"
1400
 
1401
+ #: ../settings.php:178
1402
  msgid "Mark it as spam"
1403
  msgstr "Markeren als spam"
1404
 
1405
+ #: ../dashboard.php:1446
1406
  msgid "in the last 24 hours"
1407
  msgstr "in de afgelopen 24 uur"
1408
 
1409
+ #: ../dashboard.php:1817
1410
  msgid "Main settings"
1411
  msgstr "Hoofdinstellingen"
1412
 
1413
+ #: ../settings.php:240
1414
  msgid "Weekly reports"
1415
  msgstr "Weekrapporten"
1416
 
1417
+ #: ../settings.php:750
1418
  msgid "Sunday"
1419
  msgstr "zondag"
1420
 
1421
+ #: ../settings.php:751
1422
  msgid "Monday"
1423
  msgstr "maandag"
1424
 
1425
+ #: ../settings.php:752
1426
  msgid "Tuesday"
1427
  msgstr "dinsdag"
1428
 
1429
+ #: ../settings.php:753
1430
  msgid "Wednesday"
1431
  msgstr "woensdag"
1432
 
1433
+ #: ../settings.php:754
1434
  msgid "Thursday"
1435
  msgstr "donderdag"
1436
 
1437
+ #: ../settings.php:755
1438
  msgid "Friday"
1439
  msgstr "vrijdag"
1440
 
1441
+ #: ../settings.php:756
1442
  msgid "Saturday"
1443
  msgstr "zaterdag"
1444
 
1445
+ #: ../settings.php:816 ../settings.php:817
1446
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
1447
  msgstr "Gebruik je een caching plugin, dan moet je je nieuwe login URL toevoegen aan de niet te cachen pagina's."
1448
 
1449
  #. translators: preposition of time
1450
+ #: ../settings.php:766
1451
  msgctxt "preposition of time"
1452
  msgid "at"
1453
  msgstr "op"
1454
 
1455
+ #: ../cerber-load.php:3408
1456
  msgid "Weekly report"
1457
  msgstr "Weekrapport"
1458
 
1459
+ #: ../cerber-load.php:3411
1460
  msgid "To change reporting settings visit"
1461
  msgstr "Om je rapportageinstellingen aan te passen, ga naar"
1462
 
1463
+ #: ../cerber-load.php:3437
1464
  msgid "Your login page:"
1465
  msgstr "Je login-pagina:"
1466
 
1467
+ #: ../cerber-load.php:3441
1468
  msgid "Your license is valid until"
1469
  msgstr "Je licentie geldt tot"
1470
 
1471
+ #: ../cerber-load.php:3552
1472
  msgid "Activity details"
1473
  msgstr "Details van activiteiten"
1474
 
1475
+ #: ../settings.php:782
1476
  msgid "Click to send now"
1477
  msgstr "Klik om nu te versturen"
1478
 
1479
+ #: ../cerber-load.php:796
1480
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
1481
  msgstr ">>> Vertaler van WP Cerber? Om een gratis Pro-licentie te krijgen, geef je contactinformatie op bij: https://wpcerber.com/contact/"
1482
 
1483
+ #: ../dashboard.php:416
1484
  msgid "Email has been sent to"
1485
  msgstr "E-mail is verzonden naar"
1486
 
1487
+ #: ../dashboard.php:419
1488
  msgid "Unable to send email to"
1489
  msgstr "Kan geen e-mail verzenden naar"
1490
 
1491
+ #: ../dashboard.php:2255
1492
  msgid "Not permitted for one country"
1493
  msgid_plural "Not permitted for %d countries"
1494
  msgstr[0] "Niet toegestaan voor één land"
1495
  msgstr[1] "Niet toegestaan voor %d landen"
1496
 
1497
+ #: ../dashboard.php:2406
1498
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1499
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
1500
  msgstr "Gekozen landen mogen %s, overige landen niet"
1501
 
1502
+ #: ../dashboard.php:2409
1503
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
1504
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
1505
  msgstr "Gekozen landen mogen niet %s, overige landen wel"
1509
  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>."
1510
  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>."
1511
 
1512
+ #: ../cerber-load.php:3540
1513
  msgid "Weekly Report"
1514
  msgstr "Weekrapport"
1515
 
1516
+ #: ../settings.php:86
1517
  msgid "Use 404 template from the active theme"
1518
  msgstr "Gebruik 404-sjabloon van het actieve thema"
1519
 
1520
+ #: ../settings.php:86
1521
  msgid "Display simple 404 page"
1522
  msgstr "Toon eenvoudige 404-pagina"
1523
 
1524
+ #: ../settings.php:174
1525
  msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
1526
  msgstr "Voer een deel van een query-tekenreeks of -pad in om een request uit te sluiten van inspectie. Eén item per regel."
1527
 
1528
+ #: ../settings.php:253
1529
  msgid "if empty, email from notification settings will be used"
1530
  msgstr "Indien leeg, gebruiken we de email van de meldingsinstellingen"
1531
 
1532
+ #: ../settings.php:241
1533
  msgid "Enable reporting"
1534
  msgstr "Rapporteren aanzetten"
1535
 
1536
  #. How to interpret this line? Do you mean 'was DATE/TIME from IP ADDRESS' ?
1537
+ #: ../cerber-load.php:3465
1538
  msgid "Your last sign-in was %s from %s"
1539
  msgstr "Je laatste inlog was op %s vanaf %s"
1540
 
1541
+ #: ../cerber-load.php:3566
1542
  msgid "Attempts to log in with non-existent username"
1543
  msgstr "Pogingen om in te loggen met een onbekende gebruikersnaam"
1544
 
1545
+ #: ../dashboard.php:205
1546
  msgid "IP address, IPv4 address range or subnet"
1547
  msgstr "IP adres, IPv4 adresreeks of subnet"
1548
 
1549
+ #: ../dashboard.php:207
1550
  msgid "Optional comment for this entry"
1551
  msgstr "Opmerking hierbij"
1552
 
1553
+ #: ../dashboard.php:248
1554
  msgid "You cannot add your IP address or network"
1555
  msgstr "Je kunt je eigen IP of netwerk niet toevoegen"
1556
 
1557
+ #: ../cerber-news.php:165
1558
  msgid "Cool!"
1559
  msgstr "Mooi!"
1560
 
1561
+ #: ../settings.php:150
1562
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1563
+ msgstr "Je kunt REGEX-patronen gebruiken; sluit deze op in voorwaartse slashes zoals /admin.*/."
1564
 
1565
+ #: ../dashboard.php:56
1566
  msgid "Cerber Traffic Inspector"
1567
  msgstr "Cerber Verkeersinspectie"
1568
 
1569
+ #: ../dashboard.php:56 ../dashboard.php:1224 ../dashboard.php:2524
1570
  msgid "Traffic Inspector"
1571
  msgstr "Verkeersinspectie"
1572
 
1573
+ #: ../dashboard.php:1240
1574
  msgid "Traffic"
1575
  msgstr "Verkeer"
1576
 
1577
+ #: ../dashboard.php:2529
1578
  msgid "Live traffic"
1579
  msgstr "Live verkeer"
1580
 
1581
+ #: ../dashboard.php:2847
1582
  msgid "Request"
1583
  msgstr "Verzoek"
1584
 
1585
+ #: ../dashboard.php:2849
1586
  msgid "Host Info"
1587
  msgstr "Host Info"
1588
 
1589
  #. Do you mean a program for browsing the web like Chrome? Or a ftp user agent or so?
1590
+ #: ../dashboard.php:2850
1591
  msgid "User Agent"
1592
  msgstr "Webbrowser"
1593
 
1594
+ #: ../dashboard.php:2875
1595
  msgid "All requests"
1596
  msgstr "Alle verzoeken"
1597
 
1598
+ #: ../dashboard.php:2877
1599
  msgid "Not logged in visitors"
1600
  msgstr "Niet-ingelogde bezoekers"
1601
 
1602
+ #: ../dashboard.php:2878
1603
  msgid "Form submissions"
1604
  msgstr "Formulierverzendingen"
1605
 
1606
+ #: ../dashboard.php:2879
1607
  msgid "Page Not Found"
1608
  msgstr "Pagina niet gevonden"
1609
 
1610
+ #: ../dashboard.php:2880
1611
  msgid "REST API"
1612
  msgstr "REST API"
1613
 
1614
+ #: ../dashboard.php:2881
1615
  msgid "XML-RPC"
1616
  msgstr "XML-RPC"
1617
 
1618
+ #: ../dashboard.php:2885
1619
  msgid "Longer than"
1620
  msgstr "Langer dan"
1621
 
1622
+ #: ../dashboard.php:2898
1623
  msgid "Refresh"
1624
  msgstr "Ververs"
1625
 
1626
+ #: ../common.php:109
1627
  msgid "Check for requests"
1628
  msgstr "Controleer op verzoeken"
1629
 
1630
+ #: ../common.php:1097
1631
  msgid "Not specified"
1632
  msgstr "Niet gespecificeerd"
1633
 
1634
+ #: ../settings.php:277
1635
  msgid "Logging mode"
1636
  msgstr "Rapportagestand"
1637
 
1638
+ #: ../settings.php:283
1639
  msgid "Logging disabled"
1640
  msgstr "Rapportage uit"
1641
 
1642
+ #: ../settings.php:284
1643
  msgid "Smart"
1644
  msgstr "Slim"
1645
 
1646
+ #: ../settings.php:285
1647
  msgid "All traffic"
1648
  msgstr "Alle verkeer"
1649
 
1650
+ #: ../settings.php:289
1651
  msgid "Ignore crawlers"
1652
  msgstr "Negeer crawlers"
1653
 
1654
+ #: ../settings.php:299
1655
  msgid "Mask these form fields"
1656
  msgstr "Verberg deze formuliervelden"
1657
 
1658
+ #: ../settings.php:334
1659
  msgid "milliseconds"
1660
  msgstr "milliseconden"
1661
 
1662
+ #: ../settings.php:261
1663
  msgid "Inspection"
1664
  msgstr "Inspectie"
1665
 
1666
+ #: ../settings.php:262
1667
  msgid "Enable traffic inspection"
1668
  msgstr "Verkeersinspectie aanzetten"
1669
 
1670
+ #: ../settings.php:276
1671
  msgid "Logging"
1672
  msgstr "Rapporteren"
1673
 
1674
+ #: ../settings.php:294
1675
  msgid "Save request fields"
1676
  msgstr "Bewaar verzoekvelden"
1677
 
1678
+ #: ../settings.php:329
1679
  msgid "Page generation time threshold"
1680
  msgstr "Drempeltijd paginaopbouw"
1681
 
1682
+ #: ../dashboard.php:2867
1683
  msgid "No requests have been logged."
1684
  msgstr "Er zijn geen verzoeken geregistreerd."
1685
 
1686
+ #: ../dashboard.php:1223
1687
  msgid "enabled"
1688
  msgstr "aan"
1689
 
1690
+ #: ../dashboard.php:1227
1691
  msgid "no connection"
1692
  msgstr "geen verbinding"
1693
 
1694
+ #: ../dashboard.php:3159
1695
  msgid "Advanced search"
1696
  msgstr "Geavanceerd zoeken"
1697
 
1698
+ #: ../dashboard.php:992
1699
  msgid "Last seen"
1700
  msgstr "Laatst gezien"
1701
 
1702
  #. A fix for "Probing for vulnerable PHP script".
1703
+ #: ../common.php:834 ../common.php:882
1704
  msgid "Probing for vulnerable PHP code"
1705
  msgstr "Op zoek naar kwetsbare PHP-code"
1706
 
1707
+ #: ../dashboard.php:3119
1708
  msgid "Any"
1709
  msgstr "Enig"
1710
 
1711
+ #: ../cerber-load.php:3192
1712
  msgid "We're sorry, you are not allowed to proceed"
1713
  msgstr "Excuus, je mag niet doorgaan"
1714
 
1715
+ #: ../settings.php:267
1716
  msgid "Request whitelist"
1717
  msgstr "Verzoek om whitelist"
1718
 
1719
+ #: ../settings.php:273
1720
  msgid "Enter a request URI to exclude the request from inspection. One item per line."
1721
  msgstr "Voer een 'request URI' in om deze van inspectie uit te sluiten. Eén per regel."
1722
 
1723
+ #: ../settings.php:310
1724
  msgid "Save request headers"
1725
  msgstr "Sla 'request headers' op"
1726
 
1727
+ #: ../settings.php:316
1728
  msgid "Save $_SERVER"
1729
  msgstr "Sla $_SERVER op"
1730
 
1731
+ #: ../settings.php:322
1732
  msgid "Save request cookies"
1733
  msgstr "Sla 'request cookies' op"
1734
 
1735
+ #: ../settings.php:121
1736
+ msgid "Protect admin scripts"
1737
+ msgstr "Bescherm admin scripts"
1738
+
1739
+ #: ../settings.php:121
1740
+ msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1741
+ msgstr "Blokkeer ongeoorloofde toegang tot load-scripts.php en load-styles.php\n"
1742
+ ""
1743
+
1744
+ #: ../common.php:1583
1745
+ msgid "Unable to create the directory"
1746
+ msgstr "Kan map niet aanmaken"
1747
+
1748
+ #: ../common.php:1588
1749
+ msgid "Destination folder access denied"
1750
+ msgstr "Toegang bestemmingsmap afgewezen"
1751
+
1752
+ #: ../common.php:1591
1753
+ msgid "File not found"
1754
+ msgstr "Bestand niet gevonden"
1755
+
1756
+ #: ../common.php:1594
1757
+ msgid "Unable to copy the file"
1758
+ msgstr "Kan bestand niet kopiëren"
1759
+
1760
+ #: ../common.php:1600
1761
+ msgid "Unable to delete the file"
1762
+ msgstr "Kan bestand niet verwijderen"
1763
+
1764
+ #: ../settings.php:70
1765
+ msgid "Plugin initialization"
1766
+ msgstr "Plugin initialisatie"
1767
+
1768
+ #: ../settings.php:71
1769
+ msgid "Load security engine"
1770
+ msgstr "Start beveiligingskern"
1771
+
1772
+ #: ../settings.php:71
1773
+ msgid "Legacy mode"
1774
+ msgstr "Verouderde stand"
1775
+
1776
+ #: ../settings.php:71
1777
+ msgid "Standard mode"
1778
+ msgstr "Standaardinstelling"
1779
+
1780
+ #: ../settings.php:794
1781
+ msgid "Plugin initialization mode has not been changed"
1782
+ msgstr "Plugin initialisatie is niet aangepast"
1783
+
1784
+ #. Name of the plugin
1785
+ #:
1786
+ msgid "WP Cerber boot module"
1787
+ msgstr "WP Cerber opstartmodule"
1788
+
1789
+ #. Description of the plugin
1790
+ #:
1791
+ 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>."
1792
+ 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>."
1793
+
1794
+ #: ../common.php:835
1795
+ msgid "Attempt to upload executable file denied"
1796
+ msgstr "Poging afgewezen om programmabestand te uploaden"
1797
+
1798
+ #: ../common.php:836
1799
+ msgid "File upload denied"
1800
+ msgstr "Bestandsupload afgewezen"
1801
+
1802
+ #. Description of the plugin
1803
+ #:
1804
+ 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>."
1805
+ msgstr ""
1806
+
1807
+ #: ../settings.php:94
1808
+ msgid "Custom login URL may contain only: letters, numbers, dashes and underscores"
1809
+ msgstr ""
1810
+
1811
+ #: ../settings.php:94
1812
+ msgid "Custom login URL may contain only letters, numbers, dashes and underscores"
1813
+ msgstr ""
1814
+
1815
+ #: ../settings.php:174 ../settings.php:273
1816
+ msgid "To specify a REGEX pattern, enclose a whole line in two braces."
1817
+ msgstr ""
1818
+
languages/wp-cerber-ru_RU.mo CHANGED
Binary file
languages/wp-cerber-ru_RU.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Cerber Security &amp; Antispam - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-01-22 18:48:25+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,161 +11,185 @@ msgstr ""
11
  "Language: ru\n"
12
  "Project-Id-Version: Plugins - Cerber Security &amp; Antispam - Stable (latest release)\n"
13
 
14
- #: settings.php:311
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  msgid "milliseconds"
16
  msgstr "миллисекунд"
17
 
18
- #: settings.php:306
19
  msgid "Page generation time threshold"
20
  msgstr "Порог времени генерации страницы"
21
 
22
- #: settings.php:299
23
  msgid "Save request cookies"
24
  msgstr "Сохранять куки запроса"
25
 
26
- #: settings.php:293
27
  msgid "Save $_SERVER"
28
  msgstr "Сохранять $_SERVER"
29
 
30
- #: settings.php:287
31
  msgid "Save request headers"
32
  msgstr "Сохранять заголовки запроса"
33
 
34
- #: settings.php:276
35
  msgid "Mask these form fields"
36
  msgstr "Маскировать эти поля форм"
37
 
38
- #: settings.php:271
39
  msgid "Save request fields"
40
  msgstr "Сохранять поля запросов"
41
 
42
- #: settings.php:266
43
  msgid "Ignore crawlers"
44
  msgstr "Игнорировать веб-пауков"
45
 
46
- #: settings.php:262
47
  msgid "All traffic"
48
  msgstr "Весь трафик"
49
 
50
- #: settings.php:261
51
  msgid "Smart"
52
  msgstr "Умная выборка"
53
 
54
- #: settings.php:260
55
  msgid "Logging disabled"
56
  msgstr "Журнал отключен"
57
 
58
- #: settings.php:254
59
  msgid "Logging mode"
60
  msgstr "Режим журнала"
61
 
62
- #: settings.php:253
63
  msgid "Logging"
64
  msgstr "Журналирование"
65
 
66
- #: settings.php:247
67
  msgid "Enable traffic inspection"
68
  msgstr "Включить инспектирование трафика"
69
 
70
- #: settings.php:246
71
  msgid "Inspection"
72
  msgstr "Инспектирование"
73
 
74
- #: dashboard.php:3093
75
  msgid "Advanced search"
76
  msgstr "Улучшенный поиск"
77
 
78
- #: dashboard.php:2861
79
  msgid "Refresh"
80
  msgstr "Обновить"
81
 
82
- #: dashboard.php:2848
83
  msgid "Longer than"
84
  msgstr "Дольше чем"
85
 
86
- #: dashboard.php:2844
87
  msgid "XML-RPC"
88
  msgstr "XML-RPC"
89
 
90
- #: dashboard.php:2843
91
  msgid "REST API"
92
  msgstr "REST API"
93
 
94
- #: dashboard.php:2842
95
  msgid "Page Not Found"
96
  msgstr "Страница не найдена"
97
 
98
- #: dashboard.php:2841
99
  msgid "Form submissions"
100
  msgstr "Отправки форм"
101
 
102
- #: dashboard.php:2840
103
  msgid "Not logged in visitors"
104
  msgstr "Неавторизованные посетители"
105
 
106
- #: dashboard.php:2838
107
  msgid "All requests"
108
  msgstr "Все запросы"
109
 
110
- #: dashboard.php:2830
111
  msgid "No requests have been logged."
112
  msgstr "В журнале нет данных о запросах."
113
 
114
- #: dashboard.php:2813
115
  msgid "User Agent"
116
  msgstr "User Agent"
117
 
118
- #: dashboard.php:2812
119
  msgid "Host Info"
120
  msgstr "Информация о хосте"
121
 
122
- #: dashboard.php:2810
123
  msgid "Request"
124
  msgstr "Запрос"
125
 
126
- #: dashboard.php:2498
127
  msgid "Live traffic"
128
  msgstr "Живой трафик"
129
 
130
- #: dashboard.php:1227
131
  msgid "Traffic"
132
  msgstr "Трафик"
133
 
134
- #: dashboard.php:1214
135
  msgid "no connection"
136
  msgstr "нет подключения"
137
 
138
- #: dashboard.php:1210
139
  msgid "enabled"
140
  msgstr "включено"
141
 
142
- #: dashboard.php:992 dashboard.php:1211 dashboard.php:2493
143
  msgid "Traffic Inspector"
144
  msgstr "Инспектор трафика"
145
 
146
- #: dashboard.php:992
147
  msgid "Cerber Traffic Inspector"
148
  msgstr "Цербер-инспектор трафика"
149
 
150
- #: dashboard.php:948
151
  msgid "Last seen"
152
  msgstr "Последний раз"
153
 
154
- #: common.php:910
155
  msgid "Not specified"
156
  msgstr "Не указано"
157
 
158
- #: common.php:649 common.php:695
159
  msgid "Probing for vulnerable PHP code"
160
- msgstr "Проверка на уязвимый PHP код"
161
 
162
- #: common.php:101
163
  msgid "Check for requests"
164
  msgstr "Проверить запросы"
165
 
166
  #: dashboard.php:212
167
  msgid "You cannot add your IP address or network"
168
- msgstr "Вы не можете добавить ваш IP адрес или сеть"
169
 
170
  #: dashboard.php:171
171
  msgid "Optional comment for this entry"
@@ -175,53 +199,53 @@ msgstr "Необязательный комментарий к этой запи
175
  msgid "IP address, IPv4 address range or subnet"
176
  msgstr "IP адрес, диапазон IPv4 адресов или адрес подсети"
177
 
178
- #: wp-cerber.php:3326
179
  msgid "Attempts to log in with non-existent username"
180
  msgstr "Попытка войти с несуществующим именем пользователя"
181
 
182
- #: wp-cerber.php:3300
183
  msgid "Weekly Report"
184
  msgstr "Недельный отчет"
185
 
186
- #: wp-cerber.php:3222
187
  msgid "Your last sign-in was %s from %s"
188
  msgstr "Ваш последний вход был %s с %s"
189
 
190
- #: settings.php:226
191
  msgid "Enable reporting"
192
  msgstr "Включить отчеты"
193
 
194
- #: settings.php:238
195
  msgid "if empty, email from notification settings will be used"
196
  msgstr "если не задано, будет использован адрес из настроек уведомлений"
197
 
198
- #: settings.php:163
199
  msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
200
  msgstr "Введите часть строки или пути запроса для исключения запроса из проверки движком. Один элемент на строку."
201
 
202
- #: settings.php:139
203
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
204
  msgstr "Для использования регулярных выражений оберните их в два прямых слеша."
205
 
206
- #: settings.php:83
207
  msgid "Display simple 404 page"
208
  msgstr "Показать простую страницу 404"
209
 
210
- #: settings.php:83
211
  msgid "Use 404 template from the active theme"
212
- msgstr "Использовать шаблон 404 из активной темы"
213
 
214
- #: dashboard.php:2378
215
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
216
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
217
  msgstr "Выбранным странам не разрешено %s, остальным странам разрешено"
218
 
219
- #: dashboard.php:2375
220
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
221
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
222
  msgstr "Выбранным странам разрешено %s, остальным странам - нет"
223
 
224
- #: dashboard.php:2224
225
  msgid "Not permitted for one country"
226
  msgid_plural "Not permitted for %d countries"
227
  msgstr[0] "Не разрешено в одной стране"
@@ -236,256 +260,256 @@ msgstr "Невозможно отправить email на"
236
  msgid "Email has been sent to"
237
  msgstr "Сообщение было отправлено на электронный адрес"
238
 
239
- #: cerber-news.php:147
240
  msgid "Cool!"
241
  msgstr "Отлично!"
242
 
243
- #: wp-cerber.php:3312
244
  msgid "Activity details"
245
  msgstr "Подробно об активности"
246
 
247
- #: wp-cerber.php:3199
248
  msgid "Your license is valid until"
249
  msgstr "Ваша лицензия действительна до"
250
 
251
- #: wp-cerber.php:3195
252
  msgid "Your login page:"
253
  msgstr "Ваша страница входа:"
254
 
255
- #: wp-cerber.php:3169
256
  msgid "To change reporting settings visit"
257
  msgstr "Для смены настроек отчетности зайдите"
258
 
259
- #: wp-cerber.php:3166
260
  msgid "Weekly report"
261
  msgstr "Недельный отчет"
262
 
263
- #: wp-cerber.php:645
264
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
265
  msgstr ">>> Переводите WP Cerber? Получите PRO лицензию бесплатно, оставьте контакты здесь: https://wpcerber.com/contact/"
266
 
267
- #: settings.php:753
268
  msgid "Click to send now"
269
  msgstr "Нажмите для отправки сейчас"
270
 
271
  #. translators: preposition of time
272
- #: settings.php:737
273
  msgctxt "preposition of time"
274
  msgid "at"
275
  msgstr "в"
276
 
277
- #: settings.php:727
278
  msgid "Saturday"
279
  msgstr "Суббота"
280
 
281
- #: settings.php:726
282
  msgid "Friday"
283
  msgstr "Пятница"
284
 
285
- #: settings.php:725
286
  msgid "Thursday"
287
  msgstr "Четверг"
288
 
289
- #: settings.php:724
290
  msgid "Wednesday"
291
  msgstr "Среда"
292
 
293
- #: settings.php:723
294
  msgid "Tuesday"
295
  msgstr "Вторник"
296
 
297
- #: settings.php:722
298
  msgid "Monday"
299
  msgstr "Понедельник"
300
 
301
- #: settings.php:721
302
  msgid "Sunday"
303
  msgstr "Воскресенье"
304
 
305
- #: settings.php:225
306
  msgid "Weekly reports"
307
  msgstr "Недельные отчеты"
308
 
309
- #: dashboard.php:1775
310
  msgid "Main settings"
311
  msgstr "Основные настройки"
312
 
313
- #: settings.php:780 settings.php:781
314
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
315
  msgstr "Если вы используете плагин кеширования, вам нужно добавить новый URL входа в список исключений кеширования"
316
 
317
- #: settings.php:502 settings.php:624
318
  msgid "%s allowed registrations in %s minutes from one IP"
319
  msgstr "%s разрешенных регистраций в %s минут с одного IP"
320
 
321
- #: settings.php:167
322
  msgid "Mark it as spam"
323
  msgstr "Пометить как спам"
324
 
325
- #: settings.php:167
326
  msgid "Deny it completely"
327
  msgstr "Полностью запретить"
328
 
329
- #: settings.php:142
330
  msgid "Sort users in dashboard"
331
  msgstr "Сортировать пользователей в консоли"
332
 
333
- #: settings.php:132
334
  msgid "Registration limit"
335
  msgstr "Предел регистраций"
336
 
337
- #: settings.php:114
338
  msgid "Allow REST API for logged in users"
339
  msgstr "Разрешить REST API для авторизованных пользователей"
340
 
341
- #: dashboard.php:2400
342
  msgid "Use REST API"
343
  msgstr "использование REST API"
344
 
345
- #: dashboard.php:2399
346
  msgid "Use XML-RPC"
347
  msgstr "использование XML-RPC"
348
 
349
- #: dashboard.php:2398
350
  msgid "Register on the website"
351
  msgstr "регистрация на сайте"
352
 
353
- #: dashboard.php:2397
354
  msgid "Log in to the website"
355
  msgstr "авторизация на сайте"
356
 
357
- #: dashboard.php:2396
358
  msgid "Post comments"
359
  msgstr "отправка комментариев"
360
 
361
- #: dashboard.php:2395
362
  msgid "Submit forms"
363
  msgstr "отправка форм"
364
 
365
- #: dashboard.php:2371
366
  msgid "Click on a country name to add it to the list of selected countries"
367
  msgstr "Нажмите на страну чтобы добавить ее в список выбранных"
368
 
369
- #: dashboard.php:2288
370
  msgid "Start typing here to find a country"
371
  msgstr "Начните печатать тут чтобы найти страну"
372
 
373
- #: dashboard.php:1487 wp-cerber.php:3150 wp-cerber.php:3843
374
  msgid "Getting Started Guide"
375
  msgstr "Руководство с чего начать"
376
 
377
- #: dashboard.php:1415
378
  msgid "in the last 24 hours"
379
  msgstr "В последние 24 часа"
380
 
381
- #: dashboard.php:1141
382
  msgid "You"
383
  msgstr "Вы"
384
 
385
- #: dashboard.php:955 dashboard.php:1074
386
  msgid "Registered"
387
  msgstr "Зарегистрирован"
388
 
389
- #: dashboard.php:1073
390
  msgid "Failed login attempts"
391
  msgstr "Неудачные попытки входа"
392
 
393
- #: common.php:694
394
  msgid "Multiple suspicious activities were detected"
395
  msgstr "Обнаружена множественная подозрительная активность"
396
 
397
- #: common.php:665
398
  msgid "Multiple suspicious activities"
399
  msgstr "Множественная подозрительная активность"
400
 
401
- #: common.php:664
402
  msgid "Limit reached"
403
  msgstr "Предел достигнут"
404
 
405
- #: settings.php:157
406
  msgid "Query whitelist"
407
  msgstr "Белый список запросов"
408
 
409
- #: settings.php:121
410
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
411
  msgstr "Укажите пространства имен REST API разрешенных при отключении REST API, одно имя на строку."
412
 
413
- #: settings.php:113
414
  msgid "Block access to the WordPress REST API except the following"
415
  msgstr "Блокировать доступ к REST API кроме следующего"
416
 
417
- #: settings.php:110
418
  msgid "Block access to user pages like /?author=n and user data via REST API"
419
  msgstr "Блокировать доступ к страницам пользователя /?author=n и данным о пользователях через REST API"
420
 
421
- #: dashboard.php:2444
422
  msgid "Security rules have been updated"
423
  msgstr "Правила безопасности обновлены"
424
 
425
- #: dashboard.php:2232
426
  msgid "No rule"
427
  msgstr "Нет правила"
428
 
429
- #: dashboard.php:2221
430
  msgid "Permitted for one country"
431
  msgid_plural "Permitted for %d countries"
432
  msgstr[0] "Разрешается для одной страны"
433
  msgstr[1] "Разрешается для %d стран"
434
  msgstr[2] "Разрешается для %d стран"
435
 
436
- #: dashboard.php:2158
437
  msgid "Countries"
438
  msgstr "Страны"
439
 
440
- #: common.php:138
441
  msgid "Spam form submissions denied"
442
  msgstr "Заблокированы отправки форм спама"
443
 
444
- #: dashboard.php:996 dashboard.php:2153
445
  msgid "Security Rules"
446
  msgstr "Правила безопасности"
447
 
448
- #: dashboard.php:996
449
  msgid "Cerber Security Rules"
450
  msgstr "Правила безопасности Цербер"
451
 
452
- #: dashboard.php:686
453
  msgid "All events"
454
  msgstr "Все события"
455
 
456
- #: dashboard.php:95 dashboard.php:654
457
  msgid "Country"
458
  msgstr "Страна"
459
 
460
- #: common.php:663
461
  msgid "Blocked by country rule"
462
  msgstr "Заблокирован по ограничению для страны"
463
 
464
- #: common.php:662
465
  msgid "Malicious activity detected"
466
  msgstr "Обнаружена вредоносная активность"
467
 
468
- #: common.php:657
469
  msgid "Citadel mode is active"
470
  msgstr "Режим цитадель активен"
471
 
472
- #: common.php:656
473
  msgid "Bot detected"
474
  msgstr "Обнаружен бот"
475
 
476
- #: common.php:652
477
  msgid "XML-RPC request denied"
478
  msgstr "Запрос XML-RPC заблокирован"
479
 
480
- #: common.php:651
481
  msgid "Request to REST API denied"
482
  msgstr "Запрос к REST API заблокирован"
483
 
484
- #: common.php:625
485
  msgid "Comment denied"
486
  msgstr "Комментарий заблокирован"
487
 
488
- #: common.php:624
489
  msgid "Form submission denied"
490
  msgstr "Отправка формы заблокирована"
491
 
@@ -497,83 +521,83 @@ msgstr "Лицензия"
497
  msgid "WP Cerber Security & Antispam"
498
  msgstr "WP Cerber Security & Antispam"
499
 
500
- #: settings.php:156
501
  msgid "Disable bot detection engine for logged in users"
502
  msgstr "Отключить определение ботов для авторизованных пользователей"
503
 
504
- #: dashboard.php:2839 settings.php:156
505
  msgid "Logged in users"
506
  msgstr "Авторизованные пользователи"
507
 
508
- #: settings.php:155
509
  msgid "Use less restrictive policies (allow AJAX)"
510
  msgstr "Использовать менее жесткую политику (разрешить AJAX)"
511
 
512
- #: settings.php:155
513
  msgid "Safe mode"
514
  msgstr "Безопасный режим"
515
 
516
- #: settings.php:154
517
  msgid "Adjust antispam engine"
518
  msgstr "Настроить антиспам-движок"
519
 
520
- #: settings.php:152
521
  msgid "Protect all forms on the website with bot detection engine"
522
  msgstr "Защитить все формы на сайте через определение ботов"
523
 
524
- #: settings.php:152
525
  msgid "Other forms"
526
  msgstr "Другие формы"
527
 
528
- #: common.php:623
529
  msgid "Spam form submission denied"
530
  msgstr "Отправка формы со спамом заблокирована"
531
 
532
- #: wp-cerber.php:1248
533
  msgid "Sorry, human verification failed."
534
  msgstr "Извините, проверка на человека не удалась."
535
 
536
- #: settings.php:168
537
  msgid "Move spam comments to trash after"
538
  msgstr "Удалить спам комментарии в корзину после"
539
 
540
- #: settings.php:168
541
  msgid "Trash spam comments"
542
  msgstr "Удалить спам комментарии в корзину"
543
 
544
- #: settings.php:167
545
  msgid "If a spam comment detected"
546
  msgstr "Если обнаружен спам комментарий"
547
 
548
- #: settings.php:166
549
  msgid "Comment processing"
550
  msgstr "Обработка комментария"
551
 
552
- #: settings.php:151
553
  msgid "Protect registration form with bot detection engine"
554
  msgstr "Защита регистрации через определение ботов"
555
 
556
- #: settings.php:150
557
  msgid "Protect comment form with bot detection engine"
558
  msgstr "Защита комментариев через определение ботов"
559
 
560
- #: settings.php:149
561
  msgid "Cerber antispam engine"
562
  msgstr "Движок Цербер-антиспам"
563
 
564
- #: dashboard.php:999 dashboard.php:1228 settings.php:185 wp-cerber.php:3850
565
  msgid "Antispam"
566
  msgstr "Аниспам"
567
 
568
- #: dashboard.php:999
569
  msgid "Cerber antispam settings"
570
  msgstr "Настройка Цербер антиспам"
571
 
572
- #: common.php:693
573
  msgid "Bot activity is detected"
574
  msgstr "Обнаружена активность ботов"
575
 
576
- #: cerber-tools.php:336
577
  msgid "Antispam and bot detection settings"
578
  msgstr "Антиспам и настройки определения ботов"
579
 
@@ -585,199 +609,200 @@ msgstr "Диагностика"
585
  msgid "Export & Import"
586
  msgstr "Экспорт и Импорт"
587
 
588
- #: wp-cerber.php:983 wp-cerber.php:989 wp-cerber.php:1005 wp-cerber.php:1012
 
589
  msgid "You are not allowed to register."
590
  msgstr "Вам не разрешено зарегистрироваться."
591
 
592
- #: dashboard.php:1430
593
  msgid "All suspicious activity"
594
  msgstr "Вся подозрительная активность"
595
 
596
- #: common.php:140
597
  msgid "Lockouts occurred"
598
  msgstr "Блокировок произошло"
599
 
600
- #: common.php:139
601
  msgid "Malicious IP addresses detected"
602
  msgstr "Найдены вредоносные IP адреса"
603
 
604
- #: common.php:137
605
  msgid "Spam comments denied"
606
  msgstr "Спам-комментарии отклонены"
607
 
608
- #: common.php:134
609
  msgid "Malicious activities mitigated"
610
  msgstr "Вредоносная активность снижена"
611
 
612
- #: dashboard.php:491 dashboard.php:656
613
  msgid "Event"
614
  msgstr "Событие"
615
 
616
- #: common.php:648
617
  msgid "Attempt to register denied"
618
  msgstr "Попытка регистрации отклонена"
619
 
620
- #: common.php:647
621
  msgid "Attempt to log in denied"
622
  msgstr "Попытка входа отклонена"
623
 
624
- #: common.php:622
625
  msgid "Spam comment denied"
626
  msgstr "Спам коммнтарий отклонен"
627
 
628
- #: settings.php:339
629
  msgid "In the Citadel mode nobody is able to log in except IPs from the White IP Access List. Active user sessions will not be affected."
630
  msgstr "В режиме Цитадель никто не может войти кроме как с IP в белом списке. Активные сессии пользователей не будут затронуты."
631
 
632
- #: settings.php:188
633
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
634
  msgstr "Блокировать IP адрес на %s минут после %s неудачных попыток в течении %s минут"
635
 
636
- #: settings.php:188
637
  msgid "Limit attempts"
638
  msgstr "Ограничение попыток"
639
 
640
- #: settings.php:74
641
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
642
  msgstr "Применить правила входа для IP адресов в белом списке"
643
 
644
- #: common.php:692
645
  msgid "Limit on failed reCAPTCHA verifications is reached"
646
  msgstr "Достигнут предел проверки reCAPTCHA"
647
 
648
- #: common.php:637
649
  msgid "Password reset requested"
650
  msgstr "Запрошен сброс пароля"
651
 
652
- #: settings.php:174
653
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
654
  msgstr "(не включайте, если у вас нет или вы не вводили ключ сайта и секретный ключ для невидимой версии)"
655
 
656
- #: settings.php:186
657
  msgid "Disable reCAPTCHA for logged in users"
658
  msgstr "Отключить reCAPTCHA для авторизованных пользователей"
659
 
660
- #: settings.php:185
661
  msgid "Enable reCAPTCHA for WordPress comment form"
662
  msgstr "Включить reCAPTCHA в форме комментариев WordPress"
663
 
664
- #: settings.php:150
665
  msgid "Comment form"
666
  msgstr "Форма комментариев"
667
 
668
- #: settings.php:174
669
  msgid "Enable invisible reCAPTCHA"
670
  msgstr "Включить невидимую reCAPTCHA"
671
 
672
- #: settings.php:174
673
  msgid "Invisible reCAPTCHA"
674
  msgstr "невидимая reCAPTCHA"
675
 
676
- #: common.php:750
677
  msgid "%s ago"
678
  msgstr "%s назад"
679
 
680
- #: settings.php:221
681
  msgid "Not available"
682
  msgstr "Недоступно"
683
 
684
- #: settings.php:219
685
  msgid "No devices found"
686
  msgstr "Устройства не найдены"
687
 
688
- #: settings.php:218
689
  msgid "All connected devices"
690
  msgstr "Все подключенные устройства"
691
 
692
- #: settings.php:201 settings.php:233 settings.php:282
693
  msgid "Use comma to specify multiple values"
694
  msgstr "Используйте запятую для разделения множественных значений"
695
 
696
- #: settings.php:194
697
  msgid "Email notifications"
698
  msgstr "Уведомления по эл.почте"
699
 
700
- #: settings.php:83
701
  msgid "Display 404 page"
702
  msgstr "Показывать страницу 404"
703
 
704
- #: settings.php:211
705
  msgid "Push notifications"
706
  msgstr "Push уведомления"
707
 
708
- #: dashboard.php:695
709
  msgid "Search for IP or username"
710
  msgstr "Поиск IP или имени пользователя"
711
 
712
- #: cerber-tools.php:266 dashboard.php:1685
713
  msgid "Unsubscribe"
714
  msgstr "Отменить подписку"
715
 
716
- #: dashboard.php:491
717
  msgid "User login"
718
  msgstr "Имя пользователя"
719
 
720
- #: dashboard.php:491
721
  msgid "IP address"
722
  msgstr "IP адрес"
723
 
724
- #: dashboard.php:676
725
  msgid "Export"
726
  msgstr "Экспорт"
727
 
728
- #: dashboard.php:491
729
  msgid "User ID"
730
  msgstr "ID пользователя"
731
 
732
- #: dashboard.php:990
733
  msgid "Cerber Dashboard"
734
  msgstr "Консоль Cerber"
735
 
736
- #: dashboard.php:695
737
  msgid "Filter"
738
  msgstr "Фильтр"
739
 
740
- #: dashboard.php:1000
741
  msgid "Cerber tools"
742
  msgstr "Инструменты Cerber"
743
 
744
- #: dashboard.php:1684
745
  msgid "Subscribe"
746
  msgstr "Подписаться"
747
 
748
- #: dashboard.php:1713
749
  msgid "You've subscribed"
750
  msgstr "Вы подписались"
751
 
752
- #: dashboard.php:1716
753
  msgid "You've unsubscribed"
754
  msgstr "Подписка отменена"
755
 
756
- #: wp-cerber.php:3160 wp-cerber.php:3161
757
  msgid "A new activity has been recorded"
758
  msgstr "Отмечена новая активность"
759
 
760
- #: settings.php:102
761
  msgid "if empty, the default format %s will be used"
762
  msgstr "Если пусто, будет использован формат по умолчанию %s"
763
 
764
- #: wp-cerber.php:3626
765
  msgid "User"
766
  msgstr "Пользователь"
767
 
768
- #: wp-cerber.php:3634
769
  msgid "Search string"
770
  msgstr "Строка поиска"
771
 
772
- #: wp-cerber.php:3655
773
  msgid "To unsubscribe click here"
774
  msgstr "Для отмены подписки нажмите здесь"
775
 
776
- #: settings.php:100
777
  msgid "Preferences"
778
  msgstr "Настройки"
779
 
780
- #: settings.php:102
781
  msgid "Date format"
782
  msgstr "Формат даты"
783
 
@@ -785,71 +810,67 @@ msgstr "Формат даты"
785
  msgid "Gregory"
786
  msgstr "Gregory"
787
 
788
- #. Description of the plugin/theme
789
- msgid "Protects site from brute force attacks, bots and hackers. Antispam protection with the Cerber antispam engine and reCAPTCHA. Comprehensive control of user activity. Restrict login by IP access lists. Limit login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
790
- msgstr "Защищает сайт от атак перебора, ботов, хакеров. Антиспам защита с движком Cerber антиспам и reCAPTCHA. Всесторонний контроль активности пользователей. Ограничение входа по IP адресам. Ограничение попыток входа. Узнайте больше на сайте <a href=\"https://wpcerber.com\">wpcerber.com</a>."
791
-
792
- #: dashboard.php:990 dashboard.php:1225 dashboard.php:1774 settings.php:370
793
  msgid "Dashboard"
794
  msgstr "Консоль"
795
 
796
- #: settings.php:183
797
  msgid "Enable reCAPTCHA for WooCommerce login form"
798
  msgstr "Включить reCAPTCHA для формы входа WooCommerce"
799
 
800
- #: settings.php:182
801
  msgid "Enable reCAPTCHA for WordPress login form"
802
  msgstr "Включить reCAPTCHA для формы входа WordPress"
803
 
804
- #: settings.php:180
805
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
806
  msgstr "Включить reCAPTCHA для формы восстановления пароля WooCommerce"
807
 
808
- #: settings.php:179
809
  msgid "Enable reCAPTCHA for WordPress lost password form"
810
  msgstr "Включить reCAPTCHA для формы восстановления пароля WordPress"
811
 
812
- #: settings.php:177
813
  msgid "Enable reCAPTCHA for WooCommerce registration form"
814
  msgstr "Включить reCAPTCHA для формы регистрации WooCommerce"
815
 
816
- #: settings.php:176
817
  msgid "Enable reCAPTCHA for WordPress registration form"
818
  msgstr "Включить reCAPTCHA для формы регистрации WordPress"
819
 
820
- #: settings.php:151 settings.php:176
821
  msgid "Registration form"
822
  msgstr "Форма регистрации"
823
 
824
- #: settings.php:97
825
  msgid "Cerber Lab protocol"
826
  msgstr "протокол Cerber Lab"
827
 
828
- #: settings.php:96
829
  msgid "Send malicious IP addresses to the Cerber Lab"
830
  msgstr "Посылать вредоносные IP адреса в Cerber Lab"
831
 
832
- #: settings.php:96
833
  msgid "Cerber Lab connection"
834
  msgstr "Подключение Cerber Lab"
835
 
836
- #: dashboard.php:1452
837
  msgid "Recently locked out IP addresses"
838
  msgstr "Недавно заблокированые IP адреса"
839
 
840
- #: dashboard.php:1421 dashboard.php:1451
841
  msgid "View all"
842
  msgstr "Просмотреть все"
843
 
844
- #: dashboard.php:988 settings.php:365
845
  msgid "WP Cerber Security"
846
  msgstr "WP Cerber Security"
847
 
848
- #: dashboard.php:884
849
  msgid "Add network to the Black List"
850
  msgstr "Добавить сеть в черный список"
851
 
852
- #: dashboard.php:870
853
  msgid "Network:"
854
  msgstr "Сеть:"
855
 
@@ -857,705 +878,707 @@ msgstr "Сеть:"
857
  msgid "Incorrect IP address or IP range"
858
  msgstr "Неверный IP адрес или диапазон адресов"
859
 
860
- #: common.php:641
861
  msgid "Request to the Google reCAPTCHA service failed"
862
  msgstr "Запрос к сервису Google reCAPTCHA не удался"
863
 
864
- #: cerber-lab.php:696
865
  msgid "NO, maybe later"
866
  msgstr "НЕТ, возможно позже"
867
 
868
- #: cerber-lab.php:695
869
  msgid "OK, nail them all"
870
  msgstr "ОК, прибьем их всех"
871
 
872
- #: cerber-lab.php:694
873
  msgid "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. This helps the plugin team to develop new algorithms for WP Cerber that will defend WordPress against new threats and botnets that are appearing everyday. You can disable the sending in the plugin settings at any time."
874
  msgstr "Разрешить WP Cerber посылать заблокированные IP адреса в Cerber Lab. Это помогает команде плагина разрабатывать новые алгоритмы для WP Cerber, которые будут защищать WordPress против новых угроз и ботнетов появляюшихся каждый день. Вы всегда можете отключить отсылку в настройках плагина, в любой момент."
875
 
876
- #: cerber-lab.php:693
877
  msgid "Want to make WP Cerber even more powerful?"
878
  msgstr "Хотите сделать WP Cerber еще мощнее ?"
879
 
880
- #. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security & Antispam 6.0) #-#-#-#-#
881
  #. Plugin URI of the plugin/theme
882
- #. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security & Antispam 6.0) #-#-#-#-#
883
  #. Author URI of the plugin/theme
884
  msgid "https://wpcerber.com"
885
  msgstr "https://wpcerber.com"
886
 
887
- #: wp-cerber.php:3853
888
  msgid "Import settings"
889
  msgstr "Импорт настроек"
890
 
891
- #: wp-cerber.php:3841
892
  msgid "Your IP address is added to the"
893
  msgstr "Ваш IP адрес добавлен к"
894
 
895
- #: wp-cerber.php:3824
896
  msgid "Can't activate WP Cerber due to a database error."
897
  msgstr "Невозможно активировать плагин WP Cerber из-за ошибки в базе данных."
898
 
899
- #: wp-cerber.php:3815
900
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
901
  msgstr "WP Cerber требует WordPress версии %s или выше. У вас версия"
902
 
903
- #: wp-cerber.php:3811
904
  msgid "The WP Cerber requires PHP %s or higher. You are running"
905
  msgstr "WP Cerber требует PHP версии %s или выше. У вас версия"
906
 
907
- #: wp-cerber.php:3202
908
  msgid "This message was sent by"
909
  msgstr "Это сообщение было отправлено"
910
 
911
- #: wp-cerber.php:3156
912
  msgid "New Custom login URL"
913
  msgstr "Новый URL для входа на сайт"
914
 
915
- #: wp-cerber.php:3148 wp-cerber.php:3840
916
  msgid "WP Cerber is now active and has started protecting your site"
917
  msgstr "WP Cerber активен и начал защищать ваш сайт"
918
 
919
- #: wp-cerber.php:3147
920
  msgid "The WP Cerber security plugin is now active"
921
  msgstr "WP Cerber плагин безопасности активен"
922
 
923
- #: wp-cerber.php:3143
924
  msgid "From country"
925
  msgstr "Из страны"
926
 
927
- #: wp-cerber.php:3140
928
  msgid "From IP address"
929
  msgstr "С IP адреса"
930
 
931
- #: wp-cerber.php:3139
932
  msgid "By user"
933
  msgstr "По пользователю"
934
 
935
- #: wp-cerber.php:3133
936
  msgid "Not logged in"
937
  msgstr "Нет авторизации"
938
 
939
- #: wp-cerber.php:3130 wp-cerber.php:3131
940
  msgid "The WP Cerber security plugin has been deactivated"
941
  msgstr "WP Cerber плагин деактивирован"
942
 
943
- #: wp-cerber.php:3127 wp-cerber.php:3138
944
  msgid "Website"
945
  msgstr "Сайт"
946
 
947
- #: wp-cerber.php:3124
948
  msgid "Hi!"
949
  msgstr "Привет!"
950
 
951
- #: wp-cerber.php:3123 wp-cerber.php:3125
952
  msgid "A new version of WP Cerber is available to install"
953
  msgstr "Доступна новая версия WP Cerber!"
954
 
955
- #: wp-cerber.php:3120
956
  msgid "View lockouts in dashboard"
957
  msgstr "Просмотреть список заблокированных IP"
958
 
959
- #: wp-cerber.php:3119
960
  msgid "View activity for this IP"
961
  msgstr "Посмотреть активность для этого IP"
962
 
963
- #: wp-cerber.php:3117
964
  msgid "Last lockout was added: %s for IP %s"
965
  msgstr "Последняя блокировка была добавлена %s для IP %s"
966
 
967
- #: wp-cerber.php:3116
968
  msgid "Number of active lockouts"
969
  msgstr "Число активных блокировок на данный момент"
970
 
971
- #: wp-cerber.php:3114
972
  msgid "Number of lockouts is increasing"
973
  msgstr "Число блокировок увеличилось"
974
 
975
- #: wp-cerber.php:3111
976
  msgid "unspecified"
977
  msgstr "неуказано"
978
 
979
- #: wp-cerber.php:3086 wp-cerber.php:3654
980
  msgid "View activity in dashboard"
981
  msgstr "Просмотреть журнал активности"
982
 
983
- #: wp-cerber.php:3085
984
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
985
  msgstr "Последняя неудачная попытка была в %s с IP адреса %s с логином %s."
986
 
987
- #: wp-cerber.php:3084
988
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
989
  msgstr "Режим Цитадель активирован после %d неудачных попыток за %d минут."
990
 
991
- #: wp-cerber.php:3082
992
  msgid "Citadel mode is activated"
993
  msgstr "Активирован режим Цитадель"
994
 
995
- #: wp-cerber.php:3060
996
  msgid "WP Cerber notify"
997
  msgstr "Уведомление WP Cerber"
998
 
999
- #: common.php:688
1000
  msgid "Limit on login attempts is reached"
1001
  msgstr "Количество попыток исчерпано"
1002
 
1003
- #: common.php:689
1004
  msgid "Attempt to access"
1005
  msgstr "Попытка доступа к"
1006
 
1007
- #: wp-cerber.php:999
1008
  msgid "Username is not allowed. Please choose another one."
1009
  msgstr "Имя пользователя недопустимо. Выберите другое."
1010
 
1011
- #: wp-cerber.php:778
1012
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
1013
  msgstr "<strong>ОШИБКА</strong>: Пароль введенный для пользователя %s is некорректен."
1014
 
1015
- #: wp-cerber.php:574
1016
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
1017
  msgstr "Антибот проверка неудачна. Пожалуйста тыкните в квадратную отметку блока reCAPTCHA ниже"
1018
 
1019
- #: common.php:194 common.php:251 common.php:255 settings.php:828
1020
- #: wp-cerber.php:545 wp-cerber.php:557 wp-cerber.php:564 wp-cerber.php:766
1021
- #: wp-cerber.php:982 wp-cerber.php:988 wp-cerber.php:993 wp-cerber.php:998
1022
- #: wp-cerber.php:1004 wp-cerber.php:1011 wp-cerber.php:1111 wp-cerber.php:1248
 
 
1023
  msgid "ERROR:"
1024
  msgstr "ОШИБКА:"
1025
 
1026
- #: wp-cerber.php:262
1027
  msgid "You have only one attempt remaining."
1028
  msgid_plural "You have %d attempts remaining."
1029
  msgstr[0] "У вас есть только одна попытка для входа"
1030
  msgstr[1] "У вас осталось %d попытки для входа."
1031
  msgstr[2] "У вас осталось %d попыток для входа."
1032
 
1033
- #: wp-cerber.php:243
1034
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
1035
  msgstr "Вход невозможен. Слишком много ошибочных попыток. Попробуйте войти через %d минут."
1036
 
1037
- #: wp-cerber.php:237
1038
  msgid "You are not allowed to log in. Ask your administrator for assistance."
1039
  msgstr "Вход на сайт невозможен. Обратитесь к администратору сайта."
1040
 
1041
- #: common.php:687 common.php:966 dashboard.php:313 dashboard.php:2572
1042
  #: whois.php:221 whois.php:252
1043
  msgid "Unknown"
1044
  msgstr "Неизвестен"
1045
 
1046
- #: settings.php:859 settings.php:871
1047
  msgid "<strong>ERROR</strong>: please enter a valid email address."
1048
  msgstr "<strong>ОШИБКА</strong>: Введите действительный адрес эл.почты."
1049
 
1050
- #: settings.php:778 settings.php:779
1051
  msgid "Attention! You have changed the login URL! The new login URL is"
1052
  msgstr "Внимание! Вы изменили URL страницы авторизации. Новый адрес"
1053
 
1054
- #: settings.php:519 settings.php:641
1055
  msgid "Enable after %s failed login attempts in last %s minutes"
1056
  msgstr "Активировать после %s неудачных авторизаций за последние %s минут"
1057
 
1058
- #: settings.php:514 settings.php:636
1059
  msgid "Notify admin if the number of active lockouts above"
1060
  msgstr "Уведомить администратора, если число заблокированных IP более"
1061
 
1062
- #: settings.php:507 settings.php:629
1063
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
1064
  msgstr "Увеличить длительность блокировки до %s часов после %s блокировок в течение последних %s часов"
1065
 
1066
- #: settings.php:497 settings.php:619
1067
  msgid "%s allowed retries in %s minutes"
1068
  msgstr "%s попыток разрешено в течении %s минут"
1069
 
1070
- #: settings.php:390
1071
  msgid "Help"
1072
  msgstr "Помощь"
1073
 
1074
- #: cerber-tools.php:43 dashboard.php:1000
1075
  msgid "Tools"
1076
  msgstr "Инструменты"
1077
 
1078
- #: settings.php:385
1079
  msgid "Users"
1080
  msgstr "Пользователи"
1081
 
1082
- #: settings.php:383 wp-cerber.php:3851
1083
  msgid "Hardening"
1084
  msgstr "Панцирь"
1085
 
1086
- #: settings.php:378 wp-cerber.php:3848
1087
  msgid "Main Settings"
1088
  msgstr "Главные настройки"
1089
 
1090
- #: cerber-lab.php:697 settings.php:346
1091
  msgid "Know more"
1092
  msgstr "Узнать больше"
1093
 
1094
- #: settings.php:345
1095
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
1096
  msgstr "Перед использованием reCAPTCHA вам нужно получить ключ сайта и секретный ключ на сайте Google"
1097
 
1098
- #: settings.php:342
1099
  msgid "These settings do not affect hosts from the "
1100
  msgstr "Эти настройки не применяются к адресам из"
1101
 
1102
- #: settings.php:335
1103
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
1104
  msgstr "Будте внимательны при установке этих параметров. Если вы забудете URL страницы авторизации вы не сможете войти в панель управления."
1105
 
1106
- #: settings.php:332
1107
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
1108
  msgstr "Для использования этой настройки необходимо активировать Постоянные ссылки в настройках сайта."
1109
 
1110
- #: settings.php:328
1111
  msgid "Make your protection smarter!"
1112
  msgstr "Сделайте защиту от злоумышленников еще умнее"
1113
 
1114
- #: settings.php:182
1115
  msgid "Login form"
1116
  msgstr "Форма входа"
1117
 
1118
- #: settings.php:179
1119
  msgid "Lost password form"
1120
  msgstr "Форма восстановления пароля"
1121
 
1122
- #: settings.php:173
1123
  msgid "Secret key"
1124
  msgstr "Секретный ключ"
1125
 
1126
- #: settings.php:172
1127
  msgid "Site key"
1128
  msgstr "Ключ сайта"
1129
 
1130
- #: settings.php:171
1131
  msgid "reCAPTCHA settings"
1132
  msgstr "Настройки reCAPTCHA"
1133
 
1134
- #: settings.php:141
1135
  msgid "in minutes (leave empty to use default WP value)"
1136
  msgstr "В минутах (оставьте пустым для значения WP по умолчанию)"
1137
 
1138
- #: settings.php:141
1139
  msgid "User session expire"
1140
  msgstr "Длительность сессии пользователя"
1141
 
1142
- #: settings.php:139
1143
  msgid "Usernames from this list are not allowed to log in or register. Any IP address, have tried to use any of these usernames, will be immediately blocked. Use comma to separate logins."
1144
  msgstr "Имена пользователей из этого списка не разрешены для входа или регистрации. Любой IP адрес пытающийся использовать эти имена будет автоматически заблокирован. Испольуйте запятую как разделитель."
1145
 
1146
- #: settings.php:133
1147
  msgid "Prohibited usernames"
1148
  msgstr "Запрещеные имена пользователей"
1149
 
1150
- #: settings.php:131
1151
  msgid "User related settings"
1152
  msgstr "Настройки пользователей"
1153
 
1154
- #: settings.php:113
1155
  msgid "Disable REST API"
1156
  msgstr "Отключить REST API"
1157
 
1158
- #: settings.php:112
1159
  msgid "Block access to the RSS, Atom and RDF feeds"
1160
  msgstr "Закрыть доступ к RSS, Atom и RDF лентам"
1161
 
1162
- #: settings.php:112
1163
  msgid "Disable feeds"
1164
  msgstr "Отключить ленты"
1165
 
1166
- #: settings.php:111
1167
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
1168
  msgstr "Закрыть доступ к функциям XML-RPC, включая уведомления и обратные ссылки"
1169
 
1170
- #: settings.php:111
1171
  msgid "Disable XML-RPC"
1172
  msgstr "Отключить XML-RPC"
1173
 
1174
- #: settings.php:110
1175
  msgid "Stop user enumeration"
1176
  msgstr "Заблокировать сбор имен"
1177
 
1178
- #: settings.php:109
1179
  msgid "Hardening WordPress"
1180
  msgstr "Усиление защиты WordPress"
1181
 
1182
- #: settings.php:98
1183
  msgid "Write failed login attempts to the file"
1184
  msgstr "Записывать попытки входа в файл"
1185
 
1186
- #: settings.php:98
1187
  msgid "Use file"
1188
  msgstr "Использовать файл"
1189
 
1190
- #: settings.php:101
1191
  msgid "Retrieve extra WHOIS information for IP"
1192
  msgstr "Получить дополнительную информацию об IP используя WHOIS"
1193
 
1194
- #: settings.php:101
1195
  msgid "Drill down IP"
1196
  msgstr "Изучать IP"
1197
 
1198
- #: settings.php:95 settings.php:168 settings.php:318
1199
  msgid "days"
1200
  msgstr "дней"
1201
 
1202
- #: settings.php:95 settings.php:314
1203
  msgid "Keep records for"
1204
  msgstr "Хранить записи не более"
1205
 
1206
- #: settings.php:209
1207
  msgid "notification letters allowed per hour (0 means unlimited)"
1208
  msgstr "разрешенное число писем с уведомлениями в час (0 - без ограничений)"
1209
 
1210
- #: settings.php:209
1211
  msgid "Notification limit"
1212
  msgstr "Ограничение уведомлений"
1213
 
1214
- #: settings.php:206
1215
  msgid "if empty, the admin email %s will be used"
1216
  msgstr "Если пусто, то будет использован адрес администратора %s"
1217
 
1218
- #: settings.php:197 settings.php:228
1219
  msgid "Email Address"
1220
  msgstr "Адрес email"
1221
 
1222
- #: settings.php:92 settings.php:516 settings.php:638
1223
  msgid "Click to send test"
1224
  msgstr "Нажмите, чтобы протестировать отправку"
1225
 
1226
- #: settings.php:92
1227
  msgid "Send notification to admin email"
1228
  msgstr "Отправить уведомление на адрес email администратора сайта"
1229
 
1230
- #: settings.php:91
1231
  msgid "Duration"
1232
  msgstr "Длительность"
1233
 
1234
- #: settings.php:90
1235
  msgid "Threshold"
1236
  msgstr "Порог"
1237
 
1238
- #: settings.php:87
1239
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
1240
  msgstr "Заблокировать доступ к wp-login.php и возвращать HTTP 404 Страница не найдена"
1241
 
1242
- #: settings.php:87
1243
  msgid "Disable wp-login.php"
1244
  msgstr "Доступ к wp-login.php"
1245
 
1246
- #: settings.php:86
1247
  msgid "must not overlap with the existing pages or posts slug"
1248
  msgstr "не должно совпадать с URL существующих страниц или постов"
1249
 
1250
- #: settings.php:86
1251
  msgid "Custom login URL"
1252
  msgstr "Адрес страницы авторизации"
1253
 
1254
- #: settings.php:85
1255
  msgid "Custom login page"
1256
  msgstr "Смена URL страницы авторизации"
1257
 
1258
- #: settings.php:82
1259
  msgid "Immediately block IP after any request to wp-login.php"
1260
  msgstr "Блокировать IP при любом запросе wp-login.php"
1261
 
1262
- #: settings.php:82
1263
  msgid "Request wp-login.php"
1264
  msgstr "Запрос wp-login.php"
1265
 
1266
- #: settings.php:81
1267
  msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
1268
  msgstr "Отключить автоматическую переадресацию при запросе /wp-admin/ неавторизованным пользователем"
1269
 
1270
- #: settings.php:81
1271
  msgid "Redirect dashboard requests"
1272
  msgstr "Запросы к панели управления"
1273
 
1274
- #: settings.php:80
1275
  msgid "Immediately block IP when attempting to login with a non-existent username"
1276
  msgstr "Блокировать IP при попытке авторизации с логином несуществующего пользователя"
1277
 
1278
- #: settings.php:80
1279
  msgid "Non-existent users"
1280
  msgstr "Несуществующие пользователи"
1281
 
1282
- #: settings.php:79
1283
  msgid "Always block entire subnet Class C of intruders IP"
1284
  msgstr "Всегда блокировать подсеть класса С вместо IP адреса"
1285
 
1286
- #: settings.php:79
1287
  msgid "Block subnet"
1288
  msgstr "Блокировка подсети"
1289
 
1290
- #: settings.php:78
1291
  msgid "Proactive security rules"
1292
  msgstr "Проактивные правила безопасности"
1293
 
1294
- #: dashboard.php:1283 settings.php:76
1295
  msgid "My site is behind a reverse proxy"
1296
  msgstr "Мой сайт подключен к сети через прокси-сервер"
1297
 
1298
- #: settings.php:76
1299
  msgid "Site connection"
1300
  msgstr "Подключение к сети"
1301
 
1302
- #: settings.php:75 settings.php:92 settings.php:388 wp-cerber.php:3852
1303
  msgid "Notifications"
1304
  msgstr "Уведомления"
1305
 
1306
- #: settings.php:73
1307
  msgid "Aggressive lockout"
1308
  msgstr "Ужесточение"
1309
 
1310
- #: settings.php:72 settings.php:91
1311
  msgid "minutes"
1312
  msgstr "минут"
1313
 
1314
- #: settings.php:72
1315
  msgid "Lockout duration"
1316
  msgstr "Длительность блокировки"
1317
 
1318
- #: settings.php:71
1319
  msgid "Attempts"
1320
  msgstr "Попытки"
1321
 
1322
- #: settings.php:70
1323
  msgid "Limit login attempts"
1324
  msgstr "Ограничение числа попыток авторизации"
1325
 
1326
- #: dashboard.php:866
1327
  msgid "Abuse email:"
1328
  msgstr "Адрес email для жалоб:"
1329
 
1330
- #: common.php:891
1331
  msgid "Update to version %s of WP Cerber"
1332
  msgstr "Обновить WP Cerber до версии %s"
1333
 
1334
- #: common.php:884
1335
  msgid "New version is available"
1336
  msgstr "Доступна новая версия"
1337
 
1338
- #: dashboard.php:1583
1339
  msgid "View Activity"
1340
  msgstr "Что происходит?"
1341
 
1342
- #: dashboard.php:1582
1343
  msgid "Deactivate"
1344
  msgstr "Деактивировать"
1345
 
1346
- #: dashboard.php:1581
1347
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
1348
  msgstr "Внимание! Режим Цитадель активен. Авторизация на сайте заблокирована."
1349
 
1350
- #: dashboard.php:1486
1351
  msgid "doesn't affect Custom login URL and Access Lists"
1352
  msgstr "не затронет настройки URL страницы авторизации и списки доступа"
1353
 
1354
- #: dashboard.php:1480
1355
  msgid "Are you sure?"
1356
  msgstr "Вы уверены?"
1357
 
1358
- #: dashboard.php:1478
1359
  msgid "Load default settings"
1360
  msgstr "Загрузить настройки"
1361
 
1362
- #: dashboard.php:1476
1363
  msgid "You can easily load default recommended settings using button below"
1364
  msgstr "Вы можете загрузить рекомендованные настройки с помощью всего одной кнопки"
1365
 
1366
- #: dashboard.php:1475
1367
  msgid "Confused about some settings?"
1368
  msgstr "Сомневаетесь какие настройки оптимальны?"
1369
 
1370
- #: settings.php:376
1371
  msgid "Lockouts"
1372
  msgstr "Блокировки"
1373
 
1374
- #: dashboard.php:1208 settings.php:89
1375
  msgid "Citadel mode"
1376
  msgstr "Режим Цитадель"
1377
 
1378
- #: dashboard.php:1206 dashboard.php:1207 dashboard.php:1754
1379
  msgid "entry"
1380
  msgid_plural "entries"
1381
  msgstr[0] "элемент"
1382
  msgstr[1] "элемента"
1383
  msgstr[2] "элементов"
1384
 
1385
- #: dashboard.php:1205
1386
  msgid "Last lockout"
1387
  msgstr "Последняя блокировка"
1388
 
1389
- #: dashboard.php:1204
1390
  msgid "Lockouts at the moment"
1391
  msgstr "Сейчас заблокировано"
1392
 
1393
- #: dashboard.php:1202
1394
  msgid "lockouts"
1395
  msgstr "блокировок"
1396
 
1397
- #: dashboard.php:1201 dashboard.php:1202
1398
  msgid "view all"
1399
  msgstr "просмотреть все"
1400
 
1401
- #: dashboard.php:1201 dashboard.php:1202
1402
  msgid "in 24 hours"
1403
  msgstr "за 24 часа"
1404
 
1405
- #: dashboard.php:1201
1406
  msgid "failed attempts"
1407
  msgstr "ошибок авторизации"
1408
 
1409
- #: dashboard.php:1196 dashboard.php:1210
1410
  msgid "disabled"
1411
  msgstr "отключен"
1412
 
1413
- #: dashboard.php:1195
1414
  msgid "not active"
1415
  msgstr "неактивен"
1416
 
1417
- #: dashboard.php:1193
1418
  msgid "deactivate"
1419
  msgstr "деактивировать"
1420
 
1421
- #: dashboard.php:1193 dashboard.php:1214
1422
  msgid "active"
1423
  msgstr "активен"
1424
 
1425
- #: dashboard.php:1159
1426
  msgid "Cerber Quick View"
1427
  msgstr "Сводка от Cerber"
1428
 
1429
- #: cerber-tools.php:185
1430
  msgid "Error while parsing file"
1431
  msgstr "Возникла ошибка при обработке файла"
1432
 
1433
- #: cerber-tools.php:181
1434
  msgid "Settings has imported successfully from"
1435
  msgstr "Все настройки успешно загружены"
1436
 
1437
- #: cerber-tools.php:178
1438
  msgid "Error while updating"
1439
  msgstr "Возникла ошибка при обновлении"
1440
 
1441
- #: cerber-tools.php:145
1442
  msgid "No file was uploaded or file is corrupted"
1443
  msgstr "Файл не был загружен или имеет неверный формат"
1444
 
1445
- #: cerber-tools.php:98
1446
  msgid "Upload file"
1447
  msgstr "Загрузить файл"
1448
 
1449
- #: cerber-tools.php:96
1450
  msgid "What do you want to import?"
1451
  msgstr "Что вы хотите импортировать?"
1452
 
1453
- #: cerber-tools.php:93
1454
  msgid "Maximum upload file size: %s."
1455
  msgstr "Максимальный размер загружаемого файла: %s."
1456
 
1457
- #: cerber-tools.php:93
1458
  msgid "Select file to import."
1459
  msgstr "Выберите файл для загрузки."
1460
 
1461
- #: cerber-tools.php:92
1462
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
1463
  msgstr "Когда вы нажмете на кнопку, все настройки из файла будут загружены на сайт"
1464
 
1465
- #: cerber-tools.php:91
1466
  msgid "Import settings from the file"
1467
  msgstr "Импорт настроек из файла"
1468
 
1469
- #: cerber-tools.php:89
1470
  msgid "Download file"
1471
  msgstr "Скачать файл"
1472
 
1473
- #: cerber-tools.php:88 cerber-tools.php:97 cerber-tools.php:178
1474
- #: settings.php:381 wp-cerber.php:3849
1475
  msgid "Access Lists"
1476
  msgstr "Списки доступа"
1477
 
1478
- #: cerber-tools.php:87 cerber-tools.php:96 dashboard.php:2499
1479
  msgid "Settings"
1480
  msgstr "Настройки"
1481
 
1482
- #: cerber-tools.php:86
1483
  msgid "What do you want to export?"
1484
  msgstr "Что вы хотите экспортировать"
1485
 
1486
- #: cerber-tools.php:85
1487
  msgid "When you click the button below you will get a configuration file, which you can upload on another site."
1488
  msgstr "Когда вы нажмете на кнопку, то получите файл с настройками, который можно использовать на других сайтах."
1489
 
1490
- #: cerber-tools.php:84
1491
  msgid "Export settings to the file"
1492
  msgstr "Экспорт настроек в файл"
1493
 
1494
- #: dashboard.php:1105 dashboard.php:1189
1495
  msgid "Never"
1496
  msgstr "Никогда"
1497
 
1498
- #: common.php:611
1499
  msgid "User created"
1500
  msgstr "Пользователь создан"
1501
 
1502
- #: common.php:612 dashboard.php:1429
1503
  msgid "User registered"
1504
  msgstr "Пользователь зарегистрирован"
1505
 
1506
- #: common.php:613
1507
  msgid "Logged in"
1508
  msgstr "Вход"
1509
 
1510
- #: common.php:614
1511
  msgid "Logged out"
1512
  msgstr "Выход"
1513
 
1514
- #: common.php:615
1515
  msgid "Login failed"
1516
  msgstr "Ошибка авторизации"
1517
 
1518
- #: common.php:618
1519
  msgid "IP blocked"
1520
  msgstr "IP заблокирован"
1521
 
1522
- #: common.php:619
1523
  msgid "Subnet blocked"
1524
  msgstr "Подсеть заблокирована"
1525
 
1526
- #: common.php:621
1527
  msgid "Citadel activated!"
1528
  msgstr "Режим Цитадель активирован!"
1529
 
1530
- #: common.php:658 dashboard.php:632 dashboard.php:836 dashboard.php:2647
1531
  msgid "Locked out"
1532
  msgstr "Заблокировано"
1533
 
1534
- #: common.php:636
1535
  msgid "Password changed"
1536
  msgstr "Пароль изменен"
1537
 
1538
- #: common.php:659
1539
  msgid "IP blacklisted"
1540
  msgstr "IP в черном списке"
1541
 
1542
- #: common.php:639
1543
  msgid "reCAPTCHA verification failed"
1544
  msgstr "проверка reCAPTCHA неудачна"
1545
 
1546
- #: common.php:640
1547
  msgid "reCAPTCHA settings are incorrect"
1548
  msgstr "настройки reCAPTCHA неверны"
1549
 
1550
- #: common.php:643
1551
  msgid "Attempt to access prohibited URL"
1552
  msgstr "Попытка доступа к запрещенному URL"
1553
 
1554
- #: common.php:644 common.php:690
1555
  msgid "Attempt to log in with non-existent username"
1556
  msgstr "Попытка войти с несуществующим именем пользователя"
1557
 
1558
- #: common.php:645 common.php:691
1559
  msgid "Attempt to log in with prohibited username"
1560
  msgstr "Попытка входа с запрещенным именем"
1561
 
@@ -1563,11 +1586,11 @@ msgstr "Попытка входа с запрещенным именем"
1563
  msgid "Remove"
1564
  msgstr "Удалить"
1565
 
1566
- #: dashboard.php:93 dashboard.php:652 dashboard.php:2811 wp-cerber.php:3622
1567
  msgid "IP"
1568
  msgstr "IP"
1569
 
1570
- #: dashboard.php:94 dashboard.php:653
1571
  msgid "Hostname"
1572
  msgstr "Имя узла"
1573
 
@@ -1575,7 +1598,7 @@ msgstr "Имя узла"
1575
  msgid "Expires"
1576
  msgstr "Истекает"
1577
 
1578
- #: dashboard.php:97 wp-cerber.php:3118
1579
  msgid "Reason"
1580
  msgstr "Причина"
1581
 
@@ -1599,8 +1622,8 @@ msgstr "Чтобы увидеть активность, нажмите на ад
1599
  msgid "No lockouts at the moment. The sky is clear."
1600
  msgstr "Блокировок нет. Все в порядке."
1601
 
1602
- #: dashboard.php:131 dashboard.php:627 dashboard.php:830 dashboard.php:1206
1603
- #: dashboard.php:2642 settings.php:74 settings.php:342 wp-cerber.php:3841
1604
  msgid "White IP Access List"
1605
  msgstr "Белый список доступа по IP"
1606
 
@@ -1608,8 +1631,8 @@ msgstr "Белый список доступа по IP"
1608
  msgid "These IPs will never be locked out"
1609
  msgstr "Эти адреса не будут заблокированы ни при каких условиях"
1610
 
1611
- #: dashboard.php:133 dashboard.php:628 dashboard.php:833 dashboard.php:1207
1612
- #: dashboard.php:2643
1613
  msgid "Black IP Access List"
1614
  msgstr "Черный список доступа по IP"
1615
 
@@ -1621,7 +1644,7 @@ msgstr "Никто не сможет войти или зарегистриро
1621
  msgid "Your IP"
1622
  msgstr "Ваш адрес IP"
1623
 
1624
- #: dashboard.php:158 dashboard.php:843 dashboard.php:870 dashboard.php:961
1625
  msgid "Check for activity"
1626
  msgstr "Проверить активность"
1627
 
@@ -1645,51 +1668,51 @@ msgstr "Адрес %s добавлен в черный список доступ
1645
  msgid "unknown"
1646
  msgstr "неизвестно"
1647
 
1648
- #: dashboard.php:390
1649
  msgid "Lockout for %s was removed"
1650
  msgstr "Удалена блокировка для %s"
1651
 
1652
- #: dashboard.php:407 dashboard.php:1598
1653
  msgid "Settings saved"
1654
  msgstr "Настройки сохранены."
1655
 
1656
- #: dashboard.php:491 dashboard.php:655 dashboard.php:2809
1657
  msgid "Date"
1658
  msgstr "Дата"
1659
 
1660
- #: dashboard.php:1226 dashboard.php:1436 settings.php:94 settings.php:372
1661
- #: wp-cerber.php:3613
1662
  msgid "Activity"
1663
  msgstr "Активность"
1664
 
1665
- #: dashboard.php:680
1666
  msgid "No activity has been logged."
1667
  msgstr "Ни одного события не зафиксировано."
1668
 
1669
- #: dashboard.php:491 dashboard.php:658 wp-cerber.php:3630
1670
  msgid "Username used"
1671
  msgstr "Использован логин"
1672
 
1673
- #: dashboard.php:491 dashboard.php:657 dashboard.php:2814
1674
  msgid "Local User"
1675
  msgstr "Пользователь"
1676
 
1677
- #: dashboard.php:888
1678
  msgid "Add IP to the Black List"
1679
  msgstr "Добавить IP в черный список"
1680
 
1681
- #: dashboard.php:988 dashboard.php:1010
1682
  msgid "WP Cerber"
1683
  msgstr "WP Cerber"
1684
 
1685
- #: dashboard.php:1071
1686
  msgid "Comments"
1687
  msgstr "Комментарии"
1688
 
1689
- #: dashboard.php:1072
1690
  msgid "Last login"
1691
  msgstr "Последний вход"
1692
 
1693
- #: settings.php:142
1694
  msgid "by date of registration"
1695
  msgstr "по дате регистрации"
2
  # This file is distributed under the same license as the Plugins - Cerber Security &amp; Antispam - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-02-18 23:31:28+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: ru\n"
12
  "Project-Id-Version: Plugins - Cerber Security &amp; Antispam - Stable (latest release)\n"
13
 
14
+ #: settings.php:114
15
+ msgid "Block unauthorized access to load-scripts.php and load-styles.php"
16
+ msgstr "Блокировка неавторизованного доступа к load-scripts.php и load-styles.php"
17
+
18
+ #: settings.php:114
19
+ msgid "Protect admin scripts"
20
+ msgstr "Защита скриптов администратора"
21
+
22
+ #: cerber-load.php:3092
23
+ msgid "We're sorry, you are not allowed to proceed"
24
+ msgstr "Извините, вам не разрешено продолжить"
25
+
26
+ #: settings.php:266
27
+ msgid "Enter a request URI to exclude the request from inspection. One item per line."
28
+ msgstr "Введите URI запроса для исключения из инспекции. Один элемент на строку."
29
+
30
+ #: settings.php:260
31
+ msgid "Request whitelist"
32
+ msgstr "Белый список запросов"
33
+
34
+ #: dashboard.php:3120
35
+ msgid "Any"
36
+ msgstr "Любой"
37
+
38
+ #: settings.php:327
39
  msgid "milliseconds"
40
  msgstr "миллисекунд"
41
 
42
+ #: settings.php:322
43
  msgid "Page generation time threshold"
44
  msgstr "Порог времени генерации страницы"
45
 
46
+ #: settings.php:315
47
  msgid "Save request cookies"
48
  msgstr "Сохранять куки запроса"
49
 
50
+ #: settings.php:309
51
  msgid "Save $_SERVER"
52
  msgstr "Сохранять $_SERVER"
53
 
54
+ #: settings.php:303
55
  msgid "Save request headers"
56
  msgstr "Сохранять заголовки запроса"
57
 
58
+ #: settings.php:292
59
  msgid "Mask these form fields"
60
  msgstr "Маскировать эти поля форм"
61
 
62
+ #: settings.php:287
63
  msgid "Save request fields"
64
  msgstr "Сохранять поля запросов"
65
 
66
+ #: settings.php:282
67
  msgid "Ignore crawlers"
68
  msgstr "Игнорировать веб-пауков"
69
 
70
+ #: settings.php:278
71
  msgid "All traffic"
72
  msgstr "Весь трафик"
73
 
74
+ #: settings.php:277
75
  msgid "Smart"
76
  msgstr "Умная выборка"
77
 
78
+ #: settings.php:276
79
  msgid "Logging disabled"
80
  msgstr "Журнал отключен"
81
 
82
+ #: settings.php:270
83
  msgid "Logging mode"
84
  msgstr "Режим журнала"
85
 
86
+ #: settings.php:269
87
  msgid "Logging"
88
  msgstr "Журналирование"
89
 
90
+ #: settings.php:255
91
  msgid "Enable traffic inspection"
92
  msgstr "Включить инспектирование трафика"
93
 
94
+ #: settings.php:254
95
  msgid "Inspection"
96
  msgstr "Инспектирование"
97
 
98
+ #: dashboard.php:3160
99
  msgid "Advanced search"
100
  msgstr "Улучшенный поиск"
101
 
102
+ #: dashboard.php:2899
103
  msgid "Refresh"
104
  msgstr "Обновить"
105
 
106
+ #: dashboard.php:2886
107
  msgid "Longer than"
108
  msgstr "Дольше чем"
109
 
110
+ #: dashboard.php:2882
111
  msgid "XML-RPC"
112
  msgstr "XML-RPC"
113
 
114
+ #: dashboard.php:2881
115
  msgid "REST API"
116
  msgstr "REST API"
117
 
118
+ #: dashboard.php:2880
119
  msgid "Page Not Found"
120
  msgstr "Страница не найдена"
121
 
122
+ #: dashboard.php:2879
123
  msgid "Form submissions"
124
  msgstr "Отправки форм"
125
 
126
+ #: dashboard.php:2878
127
  msgid "Not logged in visitors"
128
  msgstr "Неавторизованные посетители"
129
 
130
+ #: dashboard.php:2876
131
  msgid "All requests"
132
  msgstr "Все запросы"
133
 
134
+ #: dashboard.php:2868
135
  msgid "No requests have been logged."
136
  msgstr "В журнале нет данных о запросах."
137
 
138
+ #: dashboard.php:2851
139
  msgid "User Agent"
140
  msgstr "User Agent"
141
 
142
+ #: dashboard.php:2850
143
  msgid "Host Info"
144
  msgstr "Информация о хосте"
145
 
146
+ #: dashboard.php:2848
147
  msgid "Request"
148
  msgstr "Запрос"
149
 
150
+ #: dashboard.php:2533
151
  msgid "Live traffic"
152
  msgstr "Живой трафик"
153
 
154
+ #: dashboard.php:1244
155
  msgid "Traffic"
156
  msgstr "Трафик"
157
 
158
+ #: dashboard.php:1231
159
  msgid "no connection"
160
  msgstr "нет подключения"
161
 
162
+ #: dashboard.php:1227
163
  msgid "enabled"
164
  msgstr "включено"
165
 
166
+ #: dashboard.php:1000 dashboard.php:1228 dashboard.php:2528
167
  msgid "Traffic Inspector"
168
  msgstr "Инспектор трафика"
169
 
170
+ #: dashboard.php:1000
171
  msgid "Cerber Traffic Inspector"
172
  msgstr "Цербер-инспектор трафика"
173
 
174
+ #: dashboard.php:956
175
  msgid "Last seen"
176
  msgstr "Последний раз"
177
 
178
+ #: common.php:1066
179
  msgid "Not specified"
180
  msgstr "Не указано"
181
 
182
+ #: common.php:803 common.php:851
183
  msgid "Probing for vulnerable PHP code"
184
+ msgstr "Проверка на уязвимый PHP-код"
185
 
186
+ #: common.php:109
187
  msgid "Check for requests"
188
  msgstr "Проверить запросы"
189
 
190
  #: dashboard.php:212
191
  msgid "You cannot add your IP address or network"
192
+ msgstr "Вы не можете добавить ваш IP-адрес или сеть"
193
 
194
  #: dashboard.php:171
195
  msgid "Optional comment for this entry"
199
  msgid "IP address, IPv4 address range or subnet"
200
  msgstr "IP адрес, диапазон IPv4 адресов или адрес подсети"
201
 
202
+ #: cerber-load.php:3466
203
  msgid "Attempts to log in with non-existent username"
204
  msgstr "Попытка войти с несуществующим именем пользователя"
205
 
206
+ #: cerber-load.php:3440
207
  msgid "Weekly Report"
208
  msgstr "Недельный отчет"
209
 
210
+ #: cerber-load.php:3365
211
  msgid "Your last sign-in was %s from %s"
212
  msgstr "Ваш последний вход был %s с %s"
213
 
214
+ #: settings.php:234
215
  msgid "Enable reporting"
216
  msgstr "Включить отчеты"
217
 
218
+ #: settings.php:246
219
  msgid "if empty, email from notification settings will be used"
220
  msgstr "если не задано, будет использован адрес из настроек уведомлений"
221
 
222
+ #: settings.php:167
223
  msgid "Enter a part of query string or query path to exclude a request from inspection by the engine. One item per line."
224
  msgstr "Введите часть строки или пути запроса для исключения запроса из проверки движком. Один элемент на строку."
225
 
226
+ #: settings.php:143
227
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
228
  msgstr "Для использования регулярных выражений оберните их в два прямых слеша."
229
 
230
+ #: settings.php:86
231
  msgid "Display simple 404 page"
232
  msgstr "Показать простую страницу 404"
233
 
234
+ #: settings.php:86
235
  msgid "Use 404 template from the active theme"
236
+ msgstr "Использовать шаблон 404 активной темы"
237
 
238
+ #: dashboard.php:2413
239
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
240
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
241
  msgstr "Выбранным странам не разрешено %s, остальным странам разрешено"
242
 
243
+ #: dashboard.php:2410
244
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
245
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
246
  msgstr "Выбранным странам разрешено %s, остальным странам - нет"
247
 
248
+ #: dashboard.php:2259
249
  msgid "Not permitted for one country"
250
  msgid_plural "Not permitted for %d countries"
251
  msgstr[0] "Не разрешено в одной стране"
260
  msgid "Email has been sent to"
261
  msgstr "Сообщение было отправлено на электронный адрес"
262
 
263
+ #: cerber-news.php:165
264
  msgid "Cool!"
265
  msgstr "Отлично!"
266
 
267
+ #: cerber-load.php:3452
268
  msgid "Activity details"
269
  msgstr "Подробно об активности"
270
 
271
+ #: cerber-load.php:3341
272
  msgid "Your license is valid until"
273
  msgstr "Ваша лицензия действительна до"
274
 
275
+ #: cerber-load.php:3337
276
  msgid "Your login page:"
277
  msgstr "Ваша страница входа:"
278
 
279
+ #: cerber-load.php:3311
280
  msgid "To change reporting settings visit"
281
  msgstr "Для смены настроек отчетности зайдите"
282
 
283
+ #: cerber-load.php:3308
284
  msgid "Weekly report"
285
  msgstr "Недельный отчет"
286
 
287
+ #: cerber-load.php:790
288
  msgid "> > > Translator of WP Cerber? To get the PRO license for free, drop your contacts here: https://wpcerber.com/contact/"
289
  msgstr ">>> Переводите WP Cerber? Получите PRO лицензию бесплатно, оставьте контакты здесь: https://wpcerber.com/contact/"
290
 
291
+ #: settings.php:769
292
  msgid "Click to send now"
293
  msgstr "Нажмите для отправки сейчас"
294
 
295
  #. translators: preposition of time
296
+ #: settings.php:753
297
  msgctxt "preposition of time"
298
  msgid "at"
299
  msgstr "в"
300
 
301
+ #: settings.php:743
302
  msgid "Saturday"
303
  msgstr "Суббота"
304
 
305
+ #: settings.php:742
306
  msgid "Friday"
307
  msgstr "Пятница"
308
 
309
+ #: settings.php:741
310
  msgid "Thursday"
311
  msgstr "Четверг"
312
 
313
+ #: settings.php:740
314
  msgid "Wednesday"
315
  msgstr "Среда"
316
 
317
+ #: settings.php:739
318
  msgid "Tuesday"
319
  msgstr "Вторник"
320
 
321
+ #: settings.php:738
322
  msgid "Monday"
323
  msgstr "Понедельник"
324
 
325
+ #: settings.php:737
326
  msgid "Sunday"
327
  msgstr "Воскресенье"
328
 
329
+ #: settings.php:233
330
  msgid "Weekly reports"
331
  msgstr "Недельные отчеты"
332
 
333
+ #: dashboard.php:1821
334
  msgid "Main settings"
335
  msgstr "Основные настройки"
336
 
337
+ #: settings.php:803 settings.php:804
338
  msgid "If you use a caching plugin, you have to add your new login URL to the list of pages not to cache."
339
  msgstr "Если вы используете плагин кеширования, вам нужно добавить новый URL входа в список исключений кеширования"
340
 
341
+ #: settings.php:518 settings.php:640
342
  msgid "%s allowed registrations in %s minutes from one IP"
343
  msgstr "%s разрешенных регистраций в %s минут с одного IP"
344
 
345
+ #: settings.php:171
346
  msgid "Mark it as spam"
347
  msgstr "Пометить как спам"
348
 
349
+ #: settings.php:171
350
  msgid "Deny it completely"
351
  msgstr "Полностью запретить"
352
 
353
+ #: settings.php:146
354
  msgid "Sort users in dashboard"
355
  msgstr "Сортировать пользователей в консоли"
356
 
357
+ #: settings.php:136
358
  msgid "Registration limit"
359
  msgstr "Предел регистраций"
360
 
361
+ #: settings.php:118
362
  msgid "Allow REST API for logged in users"
363
  msgstr "Разрешить REST API для авторизованных пользователей"
364
 
365
+ #: dashboard.php:2435
366
  msgid "Use REST API"
367
  msgstr "использование REST API"
368
 
369
+ #: dashboard.php:2434
370
  msgid "Use XML-RPC"
371
  msgstr "использование XML-RPC"
372
 
373
+ #: dashboard.php:2433
374
  msgid "Register on the website"
375
  msgstr "регистрация на сайте"
376
 
377
+ #: dashboard.php:2432
378
  msgid "Log in to the website"
379
  msgstr "авторизация на сайте"
380
 
381
+ #: dashboard.php:2431
382
  msgid "Post comments"
383
  msgstr "отправка комментариев"
384
 
385
+ #: dashboard.php:2430
386
  msgid "Submit forms"
387
  msgstr "отправка форм"
388
 
389
+ #: dashboard.php:2406
390
  msgid "Click on a country name to add it to the list of selected countries"
391
  msgstr "Нажмите на страну чтобы добавить ее в список выбранных"
392
 
393
+ #: dashboard.php:2323
394
  msgid "Start typing here to find a country"
395
  msgstr "Начните печатать тут чтобы найти страну"
396
 
397
+ #: cerber-load.php:3292 cerber-load.php:3978 dashboard.php:1524
398
  msgid "Getting Started Guide"
399
  msgstr "Руководство с чего начать"
400
 
401
+ #: dashboard.php:1450
402
  msgid "in the last 24 hours"
403
  msgstr "В последние 24 часа"
404
 
405
+ #: dashboard.php:1158
406
  msgid "You"
407
  msgstr "Вы"
408
 
409
+ #: dashboard.php:963 dashboard.php:1091
410
  msgid "Registered"
411
  msgstr "Зарегистрирован"
412
 
413
+ #: dashboard.php:1090
414
  msgid "Failed login attempts"
415
  msgstr "Неудачные попытки входа"
416
 
417
+ #: common.php:850
418
  msgid "Multiple suspicious activities were detected"
419
  msgstr "Обнаружена множественная подозрительная активность"
420
 
421
+ #: common.php:821
422
  msgid "Multiple suspicious activities"
423
  msgstr "Множественная подозрительная активность"
424
 
425
+ #: common.php:820
426
  msgid "Limit reached"
427
  msgstr "Предел достигнут"
428
 
429
+ #: settings.php:161
430
  msgid "Query whitelist"
431
  msgstr "Белый список запросов"
432
 
433
+ #: settings.php:125
434
  msgid "Specify REST API namespaces to be allowed if REST API is disabled. One string per line."
435
  msgstr "Укажите пространства имен REST API разрешенных при отключении REST API, одно имя на строку."
436
 
437
+ #: settings.php:117
438
  msgid "Block access to the WordPress REST API except the following"
439
  msgstr "Блокировать доступ к REST API кроме следующего"
440
 
441
+ #: settings.php:113
442
  msgid "Block access to user pages like /?author=n and user data via REST API"
443
  msgstr "Блокировать доступ к страницам пользователя /?author=n и данным о пользователях через REST API"
444
 
445
+ #: dashboard.php:2479
446
  msgid "Security rules have been updated"
447
  msgstr "Правила безопасности обновлены"
448
 
449
+ #: dashboard.php:2267
450
  msgid "No rule"
451
  msgstr "Нет правила"
452
 
453
+ #: dashboard.php:2256
454
  msgid "Permitted for one country"
455
  msgid_plural "Permitted for %d countries"
456
  msgstr[0] "Разрешается для одной страны"
457
  msgstr[1] "Разрешается для %d стран"
458
  msgstr[2] "Разрешается для %d стран"
459
 
460
+ #: dashboard.php:2193
461
  msgid "Countries"
462
  msgstr "Страны"
463
 
464
+ #: common.php:146
465
  msgid "Spam form submissions denied"
466
  msgstr "Заблокированы отправки форм спама"
467
 
468
+ #: dashboard.php:1004 dashboard.php:2188
469
  msgid "Security Rules"
470
  msgstr "Правила безопасности"
471
 
472
+ #: dashboard.php:1004
473
  msgid "Cerber Security Rules"
474
  msgstr "Правила безопасности Цербер"
475
 
476
+ #: dashboard.php:693
477
  msgid "All events"
478
  msgstr "Все события"
479
 
480
+ #: dashboard.php:95 dashboard.php:661
481
  msgid "Country"
482
  msgstr "Страна"
483
 
484
+ #: common.php:819
485
  msgid "Blocked by country rule"
486
  msgstr "Заблокирован по ограничению для страны"
487
 
488
+ #: common.php:818
489
  msgid "Malicious activity detected"
490
  msgstr "Обнаружена вредоносная активность"
491
 
492
+ #: common.php:813
493
  msgid "Citadel mode is active"
494
  msgstr "Режим цитадель активен"
495
 
496
+ #: common.php:812
497
  msgid "Bot detected"
498
  msgstr "Обнаружен бот"
499
 
500
+ #: common.php:808
501
  msgid "XML-RPC request denied"
502
  msgstr "Запрос XML-RPC заблокирован"
503
 
504
+ #: common.php:807
505
  msgid "Request to REST API denied"
506
  msgstr "Запрос к REST API заблокирован"
507
 
508
+ #: common.php:779
509
  msgid "Comment denied"
510
  msgstr "Комментарий заблокирован"
511
 
512
+ #: common.php:778
513
  msgid "Form submission denied"
514
  msgstr "Отправка формы заблокирована"
515
 
521
  msgid "WP Cerber Security & Antispam"
522
  msgstr "WP Cerber Security & Antispam"
523
 
524
+ #: settings.php:160
525
  msgid "Disable bot detection engine for logged in users"
526
  msgstr "Отключить определение ботов для авторизованных пользователей"
527
 
528
+ #: dashboard.php:2877 settings.php:160
529
  msgid "Logged in users"
530
  msgstr "Авторизованные пользователи"
531
 
532
+ #: settings.php:159
533
  msgid "Use less restrictive policies (allow AJAX)"
534
  msgstr "Использовать менее жесткую политику (разрешить AJAX)"
535
 
536
+ #: settings.php:159
537
  msgid "Safe mode"
538
  msgstr "Безопасный режим"
539
 
540
+ #: settings.php:158
541
  msgid "Adjust antispam engine"
542
  msgstr "Настроить антиспам-движок"
543
 
544
+ #: settings.php:156
545
  msgid "Protect all forms on the website with bot detection engine"
546
  msgstr "Защитить все формы на сайте через определение ботов"
547
 
548
+ #: settings.php:156
549
  msgid "Other forms"
550
  msgstr "Другие формы"
551
 
552
+ #: common.php:777
553
  msgid "Spam form submission denied"
554
  msgstr "Отправка формы со спамом заблокирована"
555
 
556
+ #: cerber-load.php:1395
557
  msgid "Sorry, human verification failed."
558
  msgstr "Извините, проверка на человека не удалась."
559
 
560
+ #: settings.php:172
561
  msgid "Move spam comments to trash after"
562
  msgstr "Удалить спам комментарии в корзину после"
563
 
564
+ #: settings.php:172
565
  msgid "Trash spam comments"
566
  msgstr "Удалить спам комментарии в корзину"
567
 
568
+ #: settings.php:171
569
  msgid "If a spam comment detected"
570
  msgstr "Если обнаружен спам комментарий"
571
 
572
+ #: settings.php:170
573
  msgid "Comment processing"
574
  msgstr "Обработка комментария"
575
 
576
+ #: settings.php:155
577
  msgid "Protect registration form with bot detection engine"
578
  msgstr "Защита регистрации через определение ботов"
579
 
580
+ #: settings.php:154
581
  msgid "Protect comment form with bot detection engine"
582
  msgstr "Защита комментариев через определение ботов"
583
 
584
+ #: settings.php:153
585
  msgid "Cerber antispam engine"
586
  msgstr "Движок Цербер-антиспам"
587
 
588
+ #: cerber-load.php:3985 dashboard.php:1007 dashboard.php:1245 settings.php:189
589
  msgid "Antispam"
590
  msgstr "Аниспам"
591
 
592
+ #: dashboard.php:1007
593
  msgid "Cerber antispam settings"
594
  msgstr "Настройка Цербер антиспам"
595
 
596
+ #: common.php:849
597
  msgid "Bot activity is detected"
598
  msgstr "Обнаружена активность ботов"
599
 
600
+ #: cerber-tools.php:343
601
  msgid "Antispam and bot detection settings"
602
  msgstr "Антиспам и настройки определения ботов"
603
 
609
  msgid "Export & Import"
610
  msgstr "Экспорт и Импорт"
611
 
612
+ #: cerber-load.php:1130 cerber-load.php:1136 cerber-load.php:1152
613
+ #: cerber-load.php:1159
614
  msgid "You are not allowed to register."
615
  msgstr "Вам не разрешено зарегистрироваться."
616
 
617
+ #: dashboard.php:1465
618
  msgid "All suspicious activity"
619
  msgstr "Вся подозрительная активность"
620
 
621
+ #: common.php:148
622
  msgid "Lockouts occurred"
623
  msgstr "Блокировок произошло"
624
 
625
+ #: common.php:147
626
  msgid "Malicious IP addresses detected"
627
  msgstr "Найдены вредоносные IP адреса"
628
 
629
+ #: common.php:145
630
  msgid "Spam comments denied"
631
  msgstr "Спам-комментарии отклонены"
632
 
633
+ #: common.php:142
634
  msgid "Malicious activities mitigated"
635
  msgstr "Вредоносная активность снижена"
636
 
637
+ #: dashboard.php:498 dashboard.php:663
638
  msgid "Event"
639
  msgstr "Событие"
640
 
641
+ #: common.php:802
642
  msgid "Attempt to register denied"
643
  msgstr "Попытка регистрации отклонена"
644
 
645
+ #: common.php:801
646
  msgid "Attempt to log in denied"
647
  msgstr "Попытка входа отклонена"
648
 
649
+ #: common.php:776
650
  msgid "Spam comment denied"
651
  msgstr "Спам коммнтарий отклонен"
652
 
653
+ #: settings.php:355
654
  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."
655
  msgstr "В режиме Цитадель никто не может войти кроме как с IP в белом списке. Активные сессии пользователей не будут затронуты."
656
 
657
+ #: settings.php:192
658
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
659
  msgstr "Блокировать IP адрес на %s минут после %s неудачных попыток в течении %s минут"
660
 
661
+ #: settings.php:192
662
  msgid "Limit attempts"
663
  msgstr "Ограничение попыток"
664
 
665
+ #: settings.php:77
666
  msgid "Apply limit login rules to IP addresses in the White IP Access List"
667
  msgstr "Применить правила входа для IP адресов в белом списке"
668
 
669
+ #: common.php:848
670
  msgid "Limit on failed reCAPTCHA verifications is reached"
671
  msgstr "Достигнут предел проверки reCAPTCHA"
672
 
673
+ #: common.php:791
674
  msgid "Password reset requested"
675
  msgstr "Запрошен сброс пароля"
676
 
677
+ #: settings.php:178
678
  msgid "(do not enable it unless you get and enter the Site and Secret keys for the invisible version)"
679
  msgstr "(не включайте, если у вас нет или вы не вводили ключ сайта и секретный ключ для невидимой версии)"
680
 
681
+ #: settings.php:190
682
  msgid "Disable reCAPTCHA for logged in users"
683
  msgstr "Отключить reCAPTCHA для авторизованных пользователей"
684
 
685
+ #: settings.php:189
686
  msgid "Enable reCAPTCHA for WordPress comment form"
687
  msgstr "Включить reCAPTCHA в форме комментариев WordPress"
688
 
689
+ #: settings.php:154
690
  msgid "Comment form"
691
  msgstr "Форма комментариев"
692
 
693
+ #: settings.php:178
694
  msgid "Enable invisible reCAPTCHA"
695
  msgstr "Включить невидимую reCAPTCHA"
696
 
697
+ #: settings.php:178
698
  msgid "Invisible reCAPTCHA"
699
  msgstr "невидимая reCAPTCHA"
700
 
701
+ #: common.php:906
702
  msgid "%s ago"
703
  msgstr "%s назад"
704
 
705
+ #: settings.php:229
706
  msgid "Not available"
707
  msgstr "Недоступно"
708
 
709
+ #: settings.php:227
710
  msgid "No devices found"
711
  msgstr "Устройства не найдены"
712
 
713
+ #: settings.php:226
714
  msgid "All connected devices"
715
  msgstr "Все подключенные устройства"
716
 
717
+ #: settings.php:205 settings.php:241 settings.php:298
718
  msgid "Use comma to specify multiple values"
719
  msgstr "Используйте запятую для разделения множественных значений"
720
 
721
+ #: settings.php:198
722
  msgid "Email notifications"
723
  msgstr "Уведомления по эл.почте"
724
 
725
+ #: settings.php:86
726
  msgid "Display 404 page"
727
  msgstr "Показывать страницу 404"
728
 
729
+ #: settings.php:219
730
  msgid "Push notifications"
731
  msgstr "Push уведомления"
732
 
733
+ #: dashboard.php:702
734
  msgid "Search for IP or username"
735
  msgstr "Поиск IP или имени пользователя"
736
 
737
+ #: cerber-tools.php:273 dashboard.php:1731
738
  msgid "Unsubscribe"
739
  msgstr "Отменить подписку"
740
 
741
+ #: dashboard.php:498
742
  msgid "User login"
743
  msgstr "Имя пользователя"
744
 
745
+ #: dashboard.php:498
746
  msgid "IP address"
747
  msgstr "IP адрес"
748
 
749
+ #: dashboard.php:683
750
  msgid "Export"
751
  msgstr "Экспорт"
752
 
753
+ #: dashboard.php:498
754
  msgid "User ID"
755
  msgstr "ID пользователя"
756
 
757
+ #: dashboard.php:998
758
  msgid "Cerber Dashboard"
759
  msgstr "Консоль Cerber"
760
 
761
+ #: dashboard.php:702
762
  msgid "Filter"
763
  msgstr "Фильтр"
764
 
765
+ #: dashboard.php:1008
766
  msgid "Cerber tools"
767
  msgstr "Инструменты Cerber"
768
 
769
+ #: dashboard.php:1730
770
  msgid "Subscribe"
771
  msgstr "Подписаться"
772
 
773
+ #: dashboard.php:1759
774
  msgid "You've subscribed"
775
  msgstr "Вы подписались"
776
 
777
+ #: dashboard.php:1762
778
  msgid "You've unsubscribed"
779
  msgstr "Подписка отменена"
780
 
781
+ #: cerber-load.php:3302 cerber-load.php:3303
782
  msgid "A new activity has been recorded"
783
  msgstr "Отмечена новая активность"
784
 
785
+ #: settings.php:105
786
  msgid "if empty, the default format %s will be used"
787
  msgstr "Если пусто, будет использован формат по умолчанию %s"
788
 
789
+ #: cerber-load.php:3757
790
  msgid "User"
791
  msgstr "Пользователь"
792
 
793
+ #: cerber-load.php:3765
794
  msgid "Search string"
795
  msgstr "Строка поиска"
796
 
797
+ #: cerber-load.php:3786
798
  msgid "To unsubscribe click here"
799
  msgstr "Для отмены подписки нажмите здесь"
800
 
801
+ #: settings.php:103
802
  msgid "Preferences"
803
  msgstr "Настройки"
804
 
805
+ #: settings.php:105
806
  msgid "Date format"
807
  msgstr "Формат даты"
808
 
810
  msgid "Gregory"
811
  msgstr "Gregory"
812
 
813
+ #: dashboard.php:998 dashboard.php:1242 dashboard.php:1820 settings.php:386
 
 
 
 
814
  msgid "Dashboard"
815
  msgstr "Консоль"
816
 
817
+ #: settings.php:187
818
  msgid "Enable reCAPTCHA for WooCommerce login form"
819
  msgstr "Включить reCAPTCHA для формы входа WooCommerce"
820
 
821
+ #: settings.php:186
822
  msgid "Enable reCAPTCHA for WordPress login form"
823
  msgstr "Включить reCAPTCHA для формы входа WordPress"
824
 
825
+ #: settings.php:184
826
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
827
  msgstr "Включить reCAPTCHA для формы восстановления пароля WooCommerce"
828
 
829
+ #: settings.php:183
830
  msgid "Enable reCAPTCHA for WordPress lost password form"
831
  msgstr "Включить reCAPTCHA для формы восстановления пароля WordPress"
832
 
833
+ #: settings.php:181
834
  msgid "Enable reCAPTCHA for WooCommerce registration form"
835
  msgstr "Включить reCAPTCHA для формы регистрации WooCommerce"
836
 
837
+ #: settings.php:180
838
  msgid "Enable reCAPTCHA for WordPress registration form"
839
  msgstr "Включить reCAPTCHA для формы регистрации WordPress"
840
 
841
+ #: settings.php:155 settings.php:180
842
  msgid "Registration form"
843
  msgstr "Форма регистрации"
844
 
845
+ #: settings.php:100
846
  msgid "Cerber Lab protocol"
847
  msgstr "протокол Cerber Lab"
848
 
849
+ #: settings.php:99
850
  msgid "Send malicious IP addresses to the Cerber Lab"
851
  msgstr "Посылать вредоносные IP адреса в Cerber Lab"
852
 
853
+ #: settings.php:99
854
  msgid "Cerber Lab connection"
855
  msgstr "Подключение Cerber Lab"
856
 
857
+ #: dashboard.php:1487
858
  msgid "Recently locked out IP addresses"
859
  msgstr "Недавно заблокированые IP адреса"
860
 
861
+ #: dashboard.php:1456 dashboard.php:1486
862
  msgid "View all"
863
  msgstr "Просмотреть все"
864
 
865
+ #: dashboard.php:996 settings.php:381
866
  msgid "WP Cerber Security"
867
  msgstr "WP Cerber Security"
868
 
869
+ #: dashboard.php:891
870
  msgid "Add network to the Black List"
871
  msgstr "Добавить сеть в черный список"
872
 
873
+ #: dashboard.php:877
874
  msgid "Network:"
875
  msgstr "Сеть:"
876
 
878
  msgid "Incorrect IP address or IP range"
879
  msgstr "Неверный IP адрес или диапазон адресов"
880
 
881
+ #: common.php:795
882
  msgid "Request to the Google reCAPTCHA service failed"
883
  msgstr "Запрос к сервису Google reCAPTCHA не удался"
884
 
885
+ #: cerber-lab.php:714
886
  msgid "NO, maybe later"
887
  msgstr "НЕТ, возможно позже"
888
 
889
+ #: cerber-lab.php:713
890
  msgid "OK, nail them all"
891
  msgstr "ОК, прибьем их всех"
892
 
893
+ #: cerber-lab.php:712
894
  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."
895
  msgstr "Разрешить WP Cerber посылать заблокированные IP адреса в Cerber Lab. Это помогает команде плагина разрабатывать новые алгоритмы для WP Cerber, которые будут защищать WordPress против новых угроз и ботнетов появляюшихся каждый день. Вы всегда можете отключить отсылку в настройках плагина, в любой момент."
896
 
897
+ #: cerber-lab.php:711
898
  msgid "Want to make WP Cerber even more powerful?"
899
  msgstr "Хотите сделать WP Cerber еще мощнее ?"
900
 
901
+ #. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security & Antispam 6.5) #-#-#-#-#
902
  #. Plugin URI of the plugin/theme
903
+ #. #-#-#-#-# wp-cerber-code.pot (WP Cerber Security & Antispam 6.5) #-#-#-#-#
904
  #. Author URI of the plugin/theme
905
  msgid "https://wpcerber.com"
906
  msgstr "https://wpcerber.com"
907
 
908
+ #: cerber-load.php:3988
909
  msgid "Import settings"
910
  msgstr "Импорт настроек"
911
 
912
+ #: cerber-load.php:3976
913
  msgid "Your IP address is added to the"
914
  msgstr "Ваш IP адрес добавлен к"
915
 
916
+ #: cerber-load.php:3956
917
  msgid "Can't activate WP Cerber due to a database error."
918
  msgstr "Невозможно активировать плагин WP Cerber из-за ошибки в базе данных."
919
 
920
+ #: cerber-load.php:3947
921
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
922
  msgstr "WP Cerber требует WordPress версии %s или выше. У вас версия"
923
 
924
+ #: cerber-load.php:3943
925
  msgid "The WP Cerber requires PHP %s or higher. You are running"
926
  msgstr "WP Cerber требует PHP версии %s или выше. У вас версия"
927
 
928
+ #: cerber-load.php:3344
929
  msgid "This message was sent by"
930
  msgstr "Это сообщение было отправлено"
931
 
932
+ #: cerber-load.php:3298
933
  msgid "New Custom login URL"
934
  msgstr "Новый URL для входа на сайт"
935
 
936
+ #: cerber-load.php:3290 cerber-load.php:3975
937
  msgid "WP Cerber is now active and has started protecting your site"
938
  msgstr "WP Cerber активен и начал защищать ваш сайт"
939
 
940
+ #: cerber-load.php:3289
941
  msgid "The WP Cerber security plugin is now active"
942
  msgstr "WP Cerber плагин безопасности активен"
943
 
944
+ #: cerber-load.php:3285
945
  msgid "From country"
946
  msgstr "Из страны"
947
 
948
+ #: cerber-load.php:3282
949
  msgid "From IP address"
950
  msgstr "С IP адреса"
951
 
952
+ #: cerber-load.php:3281
953
  msgid "By user"
954
  msgstr "По пользователю"
955
 
956
+ #: cerber-load.php:3275
957
  msgid "Not logged in"
958
  msgstr "Нет авторизации"
959
 
960
+ #: cerber-load.php:3272 cerber-load.php:3273
961
  msgid "The WP Cerber security plugin has been deactivated"
962
  msgstr "WP Cerber плагин деактивирован"
963
 
964
+ #: cerber-load.php:3269 cerber-load.php:3280
965
  msgid "Website"
966
  msgstr "Сайт"
967
 
968
+ #: cerber-load.php:3266
969
  msgid "Hi!"
970
  msgstr "Привет!"
971
 
972
+ #: cerber-load.php:3265 cerber-load.php:3267
973
  msgid "A new version of WP Cerber is available to install"
974
  msgstr "Доступна новая версия WP Cerber!"
975
 
976
+ #: cerber-load.php:3262
977
  msgid "View lockouts in dashboard"
978
  msgstr "Просмотреть список заблокированных IP"
979
 
980
+ #: cerber-load.php:3261
981
  msgid "View activity for this IP"
982
  msgstr "Посмотреть активность для этого IP"
983
 
984
+ #: cerber-load.php:3259
985
  msgid "Last lockout was added: %s for IP %s"
986
  msgstr "Последняя блокировка была добавлена %s для IP %s"
987
 
988
+ #: cerber-load.php:3258
989
  msgid "Number of active lockouts"
990
  msgstr "Число активных блокировок на данный момент"
991
 
992
+ #: cerber-load.php:3256
993
  msgid "Number of lockouts is increasing"
994
  msgstr "Число блокировок увеличилось"
995
 
996
+ #: cerber-load.php:3253
997
  msgid "unspecified"
998
  msgstr "неуказано"
999
 
1000
+ #: cerber-load.php:3228 cerber-load.php:3785
1001
  msgid "View activity in dashboard"
1002
  msgstr "Просмотреть журнал активности"
1003
 
1004
+ #: cerber-load.php:3227
1005
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
1006
  msgstr "Последняя неудачная попытка была в %s с IP адреса %s с логином %s."
1007
 
1008
+ #: cerber-load.php:3226
1009
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
1010
  msgstr "Режим Цитадель активирован после %d неудачных попыток за %d минут."
1011
 
1012
+ #: cerber-load.php:3224
1013
  msgid "Citadel mode is activated"
1014
  msgstr "Активирован режим Цитадель"
1015
 
1016
+ #: cerber-load.php:3202
1017
  msgid "WP Cerber notify"
1018
  msgstr "Уведомление WP Cerber"
1019
 
1020
+ #: common.php:844
1021
  msgid "Limit on login attempts is reached"
1022
  msgstr "Количество попыток исчерпано"
1023
 
1024
+ #: common.php:845
1025
  msgid "Attempt to access"
1026
  msgstr "Попытка доступа к"
1027
 
1028
+ #: cerber-load.php:1146
1029
  msgid "Username is not allowed. Please choose another one."
1030
  msgstr "Имя пользователя недопустимо. Выберите другое."
1031
 
1032
+ #: cerber-load.php:924
1033
  msgid "<strong>ERROR</strong>: The password you entered for the username %s is incorrect."
1034
  msgstr "<strong>ОШИБКА</strong>: Пароль введенный для пользователя %s is некорректен."
1035
 
1036
+ #: cerber-load.php:693
1037
  msgid "Human verification failed. Please click the square box in the reCAPTCHA block below."
1038
  msgstr "Антибот проверка неудачна. Пожалуйста тыкните в квадратную отметку блока reCAPTCHA ниже"
1039
 
1040
+ #: cerber-load.php:664 cerber-load.php:676 cerber-load.php:683
1041
+ #: cerber-load.php:912 cerber-load.php:1129 cerber-load.php:1135
1042
+ #: cerber-load.php:1140 cerber-load.php:1145 cerber-load.php:1151
1043
+ #: cerber-load.php:1158 cerber-load.php:1258 cerber-load.php:1395
1044
+ #: common.php:202 common.php:259 common.php:264 common.php:269 settings.php:780
1045
+ #: settings.php:851
1046
  msgid "ERROR:"
1047
  msgstr "ОШИБКА:"
1048
 
1049
+ #: cerber-load.php:381
1050
  msgid "You have only one attempt remaining."
1051
  msgid_plural "You have %d attempts remaining."
1052
  msgstr[0] "У вас есть только одна попытка для входа"
1053
  msgstr[1] "У вас осталось %d попытки для входа."
1054
  msgstr[2] "У вас осталось %d попыток для входа."
1055
 
1056
+ #: cerber-load.php:362
1057
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
1058
  msgstr "Вход невозможен. Слишком много ошибочных попыток. Попробуйте войти через %d минут."
1059
 
1060
+ #: cerber-load.php:356
1061
  msgid "You are not allowed to log in. Ask your administrator for assistance."
1062
  msgstr "Вход на сайт невозможен. Обратитесь к администратору сайта."
1063
 
1064
+ #: common.php:843 common.php:1122 dashboard.php:313 dashboard.php:2610
1065
  #: whois.php:221 whois.php:252
1066
  msgid "Unknown"
1067
  msgstr "Неизвестен"
1068
 
1069
+ #: settings.php:882 settings.php:894
1070
  msgid "<strong>ERROR</strong>: please enter a valid email address."
1071
  msgstr "<strong>ОШИБКА</strong>: Введите действительный адрес эл.почты."
1072
 
1073
+ #: settings.php:801 settings.php:802
1074
  msgid "Attention! You have changed the login URL! The new login URL is"
1075
  msgstr "Внимание! Вы изменили URL страницы авторизации. Новый адрес"
1076
 
1077
+ #: settings.php:535 settings.php:657
1078
  msgid "Enable after %s failed login attempts in last %s minutes"
1079
  msgstr "Активировать после %s неудачных авторизаций за последние %s минут"
1080
 
1081
+ #: settings.php:530 settings.php:652
1082
  msgid "Notify admin if the number of active lockouts above"
1083
  msgstr "Уведомить администратора, если число заблокированных IP более"
1084
 
1085
+ #: settings.php:523 settings.php:645
1086
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
1087
  msgstr "Увеличить длительность блокировки до %s часов после %s блокировок в течение последних %s часов"
1088
 
1089
+ #: settings.php:513 settings.php:635
1090
  msgid "%s allowed retries in %s minutes"
1091
  msgstr "%s попыток разрешено в течении %s минут"
1092
 
1093
+ #: cerber-tools.php:51 dashboard.php:2535 settings.php:406
1094
  msgid "Help"
1095
  msgstr "Помощь"
1096
 
1097
+ #: cerber-tools.php:43 dashboard.php:1008
1098
  msgid "Tools"
1099
  msgstr "Инструменты"
1100
 
1101
+ #: settings.php:401
1102
  msgid "Users"
1103
  msgstr "Пользователи"
1104
 
1105
+ #: cerber-load.php:3986 settings.php:399
1106
  msgid "Hardening"
1107
  msgstr "Панцирь"
1108
 
1109
+ #: cerber-load.php:3983 settings.php:394
1110
  msgid "Main Settings"
1111
  msgstr "Главные настройки"
1112
 
1113
+ #: cerber-lab.php:715 settings.php:362
1114
  msgid "Know more"
1115
  msgstr "Узнать больше"
1116
 
1117
+ #: settings.php:361
1118
  msgid "Before you can start using reCAPTCHA, you have to obtain Site key and Secret key on the Google website"
1119
  msgstr "Перед использованием reCAPTCHA вам нужно получить ключ сайта и секретный ключ на сайте Google"
1120
 
1121
+ #: settings.php:358
1122
  msgid "These settings do not affect hosts from the "
1123
  msgstr "Эти настройки не применяются к адресам из"
1124
 
1125
+ #: settings.php:351
1126
  msgid "Be careful when enabling this options. If you forget the custom login URL you will not be able to login."
1127
  msgstr "Будте внимательны при установке этих параметров. Если вы забудете URL страницы авторизации вы не сможете войти в панель управления."
1128
 
1129
+ #: settings.php:348
1130
  msgid "Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default."
1131
  msgstr "Для использования этой настройки необходимо активировать Постоянные ссылки в настройках сайта."
1132
 
1133
+ #: settings.php:344
1134
  msgid "Make your protection smarter!"
1135
  msgstr "Сделайте защиту от злоумышленников еще умнее"
1136
 
1137
+ #: settings.php:186
1138
  msgid "Login form"
1139
  msgstr "Форма входа"
1140
 
1141
+ #: settings.php:183
1142
  msgid "Lost password form"
1143
  msgstr "Форма восстановления пароля"
1144
 
1145
+ #: settings.php:177
1146
  msgid "Secret key"
1147
  msgstr "Секретный ключ"
1148
 
1149
+ #: settings.php:176
1150
  msgid "Site key"
1151
  msgstr "Ключ сайта"
1152
 
1153
+ #: settings.php:175
1154
  msgid "reCAPTCHA settings"
1155
  msgstr "Настройки reCAPTCHA"
1156
 
1157
+ #: settings.php:145
1158
  msgid "in minutes (leave empty to use default WP value)"
1159
  msgstr "В минутах (оставьте пустым для значения WP по умолчанию)"
1160
 
1161
+ #: settings.php:145
1162
  msgid "User session expire"
1163
  msgstr "Длительность сессии пользователя"
1164
 
1165
+ #: settings.php:143
1166
  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."
1167
  msgstr "Имена пользователей из этого списка не разрешены для входа или регистрации. Любой IP адрес пытающийся использовать эти имена будет автоматически заблокирован. Испольуйте запятую как разделитель."
1168
 
1169
+ #: settings.php:137
1170
  msgid "Prohibited usernames"
1171
  msgstr "Запрещеные имена пользователей"
1172
 
1173
+ #: settings.php:135
1174
  msgid "User related settings"
1175
  msgstr "Настройки пользователей"
1176
 
1177
+ #: settings.php:117
1178
  msgid "Disable REST API"
1179
  msgstr "Отключить REST API"
1180
 
1181
+ #: settings.php:116
1182
  msgid "Block access to the RSS, Atom and RDF feeds"
1183
  msgstr "Закрыть доступ к RSS, Atom и RDF лентам"
1184
 
1185
+ #: settings.php:116
1186
  msgid "Disable feeds"
1187
  msgstr "Отключить ленты"
1188
 
1189
+ #: settings.php:115
1190
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
1191
  msgstr "Закрыть доступ к функциям XML-RPC, включая уведомления и обратные ссылки"
1192
 
1193
+ #: settings.php:115
1194
  msgid "Disable XML-RPC"
1195
  msgstr "Отключить XML-RPC"
1196
 
1197
+ #: settings.php:113
1198
  msgid "Stop user enumeration"
1199
  msgstr "Заблокировать сбор имен"
1200
 
1201
+ #: settings.php:112
1202
  msgid "Hardening WordPress"
1203
  msgstr "Усиление защиты WordPress"
1204
 
1205
+ #: settings.php:101
1206
  msgid "Write failed login attempts to the file"
1207
  msgstr "Записывать попытки входа в файл"
1208
 
1209
+ #: settings.php:101
1210
  msgid "Use file"
1211
  msgstr "Использовать файл"
1212
 
1213
+ #: settings.php:104
1214
  msgid "Retrieve extra WHOIS information for IP"
1215
  msgstr "Получить дополнительную информацию об IP используя WHOIS"
1216
 
1217
+ #: settings.php:104
1218
  msgid "Drill down IP"
1219
  msgstr "Изучать IP"
1220
 
1221
+ #: settings.php:98 settings.php:172 settings.php:334
1222
  msgid "days"
1223
  msgstr "дней"
1224
 
1225
+ #: settings.php:98 settings.php:330
1226
  msgid "Keep records for"
1227
  msgstr "Хранить записи не более"
1228
 
1229
+ #: settings.php:213
1230
  msgid "notification letters allowed per hour (0 means unlimited)"
1231
  msgstr "разрешенное число писем с уведомлениями в час (0 - без ограничений)"
1232
 
1233
+ #: settings.php:213
1234
  msgid "Notification limit"
1235
  msgstr "Ограничение уведомлений"
1236
 
1237
+ #: settings.php:210
1238
  msgid "if empty, the admin email %s will be used"
1239
  msgstr "Если пусто, то будет использован адрес администратора %s"
1240
 
1241
+ #: settings.php:201 settings.php:236
1242
  msgid "Email Address"
1243
  msgstr "Адрес email"
1244
 
1245
+ #: settings.php:95 settings.php:532 settings.php:654
1246
  msgid "Click to send test"
1247
  msgstr "Нажмите, чтобы протестировать отправку"
1248
 
1249
+ #: settings.php:95
1250
  msgid "Send notification to admin email"
1251
  msgstr "Отправить уведомление на адрес email администратора сайта"
1252
 
1253
+ #: settings.php:94
1254
  msgid "Duration"
1255
  msgstr "Длительность"
1256
 
1257
+ #: settings.php:93
1258
  msgid "Threshold"
1259
  msgstr "Порог"
1260
 
1261
+ #: settings.php:90
1262
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
1263
  msgstr "Заблокировать доступ к wp-login.php и возвращать HTTP 404 Страница не найдена"
1264
 
1265
+ #: settings.php:90
1266
  msgid "Disable wp-login.php"
1267
  msgstr "Доступ к wp-login.php"
1268
 
1269
+ #: settings.php:89
1270
  msgid "must not overlap with the existing pages or posts slug"
1271
  msgstr "не должно совпадать с URL существующих страниц или постов"
1272
 
1273
+ #: settings.php:89
1274
  msgid "Custom login URL"
1275
  msgstr "Адрес страницы авторизации"
1276
 
1277
+ #: settings.php:88
1278
  msgid "Custom login page"
1279
  msgstr "Смена URL страницы авторизации"
1280
 
1281
+ #: settings.php:85
1282
  msgid "Immediately block IP after any request to wp-login.php"
1283
  msgstr "Блокировать IP при любом запросе wp-login.php"
1284
 
1285
+ #: settings.php:85
1286
  msgid "Request wp-login.php"
1287
  msgstr "Запрос wp-login.php"
1288
 
1289
+ #: settings.php:84
1290
  msgid "Disable automatic redirecting to the login page when /wp-admin/ is requested by an unauthorized request"
1291
  msgstr "Отключить автоматическую переадресацию при запросе /wp-admin/ неавторизованным пользователем"
1292
 
1293
+ #: settings.php:84
1294
  msgid "Redirect dashboard requests"
1295
  msgstr "Запросы к панели управления"
1296
 
1297
+ #: settings.php:83
1298
  msgid "Immediately block IP when attempting to login with a non-existent username"
1299
  msgstr "Блокировать IP при попытке авторизации с логином несуществующего пользователя"
1300
 
1301
+ #: settings.php:83
1302
  msgid "Non-existent users"
1303
  msgstr "Несуществующие пользователи"
1304
 
1305
+ #: settings.php:82
1306
  msgid "Always block entire subnet Class C of intruders IP"
1307
  msgstr "Всегда блокировать подсеть класса С вместо IP адреса"
1308
 
1309
+ #: settings.php:82
1310
  msgid "Block subnet"
1311
  msgstr "Блокировка подсети"
1312
 
1313
+ #: settings.php:81
1314
  msgid "Proactive security rules"
1315
  msgstr "Проактивные правила безопасности"
1316
 
1317
+ #: dashboard.php:1311 settings.php:79
1318
  msgid "My site is behind a reverse proxy"
1319
  msgstr "Мой сайт подключен к сети через прокси-сервер"
1320
 
1321
+ #: settings.php:79
1322
  msgid "Site connection"
1323
  msgstr "Подключение к сети"
1324
 
1325
+ #: cerber-load.php:3987 settings.php:78 settings.php:95 settings.php:404
1326
  msgid "Notifications"
1327
  msgstr "Уведомления"
1328
 
1329
+ #: settings.php:76
1330
  msgid "Aggressive lockout"
1331
  msgstr "Ужесточение"
1332
 
1333
+ #: settings.php:75 settings.php:94
1334
  msgid "minutes"
1335
  msgstr "минут"
1336
 
1337
+ #: settings.php:75
1338
  msgid "Lockout duration"
1339
  msgstr "Длительность блокировки"
1340
 
1341
+ #: settings.php:74
1342
  msgid "Attempts"
1343
  msgstr "Попытки"
1344
 
1345
+ #: settings.php:73
1346
  msgid "Limit login attempts"
1347
  msgstr "Ограничение числа попыток авторизации"
1348
 
1349
+ #: dashboard.php:873
1350
  msgid "Abuse email:"
1351
  msgstr "Адрес email для жалоб:"
1352
 
1353
+ #: common.php:1047
1354
  msgid "Update to version %s of WP Cerber"
1355
  msgstr "Обновить WP Cerber до версии %s"
1356
 
1357
+ #: common.php:1040 settings.php:214
1358
  msgid "New version is available"
1359
  msgstr "Доступна новая версия"
1360
 
1361
+ #: dashboard.php:1629
1362
  msgid "View Activity"
1363
  msgstr "Что происходит?"
1364
 
1365
+ #: dashboard.php:1628
1366
  msgid "Deactivate"
1367
  msgstr "Деактивировать"
1368
 
1369
+ #: dashboard.php:1627
1370
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
1371
  msgstr "Внимание! Режим Цитадель активен. Авторизация на сайте заблокирована."
1372
 
1373
+ #: dashboard.php:1523
1374
  msgid "doesn't affect Custom login URL and Access Lists"
1375
  msgstr "не затронет настройки URL страницы авторизации и списки доступа"
1376
 
1377
+ #: dashboard.php:1517
1378
  msgid "Are you sure?"
1379
  msgstr "Вы уверены?"
1380
 
1381
+ #: dashboard.php:1515
1382
  msgid "Load default settings"
1383
  msgstr "Загрузить настройки"
1384
 
1385
+ #: dashboard.php:1513
1386
  msgid "You can easily load default recommended settings using button below"
1387
  msgstr "Вы можете загрузить рекомендованные настройки с помощью всего одной кнопки"
1388
 
1389
+ #: dashboard.php:1512
1390
  msgid "Confused about some settings?"
1391
  msgstr "Сомневаетесь какие настройки оптимальны?"
1392
 
1393
+ #: settings.php:392
1394
  msgid "Lockouts"
1395
  msgstr "Блокировки"
1396
 
1397
+ #: dashboard.php:1225 settings.php:92
1398
  msgid "Citadel mode"
1399
  msgstr "Режим Цитадель"
1400
 
1401
+ #: dashboard.php:1223 dashboard.php:1224 dashboard.php:1800
1402
  msgid "entry"
1403
  msgid_plural "entries"
1404
  msgstr[0] "элемент"
1405
  msgstr[1] "элемента"
1406
  msgstr[2] "элементов"
1407
 
1408
+ #: dashboard.php:1222
1409
  msgid "Last lockout"
1410
  msgstr "Последняя блокировка"
1411
 
1412
+ #: dashboard.php:1221
1413
  msgid "Lockouts at the moment"
1414
  msgstr "Сейчас заблокировано"
1415
 
1416
+ #: dashboard.php:1219
1417
  msgid "lockouts"
1418
  msgstr "блокировок"
1419
 
1420
+ #: dashboard.php:1218 dashboard.php:1219
1421
  msgid "view all"
1422
  msgstr "просмотреть все"
1423
 
1424
+ #: dashboard.php:1218 dashboard.php:1219
1425
  msgid "in 24 hours"
1426
  msgstr "за 24 часа"
1427
 
1428
+ #: dashboard.php:1218
1429
  msgid "failed attempts"
1430
  msgstr "ошибок авторизации"
1431
 
1432
+ #: dashboard.php:1213 dashboard.php:1227
1433
  msgid "disabled"
1434
  msgstr "отключен"
1435
 
1436
+ #: dashboard.php:1212
1437
  msgid "not active"
1438
  msgstr "неактивен"
1439
 
1440
+ #: dashboard.php:1210
1441
  msgid "deactivate"
1442
  msgstr "деактивировать"
1443
 
1444
+ #: dashboard.php:1210 dashboard.php:1231
1445
  msgid "active"
1446
  msgstr "активен"
1447
 
1448
+ #: dashboard.php:1176
1449
  msgid "Cerber Quick View"
1450
  msgstr "Сводка от Cerber"
1451
 
1452
+ #: cerber-tools.php:189
1453
  msgid "Error while parsing file"
1454
  msgstr "Возникла ошибка при обработке файла"
1455
 
1456
+ #: cerber-tools.php:185
1457
  msgid "Settings has imported successfully from"
1458
  msgstr "Все настройки успешно загружены"
1459
 
1460
+ #: cerber-tools.php:182
1461
  msgid "Error while updating"
1462
  msgstr "Возникла ошибка при обновлении"
1463
 
1464
+ #: cerber-tools.php:149
1465
  msgid "No file was uploaded or file is corrupted"
1466
  msgstr "Файл не был загружен или имеет неверный формат"
1467
 
1468
+ #: cerber-tools.php:102
1469
  msgid "Upload file"
1470
  msgstr "Загрузить файл"
1471
 
1472
+ #: cerber-tools.php:100
1473
  msgid "What do you want to import?"
1474
  msgstr "Что вы хотите импортировать?"
1475
 
1476
+ #: cerber-tools.php:97
1477
  msgid "Maximum upload file size: %s."
1478
  msgstr "Максимальный размер загружаемого файла: %s."
1479
 
1480
+ #: cerber-tools.php:97
1481
  msgid "Select file to import."
1482
  msgstr "Выберите файл для загрузки."
1483
 
1484
+ #: cerber-tools.php:96
1485
  msgid "When you click the button below, file will be uploaded and all existing settings will be overridden."
1486
  msgstr "Когда вы нажмете на кнопку, все настройки из файла будут загружены на сайт"
1487
 
1488
+ #: cerber-tools.php:95
1489
  msgid "Import settings from the file"
1490
  msgstr "Импорт настроек из файла"
1491
 
1492
+ #: cerber-tools.php:93
1493
  msgid "Download file"
1494
  msgstr "Скачать файл"
1495
 
1496
+ #: cerber-load.php:3984 cerber-tools.php:92 cerber-tools.php:101
1497
+ #: cerber-tools.php:182 settings.php:397
1498
  msgid "Access Lists"
1499
  msgstr "Списки доступа"
1500
 
1501
+ #: cerber-tools.php:91 cerber-tools.php:100 dashboard.php:2534
1502
  msgid "Settings"
1503
  msgstr "Настройки"
1504
 
1505
+ #: cerber-tools.php:90
1506
  msgid "What do you want to export?"
1507
  msgstr "Что вы хотите экспортировать"
1508
 
1509
+ #: cerber-tools.php:89
1510
  msgid "When you click the button below you will get a configuration file, which you can upload on another site."
1511
  msgstr "Когда вы нажмете на кнопку, то получите файл с настройками, который можно использовать на других сайтах."
1512
 
1513
+ #: cerber-tools.php:88
1514
  msgid "Export settings to the file"
1515
  msgstr "Экспорт настроек в файл"
1516
 
1517
+ #: dashboard.php:1122 dashboard.php:1206
1518
  msgid "Never"
1519
  msgstr "Никогда"
1520
 
1521
+ #: common.php:765
1522
  msgid "User created"
1523
  msgstr "Пользователь создан"
1524
 
1525
+ #: common.php:766 dashboard.php:1464
1526
  msgid "User registered"
1527
  msgstr "Пользователь зарегистрирован"
1528
 
1529
+ #: common.php:767
1530
  msgid "Logged in"
1531
  msgstr "Вход"
1532
 
1533
+ #: common.php:768
1534
  msgid "Logged out"
1535
  msgstr "Выход"
1536
 
1537
+ #: common.php:769
1538
  msgid "Login failed"
1539
  msgstr "Ошибка авторизации"
1540
 
1541
+ #: common.php:772
1542
  msgid "IP blocked"
1543
  msgstr "IP заблокирован"
1544
 
1545
+ #: common.php:773
1546
  msgid "Subnet blocked"
1547
  msgstr "Подсеть заблокирована"
1548
 
1549
+ #: common.php:775
1550
  msgid "Citadel activated!"
1551
  msgstr "Режим Цитадель активирован!"
1552
 
1553
+ #: common.php:814 dashboard.php:639 dashboard.php:843 dashboard.php:2685
1554
  msgid "Locked out"
1555
  msgstr "Заблокировано"
1556
 
1557
+ #: common.php:790
1558
  msgid "Password changed"
1559
  msgstr "Пароль изменен"
1560
 
1561
+ #: common.php:815
1562
  msgid "IP blacklisted"
1563
  msgstr "IP в черном списке"
1564
 
1565
+ #: common.php:793
1566
  msgid "reCAPTCHA verification failed"
1567
  msgstr "проверка reCAPTCHA неудачна"
1568
 
1569
+ #: common.php:794
1570
  msgid "reCAPTCHA settings are incorrect"
1571
  msgstr "настройки reCAPTCHA неверны"
1572
 
1573
+ #: common.php:797
1574
  msgid "Attempt to access prohibited URL"
1575
  msgstr "Попытка доступа к запрещенному URL"
1576
 
1577
+ #: common.php:798 common.php:846
1578
  msgid "Attempt to log in with non-existent username"
1579
  msgstr "Попытка войти с несуществующим именем пользователя"
1580
 
1581
+ #: common.php:799 common.php:847
1582
  msgid "Attempt to log in with prohibited username"
1583
  msgstr "Попытка входа с запрещенным именем"
1584
 
1586
  msgid "Remove"
1587
  msgstr "Удалить"
1588
 
1589
+ #: cerber-load.php:3753 dashboard.php:93 dashboard.php:659 dashboard.php:2849
1590
  msgid "IP"
1591
  msgstr "IP"
1592
 
1593
+ #: dashboard.php:94 dashboard.php:660
1594
  msgid "Hostname"
1595
  msgstr "Имя узла"
1596
 
1598
  msgid "Expires"
1599
  msgstr "Истекает"
1600
 
1601
+ #: cerber-load.php:3260 dashboard.php:97
1602
  msgid "Reason"
1603
  msgstr "Причина"
1604
 
1622
  msgid "No lockouts at the moment. The sky is clear."
1623
  msgstr "Блокировок нет. Все в порядке."
1624
 
1625
+ #: cerber-load.php:3976 dashboard.php:131 dashboard.php:634 dashboard.php:837
1626
+ #: dashboard.php:1223 dashboard.php:2680 settings.php:77 settings.php:358
1627
  msgid "White IP Access List"
1628
  msgstr "Белый список доступа по IP"
1629
 
1631
  msgid "These IPs will never be locked out"
1632
  msgstr "Эти адреса не будут заблокированы ни при каких условиях"
1633
 
1634
+ #: dashboard.php:133 dashboard.php:635 dashboard.php:840 dashboard.php:1224
1635
+ #: dashboard.php:2681
1636
  msgid "Black IP Access List"
1637
  msgstr "Черный список доступа по IP"
1638
 
1644
  msgid "Your IP"
1645
  msgstr "Ваш адрес IP"
1646
 
1647
+ #: dashboard.php:158 dashboard.php:850 dashboard.php:877 dashboard.php:969
1648
  msgid "Check for activity"
1649
  msgstr "Проверить активность"
1650
 
1668
  msgid "unknown"
1669
  msgstr "неизвестно"
1670
 
1671
+ #: dashboard.php:389
1672
  msgid "Lockout for %s was removed"
1673
  msgstr "Удалена блокировка для %s"
1674
 
1675
+ #: dashboard.php:405 dashboard.php:1644
1676
  msgid "Settings saved"
1677
  msgstr "Настройки сохранены."
1678
 
1679
+ #: dashboard.php:498 dashboard.php:662 dashboard.php:2847
1680
  msgid "Date"
1681
  msgstr "Дата"
1682
 
1683
+ #: cerber-load.php:3744 dashboard.php:1243 dashboard.php:1471 settings.php:97
1684
+ #: settings.php:388
1685
  msgid "Activity"
1686
  msgstr "Активность"
1687
 
1688
+ #: dashboard.php:687
1689
  msgid "No activity has been logged."
1690
  msgstr "Ни одного события не зафиксировано."
1691
 
1692
+ #: cerber-load.php:3761 dashboard.php:498 dashboard.php:665
1693
  msgid "Username used"
1694
  msgstr "Использован логин"
1695
 
1696
+ #: dashboard.php:498 dashboard.php:664 dashboard.php:2852
1697
  msgid "Local User"
1698
  msgstr "Пользователь"
1699
 
1700
+ #: dashboard.php:896
1701
  msgid "Add IP to the Black List"
1702
  msgstr "Добавить IP в черный список"
1703
 
1704
+ #: dashboard.php:996 dashboard.php:1018
1705
  msgid "WP Cerber"
1706
  msgstr "WP Cerber"
1707
 
1708
+ #: dashboard.php:1088
1709
  msgid "Comments"
1710
  msgstr "Комментарии"
1711
 
1712
+ #: dashboard.php:1089
1713
  msgid "Last login"
1714
  msgstr "Последний вход"
1715
 
1716
+ #: settings.php:146
1717
  msgid "by date of registration"
1718
  msgstr "по дате регистрации"
languages/wp-cerber.pot CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: WP Cerber\n"
6
  "Report-Msgid-Bugs-To: \n"
7
  "POT-Creation-Date: Tue Sep 08 2015 21:38:11 GMT+0300\n"
8
- "POT-Revision-Date: Sat Mar 17 2018 10:50:53 GMT+0300\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
@@ -24,574 +24,578 @@ msgstr ""
24
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
25
  "X-Generator: Loco - https://localise.biz/"
26
 
27
- #: ../dashboard.php:86 ../dashboard.php:159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  msgid "Remove"
29
  msgstr ""
30
 
31
- #: ../dashboard.php:93 ../dashboard.php:659 ../dashboard.php:2833 ../cerber-load.
32
- #: php:3746
33
  msgid "IP"
34
  msgstr ""
35
 
36
- #: ../dashboard.php:94 ../dashboard.php:660
37
  msgid "Hostname"
38
  msgstr ""
39
 
40
- #: ../dashboard.php:95 ../dashboard.php:661
41
  msgid "Country"
42
  msgstr ""
43
 
44
- #: ../dashboard.php:96
45
  msgid "Expires"
46
  msgstr ""
47
 
48
- #: ../dashboard.php:97 ../cerber-load.php:3253
49
  msgid "Reason"
50
  msgstr ""
51
 
52
- #: ../dashboard.php:98
53
  msgid "Action"
54
  msgstr ""
55
 
56
- #: ../dashboard.php:112
57
  #, php-format
58
  msgid "Showing last %d records from %d"
59
  msgstr ""
60
 
61
- #: ../dashboard.php:114
62
  msgid "Hint"
63
  msgstr ""
64
 
65
- #: ../dashboard.php:114
66
  msgid "To view activity, click on the IP"
67
  msgstr ""
68
 
69
- #: ../dashboard.php:118
70
  msgid "No lockouts at the moment. The sky is clear."
71
  msgstr ""
72
 
73
- #: ../dashboard.php:131 ../dashboard.php:634 ../dashboard.php:837 ../dashboard.
74
- #: php:1214 ../dashboard.php:2664 ../cerber-load.php:3969 ../settings.php:77 ..
75
- #: /settings.php:358
76
  msgid "White IP Access List"
77
  msgstr ""
78
 
79
- #: ../dashboard.php:131
80
  msgid "These IPs will never be locked out"
81
  msgstr ""
82
 
83
- #: ../dashboard.php:133 ../dashboard.php:635 ../dashboard.php:840 ../dashboard.
84
- #: php:1215 ../dashboard.php:2665
85
  msgid "Black IP Access List"
86
  msgstr ""
87
 
88
- #: ../dashboard.php:133
89
  msgid "Nobody can log in or register from these IPs"
90
  msgstr ""
91
 
92
- #: ../dashboard.php:140
93
  msgid "Your IP"
94
  msgstr ""
95
 
96
- #: ../dashboard.php:158 ../dashboard.php:850 ../dashboard.php:877 ../dashboard.
97
- #: php:969
98
  msgid "Check for activity"
99
  msgstr ""
100
 
101
- #: ../dashboard.php:165
102
  msgid "List is empty"
103
  msgstr ""
104
 
105
- #: ../dashboard.php:169
106
  msgid "IP address, IPv4 address range or subnet"
107
  msgstr ""
108
 
109
- #: ../dashboard.php:170
110
  msgid "Add IP to the list"
111
  msgstr ""
112
 
113
- #: ../dashboard.php:171
114
  msgid "Optional comment for this entry"
115
  msgstr ""
116
 
117
- #: ../dashboard.php:196 ../dashboard.php:208
118
  msgid "Incorrect IP address or IP range"
119
  msgstr ""
120
 
121
- #: ../dashboard.php:202
122
  #, php-format
123
  msgid "Address %s was added to White IP Access List"
124
  msgstr ""
125
 
126
- #: ../dashboard.php:212
127
  msgid "You cannot add your IP address or network"
128
  msgstr ""
129
 
130
- #: ../dashboard.php:216
131
  #, php-format
132
  msgid "Address %s was added to Black IP Access List"
133
  msgstr ""
134
 
135
- #: ../dashboard.php:313 ../dashboard.php:2594 ../whois.php:221 ../whois.php:252 ..
136
- #: /common.php:818 ../common.php:1097
137
  msgid "Unknown"
138
  msgstr ""
139
 
140
- #: ../dashboard.php:355
141
  msgid "unknown"
142
  msgstr ""
143
 
144
- #: ../dashboard.php:380
145
  msgid "Email has been sent to"
146
  msgstr ""
147
 
148
- #: ../dashboard.php:383
149
  msgid "Unable to send email to"
150
  msgstr ""
151
 
152
- #: ../dashboard.php:389
153
  #, php-format
154
  msgid "Lockout for %s was removed"
155
  msgstr ""
156
 
157
- #: ../dashboard.php:405 ../dashboard.php:1614
158
  msgid "Settings saved"
159
  msgstr ""
160
 
161
- #: ../dashboard.php:498
162
  msgid "IP address"
163
  msgstr ""
164
 
165
- #: ../dashboard.php:498 ../dashboard.php:662 ../dashboard.php:2831
166
  msgid "Date"
167
  msgstr ""
168
 
169
- #: ../dashboard.php:498 ../dashboard.php:663
170
  msgid "Event"
171
  msgstr ""
172
 
173
- #: ../dashboard.php:498 ../dashboard.php:664 ../dashboard.php:2836
174
  msgid "Local User"
175
  msgstr ""
176
 
177
- #: ../dashboard.php:498
178
  msgid "User login"
179
  msgstr ""
180
 
181
- #: ../dashboard.php:498
182
  msgid "User ID"
183
  msgstr ""
184
 
185
- #: ../dashboard.php:498 ../dashboard.php:665 ../cerber-load.php:3754
186
  msgid "Username used"
187
  msgstr ""
188
 
189
- #: ../dashboard.php:639 ../dashboard.php:843 ../dashboard.php:2669 ../common.php:
190
- #: 789
191
  msgid "Locked out"
192
  msgstr ""
193
 
194
- #: ../dashboard.php:683
195
  msgid "Export"
196
  msgstr ""
197
 
198
- #: ../dashboard.php:687
199
  msgid "No activity has been logged."
200
  msgstr ""
201
 
202
- #: ../dashboard.php:693
203
  msgid "All events"
204
  msgstr ""
205
 
206
- #: ../dashboard.php:702
207
  msgid "Search for IP or username"
208
  msgstr ""
209
 
210
- #: ../dashboard.php:702
211
  msgid "Filter"
212
  msgstr ""
213
 
214
- #: ../dashboard.php:873
215
  msgid "Abuse email:"
216
  msgstr ""
217
 
218
- #: ../dashboard.php:877
219
  msgid "Network:"
220
  msgstr ""
221
 
222
- #: ../dashboard.php:891
223
  msgid "Add network to the Black List"
224
  msgstr ""
225
 
226
- #: ../dashboard.php:896
227
  msgid "Add IP to the Black List"
228
  msgstr ""
229
 
230
- #: ../dashboard.php:956
231
  msgid "Last seen"
232
  msgstr ""
233
 
234
- #: ../dashboard.php:963 ../dashboard.php:1082
235
  msgid "Registered"
236
  msgstr ""
237
 
238
- #: ../dashboard.php:996 ../settings.php:381
239
- msgid "WP Cerber Security"
240
- msgstr ""
241
-
242
- #. Name of the plugin
243
- #: ../dashboard.php:996 ../dashboard.php:1018
244
- msgid "WP Cerber"
245
- msgstr ""
246
-
247
- #: ../dashboard.php:998
248
- msgid "Cerber Dashboard"
249
- msgstr ""
250
-
251
- #: ../dashboard.php:998 ../dashboard.php:1233 ../dashboard.php:1790 ../settings.
252
- #: php:386
253
- msgid "Dashboard"
254
- msgstr ""
255
-
256
- #: ../dashboard.php:1000
257
- msgid "Cerber Traffic Inspector"
258
- msgstr ""
259
-
260
- #: ../dashboard.php:1000 ../dashboard.php:1219 ../dashboard.php:2515
261
- msgid "Traffic Inspector"
262
- msgstr ""
263
-
264
- #: ../dashboard.php:1004
265
- msgid "Cerber Security Rules"
266
- msgstr ""
267
-
268
- #: ../dashboard.php:1004 ../dashboard.php:2175
269
- msgid "Security Rules"
270
- msgstr ""
271
-
272
- #: ../dashboard.php:1007
273
- msgid "Cerber antispam settings"
274
- msgstr ""
275
-
276
- #: ../dashboard.php:1007 ../dashboard.php:1236 ../cerber-load.php:3978 ..
277
- #: /settings.php:189
278
- msgid "Antispam"
279
- msgstr ""
280
-
281
- #: ../dashboard.php:1008
282
- msgid "Cerber tools"
283
- msgstr ""
284
-
285
- #: ../dashboard.php:1008 ../cerber-tools.php:43
286
- msgid "Tools"
287
- msgstr ""
288
-
289
- #: ../dashboard.php:1079
290
  msgid "Comments"
291
  msgstr ""
292
 
293
- #: ../dashboard.php:1080
294
  msgid "Last login"
295
  msgstr ""
296
 
297
- #: ../dashboard.php:1081
298
  msgid "Failed login attempts"
299
  msgstr ""
300
 
301
- #: ../dashboard.php:1113 ../dashboard.php:1197
302
  msgid "Never"
303
  msgstr ""
304
 
305
- #: ../dashboard.php:1149
306
  msgid "You"
307
  msgstr ""
308
 
309
- #: ../dashboard.php:1167
310
  msgid "Cerber Quick View"
311
  msgstr ""
312
 
313
- #: ../dashboard.php:1201 ../dashboard.php:1222
314
  msgid "active"
315
  msgstr ""
316
 
317
- #: ../dashboard.php:1201
318
  msgid "deactivate"
319
  msgstr ""
320
 
321
- #: ../dashboard.php:1203
322
  msgid "not active"
323
  msgstr ""
324
 
325
- #: ../dashboard.php:1204 ../dashboard.php:1218
326
  msgid "disabled"
327
  msgstr ""
328
 
329
- #: ../dashboard.php:1209
330
  msgid "failed attempts"
331
  msgstr ""
332
 
333
- #: ../dashboard.php:1209 ../dashboard.php:1210
334
  msgid "in 24 hours"
335
  msgstr ""
336
 
337
- #: ../dashboard.php:1209 ../dashboard.php:1210
338
  msgid "view all"
339
  msgstr ""
340
 
341
- #: ../dashboard.php:1210
342
  msgid "lockouts"
343
  msgstr ""
344
 
345
- #: ../dashboard.php:1212
346
  msgid "Lockouts at the moment"
347
  msgstr ""
348
 
349
- #: ../dashboard.php:1213
350
  msgid "Last lockout"
351
  msgstr ""
352
 
353
- #: ../dashboard.php:1214 ../dashboard.php:1215 ../dashboard.php:1770
354
  msgid "entry"
355
  msgid_plural "entries"
356
  msgstr[0] ""
357
  msgstr[1] ""
358
 
359
- #: ../dashboard.php:1216 ../settings.php:92
360
  msgid "Citadel mode"
361
  msgstr ""
362
 
363
- #: ../dashboard.php:1218
364
  msgid "enabled"
365
  msgstr ""
366
 
367
- #: ../dashboard.php:1222
368
  msgid "no connection"
369
  msgstr ""
370
 
371
- #: ../dashboard.php:1234 ../dashboard.php:1444 ../cerber-load.php:3737 ..
372
- #: /settings.php:97 ../settings.php:388
373
  msgid "Activity"
374
  msgstr ""
375
 
376
- #: ../dashboard.php:1235
377
  msgid "Traffic"
378
  msgstr ""
379
 
380
- #: ../dashboard.php:1291 ../settings.php:79
381
  msgid "My site is behind a reverse proxy"
382
  msgstr ""
383
 
384
- #: ../dashboard.php:1423
385
  msgid "in the last 24 hours"
386
  msgstr ""
387
 
388
- #: ../dashboard.php:1429 ../dashboard.php:1459
389
  msgid "View all"
390
  msgstr ""
391
 
392
- #: ../dashboard.php:1437 ../common.php:741
393
  msgid "User registered"
394
  msgstr ""
395
 
396
- #: ../dashboard.php:1438
397
  msgid "All suspicious activity"
398
  msgstr ""
399
 
400
- #: ../dashboard.php:1460
401
  msgid "Recently locked out IP addresses"
402
  msgstr ""
403
 
404
- #: ../dashboard.php:1485
405
  msgid "Confused about some settings?"
406
  msgstr ""
407
 
408
- #: ../dashboard.php:1486
409
  msgid "You can easily load default recommended settings using button below"
410
  msgstr ""
411
 
412
- #: ../dashboard.php:1488
413
  msgid "Load default settings"
414
  msgstr ""
415
 
416
- #: ../dashboard.php:1490
417
  msgid "Are you sure?"
418
  msgstr ""
419
 
420
- #: ../dashboard.php:1496
421
  msgid "doesn't affect Custom login URL and Access Lists"
422
  msgstr ""
423
 
424
- #: ../dashboard.php:1497 ../cerber-load.php:3285 ../cerber-load.php:3971
425
  msgid "Getting Started Guide"
426
  msgstr ""
427
 
428
- #: ../dashboard.php:1597
429
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
430
  msgstr ""
431
 
432
- #: ../dashboard.php:1598
433
  msgid "Deactivate"
434
  msgstr ""
435
 
436
- #: ../dashboard.php:1599
437
  msgid "View Activity"
438
  msgstr ""
439
 
440
- #: ../dashboard.php:1700
441
  msgid "Subscribe"
442
  msgstr ""
443
 
444
- #: ../dashboard.php:1701 ../cerber-tools.php:269
445
  msgid "Unsubscribe"
446
  msgstr ""
447
 
448
- #: ../dashboard.php:1729
449
  msgid "You've subscribed"
450
  msgstr ""
451
 
452
- #: ../dashboard.php:1732
453
  msgid "You've unsubscribed"
454
  msgstr ""
455
 
456
- #: ../dashboard.php:1791
457
  msgid "Main settings"
458
  msgstr ""
459
 
460
- #: ../dashboard.php:2180
461
  msgid "Countries"
462
  msgstr ""
463
 
464
- #: ../dashboard.php:2243
465
  #, php-format
466
  msgid "Permitted for one country"
467
  msgid_plural "Permitted for %d countries"
468
  msgstr[0] ""
469
  msgstr[1] ""
470
 
471
- #: ../dashboard.php:2246
472
  #, php-format
473
  msgid "Not permitted for one country"
474
  msgid_plural "Not permitted for %d countries"
475
  msgstr[0] ""
476
  msgstr[1] ""
477
 
478
- #: ../dashboard.php:2254
479
  msgid "No rule"
480
  msgstr ""
481
 
482
- #: ../dashboard.php:2310
483
  msgid "Start typing here to find a country"
484
  msgstr ""
485
 
486
- #: ../dashboard.php:2393
487
  msgid "Click on a country name to add it to the list of selected countries"
488
  msgstr ""
489
 
490
- #: ../dashboard.php:2397
491
  #, php-format
492
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
493
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
494
  msgstr ""
495
 
496
- #: ../dashboard.php:2400
497
  #, php-format
498
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
499
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
500
  msgstr ""
501
 
502
- #: ../dashboard.php:2417
503
  msgid "Submit forms"
504
  msgstr ""
505
 
506
- #: ../dashboard.php:2418
507
  msgid "Post comments"
508
  msgstr ""
509
 
510
- #: ../dashboard.php:2419
511
  msgid "Log in to the website"
512
  msgstr ""
513
 
514
- #: ../dashboard.php:2420
515
  msgid "Register on the website"
516
  msgstr ""
517
 
518
- #: ../dashboard.php:2421
519
  msgid "Use XML-RPC"
520
  msgstr ""
521
 
522
- #: ../dashboard.php:2422
523
  msgid "Use REST API"
524
  msgstr ""
525
 
526
- #: ../dashboard.php:2466
527
  msgid "Security rules have been updated"
528
  msgstr ""
529
 
530
- #: ../dashboard.php:2520
531
  msgid "Live traffic"
532
  msgstr ""
533
 
534
- #: ../dashboard.php:2521 ../cerber-tools.php:87 ../cerber-tools.php:96
535
  msgid "Settings"
536
  msgstr ""
537
 
538
- #: ../dashboard.php:2832
 
 
 
 
539
  msgid "Request"
540
  msgstr ""
541
 
542
- #: ../dashboard.php:2834
543
  msgid "Host Info"
544
  msgstr ""
545
 
546
- #: ../dashboard.php:2835
547
  msgid "User Agent"
548
  msgstr ""
549
 
550
- #: ../dashboard.php:2852
551
  msgid "No requests have been logged."
552
  msgstr ""
553
 
554
- #: ../dashboard.php:2860
555
  msgid "All requests"
556
  msgstr ""
557
 
558
- #: ../dashboard.php:2861 ../settings.php:160
559
  msgid "Logged in users"
560
  msgstr ""
561
 
562
- #: ../dashboard.php:2862
563
  msgid "Not logged in visitors"
564
  msgstr ""
565
 
566
- #: ../dashboard.php:2863
567
  msgid "Form submissions"
568
  msgstr ""
569
 
570
- #: ../dashboard.php:2864
571
  msgid "Page Not Found"
572
  msgstr ""
573
 
574
- #: ../dashboard.php:2865
575
  msgid "REST API"
576
  msgstr ""
577
 
578
- #: ../dashboard.php:2866
579
  msgid "XML-RPC"
580
  msgstr ""
581
 
582
- #: ../dashboard.php:2870
583
  msgid "Longer than"
584
  msgstr ""
585
 
586
- #: ../dashboard.php:2883
587
  msgid "Refresh"
588
  msgstr ""
589
 
590
- #: ../dashboard.php:3104
591
  msgid "Any"
592
  msgstr ""
593
 
594
- #: ../dashboard.php:3144
595
  msgid "Advanced search"
596
  msgstr ""
597
 
@@ -605,248 +609,248 @@ msgstr ""
605
 
606
  #. Description of the plugin
607
  msgid ""
608
- "Protects site from brute force attacks, bots and hackers. Antispam "
609
  "protection with the Cerber antispam engine and reCAPTCHA. Comprehensive "
610
- "control of user activity. Restrict login by IP access lists. Limit login "
611
- "attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
612
  msgstr ""
613
 
614
  #. Author of the plugin
615
  msgid "Gregory"
616
  msgstr ""
617
 
618
- #: ../common.php:101
619
  msgid "Check for requests"
620
  msgstr ""
621
 
622
- #: ../common.php:134
623
  msgid "Malicious activities mitigated"
624
  msgstr ""
625
 
626
- #: ../common.php:137
627
  msgid "Spam comments denied"
628
  msgstr ""
629
 
630
- #: ../common.php:138
631
  msgid "Spam form submissions denied"
632
  msgstr ""
633
 
634
- #: ../common.php:139
635
  msgid "Malicious IP addresses detected"
636
  msgstr ""
637
 
638
- #: ../common.php:140
639
  msgid "Lockouts occurred"
640
  msgstr ""
641
 
642
- #: ../common.php:194 ../common.php:251 ../common.php:256 ../common.php:261 ..
643
- #: /cerber-load.php:659 ../cerber-load.php:671 ../cerber-load.php:678 ../cerber-
644
- #: load.php:906 ../cerber-load.php:1122 ../cerber-load.php:1128 ../cerber-load.
645
- #: php:1133 ../cerber-load.php:1138 ../cerber-load.php:1144 ../cerber-load.php:
646
- #: 1151 ../cerber-load.php:1251 ../cerber-load.php:1388 ../settings.php:780 ..
647
- #: /settings.php:851
648
  msgid "ERROR:"
649
  msgstr ""
650
 
651
- #: ../common.php:740
652
  msgid "User created"
653
  msgstr ""
654
 
655
- #: ../common.php:742
656
  msgid "Logged in"
657
  msgstr ""
658
 
659
- #: ../common.php:743
660
  msgid "Logged out"
661
  msgstr ""
662
 
663
- #: ../common.php:744
664
  msgid "Login failed"
665
  msgstr ""
666
 
667
- #: ../common.php:747
668
  msgid "IP blocked"
669
  msgstr ""
670
 
671
- #: ../common.php:748
672
  msgid "Subnet blocked"
673
  msgstr ""
674
 
675
- #: ../common.php:750
676
  msgid "Citadel activated!"
677
  msgstr ""
678
 
679
- #: ../common.php:751
680
  msgid "Spam comment denied"
681
  msgstr ""
682
 
683
- #: ../common.php:752
684
  msgid "Spam form submission denied"
685
  msgstr ""
686
 
687
- #: ../common.php:753
688
  msgid "Form submission denied"
689
  msgstr ""
690
 
691
- #: ../common.php:754
692
  msgid "Comment denied"
693
  msgstr ""
694
 
695
- #: ../common.php:765
696
  msgid "Password changed"
697
  msgstr ""
698
 
699
- #: ../common.php:766
700
  msgid "Password reset requested"
701
  msgstr ""
702
 
703
- #: ../common.php:768
704
  msgid "reCAPTCHA verification failed"
705
  msgstr ""
706
 
707
- #: ../common.php:769
708
  msgid "reCAPTCHA settings are incorrect"
709
  msgstr ""
710
 
711
- #: ../common.php:770
712
  msgid "Request to the Google reCAPTCHA service failed"
713
  msgstr ""
714
 
715
- #: ../common.php:772
716
  msgid "Attempt to access prohibited URL"
717
  msgstr ""
718
 
719
- #: ../common.php:773 ../common.php:821
720
  msgid "Attempt to log in with non-existent username"
721
  msgstr ""
722
 
723
- #: ../common.php:774 ../common.php:822
724
  msgid "Attempt to log in with prohibited username"
725
  msgstr ""
726
 
727
- #: ../common.php:776
728
  msgid "Attempt to log in denied"
729
  msgstr ""
730
 
731
- #: ../common.php:777
732
  msgid "Attempt to register denied"
733
  msgstr ""
734
 
735
- #: ../common.php:778 ../common.php:826
736
  msgid "Probing for vulnerable PHP code"
737
  msgstr ""
738
 
739
- #: ../common.php:779
740
  msgid "Attempt to upload executable file denied"
741
  msgstr ""
742
 
743
- #: ../common.php:780
744
  msgid "File upload denied"
745
  msgstr ""
746
 
747
- #: ../common.php:782
748
  msgid "Request to REST API denied"
749
  msgstr ""
750
 
751
- #: ../common.php:783
752
  msgid "XML-RPC request denied"
753
  msgstr ""
754
 
755
- #: ../common.php:787
756
  msgid "Bot detected"
757
  msgstr ""
758
 
759
- #: ../common.php:788
760
  msgid "Citadel mode is active"
761
  msgstr ""
762
 
763
- #: ../common.php:790
764
  msgid "IP blacklisted"
765
  msgstr ""
766
 
767
- #: ../common.php:793
768
  msgid "Malicious activity detected"
769
  msgstr ""
770
 
771
- #: ../common.php:794
772
  msgid "Blocked by country rule"
773
  msgstr ""
774
 
775
- #: ../common.php:795
776
  msgid "Limit reached"
777
  msgstr ""
778
 
779
- #: ../common.php:796
780
  msgid "Multiple suspicious activities"
781
  msgstr ""
782
 
783
- #: ../common.php:819
784
  msgid "Limit on login attempts is reached"
785
  msgstr ""
786
 
787
- #: ../common.php:820
788
  msgid "Attempt to access"
789
  msgstr ""
790
 
791
- #: ../common.php:823
792
  msgid "Limit on failed reCAPTCHA verifications is reached"
793
  msgstr ""
794
 
795
- #: ../common.php:824
796
  msgid "Bot activity is detected"
797
  msgstr ""
798
 
799
- #: ../common.php:825
800
  msgid "Multiple suspicious activities were detected"
801
  msgstr ""
802
 
803
- #: ../common.php:881
804
  #, php-format
805
  msgid "%s ago"
806
  msgstr ""
807
 
808
- #: ../common.php:1015 ../settings.php:214
809
  msgid "New version is available"
810
  msgstr ""
811
 
812
- #: ../common.php:1022
813
  #, php-format
814
  msgid "Update to version %s of WP Cerber"
815
  msgstr ""
816
 
817
- #: ../common.php:1041
818
  msgid "Not specified"
819
  msgstr ""
820
 
821
- #: ../common.php:1418
822
  msgid "Unable to create the directory"
823
  msgstr ""
824
 
825
- #: ../common.php:1423
826
  msgid "Destination folder access denied"
827
  msgstr ""
828
 
829
- #: ../common.php:1426
830
  msgid "File not found"
831
  msgstr ""
832
 
833
- #: ../common.php:1429
834
  msgid "Unable to copy the file"
835
  msgstr ""
836
 
837
- #: ../common.php:1435
838
  msgid "Unable to delete the file"
839
  msgstr ""
840
 
841
- #: ../cerber-news.php:159
842
  msgid "Cool!"
843
  msgstr ""
844
 
845
- #: ../cerber-lab.php:705
846
  msgid "Want to make WP Cerber even more powerful?"
847
  msgstr ""
848
 
849
- #: ../cerber-lab.php:706
850
  msgid ""
851
  "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. "
852
  "This helps the plugin team to develop new algorithms for WP Cerber that will "
@@ -854,251 +858,251 @@ msgid ""
854
  "everyday. You can disable the sending in the plugin settings at any time."
855
  msgstr ""
856
 
857
- #: ../cerber-lab.php:707
858
  msgid "OK, nail them all"
859
  msgstr ""
860
 
861
- #: ../cerber-lab.php:708
862
  msgid "NO, maybe later"
863
  msgstr ""
864
 
865
- #: ../cerber-lab.php:709 ../settings.php:362
866
  msgid "Know more"
867
  msgstr ""
868
 
869
- #: ../cerber-load.php:351
870
  msgid "You are not allowed to log in. Ask your administrator for assistance."
871
  msgstr ""
872
 
873
- #: ../cerber-load.php:357
874
  #, php-format
875
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
876
  msgstr ""
877
 
878
- #: ../cerber-load.php:376
879
  #, php-format
880
  msgid "You have only one attempt remaining."
881
  msgid_plural "You have %d attempts remaining."
882
  msgstr[0] ""
883
  msgstr[1] ""
884
 
885
- #: ../cerber-load.php:688
886
  msgid ""
887
  "Human verification failed. Please click the square box in the reCAPTCHA "
888
  "block below."
889
  msgstr ""
890
 
891
- #: ../cerber-load.php:785
892
  msgid ""
893
  "> > > Translator of WP Cerber? To get the PRO license for free, drop your "
894
  "contacts here: https://wpcerber.com/contact/"
895
  msgstr ""
896
 
897
- #: ../cerber-load.php:918
898
  #, php-format
899
  msgid ""
900
  "<strong>ERROR</strong>: The password you entered for the username %s is "
901
  "incorrect."
902
  msgstr ""
903
 
904
- #: ../cerber-load.php:1123 ../cerber-load.php:1129 ../cerber-load.php:1145 ..
905
- #: /cerber-load.php:1152
906
  msgid "You are not allowed to register."
907
  msgstr ""
908
 
909
- #: ../cerber-load.php:1139
910
  msgid "Username is not allowed. Please choose another one."
911
  msgstr ""
912
 
913
- #: ../cerber-load.php:1388
914
  msgid "Sorry, human verification failed."
915
  msgstr ""
916
 
917
- #: ../cerber-load.php:3085
918
  msgid "We're sorry, you are not allowed to proceed"
919
  msgstr ""
920
 
921
- #: ../cerber-load.php:3195
922
  msgid "WP Cerber notify"
923
  msgstr ""
924
 
925
- #: ../cerber-load.php:3217
926
  msgid "Citadel mode is activated"
927
  msgstr ""
928
 
929
- #: ../cerber-load.php:3219
930
  #, php-format
931
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
932
  msgstr ""
933
 
934
- #: ../cerber-load.php:3220
935
  #, php-format
936
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
937
  msgstr ""
938
 
939
- #: ../cerber-load.php:3221 ../cerber-load.php:3778
940
  msgid "View activity in dashboard"
941
  msgstr ""
942
 
943
- #: ../cerber-load.php:3246
944
  msgid "unspecified"
945
  msgstr ""
946
 
947
- #: ../cerber-load.php:3249
948
  msgid "Number of lockouts is increasing"
949
  msgstr ""
950
 
951
- #: ../cerber-load.php:3251
952
  msgid "Number of active lockouts"
953
  msgstr ""
954
 
955
- #: ../cerber-load.php:3252
956
  #, php-format
957
  msgid "Last lockout was added: %s for IP %s"
958
  msgstr ""
959
 
960
- #: ../cerber-load.php:3254
961
  msgid "View activity for this IP"
962
  msgstr ""
963
 
964
- #: ../cerber-load.php:3255
965
  msgid "View lockouts in dashboard"
966
  msgstr ""
967
 
968
- #: ../cerber-load.php:3258 ../cerber-load.php:3260
969
  msgid "A new version of WP Cerber is available to install"
970
  msgstr ""
971
 
972
- #: ../cerber-load.php:3259
973
  msgid "Hi!"
974
  msgstr ""
975
 
976
- #: ../cerber-load.php:3262 ../cerber-load.php:3273
977
  msgid "Website"
978
  msgstr ""
979
 
980
- #: ../cerber-load.php:3265 ../cerber-load.php:3266
981
  msgid "The WP Cerber security plugin has been deactivated"
982
  msgstr ""
983
 
984
- #: ../cerber-load.php:3268
985
  msgid "Not logged in"
986
  msgstr ""
987
 
988
- #: ../cerber-load.php:3274
989
  msgid "By user"
990
  msgstr ""
991
 
992
- #: ../cerber-load.php:3275
993
  msgid "From IP address"
994
  msgstr ""
995
 
996
- #: ../cerber-load.php:3278
997
  msgid "From country"
998
  msgstr ""
999
 
1000
- #: ../cerber-load.php:3282
1001
  msgid "The WP Cerber security plugin is now active"
1002
  msgstr ""
1003
 
1004
- #: ../cerber-load.php:3283 ../cerber-load.php:3968
1005
  msgid "WP Cerber is now active and has started protecting your site"
1006
  msgstr ""
1007
 
1008
- #: ../cerber-load.php:3291
1009
  msgid "New Custom login URL"
1010
  msgstr ""
1011
 
1012
- #: ../cerber-load.php:3295 ../cerber-load.php:3296
1013
  msgid "A new activity has been recorded"
1014
  msgstr ""
1015
 
1016
- #: ../cerber-load.php:3301
1017
  msgid "Weekly report"
1018
  msgstr ""
1019
 
1020
- #: ../cerber-load.php:3304
1021
  msgid "To change reporting settings visit"
1022
  msgstr ""
1023
 
1024
- #: ../cerber-load.php:3330
1025
  msgid "Your login page:"
1026
  msgstr ""
1027
 
1028
- #: ../cerber-load.php:3334
1029
  msgid "Your license is valid until"
1030
  msgstr ""
1031
 
1032
- #: ../cerber-load.php:3337
1033
  msgid "This message was sent by"
1034
  msgstr ""
1035
 
1036
- #: ../cerber-load.php:3358
1037
  #, php-format
1038
  msgid "Your last sign-in was %s from %s"
1039
  msgstr ""
1040
 
1041
- #: ../cerber-load.php:3433
1042
  msgid "Weekly Report"
1043
  msgstr ""
1044
 
1045
- #: ../cerber-load.php:3445
1046
  msgid "Activity details"
1047
  msgstr ""
1048
 
1049
- #: ../cerber-load.php:3459
1050
  msgid "Attempts to log in with non-existent username"
1051
  msgstr ""
1052
 
1053
- #: ../cerber-load.php:3750
1054
  msgid "User"
1055
  msgstr ""
1056
 
1057
- #: ../cerber-load.php:3758
1058
  msgid "Search string"
1059
  msgstr ""
1060
 
1061
- #: ../cerber-load.php:3779
1062
  msgid "To unsubscribe click here"
1063
  msgstr ""
1064
 
1065
- #: ../cerber-load.php:3936
1066
  #, php-format
1067
  msgid "The WP Cerber requires PHP %s or higher. You are running"
1068
  msgstr ""
1069
 
1070
- #: ../cerber-load.php:3940
1071
  #, php-format
1072
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
1073
  msgstr ""
1074
 
1075
- #: ../cerber-load.php:3949
1076
  msgid "Can't activate WP Cerber due to a database error."
1077
  msgstr ""
1078
 
1079
- #: ../cerber-load.php:3969
1080
  msgid "Your IP address is added to the"
1081
  msgstr ""
1082
 
1083
- #: ../cerber-load.php:3976 ../settings.php:394
1084
  msgid "Main Settings"
1085
  msgstr ""
1086
 
1087
- #: ../cerber-load.php:3977 ../settings.php:397 ../cerber-tools.php:88 ../cerber-
1088
- #: tools.php:97 ../cerber-tools.php:178
1089
  msgid "Access Lists"
1090
  msgstr ""
1091
 
1092
- #: ../cerber-load.php:3979 ../settings.php:399
1093
  msgid "Hardening"
1094
  msgstr ""
1095
 
1096
- #: ../cerber-load.php:3980 ../settings.php:78 ../settings.php:95 ../settings.php:
1097
- #: 404
1098
  msgid "Notifications"
1099
  msgstr ""
1100
 
1101
- #: ../cerber-load.php:3981
1102
  msgid "Import settings"
1103
  msgstr ""
1104
 
@@ -1130,7 +1134,7 @@ msgstr ""
1130
  msgid "Lockout duration"
1131
  msgstr ""
1132
 
1133
- #: ../settings.php:75 ../settings.php:94
1134
  msgid "minutes"
1135
  msgstr ""
1136
 
@@ -1204,573 +1208,577 @@ msgstr ""
1204
  msgid "Custom login URL"
1205
  msgstr ""
1206
 
1207
- #: ../settings.php:89
 
 
 
 
1208
  msgid "must not overlap with the existing pages or posts slug"
1209
  msgstr ""
1210
 
1211
- #: ../settings.php:90
1212
  msgid "Disable wp-login.php"
1213
  msgstr ""
1214
 
1215
- #: ../settings.php:90
1216
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
1217
  msgstr ""
1218
 
1219
- #: ../settings.php:93
1220
  msgid "Threshold"
1221
  msgstr ""
1222
 
1223
- #: ../settings.php:94
1224
  msgid "Duration"
1225
  msgstr ""
1226
 
1227
- #: ../settings.php:95
1228
  msgid "Send notification to admin email"
1229
  msgstr ""
1230
 
1231
- #: ../settings.php:95 ../settings.php:532 ../settings.php:654
1232
  msgid "Click to send test"
1233
  msgstr ""
1234
 
1235
- #: ../settings.php:98 ../settings.php:330
1236
  msgid "Keep records for"
1237
  msgstr ""
1238
 
1239
- #: ../settings.php:98 ../settings.php:172 ../settings.php:334
1240
  msgid "days"
1241
  msgstr ""
1242
 
1243
- #: ../settings.php:99
1244
  msgid "Cerber Lab connection"
1245
  msgstr ""
1246
 
1247
- #: ../settings.php:99
1248
  msgid "Send malicious IP addresses to the Cerber Lab"
1249
  msgstr ""
1250
 
1251
- #: ../settings.php:100
1252
  msgid "Cerber Lab protocol"
1253
  msgstr ""
1254
 
1255
- #: ../settings.php:101
1256
  msgid "Use file"
1257
  msgstr ""
1258
 
1259
- #: ../settings.php:101
1260
  msgid "Write failed login attempts to the file"
1261
  msgstr ""
1262
 
1263
- #: ../settings.php:103
1264
  msgid "Preferences"
1265
  msgstr ""
1266
 
1267
- #: ../settings.php:104
1268
  msgid "Drill down IP"
1269
  msgstr ""
1270
 
1271
- #: ../settings.php:104
1272
  msgid "Retrieve extra WHOIS information for IP"
1273
  msgstr ""
1274
 
1275
- #: ../settings.php:105
1276
  msgid "Date format"
1277
  msgstr ""
1278
 
1279
- #: ../settings.php:105
1280
  #, php-format
1281
  msgid "if empty, the default format %s will be used"
1282
  msgstr ""
1283
 
1284
- #: ../settings.php:112
1285
  msgid "Hardening WordPress"
1286
  msgstr ""
1287
 
1288
- #: ../settings.php:113
1289
  msgid "Stop user enumeration"
1290
  msgstr ""
1291
 
1292
- #: ../settings.php:113
1293
  msgid "Block access to user pages like /?author=n and user data via REST API"
1294
  msgstr ""
1295
 
1296
- #: ../settings.php:114
1297
  msgid "Protect admin scripts"
1298
  msgstr ""
1299
 
1300
- #: ../settings.php:114
1301
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1302
  msgstr ""
1303
 
1304
- #: ../settings.php:115
1305
  msgid "Disable XML-RPC"
1306
  msgstr ""
1307
 
1308
- #: ../settings.php:115
1309
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
1310
  msgstr ""
1311
 
1312
- #: ../settings.php:116
1313
  msgid "Disable feeds"
1314
  msgstr ""
1315
 
1316
- #: ../settings.php:116
1317
  msgid "Block access to the RSS, Atom and RDF feeds"
1318
  msgstr ""
1319
 
1320
- #: ../settings.php:117
1321
  msgid "Disable REST API"
1322
  msgstr ""
1323
 
1324
- #: ../settings.php:117
1325
  msgid "Block access to the WordPress REST API except the following"
1326
  msgstr ""
1327
 
1328
- #: ../settings.php:118
1329
  msgid "Allow REST API for logged in users"
1330
  msgstr ""
1331
 
1332
- #: ../settings.php:125
1333
  msgid ""
1334
  "Specify REST API namespaces to be allowed if REST API is disabled. One "
1335
  "string per line."
1336
  msgstr ""
1337
 
1338
- #: ../settings.php:135
1339
  msgid "User related settings"
1340
  msgstr ""
1341
 
1342
- #: ../settings.php:136
1343
  msgid "Registration limit"
1344
  msgstr ""
1345
 
1346
- #: ../settings.php:137
1347
  msgid "Prohibited usernames"
1348
  msgstr ""
1349
 
1350
- #: ../settings.php:143
1351
  msgid ""
1352
  "Usernames from this list are not allowed to log in or register. Any IP "
1353
  "address, have tried to use any of these usernames, will be immediately "
1354
  "blocked. Use comma to separate logins."
1355
  msgstr ""
1356
 
1357
- #: ../settings.php:143
1358
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1359
  msgstr ""
1360
 
1361
- #: ../settings.php:145
1362
  msgid "User session expire"
1363
  msgstr ""
1364
 
1365
- #: ../settings.php:145
1366
  msgid "in minutes (leave empty to use default WP value)"
1367
  msgstr ""
1368
 
1369
- #: ../settings.php:146
1370
  msgid "Sort users in dashboard"
1371
  msgstr ""
1372
 
1373
- #: ../settings.php:146
1374
  msgid "by date of registration"
1375
  msgstr ""
1376
 
1377
- #: ../settings.php:153
1378
  msgid "Cerber antispam engine"
1379
  msgstr ""
1380
 
1381
- #: ../settings.php:154
1382
  msgid "Comment form"
1383
  msgstr ""
1384
 
1385
- #: ../settings.php:154
1386
  msgid "Protect comment form with bot detection engine"
1387
  msgstr ""
1388
 
1389
- #: ../settings.php:155 ../settings.php:180
1390
  msgid "Registration form"
1391
  msgstr ""
1392
 
1393
- #: ../settings.php:155
1394
  msgid "Protect registration form with bot detection engine"
1395
  msgstr ""
1396
 
1397
- #: ../settings.php:156
1398
  msgid "Other forms"
1399
  msgstr ""
1400
 
1401
- #: ../settings.php:156
1402
  msgid "Protect all forms on the website with bot detection engine"
1403
  msgstr ""
1404
 
1405
- #: ../settings.php:158
1406
  msgid "Adjust antispam engine"
1407
  msgstr ""
1408
 
1409
- #: ../settings.php:159
1410
  msgid "Safe mode"
1411
  msgstr ""
1412
 
1413
- #: ../settings.php:159
1414
  msgid "Use less restrictive policies (allow AJAX)"
1415
  msgstr ""
1416
 
1417
- #: ../settings.php:160
1418
  msgid "Disable bot detection engine for logged in users"
1419
  msgstr ""
1420
 
1421
- #: ../settings.php:161
1422
  msgid "Query whitelist"
1423
  msgstr ""
1424
 
1425
- #: ../settings.php:167
1426
  msgid ""
1427
  "Enter a part of query string or query path to exclude a request from "
1428
  "inspection by the engine. One item per line."
1429
  msgstr ""
1430
 
1431
- #: ../settings.php:170
 
 
 
 
1432
  msgid "Comment processing"
1433
  msgstr ""
1434
 
1435
- #: ../settings.php:171
1436
  msgid "If a spam comment detected"
1437
  msgstr ""
1438
 
1439
- #: ../settings.php:171
1440
  msgid "Deny it completely"
1441
  msgstr ""
1442
 
1443
- #: ../settings.php:171
1444
  msgid "Mark it as spam"
1445
  msgstr ""
1446
 
1447
- #: ../settings.php:172
1448
  msgid "Trash spam comments"
1449
  msgstr ""
1450
 
1451
- #: ../settings.php:172
1452
  msgid "Move spam comments to trash after"
1453
  msgstr ""
1454
 
1455
- #: ../settings.php:175
1456
  msgid "reCAPTCHA settings"
1457
  msgstr ""
1458
 
1459
- #: ../settings.php:176
1460
  msgid "Site key"
1461
  msgstr ""
1462
 
1463
- #: ../settings.php:177
1464
  msgid "Secret key"
1465
  msgstr ""
1466
 
1467
- #: ../settings.php:178
1468
  msgid "Invisible reCAPTCHA"
1469
  msgstr ""
1470
 
1471
- #: ../settings.php:178
1472
  msgid "Enable invisible reCAPTCHA"
1473
  msgstr ""
1474
 
1475
- #: ../settings.php:178
1476
  msgid ""
1477
  "(do not enable it unless you get and enter the Site and Secret keys for the "
1478
  "invisible version)"
1479
  msgstr ""
1480
 
1481
- #: ../settings.php:180
1482
  msgid "Enable reCAPTCHA for WordPress registration form"
1483
  msgstr ""
1484
 
1485
- #: ../settings.php:181
1486
  msgid "Enable reCAPTCHA for WooCommerce registration form"
1487
  msgstr ""
1488
 
1489
- #: ../settings.php:183
1490
  msgid "Lost password form"
1491
  msgstr ""
1492
 
1493
- #: ../settings.php:183
1494
  msgid "Enable reCAPTCHA for WordPress lost password form"
1495
  msgstr ""
1496
 
1497
- #: ../settings.php:184
1498
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
1499
  msgstr ""
1500
 
1501
- #: ../settings.php:186
1502
  msgid "Login form"
1503
  msgstr ""
1504
 
1505
- #: ../settings.php:186
1506
  msgid "Enable reCAPTCHA for WordPress login form"
1507
  msgstr ""
1508
 
1509
- #: ../settings.php:187
1510
  msgid "Enable reCAPTCHA for WooCommerce login form"
1511
  msgstr ""
1512
 
1513
- #: ../settings.php:189
1514
  msgid "Enable reCAPTCHA for WordPress comment form"
1515
  msgstr ""
1516
 
1517
- #: ../settings.php:190
1518
  msgid "Disable reCAPTCHA for logged in users"
1519
  msgstr ""
1520
 
1521
- #: ../settings.php:192
1522
  msgid "Limit attempts"
1523
  msgstr ""
1524
 
1525
- #: ../settings.php:192
1526
  #, php-format
1527
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1528
  msgstr ""
1529
 
1530
- #: ../settings.php:198
1531
  msgid "Email notifications"
1532
  msgstr ""
1533
 
1534
- #: ../settings.php:201 ../settings.php:236
1535
  msgid "Email Address"
1536
  msgstr ""
1537
 
1538
- #: ../settings.php:205 ../settings.php:241 ../settings.php:298
1539
  msgid "Use comma to specify multiple values"
1540
  msgstr ""
1541
 
1542
- #: ../settings.php:210
1543
  #, php-format
1544
  msgid "if empty, the admin email %s will be used"
1545
  msgstr ""
1546
 
1547
- #: ../settings.php:213
1548
  msgid "Notification limit"
1549
  msgstr ""
1550
 
1551
- #: ../settings.php:213
1552
  msgid "notification letters allowed per hour (0 means unlimited)"
1553
  msgstr ""
1554
 
1555
- #: ../settings.php:219
1556
  msgid "Push notifications"
1557
  msgstr ""
1558
 
1559
- #: ../settings.php:226
1560
  msgid "All connected devices"
1561
  msgstr ""
1562
 
1563
- #: ../settings.php:227
1564
  msgid "No devices found"
1565
  msgstr ""
1566
 
1567
- #: ../settings.php:229
1568
  msgid "Not available"
1569
  msgstr ""
1570
 
1571
- #: ../settings.php:233
1572
  msgid "Weekly reports"
1573
  msgstr ""
1574
 
1575
- #: ../settings.php:234
1576
  msgid "Enable reporting"
1577
  msgstr ""
1578
 
1579
- #: ../settings.php:246
1580
  msgid "if empty, email from notification settings will be used"
1581
  msgstr ""
1582
 
1583
- #: ../settings.php:254
1584
  msgid "Inspection"
1585
  msgstr ""
1586
 
1587
- #: ../settings.php:255
1588
  msgid "Enable traffic inspection"
1589
  msgstr ""
1590
 
1591
- #: ../settings.php:260
1592
  msgid "Request whitelist"
1593
  msgstr ""
1594
 
1595
- #: ../settings.php:266
1596
  msgid ""
1597
  "Enter a request URI to exclude the request from inspection. One item per "
1598
  "line."
1599
  msgstr ""
1600
 
1601
- #: ../settings.php:269
1602
  msgid "Logging"
1603
  msgstr ""
1604
 
1605
- #: ../settings.php:270
1606
  msgid "Logging mode"
1607
  msgstr ""
1608
 
1609
- #: ../settings.php:276
1610
  msgid "Logging disabled"
1611
  msgstr ""
1612
 
1613
- #: ../settings.php:277
1614
  msgid "Smart"
1615
  msgstr ""
1616
 
1617
- #: ../settings.php:278
1618
  msgid "All traffic"
1619
  msgstr ""
1620
 
1621
- #: ../settings.php:282
1622
  msgid "Ignore crawlers"
1623
  msgstr ""
1624
 
1625
- #: ../settings.php:287
1626
  msgid "Save request fields"
1627
  msgstr ""
1628
 
1629
- #: ../settings.php:292
1630
  msgid "Mask these form fields"
1631
  msgstr ""
1632
 
1633
- #: ../settings.php:303
1634
  msgid "Save request headers"
1635
  msgstr ""
1636
 
1637
- #: ../settings.php:309
1638
  msgid "Save $_SERVER"
1639
  msgstr ""
1640
 
1641
- #: ../settings.php:315
1642
  msgid "Save request cookies"
1643
  msgstr ""
1644
 
1645
- #: ../settings.php:322
1646
  msgid "Page generation time threshold"
1647
  msgstr ""
1648
 
1649
- #: ../settings.php:327
1650
  msgid "milliseconds"
1651
  msgstr ""
1652
 
1653
- #: ../settings.php:344
1654
  msgid "Make your protection smarter!"
1655
  msgstr ""
1656
 
1657
- #: ../settings.php:348
1658
  msgid ""
1659
  "Please enable Permalinks to use this feature. Set Permalink Settings to "
1660
  "something other than Default."
1661
  msgstr ""
1662
 
1663
- #: ../settings.php:351
1664
  msgid ""
1665
  "Be careful when enabling this options. If you forget the custom login URL "
1666
  "you will not be able to login."
1667
  msgstr ""
1668
 
1669
- #: ../settings.php:355
1670
  msgid ""
1671
  "In the Citadel mode nobody is able to log in except IPs from the White IP "
1672
  "Access List. Active user sessions will not be affected."
1673
  msgstr ""
1674
 
1675
- #: ../settings.php:358
1676
  msgid "These settings do not affect hosts from the "
1677
  msgstr ""
1678
 
1679
- #: ../settings.php:361
1680
  msgid ""
1681
  "Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
1682
  "key on the Google website"
1683
  msgstr ""
1684
 
1685
- #: ../settings.php:392
1686
  msgid "Lockouts"
1687
  msgstr ""
1688
 
1689
- #: ../settings.php:401
1690
  msgid "Users"
1691
  msgstr ""
1692
 
1693
- #: ../settings.php:406
1694
- msgid "Help"
1695
- msgstr ""
1696
-
1697
- #: ../settings.php:513 ../settings.php:635
1698
  #, php-format
1699
  msgid "%s allowed retries in %s minutes"
1700
  msgstr ""
1701
 
1702
- #: ../settings.php:518 ../settings.php:640
1703
  #, php-format
1704
  msgid "%s allowed registrations in %s minutes from one IP"
1705
  msgstr ""
1706
 
1707
- #: ../settings.php:523 ../settings.php:645
1708
  #, php-format
1709
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
1710
  msgstr ""
1711
 
1712
- #: ../settings.php:530 ../settings.php:652
1713
  msgid "Notify admin if the number of active lockouts above"
1714
  msgstr ""
1715
 
1716
- #: ../settings.php:535 ../settings.php:657
1717
  #, php-format
1718
  msgid "Enable after %s failed login attempts in last %s minutes"
1719
  msgstr ""
1720
 
1721
- #: ../settings.php:737
1722
  msgid "Sunday"
1723
  msgstr ""
1724
 
1725
- #: ../settings.php:738
1726
  msgid "Monday"
1727
  msgstr ""
1728
 
1729
- #: ../settings.php:739
1730
  msgid "Tuesday"
1731
  msgstr ""
1732
 
1733
- #: ../settings.php:740
1734
  msgid "Wednesday"
1735
  msgstr ""
1736
 
1737
- #: ../settings.php:741
1738
  msgid "Thursday"
1739
  msgstr ""
1740
 
1741
- #: ../settings.php:742
1742
  msgid "Friday"
1743
  msgstr ""
1744
 
1745
- #: ../settings.php:743
1746
  msgid "Saturday"
1747
  msgstr ""
1748
 
1749
  #. translators: preposition of time
1750
- #: ../settings.php:753
1751
  msgctxt "preposition of time"
1752
  msgid "at"
1753
  msgstr ""
1754
 
1755
- #: ../settings.php:769
1756
  msgid "Click to send now"
1757
  msgstr ""
1758
 
1759
- #: ../settings.php:781
1760
  msgid "Plugin initialization mode has not been changed"
1761
  msgstr ""
1762
 
1763
- #: ../settings.php:801 ../settings.php:802
1764
  msgid "Attention! You have changed the login URL! The new login URL is"
1765
  msgstr ""
1766
 
1767
- #: ../settings.php:803 ../settings.php:804
1768
  msgid ""
1769
  "If you use a caching plugin, you have to add your new login URL to the list "
1770
  "of pages not to cache."
1771
  msgstr ""
1772
 
1773
- #: ../settings.php:882 ../settings.php:894
1774
  msgid "<strong>ERROR</strong>: please enter a valid email address."
1775
  msgstr ""
1776
 
@@ -1786,68 +1794,68 @@ msgstr ""
1786
  msgid "License"
1787
  msgstr ""
1788
 
1789
- #: ../cerber-tools.php:84
1790
  msgid "Export settings to the file"
1791
  msgstr ""
1792
 
1793
- #: ../cerber-tools.php:85
1794
  msgid ""
1795
  "When you click the button below you will get a configuration file, which you "
1796
  "can upload on another site."
1797
  msgstr ""
1798
 
1799
- #: ../cerber-tools.php:86
1800
  msgid "What do you want to export?"
1801
  msgstr ""
1802
 
1803
- #: ../cerber-tools.php:89
1804
  msgid "Download file"
1805
  msgstr ""
1806
 
1807
- #: ../cerber-tools.php:91
1808
  msgid "Import settings from the file"
1809
  msgstr ""
1810
 
1811
- #: ../cerber-tools.php:92
1812
  msgid ""
1813
  "When you click the button below, file will be uploaded and all existing "
1814
  "settings will be overridden."
1815
  msgstr ""
1816
 
1817
- #: ../cerber-tools.php:93
1818
  msgid "Select file to import."
1819
  msgstr ""
1820
 
1821
- #: ../cerber-tools.php:93
1822
  #, php-format
1823
  msgid "Maximum upload file size: %s."
1824
  msgstr ""
1825
 
1826
- #: ../cerber-tools.php:96
1827
  msgid "What do you want to import?"
1828
  msgstr ""
1829
 
1830
- #: ../cerber-tools.php:98
1831
  msgid "Upload file"
1832
  msgstr ""
1833
 
1834
- #: ../cerber-tools.php:145
1835
  msgid "No file was uploaded or file is corrupted"
1836
  msgstr ""
1837
 
1838
- #: ../cerber-tools.php:178
1839
  msgid "Error while updating"
1840
  msgstr ""
1841
 
1842
- #: ../cerber-tools.php:181
1843
  msgid "Settings has imported successfully from"
1844
  msgstr ""
1845
 
1846
- #: ../cerber-tools.php:185
1847
  msgid "Error while parsing file"
1848
  msgstr ""
1849
 
1850
- #: ../cerber-tools.php:339
1851
  msgid "Antispam and bot detection settings"
1852
  msgstr ""
1853
 
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 Mar 31 2018 17:03:18 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:388
28
+ msgid "WP Cerber Security"
29
+ msgstr ""
30
+
31
+ #. Name of the plugin
32
+ #: ../dashboard.php:52 ../dashboard.php:76
33
+ msgid "WP Cerber"
34
+ msgstr ""
35
+
36
+ #: ../dashboard.php:54
37
+ msgid "Cerber Dashboard"
38
+ msgstr ""
39
+
40
+ #: ../dashboard.php:54 ../dashboard.php:1238 ../dashboard.php:1816 ../settings.
41
+ #: php:393
42
+ msgid "Dashboard"
43
+ msgstr ""
44
+
45
+ #: ../dashboard.php:56
46
+ msgid "Cerber Traffic Inspector"
47
+ msgstr ""
48
+
49
+ #: ../dashboard.php:56 ../dashboard.php:1224 ../dashboard.php:2524
50
+ msgid "Traffic Inspector"
51
+ msgstr ""
52
+
53
+ #: ../dashboard.php:60
54
+ msgid "Cerber Security Rules"
55
+ msgstr ""
56
+
57
+ #: ../dashboard.php:60 ../dashboard.php:2184
58
+ msgid "Security Rules"
59
+ msgstr ""
60
+
61
+ #: ../dashboard.php:63
62
+ msgid "Cerber antispam settings"
63
+ msgstr ""
64
+
65
+ #: ../dashboard.php:63 ../dashboard.php:1241 ../cerber-load.php:4098 ../settings.
66
+ #: php:196
67
+ msgid "Antispam"
68
+ msgstr ""
69
+
70
+ #: ../dashboard.php:64
71
+ msgid "Cerber tools"
72
+ msgstr ""
73
+
74
+ #: ../dashboard.php:64 ../cerber-tools.php:43
75
+ msgid "Tools"
76
+ msgstr ""
77
+
78
+ #: ../dashboard.php:122 ../dashboard.php:195
79
  msgid "Remove"
80
  msgstr ""
81
 
82
+ #: ../dashboard.php:129 ../dashboard.php:695 ../dashboard.php:2848 ../cerber-load.
83
+ #: php:3853
84
  msgid "IP"
85
  msgstr ""
86
 
87
+ #: ../dashboard.php:130 ../dashboard.php:696
88
  msgid "Hostname"
89
  msgstr ""
90
 
91
+ #: ../dashboard.php:131 ../dashboard.php:697
92
  msgid "Country"
93
  msgstr ""
94
 
95
+ #: ../dashboard.php:132
96
  msgid "Expires"
97
  msgstr ""
98
 
99
+ #: ../dashboard.php:133 ../cerber-load.php:3360
100
  msgid "Reason"
101
  msgstr ""
102
 
103
+ #: ../dashboard.php:134
104
  msgid "Action"
105
  msgstr ""
106
 
107
+ #: ../dashboard.php:148
108
  #, php-format
109
  msgid "Showing last %d records from %d"
110
  msgstr ""
111
 
112
+ #: ../dashboard.php:150
113
  msgid "Hint"
114
  msgstr ""
115
 
116
+ #: ../dashboard.php:150
117
  msgid "To view activity, click on the IP"
118
  msgstr ""
119
 
120
+ #: ../dashboard.php:154
121
  msgid "No lockouts at the moment. The sky is clear."
122
  msgstr ""
123
 
124
+ #: ../dashboard.php:167 ../dashboard.php:670 ../dashboard.php:873 ../dashboard.
125
+ #: php:1219 ../dashboard.php:2679 ../cerber-load.php:4089 ../settings.php:77 ..
126
+ #: /settings.php:365
127
  msgid "White IP Access List"
128
  msgstr ""
129
 
130
+ #: ../dashboard.php:167
131
  msgid "These IPs will never be locked out"
132
  msgstr ""
133
 
134
+ #: ../dashboard.php:169 ../dashboard.php:671 ../dashboard.php:876 ../dashboard.
135
+ #: php:1220 ../dashboard.php:2680
136
  msgid "Black IP Access List"
137
  msgstr ""
138
 
139
+ #: ../dashboard.php:169
140
  msgid "Nobody can log in or register from these IPs"
141
  msgstr ""
142
 
143
+ #: ../dashboard.php:176
144
  msgid "Your IP"
145
  msgstr ""
146
 
147
+ #: ../dashboard.php:194 ../dashboard.php:886 ../dashboard.php:913 ../dashboard.
148
+ #: php:1005
149
  msgid "Check for activity"
150
  msgstr ""
151
 
152
+ #: ../dashboard.php:201
153
  msgid "List is empty"
154
  msgstr ""
155
 
156
+ #: ../dashboard.php:205
157
  msgid "IP address, IPv4 address range or subnet"
158
  msgstr ""
159
 
160
+ #: ../dashboard.php:206
161
  msgid "Add IP to the list"
162
  msgstr ""
163
 
164
+ #: ../dashboard.php:207
165
  msgid "Optional comment for this entry"
166
  msgstr ""
167
 
168
+ #: ../dashboard.php:232 ../dashboard.php:244
169
  msgid "Incorrect IP address or IP range"
170
  msgstr ""
171
 
172
+ #: ../dashboard.php:238
173
  #, php-format
174
  msgid "Address %s was added to White IP Access List"
175
  msgstr ""
176
 
177
+ #: ../dashboard.php:248
178
  msgid "You cannot add your IP address or network"
179
  msgstr ""
180
 
181
+ #: ../dashboard.php:252
182
  #, php-format
183
  msgid "Address %s was added to Black IP Access List"
184
  msgstr ""
185
 
186
+ #: ../dashboard.php:349 ../dashboard.php:2609 ../whois.php:221 ../whois.php:252 ..
187
+ #: /common.php:874 ../common.php:1153
188
  msgid "Unknown"
189
  msgstr ""
190
 
191
+ #: ../dashboard.php:391
192
  msgid "unknown"
193
  msgstr ""
194
 
195
+ #: ../dashboard.php:416
196
  msgid "Email has been sent to"
197
  msgstr ""
198
 
199
+ #: ../dashboard.php:419
200
  msgid "Unable to send email to"
201
  msgstr ""
202
 
203
+ #: ../dashboard.php:425
204
  #, php-format
205
  msgid "Lockout for %s was removed"
206
  msgstr ""
207
 
208
+ #: ../dashboard.php:441 ../dashboard.php:1640
209
  msgid "Settings saved"
210
  msgstr ""
211
 
212
+ #: ../dashboard.php:534
213
  msgid "IP address"
214
  msgstr ""
215
 
216
+ #: ../dashboard.php:534 ../dashboard.php:698 ../dashboard.php:2846
217
  msgid "Date"
218
  msgstr ""
219
 
220
+ #: ../dashboard.php:534 ../dashboard.php:699
221
  msgid "Event"
222
  msgstr ""
223
 
224
+ #: ../dashboard.php:534 ../dashboard.php:700 ../dashboard.php:2851
225
  msgid "Local User"
226
  msgstr ""
227
 
228
+ #: ../dashboard.php:534
229
  msgid "User login"
230
  msgstr ""
231
 
232
+ #: ../dashboard.php:534
233
  msgid "User ID"
234
  msgstr ""
235
 
236
+ #: ../dashboard.php:534 ../dashboard.php:701 ../cerber-load.php:3861
237
  msgid "Username used"
238
  msgstr ""
239
 
240
+ #: ../dashboard.php:675 ../dashboard.php:879 ../dashboard.php:2684 ../common.php:
241
+ #: 845
242
  msgid "Locked out"
243
  msgstr ""
244
 
245
+ #: ../dashboard.php:719
246
  msgid "Export"
247
  msgstr ""
248
 
249
+ #: ../dashboard.php:723
250
  msgid "No activity has been logged."
251
  msgstr ""
252
 
253
+ #: ../dashboard.php:729
254
  msgid "All events"
255
  msgstr ""
256
 
257
+ #: ../dashboard.php:738
258
  msgid "Search for IP or username"
259
  msgstr ""
260
 
261
+ #: ../dashboard.php:738
262
  msgid "Filter"
263
  msgstr ""
264
 
265
+ #: ../dashboard.php:909
266
  msgid "Abuse email:"
267
  msgstr ""
268
 
269
+ #: ../dashboard.php:913
270
  msgid "Network:"
271
  msgstr ""
272
 
273
+ #: ../dashboard.php:927
274
  msgid "Add network to the Black List"
275
  msgstr ""
276
 
277
+ #: ../dashboard.php:932
278
  msgid "Add IP to the Black List"
279
  msgstr ""
280
 
281
+ #: ../dashboard.php:992
282
  msgid "Last seen"
283
  msgstr ""
284
 
285
+ #: ../dashboard.php:999 ../dashboard.php:1084
286
  msgid "Registered"
287
  msgstr ""
288
 
289
+ #: ../dashboard.php:1081
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  msgid "Comments"
291
  msgstr ""
292
 
293
+ #: ../dashboard.php:1082
294
  msgid "Last login"
295
  msgstr ""
296
 
297
+ #: ../dashboard.php:1083
298
  msgid "Failed login attempts"
299
  msgstr ""
300
 
301
+ #: ../dashboard.php:1115 ../dashboard.php:1202
302
  msgid "Never"
303
  msgstr ""
304
 
305
+ #: ../dashboard.php:1154
306
  msgid "You"
307
  msgstr ""
308
 
309
+ #: ../dashboard.php:1172
310
  msgid "Cerber Quick View"
311
  msgstr ""
312
 
313
+ #: ../dashboard.php:1206 ../dashboard.php:1227
314
  msgid "active"
315
  msgstr ""
316
 
317
+ #: ../dashboard.php:1206
318
  msgid "deactivate"
319
  msgstr ""
320
 
321
+ #: ../dashboard.php:1208
322
  msgid "not active"
323
  msgstr ""
324
 
325
+ #: ../dashboard.php:1209 ../dashboard.php:1223
326
  msgid "disabled"
327
  msgstr ""
328
 
329
+ #: ../dashboard.php:1214
330
  msgid "failed attempts"
331
  msgstr ""
332
 
333
+ #: ../dashboard.php:1214 ../dashboard.php:1215
334
  msgid "in 24 hours"
335
  msgstr ""
336
 
337
+ #: ../dashboard.php:1214 ../dashboard.php:1215
338
  msgid "view all"
339
  msgstr ""
340
 
341
+ #: ../dashboard.php:1215
342
  msgid "lockouts"
343
  msgstr ""
344
 
345
+ #: ../dashboard.php:1217
346
  msgid "Lockouts at the moment"
347
  msgstr ""
348
 
349
+ #: ../dashboard.php:1218
350
  msgid "Last lockout"
351
  msgstr ""
352
 
353
+ #: ../dashboard.php:1219 ../dashboard.php:1220 ../dashboard.php:1796
354
  msgid "entry"
355
  msgid_plural "entries"
356
  msgstr[0] ""
357
  msgstr[1] ""
358
 
359
+ #: ../dashboard.php:1221 ../settings.php:99
360
  msgid "Citadel mode"
361
  msgstr ""
362
 
363
+ #: ../dashboard.php:1223
364
  msgid "enabled"
365
  msgstr ""
366
 
367
+ #: ../dashboard.php:1227
368
  msgid "no connection"
369
  msgstr ""
370
 
371
+ #: ../dashboard.php:1239 ../dashboard.php:1467 ../cerber-load.php:3844 ..
372
+ #: /settings.php:104 ../settings.php:395
373
  msgid "Activity"
374
  msgstr ""
375
 
376
+ #: ../dashboard.php:1240
377
  msgid "Traffic"
378
  msgstr ""
379
 
380
+ #: ../dashboard.php:1307 ../settings.php:79
381
  msgid "My site is behind a reverse proxy"
382
  msgstr ""
383
 
384
+ #: ../dashboard.php:1446
385
  msgid "in the last 24 hours"
386
  msgstr ""
387
 
388
+ #: ../dashboard.php:1452 ../dashboard.php:1482
389
  msgid "View all"
390
  msgstr ""
391
 
392
+ #: ../dashboard.php:1460 ../common.php:797
393
  msgid "User registered"
394
  msgstr ""
395
 
396
+ #: ../dashboard.php:1461
397
  msgid "All suspicious activity"
398
  msgstr ""
399
 
400
+ #: ../dashboard.php:1483
401
  msgid "Recently locked out IP addresses"
402
  msgstr ""
403
 
404
+ #: ../dashboard.php:1508
405
  msgid "Confused about some settings?"
406
  msgstr ""
407
 
408
+ #: ../dashboard.php:1509
409
  msgid "You can easily load default recommended settings using button below"
410
  msgstr ""
411
 
412
+ #: ../dashboard.php:1511
413
  msgid "Load default settings"
414
  msgstr ""
415
 
416
+ #: ../dashboard.php:1513
417
  msgid "Are you sure?"
418
  msgstr ""
419
 
420
+ #: ../dashboard.php:1519
421
  msgid "doesn't affect Custom login URL and Access Lists"
422
  msgstr ""
423
 
424
+ #: ../dashboard.php:1520 ../cerber-load.php:3392 ../cerber-load.php:4091
425
  msgid "Getting Started Guide"
426
  msgstr ""
427
 
428
+ #: ../dashboard.php:1623
429
  msgid "Attention! Citadel mode is now active. Nobody is able to log in."
430
  msgstr ""
431
 
432
+ #: ../dashboard.php:1624
433
  msgid "Deactivate"
434
  msgstr ""
435
 
436
+ #: ../dashboard.php:1625
437
  msgid "View Activity"
438
  msgstr ""
439
 
440
+ #: ../dashboard.php:1726
441
  msgid "Subscribe"
442
  msgstr ""
443
 
444
+ #: ../dashboard.php:1727 ../cerber-tools.php:273
445
  msgid "Unsubscribe"
446
  msgstr ""
447
 
448
+ #: ../dashboard.php:1755
449
  msgid "You've subscribed"
450
  msgstr ""
451
 
452
+ #: ../dashboard.php:1758
453
  msgid "You've unsubscribed"
454
  msgstr ""
455
 
456
+ #: ../dashboard.php:1817
457
  msgid "Main settings"
458
  msgstr ""
459
 
460
+ #: ../dashboard.php:2189
461
  msgid "Countries"
462
  msgstr ""
463
 
464
+ #: ../dashboard.php:2252
465
  #, php-format
466
  msgid "Permitted for one country"
467
  msgid_plural "Permitted for %d countries"
468
  msgstr[0] ""
469
  msgstr[1] ""
470
 
471
+ #: ../dashboard.php:2255
472
  #, php-format
473
  msgid "Not permitted for one country"
474
  msgid_plural "Not permitted for %d countries"
475
  msgstr[0] ""
476
  msgstr[1] ""
477
 
478
+ #: ../dashboard.php:2263
479
  msgid "No rule"
480
  msgstr ""
481
 
482
+ #: ../dashboard.php:2319
483
  msgid "Start typing here to find a country"
484
  msgstr ""
485
 
486
+ #: ../dashboard.php:2402
487
  msgid "Click on a country name to add it to the list of selected countries"
488
  msgstr ""
489
 
490
+ #: ../dashboard.php:2406
491
  #, php-format
492
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
493
  msgid "Selected countries are permitted to %s, other countries are not permitted to"
494
  msgstr ""
495
 
496
+ #: ../dashboard.php:2409
497
  #, php-format
498
  msgctxt "to is a marker of infinitive, e.g. \"to use it\""
499
  msgid "Selected countries are not permitted to %s, other countries are permitted to"
500
  msgstr ""
501
 
502
+ #: ../dashboard.php:2426
503
  msgid "Submit forms"
504
  msgstr ""
505
 
506
+ #: ../dashboard.php:2427
507
  msgid "Post comments"
508
  msgstr ""
509
 
510
+ #: ../dashboard.php:2428
511
  msgid "Log in to the website"
512
  msgstr ""
513
 
514
+ #: ../dashboard.php:2429
515
  msgid "Register on the website"
516
  msgstr ""
517
 
518
+ #: ../dashboard.php:2430
519
  msgid "Use XML-RPC"
520
  msgstr ""
521
 
522
+ #: ../dashboard.php:2431
523
  msgid "Use REST API"
524
  msgstr ""
525
 
526
+ #: ../dashboard.php:2475
527
  msgid "Security rules have been updated"
528
  msgstr ""
529
 
530
+ #: ../dashboard.php:2529
531
  msgid "Live traffic"
532
  msgstr ""
533
 
534
+ #: ../dashboard.php:2530 ../cerber-tools.php:91 ../cerber-tools.php:100
535
  msgid "Settings"
536
  msgstr ""
537
 
538
+ #: ../dashboard.php:2531 ../settings.php:413 ../cerber-tools.php:51
539
+ msgid "Help"
540
+ msgstr ""
541
+
542
+ #: ../dashboard.php:2847
543
  msgid "Request"
544
  msgstr ""
545
 
546
+ #: ../dashboard.php:2849
547
  msgid "Host Info"
548
  msgstr ""
549
 
550
+ #: ../dashboard.php:2850
551
  msgid "User Agent"
552
  msgstr ""
553
 
554
+ #: ../dashboard.php:2867
555
  msgid "No requests have been logged."
556
  msgstr ""
557
 
558
+ #: ../dashboard.php:2875
559
  msgid "All requests"
560
  msgstr ""
561
 
562
+ #: ../dashboard.php:2876 ../settings.php:167
563
  msgid "Logged in users"
564
  msgstr ""
565
 
566
+ #: ../dashboard.php:2877
567
  msgid "Not logged in visitors"
568
  msgstr ""
569
 
570
+ #: ../dashboard.php:2878
571
  msgid "Form submissions"
572
  msgstr ""
573
 
574
+ #: ../dashboard.php:2879
575
  msgid "Page Not Found"
576
  msgstr ""
577
 
578
+ #: ../dashboard.php:2880
579
  msgid "REST API"
580
  msgstr ""
581
 
582
+ #: ../dashboard.php:2881
583
  msgid "XML-RPC"
584
  msgstr ""
585
 
586
+ #: ../dashboard.php:2885
587
  msgid "Longer than"
588
  msgstr ""
589
 
590
+ #: ../dashboard.php:2898
591
  msgid "Refresh"
592
  msgstr ""
593
 
594
+ #: ../dashboard.php:3119
595
  msgid "Any"
596
  msgstr ""
597
 
598
+ #: ../dashboard.php:3159
599
  msgid "Advanced search"
600
  msgstr ""
601
 
609
 
610
  #. Description of the plugin
611
  msgid ""
612
+ "Protects WordPress against brute force attacks, bots and hackers. Antispam "
613
  "protection with the Cerber antispam engine and reCAPTCHA. Comprehensive "
614
+ "control of user and bot activity. Restrict login by IP access lists. Limit "
615
+ "login attempts. Know more: <a href=\"https://wpcerber.com\">wpcerber.com</a>."
616
  msgstr ""
617
 
618
  #. Author of the plugin
619
  msgid "Gregory"
620
  msgstr ""
621
 
622
+ #: ../common.php:109
623
  msgid "Check for requests"
624
  msgstr ""
625
 
626
+ #: ../common.php:143
627
  msgid "Malicious activities mitigated"
628
  msgstr ""
629
 
630
+ #: ../common.php:146
631
  msgid "Spam comments denied"
632
  msgstr ""
633
 
634
+ #: ../common.php:147
635
  msgid "Spam form submissions denied"
636
  msgstr ""
637
 
638
+ #: ../common.php:148
639
  msgid "Malicious IP addresses detected"
640
  msgstr ""
641
 
642
+ #: ../common.php:149
643
  msgid "Lockouts occurred"
644
  msgstr ""
645
 
646
+ #: ../common.php:203 ../common.php:260 ../common.php:265 ../common.php:270 ..
647
+ #: /cerber-load.php:666 ../cerber-load.php:678 ../cerber-load.php:685 ../cerber-
648
+ #: load.php:926 ../cerber-load.php:1143 ../cerber-load.php:1149 ../cerber-load.
649
+ #: php:1154 ../cerber-load.php:1159 ../cerber-load.php:1165 ../cerber-load.php:
650
+ #: 1172 ../cerber-load.php:1272 ../cerber-load.php:1409 ../settings.php:793 ..
651
+ #: /settings.php:864
652
  msgid "ERROR:"
653
  msgstr ""
654
 
655
+ #: ../common.php:796
656
  msgid "User created"
657
  msgstr ""
658
 
659
+ #: ../common.php:798
660
  msgid "Logged in"
661
  msgstr ""
662
 
663
+ #: ../common.php:799
664
  msgid "Logged out"
665
  msgstr ""
666
 
667
+ #: ../common.php:800
668
  msgid "Login failed"
669
  msgstr ""
670
 
671
+ #: ../common.php:803
672
  msgid "IP blocked"
673
  msgstr ""
674
 
675
+ #: ../common.php:804
676
  msgid "Subnet blocked"
677
  msgstr ""
678
 
679
+ #: ../common.php:806
680
  msgid "Citadel activated!"
681
  msgstr ""
682
 
683
+ #: ../common.php:807
684
  msgid "Spam comment denied"
685
  msgstr ""
686
 
687
+ #: ../common.php:808
688
  msgid "Spam form submission denied"
689
  msgstr ""
690
 
691
+ #: ../common.php:809
692
  msgid "Form submission denied"
693
  msgstr ""
694
 
695
+ #: ../common.php:810
696
  msgid "Comment denied"
697
  msgstr ""
698
 
699
+ #: ../common.php:821
700
  msgid "Password changed"
701
  msgstr ""
702
 
703
+ #: ../common.php:822
704
  msgid "Password reset requested"
705
  msgstr ""
706
 
707
+ #: ../common.php:824
708
  msgid "reCAPTCHA verification failed"
709
  msgstr ""
710
 
711
+ #: ../common.php:825
712
  msgid "reCAPTCHA settings are incorrect"
713
  msgstr ""
714
 
715
+ #: ../common.php:826
716
  msgid "Request to the Google reCAPTCHA service failed"
717
  msgstr ""
718
 
719
+ #: ../common.php:828
720
  msgid "Attempt to access prohibited URL"
721
  msgstr ""
722
 
723
+ #: ../common.php:829 ../common.php:877
724
  msgid "Attempt to log in with non-existent username"
725
  msgstr ""
726
 
727
+ #: ../common.php:830 ../common.php:878
728
  msgid "Attempt to log in with prohibited username"
729
  msgstr ""
730
 
731
+ #: ../common.php:832
732
  msgid "Attempt to log in denied"
733
  msgstr ""
734
 
735
+ #: ../common.php:833
736
  msgid "Attempt to register denied"
737
  msgstr ""
738
 
739
+ #: ../common.php:834 ../common.php:882
740
  msgid "Probing for vulnerable PHP code"
741
  msgstr ""
742
 
743
+ #: ../common.php:835
744
  msgid "Attempt to upload executable file denied"
745
  msgstr ""
746
 
747
+ #: ../common.php:836
748
  msgid "File upload denied"
749
  msgstr ""
750
 
751
+ #: ../common.php:838
752
  msgid "Request to REST API denied"
753
  msgstr ""
754
 
755
+ #: ../common.php:839
756
  msgid "XML-RPC request denied"
757
  msgstr ""
758
 
759
+ #: ../common.php:843
760
  msgid "Bot detected"
761
  msgstr ""
762
 
763
+ #: ../common.php:844
764
  msgid "Citadel mode is active"
765
  msgstr ""
766
 
767
+ #: ../common.php:846
768
  msgid "IP blacklisted"
769
  msgstr ""
770
 
771
+ #: ../common.php:849
772
  msgid "Malicious activity detected"
773
  msgstr ""
774
 
775
+ #: ../common.php:850
776
  msgid "Blocked by country rule"
777
  msgstr ""
778
 
779
+ #: ../common.php:851
780
  msgid "Limit reached"
781
  msgstr ""
782
 
783
+ #: ../common.php:852
784
  msgid "Multiple suspicious activities"
785
  msgstr ""
786
 
787
+ #: ../common.php:875
788
  msgid "Limit on login attempts is reached"
789
  msgstr ""
790
 
791
+ #: ../common.php:876
792
  msgid "Attempt to access"
793
  msgstr ""
794
 
795
+ #: ../common.php:879
796
  msgid "Limit on failed reCAPTCHA verifications is reached"
797
  msgstr ""
798
 
799
+ #: ../common.php:880
800
  msgid "Bot activity is detected"
801
  msgstr ""
802
 
803
+ #: ../common.php:881
804
  msgid "Multiple suspicious activities were detected"
805
  msgstr ""
806
 
807
+ #: ../common.php:937
808
  #, php-format
809
  msgid "%s ago"
810
  msgstr ""
811
 
812
+ #: ../common.php:1071 ../settings.php:221
813
  msgid "New version is available"
814
  msgstr ""
815
 
816
+ #: ../common.php:1078
817
  #, php-format
818
  msgid "Update to version %s of WP Cerber"
819
  msgstr ""
820
 
821
+ #: ../common.php:1097
822
  msgid "Not specified"
823
  msgstr ""
824
 
825
+ #: ../common.php:1583
826
  msgid "Unable to create the directory"
827
  msgstr ""
828
 
829
+ #: ../common.php:1588
830
  msgid "Destination folder access denied"
831
  msgstr ""
832
 
833
+ #: ../common.php:1591
834
  msgid "File not found"
835
  msgstr ""
836
 
837
+ #: ../common.php:1594
838
  msgid "Unable to copy the file"
839
  msgstr ""
840
 
841
+ #: ../common.php:1600
842
  msgid "Unable to delete the file"
843
  msgstr ""
844
 
845
+ #: ../cerber-news.php:165
846
  msgid "Cool!"
847
  msgstr ""
848
 
849
+ #: ../cerber-lab.php:716
850
  msgid "Want to make WP Cerber even more powerful?"
851
  msgstr ""
852
 
853
+ #: ../cerber-lab.php:717
854
  msgid ""
855
  "Allow WP Cerber to send locked out malicious IP addresses to Cerber Lab. "
856
  "This helps the plugin team to develop new algorithms for WP Cerber that will "
858
  "everyday. You can disable the sending in the plugin settings at any time."
859
  msgstr ""
860
 
861
+ #: ../cerber-lab.php:718
862
  msgid "OK, nail them all"
863
  msgstr ""
864
 
865
+ #: ../cerber-lab.php:719
866
  msgid "NO, maybe later"
867
  msgstr ""
868
 
869
+ #: ../cerber-lab.php:720 ../settings.php:369
870
  msgid "Know more"
871
  msgstr ""
872
 
873
+ #: ../cerber-load.php:358
874
  msgid "You are not allowed to log in. Ask your administrator for assistance."
875
  msgstr ""
876
 
877
+ #: ../cerber-load.php:364
878
  #, php-format
879
  msgid "You have reached the login attempts limit. Please try again in %d minutes."
880
  msgstr ""
881
 
882
+ #: ../cerber-load.php:383
883
  #, php-format
884
  msgid "You have only one attempt remaining."
885
  msgid_plural "You have %d attempts remaining."
886
  msgstr[0] ""
887
  msgstr[1] ""
888
 
889
+ #: ../cerber-load.php:695
890
  msgid ""
891
  "Human verification failed. Please click the square box in the reCAPTCHA "
892
  "block below."
893
  msgstr ""
894
 
895
+ #: ../cerber-load.php:796
896
  msgid ""
897
  "> > > Translator of WP Cerber? To get the PRO license for free, drop your "
898
  "contacts here: https://wpcerber.com/contact/"
899
  msgstr ""
900
 
901
+ #: ../cerber-load.php:938
902
  #, php-format
903
  msgid ""
904
  "<strong>ERROR</strong>: The password you entered for the username %s is "
905
  "incorrect."
906
  msgstr ""
907
 
908
+ #: ../cerber-load.php:1144 ../cerber-load.php:1150 ../cerber-load.php:1166 ..
909
+ #: /cerber-load.php:1173
910
  msgid "You are not allowed to register."
911
  msgstr ""
912
 
913
+ #: ../cerber-load.php:1160
914
  msgid "Username is not allowed. Please choose another one."
915
  msgstr ""
916
 
917
+ #: ../cerber-load.php:1409
918
  msgid "Sorry, human verification failed."
919
  msgstr ""
920
 
921
+ #: ../cerber-load.php:3192
922
  msgid "We're sorry, you are not allowed to proceed"
923
  msgstr ""
924
 
925
+ #: ../cerber-load.php:3302
926
  msgid "WP Cerber notify"
927
  msgstr ""
928
 
929
+ #: ../cerber-load.php:3324
930
  msgid "Citadel mode is activated"
931
  msgstr ""
932
 
933
+ #: ../cerber-load.php:3326
934
  #, php-format
935
  msgid "Citadel mode is activated after %d failed login attempts in %d minutes."
936
  msgstr ""
937
 
938
+ #: ../cerber-load.php:3327
939
  #, php-format
940
  msgid "Last failed attempt was at %s from IP %s with user login: %s."
941
  msgstr ""
942
 
943
+ #: ../cerber-load.php:3328 ../cerber-load.php:3885
944
  msgid "View activity in dashboard"
945
  msgstr ""
946
 
947
+ #: ../cerber-load.php:3353
948
  msgid "unspecified"
949
  msgstr ""
950
 
951
+ #: ../cerber-load.php:3356
952
  msgid "Number of lockouts is increasing"
953
  msgstr ""
954
 
955
+ #: ../cerber-load.php:3358
956
  msgid "Number of active lockouts"
957
  msgstr ""
958
 
959
+ #: ../cerber-load.php:3359
960
  #, php-format
961
  msgid "Last lockout was added: %s for IP %s"
962
  msgstr ""
963
 
964
+ #: ../cerber-load.php:3361
965
  msgid "View activity for this IP"
966
  msgstr ""
967
 
968
+ #: ../cerber-load.php:3362
969
  msgid "View lockouts in dashboard"
970
  msgstr ""
971
 
972
+ #: ../cerber-load.php:3365 ../cerber-load.php:3367
973
  msgid "A new version of WP Cerber is available to install"
974
  msgstr ""
975
 
976
+ #: ../cerber-load.php:3366
977
  msgid "Hi!"
978
  msgstr ""
979
 
980
+ #: ../cerber-load.php:3369 ../cerber-load.php:3380
981
  msgid "Website"
982
  msgstr ""
983
 
984
+ #: ../cerber-load.php:3372 ../cerber-load.php:3373
985
  msgid "The WP Cerber security plugin has been deactivated"
986
  msgstr ""
987
 
988
+ #: ../cerber-load.php:3375
989
  msgid "Not logged in"
990
  msgstr ""
991
 
992
+ #: ../cerber-load.php:3381
993
  msgid "By user"
994
  msgstr ""
995
 
996
+ #: ../cerber-load.php:3382
997
  msgid "From IP address"
998
  msgstr ""
999
 
1000
+ #: ../cerber-load.php:3385
1001
  msgid "From country"
1002
  msgstr ""
1003
 
1004
+ #: ../cerber-load.php:3389
1005
  msgid "The WP Cerber security plugin is now active"
1006
  msgstr ""
1007
 
1008
+ #: ../cerber-load.php:3390 ../cerber-load.php:4088
1009
  msgid "WP Cerber is now active and has started protecting your site"
1010
  msgstr ""
1011
 
1012
+ #: ../cerber-load.php:3398
1013
  msgid "New Custom login URL"
1014
  msgstr ""
1015
 
1016
+ #: ../cerber-load.php:3402 ../cerber-load.php:3403
1017
  msgid "A new activity has been recorded"
1018
  msgstr ""
1019
 
1020
+ #: ../cerber-load.php:3408
1021
  msgid "Weekly report"
1022
  msgstr ""
1023
 
1024
+ #: ../cerber-load.php:3411
1025
  msgid "To change reporting settings visit"
1026
  msgstr ""
1027
 
1028
+ #: ../cerber-load.php:3437
1029
  msgid "Your login page:"
1030
  msgstr ""
1031
 
1032
+ #: ../cerber-load.php:3441
1033
  msgid "Your license is valid until"
1034
  msgstr ""
1035
 
1036
+ #: ../cerber-load.php:3444
1037
  msgid "This message was sent by"
1038
  msgstr ""
1039
 
1040
+ #: ../cerber-load.php:3465
1041
  #, php-format
1042
  msgid "Your last sign-in was %s from %s"
1043
  msgstr ""
1044
 
1045
+ #: ../cerber-load.php:3540
1046
  msgid "Weekly Report"
1047
  msgstr ""
1048
 
1049
+ #: ../cerber-load.php:3552
1050
  msgid "Activity details"
1051
  msgstr ""
1052
 
1053
+ #: ../cerber-load.php:3566
1054
  msgid "Attempts to log in with non-existent username"
1055
  msgstr ""
1056
 
1057
+ #: ../cerber-load.php:3857
1058
  msgid "User"
1059
  msgstr ""
1060
 
1061
+ #: ../cerber-load.php:3865
1062
  msgid "Search string"
1063
  msgstr ""
1064
 
1065
+ #: ../cerber-load.php:3886
1066
  msgid "To unsubscribe click here"
1067
  msgstr ""
1068
 
1069
+ #: ../cerber-load.php:4043
1070
  #, php-format
1071
  msgid "The WP Cerber requires PHP %s or higher. You are running"
1072
  msgstr ""
1073
 
1074
+ #: ../cerber-load.php:4047
1075
  #, php-format
1076
  msgid "The WP Cerber requires WordPress %s or higher. You are running"
1077
  msgstr ""
1078
 
1079
+ #: ../cerber-load.php:4056
1080
  msgid "Can't activate WP Cerber due to a database error."
1081
  msgstr ""
1082
 
1083
+ #: ../cerber-load.php:4089
1084
  msgid "Your IP address is added to the"
1085
  msgstr ""
1086
 
1087
+ #: ../cerber-load.php:4096 ../settings.php:401
1088
  msgid "Main Settings"
1089
  msgstr ""
1090
 
1091
+ #: ../cerber-load.php:4097 ../settings.php:404 ../cerber-tools.php:92 ../cerber-
1092
+ #: tools.php:101 ../cerber-tools.php:182
1093
  msgid "Access Lists"
1094
  msgstr ""
1095
 
1096
+ #: ../cerber-load.php:4099 ../settings.php:406
1097
  msgid "Hardening"
1098
  msgstr ""
1099
 
1100
+ #: ../cerber-load.php:4100 ../settings.php:78 ../settings.php:102 ../settings.php:
1101
+ #: 411
1102
  msgid "Notifications"
1103
  msgstr ""
1104
 
1105
+ #: ../cerber-load.php:4101
1106
  msgid "Import settings"
1107
  msgstr ""
1108
 
1134
  msgid "Lockout duration"
1135
  msgstr ""
1136
 
1137
+ #: ../settings.php:75 ../settings.php:101
1138
  msgid "minutes"
1139
  msgstr ""
1140
 
1208
  msgid "Custom login URL"
1209
  msgstr ""
1210
 
1211
+ #: ../settings.php:94
1212
+ msgid "Custom login URL may contain only letters, numbers, dashes and underscores"
1213
+ msgstr ""
1214
+
1215
+ #: ../settings.php:95
1216
  msgid "must not overlap with the existing pages or posts slug"
1217
  msgstr ""
1218
 
1219
+ #: ../settings.php:97
1220
  msgid "Disable wp-login.php"
1221
  msgstr ""
1222
 
1223
+ #: ../settings.php:97
1224
  msgid "Block direct access to wp-login.php and return HTTP 404 Not Found Error"
1225
  msgstr ""
1226
 
1227
+ #: ../settings.php:100
1228
  msgid "Threshold"
1229
  msgstr ""
1230
 
1231
+ #: ../settings.php:101
1232
  msgid "Duration"
1233
  msgstr ""
1234
 
1235
+ #: ../settings.php:102
1236
  msgid "Send notification to admin email"
1237
  msgstr ""
1238
 
1239
+ #: ../settings.php:102 ../settings.php:539 ../settings.php:661
1240
  msgid "Click to send test"
1241
  msgstr ""
1242
 
1243
+ #: ../settings.php:105 ../settings.php:337
1244
  msgid "Keep records for"
1245
  msgstr ""
1246
 
1247
+ #: ../settings.php:105 ../settings.php:179 ../settings.php:341
1248
  msgid "days"
1249
  msgstr ""
1250
 
1251
+ #: ../settings.php:106
1252
  msgid "Cerber Lab connection"
1253
  msgstr ""
1254
 
1255
+ #: ../settings.php:106
1256
  msgid "Send malicious IP addresses to the Cerber Lab"
1257
  msgstr ""
1258
 
1259
+ #: ../settings.php:107
1260
  msgid "Cerber Lab protocol"
1261
  msgstr ""
1262
 
1263
+ #: ../settings.php:108
1264
  msgid "Use file"
1265
  msgstr ""
1266
 
1267
+ #: ../settings.php:108
1268
  msgid "Write failed login attempts to the file"
1269
  msgstr ""
1270
 
1271
+ #: ../settings.php:110
1272
  msgid "Preferences"
1273
  msgstr ""
1274
 
1275
+ #: ../settings.php:111
1276
  msgid "Drill down IP"
1277
  msgstr ""
1278
 
1279
+ #: ../settings.php:111
1280
  msgid "Retrieve extra WHOIS information for IP"
1281
  msgstr ""
1282
 
1283
+ #: ../settings.php:112
1284
  msgid "Date format"
1285
  msgstr ""
1286
 
1287
+ #: ../settings.php:112
1288
  #, php-format
1289
  msgid "if empty, the default format %s will be used"
1290
  msgstr ""
1291
 
1292
+ #: ../settings.php:119
1293
  msgid "Hardening WordPress"
1294
  msgstr ""
1295
 
1296
+ #: ../settings.php:120
1297
  msgid "Stop user enumeration"
1298
  msgstr ""
1299
 
1300
+ #: ../settings.php:120
1301
  msgid "Block access to user pages like /?author=n and user data via REST API"
1302
  msgstr ""
1303
 
1304
+ #: ../settings.php:121
1305
  msgid "Protect admin scripts"
1306
  msgstr ""
1307
 
1308
+ #: ../settings.php:121
1309
  msgid "Block unauthorized access to load-scripts.php and load-styles.php"
1310
  msgstr ""
1311
 
1312
+ #: ../settings.php:122
1313
  msgid "Disable XML-RPC"
1314
  msgstr ""
1315
 
1316
+ #: ../settings.php:122
1317
  msgid "Block access to the XML-RPC server (including Pingbacks and Trackbacks)"
1318
  msgstr ""
1319
 
1320
+ #: ../settings.php:123
1321
  msgid "Disable feeds"
1322
  msgstr ""
1323
 
1324
+ #: ../settings.php:123
1325
  msgid "Block access to the RSS, Atom and RDF feeds"
1326
  msgstr ""
1327
 
1328
+ #: ../settings.php:124
1329
  msgid "Disable REST API"
1330
  msgstr ""
1331
 
1332
+ #: ../settings.php:124
1333
  msgid "Block access to the WordPress REST API except the following"
1334
  msgstr ""
1335
 
1336
+ #: ../settings.php:125
1337
  msgid "Allow REST API for logged in users"
1338
  msgstr ""
1339
 
1340
+ #: ../settings.php:132
1341
  msgid ""
1342
  "Specify REST API namespaces to be allowed if REST API is disabled. One "
1343
  "string per line."
1344
  msgstr ""
1345
 
1346
+ #: ../settings.php:142
1347
  msgid "User related settings"
1348
  msgstr ""
1349
 
1350
+ #: ../settings.php:143
1351
  msgid "Registration limit"
1352
  msgstr ""
1353
 
1354
+ #: ../settings.php:144
1355
  msgid "Prohibited usernames"
1356
  msgstr ""
1357
 
1358
+ #: ../settings.php:150
1359
  msgid ""
1360
  "Usernames from this list are not allowed to log in or register. Any IP "
1361
  "address, have tried to use any of these usernames, will be immediately "
1362
  "blocked. Use comma to separate logins."
1363
  msgstr ""
1364
 
1365
+ #: ../settings.php:150
1366
  msgid "To specify a REGEX pattern wrap a pattern in two forward slashes."
1367
  msgstr ""
1368
 
1369
+ #: ../settings.php:152
1370
  msgid "User session expire"
1371
  msgstr ""
1372
 
1373
+ #: ../settings.php:152
1374
  msgid "in minutes (leave empty to use default WP value)"
1375
  msgstr ""
1376
 
1377
+ #: ../settings.php:153
1378
  msgid "Sort users in dashboard"
1379
  msgstr ""
1380
 
1381
+ #: ../settings.php:153
1382
  msgid "by date of registration"
1383
  msgstr ""
1384
 
1385
+ #: ../settings.php:160
1386
  msgid "Cerber antispam engine"
1387
  msgstr ""
1388
 
1389
+ #: ../settings.php:161
1390
  msgid "Comment form"
1391
  msgstr ""
1392
 
1393
+ #: ../settings.php:161
1394
  msgid "Protect comment form with bot detection engine"
1395
  msgstr ""
1396
 
1397
+ #: ../settings.php:162 ../settings.php:187
1398
  msgid "Registration form"
1399
  msgstr ""
1400
 
1401
+ #: ../settings.php:162
1402
  msgid "Protect registration form with bot detection engine"
1403
  msgstr ""
1404
 
1405
+ #: ../settings.php:163
1406
  msgid "Other forms"
1407
  msgstr ""
1408
 
1409
+ #: ../settings.php:163
1410
  msgid "Protect all forms on the website with bot detection engine"
1411
  msgstr ""
1412
 
1413
+ #: ../settings.php:165
1414
  msgid "Adjust antispam engine"
1415
  msgstr ""
1416
 
1417
+ #: ../settings.php:166
1418
  msgid "Safe mode"
1419
  msgstr ""
1420
 
1421
+ #: ../settings.php:166
1422
  msgid "Use less restrictive policies (allow AJAX)"
1423
  msgstr ""
1424
 
1425
+ #: ../settings.php:167
1426
  msgid "Disable bot detection engine for logged in users"
1427
  msgstr ""
1428
 
1429
+ #: ../settings.php:168
1430
  msgid "Query whitelist"
1431
  msgstr ""
1432
 
1433
+ #: ../settings.php:174
1434
  msgid ""
1435
  "Enter a part of query string or query path to exclude a request from "
1436
  "inspection by the engine. One item per line."
1437
  msgstr ""
1438
 
1439
+ #: ../settings.php:174 ../settings.php:273
1440
+ msgid "To specify a REGEX pattern, enclose a whole line in two braces."
1441
+ msgstr ""
1442
+
1443
+ #: ../settings.php:177
1444
  msgid "Comment processing"
1445
  msgstr ""
1446
 
1447
+ #: ../settings.php:178
1448
  msgid "If a spam comment detected"
1449
  msgstr ""
1450
 
1451
+ #: ../settings.php:178
1452
  msgid "Deny it completely"
1453
  msgstr ""
1454
 
1455
+ #: ../settings.php:178
1456
  msgid "Mark it as spam"
1457
  msgstr ""
1458
 
1459
+ #: ../settings.php:179
1460
  msgid "Trash spam comments"
1461
  msgstr ""
1462
 
1463
+ #: ../settings.php:179
1464
  msgid "Move spam comments to trash after"
1465
  msgstr ""
1466
 
1467
+ #: ../settings.php:182
1468
  msgid "reCAPTCHA settings"
1469
  msgstr ""
1470
 
1471
+ #: ../settings.php:183
1472
  msgid "Site key"
1473
  msgstr ""
1474
 
1475
+ #: ../settings.php:184
1476
  msgid "Secret key"
1477
  msgstr ""
1478
 
1479
+ #: ../settings.php:185
1480
  msgid "Invisible reCAPTCHA"
1481
  msgstr ""
1482
 
1483
+ #: ../settings.php:185
1484
  msgid "Enable invisible reCAPTCHA"
1485
  msgstr ""
1486
 
1487
+ #: ../settings.php:185
1488
  msgid ""
1489
  "(do not enable it unless you get and enter the Site and Secret keys for the "
1490
  "invisible version)"
1491
  msgstr ""
1492
 
1493
+ #: ../settings.php:187
1494
  msgid "Enable reCAPTCHA for WordPress registration form"
1495
  msgstr ""
1496
 
1497
+ #: ../settings.php:188
1498
  msgid "Enable reCAPTCHA for WooCommerce registration form"
1499
  msgstr ""
1500
 
1501
+ #: ../settings.php:190
1502
  msgid "Lost password form"
1503
  msgstr ""
1504
 
1505
+ #: ../settings.php:190
1506
  msgid "Enable reCAPTCHA for WordPress lost password form"
1507
  msgstr ""
1508
 
1509
+ #: ../settings.php:191
1510
  msgid "Enable reCAPTCHA for WooCommerce lost password form"
1511
  msgstr ""
1512
 
1513
+ #: ../settings.php:193
1514
  msgid "Login form"
1515
  msgstr ""
1516
 
1517
+ #: ../settings.php:193
1518
  msgid "Enable reCAPTCHA for WordPress login form"
1519
  msgstr ""
1520
 
1521
+ #: ../settings.php:194
1522
  msgid "Enable reCAPTCHA for WooCommerce login form"
1523
  msgstr ""
1524
 
1525
+ #: ../settings.php:196
1526
  msgid "Enable reCAPTCHA for WordPress comment form"
1527
  msgstr ""
1528
 
1529
+ #: ../settings.php:197
1530
  msgid "Disable reCAPTCHA for logged in users"
1531
  msgstr ""
1532
 
1533
+ #: ../settings.php:199
1534
  msgid "Limit attempts"
1535
  msgstr ""
1536
 
1537
+ #: ../settings.php:199
1538
  #, php-format
1539
  msgid "Lock out IP address for %s minutes after %s failed attempts within %s minutes"
1540
  msgstr ""
1541
 
1542
+ #: ../settings.php:205
1543
  msgid "Email notifications"
1544
  msgstr ""
1545
 
1546
+ #: ../settings.php:208 ../settings.php:243
1547
  msgid "Email Address"
1548
  msgstr ""
1549
 
1550
+ #: ../settings.php:212 ../settings.php:248 ../settings.php:305
1551
  msgid "Use comma to specify multiple values"
1552
  msgstr ""
1553
 
1554
+ #: ../settings.php:217
1555
  #, php-format
1556
  msgid "if empty, the admin email %s will be used"
1557
  msgstr ""
1558
 
1559
+ #: ../settings.php:220
1560
  msgid "Notification limit"
1561
  msgstr ""
1562
 
1563
+ #: ../settings.php:220
1564
  msgid "notification letters allowed per hour (0 means unlimited)"
1565
  msgstr ""
1566
 
1567
+ #: ../settings.php:226
1568
  msgid "Push notifications"
1569
  msgstr ""
1570
 
1571
+ #: ../settings.php:233
1572
  msgid "All connected devices"
1573
  msgstr ""
1574
 
1575
+ #: ../settings.php:234
1576
  msgid "No devices found"
1577
  msgstr ""
1578
 
1579
+ #: ../settings.php:236
1580
  msgid "Not available"
1581
  msgstr ""
1582
 
1583
+ #: ../settings.php:240
1584
  msgid "Weekly reports"
1585
  msgstr ""
1586
 
1587
+ #: ../settings.php:241
1588
  msgid "Enable reporting"
1589
  msgstr ""
1590
 
1591
+ #: ../settings.php:253
1592
  msgid "if empty, email from notification settings will be used"
1593
  msgstr ""
1594
 
1595
+ #: ../settings.php:261
1596
  msgid "Inspection"
1597
  msgstr ""
1598
 
1599
+ #: ../settings.php:262
1600
  msgid "Enable traffic inspection"
1601
  msgstr ""
1602
 
1603
+ #: ../settings.php:267
1604
  msgid "Request whitelist"
1605
  msgstr ""
1606
 
1607
+ #: ../settings.php:273
1608
  msgid ""
1609
  "Enter a request URI to exclude the request from inspection. One item per "
1610
  "line."
1611
  msgstr ""
1612
 
1613
+ #: ../settings.php:276
1614
  msgid "Logging"
1615
  msgstr ""
1616
 
1617
+ #: ../settings.php:277
1618
  msgid "Logging mode"
1619
  msgstr ""
1620
 
1621
+ #: ../settings.php:283
1622
  msgid "Logging disabled"
1623
  msgstr ""
1624
 
1625
+ #: ../settings.php:284
1626
  msgid "Smart"
1627
  msgstr ""
1628
 
1629
+ #: ../settings.php:285
1630
  msgid "All traffic"
1631
  msgstr ""
1632
 
1633
+ #: ../settings.php:289
1634
  msgid "Ignore crawlers"
1635
  msgstr ""
1636
 
1637
+ #: ../settings.php:294
1638
  msgid "Save request fields"
1639
  msgstr ""
1640
 
1641
+ #: ../settings.php:299
1642
  msgid "Mask these form fields"
1643
  msgstr ""
1644
 
1645
+ #: ../settings.php:310
1646
  msgid "Save request headers"
1647
  msgstr ""
1648
 
1649
+ #: ../settings.php:316
1650
  msgid "Save $_SERVER"
1651
  msgstr ""
1652
 
1653
+ #: ../settings.php:322
1654
  msgid "Save request cookies"
1655
  msgstr ""
1656
 
1657
+ #: ../settings.php:329
1658
  msgid "Page generation time threshold"
1659
  msgstr ""
1660
 
1661
+ #: ../settings.php:334
1662
  msgid "milliseconds"
1663
  msgstr ""
1664
 
1665
+ #: ../settings.php:351
1666
  msgid "Make your protection smarter!"
1667
  msgstr ""
1668
 
1669
+ #: ../settings.php:355
1670
  msgid ""
1671
  "Please enable Permalinks to use this feature. Set Permalink Settings to "
1672
  "something other than Default."
1673
  msgstr ""
1674
 
1675
+ #: ../settings.php:358
1676
  msgid ""
1677
  "Be careful when enabling this options. If you forget the custom login URL "
1678
  "you will not be able to login."
1679
  msgstr ""
1680
 
1681
+ #: ../settings.php:362
1682
  msgid ""
1683
  "In the Citadel mode nobody is able to log in except IPs from the White IP "
1684
  "Access List. Active user sessions will not be affected."
1685
  msgstr ""
1686
 
1687
+ #: ../settings.php:365
1688
  msgid "These settings do not affect hosts from the "
1689
  msgstr ""
1690
 
1691
+ #: ../settings.php:368
1692
  msgid ""
1693
  "Before you can start using reCAPTCHA, you have to obtain Site key and Secret "
1694
  "key on the Google website"
1695
  msgstr ""
1696
 
1697
+ #: ../settings.php:399
1698
  msgid "Lockouts"
1699
  msgstr ""
1700
 
1701
+ #: ../settings.php:408
1702
  msgid "Users"
1703
  msgstr ""
1704
 
1705
+ #: ../settings.php:520 ../settings.php:642
 
 
 
 
1706
  #, php-format
1707
  msgid "%s allowed retries in %s minutes"
1708
  msgstr ""
1709
 
1710
+ #: ../settings.php:525 ../settings.php:647
1711
  #, php-format
1712
  msgid "%s allowed registrations in %s minutes from one IP"
1713
  msgstr ""
1714
 
1715
+ #: ../settings.php:530 ../settings.php:652
1716
  #, php-format
1717
  msgid "Increase lockout duration to %s hours after %s lockouts in the last %s hours"
1718
  msgstr ""
1719
 
1720
+ #: ../settings.php:537 ../settings.php:659
1721
  msgid "Notify admin if the number of active lockouts above"
1722
  msgstr ""
1723
 
1724
+ #: ../settings.php:542 ../settings.php:664
1725
  #, php-format
1726
  msgid "Enable after %s failed login attempts in last %s minutes"
1727
  msgstr ""
1728
 
1729
+ #: ../settings.php:750
1730
  msgid "Sunday"
1731
  msgstr ""
1732
 
1733
+ #: ../settings.php:751
1734
  msgid "Monday"
1735
  msgstr ""
1736
 
1737
+ #: ../settings.php:752
1738
  msgid "Tuesday"
1739
  msgstr ""
1740
 
1741
+ #: ../settings.php:753
1742
  msgid "Wednesday"
1743
  msgstr ""
1744
 
1745
+ #: ../settings.php:754
1746
  msgid "Thursday"
1747
  msgstr ""
1748
 
1749
+ #: ../settings.php:755
1750
  msgid "Friday"
1751
  msgstr ""
1752
 
1753
+ #: ../settings.php:756
1754
  msgid "Saturday"
1755
  msgstr ""
1756
 
1757
  #. translators: preposition of time
1758
+ #: ../settings.php:766
1759
  msgctxt "preposition of time"
1760
  msgid "at"
1761
  msgstr ""
1762
 
1763
+ #: ../settings.php:782
1764
  msgid "Click to send now"
1765
  msgstr ""
1766
 
1767
+ #: ../settings.php:794
1768
  msgid "Plugin initialization mode has not been changed"
1769
  msgstr ""
1770
 
1771
+ #: ../settings.php:814 ../settings.php:815
1772
  msgid "Attention! You have changed the login URL! The new login URL is"
1773
  msgstr ""
1774
 
1775
+ #: ../settings.php:816 ../settings.php:817
1776
  msgid ""
1777
  "If you use a caching plugin, you have to add your new login URL to the list "
1778
  "of pages not to cache."
1779
  msgstr ""
1780
 
1781
+ #: ../settings.php:895 ../settings.php:907
1782
  msgid "<strong>ERROR</strong>: please enter a valid email address."
1783
  msgstr ""
1784
 
1794
  msgid "License"
1795
  msgstr ""
1796
 
1797
+ #: ../cerber-tools.php:88
1798
  msgid "Export settings to the file"
1799
  msgstr ""
1800
 
1801
+ #: ../cerber-tools.php:89
1802
  msgid ""
1803
  "When you click the button below you will get a configuration file, which you "
1804
  "can upload on another site."
1805
  msgstr ""
1806
 
1807
+ #: ../cerber-tools.php:90
1808
  msgid "What do you want to export?"
1809
  msgstr ""
1810
 
1811
+ #: ../cerber-tools.php:93
1812
  msgid "Download file"
1813
  msgstr ""
1814
 
1815
+ #: ../cerber-tools.php:95
1816
  msgid "Import settings from the file"
1817
  msgstr ""
1818
 
1819
+ #: ../cerber-tools.php:96
1820
  msgid ""
1821
  "When you click the button below, file will be uploaded and all existing "
1822
  "settings will be overridden."
1823
  msgstr ""
1824
 
1825
+ #: ../cerber-tools.php:97
1826
  msgid "Select file to import."
1827
  msgstr ""
1828
 
1829
+ #: ../cerber-tools.php:97
1830
  #, php-format
1831
  msgid "Maximum upload file size: %s."
1832
  msgstr ""
1833
 
1834
+ #: ../cerber-tools.php:100
1835
  msgid "What do you want to import?"
1836
  msgstr ""
1837
 
1838
+ #: ../cerber-tools.php:102
1839
  msgid "Upload file"
1840
  msgstr ""
1841
 
1842
+ #: ../cerber-tools.php:149
1843
  msgid "No file was uploaded or file is corrupted"
1844
  msgstr ""
1845
 
1846
+ #: ../cerber-tools.php:182
1847
  msgid "Error while updating"
1848
  msgstr ""
1849
 
1850
+ #: ../cerber-tools.php:185
1851
  msgid "Settings has imported successfully from"
1852
  msgstr ""
1853
 
1854
+ #: ../cerber-tools.php:189
1855
  msgid "Error while parsing file"
1856
  msgstr ""
1857
 
1858
+ #: ../cerber-tools.php:343
1859
  msgid "Antispam and bot detection settings"
1860
  msgstr ""
1861
 
modules/aaa-wp-cerber.php CHANGED
@@ -1,6 +1,5 @@
1
  <?php
2
  /*
3
- Plugin Name: WP Cerber boot module
4
  Plugin URI: https://wpcerber.com
5
  Description: 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>.
6
  Author: Gregory
1
  <?php
2
  /*
 
3
  Plugin URI: https://wpcerber.com
4
  Description: 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>.
5
  Author: Gregory
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: security, login, custom login url, antispam, limit login attempts, firewal
5
  Requires at least: 4.4
6
  Requires PHP: 5.3
7
  Tested up to: 4.9
8
- Stable tag: 6.5
9
  License: GPLv2
10
 
11
  Protection against hacker attacks and bots. Restrict access with IP access lists, track user and bot activity. reCAPTCHA. Limit login attempts.
@@ -287,6 +287,14 @@ To get access to your dashboard you need to copy the WP Cerber Reset folder to t
287
 
288
  == Changelog ==
289
 
 
 
 
 
 
 
 
 
290
  = 6.5 =
291
  * New: A new, advanced initialization mode which reinforces overall security performance.
292
  * New: Traffic Inspector's algorithms detect and deny any attempt to upload executable files or an .htaccess file via any POST request.
5
  Requires at least: 4.4
6
  Requires PHP: 5.3
7
  Tested up to: 4.9
8
+ Stable tag: 6.7
9
  License: GPLv2
10
 
11
  Protection against hacker attacks and bots. Restrict access with IP access lists, track user and bot activity. reCAPTCHA. Limit login attempts.
287
 
288
  == Changelog ==
289
 
290
+ = 6.7 =
291
+ * New: Regular expressions are now available for the Traffic Inspector Request whitelist and Antispam Query whitelist.
292
+ * Update: Antispam engine algorithms have been updated to improve AJAX requests handling and reduce false positives.
293
+ * Update: Improved compatibility with WooCommerce, Formidable Forms, Gravity Forms and AJAX file upload.
294
+ * Update: Any symbols other than letters, numbers, dashes and underscores are not permitted in Custom login URL anymore.
295
+ * Bug fixed: The Safe antispam mode doesn’t work correctly on some website configurations. That may lead to false positives and erroneous spam form submission detection.
296
+ * [Read more](https://wpcerber.com/wp-cerber-security-6-7/)
297
+
298
  = 6.5 =
299
  * New: A new, advanced initialization mode which reinforces overall security performance.
300
  * New: Traffic Inspector's algorithms detect and deny any attempt to upload executable files or an .htaccess file via any POST request.
settings.php CHANGED
@@ -86,7 +86,14 @@ function cerber_settings_init(){
86
  add_settings_field('page404',__('Display 404 page','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'proactive',array('group'=>$tab, 'option'=>'page404', 'type'=>'select', 'set' => array(__('Use 404 template from the active theme','wp-cerber'), __('Display simple 404 page','wp-cerber'))));
87
 
88
  add_settings_section('custom', __('Custom login page','wp-cerber'), 'cerber_sapi_section', 'cerber-' . $tab);
89
- add_settings_field('loginpath',__('Custom login URL','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'custom',array('group'=>$tab,'option'=>'loginpath','type'=>'text','label'=>__('must not overlap with the existing pages or posts slug','wp-cerber')));
 
 
 
 
 
 
 
90
  add_settings_field('loginnowp',__('Disable wp-login.php','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'custom',array('group'=>$tab,'option'=>'loginnowp','type'=>'checkbox','label'=>__('Block direct access to wp-login.php and return HTTP 404 Not Found Error','wp-cerber')));
91
 
92
  add_settings_section('citadel', __('Citadel mode','wp-cerber'), 'cerber_sapi_section', 'cerber-' . $tab);
@@ -122,7 +129,7 @@ function cerber_settings_init(){
122
  'type' => 'textarea',
123
  'delimiter' => "\n",
124
  'list' => true,
125
- 'label' => __( 'Specify REST API namespaces to be allowed if REST API is disabled. One string per line.', 'wp-cerber' )
126
  ) );
127
  //add_settings_field('hashauthor',__('Hide author usernames','wp-cerber'),'cerberus_field_show',CERBER_OPT_H,'hwp',array('group'=>$tab,'option'=>'hashauthor','type'=>'checkbox','label'=>__('Replace author username with hash for author pages and URLs','wp-cerber')));
128
  //add_settings_field('cleanhead',__('Clean up HEAD','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'hwp',array('group'=>$tab,'option'=>'cleanhead','type'=>'checkbox','label'=>__('Remove generator and version tags from HEAD section','wp-cerber')));
@@ -164,7 +171,7 @@ function cerber_settings_init(){
164
  'type' => 'textarea',
165
  'delimiter' => "\n",
166
  'list' => true,
167
- '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' )
168
  ) );
169
 
170
  add_settings_section('commproc', __('Comment processing','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_C);
@@ -263,7 +270,7 @@ function cerber_settings_init(){
263
  'type' => 'textarea',
264
  'delimiter' => "\n",
265
  'list' => true,
266
- 'label' => __( 'Enter a request URI to exclude the request from inspection. One item per line.', 'wp-cerber' ).' <a target="_blank" href="https://wpcerber.com/traffic-inspector-in-a-nutshell/">Know more</a>',
267
  ) );
268
 
269
  add_settings_section( 'tlog', __( 'Logging', 'wp-cerber' ), 'cerber_sapi_section', CERBER_OPT_T );
@@ -344,11 +351,11 @@ function cerber_sapi_section($args){
344
  _e('Make your protection smarter!','wp-cerber');
345
  break;
346
  case 'custom':
347
- if (!get_option('permalink_structure')) {
348
- echo '<span style="color:#DF0000;">'.__('Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default.','wp-cerber').'</span>';
349
  }
350
  else {
351
- _e('Be careful when enabling this options. If you forget the custom login URL you will not be able to login.','wp-cerber');
352
  }
353
  break;
354
  case 'citadel':
@@ -485,7 +492,7 @@ function cerberus_field_show($args){
485
  if ( isset( $settings[ $args['option'] ] ) ) {
486
  $value = $settings[ $args['option'] ];
487
  }
488
- if ( ( $args['option'] == 'loginnowp' || $args['option'] == 'loginpath' ) && ! get_option( 'permalink_structure' ) ) {
489
  $disabled = ' disabled="disabled" ';
490
  }
491
  if ( $args['option'] == 'loginpath' ) {
@@ -603,7 +610,7 @@ function cerber_field_show($args){
603
  $value = $settings[ $args['setting'] ];
604
  }
605
 
606
- if ( ( $args['setting'] == 'loginnowp' || $args['setting'] == 'loginpath' ) && ! get_option( 'permalink_structure' ) ) {
607
  $disabled = ' disabled="disabled" ';
608
  }
609
  if ( $args['setting'] == 'loginpath' ) {
@@ -676,7 +683,7 @@ function cerber_field_show($args){
676
  default:
677
  $size = '';
678
  $maxlength = '';
679
- $plh = '';
680
  if ( isset( $args['size'] ) ) {
681
  //$size = ' size="' . $args['size'] . '" maxlength="' . $args['size'] . '" ';
682
  $size = ' size="' . $args['size'] . '"';
@@ -688,9 +695,15 @@ function cerber_field_show($args){
688
  $maxlength = ' maxlength="' . $args['size'] . '" ';
689
  }
690
  if ( isset( $args['placeholder'] ) ) {
691
- $plh = ' placeholder="' . $args['placeholder'] . '"';
692
  }
693
- $html = $pre . '<input type="text" id="' . $args['setting'] . '" name="' . $name . '" value="' . $value . '"' . $disabled . $size . $maxlength . $plh . '/>';
 
 
 
 
 
 
694
  $html .= ' <label for="' . $args['setting'] . '">' . $label . '</label>';
695
  break;
696
  }
@@ -790,7 +803,7 @@ function cerber_sanitize_m($new, $old, $option) {
790
  $new['aglocks'] = absint( $new['aglocks'] );
791
  $new['aglast'] = absint( $new['aglast'] );
792
 
793
- if ( get_option( 'permalink_structure' ) ) {
794
  $new['loginpath'] = urlencode( str_replace( '/', '', $new['loginpath'] ) );
795
  $new['loginpath'] = sanitize_text_field($new['loginpath']);
796
  if ( $new['loginpath'] && $new['loginpath'] != $old['loginpath'] ) {
@@ -1226,18 +1239,18 @@ function cerber_get_defaults($field = null) {
1226
  */
1227
  function cerber_upgrade_options() {
1228
  // @since 4.4, migrating fields to a new option
1229
- $main = get_site_option( CERBER_OPT );
1230
- if (!empty($main['email']) || !empty($main['emailrate'])){
1231
- $new = get_site_option( CERBER_OPT_N, array() );
1232
- $new['email'] = $main['email'];
1233
- $new['emailrate'] = $main['emailrate'];
1234
- update_site_option( CERBER_OPT_N, $new );
1235
- // clean up old values
1236
- $main['email'] = '';
1237
- $main['emailrate'] = '';
1238
- update_site_option( CERBER_OPT, $main );
 
1239
  }
1240
-
1241
  // @since 5.7
1242
  // Upgrade options: add new settings (fields) with their default values
1243
  foreach ( cerber_get_defaults() as $option_name => $fields ) {
@@ -1285,22 +1298,26 @@ function cerber_save_options($options){
1285
  *
1286
  * @return array|bool|mixed
1287
  */
1288
- function cerber_get_options($option = '') {
1289
  $options = cerber_get_setting_list();
1290
  $united = array();
1291
  foreach ( $options as $opt ) {
1292
  $o = get_site_option( $opt );
1293
- if (!is_array($o)) continue;
 
 
1294
  $united = array_merge( $united, $o );
1295
  }
1296
  $options = $united;
1297
  if ( ! empty( $option ) ) {
1298
  if ( isset( $options[ $option ] ) ) {
1299
  return $options[ $option ];
1300
- } else {
 
1301
  return false;
1302
  }
1303
  }
 
1304
  return $options;
1305
  }
1306
 
86
  add_settings_field('page404',__('Display 404 page','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'proactive',array('group'=>$tab, 'option'=>'page404', 'type'=>'select', 'set' => array(__('Use 404 template from the active theme','wp-cerber'), __('Display simple 404 page','wp-cerber'))));
87
 
88
  add_settings_section('custom', __('Custom login page','wp-cerber'), 'cerber_sapi_section', 'cerber-' . $tab);
89
+ add_settings_field( 'loginpath', __( 'Custom login URL', 'wp-cerber' ), 'cerber_field_show', 'cerber-' . $tab, 'custom', array(
90
+ 'group' => $tab,
91
+ 'setting' => 'loginpath',
92
+ 'type' => 'text',
93
+ 'pattern' => '[a-zA-Z0-9\-_]{1,100}',
94
+ 'title' => __( 'Custom login URL may contain only letters, numbers, dashes and underscores', 'wp-cerber' ),
95
+ 'label' => __( 'must not overlap with the existing pages or posts slug', 'wp-cerber' )
96
+ ) );
97
  add_settings_field('loginnowp',__('Disable wp-login.php','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'custom',array('group'=>$tab,'option'=>'loginnowp','type'=>'checkbox','label'=>__('Block direct access to wp-login.php and return HTTP 404 Not Found Error','wp-cerber')));
98
 
99
  add_settings_section('citadel', __('Citadel mode','wp-cerber'), 'cerber_sapi_section', 'cerber-' . $tab);
129
  'type' => 'textarea',
130
  'delimiter' => "\n",
131
  'list' => true,
132
+ 'label' => __( 'Specify REST API namespaces to be allowed if REST API is disabled. One string per line.', 'wp-cerber' ) . ' <a target="_blank" href="https://wpcerber.com/restrict-access-to-wordpress-rest-api/">Read more</a>',
133
  ) );
134
  //add_settings_field('hashauthor',__('Hide author usernames','wp-cerber'),'cerberus_field_show',CERBER_OPT_H,'hwp',array('group'=>$tab,'option'=>'hashauthor','type'=>'checkbox','label'=>__('Replace author username with hash for author pages and URLs','wp-cerber')));
135
  //add_settings_field('cleanhead',__('Clean up HEAD','wp-cerber'),'cerberus_field_show','cerber-'.$tab,'hwp',array('group'=>$tab,'option'=>'cleanhead','type'=>'checkbox','label'=>__('Remove generator and version tags from HEAD section','wp-cerber')));
171
  'type' => 'textarea',
172
  'delimiter' => "\n",
173
  'list' => true,
174
+ '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>',
175
  ) );
176
 
177
  add_settings_section('commproc', __('Comment processing','wp-cerber'), 'cerber_sapi_section', CERBER_OPT_C);
270
  'type' => 'textarea',
271
  'delimiter' => "\n",
272
  'list' => true,
273
+ 'label' => __( 'Enter a request URI to exclude the request from inspection. One item per line.', 'wp-cerber' ) . ' ' . __( 'To specify a REGEX pattern, enclose a whole line in two braces.', 'wp-cerber' ) . ' <a target="_blank" href="https://wpcerber.com/traffic-inspector-in-a-nutshell/">Know more</a>',
274
  ) );
275
 
276
  add_settings_section( 'tlog', __( 'Logging', 'wp-cerber' ), 'cerber_sapi_section', CERBER_OPT_T );
351
  _e('Make your protection smarter!','wp-cerber');
352
  break;
353
  case 'custom':
354
+ if ( ! cerber_is_permalink_enabled() ) {
355
+ echo '<span style="color:#DF0000;">' . __( 'Please enable Permalinks to use this feature. Set Permalink Settings to something other than Default.', 'wp-cerber' ) . '</span>';
356
  }
357
  else {
358
+ _e( 'Be careful when enabling this options. If you forget the custom login URL you will not be able to login.', 'wp-cerber' );
359
  }
360
  break;
361
  case 'citadel':
492
  if ( isset( $settings[ $args['option'] ] ) ) {
493
  $value = $settings[ $args['option'] ];
494
  }
495
+ if ( ( $args['option'] == 'loginnowp' || $args['option'] == 'loginpath' ) && ! cerber_is_permalink_enabled() ) {
496
  $disabled = ' disabled="disabled" ';
497
  }
498
  if ( $args['option'] == 'loginpath' ) {
610
  $value = $settings[ $args['setting'] ];
611
  }
612
 
613
+ if ( ( $args['setting'] == 'loginnowp' || $args['setting'] == 'loginpath' ) && ! cerber_is_permalink_enabled() ) {
614
  $disabled = ' disabled="disabled" ';
615
  }
616
  if ( $args['setting'] == 'loginpath' ) {
683
  default:
684
  $size = '';
685
  $maxlength = '';
686
+ $attrs = '';
687
  if ( isset( $args['size'] ) ) {
688
  //$size = ' size="' . $args['size'] . '" maxlength="' . $args['size'] . '" ';
689
  $size = ' size="' . $args['size'] . '"';
695
  $maxlength = ' maxlength="' . $args['size'] . '" ';
696
  }
697
  if ( isset( $args['placeholder'] ) ) {
698
+ $attrs .= ' placeholder="' . $args['placeholder'] . '"';
699
  }
700
+ if ( isset( $args['pattern'] ) ) {
701
+ $attrs .= ' pattern="' . $args['pattern'] . '"';
702
+ }
703
+ if ( isset( $args['title'] ) ) {
704
+ $attrs .= ' title="' . $args['title'] . '"';
705
+ }
706
+ $html = $pre . '<input type="text" id="' . $args['setting'] . '" name="' . $name . '" value="' . $value . '"' . $disabled . $size . $maxlength . $attrs . '/>';
707
  $html .= ' <label for="' . $args['setting'] . '">' . $label . '</label>';
708
  break;
709
  }
803
  $new['aglocks'] = absint( $new['aglocks'] );
804
  $new['aglast'] = absint( $new['aglast'] );
805
 
806
+ if ( cerber_is_permalink_enabled() ) {
807
  $new['loginpath'] = urlencode( str_replace( '/', '', $new['loginpath'] ) );
808
  $new['loginpath'] = sanitize_text_field($new['loginpath']);
809
  if ( $new['loginpath'] && $new['loginpath'] != $old['loginpath'] ) {
1239
  */
1240
  function cerber_upgrade_options() {
1241
  // @since 4.4, migrating fields to a new option
1242
+ if ($main = get_site_option( CERBER_OPT )) {
1243
+ if ( ! empty( $main['email'] ) || ! empty( $main['emailrate'] ) ) {
1244
+ $new = get_site_option( CERBER_OPT_N, array() );
1245
+ $new['email'] = $main['email'];
1246
+ $new['emailrate'] = $main['emailrate'];
1247
+ update_site_option( CERBER_OPT_N, $new );
1248
+ // clean up old values
1249
+ $main['email'] = '';
1250
+ $main['emailrate'] = '';
1251
+ update_site_option( CERBER_OPT, $main );
1252
+ }
1253
  }
 
1254
  // @since 5.7
1255
  // Upgrade options: add new settings (fields) with their default values
1256
  foreach ( cerber_get_defaults() as $option_name => $fields ) {
1298
  *
1299
  * @return array|bool|mixed
1300
  */
1301
+ function cerber_get_options( $option = '' ) {
1302
  $options = cerber_get_setting_list();
1303
  $united = array();
1304
  foreach ( $options as $opt ) {
1305
  $o = get_site_option( $opt );
1306
+ if ( ! is_array( $o ) ) {
1307
+ continue;
1308
+ }
1309
  $united = array_merge( $united, $o );
1310
  }
1311
  $options = $united;
1312
  if ( ! empty( $option ) ) {
1313
  if ( isset( $options[ $option ] ) ) {
1314
  return $options[ $option ];
1315
+ }
1316
+ else {
1317
  return false;
1318
  }
1319
  }
1320
+
1321
  return $options;
1322
  }
1323
 
wp-cerber.php CHANGED
@@ -5,7 +5,7 @@
5
  Description: 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>.
6
  Author: Gregory
7
  Author URI: https://wpcerber.com
8
- Version: 6.5
9
  Text Domain: wp-cerber
10
  Domain Path: /languages
11
  Network: true
@@ -31,7 +31,7 @@
31
 
32
  */
33
 
34
- define( 'CERBER_VER', '6.5' );
35
 
36
  function cerber_plugin_file() {
37
  return __FILE__;
@@ -45,6 +45,9 @@ function cerber_plugin_data() {
45
  function cerber_plugin_dir_url() {
46
  return plugin_dir_url( __FILE__ );
47
  }
 
 
 
48
 
49
  require_once( dirname( __FILE__ ) . '/cerber-load.php' );
50
  cerber_init();
5
  Description: 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>.
6
  Author: Gregory
7
  Author URI: https://wpcerber.com
8
+ Version: 6.7
9
  Text Domain: wp-cerber
10
  Domain Path: /languages
11
  Network: true
31
 
32
  */
33
 
34
+ define( 'CERBER_VER', '6.7' );
35
 
36
  function cerber_plugin_file() {
37
  return __FILE__;
45
  function cerber_plugin_dir_url() {
46
  return plugin_dir_url( __FILE__ );
47
  }
48
+ function cerber_get_plugins_dir() {
49
+ return dirname( __FILE__ , 2 );
50
+ }
51
 
52
  require_once( dirname( __FILE__ ) . '/cerber-load.php' );
53
  cerber_init();