All In One WP Security & Firewall - Version 3.8.7

Version Description

  • Added an improvement for login lockdown feature - locked IP addresses will no longer be allowed to register.
  • Added a "view" link for each account in the pending registration approval table list.
  • Fixed 404 logging/lockout bug.
  • Added ability to permanently block IP addresses from the 404 event list for both bulk and single cases.
  • Added ability to do bulk temp blocking for IP addresses in 404 list.
  • Fixed a minor bug with validate_ip_list function.
Download this release

Release Info

Developer mra13
Plugin Icon 128x128 All In One WP Security & Firewall
Version 3.8.7
Comparing to
See all releases

Code changes from version 3.7.7 to 3.8.7

Files changed (45) hide show
  1. admin/general/wp-security-list-table.php +1 -1
  2. admin/wp-security-admin-init.php +3 -2
  3. admin/wp-security-brute-force-menu.php +85 -0
  4. admin/wp-security-dashboard-menu.php +10 -7
  5. admin/wp-security-database-menu.php +44 -36
  6. admin/wp-security-filescan-menu.php +13 -13
  7. admin/wp-security-filesystem-menu.php +2 -2
  8. admin/wp-security-firewall-menu.php +10 -8
  9. admin/wp-security-list-404.php +176 -94
  10. admin/wp-security-list-acct-activity.php +6 -2
  11. admin/wp-security-list-comment-spammer-ip.php +5 -2
  12. admin/wp-security-list-locked-ip.php +5 -2
  13. admin/wp-security-list-logged-in-users.php +15 -9
  14. admin/wp-security-list-login-fails.php +5 -2
  15. admin/wp-security-list-registered-users.php +11 -13
  16. admin/wp-security-misc-options-menu.php +56 -2
  17. admin/wp-security-settings-menu.php +120 -57
  18. admin/wp-security-spam-menu.php +66 -1
  19. classes/grade-system/wp-security-feature-item-manager.php +54 -0
  20. classes/wp-security-backup.php +29 -2
  21. classes/wp-security-captcha.php +5 -0
  22. classes/wp-security-configure-settings.php +27 -9
  23. classes/wp-security-cronjob-handler.php +9 -5
  24. classes/wp-security-deactivation-tasks.php +5 -45
  25. classes/wp-security-file-scan.php +80 -1
  26. classes/wp-security-general-init-tasks.php +114 -9
  27. classes/wp-security-installer.php +44 -6
  28. classes/wp-security-process-renamed-login-page.php +28 -0
  29. classes/wp-security-user-login.php +18 -4
  30. classes/wp-security-user-registration.php +19 -13
  31. classes/wp-security-utility-file.php +12 -0
  32. classes/wp-security-utility-htaccess.php +62 -15
  33. classes/wp-security-utility-ip-address.php +6 -5
  34. classes/wp-security-utility.php +49 -2
  35. classes/wp-security-wp-footer-content.php +45 -54
  36. classes/wp-security-wp-loaded-tasks.php +18 -11
  37. languages/aiowpsecurity-it_IT.mo +0 -0
  38. languages/aiowpsecurity-it_IT.po +1378 -571
  39. languages/aiowpsecurity-pt_BR.mo +0 -0
  40. languages/aiowpsecurity-pt_BR.po +56 -54
  41. languages/aiowpsecurity-ru_RU.mo +0 -0
  42. languages/aiowpsecurity-ru_RU.po +4194 -1092
  43. languages/aiowpsecurity-sv_SE.mo +0 -0
  44. languages/aiowpsecurity-sv_SE.po +5087 -0
  45. languages/aiowpsecurity.pot +1926 -856
admin/general/wp-security-list-table.php CHANGED
@@ -288,7 +288,7 @@ class AIOWPSecurity_List_Table
288
 
289
  echo "</select>\n";
290
 
291
- submit_button( __( 'Apply' ), 'action', false, false, array( 'id' => "doaction$two" ) );
292
  echo "\n";
293
  }
294
 
288
 
289
  echo "</select>\n";
290
 
291
+ submit_button( __( 'Apply' ), 'action', false, false, array( 'id' => "doaction$two", 'onClick' => 'return confirm("Are you sure you want to perform this bulk operation on the selected entries?")' ) );
292
  echo "\n";
293
  }
294
 
admin/wp-security-admin-init.php CHANGED
@@ -154,7 +154,8 @@ class AIOWPSecurity_Admin_Init
154
 
155
  if(isset($_REQUEST['aiowps_cookie_test']))
156
  {
157
- $cookie_val = AIOWPSecurity_Utility::get_cookie_value("aiowps_cookie_test");
 
158
  if(empty($cookie_val))
159
  {
160
  $aio_wp_security->configs->set_value('aiowps_cookie_test_success','');
@@ -175,7 +176,7 @@ class AIOWPSecurity_Admin_Init
175
  $aio_wp_security->debug_logger->log_debug("Nonce check failed on wp_config file save!",4);
176
  die("Nonce check failed on wp_config file save!");
177
  }
178
- $wp_config_path = ABSPATH . 'wp-config.php';
179
  $result = AIOWPSecurity_Utility_File::backup_and_rename_wp_config($wp_config_path); //Backup the wp_config.php file
180
  AIOWPSecurity_Utility_File::download_a_file_option1($wp_config_path, "wp-config-backup.txt");
181
  }
154
 
155
  if(isset($_REQUEST['aiowps_cookie_test']))
156
  {
157
+ $test_cookie = $aio_wp_security->configs->get_value('aiowps_cookie_brute_test');
158
+ $cookie_val = AIOWPSecurity_Utility::get_cookie_value($test_cookie);
159
  if(empty($cookie_val))
160
  {
161
  $aio_wp_security->configs->set_value('aiowps_cookie_test_success','');
176
  $aio_wp_security->debug_logger->log_debug("Nonce check failed on wp_config file save!",4);
177
  die("Nonce check failed on wp_config file save!");
178
  }
179
+ $wp_config_path = AIOWPSecurity_Utility_File::get_wp_config_file_path();
180
  $result = AIOWPSecurity_Utility_File::backup_and_rename_wp_config($wp_config_path); //Backup the wp_config.php file
181
  AIOWPSecurity_Utility_File::download_a_file_option1($wp_config_path, "wp-config-backup.txt");
182
  }
admin/wp-security-brute-force-menu.php CHANGED
@@ -12,6 +12,7 @@ class AIOWPSecurity_Brute_Force_Menu extends AIOWPSecurity_Admin_Menu
12
  'tab2' => 'render_tab2',
13
  'tab3' => 'render_tab3',
14
  'tab4' => 'render_tab4',
 
15
  );
16
 
17
  function __construct()
@@ -26,6 +27,7 @@ class AIOWPSecurity_Brute_Force_Menu extends AIOWPSecurity_Admin_Menu
26
  'tab2' => __('Cookie Based Brute Force Prevention', 'aiowpsecurity'),
27
  'tab3' => __('Login Captcha', 'aiowpsecurity'),
28
  'tab4' => __('Login Whitelist', 'aiowpsecurity'),
 
29
 
30
  );
31
  }
@@ -101,6 +103,8 @@ class AIOWPSecurity_Brute_Force_Menu extends AIOWPSecurity_Admin_Menu
101
  $aiowps_login_page_slug = sanitize_text_field($_POST['aiowps_login_page_slug']);
102
  if($aiowps_login_page_slug == 'wp-admin'){
103
  $error .= '<br />'.__('You cannot use the value "wp-admin" for your login page slug.','aiowpsecurity');
 
 
104
  }
105
  }
106
 
@@ -484,6 +488,7 @@ class AIOWPSecurity_Brute_Force_Menu extends AIOWPSecurity_Admin_Menu
484
  $random_20_digit_string = AIOWPSecurity_Utility::generate_alpha_numeric_random_string(20); //Generate random 20 char string for use during captcha encode/decode
485
  $aio_wp_security->configs->set_value('aiowps_captcha_secret_key', $random_20_digit_string);
486
  $aio_wp_security->configs->set_value('aiowps_enable_login_captcha',isset($_POST["aiowps_enable_login_captcha"])?'1':'');
 
487
  $aio_wp_security->configs->set_value('aiowps_enable_lost_password_captcha',isset($_POST["aiowps_enable_lost_password_captcha"])?'1':'');
488
  $aio_wp_security->configs->save_config();
489
 
@@ -523,6 +528,24 @@ class AIOWPSecurity_Brute_Force_Menu extends AIOWPSecurity_Admin_Menu
523
  </table>
524
  </div></div>
525
  <div class="postbox">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
526
  <h3><label for="title"><?php _e('Lost Password Form Captcha Settings', 'aiowpsecurity'); ?></label></h3>
527
  <div class="inside">
528
  <?php
@@ -680,5 +703,67 @@ class AIOWPSecurity_Brute_Force_Menu extends AIOWPSecurity_Admin_Menu
680
  </div></div>
681
  <?php
682
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
683
 
684
  } //end class
12
  'tab2' => 'render_tab2',
13
  'tab3' => 'render_tab3',
14
  'tab4' => 'render_tab4',
15
+ 'tab5' => 'render_tab5',
16
  );
17
 
18
  function __construct()
27
  'tab2' => __('Cookie Based Brute Force Prevention', 'aiowpsecurity'),
28
  'tab3' => __('Login Captcha', 'aiowpsecurity'),
29
  'tab4' => __('Login Whitelist', 'aiowpsecurity'),
30
+ 'tab5' => __('Honeypot', 'aiowpsecurity'),
31
 
32
  );
33
  }
103
  $aiowps_login_page_slug = sanitize_text_field($_POST['aiowps_login_page_slug']);
104
  if($aiowps_login_page_slug == 'wp-admin'){
105
  $error .= '<br />'.__('You cannot use the value "wp-admin" for your login page slug.','aiowpsecurity');
106
+ }elseif(preg_match('/[^a-z_\-0-9]/i', $aiowps_login_page_slug)){
107
+ $error .= '<br />'.__('You must alpha numeric characters for your login page slug.','aiowpsecurity');
108
  }
109
  }
110
 
488
  $random_20_digit_string = AIOWPSecurity_Utility::generate_alpha_numeric_random_string(20); //Generate random 20 char string for use during captcha encode/decode
489
  $aio_wp_security->configs->set_value('aiowps_captcha_secret_key', $random_20_digit_string);
490
  $aio_wp_security->configs->set_value('aiowps_enable_login_captcha',isset($_POST["aiowps_enable_login_captcha"])?'1':'');
491
+ $aio_wp_security->configs->set_value('aiowps_enable_custom_login_captcha',isset($_POST["aiowps_enable_custom_login_captcha"])?'1':'');
492
  $aio_wp_security->configs->set_value('aiowps_enable_lost_password_captcha',isset($_POST["aiowps_enable_lost_password_captcha"])?'1':'');
493
  $aio_wp_security->configs->save_config();
494
 
528
  </table>
529
  </div></div>
530
  <div class="postbox">
531
+ <h3><label for="title"><?php _e('Custom Login Form Captcha Settings', 'aiowpsecurity'); ?></label></h3>
532
+ <div class="inside">
533
+ <?php
534
+ //Display security info badge
535
+ global $aiowps_feature_mgr;
536
+ $aiowps_feature_mgr->output_feature_details_badge("custom-login-captcha");
537
+ ?>
538
+ <table class="form-table">
539
+ <tr valign="top">
540
+ <th scope="row"><?php _e('Enable Captcha On Custom Login Form', 'aiowpsecurity')?>:</th>
541
+ <td>
542
+ <input name="aiowps_enable_custom_login_captcha" type="checkbox"<?php if($aio_wp_security->configs->get_value('aiowps_enable_custom_login_captcha')=='1') echo ' checked="checked"'; ?> value="1"/>
543
+ <span class="description"><?php _e('Check this if you want to insert captcha on a custom login form generated by the following WP function: wp_login_form()', 'aiowpsecurity'); ?></span>
544
+ </td>
545
+ </tr>
546
+ </table>
547
+ </div></div>
548
+ <div class="postbox">
549
  <h3><label for="title"><?php _e('Lost Password Form Captcha Settings', 'aiowpsecurity'); ?></label></h3>
550
  <div class="inside">
551
  <?php
703
  </div></div>
704
  <?php
705
  }
706
+
707
+ function render_tab5()
708
+ {
709
+ global $aio_wp_security;
710
+ global $aiowps_feature_mgr;
711
+
712
+ if(isset($_POST['aiowpsec_save_honeypot_settings']))//Do form submission tasks
713
+ {
714
+ $error = '';
715
+ $nonce=$_REQUEST['_wpnonce'];
716
+ if (!wp_verify_nonce($nonce, 'aiowpsec-honeypot-settings-nonce'))
717
+ {
718
+ $aio_wp_security->debug_logger->log_debug("Nonce check failed on honeypot settings save!",4);
719
+ die("Nonce check failed on honeypot settings save!");
720
+ }
721
+
722
+ //Save all the form values to the options
723
+ $aio_wp_security->configs->set_value('aiowps_enable_login_honeypot',isset($_POST["aiowps_enable_login_honeypot"])?'1':'');
724
+ $aio_wp_security->configs->save_config();
725
+
726
+ //Recalculate points after the feature status/options have been altered
727
+ $aiowps_feature_mgr->check_feature_status_and_recalculate_points();
728
+
729
+ $this->show_msg_settings_updated();
730
+ }
731
+ ?>
732
+ <div class="aio_blue_box">
733
+ <?php
734
+ echo '<p>'.__('This feature allows you to add a special hidden "honeypot" field on the WordPress login page. This will only be visible to robots and not humans.', 'aiowpsecurity').'
735
+ <br />'.__('Since robots usually fill in every input field from a login form, they will also submit a value for the special hidden honeypot field.', 'aiowpsecurity').'
736
+ <br />'.__('The way honeypots work is that a hidden field is placed somewhere inside a form which only robots will submit. If that field contains a value when the form is submitted then a robot has most likely submitted the form and it is consquently dealt with.', 'aiowpsecurity').'
737
+ <br />'.__('Therefore, if the plugin detects that this field has a value when the login form is submitted, then the robot which is attempting to login to your site will be redirected to its localhost address - http://127.0.0.1.', 'aiowpsecurity').'
738
+ </p>';
739
+ ?>
740
+ </div>
741
+ <form action="" method="POST">
742
+ <div class="postbox">
743
+ <h3><label for="title"><?php _e('Login Form Honeypot Settings', 'aiowpsecurity'); ?></label></h3>
744
+ <div class="inside">
745
+ <?php
746
+ //Display security info badge
747
+ global $aiowps_feature_mgr;
748
+ $aiowps_feature_mgr->output_feature_details_badge("login-honeypot");
749
+ ?>
750
+
751
+ <?php wp_nonce_field('aiowpsec-honeypot-settings-nonce'); ?>
752
+ <table class="form-table">
753
+ <tr valign="top">
754
+ <th scope="row"><?php _e('Enable Honeypot On Login Page', 'aiowpsecurity')?>:</th>
755
+ <td>
756
+ <input name="aiowps_enable_login_honeypot" type="checkbox"<?php if($aio_wp_security->configs->get_value('aiowps_enable_login_honeypot')=='1') echo ' checked="checked"'; ?> value="1"/>
757
+ <span class="description"><?php _e('Check this if you want to enable the honeypot feature for the login page', 'aiowpsecurity'); ?></span>
758
+ </td>
759
+ </tr>
760
+ </table>
761
+ </div></div>
762
+
763
+ <input type="submit" name="aiowpsec_save_honeypot_settings" value="<?php _e('Save Settings', 'aiowpsecurity')?>" class="button-primary" />
764
+ </form>
765
+ <?php
766
+ }
767
+
768
 
769
  } //end class
admin/wp-security-dashboard-menu.php CHANGED
@@ -72,8 +72,8 @@ class AIOWPSecurity_Dashboard_Menu extends AIOWPSecurity_Admin_Menu
72
  function render_tab1()
73
  {
74
  echo '<div class="aio_grey_box">';
75
- echo '<p>'.__('For information, updates and documentation, please visit the','aiowpsecurity').' <a href="http://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin" target="_blank">'.__('AIO WP Security & Firewall Plugin','aiowpsecurity').'</a> '.__('Page','aiowpsecurity').'</p>';
76
- echo '<p><a href="http://www.tipsandtricks-hq.com/development-center" target="_blank">'.__('Follow us','aiowpsecurity').'</a> on '.__('Twitter, Google+ or via Email to stay up to date about the new security features of this plugin.','aiowpsecurity').'</p>';
77
  echo '</div>';
78
 
79
  echo "<script type='text/javascript' src='https://www.google.com/jsapi'></script>";//Include the google chart library
@@ -176,10 +176,10 @@ class AIOWPSecurity_Dashboard_Menu extends AIOWPSecurity_Admin_Menu
176
 
177
  <p><?php _e('We are working hard to make your WordPress site more secure. Please support us, here is how:', 'aiowpsecurity');?></p>
178
  <p>
179
- <a href="https://plus.google.com/102469783420435518783/" target="_blank">Follow us on Google+</a>
180
  </p>
181
  <p>
182
- <a href="http://twitter.com/intent/tweet?url=http://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin&text=I love the All In One WP Security and Firewall plugin!" target="_blank" class="aio_tweet_link">Post to Twitter</a>
183
  </p>
184
  <p>
185
  <a href="http://wordpress.org/support/view/plugin-reviews/all-in-one-wp-security-and-firewall/" target="_blank" class="aio_rate_us_link">Give us a Good Rating</a>
@@ -268,9 +268,12 @@ class AIOWPSecurity_Dashboard_Menu extends AIOWPSecurity_Admin_Menu
268
  $login_activity_table = AIOWPSEC_TBL_USER_LOGIN_ACTIVITY;
269
 
270
  /* -- Ordering parameters -- */
271
- //Parameters that are going to be used to order the result
272
- $orderby = !empty($_GET["orderby"]) ? mysql_real_escape_string($_GET["orderby"]) : 'login_date';
273
- $order = !empty($_GET["order"]) ? mysql_real_escape_string($_GET["order"]) : 'DESC';
 
 
 
274
 
275
  $data = $wpdb->get_results("SELECT * FROM $login_activity_table ORDER BY $orderby $order LIMIT 5", ARRAY_A); //Get the last 50 records
276
 
72
  function render_tab1()
73
  {
74
  echo '<div class="aio_grey_box">';
75
+ echo '<p>'.__('For information, updates and documentation, please visit the','aiowpsecurity').' <a href="https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin" target="_blank">'.__('AIO WP Security & Firewall Plugin','aiowpsecurity').'</a> '.__('Page','aiowpsecurity').'</p>';
76
+ echo '<p><a href="https://www.tipsandtricks-hq.com/development-center" target="_blank">'.__('Follow us','aiowpsecurity').'</a> on '.__('Twitter, Google+ or via Email to stay up to date about the new security features of this plugin.','aiowpsecurity').'</p>';
77
  echo '</div>';
78
 
79
  echo "<script type='text/javascript' src='https://www.google.com/jsapi'></script>";//Include the google chart library
176
 
177
  <p><?php _e('We are working hard to make your WordPress site more secure. Please support us, here is how:', 'aiowpsecurity');?></p>
178
  <p>
179
+ <a href="https://plus.google.com/+Tipsandtricks-hq/" target="_blank">Follow us on Google+</a>
180
  </p>
181
  <p>
182
+ <a href="http://twitter.com/intent/tweet?url=https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin&text=I love the All In One WP Security and Firewall plugin!" target="_blank" class="aio_tweet_link">Post to Twitter</a>
183
  </p>
184
  <p>
185
  <a href="http://wordpress.org/support/view/plugin-reviews/all-in-one-wp-security-and-firewall/" target="_blank" class="aio_rate_us_link">Give us a Good Rating</a>
268
  $login_activity_table = AIOWPSEC_TBL_USER_LOGIN_ACTIVITY;
269
 
270
  /* -- Ordering parameters -- */
271
+ //Parameters that are going to be used to order the result
272
+ isset($_GET["orderby"]) ? $orderby = strip_tags($_GET["orderby"]): $orderby = '';
273
+ isset($_GET["order"]) ? $order = strip_tags($_GET["order"]): $order = '';
274
+
275
+ $orderby = !empty($orderby) ? mysql_real_escape_string($orderby) : 'login_date';
276
+ $order = !empty($order) ? mysql_real_escape_string($order) : 'DESC';
277
 
278
  $data = $wpdb->get_results("SELECT * FROM $login_activity_table ORDER BY $orderby $order LIMIT 5", ARRAY_A); //Get the last 50 records
279
 
admin/wp-security-database-menu.php CHANGED
@@ -94,7 +94,7 @@ class AIOWPSecurity_Database_Menu extends AIOWPSecurity_Admin_Menu
94
  }
95
 
96
  //Let's first check if user's system allows writing to wp-config.php file. If plugin cannot write to wp-config we will not do the prefix change.
97
- $config_file = ABSPATH.'wp-config.php';
98
  $file_write = AIOWPSecurity_Utility_File::is_file_writable($config_file);
99
  if (!$file_write)
100
  {
@@ -367,16 +367,16 @@ class AIOWPSecurity_Database_Menu extends AIOWPSecurity_Admin_Menu
367
  {
368
  global $wpdb, $aio_wp_security;
369
  $old_prefix_length = strlen( $table_old_prefix );
 
370
 
371
  //Config file path
372
- $config_file = ABSPATH.'wp-config.php';
373
 
374
  //Get the table resource
375
  //$result = mysql_list_tables(DB_NAME);
376
  $result = $this->get_mysql_tables(DB_NAME); //Fix for deprecated php mysql_list_tables function
377
 
378
  //Count the number of tables
379
- //$num_rows = mysql_num_rows( $result );
380
  if (is_array($result) && count($result) > 0){
381
  $num_rows = count($result);
382
  }else{
@@ -384,7 +384,6 @@ class AIOWPSecurity_Database_Menu extends AIOWPSecurity_Admin_Menu
384
  return;
385
  }
386
  $table_count = 0;
387
- //TODO - after reading up on internationalization mixed with html code I found that the WP experts say to do it as below. We will need to clean up other areas where we haven't used the following convention
388
  $info_msg_string = '<p class="aio_info_with_icon">'.__('Starting DB prefix change operations.....', 'aiowpsecurity').'</p>';
389
 
390
  $info_msg_string .= '<p class="aio_info_with_icon">'.sprintf( __('Your WordPress system has a total of %s tables and your new DB prefix will be: %s', 'aiowpsecurity'), '<strong>'.$num_rows.'</strong>', '<strong>'.$table_new_prefix.'</strong>').'</p>';
@@ -429,7 +428,7 @@ class AIOWPSecurity_Database_Menu extends AIOWPSecurity_Admin_Menu
429
  continue;
430
  }
431
  }
432
- if ( @$error == 1 )
433
  {
434
  echo '<p class="aio_error_with_icon">'.sprintf( __('Please change the prefix manually for the above tables to: %s', 'aiowpsecurity'), '<strong>'.$table_new_prefix.'</strong>').'</p>';
435
  } else
@@ -466,20 +465,39 @@ class AIOWPSecurity_Database_Menu extends AIOWPSecurity_Admin_Menu
466
 
467
  if ( false === $wpdb->query($update_option_table_query) )
468
  {
469
- echo "<p class='error'>Changing value: ",
470
- $table_old_prefix,
471
- "user_roles in table ",
472
- $table_new_prefix,
473
- "options to ",
474
- $table_new_prefix,
475
- "user_roles</p>";
476
-
477
- echo '<p class="aio_error_with_icon">'.sprintf( __('There was an error when updating the options table.', 'aiowpsecurity')).'</p>';
478
  $aio_wp_security->debug_logger->log_debug("DB Security Feature - Error when updating the options table",4);//Log the highly unlikely event of DB error
479
  } else
480
  {
481
  echo '<p class="aio_success_with_icon">'.sprintf( __('The options table records which had references to the old DB prefix were updated successfully!', 'aiowpsecurity')).'</p>';
482
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
483
  //Now let's update the user meta table
484
  $custom_sql = "SELECT user_id, meta_key
485
  FROM " . $table_new_prefix . "usermeta
@@ -492,22 +510,20 @@ class AIOWPSecurity_Database_Menu extends AIOWPSecurity_Admin_Menu
492
 
493
  //Update all meta_key field values which have the old table prefix in user_meta table
494
  foreach ($meta_keys as $meta_key ) {
 
 
495
 
496
- //Create new meta key
497
- $new_meta_key = $table_new_prefix . substr( $meta_key->meta_key, $old_prefix_length );
498
-
499
- $update_user_meta_sql = "UPDATE " . $table_new_prefix . "usermeta
500
- SET meta_key='" . $new_meta_key . "'
501
- WHERE meta_key='" . $meta_key->meta_key . "'
502
- AND user_id='" . $meta_key->user_id."'";
503
-
504
- if (false === $wpdb->query($update_user_meta_sql))
505
- {
506
- $error_update_usermeta .= '<p class="aio_error_with_icon">'.sprintf( __('Error updating user_meta table where new meta_key = %s, old meta_key = %s and user_id = %s.', 'aiowpsecurity'),$new_meta_key,$meta_key->meta_key,$meta_key->user_id).'</p>';
507
- echo $error_update_usermeta;
508
- $aio_wp_security->debug_logger->log_debug("DB Security Feature - Error updating user_meta table where new meta_key = ".$new_meta_key." old meta_key = ".$meta_key->meta_key." and user_id = ".$meta_key->user_id,4);//Log the highly unlikely event of DB error
509
- }
510
 
 
 
 
 
 
 
511
  }
512
  echo '<p class="aio_success_with_icon">'.__('The usermeta table records which had references to the old DB prefix were updated successfully!', 'aiowpsecurity').'</p>';
513
  //Display tasks finished message
@@ -532,20 +548,12 @@ class AIOWPSecurity_Database_Menu extends AIOWPSecurity_Admin_Menu
532
  }
533
 
534
  if ($result = $mysqli->query($list_tables_sql, MYSQLI_USE_RESULT)) {
535
- //$temp = $result->fetch_all();
536
-
537
  //Alternative way to get the tables
538
  while ($row = $result->fetch_assoc()) {
539
  foreach( $row AS $value ) {
540
  $tables[] = $value;
541
  }
542
- //var_dump($row);
543
- //$key = 'Tables_in_'.$database;
544
-
545
  }
546
- // foreach($temp as $res){
547
- // $tables[] = $res[0];
548
- // }
549
  $result->close();
550
  }
551
  $mysqli->close();
94
  }
95
 
96
  //Let's first check if user's system allows writing to wp-config.php file. If plugin cannot write to wp-config we will not do the prefix change.
97
+ $config_file = AIOWPSecurity_Utility_File::get_wp_config_file_path();
98
  $file_write = AIOWPSecurity_Utility_File::is_file_writable($config_file);
99
  if (!$file_write)
100
  {
367
  {
368
  global $wpdb, $aio_wp_security;
369
  $old_prefix_length = strlen( $table_old_prefix );
370
+ $error = 0;
371
 
372
  //Config file path
373
+ $config_file = AIOWPSecurity_Utility_File::get_wp_config_file_path();
374
 
375
  //Get the table resource
376
  //$result = mysql_list_tables(DB_NAME);
377
  $result = $this->get_mysql_tables(DB_NAME); //Fix for deprecated php mysql_list_tables function
378
 
379
  //Count the number of tables
 
380
  if (is_array($result) && count($result) > 0){
381
  $num_rows = count($result);
382
  }else{
384
  return;
385
  }
386
  $table_count = 0;
 
387
  $info_msg_string = '<p class="aio_info_with_icon">'.__('Starting DB prefix change operations.....', 'aiowpsecurity').'</p>';
388
 
389
  $info_msg_string .= '<p class="aio_info_with_icon">'.sprintf( __('Your WordPress system has a total of %s tables and your new DB prefix will be: %s', 'aiowpsecurity'), '<strong>'.$num_rows.'</strong>', '<strong>'.$table_new_prefix.'</strong>').'</p>';
428
  continue;
429
  }
430
  }
431
+ if ( $error == 1 )
432
  {
433
  echo '<p class="aio_error_with_icon">'.sprintf( __('Please change the prefix manually for the above tables to: %s', 'aiowpsecurity'), '<strong>'.$table_new_prefix.'</strong>').'</p>';
434
  } else
465
 
466
  if ( false === $wpdb->query($update_option_table_query) )
467
  {
468
+ echo '<p class="aio_error_with_icon">'.sprintf( __('Update of table %s failed: unable to change %s to %s', 'aiowpsecurity'),$table_new_prefix.'options', $table_old_prefix.'user_roles', $table_new_prefix.'user_roles').'</p>';
 
 
 
 
 
 
 
 
469
  $aio_wp_security->debug_logger->log_debug("DB Security Feature - Error when updating the options table",4);//Log the highly unlikely event of DB error
470
  } else
471
  {
472
  echo '<p class="aio_success_with_icon">'.sprintf( __('The options table records which had references to the old DB prefix were updated successfully!', 'aiowpsecurity')).'</p>';
473
  }
474
+
475
+ //Now let's update the options tables for the multisite subsites if applicable
476
+ if (AIOWPSecurity_Utility::is_multisite_install()) {
477
+ $blog_ids = AIOWPSecurity_Utility::get_blog_ids();
478
+
479
+ if(!empty($blog_ids)){
480
+ foreach ($blog_ids as $blog_id) {
481
+ if ($blog_id == 1){continue;} //skip main site
482
+ $new_pref_and_site_id = $table_new_prefix.$blog_id.'_';
483
+ $old_pref_and_site_id = $table_old_prefix.$blog_id.'_';
484
+ $update_ms_option_table_query = "UPDATE " . $new_pref_and_site_id . "options
485
+ SET option_name = '".$new_pref_and_site_id."user_roles'
486
+ WHERE option_name = '".$old_pref_and_site_id."user_roles'
487
+ LIMIT 1";
488
+ if ( false === $wpdb->query($update_ms_option_table_query) )
489
+ {
490
+ echo '<p class="aio_error_with_icon">'.sprintf( __('Update of table %s failed: unable to change %s to %s', 'aiowpsecurity'),$new_pref_and_site_id.'options', $old_pref_and_site_id.'user_roles', $new_pref_and_site_id.'user_roles').'</p>';
491
+ $aio_wp_security->debug_logger->log_debug("DB change prefix feature - Error when updating the subsite options table: ".$new_pref_and_site_id.'options',4);//Log the highly unlikely event of DB error
492
+ } else
493
+ {
494
+ echo '<p class="aio_success_with_icon">'.sprintf( __('The %s table records which had references to the old DB prefix were updated successfully!', 'aiowpsecurity'),$new_pref_and_site_id.'options').'</p>';
495
+ }
496
+ }
497
+
498
+ }
499
+ }
500
+
501
  //Now let's update the user meta table
502
  $custom_sql = "SELECT user_id, meta_key
503
  FROM " . $table_new_prefix . "usermeta
510
 
511
  //Update all meta_key field values which have the old table prefix in user_meta table
512
  foreach ($meta_keys as $meta_key ) {
513
+ //Create new meta key
514
+ $new_meta_key = $table_new_prefix . substr( $meta_key->meta_key, $old_prefix_length );
515
 
516
+ $update_user_meta_sql = "UPDATE " . $table_new_prefix . "usermeta
517
+ SET meta_key='" . $new_meta_key . "'
518
+ WHERE meta_key='" . $meta_key->meta_key . "'
519
+ AND user_id='" . $meta_key->user_id."'";
 
 
 
 
 
 
 
 
 
 
520
 
521
+ if (false === $wpdb->query($update_user_meta_sql))
522
+ {
523
+ $error_update_usermeta .= '<p class="aio_error_with_icon">'.sprintf( __('Error updating user_meta table where new meta_key = %s, old meta_key = %s and user_id = %s.', 'aiowpsecurity'),$new_meta_key,$meta_key->meta_key,$meta_key->user_id).'</p>';
524
+ echo $error_update_usermeta;
525
+ $aio_wp_security->debug_logger->log_debug("DB Security Feature - Error updating user_meta table where new meta_key = ".$new_meta_key." old meta_key = ".$meta_key->meta_key." and user_id = ".$meta_key->user_id,4);//Log the highly unlikely event of DB error
526
+ }
527
  }
528
  echo '<p class="aio_success_with_icon">'.__('The usermeta table records which had references to the old DB prefix were updated successfully!', 'aiowpsecurity').'</p>';
529
  //Display tasks finished message
548
  }
549
 
550
  if ($result = $mysqli->query($list_tables_sql, MYSQLI_USE_RESULT)) {
 
 
551
  //Alternative way to get the tables
552
  while ($row = $result->fetch_assoc()) {
553
  foreach( $row AS $value ) {
554
  $tables[] = $value;
555
  }
 
 
 
556
  }
 
 
 
557
  $result->close();
558
  }
559
  $mysqli->close();
admin/wp-security-filescan-menu.php CHANGED
@@ -342,7 +342,7 @@ class AIOWPSecurity_Filescan_Menu extends AIOWPSecurity_Admin_Menu
342
  <?php
343
  echo '<h2>'.__('What is Malware?', 'aiowpsecurity').'</h2>';
344
  echo '<p>'.__('The word Malware stands for Malicious Software. It can consist of things like trojan horses, adware, worms, spyware and any other undesirable code which a hacker will try to inject into your website.', 'aiowpsecurity').'</p>'.
345
- '<p>'.__('Often when malware code has been inserted into your site you will normally not notice anything out of the ordinary based on appearances, but it can have a dramatic effect on your sites search ranking.', 'aiowpsecurity').'</p>'.
346
  '<p>'.__('This is because the bots and spiders from search engines such as Google have the capability to detect malware when they are indexing the pages on your site, and consequently they can blacklist your website which will in turn affect your search rankings.', 'aiowpsecurity').'</p>';
347
 
348
  $site_scanners_link = '<a href="http://www.site-scanners.com" target="_blank">CLICK HERE</a>';
@@ -370,6 +370,16 @@ class AIOWPSecurity_Filescan_Menu extends AIOWPSecurity_Admin_Menu
370
 
371
  function render_tab3()
372
  {
 
 
 
 
 
 
 
 
 
 
373
  global $wpdb, $aio_wp_security;
374
  $perform_db_scan = false;
375
  if (isset($_POST['aiowps_manual_db_scan']))
@@ -432,19 +442,9 @@ class AIOWPSecurity_Filescan_Menu extends AIOWPSecurity_Admin_Menu
432
  */
433
  function display_last_scan_results()
434
  {
435
- global $wpdb, $aio_wp_security;
436
- //Let's get the results array from the DB
437
- $query = "SELECT * FROM ".AIOWPSEC_TBL_GLOBAL_META_DATA." WHERE meta_key1='file_change_detection'";
438
- $scan_db_data = $wpdb->get_row($query, ARRAY_A);
439
- if ($scan_db_data === NULL)
440
  {
441
- $aio_wp_security->debug_logger->log_debug("display_last_scan_results() - DB query for scan results data from global meta table returned NULL!",4);
442
- return FALSE;
443
- }
444
- $date_last_scan = $scan_db_data['date_time'];
445
- $scan_results_unserialized = maybe_unserialize($scan_db_data['meta_value5']);
446
- if (empty($scan_results_unserialized['files_added']) && empty($scan_results_unserialized['files_removed']) && empty($scan_results_unserialized['files_changed'])){
447
- //No file change detected
448
  return FALSE;
449
  }
450
  ?>
342
  <?php
343
  echo '<h2>'.__('What is Malware?', 'aiowpsecurity').'</h2>';
344
  echo '<p>'.__('The word Malware stands for Malicious Software. It can consist of things like trojan horses, adware, worms, spyware and any other undesirable code which a hacker will try to inject into your website.', 'aiowpsecurity').'</p>'.
345
+ '<p>'.__('Often when malware code has been inserted into your site you will normally not notice anything out of the ordinary based on appearances, but it can have a dramatic effect on your site\'s search ranking.', 'aiowpsecurity').'</p>'.
346
  '<p>'.__('This is because the bots and spiders from search engines such as Google have the capability to detect malware when they are indexing the pages on your site, and consequently they can blacklist your website which will in turn affect your search rankings.', 'aiowpsecurity').'</p>';
347
 
348
  $site_scanners_link = '<a href="http://www.site-scanners.com" target="_blank">CLICK HERE</a>';
370
 
371
  function render_tab3()
372
  {
373
+ echo '<div class="aio_blue_box">';
374
+ echo '<p>'.__('This feature performs a basic database scan which will look for any common suspicious-looking strings and javascript and html code in some of the Wordpress core tables.', 'aiowpsecurity');
375
+ echo '</div>';
376
+
377
+ echo '<div class="aio_yellow_box">';
378
+ echo '<p>This feature can give you false positive result. We have temporarily deactivated this feature to make sure you don\'t lose some data on a false positive. We will re-introduced this feature after we rework it.</p>';
379
+ echo '</div>';
380
+
381
+ return;//This feature is temporarily deactivated while we re-work the interface
382
+
383
  global $wpdb, $aio_wp_security;
384
  $perform_db_scan = false;
385
  if (isset($_POST['aiowps_manual_db_scan']))
442
  */
443
  function display_last_scan_results()
444
  {
445
+ $scan_results_unserialized = AIOWPSecurity_Scan::get_file_change_data();
446
+ if (!$scan_results_unserialized)
 
 
 
447
  {
 
 
 
 
 
 
 
448
  return FALSE;
449
  }
450
  ?>
admin/wp-security-filesystem-menu.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
-
3
  class AIOWPSecurity_Filesystem_Menu extends AIOWPSecurity_Admin_Menu
4
  {
5
  var $menu_page_slug = AIOWPSEC_FILESYSTEM_MENU_SLUG;
@@ -345,7 +345,7 @@ class AIOWPSecurity_Filesystem_Menu extends AIOWPSecurity_Admin_Menu
345
  <form action="" method="POST">
346
  <?php wp_nonce_field('aiowpsec-view-system-logs-nonce'); ?>
347
  <div><?php _e('Enter System Log File Name', 'aiowpsecurity')?>:
348
- <input type="text" size="25" name="aiowps_system_log_file" value="<?php echo $sys_log_file; ?>" />
349
  <span class="description"><?php _e('Enter your system log file name. (Defaults to error_log)', 'aiowpsecurity'); ?></span>
350
  </div>
351
  <div class="aio_spacer_15"></div>
1
  <?php
2
+ if ( !defined( 'ABSPATH' ) ) { exit; } // Prevent direct access to file
3
  class AIOWPSecurity_Filesystem_Menu extends AIOWPSecurity_Admin_Menu
4
  {
5
  var $menu_page_slug = AIOWPSEC_FILESYSTEM_MENU_SLUG;
345
  <form action="" method="POST">
346
  <?php wp_nonce_field('aiowpsec-view-system-logs-nonce'); ?>
347
  <div><?php _e('Enter System Log File Name', 'aiowpsecurity')?>:
348
+ <input type="text" size="25" name="aiowps_system_log_file" value="<?php echo sanitize_text_field($sys_log_file); ?>" />
349
  <span class="description"><?php _e('Enter your system log file name. (Defaults to error_log)', 'aiowpsecurity'); ?></span>
350
  </div>
351
  <div class="aio_spacer_15"></div>
admin/wp-security-firewall-menu.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
-
3
  class AIOWPSecurity_Firewall_Menu extends AIOWPSecurity_Admin_Menu
4
  {
5
  var $menu_page_slug = AIOWPSEC_FIREWALL_MENU_SLUG;
@@ -746,9 +746,7 @@ class AIOWPSecurity_Firewall_Menu extends AIOWPSecurity_Admin_Menu
746
  die("Nonce check failed on 404 detection options save!");
747
  }
748
 
749
- /*** Currently the aiowps_enable_404_IP_lockout option is automatically enabled when the aiowps_enable_404_IP_lockout option is enabled. ***/
750
- //$aio_wp_security->configs->set_value('aiowps_enable_404_logging',isset($_POST["aiowps_enable_404_logging"])?'1':'');
751
- $aio_wp_security->configs->set_value('aiowps_enable_404_logging',isset($_POST["aiowps_enable_404_IP_lockout"])?'1':'');
752
  $aio_wp_security->configs->set_value('aiowps_enable_404_IP_lockout',isset($_POST["aiowps_enable_404_IP_lockout"])?'1':'');
753
 
754
  $lockout_time_length = isset($_POST['aiowps_404_lockout_time_length'])?sanitize_text_field($_POST['aiowps_404_lockout_time_length']):'';
@@ -783,8 +781,11 @@ class AIOWPSecurity_Firewall_Menu extends AIOWPSecurity_Admin_Menu
783
  if(isset($_REQUEST['action'])) //Do list table form row action tasks
784
  {
785
  if($_REQUEST['action'] == 'temp_block'){ //Temp Block link was clicked for a row in list table
786
- $username = isset($_REQUEST['username'])?strip_tags($_REQUEST['ip_address']):'';
787
- $event_list_404->block_ip(strip_tags($_REQUEST['ip_address']), $username);
 
 
 
788
  }
789
 
790
  if($_REQUEST['action'] == 'delete_event_log'){ //Unlock link was clicked for a row in list table
@@ -858,7 +859,7 @@ class AIOWPSecurity_Firewall_Menu extends AIOWPSecurity_Admin_Menu
858
  </tr>
859
  <tr valign="top">
860
  <th scope="row"><?php _e('404 Lockout Redirect URL', 'aiowpsecurity')?>:</th>
861
- <td><input type="text" size="50" name="aiowps_404_lock_redirect_url" value="<?php echo $aio_wp_security->configs->get_value('aiowps_404_lock_redirect_url'); ?>" />
862
  <span class="description"><?php _e('A blocked visitor will be automatically redirected to this URL.', 'aiowpsecurity'); ?></span>
863
  </td>
864
  </tr>
@@ -875,9 +876,10 @@ class AIOWPSecurity_Firewall_Menu extends AIOWPSecurity_Admin_Menu
875
  $event_list_404->prepare_items();
876
  //echo "put table of locked entries here";
877
  ?>
878
- <form id="tables-filter" method="get" onSubmit="return confirm('Are you sure you want to perform this bulk operation on the selected entries?');">
879
  <!-- For plugins, we also need to ensure that the form posts back to our current page -->
880
  <input type="hidden" name="page" value="<?php echo $_REQUEST['page']; ?>" />
 
881
  <?php
882
  if(isset($_REQUEST["tab"]))
883
  {
1
  <?php
2
+ if ( !defined( 'ABSPATH' ) ) { exit; } // Prevent direct access to file
3
  class AIOWPSecurity_Firewall_Menu extends AIOWPSecurity_Admin_Menu
4
  {
5
  var $menu_page_slug = AIOWPSEC_FIREWALL_MENU_SLUG;
746
  die("Nonce check failed on 404 detection options save!");
747
  }
748
 
749
+ $aio_wp_security->configs->set_value('aiowps_enable_404_logging',isset($_POST["aiowps_enable_404_IP_lockout"])?'1':''); //the "aiowps_enable_404_IP_lockout" checkbox currently controls both the 404 lockout and 404 logging
 
 
750
  $aio_wp_security->configs->set_value('aiowps_enable_404_IP_lockout',isset($_POST["aiowps_enable_404_IP_lockout"])?'1':'');
751
 
752
  $lockout_time_length = isset($_POST['aiowps_404_lockout_time_length'])?sanitize_text_field($_POST['aiowps_404_lockout_time_length']):'';
781
  if(isset($_REQUEST['action'])) //Do list table form row action tasks
782
  {
783
  if($_REQUEST['action'] == 'temp_block'){ //Temp Block link was clicked for a row in list table
784
+ $event_list_404->block_ip(strip_tags($_REQUEST['ip_address']));
785
+ }
786
+
787
+ if($_REQUEST['action'] == 'blacklist_ip'){ //Blacklist IP link was clicked for a row in list table
788
+ $event_list_404->blacklist_ip_address(strip_tags($_REQUEST['ip_address']));
789
  }
790
 
791
  if($_REQUEST['action'] == 'delete_event_log'){ //Unlock link was clicked for a row in list table
859
  </tr>
860
  <tr valign="top">
861
  <th scope="row"><?php _e('404 Lockout Redirect URL', 'aiowpsecurity')?>:</th>
862
+ <td><input type="text" size="50" name="aiowps_404_lock_redirect_url" value="<?php echo esc_url_raw( $aio_wp_security->configs->get_value('aiowps_404_lock_redirect_url'), array( 'http', 'https' ) ); ?>" />
863
  <span class="description"><?php _e('A blocked visitor will be automatically redirected to this URL.', 'aiowpsecurity'); ?></span>
864
  </td>
865
  </tr>
876
  $event_list_404->prepare_items();
877
  //echo "put table of locked entries here";
878
  ?>
879
+ <form id="tables-filter" method="post">
880
  <!-- For plugins, we also need to ensure that the form posts back to our current page -->
881
  <input type="hidden" name="page" value="<?php echo $_REQUEST['page']; ?>" />
882
+ <?php $event_list_404->search_box('Search', 'search_404_events'); ?>
883
  <?php
884
  if(isset($_REQUEST["tab"]))
885
  {
admin/wp-security-list-404.php CHANGED
@@ -1,71 +1,77 @@
1
  <?php
 
2
  class AIOWPSecurity_List_404 extends AIOWPSecurity_List_Table {
3
-
4
- function __construct(){
5
  global $status, $page;
6
-
7
  //Set parent defaults
8
- parent::__construct( array(
9
- 'singular' => 'item', //singular name of the listed records
10
- 'plural' => 'items', //plural name of the listed records
11
- 'ajax' => false //does this table support ajax?
12
- ) );
13
-
14
  }
15
 
16
- function column_default($item, $column_name){
17
- return $item[$column_name];
18
  }
19
-
20
- function column_id($item){
21
  $tab = strip_tags($_REQUEST['tab']);
22
  $ip = $item['ip_or_host'];
23
-
24
  $blocked_ips_tab = 'tab3';
25
  //Check if this IP address is locked
26
  $is_locked = AIOWPSecurity_Utility::check_locked_ip($ip);
27
- if($is_locked){
28
  //Build row actions
29
  $actions = array(
30
- 'unblock' => sprintf('<a href="admin.php?page=%s&tab=%s">Unblock</a>',AIOWPSEC_MAIN_MENU_SLUG,$blocked_ips_tab),
31
- 'delete' => sprintf('<a href="admin.php?page=%s&tab=%s&action=%s&id=%s" onclick="return confirm(\'Are you sure you want to delete this item?\')">Delete</a>',AIOWPSEC_FIREWALL_MENU_SLUG,$tab,'delete_event_log',$item['id']),
32
  );
33
-
34
- }else{
35
  //Build row actions
36
  $actions = array(
37
- 'temp_block' => sprintf('<a href="admin.php?page=%s&tab=%s&action=%s&ip_address=%s&username=%s" onclick="return confirm(\'Are you sure you want to block this IP address?\')">Temp Block</a>',AIOWPSEC_FIREWALL_MENU_SLUG,$tab,'temp_block',$item['ip_or_host'],$item['username']),
38
- 'delete' => sprintf('<a href="admin.php?page=%s&tab=%s&action=%s&id=%s" onclick="return confirm(\'Are you sure you want to delete this item?\')">Delete</a>',AIOWPSEC_FIREWALL_MENU_SLUG,$tab,'delete_event_log',$item['id']),
 
39
  );
40
  }
41
-
42
  //Return the user_login contents
43
  return sprintf('%1$s <span style="color:silver"></span>%2$s',
44
- /*$1%s*/ $item['id'],
45
- /*$2%s*/ $this->row_actions($actions)
46
  );
47
  }
48
 
49
- function column_status($item){
 
50
  $ip = $item['ip_or_host'];
51
  //Check if this IP address is locked
52
  $is_locked = AIOWPSecurity_Utility::check_locked_ip($ip);
53
- if($is_locked){
 
 
 
 
 
54
  return 'temporarily blocked';
55
- }else{
56
  return '';
57
  }
58
  }
59
-
60
- function column_cb($item){
61
  return sprintf(
62
- '<input type="checkbox" name="%1$s[]" value="%2$s" />',
63
- /*$1%s*/ $this->_args['singular'], //Let's simply repurpose the table's singular label
64
- /*$2%s*/ $item['id'] //The value of the checkbox should be the record's id
65
- );
66
  }
67
-
68
- function get_columns(){
69
  $columns = array(
70
  'cb' => '<input type="checkbox" />', //Render a checkbox
71
  'id' => 'ID',
@@ -78,128 +84,204 @@ class AIOWPSecurity_List_404 extends AIOWPSecurity_List_Table {
78
  );
79
  return $columns;
80
  }
81
-
82
  function get_sortable_columns() {
83
  $sortable_columns = array(
84
- 'id' => array('id',false),
85
- 'event_type' => array('event_type',false),
86
- 'ip_or_host' => array('ip_or_host',false),
87
- 'url' => array('url',false),
88
- 'referer_info' => array('referer_info',false),
89
- 'event_date' => array('event_date',false),
90
- 'status' => array('status',false),
91
  );
92
  return $sortable_columns;
93
  }
94
-
95
  function get_bulk_actions() {
96
  $actions = array(
97
  //'unlock' => 'Unlock',
 
 
98
  'delete' => 'Delete'
99
  );
100
  return $actions;
101
  }
102
 
103
  function process_bulk_action() {
104
- if('delete'===$this->current_action())
105
- {//Process delete bulk actions
106
- if(!isset($_REQUEST['item']))
107
- {
108
- AIOWPSecurity_Admin_Menu::show_msg_error_st(__('Please select some records using the checkboxes','aiowpsecurity'));
109
- }else
110
- {
 
 
 
 
 
 
 
 
 
 
 
 
111
  $this->delete_404_event_records(($_REQUEST['item']));
112
  }
113
  }
114
  }
115
-
116
-
117
  /*
118
  * This function will lock an IP address by adding it to the "login_lockdown" table
119
  */
120
- function block_ip($entries, $username='')
121
- {
122
  global $wpdb;
123
  $events_table = AIOWPSEC_TBL_LOGIN_LOCKDOWN;
124
- if (is_array($entries))
125
- {
126
  //lock multiple records
127
- $ip_list = "(" .implode(",",$entries) .")"; //Create comma separate list for DB operation
128
- //TODO
129
- } elseif ($entries != NULL)
130
- {
 
 
 
 
 
 
 
 
 
 
 
 
131
  //Block single record
132
- AIOWPSecurity_Utility::lock_IP($entries, '404', $username);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  }
134
  }
135
-
136
  /*
137
  * This function will delete selected 404 records from the "events" table.
138
  * The function accepts either an array of IDs or a single ID
139
  */
140
- function delete_404_event_records($entries)
141
- {
142
  global $wpdb;
143
  $events_table = AIOWPSEC_TBL_EVENTS;
144
- if (is_array($entries))
145
- {
146
  //Delete multiple records
147
- $id_list = "(" .implode(",",$entries) .")"; //Create comma separate list for DB operation
148
- $delete_command = "DELETE FROM ".$events_table." WHERE id IN ".$id_list;
149
  $result = $wpdb->query($delete_command);
150
- if($result != NULL)
151
- {
152
  AIOWPSecurity_Admin_Menu::show_msg_record_deleted_st();
153
  }
154
- }
155
- elseif ($entries != NULL)
156
- {
157
  //Delete single record
158
- $delete_command = "DELETE FROM ".$events_table." WHERE id = '".absint($entries)."'";
159
  $result = $wpdb->query($delete_command);
160
- if($result != NULL)
161
- {
162
  AIOWPSecurity_Admin_Menu::show_msg_record_deleted_st();
163
  }
164
  }
165
  }
166
-
167
  function prepare_items() {
168
  /**
169
  * First, lets decide how many records per page to show
170
  */
171
- $per_page = 20;
172
  $columns = $this->get_columns();
173
  $hidden = array();
174
  $sortable = $this->get_sortable_columns();
175
 
176
  $this->_column_headers = array($columns, $hidden, $sortable);
177
-
178
  $this->process_bulk_action();
179
-
180
- global $wpdb;
181
  $events_table_name = AIOWPSEC_TBL_EVENTS;
182
 
183
- /* -- Ordering parameters -- */
184
- //Parameters that are going to be used to order the result
185
- $orderby = !empty($_GET["orderby"]) ? mysql_real_escape_string($_GET["orderby"]) : 'id';
186
- $order = !empty($_GET["order"]) ? mysql_real_escape_string($_GET["order"]) : 'DESC';
187
 
188
- $data = $wpdb->get_results("SELECT * FROM $events_table_name ORDER BY $orderby $order", ARRAY_A);
 
 
 
 
 
 
 
189
  $new_data = array();
190
- foreach($data as $row){
191
  //lets insert an empty "status" column - we will use later
192
  $row['status'] = '';
193
  $new_data[] = $row;
194
  }
195
  $current_page = $this->get_pagenum();
196
  $total_items = count($new_data);
197
- $new_data = array_slice($new_data,(($current_page-1)*$per_page),$per_page);
198
  $this->items = $new_data;
199
- $this->set_pagination_args( array(
200
- 'total_items' => $total_items, //WE have to calculate the total number of items
201
- 'per_page' => $per_page, //WE have to determine how many items to show on a page
202
- 'total_pages' => ceil($total_items/$per_page) //WE have to calculate the total number of pages
203
- ) );
204
  }
 
205
  }
1
  <?php
2
+
3
  class AIOWPSecurity_List_404 extends AIOWPSecurity_List_Table {
4
+
5
+ function __construct() {
6
  global $status, $page;
7
+
8
  //Set parent defaults
9
+ parent::__construct(array(
10
+ 'singular' => 'item', //singular name of the listed records
11
+ 'plural' => 'items', //plural name of the listed records
12
+ 'ajax' => false //does this table support ajax?
13
+ ));
 
14
  }
15
 
16
+ function column_default($item, $column_name) {
17
+ return $item[$column_name];
18
  }
19
+
20
+ function column_id($item) {
21
  $tab = strip_tags($_REQUEST['tab']);
22
  $ip = $item['ip_or_host'];
23
+
24
  $blocked_ips_tab = 'tab3';
25
  //Check if this IP address is locked
26
  $is_locked = AIOWPSecurity_Utility::check_locked_ip($ip);
27
+ if ($is_locked) {
28
  //Build row actions
29
  $actions = array(
30
+ 'unblock' => sprintf('<a href="admin.php?page=%s&tab=%s">Unblock</a>', AIOWPSEC_MAIN_MENU_SLUG, $blocked_ips_tab),
31
+ 'delete' => sprintf('<a href="admin.php?page=%s&tab=%s&action=%s&id=%s" onclick="return confirm(\'Are you sure you want to delete this item?\')">Delete</a>', AIOWPSEC_FIREWALL_MENU_SLUG, $tab, 'delete_event_log', $item['id']),
32
  );
33
+ } else {
 
34
  //Build row actions
35
  $actions = array(
36
+ 'temp_block' => sprintf('<a href="admin.php?page=%s&tab=%s&action=%s&ip_address=%s&username=%s" onclick="return confirm(\'Are you sure you want to block this IP address?\')">Temp Block</a>', AIOWPSEC_FIREWALL_MENU_SLUG, $tab, 'temp_block', $item['ip_or_host'], $item['username']),
37
+ 'blacklist_ip' => sprintf('<a href="admin.php?page=%s&tab=%s&action=%s&ip_address=%s&username=%s" onclick="return confirm(\'Are you sure you want to permanently block this IP address?\')">Blacklist IP</a>', AIOWPSEC_FIREWALL_MENU_SLUG, $tab, 'blacklist_ip', $item['ip_or_host'], $item['username']),
38
+ 'delete' => sprintf('<a href="admin.php?page=%s&tab=%s&action=%s&id=%s" onclick="return confirm(\'Are you sure you want to delete this item?\')">Delete</a>', AIOWPSEC_FIREWALL_MENU_SLUG, $tab, 'delete_event_log', $item['id']),
39
  );
40
  }
41
+
42
  //Return the user_login contents
43
  return sprintf('%1$s <span style="color:silver"></span>%2$s',
44
+ /* $1%s */ $item['id'],
45
+ /* $2%s */ $this->row_actions($actions)
46
  );
47
  }
48
 
49
+ function column_status($item) {
50
+ global $aio_wp_security;
51
  $ip = $item['ip_or_host'];
52
  //Check if this IP address is locked
53
  $is_locked = AIOWPSecurity_Utility::check_locked_ip($ip);
54
+ $blacklisted_string = $aio_wp_security->configs->get_value('aiowps_banned_ip_addresses');
55
+ $banned = strpos($blacklisted_string, $ip);
56
+
57
+ if ($banned !== false) {
58
+ return 'blacklisted';
59
+ } else if ($is_locked) {
60
  return 'temporarily blocked';
61
+ } else {
62
  return '';
63
  }
64
  }
65
+
66
+ function column_cb($item) {
67
  return sprintf(
68
+ '<input type="checkbox" name="%1$s[]" value="%2$s" />',
69
+ /* $1%s */ $this->_args['singular'], //Let's simply repurpose the table's singular label
70
+ /* $2%s */ $item['id'] //The value of the checkbox should be the record's id
71
+ );
72
  }
73
+
74
+ function get_columns() {
75
  $columns = array(
76
  'cb' => '<input type="checkbox" />', //Render a checkbox
77
  'id' => 'ID',
84
  );
85
  return $columns;
86
  }
87
+
88
  function get_sortable_columns() {
89
  $sortable_columns = array(
90
+ 'id' => array('id', false),
91
+ 'event_type' => array('event_type', false),
92
+ 'ip_or_host' => array('ip_or_host', false),
93
+ 'url' => array('url', false),
94
+ 'referer_info' => array('referer_info', false),
95
+ 'event_date' => array('event_date', false),
96
+ 'status' => array('status', false),
97
  );
98
  return $sortable_columns;
99
  }
100
+
101
  function get_bulk_actions() {
102
  $actions = array(
103
  //'unlock' => 'Unlock',
104
+ 'bulk_block_ip' => 'Temp Block IP',
105
+ 'bulk_blacklist_ip' => 'Blacklist IP',
106
  'delete' => 'Delete'
107
  );
108
  return $actions;
109
  }
110
 
111
  function process_bulk_action() {
112
+ if ('bulk_block_ip' === $this->current_action()) {//Process delete bulk actions
113
+ if (!isset($_REQUEST['item'])) {
114
+ AIOWPSecurity_Admin_Menu::show_msg_error_st(__('Please select some records using the checkboxes', 'aiowpsecurity'));
115
+ } else {
116
+ $this->block_ip(($_REQUEST['item']));
117
+ }
118
+ }
119
+
120
+ if ('bulk_blacklist_ip' === $this->current_action()) {//Process delete bulk actions
121
+ if (!isset($_REQUEST['item'])) {
122
+ AIOWPSecurity_Admin_Menu::show_msg_error_st(__('Please select some records using the checkboxes', 'aiowpsecurity'));
123
+ } else {
124
+ $this->blacklist_ip_address(($_REQUEST['item']));
125
+ }
126
+ }
127
+ if ('delete' === $this->current_action()) {//Process delete bulk actions
128
+ if (!isset($_REQUEST['item'])) {
129
+ AIOWPSecurity_Admin_Menu::show_msg_error_st(__('Please select some records using the checkboxes', 'aiowpsecurity'));
130
+ } else {
131
  $this->delete_404_event_records(($_REQUEST['item']));
132
  }
133
  }
134
  }
135
+
 
136
  /*
137
  * This function will lock an IP address by adding it to the "login_lockdown" table
138
  */
139
+
140
+ function block_ip($entries, $username = '') {
141
  global $wpdb;
142
  $events_table = AIOWPSEC_TBL_LOGIN_LOCKDOWN;
143
+ if (is_array($entries)) {
 
144
  //lock multiple records
145
+ $id_list = "(" .implode(",",$entries) .")"; //Create comma separate list for DB operation
146
+ $events_table = AIOWPSEC_TBL_EVENTS;
147
+ $query = "SELECT ip_or_host FROM $events_table WHERE ID IN ".$id_list;
148
+ $results = $wpdb->get_col($query);
149
+ if(empty($results)){
150
+ AIOWPSecurity_Admin_Menu::show_msg_error_st(__('Could not process the request because the IP addresses for the selected entries could not be found!', 'WPS'));
151
+ return false;
152
+ }else{
153
+ foreach($results as $entry){
154
+ if(filter_var($entry, FILTER_VALIDATE_IP)){
155
+ AIOWPSecurity_Utility::lock_IP($entry, '404', $username);
156
+ }
157
+ }
158
+ }
159
+ AIOWPSecurity_Admin_Menu::show_msg_updated_st(__('The selected IP addresses are now temporarily blocked!', 'WPS'));
160
+ } elseif ($entries != NULL) {
161
  //Block single record
162
+ if(filter_var($entries, FILTER_VALIDATE_IP)){
163
+ AIOWPSecurity_Utility::lock_IP($entries, '404', $username);
164
+ AIOWPSecurity_Admin_Menu::show_msg_updated_st(__('The selected IP address is now temporarily blocked!', 'WPS'));
165
+ }else{
166
+ AIOWPSecurity_Admin_Menu::show_msg_error_st(__('The selected entry is not a valid IP address!', 'WPS'));
167
+ }
168
+ }
169
+ }
170
+
171
+ /*
172
+ * This function will lock an IP address by adding it to the "login_lockdown" table
173
+ */
174
+
175
+ function blacklist_ip_address($entries) {
176
+ global $wpdb, $aio_wp_security;
177
+ $bl_ip_addresses = $aio_wp_security->configs->get_value('aiowps_banned_ip_addresses'); //get the currently saved blacklisted IPs
178
+ $ip_list_array = AIOWPSecurity_Utility_IP::create_ip_list_array_from_string_with_newline($bl_ip_addresses);
179
+
180
+ if (is_array($entries)) {
181
+ //Get the selected IP addresses
182
+ $id_list = "(" .implode(",",$entries) .")"; //Create comma separate list for DB operation
183
+ $events_table = AIOWPSEC_TBL_EVENTS;
184
+ $query = "SELECT ip_or_host FROM $events_table WHERE ID IN ".$id_list;
185
+ $results = $wpdb->get_col($query);
186
+ if(empty($results)){
187
+ AIOWPSecurity_Admin_Menu::show_msg_error_st(__('Could not process the request because the IP addresses for the selected entries could not be found!', 'WPS'));
188
+ return false;
189
+ }else{
190
+ foreach($results as $entry){
191
+ $ip_list_array[] = $entry;
192
+ }
193
+ }
194
+ } elseif ($entries != NULL) {
195
+ //Blacklist single record
196
+ $ip_list_array[] = $entries;
197
+ }
198
+ $payload = AIOWPSecurity_Utility_IP::validate_ip_list($ip_list_array, 'blacklist');
199
+ if($payload[0] == 1){
200
+ //success case
201
+ $result = 1;
202
+ $list = $payload[1];
203
+ $banned_ip_data = implode(PHP_EOL, $list);
204
+ $aio_wp_security->configs->set_value('aiowps_banned_ip_addresses',$banned_ip_data);
205
+ $aio_wp_security->configs->save_config(); //Save the configuration
206
+ AIOWPSecurity_Admin_Menu::show_msg_updated_st(__('The selected IP addresses have been added to the blacklist and will be permanently blocked!', 'WPS'));
207
+ }
208
+ else{
209
+ $result = -1;
210
+ $error_msg = $payload[1][0];
211
+ AIOWPSecurity_Admin_Menu::show_msg_error_st($error_msg);
212
  }
213
  }
214
+
215
  /*
216
  * This function will delete selected 404 records from the "events" table.
217
  * The function accepts either an array of IDs or a single ID
218
  */
219
+
220
+ function delete_404_event_records($entries) {
221
  global $wpdb;
222
  $events_table = AIOWPSEC_TBL_EVENTS;
223
+ if (is_array($entries)) {
 
224
  //Delete multiple records
225
+ $id_list = "(" . implode(",", $entries) . ")"; //Create comma separate list for DB operation
226
+ $delete_command = "DELETE FROM " . $events_table . " WHERE id IN " . $id_list;
227
  $result = $wpdb->query($delete_command);
228
+ if ($result != NULL) {
 
229
  AIOWPSecurity_Admin_Menu::show_msg_record_deleted_st();
230
  }
231
+ } elseif ($entries != NULL) {
 
 
232
  //Delete single record
233
+ $delete_command = "DELETE FROM " . $events_table . " WHERE id = '" . absint($entries) . "'";
234
  $result = $wpdb->query($delete_command);
235
+ if ($result != NULL) {
 
236
  AIOWPSecurity_Admin_Menu::show_msg_record_deleted_st();
237
  }
238
  }
239
  }
240
+
241
  function prepare_items() {
242
  /**
243
  * First, lets decide how many records per page to show
244
  */
245
+ $per_page = 100;
246
  $columns = $this->get_columns();
247
  $hidden = array();
248
  $sortable = $this->get_sortable_columns();
249
 
250
  $this->_column_headers = array($columns, $hidden, $sortable);
251
+
252
  $this->process_bulk_action();
253
+
254
+ global $wpdb;
255
  $events_table_name = AIOWPSEC_TBL_EVENTS;
256
 
257
+ /* -- Ordering parameters -- */
258
+ //Parameters that are going to be used to order the result
259
+ isset($_GET["orderby"]) ? $orderby = strip_tags($_GET["orderby"]): $orderby = '';
260
+ isset($_GET["order"]) ? $order = strip_tags($_GET["order"]): $order = '';
261
 
262
+ $orderby = !empty($orderby) ? mysql_real_escape_string($orderby) : 'id';
263
+ $order = !empty($order) ? mysql_real_escape_string($order) : 'DESC';
264
+ if (isset($_POST['s'])) {
265
+ $search_term = trim($_POST['s']);
266
+ $data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $events_table_name . " WHERE `ip_or_host` LIKE '%%%s%%' OR `url` LIKE '%%%s%%' OR `referer_info` LIKE '%%%s%%'", $search_term, $search_term, $search_term), ARRAY_A);
267
+ } else {
268
+ $data = $wpdb->get_results("SELECT * FROM $events_table_name ORDER BY $orderby $order", ARRAY_A);
269
+ }
270
  $new_data = array();
271
+ foreach ($data as $row) {
272
  //lets insert an empty "status" column - we will use later
273
  $row['status'] = '';
274
  $new_data[] = $row;
275
  }
276
  $current_page = $this->get_pagenum();
277
  $total_items = count($new_data);
278
+ $new_data = array_slice($new_data, (($current_page - 1) * $per_page), $per_page);
279
  $this->items = $new_data;
280
+ $this->set_pagination_args(array(
281
+ 'total_items' => $total_items, //WE have to calculate the total number of items
282
+ 'per_page' => $per_page, //WE have to determine how many items to show on a page
283
+ 'total_pages' => ceil($total_items / $per_page) //WE have to calculate the total number of pages
284
+ ));
285
  }
286
+
287
  }
admin/wp-security-list-acct-activity.php CHANGED
@@ -142,8 +142,12 @@ class AIOWPSecurity_List_Account_Activity extends AIOWPSecurity_List_Table {
142
 
143
  /* -- Ordering parameters -- */
144
  //Parameters that are going to be used to order the result
145
- $orderby = !empty($_GET["orderby"]) ? mysql_real_escape_string($_GET["orderby"]) : 'login_date';
146
- $order = !empty($_GET["order"]) ? mysql_real_escape_string($_GET["order"]) : 'DESC';
 
 
 
 
147
 
148
  $data = $wpdb->get_results("SELECT * FROM $login_activity_table ORDER BY $orderby $order LIMIT 50", ARRAY_A); //Get the last 50 records
149
  $current_page = $this->get_pagenum();
142
 
143
  /* -- Ordering parameters -- */
144
  //Parameters that are going to be used to order the result
145
+
146
+ isset($_GET["orderby"]) ? $orderby = strip_tags($_GET["orderby"]): $orderby = '';
147
+ isset($_GET["order"]) ? $order = strip_tags($_GET["order"]): $order = '';
148
+
149
+ $orderby = !empty($orderby) ? mysql_real_escape_string($orderby) : 'login_date';
150
+ $order = !empty($order) ? mysql_real_escape_string($order) : 'DESC';
151
 
152
  $data = $wpdb->get_results("SELECT * FROM $login_activity_table ORDER BY $orderby $order LIMIT 50", ARRAY_A); //Get the last 50 records
153
  $current_page = $this->get_pagenum();
admin/wp-security-list-comment-spammer-ip.php CHANGED
@@ -181,8 +181,11 @@ class AIOWPSecurity_List_Comment_Spammer_IP extends AIOWPSecurity_List_Table {
181
  }
182
  /* -- Ordering parameters -- */
183
  //Parameters that are going to be used to order the result
184
- $orderby = !empty($_GET["orderby"]) ? mysql_real_escape_string($_GET["orderby"]) : 'amount';
185
- $order = !empty($_GET["order"]) ? mysql_real_escape_string($_GET["order"]) : 'DESC';
 
 
 
186
 
187
  $sql = "SELECT comment_author_IP, COUNT(*) AS amount
188
  FROM $wpdb->comments
181
  }
182
  /* -- Ordering parameters -- */
183
  //Parameters that are going to be used to order the result
184
+ isset($_GET["orderby"]) ? $orderby = strip_tags($_GET["orderby"]): $orderby = '';
185
+ isset($_GET["order"]) ? $order = strip_tags($_GET["order"]): $order = '';
186
+
187
+ $orderby = !empty($orderby) ? mysql_real_escape_string($orderby) : 'amount';
188
+ $order = !empty($order) ? mysql_real_escape_string($order) : 'DESC';
189
 
190
  $sql = "SELECT comment_author_IP, COUNT(*) AS amount
191
  FROM $wpdb->comments
admin/wp-security-list-locked-ip.php CHANGED
@@ -177,8 +177,11 @@ class AIOWPSecurity_List_Locked_IP extends AIOWPSecurity_List_Table {
177
 
178
  /* -- Ordering parameters -- */
179
  //Parameters that are going to be used to order the result
180
- $orderby = !empty($_GET["orderby"]) ? mysql_real_escape_string($_GET["orderby"]) : 'lockdown_date';
181
- $order = !empty($_GET["order"]) ? mysql_real_escape_string($_GET["order"]) : 'DESC';
 
 
 
182
 
183
  $data = $wpdb->get_results("SELECT * FROM $lockdown_table_name WHERE release_date > now() ORDER BY $orderby $order", ARRAY_A);
184
  //$data = $wpdb->get_results("SELECT ID, floor((UNIX_TIMESTAMP(release_date)-UNIX_TIMESTAMP(now()))/60) AS minutes_left, ".
177
 
178
  /* -- Ordering parameters -- */
179
  //Parameters that are going to be used to order the result
180
+ isset($_GET["orderby"]) ? $orderby = strip_tags($_GET["orderby"]): $orderby = '';
181
+ isset($_GET["order"]) ? $order = strip_tags($_GET["order"]): $order = '';
182
+
183
+ $orderby = !empty($orderby) ? mysql_real_escape_string($orderby) : 'lockdown_date';
184
+ $order = !empty($order) ? mysql_real_escape_string($order) : 'DESC';
185
 
186
  $data = $wpdb->get_results("SELECT * FROM $lockdown_table_name WHERE release_date > now() ORDER BY $orderby $order", ARRAY_A);
187
  //$data = $wpdb->get_results("SELECT ID, floor((UNIX_TIMESTAMP(release_date)-UNIX_TIMESTAMP(now()))/60) AS minutes_left, ".
admin/wp-security-list-logged-in-users.php CHANGED
@@ -59,17 +59,23 @@ class AIOWPSecurity_List_Logged_In_Users extends AIOWPSecurity_List_Table {
59
  global $aio_wp_security;
60
  /* -- Ordering parameters -- */
61
  //Parameters that are going to be used to order the result
62
- $orderby = !empty($_GET["orderby"]) ? mysql_real_escape_string($_GET["orderby"]) : 'user_id';
63
- $order = !empty($_GET["order"]) ? mysql_real_escape_string($_GET["order"]) : 'DESC';
 
 
 
64
 
65
  $logged_in_users = (AIOWPSecurity_Utility::is_multisite_install() ? get_site_transient('users_online') : get_transient('users_online'));
66
-
67
- foreach ($logged_in_users as $key=>$val)
68
- {
69
- $userdata = get_userdata($val['user_id']);
70
- $username = $userdata->user_login;
71
- $val['username'] = $username;
72
- $logged_in_users[$key] = $val;
 
 
 
73
  }
74
  $data = $logged_in_users;
75
  $current_page = $this->get_pagenum();
59
  global $aio_wp_security;
60
  /* -- Ordering parameters -- */
61
  //Parameters that are going to be used to order the result
62
+ isset($_GET["orderby"]) ? $orderby = strip_tags($_GET["orderby"]): $orderby = '';
63
+ isset($_GET["order"]) ? $order = strip_tags($_GET["order"]): $order = '';
64
+
65
+ $orderby = !empty($orderby) ? mysql_real_escape_string($orderby) : 'user_id';
66
+ $order = !empty($order) ? mysql_real_escape_string($order) : 'DESC';
67
 
68
  $logged_in_users = (AIOWPSecurity_Utility::is_multisite_install() ? get_site_transient('users_online') : get_transient('users_online'));
69
+ if($logged_in_users !== FALSE){
70
+ foreach ($logged_in_users as $key=>$val)
71
+ {
72
+ $userdata = get_userdata($val['user_id']);
73
+ $username = $userdata->user_login;
74
+ $val['username'] = $username;
75
+ $logged_in_users[$key] = $val;
76
+ }
77
+ }else{
78
+ $logged_in_users = array(); //If no transient found set to empty array
79
  }
80
  $data = $logged_in_users;
81
  $current_page = $this->get_pagenum();
admin/wp-security-list-login-fails.php CHANGED
@@ -141,8 +141,11 @@ class AIOWPSecurity_List_Login_Failed_Attempts extends AIOWPSecurity_List_Table
141
 
142
  /* -- Ordering parameters -- */
143
  //Parameters that are going to be used to order the result
144
- $orderby = !empty($_GET["orderby"]) ? mysql_real_escape_string($_GET["orderby"]) : 'failed_login_date';
145
- $order = !empty($_GET["order"]) ? mysql_real_escape_string($_GET["order"]) : 'DESC';
 
 
 
146
 
147
  $data = $wpdb->get_results("SELECT * FROM $failed_logins_table_name ORDER BY $orderby $order", ARRAY_A);
148
  $current_page = $this->get_pagenum();
141
 
142
  /* -- Ordering parameters -- */
143
  //Parameters that are going to be used to order the result
144
+ isset($_GET["orderby"]) ? $orderby = strip_tags($_GET["orderby"]): $orderby = '';
145
+ isset($_GET["order"]) ? $order = strip_tags($_GET["order"]): $order = '';
146
+
147
+ $orderby = !empty($orderby) ? mysql_real_escape_string($orderby) : 'failed_login_date';
148
+ $order = !empty($order) ? mysql_real_escape_string($order) : 'DESC';
149
 
150
  $data = $wpdb->get_results("SELECT * FROM $failed_logins_table_name ORDER BY $orderby $order", ARRAY_A);
151
  $current_page = $this->get_pagenum();
admin/wp-security-list-registered-users.php CHANGED
@@ -22,6 +22,7 @@ class AIOWPSecurity_List_Registered_Users extends AIOWPSecurity_List_Table {
22
  //$tab = strip_tags($_REQUEST['tab']);
23
  //Build row actions
24
  $actions = array(
 
25
  'approve_acct' => sprintf('<a href="admin.php?page=%s&action=%s&user_id=%s" onclick="return confirm(\'Are you sure you want to approve this account?\')">Approve</a>',AIOWPSEC_USER_REGISTRATION_MENU_SLUG,'approve_acct',$item['ID']),
26
  'delete_acct' => sprintf('<a href="admin.php?page=%s&action=%s&user_id=%s" onclick="return confirm(\'Are you sure you want to delete this account?\')">Delete</a>',AIOWPSEC_USER_REGISTRATION_MENU_SLUG,'delete_acct',$item['ID']),
27
  );
@@ -122,11 +123,13 @@ class AIOWPSecurity_List_Registered_Users extends AIOWPSecurity_List_Table {
122
  if($user === false){
123
  //don't send mail
124
  }else{
125
- //TODO send email to account holder
126
  $to_email_address = $user->user_email;
127
  $subject = '['.get_option('siteurl').'] '. __('Your account is now active','aiowpsecurity');
128
- $email_msg .= __('Your account with username:','aiowpsecurity').$user->ID." is now active.\n";
129
- $email_header = 'From: '.get_bloginfo( 'name' ).' <'.get_bloginfo('admin_email').'>' . "\r\n\\";
 
 
130
  $sendMail = wp_mail($to_email_address, $subject, $email_msg, $email_header);
131
  }
132
  }
@@ -145,12 +148,14 @@ class AIOWPSecurity_List_Registered_Users extends AIOWPSecurity_List_Table {
145
  if($result)
146
  {
147
  AIOWPSecurity_Admin_Menu::show_msg_updated_st(__('The selected account was approved successfully!','aiowpsecurity'));
148
- //TODO send email to account holder
149
  $user = get_user_by('id', $entries);
150
  $to_email_address = $user->user_email;
 
151
  $subject = '['.get_option('siteurl').'] '. __('Your account is now active','aiowpsecurity');
152
- $email_msg .= __('Your account with username: ','aiowpsecurity').$user->user_login." is now active.\n";
153
- $email_header = 'From: '.get_bloginfo( 'name' ).' <'.get_bloginfo('admin_email').'>' . "\r\n\\";
 
 
154
  $sendMail = wp_mail($to_email_address, $subject, $email_msg, $email_header);
155
 
156
  }else if($result === false){
@@ -201,13 +206,6 @@ class AIOWPSecurity_List_Registered_Users extends AIOWPSecurity_List_Table {
201
 
202
  $this->process_bulk_action();
203
 
204
- global $wpdb;
205
- global $aio_wp_security;
206
- /* -- Ordering parameters -- */
207
- //Parameters that are going to be used to order the result
208
- // $orderby = !empty($_GET["orderby"]) ? mysql_real_escape_string($_GET["orderby"]) : 'user_id';
209
- // $order = !empty($_GET["order"]) ? mysql_real_escape_string($_GET["order"]) : 'DESC';
210
-
211
  //Get registered users which have the special 'aiowps_account_status' meta key set to 'pending'
212
  $data = $this->get_registered_user_data('pending');
213
 
22
  //$tab = strip_tags($_REQUEST['tab']);
23
  //Build row actions
24
  $actions = array(
25
+ 'view' => sprintf('<a href="user-edit.php?user_id=%s" target="_blank">View</a>',$item['ID']),
26
  'approve_acct' => sprintf('<a href="admin.php?page=%s&action=%s&user_id=%s" onclick="return confirm(\'Are you sure you want to approve this account?\')">Approve</a>',AIOWPSEC_USER_REGISTRATION_MENU_SLUG,'approve_acct',$item['ID']),
27
  'delete_acct' => sprintf('<a href="admin.php?page=%s&action=%s&user_id=%s" onclick="return confirm(\'Are you sure you want to delete this account?\')">Delete</a>',AIOWPSEC_USER_REGISTRATION_MENU_SLUG,'delete_acct',$item['ID']),
28
  );
123
  if($user === false){
124
  //don't send mail
125
  }else{
126
+ $email_msg = '';
127
  $to_email_address = $user->user_email;
128
  $subject = '['.get_option('siteurl').'] '. __('Your account is now active','aiowpsecurity');
129
+ $email_msg .= __('Your account with username:','aiowpsecurity').$user->ID.__(' is now active','aiowpsecurity')."\n";
130
+ $site_title = get_bloginfo( 'name' );
131
+ $from_name = empty($site_title)?'WordPress':$site_title;
132
+ $email_header = 'From: '.$from_name.' <'.get_bloginfo('admin_email').'>' . "\r\n\\";
133
  $sendMail = wp_mail($to_email_address, $subject, $email_msg, $email_header);
134
  }
135
  }
148
  if($result)
149
  {
150
  AIOWPSecurity_Admin_Menu::show_msg_updated_st(__('The selected account was approved successfully!','aiowpsecurity'));
 
151
  $user = get_user_by('id', $entries);
152
  $to_email_address = $user->user_email;
153
+ $email_msg = '';
154
  $subject = '['.get_option('siteurl').'] '. __('Your account is now active','aiowpsecurity');
155
+ $email_msg .= __('Your account with username: ','aiowpsecurity').$user->user_login.__(' is now active','aiowpsecurity')."\n";
156
+ $site_title = get_bloginfo( 'name' );
157
+ $from_name = empty($site_title)?'WordPress':$site_title;
158
+ $email_header = 'From: '.$from_name.' <'.get_bloginfo('admin_email').'>' . "\r\n\\";
159
  $sendMail = wp_mail($to_email_address, $subject, $email_msg, $email_header);
160
 
161
  }else if($result === false){
206
 
207
  $this->process_bulk_action();
208
 
 
 
 
 
 
 
 
209
  //Get registered users which have the special 'aiowps_account_status' meta key set to 'pending'
210
  $data = $this->get_registered_user_data('pending');
211
 
admin/wp-security-misc-options-menu.php CHANGED
@@ -8,7 +8,8 @@ class AIOWPSecurity_Misc_Options_Menu extends AIOWPSecurity_Admin_Menu
8
  var $menu_tabs;
9
 
10
  var $menu_tabs_handler = array(
11
- 'tab1' => 'render_tab1',
 
12
  );
13
 
14
  function __construct()
@@ -19,7 +20,8 @@ class AIOWPSecurity_Misc_Options_Menu extends AIOWPSecurity_Admin_Menu
19
  function set_menu_tabs()
20
  {
21
  $this->menu_tabs = array(
22
- 'tab1' => __('Copy Protection', 'aiowpsecurity'),
 
23
  );
24
  }
25
 
@@ -115,4 +117,56 @@ class AIOWPSecurity_Misc_Options_Menu extends AIOWPSecurity_Admin_Menu
115
  </div></div>
116
  <?php
117
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  } //end class
8
  var $menu_tabs;
9
 
10
  var $menu_tabs_handler = array(
11
+ 'tab1' => 'render_tab1',
12
+ 'tab2' => 'render_tab2',
13
  );
14
 
15
  function __construct()
20
  function set_menu_tabs()
21
  {
22
  $this->menu_tabs = array(
23
+ 'tab1' => __('Copy Protection', 'aiowpsecurity'),
24
+ 'tab2' => __('Frames', 'aiowpsecurity'),
25
  );
26
  }
27
 
117
  </div></div>
118
  <?php
119
  }
120
+
121
+ function render_tab2()
122
+ {
123
+ global $aio_wp_security;
124
+ $maint_msg = '';
125
+ if(isset($_POST['aiowpsec_save_frame_display_prevent']))
126
+ {
127
+ $nonce=$_REQUEST['_wpnonce'];
128
+ if (!wp_verify_nonce($nonce, 'aiowpsec-prevent-display-frame'))
129
+ {
130
+ $aio_wp_security->debug_logger->log_debug("Nonce check failed on prevent display inside frame feature settings save!",4);
131
+ die("Nonce check failed on prevent display inside frame feature settings save!");
132
+ }
133
+
134
+ //Save settings
135
+ $aio_wp_security->configs->set_value('aiowps_prevent_site_display_inside_frame',isset($_POST["aiowps_prevent_site_display_inside_frame"])?'1':'');
136
+ $aio_wp_security->configs->save_config();
137
+
138
+ $this->show_msg_updated(__('Frame Display Prevention feature settings saved!', 'aiowpsecurity'));
139
+
140
+ }
141
+ ?>
142
+ <div class="postbox">
143
+ <h3><label for="title"><?php _e('Prevent Your Site From Being Displayed In a Frame', 'aiowpsecurity'); ?></label></h3>
144
+ <div class="inside">
145
+ <form action="" method="POST">
146
+ <?php wp_nonce_field('aiowpsec-prevent-display-frame'); ?>
147
+ <div class="aio_blue_box">
148
+ <?php
149
+ echo '<p>'.__('This feature allows you to prevent other sites from displaying any of your content via a frame or iframe.', 'aiowpsecurity').'</p>';
150
+ echo '<p>'.__('When enabled, this feature will set the "X-Frame-Options" paramater to "sameorigin" in the HTTP header.', 'aiowpsecurity').'</p>';
151
+ ?>
152
+ </div>
153
+ <table class="form-table">
154
+ <tr valign="top">
155
+ <th scope="row"><?php _e('Enable iFrame Protection', 'aiowpsecurity')?>:</th>
156
+ <td>
157
+ <input name="aiowps_prevent_site_display_inside_frame" type="checkbox"<?php if($aio_wp_security->configs->get_value('aiowps_prevent_site_display_inside_frame')=='1') echo ' checked="checked"'; ?> value="1"/>
158
+ <span class="description"><?php _e('Check this if you want to stop other sites from displaying your content in a frame or iframe.', 'aiowpsecurity'); ?></span>
159
+ </td>
160
+ </tr>
161
+
162
+ </table>
163
+
164
+ <div class="submit">
165
+ <input type="submit" class="button-primary" name="aiowpsec_save_frame_display_prevent" value="<?php _e('Save Settings'); ?>" />
166
+ </div>
167
+ </form>
168
+ </div></div>
169
+ <?php
170
+ }
171
+
172
  } //end class
admin/wp-security-settings-menu.php CHANGED
@@ -130,8 +130,8 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
130
  }
131
  ?>
132
  <div class="aio_grey_box">
133
- <p>For information, updates and documentation, please visit the <a href="http://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin" target="_blank">AIO WP Security & Firewall Plugin</a> Page.</p>
134
- <p><a href="http://www.tipsandtricks-hq.com/development-center" target="_blank">Follow us</a> on Twitter, Google+ or via Email to stay upto date about the new security features of this plugin.</p>
135
  </div>
136
 
137
  <div class="postbox">
@@ -354,7 +354,7 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
354
  $is_wp_config = $this->check_if_wp_config_contents($new_wp_config_file_path);
355
  if ($is_wp_config == 1)
356
  {
357
- $active_root_wp_config = ABSPATH.'wp-config.php';
358
  if (!copy($new_wp_config_file_path, $active_root_wp_config))
359
  {
360
  //Failed to make a backup copy
@@ -429,7 +429,7 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
429
  <h3><label for="title"><?php _e('View Contents of the currently active wp-config.php file', 'aiowpsecurity'); ?></label></h3>
430
  <div class="inside">
431
  <?php
432
- $wp_config_file = ABSPATH . 'wp-config.php';
433
  $wp_config_contents = AIOWPSecurity_Utility_File::get_file_contents($wp_config_file);
434
  ?>
435
  <textarea class="aio_text_area_file_output aio_width_80 aio_spacer_10_tb" rows="20" readonly><?php echo $wp_config_contents; ?></textarea>
@@ -499,10 +499,23 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
499
  }
500
 
501
 
502
- function render_tab5()
503
  {
504
  global $aio_wp_security;
505
 
 
 
 
 
 
 
 
 
 
 
 
 
 
506
  if(isset($_POST['aiowps_import_settings']))//Do form submission tasks
507
  {
508
  $nonce=$_REQUEST['_wpnonce'];
@@ -511,48 +524,78 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
511
  $aio_wp_security->debug_logger->log_debug("Nonce check failed on import AIOWPS settings!",4);
512
  die("Nonce check failed on import AIOWPS settings!");
513
  }
514
-
515
- if (empty($_POST['aiowps_import_settings_file']))
516
  {
517
  $this->show_msg_error(__('Please choose a file to import your settings from.', 'aiowpsecurity'));
518
  }
519
  else
520
  {
521
- //Let's get the uploaded import file path
522
- $submitted_import_file_path = trim($_POST['aiowps_import_settings_file']);
523
- $attachment_id = AIOWPSecurity_Utility_File::get_attachment_id_from_url($submitted_import_file_path); //we'll need this later for deleting
 
 
 
 
 
 
 
 
 
 
 
 
 
 
524
 
525
- //Verify that file chosen has valid AIOWPS settings contents
526
- $aiowps_settings_file_contents = $this->check_if_valid_aiowps_settings_file($submitted_import_file_path);
527
  if ($aiowps_settings_file_contents != -1)
528
  {
529
- //Apply the settings and delete the file
530
  $settings_array = json_decode($aiowps_settings_file_contents, true);
531
  $aiowps_settings_applied = update_option('aio_wp_security_configs', $settings_array);
532
 
533
- if (!$aiowps_settings_applied)
534
  {
535
  //Failed to import settings
536
- $aio_wp_security->debug_logger->log_debug("Import AIOWPS settings from file operation failed!",4);
537
- $this->show_msg_error(__('Import AIOWPS settings from file operation failed!','aiowpsecurity'));
538
 
539
- //Delete the uploaded settings file for security purposes
540
- wp_delete_attachment( $attachment_id, true );
541
- if ( false === wp_delete_attachment( $attachment_id, true ) ){
542
- $this->show_msg_error(__('The deletion of the import file failed. Please delete this file manually via the media menu for security purposes.', 'aiowpsecurity'));
543
- }else{
544
- $this->show_msg_updated(__('The file you uploaded was also deleted for security purposes because it contains security settings details.', 'aiowpsecurity'));
 
 
545
  }
546
  }
547
  else
548
  {
549
- //Delete the uploaded settings file for security purposes
550
- wp_delete_attachment( $attachment_id, true );
551
- if ( false === wp_delete_attachment( $attachment_id, true ) ){
552
- $this->show_msg_updated(__('Your AIOWPS settings were successfully imported.', 'aiowpsecurity'));
553
- $this->show_msg_error(__('The deletion of the import file failed. Please delete this file manually via the media menu for security purposes because it contains security settings details.', 'aiowpsecurity'));
554
- }else{
555
- $this->show_msg_updated(__('Your AIOWPS settings were successfully imported. The file you uploaded was also deleted for security purposes because it contains security settings details.', 'aiowpsecurity'));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
556
  }
557
  }
558
  }
@@ -561,18 +604,20 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
561
  //Invalid settings file
562
  $aio_wp_security->debug_logger->log_debug("The contents of your settings file appear invalid!",4);
563
  $this->show_msg_error(__('The contents of your settings file appear invalid. Please check the contents of the file you are trying to import settings from.','aiowpsecurity'));
564
- //Let's also delete the uploaded settings file for security purposes
565
- wp_delete_attachment( $attachment_id, true );
566
- if ( false === wp_delete_attachment( $attachment_id, true ) ){
567
- $this->show_msg_error(__('The deletion of the import file failed. Please delete this file manually via the media menu for security purposes.', 'aiowpsecurity'));
568
- }else{
569
- $this->show_msg_updated(__('The file you uploaded was also deleted for security purposes because it contains security settings details.', 'aiowpsecurity'));
 
 
 
570
  }
571
-
572
  }
573
  }
574
  }
575
-
576
 
577
  ?>
578
  <h2><?php _e('Export or Import Your AIOWPS Settings', 'aiowpsecurity')?></h2>
@@ -580,8 +625,8 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
580
  <?php
581
  echo '<p>'.__('This section allows you to export or import your All In One WP Security & Firewall settings.', 'aiowpsecurity');
582
  echo '<br />'.__('This can be handy if you wanted to save time by applying the settings from one site to another site.', 'aiowpsecurity').'
583
- <br />'.__('NOTE: Before importing, it is your responsibility to know what settings you are trying to import. Importing settings blindly can cause you to be locked out of your site.', 'aiowpsecurity').'
584
- <br />'.__('For Example: If a settings item rely on the domain URL then it may not work correctly when imported into a different domain.','aiowpsecurity').'
585
  </p>';
586
  ?>
587
  </div>
@@ -590,11 +635,11 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
590
  <h3><label for="title"><?php _e('Export AIOWPS Settings', 'aiowpsecurity'); ?></label></h3>
591
  <div class="inside">
592
  <form action="" method="POST">
593
- <?php wp_nonce_field('aiowpsec-export-settings-nonce'); ?>
594
  <table class="form-table">
595
  <tr valign="top">
596
- <span class="description"><?php _e('To export your All In One WP Security & Firewall settings click the button below.', 'aiowpsecurity'); ?></span>
597
- </tr>
598
  </table>
599
  <input type="submit" name="aiowps_export_settings" value="<?php _e('Export AIOWPS Settings', 'aiowpsecurity')?>" class="button-primary" />
600
  </form>
@@ -603,10 +648,10 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
603
  <h3><label for="title"><?php _e('Import AIOWPS Settings', 'aiowpsecurity'); ?></label></h3>
604
  <div class="inside">
605
  <form action="" method="POST">
606
- <?php wp_nonce_field('aiowpsec-import-settings-nonce'); ?>
607
  <table class="form-table">
608
  <tr valign="top">
609
- <span class="description"><?php _e('Use this section to import your All In One WP Security & Firewall settings from a file.', 'aiowpsecurity'); ?></span>
610
  <th scope="row"><?php _e('Import File', 'aiowpsecurity')?>:</th>
611
  <td>
612
  <input type="button" id="aiowps_import_settings_file_button" name="aiowps_import_settings_file_button" class="button rbutton" value="Select Your Import Settings File" />
@@ -617,18 +662,24 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
617
  ?>
618
  </p>
619
  </td>
620
- </tr>
 
 
 
 
 
 
621
  </table>
622
  <input type="submit" name="aiowps_import_settings" value="<?php _e('Import AIOWPS Settings', 'aiowpsecurity')?>" class="button-primary" />
623
  </form>
624
  </div></div>
625
  <?php
626
  }
627
-
628
  function check_if_wp_config_contents($wp_file)
629
  {
630
  $is_wp_config = false;
631
-
632
  $file_contents = file($wp_file);
633
 
634
  if ($file_contents == '' || $file_contents == NULL || $file_contents == false)
@@ -643,7 +694,7 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
643
  break;
644
  }
645
  else
646
- {
647
  //see if we're at the end of the section
648
  $is_wp_config = false;
649
  }
@@ -658,26 +709,38 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
658
  }
659
 
660
  }
661
-
662
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
663
  //Checks if valid aiowps settings file and returns contents as string
664
  function check_if_valid_aiowps_settings_file($wp_file)
665
  {
666
  $is_aiopws_settings = false;
667
-
668
  $file_contents = file_get_contents($wp_file);
669
 
670
  if ($file_contents == '' || $file_contents == NULL || $file_contents == false)
671
  {
672
  return -1;
673
  }
674
-
675
  //Check a known aiowps config strings to see if it is contained within this file
676
- if(strpos($file_contents, 'aiowps_enable_login_lockdown') === FALSE){
677
- $is_aiopws_settings = false;
678
- }else{
679
- $is_aiopws_settings = true;
680
- }
681
  if ($is_aiopws_settings)
682
  {
683
  return $file_contents;
130
  }
131
  ?>
132
  <div class="aio_grey_box">
133
+ <p>For information, updates and documentation, please visit the <a href="https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin" target="_blank">AIO WP Security & Firewall Plugin</a> Page.</p>
134
+ <p><a href="https://www.tipsandtricks-hq.com/development-center" target="_blank">Follow us</a> on Twitter, Google+ or via Email to stay upto date about the new security features of this plugin.</p>
135
  </div>
136
 
137
  <div class="postbox">
354
  $is_wp_config = $this->check_if_wp_config_contents($new_wp_config_file_path);
355
  if ($is_wp_config == 1)
356
  {
357
+ $active_root_wp_config = AIOWPSecurity_Utility_File::get_wp_config_file_path();
358
  if (!copy($new_wp_config_file_path, $active_root_wp_config))
359
  {
360
  //Failed to make a backup copy
429
  <h3><label for="title"><?php _e('View Contents of the currently active wp-config.php file', 'aiowpsecurity'); ?></label></h3>
430
  <div class="inside">
431
  <?php
432
+ $wp_config_file = AIOWPSecurity_Utility_File::get_wp_config_file_path();
433
  $wp_config_contents = AIOWPSecurity_Utility_File::get_file_contents($wp_config_file);
434
  ?>
435
  <textarea class="aio_text_area_file_output aio_width_80 aio_spacer_10_tb" rows="20" readonly><?php echo $wp_config_contents; ?></textarea>
499
  }
500
 
501
 
502
+ function render_tab5()
503
  {
504
  global $aio_wp_security;
505
 
506
+ global $wpdb;
507
+
508
+ $events_table_name = AIOWPSEC_TBL_EVENTS;
509
+ AIOWPSecurity_Utility::cleanup_table($events_table_name, 500);
510
+ // $key = $fields['lic_key'];
511
+ // $sql_prep1 = $wpdb->prepare("SELECT * FROM $tbl_name WHERE license_key = %s", $key);
512
+ //$retLic = $wpdb->query("SELECT count(*) FROM $events_tbl_name");
513
+ // $rows = $wpdb->get_var("select count(*) from $events_tbl_name");
514
+ //
515
+ // echo '<br />test = '.$rows.'<br />';
516
+ // var_dump($rows);
517
+
518
+
519
  if(isset($_POST['aiowps_import_settings']))//Do form submission tasks
520
  {
521
  $nonce=$_REQUEST['_wpnonce'];
524
  $aio_wp_security->debug_logger->log_debug("Nonce check failed on import AIOWPS settings!",4);
525
  die("Nonce check failed on import AIOWPS settings!");
526
  }
527
+
528
+ if (empty($_POST['aiowps_import_settings_file']) && empty($_POST['aiowps_import_settings_text']))
529
  {
530
  $this->show_msg_error(__('Please choose a file to import your settings from.', 'aiowpsecurity'));
531
  }
532
  else
533
  {
534
+ if (empty($_POST['aiowps_import_settings_file'])) {
535
+ $import_from = "text";
536
+ } else {
537
+ $import_from = "file";
538
+ }
539
+
540
+ if ($import_from == "file") {
541
+ //Let's get the uploaded import file path
542
+ $submitted_import_file_path = trim($_POST['aiowps_import_settings_file']);
543
+ $attachment_id = AIOWPSecurity_Utility_File::get_attachment_id_from_url($submitted_import_file_path); //we'll need this later for deleting
544
+
545
+ //Verify that file chosen has valid AIOWPS settings contents
546
+ $aiowps_settings_file_contents = $this->check_if_valid_aiowps_settings_file($submitted_import_file_path);
547
+ } else {
548
+ //Get the string right from the textarea. Still confirm it's in the expected format.
549
+ $aiowps_settings_file_contents = $this->check_if_valid_aiowps_settings_text($_POST['aiowps_import_settings_text']);
550
+ }
551
 
 
 
552
  if ($aiowps_settings_file_contents != -1)
553
  {
554
+ //Apply the settings and delete the file (if applicable)
555
  $settings_array = json_decode($aiowps_settings_file_contents, true);
556
  $aiowps_settings_applied = update_option('aio_wp_security_configs', $settings_array);
557
 
558
+ if (!$aiowps_settings_applied)
559
  {
560
  //Failed to import settings
561
+ $aio_wp_security->debug_logger->log_debug("Import AIOWPS settings from " . $import_from . " operation failed!",4);
562
+ $this->show_msg_error(__('Import AIOWPS settings from ' . $import_from . ' operation failed!','aiowpsecurity'));
563
 
564
+ if ($import_from == "file") {
565
+ //Delete the uploaded settings file for security purposes
566
+ wp_delete_attachment( $attachment_id, true );
567
+ if ( false === wp_delete_attachment( $attachment_id, true ) ){
568
+ $this->show_msg_error(__('The deletion of the import file failed. Please delete this file manually via the media menu for security purposes.', 'aiowpsecurity'));
569
+ }else{
570
+ $this->show_msg_updated(__('The file you uploaded was also deleted for security purposes because it contains security settings details.', 'aiowpsecurity'));
571
+ }
572
  }
573
  }
574
  else
575
  {
576
+ $aio_wp_security->configs->configs = $settings_array; //Refresh the configs global variable
577
+
578
+ //Just in case user submits partial config settings
579
+ //Run add_option_values to make sure any missing config items are at least set to default
580
+ AIOWPSecurity_Configure_Settings::add_option_values();
581
+ if ($import_from == "file") {
582
+ //Delete the uploaded settings file for security purposes
583
+ wp_delete_attachment( $attachment_id, true );
584
+ if ( false === wp_delete_attachment( $attachment_id, true ) ){
585
+ $this->show_msg_updated(__('Your AIOWPS settings were successfully imported via file input.', 'aiowpsecurity'));
586
+ $this->show_msg_error(__('The deletion of the import file failed. Please delete this file manually via the media menu for security purposes because it contains security settings details.', 'aiowpsecurity'));
587
+ }else{
588
+ $this->show_msg_updated(__('Your AIOWPS settings were successfully imported. The file you uploaded was also deleted for security purposes because it contains security settings details.', 'aiowpsecurity'));
589
+ }
590
+ } else {
591
+ $this->show_msg_updated(__('Your AIOWPS settings were successfully imported via text entry.', 'aiowpsecurity'));
592
+ }
593
+ //Now let's refresh the .htaccess file with any modified rules if applicable
594
+ $res = AIOWPSecurity_Utility_Htaccess::write_to_htaccess();
595
+
596
+ if($res == -1)
597
+ {
598
+ $this->show_msg_error(__('Could not write to the .htaccess file. Please check the file permissions.', 'aiowpsecurity'));
599
  }
600
  }
601
  }
604
  //Invalid settings file
605
  $aio_wp_security->debug_logger->log_debug("The contents of your settings file appear invalid!",4);
606
  $this->show_msg_error(__('The contents of your settings file appear invalid. Please check the contents of the file you are trying to import settings from.','aiowpsecurity'));
607
+
608
+ if ($import_from == "file") {
609
+ //Let's also delete the uploaded settings file for security purposes
610
+ wp_delete_attachment( $attachment_id, true );
611
+ if ( false === wp_delete_attachment( $attachment_id, true ) ){
612
+ $this->show_msg_error(__('The deletion of the import file failed. Please delete this file manually via the media menu for security purposes.', 'aiowpsecurity'));
613
+ }else{
614
+ $this->show_msg_updated(__('The file you uploaded was also deleted for security purposes because it contains security settings details.', 'aiowpsecurity'));
615
+ }
616
  }
617
+
618
  }
619
  }
620
  }
 
621
 
622
  ?>
623
  <h2><?php _e('Export or Import Your AIOWPS Settings', 'aiowpsecurity')?></h2>
625
  <?php
626
  echo '<p>'.__('This section allows you to export or import your All In One WP Security & Firewall settings.', 'aiowpsecurity');
627
  echo '<br />'.__('This can be handy if you wanted to save time by applying the settings from one site to another site.', 'aiowpsecurity').'
628
+ <br />'.__('NOTE: Before importing, it is your responsibility to know what settings you are trying to import. Importing settings blindly can cause you to be locked out of your site.', 'aiowpsecurity').'
629
+ <br />'.__('For Example: If a settings item relies on the domain URL then it may not work correctly when imported into a site with a different domain.','aiowpsecurity').'
630
  </p>';
631
  ?>
632
  </div>
635
  <h3><label for="title"><?php _e('Export AIOWPS Settings', 'aiowpsecurity'); ?></label></h3>
636
  <div class="inside">
637
  <form action="" method="POST">
638
+ <?php wp_nonce_field('aiowpsec-export-settings-nonce'); ?>
639
  <table class="form-table">
640
  <tr valign="top">
641
+ <span class="description"><?php _e('To export your All In One WP Security & Firewall settings click the button below.', 'aiowpsecurity'); ?></span>
642
+ </tr>
643
  </table>
644
  <input type="submit" name="aiowps_export_settings" value="<?php _e('Export AIOWPS Settings', 'aiowpsecurity')?>" class="button-primary" />
645
  </form>
648
  <h3><label for="title"><?php _e('Import AIOWPS Settings', 'aiowpsecurity'); ?></label></h3>
649
  <div class="inside">
650
  <form action="" method="POST">
651
+ <?php wp_nonce_field('aiowpsec-import-settings-nonce'); ?>
652
  <table class="form-table">
653
  <tr valign="top">
654
+ <span class="description"><?php _e('Use this section to import your All In One WP Security & Firewall settings from a file. Alternatively, copy/paste the contents of your import file into the textarea below.', 'aiowpsecurity'); ?></span>
655
  <th scope="row"><?php _e('Import File', 'aiowpsecurity')?>:</th>
656
  <td>
657
  <input type="button" id="aiowps_import_settings_file_button" name="aiowps_import_settings_file_button" class="button rbutton" value="Select Your Import Settings File" />
662
  ?>
663
  </p>
664
  </td>
665
+ </tr>
666
+ <tr valign="top">
667
+ <th scope="row"><?php _e('Copy/Paste Import Data', 'aiowpsecurity')?>:</th>
668
+ <td>
669
+ <textarea name="aiowps_import_settings_text" id="aiowps_import_settings_text" style="width:80%;height:140px;"></textarea>
670
+ </td>
671
+ </tr>
672
  </table>
673
  <input type="submit" name="aiowps_import_settings" value="<?php _e('Import AIOWPS Settings', 'aiowpsecurity')?>" class="button-primary" />
674
  </form>
675
  </div></div>
676
  <?php
677
  }
678
+
679
  function check_if_wp_config_contents($wp_file)
680
  {
681
  $is_wp_config = false;
682
+
683
  $file_contents = file($wp_file);
684
 
685
  if ($file_contents == '' || $file_contents == NULL || $file_contents == false)
694
  break;
695
  }
696
  else
697
+ {
698
  //see if we're at the end of the section
699
  $is_wp_config = false;
700
  }
709
  }
710
 
711
  }
712
+
713
+ function check_if_valid_aiowps_settings_text($strText) {
714
+ if ($this->check_is_aiopws_settings($strText)) {
715
+ return stripcslashes($strText);
716
+ } else {
717
+ return -1;
718
+ }
719
+ }
720
+
721
+ function check_is_aiopws_settings($strText) {
722
+ if(strpos($strText, 'aiowps_enable_login_lockdown') === FALSE){
723
+ return false;
724
+ } else {
725
+ return true;
726
+ }
727
+ }
728
+
729
  //Checks if valid aiowps settings file and returns contents as string
730
  function check_if_valid_aiowps_settings_file($wp_file)
731
  {
732
  $is_aiopws_settings = false;
733
+
734
  $file_contents = file_get_contents($wp_file);
735
 
736
  if ($file_contents == '' || $file_contents == NULL || $file_contents == false)
737
  {
738
  return -1;
739
  }
740
+
741
  //Check a known aiowps config strings to see if it is contained within this file
742
+ $is_aiopws_settings = $this->check_is_aiopws_settings($file_contents);
743
+
 
 
 
744
  if ($is_aiopws_settings)
745
  {
746
  return $file_contents;
admin/wp-security-spam-menu.php CHANGED
@@ -10,6 +10,7 @@ class AIOWPSecurity_Spam_Menu extends AIOWPSecurity_Admin_Menu
10
  var $menu_tabs_handler = array(
11
  'tab1' => 'render_tab1',
12
  'tab2' => 'render_tab2',
 
13
  );
14
 
15
  function __construct()
@@ -21,7 +22,8 @@ class AIOWPSecurity_Spam_Menu extends AIOWPSecurity_Admin_Menu
21
  {
22
  $this->menu_tabs = array(
23
  'tab1' => __('Comment SPAM', 'aiowpsecurity'),
24
- 'tab2' => __('Comment SPAM IP Monitoring', 'aiowpsecurity'),
 
25
  );
26
  }
27
 
@@ -289,4 +291,67 @@ class AIOWPSecurity_Spam_Menu extends AIOWPSecurity_Admin_Menu
289
  <?php
290
  }
291
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
292
  } //end class
10
  var $menu_tabs_handler = array(
11
  'tab1' => 'render_tab1',
12
  'tab2' => 'render_tab2',
13
+ 'tab3' => 'render_tab3',
14
  );
15
 
16
  function __construct()
22
  {
23
  $this->menu_tabs = array(
24
  'tab1' => __('Comment SPAM', 'aiowpsecurity'),
25
+ 'tab2' => __('Comment SPAM IP Monitoring', 'aiowpsecurity'),
26
+ 'tab3' => __('BuddyPress', 'aiowpsecurity'),
27
  );
28
  }
29
 
291
  <?php
292
  }
293
 
294
+
295
+ function render_tab3()
296
+ {
297
+ global $aiowps_feature_mgr;
298
+ global $aio_wp_security;
299
+ if(isset($_POST['aiowps_save_bp_spam_settings']))//Do form submission tasks
300
+ {
301
+ $nonce=$_REQUEST['_wpnonce'];
302
+ if (!wp_verify_nonce($nonce, 'aiowpsec-bp-spam-settings-nonce'))
303
+ {
304
+ $aio_wp_security->debug_logger->log_debug("Nonce check failed on save comment spam settings!",4);
305
+ die("Nonce check failed on save comment spam settings!");
306
+ }
307
+
308
+ //Save settings
309
+ $aio_wp_security->configs->set_value('aiowps_enable_bp_register_captcha',isset($_POST["aiowps_enable_bp_register_captcha"])?'1':'');
310
+
311
+ //Commit the config settings
312
+ $aio_wp_security->configs->save_config();
313
+
314
+ //Recalculate points after the feature status/options have been altered
315
+ $aiowps_feature_mgr->check_feature_status_and_recalculate_points();
316
+
317
+ $this->show_msg_updated(__('Settings were successfully saved', 'aiowpsecurity'));
318
+ }
319
+
320
+ ?>
321
+ <h2><?php _e('BuddyPress SPAM Settings', 'aiowpsecurity')?></h2>
322
+ <form action="" method="POST">
323
+ <?php wp_nonce_field('aiowpsec-bp-spam-settings-nonce'); ?>
324
+
325
+ <div class="postbox">
326
+ <h3><label for="title"><?php _e('Add Captcha To BuddyPress Registration Form', 'aiowpsecurity'); ?></label></h3>
327
+ <div class="inside">
328
+ <div class="aio_blue_box">
329
+ <?php
330
+ echo '<p>'.__('This feature will add a simple math captcha field in the BuddyPress registration form.', 'aiowpsecurity').
331
+ '<br />'.__('Adding a captcha field in the registration form is a simple way of greatly reducing SPAM signups from bots without using .htaccess rules.', 'aiowpsecurity').'</p>';
332
+ ?>
333
+ </div>
334
+ <?php
335
+ if (defined('BP_VERSION')){
336
+ //Display security info badge
337
+ $aiowps_feature_mgr->output_feature_details_badge("bp-register-captcha");
338
+ ?>
339
+ <table class="form-table">
340
+ <tr valign="top">
341
+ <th scope="row"><?php _e('Enable Captcha On BuddyPress Registration Form', 'aiowpsecurity')?>:</th>
342
+ <td>
343
+ <input name="aiowps_enable_bp_register_captcha" type="checkbox"<?php if($aio_wp_security->configs->get_value('aiowps_enable_bp_register_captcha')=='1') echo ' checked="checked"'; ?> value="1"/>
344
+ <span class="description"><?php _e('Check this if you want to insert a captcha field on the BuddyPress registration forms', 'aiowpsecurity'); ?></span>
345
+ </td>
346
+ </tr>
347
+ </table>
348
+ </div></div>
349
+ <input type="submit" name="aiowps_save_bp_spam_settings" value="<?php _e('Save Settings', 'aiowpsecurity')?>" class="button-primary" />
350
+ </form>
351
+ <?php
352
+ }else{
353
+ $this->show_msg_error(__('BuddyPress is not active! In order to use this feature you will need to have BuddyPress installed and activated.', 'aiowpsecurity'));
354
+ }
355
+ }
356
+
357
  } //end class
classes/grade-system/wp-security-feature-item-manager.php CHANGED
@@ -42,6 +42,7 @@ class AIOWPSecurity_Feature_Item_Manager
42
  $this->feature_items[] = new AIOWPSecurity_Feature_Item("user-login-login-lockdown", __("Login Lockdown", "aiowpsecurity"), $this->feature_point_4, $this->sec_level_basic);
43
  //Login Captcha
44
  $this->feature_items[] = new AIOWPSecurity_Feature_Item("user-login-captcha", __("Login Captcha", "aiowpsecurity"), $this->feature_point_4, $this->sec_level_basic);
 
45
  //Lost Password Captcha
46
  $this->feature_items[] = new AIOWPSecurity_Feature_Item("lost-password-captcha", __("Lost Password Captcha", "aiowpsecurity"), $this->feature_point_2, $this->sec_level_basic);
47
  //Login whitelisting
@@ -82,6 +83,8 @@ class AIOWPSecurity_Feature_Item_Manager
82
  //Brute Force Menu Features
83
  //Rename Login page
84
  $this->feature_items[] = new AIOWPSecurity_Feature_Item("bf-rename-login-page", __("Enable Rename Login Page", "aiowpsecurity"), $this->feature_point_2, $this->sec_level_inter);
 
 
85
 
86
  //Additional and Advanced firewall
87
  $this->feature_items[] = new AIOWPSecurity_Feature_Item("firewall-enable-brute-force-attack-prevention", __("Enable Brute Force Attack Prevention", "aiowpsecurity"), $this->feature_point_4, $this->sec_level_advanced);
@@ -96,6 +99,8 @@ class AIOWPSecurity_Feature_Item_Manager
96
  $this->feature_items[] = new AIOWPSecurity_Feature_Item("block-spambots", __("Block Spambots", "aiowpsecurity"), $this->feature_point_2, $this->sec_level_basic);
97
  //Comment Captcha
98
  $this->feature_items[] = new AIOWPSecurity_Feature_Item("comment-form-captcha", __("Comment Captcha", "aiowpsecurity"), $this->feature_point_4, $this->sec_level_basic);
 
 
99
 
100
  //Filescan
101
  //File change detection
@@ -183,6 +188,10 @@ class AIOWPSecurity_Feature_Item_Manager
183
  {
184
  $this->check_login_captcha_feature($item);
185
  }
 
 
 
 
186
  if($item->feature_id == "lost-password-captcha")
187
  {
188
  $this->check_lost_password_captcha_feature($item);
@@ -191,6 +200,10 @@ class AIOWPSecurity_Feature_Item_Manager
191
  {
192
  $this->check_comment_captcha_feature($item);
193
  }
 
 
 
 
194
  if($item->feature_id == "whitelist-manager-ip-login-whitelisting")
195
  {
196
  $this->check_login_whitelist_feature($item);
@@ -281,6 +294,11 @@ class AIOWPSecurity_Feature_Item_Manager
281
  $this->check_enable_rename_login_page_feature($item);
282
  }
283
 
 
 
 
 
 
284
  if($item->feature_id == "block-spambots")
285
  {
286
  $this->check_enable_block_spambots_feature($item);
@@ -389,6 +407,18 @@ class AIOWPSecurity_Feature_Item_Manager
389
  }
390
  }
391
 
 
 
 
 
 
 
 
 
 
 
 
 
392
  function check_lost_password_captcha_feature($item)
393
  {
394
  global $aio_wp_security;
@@ -413,6 +443,18 @@ class AIOWPSecurity_Feature_Item_Manager
413
  }
414
  }
415
 
 
 
 
 
 
 
 
 
 
 
 
 
416
  function check_login_whitelist_feature($item)
417
  {
418
  global $aio_wp_security;
@@ -690,6 +732,18 @@ class AIOWPSecurity_Feature_Item_Manager
690
  }
691
  }
692
 
 
 
 
 
 
 
 
 
 
 
 
 
693
  function check_enable_block_spambots_feature($item)
694
  {
695
  global $aio_wp_security;
42
  $this->feature_items[] = new AIOWPSecurity_Feature_Item("user-login-login-lockdown", __("Login Lockdown", "aiowpsecurity"), $this->feature_point_4, $this->sec_level_basic);
43
  //Login Captcha
44
  $this->feature_items[] = new AIOWPSecurity_Feature_Item("user-login-captcha", __("Login Captcha", "aiowpsecurity"), $this->feature_point_4, $this->sec_level_basic);
45
+ $this->feature_items[] = new AIOWPSecurity_Feature_Item("custom-login-captcha", __("Custom Login Captcha", "aiowpsecurity"), $this->feature_point_4, $this->sec_level_basic);
46
  //Lost Password Captcha
47
  $this->feature_items[] = new AIOWPSecurity_Feature_Item("lost-password-captcha", __("Lost Password Captcha", "aiowpsecurity"), $this->feature_point_2, $this->sec_level_basic);
48
  //Login whitelisting
83
  //Brute Force Menu Features
84
  //Rename Login page
85
  $this->feature_items[] = new AIOWPSecurity_Feature_Item("bf-rename-login-page", __("Enable Rename Login Page", "aiowpsecurity"), $this->feature_point_2, $this->sec_level_inter);
86
+ //Login Honeypot
87
+ $this->feature_items[] = new AIOWPSecurity_Feature_Item("login-honeypot", __("Enable Login Honeypot", "aiowpsecurity"), $this->feature_point_2, $this->sec_level_inter);
88
 
89
  //Additional and Advanced firewall
90
  $this->feature_items[] = new AIOWPSecurity_Feature_Item("firewall-enable-brute-force-attack-prevention", __("Enable Brute Force Attack Prevention", "aiowpsecurity"), $this->feature_point_4, $this->sec_level_advanced);
99
  $this->feature_items[] = new AIOWPSecurity_Feature_Item("block-spambots", __("Block Spambots", "aiowpsecurity"), $this->feature_point_2, $this->sec_level_basic);
100
  //Comment Captcha
101
  $this->feature_items[] = new AIOWPSecurity_Feature_Item("comment-form-captcha", __("Comment Captcha", "aiowpsecurity"), $this->feature_point_4, $this->sec_level_basic);
102
+ //BuddyPress Registration Captcha
103
+ $this->feature_items[] = new AIOWPSecurity_Feature_Item("bp-register-captcha", __("BuddyPress Registration Captcha", "aiowpsecurity"), $this->feature_point_1, $this->sec_level_basic);
104
 
105
  //Filescan
106
  //File change detection
188
  {
189
  $this->check_login_captcha_feature($item);
190
  }
191
+ if($item->feature_id == "custom-login-captcha")
192
+ {
193
+ $this->check_custom_login_captcha_feature($item);
194
+ }
195
  if($item->feature_id == "lost-password-captcha")
196
  {
197
  $this->check_lost_password_captcha_feature($item);
200
  {
201
  $this->check_comment_captcha_feature($item);
202
  }
203
+ if($item->feature_id == "bp-register-captcha")
204
+ {
205
+ $this->check_bp_register_captcha_feature($item);
206
+ }
207
  if($item->feature_id == "whitelist-manager-ip-login-whitelisting")
208
  {
209
  $this->check_login_whitelist_feature($item);
294
  $this->check_enable_rename_login_page_feature($item);
295
  }
296
 
297
+ if($item->feature_id == "login-honeypot")
298
+ {
299
+ $this->check_enable_login_honeypot_feature($item);
300
+ }
301
+
302
  if($item->feature_id == "block-spambots")
303
  {
304
  $this->check_enable_block_spambots_feature($item);
407
  }
408
  }
409
 
410
+ function check_custom_login_captcha_feature($item)
411
+ {
412
+ global $aio_wp_security;
413
+ if ($aio_wp_security->configs->get_value('aiowps_enable_custom_login_captcha') == '1') {
414
+ $item->set_feature_status($this->feature_active);
415
+ }
416
+ else
417
+ {
418
+ $item->set_feature_status($this->feature_inactive);
419
+ }
420
+ }
421
+
422
  function check_lost_password_captcha_feature($item)
423
  {
424
  global $aio_wp_security;
443
  }
444
  }
445
 
446
+ function check_bp_register_captcha_feature($item)
447
+ {
448
+ global $aio_wp_security;
449
+ if ($aio_wp_security->configs->get_value('aiowps_enable_bp_register_captcha') == '1') {
450
+ $item->set_feature_status($this->feature_active);
451
+ }
452
+ else
453
+ {
454
+ $item->set_feature_status($this->feature_inactive);
455
+ }
456
+ }
457
+
458
  function check_login_whitelist_feature($item)
459
  {
460
  global $aio_wp_security;
732
  }
733
  }
734
 
735
+ function check_enable_login_honeypot_feature($item)
736
+ {
737
+ global $aio_wp_security;
738
+ if ($aio_wp_security->configs->get_value('aiowps_enable_login_honeypot') == '1') {
739
+ $item->set_feature_status($this->feature_active);
740
+ }
741
+ else
742
+ {
743
+ $item->set_feature_status($this->feature_inactive);
744
+ }
745
+ }
746
+
747
  function check_enable_block_spambots_feature($item)
748
  {
749
  global $aio_wp_security;
classes/wp-security-backup.php CHANGED
@@ -8,6 +8,7 @@ class AIOWPSecurity_Backup
8
  function __construct()
9
  {
10
  add_action('aiowps_perform_scheduled_backup_tasks', array(&$this, 'aiowps_scheduled_backup_handler'));
 
11
  }
12
 
13
  /**
@@ -31,6 +32,10 @@ class AIOWPSecurity_Backup
31
  {
32
  //get all of the tables
33
  $tables = $wpdb->get_results( 'SHOW TABLES', ARRAY_N );
 
 
 
 
34
  }
35
 
36
  $return = '';
@@ -43,6 +48,9 @@ class AIOWPSecurity_Backup
43
 
44
  $return.= 'DROP TABLE IF EXISTS `' . $table[0] . '`;';
45
  $row2 = $wpdb->get_row( 'SHOW CREATE TABLE `' . $table[0] . '`;', ARRAY_N );
 
 
 
46
  $return.= PHP_EOL . PHP_EOL . $row2[1] . ";" . PHP_EOL . PHP_EOL;
47
 
48
  foreach( $result as $row )
@@ -83,7 +91,7 @@ class AIOWPSecurity_Backup
83
  }
84
 
85
  //Generate a random prefix for more secure filenames
86
- $random_prefix = $random_prefix = AIOWPSecurity_Utility::generate_alpha_numeric_random_string(10);
87
 
88
  if ($is_multi_site)
89
  {
@@ -127,6 +135,7 @@ class AIOWPSecurity_Backup
127
  $fw_res = @fwrite( $handle, $return );
128
  if (!$fw_res)
129
  {
 
130
  return false;
131
  }
132
  @fclose( $handle );
@@ -173,7 +182,10 @@ class AIOWPSecurity_Backup
173
  }
174
 
175
  $to = $toaddress;
176
- $headers = 'From: ' . get_option( 'blogname' ) . ' <' . get_option('admin_email') . '>' . PHP_EOL;
 
 
 
177
  $subject = __( 'All In One WP Security - Site Database Backup', 'aiowpsecurity' ) . ' ' . date( 'l, F jS, Y \a\\t g:i a', current_time( 'timestamp' ) );
178
  $attachment = array( $this->last_backup_file_path );
179
  $message = __( 'Attached is your latest DB backup file for site URL', 'aiowpsecurity' ) . ' ' . get_option( 'siteurl' ) . __( ' generated on', 'aiowpsecurity' ) . ' ' . date( 'l, F jS, Y \a\\t g:i a', current_time( 'timestamp' ) );
@@ -258,4 +270,19 @@ class AIOWPSecurity_Backup
258
  }
259
  }
260
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  }
8
  function __construct()
9
  {
10
  add_action('aiowps_perform_scheduled_backup_tasks', array(&$this, 'aiowps_scheduled_backup_handler'));
11
+ add_action('aiowps_perform_db_cleanup_tasks', array(&$this, 'aiowps_scheduled_db_cleanup_handler'));
12
  }
13
 
14
  /**
32
  {
33
  //get all of the tables
34
  $tables = $wpdb->get_results( 'SHOW TABLES', ARRAY_N );
35
+ if(empty($tables)){
36
+ $aio_wp_security->debug_logger->log_debug("execute_backup() - no tables found!",4);
37
+ return FALSE;
38
+ }
39
  }
40
 
41
  $return = '';
48
 
49
  $return.= 'DROP TABLE IF EXISTS `' . $table[0] . '`;';
50
  $row2 = $wpdb->get_row( 'SHOW CREATE TABLE `' . $table[0] . '`;', ARRAY_N );
51
+ if(empty($row2)){
52
+ $aio_wp_security->debug_logger->log_debug("execute_backup() - get_row returned NULL for table: ".$table[0],4);
53
+ }
54
  $return.= PHP_EOL . PHP_EOL . $row2[1] . ";" . PHP_EOL . PHP_EOL;
55
 
56
  foreach( $result as $row )
91
  }
92
 
93
  //Generate a random prefix for more secure filenames
94
+ $random_prefix = AIOWPSecurity_Utility::generate_alpha_numeric_random_string(10);
95
 
96
  if ($is_multi_site)
97
  {
135
  $fw_res = @fwrite( $handle, $return );
136
  if (!$fw_res)
137
  {
138
+ $aio_wp_security->debug_logger->log_debug("execute_backup() - Write to DB backup file failed",4);
139
  return false;
140
  }
141
  @fclose( $handle );
182
  }
183
 
184
  $to = $toaddress;
185
+ $site_title = get_bloginfo( 'name' );
186
+ $from_name = empty($site_title)?'WordPress':$site_title;
187
+
188
+ $headers = 'From: ' . $from_name . ' <' . get_option('admin_email') . '>' . PHP_EOL;
189
  $subject = __( 'All In One WP Security - Site Database Backup', 'aiowpsecurity' ) . ' ' . date( 'l, F jS, Y \a\\t g:i a', current_time( 'timestamp' ) );
190
  $attachment = array( $this->last_backup_file_path );
191
  $message = __( 'Attached is your latest DB backup file for site URL', 'aiowpsecurity' ) . ' ' . get_option( 'siteurl' ) . __( ' generated on', 'aiowpsecurity' ) . ' ' . date( 'l, F jS, Y \a\\t g:i a', current_time( 'timestamp' ) );
270
  }
271
  }
272
  }
273
+
274
+
275
+ function aiowps_scheduled_db_cleanup_handler()
276
+ {
277
+ global $aio_wp_security;
278
+
279
+ $aio_wp_security->debug_logger->log_debug_cron("DB Cleanup - checking if a cleanup needs to be done now...");
280
+ //Check the events table because this can grow quite large especially when 404 events are being logged
281
+ $events_table_name = AIOWPSEC_TBL_EVENTS;
282
+ $max_rows_event_table = '5000'; //Keep a max of 5000 rows in the events table
283
+ $max_rows_event_table = apply_filters( 'aiowps_max_rows_event_table', $max_rows_event_table );
284
+ AIOWPSecurity_Utility::cleanup_table($events_table_name, $max_rows_event_table);
285
+
286
+ //Keep adding other DB cleanup tasks as they arise...
287
+ }
288
  }
classes/wp-security-captcha.php CHANGED
@@ -9,6 +9,11 @@ class AIOWPSecurity_Captcha
9
 
10
  function display_captcha_form()
11
  {
 
 
 
 
 
12
  $cap_form = '<p class="aiowps-captcha"><label>'.__('Please enter an answer in digits:','aiowpsecurity').'</label>';
13
  $cap_form .= '<div class="aiowps-captcha-equation"><strong>';
14
  $maths_question_output = $this->generate_maths_question();
9
 
10
  function display_captcha_form()
11
  {
12
+ global $aio_wp_security;
13
+ if($aio_wp_security->configs->get_value('aiowps_enable_bp_register_captcha') == '1' && defined('BP_VERSION')){
14
+ //if buddy press feature active add action hook so buddy press can display our errors properly on bp registration form
15
+ do_action( 'bp_aiowps-captcha-answer_errors' );
16
+ }
17
  $cap_form = '<p class="aiowps-captcha"><label>'.__('Please enter an answer in digits:','aiowpsecurity').'</label>';
18
  $cap_form .= '<div class="aiowps-captcha-equation"><strong>';
19
  $maths_question_output = $this->generate_maths_question();
classes/wp-security-configure-settings.php CHANGED
@@ -36,6 +36,7 @@ class AIOWPSecurity_Configure_Settings
36
 
37
  //Captcha feature
38
  $aio_wp_security->configs->set_value('aiowps_enable_login_captcha','');//Checkbox
 
39
  $aio_wp_security->configs->set_value('aiowps_enable_lost_password_captcha','');//Checkbox
40
  $aio_wp_security->configs->set_value('aiowps_captcha_secret_key',AIOWPSecurity_Utility::generate_alpha_numeric_random_string(20));//Hidden secret value which will be used to do some captcha processing. This will be assigned a random string generated when captcha settings saved
41
 
@@ -84,6 +85,7 @@ class AIOWPSecurity_Configure_Settings
84
 
85
  //Brute Force features
86
  $aio_wp_security->configs->set_value('aiowps_enable_rename_login_page','');//Checkbox
 
87
 
88
  $aio_wp_security->configs->set_value('aiowps_enable_brute_force_attack_prevention','');//Checkbox
89
  $aio_wp_security->configs->set_value('aiowps_brute_force_secret_word','');
@@ -114,6 +116,9 @@ class AIOWPSecurity_Configure_Settings
114
  //Misc Options
115
  //Copy protection feature
116
  $aio_wp_security->configs->set_value('aiowps_copy_protection','');//Checkbox
 
 
 
117
 
118
  //TODO - keep adding default options for any fields that require it
119
 
@@ -155,6 +160,7 @@ class AIOWPSecurity_Configure_Settings
155
  $aio_wp_security->configs->add_value('aiowps_allowed_ip_addresses','');
156
  //Captcha feature
157
  $aio_wp_security->configs->add_value('aiowps_enable_login_captcha','');//Checkbox
 
158
  $aio_wp_security->configs->add_value('aiowps_captcha_secret_key',AIOWPSecurity_Utility::generate_alpha_numeric_random_string(20));//Hidden secret value which will be used to do some captcha processing. This will be assigned a random string generated when captcha settings saved
159
 
160
  //User registration
@@ -199,6 +205,7 @@ class AIOWPSecurity_Configure_Settings
199
 
200
  //Brute Force features
201
  $aio_wp_security->configs->add_value('aiowps_enable_rename_login_page','');//Checkbox
 
202
 
203
  $aio_wp_security->configs->add_value('aiowps_enable_brute_force_attack_prevention','');//Checkbox
204
  $aio_wp_security->configs->add_value('aiowps_brute_force_secret_word','');
@@ -229,6 +236,8 @@ class AIOWPSecurity_Configure_Settings
229
  //Misc Options
230
  //Copy protection feature
231
  $aio_wp_security->configs->add_value('aiowps_copy_protection','');//Checkbox
 
 
232
 
233
 
234
  //TODO - keep adding default options for any fields that require it
@@ -240,6 +249,13 @@ class AIOWPSecurity_Configure_Settings
240
  static function turn_off_all_security_features()
241
  {
242
  AIOWPSecurity_Configure_Settings::set_default_settings();
 
 
 
 
 
 
 
243
  }
244
 
245
  static function turn_off_all_firewall_rules()
@@ -266,16 +282,18 @@ class AIOWPSecurity_Configure_Settings
266
  $aio_wp_security->configs->set_value('aiowps_enable_404_logging','');//Checkbox
267
  $aio_wp_security->configs->set_value('aiowps_enable_404_IP_lockout','');//Checkbox
268
 
 
 
 
269
  $aio_wp_security->configs->save_config();
270
- }
 
 
271
 
272
- static function restore_to_factory_default()
273
- {
274
- //TOOD - complete the implementation
275
- //restore wp_config_file();//TODO - //TODO - write implementation in the utility class
276
- //restore site_htaccess_file();//TODO - write implementation in the utility class
277
- //AIOWPSecurity_Configure_Settings::set_default_settings();
278
- //Maybe allow them to revert the DB Prefix too?
279
- //File permissions
280
  }
 
281
  }
36
 
37
  //Captcha feature
38
  $aio_wp_security->configs->set_value('aiowps_enable_login_captcha','');//Checkbox
39
+ $aio_wp_security->configs->set_value('aiowps_enable_custom_login_captcha','');//Checkbox
40
  $aio_wp_security->configs->set_value('aiowps_enable_lost_password_captcha','');//Checkbox
41
  $aio_wp_security->configs->set_value('aiowps_captcha_secret_key',AIOWPSecurity_Utility::generate_alpha_numeric_random_string(20));//Hidden secret value which will be used to do some captcha processing. This will be assigned a random string generated when captcha settings saved
42
 
85
 
86
  //Brute Force features
87
  $aio_wp_security->configs->set_value('aiowps_enable_rename_login_page','');//Checkbox
88
+ $aio_wp_security->configs->set_value('aiowps_enable_login_honeypot','');//Checkbox
89
 
90
  $aio_wp_security->configs->set_value('aiowps_enable_brute_force_attack_prevention','');//Checkbox
91
  $aio_wp_security->configs->set_value('aiowps_brute_force_secret_word','');
116
  //Misc Options
117
  //Copy protection feature
118
  $aio_wp_security->configs->set_value('aiowps_copy_protection','');//Checkbox
119
+ //Prevent others from dislaying your site in iframe
120
+ $aio_wp_security->configs->set_value('aiowps_prevent_site_display_inside_frame','');//Checkbox
121
+
122
 
123
  //TODO - keep adding default options for any fields that require it
124
 
160
  $aio_wp_security->configs->add_value('aiowps_allowed_ip_addresses','');
161
  //Captcha feature
162
  $aio_wp_security->configs->add_value('aiowps_enable_login_captcha','');//Checkbox
163
+ $aio_wp_security->configs->add_value('aiowps_enable_custom_login_captcha','');//Checkbox
164
  $aio_wp_security->configs->add_value('aiowps_captcha_secret_key',AIOWPSecurity_Utility::generate_alpha_numeric_random_string(20));//Hidden secret value which will be used to do some captcha processing. This will be assigned a random string generated when captcha settings saved
165
 
166
  //User registration
205
 
206
  //Brute Force features
207
  $aio_wp_security->configs->add_value('aiowps_enable_rename_login_page','');//Checkbox
208
+ $aio_wp_security->configs->add_value('aiowps_enable_login_honeypot','');//Checkbox
209
 
210
  $aio_wp_security->configs->add_value('aiowps_enable_brute_force_attack_prevention','');//Checkbox
211
  $aio_wp_security->configs->add_value('aiowps_brute_force_secret_word','');
236
  //Misc Options
237
  //Copy protection feature
238
  $aio_wp_security->configs->add_value('aiowps_copy_protection','');//Checkbox
239
+ //Prevent others from dislaying your site in iframe
240
+ $aio_wp_security->configs->add_value('aiowps_prevent_site_display_inside_frame','');//Checkbox
241
 
242
 
243
  //TODO - keep adding default options for any fields that require it
249
  static function turn_off_all_security_features()
250
  {
251
  AIOWPSecurity_Configure_Settings::set_default_settings();
252
+
253
+ //Refresh the .htaccess file based on the new settings
254
+ $res = AIOWPSecurity_Utility_Htaccess::write_to_htaccess();
255
+ if($res == -1)
256
+ {
257
+ $aio_wp_security->debug_logger->log_debug("AIOWPSecurity_Configure_Settings::turn_off_all_firewall_rules() - Could not write to the .htaccess file. Please check the file permissions.",4);
258
+ }
259
  }
260
 
261
  static function turn_off_all_firewall_rules()
282
  $aio_wp_security->configs->set_value('aiowps_enable_404_logging','');//Checkbox
283
  $aio_wp_security->configs->set_value('aiowps_enable_404_IP_lockout','');//Checkbox
284
 
285
+ //Prevent Image Hotlinks
286
+ $aio_wp_security->configs->set_value('aiowps_prevent_hotlinking','');//Checkbox
287
+
288
  $aio_wp_security->configs->save_config();
289
+
290
+ //Refresh the .htaccess file based on the new settings
291
+ $res = AIOWPSecurity_Utility_Htaccess::write_to_htaccess();
292
 
293
+ if($res == -1)
294
+ {
295
+ $aio_wp_security->debug_logger->log_debug("AIOWPSecurity_Configure_Settings::turn_off_all_firewall_rules() - Could not write to the .htaccess file. Please check the file permissions.",4);
296
+ }
 
 
 
 
297
  }
298
+
299
  }
classes/wp-security-cronjob-handler.php CHANGED
@@ -4,7 +4,7 @@ class AIOWPSecurity_Cronjob_Handler {
4
  function __construct()
5
  {
6
  add_action ('aiowps_hourly_cron_event', array(&$this, 'aiowps_hourly_cron_event_handler'));
7
- //add_action ('aiowps_daily_cron_event', array(&$this, 'aiowps_daily_cron_event_handler'));
8
  }
9
 
10
  function aiowps_hourly_cron_event_handler()
@@ -19,10 +19,14 @@ class AIOWPSecurity_Cronjob_Handler {
19
  do_action('aiowps_perform_fcd_scan_tasks');
20
  }
21
 
22
- // function aiowps_daily_cron_event_handler()
23
- // {
24
- //
25
- // }
 
 
 
 
26
 
27
  }
28
 
4
  function __construct()
5
  {
6
  add_action ('aiowps_hourly_cron_event', array(&$this, 'aiowps_hourly_cron_event_handler'));
7
+ add_action ('aiowps_daily_cron_event', array(&$this, 'aiowps_daily_cron_event_handler'));
8
  }
9
 
10
  function aiowps_hourly_cron_event_handler()
19
  do_action('aiowps_perform_fcd_scan_tasks');
20
  }
21
 
22
+ function aiowps_daily_cron_event_handler()
23
+ {
24
+ //Do stuff that needs checking daily
25
+ global $aio_wp_security;
26
+ $aio_wp_security->debug_logger->log_debug_cron("Cronjob_Handler - Daily cron handler got fired.");
27
+
28
+ do_action('aiowps_perform_db_cleanup_tasks');
29
+ }
30
 
31
  }
32
 
classes/wp-security-deactivation-tasks.php CHANGED
@@ -5,53 +5,13 @@ class AIOWPSecurity_Deactivation
5
  static function run_deactivation_tasks()
6
  {
7
  global $wpdb;
8
- if (function_exists('is_multisite') && is_multisite())
9
- {
10
- // check if it is a network activation - if so, run the activation function for each blog id
11
- if (isset($_GET['networkwide']) && ($_GET['networkwide'] == 1))
12
- {
13
- $old_blog = $wpdb->blogid;
14
- // Get all blog ids
15
- $blogids = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs");
16
- foreach ($blogids as $blog_id) {
17
- switch_to_blog($blog_id);
18
- }
19
- switch_to_blog($old_blog);
20
- return;
21
- }
22
- }
23
-
24
- //Let's backup .htaccess contents when AIOWPS was active
25
- $ht_file = ABSPATH . '.htaccess';
26
- $key_desc_ht_backup = 'aiowps_htaccess_backup'; //This will be the key to decribe the entry we are inserting into the global_meta table
27
- AIOWPSecurity_Utility_File::backup_file_contents_to_db($ht_file, $key_desc_ht_backup); //Store the original htaccess contents in our global_meta table (ie, before AIOWPS was active)
28
-
29
- //Let's backup wp_config.php contents
30
- $wp_config_file = ABSPATH . 'wp-config.php';
31
- $key_desc_wp_config_backup = 'aiowps_wp_config_php_backup'; //This will be the key to decribe the entry we are inserting into the global_meta table
32
- AIOWPSecurity_Utility_File::backup_file_contents_to_db($wp_config_file, $key_desc_wp_config_backup); //Store the original htaccess contents in our global_meta table (ie, before AIOWPS was active)
33
 
34
- //Restore original contents of .htaccess file upon deactivation
35
- $htaccess_file_contents = AIOWPSecurity_Deactivation::get_original_file_contents('original_htaccess_backup');
36
- if ($htaccess_file_contents)
37
- {
38
- if (file_put_contents($ht_file, $htaccess_file_contents) === false)
39
- {
40
- //File write failed
41
- $aio_wp_security->debug_logger->log_debug("AIOWPSecurity_Deactivation::run_deactivation_tasks() - Failed to write to .htaccess file",4);
42
- }
43
- }
44
 
45
- //Restore original contents of wp-config.php file upon deactivation
46
- $wp_config_file_contents = AIOWPSecurity_Deactivation::get_original_file_contents('original_wp_config_php_backup');
47
- if ($wp_config_file_contents)
48
- {
49
- if (file_put_contents($wp_config_file, $wp_config_file_contents) === false)
50
- {
51
- //File write failed
52
- $aio_wp_security->debug_logger->log_debug("AIOWPSecurity_Deactivation::run_deactivation_tasks() - Failed to write to wp-config.php file",4);
53
- }
54
- }
55
  }
56
 
57
  static function get_original_file_contents($key_description)
5
  static function run_deactivation_tasks()
6
  {
7
  global $wpdb;
8
+ global $aio_wp_security;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
 
10
+ //Let's first save the current aio_wp_security_configs options in a temp option
11
+ update_option('aiowps_temp_configs', $aio_wp_security->configs->configs);
 
 
 
 
 
 
 
 
12
 
13
+ //Deactivate all firewall and other .htaccess rules
14
+ AIOWPSecurity_Configure_Settings::turn_off_all_firewall_rules();
 
 
 
 
 
 
 
 
15
  }
16
 
17
  static function get_original_file_contents($key_description)
classes/wp-security-file-scan.php CHANGED
@@ -58,10 +58,22 @@ class AIOWPSecurity_Scan
58
  }
59
 
60
  $to = $toaddress;
61
- $headers = 'From: ' . get_option( 'blogname' ) . ' <' . get_option('admin_email') . '>' . PHP_EOL;
 
 
 
62
  $subject = __( 'All In One WP Security - File change detected!', 'aiowpsecurity' ) . ' ' . date( 'l, F jS, Y \a\\t g:i a', current_time( 'timestamp' ) );
63
  //$attachment = array();
64
  $message = __( 'A file change was detected on your system for site URL', 'aiowpsecurity' ) . ' ' . get_option( 'siteurl' ) . __( '. Scan was generated on', 'aiowpsecurity' ) . ' ' . date( 'l, F jS, Y \a\\t g:i a', current_time( 'timestamp' ) );
 
 
 
 
 
 
 
 
 
65
  $message .= "\r\n".__( 'Login to your site to view the scan details.', 'aiowpsecurity' );
66
 
67
  wp_mail( $to, $subject, $message, $headers );
@@ -199,6 +211,9 @@ class AIOWPSecurity_Scan
199
  }
200
  //Let's omit specific files or directories from the scan which were specified in the settings
201
  $filename = $fileinfo->getPathname();
 
 
 
202
  $files_to_skip = $aio_wp_security->configs->get_value('aiowps_fcd_exclude_files');
203
  if (!empty($files_to_skip))
204
  {
@@ -659,4 +674,68 @@ class AIOWPSecurity_Scan
659
  return $scan_complete_msg.$disclaimer.$output;
660
  }
661
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
662
  }
58
  }
59
 
60
  $to = $toaddress;
61
+ $site_title = get_bloginfo( 'name' );
62
+ $from_name = empty($site_title)?'WordPress':$site_title;
63
+
64
+ $headers = 'From: ' . $from_name . ' <' . get_option('admin_email') . '>' . PHP_EOL;
65
  $subject = __( 'All In One WP Security - File change detected!', 'aiowpsecurity' ) . ' ' . date( 'l, F jS, Y \a\\t g:i a', current_time( 'timestamp' ) );
66
  //$attachment = array();
67
  $message = __( 'A file change was detected on your system for site URL', 'aiowpsecurity' ) . ' ' . get_option( 'siteurl' ) . __( '. Scan was generated on', 'aiowpsecurity' ) . ' ' . date( 'l, F jS, Y \a\\t g:i a', current_time( 'timestamp' ) );
68
+ $message .= "\r\n\r\n".__( 'A summary of the scan results is shown below:', 'aiowpsecurity' );
69
+ $scan_res_unserialized = self::get_file_change_data();
70
+ $scan_results_message = '';
71
+ if($scan_res_unserialized !== false){
72
+ $scan_results_message = self::get_file_change_summary($scan_res_unserialized);
73
+ }
74
+
75
+ $message .= "\r\n\r\n";
76
+ $message .= $scan_results_message;
77
  $message .= "\r\n".__( 'Login to your site to view the scan details.', 'aiowpsecurity' );
78
 
79
  wp_mail( $to, $subject, $message, $headers );
211
  }
212
  //Let's omit specific files or directories from the scan which were specified in the settings
213
  $filename = $fileinfo->getPathname();
214
+ if(file_exists($filename) === FALSE){
215
+ continue; //if file doesn't exist move on to next iteration
216
+ }
217
  $files_to_skip = $aio_wp_security->configs->get_value('aiowps_fcd_exclude_files');
218
  if (!empty($files_to_skip))
219
  {
674
  return $scan_complete_msg.$disclaimer.$output;
675
  }
676
  }
677
+
678
+ static function get_file_change_data()
679
+ {
680
+ global $wpdb, $aio_wp_security;
681
+ //Let's get the results array from the DB
682
+ $tbl_name = AIOWPSEC_TBL_GLOBAL_META_DATA;
683
+ $key = 'file_change_detection';
684
+ $sql_prep = $wpdb->prepare("SELECT * FROM $tbl_name WHERE meta_key1 = %s", $key);
685
+ $scan_db_data = $wpdb->get_row($sql_prep, ARRAY_A);
686
+ if ($scan_db_data === NULL)
687
+ {
688
+ $aio_wp_security->debug_logger->log_debug("display_last_scan_results() - DB query for scan results data from global meta table returned NULL!",4);
689
+ return FALSE;
690
+ }
691
+ $date_last_scan = $scan_db_data['date_time'];
692
+ $scan_results_unserialized = maybe_unserialize($scan_db_data['meta_value5']);
693
+ if (empty($scan_results_unserialized['files_added']) && empty($scan_results_unserialized['files_removed']) && empty($scan_results_unserialized['files_changed'])){
694
+ //No file change detected
695
+ return FALSE;
696
+ }else{
697
+ return $scan_results_unserialized;
698
+ }
699
+
700
+ }
701
+
702
+ static function get_file_change_summary($scan_results_unserialized)
703
+ {
704
+ $scan_summary = "";
705
+ $files_added_output = "";
706
+ $files_removed_output = "";
707
+ $files_changed_output = "";
708
+ if (!empty($scan_results_unserialized['files_added']))
709
+ {
710
+ //Output of files added
711
+ $files_added_output .= "\r\n".__('The following files were added to your host', 'aiowpsecurity').":\r\n";
712
+ foreach ($scan_results_unserialized['files_added'] as $key=>$value) {
713
+ $files_added_output .= "\r\n".$key.' ('.__('modified on: ', 'aiowpsecurity').date('Y-m-d H:i:s',$value['last_modified']).')';
714
+ }
715
+ $files_added_output .= "\r\n======================================";
716
+ }
717
+ if (!empty($scan_results_unserialized['files_removed']))
718
+ {
719
+ //Output of files removed
720
+ $files_removed_output .= "\r\n".__('The following files were removed from your host', 'aiowpsecurity').":\r\n";
721
+ foreach ($scan_results_unserialized['files_removed'] as $key=>$value) {
722
+ $files_removed_output .= "\r\n".$key.' ('.__('modified on: ', 'aiowpsecurity').date('Y-m-d H:i:s',$value['last_modified']).')';
723
+ }
724
+ $files_removed_output .= "\r\n======================================";
725
+ }
726
+
727
+ if (!empty($scan_results_unserialized['files_changed']))
728
+ {
729
+ //Output of files changed
730
+ $files_changed_output .= "\r\n".__('The following files were changed on your host', 'aiowpsecurity').":\r\n";
731
+ foreach ($scan_results_unserialized['files_changed'] as $key=>$value) {
732
+ $files_changed_output .= "\r\n".$key.' ('.__('modified on: ', 'aiowpsecurity').date('Y-m-d H:i:s',$value['last_modified']).')';
733
+ }
734
+ $files_changed_output .= "\r\n======================================";
735
+ }
736
+
737
+ $scan_summary .= $files_added_output . $files_removed_output . $files_changed_output;
738
+ return $scan_summary;
739
+ }
740
+
741
  }
classes/wp-security-general-init-tasks.php CHANGED
@@ -5,16 +5,42 @@ class AIOWPSecurity_General_Init_Tasks
5
  function __construct(){
6
  global $aio_wp_security;
7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  if($aio_wp_security->configs->get_value('aiowps_remove_wp_generator_meta_info') == '1'){
9
  add_filter('the_generator', array(&$this,'remove_wp_generator_meta_info'));
10
  }
11
 
12
  //For the cookie based brute force prevention feature
13
- $bfcf_secret_word = $aio_wp_security->configs->get_value('aiowps_brute_force_secret_word');
14
- if(isset($_GET[$bfcf_secret_word])){
15
- //If URL contains secret word in query param then set cookie and then redirect to the login page
16
- AIOWPSecurity_Utility::set_cookie_value($bfcf_secret_word, "1");
17
- AIOWPSecurity_Utility::redirect_to_url(AIOWPSEC_WP_URL."/wp-admin");
 
 
18
  }
19
 
20
  //For user unlock request feature
@@ -30,7 +56,17 @@ class AIOWPSecurity_General_Init_Tasks
30
  $unlock_key = strip_tags($_GET['aiowps_auth_key']);
31
  AIOWPSecurity_User_Login::process_unlock_request($unlock_key);
32
  }
33
-
 
 
 
 
 
 
 
 
 
 
34
  //For 404 IP lockout feature
35
  if($aio_wp_security->configs->get_value('aiowps_enable_404_IP_lockout') == '1'){
36
  if (!is_user_logged_in() || !current_user_can('administrator')) {
@@ -38,6 +74,7 @@ class AIOWPSecurity_General_Init_Tasks
38
  }
39
  }
40
 
 
41
  //For login captcha feature
42
  if($aio_wp_security->configs->get_value('aiowps_enable_login_captcha') == '1'){
43
  if (!is_user_logged_in()) {
@@ -45,6 +82,20 @@ class AIOWPSecurity_General_Init_Tasks
45
  }
46
  }
47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  //For lost password captcha feature
49
  if($aio_wp_security->configs->get_value('aiowps_enable_lost_password_captcha') == '1'){
50
  if (!is_user_logged_in()) {
@@ -73,7 +124,6 @@ class AIOWPSecurity_General_Init_Tasks
73
  }
74
  }
75
  }
76
-
77
 
78
  //For comment captcha feature
79
  if (AIOWPSecurity_Utility::is_multisite_install()){
@@ -93,6 +143,13 @@ class AIOWPSecurity_General_Init_Tasks
93
  }
94
  }
95
 
 
 
 
 
 
 
 
96
  //For feature which displays logged in users
97
  $this->update_logged_in_user_transient();
98
 
@@ -111,6 +168,11 @@ class AIOWPSecurity_General_Init_Tasks
111
 
112
  }
113
 
 
 
 
 
 
114
  function remove_wp_generator_meta_info()
115
  {
116
  return '';
@@ -137,7 +199,6 @@ class AIOWPSecurity_General_Init_Tasks
137
  $current_user_ip = AIOWPSecurity_Utility_IP::get_user_ip_address();
138
  // get the logged in users list from transients entry
139
  $logged_in_users = (AIOWPSecurity_Utility::is_multisite_install() ? get_site_transient('users_online') : get_transient('users_online'));
140
- // $logged_in_users = get_transient('users_online');
141
  $current_user = wp_get_current_user();
142
  $current_user = $current_user->ID;
143
  $current_time = current_time('timestamp');
@@ -148,7 +209,6 @@ class AIOWPSecurity_General_Init_Tasks
148
  $logged_in_users = array();
149
  $logged_in_users[] = $current_user_info;
150
  AIOWPSecurity_Utility::is_multisite_install() ? set_site_transient('users_online', $logged_in_users, 30 * 60) : set_transient('users_online', $logged_in_users, 30 * 60);
151
- // set_transient('users_online', $logged_in_users, 30 * 60); //Set transient with the data obtained above and also set the expire to 30min
152
  }
153
  else
154
  {
@@ -188,6 +248,18 @@ class AIOWPSecurity_General_Init_Tasks
188
  }
189
  }
190
 
 
 
 
 
 
 
 
 
 
 
 
 
191
  function insert_captcha_question_form_multi($error)
192
  {
193
  global $aio_wp_security;
@@ -216,6 +288,12 @@ class AIOWPSecurity_General_Init_Tasks
216
  global $aio_wp_security;
217
  $aio_wp_security->captcha_obj->display_captcha_form();
218
  }
 
 
 
 
 
 
219
 
220
  function process_comment_post( $comment )
221
  {
@@ -287,6 +365,33 @@ class AIOWPSecurity_General_Init_Tasks
287
  AIOWPSecurity_Utility::event_logger('404');
288
  }
289
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  }
291
 
 
 
 
 
 
 
 
 
292
  }
5
  function __construct(){
6
  global $aio_wp_security;
7
 
8
+ if ($aio_wp_security->configs->get_value('aiowps_enable_rename_login_page') == '1') {
9
+ add_action( 'widgets_init', array(&$this, 'remove_standard_wp_meta_widget' ));
10
+ }
11
+
12
+ add_action('admin_notices', array(&$this,'reapply_htaccess_rules_notice'));
13
+ if(isset($_REQUEST['aiowps_reapply_htaccess'])){
14
+ if(strip_tags($_REQUEST['aiowps_reapply_htaccess']) == 1){
15
+ include_once ('wp-security-installer.php');
16
+ if(AIOWPSecurity_Installer::reactivation_tasks()){
17
+ echo '<div class="updated"><p>The AIOWPS .htaccess rules were successfully re-inserted.</p></div>';
18
+ }else{
19
+ echo '<div class="error"><p>AIOWPS encountered an error when trying to write to your .htaccess file. Please check the logs.</p></div>';
20
+ }
21
+
22
+ }elseif(strip_tags($_REQUEST['aiowps_reapply_htaccess']) == 2){
23
+ //Don't re-write the rules and just delete the temp config item
24
+ delete_option('aiowps_temp_configs');
25
+ }
26
+ }
27
+
28
+ if($aio_wp_security->configs->get_value('aiowps_prevent_site_display_inside_frame') == '1'){
29
+ send_frame_options_header(); //send X-Frame-Options: SAMEORIGIN in HTTP header
30
+ }
31
+
32
  if($aio_wp_security->configs->get_value('aiowps_remove_wp_generator_meta_info') == '1'){
33
  add_filter('the_generator', array(&$this,'remove_wp_generator_meta_info'));
34
  }
35
 
36
  //For the cookie based brute force prevention feature
37
+ if($aio_wp_security->configs->get_value('aiowps_enable_brute_force_attack_prevention') == 1){
38
+ $bfcf_secret_word = $aio_wp_security->configs->get_value('aiowps_brute_force_secret_word');
39
+ if(isset($_GET[$bfcf_secret_word])){
40
+ //If URL contains secret word in query param then set cookie and then redirect to the login page
41
+ AIOWPSecurity_Utility::set_cookie_value($bfcf_secret_word, "1");
42
+ AIOWPSecurity_Utility::redirect_to_url(AIOWPSEC_WP_URL."/wp-admin");
43
+ }
44
  }
45
 
46
  //For user unlock request feature
56
  $unlock_key = strip_tags($_GET['aiowps_auth_key']);
57
  AIOWPSecurity_User_Login::process_unlock_request($unlock_key);
58
  }
59
+
60
+ //For honeypot feature
61
+ if(isset($_POST['aio_special_field'])){
62
+ $special_field_value = strip_tags($_POST['aio_special_field']);
63
+ if(!empty($special_field_value)){
64
+ //This means a robot has submitted the login form!
65
+ //Redirect back to its localhost
66
+ AIOWPSecurity_Utility::redirect_to_url('http://127.0.0.1');
67
+ }
68
+ }
69
+
70
  //For 404 IP lockout feature
71
  if($aio_wp_security->configs->get_value('aiowps_enable_404_IP_lockout') == '1'){
72
  if (!is_user_logged_in() || !current_user_can('administrator')) {
74
  }
75
  }
76
 
77
+
78
  //For login captcha feature
79
  if($aio_wp_security->configs->get_value('aiowps_enable_login_captcha') == '1'){
80
  if (!is_user_logged_in()) {
82
  }
83
  }
84
 
85
+ //For custom login form captcha feature, ie, when wp_login_form() function is used to generate login form
86
+ if($aio_wp_security->configs->get_value('aiowps_enable_custom_login_captcha') == '1'){
87
+ if (!is_user_logged_in()) {
88
+ add_filter( 'login_form_middle', array(&$this, 'insert_captcha_custom_login'), 10, 2); //For cases where the WP wp_login_form() function is used
89
+ }
90
+ }
91
+
92
+ //For honeypot feature
93
+ if($aio_wp_security->configs->get_value('aiowps_enable_login_honeypot') == '1'){
94
+ if (!is_user_logged_in()) {
95
+ add_action('login_form', array(&$this, 'insert_honeypot_hidden_field'));
96
+ }
97
+ }
98
+
99
  //For lost password captcha feature
100
  if($aio_wp_security->configs->get_value('aiowps_enable_lost_password_captcha') == '1'){
101
  if (!is_user_logged_in()) {
124
  }
125
  }
126
  }
 
127
 
128
  //For comment captcha feature
129
  if (AIOWPSecurity_Utility::is_multisite_install()){
143
  }
144
  }
145
 
146
+ //For buddypress registration captcha feature
147
+ if($aio_wp_security->configs->get_value('aiowps_enable_bp_register_captcha') == '1'){
148
+ add_action('bp_account_details_fields', array(&$this, 'insert_captcha_question_form'));
149
+ add_action('bp_signup_validate', array(&$this, 'buddy_press_signup_validate_captcha'));
150
+ }
151
+
152
+
153
  //For feature which displays logged in users
154
  $this->update_logged_in_user_transient();
155
 
168
 
169
  }
170
 
171
+ function remove_standard_wp_meta_widget()
172
+ {
173
+ unregister_widget('WP_Widget_Meta');
174
+ }
175
+
176
  function remove_wp_generator_meta_info()
177
  {
178
  return '';
199
  $current_user_ip = AIOWPSecurity_Utility_IP::get_user_ip_address();
200
  // get the logged in users list from transients entry
201
  $logged_in_users = (AIOWPSecurity_Utility::is_multisite_install() ? get_site_transient('users_online') : get_transient('users_online'));
 
202
  $current_user = wp_get_current_user();
203
  $current_user = $current_user->ID;
204
  $current_time = current_time('timestamp');
209
  $logged_in_users = array();
210
  $logged_in_users[] = $current_user_info;
211
  AIOWPSecurity_Utility::is_multisite_install() ? set_site_transient('users_online', $logged_in_users, 30 * 60) : set_transient('users_online', $logged_in_users, 30 * 60);
 
212
  }
213
  else
214
  {
248
  }
249
  }
250
 
251
+ function insert_captcha_custom_login($cust_html_code, $args)
252
+ {
253
+ global $aio_wp_security;
254
+ $cap_form = '<p class="aiowps-captcha"><label>'.__('Please enter an answer in digits:','aiowpsecurity').'</label>';
255
+ $cap_form .= '<div class="aiowps-captcha-equation"><strong>';
256
+ $maths_question_output = $aio_wp_security->captcha_obj->generate_maths_question();
257
+ $cap_form .= $maths_question_output . '</strong></div></p>';
258
+
259
+ $cust_html_code .= $cap_form;
260
+ return $cust_html_code;
261
+ }
262
+
263
  function insert_captcha_question_form_multi($error)
264
  {
265
  global $aio_wp_security;
288
  global $aio_wp_security;
289
  $aio_wp_security->captcha_obj->display_captcha_form();
290
  }
291
+
292
+ function insert_honeypot_hidden_field(){
293
+ $honey_input = '<p style="display: none;"><label>'.__('Enter something special:','aiowpsecurity').'</label>';
294
+ $honey_input .= '<input name="aio_special_field" type="text" id="aio_special_field" class="aio_special_field" /></p>';
295
+ echo $honey_input;
296
+ }
297
 
298
  function process_comment_post( $comment )
299
  {
365
  AIOWPSecurity_Utility::event_logger('404');
366
  }
367
 
368
+ }
369
+
370
+ function buddy_press_signup_validate_captcha($errors)
371
+ {
372
+ global $bp, $aio_wp_security;
373
+ //Check if captcha enabled
374
+ if (array_key_exists('aiowps-captcha-answer', $_POST)) //If the register form with captcha was submitted then do some processing
375
+ {
376
+ isset($_POST['aiowps-captcha-answer'])?$captcha_answer = strip_tags(trim($_POST['aiowps-captcha-answer'])): $captcha_answer = '';
377
+ $captcha_secret_string = $aio_wp_security->configs->get_value('aiowps_captcha_secret_key');
378
+ $submitted_encoded_string = base64_encode($_POST['aiowps-captcha-temp-string'].$captcha_secret_string.$captcha_answer);
379
+ if($submitted_encoded_string !== $_POST['aiowps-captcha-string-info'])
380
+ {
381
+ //This means a wrong answer was entered
382
+ $bp->signup->errors['aiowps-captcha-answer'] = __('Your CAPTCHA answer was incorrect - please try again.', 'aiowpsecurity');
383
+ }
384
+ }
385
+
386
+ return;
387
  }
388
 
389
+ //Displays a notice message if the plugin was reactivated after being initially deactivated.
390
+ //Notice message gives users option of re-applying the aiowps rules which were deleted from the .htaccess when deactivation occurred
391
+ function reapply_htaccess_rules_notice()
392
+ {
393
+ if (get_option('aiowps_temp_configs') !== FALSE){
394
+ echo '<div class="updated"><p>Would you like All In One WP Security & Firewall to re-insert the security rules in your .htaccess file which were cleared when you deactivated the plugin?&nbsp;&nbsp;<a href="admin.php?page='.AIOWPSEC_MENU_SLUG_PREFIX.'&aiowps_reapply_htaccess=1" class="button-primary">Yes</a>&nbsp;&nbsp;<a href="admin.php?page='.AIOWPSEC_MENU_SLUG_PREFIX.'&aiowps_reapply_htaccess=2" class="button-primary">No</a></p></div>';
395
+ }
396
+ }
397
  }
classes/wp-security-installer.php CHANGED
@@ -31,7 +31,7 @@ class AIOWPSecurity_Installer
31
 
32
  static function create_db_tables()
33
  {
34
- //global $wpdb;
35
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
36
 
37
  //"User Login" related tables
@@ -41,6 +41,16 @@ class AIOWPSecurity_Installer
41
  $aiowps_global_meta_tbl_name = AIOWPSEC_TBL_GLOBAL_META_DATA;
42
  $aiowps_event_tbl_name = AIOWPSEC_TBL_EVENTS;
43
 
 
 
 
 
 
 
 
 
 
 
44
  $ld_tbl_sql = "CREATE TABLE " . $lockdown_tbl_name . " (
45
  id bigint(20) NOT NULL AUTO_INCREMENT,
46
  user_id bigint(20) NOT NULL,
@@ -51,7 +61,7 @@ class AIOWPSecurity_Installer
51
  lock_reason varchar(128) NOT NULL DEFAULT '',
52
  unlock_key varchar(128) NOT NULL DEFAULT '',
53
  PRIMARY KEY (id)
54
- )ENGINE=MyISAM DEFAULT CHARSET=utf8;";
55
  dbDelta($ld_tbl_sql);
56
 
57
  $fl_tbl_sql = "CREATE TABLE " . $failed_login_tbl_name . " (
@@ -61,7 +71,7 @@ class AIOWPSecurity_Installer
61
  failed_login_date datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
62
  login_attempt_ip varchar(100) NOT NULL DEFAULT '',
63
  PRIMARY KEY (id)
64
- )ENGINE=MyISAM DEFAULT CHARSET=utf8;";
65
  dbDelta($fl_tbl_sql);
66
 
67
  $ula_tbl_sql = "CREATE TABLE " . $user_login_activity_tbl_name . " (
@@ -74,7 +84,7 @@ class AIOWPSecurity_Installer
74
  login_country varchar(150) NOT NULL DEFAULT '',
75
  browser_type varchar(150) NOT NULL DEFAULT '',
76
  PRIMARY KEY (id)
77
- )ENGINE=MyISAM DEFAULT CHARSET=utf8;";
78
  dbDelta($ula_tbl_sql);
79
 
80
  $gm_tbl_sql = "CREATE TABLE " . $aiowps_global_meta_tbl_name . " (
@@ -91,7 +101,7 @@ class AIOWPSecurity_Installer
91
  meta_value4 longtext NOT NULL,
92
  meta_value5 longtext NOT NULL,
93
  PRIMARY KEY (meta_id)
94
- )ENGINE=MyISAM DEFAULT CHARSET=utf8;";
95
  dbDelta($gm_tbl_sql);
96
 
97
  $evt_tbl_sql = "CREATE TABLE " . $aiowps_event_tbl_name . " (
@@ -105,7 +115,7 @@ class AIOWPSecurity_Installer
105
  url varchar(255),
106
  event_data longtext,
107
  PRIMARY KEY (id)
108
- )ENGINE=MyISAM DEFAULT CHARSET=utf8;";
109
  dbDelta($evt_tbl_sql);
110
 
111
  update_option("aiowpsec_db_version", AIO_WP_SECURITY_DB_VERSION);
@@ -135,6 +145,34 @@ deny from all' . PHP_EOL;
135
  $aio_wp_security->debug_logger->log_debug("Creation of .htaccess file in ".AIO_WP_SECURITY_BACKUPS_DIR_NAME." directory failed!",4);
136
  }
137
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
 
139
  // //Read entire contents of file at activation time and store serialized contents in our global_meta table
140
  // static function backup_file_contents_to_db_at_activation($src_file, $key_description)
31
 
32
  static function create_db_tables()
33
  {
34
+ global $wpdb;
35
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
36
 
37
  //"User Login" related tables
41
  $aiowps_global_meta_tbl_name = AIOWPSEC_TBL_GLOBAL_META_DATA;
42
  $aiowps_event_tbl_name = AIOWPSEC_TBL_EVENTS;
43
 
44
+ $charset_collate = '';
45
+ if (!empty($wpdb->charset)){
46
+ $charset_collate = "DEFAULT CHARACTER SET $wpdb->charset";
47
+ }else{
48
+ $charset_collate = "DEFAULT CHARSET=utf8";
49
+ }
50
+ if (!empty($wpdb->collate)){
51
+ $charset_collate .= " COLLATE $wpdb->collate";
52
+ }
53
+
54
  $ld_tbl_sql = "CREATE TABLE " . $lockdown_tbl_name . " (
55
  id bigint(20) NOT NULL AUTO_INCREMENT,
56
  user_id bigint(20) NOT NULL,
61
  lock_reason varchar(128) NOT NULL DEFAULT '',
62
  unlock_key varchar(128) NOT NULL DEFAULT '',
63
  PRIMARY KEY (id)
64
+ )" . $charset_collate . ";";
65
  dbDelta($ld_tbl_sql);
66
 
67
  $fl_tbl_sql = "CREATE TABLE " . $failed_login_tbl_name . " (
71
  failed_login_date datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
72
  login_attempt_ip varchar(100) NOT NULL DEFAULT '',
73
  PRIMARY KEY (id)
74
+ )" . $charset_collate . ";";
75
  dbDelta($fl_tbl_sql);
76
 
77
  $ula_tbl_sql = "CREATE TABLE " . $user_login_activity_tbl_name . " (
84
  login_country varchar(150) NOT NULL DEFAULT '',
85
  browser_type varchar(150) NOT NULL DEFAULT '',
86
  PRIMARY KEY (id)
87
+ )" . $charset_collate . ";";
88
  dbDelta($ula_tbl_sql);
89
 
90
  $gm_tbl_sql = "CREATE TABLE " . $aiowps_global_meta_tbl_name . " (
101
  meta_value4 longtext NOT NULL,
102
  meta_value5 longtext NOT NULL,
103
  PRIMARY KEY (meta_id)
104
+ )" . $charset_collate . ";";
105
  dbDelta($gm_tbl_sql);
106
 
107
  $evt_tbl_sql = "CREATE TABLE " . $aiowps_event_tbl_name . " (
115
  url varchar(255),
116
  event_data longtext,
117
  PRIMARY KEY (id)
118
+ )" . $charset_collate . ";";
119
  dbDelta($evt_tbl_sql);
120
 
121
  update_option("aiowpsec_db_version", AIO_WP_SECURITY_DB_VERSION);
145
  $aio_wp_security->debug_logger->log_debug("Creation of .htaccess file in ".AIO_WP_SECURITY_BACKUPS_DIR_NAME." directory failed!",4);
146
  }
147
  }
148
+
149
+ static function reactivation_tasks()
150
+ {
151
+ global $aio_wp_security;
152
+ $temp_cfgs = get_option('aiowps_temp_configs');
153
+ if($temp_cfgs !== FALSE){
154
+ //Case where previously installed plugin was reactivated
155
+ //Let's copy the original configs back to the options table
156
+ $updated = update_option('aio_wp_security_configs', $temp_cfgs);
157
+ if($updated === FALSE){
158
+ $aio_wp_security->debug_logger->log_debug("AIOWPSecurity_Installer::run_installer() - Update of option settings failed upon plugin activation!",4);
159
+ }
160
+ $aio_wp_security->configs->configs = $temp_cfgs; //copy the original configs to memory
161
+ //Now let's write any rules to the .htaccess file if necessary
162
+ $res = AIOWPSecurity_Utility_Htaccess::write_to_htaccess();
163
+
164
+ if($res == -1)
165
+ {
166
+ $aio_wp_security->debug_logger->log_debug("AIOWPSecurity_Deactivation::run_deactivation_tasks() - Could not write to the .htaccess file. Please check the file permissions.",4);
167
+ return false;
168
+ }
169
+ delete_option('aiowps_temp_configs');
170
+ return true;
171
+ }else{
172
+ $aio_wp_security->debug_logger->log_debug("AIOWPSecurity_Deactivation::run_deactivation_tasks() - Original config settings not found!",4);
173
+ return false;
174
+ }
175
+ }
176
 
177
  // //Read entire contents of file at activation time and store serialized contents in our global_meta table
178
  // static function backup_file_contents_to_db_at_activation($src_file, $key_description)
classes/wp-security-process-renamed-login-page.php CHANGED
@@ -59,6 +59,9 @@ class AIOWPSecurity_Process_Renamed_Login_Page
59
  if (strpos($url, 'wp-login.php') !== false){
60
  $args = explode( '?', $url );
61
  if (isset($args[1])){
 
 
 
62
  parse_str($args[1], $args);
63
  $url = add_query_arg($args, AIOWPSecurity_Process_Renamed_Login_Page::new_login_url());
64
  }else{
@@ -71,6 +74,31 @@ class AIOWPSecurity_Process_Renamed_Login_Page
71
  static function renamed_login_init_tasks()
72
  {
73
  global $aio_wp_security;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  //case where someone attempting to reach wp-admin
75
  if (is_admin() && !is_user_logged_in() && !defined('DOING_AJAX')){
76
  //Check if the maintenance (lockout) mode is active - if so prevent access to site by not displaying 404 page!
59
  if (strpos($url, 'wp-login.php') !== false){
60
  $args = explode( '?', $url );
61
  if (isset($args[1])){
62
+ if (strpos($args[1], 'action=postpass') !== FALSE){
63
+ return $url; //Don't reveal the secret URL in the post password action url
64
+ }
65
  parse_str($args[1], $args);
66
  $url = add_query_arg($args, AIOWPSecurity_Process_Renamed_Login_Page::new_login_url());
67
  }else{
74
  static function renamed_login_init_tasks()
75
  {
76
  global $aio_wp_security;
77
+
78
+ //The following will process the native wordpress post password protection form
79
+ //Normally this is done by wp-login.php file but we cannot use that since the login page has been renamed
80
+ $action = isset($_GET['action'])?strip_tags($_GET['action']):'';
81
+ if(isset($_POST['post_password']) && $action == 'postpass'){
82
+ require_once ABSPATH . 'wp-includes/class-phpass.php';
83
+ $hasher = new PasswordHash( 8, true );
84
+
85
+ /**
86
+ * Filter the life span of the post password cookie.
87
+ *
88
+ * By default, the cookie expires 10 days from creation. To turn this
89
+ * into a session cookie, return 0.
90
+ *
91
+ * @since 3.7.0
92
+ *
93
+ * @param int $expires The expiry time, as passed to setcookie().
94
+ */
95
+ $expire = apply_filters( 'post_password_expires', time() + 10 * DAY_IN_SECONDS );
96
+ setcookie( 'wp-postpass_' . COOKIEHASH, $hasher->HashPassword( wp_unslash( $_POST['post_password'] ) ), $expire, COOKIEPATH );
97
+
98
+ wp_safe_redirect( wp_get_referer() );
99
+ exit();
100
+ }
101
+
102
  //case where someone attempting to reach wp-admin
103
  if (is_admin() && !is_user_logged_in() && !defined('DOING_AJAX')){
104
  //Check if the maintenance (lockout) mode is active - if so prevent access to site by not displaying 404 page!
classes/wp-security-user-login.php CHANGED
@@ -272,7 +272,9 @@ class AIOWPSecurity_User_Login
272
  $email_msg .= __('IP Address: '.$ip,'aiowpsecurity')."\n\n";
273
  $email_msg .= __('IP Range: '.$ip_range.'.*','aiowpsecurity')."\n\n";
274
  $email_msg .= __('Log into your site\'s WordPress administration panel to see the duration of the lockout or to unlock the user.','aiowpsecurity')."\n";
275
- $email_header = 'From: '.get_bloginfo( 'name' ).' <'.get_bloginfo('admin_email').'>' . "\r\n\\";
 
 
276
  $sendMail = wp_mail($to_email_address, $subject, $email_msg, $email_header);
277
  }
278
  }
@@ -321,7 +323,17 @@ class AIOWPSecurity_User_Login
321
  }
322
  else
323
  {
324
- AIOWPSecurity_Utility::redirect_to_url(wp_login_url());
 
 
 
 
 
 
 
 
 
 
325
  }
326
  }
327
 
@@ -337,7 +349,9 @@ class AIOWPSecurity_User_Login
337
  $email_msg .= __('You have requested for the account with email address '.$email.' to be unlocked. Please click the link below to unlock your account:','aiowpsecurity')."\n";
338
  $email_msg .= __('Unlock link: '.$unlock_link,'aiowpsecurity')."\n\n";
339
  $email_msg .= __('After clicking the above link you will be able to login to the WordPress administration panel.','aiowpsecurity')."\n";
340
- $email_header = 'From: '.get_bloginfo( 'name' ).' <'.get_bloginfo('admin_email').'>' . "\r\n\\";
 
 
341
  $sendMail = wp_mail($to_email_address, $subject, $email_msg, $email_header);
342
  }
343
 
@@ -381,7 +395,7 @@ class AIOWPSecurity_User_Login
381
  return $last_login;
382
  }
383
 
384
- function wp_login_action_handler($user_login, $user='')
385
  {
386
  global $wpdb, $aio_wp_security;
387
  $login_activity_table = AIOWPSEC_TBL_USER_LOGIN_ACTIVITY;
272
  $email_msg .= __('IP Address: '.$ip,'aiowpsecurity')."\n\n";
273
  $email_msg .= __('IP Range: '.$ip_range.'.*','aiowpsecurity')."\n\n";
274
  $email_msg .= __('Log into your site\'s WordPress administration panel to see the duration of the lockout or to unlock the user.','aiowpsecurity')."\n";
275
+ $site_title = get_bloginfo( 'name' );
276
+ $from_name = empty($site_title)?'WordPress':$site_title;
277
+ $email_header = 'From: '.$from_name.' <'.get_bloginfo('admin_email').'>' . "\r\n\\";
278
  $sendMail = wp_mail($to_email_address, $subject, $email_msg, $email_header);
279
  }
280
  }
323
  }
324
  else
325
  {
326
+ if($aio_wp_security->configs->get_value('aiowps_enable_rename_login_page')=='1'){
327
+ if (get_option('permalink_structure')){
328
+ $home_url = trailingslashit(home_url());
329
+ }else{
330
+ $home_url = trailingslashit(home_url()) . '?';
331
+ }
332
+ $login_url = $home_url.$aio_wp_security->configs->get_value('aiowps_login_page_slug');
333
+ AIOWPSecurity_Utility::redirect_to_url($login_url);
334
+ }else{
335
+ AIOWPSecurity_Utility::redirect_to_url(wp_login_url());
336
+ }
337
  }
338
  }
339
 
349
  $email_msg .= __('You have requested for the account with email address '.$email.' to be unlocked. Please click the link below to unlock your account:','aiowpsecurity')."\n";
350
  $email_msg .= __('Unlock link: '.$unlock_link,'aiowpsecurity')."\n\n";
351
  $email_msg .= __('After clicking the above link you will be able to login to the WordPress administration panel.','aiowpsecurity')."\n";
352
+ $site_title = get_bloginfo( 'name' );
353
+ $from_name = empty($site_title)?'WordPress':$site_title;
354
+ $email_header = 'From: '.$from_name.' <'.get_bloginfo('admin_email').'>' . "\r\n\\";
355
  $sendMail = wp_mail($to_email_address, $subject, $email_msg, $email_header);
356
  }
357
 
395
  return $last_login;
396
  }
397
 
398
+ static function wp_login_action_handler($user_login, $user='')
399
  {
400
  global $wpdb, $aio_wp_security;
401
  $login_activity_table = AIOWPSEC_TBL_USER_LOGIN_ACTIVITY;
classes/wp-security-user-registration.php CHANGED
@@ -4,6 +4,7 @@ class AIOWPSecurity_User_Registration
4
 
5
  function __construct()
6
  {
 
7
  add_action('user_register', array(&$this, 'aiowps_user_registration_action_handler'));
8
  add_filter('registration_errors', array(&$this, 'aiowps_validate_registration_with_captcha'), 10, 3);
9
  }
@@ -44,21 +45,26 @@ class AIOWPSecurity_User_Registration
44
  function aiowps_validate_registration_with_captcha($errors, $sanitized_user_login, $user_email)
45
  {
46
  global $aio_wp_security;
47
- //Check if captcha enabled
48
- if ($aio_wp_security->configs->get_value('aiowps_enable_registration_page_captcha') == '1')
 
 
 
 
 
 
 
 
49
  {
50
- if (array_key_exists('aiowps-captcha-answer', $_POST)) //If the register form with captcha was submitted then do some processing
 
 
 
51
  {
52
- isset($_POST['aiowps-captcha-answer'])?$captcha_answer = strip_tags(trim($_POST['aiowps-captcha-answer'])): $captcha_answer = '';
53
- $captcha_secret_string = $aio_wp_security->configs->get_value('aiowps_captcha_secret_key');
54
- $submitted_encoded_string = base64_encode($_POST['aiowps-captcha-temp-string'].$captcha_secret_string.$captcha_answer);
55
- if($submitted_encoded_string !== $_POST['aiowps-captcha-string-info'])
56
- {
57
- //This means a wrong answer was entered
58
- //return new WP_Error('authentication_failed', __('<strong>ERROR</strong>: Your answer was incorrect - please try again.', 'aiowpsecurity'));
59
- $errors->add('authentication_failed', __('<strong>ERROR</strong>: Your answer was incorrect - please try again.', 'aiowpsecurity'));
60
- return $errors;
61
- }
62
  }
63
  }
64
  return $errors;
4
 
5
  function __construct()
6
  {
7
+ global $aio_wp_security;
8
  add_action('user_register', array(&$this, 'aiowps_user_registration_action_handler'));
9
  add_filter('registration_errors', array(&$this, 'aiowps_validate_registration_with_captcha'), 10, 3);
10
  }
45
  function aiowps_validate_registration_with_captcha($errors, $sanitized_user_login, $user_email)
46
  {
47
  global $aio_wp_security;
48
+
49
+ $locked = $aio_wp_security->user_login_obj->check_locked_user();
50
+ if($locked == null){
51
+ //user is not locked continue
52
+ }else{
53
+ $errors->add('authentication_failed', __('<strong>ERROR</strong>: You are not allowed to register because your IP address is currently locked!', 'aiowpsecurity'));
54
+ return $errors;
55
+ }
56
+
57
+ if (array_key_exists('aiowps-captcha-answer', $_POST)) //If the register form with captcha was submitted then do some processing
58
  {
59
+ isset($_POST['aiowps-captcha-answer'])?$captcha_answer = strip_tags(trim($_POST['aiowps-captcha-answer'])): $captcha_answer = '';
60
+ $captcha_secret_string = $aio_wp_security->configs->get_value('aiowps_captcha_secret_key');
61
+ $submitted_encoded_string = base64_encode($_POST['aiowps-captcha-temp-string'].$captcha_secret_string.$captcha_answer);
62
+ if($submitted_encoded_string !== $_POST['aiowps-captcha-string-info'])
63
  {
64
+ //This means a wrong answer was entered
65
+ //return new WP_Error('authentication_failed', __('<strong>ERROR</strong>: Your answer was incorrect - please try again.', 'aiowpsecurity'));
66
+ $errors->add('authentication_failed', __('<strong>ERROR</strong>: Your answer was incorrect - please try again.', 'aiowpsecurity'));
67
+ return $errors;
 
 
 
 
 
 
68
  }
69
  }
70
  return $errors;
classes/wp-security-utility-file.php CHANGED
@@ -26,6 +26,18 @@ class AIOWPSecurity_Utility_File
26
 
27
  }
28
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  static function write_content_to_file($file_path, $new_contents)
30
  {
31
  @chmod($file_path, 0777);
26
 
27
  }
28
 
29
+ static function get_wp_config_file_path()
30
+ {
31
+ $wp_config_file = ABSPATH . 'wp-config.php';
32
+ if(file_exists($wp_config_file)){
33
+ return $wp_config_file;
34
+ }
35
+ else if (file_exists(dirname( ABSPATH ) . '/wp-config.php')){
36
+ return dirname( ABSPATH ) . '/wp-config.php';
37
+ }
38
+ return $wp_config_file;
39
+ }
40
+
41
  static function write_content_to_file($file_path, $new_contents)
42
  {
43
  @chmod($file_path, 0777);
classes/wp-security-utility-htaccess.php CHANGED
@@ -446,9 +446,10 @@ class AIOWPSecurity_Utility_Htaccess
446
  {
447
  $rules .= AIOWPSecurity_Utility_Htaccess::$pingback_htaccess_rules_marker_start . PHP_EOL; //Add feature marker start
448
  //protect the htaccess file - this is done by default with apache config file but we are including it here for good measure
449
- $rules .= '<IfModule mod_alias.c>' . PHP_EOL;
450
- $rules .= 'RedirectMatch 403 /(.*)/xmlrpc\.php$' . PHP_EOL;
451
- $rules .= '</IfModule>' . PHP_EOL;
 
452
 
453
  $rules .= AIOWPSecurity_Utility_Htaccess::$pingback_htaccess_rules_marker_end . PHP_EOL; //Add feature marker end
454
  }
@@ -490,7 +491,10 @@ class AIOWPSecurity_Utility_Htaccess
490
 
491
 
492
  /*
493
- * This function will write some directives to allow IPs in the whitelist to access login.php
 
 
 
494
  */
495
  static function getrules_enable_login_whitelist()
496
  {
@@ -503,20 +507,43 @@ class AIOWPSecurity_Utility_Htaccess
503
  $parse_url = parse_url($site_url);
504
  $hostname = $parse_url['host'];
505
  $host_ip = gethostbyname($hostname);
 
506
  $rules .= AIOWPSecurity_Utility_Htaccess::$enable_login_whitelist_marker_start . PHP_EOL; //Add feature marker start
507
- $rules .= '<FilesMatch "^(wp-login\.php)">' . PHP_EOL;
508
- $rules .= 'Order Allow,Deny'. PHP_EOL;
509
- $rules .= 'Allow from '.$hostname.PHP_EOL;
510
- $rules .= 'Allow from '.$host_ip. PHP_EOL;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
511
 
512
  //Let's get list of whitelisted IPs
513
  $hosts = explode(PHP_EOL, $aio_wp_security->configs->get_value('aiowps_allowed_ip_addresses'));
514
  if (!empty($hosts) && !(sizeof($hosts) == 1 && trim($hosts[0]) == ''))
515
  {
516
  $phosts = array();
 
 
517
  foreach ($hosts as $host)
518
  {
519
  $host = trim($host);
 
 
520
  if (!in_array($host, $phosts))
521
  {
522
  if (strstr($host, '*'))
@@ -534,10 +561,19 @@ class AIOWPSecurity_Utility_Htaccess
534
  $dhost = trim( str_replace('*', '0', implode( '.', array_reverse( $parts ) ) ) . '/' . $netmask );
535
  if (strlen($dhost) > 4)
536
  {
537
- $trule = "Allow from " . $dhost . PHP_EOL;
538
- if (trim($trule) != 'Allow from')
539
- {
540
- $rules .= $trule;
 
 
 
 
 
 
 
 
 
541
  }
542
  }
543
  }
@@ -546,16 +582,27 @@ class AIOWPSecurity_Utility_Htaccess
546
  $dhost = trim( $host );
547
  if (strlen($dhost) > 4)
548
  {
549
- $rules .= "Allow from " . $dhost . PHP_EOL;
 
 
 
 
 
 
550
  }
551
  }
552
  }
553
  $phosts[] = $host;
 
554
  }
555
  }
556
 
557
- // $rules .= 'Allow from '.$white_ip. PHP_EOL;
558
- $rules .= '</FilesMatch>' . PHP_EOL;
 
 
 
 
559
  $rules .= AIOWPSecurity_Utility_Htaccess::$enable_login_whitelist_marker_end . PHP_EOL; //Add feature marker end
560
  }
561
 
446
  {
447
  $rules .= AIOWPSecurity_Utility_Htaccess::$pingback_htaccess_rules_marker_start . PHP_EOL; //Add feature marker start
448
  //protect the htaccess file - this is done by default with apache config file but we are including it here for good measure
449
+ $rules .= '<Files xmlrpc.php>' . PHP_EOL;
450
+ $rules .= 'order deny,allow' . PHP_EOL;
451
+ $rules .= 'deny from all' . PHP_EOL;
452
+ $rules .= '</Files>' . PHP_EOL;
453
 
454
  $rules .= AIOWPSecurity_Utility_Htaccess::$pingback_htaccess_rules_marker_end . PHP_EOL; //Add feature marker end
455
  }
491
 
492
 
493
  /*
494
+ * This function will write some directives to allow IPs in the whitelist to access wp-login.php or wp-admin
495
+ * The function also handles the following special cases:
496
+ * 1) If the rename login feature is being used: for this scenario instead of protecting wp-login.php we must protect the special page slug
497
+ * 2) If the rename login feature is being used AND non permalink URL structure: for this case need to use mod_rewrite because we must check QUERY_STRING
498
  */
499
  static function getrules_enable_login_whitelist()
500
  {
507
  $parse_url = parse_url($site_url);
508
  $hostname = $parse_url['host'];
509
  $host_ip = gethostbyname($hostname);
510
+ $special_case = false;
511
  $rules .= AIOWPSecurity_Utility_Htaccess::$enable_login_whitelist_marker_start . PHP_EOL; //Add feature marker start
512
+ //If the rename login page feature is active, we will need to adjust the directives
513
+ if($aio_wp_security->configs->get_value('aiowps_enable_rename_login_page')=='1'){
514
+ $secret_slug = $aio_wp_security->configs->get_value('aiowps_login_page_slug');
515
+ if(!get_option('permalink_structure')){
516
+ //standard url structure is being used - ie, non permalinks
517
+ $special_case = true;
518
+ $rules .= '<IfModule mod_rewrite.c>' . PHP_EOL;
519
+ $rules .= 'RewriteEngine on' . PHP_EOL;
520
+ $rules .= 'RewriteCond %{QUERY_STRING} ^'.$secret_slug.'$' . PHP_EOL;
521
+ $rules .= 'RewriteCond %{REMOTE_ADDR} !^'. preg_quote($host_ip) . '[OR]' . PHP_EOL;
522
+ }else{
523
+ $slug = preg_quote($secret_slug); //escape any applicable chars
524
+ $rules .= '<FilesMatch "^('.$slug.')">' . PHP_EOL;
525
+ }
526
+ }else{
527
+ $rules .= '<FilesMatch "^(wp-login\.php)">' . PHP_EOL;
528
+ }
529
+ if(!$special_case){
530
+ $rules .= 'Order Allow,Deny'. PHP_EOL;
531
+ $rules .= 'Allow from '.$hostname.PHP_EOL;
532
+ $rules .= 'Allow from '.$host_ip. PHP_EOL;
533
+ }
534
 
535
  //Let's get list of whitelisted IPs
536
  $hosts = explode(PHP_EOL, $aio_wp_security->configs->get_value('aiowps_allowed_ip_addresses'));
537
  if (!empty($hosts) && !(sizeof($hosts) == 1 && trim($hosts[0]) == ''))
538
  {
539
  $phosts = array();
540
+ $num_hosts = count($hosts);
541
+ $i = 0;
542
  foreach ($hosts as $host)
543
  {
544
  $host = trim($host);
545
+ $or_string = ($i == $num_hosts-1)?'':'[OR]'; //Add an [OR] clause for all except the last condition
546
+
547
  if (!in_array($host, $phosts))
548
  {
549
  if (strstr($host, '*'))
561
  $dhost = trim( str_replace('*', '0', implode( '.', array_reverse( $parts ) ) ) . '/' . $netmask );
562
  if (strlen($dhost) > 4)
563
  {
564
+ if($special_case){
565
+ $dhost = preg_quote($dhost); //escape any applicable chars
566
+ $trule = 'RewriteCond %{REMOTE_ADDR} !^'. $dhost . $or_string . PHP_EOL;
567
+ if (trim($trule) != 'RewriteCond %{REMOTE_ADDR}!=')
568
+ {
569
+ $rules .= $trule;
570
+ }
571
+ }else{
572
+ $trule = 'Allow from ' . $dhost . PHP_EOL;
573
+ if (trim($trule) != 'Allow from')
574
+ {
575
+ $rules .= $trule;
576
+ }
577
  }
578
  }
579
  }
582
  $dhost = trim( $host );
583
  if (strlen($dhost) > 4)
584
  {
585
+ if($special_case){
586
+ $dhost = preg_quote($dhost); //escape any applicable chars
587
+ $rules .= 'RewriteCond %{REMOTE_ADDR} !^'. $dhost . $or_string . PHP_EOL;
588
+ }else{
589
+ $rules .= 'Allow from ' . $dhost . PHP_EOL;
590
+ }
591
+
592
  }
593
  }
594
  }
595
  $phosts[] = $host;
596
+ $i++;
597
  }
598
  }
599
 
600
+ if($special_case){
601
+ $rules .= 'RewriteRule .* http://127.0.0.1 [L]' . PHP_EOL;
602
+ $rules .= '</IfModule>' . PHP_EOL;
603
+ }else{
604
+ $rules .= '</FilesMatch>' . PHP_EOL;
605
+ }
606
  $rules .= AIOWPSecurity_Utility_Htaccess::$enable_login_whitelist_marker_end . PHP_EOL; //Add feature marker end
607
  }
608
 
classes/wp-security-utility-ip-address.php CHANGED
@@ -8,16 +8,17 @@ class AIOWPSecurity_Utility_IP
8
 
9
  static function get_user_ip_address()
10
  {
11
- foreach (array('HTTP_CLIENT_IP', 'HTTP_X_FORWARDED_FOR', 'HTTP_X_FORWARDED', 'HTTP_X_CLUSTER_CLIENT_IP', 'HTTP_FORWARDED_FOR', 'HTTP_FORWARDED', 'REMOTE_ADDR') as $key){
12
  if (array_key_exists($key, $_SERVER) === true){
13
  foreach (explode(',', $_SERVER[$key]) as $ip){
14
  $userIP = trim($ip);
15
- if (filter_var($userIP, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE) !== false){
16
  return $userIP;
17
  }
18
  }
19
  }
20
  }
 
21
  }
22
 
23
  /*
@@ -48,7 +49,7 @@ class AIOWPSecurity_Utility_IP
48
  return $ip_list_array;
49
  }
50
 
51
- static function validate_ip_list($ip_list_array, $list='blacklist')
52
  {
53
  @ini_set('auto_detect_line_endings', true);
54
  $errors = '';
@@ -123,10 +124,10 @@ class AIOWPSecurity_Utility_IP
123
  { //invalid ip
124
  $errors .= '<p>'.$item.__(' is not a valid ip address format.', 'aiowpsecurity').'</p>';
125
  }
126
- elseif (strlen($item > 4 && !in_array($item, $list)))
127
  {
128
  $current_user_ip = AIOWPSecurity_Utility_IP::get_user_ip_address();
129
- if ($current_user_ip == $item && $list == 'blacklist')
130
  {
131
  //You can't ban your own IP
132
  $errors .= '<p>'.__('You cannot ban your own IP address: ', 'aiowpsecurity').$item.'</p>';
8
 
9
  static function get_user_ip_address()
10
  {
11
+ foreach (array('HTTP_CF_CONNECTING_IP', 'HTTP_CLIENT_IP', 'HTTP_X_FORWARDED_FOR', 'HTTP_X_FORWARDED', 'HTTP_X_CLUSTER_CLIENT_IP', 'HTTP_FORWARDED_FOR', 'HTTP_FORWARDED', 'REMOTE_ADDR') as $key){
12
  if (array_key_exists($key, $_SERVER) === true){
13
  foreach (explode(',', $_SERVER[$key]) as $ip){
14
  $userIP = trim($ip);
15
+ if (filter_var($userIP, FILTER_VALIDATE_IP) !== false){
16
  return $userIP;
17
  }
18
  }
19
  }
20
  }
21
+ return ''; //if we get this far we have an invalid address - return empty string
22
  }
23
 
24
  /*
49
  return $ip_list_array;
50
  }
51
 
52
+ static function validate_ip_list($ip_list_array, $list_type='')
53
  {
54
  @ini_set('auto_detect_line_endings', true);
55
  $errors = '';
124
  { //invalid ip
125
  $errors .= '<p>'.$item.__(' is not a valid ip address format.', 'aiowpsecurity').'</p>';
126
  }
127
+ elseif (strlen($item) > 4 && !in_array($item, $list))
128
  {
129
  $current_user_ip = AIOWPSecurity_Utility_IP::get_user_ip_address();
130
+ if ($current_user_ip == $item && $list_type == 'blacklist')
131
  {
132
  //You can't ban your own IP
133
  $errors .= '<p>'.__('You cannot ban your own IP address: ', 'aiowpsecurity').$item.'</p>';
classes/wp-security-utility.php CHANGED
@@ -165,7 +165,7 @@ class AIOWPSecurity_Utility
165
  $edit_file_config_entry_exists = false;
166
 
167
  //Config file path
168
- $config_file = ABSPATH.'wp-config.php';
169
 
170
  //Get wp-config.php file contents so we can check if the "DISALLOW_FILE_EDIT" variable already exists
171
  $config_contents = file($config_file);
@@ -236,7 +236,7 @@ class AIOWPSecurity_Utility
236
  $edit_file_config_entry_exists = false;
237
 
238
  //Config file path
239
- $config_file = ABSPATH.'wp-config.php';
240
 
241
  //Get wp-config.php file contents
242
  $config_contents = file($config_file);
@@ -411,4 +411,51 @@ class AIOWPSecurity_Utility
411
  }
412
  }
413
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
414
  }
165
  $edit_file_config_entry_exists = false;
166
 
167
  //Config file path
168
+ $config_file = AIOWPSecurity_Utility_File::get_wp_config_file_path();
169
 
170
  //Get wp-config.php file contents so we can check if the "DISALLOW_FILE_EDIT" variable already exists
171
  $config_contents = file($config_file);
236
  $edit_file_config_entry_exists = false;
237
 
238
  //Config file path
239
+ $config_file = AIOWPSecurity_Utility_File::get_wp_config_file_path();
240
 
241
  //Get wp-config.php file contents
242
  $config_contents = file($config_file);
411
  }
412
  }
413
 
414
+ /*
415
+ * Returns an array of blog_ids for a multisite install
416
+ * If site is not multisite returns empty array
417
+ */
418
+ static function get_blog_ids()
419
+ {
420
+ global $wpdb, $aio_wp_security;
421
+ if (AIOWPSecurity_Utility::is_multisite_install()) {
422
+ global $wpdb;
423
+ $blog_ids = $wpdb->get_col("SELECT blog_id FROM ".$wpdb->prefix."blogs");
424
+ }else{
425
+ $blog_ids = array();
426
+ }
427
+ return $blog_ids;
428
+ }
429
+
430
+
431
+ //This function will delete the oldest rows from a table which are over the max amount of rows specified
432
+ static function cleanup_table($table_name, $max_rows = '10000')
433
+ {
434
+ global $wpdb, $aio_wp_security;
435
+
436
+ $num_rows = $wpdb->get_var("select count(*) from $table_name");
437
+ $result = true;
438
+ if($num_rows > $max_rows){
439
+ //if the table has more than max entries delete oldest rows
440
+
441
+ $del_sql = "DELETE FROM $table_name
442
+ WHERE id <= (
443
+ SELECT id
444
+ FROM (
445
+ SELECT id
446
+ FROM $table_name
447
+ ORDER BY id DESC
448
+ LIMIT 1 OFFSET $max_rows
449
+ ) foo_tmp
450
+ )";
451
+
452
+ $result = $wpdb->query($del_sql);
453
+ if($result === false){
454
+ $aio_wp_security->debug_logger->log_debug("AIOWPSecurity_Utility::cleanup_table failed for table name: ".$table_name,4);
455
+ }
456
+ }
457
+ return ($result === false)?false:true;
458
+ }
459
+
460
+
461
  }
classes/wp-security-wp-footer-content.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
 
2
 
3
- /*** This class handles tasks that need to be executed at wp-loaded time ***/
4
  class AIOWPSecurity_WP_Footer_Content {
5
 
6
  function __construct() {
@@ -11,58 +11,49 @@ class AIOWPSecurity_WP_Footer_Content {
11
  //Handle the copy protection feature
12
  if ($aio_wp_security->configs->get_value('aiowps_copy_protection') == '1') {
13
  $this->output_copy_protection_code();
14
- }
15
-
16
  //TODO - add other footer output content here
17
-
18
- }
19
-
20
- function output_copy_protection_code()
21
- {
22
- ?>
23
- <meta http-equiv="imagetoolbar" content="no"><!-- disable image toolbar (if any) -->
24
- <script language="Javascript">
25
- /*<![CDATA[*/
26
- document.oncontextmenu = function(){return false;};
27
- /*]]>*/
28
- </script>
29
- <script type="text/javascript">
30
- /*<![CDATA[*/
31
- document.onselectstart=function(){
32
- if (event.srcElement.type != "text" && event.srcElement.type != "textarea" && event.srcElement.type != "password") {
33
- return false;
34
- }
35
- else {
36
- return true;
37
- }
38
- };
39
- if (window.sidebar) {
40
- document.onmousedown=function(e){
41
- var obj=e.target;
42
- if (obj.tagName.toUpperCase() == 'SELECT'
43
- || obj.tagName.toUpperCase() == "INPUT"
44
- || obj.tagName.toUpperCase() == "TEXTAREA"
45
- || obj.tagName.toUpperCase() == "PASSWORD") {
46
- return true;
47
- }
48
- else {
49
- return false;
50
- }
51
- };
52
- }
53
- /*]]>*/
54
- </script>
55
- <script type="text/javascript" language="JavaScript1.1">
56
- /*<![CDATA[*/
57
- if (parent.frames.length > 0) { top.location.replace(document.location); }
58
- /*]]>*/
59
- </script>
60
- <script language="Javascript">
61
- /*<![CDATA[*/
62
- document.ondragstart = function(){return false;};
63
- /*]]>*/
64
- </script>
65
- <?php
66
  }
67
-
68
- }//End of class
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <?php
2
+ /* * * This class handles tasks that need to be executed at wp-loaded time ** */
3
 
 
4
  class AIOWPSecurity_WP_Footer_Content {
5
 
6
  function __construct() {
11
  //Handle the copy protection feature
12
  if ($aio_wp_security->configs->get_value('aiowps_copy_protection') == '1') {
13
  $this->output_copy_protection_code();
14
+ }
15
+
16
  //TODO - add other footer output content here
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  }
18
+
19
+ function output_copy_protection_code() {
20
+ ?>
21
+ <meta http-equiv="imagetoolbar" content="no"><!-- disable image toolbar (if any) -->
22
+ <script type="text/javascript">
23
+ /*<![CDATA[*/
24
+ document.oncontextmenu = function() {
25
+ return false;
26
+ };
27
+ document.onselectstart = function() {
28
+ if (event.srcElement.type != "text" && event.srcElement.type != "textarea" && event.srcElement.type != "password") {
29
+ return false;
30
+ }
31
+ else {
32
+ return true;
33
+ }
34
+ };
35
+ if (window.sidebar) {
36
+ document.onmousedown = function(e) {
37
+ var obj = e.target;
38
+ if (obj.tagName.toUpperCase() == 'SELECT'
39
+ || obj.tagName.toUpperCase() == "INPUT"
40
+ || obj.tagName.toUpperCase() == "TEXTAREA"
41
+ || obj.tagName.toUpperCase() == "PASSWORD") {
42
+ return true;
43
+ }
44
+ else {
45
+ return false;
46
+ }
47
+ };
48
+ }
49
+ document.ondragstart = function() {
50
+ return false;
51
+ };
52
+ /*]]>*/
53
+ </script>
54
+ <?php
55
+ }
56
+
57
+ }
58
+
59
+ //End of class
classes/wp-security-wp-loaded-tasks.php CHANGED
@@ -1,6 +1,7 @@
1
  <?php
2
 
3
- /*** This class handles tasks that need to be executed at wp-loaded time ***/
 
4
  class AIOWPSecurity_WP_Loaded_Tasks {
5
 
6
  function __construct() {
@@ -14,22 +15,28 @@ class AIOWPSecurity_WP_Loaded_Tasks {
14
  $login_object = new AIOWPSecurity_Process_Renamed_Login_Page();
15
  AIOWPSecurity_Process_Renamed_Login_Page::renamed_login_init_tasks();
16
  }
17
-
18
  //For site lockout feature (ie, maintenance mode). It needs to be checked after the rename login page
19
- if($aio_wp_security->configs->get_value('aiowps_site_lockout') == '1'){
20
  if (!is_user_logged_in() && !current_user_can('administrator') && !is_admin() && !in_array($GLOBALS['pagenow'], array('wp-login.php'))) {
21
- self::site_lockout_tasks();
22
  }
23
  }
24
  }
25
-
26
- static function site_lockout_tasks(){
27
- nocache_headers();
28
- header("HTTP/1.0 503 Service Unavailable");
29
- remove_action('wp_head','head_addons',7);
30
- include_once(AIO_WP_SECURITY_PATH.'/other-includes/wp-security-visitor-lockout-page.php');
 
 
 
 
 
 
 
31
  exit();
32
  }
33
-
34
 
35
  }
1
  <?php
2
 
3
+ /* * * This class handles tasks that need to be executed at wp-loaded time ** */
4
+
5
  class AIOWPSecurity_WP_Loaded_Tasks {
6
 
7
  function __construct() {
15
  $login_object = new AIOWPSecurity_Process_Renamed_Login_Page();
16
  AIOWPSecurity_Process_Renamed_Login_Page::renamed_login_init_tasks();
17
  }
18
+
19
  //For site lockout feature (ie, maintenance mode). It needs to be checked after the rename login page
20
+ if ($aio_wp_security->configs->get_value('aiowps_site_lockout') == '1') {
21
  if (!is_user_logged_in() && !current_user_can('administrator') && !is_admin() && !in_array($GLOBALS['pagenow'], array('wp-login.php'))) {
22
+ self::site_lockout_tasks();
23
  }
24
  }
25
  }
26
+
27
+ static function site_lockout_tasks() {
28
+ $lockout_output = apply_filters('aiowps_site_lockout_output', '');
29
+ if (empty($lockout_output)) {
30
+ nocache_headers();
31
+ header("HTTP/1.0 503 Service Unavailable");
32
+ remove_action('wp_head', 'head_addons', 7);
33
+ $template = apply_filters('aiowps_site_lockout_template_include', AIO_WP_SECURITY_PATH . '/other-includes/wp-security-visitor-lockout-page.php');
34
+ include_once($template);
35
+ } else {
36
+ echo $lockout_output;
37
+ }
38
+
39
  exit();
40
  }
 
41
 
42
  }
languages/aiowpsecurity-it_IT.mo CHANGED
Binary file
languages/aiowpsecurity-it_IT.po CHANGED
@@ -1,16 +1,16 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: All In One WP Security vv3.7.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2013-12-03 12:53+1000\n"
6
- "PO-Revision-Date: 2014-06-01 11:04+0100\n"
7
  "Last-Translator: Marco <marco.gmetti@alice.it>\n"
8
  "Language-Team: Marco Guglielmetti <mg@marcoguglielmetti.it>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Generator: Poedit 1.6.5\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
@@ -20,73 +20,73 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: ..\n"
21
 
22
  # @ aiowpsecurity
23
- #: admin/wp-security-admin-init.php:158
24
  msgid "WP Security"
25
  msgstr "Sicurezza WP"
26
 
27
  # @ aiowpsecurity
28
- #: admin/wp-security-admin-init.php:159
29
  #: admin/wp-security-dashboard-menu.php:23
30
  msgid "Dashboard"
31
  msgstr "Bacheca"
32
 
33
  # @ aiowpsecurity
34
- #: admin/wp-security-admin-init.php:160
35
  msgid "Settings"
36
  msgstr "Impostazioni"
37
 
38
  # @ aiowpsecurity
39
- #: admin/wp-security-admin-init.php:161
40
  msgid "User Accounts"
41
  msgstr "Account Utente"
42
 
43
  # @ aiowpsecurity
44
- #: admin/wp-security-admin-init.php:162
45
  msgid "User Login"
46
  msgstr "Login Utente"
47
 
48
  # @ aiowpsecurity
49
- #: admin/wp-security-admin-init.php:163
50
  msgid "User Registration"
51
  msgstr "Registrazione Utenti"
52
 
53
  # @ aiowpsecurity
54
- #: admin/wp-security-admin-init.php:164
55
  msgid "Database Security"
56
  msgstr "Sicurezza Database"
57
 
58
  # @ aiowpsecurity
59
- #: admin/wp-security-admin-init.php:168
60
  msgid "Filesystem Security"
61
  msgstr "Sicurezza File Sistema"
62
 
63
  # @ aiowpsecurity
64
- #: admin/wp-security-admin-init.php:170
65
  msgid "WHOIS Lookup"
66
  msgstr "Ricerca WHOIS"
67
 
68
  # @ aiowpsecurity
69
- #: admin/wp-security-admin-init.php:174
70
  msgid "Blacklist Manager"
71
  msgstr "Gestione Blacklist"
72
 
73
  # @ aiowpsecurity
74
- #: admin/wp-security-admin-init.php:179
75
  msgid "Firewall"
76
  msgstr "Firewall"
77
 
78
  # @ aiowpsecurity
79
- #: admin/wp-security-admin-init.php:186
80
  msgid "SPAM Prevention"
81
  msgstr "Prevenzione SPAM"
82
 
83
  # @ aiowpsecurity
84
- #: admin/wp-security-admin-init.php:190
85
  msgid "Scanner"
86
  msgstr "Scanner"
87
 
88
  # @ aiowpsecurity
89
- #: admin/wp-security-admin-init.php:192
90
  msgid "Maintenance"
91
  msgstr "Manutenzione"
92
 
@@ -112,7 +112,7 @@ msgstr "Salvataggio impostazioni blacklist fallito!"
112
 
113
  # @ aiowpsecurity
114
  #: admin/wp-security-blacklist-menu.php:132
115
- #: admin/wp-security-brute-force-menu.php:608
116
  #: admin/wp-security-list-comment-spammer-ip.php:147
117
  msgid ""
118
  "The plugin was unable to write to the .htaccess file. Please edit file "
@@ -132,8 +132,8 @@ msgid ""
132
  "The All In One WP Security Blacklist feature gives you the option of banning "
133
  "certain host IP addresses or ranges and also user agents."
134
  msgstr ""
135
- "L'All In One caratteristica Blacklist WP Security offre la possibilità di "
136
- "vietare determinati indirizzi IP o intervalli di accesso e anche user agent."
137
 
138
  # @ aiowpsecurity
139
  #: admin/wp-security-blacklist-menu.php:143
@@ -181,9 +181,9 @@ msgid ""
181
  "Check this if you want to enable the banning (or blacklisting) of selected "
182
  "IP addresses and/or user agents specified in the settings below"
183
  msgstr ""
184
- "Selezionare questa se si desidera attivare la messa al bando (o lista nera) "
185
- "di indirizzi IP selezionati e / o user agents specificati nelle impostazioni "
186
- "di seguito"
187
 
188
  # @ aiowpsecurity
189
  #: admin/wp-security-blacklist-menu.php:169
@@ -198,13 +198,13 @@ msgstr "Immettere uno o più indirizzi IP o intervalli IP."
198
  # @ aiowpsecurity
199
  #: admin/wp-security-blacklist-menu.php:174
200
  #: admin/wp-security-blacklist-menu.php:194
201
- #: admin/wp-security-brute-force-menu.php:343
202
- #: admin/wp-security-brute-force-menu.php:377
203
- #: admin/wp-security-brute-force-menu.php:400
204
- #: admin/wp-security-brute-force-menu.php:421
205
- #: admin/wp-security-brute-force-menu.php:664
206
- #: admin/wp-security-filescan-menu.php:291
207
- #: admin/wp-security-filescan-menu.php:308
208
  #: admin/wp-security-firewall-menu.php:165
209
  #: admin/wp-security-firewall-menu.php:195
210
  #: admin/wp-security-firewall-menu.php:326
@@ -215,20 +215,20 @@ msgstr "Immettere uno o più indirizzi IP o intervalli IP."
215
  #: admin/wp-security-firewall-menu.php:532
216
  #: admin/wp-security-firewall-menu.php:622
217
  #: admin/wp-security-firewall-menu.php:824
218
- #: admin/wp-security-firewall-menu.php:847 admin/wp-security-spam-menu.php:166
219
- #: admin/wp-security-spam-menu.php:251
220
  msgid "More Info"
221
  msgstr "Altre Info"
222
 
223
  # @ aiowpsecurity
224
  #: admin/wp-security-blacklist-menu.php:177
225
- #: admin/wp-security-brute-force-menu.php:667
226
  msgid "Each IP address must be on a new line."
227
  msgstr "Ogni indirizzo IP deve essere su una nuova linea."
228
 
229
  # @ aiowpsecurity
230
  #: admin/wp-security-blacklist-menu.php:178
231
- #: admin/wp-security-brute-force-menu.php:668
232
  msgid ""
233
  "To specify an IP range use a wildcard \"*\" character. Acceptable ways to "
234
  "use wildcards is shown in the examples below:"
@@ -239,19 +239,19 @@ msgstr ""
239
 
240
  # @ aiowpsecurity
241
  #: admin/wp-security-blacklist-menu.php:179
242
- #: admin/wp-security-brute-force-menu.php:669
243
  msgid "Example 1: 195.47.89.*"
244
  msgstr "Esempio 1: 195.47.89.*"
245
 
246
  # @ aiowpsecurity
247
  #: admin/wp-security-blacklist-menu.php:180
248
- #: admin/wp-security-brute-force-menu.php:670
249
  msgid "Example 2: 195.47.*.*"
250
  msgstr "Esempio 2: 195.47.*.*"
251
 
252
  # @ aiowpsecurity
253
  #: admin/wp-security-blacklist-menu.php:181
254
- #: admin/wp-security-brute-force-menu.php:671
255
  msgid "Example 3: 195.*.*.*"
256
  msgstr "Esempio 3: 195.*.*.*"
257
 
@@ -281,20 +281,24 @@ msgid "Example 2 - A list of more than 1 user agent strings to block"
281
  msgstr "Esempio 2 - Un elenco di più stringhe di agent per bloccare"
282
 
283
  # @ aiowpsecurity
 
284
  #: admin/wp-security-blacklist-menu.php:208
285
- #: admin/wp-security-brute-force-menu.php:188
286
- #: admin/wp-security-brute-force-menu.php:544
287
- #: admin/wp-security-brute-force-menu.php:678
 
288
  #: admin/wp-security-database-menu.php:356
289
- #: admin/wp-security-filescan-menu.php:329
290
  #: admin/wp-security-filesystem-menu.php:231
291
  #: admin/wp-security-firewall-menu.php:700
292
  #: admin/wp-security-firewall-menu.php:866
293
- #: admin/wp-security-settings-menu.php:493 admin/wp-security-spam-menu.php:181
 
 
294
  #: admin/wp-security-user-login-menu.php:239
295
  #: admin/wp-security-user-login-menu.php:407
296
  #: admin/wp-security-user-registration-menu.php:146
297
- #: admin/wp-security-user-registration-menu.php:221
298
  msgid "Save Settings"
299
  msgstr "Salva Impostazioni"
300
 
@@ -306,8 +310,7 @@ msgstr "Info Sistema"
306
  # @ aiowpsecurity
307
  #: admin/wp-security-dashboard-menu.php:75
308
  msgid "For information, updates and documentation, please visit the"
309
- msgstr ""
310
- "Per informazioni, aggiornamenti e documentazione, si prega di visitare la"
311
 
312
  # @ aiowpsecurity
313
  #: admin/wp-security-dashboard-menu.php:75
@@ -317,7 +320,7 @@ msgstr "AIO WP Security & Firewall Plugin"
317
  # @ aiowpsecurity
318
  #: admin/wp-security-dashboard-menu.php:75
319
  msgid "Page"
320
- msgstr "Pagina"
321
 
322
  # @ aiowpsecurity
323
  #: admin/wp-security-dashboard-menu.php:76
@@ -356,7 +359,7 @@ msgid ""
356
  "activate on your site to achieve a minimum level of recommended security"
357
  msgstr ""
358
  "Di seguito è riportato lo stato attuale delle caratteristiche fondamentali "
359
- "che si dovrebbe attivare sul tuo sito per ottenere un livello minimo di "
360
  "sicurezza raccomandata"
361
 
362
  # @ aiowpsecurity
@@ -494,7 +497,7 @@ msgstr "Debug File Permessi di scrittura"
494
  # @ aiowpsecurity
495
  #: admin/wp-security-dashboard-menu.php:605
496
  msgid "Active Plugins"
497
- msgstr "Plugin Attivo"
498
 
499
  # @ aiowpsecurity
500
  #: admin/wp-security-dashboard-menu.php:615
@@ -563,7 +566,7 @@ msgid ""
563
  "contains a lot of your site's precious information."
564
  msgstr ""
565
  "Il tuo DB WordPress è la risorsa più importante del tuo sito web perché "
566
- "contiene un sacco di informazioni preziose del tuo sito."
567
 
568
  # @ aiowpsecurity
569
  #: admin/wp-security-database-menu.php:135
@@ -686,7 +689,7 @@ msgstr ""
686
 
687
  # @ aiowpsecurity
688
  #: admin/wp-security-database-menu.php:251
689
- #: admin/wp-security-filescan-menu.php:133
690
  msgid ""
691
  "You entered a non numeric value for the \"backup time interval\" field. It "
692
  "has been set to the default value."
@@ -705,7 +708,7 @@ msgstr ""
705
 
706
  # @ aiowpsecurity
707
  #: admin/wp-security-database-menu.php:265
708
- #: admin/wp-security-filescan-menu.php:163
709
  #: admin/wp-security-user-login-menu.php:117
710
  msgid ""
711
  "You have entered an incorrect email address format. It has been set to your "
@@ -715,10 +718,10 @@ msgstr ""
715
  "tua email amministratore WordPress predefinita."
716
 
717
  # @ aiowpsecurity
718
- #: admin/wp-security-brute-force-menu.php:108
719
  #: admin/wp-security-database-menu.php:271
720
- #: admin/wp-security-filescan-menu.php:169
721
- #: admin/wp-security-firewall-menu.php:769 admin/wp-security-spam-menu.php:211
722
  #: admin/wp-security-user-login-menu.php:123
723
  #: admin/wp-security-user-login-menu.php:360
724
  msgid "Attention!"
@@ -733,7 +736,7 @@ msgstr "Backup Manuale"
733
  #: admin/wp-security-database-menu.php:304
734
  msgid "To create a new DB backup just click on the button below."
735
  msgstr ""
736
- "Per creare un nuovo backup DB è sufficiente fare clic sul pulsante qui sotto."
737
 
738
  # @ aiowpsecurity
739
  #: admin/wp-security-database-menu.php:307
@@ -756,8 +759,8 @@ msgid ""
756
  "Check this if you want the system to automatically generate backups "
757
  "periodically based on the settings below"
758
  msgstr ""
759
- "Selezionare questa se si desidera che il sistema generari automaticamente i "
760
- "backup periodicamente in base alle impostazioni di seguito"
761
 
762
  # @ aiowpsecurity
763
  #: admin/wp-security-database-menu.php:330
@@ -766,19 +769,19 @@ msgstr "Intervallo di Tempo Backup"
766
 
767
  # @ aiowpsecurity
768
  #: admin/wp-security-database-menu.php:333
769
- #: admin/wp-security-filescan-menu.php:279
770
  msgid "Hours"
771
  msgstr "Ore"
772
 
773
  # @ aiowpsecurity
774
  #: admin/wp-security-database-menu.php:334
775
- #: admin/wp-security-filescan-menu.php:280
776
  msgid "Days"
777
  msgstr "Giorni"
778
 
779
  # @ aiowpsecurity
780
  #: admin/wp-security-database-menu.php:335
781
- #: admin/wp-security-filescan-menu.php:281
782
  msgid "Weeks"
783
  msgstr "Settimane"
784
 
@@ -818,7 +821,7 @@ msgstr ""
818
 
819
  # @ aiowpsecurity
820
  #: admin/wp-security-database-menu.php:352
821
- #: admin/wp-security-filescan-menu.php:325
822
  #: admin/wp-security-user-login-menu.php:235
823
  msgid "Enter an email address"
824
  msgstr "Inserisci Indirizzo Email"
@@ -873,12 +876,12 @@ msgid "%s tables had their prefix updated successfully!"
873
  msgstr "%s tabelle hanno il loro prefisso aggiornato con successo!"
874
 
875
  # @ aiowpsecurity
876
- #: admin/wp-security-database-menu.php:452
877
  msgid "wp-config.php file was updated successfully!"
878
  msgstr "wp-config.php file è stato aggiornato con successo!"
879
 
880
  # @ aiowpsecurity
881
- #: admin/wp-security-database-menu.php:455
882
  #, php-format
883
  msgid ""
884
  "The \"wp-config.php\" file was not able to be modified. Please modify this "
@@ -892,13 +895,13 @@ msgstr ""
892
  "valore a tale variabile: %s"
893
 
894
  # @ aiowpsecurity
895
- #: admin/wp-security-database-menu.php:476
896
  msgid "There was an error when updating the options table."
897
  msgstr ""
898
  "Si è verificato un errore durante l'aggiornamento delle opzioni tabella."
899
 
900
  # @ aiowpsecurity
901
- #: admin/wp-security-database-menu.php:480
902
  msgid ""
903
  "The options table records which had references to the old DB prefix were "
904
  "updated successfully!"
@@ -907,7 +910,7 @@ msgstr ""
907
  "prefisso DB sono state aggiornate con successo!"
908
 
909
  # @ aiowpsecurity
910
- #: admin/wp-security-database-menu.php:505
911
  #, php-format
912
  msgid ""
913
  "Error updating user_meta table where new meta_key = %s, old meta_key = %s "
@@ -917,7 +920,7 @@ msgstr ""
917
  "vecchio meta_key = %s e user_id = %s."
918
 
919
  # @ aiowpsecurity
920
- #: admin/wp-security-database-menu.php:511
921
  msgid ""
922
  "The usermeta table records which had references to the old DB prefix were "
923
  "updated successfully!"
@@ -926,25 +929,25 @@ msgstr ""
926
  "DB sono state aggiornate con successo!"
927
 
928
  # @ aiowpsecurity
929
- #: admin/wp-security-database-menu.php:513
930
  msgid "DB prefix change tasks have been completed."
931
  msgstr "Sono state completate le attività di DB del cambiamento di prefisso."
932
 
933
  # @ aiowpsecurity
934
- #: admin/wp-security-filescan-menu.php:23
935
- #: classes/grade-system/wp-security-feature-item-manager.php:102
936
  msgid "File Change Detection"
937
  msgstr "Rilevamento Modifiche File"
938
 
939
  # @ aiowpsecurity
940
- #: admin/wp-security-filescan-menu.php:103
941
  msgid "Nonce check failed for manual file change detection scan operation!"
942
  msgstr ""
943
  "Check non riuscito per la scansione manulale di rilevamento modifica dei "
944
  "file!"
945
 
946
  # @ aiowpsecurity
947
- #: admin/wp-security-filescan-menu.php:110
948
  msgid ""
949
  "The plugin has detected that this is your first file change detection scan. "
950
  "The file details from this scan will be used to detect file changes for "
@@ -955,7 +958,7 @@ msgstr ""
955
  "utilizzati per rilevare i cambiamenti dei file per le scansioni future!"
956
 
957
  # @ aiowpsecurity
958
- #: admin/wp-security-filescan-menu.php:201
959
  msgid ""
960
  "NEW SCAN COMPLETED: The plugin has detected that you have made changes to "
961
  "the \"File Types To Ignore\" or \"Files To Ignore\" fields.\n"
@@ -969,7 +972,7 @@ msgstr ""
969
  "future siano precisi, i dati della scansione vecchia sono stati aggiornati."
970
 
971
  # @ aiowpsecurity
972
- #: admin/wp-security-filescan-menu.php:211
973
  msgid ""
974
  "All In One WP Security & Firewall has detected that there was a change in "
975
  "your host's files."
@@ -978,31 +981,31 @@ msgstr ""
978
  "nei file del proprio host."
979
 
980
  # @ aiowpsecurity
981
- #: admin/wp-security-filescan-menu.php:213
982
  msgid "View Scan Details & Clear This Message"
983
  msgstr "Visualizza i dettagli di scansione e cancella il messaggio"
984
 
985
  # @ aiowpsecurity
986
- #: admin/wp-security-filescan-menu.php:222
987
  msgid ""
988
  "If given an opportunity hackers can insert their code or files into your "
989
  "system which they can then use to carry out malicious acts on your site."
990
  msgstr ""
991
- "Esiste la possibilità che hacker possono inserire il loro codice nei file o "
992
- "nel vostro sistema, che possono poi utilizzare per eseguire operazioni "
993
- "dannose sul tuo sito."
994
 
995
  # @ aiowpsecurity
996
- #: admin/wp-security-filescan-menu.php:223
997
  msgid ""
998
  "Being informed of any changes in your files can be a good way to quickly "
999
  "prevent a hacker from causing damage to your website."
1000
  msgstr ""
1001
  "Essere informati di eventuali cambiamenti nei file può essere un buon modo "
1002
- "per evitare rapidamente che un hacker possa causare danni al vostro sito web."
1003
 
1004
  # @ aiowpsecurity
1005
- #: admin/wp-security-filescan-menu.php:224
1006
  msgid ""
1007
  "In general, WordPress core and plugin files and file types such as \".php\" "
1008
  "or \".js\" should not change often and when they do, it is important that "
@@ -1014,19 +1017,19 @@ msgstr ""
1014
  "influenzato."
1015
 
1016
  # @ aiowpsecurity
1017
- #: admin/wp-security-filescan-menu.php:225
1018
  msgid ""
1019
  "The \"File Change Detection Feature\" will notify you of any file change "
1020
  "which occurs on your system, including the addition and deletion of files by "
1021
  "performing a regular automated or manual scan of your system's files."
1022
  msgstr ""
1023
- "Il \"File Rilevamento Modifiche Funzioni\" comunicherà qualsiasi modifica di "
1024
  "file che si verifica sul sistema, tra cui l'aggiunta e la cancellazione dei "
1025
  "file per effettuare una normale scansione automatica o manuale dei file del "
1026
  "proprio sistema."
1027
 
1028
  # @ aiowpsecurity
1029
- #: admin/wp-security-filescan-menu.php:226
1030
  msgid ""
1031
  "This feature also allows you to exclude certain files or folders from the "
1032
  "scan in cases where you know that they change often as part of their normal "
@@ -1038,15 +1041,15 @@ msgstr ""
1038
  "dalla scansione se si sa che cambiano spesso come parte del loro normale "
1039
  "funzionamento. (Ad esempio i file di log e di alcuni file dei plugin di "
1040
  "caching possono cambiare spesso e quindi si può scegliere di escludere tali "
1041
- "file dalla scansione di rilevamento di modifica)"
1042
 
1043
  # @ aiowpsecurity
1044
- #: admin/wp-security-filescan-menu.php:231
1045
  msgid "Manual File Change Detection Scan"
1046
  msgstr "Scansione Rilevamento Modifiche File Manuale"
1047
 
1048
  # @ aiowpsecurity
1049
- #: admin/wp-security-filescan-menu.php:237
1050
  msgid ""
1051
  "To perform a manual file change detection scan click on the button below."
1052
  msgstr ""
@@ -1054,49 +1057,49 @@ msgstr ""
1054
  "pulsante qui sotto."
1055
 
1056
  # @ aiowpsecurity
1057
- #: admin/wp-security-filescan-menu.php:240
1058
  msgid "Perform Scan Now"
1059
  msgstr "Esegui scansione Ora"
1060
 
1061
  # @ aiowpsecurity
1062
- #: admin/wp-security-filescan-menu.php:257
1063
  msgid "File Change Detection Settings"
1064
  msgstr "Impostazioni Rilevamento Modifiche File"
1065
 
1066
  # @ aiowpsecurity
1067
- #: admin/wp-security-filescan-menu.php:269
1068
  msgid "Enable Automated File Change Detection Scan"
1069
  msgstr "Attiva Scansione Automatica Rilevamento Modifiche File"
1070
 
1071
  # @ aiowpsecurity
1072
- #: admin/wp-security-filescan-menu.php:272
1073
  msgid ""
1074
  "Check this if you want the system to automatically/periodically scan your "
1075
  "files to check for file changes based on the settings below"
1076
  msgstr ""
1077
- "Selezionare questa casella se vuoi che il sistema esegua in automatico/"
1078
  "periodicamente la scansione dei file per verificare eventuali modifiche in "
1079
  "base alle impostazioni di seguito"
1080
 
1081
  # @ aiowpsecurity
1082
- #: admin/wp-security-filescan-menu.php:276
1083
  msgid "Scan Time Interval"
1084
  msgstr "Intervallo Tempo Scansione"
1085
 
1086
  # @ aiowpsecurity
1087
- #: admin/wp-security-filescan-menu.php:283
1088
  msgid "Set the value for how often you would like a scan to occur"
1089
  msgstr ""
1090
  "Impostare il valore per quanto spesso si desidera creare una scansione di "
1091
  "verifica"
1092
 
1093
  # @ aiowpsecurity
1094
- #: admin/wp-security-filescan-menu.php:287
1095
  msgid "File Types To Ignore"
1096
  msgstr "Tipi di file da ignorare"
1097
 
1098
  # @ aiowpsecurity
1099
- #: admin/wp-security-filescan-menu.php:290
1100
  msgid ""
1101
  "Enter each file type or extension on a new line which you wish to exclude "
1102
  "from the file change detection scan."
@@ -1105,7 +1108,7 @@ msgstr ""
1105
  "escludere dalla scansione di rilevamento delle modifiche dei file."
1106
 
1107
  # @ aiowpsecurity
1108
- #: admin/wp-security-filescan-menu.php:294
1109
  msgid ""
1110
  "You can exclude file types from the scan which would not normally pose any "
1111
  "security threat if they were changed. These can include things such as image "
@@ -1116,7 +1119,7 @@ msgstr ""
1116
  "possono includere cose come file di immagine."
1117
 
1118
  # @ aiowpsecurity
1119
- #: admin/wp-security-filescan-menu.php:295
1120
  msgid ""
1121
  "Example: If you want the scanner to ignore files of type jpg, png, and bmp, "
1122
  "then you would enter the following:"
@@ -1125,27 +1128,27 @@ msgstr ""
1125
  "immettere il seguente:"
1126
 
1127
  # @ aiowpsecurity
1128
- #: admin/wp-security-filescan-menu.php:296
1129
  msgid "jpg"
1130
  msgstr "jpg"
1131
 
1132
  # @ aiowpsecurity
1133
- #: admin/wp-security-filescan-menu.php:297
1134
  msgid "png"
1135
  msgstr "png"
1136
 
1137
  # @ aiowpsecurity
1138
- #: admin/wp-security-filescan-menu.php:298
1139
  msgid "bmp"
1140
  msgstr "bmp"
1141
 
1142
  # @ aiowpsecurity
1143
- #: admin/wp-security-filescan-menu.php:304
1144
  msgid "Files/Directories To Ignore"
1145
  msgstr "File/Directory Da Ignorare"
1146
 
1147
  # @ aiowpsecurity
1148
- #: admin/wp-security-filescan-menu.php:307
1149
  msgid ""
1150
  "Enter each file or directory on a new line which you wish to exclude from "
1151
  "the file change detection scan."
@@ -1154,7 +1157,7 @@ msgstr ""
1154
  "di rilevamento delle modifiche dei file, su una nuova linea."
1155
 
1156
  # @ aiowpsecurity
1157
- #: admin/wp-security-filescan-menu.php:311
1158
  msgid ""
1159
  "You can exclude specific files/directories from the scan which would not "
1160
  "normally pose any security threat if they were changed. These can include "
@@ -1165,7 +1168,7 @@ msgstr ""
1165
  "modificati. Questi possono includere cose come i file di log."
1166
 
1167
  # @ aiowpsecurity
1168
- #: admin/wp-security-filescan-menu.php:312
1169
  msgid ""
1170
  "Example: If you want the scanner to ignore certain files in different "
1171
  "directories or whole directories, then you would enter the following:"
@@ -1174,22 +1177,22 @@ msgstr ""
1174
  "directory o intere directory, immettere il seguente:"
1175
 
1176
  # @ aiowpsecurity
1177
- #: admin/wp-security-filescan-menu.php:313
1178
  msgid "cache/config/master.php"
1179
  msgstr "cache/config/master.php"
1180
 
1181
  # @ aiowpsecurity
1182
- #: admin/wp-security-filescan-menu.php:314
1183
  msgid "somedirectory"
1184
  msgstr "nomedirectory"
1185
 
1186
  # @ aiowpsecurity
1187
- #: admin/wp-security-filescan-menu.php:320
1188
  msgid "Send Email When Change Detected"
1189
  msgstr "Invia e-mail quando viene rilevata una modifica"
1190
 
1191
  # @ aiowpsecurity
1192
- #: admin/wp-security-filescan-menu.php:323
1193
  msgid ""
1194
  "Check this if you want the system to email you if a file change was detected"
1195
  msgstr ""
@@ -1197,45 +1200,45 @@ msgstr ""
1197
  "rilevata una modifica"
1198
 
1199
  # @ aiowpsecurity
1200
- #: admin/wp-security-filescan-menu.php:391
1201
  msgid "Latest File Change Scan Results"
1202
  msgstr "Ultimi Risultati scansione di modifica file"
1203
 
1204
  # @ aiowpsecurity
1205
- #: admin/wp-security-filescan-menu.php:400
1206
  msgid "The following files were added to your host."
1207
  msgstr "I seguenti file sono stati aggiunti al tu Host."
1208
 
1209
  # @ aiowpsecurity
1210
- #: admin/wp-security-filescan-menu.php:403
1211
- #: admin/wp-security-filescan-menu.php:424
1212
- #: admin/wp-security-filescan-menu.php:448
1213
- #: admin/wp-security-settings-menu.php:26
1214
  #: admin/wp-security-settings-menu.php:27
 
1215
  msgid "File"
1216
  msgstr "File"
1217
 
1218
  # @ aiowpsecurity
1219
- #: admin/wp-security-filescan-menu.php:404
1220
- #: admin/wp-security-filescan-menu.php:425
1221
- #: admin/wp-security-filescan-menu.php:449
1222
  msgid "File Size"
1223
  msgstr "Dimensione File"
1224
 
1225
  # @ aiowpsecurity
1226
- #: admin/wp-security-filescan-menu.php:405
1227
- #: admin/wp-security-filescan-menu.php:426
1228
- #: admin/wp-security-filescan-menu.php:450
1229
  msgid "File Modified"
1230
  msgstr "Modifica File"
1231
 
1232
  # @ aiowpsecurity
1233
- #: admin/wp-security-filescan-menu.php:421
1234
  msgid "The following files were removed from your host."
1235
  msgstr "I seguenti file sono stati rimossi dal tuo host."
1236
 
1237
  # @ aiowpsecurity
1238
- #: admin/wp-security-filescan-menu.php:445
1239
  msgid "The following files were changed on your host."
1240
  msgstr "I seguenti file sono stati modificati nel tuo host."
1241
 
@@ -1284,7 +1287,7 @@ msgid ""
1284
  "and read/write privileges of the files and folders which make up your WP "
1285
  "installation."
1286
  msgstr ""
1287
- "Il tuo file di WordPress e le impostazioni delle autorizzazioni delle "
1288
  "cartelle regolano i privilegi di accesso e lettura/scrittura dei file e "
1289
  "delle cartelle che compongono l'installazione WP."
1290
 
@@ -1294,8 +1297,8 @@ msgid ""
1294
  "Your WP installation already comes with reasonably secure file permission "
1295
  "settings for the filesystem."
1296
  msgstr ""
1297
- "La tua installazione di WP viene fornito già con le impostazioni di "
1298
- "autorizzazione di file ragionevolmente sicuri per il filesystem."
1299
 
1300
  # @ aiowpsecurity
1301
  #: admin/wp-security-filesystem-menu.php:111
@@ -1410,8 +1413,8 @@ msgid ""
1410
  "Check this if you want to remove the ability for people to edit PHP files "
1411
  "via the WP dashboard"
1412
  msgstr ""
1413
- "Selezionare questa casella se vuoi rimuovere la possibilità per le persone "
1414
- "di modificare i file PHP tramite la bacheca WP"
1415
 
1416
  # @ aiowpsecurity
1417
  #: admin/wp-security-filesystem-menu.php:271
@@ -1423,12 +1426,12 @@ msgstr ""
1423
  "default WP."
1424
 
1425
  # @ aiowpsecurity
1426
- #: admin/wp-security-brute-force-menu.php:281
1427
  #: admin/wp-security-filesystem-menu.php:275
1428
  #: admin/wp-security-firewall-menu.php:119
1429
  #: admin/wp-security-firewall-menu.php:287
1430
  #: admin/wp-security-firewall-menu.php:498
1431
- #: admin/wp-security-firewall-menu.php:667 admin/wp-security-spam-menu.php:106
1432
  msgid ""
1433
  "Could not write to the .htaccess file. Please check the file permissions."
1434
  msgstr ""
@@ -1474,8 +1477,8 @@ msgid ""
1474
  "Check this if you want to prevent access to readme.html, license.txt and wp-"
1475
  "config-sample.php."
1476
  msgstr ""
1477
- "Selezionare questa casella per impedire l'accesso a readme.html, license.txt "
1478
- "e wp-config-sample.php."
1479
 
1480
  # @ aiowpsecurity
1481
  #: admin/wp-security-filesystem-menu.php:307
@@ -1582,7 +1585,8 @@ msgstr "Regole Blacklist Firewall 5G"
1582
 
1583
  # @ aiowpsecurity
1584
  #: admin/wp-security-firewall-menu.php:115
1585
- #: admin/wp-security-firewall-menu.php:663 admin/wp-security-spam-menu.php:102
 
1586
  #: admin/wp-security-user-registration-menu.php:96
1587
  msgid "Settings were successfully saved"
1588
  msgstr "Impostazioni salvate con successo"
@@ -1619,7 +1623,7 @@ msgid ""
1619
  "into your currently active .htaccess file."
1620
  msgstr ""
1621
  "La funzionalità firewall è ottenuta tramite l'inserimento di codice speciale "
1622
- "nel file correntemente attivo. Htaccess."
1623
 
1624
  # @ aiowpsecurity
1625
  #: admin/wp-security-firewall-menu.php:153
@@ -1674,7 +1678,7 @@ msgid ""
1674
  "should not affect your site's overall functionality."
1675
  msgstr ""
1676
  "Le funzioni di firewall di cui sopra verranno applicate tramite il file ."
1677
- "htaccess e non dovrebbe pregiudicare la funzionalità complessiva del tuo "
1678
  "sito."
1679
 
1680
  # @ aiowpsecurity
@@ -1704,7 +1708,7 @@ msgid ""
1704
  "enable protection against WordPress pingback vulnerabilities."
1705
  msgstr ""
1706
  "Seleziona questo se non utilizzi le funzioni WP XML-RPC e vuoi attivare la "
1707
- "protezione contro WordPress pingback vulnerabilità."
1708
 
1709
  # @ aiowpsecurity
1710
  #: admin/wp-security-firewall-menu.php:198
@@ -1819,7 +1823,7 @@ msgstr "Elenco Contenuti Directory"
1819
 
1820
  # @ aiowpsecurity
1821
  #: admin/wp-security-firewall-menu.php:322
1822
- #: classes/grade-system/wp-security-feature-item-manager.php:88
1823
  msgid "Disable Index Views"
1824
  msgstr "Disabilita Vista Index"
1825
 
@@ -1827,7 +1831,7 @@ msgstr "Disabilita Vista Index"
1827
  #: admin/wp-security-firewall-menu.php:325
1828
  msgid "Check this if you want to disable directory and file listing."
1829
  msgstr ""
1830
- "Selezionare questa se si desidera disabilitare directory e elenco file."
1831
 
1832
  # @ aiowpsecurity
1833
  #: admin/wp-security-firewall-menu.php:330
@@ -1852,7 +1856,7 @@ msgstr "Tracciamento e Monitoraggio"
1852
 
1853
  # @ aiowpsecurity
1854
  #: admin/wp-security-firewall-menu.php:352
1855
- #: classes/grade-system/wp-security-feature-item-manager.php:89
1856
  msgid "Disable Trace and Track"
1857
  msgstr "Disattiva Tracciamento e Monitoraggio"
1858
 
@@ -1876,7 +1880,7 @@ msgid ""
1876
  "This hacking technique is usually used together with cross site scripting "
1877
  "attacks (XSS)."
1878
  msgstr ""
1879
- "Questa tecnica di hacking è di solito usato con attacchi cross site "
1880
  "scripting (XSS)."
1881
 
1882
  # @ aiowpsecurity
@@ -1966,7 +1970,7 @@ msgstr ""
1966
 
1967
  # @ aiowpsecurity
1968
  #: admin/wp-security-firewall-menu.php:430
1969
- #: classes/grade-system/wp-security-feature-item-manager.php:92
1970
  msgid "Advanced Character String Filter"
1971
  msgstr "Filtro Avanzato Stringa Caratteri "
1972
 
@@ -2129,7 +2133,7 @@ msgid "Save 5G Firewall Settings"
2129
  msgstr "Salva Impostazioni 5G Firewall"
2130
 
2131
  # @ aiowpsecurity
2132
- #: admin/wp-security-brute-force-menu.php:217
2133
  msgid ""
2134
  "Settings have not been saved - your secret word must consist only of "
2135
  "alphanumeric characters, ie, letters and/or numbers only!"
@@ -2138,21 +2142,21 @@ msgstr ""
2138
  "composta solo da caratteri alfanumerici, cioè lettere e/o solo numeri!"
2139
 
2140
  # @ aiowpsecurity
2141
- #: admin/wp-security-brute-force-menu.php:236
2142
  msgid ""
2143
  "You have successfully enabled the cookie based brute force prevention feature"
2144
  msgstr ""
2145
  "È stata attivata con successo la funzione di prevenzione base brute force"
2146
 
2147
  # @ aiowpsecurity
2148
- #: admin/wp-security-brute-force-menu.php:237
2149
  msgid ""
2150
  "From now on you will need to log into your WP Admin using the following URL:"
2151
  msgstr ""
2152
  "Da ora in poi per accedere al pannello Admin WP dovrai usare il seguente URL:"
2153
 
2154
  # @ aiowpsecurity
2155
- #: admin/wp-security-brute-force-menu.php:239
2156
  msgid ""
2157
  "It is important that you save this URL value somewhere in case you forget "
2158
  "it, OR,"
@@ -2161,7 +2165,7 @@ msgstr ""
2161
  "O,"
2162
 
2163
  # @ aiowpsecurity
2164
- #: admin/wp-security-brute-force-menu.php:240
2165
  #, php-format
2166
  msgid "simply remember to add a \"?%s=1\" to your current site URL address."
2167
  msgstr ""
@@ -2169,7 +2173,7 @@ msgstr ""
2169
  "sito."
2170
 
2171
  # @ aiowpsecurity
2172
- #: admin/wp-security-brute-force-menu.php:246
2173
  msgid ""
2174
  "You have successfully saved cookie based brute force prevention feature "
2175
  "settings."
@@ -2178,21 +2182,21 @@ msgstr ""
2178
  "brute force."
2179
 
2180
  # @ aiowpsecurity
2181
- #: admin/wp-security-brute-force-menu.php:291
2182
  msgid "Brute Force Prevention Firewall Settings"
2183
  msgstr "Impostazioni Prevenzione Brute Force Firewall"
2184
 
2185
  # @ aiowpsecurity
2186
- #: admin/wp-security-brute-force-menu.php:296
2187
  msgid ""
2188
  "A Brute Force Attack is when a hacker tries many combinations of usernames "
2189
  "and passwords until they succeed in guessing the right combination."
2190
  msgstr ""
2191
  "Un attacco brute force è quando un hacker tenta molte combinazioni di nomi "
2192
- "utente e password fino a quando non riescono a indovinare quella giusta."
2193
 
2194
  # @ aiowpsecurity
2195
- #: admin/wp-security-brute-force-menu.php:297
2196
  msgid ""
2197
  "Due to the fact that at any one time there may be many concurrent login "
2198
  "attempts occurring on your site via malicious automated robots, this also "
@@ -2204,7 +2208,7 @@ msgstr ""
2204
  "le prestazioni del server."
2205
 
2206
  # @ aiowpsecurity
2207
- #: admin/wp-security-brute-force-menu.php:298
2208
  msgid ""
2209
  "The features in this tab will stop the majority of Brute Force Login Attacks "
2210
  "at the .htaccess level thus providing even better protection for your WP "
@@ -2218,7 +2222,7 @@ msgstr ""
2218
  "tentativi di accesso."
2219
 
2220
  # @ aiowpsecurity
2221
- #: admin/wp-security-brute-force-menu.php:305
2222
  #, php-format
2223
  msgid ""
2224
  "Even though this feature should not have any impact on your site's general "
@@ -2226,11 +2230,11 @@ msgid ""
2226
  "htaccess file before proceeding</strong>."
2227
  msgstr ""
2228
  "Anche se questa caratteristica non dovrebbe avere alcun impatto sulla "
2229
- "funzionalità generale del tuo sito <strong> è vivamente consigliato fare una "
2230
  "%s del file .htaccess prima di procedere</strong>."
2231
 
2232
  # @ aiowpsecurity
2233
- #: admin/wp-security-brute-force-menu.php:307
2234
  #, php-format
2235
  msgid ""
2236
  "To learn more about how to use this feature please watch the following %s."
@@ -2239,18 +2243,18 @@ msgstr ""
2239
  "di guardare il seguente %s."
2240
 
2241
  # @ aiowpsecurity
2242
- #: admin/wp-security-brute-force-menu.php:328
2243
  msgid "Cookie Based Brute Force Login Prevention"
2244
- msgstr "Cookie Brute Force Prevenzione Base Accesso."
2245
 
2246
  # @ aiowpsecurity
2247
- #: admin/wp-security-brute-force-menu.php:339
2248
- #: classes/grade-system/wp-security-feature-item-manager.php:87
2249
  msgid "Enable Brute Force Attack Prevention"
2250
  msgstr "Abilita Prevenzione Attacchi Brute Force"
2251
 
2252
  # @ aiowpsecurity
2253
- #: admin/wp-security-brute-force-menu.php:342
2254
  msgid ""
2255
  "Check this if you want to protect your login page from Brute Force Attack."
2256
  msgstr ""
@@ -2258,7 +2262,7 @@ msgstr ""
2258
  "force."
2259
 
2260
  # @ aiowpsecurity
2261
- #: admin/wp-security-brute-force-menu.php:347
2262
  msgid ""
2263
  "This feature will deny access to your WordPress login page for all people "
2264
  "except those who have a special cookie in their browser."
@@ -2267,17 +2271,17 @@ msgstr ""
2267
  "le persone, tranne coloro che hanno un cookie speciale nel proprio browser."
2268
 
2269
  # @ aiowpsecurity
2270
- #: admin/wp-security-brute-force-menu.php:349
2271
  msgid "To use this feature do the following:"
2272
  msgstr "Per utilizzare questa funzione, attenersi alla seguente procedura:"
2273
 
2274
  # @ aiowpsecurity
2275
- #: admin/wp-security-brute-force-menu.php:351
2276
  msgid "1) Enable the checkbox."
2277
  msgstr "1) Attivare la casella di controllo."
2278
 
2279
  # @ aiowpsecurity
2280
- #: admin/wp-security-brute-force-menu.php:353
2281
  msgid ""
2282
  "2) Enter a secret word consisting of alphanumeric characters which will be "
2283
  "difficult to guess. This secret word will be useful whenever you need to "
@@ -2290,7 +2294,7 @@ msgstr ""
2290
  "login (vedi punto seguente)."
2291
 
2292
  # @ aiowpsecurity
2293
- #: admin/wp-security-brute-force-menu.php:355
2294
  msgid ""
2295
  "3) You will then be provided with a special login URL. You will need to use "
2296
  "this URL to login to your WordPress site instead of the usual login URL. "
@@ -2303,7 +2307,7 @@ msgstr ""
2303
  "accedere alla pagina di login di amministrazione WordPress."
2304
 
2305
  # @ aiowpsecurity
2306
- #: admin/wp-security-brute-force-menu.php:357
2307
  msgid ""
2308
  "Any person trying to access your login page who does not have the special "
2309
  "cookie in their browser will be automatically blocked."
@@ -2312,12 +2316,12 @@ msgstr ""
2312
  "cookie speciale nel browser viene bloccato automaticamente."
2313
 
2314
  # @ aiowpsecurity
2315
- #: admin/wp-security-brute-force-menu.php:364
2316
  msgid "Secret Word"
2317
  msgstr "Parola Segreta"
2318
 
2319
  # @ aiowpsecurity
2320
- #: admin/wp-security-brute-force-menu.php:366
2321
  msgid ""
2322
  "Choose a secret word consisting of alphanumeric characters which you can use "
2323
  "to access your special URL. Your are highly encouraged to choose a word "
@@ -2328,12 +2332,12 @@ msgstr ""
2328
  "parola molto difficile da indovinare."
2329
 
2330
  # @ aiowpsecurity
2331
- #: admin/wp-security-brute-force-menu.php:370
2332
  msgid "Re-direct URL"
2333
  msgstr "URL Re-direct"
2334
 
2335
  # @ aiowpsecurity
2336
- #: admin/wp-security-brute-force-menu.php:374
2337
  msgid ""
2338
  "Specify a URL to redirect a hacker to when they try to access your WordPress "
2339
  "login page."
@@ -2342,7 +2346,7 @@ msgstr ""
2342
  "pagina di login di WordPress"
2343
 
2344
  # @ aiowpsecurity
2345
- #: admin/wp-security-brute-force-menu.php:381
2346
  msgid ""
2347
  "The URL specified here can be any site's URL and does not have to be your "
2348
  "own. For example you can be as creative as you like and send hackers to the "
@@ -2353,7 +2357,7 @@ msgstr ""
2353
  "sito della polizia postale alla CIA o quello che preferisci."
2354
 
2355
  # @ aiowpsecurity
2356
- #: admin/wp-security-brute-force-menu.php:383
2357
  msgid ""
2358
  "This field will default to: http://127.0.0.1 if you do not enter a value."
2359
  msgstr ""
@@ -2361,12 +2365,12 @@ msgstr ""
2361
  "http://127.0.0.1"
2362
 
2363
  # @ aiowpsecurity
2364
- #: admin/wp-security-brute-force-menu.php:385
2365
  msgid "Useful Tip:"
2366
  msgstr "Suggerimento utile:"
2367
 
2368
  # @ aiowpsecurity
2369
- #: admin/wp-security-brute-force-menu.php:387
2370
  msgid ""
2371
  "It's a good idea to not redirect attempted brute force login attempts to "
2372
  "your site because it increases the load on your server."
@@ -2375,7 +2379,7 @@ msgstr ""
2375
  "tuo sito, perché il carico sul server aumenta."
2376
 
2377
  # @ aiowpsecurity
2378
- #: admin/wp-security-brute-force-menu.php:389
2379
  msgid ""
2380
  "Redirecting a hacker or malicious bot back to \"http://127.0.0.1\" is ideal "
2381
  "because it deflects them back to their own local host and puts the load on "
@@ -2386,12 +2390,12 @@ msgstr ""
2386
  "server al posto del tuo."
2387
 
2388
  # @ aiowpsecurity
2389
- #: admin/wp-security-brute-force-menu.php:396
2390
  msgid "My Site Has Posts Or Pages Which Are Password Protected"
2391
  msgstr "Il mio sito ha post o pagine che sono protetti da password"
2392
 
2393
  # @ aiowpsecurity
2394
- #: admin/wp-security-brute-force-menu.php:399
2395
  msgid ""
2396
  "Check this if you are using the native WordPress password protection feature "
2397
  "for some or all of your blog posts or pages."
@@ -2400,7 +2404,7 @@ msgstr ""
2400
  "password nativa di WordPress per alcuni o tutti i post/pagine del tuo blog."
2401
 
2402
  # @ aiowpsecurity
2403
- #: admin/wp-security-brute-force-menu.php:404
2404
  msgid ""
2405
  "In the cases where you are protecting some of your posts or pages using the "
2406
  "in-built WordPress password protection feature, a few extra lines of "
@@ -2414,7 +2418,7 @@ msgstr ""
2414
  "bloccate."
2415
 
2416
  # @ aiowpsecurity
2417
- #: admin/wp-security-brute-force-menu.php:406
2418
  msgid ""
2419
  "By enabling this checkbox the plugin will add the necessary rules and "
2420
  "exceptions to your .htacces file so that people trying to access these pages "
@@ -2425,12 +2429,12 @@ msgstr ""
2425
  "accedere a queste pagine non vengano automaticamente bloccate."
2426
 
2427
  # @ aiowpsecurity
2428
- #: admin/wp-security-brute-force-menu.php:408
2429
  msgid "Helpful Tip:"
2430
  msgstr "Suggerimento utile:"
2431
 
2432
  # @ aiowpsecurity
2433
- #: admin/wp-security-brute-force-menu.php:410
2434
  msgid ""
2435
  "If you do not use the WordPress password protection feature for your posts "
2436
  "or pages then it is highly recommended that you leave this checkbox disabled."
@@ -2440,17 +2444,17 @@ msgstr ""
2440
  "casella di controllo disattivata."
2441
 
2442
  # @ aiowpsecurity
2443
- #: admin/wp-security-brute-force-menu.php:417
2444
  msgid "My Site Has a Theme or Plugins Which Use AJAX"
2445
  msgstr "Il mio sito ha un tema o plugin che utilizzano AJAX"
2446
 
2447
  # @ aiowpsecurity
2448
- #: admin/wp-security-brute-force-menu.php:420
2449
  msgid "Check this if your site uses AJAX functionality."
2450
  msgstr "Seleziona questa casella se il sito utilizza funzionalità AJAX."
2451
 
2452
  # @ aiowpsecurity
2453
- #: admin/wp-security-brute-force-menu.php:425
2454
  msgid ""
2455
  "In the cases where your WordPress installation has a theme or plugins which "
2456
  "use AJAX, a few extra lines of directives and exceptions need to be added to "
@@ -2463,7 +2467,7 @@ msgstr ""
2463
  "automaticamente dalla funzione di prevenzione brute force."
2464
 
2465
  # @ aiowpsecurity
2466
- #: admin/wp-security-brute-force-menu.php:427
2467
  msgid ""
2468
  "By enabling this checkbox the plugin will add the necessary rules and "
2469
  "exceptions to your .htacces file so that AJAX operations will work as "
@@ -2474,18 +2478,18 @@ msgstr ""
2474
  "come previsto."
2475
 
2476
  # @ aiowpsecurity
2477
- #: admin/wp-security-brute-force-menu.php:442
2478
  msgid "The cookie test was successful. You can now enable this feature."
2479
  msgstr ""
2480
  "Il Test cookie ha avuto successo. Ora è possibile attivare questa funzione."
2481
 
2482
  # @ aiowpsecurity
2483
- #: admin/wp-security-brute-force-menu.php:445
2484
  msgid "Save Feature Settings"
2485
  msgstr "Sala Impostazioni Caratteristiche"
2486
 
2487
  # @ aiowpsecurity
2488
- #: admin/wp-security-brute-force-menu.php:452
2489
  msgid ""
2490
  "The cookie test failed on this server. So this feature cannot be used on "
2491
  "this site."
@@ -2494,7 +2498,7 @@ msgstr ""
2494
  "può essere utilizzata in questo sito."
2495
 
2496
  # @ aiowpsecurity
2497
- #: admin/wp-security-brute-force-menu.php:457
2498
  msgid ""
2499
  "Before using this feature you are required to perform a cookie test first. "
2500
  "This is to make sure that your browser cookie is working correctly and that "
@@ -2505,7 +2509,7 @@ msgstr ""
2505
  "correttamente e non rischi di rimanere fuori."
2506
 
2507
  # @ aiowpsecurity
2508
- #: admin/wp-security-brute-force-menu.php:459
2509
  msgid "Perform Cookie Test"
2510
  msgstr "Esegui Test Cookie"
2511
 
@@ -2662,24 +2666,24 @@ msgid "Save Site Lockout Settings"
2662
  msgstr "Salva Impostazioni Blocco Sito"
2663
 
2664
  # @ aiowpsecurity
2665
- #: admin/wp-security-settings-menu.php:25
2666
  msgid "General Settings"
2667
  msgstr "Impostazioni Generali"
2668
 
2669
  # @ aiowpsecurity
2670
- #: admin/wp-security-settings-menu.php:28
2671
  msgid "WP Meta Info"
2672
  msgstr "Meta Info WP"
2673
 
2674
  # @ aiowpsecurity
2675
- #: admin/wp-security-settings-menu.php:95
2676
  msgid "All the security features have been disabled successfully!"
2677
  msgstr ""
2678
  "Tutte le caratteristiche di sicurezza sono state disabilitate con successo!"
2679
 
2680
  # @ aiowpsecurity
2681
- #: admin/wp-security-settings-menu.php:99
2682
- #: admin/wp-security-settings-menu.php:126
2683
  msgid ""
2684
  "Could not write to the .htaccess file. Please restore your .htaccess file "
2685
  "manually using the restore functionality in the \".htaccess File\"."
@@ -2688,7 +2692,7 @@ msgstr ""
2688
  "manualmente utilizzando la funzione di ripristino del \"File .htaccess\"."
2689
 
2690
  # @ aiowpsecurity
2691
- #: admin/wp-security-settings-menu.php:104
2692
  msgid ""
2693
  "Could not write to the wp-config.php. Please restore your wp-config.php file "
2694
  "manually using the restore functionality in the \"wp-config.php File\"."
@@ -2698,17 +2702,17 @@ msgstr ""
2698
  "config.php\"."
2699
 
2700
  # @ aiowpsecurity
2701
- #: admin/wp-security-settings-menu.php:122
2702
  msgid "All firewall rules have been disabled successfully!"
2703
  msgstr "Tutte le regole del firewall sono state disabilitate con successo!"
2704
 
2705
  # @ aiowpsecurity
2706
- #: admin/wp-security-settings-menu.php:136
2707
  msgid "WP Security Plugin"
2708
  msgstr "WP Plugin Sicurezza"
2709
 
2710
  # @ aiowpsecurity
2711
- #: admin/wp-security-settings-menu.php:138
2712
  msgid ""
2713
  "Thank you for using our WordPress security plugin. There are a lot of "
2714
  "security features in this plugin."
@@ -2717,7 +2721,7 @@ msgstr ""
2717
  "sacco di funzioni di sicurezza in questo plugin."
2718
 
2719
  # @ aiowpsecurity
2720
- #: admin/wp-security-settings-menu.php:139
2721
  msgid ""
2722
  "Go through each menu items and enable the security options to add more "
2723
  "security to your site. Start by activating the basic features first."
@@ -2726,7 +2730,7 @@ msgstr ""
2726
  "rendere più sicuro il tuo sito. Inizia attivando le funzionalità di Base."
2727
 
2728
  # @ aiowpsecurity
2729
- #: admin/wp-security-settings-menu.php:140
2730
  msgid ""
2731
  "It is a good practice to take a backup of your .htaccess file, database and "
2732
  "wp-config.php file before activating the security features. This plugin has "
@@ -2738,27 +2742,27 @@ msgstr ""
2738
  "facilmente."
2739
 
2740
  # @ aiowpsecurity
2741
- #: admin/wp-security-settings-menu.php:143
2742
  msgid "Backup your database"
2743
  msgstr "Backup tuo database"
2744
 
2745
  # @ aiowpsecurity
2746
- #: admin/wp-security-settings-menu.php:144
2747
  msgid "Backup .htaccess file"
2748
  msgstr "Backup file .htaccess"
2749
 
2750
  # @ aiowpsecurity
2751
- #: admin/wp-security-settings-menu.php:145
2752
  msgid "Backup wp-config.php file"
2753
  msgstr "Backup file wp-config.php"
2754
 
2755
  # @ aiowpsecurity
2756
- #: admin/wp-security-settings-menu.php:151
2757
  msgid "Disable Security Features"
2758
  msgstr "Disabilita Funzioni Sicurezza"
2759
 
2760
  # @ aiowpsecurity
2761
- #: admin/wp-security-settings-menu.php:157
2762
  msgid ""
2763
  "If you think that some plugin functionality on your site is broken due to a "
2764
  "security feature you enabled in this plugin, then use the following option "
@@ -2769,19 +2773,19 @@ msgstr ""
2769
  "seguente opzione per disattivare tutte le funzioni di sicurezza del plugin."
2770
 
2771
  # @ default
2772
- #: admin/wp-security-settings-menu.php:161
2773
  msgid "Disable All Security Features"
2774
  msgstr "Disabilita Tutte le Funzioni di Sicurezza"
2775
 
2776
  # @ aiowpsecurity
2777
  # @ default
2778
- #: admin/wp-security-settings-menu.php:167
2779
- #: admin/wp-security-settings-menu.php:177
2780
  msgid "Disable All Firewall Rules"
2781
  msgstr "Disabilita Tutte le Regole del Firewall"
2782
 
2783
  # @ aiowpsecurity
2784
- #: admin/wp-security-settings-menu.php:173
2785
  msgid ""
2786
  "This feature will disable all firewall rules which are currently active in "
2787
  "this plugin and it will also delete these rules from your .htacess file. Use "
@@ -2793,7 +2797,7 @@ msgstr ""
2793
  "un problema sul tuo sito."
2794
 
2795
  # @ aiowpsecurity
2796
- #: admin/wp-security-settings-menu.php:212
2797
  msgid ""
2798
  "htaccess file rename failed during backup. Please check your root directory "
2799
  "for the backup file using FTP."
@@ -2802,17 +2806,17 @@ msgstr ""
2802
  "Verifica la tua root directory per il file di backup tramite FTP."
2803
 
2804
  # @ aiowpsecurity
2805
- #: admin/wp-security-settings-menu.php:218
2806
  msgid "htaccess backup failed."
2807
  msgstr "backup .htaccess fallito"
2808
 
2809
  # @ aiowpsecurity
2810
- #: admin/wp-security-settings-menu.php:233
2811
  msgid "Please choose a .htaccess to restore from."
2812
  msgstr "Seleziona un file .htaccess per il ripristino."
2813
 
2814
  # @ aiowpsecurity
2815
- #: admin/wp-security-settings-menu.php:249
2816
  msgid ""
2817
  "htaccess file restore failed. Please attempt to restore the .htaccess "
2818
  "manually using FTP."
@@ -2821,12 +2825,12 @@ msgstr ""
2821
  "l'.htaccess manualmente tramite FTP."
2822
 
2823
  # @ aiowpsecurity
2824
- #: admin/wp-security-settings-menu.php:253
2825
  msgid "Your .htaccess file has successfully been restored!"
2826
  msgstr "Il tuo file .htaccess è stato ripristinato con successo!"
2827
 
2828
  # @ aiowpsecurity
2829
- #: admin/wp-security-settings-menu.php:259
2830
  msgid ""
2831
  "htaccess Restore operation failed! Please check the contents of the file you "
2832
  "are trying to restore from."
@@ -2835,12 +2839,12 @@ msgstr ""
2835
  "contenuto del file che si sta tentando di ripristinare da"
2836
 
2837
  # @ aiowpsecurity
2838
- #: admin/wp-security-settings-menu.php:265
2839
  msgid ".htaccess File Operations"
2840
  msgstr "Operazioni File .htaccess"
2841
 
2842
  # @ aiowpsecurity
2843
- #: admin/wp-security-settings-menu.php:268
2844
  msgid ""
2845
  "Your \".htaccess\" file is a key component of your website's security and it "
2846
  "can be modified to implement various levels of protection mechanisms."
@@ -2850,7 +2854,7 @@ msgstr ""
2850
  "di protezione."
2851
 
2852
  # @ aiowpsecurity
2853
- #: admin/wp-security-settings-menu.php:269
2854
  msgid ""
2855
  "This feature allows you to backup and save your currently active .htaccess "
2856
  "file should you need to re-use the the backed up file in the future."
@@ -2860,70 +2864,70 @@ msgstr ""
2860
  "futuro."
2861
 
2862
  # @ aiowpsecurity
2863
- #: admin/wp-security-settings-menu.php:270
2864
  msgid ""
2865
  "You can also restore your site's .htaccess settings using a backed up ."
2866
  "htaccess file."
2867
  msgstr ""
2868
  "È inoltre possibile ripristinare le impostazioni .htaccess del tuo sito "
2869
- "utilizzando un file .htaccess di cui eseguito il backup."
2870
 
2871
  # @ aiowpsecurity
2872
- #: admin/wp-security-settings-menu.php:284
2873
  msgid "Save the current .htaccess file"
2874
  msgstr "Salva il file .htaccess attuale"
2875
 
2876
  # @ aiowpsecurity
2877
- #: admin/wp-security-settings-menu.php:288
2878
  msgid ""
2879
  "Click the button below to backup and save the currently active .htaccess "
2880
  "file."
2881
  msgstr ""
2882
- "Fare clic sul bottone qui sotto per eseguire il backup e salvare il file ."
2883
  "htaccess attualmente attivo."
2884
 
2885
  # @ aiowpsecurity
2886
- #: admin/wp-security-settings-menu.php:289
2887
  msgid "Backup .htaccess File"
2888
  msgstr "Backup File .htaccess"
2889
 
2890
  # @ aiowpsecurity
2891
- #: admin/wp-security-settings-menu.php:293
2892
  msgid "Restore from a backed up .htaccess file"
2893
  msgstr "Ripristina da un file di backup .htaccess"
2894
 
2895
  # @ aiowpsecurity
2896
- #: admin/wp-security-settings-menu.php:299
2897
  msgid ".htaccess file to restore from"
2898
  msgstr "ripristina file .htaccess da"
2899
 
2900
  # @ aiowpsecurity
2901
- #: admin/wp-security-settings-menu.php:305
2902
  msgid ""
2903
  "After selecting your file, click the button below to restore your site using "
2904
  "the backed up htaccess file (htaccess_backup.txt)."
2905
  msgstr ""
2906
- "Dopo aver selezionato il file, fare clic sul pulsante qui sotto per "
2907
  "ripristinare il sito utilizzando il backup del file htaccess "
2908
  "(htaccess_backup.txt)."
2909
 
2910
  # @ aiowpsecurity
2911
- #: admin/wp-security-settings-menu.php:311
2912
  msgid "Restore .htaccess File"
2913
  msgstr "Ripristina File .htaccess"
2914
 
2915
  # @ aiowpsecurity
2916
- #: admin/wp-security-settings-menu.php:315
2917
  msgid "View Contents of the currently active .htaccess file"
2918
  msgstr "Vedi il contenuto del file .htaccess attualmente attivo"
2919
 
2920
  # @ aiowpsecurity
2921
- #: admin/wp-security-settings-menu.php:344
2922
  msgid "Please choose a wp-config.php file to restore from."
2923
  msgstr "Prego scegli il file wp-config.php da ripristinare"
2924
 
2925
  # @ aiowpsecurity
2926
- #: admin/wp-security-settings-menu.php:360
2927
  msgid ""
2928
  "wp-config.php file restore failed. Please attempt to restore this file "
2929
  "manually using FTP."
@@ -2932,12 +2936,12 @@ msgstr ""
2932
  "file manualmente tramite FTP."
2933
 
2934
  # @ aiowpsecurity
2935
- #: admin/wp-security-settings-menu.php:364
2936
  msgid "Your wp-config.php file has successfully been restored!"
2937
  msgstr "Il tuo file wp-config.php è stato ripristinato con successo!"
2938
 
2939
  # @ aiowpsecurity
2940
- #: admin/wp-security-settings-menu.php:370
2941
  msgid ""
2942
  "wp-config.php Restore operation failed! Please check the contents of the "
2943
  "file you are trying to restore from."
@@ -2946,12 +2950,12 @@ msgstr ""
2946
  "che stai tentando di ripristinare da."
2947
 
2948
  # @ aiowpsecurity
2949
- #: admin/wp-security-settings-menu.php:376
2950
  msgid "wp-config.php File Operations"
2951
  msgstr "Operazioni File wp-config.php"
2952
 
2953
  # @ aiowpsecurity
2954
- #: admin/wp-security-settings-menu.php:379
2955
  msgid ""
2956
  "Your \"wp-config.php\" file is one of the most important in your WordPress "
2957
  "installation. It is a primary configuration file and contains crucial things "
@@ -2962,7 +2966,7 @@ msgstr ""
2962
  "fondamentali come i dettagli del database e altri componenti critici."
2963
 
2964
  # @ aiowpsecurity
2965
- #: admin/wp-security-settings-menu.php:380
2966
  msgid ""
2967
  "This feature allows you to backup and save your currently active wp-config."
2968
  "php file should you need to re-use the the backed up file in the future."
@@ -2972,7 +2976,7 @@ msgstr ""
2972
  "backup in futuro."
2973
 
2974
  # @ aiowpsecurity
2975
- #: admin/wp-security-settings-menu.php:381
2976
  msgid ""
2977
  "You can also restore your site's wp-config.php settings using a backed up wp-"
2978
  "config.php file."
@@ -2981,12 +2985,12 @@ msgstr ""
2981
  "sito utilizzando un file wp-config.php di cui hai fatto il backup."
2982
 
2983
  # @ aiowpsecurity
2984
- #: admin/wp-security-settings-menu.php:395
2985
  msgid "Save the current wp-config.php file"
2986
  msgstr "Salva il file wp-config.php corrente"
2987
 
2988
  # @ aiowpsecurity
2989
- #: admin/wp-security-settings-menu.php:399
2990
  msgid ""
2991
  "Click the button below to backup and download the contents of the currently "
2992
  "active wp-config.php file."
@@ -2995,47 +2999,46 @@ msgstr ""
2995
  "config.php attualmente attivo."
2996
 
2997
  # @ aiowpsecurity
2998
- #: admin/wp-security-settings-menu.php:400
2999
  msgid "Backup wp-config.php File"
3000
  msgstr "Backup File wp-config.php"
3001
 
3002
  # @ aiowpsecurity
3003
- #: admin/wp-security-settings-menu.php:405
3004
  msgid "Restore from a backed up wp-config file"
3005
  msgstr "Ripristina file wp-config.php da un backup"
3006
 
3007
  # @ aiowpsecurity
3008
- #: admin/wp-security-settings-menu.php:411
3009
  msgid "wp-config file to restore from"
3010
  msgstr "ripristino file wp-config.php da"
3011
 
3012
  # @ aiowpsecurity
3013
- #: admin/wp-security-settings-menu.php:417
3014
  msgid ""
3015
  "After selecting your file click the button below to restore your site using "
3016
  "the backed up wp-config file (wp-config.php.backup.txt)."
3017
  msgstr ""
3018
- "Dopo aver selezionato il file fare clic sul pulsante qui sotto per "
3019
- "ripristinare il sito utilizzando il backup di file wp-config (wp-config.php."
3020
- "backup.txt)."
3021
 
3022
  # @ aiowpsecurity
3023
- #: admin/wp-security-settings-menu.php:423
3024
  msgid "Restore wp-config File"
3025
  msgstr "Ripristina File wp-config.php"
3026
 
3027
  # @ aiowpsecurity
3028
- #: admin/wp-security-settings-menu.php:427
3029
  msgid "View Contents of the currently active wp-config.php file"
3030
  msgstr "Vedi il contenuto dell'attuale file wp-config.php"
3031
 
3032
  # @ aiowpsecurity
3033
- #: admin/wp-security-settings-menu.php:462
3034
  msgid "WP Generator Meta Tag"
3035
  msgstr "Generatore WP Meta Tag"
3036
 
3037
  # @ aiowpsecurity
3038
- #: admin/wp-security-settings-menu.php:465
3039
  msgid ""
3040
  "Wordpress generator automatically adds some meta information inside the "
3041
  "\"head\" tags of every page on your site's front end. Below is an example of "
@@ -3046,7 +3049,7 @@ msgstr ""
3046
  "seguito è riportato un esempio di questo:"
3047
 
3048
  # @ aiowpsecurity
3049
- #: admin/wp-security-settings-menu.php:467
3050
  msgid ""
3051
  "The above meta information shows which version of WordPress your site is "
3052
  "currently running and thus can help hackers or crawlers scan your site to "
@@ -3058,7 +3061,7 @@ msgstr ""
3058
  "WordPress."
3059
 
3060
  # @ aiowpsecurity
3061
- #: admin/wp-security-settings-menu.php:468
3062
  msgid ""
3063
  "This feature will allow you to remove the WP generator meta info from your "
3064
  "site's pages."
@@ -3067,17 +3070,17 @@ msgstr ""
3067
  "dalle pagine del tuo sito."
3068
 
3069
  # @ aiowpsecurity
3070
- #: admin/wp-security-settings-menu.php:474
3071
  msgid "WP Generator Meta Info"
3072
  msgstr "Generatore Meta Info WP"
3073
 
3074
  # @ aiowpsecurity
3075
- #: admin/wp-security-settings-menu.php:486
3076
  msgid "Remove WP Generator Meta Info"
3077
  msgstr "Rimuovi Generatore Meta Info WP"
3078
 
3079
  # @ aiowpsecurity
3080
- #: admin/wp-security-settings-menu.php:489
3081
  msgid ""
3082
  "Check this if you want to remove the meta info produced by WP Generator from "
3083
  "all pages"
@@ -3086,27 +3089,27 @@ msgstr ""
3086
  "generatore WP su tutte le pagine"
3087
 
3088
  # @ aiowpsecurity
3089
- #: admin/wp-security-spam-menu.php:23
3090
  msgid "Comment SPAM"
3091
  msgstr "Commenti SPAM"
3092
 
3093
  # @ aiowpsecurity
3094
- #: admin/wp-security-spam-menu.php:24
3095
  msgid "Comment SPAM IP Monitoring"
3096
  msgstr "Monitoraggio IP Commenti SPAM"
3097
 
3098
  # @ aiowpsecurity
3099
- #: admin/wp-security-spam-menu.php:111
3100
  msgid "Comment SPAM Settings"
3101
  msgstr "Impostazione Commenti SPAM"
3102
 
3103
  # @ aiowpsecurity
3104
- #: admin/wp-security-spam-menu.php:116
3105
  msgid "Add Captcha To Comments Form"
3106
  msgstr "Aggiungi Captcha al Modulo Commenti"
3107
 
3108
  # @ aiowpsecurity
3109
- #: admin/wp-security-spam-menu.php:120
3110
  msgid ""
3111
  "This feature will add a simple math captcha field in the WordPress comments "
3112
  "form."
@@ -3115,23 +3118,23 @@ msgstr ""
3115
  "commenti WordPress."
3116
 
3117
  # @ aiowpsecurity
3118
- #: admin/wp-security-spam-menu.php:130
3119
  msgid "Enable Captcha On Comment Forms"
3120
  msgstr "Attiva Captcha nel Modulo Commenti"
3121
 
3122
  # @ aiowpsecurity
3123
- #: admin/wp-security-spam-menu.php:133
3124
  msgid "Check this if you want to insert a captcha field on the comment forms"
3125
  msgstr ""
3126
  "Seleziona questo se desideri inserire un campo captcha nel modulo commenti"
3127
 
3128
  # @ aiowpsecurity
3129
- #: admin/wp-security-spam-menu.php:140
3130
  msgid "Block Spambot Comments"
3131
  msgstr "Blocca Commenti Spambot"
3132
 
3133
  # @ aiowpsecurity
3134
- #: admin/wp-security-spam-menu.php:144
3135
  msgid ""
3136
  "A large portion of WordPress blog comment SPAM is mainly produced by "
3137
  "automated bots and not necessarily by humans. "
@@ -3140,7 +3143,7 @@ msgstr ""
3140
  "principalmente da bot automatici e non necessariamente da esseri umani."
3141
 
3142
  # @ aiowpsecurity
3143
- #: admin/wp-security-spam-menu.php:145
3144
  msgid ""
3145
  "This feature will greatly minimize the useless and unecessary traffic and "
3146
  "load on your server resulting from SPAM comments by blocking all comment "
@@ -3151,12 +3154,12 @@ msgstr ""
3151
  "commento che non hanno origine dal proprio dominio."
3152
 
3153
  # @ aiowpsecurity
3154
- #: admin/wp-security-spam-menu.php:162
3155
  msgid "Block Spambots From Posting Comments"
3156
  msgstr "Impedisci che Spambots possano pubblicare commenti"
3157
 
3158
  # @ aiowpsecurity
3159
- #: admin/wp-security-spam-menu.php:165
3160
  msgid ""
3161
  "Check this if you want to apply a firewall rule which will block comments "
3162
  "originating from spambots."
@@ -3165,7 +3168,7 @@ msgstr ""
3165
  "commenti provenienti da spambot."
3166
 
3167
  # @ aiowpsecurity
3168
- #: admin/wp-security-spam-menu.php:169
3169
  msgid ""
3170
  "This feature will implement a firewall rule to block all comment attempts "
3171
  "which do not originate from your domain."
@@ -3174,7 +3177,7 @@ msgstr ""
3174
  "i tentativi di commento che non hanno origine dal proprio dominio."
3175
 
3176
  # @ aiowpsecurity
3177
- #: admin/wp-security-spam-menu.php:170
3178
  msgid ""
3179
  "A legitimate comment is one which is submitted by a human who physically "
3180
  "fills out the comment form and clicks the submit button. For such events, "
@@ -3185,7 +3188,7 @@ msgstr ""
3185
  "eventi, il HTTP_REFERRER è sempre impostato per il proprio dominio."
3186
 
3187
  # @ aiowpsecurity
3188
- #: admin/wp-security-spam-menu.php:171
3189
  msgid ""
3190
  "A comment submitted by a spambot is done by directly calling the comments."
3191
  "php file, which usually means that the HTTP_REFERRER value is not your "
@@ -3196,7 +3199,7 @@ msgstr ""
3196
  "il vostro dominio e spesso vuoto."
3197
 
3198
  # @ aiowpsecurity
3199
- #: admin/wp-security-spam-menu.php:172
3200
  msgid ""
3201
  "This feature will check and block comment requests which are not referred by "
3202
  "your domain thus greatly reducing your overall blog SPAM and PHP requests "
@@ -3207,12 +3210,12 @@ msgstr ""
3207
  "richieste PHP fatte dal server per elaborare questi commenti."
3208
 
3209
  # @ aiowpsecurity
3210
- #: admin/wp-security-spam-menu.php:199
3211
  msgid "Nonce check failed for list SPAM comment IPs!"
3212
  msgstr "Check non riuscito per la lista IP spam Commenti!"
3213
 
3214
  # @ aiowpsecurity
3215
- #: admin/wp-security-spam-menu.php:205
3216
  msgid ""
3217
  "You entered a non numeric value for the minimum SPAM comments per IP field. "
3218
  "It has been set to the default value."
@@ -3221,7 +3224,7 @@ msgstr ""
3221
  "campo IP. E 'stato impostato il valore di default."
3222
 
3223
  # @ aiowpsecurity
3224
- #: admin/wp-security-spam-menu.php:217
3225
  #, php-format
3226
  msgid ""
3227
  "Displaying results for IP addresses which have posted a minimum of %s SPAM "
@@ -3231,7 +3234,7 @@ msgstr ""
3231
  "minimo di %s commenti spam"
3232
 
3233
  # @ aiowpsecurity
3234
- #: admin/wp-security-spam-menu.php:233
3235
  msgid ""
3236
  "This tab displays a list of the IP addresses of the people or bots who have "
3237
  "left SPAM comments on your site."
@@ -3240,7 +3243,7 @@ msgstr ""
3240
  "che hanno lasciato commenti di spam sul tuo sito."
3241
 
3242
  # @ aiowpsecurity
3243
- #: admin/wp-security-spam-menu.php:234
3244
  msgid ""
3245
  "This information can be handy for identifying the most persistent IP "
3246
  "addresses or ranges used by spammers."
@@ -3249,7 +3252,7 @@ msgstr ""
3249
  "intervalli IP, più persistenti dagli spammer."
3250
 
3251
  # @ aiowpsecurity
3252
- #: admin/wp-security-spam-menu.php:235
3253
  msgid ""
3254
  "By inspecting the IP address data coming from spammers you will be in a "
3255
  "better position to determine which addresses or address ranges you should "
@@ -3260,7 +3263,7 @@ msgstr ""
3260
  "indirizzi si dovrebbe bloccare aggiungendoli alla lista nera."
3261
 
3262
  # @ aiowpsecurity
3263
- #: admin/wp-security-spam-menu.php:236
3264
  msgid ""
3265
  "To add one or more of the IP addresses displayed in the table below to your "
3266
  "blacklist, simply click the \"Block\" link for the individual row or select "
@@ -3268,25 +3271,25 @@ msgid ""
3268
  " using the checkboxes and then choose the \"block"
3269
  "\" option from the Bulk Actions dropdown list and click the \"Apply\" button."
3270
  msgstr ""
3271
- "Per aggiungere uno o più indirizzi IP visualizzato nella tabella di seguito "
3272
- "per la vostra lista nera, è sufficiente fare clic sul collegamento \"Block\" "
3273
- "per la singola riga o selezionare più di un indirizzo \n"
3274
  " utilizzando le caselle di controllo e quindi "
3275
  "scegliere l'opzione dal menu a discesa Azioni in blocco \"block\" e fare "
3276
  "clic sul pulsante \"Applica\"."
3277
 
3278
  # @ aiowpsecurity
3279
- #: admin/wp-security-spam-menu.php:242
3280
  msgid "List SPAMMER IP Addresses"
3281
  msgstr "Lista indirizzi IP SPAMMER"
3282
 
3283
  # @ aiowpsecurity
3284
- #: admin/wp-security-spam-menu.php:248
3285
  msgid "Minimum number of SPAM comments per IP"
3286
  msgstr "Numero minimo di commenti spam per IP"
3287
 
3288
  # @ aiowpsecurity
3289
- #: admin/wp-security-spam-menu.php:250
3290
  msgid ""
3291
  "This field allows you to list only those IP addresses which have been used "
3292
  "to post X or more SPAM comments."
@@ -3295,7 +3298,7 @@ msgstr ""
3295
  "utilizzati per pubblicare X o più commenti spam."
3296
 
3297
  # @ aiowpsecurity
3298
- #: admin/wp-security-spam-menu.php:254
3299
  msgid ""
3300
  "Example 1: Setting this value to \"0\" or \"1\" will list ALL IP addresses "
3301
  "which were used to submit SPAM comments."
@@ -3304,7 +3307,7 @@ msgstr ""
3304
  "gli indirizzi IP che sono stati utilizzati per inviare commenti spam."
3305
 
3306
  # @ aiowpsecurity
3307
- #: admin/wp-security-spam-menu.php:255
3308
  msgid ""
3309
  "Example 2: Setting this value to \"5\" will list only those IP addresses "
3310
  "which were used to submit 5 SPAM comments or more on your site."
@@ -3313,17 +3316,17 @@ msgstr ""
3313
  "usati per creare almeno 5 commenti SPAM o più sul tuo sito."
3314
 
3315
  # @ aiowpsecurity
3316
- #: admin/wp-security-spam-menu.php:262
3317
  msgid "Find IP Addresses"
3318
  msgstr "Trova Indirizzo IP"
3319
 
3320
  # @ aiowpsecurity
3321
- #: admin/wp-security-spam-menu.php:266
3322
  msgid "SPAMMER IP Address Results"
3323
  msgstr "Risultato Indirizzi IP SPAMMER"
3324
 
3325
  # @ aiowpsecurity
3326
- #: admin/wp-security-spam-menu.php:272 classes/wp-security-utility.php:150
3327
  msgid ""
3328
  "The plugin has detected that you are using a Multi-Site WordPress "
3329
  "installation."
@@ -3332,13 +3335,13 @@ msgstr ""
3332
  "Site."
3333
 
3334
  # @ aiowpsecurity
3335
- #: admin/wp-security-spam-menu.php:273
3336
  msgid "Only the \"superadmin\" can block IP addresses from the main site."
3337
  msgstr ""
3338
  "Solo il \"superadmin\" può bloccare gli indirizzi IP dal sito principale."
3339
 
3340
  # @ aiowpsecurity
3341
- #: admin/wp-security-spam-menu.php:274
3342
  msgid ""
3343
  "Take note of the IP addresses you want blocked and ask the superadmin to add "
3344
  "these to the blacklist using the \"Blacklist Manager\" on the main site."
@@ -3681,14 +3684,14 @@ msgid "Account Login Name"
3681
  msgstr "Nome Login Account"
3682
 
3683
  # @ aiowpsecurity
3684
- #: admin/wp-security-brute-force-menu.php:27
3685
  #: classes/grade-system/wp-security-feature-item-manager.php:44
3686
  msgid "Login Captcha"
3687
  msgstr "Captcha Pagina Login"
3688
 
3689
  # @ aiowpsecurity
3690
- #: admin/wp-security-brute-force-menu.php:28
3691
- #: admin/wp-security-brute-force-menu.php:615
3692
  msgid "Login Whitelist"
3693
  msgstr "Lista Bianca Login"
3694
 
@@ -3800,7 +3803,7 @@ msgid ""
3800
  "Check this if you want to enable the login lockdown feature and apply the "
3801
  "settings below"
3802
  msgstr ""
3803
- "Selezionare questa casella per attivare la funzione di blocco accesso e "
3804
  "applicare le seguenti impostazioni"
3805
 
3806
  # @ aiowpsecurity
@@ -3870,7 +3873,7 @@ msgid ""
3870
  "Check this if you want to instantly lockout login attempts with usernames "
3871
  "which do not exist on your system"
3872
  msgstr ""
3873
- "Selezionare questa casella vuoi bloccare istantaneamente i tentativi di "
3874
  "accesso con nomi utente che non esistono sul tuo sistema"
3875
 
3876
  # @ aiowpsecurity
@@ -3893,15 +3896,15 @@ msgid "Currently Locked Out IP Address Ranges"
3893
  msgstr " Intervalli di indirizzi IP attualmente bloccati"
3894
 
3895
  # @ aiowpsecurity
3896
- #: admin/wp-security-brute-force-menu.php:498
3897
  msgid ""
3898
  "This feature allows you to add a captcha form on the WordPress login page."
3899
  msgstr ""
3900
- "Seleziona questo se desidere inserire un campo captcha nella pagina di Login "
3901
  "WordPress"
3902
 
3903
  # @ aiowpsecurity
3904
- #: admin/wp-security-brute-force-menu.php:499
3905
  msgid ""
3906
  "Users who attempt to login will also need to enter the answer to a simple "
3907
  "mathematical question - if they enter the wrong answer, the plugin will not "
@@ -3912,7 +3915,7 @@ msgstr ""
3912
  "non permetterà l'accesso anche se il nome utente e la password sono corretti."
3913
 
3914
  # @ aiowpsecurity
3915
- #: admin/wp-security-brute-force-menu.php:500
3916
  msgid ""
3917
  "Therefore, adding a captcha form on the login page is another effective yet "
3918
  "simple \"Brute Force\" prevention technique."
@@ -3921,58 +3924,58 @@ msgstr ""
3921
  "efficace ma semplice metodo di prevenzione \"Brute Force\"."
3922
 
3923
  # @ aiowpsecurity
3924
- #: admin/wp-security-brute-force-menu.php:506
3925
  msgid "Login Form Captcha Settings"
3926
  msgstr "Impostazioni Modulo Captcha pagina di Login"
3927
 
3928
  # @ aiowpsecurity
3929
- #: admin/wp-security-brute-force-menu.php:517
3930
  msgid "Enable Captcha On Login Page"
3931
  msgstr "Attiva Captcha sulla Pagina di Login"
3932
 
3933
  # @ aiowpsecurity
3934
- #: admin/wp-security-brute-force-menu.php:520
3935
  msgid "Check this if you want to insert a captcha form on the login page"
3936
  msgstr ""
3937
- "Seleziona quest se desideri inserire un campo captcha nel modulo della "
3938
- "pagina di login"
3939
 
3940
  # @ aiowpsecurity
3941
- #: admin/wp-security-brute-force-menu.php:526
3942
  msgid "Lost Password Form Captcha Settings"
3943
  msgstr "Impostazioni Modulo Captcha Password persa "
3944
 
3945
  # @ aiowpsecurity
3946
- #: admin/wp-security-brute-force-menu.php:536
3947
  msgid "Enable Captcha On Lost Password Page"
3948
  msgstr "Attiva Captcha nella Pagina Password Persa"
3949
 
3950
  # @ aiowpsecurity
3951
- #: admin/wp-security-brute-force-menu.php:539
3952
  msgid ""
3953
  "Check this if you want to insert a captcha form on the lost password page"
3954
  msgstr ""
3955
- "Seleziona quest se desideri inserire un campo captcha nel modulo della "
3956
- "password persa"
3957
 
3958
  # @ aiowpsecurity
3959
- #: admin/wp-security-brute-force-menu.php:561
3960
  msgid "Nonce check failed for save whitelist settings!"
3961
  msgstr "Verifica fallita per salvare le impostazioni whitelist!"
3962
 
3963
  # @ aiowpsecurity
3964
- #: admin/wp-security-brute-force-menu.php:618
3965
  msgid ""
3966
  "The All In One WP Security Whitelist feature gives you the option of only "
3967
  "allowing certain IP addresses or ranges to have access to your WordPress "
3968
  "login page."
3969
  msgstr ""
3970
- "L'All In One caratteristica Whitelist Security WP ti dà la possibilità di "
3971
- "autorizzare solo determinati indirizzi IP, o intervalli, ad accedere alla "
3972
- "pagina login di WordPress."
3973
 
3974
  # @ aiowpsecurity
3975
- #: admin/wp-security-brute-force-menu.php:619
3976
  msgid ""
3977
  "This feature will deny login access for all IP addresses which are not in "
3978
  "your whitelist as configured in the settings below."
@@ -3981,7 +3984,7 @@ msgstr ""
3981
  "sono nella tua lista bianca come configurato nelle impostazioni di seguito."
3982
 
3983
  # @ aiowpsecurity
3984
- #: admin/wp-security-brute-force-menu.php:620
3985
  msgid ""
3986
  "The plugin achieves this by writing the appropriate directives to your ."
3987
  "htaccess file."
@@ -3989,7 +3992,7 @@ msgstr ""
3989
  "Il plugin realizza questo, facendo le opportune modifiche al file .htaccess."
3990
 
3991
  # @ aiowpsecurity
3992
- #: admin/wp-security-brute-force-menu.php:621
3993
  msgid ""
3994
  "By allowing/blocking IP addresses via the .htaccess file your are using the "
3995
  "most secure first line of defence because login access will only be granted "
@@ -3997,12 +4000,12 @@ msgid ""
3997
  "they try to access your login page."
3998
  msgstr ""
3999
  "Consentendo/bloccando gli indirizzi IP tramite il file .htaccess si sta "
4000
- "usando la linea di difesa più sicura, perché l'accesso di login sarà "
4001
  "concesso solo agli indirizzi IP nella whitelist e gli altri indirizzi "
4002
  "verranno bloccati non appena tentano di accedere alla pagina di login."
4003
 
4004
  # @ aiowpsecurity
4005
- #: admin/wp-security-brute-force-menu.php:628
4006
  #, php-format
4007
  msgid ""
4008
  "Attention: If in addition to enabling the white list feature, you also have "
@@ -4010,12 +4013,12 @@ msgid ""
4010
  "in the URL when trying to access your WordPress login page</strong>."
4011
  msgstr ""
4012
  "Attenzione: Se oltre ad abilitare la funzione lista bianca, si ha anche la "
4013
- "%s funzione attivata,<strong>sarà comunque necessario utilizzare la tua "
4014
  "parola segreta nell'URL quando si cerca di accedere alla pagina di login di "
4015
  "WordPress</strong>."
4016
 
4017
  # @ aiowpsecurity
4018
- #: admin/wp-security-brute-force-menu.php:629
4019
  msgid ""
4020
  "These features are NOT functionally related. Having both of them enabled on "
4021
  "your site means you are creating 2 layers of security."
@@ -4024,31 +4027,31 @@ msgstr ""
4024
  "entrambe sul sito si creano due livelli di sicurezza."
4025
 
4026
  # @ aiowpsecurity
4027
- #: admin/wp-security-brute-force-menu.php:634
4028
  msgid "Login IP Whitelist Settings"
4029
  msgstr "Login Configurazione Whitelist IP"
4030
 
4031
  # @ aiowpsecurity
4032
- #: admin/wp-security-brute-force-menu.php:645
4033
  msgid "Enable IP Whitelisting"
4034
  msgstr "Attiva IP Whitelisting"
4035
 
4036
  # @ aiowpsecurity
4037
- #: admin/wp-security-brute-force-menu.php:648
4038
  msgid ""
4039
  "Check this if you want to enable the whitelisting of selected IP addresses "
4040
  "specified in the settings below"
4041
  msgstr ""
4042
- "Selezionare questa se vuoi attivare la whitelist di indirizzi IP selezionati "
4043
- "specificati nelle impostazioni di seguito"
4044
 
4045
  # @ aiowpsecurity
4046
- #: admin/wp-security-brute-force-menu.php:652
4047
  msgid "Your Current IP Address"
4048
  msgstr "Il Tuo Indirizzo IP Attuale"
4049
 
4050
  # @ aiowpsecurity
4051
- #: admin/wp-security-brute-force-menu.php:655
4052
  msgid ""
4053
  "You can copy and paste this address in the text box below if you want to "
4054
  "include it in your login whitelist."
@@ -4057,12 +4060,12 @@ msgstr ""
4057
  "sottostante, se desideri includerlo nella tua lista bianca login."
4058
 
4059
  # @ aiowpsecurity
4060
- #: admin/wp-security-brute-force-menu.php:659
4061
  msgid "Enter Whitelisted IP Addresses:"
4062
  msgstr "Inserisci Indirizzi IP Whitelisted:"
4063
 
4064
  # @ aiowpsecurity
4065
- #: admin/wp-security-brute-force-menu.php:663
4066
  msgid ""
4067
  "Enter one or more IP addresses or IP ranges you wish to include in your "
4068
  "whitelist. Only the addresses specified here will have access to the "
@@ -4167,8 +4170,8 @@ msgid ""
4167
  "Check this if you want to force a wp user to be logged out after a "
4168
  "configured amount of time"
4169
  msgstr ""
4170
- "Seleziona questa casella se vuoi forzare un utente wp di ri-autenticarsi "
4171
- "dopo un periodo di tempo scelto"
4172
 
4173
  # @ aiowpsecurity
4174
  #: admin/wp-security-user-login-menu.php:401
@@ -4362,12 +4365,12 @@ msgid "Registration Page Captcha Settings"
4362
  msgstr "Impostazioni Captcha Pagina Registrazione"
4363
 
4364
  # @ aiowpsecurity
4365
- #: admin/wp-security-user-registration-menu.php:214
4366
  msgid "Enable Captcha On Registration Page"
4367
  msgstr "Attiva Captcha nella Pagina di Registrazione"
4368
 
4369
  # @ aiowpsecurity
4370
- #: admin/wp-security-user-registration-menu.php:217
4371
  msgid ""
4372
  "Check this if you want to insert a captcha form on the WordPress user "
4373
  "registration page (if you allow user registration)."
@@ -4497,107 +4500,107 @@ msgid " generated on"
4497
  msgstr "generati su"
4498
 
4499
  # @ aiowpsecurity
4500
- #: classes/wp-security-captcha.php:12
4501
  msgid "Please enter an answer in digits:"
4502
  msgstr "Inserisci una risposta in cifre:"
4503
 
4504
  # @ aiowpsecurity
4505
- #: classes/wp-security-captcha.php:91
4506
  msgid "one"
4507
  msgstr "uno"
4508
 
4509
  # @ aiowpsecurity
4510
- #: classes/wp-security-captcha.php:92
4511
  msgid "two"
4512
  msgstr "due"
4513
 
4514
  # @ aiowpsecurity
4515
- #: classes/wp-security-captcha.php:93
4516
  msgid "three"
4517
  msgstr "tre"
4518
 
4519
  # @ aiowpsecurity
4520
- #: classes/wp-security-captcha.php:94
4521
  msgid "four"
4522
  msgstr "quattro"
4523
 
4524
  # @ aiowpsecurity
4525
- #: classes/wp-security-captcha.php:95
4526
  msgid "five"
4527
  msgstr "cinque"
4528
 
4529
  # @ aiowpsecurity
4530
- #: classes/wp-security-captcha.php:96
4531
  msgid "six"
4532
  msgstr "sei"
4533
 
4534
  # @ aiowpsecurity
4535
- #: classes/wp-security-captcha.php:97
4536
  msgid "seven"
4537
  msgstr "sette"
4538
 
4539
  # @ aiowpsecurity
4540
- #: classes/wp-security-captcha.php:98
4541
  msgid "eight"
4542
  msgstr "otto"
4543
 
4544
  # @ aiowpsecurity
4545
- #: classes/wp-security-captcha.php:99
4546
  msgid "nine"
4547
  msgstr "nove"
4548
 
4549
  # @ aiowpsecurity
4550
- #: classes/wp-security-captcha.php:100
4551
  msgid "ten"
4552
  msgstr "dieci"
4553
 
4554
  # @ aiowpsecurity
4555
- #: classes/wp-security-captcha.php:101
4556
  msgid "eleven"
4557
  msgstr "undici"
4558
 
4559
  # @ aiowpsecurity
4560
- #: classes/wp-security-captcha.php:102
4561
  msgid "twelve"
4562
  msgstr "dodici"
4563
 
4564
  # @ aiowpsecurity
4565
- #: classes/wp-security-captcha.php:103
4566
  msgid "thirteen"
4567
  msgstr "tredici"
4568
 
4569
  # @ aiowpsecurity
4570
- #: classes/wp-security-captcha.php:104
4571
  msgid "fourteen"
4572
  msgstr "quattordici"
4573
 
4574
  # @ aiowpsecurity
4575
- #: classes/wp-security-captcha.php:105
4576
  msgid "fifteen"
4577
  msgstr "quindici"
4578
 
4579
  # @ aiowpsecurity
4580
- #: classes/wp-security-captcha.php:106
4581
  msgid "sixteen"
4582
  msgstr "sedici"
4583
 
4584
  # @ aiowpsecurity
4585
- #: classes/wp-security-captcha.php:107
4586
  msgid "seventeen"
4587
  msgstr "diciassette"
4588
 
4589
  # @ aiowpsecurity
4590
- #: classes/wp-security-captcha.php:108
4591
  msgid "eighteen"
4592
  msgstr "diciotto"
4593
 
4594
  # @ aiowpsecurity
4595
- #: classes/wp-security-captcha.php:109
4596
  msgid "nineteen"
4597
  msgstr "diciannove"
4598
 
4599
  # @ aiowpsecurity
4600
- #: classes/wp-security-captcha.php:110
4601
  msgid "twenty"
4602
  msgstr "venti"
4603
 
@@ -4622,59 +4625,48 @@ msgid "Login to your site to view the scan details."
4622
  msgstr "Accedi al sito per visualizzare i dettagli di scansione."
4623
 
4624
  # @ aiowpsecurity
4625
- #: classes/wp-security-general-init-tasks.php:203
4626
  msgid "Please enter an answer in the CAPTCHA field."
4627
  msgstr "Inserisci una risposta nel campo CAPTCHA."
4628
 
4629
  # @ aiowpsecurity
4630
- #: classes/wp-security-general-init-tasks.php:213
4631
  msgid ""
4632
  "Error: You entered an incorrect CAPTCHA answer. Please go back and try again."
4633
  msgstr "Errore: Hai inserito una risposta CAPTCHA sbagliata. Prova di nuovo."
4634
 
4635
  # @ aiowpsecurity
4636
- #: classes/wp-security-general-init-tasks.php:241
4637
- #: classes/wp-security-user-login.php:70 classes/wp-security-user-login.php:73
4638
- #: classes/wp-security-user-registration.php:59
 
4639
  msgid "<strong>ERROR</strong>: Your answer was incorrect - please try again."
4640
  msgstr ""
4641
  "<strong>ERRORE</strong>: La risposta è sbagliata - si prega di riprovare."
4642
 
4643
  # @ aiowpsecurity
4644
- #: classes/wp-security-user-login.php:43
4645
- msgid ""
4646
- "<strong>ERROR</strong>: Login failed because your IP address has been "
4647
- "blocked.\n"
4648
- " Please contact the administrator."
4649
- msgstr ""
4650
- "<strong>ERRORE</strong>: Accesso non riuscito perché il vostro indirizzo IP "
4651
- "è stato bloccato a causa di un numero eccessivo di tentativi di login "
4652
- "falliti.\n"
4653
- " Si prega di contattare l'amministratore."
4654
-
4655
- # @ aiowpsecurity
4656
- #: classes/wp-security-user-login.php:83
4657
  msgid "<strong>ERROR</strong>: The username field is empty."
4658
  msgstr "<strong>ERRORE</strong>: Il campo Nome Utente è vuoto."
4659
 
4660
  # @ aiowpsecurity
4661
- #: classes/wp-security-user-login.php:87
4662
  msgid "<strong>ERROR</strong>: The password field is empty."
4663
  msgstr "<strong>ERRORE</strong>: Il campo password è vuoto."
4664
 
4665
  # @ aiowpsecurity
4666
- #: classes/wp-security-user-login.php:107
4667
- #: classes/wp-security-user-login.php:133
4668
  msgid "<strong>ERROR</strong>: Invalid login credentials."
4669
  msgstr "<strong>ERRORE</strong>: credenziali login non valide."
4670
 
4671
  # @ aiowpsecurity
4672
- #: classes/wp-security-user-login.php:110
4673
  msgid "<strong>ERROR</strong>: Invalid username."
4674
  msgstr "<strong>ERRORE</strong>: Nome Utente non valido."
4675
 
4676
  # @ aiowpsecurity
4677
- #: classes/wp-security-user-login.php:136
4678
  #, php-format
4679
  msgid ""
4680
  "<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password "
@@ -4684,7 +4676,7 @@ msgstr ""
4684
  "\"Password smarrita\">Hai perso la tua password</a>?"
4685
 
4686
  # @ aiowpsecurity
4687
- #: classes/wp-security-user-login.php:147
4688
  msgid ""
4689
  "<strong>ACCOUNT PENDING</strong>: Your account is currently not active. An "
4690
  "administrator needs to activate your account before you can login."
@@ -4693,12 +4685,12 @@ msgstr ""
4693
  "amministratore deve attivare il tuo account prima di poter accedere."
4694
 
4695
  # @ aiowpsecurity
4696
- #: classes/wp-security-user-login.php:270
4697
  msgid "Site Lockout Notification"
4698
  msgstr "Avviso Blocco Sito"
4699
 
4700
  # @ aiowpsecurity
4701
- #: classes/wp-security-user-login.php:271
4702
  msgid ""
4703
  "A lockdown event has occurred due to too many failed login attempts or "
4704
  "invalid username:"
@@ -4707,12 +4699,12 @@ msgstr ""
4707
  "tentativi di accesso non riusciti, con i seguenti dati utente"
4708
 
4709
  # @ aiowpsecurity
4710
- #: classes/wp-security-user-login.php:273
4711
  msgid "IP Address: "
4712
  msgstr "Indirizzo IP:"
4713
 
4714
  # @ aiowpsecurity
4715
- #: classes/wp-security-user-login.php:275
4716
  msgid ""
4717
  "Log into your site's WordPress administration panel to see the duration of "
4718
  "the lockout or to unlock the user."
@@ -4721,7 +4713,7 @@ msgstr ""
4721
  "la durata del blocco o per sbloccare l'utente."
4722
 
4723
  # @ aiowpsecurity
4724
- #: classes/wp-security-user-login.php:504
4725
  #, php-format
4726
  msgid ""
4727
  "Your session has expired because it has been over %d minutes since your last "
@@ -4731,13 +4723,13 @@ msgstr ""
4731
  "accesso."
4732
 
4733
  # @ aiowpsecurity
4734
- #: classes/wp-security-user-login.php:505
4735
- #: classes/wp-security-user-login.php:509
4736
  msgid "Please log back in to continue."
4737
  msgstr "Accedi nuovamente per continuare."
4738
 
4739
  # @ aiowpsecurity
4740
- #: classes/wp-security-user-login.php:508
4741
  msgid "You were logged out because you just changed the \"admin\" username."
4742
  msgstr ""
4743
  "Sei stato disconnesso perché hai appena cambiato il nome utente \"admin\"."
@@ -4809,27 +4801,27 @@ msgid "Enable Pingback Vulnerability Protection"
4809
  msgstr "Attiva Protezione Vulnerabilità Pingback"
4810
 
4811
  # @ aiowpsecurity
4812
- #: classes/grade-system/wp-security-feature-item-manager.php:90
4813
  msgid "Forbid Proxy Comments"
4814
  msgstr "Vieta commenti via Proxy"
4815
 
4816
  # @ aiowpsecurity
4817
- #: classes/grade-system/wp-security-feature-item-manager.php:91
4818
  msgid "Deny Bad Queries"
4819
  msgstr "Nega Stringhe Dannose"
4820
 
4821
  # @ aiowpsecurity
4822
- #: classes/grade-system/wp-security-feature-item-manager.php:93
4823
  msgid "5G Blacklist"
4824
  msgstr "Blacklist 5G"
4825
 
4826
  # @ aiowpsecurity
4827
- #: classes/grade-system/wp-security-feature-item-manager.php:96
4828
  msgid "Block Spambots"
4829
  msgstr "Blocca Spambots"
4830
 
4831
  # @ aiowpsecurity
4832
- #: classes/grade-system/wp-security-feature-item-manager.php:98
4833
  msgid "Comment Captcha"
4834
  msgstr "Captcha Commenti"
4835
 
@@ -4890,41 +4882,41 @@ msgid "Go to the last page"
4890
  msgstr "Vai all'ultima pagina"
4891
 
4892
  # @ aiowpsecurity
4893
- #: admin/wp-security-admin-init.php:184
4894
  msgid "Brute Force"
4895
  msgstr ""
4896
 
4897
  # @ aiowpsecurity
4898
- #: admin/wp-security-admin-init.php:193
4899
  msgid "Miscellaneous"
4900
- msgstr ""
4901
 
4902
  # @ aiowpsecurity
4903
- #: admin/wp-security-brute-force-menu.php:25
4904
  #: admin/wp-security-dashboard-menu.php:365
4905
  #: admin/wp-security-dashboard-menu.php:374
4906
  msgid "Rename Login Page"
4907
  msgstr "Rinomina Pagina Login"
4908
 
4909
  # @ aiowpsecurity
4910
- #: admin/wp-security-brute-force-menu.php:26
4911
  msgid "Cookie Based Brute Force Prevention"
4912
  msgstr "Prevenzione Brute Force basata su Cookie"
4913
 
4914
  # @ aiowpsecurity
4915
- #: admin/wp-security-brute-force-menu.php:99
4916
  msgid "Please enter a value for your login page slug."
4917
  msgstr "Inserisci un valore per la tua pagina di login"
4918
 
4919
  # @ aiowpsecurity
4920
- #: admin/wp-security-brute-force-menu.php:103
4921
  msgid "You cannot use the value \"wp-admin\" for your login page slug."
4922
  msgstr ""
4923
  "Non è possibile utilizzare il valore \"wp-admin \" per la tua pagina di "
4924
  "login."
4925
 
4926
  # @ aiowpsecurity
4927
- #: admin/wp-security-brute-force-menu.php:127
4928
  msgid ""
4929
  "Could not delete the Cookie-based directives from the .htaccess file. Please "
4930
  "check the file permissions."
@@ -4933,7 +4925,7 @@ msgstr ""
4933
  "prega di controllare i permessi dei file."
4934
 
4935
  # @ aiowpsecurity
4936
- #: admin/wp-security-brute-force-menu.php:137
4937
  msgid ""
4938
  "An effective Brute Force prevention technique is to change the default "
4939
  "WordPress login page URL."
@@ -4942,7 +4934,7 @@ msgstr ""
4942
  "l'impostazione predefinita dell'URL della pagina di login di WordPress."
4943
 
4944
  # @ aiowpsecurity
4945
- #: admin/wp-security-brute-force-menu.php:138
4946
  msgid ""
4947
  "Normally if you wanted to login to WordPress you would type your site's home "
4948
  "URL followed by wp-login.php."
@@ -4951,7 +4943,7 @@ msgstr ""
4951
  "del tuo sito seguito da wp-login.php."
4952
 
4953
  # @ aiowpsecurity
4954
- #: admin/wp-security-brute-force-menu.php:139
4955
  msgid ""
4956
  "This feature allows you to change the login URL by setting your own slug and "
4957
  "renaming the last portion of the login URL which contains the <strong>wp-"
@@ -4962,7 +4954,7 @@ msgstr ""
4962
  "<strong> wp-login.php </strong> con qualsiasi stringa che ti piace."
4963
 
4964
  # @ aiowpsecurity
4965
- #: admin/wp-security-brute-force-menu.php:140
4966
  msgid ""
4967
  "By doing this, malicious bots and hackers will not be able to access your "
4968
  "login page because they will not know the correct login page URL."
@@ -4971,7 +4963,7 @@ msgstr ""
4971
  "pagina di login perché non conoscono il corretto URL della pagina di login."
4972
 
4973
  # @ aiowpsecurity
4974
- #: admin/wp-security-brute-force-menu.php:142
4975
  msgid ""
4976
  "You may also be interested in the following alternative brute force "
4977
  "prevention features:"
@@ -4980,47 +4972,50 @@ msgstr ""
4980
  "prevenzione brute force alternative:"
4981
 
4982
  # @ aiowpsecurity
4983
- #: admin/wp-security-brute-force-menu.php:153
4984
  msgid "Your WordPress login page URL has been renamed."
4985
  msgstr "L'URL della tua pagina di login WordPress è stato rinominato."
4986
 
4987
  # @ aiowpsecurity
4988
- #: admin/wp-security-brute-force-menu.php:154
4989
  msgid "Your current login URL is:"
4990
  msgstr "Il tuo attuale indirizzo di login (URL)"
4991
 
4992
  # @ aiowpsecurity
4993
- #: admin/wp-security-brute-force-menu.php:156
4994
  msgid ""
4995
  "NOTE: If you already had the Cookie-Based Brute Force Prevention feature "
4996
  "active, the plugin has automatically deactivated it because only one of "
4997
  "these features can be active at any one time."
4998
  msgstr ""
 
 
 
4999
 
5000
  # @ aiowpsecurity
5001
- #: admin/wp-security-brute-force-menu.php:163
5002
  msgid "Rename Login Page Settings"
5003
  msgstr "Impostazioni Rinomina Pagina Login"
5004
 
5005
  # @ aiowpsecurity
5006
- #: admin/wp-security-brute-force-menu.php:175
5007
  msgid "Enable Rename Login Page Feature"
5008
- msgstr ""
5009
 
5010
  # @ aiowpsecurity
5011
- #: admin/wp-security-brute-force-menu.php:178
5012
  msgid "Check this if you want to enable the rename login page feature"
5013
  msgstr ""
5014
- "Selezionare questa casella per attivare la funzione di rinmomina login e "
5015
  "applicare le seguenti impostazioni"
5016
 
5017
  # @ aiowpsecurity
5018
- #: admin/wp-security-brute-force-menu.php:182
5019
  msgid "Login Page URL"
5020
  msgstr "Indirizzo di login (URL)"
5021
 
5022
  # @ aiowpsecurity
5023
- #: admin/wp-security-brute-force-menu.php:184
5024
  msgid ""
5025
  "Enter a string which will represent your secure login page slug. You are "
5026
  "enouraged to choose something which is hard to guess and only you will "
@@ -5031,25 +5026,30 @@ msgstr ""
5031
  "qualcosa che è difficile indovinare."
5032
 
5033
  # @ aiowpsecurity
5034
- #: admin/wp-security-brute-force-menu.php:306
5035
  msgid ""
5036
  "If this feature is not used correctly, you can get locked out of your site. "
5037
  "A backed up .htaccess file will come in handy if that happens."
5038
  msgstr ""
 
 
5039
 
5040
  # @ aiowpsecurity
5041
- #: admin/wp-security-brute-force-menu.php:320
5042
  msgid ""
5043
  "NOTE: If you already had the Rename Login Page feature active, the plugin "
5044
  "has automatically deactivated it because only one of these features can be "
5045
  "active at any one time."
5046
  msgstr ""
 
 
 
5047
 
5048
  # @ aiowpsecurity
5049
  #: admin/wp-security-dashboard-menu.php:25
5050
  #: admin/wp-security-dashboard-menu.php:457
5051
  msgid "Locked IP Addresses"
5052
- msgstr ""
5053
 
5054
  # @ aiowpsecurity
5055
  #: admin/wp-security-dashboard-menu.php:76
@@ -5057,6 +5057,8 @@ msgid ""
5057
  "Twitter, Google+ or via Email to stay up to date about the new security "
5058
  "features of this plugin."
5059
  msgstr ""
 
 
5060
 
5061
  # @ aiowpsecurity
5062
  #: admin/wp-security-dashboard-menu.php:177
@@ -5064,6 +5066,8 @@ msgid ""
5064
  "We are working hard to make your WordPress site more secure. Please support "
5065
  "us, here is how:"
5066
  msgstr ""
 
 
5067
 
5068
  # @ aiowpsecurity
5069
  #: admin/wp-security-dashboard-menu.php:264
@@ -5098,7 +5102,7 @@ msgstr ""
5098
  # @ aiowpsecurity
5099
  #: admin/wp-security-dashboard-menu.php:342
5100
  msgid "Cookie Based Brute Prevention"
5101
- msgstr ""
5102
 
5103
  # @ aiowpsecurity
5104
  #: admin/wp-security-dashboard-menu.php:345
@@ -5110,13 +5114,13 @@ msgstr "Cookie Brute Force Base."
5110
  #: admin/wp-security-dashboard-menu.php:377
5111
  #, php-format
5112
  msgid "The %s feature is currently active."
5113
- msgstr ""
5114
 
5115
  # @ aiowpsecurity
5116
  #: admin/wp-security-dashboard-menu.php:350
5117
  #: admin/wp-security-dashboard-menu.php:378
5118
  msgid "Your new WordPress login URL is now:"
5119
- msgstr "Il tuo nuovo URL di logi WordPress:"
5120
 
5121
  # @ aiowpsecurity
5122
  #: admin/wp-security-dashboard-menu.php:442
@@ -5131,7 +5135,7 @@ msgstr "Non ci sono indirizzi IP attualmente bloccati"
5131
  # @ aiowpsecurity
5132
  #: admin/wp-security-dashboard-menu.php:470
5133
  msgid "Number of temporarily locked out IP addresses: "
5134
- msgstr ""
5135
 
5136
  # @ aiowpsecurity
5137
  #: admin/wp-security-dashboard-menu.php:530
@@ -5146,7 +5150,7 @@ msgstr ""
5146
  # @ aiowpsecurity
5147
  #: admin/wp-security-dashboard-menu.php:533
5148
  msgid "PHP Memory Usage"
5149
- msgstr ""
5150
 
5151
  # @ aiowpsecurity
5152
  #: admin/wp-security-dashboard-menu.php:534
@@ -5220,151 +5224,171 @@ msgstr ""
5220
  # @ default
5221
  #: admin/wp-security-dashboard-menu.php:601
5222
  msgid "Seconds"
5223
- msgstr ""
5224
 
5225
  # @ aiowpsecurity
5226
  #: admin/wp-security-dashboard-menu.php:653
5227
  msgid "Currently Locked Out IP Addresses and Ranges"
5228
- msgstr ""
5229
 
5230
  # @ aiowpsecurity
5231
  #: admin/wp-security-database-menu.php:383
5232
  msgid "Error - Could not get tables or no tables found!"
5233
- msgstr ""
5234
 
5235
  # @ aiowpsecurity
5236
- #: admin/wp-security-filescan-menu.php:24
5237
  msgid "Malware Scan"
5238
- msgstr ""
5239
 
5240
  # @ aiowpsecurity
5241
- #: admin/wp-security-filescan-menu.php:93
5242
  msgid "There have been no file changes since the last scan."
5243
- msgstr ""
5244
 
5245
  # @ aiowpsecurity
5246
- #: admin/wp-security-filescan-menu.php:112
5247
  msgid "Scan Complete - There were no file changes detected!"
5248
- msgstr ""
5249
 
5250
  # @ aiowpsecurity
5251
- #: admin/wp-security-filescan-menu.php:244
5252
  msgid "View Last Saved File Change Results"
5253
- msgstr ""
5254
 
5255
  # @ aiowpsecurity
5256
- #: admin/wp-security-filescan-menu.php:250
5257
  msgid ""
5258
  "Click the button below to view the saved file change results from the last "
5259
  "scan."
5260
  msgstr ""
 
 
5261
 
5262
  # @ aiowpsecurity
5263
- #: admin/wp-security-filescan-menu.php:253
5264
  msgid "View Last File Change"
5265
- msgstr ""
5266
 
5267
  # @ aiowpsecurity
5268
- #: admin/wp-security-filescan-menu.php:341
5269
  msgid "What is Malware?"
5270
- msgstr ""
5271
 
5272
  # @ aiowpsecurity
5273
- #: admin/wp-security-filescan-menu.php:342
5274
  msgid ""
5275
  "The word Malware stands for Malicious Software. It can consist of things "
5276
  "like trojan horses, adware, worms, spyware and any other undesirable code "
5277
  "which a hacker will try to inject into your website."
5278
  msgstr ""
 
 
 
5279
 
5280
  # @ aiowpsecurity
5281
- #: admin/wp-security-filescan-menu.php:343
5282
  msgid ""
5283
  "Often when malware code has been inserted into your site you will normally "
5284
  "not notice anything out of the ordinary based on appearances, but it can "
5285
  "have a dramatic effect on your site’s search ranking."
5286
  msgstr ""
 
 
 
5287
 
5288
  # @ aiowpsecurity
5289
- #: admin/wp-security-filescan-menu.php:344
5290
  msgid ""
5291
  "This is because the bots and spiders from search engines such as Google have "
5292
  "the capability to detect malware when they are indexing the pages on your "
5293
  "site, and consequently they can blacklist your website which will in turn "
5294
  "affect your search rankings."
5295
  msgstr ""
 
 
 
 
5296
 
5297
  # @ aiowpsecurity
5298
- #: admin/wp-security-filescan-menu.php:348
5299
  msgid "Scanning For Malware"
5300
- msgstr ""
5301
 
5302
  # @ aiowpsecurity
5303
- #: admin/wp-security-filescan-menu.php:349
5304
  msgid ""
5305
  "Due to the constantly changing and complex nature of Malware, scanning for "
5306
  "such things using a standalone plugin will not work reliably. This is "
5307
  "something best done via an external scan of your site regularly."
5308
  msgstr ""
 
 
 
 
5309
 
5310
  # @ aiowpsecurity
5311
- #: admin/wp-security-filescan-menu.php:350
5312
  msgid ""
5313
  "This is why we have created an easy-to-use scanning service which is hosted "
5314
  "off our own server which will scan your site for malware once every day and "
5315
  "notify you if it finds anything."
5316
  msgstr ""
 
 
 
 
5317
 
5318
  # @ aiowpsecurity
5319
- #: admin/wp-security-filescan-menu.php:351
5320
  msgid "When you sign up for this service you will get the following:"
5321
- msgstr ""
5322
 
5323
  # @ aiowpsecurity
5324
- #: admin/wp-security-filescan-menu.php:353
5325
  msgid "Automatic Daily Scan of 1 Website"
5326
- msgstr ""
5327
 
5328
  # @ aiowpsecurity
5329
- #: admin/wp-security-filescan-menu.php:354
5330
  msgid "Automatic Malware & Blacklist Monitoring"
5331
- msgstr ""
5332
 
5333
  # @ aiowpsecurity
5334
- #: admin/wp-security-filescan-menu.php:355
5335
  msgid "Automatic Email Alerting"
5336
- msgstr ""
5337
 
5338
  # @ aiowpsecurity
5339
- #: admin/wp-security-filescan-menu.php:356
5340
  msgid "Site uptime monitoring"
5341
- msgstr ""
5342
 
5343
  # @ aiowpsecurity
5344
- #: admin/wp-security-filescan-menu.php:357
5345
  msgid "Site response time monitoring"
5346
- msgstr ""
5347
 
5348
  # @ aiowpsecurity
5349
- #: admin/wp-security-filescan-menu.php:358
5350
  msgid "Malware Cleanup"
5351
- msgstr ""
5352
 
5353
  # @ aiowpsecurity
5354
- #: admin/wp-security-filescan-menu.php:359
5355
  msgid "Blacklist Removal"
5356
- msgstr ""
5357
 
5358
  # @ aiowpsecurity
5359
- #: admin/wp-security-filescan-menu.php:360
5360
  msgid "No Contract (Cancel Anytime)"
5361
- msgstr ""
5362
 
5363
  # @ aiowpsecurity
5364
- #: admin/wp-security-filescan-menu.php:362
5365
  #, php-format
5366
  msgid "To learn more please %s."
5367
- msgstr ""
5368
 
5369
  # @ aiowpsecurity
5370
  #: admin/wp-security-firewall-menu.php:30
@@ -5374,27 +5398,27 @@ msgstr ""
5374
  # @ aiowpsecurity
5375
  #: admin/wp-security-firewall-menu.php:31
5376
  msgid "Prevent Hotlinks"
5377
- msgstr ""
5378
 
5379
  # @ aiowpsecurity
5380
  #: admin/wp-security-firewall-menu.php:32
5381
  msgid "404 Detection"
5382
- msgstr ""
5383
 
5384
  # @ aiowpsecurity
5385
  #: admin/wp-security-firewall-menu.php:143
5386
  msgid "Attention:"
5387
- msgstr ""
5388
 
5389
  # @ aiowpsecurity
5390
  #: admin/wp-security-firewall-menu.php:144
5391
  msgid "Currently the "
5392
- msgstr ""
5393
 
5394
  # @ aiowpsecurity
5395
  #: admin/wp-security-firewall-menu.php:144
5396
  msgid " is active."
5397
- msgstr ""
5398
 
5399
  # @ aiowpsecurity
5400
  #: admin/wp-security-firewall-menu.php:145
@@ -5402,6 +5426,8 @@ msgid ""
5402
  "Please beware that if you are using the WordPress iOS App, then you will "
5403
  "need to deactivate this feature in order for the app to work properly."
5404
  msgstr ""
 
 
5405
 
5406
  # @ aiowpsecurity
5407
  #: admin/wp-security-firewall-menu.php:334
@@ -5410,16 +5436,19 @@ msgid ""
5410
  "directive must be enabled in your httpd.conf file. Ask your hosting provider "
5411
  "to check this if you don't have access to httpd.conf"
5412
  msgstr ""
 
 
 
5413
 
5414
  # @ aiowpsecurity
5415
  #: admin/wp-security-firewall-menu.php:577
5416
  msgid "The Internet bot settings were successfully saved"
5417
- msgstr ""
5418
 
5419
  # @ aiowpsecurity
5420
  #: admin/wp-security-firewall-menu.php:581
5421
  msgid "Internet Bot Settings"
5422
- msgstr ""
5423
 
5424
  # @ aiowpsecurity
5425
  #: admin/wp-security-firewall-menu.php:588
@@ -5434,6 +5463,9 @@ msgid ""
5434
  "automatic tasks. For example when Google indexes your pages it uses "
5435
  "automatic bots to achieve this task."
5436
  msgstr ""
 
 
 
5437
 
5438
  # @ aiowpsecurity
5439
  #: admin/wp-security-firewall-menu.php:591
@@ -5442,6 +5474,9 @@ msgid ""
5442
  "often you will find some which try to impersonate legitimate bots such as "
5443
  "\"Googlebot\" but in reality they have nohing to do with Google at all."
5444
  msgstr ""
 
 
 
5445
 
5446
  # @ aiowpsecurity
5447
  #: admin/wp-security-firewall-menu.php:592
@@ -5450,6 +5485,9 @@ msgid ""
5450
  "website owners want to have more control over which bots they allow into "
5451
  "their site."
5452
  msgstr ""
 
 
 
5453
 
5454
  # @ aiowpsecurity
5455
  #: admin/wp-security-firewall-menu.php:593
@@ -5457,6 +5495,8 @@ msgid ""
5457
  "This feature allows you to block bots which are impersonating as a Googlebot "
5458
  "but actually aren't. (In other words they are fake Google bots)"
5459
  msgstr ""
 
 
5460
 
5461
  # @ aiowpsecurity
5462
  #: admin/wp-security-firewall-menu.php:594
@@ -5465,6 +5505,9 @@ msgid ""
5465
  "feature will indentify any fake Google bots and block them from reading your "
5466
  "site's pages."
5467
  msgstr ""
 
 
 
5468
 
5469
  # @ aiowpsecurity
5470
  #: admin/wp-security-firewall-menu.php:600
@@ -5472,6 +5515,8 @@ msgid ""
5472
  "<strong>Attention</strong>: Sometimes non-malicious Internet organizations "
5473
  "might have bots which impersonate as a \"Googlebot\"."
5474
  msgstr ""
 
 
5475
 
5476
  # @ aiowpsecurity
5477
  #: admin/wp-security-firewall-menu.php:601
@@ -5481,6 +5526,10 @@ msgid ""
5481
  "are NOT officially from Google (irrespective whether they are malicious or "
5482
  "not)."
5483
  msgstr ""
 
 
 
 
5484
 
5485
  # @ aiowpsecurity
5486
  #: admin/wp-security-firewall-menu.php:602
@@ -5488,18 +5537,20 @@ msgid ""
5488
  "All other bots from other organizations such as \"Yahoo\", \"Bing\" etc will "
5489
  "not be affected by this feature."
5490
  msgstr ""
 
 
5491
 
5492
  # @ aiowpsecurity
5493
  #: admin/wp-security-firewall-menu.php:608
5494
  #: admin/wp-security-firewall-menu.php:618
5495
- #: classes/grade-system/wp-security-feature-item-manager.php:94
5496
  msgid "Block Fake Googlebots"
5497
- msgstr ""
5498
 
5499
  # @ aiowpsecurity
5500
  #: admin/wp-security-firewall-menu.php:621
5501
  msgid "Check this if you want to block all fake Googlebots."
5502
- msgstr ""
5503
 
5504
  # @ aiowpsecurity
5505
  #: admin/wp-security-firewall-menu.php:625
@@ -5507,6 +5558,8 @@ msgid ""
5507
  "This feature will check if the User Agent information of a bot contains the "
5508
  "string \"Googlebot\"."
5509
  msgstr ""
 
 
5510
 
5511
  # @ aiowpsecurity
5512
  #: admin/wp-security-firewall-menu.php:626
@@ -5514,6 +5567,8 @@ msgid ""
5514
  "It will then perform a few tests to verify if the bot is legitimately from "
5515
  "Google and if so it will allow the bot to proceed."
5516
  msgstr ""
 
 
5517
 
5518
  # @ aiowpsecurity
5519
  #: admin/wp-security-firewall-menu.php:627
@@ -5521,18 +5576,20 @@ msgid ""
5521
  "If the bot fails the checks then the plugin will mark it as being a fake "
5522
  "Googlebot and it will block it"
5523
  msgstr ""
 
 
5524
 
5525
  # @ aiowpsecurity
5526
  #: admin/wp-security-firewall-menu.php:634
5527
  msgid "Save Internet Bot Settings"
5528
- msgstr ""
5529
 
5530
  # @ aiowpsecurity
5531
  #: admin/wp-security-firewall-menu.php:671
5532
  #: admin/wp-security-firewall-menu.php:693
5533
  #: classes/grade-system/wp-security-feature-item-manager.php:32
5534
  msgid "Prevent Image Hotlinking"
5535
- msgstr ""
5536
 
5537
  # @ aiowpsecurity
5538
  #: admin/wp-security-firewall-menu.php:674
@@ -5541,6 +5598,9 @@ msgid ""
5541
  "located on your site by using a direct link to the source of the image on "
5542
  "your server."
5543
  msgstr ""
 
 
 
5544
 
5545
  # @ aiowpsecurity
5546
  #: admin/wp-security-firewall-menu.php:675
@@ -5550,6 +5610,10 @@ msgid ""
5550
  "for you because your server has to present this image for the people viewing "
5551
  "it on someone elses's site."
5552
  msgstr ""
 
 
 
 
5553
 
5554
  # @ aiowpsecurity
5555
  #: admin/wp-security-firewall-menu.php:676
@@ -5557,31 +5621,40 @@ msgid ""
5557
  "This feature will prevent people from directly hotlinking images from your "
5558
  "site's pages by writing some directives in your .htaccess file."
5559
  msgstr ""
 
 
 
5560
 
5561
  # @ aiowpsecurity
5562
  #: admin/wp-security-firewall-menu.php:681
5563
  msgid "Prevent Hotlinking"
5564
- msgstr ""
5565
 
5566
  # @ aiowpsecurity
5567
  #: admin/wp-security-firewall-menu.php:696
5568
  msgid "Check this if you want to prevent hotlinking to images on your site."
5569
  msgstr ""
 
 
5570
 
5571
  # @ aiowpsecurity
5572
  #: admin/wp-security-firewall-menu.php:716
5573
  msgid "Nonce check failed for delete all 404 event logs operation!"
5574
  msgstr ""
 
 
5575
 
5576
  # @ aiowpsecurity
5577
  #: admin/wp-security-firewall-menu.php:727
5578
  msgid "404 Detection Feature - Delete all 404 event logs operation failed!"
5579
  msgstr ""
 
 
5580
 
5581
  # @ aiowpsecurity
5582
  #: admin/wp-security-firewall-menu.php:731
5583
  msgid "All 404 event logs were deleted from the DB successfully!"
5584
- msgstr ""
5585
 
5586
  # @ aiowpsecurity
5587
  #: admin/wp-security-firewall-menu.php:763
@@ -5589,11 +5662,13 @@ msgid ""
5589
  "You entered an incorrect format for the \"Redirect URL\" field. It has been "
5590
  "set to the default value."
5591
  msgstr ""
 
 
5592
 
5593
  # @ aiowpsecurity
5594
  #: admin/wp-security-firewall-menu.php:795
5595
  msgid "404 Detection Configuration"
5596
- msgstr ""
5597
 
5598
  # @ aiowpsecurity
5599
  #: admin/wp-security-firewall-menu.php:798
@@ -5601,6 +5676,8 @@ msgid ""
5601
  "A 404 or Not Found error occurs when somebody tries to access a non-existent "
5602
  "page on your website."
5603
  msgstr ""
 
 
5604
 
5605
  # @ aiowpsecurity
5606
  #: admin/wp-security-firewall-menu.php:799
@@ -5608,6 +5685,9 @@ msgid ""
5608
  "Typically, most 404 errors happen quite innocently when people have mis-"
5609
  "typed a URL or used an old link to page which doesn't exist anymore."
5610
  msgstr ""
 
 
 
5611
 
5612
  # @ aiowpsecurity
5613
  #: admin/wp-security-firewall-menu.php:800
@@ -5616,6 +5696,10 @@ msgid ""
5616
  "a relatively short space of time and from the same IP address which are all "
5617
  "attempting to access a variety of non-existent page URLs."
5618
  msgstr ""
 
 
 
 
5619
 
5620
  # @ aiowpsecurity
5621
  #: admin/wp-security-firewall-menu.php:801
@@ -5623,6 +5707,8 @@ msgid ""
5623
  "Such behaviour can mean that a hacker might be trying to find a particular "
5624
  "page or URL for sinister reasons."
5625
  msgstr ""
 
 
5626
 
5627
  # @ aiowpsecurity
5628
  #: admin/wp-security-firewall-menu.php:802
@@ -5631,6 +5717,9 @@ msgid ""
5631
  "and it also gives you the option of blocking IP addresses for a configured "
5632
  "length of time."
5633
  msgstr ""
 
 
 
5634
 
5635
  # @ aiowpsecurity
5636
  #: admin/wp-security-firewall-menu.php:803
@@ -5638,21 +5727,26 @@ msgid ""
5638
  "If you want to temporarily block an IP address, simply click the \"Temp Block"
5639
  "\" link for the applicable IP entry in the \"404 Event Logs\" table below."
5640
  msgstr ""
 
 
 
5641
 
5642
  # @ aiowpsecurity
5643
  #: admin/wp-security-firewall-menu.php:808
5644
  msgid "404 Detection Options"
5645
- msgstr ""
5646
 
5647
  # @ aiowpsecurity
5648
  #: admin/wp-security-firewall-menu.php:820
5649
  msgid "Enable IP Lockout For 404 Events"
5650
- msgstr ""
5651
 
5652
  # @ aiowpsecurity
5653
  #: admin/wp-security-firewall-menu.php:823
5654
  msgid "Check this if you want to enable the lockout of selected IP addresses."
5655
  msgstr ""
 
 
5656
 
5657
  # @ aiowpsecurity
5658
  #: admin/wp-security-firewall-menu.php:828
@@ -5662,21 +5756,27 @@ msgid ""
5662
  "to be blocked in the table. All IP addresses you select to be blocked from "
5663
  "the \"404 Event Logs\" table section will be unable to access your site."
5664
  msgstr ""
 
 
 
 
 
5665
 
5666
  # @ aiowpsecurity
5667
  #: admin/wp-security-firewall-menu.php:836
5668
  msgid "Enable 404 Event Logging"
5669
- msgstr ""
5670
 
5671
  # @ aiowpsecurity
5672
  #: admin/wp-security-firewall-menu.php:839
5673
  msgid "Check this if you want to enable the logging of 404 events"
5674
  msgstr ""
 
5675
 
5676
  # @ aiowpsecurity
5677
  #: admin/wp-security-firewall-menu.php:844
5678
  msgid "Time Length of 404 Lockout (min)"
5679
- msgstr ""
5680
 
5681
  # @ aiowpsecurity
5682
  #: admin/wp-security-firewall-menu.php:846
@@ -5684,6 +5784,8 @@ msgid ""
5684
  "Set the length of time for which a blocked IP address will be prevented from "
5685
  "visiting your site"
5686
  msgstr ""
 
 
5687
 
5688
  # @ aiowpsecurity
5689
  #: admin/wp-security-firewall-menu.php:851
@@ -5691,6 +5793,8 @@ msgid ""
5691
  "You can lock any IP address which is recorded in the \"404 Event Logs\" "
5692
  "table section below."
5693
  msgstr ""
 
 
5694
 
5695
  # @ aiowpsecurity
5696
  #: admin/wp-security-firewall-menu.php:853
@@ -5698,131 +5802,148 @@ msgid ""
5698
  "To temporarily lock an IP address, hover over the ID column and click the "
5699
  "\"Temp Block\" link for the applicable IP entry."
5700
  msgstr ""
 
 
5701
 
5702
  # @ aiowpsecurity
5703
  #: admin/wp-security-firewall-menu.php:860
5704
  msgid "404 Lockout Redirect URL"
5705
- msgstr ""
5706
 
5707
  # @ aiowpsecurity
5708
  #: admin/wp-security-firewall-menu.php:862
5709
  msgid "A blocked visitor will be automatically redirected to this URL."
5710
  msgstr ""
 
5711
 
5712
  # @ aiowpsecurity
5713
  #: admin/wp-security-firewall-menu.php:871
5714
  msgid "404 Event Logs"
5715
- msgstr ""
5716
 
5717
  # @ aiowpsecurity
5718
  #: admin/wp-security-firewall-menu.php:892
5719
  #: admin/wp-security-firewall-menu.php:901
5720
  msgid "Delete All 404 Event Logs"
5721
- msgstr ""
5722
 
5723
  # @ aiowpsecurity
5724
  #: admin/wp-security-firewall-menu.php:898
5725
  msgid "Click this button if you wish to purge all 404 event logs from the DB."
5726
  msgstr ""
 
 
5727
 
5728
  # @ aiowpsecurity
5729
  #: admin/wp-security-list-locked-ip.php:117
5730
  #: admin/wp-security-user-login-menu.php:527
5731
  msgid "The selected IP entries were unlocked successfully!"
5732
- msgstr ""
5733
 
5734
  # @ aiowpsecurity
5735
  #: admin/wp-security-list-locked-ip.php:126
5736
  #: admin/wp-security-user-login-menu.php:536
5737
  msgid "The selected IP entry was unlocked successfully!"
5738
- msgstr ""
5739
 
5740
  # @ aiowpsecurity
5741
  #: admin/wp-security-list-registered-users.php:127
5742
  #: admin/wp-security-list-registered-users.php:151
5743
  msgid "Your account is now active"
5744
- msgstr ""
5745
 
5746
  # @ aiowpsecurity
5747
  #: admin/wp-security-list-registered-users.php:128
5748
  msgid "Your account with username:"
5749
- msgstr ""
5750
 
5751
  # @ aiowpsecurity
5752
  #: admin/wp-security-list-registered-users.php:139
5753
  msgid "The following accounts failed to update successfully: "
5754
- msgstr ""
5755
 
5756
  # @ aiowpsecurity
5757
  #: admin/wp-security-list-registered-users.php:152
5758
  msgid "Your account with username: "
5759
- msgstr ""
5760
 
5761
  # @ aiowpsecurity
5762
- #: admin/wp-security-misc-options-menu.php:22
5763
  msgid "Copy Protection"
5764
- msgstr ""
5765
 
5766
  # @ aiowpsecurity
5767
- #: admin/wp-security-misc-options-menu.php:86
5768
  msgid "Copy Protection feature settings saved!"
5769
- msgstr ""
5770
 
5771
  # @ aiowpsecurity
5772
- #: admin/wp-security-misc-options-menu.php:91
5773
  msgid "Disable The Ability To Copy Text"
5774
- msgstr ""
5775
 
5776
  # @ aiowpsecurity
5777
- #: admin/wp-security-misc-options-menu.php:97
5778
  msgid ""
5779
  "This feature allows you to disable the ability to select and copy text from "
5780
  "your front end."
5781
  msgstr ""
 
 
5782
 
5783
  # @ aiowpsecurity
5784
- #: admin/wp-security-misc-options-menu.php:102
5785
  msgid "Enable Copy Protection"
5786
- msgstr ""
5787
 
5788
  # @ aiowpsecurity
5789
- #: admin/wp-security-misc-options-menu.php:105
5790
  msgid ""
5791
  "Check this if you want to disable the \"Right Click\", \"Text Selection\" "
5792
  "and \"Copy\" option on the front end of your site."
5793
  msgstr ""
 
 
5794
 
5795
  # @ default
5796
- #: admin/wp-security-misc-options-menu.php:112
5797
  msgid "Save Copy Protection Settings"
5798
- msgstr ""
5799
 
5800
  # @ aiowpsecurity
5801
- #: admin/wp-security-settings-menu.php:206
5802
  msgid ""
5803
  "Your .htaccess file was successfully backed up! Using an FTP program go to "
5804
  "the \"/wp-content/aiowps_backups\" directory to save a copy of the file to "
5805
  "your computer."
5806
  msgstr ""
 
 
 
5807
 
5808
  # @ aiowpsecurity
5809
- #: admin/wp-security-spam-menu.php:121
5810
  msgid ""
5811
  "Adding a captcha field in the comment form is a simple way of greatly "
5812
  "reducing SPAM comments from bots without using .htaccess rules."
5813
  msgstr ""
 
 
 
5814
 
5815
  # @ aiowpsecurity
5816
- #: admin/wp-security-spam-menu.php:146
5817
  msgid ""
5818
  "In other words, if the comment was not submitted by a human who physically "
5819
  "submitted the comment on your site, the request will be blocked."
5820
  msgstr ""
 
 
5821
 
5822
  # @ aiowpsecurity
5823
  #: admin/wp-security-user-login-menu.php:190
5824
  msgid "Allow Unlock Requests"
5825
- msgstr ""
5826
 
5827
  # @ aiowpsecurity
5828
  #: admin/wp-security-user-login-menu.php:193
@@ -5830,6 +5951,8 @@ msgid ""
5830
  "Check this if you want to allow users to generate an automated unlock "
5831
  "request link which will unlock their account"
5832
  msgstr ""
 
 
5833
 
5834
  # @ aiowpsecurity
5835
  #: admin/wp-security-user-login-menu.php:248
@@ -5838,60 +5961,61 @@ msgid ""
5838
  "To see a list of all locked IP addresses and ranges go to the %s tab in the "
5839
  "dashboard menu."
5840
  msgstr ""
 
 
5841
 
5842
  # @ aiowpsecurity
5843
  #: classes/grade-system/wp-security-feature-item-manager.php:80
5844
  msgid "Enable IP blocking for 404 detection"
5845
- msgstr ""
5846
 
5847
  # @ aiowpsecurity
5848
  #: classes/grade-system/wp-security-feature-item-manager.php:84
5849
  msgid "Enable Rename Login Page"
5850
- msgstr ""
5851
-
5852
- # @ aiowpsecurity
5853
- #: classes/wp-security-process-renamed-login-page.php:68
5854
- msgid "Please log in to access the WordPress admin area."
5855
- msgstr ""
5856
 
5857
  # @ aiowpsecurity
5858
- #: classes/wp-security-user-login.php:272
5859
  msgid "Username: Unknown"
5860
- msgstr ""
5861
 
5862
  # @ aiowpsecurity
5863
- #: classes/wp-security-user-login.php:274
5864
  msgid "IP Range: .*"
5865
- msgstr ""
5866
 
5867
  # @ aiowpsecurity
5868
- #: classes/wp-security-user-login.php:337
5869
  msgid "Unlock Request Notification"
5870
- msgstr ""
5871
 
5872
  # @ aiowpsecurity
5873
- #: classes/wp-security-user-login.php:338
5874
  msgid ""
5875
  "You have requested for the account with email address to be unlocked. "
5876
  "Please click the link below to unlock your account:"
5877
  msgstr ""
 
 
5878
 
5879
  # @ aiowpsecurity
5880
- #: classes/wp-security-user-login.php:339
5881
  msgid "Unlock link: "
5882
- msgstr ""
5883
 
5884
  # @ aiowpsecurity
5885
- #: classes/wp-security-user-login.php:340
5886
  msgid ""
5887
  "After clicking the above link you will be able to login to the WordPress "
5888
  "administration panel."
5889
  msgstr ""
 
 
5890
 
5891
  # @ aiowpsecurity
5892
- #: classes/wp-security-user-login.php:534
5893
  msgid "Request Unlock"
5894
- msgstr ""
5895
 
5896
  # @ default
5897
  #: other-includes/wp-security-rename-login-feature.php:96
@@ -5907,86 +6031,92 @@ msgstr ""
5907
  # @ default
5908
  #: other-includes/wp-security-rename-login-feature.php:214
5909
  msgid "Are you lost?"
5910
- msgstr ""
5911
 
5912
  # @ default
5913
  #: other-includes/wp-security-rename-login-feature.php:214
5914
  #, php-format
5915
  msgid "&larr; Back to %s"
5916
- msgstr ""
5917
 
5918
  # @ default
5919
  #: other-includes/wp-security-rename-login-feature.php:272
5920
  msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
5921
  msgstr ""
 
5922
 
5923
  # @ default
5924
  #: other-includes/wp-security-rename-login-feature.php:276
5925
  msgid ""
5926
  "<strong>ERROR</strong>: There is no user registered with that email address."
5927
  msgstr ""
 
5928
 
5929
  # @ default
5930
  #: other-includes/wp-security-rename-login-feature.php:293
5931
  msgid "<strong>ERROR</strong>: Invalid username or e-mail."
5932
- msgstr ""
5933
 
5934
  # @ default
5935
  #: other-includes/wp-security-rename-login-feature.php:330
5936
  msgid "Password reset is not allowed for this user"
5937
- msgstr ""
5938
 
5939
  # @ default
5940
  #: other-includes/wp-security-rename-login-feature.php:355
5941
  msgid "Someone requested that the password be reset for the following account:"
5942
  msgstr ""
 
5943
 
5944
  # @ default
5945
  #: other-includes/wp-security-rename-login-feature.php:357
5946
  #, php-format
5947
  msgid "Username: %s"
5948
- msgstr ""
5949
 
5950
  # @ default
5951
  #: other-includes/wp-security-rename-login-feature.php:358
5952
  msgid "If this was a mistake, just ignore this email and nothing will happen."
5953
  msgstr ""
 
 
5954
 
5955
  # @ default
5956
  #: other-includes/wp-security-rename-login-feature.php:359
5957
  msgid "To reset your password, visit the following address:"
5958
- msgstr ""
5959
 
5960
  # @ default
5961
  #: other-includes/wp-security-rename-login-feature.php:369
5962
  #, php-format
5963
  msgid "[%s] Password Reset"
5964
- msgstr ""
5965
 
5966
  # @ default
5967
  #: other-includes/wp-security-rename-login-feature.php:390
5968
  msgid "The e-mail could not be sent."
5969
- msgstr ""
5970
 
5971
  # @ default
5972
  #: other-includes/wp-security-rename-login-feature.php:390
5973
  msgid "Possible reason: your host may have disabled the mail() function."
5974
  msgstr ""
 
5975
 
5976
  # @ default
5977
  #: other-includes/wp-security-rename-login-feature.php:495
5978
  msgid "Sorry, that key does not appear to be valid."
5979
- msgstr ""
5980
 
5981
  # @ default
5982
  #: other-includes/wp-security-rename-login-feature.php:497
5983
  msgid "Sorry, that key has expired. Please try again."
5984
- msgstr ""
5985
 
5986
  # @ default
5987
  #: other-includes/wp-security-rename-login-feature.php:517
5988
  msgid "Lost Password"
5989
- msgstr ""
5990
 
5991
  # @ default
5992
  #: other-includes/wp-security-rename-login-feature.php:517
@@ -5994,16 +6124,18 @@ msgid ""
5994
  "Please enter your username or email address. You will receive a link to "
5995
  "create a new password via email."
5996
  msgstr ""
 
 
5997
 
5998
  # @ default
5999
  #: other-includes/wp-security-rename-login-feature.php:525
6000
  msgid "Username or E-mail:"
6001
- msgstr ""
6002
 
6003
  # @ default
6004
  #: other-includes/wp-security-rename-login-feature.php:536
6005
  msgid "Get New Password"
6006
- msgstr ""
6007
 
6008
  # @ default
6009
  #: other-includes/wp-security-rename-login-feature.php:540
@@ -6019,48 +6151,48 @@ msgstr ""
6019
  #: other-includes/wp-security-rename-login-feature.php:709
6020
  #: other-includes/wp-security-rename-login-feature.php:892
6021
  msgid "Register"
6022
- msgstr ""
6023
 
6024
  # @ default
6025
  #: other-includes/wp-security-rename-login-feature.php:575
6026
  msgid "The passwords do not match."
6027
- msgstr ""
6028
 
6029
  # @ default
6030
  #: other-includes/wp-security-rename-login-feature.php:589
6031
  msgid "Password Reset"
6032
- msgstr ""
6033
 
6034
  # @ default
6035
  #: other-includes/wp-security-rename-login-feature.php:589
6036
  msgid "Your password has been reset."
6037
- msgstr ""
6038
 
6039
  # @ default
6040
  #: other-includes/wp-security-rename-login-feature.php:597
6041
  #: other-includes/wp-security-rename-login-feature.php:627
6042
  msgid "Reset Password"
6043
- msgstr ""
6044
 
6045
  # @ default
6046
  #: other-includes/wp-security-rename-login-feature.php:597
6047
  msgid "Enter your new password below."
6048
- msgstr ""
6049
 
6050
  # @ default
6051
  #: other-includes/wp-security-rename-login-feature.php:604
6052
  msgid "New password"
6053
- msgstr ""
6054
 
6055
  # @ default
6056
  #: other-includes/wp-security-rename-login-feature.php:608
6057
  msgid "Confirm new password"
6058
- msgstr ""
6059
 
6060
  # @ default
6061
  #: other-includes/wp-security-rename-login-feature.php:612
6062
  msgid "Strength indicator"
6063
- msgstr ""
6064
 
6065
  # @ default
6066
  #: other-includes/wp-security-rename-login-feature.php:613
@@ -6069,44 +6201,47 @@ msgid ""
6069
  "stronger, use upper and lower case letters, numbers, and symbols like ! \" ? "
6070
  "$ % ^ &amp; )."
6071
  msgstr ""
 
 
 
6072
 
6073
  # @ default
6074
  #: other-includes/wp-security-rename-login-feature.php:686
6075
  msgid "Registration Form"
6076
- msgstr ""
6077
 
6078
  # @ default
6079
  #: other-includes/wp-security-rename-login-feature.php:686
6080
  msgid "Register For This Site"
6081
- msgstr ""
6082
 
6083
  # @ default
6084
  #: other-includes/wp-security-rename-login-feature.php:691
6085
  #: other-includes/wp-security-rename-login-feature.php:858
6086
  msgid "Username"
6087
- msgstr ""
6088
 
6089
  # @ default
6090
  #: other-includes/wp-security-rename-login-feature.php:695
6091
  msgid "E-mail"
6092
- msgstr ""
6093
 
6094
  # @ default
6095
  #: other-includes/wp-security-rename-login-feature.php:706
6096
  msgid "A password will be e-mailed to you."
6097
- msgstr ""
6098
 
6099
  # @ default
6100
  #: other-includes/wp-security-rename-login-feature.php:714
6101
  #: other-includes/wp-security-rename-login-feature.php:897
6102
  msgid "Password Lost and Found"
6103
- msgstr ""
6104
 
6105
  # @ default
6106
  #: other-includes/wp-security-rename-login-feature.php:714
6107
  #: other-includes/wp-security-rename-login-feature.php:897
6108
  msgid "Lost your password?"
6109
- msgstr ""
6110
 
6111
  # @ default
6112
  #: other-includes/wp-security-rename-login-feature.php:760
@@ -6116,6 +6251,9 @@ msgid ""
6116
  "help, please see <a href=\"%1$s\">this documentation</a> or try the <a href="
6117
  "\"%2$s\">support forums</a>."
6118
  msgstr ""
 
 
 
6119
 
6120
  # @ default
6121
  #: other-includes/wp-security-rename-login-feature.php:761
@@ -6135,42 +6273,47 @@ msgid ""
6135
  "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
6136
  "browser. You must <a href=\"%s\">enable cookies</a> to use WordPress."
6137
  msgstr ""
 
 
 
6138
 
6139
  # @ default
6140
  #: other-includes/wp-security-rename-login-feature.php:783
6141
  msgid "You have logged in successfully."
6142
- msgstr ""
6143
 
6144
  # @ default
6145
  #: other-includes/wp-security-rename-login-feature.php:817
6146
  msgid ""
6147
  "Session expired. Please log in again. You will not move away from this page."
6148
  msgstr ""
 
 
6149
 
6150
  # @ default
6151
  #: other-includes/wp-security-rename-login-feature.php:821
6152
  msgid "You are now logged out."
6153
- msgstr ""
6154
 
6155
  # @ default
6156
  #: other-includes/wp-security-rename-login-feature.php:823
6157
  msgid "User registration is currently not allowed."
6158
- msgstr ""
6159
 
6160
  # @ default
6161
  #: other-includes/wp-security-rename-login-feature.php:825
6162
  msgid "Check your e-mail for the confirmation link."
6163
- msgstr ""
6164
 
6165
  # @ default
6166
  #: other-includes/wp-security-rename-login-feature.php:827
6167
  msgid "Check your e-mail for your new password."
6168
- msgstr ""
6169
 
6170
  # @ default
6171
  #: other-includes/wp-security-rename-login-feature.php:829
6172
  msgid "Registration complete. Please check your e-mail."
6173
- msgstr ""
6174
 
6175
  # @ default
6176
  #: other-includes/wp-security-rename-login-feature.php:831
@@ -6178,6 +6321,8 @@ msgid ""
6178
  "<strong>You have successfully updated WordPress!</strong> Please log back in "
6179
  "to experience the awesomeness."
6180
  msgstr ""
 
 
6181
 
6182
  # @ default
6183
  #: other-includes/wp-security-rename-login-feature.php:848
@@ -6188,7 +6333,7 @@ msgstr ""
6188
  # @ default
6189
  #: other-includes/wp-security-rename-login-feature.php:873
6190
  msgid "Remember Me"
6191
- msgstr ""
6192
 
6193
  # @ default
6194
  #: other-includes/wp-security-unlock-request.php:13
@@ -6198,19 +6343,681 @@ msgstr ""
6198
  # @ aiowpsecurity
6199
  #: other-includes/wp-security-unlock-request.php:48
6200
  msgid "Please enter a valid email address"
6201
- msgstr ""
6202
 
6203
  # @ aiowpsecurity
6204
  #: other-includes/wp-security-unlock-request.php:59
6205
  msgid "User account not found!"
6206
- msgstr ""
6207
 
6208
  # @ aiowpsecurity
6209
  #: other-includes/wp-security-unlock-request.php:70
6210
  msgid "Error: No locked entry was found in the DB with your IP address range!"
6211
  msgstr ""
 
 
6212
 
6213
  # @ aiowpsecurity
6214
  #: other-includes/wp-security-unlock-request.php:98
6215
  msgid "Email Address"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6216
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: All In One WP Security vv3.7.9\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2013-12-03 12:53+1000\n"
6
+ "PO-Revision-Date: 2014-08-23 11:13+0100\n"
7
  "Last-Translator: Marco <marco.gmetti@alice.it>\n"
8
  "Language-Team: Marco Guglielmetti <mg@marcoguglielmetti.it>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: Poedit 1.6.8\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
20
  "X-Poedit-SearchPath-0: ..\n"
21
 
22
  # @ aiowpsecurity
23
+ #: admin/wp-security-admin-init.php:203
24
  msgid "WP Security"
25
  msgstr "Sicurezza WP"
26
 
27
  # @ aiowpsecurity
28
+ #: admin/wp-security-admin-init.php:204
29
  #: admin/wp-security-dashboard-menu.php:23
30
  msgid "Dashboard"
31
  msgstr "Bacheca"
32
 
33
  # @ aiowpsecurity
34
+ #: admin/wp-security-admin-init.php:205
35
  msgid "Settings"
36
  msgstr "Impostazioni"
37
 
38
  # @ aiowpsecurity
39
+ #: admin/wp-security-admin-init.php:206
40
  msgid "User Accounts"
41
  msgstr "Account Utente"
42
 
43
  # @ aiowpsecurity
44
+ #: admin/wp-security-admin-init.php:207
45
  msgid "User Login"
46
  msgstr "Login Utente"
47
 
48
  # @ aiowpsecurity
49
+ #: admin/wp-security-admin-init.php:208
50
  msgid "User Registration"
51
  msgstr "Registrazione Utenti"
52
 
53
  # @ aiowpsecurity
54
+ #: admin/wp-security-admin-init.php:209
55
  msgid "Database Security"
56
  msgstr "Sicurezza Database"
57
 
58
  # @ aiowpsecurity
59
+ #: admin/wp-security-admin-init.php:213
60
  msgid "Filesystem Security"
61
  msgstr "Sicurezza File Sistema"
62
 
63
  # @ aiowpsecurity
64
+ #: admin/wp-security-admin-init.php:215
65
  msgid "WHOIS Lookup"
66
  msgstr "Ricerca WHOIS"
67
 
68
  # @ aiowpsecurity
69
+ #: admin/wp-security-admin-init.php:219
70
  msgid "Blacklist Manager"
71
  msgstr "Gestione Blacklist"
72
 
73
  # @ aiowpsecurity
74
+ #: admin/wp-security-admin-init.php:224
75
  msgid "Firewall"
76
  msgstr "Firewall"
77
 
78
  # @ aiowpsecurity
79
+ #: admin/wp-security-admin-init.php:231
80
  msgid "SPAM Prevention"
81
  msgstr "Prevenzione SPAM"
82
 
83
  # @ aiowpsecurity
84
+ #: admin/wp-security-admin-init.php:235
85
  msgid "Scanner"
86
  msgstr "Scanner"
87
 
88
  # @ aiowpsecurity
89
+ #: admin/wp-security-admin-init.php:237
90
  msgid "Maintenance"
91
  msgstr "Manutenzione"
92
 
112
 
113
  # @ aiowpsecurity
114
  #: admin/wp-security-blacklist-menu.php:132
115
+ #: admin/wp-security-brute-force-menu.php:610
116
  #: admin/wp-security-list-comment-spammer-ip.php:147
117
  msgid ""
118
  "The plugin was unable to write to the .htaccess file. Please edit file "
132
  "The All In One WP Security Blacklist feature gives you the option of banning "
133
  "certain host IP addresses or ranges and also user agents."
134
  msgstr ""
135
+ "La caratteristica Blacklist offre la possibilità di vietare determinati "
136
+ "indirizzi IP o intervalli di accesso e anche user agent."
137
 
138
  # @ aiowpsecurity
139
  #: admin/wp-security-blacklist-menu.php:143
181
  "Check this if you want to enable the banning (or blacklisting) of selected "
182
  "IP addresses and/or user agents specified in the settings below"
183
  msgstr ""
184
+ "Seleziona questa casella se desideri attivare la messa al bando (o lista "
185
+ "nera) di indirizzi IP selezionati e / o user agents specificati nelle "
186
+ "impostazioni di seguito"
187
 
188
  # @ aiowpsecurity
189
  #: admin/wp-security-blacklist-menu.php:169
198
  # @ aiowpsecurity
199
  #: admin/wp-security-blacklist-menu.php:174
200
  #: admin/wp-security-blacklist-menu.php:194
201
+ #: admin/wp-security-brute-force-menu.php:345
202
+ #: admin/wp-security-brute-force-menu.php:379
203
+ #: admin/wp-security-brute-force-menu.php:402
204
+ #: admin/wp-security-brute-force-menu.php:423
205
+ #: admin/wp-security-brute-force-menu.php:666
206
+ #: admin/wp-security-filescan-menu.php:293
207
+ #: admin/wp-security-filescan-menu.php:310
208
  #: admin/wp-security-firewall-menu.php:165
209
  #: admin/wp-security-firewall-menu.php:195
210
  #: admin/wp-security-firewall-menu.php:326
215
  #: admin/wp-security-firewall-menu.php:532
216
  #: admin/wp-security-firewall-menu.php:622
217
  #: admin/wp-security-firewall-menu.php:824
218
+ #: admin/wp-security-firewall-menu.php:847 admin/wp-security-spam-menu.php:168
219
+ #: admin/wp-security-spam-menu.php:253
220
  msgid "More Info"
221
  msgstr "Altre Info"
222
 
223
  # @ aiowpsecurity
224
  #: admin/wp-security-blacklist-menu.php:177
225
+ #: admin/wp-security-brute-force-menu.php:669
226
  msgid "Each IP address must be on a new line."
227
  msgstr "Ogni indirizzo IP deve essere su una nuova linea."
228
 
229
  # @ aiowpsecurity
230
  #: admin/wp-security-blacklist-menu.php:178
231
+ #: admin/wp-security-brute-force-menu.php:670
232
  msgid ""
233
  "To specify an IP range use a wildcard \"*\" character. Acceptable ways to "
234
  "use wildcards is shown in the examples below:"
239
 
240
  # @ aiowpsecurity
241
  #: admin/wp-security-blacklist-menu.php:179
242
+ #: admin/wp-security-brute-force-menu.php:671
243
  msgid "Example 1: 195.47.89.*"
244
  msgstr "Esempio 1: 195.47.89.*"
245
 
246
  # @ aiowpsecurity
247
  #: admin/wp-security-blacklist-menu.php:180
248
+ #: admin/wp-security-brute-force-menu.php:672
249
  msgid "Example 2: 195.47.*.*"
250
  msgstr "Esempio 2: 195.47.*.*"
251
 
252
  # @ aiowpsecurity
253
  #: admin/wp-security-blacklist-menu.php:181
254
+ #: admin/wp-security-brute-force-menu.php:673
255
  msgid "Example 3: 195.*.*.*"
256
  msgstr "Esempio 3: 195.*.*.*"
257
 
281
  msgstr "Esempio 2 - Un elenco di più stringhe di agent per bloccare"
282
 
283
  # @ aiowpsecurity
284
+ # @ default
285
  #: admin/wp-security-blacklist-menu.php:208
286
+ #: admin/wp-security-brute-force-menu.php:190
287
+ #: admin/wp-security-brute-force-menu.php:546
288
+ #: admin/wp-security-brute-force-menu.php:680
289
+ #: admin/wp-security-brute-force-menu.php:743
290
  #: admin/wp-security-database-menu.php:356
291
+ #: admin/wp-security-filescan-menu.php:331
292
  #: admin/wp-security-filesystem-menu.php:231
293
  #: admin/wp-security-firewall-menu.php:700
294
  #: admin/wp-security-firewall-menu.php:866
295
+ #: admin/wp-security-misc-options-menu.php:165
296
+ #: admin/wp-security-settings-menu.php:495 admin/wp-security-spam-menu.php:183
297
+ #: admin/wp-security-spam-menu.php:349
298
  #: admin/wp-security-user-login-menu.php:239
299
  #: admin/wp-security-user-login-menu.php:407
300
  #: admin/wp-security-user-registration-menu.php:146
301
+ #: admin/wp-security-user-registration-menu.php:232
302
  msgid "Save Settings"
303
  msgstr "Salva Impostazioni"
304
 
310
  # @ aiowpsecurity
311
  #: admin/wp-security-dashboard-menu.php:75
312
  msgid "For information, updates and documentation, please visit the"
313
+ msgstr "Per informazioni, aggiornamenti e documentazione, vista la pagina "
 
314
 
315
  # @ aiowpsecurity
316
  #: admin/wp-security-dashboard-menu.php:75
320
  # @ aiowpsecurity
321
  #: admin/wp-security-dashboard-menu.php:75
322
  msgid "Page"
323
+ msgstr "."
324
 
325
  # @ aiowpsecurity
326
  #: admin/wp-security-dashboard-menu.php:76
359
  "activate on your site to achieve a minimum level of recommended security"
360
  msgstr ""
361
  "Di seguito è riportato lo stato attuale delle caratteristiche fondamentali "
362
+ "che dovresti attivare sul tuo sito per ottenere il livello minimo di "
363
  "sicurezza raccomandata"
364
 
365
  # @ aiowpsecurity
497
  # @ aiowpsecurity
498
  #: admin/wp-security-dashboard-menu.php:605
499
  msgid "Active Plugins"
500
+ msgstr "Plugin Attivi"
501
 
502
  # @ aiowpsecurity
503
  #: admin/wp-security-dashboard-menu.php:615
566
  "contains a lot of your site's precious information."
567
  msgstr ""
568
  "Il tuo DB WordPress è la risorsa più importante del tuo sito web perché "
569
+ "contiene un sacco di informazioni preziose."
570
 
571
  # @ aiowpsecurity
572
  #: admin/wp-security-database-menu.php:135
689
 
690
  # @ aiowpsecurity
691
  #: admin/wp-security-database-menu.php:251
692
+ #: admin/wp-security-filescan-menu.php:135
693
  msgid ""
694
  "You entered a non numeric value for the \"backup time interval\" field. It "
695
  "has been set to the default value."
708
 
709
  # @ aiowpsecurity
710
  #: admin/wp-security-database-menu.php:265
711
+ #: admin/wp-security-filescan-menu.php:165
712
  #: admin/wp-security-user-login-menu.php:117
713
  msgid ""
714
  "You have entered an incorrect email address format. It has been set to your "
718
  "tua email amministratore WordPress predefinita."
719
 
720
  # @ aiowpsecurity
721
+ #: admin/wp-security-brute-force-menu.php:110
722
  #: admin/wp-security-database-menu.php:271
723
+ #: admin/wp-security-filescan-menu.php:171
724
+ #: admin/wp-security-firewall-menu.php:769 admin/wp-security-spam-menu.php:213
725
  #: admin/wp-security-user-login-menu.php:123
726
  #: admin/wp-security-user-login-menu.php:360
727
  msgid "Attention!"
736
  #: admin/wp-security-database-menu.php:304
737
  msgid "To create a new DB backup just click on the button below."
738
  msgstr ""
739
+ "Per creare un nuovo backup DB è sufficiente cliccare sul pulsante qui sotto."
740
 
741
  # @ aiowpsecurity
742
  #: admin/wp-security-database-menu.php:307
759
  "Check this if you want the system to automatically generate backups "
760
  "periodically based on the settings below"
761
  msgstr ""
762
+ "Seleziona questa casella se desideri che il sistema generari automaticamente "
763
+ "i backup periodicamente in base alle impostazioni di seguito"
764
 
765
  # @ aiowpsecurity
766
  #: admin/wp-security-database-menu.php:330
769
 
770
  # @ aiowpsecurity
771
  #: admin/wp-security-database-menu.php:333
772
+ #: admin/wp-security-filescan-menu.php:281
773
  msgid "Hours"
774
  msgstr "Ore"
775
 
776
  # @ aiowpsecurity
777
  #: admin/wp-security-database-menu.php:334
778
+ #: admin/wp-security-filescan-menu.php:282
779
  msgid "Days"
780
  msgstr "Giorni"
781
 
782
  # @ aiowpsecurity
783
  #: admin/wp-security-database-menu.php:335
784
+ #: admin/wp-security-filescan-menu.php:283
785
  msgid "Weeks"
786
  msgstr "Settimane"
787
 
821
 
822
  # @ aiowpsecurity
823
  #: admin/wp-security-database-menu.php:352
824
+ #: admin/wp-security-filescan-menu.php:327
825
  #: admin/wp-security-user-login-menu.php:235
826
  msgid "Enter an email address"
827
  msgstr "Inserisci Indirizzo Email"
876
  msgstr "%s tabelle hanno il loro prefisso aggiornato con successo!"
877
 
878
  # @ aiowpsecurity
879
+ #: admin/wp-security-database-menu.php:453
880
  msgid "wp-config.php file was updated successfully!"
881
  msgstr "wp-config.php file è stato aggiornato con successo!"
882
 
883
  # @ aiowpsecurity
884
+ #: admin/wp-security-database-menu.php:456
885
  #, php-format
886
  msgid ""
887
  "The \"wp-config.php\" file was not able to be modified. Please modify this "
895
  "valore a tale variabile: %s"
896
 
897
  # @ aiowpsecurity
898
+ #: admin/wp-security-database-menu.php:477
899
  msgid "There was an error when updating the options table."
900
  msgstr ""
901
  "Si è verificato un errore durante l'aggiornamento delle opzioni tabella."
902
 
903
  # @ aiowpsecurity
904
+ #: admin/wp-security-database-menu.php:481
905
  msgid ""
906
  "The options table records which had references to the old DB prefix were "
907
  "updated successfully!"
910
  "prefisso DB sono state aggiornate con successo!"
911
 
912
  # @ aiowpsecurity
913
+ #: admin/wp-security-database-menu.php:506
914
  #, php-format
915
  msgid ""
916
  "Error updating user_meta table where new meta_key = %s, old meta_key = %s "
920
  "vecchio meta_key = %s e user_id = %s."
921
 
922
  # @ aiowpsecurity
923
+ #: admin/wp-security-database-menu.php:512
924
  msgid ""
925
  "The usermeta table records which had references to the old DB prefix were "
926
  "updated successfully!"
929
  "DB sono state aggiornate con successo!"
930
 
931
  # @ aiowpsecurity
932
+ #: admin/wp-security-database-menu.php:514
933
  msgid "DB prefix change tasks have been completed."
934
  msgstr "Sono state completate le attività di DB del cambiamento di prefisso."
935
 
936
  # @ aiowpsecurity
937
+ #: admin/wp-security-filescan-menu.php:24
938
+ #: classes/grade-system/wp-security-feature-item-manager.php:106
939
  msgid "File Change Detection"
940
  msgstr "Rilevamento Modifiche File"
941
 
942
  # @ aiowpsecurity
943
+ #: admin/wp-security-filescan-menu.php:105
944
  msgid "Nonce check failed for manual file change detection scan operation!"
945
  msgstr ""
946
  "Check non riuscito per la scansione manulale di rilevamento modifica dei "
947
  "file!"
948
 
949
  # @ aiowpsecurity
950
+ #: admin/wp-security-filescan-menu.php:112
951
  msgid ""
952
  "The plugin has detected that this is your first file change detection scan. "
953
  "The file details from this scan will be used to detect file changes for "
958
  "utilizzati per rilevare i cambiamenti dei file per le scansioni future!"
959
 
960
  # @ aiowpsecurity
961
+ #: admin/wp-security-filescan-menu.php:203
962
  msgid ""
963
  "NEW SCAN COMPLETED: The plugin has detected that you have made changes to "
964
  "the \"File Types To Ignore\" or \"Files To Ignore\" fields.\n"
972
  "future siano precisi, i dati della scansione vecchia sono stati aggiornati."
973
 
974
  # @ aiowpsecurity
975
+ #: admin/wp-security-filescan-menu.php:213
976
  msgid ""
977
  "All In One WP Security & Firewall has detected that there was a change in "
978
  "your host's files."
981
  "nei file del proprio host."
982
 
983
  # @ aiowpsecurity
984
+ #: admin/wp-security-filescan-menu.php:215
985
  msgid "View Scan Details & Clear This Message"
986
  msgstr "Visualizza i dettagli di scansione e cancella il messaggio"
987
 
988
  # @ aiowpsecurity
989
+ #: admin/wp-security-filescan-menu.php:224
990
  msgid ""
991
  "If given an opportunity hackers can insert their code or files into your "
992
  "system which they can then use to carry out malicious acts on your site."
993
  msgstr ""
994
+ "Esiste la possibilità che hacker possano inserire il loro codice, nei file o "
995
+ "nel vostro sistema, da utilizzare poi per eseguire operazioni dannose sul "
996
+ "tuo sito."
997
 
998
  # @ aiowpsecurity
999
+ #: admin/wp-security-filescan-menu.php:225
1000
  msgid ""
1001
  "Being informed of any changes in your files can be a good way to quickly "
1002
  "prevent a hacker from causing damage to your website."
1003
  msgstr ""
1004
  "Essere informati di eventuali cambiamenti nei file può essere un buon modo "
1005
+ "per evitare rapidamente che un hacker possa causare danni al tuo sito web."
1006
 
1007
  # @ aiowpsecurity
1008
+ #: admin/wp-security-filescan-menu.php:226
1009
  msgid ""
1010
  "In general, WordPress core and plugin files and file types such as \".php\" "
1011
  "or \".js\" should not change often and when they do, it is important that "
1017
  "influenzato."
1018
 
1019
  # @ aiowpsecurity
1020
+ #: admin/wp-security-filescan-menu.php:227
1021
  msgid ""
1022
  "The \"File Change Detection Feature\" will notify you of any file change "
1023
  "which occurs on your system, including the addition and deletion of files by "
1024
  "performing a regular automated or manual scan of your system's files."
1025
  msgstr ""
1026
+ "La funzione \"Rilevamento Modifiche File\" comunicherà qualsiasi modifica di "
1027
  "file che si verifica sul sistema, tra cui l'aggiunta e la cancellazione dei "
1028
  "file per effettuare una normale scansione automatica o manuale dei file del "
1029
  "proprio sistema."
1030
 
1031
  # @ aiowpsecurity
1032
+ #: admin/wp-security-filescan-menu.php:228
1033
  msgid ""
1034
  "This feature also allows you to exclude certain files or folders from the "
1035
  "scan in cases where you know that they change often as part of their normal "
1041
  "dalla scansione se si sa che cambiano spesso come parte del loro normale "
1042
  "funzionamento. (Ad esempio i file di log e di alcuni file dei plugin di "
1043
  "caching possono cambiare spesso e quindi si può scegliere di escludere tali "
1044
+ "file dalla scansione)"
1045
 
1046
  # @ aiowpsecurity
1047
+ #: admin/wp-security-filescan-menu.php:233
1048
  msgid "Manual File Change Detection Scan"
1049
  msgstr "Scansione Rilevamento Modifiche File Manuale"
1050
 
1051
  # @ aiowpsecurity
1052
+ #: admin/wp-security-filescan-menu.php:239
1053
  msgid ""
1054
  "To perform a manual file change detection scan click on the button below."
1055
  msgstr ""
1057
  "pulsante qui sotto."
1058
 
1059
  # @ aiowpsecurity
1060
+ #: admin/wp-security-filescan-menu.php:242
1061
  msgid "Perform Scan Now"
1062
  msgstr "Esegui scansione Ora"
1063
 
1064
  # @ aiowpsecurity
1065
+ #: admin/wp-security-filescan-menu.php:259
1066
  msgid "File Change Detection Settings"
1067
  msgstr "Impostazioni Rilevamento Modifiche File"
1068
 
1069
  # @ aiowpsecurity
1070
+ #: admin/wp-security-filescan-menu.php:271
1071
  msgid "Enable Automated File Change Detection Scan"
1072
  msgstr "Attiva Scansione Automatica Rilevamento Modifiche File"
1073
 
1074
  # @ aiowpsecurity
1075
+ #: admin/wp-security-filescan-menu.php:274
1076
  msgid ""
1077
  "Check this if you want the system to automatically/periodically scan your "
1078
  "files to check for file changes based on the settings below"
1079
  msgstr ""
1080
+ "Seleziona questa casella se vuoi che il sistema esegua in automatico/"
1081
  "periodicamente la scansione dei file per verificare eventuali modifiche in "
1082
  "base alle impostazioni di seguito"
1083
 
1084
  # @ aiowpsecurity
1085
+ #: admin/wp-security-filescan-menu.php:278
1086
  msgid "Scan Time Interval"
1087
  msgstr "Intervallo Tempo Scansione"
1088
 
1089
  # @ aiowpsecurity
1090
+ #: admin/wp-security-filescan-menu.php:285
1091
  msgid "Set the value for how often you would like a scan to occur"
1092
  msgstr ""
1093
  "Impostare il valore per quanto spesso si desidera creare una scansione di "
1094
  "verifica"
1095
 
1096
  # @ aiowpsecurity
1097
+ #: admin/wp-security-filescan-menu.php:289
1098
  msgid "File Types To Ignore"
1099
  msgstr "Tipi di file da ignorare"
1100
 
1101
  # @ aiowpsecurity
1102
+ #: admin/wp-security-filescan-menu.php:292
1103
  msgid ""
1104
  "Enter each file type or extension on a new line which you wish to exclude "
1105
  "from the file change detection scan."
1108
  "escludere dalla scansione di rilevamento delle modifiche dei file."
1109
 
1110
  # @ aiowpsecurity
1111
+ #: admin/wp-security-filescan-menu.php:296
1112
  msgid ""
1113
  "You can exclude file types from the scan which would not normally pose any "
1114
  "security threat if they were changed. These can include things such as image "
1119
  "possono includere cose come file di immagine."
1120
 
1121
  # @ aiowpsecurity
1122
+ #: admin/wp-security-filescan-menu.php:297
1123
  msgid ""
1124
  "Example: If you want the scanner to ignore files of type jpg, png, and bmp, "
1125
  "then you would enter the following:"
1128
  "immettere il seguente:"
1129
 
1130
  # @ aiowpsecurity
1131
+ #: admin/wp-security-filescan-menu.php:298
1132
  msgid "jpg"
1133
  msgstr "jpg"
1134
 
1135
  # @ aiowpsecurity
1136
+ #: admin/wp-security-filescan-menu.php:299
1137
  msgid "png"
1138
  msgstr "png"
1139
 
1140
  # @ aiowpsecurity
1141
+ #: admin/wp-security-filescan-menu.php:300
1142
  msgid "bmp"
1143
  msgstr "bmp"
1144
 
1145
  # @ aiowpsecurity
1146
+ #: admin/wp-security-filescan-menu.php:306
1147
  msgid "Files/Directories To Ignore"
1148
  msgstr "File/Directory Da Ignorare"
1149
 
1150
  # @ aiowpsecurity
1151
+ #: admin/wp-security-filescan-menu.php:309
1152
  msgid ""
1153
  "Enter each file or directory on a new line which you wish to exclude from "
1154
  "the file change detection scan."
1157
  "di rilevamento delle modifiche dei file, su una nuova linea."
1158
 
1159
  # @ aiowpsecurity
1160
+ #: admin/wp-security-filescan-menu.php:313
1161
  msgid ""
1162
  "You can exclude specific files/directories from the scan which would not "
1163
  "normally pose any security threat if they were changed. These can include "
1168
  "modificati. Questi possono includere cose come i file di log."
1169
 
1170
  # @ aiowpsecurity
1171
+ #: admin/wp-security-filescan-menu.php:314
1172
  msgid ""
1173
  "Example: If you want the scanner to ignore certain files in different "
1174
  "directories or whole directories, then you would enter the following:"
1177
  "directory o intere directory, immettere il seguente:"
1178
 
1179
  # @ aiowpsecurity
1180
+ #: admin/wp-security-filescan-menu.php:315
1181
  msgid "cache/config/master.php"
1182
  msgstr "cache/config/master.php"
1183
 
1184
  # @ aiowpsecurity
1185
+ #: admin/wp-security-filescan-menu.php:316
1186
  msgid "somedirectory"
1187
  msgstr "nomedirectory"
1188
 
1189
  # @ aiowpsecurity
1190
+ #: admin/wp-security-filescan-menu.php:322
1191
  msgid "Send Email When Change Detected"
1192
  msgstr "Invia e-mail quando viene rilevata una modifica"
1193
 
1194
  # @ aiowpsecurity
1195
+ #: admin/wp-security-filescan-menu.php:325
1196
  msgid ""
1197
  "Check this if you want the system to email you if a file change was detected"
1198
  msgstr ""
1200
  "rilevata una modifica"
1201
 
1202
  # @ aiowpsecurity
1203
+ #: admin/wp-security-filescan-menu.php:462
1204
  msgid "Latest File Change Scan Results"
1205
  msgstr "Ultimi Risultati scansione di modifica file"
1206
 
1207
  # @ aiowpsecurity
1208
+ #: admin/wp-security-filescan-menu.php:471
1209
  msgid "The following files were added to your host."
1210
  msgstr "I seguenti file sono stati aggiunti al tu Host."
1211
 
1212
  # @ aiowpsecurity
1213
+ #: admin/wp-security-filescan-menu.php:474
1214
+ #: admin/wp-security-filescan-menu.php:495
1215
+ #: admin/wp-security-filescan-menu.php:519
 
1216
  #: admin/wp-security-settings-menu.php:27
1217
+ #: admin/wp-security-settings-menu.php:28
1218
  msgid "File"
1219
  msgstr "File"
1220
 
1221
  # @ aiowpsecurity
1222
+ #: admin/wp-security-filescan-menu.php:475
1223
+ #: admin/wp-security-filescan-menu.php:496
1224
+ #: admin/wp-security-filescan-menu.php:520
1225
  msgid "File Size"
1226
  msgstr "Dimensione File"
1227
 
1228
  # @ aiowpsecurity
1229
+ #: admin/wp-security-filescan-menu.php:476
1230
+ #: admin/wp-security-filescan-menu.php:497
1231
+ #: admin/wp-security-filescan-menu.php:521
1232
  msgid "File Modified"
1233
  msgstr "Modifica File"
1234
 
1235
  # @ aiowpsecurity
1236
+ #: admin/wp-security-filescan-menu.php:492
1237
  msgid "The following files were removed from your host."
1238
  msgstr "I seguenti file sono stati rimossi dal tuo host."
1239
 
1240
  # @ aiowpsecurity
1241
+ #: admin/wp-security-filescan-menu.php:516
1242
  msgid "The following files were changed on your host."
1243
  msgstr "I seguenti file sono stati modificati nel tuo host."
1244
 
1287
  "and read/write privileges of the files and folders which make up your WP "
1288
  "installation."
1289
  msgstr ""
1290
+ "Il tuoi file di WordPress e le impostazioni delle autorizzazioni delle "
1291
  "cartelle regolano i privilegi di accesso e lettura/scrittura dei file e "
1292
  "delle cartelle che compongono l'installazione WP."
1293
 
1297
  "Your WP installation already comes with reasonably secure file permission "
1298
  "settings for the filesystem."
1299
  msgstr ""
1300
+ "La tua installazione di WP viene fornita già con le impostazioni di "
1301
+ "autorizzazione file ragionevolmente sicure per il filesystem."
1302
 
1303
  # @ aiowpsecurity
1304
  #: admin/wp-security-filesystem-menu.php:111
1413
  "Check this if you want to remove the ability for people to edit PHP files "
1414
  "via the WP dashboard"
1415
  msgstr ""
1416
+ "Seleziona questa casella se vuoi rimuovere la possibilità per le persone di "
1417
+ "modificare i file PHP tramite la bacheca WP"
1418
 
1419
  # @ aiowpsecurity
1420
  #: admin/wp-security-filesystem-menu.php:271
1426
  "default WP."
1427
 
1428
  # @ aiowpsecurity
1429
+ #: admin/wp-security-brute-force-menu.php:283
1430
  #: admin/wp-security-filesystem-menu.php:275
1431
  #: admin/wp-security-firewall-menu.php:119
1432
  #: admin/wp-security-firewall-menu.php:287
1433
  #: admin/wp-security-firewall-menu.php:498
1434
+ #: admin/wp-security-firewall-menu.php:667 admin/wp-security-spam-menu.php:108
1435
  msgid ""
1436
  "Could not write to the .htaccess file. Please check the file permissions."
1437
  msgstr ""
1477
  "Check this if you want to prevent access to readme.html, license.txt and wp-"
1478
  "config-sample.php."
1479
  msgstr ""
1480
+ "Seleziona questa casella per impedire l'accesso a readme.html, license.txt e "
1481
+ "wp-config-sample.php."
1482
 
1483
  # @ aiowpsecurity
1484
  #: admin/wp-security-filesystem-menu.php:307
1585
 
1586
  # @ aiowpsecurity
1587
  #: admin/wp-security-firewall-menu.php:115
1588
+ #: admin/wp-security-firewall-menu.php:663 admin/wp-security-spam-menu.php:104
1589
+ #: admin/wp-security-spam-menu.php:317
1590
  #: admin/wp-security-user-registration-menu.php:96
1591
  msgid "Settings were successfully saved"
1592
  msgstr "Impostazioni salvate con successo"
1623
  "into your currently active .htaccess file."
1624
  msgstr ""
1625
  "La funzionalità firewall è ottenuta tramite l'inserimento di codice speciale "
1626
+ "nel file attualmente attivo .htaccess."
1627
 
1628
  # @ aiowpsecurity
1629
  #: admin/wp-security-firewall-menu.php:153
1678
  "should not affect your site's overall functionality."
1679
  msgstr ""
1680
  "Le funzioni di firewall di cui sopra verranno applicate tramite il file ."
1681
+ "htaccess e non dovrebbero pregiudicare la funzionalità complessiva del tuo "
1682
  "sito."
1683
 
1684
  # @ aiowpsecurity
1708
  "enable protection against WordPress pingback vulnerabilities."
1709
  msgstr ""
1710
  "Seleziona questo se non utilizzi le funzioni WP XML-RPC e vuoi attivare la "
1711
+ "protezione per la vulnerabilità WordPress pingback."
1712
 
1713
  # @ aiowpsecurity
1714
  #: admin/wp-security-firewall-menu.php:198
1823
 
1824
  # @ aiowpsecurity
1825
  #: admin/wp-security-firewall-menu.php:322
1826
+ #: classes/grade-system/wp-security-feature-item-manager.php:90
1827
  msgid "Disable Index Views"
1828
  msgstr "Disabilita Vista Index"
1829
 
1831
  #: admin/wp-security-firewall-menu.php:325
1832
  msgid "Check this if you want to disable directory and file listing."
1833
  msgstr ""
1834
+ "Seleziona questa casella se desideri disabilitare directory e elenco file."
1835
 
1836
  # @ aiowpsecurity
1837
  #: admin/wp-security-firewall-menu.php:330
1856
 
1857
  # @ aiowpsecurity
1858
  #: admin/wp-security-firewall-menu.php:352
1859
+ #: classes/grade-system/wp-security-feature-item-manager.php:91
1860
  msgid "Disable Trace and Track"
1861
  msgstr "Disattiva Tracciamento e Monitoraggio"
1862
 
1880
  "This hacking technique is usually used together with cross site scripting "
1881
  "attacks (XSS)."
1882
  msgstr ""
1883
+ "Questa tecnica di hacking è di solito usata con attacchi cross site "
1884
  "scripting (XSS)."
1885
 
1886
  # @ aiowpsecurity
1970
 
1971
  # @ aiowpsecurity
1972
  #: admin/wp-security-firewall-menu.php:430
1973
+ #: classes/grade-system/wp-security-feature-item-manager.php:94
1974
  msgid "Advanced Character String Filter"
1975
  msgstr "Filtro Avanzato Stringa Caratteri "
1976
 
2133
  msgstr "Salva Impostazioni 5G Firewall"
2134
 
2135
  # @ aiowpsecurity
2136
+ #: admin/wp-security-brute-force-menu.php:219
2137
  msgid ""
2138
  "Settings have not been saved - your secret word must consist only of "
2139
  "alphanumeric characters, ie, letters and/or numbers only!"
2142
  "composta solo da caratteri alfanumerici, cioè lettere e/o solo numeri!"
2143
 
2144
  # @ aiowpsecurity
2145
+ #: admin/wp-security-brute-force-menu.php:238
2146
  msgid ""
2147
  "You have successfully enabled the cookie based brute force prevention feature"
2148
  msgstr ""
2149
  "È stata attivata con successo la funzione di prevenzione base brute force"
2150
 
2151
  # @ aiowpsecurity
2152
+ #: admin/wp-security-brute-force-menu.php:239
2153
  msgid ""
2154
  "From now on you will need to log into your WP Admin using the following URL:"
2155
  msgstr ""
2156
  "Da ora in poi per accedere al pannello Admin WP dovrai usare il seguente URL:"
2157
 
2158
  # @ aiowpsecurity
2159
+ #: admin/wp-security-brute-force-menu.php:241
2160
  msgid ""
2161
  "It is important that you save this URL value somewhere in case you forget "
2162
  "it, OR,"
2165
  "O,"
2166
 
2167
  # @ aiowpsecurity
2168
+ #: admin/wp-security-brute-force-menu.php:242
2169
  #, php-format
2170
  msgid "simply remember to add a \"?%s=1\" to your current site URL address."
2171
  msgstr ""
2173
  "sito."
2174
 
2175
  # @ aiowpsecurity
2176
+ #: admin/wp-security-brute-force-menu.php:248
2177
  msgid ""
2178
  "You have successfully saved cookie based brute force prevention feature "
2179
  "settings."
2182
  "brute force."
2183
 
2184
  # @ aiowpsecurity
2185
+ #: admin/wp-security-brute-force-menu.php:293
2186
  msgid "Brute Force Prevention Firewall Settings"
2187
  msgstr "Impostazioni Prevenzione Brute Force Firewall"
2188
 
2189
  # @ aiowpsecurity
2190
+ #: admin/wp-security-brute-force-menu.php:298
2191
  msgid ""
2192
  "A Brute Force Attack is when a hacker tries many combinations of usernames "
2193
  "and passwords until they succeed in guessing the right combination."
2194
  msgstr ""
2195
  "Un attacco brute force è quando un hacker tenta molte combinazioni di nomi "
2196
+ "utente e password fino a quando non riesce a indovinare quella giusta."
2197
 
2198
  # @ aiowpsecurity
2199
+ #: admin/wp-security-brute-force-menu.php:299
2200
  msgid ""
2201
  "Due to the fact that at any one time there may be many concurrent login "
2202
  "attempts occurring on your site via malicious automated robots, this also "
2208
  "le prestazioni del server."
2209
 
2210
  # @ aiowpsecurity
2211
+ #: admin/wp-security-brute-force-menu.php:300
2212
  msgid ""
2213
  "The features in this tab will stop the majority of Brute Force Login Attacks "
2214
  "at the .htaccess level thus providing even better protection for your WP "
2222
  "tentativi di accesso."
2223
 
2224
  # @ aiowpsecurity
2225
+ #: admin/wp-security-brute-force-menu.php:307
2226
  #, php-format
2227
  msgid ""
2228
  "Even though this feature should not have any impact on your site's general "
2230
  "htaccess file before proceeding</strong>."
2231
  msgstr ""
2232
  "Anche se questa caratteristica non dovrebbe avere alcun impatto sulla "
2233
+ "funzionalità generale del tuo sito <strong> è vivamente consigliato fare un "
2234
  "%s del file .htaccess prima di procedere</strong>."
2235
 
2236
  # @ aiowpsecurity
2237
+ #: admin/wp-security-brute-force-menu.php:309
2238
  #, php-format
2239
  msgid ""
2240
  "To learn more about how to use this feature please watch the following %s."
2243
  "di guardare il seguente %s."
2244
 
2245
  # @ aiowpsecurity
2246
+ #: admin/wp-security-brute-force-menu.php:330
2247
  msgid "Cookie Based Brute Force Login Prevention"
2248
+ msgstr "Prevenzione Brute Force Login Basata su Cookie."
2249
 
2250
  # @ aiowpsecurity
2251
+ #: admin/wp-security-brute-force-menu.php:341
2252
+ #: classes/grade-system/wp-security-feature-item-manager.php:89
2253
  msgid "Enable Brute Force Attack Prevention"
2254
  msgstr "Abilita Prevenzione Attacchi Brute Force"
2255
 
2256
  # @ aiowpsecurity
2257
+ #: admin/wp-security-brute-force-menu.php:344
2258
  msgid ""
2259
  "Check this if you want to protect your login page from Brute Force Attack."
2260
  msgstr ""
2262
  "force."
2263
 
2264
  # @ aiowpsecurity
2265
+ #: admin/wp-security-brute-force-menu.php:349
2266
  msgid ""
2267
  "This feature will deny access to your WordPress login page for all people "
2268
  "except those who have a special cookie in their browser."
2271
  "le persone, tranne coloro che hanno un cookie speciale nel proprio browser."
2272
 
2273
  # @ aiowpsecurity
2274
+ #: admin/wp-security-brute-force-menu.php:351
2275
  msgid "To use this feature do the following:"
2276
  msgstr "Per utilizzare questa funzione, attenersi alla seguente procedura:"
2277
 
2278
  # @ aiowpsecurity
2279
+ #: admin/wp-security-brute-force-menu.php:353
2280
  msgid "1) Enable the checkbox."
2281
  msgstr "1) Attivare la casella di controllo."
2282
 
2283
  # @ aiowpsecurity
2284
+ #: admin/wp-security-brute-force-menu.php:355
2285
  msgid ""
2286
  "2) Enter a secret word consisting of alphanumeric characters which will be "
2287
  "difficult to guess. This secret word will be useful whenever you need to "
2294
  "login (vedi punto seguente)."
2295
 
2296
  # @ aiowpsecurity
2297
+ #: admin/wp-security-brute-force-menu.php:357
2298
  msgid ""
2299
  "3) You will then be provided with a special login URL. You will need to use "
2300
  "this URL to login to your WordPress site instead of the usual login URL. "
2307
  "accedere alla pagina di login di amministrazione WordPress."
2308
 
2309
  # @ aiowpsecurity
2310
+ #: admin/wp-security-brute-force-menu.php:359
2311
  msgid ""
2312
  "Any person trying to access your login page who does not have the special "
2313
  "cookie in their browser will be automatically blocked."
2316
  "cookie speciale nel browser viene bloccato automaticamente."
2317
 
2318
  # @ aiowpsecurity
2319
+ #: admin/wp-security-brute-force-menu.php:366
2320
  msgid "Secret Word"
2321
  msgstr "Parola Segreta"
2322
 
2323
  # @ aiowpsecurity
2324
+ #: admin/wp-security-brute-force-menu.php:368
2325
  msgid ""
2326
  "Choose a secret word consisting of alphanumeric characters which you can use "
2327
  "to access your special URL. Your are highly encouraged to choose a word "
2332
  "parola molto difficile da indovinare."
2333
 
2334
  # @ aiowpsecurity
2335
+ #: admin/wp-security-brute-force-menu.php:372
2336
  msgid "Re-direct URL"
2337
  msgstr "URL Re-direct"
2338
 
2339
  # @ aiowpsecurity
2340
+ #: admin/wp-security-brute-force-menu.php:376
2341
  msgid ""
2342
  "Specify a URL to redirect a hacker to when they try to access your WordPress "
2343
  "login page."
2346
  "pagina di login di WordPress"
2347
 
2348
  # @ aiowpsecurity
2349
+ #: admin/wp-security-brute-force-menu.php:383
2350
  msgid ""
2351
  "The URL specified here can be any site's URL and does not have to be your "
2352
  "own. For example you can be as creative as you like and send hackers to the "
2357
  "sito della polizia postale alla CIA o quello che preferisci."
2358
 
2359
  # @ aiowpsecurity
2360
+ #: admin/wp-security-brute-force-menu.php:385
2361
  msgid ""
2362
  "This field will default to: http://127.0.0.1 if you do not enter a value."
2363
  msgstr ""
2365
  "http://127.0.0.1"
2366
 
2367
  # @ aiowpsecurity
2368
+ #: admin/wp-security-brute-force-menu.php:387
2369
  msgid "Useful Tip:"
2370
  msgstr "Suggerimento utile:"
2371
 
2372
  # @ aiowpsecurity
2373
+ #: admin/wp-security-brute-force-menu.php:389
2374
  msgid ""
2375
  "It's a good idea to not redirect attempted brute force login attempts to "
2376
  "your site because it increases the load on your server."
2379
  "tuo sito, perché il carico sul server aumenta."
2380
 
2381
  # @ aiowpsecurity
2382
+ #: admin/wp-security-brute-force-menu.php:391
2383
  msgid ""
2384
  "Redirecting a hacker or malicious bot back to \"http://127.0.0.1\" is ideal "
2385
  "because it deflects them back to their own local host and puts the load on "
2390
  "server al posto del tuo."
2391
 
2392
  # @ aiowpsecurity
2393
+ #: admin/wp-security-brute-force-menu.php:398
2394
  msgid "My Site Has Posts Or Pages Which Are Password Protected"
2395
  msgstr "Il mio sito ha post o pagine che sono protetti da password"
2396
 
2397
  # @ aiowpsecurity
2398
+ #: admin/wp-security-brute-force-menu.php:401
2399
  msgid ""
2400
  "Check this if you are using the native WordPress password protection feature "
2401
  "for some or all of your blog posts or pages."
2404
  "password nativa di WordPress per alcuni o tutti i post/pagine del tuo blog."
2405
 
2406
  # @ aiowpsecurity
2407
+ #: admin/wp-security-brute-force-menu.php:406
2408
  msgid ""
2409
  "In the cases where you are protecting some of your posts or pages using the "
2410
  "in-built WordPress password protection feature, a few extra lines of "
2418
  "bloccate."
2419
 
2420
  # @ aiowpsecurity
2421
+ #: admin/wp-security-brute-force-menu.php:408
2422
  msgid ""
2423
  "By enabling this checkbox the plugin will add the necessary rules and "
2424
  "exceptions to your .htacces file so that people trying to access these pages "
2429
  "accedere a queste pagine non vengano automaticamente bloccate."
2430
 
2431
  # @ aiowpsecurity
2432
+ #: admin/wp-security-brute-force-menu.php:410
2433
  msgid "Helpful Tip:"
2434
  msgstr "Suggerimento utile:"
2435
 
2436
  # @ aiowpsecurity
2437
+ #: admin/wp-security-brute-force-menu.php:412
2438
  msgid ""
2439
  "If you do not use the WordPress password protection feature for your posts "
2440
  "or pages then it is highly recommended that you leave this checkbox disabled."
2444
  "casella di controllo disattivata."
2445
 
2446
  # @ aiowpsecurity
2447
+ #: admin/wp-security-brute-force-menu.php:419
2448
  msgid "My Site Has a Theme or Plugins Which Use AJAX"
2449
  msgstr "Il mio sito ha un tema o plugin che utilizzano AJAX"
2450
 
2451
  # @ aiowpsecurity
2452
+ #: admin/wp-security-brute-force-menu.php:422
2453
  msgid "Check this if your site uses AJAX functionality."
2454
  msgstr "Seleziona questa casella se il sito utilizza funzionalità AJAX."
2455
 
2456
  # @ aiowpsecurity
2457
+ #: admin/wp-security-brute-force-menu.php:427
2458
  msgid ""
2459
  "In the cases where your WordPress installation has a theme or plugins which "
2460
  "use AJAX, a few extra lines of directives and exceptions need to be added to "
2467
  "automaticamente dalla funzione di prevenzione brute force."
2468
 
2469
  # @ aiowpsecurity
2470
+ #: admin/wp-security-brute-force-menu.php:429
2471
  msgid ""
2472
  "By enabling this checkbox the plugin will add the necessary rules and "
2473
  "exceptions to your .htacces file so that AJAX operations will work as "
2478
  "come previsto."
2479
 
2480
  # @ aiowpsecurity
2481
+ #: admin/wp-security-brute-force-menu.php:444
2482
  msgid "The cookie test was successful. You can now enable this feature."
2483
  msgstr ""
2484
  "Il Test cookie ha avuto successo. Ora è possibile attivare questa funzione."
2485
 
2486
  # @ aiowpsecurity
2487
+ #: admin/wp-security-brute-force-menu.php:447
2488
  msgid "Save Feature Settings"
2489
  msgstr "Sala Impostazioni Caratteristiche"
2490
 
2491
  # @ aiowpsecurity
2492
+ #: admin/wp-security-brute-force-menu.php:454
2493
  msgid ""
2494
  "The cookie test failed on this server. So this feature cannot be used on "
2495
  "this site."
2498
  "può essere utilizzata in questo sito."
2499
 
2500
  # @ aiowpsecurity
2501
+ #: admin/wp-security-brute-force-menu.php:459
2502
  msgid ""
2503
  "Before using this feature you are required to perform a cookie test first. "
2504
  "This is to make sure that your browser cookie is working correctly and that "
2509
  "correttamente e non rischi di rimanere fuori."
2510
 
2511
  # @ aiowpsecurity
2512
+ #: admin/wp-security-brute-force-menu.php:461
2513
  msgid "Perform Cookie Test"
2514
  msgstr "Esegui Test Cookie"
2515
 
2666
  msgstr "Salva Impostazioni Blocco Sito"
2667
 
2668
  # @ aiowpsecurity
2669
+ #: admin/wp-security-settings-menu.php:26
2670
  msgid "General Settings"
2671
  msgstr "Impostazioni Generali"
2672
 
2673
  # @ aiowpsecurity
2674
+ #: admin/wp-security-settings-menu.php:29
2675
  msgid "WP Meta Info"
2676
  msgstr "Meta Info WP"
2677
 
2678
  # @ aiowpsecurity
2679
+ #: admin/wp-security-settings-menu.php:97
2680
  msgid "All the security features have been disabled successfully!"
2681
  msgstr ""
2682
  "Tutte le caratteristiche di sicurezza sono state disabilitate con successo!"
2683
 
2684
  # @ aiowpsecurity
2685
+ #: admin/wp-security-settings-menu.php:101
2686
+ #: admin/wp-security-settings-menu.php:128
2687
  msgid ""
2688
  "Could not write to the .htaccess file. Please restore your .htaccess file "
2689
  "manually using the restore functionality in the \".htaccess File\"."
2692
  "manualmente utilizzando la funzione di ripristino del \"File .htaccess\"."
2693
 
2694
  # @ aiowpsecurity
2695
+ #: admin/wp-security-settings-menu.php:106
2696
  msgid ""
2697
  "Could not write to the wp-config.php. Please restore your wp-config.php file "
2698
  "manually using the restore functionality in the \"wp-config.php File\"."
2702
  "config.php\"."
2703
 
2704
  # @ aiowpsecurity
2705
+ #: admin/wp-security-settings-menu.php:124
2706
  msgid "All firewall rules have been disabled successfully!"
2707
  msgstr "Tutte le regole del firewall sono state disabilitate con successo!"
2708
 
2709
  # @ aiowpsecurity
2710
+ #: admin/wp-security-settings-menu.php:138
2711
  msgid "WP Security Plugin"
2712
  msgstr "WP Plugin Sicurezza"
2713
 
2714
  # @ aiowpsecurity
2715
+ #: admin/wp-security-settings-menu.php:140
2716
  msgid ""
2717
  "Thank you for using our WordPress security plugin. There are a lot of "
2718
  "security features in this plugin."
2721
  "sacco di funzioni di sicurezza in questo plugin."
2722
 
2723
  # @ aiowpsecurity
2724
+ #: admin/wp-security-settings-menu.php:141
2725
  msgid ""
2726
  "Go through each menu items and enable the security options to add more "
2727
  "security to your site. Start by activating the basic features first."
2730
  "rendere più sicuro il tuo sito. Inizia attivando le funzionalità di Base."
2731
 
2732
  # @ aiowpsecurity
2733
+ #: admin/wp-security-settings-menu.php:142
2734
  msgid ""
2735
  "It is a good practice to take a backup of your .htaccess file, database and "
2736
  "wp-config.php file before activating the security features. This plugin has "
2742
  "facilmente."
2743
 
2744
  # @ aiowpsecurity
2745
+ #: admin/wp-security-settings-menu.php:145
2746
  msgid "Backup your database"
2747
  msgstr "Backup tuo database"
2748
 
2749
  # @ aiowpsecurity
2750
+ #: admin/wp-security-settings-menu.php:146
2751
  msgid "Backup .htaccess file"
2752
  msgstr "Backup file .htaccess"
2753
 
2754
  # @ aiowpsecurity
2755
+ #: admin/wp-security-settings-menu.php:147
2756
  msgid "Backup wp-config.php file"
2757
  msgstr "Backup file wp-config.php"
2758
 
2759
  # @ aiowpsecurity
2760
+ #: admin/wp-security-settings-menu.php:153
2761
  msgid "Disable Security Features"
2762
  msgstr "Disabilita Funzioni Sicurezza"
2763
 
2764
  # @ aiowpsecurity
2765
+ #: admin/wp-security-settings-menu.php:159
2766
  msgid ""
2767
  "If you think that some plugin functionality on your site is broken due to a "
2768
  "security feature you enabled in this plugin, then use the following option "
2773
  "seguente opzione per disattivare tutte le funzioni di sicurezza del plugin."
2774
 
2775
  # @ default
2776
+ #: admin/wp-security-settings-menu.php:163
2777
  msgid "Disable All Security Features"
2778
  msgstr "Disabilita Tutte le Funzioni di Sicurezza"
2779
 
2780
  # @ aiowpsecurity
2781
  # @ default
2782
+ #: admin/wp-security-settings-menu.php:169
2783
+ #: admin/wp-security-settings-menu.php:179
2784
  msgid "Disable All Firewall Rules"
2785
  msgstr "Disabilita Tutte le Regole del Firewall"
2786
 
2787
  # @ aiowpsecurity
2788
+ #: admin/wp-security-settings-menu.php:175
2789
  msgid ""
2790
  "This feature will disable all firewall rules which are currently active in "
2791
  "this plugin and it will also delete these rules from your .htacess file. Use "
2797
  "un problema sul tuo sito."
2798
 
2799
  # @ aiowpsecurity
2800
+ #: admin/wp-security-settings-menu.php:214
2801
  msgid ""
2802
  "htaccess file rename failed during backup. Please check your root directory "
2803
  "for the backup file using FTP."
2806
  "Verifica la tua root directory per il file di backup tramite FTP."
2807
 
2808
  # @ aiowpsecurity
2809
+ #: admin/wp-security-settings-menu.php:220
2810
  msgid "htaccess backup failed."
2811
  msgstr "backup .htaccess fallito"
2812
 
2813
  # @ aiowpsecurity
2814
+ #: admin/wp-security-settings-menu.php:235
2815
  msgid "Please choose a .htaccess to restore from."
2816
  msgstr "Seleziona un file .htaccess per il ripristino."
2817
 
2818
  # @ aiowpsecurity
2819
+ #: admin/wp-security-settings-menu.php:251
2820
  msgid ""
2821
  "htaccess file restore failed. Please attempt to restore the .htaccess "
2822
  "manually using FTP."
2825
  "l'.htaccess manualmente tramite FTP."
2826
 
2827
  # @ aiowpsecurity
2828
+ #: admin/wp-security-settings-menu.php:255
2829
  msgid "Your .htaccess file has successfully been restored!"
2830
  msgstr "Il tuo file .htaccess è stato ripristinato con successo!"
2831
 
2832
  # @ aiowpsecurity
2833
+ #: admin/wp-security-settings-menu.php:261
2834
  msgid ""
2835
  "htaccess Restore operation failed! Please check the contents of the file you "
2836
  "are trying to restore from."
2839
  "contenuto del file che si sta tentando di ripristinare da"
2840
 
2841
  # @ aiowpsecurity
2842
+ #: admin/wp-security-settings-menu.php:267
2843
  msgid ".htaccess File Operations"
2844
  msgstr "Operazioni File .htaccess"
2845
 
2846
  # @ aiowpsecurity
2847
+ #: admin/wp-security-settings-menu.php:270
2848
  msgid ""
2849
  "Your \".htaccess\" file is a key component of your website's security and it "
2850
  "can be modified to implement various levels of protection mechanisms."
2854
  "di protezione."
2855
 
2856
  # @ aiowpsecurity
2857
+ #: admin/wp-security-settings-menu.php:271
2858
  msgid ""
2859
  "This feature allows you to backup and save your currently active .htaccess "
2860
  "file should you need to re-use the the backed up file in the future."
2864
  "futuro."
2865
 
2866
  # @ aiowpsecurity
2867
+ #: admin/wp-security-settings-menu.php:272
2868
  msgid ""
2869
  "You can also restore your site's .htaccess settings using a backed up ."
2870
  "htaccess file."
2871
  msgstr ""
2872
  "È inoltre possibile ripristinare le impostazioni .htaccess del tuo sito "
2873
+ "utilizzando un file .htaccess di cui hai eseguito il backup."
2874
 
2875
  # @ aiowpsecurity
2876
+ #: admin/wp-security-settings-menu.php:286
2877
  msgid "Save the current .htaccess file"
2878
  msgstr "Salva il file .htaccess attuale"
2879
 
2880
  # @ aiowpsecurity
2881
+ #: admin/wp-security-settings-menu.php:290
2882
  msgid ""
2883
  "Click the button below to backup and save the currently active .htaccess "
2884
  "file."
2885
  msgstr ""
2886
+ "Clicca sul bottone qui sotto per eseguire il backup e salvare il file ."
2887
  "htaccess attualmente attivo."
2888
 
2889
  # @ aiowpsecurity
2890
+ #: admin/wp-security-settings-menu.php:291
2891
  msgid "Backup .htaccess File"
2892
  msgstr "Backup File .htaccess"
2893
 
2894
  # @ aiowpsecurity
2895
+ #: admin/wp-security-settings-menu.php:295
2896
  msgid "Restore from a backed up .htaccess file"
2897
  msgstr "Ripristina da un file di backup .htaccess"
2898
 
2899
  # @ aiowpsecurity
2900
+ #: admin/wp-security-settings-menu.php:301
2901
  msgid ".htaccess file to restore from"
2902
  msgstr "ripristina file .htaccess da"
2903
 
2904
  # @ aiowpsecurity
2905
+ #: admin/wp-security-settings-menu.php:307
2906
  msgid ""
2907
  "After selecting your file, click the button below to restore your site using "
2908
  "the backed up htaccess file (htaccess_backup.txt)."
2909
  msgstr ""
2910
+ "Dopo aver selezionato il file, clicca sul pulsante qui sotto per "
2911
  "ripristinare il sito utilizzando il backup del file htaccess "
2912
  "(htaccess_backup.txt)."
2913
 
2914
  # @ aiowpsecurity
2915
+ #: admin/wp-security-settings-menu.php:313
2916
  msgid "Restore .htaccess File"
2917
  msgstr "Ripristina File .htaccess"
2918
 
2919
  # @ aiowpsecurity
2920
+ #: admin/wp-security-settings-menu.php:317
2921
  msgid "View Contents of the currently active .htaccess file"
2922
  msgstr "Vedi il contenuto del file .htaccess attualmente attivo"
2923
 
2924
  # @ aiowpsecurity
2925
+ #: admin/wp-security-settings-menu.php:346
2926
  msgid "Please choose a wp-config.php file to restore from."
2927
  msgstr "Prego scegli il file wp-config.php da ripristinare"
2928
 
2929
  # @ aiowpsecurity
2930
+ #: admin/wp-security-settings-menu.php:362
2931
  msgid ""
2932
  "wp-config.php file restore failed. Please attempt to restore this file "
2933
  "manually using FTP."
2936
  "file manualmente tramite FTP."
2937
 
2938
  # @ aiowpsecurity
2939
+ #: admin/wp-security-settings-menu.php:366
2940
  msgid "Your wp-config.php file has successfully been restored!"
2941
  msgstr "Il tuo file wp-config.php è stato ripristinato con successo!"
2942
 
2943
  # @ aiowpsecurity
2944
+ #: admin/wp-security-settings-menu.php:372
2945
  msgid ""
2946
  "wp-config.php Restore operation failed! Please check the contents of the "
2947
  "file you are trying to restore from."
2950
  "che stai tentando di ripristinare da."
2951
 
2952
  # @ aiowpsecurity
2953
+ #: admin/wp-security-settings-menu.php:378
2954
  msgid "wp-config.php File Operations"
2955
  msgstr "Operazioni File wp-config.php"
2956
 
2957
  # @ aiowpsecurity
2958
+ #: admin/wp-security-settings-menu.php:381
2959
  msgid ""
2960
  "Your \"wp-config.php\" file is one of the most important in your WordPress "
2961
  "installation. It is a primary configuration file and contains crucial things "
2966
  "fondamentali come i dettagli del database e altri componenti critici."
2967
 
2968
  # @ aiowpsecurity
2969
+ #: admin/wp-security-settings-menu.php:382
2970
  msgid ""
2971
  "This feature allows you to backup and save your currently active wp-config."
2972
  "php file should you need to re-use the the backed up file in the future."
2976
  "backup in futuro."
2977
 
2978
  # @ aiowpsecurity
2979
+ #: admin/wp-security-settings-menu.php:383
2980
  msgid ""
2981
  "You can also restore your site's wp-config.php settings using a backed up wp-"
2982
  "config.php file."
2985
  "sito utilizzando un file wp-config.php di cui hai fatto il backup."
2986
 
2987
  # @ aiowpsecurity
2988
+ #: admin/wp-security-settings-menu.php:397
2989
  msgid "Save the current wp-config.php file"
2990
  msgstr "Salva il file wp-config.php corrente"
2991
 
2992
  # @ aiowpsecurity
2993
+ #: admin/wp-security-settings-menu.php:401
2994
  msgid ""
2995
  "Click the button below to backup and download the contents of the currently "
2996
  "active wp-config.php file."
2999
  "config.php attualmente attivo."
3000
 
3001
  # @ aiowpsecurity
3002
+ #: admin/wp-security-settings-menu.php:402
3003
  msgid "Backup wp-config.php File"
3004
  msgstr "Backup File wp-config.php"
3005
 
3006
  # @ aiowpsecurity
3007
+ #: admin/wp-security-settings-menu.php:407
3008
  msgid "Restore from a backed up wp-config file"
3009
  msgstr "Ripristina file wp-config.php da un backup"
3010
 
3011
  # @ aiowpsecurity
3012
+ #: admin/wp-security-settings-menu.php:413
3013
  msgid "wp-config file to restore from"
3014
  msgstr "ripristino file wp-config.php da"
3015
 
3016
  # @ aiowpsecurity
3017
+ #: admin/wp-security-settings-menu.php:419
3018
  msgid ""
3019
  "After selecting your file click the button below to restore your site using "
3020
  "the backed up wp-config file (wp-config.php.backup.txt)."
3021
  msgstr ""
3022
+ "Dopo aver selezionato il file clicca sul pulsante qui sotto per ripristinare "
3023
+ "il sito utilizzando il backup di file wp-config (wp-config.php.backup.txt)."
 
3024
 
3025
  # @ aiowpsecurity
3026
+ #: admin/wp-security-settings-menu.php:425
3027
  msgid "Restore wp-config File"
3028
  msgstr "Ripristina File wp-config.php"
3029
 
3030
  # @ aiowpsecurity
3031
+ #: admin/wp-security-settings-menu.php:429
3032
  msgid "View Contents of the currently active wp-config.php file"
3033
  msgstr "Vedi il contenuto dell'attuale file wp-config.php"
3034
 
3035
  # @ aiowpsecurity
3036
+ #: admin/wp-security-settings-menu.php:464
3037
  msgid "WP Generator Meta Tag"
3038
  msgstr "Generatore WP Meta Tag"
3039
 
3040
  # @ aiowpsecurity
3041
+ #: admin/wp-security-settings-menu.php:467
3042
  msgid ""
3043
  "Wordpress generator automatically adds some meta information inside the "
3044
  "\"head\" tags of every page on your site's front end. Below is an example of "
3049
  "seguito è riportato un esempio di questo:"
3050
 
3051
  # @ aiowpsecurity
3052
+ #: admin/wp-security-settings-menu.php:469
3053
  msgid ""
3054
  "The above meta information shows which version of WordPress your site is "
3055
  "currently running and thus can help hackers or crawlers scan your site to "
3061
  "WordPress."
3062
 
3063
  # @ aiowpsecurity
3064
+ #: admin/wp-security-settings-menu.php:470
3065
  msgid ""
3066
  "This feature will allow you to remove the WP generator meta info from your "
3067
  "site's pages."
3070
  "dalle pagine del tuo sito."
3071
 
3072
  # @ aiowpsecurity
3073
+ #: admin/wp-security-settings-menu.php:476
3074
  msgid "WP Generator Meta Info"
3075
  msgstr "Generatore Meta Info WP"
3076
 
3077
  # @ aiowpsecurity
3078
+ #: admin/wp-security-settings-menu.php:488
3079
  msgid "Remove WP Generator Meta Info"
3080
  msgstr "Rimuovi Generatore Meta Info WP"
3081
 
3082
  # @ aiowpsecurity
3083
+ #: admin/wp-security-settings-menu.php:491
3084
  msgid ""
3085
  "Check this if you want to remove the meta info produced by WP Generator from "
3086
  "all pages"
3089
  "generatore WP su tutte le pagine"
3090
 
3091
  # @ aiowpsecurity
3092
+ #: admin/wp-security-spam-menu.php:24
3093
  msgid "Comment SPAM"
3094
  msgstr "Commenti SPAM"
3095
 
3096
  # @ aiowpsecurity
3097
+ #: admin/wp-security-spam-menu.php:25
3098
  msgid "Comment SPAM IP Monitoring"
3099
  msgstr "Monitoraggio IP Commenti SPAM"
3100
 
3101
  # @ aiowpsecurity
3102
+ #: admin/wp-security-spam-menu.php:113
3103
  msgid "Comment SPAM Settings"
3104
  msgstr "Impostazione Commenti SPAM"
3105
 
3106
  # @ aiowpsecurity
3107
+ #: admin/wp-security-spam-menu.php:118
3108
  msgid "Add Captcha To Comments Form"
3109
  msgstr "Aggiungi Captcha al Modulo Commenti"
3110
 
3111
  # @ aiowpsecurity
3112
+ #: admin/wp-security-spam-menu.php:122
3113
  msgid ""
3114
  "This feature will add a simple math captcha field in the WordPress comments "
3115
  "form."
3118
  "commenti WordPress."
3119
 
3120
  # @ aiowpsecurity
3121
+ #: admin/wp-security-spam-menu.php:132
3122
  msgid "Enable Captcha On Comment Forms"
3123
  msgstr "Attiva Captcha nel Modulo Commenti"
3124
 
3125
  # @ aiowpsecurity
3126
+ #: admin/wp-security-spam-menu.php:135
3127
  msgid "Check this if you want to insert a captcha field on the comment forms"
3128
  msgstr ""
3129
  "Seleziona questo se desideri inserire un campo captcha nel modulo commenti"
3130
 
3131
  # @ aiowpsecurity
3132
+ #: admin/wp-security-spam-menu.php:142
3133
  msgid "Block Spambot Comments"
3134
  msgstr "Blocca Commenti Spambot"
3135
 
3136
  # @ aiowpsecurity
3137
+ #: admin/wp-security-spam-menu.php:146
3138
  msgid ""
3139
  "A large portion of WordPress blog comment SPAM is mainly produced by "
3140
  "automated bots and not necessarily by humans. "
3143
  "principalmente da bot automatici e non necessariamente da esseri umani."
3144
 
3145
  # @ aiowpsecurity
3146
+ #: admin/wp-security-spam-menu.php:147
3147
  msgid ""
3148
  "This feature will greatly minimize the useless and unecessary traffic and "
3149
  "load on your server resulting from SPAM comments by blocking all comment "
3154
  "commento che non hanno origine dal proprio dominio."
3155
 
3156
  # @ aiowpsecurity
3157
+ #: admin/wp-security-spam-menu.php:164
3158
  msgid "Block Spambots From Posting Comments"
3159
  msgstr "Impedisci che Spambots possano pubblicare commenti"
3160
 
3161
  # @ aiowpsecurity
3162
+ #: admin/wp-security-spam-menu.php:167
3163
  msgid ""
3164
  "Check this if you want to apply a firewall rule which will block comments "
3165
  "originating from spambots."
3168
  "commenti provenienti da spambot."
3169
 
3170
  # @ aiowpsecurity
3171
+ #: admin/wp-security-spam-menu.php:171
3172
  msgid ""
3173
  "This feature will implement a firewall rule to block all comment attempts "
3174
  "which do not originate from your domain."
3177
  "i tentativi di commento che non hanno origine dal proprio dominio."
3178
 
3179
  # @ aiowpsecurity
3180
+ #: admin/wp-security-spam-menu.php:172
3181
  msgid ""
3182
  "A legitimate comment is one which is submitted by a human who physically "
3183
  "fills out the comment form and clicks the submit button. For such events, "
3188
  "eventi, il HTTP_REFERRER è sempre impostato per il proprio dominio."
3189
 
3190
  # @ aiowpsecurity
3191
+ #: admin/wp-security-spam-menu.php:173
3192
  msgid ""
3193
  "A comment submitted by a spambot is done by directly calling the comments."
3194
  "php file, which usually means that the HTTP_REFERRER value is not your "
3199
  "il vostro dominio e spesso vuoto."
3200
 
3201
  # @ aiowpsecurity
3202
+ #: admin/wp-security-spam-menu.php:174
3203
  msgid ""
3204
  "This feature will check and block comment requests which are not referred by "
3205
  "your domain thus greatly reducing your overall blog SPAM and PHP requests "
3210
  "richieste PHP fatte dal server per elaborare questi commenti."
3211
 
3212
  # @ aiowpsecurity
3213
+ #: admin/wp-security-spam-menu.php:201
3214
  msgid "Nonce check failed for list SPAM comment IPs!"
3215
  msgstr "Check non riuscito per la lista IP spam Commenti!"
3216
 
3217
  # @ aiowpsecurity
3218
+ #: admin/wp-security-spam-menu.php:207
3219
  msgid ""
3220
  "You entered a non numeric value for the minimum SPAM comments per IP field. "
3221
  "It has been set to the default value."
3224
  "campo IP. E 'stato impostato il valore di default."
3225
 
3226
  # @ aiowpsecurity
3227
+ #: admin/wp-security-spam-menu.php:219
3228
  #, php-format
3229
  msgid ""
3230
  "Displaying results for IP addresses which have posted a minimum of %s SPAM "
3234
  "minimo di %s commenti spam"
3235
 
3236
  # @ aiowpsecurity
3237
+ #: admin/wp-security-spam-menu.php:235
3238
  msgid ""
3239
  "This tab displays a list of the IP addresses of the people or bots who have "
3240
  "left SPAM comments on your site."
3243
  "che hanno lasciato commenti di spam sul tuo sito."
3244
 
3245
  # @ aiowpsecurity
3246
+ #: admin/wp-security-spam-menu.php:236
3247
  msgid ""
3248
  "This information can be handy for identifying the most persistent IP "
3249
  "addresses or ranges used by spammers."
3252
  "intervalli IP, più persistenti dagli spammer."
3253
 
3254
  # @ aiowpsecurity
3255
+ #: admin/wp-security-spam-menu.php:237
3256
  msgid ""
3257
  "By inspecting the IP address data coming from spammers you will be in a "
3258
  "better position to determine which addresses or address ranges you should "
3263
  "indirizzi si dovrebbe bloccare aggiungendoli alla lista nera."
3264
 
3265
  # @ aiowpsecurity
3266
+ #: admin/wp-security-spam-menu.php:238
3267
  msgid ""
3268
  "To add one or more of the IP addresses displayed in the table below to your "
3269
  "blacklist, simply click the \"Block\" link for the individual row or select "
3271
  " using the checkboxes and then choose the \"block"
3272
  "\" option from the Bulk Actions dropdown list and click the \"Apply\" button."
3273
  msgstr ""
3274
+ "Per aggiungere uno o più indirizzi IP visualizzati nella tabella di seguito, "
3275
+ "alla tua lista nera, è sufficiente cliccare sul collegamento \"Block\" per "
3276
+ "la singola riga o selezionare più di un indirizzo \n"
3277
  " utilizzando le caselle di controllo e quindi "
3278
  "scegliere l'opzione dal menu a discesa Azioni in blocco \"block\" e fare "
3279
  "clic sul pulsante \"Applica\"."
3280
 
3281
  # @ aiowpsecurity
3282
+ #: admin/wp-security-spam-menu.php:244
3283
  msgid "List SPAMMER IP Addresses"
3284
  msgstr "Lista indirizzi IP SPAMMER"
3285
 
3286
  # @ aiowpsecurity
3287
+ #: admin/wp-security-spam-menu.php:250
3288
  msgid "Minimum number of SPAM comments per IP"
3289
  msgstr "Numero minimo di commenti spam per IP"
3290
 
3291
  # @ aiowpsecurity
3292
+ #: admin/wp-security-spam-menu.php:252
3293
  msgid ""
3294
  "This field allows you to list only those IP addresses which have been used "
3295
  "to post X or more SPAM comments."
3298
  "utilizzati per pubblicare X o più commenti spam."
3299
 
3300
  # @ aiowpsecurity
3301
+ #: admin/wp-security-spam-menu.php:256
3302
  msgid ""
3303
  "Example 1: Setting this value to \"0\" or \"1\" will list ALL IP addresses "
3304
  "which were used to submit SPAM comments."
3307
  "gli indirizzi IP che sono stati utilizzati per inviare commenti spam."
3308
 
3309
  # @ aiowpsecurity
3310
+ #: admin/wp-security-spam-menu.php:257
3311
  msgid ""
3312
  "Example 2: Setting this value to \"5\" will list only those IP addresses "
3313
  "which were used to submit 5 SPAM comments or more on your site."
3316
  "usati per creare almeno 5 commenti SPAM o più sul tuo sito."
3317
 
3318
  # @ aiowpsecurity
3319
+ #: admin/wp-security-spam-menu.php:264
3320
  msgid "Find IP Addresses"
3321
  msgstr "Trova Indirizzo IP"
3322
 
3323
  # @ aiowpsecurity
3324
+ #: admin/wp-security-spam-menu.php:268
3325
  msgid "SPAMMER IP Address Results"
3326
  msgstr "Risultato Indirizzi IP SPAMMER"
3327
 
3328
  # @ aiowpsecurity
3329
+ #: admin/wp-security-spam-menu.php:274 classes/wp-security-utility.php:150
3330
  msgid ""
3331
  "The plugin has detected that you are using a Multi-Site WordPress "
3332
  "installation."
3335
  "Site."
3336
 
3337
  # @ aiowpsecurity
3338
+ #: admin/wp-security-spam-menu.php:275
3339
  msgid "Only the \"superadmin\" can block IP addresses from the main site."
3340
  msgstr ""
3341
  "Solo il \"superadmin\" può bloccare gli indirizzi IP dal sito principale."
3342
 
3343
  # @ aiowpsecurity
3344
+ #: admin/wp-security-spam-menu.php:276
3345
  msgid ""
3346
  "Take note of the IP addresses you want blocked and ask the superadmin to add "
3347
  "these to the blacklist using the \"Blacklist Manager\" on the main site."
3684
  msgstr "Nome Login Account"
3685
 
3686
  # @ aiowpsecurity
3687
+ #: admin/wp-security-brute-force-menu.php:28
3688
  #: classes/grade-system/wp-security-feature-item-manager.php:44
3689
  msgid "Login Captcha"
3690
  msgstr "Captcha Pagina Login"
3691
 
3692
  # @ aiowpsecurity
3693
+ #: admin/wp-security-brute-force-menu.php:29
3694
+ #: admin/wp-security-brute-force-menu.php:617
3695
  msgid "Login Whitelist"
3696
  msgstr "Lista Bianca Login"
3697
 
3803
  "Check this if you want to enable the login lockdown feature and apply the "
3804
  "settings below"
3805
  msgstr ""
3806
+ "Seleziona questa casella per attivare la funzione di blocco accesso e "
3807
  "applicare le seguenti impostazioni"
3808
 
3809
  # @ aiowpsecurity
3873
  "Check this if you want to instantly lockout login attempts with usernames "
3874
  "which do not exist on your system"
3875
  msgstr ""
3876
+ "Seleziona questa casella se vuoi bloccare istantaneamente i tentativi di "
3877
  "accesso con nomi utente che non esistono sul tuo sistema"
3878
 
3879
  # @ aiowpsecurity
3896
  msgstr " Intervalli di indirizzi IP attualmente bloccati"
3897
 
3898
  # @ aiowpsecurity
3899
+ #: admin/wp-security-brute-force-menu.php:500
3900
  msgid ""
3901
  "This feature allows you to add a captcha form on the WordPress login page."
3902
  msgstr ""
3903
+ "Seleziona questo se desideri inserire un campo captcha nella pagina di Login "
3904
  "WordPress"
3905
 
3906
  # @ aiowpsecurity
3907
+ #: admin/wp-security-brute-force-menu.php:501
3908
  msgid ""
3909
  "Users who attempt to login will also need to enter the answer to a simple "
3910
  "mathematical question - if they enter the wrong answer, the plugin will not "
3915
  "non permetterà l'accesso anche se il nome utente e la password sono corretti."
3916
 
3917
  # @ aiowpsecurity
3918
+ #: admin/wp-security-brute-force-menu.php:502
3919
  msgid ""
3920
  "Therefore, adding a captcha form on the login page is another effective yet "
3921
  "simple \"Brute Force\" prevention technique."
3924
  "efficace ma semplice metodo di prevenzione \"Brute Force\"."
3925
 
3926
  # @ aiowpsecurity
3927
+ #: admin/wp-security-brute-force-menu.php:508
3928
  msgid "Login Form Captcha Settings"
3929
  msgstr "Impostazioni Modulo Captcha pagina di Login"
3930
 
3931
  # @ aiowpsecurity
3932
+ #: admin/wp-security-brute-force-menu.php:519
3933
  msgid "Enable Captcha On Login Page"
3934
  msgstr "Attiva Captcha sulla Pagina di Login"
3935
 
3936
  # @ aiowpsecurity
3937
+ #: admin/wp-security-brute-force-menu.php:522
3938
  msgid "Check this if you want to insert a captcha form on the login page"
3939
  msgstr ""
3940
+ "Seleziona questa casella se desideri inserire un campo captcha nel modulo "
3941
+ "della pagina di login"
3942
 
3943
  # @ aiowpsecurity
3944
+ #: admin/wp-security-brute-force-menu.php:528
3945
  msgid "Lost Password Form Captcha Settings"
3946
  msgstr "Impostazioni Modulo Captcha Password persa "
3947
 
3948
  # @ aiowpsecurity
3949
+ #: admin/wp-security-brute-force-menu.php:538
3950
  msgid "Enable Captcha On Lost Password Page"
3951
  msgstr "Attiva Captcha nella Pagina Password Persa"
3952
 
3953
  # @ aiowpsecurity
3954
+ #: admin/wp-security-brute-force-menu.php:541
3955
  msgid ""
3956
  "Check this if you want to insert a captcha form on the lost password page"
3957
  msgstr ""
3958
+ "Seleziona questa casella se desideri inserire un campo captcha nel modulo "
3959
+ "della password persa"
3960
 
3961
  # @ aiowpsecurity
3962
+ #: admin/wp-security-brute-force-menu.php:563
3963
  msgid "Nonce check failed for save whitelist settings!"
3964
  msgstr "Verifica fallita per salvare le impostazioni whitelist!"
3965
 
3966
  # @ aiowpsecurity
3967
+ #: admin/wp-security-brute-force-menu.php:620
3968
  msgid ""
3969
  "The All In One WP Security Whitelist feature gives you the option of only "
3970
  "allowing certain IP addresses or ranges to have access to your WordPress "
3971
  "login page."
3972
  msgstr ""
3973
+ "La caratteristica Whitelist ti dà la possibilità di autorizzare solo "
3974
+ "determinati indirizzi IP, o intervalli, ad accedere alla pagina login di "
3975
+ "WordPress."
3976
 
3977
  # @ aiowpsecurity
3978
+ #: admin/wp-security-brute-force-menu.php:621
3979
  msgid ""
3980
  "This feature will deny login access for all IP addresses which are not in "
3981
  "your whitelist as configured in the settings below."
3984
  "sono nella tua lista bianca come configurato nelle impostazioni di seguito."
3985
 
3986
  # @ aiowpsecurity
3987
+ #: admin/wp-security-brute-force-menu.php:622
3988
  msgid ""
3989
  "The plugin achieves this by writing the appropriate directives to your ."
3990
  "htaccess file."
3992
  "Il plugin realizza questo, facendo le opportune modifiche al file .htaccess."
3993
 
3994
  # @ aiowpsecurity
3995
+ #: admin/wp-security-brute-force-menu.php:623
3996
  msgid ""
3997
  "By allowing/blocking IP addresses via the .htaccess file your are using the "
3998
  "most secure first line of defence because login access will only be granted "
4000
  "they try to access your login page."
4001
  msgstr ""
4002
  "Consentendo/bloccando gli indirizzi IP tramite il file .htaccess si sta "
4003
+ "usando la linea di difesa più sicura, perché l'accesso al login sarà "
4004
  "concesso solo agli indirizzi IP nella whitelist e gli altri indirizzi "
4005
  "verranno bloccati non appena tentano di accedere alla pagina di login."
4006
 
4007
  # @ aiowpsecurity
4008
+ #: admin/wp-security-brute-force-menu.php:630
4009
  #, php-format
4010
  msgid ""
4011
  "Attention: If in addition to enabling the white list feature, you also have "
4013
  "in the URL when trying to access your WordPress login page</strong>."
4014
  msgstr ""
4015
  "Attenzione: Se oltre ad abilitare la funzione lista bianca, si ha anche la "
4016
+ "funzione %s attivata,<strong>sarà comunque necessario utilizzare la tua "
4017
  "parola segreta nell'URL quando si cerca di accedere alla pagina di login di "
4018
  "WordPress</strong>."
4019
 
4020
  # @ aiowpsecurity
4021
+ #: admin/wp-security-brute-force-menu.php:631
4022
  msgid ""
4023
  "These features are NOT functionally related. Having both of them enabled on "
4024
  "your site means you are creating 2 layers of security."
4027
  "entrambe sul sito si creano due livelli di sicurezza."
4028
 
4029
  # @ aiowpsecurity
4030
+ #: admin/wp-security-brute-force-menu.php:636
4031
  msgid "Login IP Whitelist Settings"
4032
  msgstr "Login Configurazione Whitelist IP"
4033
 
4034
  # @ aiowpsecurity
4035
+ #: admin/wp-security-brute-force-menu.php:647
4036
  msgid "Enable IP Whitelisting"
4037
  msgstr "Attiva IP Whitelisting"
4038
 
4039
  # @ aiowpsecurity
4040
+ #: admin/wp-security-brute-force-menu.php:650
4041
  msgid ""
4042
  "Check this if you want to enable the whitelisting of selected IP addresses "
4043
  "specified in the settings below"
4044
  msgstr ""
4045
+ "Seleziona questa casella se vuoi attivare la whitelist di indirizzi IP "
4046
+ "selezionati specificati nelle impostazioni di seguito"
4047
 
4048
  # @ aiowpsecurity
4049
+ #: admin/wp-security-brute-force-menu.php:654
4050
  msgid "Your Current IP Address"
4051
  msgstr "Il Tuo Indirizzo IP Attuale"
4052
 
4053
  # @ aiowpsecurity
4054
+ #: admin/wp-security-brute-force-menu.php:657
4055
  msgid ""
4056
  "You can copy and paste this address in the text box below if you want to "
4057
  "include it in your login whitelist."
4060
  "sottostante, se desideri includerlo nella tua lista bianca login."
4061
 
4062
  # @ aiowpsecurity
4063
+ #: admin/wp-security-brute-force-menu.php:661
4064
  msgid "Enter Whitelisted IP Addresses:"
4065
  msgstr "Inserisci Indirizzi IP Whitelisted:"
4066
 
4067
  # @ aiowpsecurity
4068
+ #: admin/wp-security-brute-force-menu.php:665
4069
  msgid ""
4070
  "Enter one or more IP addresses or IP ranges you wish to include in your "
4071
  "whitelist. Only the addresses specified here will have access to the "
4170
  "Check this if you want to force a wp user to be logged out after a "
4171
  "configured amount of time"
4172
  msgstr ""
4173
+ "Seleziona questa casella se vuoi forzare un utente wp a ri-autenticarsi dopo "
4174
+ "un periodo di tempo scelto"
4175
 
4176
  # @ aiowpsecurity
4177
  #: admin/wp-security-user-login-menu.php:401
4365
  msgstr "Impostazioni Captcha Pagina Registrazione"
4366
 
4367
  # @ aiowpsecurity
4368
+ #: admin/wp-security-user-registration-menu.php:225
4369
  msgid "Enable Captcha On Registration Page"
4370
  msgstr "Attiva Captcha nella Pagina di Registrazione"
4371
 
4372
  # @ aiowpsecurity
4373
+ #: admin/wp-security-user-registration-menu.php:228
4374
  msgid ""
4375
  "Check this if you want to insert a captcha form on the WordPress user "
4376
  "registration page (if you allow user registration)."
4500
  msgstr "generati su"
4501
 
4502
  # @ aiowpsecurity
4503
+ #: classes/wp-security-captcha.php:17
4504
  msgid "Please enter an answer in digits:"
4505
  msgstr "Inserisci una risposta in cifre:"
4506
 
4507
  # @ aiowpsecurity
4508
+ #: classes/wp-security-captcha.php:96
4509
  msgid "one"
4510
  msgstr "uno"
4511
 
4512
  # @ aiowpsecurity
4513
+ #: classes/wp-security-captcha.php:97
4514
  msgid "two"
4515
  msgstr "due"
4516
 
4517
  # @ aiowpsecurity
4518
+ #: classes/wp-security-captcha.php:98
4519
  msgid "three"
4520
  msgstr "tre"
4521
 
4522
  # @ aiowpsecurity
4523
+ #: classes/wp-security-captcha.php:99
4524
  msgid "four"
4525
  msgstr "quattro"
4526
 
4527
  # @ aiowpsecurity
4528
+ #: classes/wp-security-captcha.php:100
4529
  msgid "five"
4530
  msgstr "cinque"
4531
 
4532
  # @ aiowpsecurity
4533
+ #: classes/wp-security-captcha.php:101
4534
  msgid "six"
4535
  msgstr "sei"
4536
 
4537
  # @ aiowpsecurity
4538
+ #: classes/wp-security-captcha.php:102
4539
  msgid "seven"
4540
  msgstr "sette"
4541
 
4542
  # @ aiowpsecurity
4543
+ #: classes/wp-security-captcha.php:103
4544
  msgid "eight"
4545
  msgstr "otto"
4546
 
4547
  # @ aiowpsecurity
4548
+ #: classes/wp-security-captcha.php:104
4549
  msgid "nine"
4550
  msgstr "nove"
4551
 
4552
  # @ aiowpsecurity
4553
+ #: classes/wp-security-captcha.php:105
4554
  msgid "ten"
4555
  msgstr "dieci"
4556
 
4557
  # @ aiowpsecurity
4558
+ #: classes/wp-security-captcha.php:106
4559
  msgid "eleven"
4560
  msgstr "undici"
4561
 
4562
  # @ aiowpsecurity
4563
+ #: classes/wp-security-captcha.php:107
4564
  msgid "twelve"
4565
  msgstr "dodici"
4566
 
4567
  # @ aiowpsecurity
4568
+ #: classes/wp-security-captcha.php:108
4569
  msgid "thirteen"
4570
  msgstr "tredici"
4571
 
4572
  # @ aiowpsecurity
4573
+ #: classes/wp-security-captcha.php:109
4574
  msgid "fourteen"
4575
  msgstr "quattordici"
4576
 
4577
  # @ aiowpsecurity
4578
+ #: classes/wp-security-captcha.php:110
4579
  msgid "fifteen"
4580
  msgstr "quindici"
4581
 
4582
  # @ aiowpsecurity
4583
+ #: classes/wp-security-captcha.php:111
4584
  msgid "sixteen"
4585
  msgstr "sedici"
4586
 
4587
  # @ aiowpsecurity
4588
+ #: classes/wp-security-captcha.php:112
4589
  msgid "seventeen"
4590
  msgstr "diciassette"
4591
 
4592
  # @ aiowpsecurity
4593
+ #: classes/wp-security-captcha.php:113
4594
  msgid "eighteen"
4595
  msgstr "diciotto"
4596
 
4597
  # @ aiowpsecurity
4598
+ #: classes/wp-security-captcha.php:114
4599
  msgid "nineteen"
4600
  msgstr "diciannove"
4601
 
4602
  # @ aiowpsecurity
4603
+ #: classes/wp-security-captcha.php:115
4604
  msgid "twenty"
4605
  msgstr "venti"
4606
 
4625
  msgstr "Accedi al sito per visualizzare i dettagli di scansione."
4626
 
4627
  # @ aiowpsecurity
4628
+ #: classes/wp-security-general-init-tasks.php:279
4629
  msgid "Please enter an answer in the CAPTCHA field."
4630
  msgstr "Inserisci una risposta nel campo CAPTCHA."
4631
 
4632
  # @ aiowpsecurity
4633
+ #: classes/wp-security-general-init-tasks.php:289
4634
  msgid ""
4635
  "Error: You entered an incorrect CAPTCHA answer. Please go back and try again."
4636
  msgstr "Errore: Hai inserito una risposta CAPTCHA sbagliata. Prova di nuovo."
4637
 
4638
  # @ aiowpsecurity
4639
+ #: classes/wp-security-general-init-tasks.php:239
4640
+ #: classes/wp-security-general-init-tasks.php:317
4641
+ #: classes/wp-security-user-login.php:69 classes/wp-security-user-login.php:72
4642
+ #: classes/wp-security-user-registration.php:61
4643
  msgid "<strong>ERROR</strong>: Your answer was incorrect - please try again."
4644
  msgstr ""
4645
  "<strong>ERRORE</strong>: La risposta è sbagliata - si prega di riprovare."
4646
 
4647
  # @ aiowpsecurity
4648
+ #: classes/wp-security-user-login.php:82
 
 
 
 
 
 
 
 
 
 
 
 
4649
  msgid "<strong>ERROR</strong>: The username field is empty."
4650
  msgstr "<strong>ERRORE</strong>: Il campo Nome Utente è vuoto."
4651
 
4652
  # @ aiowpsecurity
4653
+ #: classes/wp-security-user-login.php:86
4654
  msgid "<strong>ERROR</strong>: The password field is empty."
4655
  msgstr "<strong>ERRORE</strong>: Il campo password è vuoto."
4656
 
4657
  # @ aiowpsecurity
4658
+ #: classes/wp-security-user-login.php:106
4659
+ #: classes/wp-security-user-login.php:132
4660
  msgid "<strong>ERROR</strong>: Invalid login credentials."
4661
  msgstr "<strong>ERRORE</strong>: credenziali login non valide."
4662
 
4663
  # @ aiowpsecurity
4664
+ #: classes/wp-security-user-login.php:109
4665
  msgid "<strong>ERROR</strong>: Invalid username."
4666
  msgstr "<strong>ERRORE</strong>: Nome Utente non valido."
4667
 
4668
  # @ aiowpsecurity
4669
+ #: classes/wp-security-user-login.php:135
4670
  #, php-format
4671
  msgid ""
4672
  "<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password "
4676
  "\"Password smarrita\">Hai perso la tua password</a>?"
4677
 
4678
  # @ aiowpsecurity
4679
+ #: classes/wp-security-user-login.php:146
4680
  msgid ""
4681
  "<strong>ACCOUNT PENDING</strong>: Your account is currently not active. An "
4682
  "administrator needs to activate your account before you can login."
4685
  "amministratore deve attivare il tuo account prima di poter accedere."
4686
 
4687
  # @ aiowpsecurity
4688
+ #: classes/wp-security-user-login.php:269
4689
  msgid "Site Lockout Notification"
4690
  msgstr "Avviso Blocco Sito"
4691
 
4692
  # @ aiowpsecurity
4693
+ #: classes/wp-security-user-login.php:270
4694
  msgid ""
4695
  "A lockdown event has occurred due to too many failed login attempts or "
4696
  "invalid username:"
4699
  "tentativi di accesso non riusciti, con i seguenti dati utente"
4700
 
4701
  # @ aiowpsecurity
4702
+ #: classes/wp-security-user-login.php:272
4703
  msgid "IP Address: "
4704
  msgstr "Indirizzo IP:"
4705
 
4706
  # @ aiowpsecurity
4707
+ #: classes/wp-security-user-login.php:274
4708
  msgid ""
4709
  "Log into your site's WordPress administration panel to see the duration of "
4710
  "the lockout or to unlock the user."
4713
  "la durata del blocco o per sbloccare l'utente."
4714
 
4715
  # @ aiowpsecurity
4716
+ #: classes/wp-security-user-login.php:503
4717
  #, php-format
4718
  msgid ""
4719
  "Your session has expired because it has been over %d minutes since your last "
4723
  "accesso."
4724
 
4725
  # @ aiowpsecurity
4726
+ #: classes/wp-security-user-login.php:504
4727
+ #: classes/wp-security-user-login.php:508
4728
  msgid "Please log back in to continue."
4729
  msgstr "Accedi nuovamente per continuare."
4730
 
4731
  # @ aiowpsecurity
4732
+ #: classes/wp-security-user-login.php:507
4733
  msgid "You were logged out because you just changed the \"admin\" username."
4734
  msgstr ""
4735
  "Sei stato disconnesso perché hai appena cambiato il nome utente \"admin\"."
4801
  msgstr "Attiva Protezione Vulnerabilità Pingback"
4802
 
4803
  # @ aiowpsecurity
4804
+ #: classes/grade-system/wp-security-feature-item-manager.php:92
4805
  msgid "Forbid Proxy Comments"
4806
  msgstr "Vieta commenti via Proxy"
4807
 
4808
  # @ aiowpsecurity
4809
+ #: classes/grade-system/wp-security-feature-item-manager.php:93
4810
  msgid "Deny Bad Queries"
4811
  msgstr "Nega Stringhe Dannose"
4812
 
4813
  # @ aiowpsecurity
4814
+ #: classes/grade-system/wp-security-feature-item-manager.php:95
4815
  msgid "5G Blacklist"
4816
  msgstr "Blacklist 5G"
4817
 
4818
  # @ aiowpsecurity
4819
+ #: classes/grade-system/wp-security-feature-item-manager.php:98
4820
  msgid "Block Spambots"
4821
  msgstr "Blocca Spambots"
4822
 
4823
  # @ aiowpsecurity
4824
+ #: classes/grade-system/wp-security-feature-item-manager.php:100
4825
  msgid "Comment Captcha"
4826
  msgstr "Captcha Commenti"
4827
 
4882
  msgstr "Vai all'ultima pagina"
4883
 
4884
  # @ aiowpsecurity
4885
+ #: admin/wp-security-admin-init.php:229
4886
  msgid "Brute Force"
4887
  msgstr ""
4888
 
4889
  # @ aiowpsecurity
4890
+ #: admin/wp-security-admin-init.php:238
4891
  msgid "Miscellaneous"
4892
+ msgstr "Altre impostazioni"
4893
 
4894
  # @ aiowpsecurity
4895
+ #: admin/wp-security-brute-force-menu.php:26
4896
  #: admin/wp-security-dashboard-menu.php:365
4897
  #: admin/wp-security-dashboard-menu.php:374
4898
  msgid "Rename Login Page"
4899
  msgstr "Rinomina Pagina Login"
4900
 
4901
  # @ aiowpsecurity
4902
+ #: admin/wp-security-brute-force-menu.php:27
4903
  msgid "Cookie Based Brute Force Prevention"
4904
  msgstr "Prevenzione Brute Force basata su Cookie"
4905
 
4906
  # @ aiowpsecurity
4907
+ #: admin/wp-security-brute-force-menu.php:101
4908
  msgid "Please enter a value for your login page slug."
4909
  msgstr "Inserisci un valore per la tua pagina di login"
4910
 
4911
  # @ aiowpsecurity
4912
+ #: admin/wp-security-brute-force-menu.php:105
4913
  msgid "You cannot use the value \"wp-admin\" for your login page slug."
4914
  msgstr ""
4915
  "Non è possibile utilizzare il valore \"wp-admin \" per la tua pagina di "
4916
  "login."
4917
 
4918
  # @ aiowpsecurity
4919
+ #: admin/wp-security-brute-force-menu.php:129
4920
  msgid ""
4921
  "Could not delete the Cookie-based directives from the .htaccess file. Please "
4922
  "check the file permissions."
4925
  "prega di controllare i permessi dei file."
4926
 
4927
  # @ aiowpsecurity
4928
+ #: admin/wp-security-brute-force-menu.php:139
4929
  msgid ""
4930
  "An effective Brute Force prevention technique is to change the default "
4931
  "WordPress login page URL."
4934
  "l'impostazione predefinita dell'URL della pagina di login di WordPress."
4935
 
4936
  # @ aiowpsecurity
4937
+ #: admin/wp-security-brute-force-menu.php:140
4938
  msgid ""
4939
  "Normally if you wanted to login to WordPress you would type your site's home "
4940
  "URL followed by wp-login.php."
4943
  "del tuo sito seguito da wp-login.php."
4944
 
4945
  # @ aiowpsecurity
4946
+ #: admin/wp-security-brute-force-menu.php:141
4947
  msgid ""
4948
  "This feature allows you to change the login URL by setting your own slug and "
4949
  "renaming the last portion of the login URL which contains the <strong>wp-"
4954
  "<strong> wp-login.php </strong> con qualsiasi stringa che ti piace."
4955
 
4956
  # @ aiowpsecurity
4957
+ #: admin/wp-security-brute-force-menu.php:142
4958
  msgid ""
4959
  "By doing this, malicious bots and hackers will not be able to access your "
4960
  "login page because they will not know the correct login page URL."
4963
  "pagina di login perché non conoscono il corretto URL della pagina di login."
4964
 
4965
  # @ aiowpsecurity
4966
+ #: admin/wp-security-brute-force-menu.php:144
4967
  msgid ""
4968
  "You may also be interested in the following alternative brute force "
4969
  "prevention features:"
4972
  "prevenzione brute force alternative:"
4973
 
4974
  # @ aiowpsecurity
4975
+ #: admin/wp-security-brute-force-menu.php:155
4976
  msgid "Your WordPress login page URL has been renamed."
4977
  msgstr "L'URL della tua pagina di login WordPress è stato rinominato."
4978
 
4979
  # @ aiowpsecurity
4980
+ #: admin/wp-security-brute-force-menu.php:156
4981
  msgid "Your current login URL is:"
4982
  msgstr "Il tuo attuale indirizzo di login (URL)"
4983
 
4984
  # @ aiowpsecurity
4985
+ #: admin/wp-security-brute-force-menu.php:158
4986
  msgid ""
4987
  "NOTE: If you already had the Cookie-Based Brute Force Prevention feature "
4988
  "active, the plugin has automatically deactivated it because only one of "
4989
  "these features can be active at any one time."
4990
  msgstr ""
4991
+ "NOTA: Se hai già la funzione di Prevenzione Brute Force basata sui cookie "
4992
+ "attiva il plugin viene disattivato automaticamente perché una sola di queste "
4993
+ "caratteristiche, alla volta, può essere attiva."
4994
 
4995
  # @ aiowpsecurity
4996
+ #: admin/wp-security-brute-force-menu.php:165
4997
  msgid "Rename Login Page Settings"
4998
  msgstr "Impostazioni Rinomina Pagina Login"
4999
 
5000
  # @ aiowpsecurity
5001
+ #: admin/wp-security-brute-force-menu.php:177
5002
  msgid "Enable Rename Login Page Feature"
5003
+ msgstr "Attiva opzione Rinomina Pagina Login"
5004
 
5005
  # @ aiowpsecurity
5006
+ #: admin/wp-security-brute-force-menu.php:180
5007
  msgid "Check this if you want to enable the rename login page feature"
5008
  msgstr ""
5009
+ "Seleziona questa casella per attivare la funzione di rinmomina login e "
5010
  "applicare le seguenti impostazioni"
5011
 
5012
  # @ aiowpsecurity
5013
+ #: admin/wp-security-brute-force-menu.php:184
5014
  msgid "Login Page URL"
5015
  msgstr "Indirizzo di login (URL)"
5016
 
5017
  # @ aiowpsecurity
5018
+ #: admin/wp-security-brute-force-menu.php:186
5019
  msgid ""
5020
  "Enter a string which will represent your secure login page slug. You are "
5021
  "enouraged to choose something which is hard to guess and only you will "
5026
  "qualcosa che è difficile indovinare."
5027
 
5028
  # @ aiowpsecurity
5029
+ #: admin/wp-security-brute-force-menu.php:308
5030
  msgid ""
5031
  "If this feature is not used correctly, you can get locked out of your site. "
5032
  "A backed up .htaccess file will come in handy if that happens."
5033
  msgstr ""
5034
+ "Se questa funzione non viene utilizzata correttamente puoi rimanere bloccato "
5035
+ "fuori dal tuo sito. Un backup del file .htaccess sarà utile se questo accade."
5036
 
5037
  # @ aiowpsecurity
5038
+ #: admin/wp-security-brute-force-menu.php:322
5039
  msgid ""
5040
  "NOTE: If you already had the Rename Login Page feature active, the plugin "
5041
  "has automatically deactivated it because only one of these features can be "
5042
  "active at any one time."
5043
  msgstr ""
5044
+ "NOTA: Se hai già la funzione di Rinomina pagina login attiva il plugin viene "
5045
+ "disattivato automaticamente perché una sola di queste caratteristiche può "
5046
+ "essere attiva."
5047
 
5048
  # @ aiowpsecurity
5049
  #: admin/wp-security-dashboard-menu.php:25
5050
  #: admin/wp-security-dashboard-menu.php:457
5051
  msgid "Locked IP Addresses"
5052
+ msgstr "Indirizzi IP bloccati"
5053
 
5054
  # @ aiowpsecurity
5055
  #: admin/wp-security-dashboard-menu.php:76
5057
  "Twitter, Google+ or via Email to stay up to date about the new security "
5058
  "features of this plugin."
5059
  msgstr ""
5060
+ "Twitter, Google+ o via e-mail per rimanere sempre aggiornato sulle nuove "
5061
+ "funzionalità di sicurezza di questo plugin."
5062
 
5063
  # @ aiowpsecurity
5064
  #: admin/wp-security-dashboard-menu.php:177
5066
  "We are working hard to make your WordPress site more secure. Please support "
5067
  "us, here is how:"
5068
  msgstr ""
5069
+ "Stiamo lavorando duramente per rendere il vostro sito WordPress più sicuro. "
5070
+ "Si prega di sostenere, ecco come:"
5071
 
5072
  # @ aiowpsecurity
5073
  #: admin/wp-security-dashboard-menu.php:264
5102
  # @ aiowpsecurity
5103
  #: admin/wp-security-dashboard-menu.php:342
5104
  msgid "Cookie Based Brute Prevention"
5105
+ msgstr "Prevenzione Brute Force basata su Cookie"
5106
 
5107
  # @ aiowpsecurity
5108
  #: admin/wp-security-dashboard-menu.php:345
5114
  #: admin/wp-security-dashboard-menu.php:377
5115
  #, php-format
5116
  msgid "The %s feature is currently active."
5117
+ msgstr "La funzione %s è attualmente attiva."
5118
 
5119
  # @ aiowpsecurity
5120
  #: admin/wp-security-dashboard-menu.php:350
5121
  #: admin/wp-security-dashboard-menu.php:378
5122
  msgid "Your new WordPress login URL is now:"
5123
+ msgstr "Il tuo nuovo URL di login WordPress:"
5124
 
5125
  # @ aiowpsecurity
5126
  #: admin/wp-security-dashboard-menu.php:442
5135
  # @ aiowpsecurity
5136
  #: admin/wp-security-dashboard-menu.php:470
5137
  msgid "Number of temporarily locked out IP addresses: "
5138
+ msgstr "Numero di indirizzi IP temporaneamente bloccati:"
5139
 
5140
  # @ aiowpsecurity
5141
  #: admin/wp-security-dashboard-menu.php:530
5150
  # @ aiowpsecurity
5151
  #: admin/wp-security-dashboard-menu.php:533
5152
  msgid "PHP Memory Usage"
5153
+ msgstr "PHP Memoria in uso"
5154
 
5155
  # @ aiowpsecurity
5156
  #: admin/wp-security-dashboard-menu.php:534
5224
  # @ default
5225
  #: admin/wp-security-dashboard-menu.php:601
5226
  msgid "Seconds"
5227
+ msgstr "Secondi"
5228
 
5229
  # @ aiowpsecurity
5230
  #: admin/wp-security-dashboard-menu.php:653
5231
  msgid "Currently Locked Out IP Addresses and Ranges"
5232
+ msgstr "Indirizzi IP e intervalli attualmente bloccati"
5233
 
5234
  # @ aiowpsecurity
5235
  #: admin/wp-security-database-menu.php:383
5236
  msgid "Error - Could not get tables or no tables found!"
5237
+ msgstr "Errore - Impossibile ottenere tabelle o nessuna tabella trovata!"
5238
 
5239
  # @ aiowpsecurity
5240
+ #: admin/wp-security-filescan-menu.php:25
5241
  msgid "Malware Scan"
5242
+ msgstr "Scansione Malware"
5243
 
5244
  # @ aiowpsecurity
5245
+ #: admin/wp-security-filescan-menu.php:95
5246
  msgid "There have been no file changes since the last scan."
5247
+ msgstr "Non ci sono state modifiche al file dopo l'ultima scansione."
5248
 
5249
  # @ aiowpsecurity
5250
+ #: admin/wp-security-filescan-menu.php:114
5251
  msgid "Scan Complete - There were no file changes detected!"
5252
+ msgstr "Scansione Completa - Non sono state rilevate variazioni ai file!"
5253
 
5254
  # @ aiowpsecurity
5255
+ #: admin/wp-security-filescan-menu.php:246
5256
  msgid "View Last Saved File Change Results"
5257
+ msgstr "Mostra l'ultimo salvataggio del Risultato di Modifiche File"
5258
 
5259
  # @ aiowpsecurity
5260
+ #: admin/wp-security-filescan-menu.php:252
5261
  msgid ""
5262
  "Click the button below to view the saved file change results from the last "
5263
  "scan."
5264
  msgstr ""
5265
+ "Clicca sul pulsante qui sotto per visualizzare i risultati di modifica del "
5266
+ "file salvato dall'ultima scansione."
5267
 
5268
  # @ aiowpsecurity
5269
+ #: admin/wp-security-filescan-menu.php:255
5270
  msgid "View Last File Change"
5271
+ msgstr "Mostra Ultima Modifica File"
5272
 
5273
  # @ aiowpsecurity
5274
+ #: admin/wp-security-filescan-menu.php:343
5275
  msgid "What is Malware?"
5276
+ msgstr "Che cosa è un Malware?"
5277
 
5278
  # @ aiowpsecurity
5279
+ #: admin/wp-security-filescan-menu.php:344
5280
  msgid ""
5281
  "The word Malware stands for Malicious Software. It can consist of things "
5282
  "like trojan horses, adware, worms, spyware and any other undesirable code "
5283
  "which a hacker will try to inject into your website."
5284
  msgstr ""
5285
+ "La parola Malware è sinonimo di software dannoso. Esso può essere costituito "
5286
+ "da cose come trojan horses, adware, worm, spyware e qualsiasi altro codice "
5287
+ "indesiderato che un hacker cercherà di iniettare nel tuo sito web."
5288
 
5289
  # @ aiowpsecurity
5290
+ #: admin/wp-security-filescan-menu.php:345
5291
  msgid ""
5292
  "Often when malware code has been inserted into your site you will normally "
5293
  "not notice anything out of the ordinary based on appearances, but it can "
5294
  "have a dramatic effect on your site’s search ranking."
5295
  msgstr ""
5296
+ "Spesso, quando il codice del malware è stato inserito nel tuo sito, non "
5297
+ "noterai nulla di straordinario in apparenza, ma può avere un effetto molto "
5298
+ "negativo in termini di risultati di ricerca."
5299
 
5300
  # @ aiowpsecurity
5301
+ #: admin/wp-security-filescan-menu.php:346
5302
  msgid ""
5303
  "This is because the bots and spiders from search engines such as Google have "
5304
  "the capability to detect malware when they are indexing the pages on your "
5305
  "site, and consequently they can blacklist your website which will in turn "
5306
  "affect your search rankings."
5307
  msgstr ""
5308
+ "Questo perché i bot e spider dei motori di ricerca come Google hanno la "
5309
+ "capacità di rilevare il malware quando vengono a indicizzare le pagine del "
5310
+ "tuo sito, e di conseguenza possono mettere in blacklist il tuo sito web e di "
5311
+ "conseguenza influenzare il posizionamento sui motori."
5312
 
5313
  # @ aiowpsecurity
5314
+ #: admin/wp-security-filescan-menu.php:350
5315
  msgid "Scanning For Malware"
5316
+ msgstr "Scansione ricerca Malware"
5317
 
5318
  # @ aiowpsecurity
5319
+ #: admin/wp-security-filescan-menu.php:351
5320
  msgid ""
5321
  "Due to the constantly changing and complex nature of Malware, scanning for "
5322
  "such things using a standalone plugin will not work reliably. This is "
5323
  "something best done via an external scan of your site regularly."
5324
  msgstr ""
5325
+ "A causa della natura costantemente mutevole e complessa di malware, la "
5326
+ "scansione per queste cose usando un plugin standalone non funziona "
5327
+ "correttamente. Questo funziona meglio tramite una scansione esterna del "
5328
+ "vostro sito fatta regolarmente."
5329
 
5330
  # @ aiowpsecurity
5331
+ #: admin/wp-security-filescan-menu.php:352
5332
  msgid ""
5333
  "This is why we have created an easy-to-use scanning service which is hosted "
5334
  "off our own server which will scan your site for malware once every day and "
5335
  "notify you if it finds anything."
5336
  msgstr ""
5337
+ "Per questo motivo abbiamo creato un servizio di scansione di facile "
5338
+ "utilizzo, che viene ospitato fuori sul nostro server, che esegue la "
5339
+ "scansione del sito per il malware una volta al giorno e notifica se trova "
5340
+ "qualche cosa che non va."
5341
 
5342
  # @ aiowpsecurity
5343
+ #: admin/wp-security-filescan-menu.php:353
5344
  msgid "When you sign up for this service you will get the following:"
5345
+ msgstr "Iscrivendoti a questo servizio otterrai le seguenti caratteristiche:"
5346
 
5347
  # @ aiowpsecurity
5348
+ #: admin/wp-security-filescan-menu.php:355
5349
  msgid "Automatic Daily Scan of 1 Website"
5350
+ msgstr "Scansione quotidiana automatica di 1 Sito Web"
5351
 
5352
  # @ aiowpsecurity
5353
+ #: admin/wp-security-filescan-menu.php:356
5354
  msgid "Automatic Malware & Blacklist Monitoring"
5355
+ msgstr "Monitoraggio Automatico Malware & Blacklist"
5356
 
5357
  # @ aiowpsecurity
5358
+ #: admin/wp-security-filescan-menu.php:357
5359
  msgid "Automatic Email Alerting"
5360
+ msgstr "Alert Automatico via Email"
5361
 
5362
  # @ aiowpsecurity
5363
+ #: admin/wp-security-filescan-menu.php:358
5364
  msgid "Site uptime monitoring"
5365
+ msgstr "Monitoraggio uptime del sito"
5366
 
5367
  # @ aiowpsecurity
5368
+ #: admin/wp-security-filescan-menu.php:359
5369
  msgid "Site response time monitoring"
5370
+ msgstr "Monitoraggio del tempo di risposta Sito"
5371
 
5372
  # @ aiowpsecurity
5373
+ #: admin/wp-security-filescan-menu.php:360
5374
  msgid "Malware Cleanup"
5375
+ msgstr "Pulizia Malware"
5376
 
5377
  # @ aiowpsecurity
5378
+ #: admin/wp-security-filescan-menu.php:361
5379
  msgid "Blacklist Removal"
5380
+ msgstr "Rimozione Blacklist"
5381
 
5382
  # @ aiowpsecurity
5383
+ #: admin/wp-security-filescan-menu.php:362
5384
  msgid "No Contract (Cancel Anytime)"
5385
+ msgstr "Nessun contratto (Annulli in qualsiasi momento)"
5386
 
5387
  # @ aiowpsecurity
5388
+ #: admin/wp-security-filescan-menu.php:364
5389
  #, php-format
5390
  msgid "To learn more please %s."
5391
+ msgstr "Per ulteriori informazioni %s."
5392
 
5393
  # @ aiowpsecurity
5394
  #: admin/wp-security-firewall-menu.php:30
5398
  # @ aiowpsecurity
5399
  #: admin/wp-security-firewall-menu.php:31
5400
  msgid "Prevent Hotlinks"
5401
+ msgstr "Prevenzione Hotlinks"
5402
 
5403
  # @ aiowpsecurity
5404
  #: admin/wp-security-firewall-menu.php:32
5405
  msgid "404 Detection"
5406
+ msgstr "Rilevamento 404"
5407
 
5408
  # @ aiowpsecurity
5409
  #: admin/wp-security-firewall-menu.php:143
5410
  msgid "Attention:"
5411
+ msgstr "Attenzione:"
5412
 
5413
  # @ aiowpsecurity
5414
  #: admin/wp-security-firewall-menu.php:144
5415
  msgid "Currently the "
5416
+ msgstr "Attualmente "
5417
 
5418
  # @ aiowpsecurity
5419
  #: admin/wp-security-firewall-menu.php:144
5420
  msgid " is active."
5421
+ msgstr "è abilitata"
5422
 
5423
  # @ aiowpsecurity
5424
  #: admin/wp-security-firewall-menu.php:145
5426
  "Please beware that if you are using the WordPress iOS App, then you will "
5427
  "need to deactivate this feature in order for the app to work properly."
5428
  msgstr ""
5429
+ "Fa attenzione che se utilizzi App WordPress iOS, allora dovrai disattivare "
5430
+ "questa funzione in modo che l'applicazione funzioni correttamente."
5431
 
5432
  # @ aiowpsecurity
5433
  #: admin/wp-security-firewall-menu.php:334
5436
  "directive must be enabled in your httpd.conf file. Ask your hosting provider "
5437
  "to check this if you don't have access to httpd.conf"
5438
  msgstr ""
5439
+ "NOTA: Per utilizzare questa funzione \"AllowOverride\" della direttiva "
5440
+ "indici deve essere abilitato nel file httpd.conf. Chiedi al tuo fornitore di "
5441
+ "hosting per verificare questo se non hai accesso a httpd.conf"
5442
 
5443
  # @ aiowpsecurity
5444
  #: admin/wp-security-firewall-menu.php:577
5445
  msgid "The Internet bot settings were successfully saved"
5446
+ msgstr "Le impostazioni bot Internet sono state salvate con successo"
5447
 
5448
  # @ aiowpsecurity
5449
  #: admin/wp-security-firewall-menu.php:581
5450
  msgid "Internet Bot Settings"
5451
+ msgstr "Impostazioni Internet Bot"
5452
 
5453
  # @ aiowpsecurity
5454
  #: admin/wp-security-firewall-menu.php:588
5463
  "automatic tasks. For example when Google indexes your pages it uses "
5464
  "automatic bots to achieve this task."
5465
  msgstr ""
5466
+ "Un bot è un software che gira su Internet e svolge funzioni automatiche. Per "
5467
+ "esempio, quando Google indicizza le pagine usa bot automatici per realizzare "
5468
+ "questo compito."
5469
 
5470
  # @ aiowpsecurity
5471
  #: admin/wp-security-firewall-menu.php:591
5474
  "often you will find some which try to impersonate legitimate bots such as "
5475
  "\"Googlebot\" but in reality they have nohing to do with Google at all."
5476
  msgstr ""
5477
+ "La maggioranza di bot sono legittimi ma non tutti i bot sono buoni e spesso "
5478
+ "ne incontrerai alcuni che cercano di impersonare bot legittimi, quali "
5479
+ "\"Googlebot \", ma in realtà non hanno nulla a che fare con Google."
5480
 
5481
  # @ aiowpsecurity
5482
  #: admin/wp-security-firewall-menu.php:592
5485
  "website owners want to have more control over which bots they allow into "
5486
  "their site."
5487
  msgstr ""
5488
+ "Sebbene la maggior parte dei bot là fuori sono relativamente innocui "
5489
+ "talvolta i proprietari di siti web vogliono avere più controllo su ciò che i "
5490
+ "bot possono fare nel loro sito."
5491
 
5492
  # @ aiowpsecurity
5493
  #: admin/wp-security-firewall-menu.php:593
5495
  "This feature allows you to block bots which are impersonating as a Googlebot "
5496
  "but actually aren't. (In other words they are fake Google bots)"
5497
  msgstr ""
5498
+ "Questa funzione consente di bloccare i bot che si spacciano come Googlebot, "
5499
+ "ma in realtà non lo sono. (In altre parole, sono falsi bot di Google)"
5500
 
5501
  # @ aiowpsecurity
5502
  #: admin/wp-security-firewall-menu.php:594
5505
  "feature will indentify any fake Google bots and block them from reading your "
5506
  "site's pages."
5507
  msgstr ""
5508
+ "Googlebots hanno un indentità unica che non può essere facilmente forgiata e "
5509
+ "questa caratteristica scoprirà eventuali bot di Google falsi e gli impedirà "
5510
+ "di leggere le pagine del tuo sito."
5511
 
5512
  # @ aiowpsecurity
5513
  #: admin/wp-security-firewall-menu.php:600
5515
  "<strong>Attention</strong>: Sometimes non-malicious Internet organizations "
5516
  "might have bots which impersonate as a \"Googlebot\"."
5517
  msgstr ""
5518
+ "<strong>Attention</strong>: A volte organizzazioni Internet non dannose "
5519
+ "potrebbero avere bot che impersonano \"Googlebot\"."
5520
 
5521
  # @ aiowpsecurity
5522
  #: admin/wp-security-firewall-menu.php:601
5526
  "are NOT officially from Google (irrespective whether they are malicious or "
5527
  "not)."
5528
  msgstr ""
5529
+ "Basta essere consapevoli che, se si attiva questa funzione, il plugin "
5530
+ "bloccherà tutti i bot che utilizzano la stringa \"Googlebot\" nelle loro "
5531
+ "informazioni User Agent, ma non sono ufficialmente di Google (a prescindere "
5532
+ "dal fatto che siano dannosi o meno)."
5533
 
5534
  # @ aiowpsecurity
5535
  #: admin/wp-security-firewall-menu.php:602
5537
  "All other bots from other organizations such as \"Yahoo\", \"Bing\" etc will "
5538
  "not be affected by this feature."
5539
  msgstr ""
5540
+ "Tutti gli altri bot di altre organizzazioni come \"Yahoo\", \"Bing\" ecc... "
5541
+ "non saranno interessati da questa funzione."
5542
 
5543
  # @ aiowpsecurity
5544
  #: admin/wp-security-firewall-menu.php:608
5545
  #: admin/wp-security-firewall-menu.php:618
5546
+ #: classes/grade-system/wp-security-feature-item-manager.php:96
5547
  msgid "Block Fake Googlebots"
5548
+ msgstr "Blocca i Falsi Googlebot"
5549
 
5550
  # @ aiowpsecurity
5551
  #: admin/wp-security-firewall-menu.php:621
5552
  msgid "Check this if you want to block all fake Googlebots."
5553
+ msgstr "Seleziona questa casella per bloccare tutti i falsi Googlebot."
5554
 
5555
  # @ aiowpsecurity
5556
  #: admin/wp-security-firewall-menu.php:625
5558
  "This feature will check if the User Agent information of a bot contains the "
5559
  "string \"Googlebot\"."
5560
  msgstr ""
5561
+ "Questa funzione controlla se le informazioni User Agent di un bot contiene "
5562
+ "la stringa \"Googlebot\"."
5563
 
5564
  # @ aiowpsecurity
5565
  #: admin/wp-security-firewall-menu.php:626
5567
  "It will then perform a few tests to verify if the bot is legitimately from "
5568
  "Google and if so it will allow the bot to proceed."
5569
  msgstr ""
5570
+ "Sarà quindi necessario eseguire alcuni test per verificare se il bot è "
5571
+ "effettivamente di Google e se così sarà permetterà al bot di procedere."
5572
 
5573
  # @ aiowpsecurity
5574
  #: admin/wp-security-firewall-menu.php:627
5576
  "If the bot fails the checks then the plugin will mark it as being a fake "
5577
  "Googlebot and it will block it"
5578
  msgstr ""
5579
+ "Se il bot non supera i controlli il plugin lo segnerà come un Googlebot "
5580
+ "falso e sarà bloccato"
5581
 
5582
  # @ aiowpsecurity
5583
  #: admin/wp-security-firewall-menu.php:634
5584
  msgid "Save Internet Bot Settings"
5585
+ msgstr "Salva Impostazioni Internet Bot"
5586
 
5587
  # @ aiowpsecurity
5588
  #: admin/wp-security-firewall-menu.php:671
5589
  #: admin/wp-security-firewall-menu.php:693
5590
  #: classes/grade-system/wp-security-feature-item-manager.php:32
5591
  msgid "Prevent Image Hotlinking"
5592
+ msgstr "Prevenzione Hotlinking Immagini"
5593
 
5594
  # @ aiowpsecurity
5595
  #: admin/wp-security-firewall-menu.php:674
5598
  "located on your site by using a direct link to the source of the image on "
5599
  "your server."
5600
  msgstr ""
5601
+ "Un Hotlink è quando qualcuno visualizza un'immagine sul suo sito (ma "
5602
+ "l'immagine si trova effettivamente sul tuo sito) utilizzando un link diretto "
5603
+ "alla fonte dell'immagine sul tuo server."
5604
 
5605
  # @ aiowpsecurity
5606
  #: admin/wp-security-firewall-menu.php:675
5610
  "for you because your server has to present this image for the people viewing "
5611
  "it on someone elses's site."
5612
  msgstr ""
5613
+ "Il fatto che l'immagine visualizzata sul sito dell'altra persona è in realtà "
5614
+ "sul tuo server causa perdita di banda e risorse per te, se il server da la "
5615
+ "possibilità di usare l'immagine esternamente chiunque può sfruttare le tue "
5616
+ "risorse su altri siti."
5617
 
5618
  # @ aiowpsecurity
5619
  #: admin/wp-security-firewall-menu.php:676
5621
  "This feature will prevent people from directly hotlinking images from your "
5622
  "site's pages by writing some directives in your .htaccess file."
5623
  msgstr ""
5624
+ "Questa funzione impedisce alle persone di fare hotlinking sulle immagini del "
5625
+ "tuo sito, direttamente dall'esterno, scrivendo alcune direttive nel file "
5626
+ "htaccess.."
5627
 
5628
  # @ aiowpsecurity
5629
  #: admin/wp-security-firewall-menu.php:681
5630
  msgid "Prevent Hotlinking"
5631
+ msgstr "Impedisci Hotlinking"
5632
 
5633
  # @ aiowpsecurity
5634
  #: admin/wp-security-firewall-menu.php:696
5635
  msgid "Check this if you want to prevent hotlinking to images on your site."
5636
  msgstr ""
5637
+ "Seleziona questa casella se desideri impedire l'hotlinking alle immagini sul "
5638
+ "tuo sito."
5639
 
5640
  # @ aiowpsecurity
5641
  #: admin/wp-security-firewall-menu.php:716
5642
  msgid "Nonce check failed for delete all 404 event logs operation!"
5643
  msgstr ""
5644
+ "Selezione non riuscita per cancellare tutte le operazioni del registro "
5645
+ "eventi 404!"
5646
 
5647
  # @ aiowpsecurity
5648
  #: admin/wp-security-firewall-menu.php:727
5649
  msgid "404 Detection Feature - Delete all 404 event logs operation failed!"
5650
  msgstr ""
5651
+ "404 Caratteristiche Rilevamento - Operazione elimina tutti gli eventi 404 "
5652
+ "registrati non riuscita!"
5653
 
5654
  # @ aiowpsecurity
5655
  #: admin/wp-security-firewall-menu.php:731
5656
  msgid "All 404 event logs were deleted from the DB successfully!"
5657
+ msgstr "Tutti gli eventi 404 sono stati cancellati dal DB con successo!"
5658
 
5659
  # @ aiowpsecurity
5660
  #: admin/wp-security-firewall-menu.php:763
5662
  "You entered an incorrect format for the \"Redirect URL\" field. It has been "
5663
  "set to the default value."
5664
  msgstr ""
5665
+ "È stato inserito un formato non corretto per il campo \"Redirect URL\". È "
5666
+ "stato reimpostato sul valore predefinito."
5667
 
5668
  # @ aiowpsecurity
5669
  #: admin/wp-security-firewall-menu.php:795
5670
  msgid "404 Detection Configuration"
5671
+ msgstr "Configurazione Rilevamento 404"
5672
 
5673
  # @ aiowpsecurity
5674
  #: admin/wp-security-firewall-menu.php:798
5676
  "A 404 or Not Found error occurs when somebody tries to access a non-existent "
5677
  "page on your website."
5678
  msgstr ""
5679
+ "L'errore 404, o Nessun contenuto trovato, si verifica quando qualcuno tenta "
5680
+ "di accedere a una pagina inesistente sul tuo sito web."
5681
 
5682
  # @ aiowpsecurity
5683
  #: admin/wp-security-firewall-menu.php:799
5685
  "Typically, most 404 errors happen quite innocently when people have mis-"
5686
  "typed a URL or used an old link to page which doesn't exist anymore."
5687
  msgstr ""
5688
+ "In genere, la maggior parte degli errori 404, accade abbastanza "
5689
+ "innocentemente quando le persone hanno erroneamente digitato un URL o "
5690
+ "utilizzato un vecchio link a una pagina che non esiste più."
5691
 
5692
  # @ aiowpsecurity
5693
  #: admin/wp-security-firewall-menu.php:800
5696
  "a relatively short space of time and from the same IP address which are all "
5697
  "attempting to access a variety of non-existent page URLs."
5698
  msgstr ""
5699
+ "Tuttavia, in alcuni casi, si possono trovare ripetuti errori 404, che si "
5700
+ "verificano in un lasso di tempo relativamente breve e dallo stesso indirizzo "
5701
+ "IP, che stanno tutti tentando di accedere a una serie di URL di pagine "
5702
+ "inesistenti."
5703
 
5704
  # @ aiowpsecurity
5705
  #: admin/wp-security-firewall-menu.php:801
5707
  "Such behaviour can mean that a hacker might be trying to find a particular "
5708
  "page or URL for sinister reasons."
5709
  msgstr ""
5710
+ "Tale comportamento può significare che un hacker tenta di trovare una "
5711
+ "determinata pagina o un URL per motivi sinistri."
5712
 
5713
  # @ aiowpsecurity
5714
  #: admin/wp-security-firewall-menu.php:802
5717
  "and it also gives you the option of blocking IP addresses for a configured "
5718
  "length of time."
5719
  msgstr ""
5720
+ "Questa funzione consente di monitorare tutti gli eventi 404 che si "
5721
+ "verificano sul tuo sito, e ti dà anche la possibilità di bloccare gli "
5722
+ "indirizzi IP per un periodo di tempo configurato."
5723
 
5724
  # @ aiowpsecurity
5725
  #: admin/wp-security-firewall-menu.php:803
5727
  "If you want to temporarily block an IP address, simply click the \"Temp Block"
5728
  "\" link for the applicable IP entry in the \"404 Event Logs\" table below."
5729
  msgstr ""
5730
+ "Se desideri bloccare temporaneamente un indirizzo IP, è sufficiente fare "
5731
+ "clic sul link \"Temp Block\" per la voce IP applicabile nella tabella "
5732
+ "\"Registro Eventi 404\" qui sotto."
5733
 
5734
  # @ aiowpsecurity
5735
  #: admin/wp-security-firewall-menu.php:808
5736
  msgid "404 Detection Options"
5737
+ msgstr "Opzioni Rilevamento 404"
5738
 
5739
  # @ aiowpsecurity
5740
  #: admin/wp-security-firewall-menu.php:820
5741
  msgid "Enable IP Lockout For 404 Events"
5742
+ msgstr "Attiva blocco IP per gli eventi 404"
5743
 
5744
  # @ aiowpsecurity
5745
  #: admin/wp-security-firewall-menu.php:823
5746
  msgid "Check this if you want to enable the lockout of selected IP addresses."
5747
  msgstr ""
5748
+ "Seleziona questa casella se desideri attivare il blocco di indirizzi IP "
5749
+ "selezionati."
5750
 
5751
  # @ aiowpsecurity
5752
  #: admin/wp-security-firewall-menu.php:828
5756
  "to be blocked in the table. All IP addresses you select to be blocked from "
5757
  "the \"404 Event Logs\" table section will be unable to access your site."
5758
  msgstr ""
5759
+ "Quando si attiva questa casella di controllo, tutti gli eventi 404 sul tuo "
5760
+ "sito verranno registrati nella tabella sottostante. È possibile monitorare "
5761
+ "questi eventi e selezionare alcuni indirizzi IP da bloccare nella tabella. "
5762
+ "Tutti gli indirizzi IP selezionati per essere bloccati dalla tabella "
5763
+ "\"Registro Eventi 404\" non sarà in grado di accedere al sito."
5764
 
5765
  # @ aiowpsecurity
5766
  #: admin/wp-security-firewall-menu.php:836
5767
  msgid "Enable 404 Event Logging"
5768
+ msgstr "Attiva registro Eventi 404"
5769
 
5770
  # @ aiowpsecurity
5771
  #: admin/wp-security-firewall-menu.php:839
5772
  msgid "Check this if you want to enable the logging of 404 events"
5773
  msgstr ""
5774
+ "Seleziona questa casella se desideri attivare la registrazione eventi 404"
5775
 
5776
  # @ aiowpsecurity
5777
  #: admin/wp-security-firewall-menu.php:844
5778
  msgid "Time Length of 404 Lockout (min)"
5779
+ msgstr "Periodo durata blocco 404 (min)"
5780
 
5781
  # @ aiowpsecurity
5782
  #: admin/wp-security-firewall-menu.php:846
5784
  "Set the length of time for which a blocked IP address will be prevented from "
5785
  "visiting your site"
5786
  msgstr ""
5787
+ "Imposta un periodo di tempo per cui un indirizzo IP sarà bloccato e non "
5788
+ "potrà visitare il tuo sito"
5789
 
5790
  # @ aiowpsecurity
5791
  #: admin/wp-security-firewall-menu.php:851
5793
  "You can lock any IP address which is recorded in the \"404 Event Logs\" "
5794
  "table section below."
5795
  msgstr ""
5796
+ "Puoi bloccare qualsiasi indirizzo IP che viene registrato nella sezione "
5797
+ "\"Registro Eventi 404\" sotto."
5798
 
5799
  # @ aiowpsecurity
5800
  #: admin/wp-security-firewall-menu.php:853
5802
  "To temporarily lock an IP address, hover over the ID column and click the "
5803
  "\"Temp Block\" link for the applicable IP entry."
5804
  msgstr ""
5805
+ "Per bloccare temporaneamente un indirizzo IP, passa il mouse sopra la "
5806
+ "colonna ID e clicca sul link \"Temp Block\" per la voce IP che vuoi."
5807
 
5808
  # @ aiowpsecurity
5809
  #: admin/wp-security-firewall-menu.php:860
5810
  msgid "404 Lockout Redirect URL"
5811
+ msgstr "404 URL Reindirizzamento Blocco"
5812
 
5813
  # @ aiowpsecurity
5814
  #: admin/wp-security-firewall-menu.php:862
5815
  msgid "A blocked visitor will be automatically redirected to this URL."
5816
  msgstr ""
5817
+ "Un visitatore bloccato verrà automaticamente reindirizzato a questo URL."
5818
 
5819
  # @ aiowpsecurity
5820
  #: admin/wp-security-firewall-menu.php:871
5821
  msgid "404 Event Logs"
5822
+ msgstr "Registro Eventi 404"
5823
 
5824
  # @ aiowpsecurity
5825
  #: admin/wp-security-firewall-menu.php:892
5826
  #: admin/wp-security-firewall-menu.php:901
5827
  msgid "Delete All 404 Event Logs"
5828
+ msgstr "Elimina tutti gli eventi 404 registrati"
5829
 
5830
  # @ aiowpsecurity
5831
  #: admin/wp-security-firewall-menu.php:898
5832
  msgid "Click this button if you wish to purge all 404 event logs from the DB."
5833
  msgstr ""
5834
+ "Clicca su questo pulsante per pulire il database da tutti gli eventi 404 "
5835
+ "registrati"
5836
 
5837
  # @ aiowpsecurity
5838
  #: admin/wp-security-list-locked-ip.php:117
5839
  #: admin/wp-security-user-login-menu.php:527
5840
  msgid "The selected IP entries were unlocked successfully!"
5841
+ msgstr "Le voci IP selezionate sono state sbloccate con successo!"
5842
 
5843
  # @ aiowpsecurity
5844
  #: admin/wp-security-list-locked-ip.php:126
5845
  #: admin/wp-security-user-login-menu.php:536
5846
  msgid "The selected IP entry was unlocked successfully!"
5847
+ msgstr "La voce IP selezionata è stata sbloccata con successo!"
5848
 
5849
  # @ aiowpsecurity
5850
  #: admin/wp-security-list-registered-users.php:127
5851
  #: admin/wp-security-list-registered-users.php:151
5852
  msgid "Your account is now active"
5853
+ msgstr "Il tuo account è ora attivo"
5854
 
5855
  # @ aiowpsecurity
5856
  #: admin/wp-security-list-registered-users.php:128
5857
  msgid "Your account with username:"
5858
+ msgstr "Il tuo account con nome utente"
5859
 
5860
  # @ aiowpsecurity
5861
  #: admin/wp-security-list-registered-users.php:139
5862
  msgid "The following accounts failed to update successfully: "
5863
+ msgstr "L'aggiornamento dei seguenti accanto è fallito:"
5864
 
5865
  # @ aiowpsecurity
5866
  #: admin/wp-security-list-registered-users.php:152
5867
  msgid "Your account with username: "
5868
+ msgstr "Il tuo account con nome utente:"
5869
 
5870
  # @ aiowpsecurity
5871
+ #: admin/wp-security-misc-options-menu.php:23
5872
  msgid "Copy Protection"
5873
+ msgstr "Protezione Copia"
5874
 
5875
  # @ aiowpsecurity
5876
+ #: admin/wp-security-misc-options-menu.php:88
5877
  msgid "Copy Protection feature settings saved!"
5878
+ msgstr "Impostazioni delle funzioni di protezione copia salvata!"
5879
 
5880
  # @ aiowpsecurity
5881
+ #: admin/wp-security-misc-options-menu.php:93
5882
  msgid "Disable The Ability To Copy Text"
5883
+ msgstr "Disabilitare la possibilità di copiare testo"
5884
 
5885
  # @ aiowpsecurity
5886
+ #: admin/wp-security-misc-options-menu.php:99
5887
  msgid ""
5888
  "This feature allows you to disable the ability to select and copy text from "
5889
  "your front end."
5890
  msgstr ""
5891
+ "Questa funzione consente di disabilitare la possibilità di selezionare e "
5892
+ "copiare testo dal front-end."
5893
 
5894
  # @ aiowpsecurity
5895
+ #: admin/wp-security-misc-options-menu.php:104
5896
  msgid "Enable Copy Protection"
5897
+ msgstr "Attiva Protezione Copia"
5898
 
5899
  # @ aiowpsecurity
5900
+ #: admin/wp-security-misc-options-menu.php:107
5901
  msgid ""
5902
  "Check this if you want to disable the \"Right Click\", \"Text Selection\" "
5903
  "and \"Copy\" option on the front end of your site."
5904
  msgstr ""
5905
+ "Seleziona questa casella se desideri disattivare il tasto \"Click Destro\", "
5906
+ "\"Selezione Testo\" e l'opzione \"Copia\" sul front-end del tuo sito."
5907
 
5908
  # @ default
5909
+ #: admin/wp-security-misc-options-menu.php:114
5910
  msgid "Save Copy Protection Settings"
5911
+ msgstr "Salva Impostazioni Protezione Copia"
5912
 
5913
  # @ aiowpsecurity
5914
+ #: admin/wp-security-settings-menu.php:208
5915
  msgid ""
5916
  "Your .htaccess file was successfully backed up! Using an FTP program go to "
5917
  "the \"/wp-content/aiowps_backups\" directory to save a copy of the file to "
5918
  "your computer."
5919
  msgstr ""
5920
+ "Il backuo del file .htaccess è stato eseguito con successo! Usando un "
5921
+ "programma FTP va alla directory \"/wp-content/aiowps_backups\" per salvare "
5922
+ "una copia del file sul computer."
5923
 
5924
  # @ aiowpsecurity
5925
+ #: admin/wp-security-spam-menu.php:123
5926
  msgid ""
5927
  "Adding a captcha field in the comment form is a simple way of greatly "
5928
  "reducing SPAM comments from bots without using .htaccess rules."
5929
  msgstr ""
5930
+ "Aggiunta di un campo captcha nel modulo dei commenti è un modo semplice di "
5931
+ "ridurre notevolmente i commenti spam dei bot senza utilizzare regole ."
5932
+ "htaccess."
5933
 
5934
  # @ aiowpsecurity
5935
+ #: admin/wp-security-spam-menu.php:148
5936
  msgid ""
5937
  "In other words, if the comment was not submitted by a human who physically "
5938
  "submitted the comment on your site, the request will be blocked."
5939
  msgstr ""
5940
+ "In altre parole, se il commento non è stato fatto da un essere umano che "
5941
+ "fisicamente ha scritto il commento sul tuo sito, la richiesta verrà bloccata."
5942
 
5943
  # @ aiowpsecurity
5944
  #: admin/wp-security-user-login-menu.php:190
5945
  msgid "Allow Unlock Requests"
5946
+ msgstr "Consenti richieste di sblocco"
5947
 
5948
  # @ aiowpsecurity
5949
  #: admin/wp-security-user-login-menu.php:193
5951
  "Check this if you want to allow users to generate an automated unlock "
5952
  "request link which will unlock their account"
5953
  msgstr ""
5954
+ "Seleziona questa casella se desideri consentire agli utenti di generare una "
5955
+ "richiesta di link sblocco automatico che sbloccherà il loro account"
5956
 
5957
  # @ aiowpsecurity
5958
  #: admin/wp-security-user-login-menu.php:248
5961
  "To see a list of all locked IP addresses and ranges go to the %s tab in the "
5962
  "dashboard menu."
5963
  msgstr ""
5964
+ "Per visualizzare un elenco di tutti gli indirizzi IP bloccati e gli "
5965
+ "intervalli vai alla scheda %s nel menu della bacheca."
5966
 
5967
  # @ aiowpsecurity
5968
  #: classes/grade-system/wp-security-feature-item-manager.php:80
5969
  msgid "Enable IP blocking for 404 detection"
5970
+ msgstr "Attivare il blocco IP per rilevamento 404"
5971
 
5972
  # @ aiowpsecurity
5973
  #: classes/grade-system/wp-security-feature-item-manager.php:84
5974
  msgid "Enable Rename Login Page"
5975
+ msgstr "Attiva rinomina pagina login"
 
 
 
 
 
5976
 
5977
  # @ aiowpsecurity
5978
+ #: classes/wp-security-user-login.php:271
5979
  msgid "Username: Unknown"
5980
+ msgstr "Nome utente: Sconosciuto"
5981
 
5982
  # @ aiowpsecurity
5983
+ #: classes/wp-security-user-login.php:273
5984
  msgid "IP Range: .*"
5985
+ msgstr "Intervallo IP: .*"
5986
 
5987
  # @ aiowpsecurity
5988
+ #: classes/wp-security-user-login.php:336
5989
  msgid "Unlock Request Notification"
5990
+ msgstr "Notifica richiesta sblocco"
5991
 
5992
  # @ aiowpsecurity
5993
+ #: classes/wp-security-user-login.php:337
5994
  msgid ""
5995
  "You have requested for the account with email address to be unlocked. "
5996
  "Please click the link below to unlock your account:"
5997
  msgstr ""
5998
+ "Hai richiesto lo sblocco per l'account con questo indirizzo email. Clicca il "
5999
+ "link qui sotto per sbloccare il tuo account:"
6000
 
6001
  # @ aiowpsecurity
6002
+ #: classes/wp-security-user-login.php:338
6003
  msgid "Unlock link: "
6004
+ msgstr "Link Sblocco:"
6005
 
6006
  # @ aiowpsecurity
6007
+ #: classes/wp-security-user-login.php:339
6008
  msgid ""
6009
  "After clicking the above link you will be able to login to the WordPress "
6010
  "administration panel."
6011
  msgstr ""
6012
+ "Dopo aver cliccato sul link qui sopra sarai in grado di accedere al pannello "
6013
+ "di amministrazione di WordPress."
6014
 
6015
  # @ aiowpsecurity
6016
+ #: classes/wp-security-user-login.php:533
6017
  msgid "Request Unlock"
6018
+ msgstr "Richiesta Sblocco"
6019
 
6020
  # @ default
6021
  #: other-includes/wp-security-rename-login-feature.php:96
6031
  # @ default
6032
  #: other-includes/wp-security-rename-login-feature.php:214
6033
  msgid "Are you lost?"
6034
+ msgstr "Ti sei perso?"
6035
 
6036
  # @ default
6037
  #: other-includes/wp-security-rename-login-feature.php:214
6038
  #, php-format
6039
  msgid "&larr; Back to %s"
6040
+ msgstr "&larr; Torna a %s"
6041
 
6042
  # @ default
6043
  #: other-includes/wp-security-rename-login-feature.php:272
6044
  msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
6045
  msgstr ""
6046
+ "<strong>ERRORE</strong>: inserisci il tuo nome utente o l'indirizzo e-mail"
6047
 
6048
  # @ default
6049
  #: other-includes/wp-security-rename-login-feature.php:276
6050
  msgid ""
6051
  "<strong>ERROR</strong>: There is no user registered with that email address."
6052
  msgstr ""
6053
+ "<strong>ERRORE</strong>: Nessun utente registrato con questo indirizzo e-mail"
6054
 
6055
  # @ default
6056
  #: other-includes/wp-security-rename-login-feature.php:293
6057
  msgid "<strong>ERROR</strong>: Invalid username or e-mail."
6058
+ msgstr "<strong>ERRORE</strong>: nome utente o indirizzo e-mail non valido"
6059
 
6060
  # @ default
6061
  #: other-includes/wp-security-rename-login-feature.php:330
6062
  msgid "Password reset is not allowed for this user"
6063
+ msgstr "La reimpostazione della password non è consentita per questo utente"
6064
 
6065
  # @ default
6066
  #: other-includes/wp-security-rename-login-feature.php:355
6067
  msgid "Someone requested that the password be reset for the following account:"
6068
  msgstr ""
6069
+ "Qualcuno ha richiesto il ripristino della password per il seguente account:"
6070
 
6071
  # @ default
6072
  #: other-includes/wp-security-rename-login-feature.php:357
6073
  #, php-format
6074
  msgid "Username: %s"
6075
+ msgstr "Nome Utente: %s"
6076
 
6077
  # @ default
6078
  #: other-includes/wp-security-rename-login-feature.php:358
6079
  msgid "If this was a mistake, just ignore this email and nothing will happen."
6080
  msgstr ""
6081
+ "Se questo è stato un errore, è sufficiente ignorare questa email e non "
6082
+ "accadrà nulla."
6083
 
6084
  # @ default
6085
  #: other-includes/wp-security-rename-login-feature.php:359
6086
  msgid "To reset your password, visit the following address:"
6087
+ msgstr "Per reimpostare la password visita il seguente indirizzo:"
6088
 
6089
  # @ default
6090
  #: other-includes/wp-security-rename-login-feature.php:369
6091
  #, php-format
6092
  msgid "[%s] Password Reset"
6093
+ msgstr "[%s] Ripristino Password"
6094
 
6095
  # @ default
6096
  #: other-includes/wp-security-rename-login-feature.php:390
6097
  msgid "The e-mail could not be sent."
6098
+ msgstr "L'e-mail non è stata inviata."
6099
 
6100
  # @ default
6101
  #: other-includes/wp-security-rename-login-feature.php:390
6102
  msgid "Possible reason: your host may have disabled the mail() function."
6103
  msgstr ""
6104
+ "Possibile ragione: il tuo host potrebbe aver disabilitato la funzione mail()."
6105
 
6106
  # @ default
6107
  #: other-includes/wp-security-rename-login-feature.php:495
6108
  msgid "Sorry, that key does not appear to be valid."
6109
+ msgstr "Spiacenti, questo chiave non sembra essere valida."
6110
 
6111
  # @ default
6112
  #: other-includes/wp-security-rename-login-feature.php:497
6113
  msgid "Sorry, that key has expired. Please try again."
6114
+ msgstr "Spiacenti, questa chiave è scaduta. Prova di nuovo."
6115
 
6116
  # @ default
6117
  #: other-includes/wp-security-rename-login-feature.php:517
6118
  msgid "Lost Password"
6119
+ msgstr "Password Persa"
6120
 
6121
  # @ default
6122
  #: other-includes/wp-security-rename-login-feature.php:517
6124
  "Please enter your username or email address. You will receive a link to "
6125
  "create a new password via email."
6126
  msgstr ""
6127
+ "Inserisci il tuo nome utente o indirizzo e-mail. Riceverai un link per "
6128
+ "creare una nuova password via email."
6129
 
6130
  # @ default
6131
  #: other-includes/wp-security-rename-login-feature.php:525
6132
  msgid "Username or E-mail:"
6133
+ msgstr "Nome utente o e-mail:"
6134
 
6135
  # @ default
6136
  #: other-includes/wp-security-rename-login-feature.php:536
6137
  msgid "Get New Password"
6138
+ msgstr "Ottieni Nuova password"
6139
 
6140
  # @ default
6141
  #: other-includes/wp-security-rename-login-feature.php:540
6151
  #: other-includes/wp-security-rename-login-feature.php:709
6152
  #: other-includes/wp-security-rename-login-feature.php:892
6153
  msgid "Register"
6154
+ msgstr "Registrate"
6155
 
6156
  # @ default
6157
  #: other-includes/wp-security-rename-login-feature.php:575
6158
  msgid "The passwords do not match."
6159
+ msgstr "Le password non coincidono."
6160
 
6161
  # @ default
6162
  #: other-includes/wp-security-rename-login-feature.php:589
6163
  msgid "Password Reset"
6164
+ msgstr "Reimposta Password"
6165
 
6166
  # @ default
6167
  #: other-includes/wp-security-rename-login-feature.php:589
6168
  msgid "Your password has been reset."
6169
+ msgstr "La tua password è stata reimpostata."
6170
 
6171
  # @ default
6172
  #: other-includes/wp-security-rename-login-feature.php:597
6173
  #: other-includes/wp-security-rename-login-feature.php:627
6174
  msgid "Reset Password"
6175
+ msgstr "Resetta Password"
6176
 
6177
  # @ default
6178
  #: other-includes/wp-security-rename-login-feature.php:597
6179
  msgid "Enter your new password below."
6180
+ msgstr "Inserisci una nuova password di seguito"
6181
 
6182
  # @ default
6183
  #: other-includes/wp-security-rename-login-feature.php:604
6184
  msgid "New password"
6185
+ msgstr "Nuova password"
6186
 
6187
  # @ default
6188
  #: other-includes/wp-security-rename-login-feature.php:608
6189
  msgid "Confirm new password"
6190
+ msgstr "Conferma la nuova password"
6191
 
6192
  # @ default
6193
  #: other-includes/wp-security-rename-login-feature.php:612
6194
  msgid "Strength indicator"
6195
+ msgstr "Indicatore Forza"
6196
 
6197
  # @ default
6198
  #: other-includes/wp-security-rename-login-feature.php:613
6201
  "stronger, use upper and lower case letters, numbers, and symbols like ! \" ? "
6202
  "$ % ^ &amp; )."
6203
  msgstr ""
6204
+ "Suggerimento: La password deve essere di almeno sette caratteri. Per "
6205
+ "renderla più forte, usa lettere maiuscole e minuscole, numeri e simboli "
6206
+ "come ! \" ? $ % ^ &amp; )."
6207
 
6208
  # @ default
6209
  #: other-includes/wp-security-rename-login-feature.php:686
6210
  msgid "Registration Form"
6211
+ msgstr "Modulo Registrazione"
6212
 
6213
  # @ default
6214
  #: other-includes/wp-security-rename-login-feature.php:686
6215
  msgid "Register For This Site"
6216
+ msgstr "Registrazione per questo sito"
6217
 
6218
  # @ default
6219
  #: other-includes/wp-security-rename-login-feature.php:691
6220
  #: other-includes/wp-security-rename-login-feature.php:858
6221
  msgid "Username"
6222
+ msgstr "Non è utente"
6223
 
6224
  # @ default
6225
  #: other-includes/wp-security-rename-login-feature.php:695
6226
  msgid "E-mail"
6227
+ msgstr "E-mail"
6228
 
6229
  # @ default
6230
  #: other-includes/wp-security-rename-login-feature.php:706
6231
  msgid "A password will be e-mailed to you."
6232
+ msgstr "La password verrà inviata per posta elettronica."
6233
 
6234
  # @ default
6235
  #: other-includes/wp-security-rename-login-feature.php:714
6236
  #: other-includes/wp-security-rename-login-feature.php:897
6237
  msgid "Password Lost and Found"
6238
+ msgstr "Password Persa e Trovata"
6239
 
6240
  # @ default
6241
  #: other-includes/wp-security-rename-login-feature.php:714
6242
  #: other-includes/wp-security-rename-login-feature.php:897
6243
  msgid "Lost your password?"
6244
+ msgstr "Persa la password?"
6245
 
6246
  # @ default
6247
  #: other-includes/wp-security-rename-login-feature.php:760
6251
  "help, please see <a href=\"%1$s\">this documentation</a> or try the <a href="
6252
  "\"%2$s\">support forums</a>."
6253
  msgstr ""
6254
+ "<strong>ERRORE</strong>: I cookie sono bloccati causa un'uscita inaspettata. "
6255
+ "Per ulteriori informazioni, consulta <a href=\"%1$s\">questa "
6256
+ "documentazione</a> or try the <a href=\"%2$s\">support forums</a>."
6257
 
6258
  # @ default
6259
  #: other-includes/wp-security-rename-login-feature.php:761
6273
  "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
6274
  "browser. You must <a href=\"%s\">enable cookies</a> to use WordPress."
6275
  msgstr ""
6276
+ "<strong>ERRORE</strong>: I cookie sono bloccati o non supportati dal tuo "
6277
+ "browser. È necessario <a href=\"%s\">abilitare i cookie</a> per usare "
6278
+ "WordPress."
6279
 
6280
  # @ default
6281
  #: other-includes/wp-security-rename-login-feature.php:783
6282
  msgid "You have logged in successfully."
6283
+ msgstr "Hai fatto il login con successo."
6284
 
6285
  # @ default
6286
  #: other-includes/wp-security-rename-login-feature.php:817
6287
  msgid ""
6288
  "Session expired. Please log in again. You will not move away from this page."
6289
  msgstr ""
6290
+ "Sessione scaduta. Effettua il login nuovamente. Non allontanarti da questa "
6291
+ "pagina."
6292
 
6293
  # @ default
6294
  #: other-includes/wp-security-rename-login-feature.php:821
6295
  msgid "You are now logged out."
6296
+ msgstr "Ora sei disconnesso."
6297
 
6298
  # @ default
6299
  #: other-includes/wp-security-rename-login-feature.php:823
6300
  msgid "User registration is currently not allowed."
6301
+ msgstr "Registrazione utente non è attualmente consentita."
6302
 
6303
  # @ default
6304
  #: other-includes/wp-security-rename-login-feature.php:825
6305
  msgid "Check your e-mail for the confirmation link."
6306
+ msgstr "Controlla la tua e-mail per il link di conferma."
6307
 
6308
  # @ default
6309
  #: other-includes/wp-security-rename-login-feature.php:827
6310
  msgid "Check your e-mail for your new password."
6311
+ msgstr "Controlla la tua e-mail per la nuova password."
6312
 
6313
  # @ default
6314
  #: other-includes/wp-security-rename-login-feature.php:829
6315
  msgid "Registration complete. Please check your e-mail."
6316
+ msgstr "Registrazione completa. Controlla la tua e-mail."
6317
 
6318
  # @ default
6319
  #: other-includes/wp-security-rename-login-feature.php:831
6321
  "<strong>You have successfully updated WordPress!</strong> Please log back in "
6322
  "to experience the awesomeness."
6323
  msgstr ""
6324
+ "<strong>WordPress è stato aggiornato! </ strong> Si prega di accedere "
6325
+ "nuovamente a vivere la suggestione."
6326
 
6327
  # @ default
6328
  #: other-includes/wp-security-rename-login-feature.php:848
6333
  # @ default
6334
  #: other-includes/wp-security-rename-login-feature.php:873
6335
  msgid "Remember Me"
6336
+ msgstr "Ricordami"
6337
 
6338
  # @ default
6339
  #: other-includes/wp-security-unlock-request.php:13
6343
  # @ aiowpsecurity
6344
  #: other-includes/wp-security-unlock-request.php:48
6345
  msgid "Please enter a valid email address"
6346
+ msgstr "Inserisci un indirizzo email valido"
6347
 
6348
  # @ aiowpsecurity
6349
  #: other-includes/wp-security-unlock-request.php:59
6350
  msgid "User account not found!"
6351
+ msgstr "Account utente non trovato!"
6352
 
6353
  # @ aiowpsecurity
6354
  #: other-includes/wp-security-unlock-request.php:70
6355
  msgid "Error: No locked entry was found in the DB with your IP address range!"
6356
  msgstr ""
6357
+ "Errore: Nessun blocco è stato trovato nel DB con questo intervallo di "
6358
+ "indirizzi IP!"
6359
 
6360
  # @ aiowpsecurity
6361
  #: other-includes/wp-security-unlock-request.php:98
6362
  msgid "Email Address"
6363
+ msgstr "Indirizzo Email"
6364
+
6365
+ # @ aiowpsecurity
6366
+ #: admin/wp-security-filescan-menu.php:26
6367
+ msgid "DB Scan"
6368
+ msgstr ""
6369
+
6370
+ # @ aiowpsecurity
6371
+ #: admin/wp-security-filescan-menu.php:391
6372
+ msgid "Nonce check failed for manual db scan operation!"
6373
+ msgstr ""
6374
+ "Selezione non riuscita per l'operazione di scansione db manuale!\n"
6375
+ "ecco Tutti i Dettagli:"
6376
+
6377
+ # @ aiowpsecurity
6378
+ #: admin/wp-security-filescan-menu.php:402
6379
+ msgid ""
6380
+ "This feature will perform a basic database scan which will look for any "
6381
+ "common suspicious-looking strings and javascript and html code in some of "
6382
+ "the Wordpress core tables."
6383
  msgstr ""
6384
+ "Questa funzione esegue una scansione del data base per cercare eventuali "
6385
+ "stringhe comuni, javascript e codice html, dall'aspetto sospetto in alcune "
6386
+ "delle tabelle di base Wordpress."
6387
+
6388
+ # @ aiowpsecurity
6389
+ #: admin/wp-security-filescan-menu.php:403
6390
+ msgid ""
6391
+ "If the scan finds anything it will list all \"potentially\" malicious "
6392
+ "results but it is up to you to verify whether a result is a genuine example "
6393
+ "of a hacking attack or a false positive."
6394
+ msgstr ""
6395
+ "Se la scansione trova qualcosa elencherà tutti i risultati \"potenzialmente"
6396
+ "\" dannosi, ma sta a te poi verificare se il risultato è un vero e proprio "
6397
+ "esempio di un attacco di hacking o un falso positivo."
6398
+
6399
+ # @ aiowpsecurity
6400
+ #: admin/wp-security-filescan-menu.php:404
6401
+ msgid ""
6402
+ "As well as scanning for generic strings commonly used in malicious cases, "
6403
+ "this feature will also scan for some of the known \"pharma\" hack entries "
6404
+ "and if it finds any it will automatically delete them."
6405
+ msgstr ""
6406
+ "Così come la scansione per le stringhe generiche comunemente utilizzate in "
6407
+ "casi maligni, questa caratteristica farà anche la scansione per alcune delle "
6408
+ "note voci \"pharma\" hack e se ne rileva le cancellerà automaticamente."
6409
+
6410
+ # @ aiowpsecurity
6411
+ #: admin/wp-security-filescan-menu.php:405
6412
+ msgid ""
6413
+ "The WordPress core tables scanned by this feature include: posts, postmeta, "
6414
+ "comments, links, users, usermeta, and options tables."
6415
+ msgstr ""
6416
+ "Le tabelle di base di WordPress scansionate da questa funzionalità "
6417
+ "includono: posts, postmeta, comments, links, users, usermeta, e options."
6418
+
6419
+ # @ aiowpsecurity
6420
+ #: admin/wp-security-filescan-menu.php:410
6421
+ msgid "Database Scan"
6422
+ msgstr "Scansione Database"
6423
+
6424
+ # @ aiowpsecurity
6425
+ #: admin/wp-security-filescan-menu.php:416
6426
+ msgid "To perform a database scan click on the button below."
6427
+ msgstr "Per eseguire una scansione del database clicca sul pulsante qui sotto."
6428
+
6429
+ # @ aiowpsecurity
6430
+ #: admin/wp-security-filescan-menu.php:419
6431
+ msgid "Perform DB Scan"
6432
+ msgstr "Esegui Scansione DB"
6433
+
6434
+ # @ aiowpsecurity
6435
+ #: admin/wp-security-settings-menu.php:30
6436
+ msgid "Import/Export"
6437
+ msgstr "Importa/Esporta"
6438
+
6439
+ # @ aiowpsecurity
6440
+ #: admin/wp-security-settings-menu.php:517
6441
+ msgid "Please choose a file to import your settings from."
6442
+ msgstr "Si prega di scegliere un file da cui importare le impostazioni."
6443
+
6444
+ # @ aiowpsecurity
6445
+ #: admin/wp-security-settings-menu.php:537
6446
+ msgid "Import AIOWPS settings from file operation failed!"
6447
+ msgstr "Operazione importazione file impostazioni AIOWPS fallita!"
6448
+
6449
+ # @ aiowpsecurity
6450
+ #: admin/wp-security-settings-menu.php:542
6451
+ #: admin/wp-security-settings-menu.php:567
6452
+ msgid ""
6453
+ "The deletion of the import file failed. Please delete this file manually via "
6454
+ "the media menu for security purposes."
6455
+ msgstr ""
6456
+ "La cancellazione del file di importazione non è riuscita. Si prega di "
6457
+ "cancellare questo file manualmente tramite il menu media per motivi di "
6458
+ "sicurezza."
6459
+
6460
+ # @ aiowpsecurity
6461
+ #: admin/wp-security-settings-menu.php:544
6462
+ #: admin/wp-security-settings-menu.php:569
6463
+ msgid ""
6464
+ "The file you uploaded was also deleted for security purposes because it "
6465
+ "contains security settings details."
6466
+ msgstr ""
6467
+ "Il file caricato è stato eliminato anche per motivi di sicurezza perché "
6468
+ "contiene particolari impostazioni di protezione."
6469
+
6470
+ # @ aiowpsecurity
6471
+ #: admin/wp-security-settings-menu.php:552
6472
+ msgid "Your AIOWPS settings were successfully imported."
6473
+ msgstr "Le impostazioni AIOWPS sono state importate correttamente."
6474
+
6475
+ # @ aiowpsecurity
6476
+ #: admin/wp-security-settings-menu.php:553
6477
+ msgid ""
6478
+ "The deletion of the import file failed. Please delete this file manually via "
6479
+ "the media menu for security purposes because it contains security settings "
6480
+ "details."
6481
+ msgstr ""
6482
+ "La cancellazione del file di importazione non è riuscita. Si prega di "
6483
+ "cancellare questo file manualmente tramite il menu media per motivi di "
6484
+ "sicurezza perché contiene particolari impostazioni di protezione."
6485
+
6486
+ # @ aiowpsecurity
6487
+ #: admin/wp-security-settings-menu.php:555
6488
+ msgid ""
6489
+ "Your AIOWPS settings were successfully imported. The file you uploaded was "
6490
+ "also deleted for security purposes because it contains security settings "
6491
+ "details."
6492
+ msgstr ""
6493
+ "Le impostazioni AIOWPS sono state importate correttamente. Il file caricato "
6494
+ "è stato eliminato anche per motivi di sicurezza perché contiene particolari "
6495
+ "impostazioni di protezione."
6496
+
6497
+ # @ aiowpsecurity
6498
+ #: admin/wp-security-settings-menu.php:563
6499
+ msgid ""
6500
+ "The contents of your settings file appear invalid. Please check the contents "
6501
+ "of the file you are trying to import settings from."
6502
+ msgstr ""
6503
+ "Il contenuto del file impostazioni appare non valido. Controlla il contenuto "
6504
+ "del file che si sta tentando di importare."
6505
+
6506
+ # @ aiowpsecurity
6507
+ #: admin/wp-security-settings-menu.php:578
6508
+ msgid "Export or Import Your AIOWPS Settings"
6509
+ msgstr "Esportare o importare le impostazioni AIOWPS"
6510
+
6511
+ # @ aiowpsecurity
6512
+ #: admin/wp-security-settings-menu.php:581
6513
+ msgid ""
6514
+ "This section allows you to export or import your All In One WP Security & "
6515
+ "Firewall settings."
6516
+ msgstr ""
6517
+ "Questa sezione permette di esportare o importare le impostazioni del tuo All "
6518
+ "In One WP Security & Firewall."
6519
+
6520
+ # @ aiowpsecurity
6521
+ #: admin/wp-security-settings-menu.php:582
6522
+ msgid ""
6523
+ "This can be handy if you wanted to save time by applying the settings from "
6524
+ "one site to another site."
6525
+ msgstr ""
6526
+ "Questo può essere utile se si vuole risparmiare tempo applicando le "
6527
+ "impostazioni da un sito a un altro sito."
6528
+
6529
+ # @ aiowpsecurity
6530
+ #: admin/wp-security-settings-menu.php:583
6531
+ msgid ""
6532
+ "NOTE: Before importing, it is your responsibility to know what settings you "
6533
+ "are trying to import. Importing settings blindly can cause you to be locked "
6534
+ "out of your site."
6535
+ msgstr ""
6536
+ "NOTA: Prima di importare, è tua responsabilità sapere quali impostazioni "
6537
+ "stai tentando di importare. L'importazione delle impostazioni alla cieca può "
6538
+ "causare il blocco del tuo sito."
6539
+
6540
+ # @ aiowpsecurity
6541
+ #: admin/wp-security-settings-menu.php:584
6542
+ msgid ""
6543
+ "For Example: If a settings item rely on the domain URL then it may not work "
6544
+ "correctly when imported into a different domain."
6545
+ msgstr ""
6546
+ "Per esempio: se una voce impostazioni conta su l'URL del dominio allora può "
6547
+ "non funzionare correttamente quando importata in un dominio diverso."
6548
+
6549
+ # @ aiowpsecurity
6550
+ #: admin/wp-security-settings-menu.php:590
6551
+ #: admin/wp-security-settings-menu.php:599
6552
+ msgid "Export AIOWPS Settings"
6553
+ msgstr "Impostazioni Esportazione AIOWPS"
6554
+
6555
+ # @ aiowpsecurity
6556
+ #: admin/wp-security-settings-menu.php:596
6557
+ msgid ""
6558
+ "To export your All In One WP Security & Firewall settings click the button "
6559
+ "below."
6560
+ msgstr ""
6561
+ "Per esportare le impostazioni di All In One WP Security & Firewall clicca "
6562
+ "sul pulsante qui sotto."
6563
+
6564
+ # @ aiowpsecurity
6565
+ #: admin/wp-security-settings-menu.php:603
6566
+ #: admin/wp-security-settings-menu.php:622
6567
+ msgid "Import AIOWPS Settings"
6568
+ msgstr "Impostazioni Importazione AIOWPS"
6569
+
6570
+ # @ aiowpsecurity
6571
+ #: admin/wp-security-settings-menu.php:609
6572
+ msgid ""
6573
+ "Use this section to import your All In One WP Security & Firewall settings "
6574
+ "from a file."
6575
+ msgstr ""
6576
+ "Utilizzare questa sezione per importare le impostazioni di All In One WP "
6577
+ "Security & Firewall da un file"
6578
+
6579
+ # @ aiowpsecurity
6580
+ #: admin/wp-security-settings-menu.php:610
6581
+ msgid "Import File"
6582
+ msgstr "Importa File"
6583
+
6584
+ # @ aiowpsecurity
6585
+ #: admin/wp-security-settings-menu.php:616
6586
+ msgid ""
6587
+ "After selecting your file, click the button below to apply the settings to "
6588
+ "your site."
6589
+ msgstr ""
6590
+ "Dopo aver selezionato il file, clicca sul pulsante qui sotto per applicare "
6591
+ "le impostazioni al tuo sito."
6592
+
6593
+ # @ aiowpsecurity
6594
+ #: classes/wp-security-file-scan.php:263
6595
+ msgid ""
6596
+ "Starting DB scan.....please wait while the plugin scans your database......."
6597
+ msgstr ""
6598
+ "Avvio scansione DB ..... sei pregato di pazientare mentre il plugin esegue "
6599
+ "la scansione del database ......."
6600
+
6601
+ # @ aiowpsecurity
6602
+ #: classes/wp-security-file-scan.php:267
6603
+ msgid "Scanning options table........."
6604
+ msgstr "Scansione tabella options........."
6605
+
6606
+ # @ aiowpsecurity
6607
+ #: classes/wp-security-file-scan.php:336
6608
+ #, php-format
6609
+ msgid "%s and option_id: %s"
6610
+ msgstr "%s e option_id: %s"
6611
+
6612
+ # @ aiowpsecurity
6613
+ #: classes/wp-security-file-scan.php:339
6614
+ #, php-format
6615
+ msgid ""
6616
+ "Deletion of known pharma hack entry for option_name %s failed. Please delete "
6617
+ "this entry manually!"
6618
+ msgstr ""
6619
+ "Soppressione di una nota voce pharma hack per option_name %s fallito. Si "
6620
+ "prega di eliminare questa voce manualmente! "
6621
+
6622
+ # @ aiowpsecurity
6623
+ #: classes/wp-security-file-scan.php:341
6624
+ #, php-format
6625
+ msgid ""
6626
+ "The options table entry with known pharma hack for option_id %s with "
6627
+ "option_name %s was successfully deleted"
6628
+ msgstr ""
6629
+ "La voce della tabella options con il noto pharma hack per option_id %s with "
6630
+ "option_name %s è stata eliminata con successo"
6631
+
6632
+ # @ aiowpsecurity
6633
+ #: classes/wp-security-file-scan.php:355
6634
+ #, php-format
6635
+ msgid "Possible suspicious entry found (for option_id: %s) - %s "
6636
+ msgstr "Possibile voce sospetta trovata (per option_id: %s) - %s "
6637
+
6638
+ # @ aiowpsecurity
6639
+ #: classes/wp-security-file-scan.php:364
6640
+ msgid "No suspicious entries found in options table"
6641
+ msgstr "Nessuna voce sospetta trovata nella tabella options"
6642
+
6643
+ # @ aiowpsecurity
6644
+ #: classes/wp-security-file-scan.php:368
6645
+ msgid "Scanning posts table........."
6646
+ msgstr "Scansione tabella posts........."
6647
+
6648
+ # @ aiowpsecurity
6649
+ #: classes/wp-security-file-scan.php:408
6650
+ #, php-format
6651
+ msgid ""
6652
+ "Possible suspicious entry found (for Post ID: %s) in the following column - "
6653
+ "%s "
6654
+ msgstr ""
6655
+ "Possibile voce sospetta trovato (per Post ID: %s) nella colonna seguente - "
6656
+ "%s "
6657
+
6658
+ # @ aiowpsecurity
6659
+ #: classes/wp-security-file-scan.php:417
6660
+ msgid "No suspicious entries found in posts table"
6661
+ msgstr "Nessuna voce sospetta trovata nella tabella post"
6662
+
6663
+ # @ aiowpsecurity
6664
+ #: classes/wp-security-file-scan.php:421
6665
+ msgid "Scanning links table........."
6666
+ msgstr "Scansione tabella link........."
6667
+
6668
+ # @ aiowpsecurity
6669
+ #: classes/wp-security-file-scan.php:460 classes/wp-security-file-scan.php:511
6670
+ #: classes/wp-security-file-scan.php:539 classes/wp-security-file-scan.php:567
6671
+ #: classes/wp-security-file-scan.php:616
6672
+ #, php-format
6673
+ msgid "Possible suspicious entry - %s "
6674
+ msgstr "Possibile voce sospetta - %s "
6675
+
6676
+ # @ aiowpsecurity
6677
+ #: classes/wp-security-file-scan.php:469
6678
+ msgid "No suspicious entries found in links table"
6679
+ msgstr "Nessuna voce sospetta trovata nella tabella link"
6680
+
6681
+ # @ aiowpsecurity
6682
+ #: classes/wp-security-file-scan.php:473
6683
+ msgid "Scanning comments table........."
6684
+ msgstr "Scansione tabella comments........."
6685
+
6686
+ # @ aiowpsecurity
6687
+ #: classes/wp-security-file-scan.php:520
6688
+ msgid "No suspicious entries found in comments table"
6689
+ msgstr "Nessuna voce sospetta trovata nella tabella comments"
6690
+
6691
+ # @ aiowpsecurity
6692
+ #: classes/wp-security-file-scan.php:524
6693
+ msgid "Scanning postmeta table........."
6694
+ msgstr "Scansione tabella postmeta........."
6695
+
6696
+ # @ aiowpsecurity
6697
+ #: classes/wp-security-file-scan.php:548
6698
+ msgid "No suspicious entries found in postmeta table"
6699
+ msgstr "Nessuna voce sospetta trovata nella tabella postmeta"
6700
+
6701
+ # @ aiowpsecurity
6702
+ #: classes/wp-security-file-scan.php:552
6703
+ msgid "Scanning usermeta table........."
6704
+ msgstr "Scansione tabella usermeta........."
6705
+
6706
+ # @ aiowpsecurity
6707
+ #: classes/wp-security-file-scan.php:576
6708
+ msgid "No suspicious entries found in usermeta table"
6709
+ msgstr "Nessuna voce sospetta trovata nella tabella usermeta"
6710
+
6711
+ # @ aiowpsecurity
6712
+ #: classes/wp-security-file-scan.php:580
6713
+ msgid "Scanning users table........."
6714
+ msgstr "Scansione tabella users........."
6715
+
6716
+ # @ aiowpsecurity
6717
+ #: classes/wp-security-file-scan.php:625
6718
+ msgid "No suspicious entries found in users table"
6719
+ msgstr "Nessuna voce sospetta trovata nella tabella users"
6720
+
6721
+ # @ aiowpsecurity
6722
+ #: classes/wp-security-file-scan.php:632
6723
+ msgid ""
6724
+ "The plugin has detected that there are some potentially suspicious entries "
6725
+ "in your database."
6726
+ msgstr ""
6727
+ "Il plugin ha rilevato che ci sono alcune voci potenzialmente sospette nel "
6728
+ "database."
6729
+
6730
+ # @ aiowpsecurity
6731
+ #: classes/wp-security-file-scan.php:633
6732
+ msgid ""
6733
+ "Please verify the results listed below to confirm whether the entries "
6734
+ "detected are genuinely suspicious or if they are false positives."
6735
+ msgstr ""
6736
+ "Si prega di verificare i risultati elencati di seguito per confermare se le "
6737
+ "voci rilevate sono effettivamente sospette o sono falsi positivi."
6738
+
6739
+ # @ default
6740
+ #: classes/wp-security-file-scan.php:638 classes/wp-security-file-scan.php:653
6741
+ msgid "Disclaimer:"
6742
+ msgstr ""
6743
+
6744
+ # @ aiowpsecurity
6745
+ #: classes/wp-security-file-scan.php:639
6746
+ msgid ""
6747
+ "Even though this database scan has revealed some suspicious entries, this "
6748
+ "does not necessarily mean that other parts of your DB or site are also not "
6749
+ "compromised."
6750
+ msgstr ""
6751
+ "Anche se questa scansione del database ha rivelato alcune voci sospette, "
6752
+ "questo non significa necessariamente che le altre parti del vostro DB, o "
6753
+ "sito, non siano compromessi."
6754
+
6755
+ # @ aiowpsecurity
6756
+ #: classes/wp-security-file-scan.php:640 classes/wp-security-file-scan.php:655
6757
+ msgid ""
6758
+ "Please note that database scan performed by this feature is basic and looks "
6759
+ "for common malicious entries. Since hackers are continually evolving their "
6760
+ "methods this scan is not meant to be a guaranteed catch-all for malware."
6761
+ msgstr ""
6762
+ "Si prega di notare che la scansione dei database eseguita con questa "
6763
+ "funzione è basilare e cerca le voci malevoli comuni. Dal momento che gli "
6764
+ "hacker e i loro metodi sono in continua evoluzione questa scansione non è "
6765
+ "una totale garanzia per il malware."
6766
+
6767
+ # @ aiowpsecurity
6768
+ #: classes/wp-security-file-scan.php:641 classes/wp-security-file-scan.php:656
6769
+ #, php-format
6770
+ msgid ""
6771
+ "It is your responsibility to do the due diligence and perform a robust %s on "
6772
+ "your site if you wish to be more certain that your site is clean."
6773
+ msgstr ""
6774
+ "È tua responsabilità fare controlli migliori ed eseguire un robusto %s sul "
6775
+ "tuo sito se vuoi essere più sicuro che sia pulito."
6776
+
6777
+ # @ default
6778
+ #: classes/wp-security-file-scan.php:648
6779
+ msgid "DB Scan was completed successfully. No suspicious entries found."
6780
+ msgstr "Scansione DB completata con successo. Nessuna voce sospetta trovata."
6781
+
6782
+ # @ aiowpsecurity
6783
+ #: classes/wp-security-file-scan.php:654
6784
+ msgid ""
6785
+ "Even though the database scan has not revealed any suspicious entries, this "
6786
+ "does not necessarily mean that your site is actually completely clean or not "
6787
+ "compromised."
6788
+ msgstr ""
6789
+ "Anche se la scansione database non ha rivelato voci sospette, questo non "
6790
+ "garantisce che il sito sia completamente pulito o non compromesso."
6791
+
6792
+ # @ aiowpsecurity
6793
+ #: admin/wp-security-brute-force-menu.php:30
6794
+ msgid "Honeypot"
6795
+ msgstr ""
6796
+
6797
+ # @ aiowpsecurity
6798
+ #: admin/wp-security-brute-force-menu.php:714
6799
+ msgid ""
6800
+ "This feature allows you to add a special hidden \"honeypot\" field on the "
6801
+ "WordPress login page. This will only be visible to robots and not humans."
6802
+ msgstr ""
6803
+ "Questa funzione consente di aggiungere un particolare campo nascosto "
6804
+ "\"honeypot\" nella pagina di login di WordPress. Questo sarà visibile solo "
6805
+ "ai robot e non agli esseri umani."
6806
+
6807
+ # @ aiowpsecurity
6808
+ #: admin/wp-security-brute-force-menu.php:715
6809
+ msgid ""
6810
+ "Since robots usually fill in every input field from a login form, they will "
6811
+ "also submit a value for the special hidden honeypot field."
6812
+ msgstr ""
6813
+ "Dal momento che i robot di solito compilano ogni campo di input che trovano "
6814
+ "in un form di login, compileranno anche il campo speciale nascosto honeypot."
6815
+
6816
+ # @ aiowpsecurity
6817
+ #: admin/wp-security-brute-force-menu.php:716
6818
+ msgid ""
6819
+ "The way honeypots work is that a hidden field is placed somewhere inside a "
6820
+ "form which only robots will submit. If that field contains a value when the "
6821
+ "form is submitted then a robot has most likely submitted the form and it is "
6822
+ "consquently dealt with."
6823
+ msgstr ""
6824
+ "Il concetto su cui si basa honeypot è che essendo un campo nascosto è "
6825
+ "collocato da qualche parte all'interno di una form che solo i robot possono "
6826
+ "compilare. Se questo campo contiene un valore quando il modulo viene inviato "
6827
+ "significa che è stato riempito da un robot e verrà affrontato di conseguenza."
6828
+
6829
+ # @ aiowpsecurity
6830
+ #: admin/wp-security-brute-force-menu.php:717
6831
+ msgid ""
6832
+ "Therefore, if the plugin detects that this field has a value when the login "
6833
+ "form is submitted, then the robot which is attempting to login to your site "
6834
+ "will be redirected to its localhost address - http://127.0.0.1."
6835
+ msgstr ""
6836
+ "Pertanto, se il plugin rileva che questo campo ha un valore quando viene "
6837
+ "inviato il form di login, il robot che sta tentando di accedere al tuo sito "
6838
+ "sarà reindirizzato al suo indirizzo localhost - http://127.0.0.1."
6839
+
6840
+ # @ aiowpsecurity
6841
+ #: admin/wp-security-brute-force-menu.php:723
6842
+ msgid "Login Form Honeypot Settings"
6843
+ msgstr "Impostazioni Honeypot Login Form"
6844
+
6845
+ # @ aiowpsecurity
6846
+ #: admin/wp-security-brute-force-menu.php:734
6847
+ msgid "Enable Honeypot On Login Page"
6848
+ msgstr "Attiva Honeypot sulla pagina di Login"
6849
+
6850
+ # @ aiowpsecurity
6851
+ #: admin/wp-security-brute-force-menu.php:737
6852
+ msgid ""
6853
+ "Check this if you want to enable the honeypot feature for the login page"
6854
+ msgstr ""
6855
+ "Seleziona questa casella se vuoi abilitare la funzione honeypot per la "
6856
+ "pagina di login"
6857
+
6858
+ # @ aiowpsecurity
6859
+ #: admin/wp-security-filescan-menu.php:374
6860
+ msgid ""
6861
+ "This feature performs a basic database scan which will look for any common "
6862
+ "suspicious-looking strings and javascript and html code in some of the "
6863
+ "Wordpress core tables."
6864
+ msgstr ""
6865
+ "Questa funzione esegue una scansione del database di base che andrà a "
6866
+ "cercare tutte le stringhe comuni, javascript e codice html sospetti in "
6867
+ "alcune delle tabelle di base Wordpress."
6868
+
6869
+ # @ aiowpsecurity
6870
+ #: admin/wp-security-misc-options-menu.php:24
6871
+ msgid "Frames"
6872
+ msgstr ""
6873
+
6874
+ # @ aiowpsecurity
6875
+ #: admin/wp-security-misc-options-menu.php:138
6876
+ msgid "Frame Display Prevention feature settings saved!"
6877
+ msgstr "Impostazioni funzione prevenzione di visualizzazione Frame salvate!"
6878
+
6879
+ # @ aiowpsecurity
6880
+ #: admin/wp-security-misc-options-menu.php:143
6881
+ msgid "Prevent Your Site From Being Displayed In a Frame"
6882
+ msgstr "Impedire che il tuo sito venga visualizzato in un frame"
6883
+
6884
+ # @ aiowpsecurity
6885
+ #: admin/wp-security-misc-options-menu.php:149
6886
+ msgid ""
6887
+ "This feature allows you to prevent other sites from displaying any of your "
6888
+ "content via a frame or iframe."
6889
+ msgstr ""
6890
+ "Questa funzione consente di impedire ad altri siti di visualizzare i tuoi "
6891
+ "contenuti tramite un frame o iframe."
6892
+
6893
+ # @ aiowpsecurity
6894
+ #: admin/wp-security-misc-options-menu.php:150
6895
+ msgid ""
6896
+ "When enabled, this feature will set the \"X-Frame-Options\" paramater to "
6897
+ "\"sameorigin\" in the HTTP header."
6898
+ msgstr ""
6899
+ "Se abilitata, questa funzione imposta il parametro \"X-Frame-Options\" a "
6900
+ "\"sameorigin\" nell'intestazione HTTP."
6901
+
6902
+ # @ aiowpsecurity
6903
+ #: admin/wp-security-misc-options-menu.php:155
6904
+ msgid "Enable iFrame Protection"
6905
+ msgstr "Attiva Protezione iFrame"
6906
+
6907
+ # @ aiowpsecurity
6908
+ #: admin/wp-security-misc-options-menu.php:158
6909
+ msgid ""
6910
+ "Check this if you want to stop other sites from displaying your content in a "
6911
+ "frame or iframe."
6912
+ msgstr ""
6913
+ "Seleziona questa casella se vuoi impedire ad altri siti di visualizzare i "
6914
+ "tuoi contenuti in un frame o iframe."
6915
+
6916
+ # @ aiowpsecurity
6917
+ #: admin/wp-security-spam-menu.php:26
6918
+ msgid "BuddyPress"
6919
+ msgstr ""
6920
+
6921
+ # @ aiowpsecurity
6922
+ #: admin/wp-security-spam-menu.php:321
6923
+ msgid "BuddyPress SPAM Settings"
6924
+ msgstr "Impostazioni BuddyPress SPAM"
6925
+
6926
+ # @ aiowpsecurity
6927
+ #: admin/wp-security-spam-menu.php:326
6928
+ msgid "Add Captcha To BuddyPress Registration Form"
6929
+ msgstr "Aggiungere Captcha nel Modulo di Registrazione BuddyPress"
6930
+
6931
+ # @ aiowpsecurity
6932
+ #: admin/wp-security-spam-menu.php:330
6933
+ msgid ""
6934
+ "This feature will add a simple math captcha field in the BuddyPress "
6935
+ "registration form."
6936
+ msgstr ""
6937
+ "Questa caratteristica aggiunge un campo captcha matematico semplice nel "
6938
+ "modulo di registrazione BuddyPress."
6939
+
6940
+ # @ aiowpsecurity
6941
+ #: admin/wp-security-spam-menu.php:331
6942
+ msgid ""
6943
+ "Adding a captcha field in the registration form is a simple way of greatly "
6944
+ "reducing SPAM signups from bots without using .htaccess rules."
6945
+ msgstr ""
6946
+ "Aggiunta di un campo captcha nel modulo di registrazione è un modo semplice "
6947
+ "di ridurre notevolmente iscrizioni da bots spam senza utilizzare regole ."
6948
+ "htaccess."
6949
+
6950
+ # @ aiowpsecurity
6951
+ #: admin/wp-security-spam-menu.php:341
6952
+ msgid "Enable Captcha On BuddyPress Registration Form"
6953
+ msgstr "Attiva Captcha nella Pagina di Registrazione di BuddyPress"
6954
+
6955
+ # @ aiowpsecurity
6956
+ #: admin/wp-security-spam-menu.php:344
6957
+ msgid ""
6958
+ "Check this if you want to insert a captcha field on the BuddyPress "
6959
+ "registration forms"
6960
+ msgstr ""
6961
+ "Seleziona questo se desideri inserire un campo captcha nel modulo di "
6962
+ "registrazione BuddyPress"
6963
+
6964
+ # @ aiowpsecurity
6965
+ #: admin/wp-security-spam-menu.php:353
6966
+ msgid ""
6967
+ "BuddyPress is not active! In order to use this feature you will need to have "
6968
+ "BuddyPress installed and activated."
6969
+ msgstr ""
6970
+ "BuddyPress non è attivo! Per poter utilizzare questa funzione è necessario "
6971
+ "aver installato e attivato BuddyPress."
6972
+
6973
+ # @ aiowpsecurity
6974
+ #: admin/wp-security-user-registration-menu.php:209
6975
+ msgid ""
6976
+ "The core default behaviour for WordPress Multi Site regarding user "
6977
+ "registration is that all users are registered via the main site."
6978
+ msgstr ""
6979
+ "Il comportamento predefinito di base per WordPress Multi Site, per quanto "
6980
+ "riguarda la registrazione degli utenti, è che tutti gli utenti sono "
6981
+ "registrati attraverso il sito principale."
6982
+
6983
+ # @ aiowpsecurity
6984
+ #: admin/wp-security-user-registration-menu.php:210
6985
+ msgid ""
6986
+ "Therefore, if you would like to add a captcha form to the registration page "
6987
+ "for a Multi Site, please go to \"Registration Captcha\" settings on the main "
6988
+ "site."
6989
+ msgstr ""
6990
+ "Pertanto, se si desidera aggiungere un modulo captcha alla pagina di "
6991
+ "registrazione per un Multi Sito, si prega di andare in Impostazioni "
6992
+ "\"Registrazione Captcha\" sul sito principale."
6993
+
6994
+ # @ aiowpsecurity
6995
+ #: classes/grade-system/wp-security-feature-item-manager.php:86
6996
+ msgid "Enable Login Honeypot"
6997
+ msgstr "Attiva Honeypot Login"
6998
+
6999
+ # @ aiowpsecurity
7000
+ #: classes/grade-system/wp-security-feature-item-manager.php:102
7001
+ msgid "BuddyPress Registration Captcha"
7002
+ msgstr "BuddyPress Registrazione Captcha"
7003
+
7004
+ # @ aiowpsecurity
7005
+ #: classes/wp-security-general-init-tasks.php:252
7006
+ msgid "Enter something special:"
7007
+ msgstr "Inserisci qualcosa di speciale:"
7008
+
7009
+ # @ aiowpsecurity
7010
+ #: classes/wp-security-general-init-tasks.php:348
7011
+ msgid "Your CAPTCHA answer was incorrect - please try again."
7012
+ msgstr "La tua risposta CAPTCHA è sbagliata - si prega di riprovare."
7013
+
7014
+ # @ aiowpsecurity
7015
+ #: classes/wp-security-user-login.php:43
7016
+ msgid ""
7017
+ "<strong>ERROR</strong>: Login failed because your IP address has been "
7018
+ "blocked. Please contact the administrator."
7019
+ msgstr ""
7020
+ "<strong>ERRORE</strong>: Accesso non riuscito perché il tuo indirizzo IP è "
7021
+ "stato bloccato a causa di un numero eccessivo di tentativi di login "
7022
+ "falliti.\n"
7023
+ " Si prega di contattare l'amministratore."
languages/aiowpsecurity-pt_BR.mo CHANGED
Binary file
languages/aiowpsecurity-pt_BR.po CHANGED
@@ -2,13 +2,13 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AIOWPS\n"
4
  "POT-Creation-Date: 2013-12-03 12:53+1000\n"
5
- "PO-Revision-Date: 2014-05-07 11:28-0300\n"
6
  "Last-Translator: Sms Lbr <smslbr@gmail.com>\n"
7
  "Language-Team: Li9 <suporte@li9.com.br>\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 1.6.5\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -67,7 +67,7 @@ msgstr "Prevenção SPAM"
67
 
68
  #: all-in-one-wp-security/admin/wp-security-admin-init.php:183
69
  msgid "Scanner"
70
- msgstr ""
71
 
72
  #: all-in-one-wp-security/admin/wp-security-admin-init.php:185
73
  msgid "Maintenance"
@@ -269,7 +269,7 @@ msgstr ""
269
 
270
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:119
271
  msgid "Current Score of Your Site: "
272
- msgstr ""
273
 
274
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:129
275
  msgid "Security Points Breakdown"
@@ -287,7 +287,7 @@ msgstr ""
287
 
288
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:178
289
  msgid "Admin Username"
290
- msgstr ""
291
 
292
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:193
293
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:27
@@ -324,7 +324,7 @@ msgstr ""
324
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:291
325
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:33
326
  msgid "Logged In Users"
327
- msgstr ""
328
 
329
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:301
330
  msgid "Number of users currently logged in site-wide is:"
@@ -334,7 +334,7 @@ msgstr ""
334
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:324
335
  #, php-format
336
  msgid "Go to the %s menu to see more details"
337
- msgstr ""
338
 
339
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:307
340
  msgid "There are no other site-wide users currently logged in."
@@ -342,11 +342,11 @@ msgstr ""
342
 
343
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:323
344
  msgid "Number of users currently logged into your site is:"
345
- msgstr ""
346
 
347
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:329
348
  msgid "There are no other users currently logged in."
349
- msgstr ""
350
 
351
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:340
352
  msgid "Spread the Word"
@@ -360,25 +360,25 @@ msgstr ""
360
 
361
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:367
362
  msgid "Site Info"
363
- msgstr ""
364
 
365
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:369
366
  msgid "Plugin Version"
367
- msgstr ""
368
 
369
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:370
370
  msgid "WP Version"
371
- msgstr ""
372
 
373
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:372
374
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:374
375
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:395
376
  msgid "Version"
377
- msgstr ""
378
 
379
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:373
380
  msgid "Table Prefix"
381
- msgstr ""
382
 
383
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:375
384
  msgid "Session Save Path"
@@ -402,13 +402,13 @@ msgstr ""
402
 
403
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:384
404
  msgid "Active Plugins"
405
- msgstr ""
406
 
407
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:394
408
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:130
409
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:149
410
  msgid "Name"
411
- msgstr ""
412
 
413
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:396
414
  msgid "Plugin URL"
@@ -447,7 +447,7 @@ msgstr ""
447
 
448
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:122
449
  msgid "Change Database Prefix"
450
- msgstr ""
451
 
452
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:125
453
  msgid ""
@@ -507,7 +507,7 @@ msgstr ""
507
 
508
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:171
509
  msgid "OR"
510
- msgstr ""
511
 
512
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:173
513
  msgid ""
@@ -517,7 +517,7 @@ msgstr ""
517
 
518
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:177
519
  msgid "Change DB Prefix"
520
- msgstr ""
521
 
522
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:198
523
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:86
@@ -578,7 +578,7 @@ msgstr ""
578
 
579
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:298
580
  msgid "Create DB Backup Now"
581
- msgstr ""
582
 
583
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:302
584
  msgid "Automated Scheduled Backups"
@@ -586,7 +586,7 @@ msgstr ""
586
 
587
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:314
588
  msgid "Enable Automated Scheduled Backups"
589
- msgstr ""
590
 
591
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:317
592
  msgid ""
@@ -596,7 +596,7 @@ msgstr ""
596
 
597
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:321
598
  msgid "Backup Time Interval"
599
- msgstr ""
600
 
601
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:324
602
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:259
@@ -629,7 +629,7 @@ msgstr ""
629
 
630
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:338
631
  msgid "Send Backup File Via Email"
632
- msgstr ""
633
 
634
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:341
635
  msgid ""
@@ -752,7 +752,7 @@ msgstr ""
752
 
753
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:206
754
  msgid "View Scan Details & Clear This Message"
755
- msgstr ""
756
 
757
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:215
758
  msgid ""
@@ -800,15 +800,15 @@ msgstr ""
800
 
801
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:233
802
  msgid "Perform Scan Now"
803
- msgstr ""
804
 
805
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:237
806
  msgid "File Change Detection Settings"
807
- msgstr ""
808
 
809
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:249
810
  msgid "Enable Automated File Change Detection Scan"
811
- msgstr ""
812
 
813
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:252
814
  msgid ""
@@ -818,7 +818,7 @@ msgstr ""
818
 
819
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:256
820
  msgid "Scan Time Interval"
821
- msgstr ""
822
 
823
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:263
824
  msgid "Set the value for how often you would like a scan to occur"
@@ -826,7 +826,7 @@ msgstr ""
826
 
827
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:267
828
  msgid "File Types To Ignore"
829
- msgstr ""
830
 
831
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:270
832
  msgid ""
@@ -861,7 +861,7 @@ msgstr ""
861
 
862
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:284
863
  msgid "Files/Directories To Ignore"
864
- msgstr ""
865
 
866
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:287
867
  msgid ""
@@ -913,27 +913,27 @@ msgstr "Os seguintes arquivos foram adicionados para o seu host."
913
  #: all-in-one-wp-security/admin/wp-security-settings-menu.php:26
914
  #: all-in-one-wp-security/admin/wp-security-settings-menu.php:27
915
  msgid "File"
916
- msgstr ""
917
 
918
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:348
919
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:369
920
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:393
921
  msgid "File Size"
922
- msgstr ""
923
 
924
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:349
925
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:370
926
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:394
927
  msgid "File Modified"
928
- msgstr ""
929
 
930
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:365
931
  msgid "The following files were removed from your host."
932
- msgstr ""
933
 
934
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:389
935
  msgid "The following files were changed on your host."
936
- msgstr ""
937
 
938
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:26
939
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:63
@@ -964,7 +964,7 @@ msgstr ""
964
 
965
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:106
966
  msgid "File Permissions Scan"
967
- msgstr ""
968
 
969
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:109
970
  msgid ""
@@ -1167,7 +1167,7 @@ msgstr ""
1167
 
1168
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:430
1169
  msgid "No Action Required"
1170
- msgstr ""
1171
 
1172
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:470
1173
  #, php-format
@@ -2667,11 +2667,11 @@ msgstr ""
2667
 
2668
  #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:297
2669
  msgid "Please enter a value for your username. "
2670
- msgstr ""
2671
 
2672
  #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:304
2673
  msgid "Username Successfully Changed!"
2674
- msgstr ""
2675
 
2676
  #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:324
2677
  msgid "Account Login Name"
@@ -2695,7 +2695,7 @@ msgstr ""
2695
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:31
2696
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:47
2697
  msgid "Force Logout"
2698
- msgstr ""
2699
 
2700
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:32
2701
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:653
@@ -3210,22 +3210,24 @@ msgid ""
3210
  "You have entered an incorrectly formatted IP address or domain name. Please "
3211
  "try again."
3212
  msgstr ""
 
 
3213
 
3214
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:178
3215
  msgid "No items found."
3216
- msgstr ""
3217
 
3218
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:281
3219
  msgid "Bulk Actions"
3220
- msgstr ""
3221
 
3222
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:291
3223
  msgid "Apply"
3224
- msgstr ""
3225
 
3226
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:365
3227
  msgid "Show all dates"
3228
- msgstr ""
3229
 
3230
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:378
3231
  #, php-format
@@ -3234,24 +3236,24 @@ msgstr ""
3234
 
3235
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:394
3236
  msgid "List View"
3237
- msgstr ""
3238
 
3239
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:395
3240
  msgid "Excerpt View"
3241
- msgstr ""
3242
 
3243
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:421
3244
  #, php-format
3245
  msgid "%s pending"
3246
- msgstr ""
3247
 
3248
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:653
3249
  msgid "Select All"
3250
- msgstr ""
3251
 
3252
  #: all-in-one-wp-security/classes/wp-security-backup.php:177
3253
  msgid "All In One WP Security - Site Database Backup"
3254
- msgstr ""
3255
 
3256
  #: all-in-one-wp-security/classes/wp-security-backup.php:179
3257
  msgid "Attached is your latest DB backup file for site URL"
@@ -3355,11 +3357,11 @@ msgstr "Um arquivo substituido foi detectado em seu sistema do website URL "
3355
 
3356
  #: all-in-one-wp-security/classes/wp-security-file-scan.php:60
3357
  msgid ". Scan was generated on"
3358
- msgstr ".Scan foi gerado em"
3359
 
3360
  #: all-in-one-wp-security/classes/wp-security-file-scan.php:61
3361
  msgid "Login to your site to view the scan details."
3362
- msgstr ""
3363
 
3364
  #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:158
3365
  msgid "Please enter an answer in the CAPTCHA field."
@@ -3492,7 +3494,7 @@ msgstr ""
3492
 
3493
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:29
3494
  msgid "Remove WP Generatore Meta Tag"
3495
- msgstr ""
3496
 
3497
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:35
3498
  msgid "Change Display Name"
@@ -3512,7 +3514,7 @@ msgstr "Aprovação do Registro"
3512
 
3513
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:67
3514
  msgid "WordPress Files Access"
3515
- msgstr ""
3516
 
3517
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:71
3518
  msgid "IP and User Agent Blacklisting"
@@ -3524,7 +3526,7 @@ msgstr "Ativar Firewall Básico"
3524
 
3525
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:76
3526
  msgid "Enable Pingback Vulnerability Protection"
3527
- msgstr ""
3528
 
3529
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:82
3530
  msgid "Forbid Proxy Comments"
2
  msgstr ""
3
  "Project-Id-Version: AIOWPS\n"
4
  "POT-Creation-Date: 2013-12-03 12:53+1000\n"
5
+ "PO-Revision-Date: 2014-08-19 12:18-0300\n"
6
  "Last-Translator: Sms Lbr <smslbr@gmail.com>\n"
7
  "Language-Team: Li9 <suporte@li9.com.br>\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.6.7\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
67
 
68
  #: all-in-one-wp-security/admin/wp-security-admin-init.php:183
69
  msgid "Scanner"
70
+ msgstr "Verificador"
71
 
72
  #: all-in-one-wp-security/admin/wp-security-admin-init.php:185
73
  msgid "Maintenance"
269
 
270
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:119
271
  msgid "Current Score of Your Site: "
272
+ msgstr "Avaliação atual do seu Website"
273
 
274
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:129
275
  msgid "Security Points Breakdown"
287
 
288
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:178
289
  msgid "Admin Username"
290
+ msgstr "Usuário Administrativo"
291
 
292
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:193
293
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:27
324
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:291
325
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:33
326
  msgid "Logged In Users"
327
+ msgstr "Usuários Logados"
328
 
329
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:301
330
  msgid "Number of users currently logged in site-wide is:"
334
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:324
335
  #, php-format
336
  msgid "Go to the %s menu to see more details"
337
+ msgstr "Vá para o %s menu para ver mais detalhes"
338
 
339
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:307
340
  msgid "There are no other site-wide users currently logged in."
342
 
343
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:323
344
  msgid "Number of users currently logged into your site is:"
345
+ msgstr "O número de usuários logados em seu website é:"
346
 
347
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:329
348
  msgid "There are no other users currently logged in."
349
+ msgstr "Não há outros usuários atualmente logados."
350
 
351
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:340
352
  msgid "Spread the Word"
360
 
361
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:367
362
  msgid "Site Info"
363
+ msgstr "Informações Website"
364
 
365
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:369
366
  msgid "Plugin Version"
367
+ msgstr "Versão do Plugin"
368
 
369
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:370
370
  msgid "WP Version"
371
+ msgstr "Versão WP"
372
 
373
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:372
374
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:374
375
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:395
376
  msgid "Version"
377
+ msgstr "Versão"
378
 
379
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:373
380
  msgid "Table Prefix"
381
+ msgstr "Prefixo Tabela"
382
 
383
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:375
384
  msgid "Session Save Path"
402
 
403
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:384
404
  msgid "Active Plugins"
405
+ msgstr "Plugins Ativos"
406
 
407
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:394
408
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:130
409
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:149
410
  msgid "Name"
411
+ msgstr "Nome"
412
 
413
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:396
414
  msgid "Plugin URL"
447
 
448
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:122
449
  msgid "Change Database Prefix"
450
+ msgstr "Alterar o Prefixo do Banco de Dados"
451
 
452
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:125
453
  msgid ""
507
 
508
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:171
509
  msgid "OR"
510
+ msgstr "OU"
511
 
512
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:173
513
  msgid ""
517
 
518
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:177
519
  msgid "Change DB Prefix"
520
+ msgstr "Alterar Prefixo B"
521
 
522
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:198
523
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:86
578
 
579
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:298
580
  msgid "Create DB Backup Now"
581
+ msgstr "Criar Agora um Backup do DB"
582
 
583
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:302
584
  msgid "Automated Scheduled Backups"
586
 
587
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:314
588
  msgid "Enable Automated Scheduled Backups"
589
+ msgstr "Permitir Agendar Backups Automáticos"
590
 
591
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:317
592
  msgid ""
596
 
597
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:321
598
  msgid "Backup Time Interval"
599
+ msgstr "Intervalo do Tempo de Backup"
600
 
601
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:324
602
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:259
629
 
630
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:338
631
  msgid "Send Backup File Via Email"
632
+ msgstr "Enviar Arquivo Backup via Email"
633
 
634
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:341
635
  msgid ""
752
 
753
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:206
754
  msgid "View Scan Details & Clear This Message"
755
+ msgstr "Veja os Detalhes da Verificação & Apague esta Mensagem"
756
 
757
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:215
758
  msgid ""
800
 
801
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:233
802
  msgid "Perform Scan Now"
803
+ msgstr "Efetue uma Verificação Agora"
804
 
805
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:237
806
  msgid "File Change Detection Settings"
807
+ msgstr "Configuração para Detecção de Arquivos Alterados"
808
 
809
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:249
810
  msgid "Enable Automated File Change Detection Scan"
811
+ msgstr "Permitir Detecção Automática de Arquivos Alterados"
812
 
813
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:252
814
  msgid ""
818
 
819
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:256
820
  msgid "Scan Time Interval"
821
+ msgstr "Intervalo de Tempo para a Verificação"
822
 
823
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:263
824
  msgid "Set the value for how often you would like a scan to occur"
826
 
827
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:267
828
  msgid "File Types To Ignore"
829
+ msgstr "Tipos de Arquivo para Ignorar"
830
 
831
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:270
832
  msgid ""
861
 
862
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:284
863
  msgid "Files/Directories To Ignore"
864
+ msgstr "Arquivos/Diretórios para Ignorar"
865
 
866
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:287
867
  msgid ""
913
  #: all-in-one-wp-security/admin/wp-security-settings-menu.php:26
914
  #: all-in-one-wp-security/admin/wp-security-settings-menu.php:27
915
  msgid "File"
916
+ msgstr "Arquivo"
917
 
918
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:348
919
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:369
920
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:393
921
  msgid "File Size"
922
+ msgstr "Tamanho Arquivo"
923
 
924
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:349
925
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:370
926
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:394
927
  msgid "File Modified"
928
+ msgstr "Arquivo Modificado"
929
 
930
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:365
931
  msgid "The following files were removed from your host."
932
+ msgstr "Os seguintes arquivos foram removidos do seu provedor."
933
 
934
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:389
935
  msgid "The following files were changed on your host."
936
+ msgstr "Os seguintes arquivos foram alterados em seu provedor."
937
 
938
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:26
939
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:63
964
 
965
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:106
966
  msgid "File Permissions Scan"
967
+ msgstr "Verificação de Permissão de Arquivos"
968
 
969
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:109
970
  msgid ""
1167
 
1168
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:430
1169
  msgid "No Action Required"
1170
+ msgstr "Ação não Necessária"
1171
 
1172
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:470
1173
  #, php-format
2667
 
2668
  #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:297
2669
  msgid "Please enter a value for your username. "
2670
+ msgstr "Por favor, digite o seu nome de usuário."
2671
 
2672
  #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:304
2673
  msgid "Username Successfully Changed!"
2674
+ msgstr "Nome de usuário alterado com Sucesso!"
2675
 
2676
  #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:324
2677
  msgid "Account Login Name"
2695
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:31
2696
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:47
2697
  msgid "Force Logout"
2698
+ msgstr "Forçar Logout"
2699
 
2700
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:32
2701
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:653
3210
  "You have entered an incorrectly formatted IP address or domain name. Please "
3211
  "try again."
3212
  msgstr ""
3213
+ "Você inseriu a forma incorreta de um endereço IP ou nome do domínio. Por "
3214
+ "favor, tente novamente."
3215
 
3216
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:178
3217
  msgid "No items found."
3218
+ msgstr "Itens não encontrados."
3219
 
3220
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:281
3221
  msgid "Bulk Actions"
3222
+ msgstr "Ações em Massa"
3223
 
3224
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:291
3225
  msgid "Apply"
3226
+ msgstr "Ativar"
3227
 
3228
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:365
3229
  msgid "Show all dates"
3230
+ msgstr "Mostrar todas Datas"
3231
 
3232
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:378
3233
  #, php-format
3236
 
3237
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:394
3238
  msgid "List View"
3239
+ msgstr "Ver Lista"
3240
 
3241
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:395
3242
  msgid "Excerpt View"
3243
+ msgstr "Ver Resumo"
3244
 
3245
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:421
3246
  #, php-format
3247
  msgid "%s pending"
3248
+ msgstr "%s pendente"
3249
 
3250
  #: all-in-one-wp-security/admin/general/wp-security-list-table.php:653
3251
  msgid "Select All"
3252
+ msgstr "Selecione Tudo"
3253
 
3254
  #: all-in-one-wp-security/classes/wp-security-backup.php:177
3255
  msgid "All In One WP Security - Site Database Backup"
3256
+ msgstr "All In One WP Security - Backup Banco de Dados do Website"
3257
 
3258
  #: all-in-one-wp-security/classes/wp-security-backup.php:179
3259
  msgid "Attached is your latest DB backup file for site URL"
3357
 
3358
  #: all-in-one-wp-security/classes/wp-security-file-scan.php:60
3359
  msgid ". Scan was generated on"
3360
+ msgstr ". Verificação foi gerada em"
3361
 
3362
  #: all-in-one-wp-security/classes/wp-security-file-scan.php:61
3363
  msgid "Login to your site to view the scan details."
3364
+ msgstr "Logue-se em seu website para ver os detalhes da verificação."
3365
 
3366
  #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:158
3367
  msgid "Please enter an answer in the CAPTCHA field."
3494
 
3495
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:29
3496
  msgid "Remove WP Generatore Meta Tag"
3497
+ msgstr "Remover Gerador da Meta Tag WP "
3498
 
3499
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:35
3500
  msgid "Change Display Name"
3514
 
3515
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:67
3516
  msgid "WordPress Files Access"
3517
+ msgstr "Acesso Arquivos WordPress"
3518
 
3519
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:71
3520
  msgid "IP and User Agent Blacklisting"
3526
 
3527
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:76
3528
  msgid "Enable Pingback Vulnerability Protection"
3529
+ msgstr "Ativar Proteção Vulnerabilidade Pingback"
3530
 
3531
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:82
3532
  msgid "Forbid Proxy Comments"
languages/aiowpsecurity-ru_RU.mo CHANGED
Binary file
languages/aiowpsecurity-ru_RU.po CHANGED
@@ -1,76 +1,106 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: All In One WP Security & Firewall\n"
4
- "POT-Creation-Date: 2013-07-22 17:50+1000\n"
5
- "PO-Revision-Date: 2013-09-29 16:28+0200\n"
6
- "Last-Translator: Игорь Очеретный <znamensky98@gmail.com>\n"
7
- "Language-Team: \n"
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
  "X-Generator: Poedit 1.5.7\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Basepath: .\n"
 
 
 
14
  "X-Poedit-SearchPath-0: ..\n"
15
 
16
- #: ../admin/wp-security-admin-init.php:140
17
  msgid "WP Security"
18
  msgstr "WP Security"
19
 
20
- #: ../admin/wp-security-admin-init.php:141
 
21
  msgid "Dashboard"
22
  msgstr "Панель управления"
23
 
24
- #: ../admin/wp-security-admin-init.php:142
25
  msgid "Settings"
26
  msgstr "Настройки"
27
 
28
- #: ../admin/wp-security-admin-init.php:143
29
  msgid "User Accounts"
30
  msgstr "Администраторы"
31
 
32
- #: ../admin/wp-security-admin-init.php:144
33
  msgid "User Login"
34
  msgstr "Авторизация"
35
 
36
- #: ../admin/wp-security-admin-init.php:145
 
 
 
 
37
  msgid "Database Security"
38
  msgstr "База данных"
39
 
40
- #: ../admin/wp-security-admin-init.php:146
41
  msgid "Filesystem Security"
42
  msgstr "Файловая система"
43
 
44
- #: ../admin/wp-security-admin-init.php:147
45
  msgid "WHOIS Lookup"
46
  msgstr "WHOIS-поиск"
47
 
48
- #: ../admin/wp-security-admin-init.php:148
49
  msgid "Blacklist Manager"
50
  msgstr "Черный список"
51
 
52
- #: ../admin/wp-security-admin-init.php:149
53
  msgid "Firewall"
54
  msgstr "Файерволл"
55
 
56
- #: ../admin/wp-security-admin-init.php:150
 
 
 
 
 
 
 
 
 
 
 
 
57
  msgid "Maintenance"
58
  msgstr "Режим обслуживания"
59
 
60
- #: ../admin/wp-security-admin-menu.php:43
 
 
 
 
61
  msgid "Settings successfully updated."
62
  msgstr "Настройки успешно сохранены!"
63
 
64
- #: ../admin/wp-security-admin-menu.php:50
65
  msgid "The selected record(s) deleted successfully!"
66
  msgstr "Выбранные записи удалены!"
67
 
68
- #: ../admin/wp-security-blacklist-menu.php:77
 
 
 
 
69
  msgid "Nonce check failed for save blacklist settings!"
70
  msgstr "Настройки черного списка сохранить не удалось!"
71
 
72
- #: ../admin/wp-security-blacklist-menu.php:129
73
- #: ../admin/wp-security-list-comment-spammer-ip.php:137
 
74
  msgid ""
75
  "The plugin was unable to write to the .htaccess file. Please edit file "
76
  "manually."
@@ -78,11 +108,11 @@ msgstr ""
78
  "Не удалось сделать записи в файле .htaccess file. Пожалуйста, отредактируйте "
79
  "файл вручную."
80
 
81
- #: ../admin/wp-security-blacklist-menu.php:136
82
  msgid "Ban IPs or User Agents"
83
  msgstr "Бан по IP-адресам или юзер-агентам"
84
 
85
- #: ../admin/wp-security-blacklist-menu.php:139
86
  msgid ""
87
  "The All In One WP Security Blacklist feature gives you the option of banning "
88
  "certain host IP addresses or ranges and also user agents."
@@ -90,7 +120,7 @@ msgstr ""
90
  "Функция «Черный список» позволяет блокировать определенные IP-адреса, "
91
  "диапазоны и юзер-агенты,"
92
 
93
- #: ../admin/wp-security-blacklist-menu.php:140
94
  msgid ""
95
  "This feature will deny total site access for users which have IP addresses "
96
  "or user agents matching those which you have configured in the settings "
@@ -99,14 +129,14 @@ msgstr ""
99
  "отказывая в доступе к сайту тем пользователям и ботам, которые использовали "
100
  "эти IP-адреса для спама или по другим причинам."
101
 
102
- #: ../admin/wp-security-blacklist-menu.php:141
103
  msgid ""
104
  "The plugin achieves this by making appropriate modifications to your ."
105
  "htaccess file."
106
  msgstr ""
107
  "Данная функция реализуется добавлением в файл .htaccess определенных правил."
108
 
109
- #: ../admin/wp-security-blacklist-menu.php:142
110
  msgid ""
111
  "By blocking people via the .htaccess file your are using the most secure "
112
  "first line of defence which denies all access to blacklisted visitors as "
@@ -116,15 +146,15 @@ msgstr ""
116
  "первую линию обороны, которая отбросит нежелательных посетителей сразу же, "
117
  "как только они попытаются создать запрос к Вашему серверу."
118
 
119
- #: ../admin/wp-security-blacklist-menu.php:148
120
  msgid "IP Hosts and User Agent Blacklist Settings"
121
  msgstr "Настройки черного списка для блокировки IP-адресов и юзер-агентов"
122
 
123
- #: ../admin/wp-security-blacklist-menu.php:159
124
  msgid "Enable IP or User Agent Blacklisting"
125
  msgstr "Вести Черный список"
126
 
127
- #: ../admin/wp-security-blacklist-menu.php:162
128
  msgid ""
129
  "Check this if you want to enable the banning (or blacklisting) of selected "
130
  "IP addresses and/or user agents specified in the settings below"
@@ -132,36 +162,46 @@ msgstr ""
132
  "Отметьте этот чекбокс, если Вы хотите иметь возможнось банить указанные IP-"
133
  "адреса или юзер-агенты"
134
 
135
- #: ../admin/wp-security-blacklist-menu.php:166
136
  msgid "Enter IP Addresses:"
137
  msgstr "Введите IP-адреса:"
138
 
139
- #: ../admin/wp-security-blacklist-menu.php:170
140
  msgid "Enter one or more IP addresses or IP ranges."
141
  msgstr "Введите один или более IP-адрес или диапазон адресов."
142
 
143
- #: ../admin/wp-security-blacklist-menu.php:171
144
- #: ../admin/wp-security-blacklist-menu.php:191
145
- #: ../admin/wp-security-blacklist-menu.php:276
146
- #: ../admin/wp-security-firewall-menu.php:148
147
- #: ../admin/wp-security-firewall-menu.php:178
148
- #: ../admin/wp-security-firewall-menu.php:309
149
- #: ../admin/wp-security-firewall-menu.php:339
150
- #: ../admin/wp-security-firewall-menu.php:370
151
- #: ../admin/wp-security-firewall-menu.php:398
152
- #: ../admin/wp-security-firewall-menu.php:427
153
- #: ../admin/wp-security-firewall-menu.php:515
154
- #: ../admin/wp-security-firewall-menu.php:651
155
- #: ../admin/wp-security-firewall-menu.php:685
156
- #: ../admin/wp-security-firewall-menu.php:708
 
 
 
 
 
 
 
 
157
  msgid "More Info"
158
  msgstr "Подробнее"
159
 
160
- #: ../admin/wp-security-blacklist-menu.php:174
 
161
  msgid "Each IP address must be on a new line."
162
  msgstr "Каждый IP-адрес должен находиться в отдельной строке."
163
 
164
- #: ../admin/wp-security-blacklist-menu.php:175
 
165
  msgid ""
166
  "To specify an IP range use a wildcard \"*\" character. Acceptable ways to "
167
  "use wildcards is shown in the examples below:"
@@ -169,371 +209,1283 @@ msgstr ""
169
  "Чтобы указать диапазон IP-адресов, используйте маску «*». Примеры приведены "
170
  "ниже:"
171
 
172
- #: ../admin/wp-security-blacklist-menu.php:176
 
173
  msgid "Example 1: 195.47.89.*"
174
  msgstr "Пример 1: 195.47.89.*"
175
 
176
- #: ../admin/wp-security-blacklist-menu.php:177
 
177
  msgid "Example 2: 195.47.*.*"
178
  msgstr "Пример 2: 195.47.*.*"
179
 
180
- #: ../admin/wp-security-blacklist-menu.php:178
 
181
  msgid "Example 3: 195.*.*.*"
182
  msgstr "Пример 3: 195.*.*.*"
183
 
184
- #: ../admin/wp-security-blacklist-menu.php:185
185
  msgid "Enter User Agents:"
186
  msgstr "Введите названия юзер-агентов:"
187
 
188
- #: ../admin/wp-security-blacklist-menu.php:190
189
  msgid "Enter one or more user agent strings."
190
  msgstr "Введите одну или более строк с названиями юзер-агентов."
191
 
192
- #: ../admin/wp-security-blacklist-menu.php:194
193
  msgid "Each user agent string must be on a new line."
194
  msgstr "Каждый юзер-агент прописывайте в отдельной строке."
195
 
196
- #: ../admin/wp-security-blacklist-menu.php:195
197
  msgid "Example 1 - A single user agent string to block:"
198
  msgstr "Пример 1: Одиночная строка с названием юзер-агента для блокировки:"
199
 
200
- #: ../admin/wp-security-blacklist-menu.php:197
201
  msgid "Example 2 - A list of more than 1 user agent strings to block"
202
  msgstr "Пример 2: Список нескольких юзер-агентов для блокировки"
203
 
204
- #: ../admin/wp-security-blacklist-menu.php:205
205
- #: ../admin/wp-security-database-menu.php:333
206
- #: ../admin/wp-security-filesystem-menu.php:220
207
- #: ../admin/wp-security-settings-menu.php:452
208
- #: ../admin/wp-security-user-login-menu.php:211
209
- #: ../admin/wp-security-user-login-menu.php:379
 
 
 
 
 
 
 
 
 
 
 
 
210
  msgid "Save Settings"
211
  msgstr "Сохранить настройки"
212
 
213
- #: ../admin/wp-security-blacklist-menu.php:224
214
- msgid "Nonce check failed for list SPAM comment IPs!"
215
- msgstr "Не удалось установить параметры для отображения списка IP-адресов!"
 
 
216
 
217
- #: ../admin/wp-security-blacklist-menu.php:230
218
- msgid ""
219
- "You entered a non numeric value for the minimum SPAM comments per IP field. "
220
- "It has been set to the default value."
221
- msgstr ""
222
- "Вы ввели нечисловое значение для указания минимального количества спам-"
223
- "комментариев. Принято значение по умолчанию."
224
 
225
- #: ../admin/wp-security-blacklist-menu.php:236
226
- #: ../admin/wp-security-database-menu.php:248
227
- #: ../admin/wp-security-user-login-menu.php:115
228
- #: ../admin/wp-security-user-login-menu.php:332
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229
  msgid "Attention!"
230
  msgstr "Внимание!"
231
 
232
- #: ../admin/wp-security-blacklist-menu.php:242
233
- #, php-format
234
  msgid ""
235
- "Displaying results for IP addresses which have posted a minimum of %s SPAM "
236
- "comments"
237
  msgstr ""
238
- "Список IP-адресов, с которых было отправлено минимум %s спам-комментариев"
 
239
 
240
- #: ../admin/wp-security-blacklist-menu.php:258
241
  msgid ""
242
- "This tab displays a list of the IP addresses of the people or bots who have "
243
- "left SPAM comments on your site."
244
  msgstr ""
245
- "В этой вкладке отображается список IP-адресов тех пользователей или ботов, "
246
- "которые оставили спам-комментарии на Вашем сайте."
247
 
248
- #: ../admin/wp-security-blacklist-menu.php:259
249
  msgid ""
250
- "This information can be handy for identifying the most persistent IP "
251
- "addresses or ranges used by spammers."
252
  msgstr ""
253
- "Эта информация может быть полезна для определения наиболее стабильно "
254
- "использующихся спаммерами IP-адресов или их диапазонов. "
255
 
256
- #: ../admin/wp-security-blacklist-menu.php:260
257
  msgid ""
258
- "By inspecting the IP address data coming from spammers you will be in a "
259
- "better position to determine which addresses or address ranges you should "
260
- "block by adding them to your blacklist."
261
  msgstr ""
262
- "Анализ этой информации позволит Вам быстро определить, какие адреса или "
263
- "диапазоны следует заблокировать, добавив их в черный список."
 
264
 
265
- #: ../admin/wp-security-blacklist-menu.php:261
266
  msgid ""
267
- "To add one or more of the IP addresses displayed in the table below to your "
268
- "blacklist, simply click the \"Block\" link for the individual row or select "
269
- "more than one address \n"
270
- " using the checkboxes and then choose the \"block"
271
- "\" option from the Bulk Actions dropdown list and click the \"Apply\" button."
272
  msgstr ""
273
- "Для добавления одного или сразу нескольких адресов в черный список, кликните "
274
- "по ссылке «Block» в строке с выбранным адресом, или выберите несколько "
275
- "адресов, используя чекбоксы и установите вариант «Block» в выпадающем списке "
276
- "«Действия», после чего нажмите кнопку «Применить»."
277
-
278
- #: ../admin/wp-security-blacklist-menu.php:267
279
- msgid "List SPAMMER IP Addresses"
280
- msgstr "Список IP-адресов спаммеров"
281
 
282
- #: ../admin/wp-security-blacklist-menu.php:273
283
- msgid "Minimum number of SPAM comments per IP"
284
- msgstr "Минимальное количество спам-комментариев на каждый IP"
285
-
286
- #: ../admin/wp-security-blacklist-menu.php:275
287
  msgid ""
288
- "This field allows you to list only those IP addresses which have been used "
289
- "to post X or more SPAM comments."
290
  msgstr ""
291
- "Это поле позволяет фиксировать только те IP-адреса, с которых было загружено "
292
- "Х или более спам-комментариев."
293
 
294
- #: ../admin/wp-security-blacklist-menu.php:279
295
- msgid ""
296
- "Example 1: Setting this value to \"0\" or \"1\" will list ALL IP addresses "
297
- "which were used to submit SPAM comments."
298
- msgstr ""
299
- "Пример 1: Установка этого значения в «0» или «1» выведет список всех IP-"
300
- "адресов, уличенных в спаме хотя бы 1 раз."
301
 
302
- #: ../admin/wp-security-blacklist-menu.php:280
303
  msgid ""
304
- "Example 2: Setting this value to \"5\" will list only those IP addresses "
305
- "which were used to submit 5 SPAM comments or more on your site."
 
306
  msgstr ""
307
- "Пример 2: Установка значения в «5» выведет список IP-адресов, которые "
308
- "разместили на Вашем сайте 5 и более спам-комментариев."
309
 
310
- #: ../admin/wp-security-blacklist-menu.php:287
311
- msgid "Find IP Addresses"
312
- msgstr "Найти IP-адреса"
313
 
314
- #: ../admin/wp-security-blacklist-menu.php:291
315
- msgid "SPAMMER IP Address Results"
316
- msgstr "IP-адреса спаммеров"
317
 
318
- #: ../admin/wp-security-dashboard-menu.php:111
319
- msgid "Total Achievable Points: "
320
- msgstr "Максимально возможный балл:"
 
 
321
 
322
- #: ../admin/wp-security-dashboard-menu.php:113
323
- msgid "Current Score of Your Site: "
324
- msgstr "Текущий балл Вашего сайта:"
325
 
326
- #: ../admin/wp-security-dashboard-menu.php:168
327
  msgid ""
328
- "Below is the current status of the critical features that you should "
329
- "activate on your site to achieve a minimum level of recommended security"
 
330
  msgstr ""
331
- "Здесь показан текущий статус критически важных параметров, которые должны "
332
- "быть активированы для достижения минимального уровня рекомендуемой "
333
- "безопасности:"
334
-
335
- #: ../admin/wp-security-dashboard-menu.php:172
336
- msgid "Admin Username"
337
- msgstr "Логин Администратора"
338
-
339
- #: ../admin/wp-security-dashboard-menu.php:187
340
- msgid "Login Lockdown"
341
- msgstr "Блокировка авторизаций"
342
-
343
- #: ../admin/wp-security-dashboard-menu.php:202
344
- msgid "File Permission"
345
- msgstr "Права на файлы"
346
-
347
- #: ../admin/wp-security-dashboard-menu.php:217
348
- msgid "Basic Firewall"
349
- msgstr "Базовый файерволл"
350
 
351
- #: ../admin/wp-security-dashboard-menu.php:239
352
  msgid ""
353
- "Maintenance mode is currently enabled. Remember to turn it off when you are "
354
- "done"
355
  msgstr ""
356
- "Режим обслуживания включен. Не забудьте отключить его, когда захотите "
357
- "открыть его для посетителей."
358
-
359
- #: ../admin/wp-security-dashboard-menu.php:242
360
- msgid "Maintenance mode is currently off."
361
- msgstr "Режим обслуживания отключен."
362
 
363
- #: ../admin/wp-security-dashboard-menu.php:246
364
- msgid "Maintenance Mode"
365
- msgstr "Режим обслуживания"
 
366
 
367
- #: ../admin/wp-security-dashboard-menu.php:316
368
- #: ../admin/wp-security-filesystem-menu.php:124
369
- #: ../admin/wp-security-filesystem-menu.php:143
370
- msgid "Name"
371
- msgstr "Название"
372
 
373
- #: ../admin/wp-security-dashboard-menu.php:317
374
- msgid "Version"
375
- msgstr "Версия"
 
 
 
 
376
 
377
- #: ../admin/wp-security-dashboard-menu.php:318
378
- msgid "Plugin URL"
379
- msgstr "URL плагина"
 
380
 
381
- #: ../admin/wp-security-database-menu.php:78
382
- msgid "Nonce check failed for DB prefix change operation!"
383
- msgstr "Не удалось изменить префикс таблиц БД."
 
 
384
 
385
- #: ../admin/wp-security-database-menu.php:86
 
 
 
 
 
 
 
386
  msgid ""
387
- "The plugin has detected that it cannot write to the wp-config.php file. This "
388
- "feature can only be used if the plugin can successfully write to the wp-"
389
- "config.php file."
390
  msgstr ""
391
- "Плагину не удалось внести изменения в файл wp-config.php. Эта опция может "
392
- "быть использована только если на файл wp-config будут установлены права на "
393
- "запись."
394
 
395
- #: ../admin/wp-security-database-menu.php:99
396
- msgid "Please enter a value for the DB prefix."
397
- msgstr "Пожалуйста, введите значение для нового префикса."
398
 
399
- #: ../admin/wp-security-database-menu.php:108
400
  msgid ""
401
- "<strong>ERROR</strong>: The table prefix can only contain numbers, letters, "
402
- "and underscores."
403
  msgstr ""
404
- "<strong>ОШИБКА</strong>: Префикс может содержать только латинские буквы, "
405
- "цифры и символ подчеркивания."
406
-
407
- #: ../admin/wp-security-database-menu.php:116
408
- msgid "Change Database Prefix"
409
- msgstr "Изменение префикса таблиц базы данных"
410
 
411
- #: ../admin/wp-security-database-menu.php:119
412
  msgid ""
413
- "Your WordPress DB is the most important asset of your website because it "
414
- "contains a lot of your site's precious information."
 
415
  msgstr ""
416
- "Ваша база данных - это наиболее ценный актив, так как в ней находится весь "
417
- "контент и настройки."
 
 
418
 
419
- #: ../admin/wp-security-database-menu.php:120
420
  msgid ""
421
- "The DB is also a target for hackers via methods such as SQL injections and "
422
- "malicious and automated code which targets certain tables."
 
 
423
  msgstr ""
424
- "База данных также является мишенью для хакеров, пытающихся получить контроль "
425
- "над определенными таблицами методом SQL-инъекций и внедрением другого "
426
- "вредоносного кода."
 
427
 
428
- #: ../admin/wp-security-database-menu.php:121
 
429
  msgid ""
430
- "One way to add a layer of protection for your DB is to change the default "
431
- "WordPress table prefix from \"wp_\" to something else which will be "
432
- "difficult for hackers to guess."
433
  msgstr ""
434
- "Одним из способов усилить защиту от таких атак является изменение префикса "
435
- "таблиц базы данных с устанавливаемого по умолчанию («wp_») на какой-нибудь "
436
- "другой, который было бы тяжело угадать."
437
 
438
- #: ../admin/wp-security-database-menu.php:122
439
  msgid ""
440
- "This feature allows you to easily change the prefix to a value of your "
441
- "choice or to a random value set by this plugin."
442
  msgstr ""
443
- "Эти опции позволяют легко изменить префикс БД на любое введенное Вами "
444
- "значение или на сгенерированное плагином."
445
-
446
- #: ../admin/wp-security-database-menu.php:128
447
- msgid "DB Prefix Options"
448
- msgstr "Опции изменения префикса таблиц БД"
449
 
450
- #: ../admin/wp-security-database-menu.php:139
451
  #, php-format
452
- msgid "It is recommended that you perform a %s before using this feature"
453
- msgstr "Рекомендуется перед изменением префикса создать %s базы данных"
454
-
455
- #: ../admin/wp-security-database-menu.php:148
456
- msgid "Current DB Table Prefix"
457
- msgstr "Текущий префикс таблиц БД"
458
-
459
- #: ../admin/wp-security-database-menu.php:154
460
  msgid ""
461
- "Your site is currently using the default WordPress DB prefix value of \"wp_"
462
- "\". \n"
463
- " To increase your site's security you should "
464
- "consider changing the DB prefix value to another value."
465
  msgstr ""
466
- "На Вашем сайте используется префикс таблиц базы данных по умолчанию: «wp_».\n"
467
- "Для усиления безопасности, измените его на любое другое значение."
468
-
469
- #: ../admin/wp-security-database-menu.php:161
470
- msgid "Generate New DB Table Prefix"
471
- msgstr "Сгенерировать новый префикс таблиц БД"
472
 
473
- #: ../admin/wp-security-database-menu.php:164
474
  msgid ""
475
- "Check this if you want the plugin to generate a random 6 character string "
476
- "for the table prefix"
 
477
  msgstr ""
478
- "Отметьте, чтобы плагин сам сгенерировал префикс длиной в 6 случайных символов"
 
 
479
 
480
- #: ../admin/wp-security-database-menu.php:165
481
- msgid "OR"
482
- msgstr "ИЛИ"
483
 
484
- #: ../admin/wp-security-database-menu.php:167
 
 
 
 
 
485
  msgid ""
486
- "Choose your own DB prefix by specifying a string which contains letters and/"
487
- "or numbers and/or underscores. Example: xyz_"
488
  msgstr ""
489
- "Введите собственный вариант префикса, используя латинские буквы, цифры и "
490
- "символ подчеркивания. Например: xyz_"
491
-
492
- #: ../admin/wp-security-database-menu.php:171
493
- msgid "Change DB Prefix"
494
- msgstr "Изменить префикс таблиц"
495
-
496
- #: ../admin/wp-security-database-menu.php:192
497
- #: ../admin/wp-security-filesystem-menu.php:80
498
- msgid "Nonce check failed for manual DB backup operation!"
499
- msgstr "Создать бэкап базы данных не удалось!"
500
 
501
- #: ../admin/wp-security-database-menu.php:201
502
  msgid ""
503
- "DB Backup was successfully completed! Right click on the following file name "
504
- "and save the backup to your computer."
505
  msgstr ""
506
- "Резервная копия БД успешно создана! Кликните правой кнопкой мыши по имени "
507
- "файла, чтобы скачать его на компьютер."
508
 
509
- #: ../admin/wp-security-database-menu.php:203
510
- msgid "Your DB Backup File: "
511
- msgstr "Резервная копия базы данных:"
512
 
513
- #: ../admin/wp-security-database-menu.php:211
514
- msgid "DB Backup failed. Please check the permissions of the backup directory."
515
- msgstr ""
516
- "Создать резервную копию БД не удалось. Проверьте права на запись для бэкап-"
517
- "директории плагина."
518
 
519
- #: ../admin/wp-security-database-menu.php:228
520
  msgid ""
521
- "You entered a non numeric value for the \"backup time interval\" field. It "
522
- "has been set to the default value."
 
 
523
  msgstr ""
524
- "Вы ввели нечисловое значение в поле «Частота создания бэкапов». Сохранено "
525
- "значение по умолчанию."
 
 
526
 
527
- #: ../admin/wp-security-database-menu.php:235
528
  msgid ""
529
- "You entered a non numeric value for the \"number of backup files to keep\" "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
530
  "field. It has been set to the default value."
531
  msgstr ""
532
  "Вы ввели нечисловое значение в поле «Количество бэкапов для хранения». "
533
  "Сохранено значение по умолчанию."
534
 
535
- #: ../admin/wp-security-database-menu.php:242
536
- #: ../admin/wp-security-user-login-menu.php:109
 
537
  msgid ""
538
  "You have entered an incorrect email address format. It has been set to your "
539
  "WordPress admin email as default."
@@ -541,27 +1493,27 @@ msgstr ""
541
  "Email-адрес введен неправильно. По умолчанию установлен Email администратора "
542
  "блога."
543
 
544
- #: ../admin/wp-security-database-menu.php:275
545
  msgid "Manual Backup"
546
  msgstr "Создание резервной копии базы данных вручную"
547
 
548
- #: ../admin/wp-security-database-menu.php:281
549
  msgid "To create a new DB backup just click on the button below."
550
  msgstr "Для немедленного создания резервной копии нажмите эту кнопку:"
551
 
552
- #: ../admin/wp-security-database-menu.php:284
553
  msgid "Create DB Backup Now"
554
  msgstr "Создать бэкап базы данных сейчас"
555
 
556
- #: ../admin/wp-security-database-menu.php:288
557
  msgid "Automated Scheduled Backups"
558
  msgstr "Автоматическое создание резервных копий"
559
 
560
- #: ../admin/wp-security-database-menu.php:300
561
  msgid "Enable Automated Scheduled Backups"
562
  msgstr "Включить автоматическое создание бэкапов"
563
 
564
- #: ../admin/wp-security-database-menu.php:303
565
  msgid ""
566
  "Check this if you want the system to automatically generate backups "
567
  "periodically based on the settings below"
@@ -569,31 +1521,34 @@ msgstr ""
569
  "Включите этот чекбокс, чтобы система автоматически создавала резервные копии "
570
  "базы данных по расписанию"
571
 
572
- #: ../admin/wp-security-database-menu.php:307
573
  msgid "Backup Time Interval"
574
  msgstr "Частота создания бэкапов"
575
 
576
- #: ../admin/wp-security-database-menu.php:310
 
577
  msgid "Hours"
578
  msgstr "Часов"
579
 
580
- #: ../admin/wp-security-database-menu.php:311
 
581
  msgid "Days"
582
  msgstr "Дней"
583
 
584
- #: ../admin/wp-security-database-menu.php:312
 
585
  msgid "Weeks"
586
  msgstr "Недель"
587
 
588
- #: ../admin/wp-security-database-menu.php:314
589
  msgid "Set the value for how often you would like an automated backup to occur"
590
  msgstr "Укажите периодичность создания резервных копий"
591
 
592
- #: ../admin/wp-security-database-menu.php:318
593
  msgid "Number of Backup Files To Keep"
594
  msgstr "Количество бэкапов для хранения"
595
 
596
- #: ../admin/wp-security-database-menu.php:320
597
  msgid ""
598
  "Thie field allows you to choose the number of backup files you would like to "
599
  "keep in the backup directory"
@@ -601,27 +1556,32 @@ msgstr ""
601
  "Укажите в этом поле количество резервных копий, которые должны храниться в "
602
  "бэкап-директории плагина"
603
 
604
- #: ../admin/wp-security-database-menu.php:324
605
  msgid "Send Backup File Via Email"
606
  msgstr "Пересылать бэкап на Email"
607
 
608
- #: ../admin/wp-security-database-menu.php:327
609
  msgid ""
610
  "Check this if you want the system to email you the backup file after a DB "
611
  "backup has been performed"
612
  msgstr ""
613
  "Включите этот чекбокс, если хотите получать бэкап базы данных на свой email"
614
 
615
- #: ../admin/wp-security-database-menu.php:329
616
- #: ../admin/wp-security-user-login-menu.php:207
 
617
  msgid "Enter an email address"
618
  msgstr "Введите Email-адрес"
619
 
620
- #: ../admin/wp-security-database-menu.php:359
 
 
 
 
621
  msgid "Starting DB prefix change operations....."
622
  msgstr "Начинаю процесс изменения префикса таблиц базы данных..."
623
 
624
- #: ../admin/wp-security-database-menu.php:361
625
  #, php-format
626
  msgid ""
627
  "Your WordPress system has a total of %s tables and your new DB prefix will "
@@ -630,39 +1590,39 @@ msgstr ""
630
  "Общее количество таблиц в базе данных WordPress %s и новый префикс таблиц "
631
  "будет установлен как: %s"
632
 
633
- #: ../admin/wp-security-database-menu.php:367
634
- #: ../admin/wp-security-filesystem-menu.php:458
635
  msgid ""
636
  "Failed to make a backup of the wp-config.php file. This operation will not "
637
  "go ahead."
638
  msgstr ""
639
  "Не удалось создать резервную копию файла wp-config.php. Операция прервана."
640
 
641
- #: ../admin/wp-security-database-menu.php:371
642
  msgid "A backup copy of your wp-config.php file was created successfully!"
643
  msgstr "Резервная копия Вашего файла wp-config.php успешно создана!"
644
 
645
- #: ../admin/wp-security-database-menu.php:394
646
  #, php-format
647
  msgid "%s table name update failed"
648
  msgstr "Не удалось переименовать таблицу %s"
649
 
650
- #: ../admin/wp-security-database-menu.php:406
651
  #, php-format
652
  msgid "Please change the prefix manually for the above tables to: %s"
653
  msgstr ""
654
  "Пожалуйста, измените префикс для вышеперечисленных таблиц на «%s» вручную"
655
 
656
- #: ../admin/wp-security-database-menu.php:409
657
  #, php-format
658
  msgid "%s tables had their prefix updated successfully!"
659
  msgstr "Префикс таблиц %s успешно изменен!"
660
 
661
- #: ../admin/wp-security-database-menu.php:424
662
  msgid "wp-config.php file was updated successfully!"
663
  msgstr "Файл wp-config.php успешно обновлен!"
664
 
665
- #: ../admin/wp-security-database-menu.php:427
666
  #, php-format
667
  msgid ""
668
  "The \"wp-config.php\" file was not able to be modified. Please modify this "
@@ -674,54 +1634,544 @@ msgstr ""
674
  "отредактируйте его вручную, заменив значение переменной «$table_prefix» на "
675
  "значение %s"
676
 
677
- #: ../admin/wp-security-database-menu.php:448
678
- msgid "There was an error when updating the options table."
679
- msgstr "Не удалось скорректировать записи в таблице опций."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
680
 
681
- #: ../admin/wp-security-database-menu.php:452
682
  msgid ""
683
- "The options table records which had references to the old DB prefix were "
684
- "updated successfully!"
 
685
  msgstr ""
686
- "Записи в таблице опций блога, имеющие ссылки на старый префикс таблиц базы "
687
- "данных успешно скорректированы!"
 
688
 
689
- #: ../admin/wp-security-database-menu.php:477
690
- #, php-format
691
  msgid ""
692
- "Error updating user_meta table where new meta_key = %s, old meta_key = %s "
693
- "and user_id = %s."
 
694
  msgstr ""
695
- "Не удалось скорректировать записи в таблице «user_meta», где новый meta_key "
696
- "= %s, old meta_key = %s и user_id = %s."
 
 
697
 
698
- #: ../admin/wp-security-database-menu.php:483
699
  msgid ""
700
- "The usermeta table records which had references to the old DB prefix were "
701
- "updated successfully!"
 
702
  msgstr ""
703
- "Записи в таблице «user_meta», имеющие ссылки на старый префикс таблиц базы "
704
- "данных успешно скорректированы!"
 
705
 
706
- #: ../admin/wp-security-database-menu.php:485
707
- msgid "DB prefix change tasks have been completed."
708
- msgstr "Префикс таблиц базы данных успешно изменен."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
709
 
710
- #: ../admin/wp-security-filesystem-menu.php:90
711
  #, php-format
712
  msgid "The permissions for %s were succesfully changed to %s"
713
  msgstr "Разрешения для %s успешно изменены на %s"
714
 
715
- #: ../admin/wp-security-filesystem-menu.php:94
716
  #, php-format
717
  msgid "Unable to change permissions for %s!"
718
  msgstr "Невозможно изменить разрешения для %s!"
719
 
720
- #: ../admin/wp-security-filesystem-menu.php:100
721
  msgid "File Permissions Scan"
722
  msgstr "Сканирование разрешений на файлы и директории WordPress"
723
 
724
- #: ../admin/wp-security-filesystem-menu.php:103
725
  msgid ""
726
  "Your WordPress file and folder permission settings govern the accessability "
727
  "and read/write privileges of the files and folders which make up your WP "
@@ -730,7 +2180,7 @@ msgstr ""
730
  "Установки разрешений на файлы и папки WordPress, позволяющие управлять "
731
  "доступом к этим файлам."
732
 
733
- #: ../admin/wp-security-filesystem-menu.php:104
734
  msgid ""
735
  "Your WP installation already comes with reasonably secure file permission "
736
  "settings for the filesystem."
@@ -738,7 +2188,7 @@ msgstr ""
738
  "При первоначальной установке WordPress автоматически присваивает разумные "
739
  "права доступа к своей файловой системе."
740
 
741
- #: ../admin/wp-security-filesystem-menu.php:105
742
  msgid ""
743
  "However, sometimes people or other plugins modify the various permission "
744
  "settings of certain core WP folders or files such that they end up making "
@@ -748,7 +2198,7 @@ msgstr ""
748
  "директории и файлы, снижая таким образом уровень безопасности своего сайта, "
749
  "установив неверные права доступа."
750
 
751
- #: ../admin/wp-security-filesystem-menu.php:106
752
  msgid ""
753
  "This feature will scan the critical WP core folders and files and will "
754
  "highlight any permission settings which are insecure."
@@ -756,35 +2206,47 @@ msgstr ""
756
  "Эта опция сканирует все важные директории и файлы ядра WordPress и "
757
  "подсвечивает все небезопасные настройки."
758
 
759
- #: ../admin/wp-security-filesystem-menu.php:112
760
  msgid "WP Directory and File Permissions Scan Results"
761
  msgstr "Результат сканирования разрешений на директории и файлы WordPress"
762
 
763
- #: ../admin/wp-security-filesystem-menu.php:125
764
- #: ../admin/wp-security-filesystem-menu.php:144
765
  msgid "File/Folder"
766
  msgstr "Файл/Папка"
767
 
768
- #: ../admin/wp-security-filesystem-menu.php:126
769
- #: ../admin/wp-security-filesystem-menu.php:145
770
  msgid "Current Permissions"
771
  msgstr "Текущие разрешения"
772
 
773
- #: ../admin/wp-security-filesystem-menu.php:127
774
- #: ../admin/wp-security-filesystem-menu.php:146
775
  msgid "Recommended Permissions"
776
  msgstr "Рекомендуемые разрешения"
777
 
778
- #: ../admin/wp-security-filesystem-menu.php:128
779
- #: ../admin/wp-security-filesystem-menu.php:147
780
  msgid "Recommended Action"
781
  msgstr "Рекомендуемое действие"
782
 
783
- #: ../admin/wp-security-filesystem-menu.php:190
 
 
 
 
 
 
 
 
 
 
 
 
784
  msgid "File Editing"
785
  msgstr "Редактирование файлов"
786
 
787
- #: ../admin/wp-security-filesystem-menu.php:193
788
  msgid ""
789
  "The Wordpress Dashboard by default allows administrators to edit PHP files, "
790
  "such as plugin and theme files."
@@ -792,7 +2254,7 @@ msgstr ""
792
  "По умолчанию из панели администрирования WordPress позволяется редактировать "
793
  "PHP-файлы плагинов и тем."
794
 
795
- #: ../admin/wp-security-filesystem-menu.php:194
796
  msgid ""
797
  "This is often the first tool an attacker will use if able to login, since it "
798
  "allows code execution."
@@ -800,7 +2262,7 @@ msgstr ""
800
  "Это первейшее подспорье хакеру, получившему доступ в консоль администратора, "
801
  "предоставляющее ему возможность выполнить любой код на Вашем сервере."
802
 
803
- #: ../admin/wp-security-filesystem-menu.php:195
804
  msgid ""
805
  "This feature will disable the ability for people to edit PHP files via the "
806
  "dashboard."
@@ -808,15 +2270,15 @@ msgstr ""
808
  "Данная опция отключает возможность редактирования файлов из панели "
809
  "администратора."
810
 
811
- #: ../admin/wp-security-filesystem-menu.php:201
812
  msgid "Disable PHP File Editing"
813
  msgstr "Отключение редактирования PHP-файлов"
814
 
815
- #: ../admin/wp-security-filesystem-menu.php:213
816
  msgid "Disable Ability To Edit PHP Files"
817
  msgstr "Отключить возможность редактирования PHP-файлов"
818
 
819
- #: ../admin/wp-security-filesystem-menu.php:216
820
  msgid ""
821
  "Check this if you want to remove the ability for people to edit PHP files "
822
  "via the WP dashboard"
@@ -824,28 +2286,17 @@ msgstr ""
824
  "Отметьте этот чекбокс, чтобы запретить редактирование PHP-файлов из админ-"
825
  "панели WordPress"
826
 
827
- #: ../admin/wp-security-filesystem-menu.php:260
828
  msgid ""
829
  "You have successfully saved the Prevent Access to Default WP Files "
830
  "configuration."
831
  msgstr "Запрет к информационным файлам WordPress установлен."
832
 
833
- #: ../admin/wp-security-filesystem-menu.php:264
834
- #: ../admin/wp-security-firewall-menu.php:116
835
- #: ../admin/wp-security-firewall-menu.php:270
836
- #: ../admin/wp-security-firewall-menu.php:481
837
- #: ../admin/wp-security-firewall-menu.php:611
838
- msgid ""
839
- "Could not write to the .htaccess file. Please check the file permissions."
840
- msgstr ""
841
- "Файл .htaccess недоступен для записи. Пожалуйста, проверьте разрешения на "
842
- "запись для этого файла. "
843
-
844
- #: ../admin/wp-security-filesystem-menu.php:269
845
  msgid "WordPress Files"
846
  msgstr "Информационные файлы WordPress"
847
 
848
- #: ../admin/wp-security-filesystem-menu.php:272
849
  #, php-format
850
  msgid ""
851
  "This feature allows you to prevent access to files such as %s, %s and %s "
@@ -854,7 +2305,7 @@ msgstr ""
854
  "Данная опция запретит доступ к таким файлам как %s, %s и %s, которые "
855
  "создаются во время установки WordPress и не несут в себе системной нагрузки,"
856
 
857
- #: ../admin/wp-security-filesystem-menu.php:273
858
  msgid ""
859
  "By preventing access to these files you are hiding some key pieces of "
860
  "information (such as WordPress version info) from potential hackers."
@@ -862,17 +2313,17 @@ msgstr ""
862
  "но ограничение доступа к этим файлам позволит Вам скрыть от хакеров важную "
863
  "информацию (такую как версия WordPress)."
864
 
865
- #: ../admin/wp-security-filesystem-menu.php:278
866
  msgid "Prevent Access to Default WP Files"
867
  msgstr "Запрет доступа к информационным файлам WordPress"
868
 
869
- #: ../admin/wp-security-filesystem-menu.php:289
870
  msgid "Prevent Access to WP Default Install Files"
871
  msgstr ""
872
  "Запретить доступ к информационным файлам, создаваемых по умолчанию при "
873
  "установке WordPress."
874
 
875
- #: ../admin/wp-security-filesystem-menu.php:292
876
  msgid ""
877
  "Check this if you want to prevent access to readme.html, license.txt and wp-"
878
  "config-sample.php."
@@ -880,15 +2331,15 @@ msgstr ""
880
  "Отметьте этот чекбокс, чтобы запретить доступ к файлам readme.html, license."
881
  "txt и wp-config-sample.php."
882
 
883
- #: ../admin/wp-security-filesystem-menu.php:296
884
  msgid "Save Setting"
885
  msgstr "Сохранить настройки"
886
 
887
- #: ../admin/wp-security-filesystem-menu.php:307
888
  msgid "System Logs"
889
  msgstr "Системные журналы"
890
 
891
- #: ../admin/wp-security-filesystem-menu.php:310
892
  msgid ""
893
  "Sometimes your hosting platform will produce error or warning logs in a file "
894
  "called \"error_log\"."
@@ -896,7 +2347,7 @@ msgstr ""
896
  "Периодически Ваш сервер может публиковать отчеты об ошибках в специальных "
897
  "файлах, которые называются «error_log»."
898
 
899
- #: ../admin/wp-security-filesystem-menu.php:311
900
  msgid ""
901
  "Depending on the nature and cause of the error or warning, your hosting "
902
  "server can create multiple instances of this file in numerous directory "
@@ -905,7 +2356,7 @@ msgstr ""
905
  "В зависимости от характера и причин ошибки, Ваш сервер может создать "
906
  "несколько файлов журналов в различных каталогах Вашей установки WordPress."
907
 
908
- #: ../admin/wp-security-filesystem-menu.php:312
909
  msgid ""
910
  "By occassionally viewing the contents of these logs files you can keep "
911
  "informed of any underlying problems on your system which you might need to "
@@ -915,85 +2366,81 @@ msgstr ""
915
  "проблем на Вашем сайте и сможете воспользоваться этой информацией для их "
916
  "решения."
917
 
918
- #: ../admin/wp-security-filesystem-menu.php:318
919
  msgid "View System Logs"
920
  msgstr "Просмотр системных журналов"
921
 
922
- #: ../admin/wp-security-filesystem-menu.php:323
 
 
 
 
 
 
 
 
923
  msgid "View Latest System Logs"
924
  msgstr "Просмотр последних записей в системных журналах"
925
 
926
- #: ../admin/wp-security-filesystem-menu.php:325
927
  msgid "Loading..."
928
  msgstr "Загрузка..."
929
 
930
- #: ../admin/wp-security-filesystem-menu.php:342
931
  msgid "No system logs were found!"
932
  msgstr "Записей в системных журналах не найдено!"
933
 
934
- #: ../admin/wp-security-filesystem-menu.php:395
935
  msgid "Set Recommended Permissions"
936
  msgstr "Установить рекомендуемые разрешения"
937
 
938
- #: ../admin/wp-security-filesystem-menu.php:401
939
  msgid "No Action Required"
940
  msgstr "Действие не требуется"
941
 
942
- #: ../admin/wp-security-filesystem-menu.php:434
943
- msgid ""
944
- "Your system config file is already configured to disallow PHP file editing."
945
- msgstr ""
946
- "Ваша система уже сконфигурирована с запретом на редактирование PHP-файлов."
947
 
948
- #: ../admin/wp-security-filesystem-menu.php:445
949
- #: ../admin/wp-security-filesystem-menu.php:472
950
- msgid ""
951
- "Settings Saved - Your system is now configured to not allow PHP file editing."
952
- msgstr ""
953
- "Настройки сохранены - Ваша система сконфигурирована с запретом на "
954
- "редактирование PHP-файлов."
955
 
956
- #: ../admin/wp-security-filesystem-menu.php:449
957
- #: ../admin/wp-security-filesystem-menu.php:475
958
- #: ../admin/wp-security-filesystem-menu.php:525
959
- msgid "Operation failed! Unable to modify wp-config.php file!"
960
- msgstr "Операция не удалась! Невозможно изменить файл wp-config.php!"
961
 
962
- #: ../admin/wp-security-filesystem-menu.php:463
963
- msgid "A backup copy of your wp-config.php file was created successfully...."
964
- msgstr "Резервная копия Вашего файла wp-config.php успешно создана..."
965
 
966
- #: ../admin/wp-security-filesystem-menu.php:506
967
- #: ../admin/wp-security-filesystem-menu.php:514
968
- msgid ""
969
- "Your system config file is already configured to allow PHP file editing."
970
- msgstr ""
971
- "В Вашем файле wp-config.php уже прописана константа, разрешающая "
972
- "редактирование PHP-файлов."
973
 
974
- #: ../admin/wp-security-filesystem-menu.php:521
975
- msgid ""
976
- "Settings Saved - Your system is now configured to allow PHP file editing."
977
- msgstr ""
978
- "Настройки сохранены - Ваша система сконфигурирована с разрешением "
979
- "редактировать PHP-файлы."
980
 
981
- #: ../admin/wp-security-filesystem-menu.php:565
982
- #, php-format
983
- msgid "Showing latest entries of error_log file: %s"
984
- msgstr "Последние записи об ошибках в журнале: %s"
985
 
986
- #: ../admin/wp-security-firewall-menu.php:112
 
 
 
 
987
  msgid "Settings were successfully saved"
988
  msgstr "Настройки успешно сохранены"
989
 
990
- #: ../admin/wp-security-firewall-menu.php:121
991
- #: ../admin/wp-security-firewall-menu.php:486
992
  msgid "Firewall Settings"
993
  msgstr "Настройки файерволл (брандмауэра)"
994
 
995
- #: ../admin/wp-security-firewall-menu.php:128
996
- #: ../admin/wp-security-firewall-menu.php:627
997
  #, php-format
998
  msgid ""
999
  "This should not have any impact on your site's general functionality but if "
@@ -1003,7 +2450,7 @@ msgstr ""
1003
  "функциональность Вашего сайта, но при желании Вы можете создать %s Вашего ."
1004
  "htaccess-файла, перед тем, как включите эти настройки."
1005
 
1006
- #: ../admin/wp-security-firewall-menu.php:129
1007
  msgid ""
1008
  "The features in this tab allow you to activate some basic firewall security "
1009
  "protection rules for your site."
@@ -1011,7 +2458,7 @@ msgstr ""
1011
  "Опции в этой вкладке позволяют применить некоторые базовые правила защиты "
1012
  "для Вашего сайта."
1013
 
1014
- #: ../admin/wp-security-firewall-menu.php:130
1015
  msgid ""
1016
  "The firewall functionality is achieved via the insertion of special code "
1017
  "into your currently active .htaccess file."
@@ -1019,43 +2466,68 @@ msgstr ""
1019
  "Данная функциональность брандмауэра достигается методом добавления в Ваш "
1020
  "файл .htaccess некоторых специальных директив."
1021
 
1022
- #: ../admin/wp-security-firewall-menu.php:136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1023
  msgid "Basic Firewall Settings"
1024
  msgstr "Основные функции брандмауэра"
1025
 
1026
- #: ../admin/wp-security-firewall-menu.php:144
1027
  msgid "Enable Basic Firewall Protection"
1028
  msgstr "Активировать основные функции брандмауэра"
1029
 
1030
- #: ../admin/wp-security-firewall-menu.php:147
1031
  msgid "Check this if you want to apply basic firewall protection to your site."
1032
  msgstr ""
1033
  "Отметьте этот чекбокс, чтобы активировать основные функции файерволл на "
1034
  "Вашем сайте."
1035
 
1036
- #: ../admin/wp-security-firewall-menu.php:151
1037
  msgid ""
1038
  "This setting will implement the following basic firewall protection "
1039
  "mechanisms on your site:"
1040
  msgstr "Эта опция запустит следующий базовый механизм защиты на Вашем сайте:"
1041
 
1042
- #: ../admin/wp-security-firewall-menu.php:152
1043
  msgid "1) Protect your htaccess file by denying access to it."
1044
  msgstr "1) Защитит файл htaccess от несанкционированного доступа."
1045
 
1046
- #: ../admin/wp-security-firewall-menu.php:153
1047
  msgid "2) Disable the server signature."
1048
  msgstr "2) Отключит сигнатуру сервера в ответах на запросы."
1049
 
1050
- #: ../admin/wp-security-firewall-menu.php:154
1051
  msgid "3) Limit file upload size (10MB)."
1052
  msgstr "3) Ограничит лимит на размер загружаемых файлов до 10Мб."
1053
 
1054
- #: ../admin/wp-security-firewall-menu.php:155
1055
  msgid "4) Protect your wp-config.php file by denying access to it."
1056
  msgstr "4) Защитит Ваш файл wp-config.php от несанкционированного доступа."
1057
 
1058
- #: ../admin/wp-security-firewall-menu.php:156
1059
  msgid ""
1060
  "The above firewall features will be applied via your .htaccess file and "
1061
  "should not affect your site's overall functionality."
@@ -1064,7 +2536,7 @@ msgstr ""
1064
  "файл .htaccess определенных директив и не должна повлиять на общую "
1065
  "работоспособность Вашего сайта."
1066
 
1067
- #: ../admin/wp-security-firewall-menu.php:157
1068
  msgid ""
1069
  "You are still advised to take a backup of your active .htaccess file just in "
1070
  "case."
@@ -1072,15 +2544,11 @@ msgstr ""
1072
  "Однако, просто на всякий случай, рекомендуется предварительно сделать "
1073
  "резервную копию файла .htaccess."
1074
 
1075
- #: ../admin/wp-security-firewall-menu.php:166
1076
  msgid "WordPress Pingback Vulnerability Protection"
1077
  msgstr "Защита от Пингбэк-уязвимостей"
1078
 
1079
- #: ../admin/wp-security-firewall-menu.php:174
1080
- msgid "Enable Pingback Protection"
1081
- msgstr "Активировать Пингбэк-защиту"
1082
-
1083
- #: ../admin/wp-security-firewall-menu.php:177
1084
  msgid ""
1085
  "Check this if you are not using the WP XML-RPC functionality and you want to "
1086
  "enable protection against WordPress pingback vulnerabilities."
@@ -1088,7 +2556,7 @@ msgstr ""
1088
  "Включите этот чекбокс, если Вы хотите активировать защиту от пингбэк-"
1089
  "уязвимостей и не используете в своем WordPress функциональность XML-RPC."
1090
 
1091
- #: ../admin/wp-security-firewall-menu.php:181
1092
  msgid ""
1093
  "This setting will add a directive in your .htaccess to disable access to the "
1094
  "WordPress xmlrpc.php file which is responsible for the XML-RPC functionality "
@@ -1098,7 +2566,7 @@ msgstr ""
1098
  "xmlrpc.php, который отвечает за функциональность XML-RPC и за пингбэки в "
1099
  "Вашем WordPress."
1100
 
1101
- #: ../admin/wp-security-firewall-menu.php:182
1102
  msgid ""
1103
  "Hackers can exploit various pingback vulnerabilities in the WordPress XML-"
1104
  "RPC API in a number of ways such as:"
@@ -1106,22 +2574,22 @@ msgstr ""
1106
  "Хакеры часто пользуются уязвимостями в этой функциональности, чтобы достичь "
1107
  "следующих целей:"
1108
 
1109
- #: ../admin/wp-security-firewall-menu.php:183
1110
  msgid "1) Denial of Service (DoS) attacks"
1111
  msgstr ""
1112
  "1) Перегрузить сервер запросами и вывести тем самым его из строя (DoS-атака)"
1113
 
1114
- #: ../admin/wp-security-firewall-menu.php:184
1115
  msgid "2) Hacking internal routers."
1116
  msgstr "2) Взломать внутренние маршрутизаторы"
1117
 
1118
- #: ../admin/wp-security-firewall-menu.php:185
1119
  msgid "3) Scanning ports in internal networks to get info from various hosts."
1120
  msgstr ""
1121
  "3) Просканировать порты внутренней сети, чтобы получить информацию от "
1122
  "различных хостов на сервере."
1123
 
1124
- #: ../admin/wp-security-firewall-menu.php:186
1125
  msgid ""
1126
  "Apart from the security protection benefit, this feature may also help "
1127
  "reduce load on your server, particularly if your site currently has a lot of "
@@ -1131,7 +2599,7 @@ msgstr ""
1131
  "на Ваш сервер, особенно если Ваш сайт получает много нежелательного трафика, "
1132
  "нацеленного на XML-RPC API."
1133
 
1134
- #: ../admin/wp-security-firewall-menu.php:187
1135
  msgid ""
1136
  "NOTE: You should only enable this feature if you are not currently using the "
1137
  "XML-RPC functionality on your WordPress installation."
@@ -1139,20 +2607,20 @@ msgstr ""
1139
  "ВНИМАНИЕ: Эту опцию можно активировать только в том случае, если Вы в своей "
1140
  "WordPress-установке не используете функциональность XML-RPC."
1141
 
1142
- #: ../admin/wp-security-firewall-menu.php:194
1143
  msgid "Save Basic Firewall Settings"
1144
  msgstr "Сохранить основные настройки брандмауэра"
1145
 
1146
- #: ../admin/wp-security-firewall-menu.php:266
1147
  msgid ""
1148
  "You have successfully saved the Additional Firewall Protection configuration"
1149
  msgstr "Дополнительные настройки конфигурации брандмауэра успешно сохранены!"
1150
 
1151
- #: ../admin/wp-security-firewall-menu.php:280
1152
  msgid "Additional Firewall Protection"
1153
  msgstr "Дополнительные функции брандмауэра"
1154
 
1155
- #: ../admin/wp-security-firewall-menu.php:284
1156
  #, php-format
1157
  msgid ""
1158
  "Due to the nature of the code being inserted to the .htaccess file, this "
@@ -1164,7 +2632,7 @@ msgstr ""
1164
  "функциональность некоторых плагинов, поэтому рекомендуется до их включения "
1165
  "сделать %s файла .htaccess."
1166
 
1167
- #: ../admin/wp-security-firewall-menu.php:286
1168
  msgid ""
1169
  "This feature allows you to activate more advanced firewall settings to your "
1170
  "site."
@@ -1172,7 +2640,7 @@ msgstr ""
1172
  "В этой вкладке Вы можете активировать дополнительные настройки файерволл для "
1173
  "защиты Вашего сайта."
1174
 
1175
- #: ../admin/wp-security-firewall-menu.php:287
1176
  msgid ""
1177
  "The advanced firewall rules are applied via the insertion of special code to "
1178
  "your currently active .htaccess file."
@@ -1180,21 +2648,22 @@ msgstr ""
1180
  "Эти опции реализуются методом добавления определенных правил в Ваш файл ."
1181
  "htaccess."
1182
 
1183
- #: ../admin/wp-security-firewall-menu.php:296
1184
  msgid "Listing of Directory Contents"
1185
  msgstr "Просмотр содержимого директорий"
1186
 
1187
- #: ../admin/wp-security-firewall-menu.php:305
 
1188
  msgid "Disable Index Views"
1189
  msgstr "Отключить возможность просмотра директорий"
1190
 
1191
- #: ../admin/wp-security-firewall-menu.php:308
1192
  msgid "Check this if you want to disable directory and file listing."
1193
  msgstr ""
1194
  "Включите этот чекбокс, чтобы предотвратить свободный просмотр директорий на "
1195
  "Вашем сайте"
1196
 
1197
- #: ../admin/wp-security-firewall-menu.php:313
1198
  msgid ""
1199
  "By default, an Apache server will allow the listing of the contents of a "
1200
  "directory if it doesn't contain an index.php file."
@@ -1202,33 +2671,34 @@ msgstr ""
1202
  "По умолчанию сервер Apache позволяет видет содержимое директорий, если в них "
1203
  "нет файла index.php или index.html."
1204
 
1205
- #: ../admin/wp-security-firewall-menu.php:315
1206
  msgid "This feature will prevent the listing of contents for all directories."
1207
  msgstr "Эта функция запрещает такую возможность."
1208
 
1209
- #: ../admin/wp-security-firewall-menu.php:317
1210
  msgid ""
1211
- "NOTE: In order for this feature to work \"AllowOverride\" must be enabled in "
1212
- "your httpd.conf file. Ask your hosting provider to check this if you don't "
1213
- "have access to httpd.conf"
1214
  msgstr ""
1215
  "ВНИМАНИЕ: Для того, чтобы эта функция работала, в Вашем файле httpd.conf "
1216
  "должна быть включена директива «AllowOverride». Если у Вас нет доступа к "
1217
  "файлу httpd.conf, обратитесь к своему хостинг-провайдеру."
1218
 
1219
- #: ../admin/wp-security-firewall-menu.php:326
1220
  msgid "Trace and Track"
1221
  msgstr "HTTP-трассировка"
1222
 
1223
- #: ../admin/wp-security-firewall-menu.php:335
 
1224
  msgid "Disable Trace and Track"
1225
  msgstr "Отключить http-трассировку"
1226
 
1227
- #: ../admin/wp-security-firewall-menu.php:338
1228
  msgid "Check this if you want to disable trace and track."
1229
  msgstr "Отметьте этот чекбокс, чтобы защититься от http-трассировки."
1230
 
1231
- #: ../admin/wp-security-firewall-menu.php:343
1232
  msgid ""
1233
  "HTTP Trace attack (XST) can be used to return header requests and grab "
1234
  "cookies and other information."
@@ -1237,7 +2707,7 @@ msgstr ""
1237
  "применяются, чтобы получить информацию из возвращаемых сервером http-"
1238
  "заголовков и похитить куки и другую информацию."
1239
 
1240
- #: ../admin/wp-security-firewall-menu.php:345
1241
  msgid ""
1242
  "This hacking technique is usually used together with cross site scripting "
1243
  "attacks (XSS)."
@@ -1245,24 +2715,24 @@ msgstr ""
1245
  "Эта хакерская технология обычно применяется в сочетании с межсайтовым "
1246
  "скриптингом (XSS)."
1247
 
1248
- #: ../admin/wp-security-firewall-menu.php:347
1249
  msgid ""
1250
  "Disabling trace and track on your site will help prevent HTTP Trace attacks."
1251
  msgstr "Данная опция предназначена как раз для защиты от этого типа атак."
1252
 
1253
- #: ../admin/wp-security-firewall-menu.php:356
1254
  msgid "Proxy Comment Posting"
1255
  msgstr "Комментарии через Прокси-серверы"
1256
 
1257
- #: ../admin/wp-security-firewall-menu.php:366
1258
  msgid "Forbid Proxy Comment Posting"
1259
  msgstr "Запретить комментарии через прокси"
1260
 
1261
- #: ../admin/wp-security-firewall-menu.php:369
1262
  msgid "Check this if you want to forbid proxy comment posting."
1263
  msgstr "Отметьте этот чекбокс, чтобы запретить комментирование через прокси."
1264
 
1265
- #: ../admin/wp-security-firewall-menu.php:374
1266
  msgid ""
1267
  "This setting will deny any requests that use a proxy server when posting "
1268
  "comments."
@@ -1270,7 +2740,7 @@ msgstr ""
1270
  "Эта опция отклонит любые запросы, использующие прокси-сервер при отправке "
1271
  "комментариев."
1272
 
1273
- #: ../admin/wp-security-firewall-menu.php:375
1274
  msgid ""
1275
  "By forbidding proxy comments you are in effect eliminating some SPAM and "
1276
  "other proxy requests."
@@ -1278,26 +2748,26 @@ msgstr ""
1278
  "Это усилит защиту от спама в комментариях и от других нежелательных прокси-"
1279
  "запросов."
1280
 
1281
- #: ../admin/wp-security-firewall-menu.php:384
1282
  msgid "Bad Query Strings"
1283
  msgstr "Нежелательные строки в запросах"
1284
 
1285
- #: ../admin/wp-security-firewall-menu.php:394
1286
  msgid "Deny Bad Query Strings"
1287
  msgstr "Запретить вредоносные строки в запросах"
1288
 
1289
- #: ../admin/wp-security-firewall-menu.php:397
1290
  msgid "This will help protect you against malicious queries via XSS."
1291
  msgstr "Включите этот чекбокс, чтобы активировать защиту от XSS-атак."
1292
 
1293
- #: ../admin/wp-security-firewall-menu.php:402
1294
  msgid ""
1295
  "This feature will write rules in your .htaccess file to prevent malicious "
1296
  "string attacks on your site using XSS."
1297
  msgstr ""
1298
  "Эта опция предназначена для защиты от ввода вредоносного кода при XSS-атаках."
1299
 
1300
- #: ../admin/wp-security-firewall-menu.php:403
1301
  msgid ""
1302
  "NOTE: Some of these strings might be used for plugins or themes and hence "
1303
  "this might break some functionality."
@@ -1306,8 +2776,8 @@ msgstr ""
1306
  "плагинах или Вашей теме, и, следовательно, данная опция может нарушить их "
1307
  "функциональность."
1308
 
1309
- #: ../admin/wp-security-firewall-menu.php:404
1310
- #: ../admin/wp-security-firewall-menu.php:434
1311
  msgid ""
1312
  "You are therefore strongly advised to take a backup of your active .htaccess "
1313
  "file before applying this feature."
@@ -1315,19 +2785,20 @@ msgstr ""
1315
  "ОБЯЗАТЕЛЬНО СДЕЛАЙТЕ РЕЗЕРВНУЮ КОПИЮ ВАШЕГО .HTACCESS-ФАЙЛА, ДО ТОГО, КАК ВЫ "
1316
  "АКТИВИРУЕТЕ ЭТУ ФУНКЦИЮ! "
1317
 
1318
- #: ../admin/wp-security-firewall-menu.php:413
 
1319
  msgid "Advanced Character String Filter"
1320
  msgstr "Дополнительная фильтрация символов"
1321
 
1322
- #: ../admin/wp-security-firewall-menu.php:423
1323
  msgid "Enable Advanced Character String Filter"
1324
  msgstr "Активировать дополнительную фильтрацию символов"
1325
 
1326
- #: ../admin/wp-security-firewall-menu.php:426
1327
  msgid "This will block bad character matches from XSS."
1328
  msgstr "Включите этот чекбокс, чтобы защитить сайт от XSS-атак."
1329
 
1330
- #: ../admin/wp-security-firewall-menu.php:431
1331
  msgid ""
1332
  "This is an advanced character string filter to prevent malicious string "
1333
  "attacks on your site coming from Cross Site Scripting (XSS)."
@@ -1335,7 +2806,7 @@ msgstr ""
1335
  "Это дополнительная фильтрация символов для блокировки вредоносных команд, "
1336
  "используемых в XSS-атаках (межсайтовый скриптинг)."
1337
 
1338
- #: ../admin/wp-security-firewall-menu.php:432
1339
  msgid ""
1340
  "This setting matches for common malicious string patterns and exploits and "
1341
  "will produce a 403 error for the hacker attempting the query."
@@ -1343,21 +2814,21 @@ msgstr ""
1343
  "Данная опция фиксирует распространенные образцы вредоносного кода и "
1344
  "эксплойты и вернет хакеру сообщение об ошибке 403 (доступ запрещен)."
1345
 
1346
- #: ../admin/wp-security-firewall-menu.php:433
1347
  msgid "NOTE: Some strings for this setting might break some functionality."
1348
  msgstr ""
1349
  "ВНИМАНИЕ: Некоторые директивы в этих установках могут нарушить "
1350
  "функциональность сайта (это зависит от хостинг-провайдера)."
1351
 
1352
- #: ../admin/wp-security-firewall-menu.php:442
1353
  msgid "Save Additional Firewall Settings"
1354
  msgstr "Сохранить дополнительные настройки брандмауэра"
1355
 
1356
- #: ../admin/wp-security-firewall-menu.php:477
1357
  msgid "You have successfully saved the 5G Firewall Protection configuration"
1358
  msgstr "Вы успешно сохранили настройки 5G-защиты"
1359
 
1360
- #: ../admin/wp-security-firewall-menu.php:490
1361
  #, php-format
1362
  msgid ""
1363
  "This feature allows you to activate the 5G firewall security protection "
@@ -1366,7 +2837,7 @@ msgstr ""
1366
  "Эта опция позволяет включить функции защиты «5G», разработанные и "
1367
  "произведенные %s."
1368
 
1369
- #: ../admin/wp-security-firewall-menu.php:491
1370
  msgid ""
1371
  "The 5G Blacklist is a simple, flexible blacklist that helps reduce the "
1372
  "number of malicious URL requests that hit your website."
@@ -1374,7 +2845,7 @@ msgstr ""
1374
  "5G-брандмауэр (файерволл) - это простая и гибкая защита, помогающая "
1375
  "уменьшить количество вредоносных запросов, добавляемых в URL Вашего сайта."
1376
 
1377
- #: ../admin/wp-security-firewall-menu.php:492
1378
  msgid ""
1379
  "The added advantage of applying the 5G firewall to your site is that it has "
1380
  "been tested and confirmed by the people at PerishablePress.com to be an "
@@ -1386,7 +2857,7 @@ msgstr ""
1386
  "com, как наименее разрушительный набор директив безопасности для файла ."
1387
  "htaccess, на сайтах, работающих на сервере Apache или аналогичных."
1388
 
1389
- #: ../admin/wp-security-firewall-menu.php:493
1390
  #, php-format
1391
  msgid ""
1392
  "Therefore the 5G firewall rules should not have any impact on your site's "
@@ -1397,39 +2868,39 @@ msgstr ""
1397
  "функциональность Вашего сайта, но, тем не менее, при желании Вы можете "
1398
  "создать %s Вашего .htaccess-файла, до того, как активируете эту защиту."
1399
 
1400
- #: ../admin/wp-security-firewall-menu.php:499
1401
  msgid "5G Blacklist/Firewall Settings"
1402
  msgstr "Настройки 5G Файерволл"
1403
 
1404
- #: ../admin/wp-security-firewall-menu.php:511
1405
  msgid "Enable 5G Firewall Protection"
1406
  msgstr "Включить 5G Файерволл"
1407
 
1408
- #: ../admin/wp-security-firewall-menu.php:514
1409
  msgid ""
1410
  "Check this if you want to apply the 5G Blacklist firewall protection from "
1411
  "perishablepress.com to your site."
1412
  msgstr "Включите этот чекбокс, чтобы активировать 5G-защиту на Вашем сайте."
1413
 
1414
- #: ../admin/wp-security-firewall-menu.php:518
1415
  msgid ""
1416
  "This setting will implement the 5G security firewall protection mechanisms "
1417
  "on your site which include the following things:"
1418
  msgstr ""
1419
  "Эта опция активирует 5G-защиту на Вашем сайте, которая включает следующее:"
1420
 
1421
- #: ../admin/wp-security-firewall-menu.php:519
1422
  msgid "1) Block forbidden characters commonly used in exploitative attacks."
1423
  msgstr ""
1424
  "1) Блокировку запрещенных символов, обычно используемых в хакерских атаках."
1425
 
1426
- #: ../admin/wp-security-firewall-menu.php:520
1427
  msgid "2) Block malicious encoded URL characters such as the \".css(\" string."
1428
  msgstr ""
1429
  "2) Блокировку вредоносных закодированных строк в URL, таких как «.css(» и т."
1430
  "п."
1431
 
1432
- #: ../admin/wp-security-firewall-menu.php:521
1433
  msgid ""
1434
  "3) Guard against the common patterns and specific exploits in the root "
1435
  "portion of targeted URLs."
@@ -1438,326 +2909,400 @@ msgstr ""
1438
  "эксплойтов (последовательностей команд, использующих известные уязвимости) в "
1439
  "URL."
1440
 
1441
- #: ../admin/wp-security-firewall-menu.php:522
1442
  msgid ""
1443
  "4) Stop attackers from manipulating query strings by disallowing illicit "
1444
  "characters."
1445
  msgstr "4) Блокировку запрещенных символов в параметрах запросов."
1446
 
1447
- #: ../admin/wp-security-firewall-menu.php:523
1448
  msgid "....and much more."
1449
  msgstr "...и многое другое."
1450
 
1451
- #: ../admin/wp-security-firewall-menu.php:529
1452
  msgid "Save 5G Firewall Settings"
1453
  msgstr "Сохранить настройки 5G Файерволл"
1454
 
1455
- #: ../admin/wp-security-firewall-menu.php:557
 
 
 
 
 
 
 
 
 
 
 
 
 
1456
  msgid ""
1457
- "Settings have not been saved - your secret word must consist only of "
1458
- "alphanumeric characters, ie, letters and/or numbers only!"
 
1459
  msgstr ""
1460
- "Настройки не сохранились - секретное слово должно состоять только из "
1461
- "латинских букв и/или цифр!"
 
1462
 
1463
- #: ../admin/wp-security-firewall-menu.php:575
1464
  msgid ""
1465
- "You have successfully enabled the cookie based brute force prevention feature"
1466
- msgstr "Вы успешно активировали защиту от брутфорс-атак"
 
 
 
 
 
1467
 
1468
- #: ../admin/wp-security-firewall-menu.php:576
1469
  msgid ""
1470
- "From now on you will need to log into your WP Admin using the following URL:"
1471
- msgstr "С этого момента заходите на Вашу страницу авторизации по этому адресу:"
 
 
 
 
 
1472
 
1473
- #: ../admin/wp-security-firewall-menu.php:578
1474
  msgid ""
1475
- "It is important that you save this URL value somewhere in case you forget "
1476
- "it, OR,"
1477
  msgstr ""
1478
- "Очень важно, чтобы Вы сохранили этот URL где-нибудь в надежном месте, на "
1479
- "случай, если Вы его забудете, или"
1480
-
1481
- #: ../admin/wp-security-firewall-menu.php:579
1482
- #, php-format
1483
- msgid "simply remember to add a \"?%s=1\" to your current site URL address."
1484
- msgstr "просто запомните, что к адресу Вашего сайта надо добавить «?%s=1»."
1485
 
1486
- #: ../admin/wp-security-firewall-menu.php:585
1487
  msgid ""
1488
- "You have successfully saved cookie based brute force prevention feature "
1489
- "settings."
1490
- msgstr "Настройки сохранены!"
1491
-
1492
- #: ../admin/wp-security-firewall-menu.php:621
1493
- msgid "Brute Force Prevention Firewall Settings"
1494
- msgstr "Настройки Файерволла для защиты от Брутфорс-атак"
1495
 
1496
- #: ../admin/wp-security-firewall-menu.php:628
1497
  msgid ""
1498
- "A Brute Force Attack is when a hacker tries many combinations of usernames "
1499
- "and passwords until they succeed in guessing the right combination."
1500
  msgstr ""
1501
- "Брутфорс-атакой называется многократный перебор различных сочетаний имен "
1502
- "пользователей и паролей, до тех пор, пока не будет найдена их правильная "
1503
- "комбинация."
1504
 
1505
- #: ../admin/wp-security-firewall-menu.php:629
1506
  msgid ""
1507
- "Due to the fact that at any one time there may be many concurrent login "
1508
- "attempts occurring on your site via malicious automated robots, this also "
1509
- "has a negative impact on your server's memory and performance."
 
1510
  msgstr ""
1511
- "В связи с тем, что в любой момент времени может происходить большое "
1512
- "количество попыток входа на Ваш сайт, осуществляемых с помощью вредоносных "
1513
- "программ-роботов, это также оказывает негативное влияние на Ваш сервер, так "
1514
- "как отнимает ресурсы памяти и снижает его производительность."
1515
 
1516
- #: ../admin/wp-security-firewall-menu.php:630
1517
  msgid ""
1518
- "The features in this tab will stop the majority of Brute Force Login Attacks "
1519
- "at the .htaccess level thus providing even better protection for your WP "
1520
- "login page and also reducing the load on your server because the system does "
1521
- "not have to run PHP code to process the login attempts."
1522
  msgstr ""
1523
- "Функции в этой вкладке остановят большинство брутфорс-атак на уровне файла ."
1524
- "htaccess, обеспечивая тем самым усиленную защиту Вашей страницы авторизации "
1525
- "и снижая нагрузку на сервер, так как система при этом не запускает PHP код "
1526
- "для обработки попыток входа в систему."
1527
 
1528
- #: ../admin/wp-security-firewall-menu.php:636
1529
- msgid "Cookie Based Brute Force Login Prevention"
1530
- msgstr "Защита от брутфорс-атак, основанная на использовании куки"
 
 
1531
 
1532
- #: ../admin/wp-security-firewall-menu.php:647
1533
- msgid "Enable Brute Force Attack Prevention"
1534
- msgstr "Активировать защиту от брутфорс-атак"
 
1535
 
1536
- #: ../admin/wp-security-firewall-menu.php:650
1537
  msgid ""
1538
- "Check this if you want to protect your login page from Brute Force Attack."
 
1539
  msgstr ""
1540
- "Отметьте, если Вы хотите защитить Вашу форму авторизации от брутфорс-атак."
 
1541
 
1542
- #: ../admin/wp-security-firewall-menu.php:655
1543
  msgid ""
1544
- "This feature will deny access to your WordPress login page for all people "
1545
- "except those who have a special cookie in their browser."
1546
  msgstr ""
1547
- "Эта функция запретит доступ к Вашей странице авторизации любому "
1548
- "пользователю, у которого в браузере нет специального куки-файла."
 
1549
 
1550
- #: ../admin/wp-security-firewall-menu.php:657
1551
- msgid "To use this feature do the following:"
1552
- msgstr "Для активации этой опции сделайте следующее:"
 
 
 
 
1553
 
1554
- #: ../admin/wp-security-firewall-menu.php:659
1555
- msgid "1) Enable the checkbox."
1556
- msgstr "1) Включите этот чекбокс."
1557
 
1558
- #: ../admin/wp-security-firewall-menu.php:661
 
 
 
 
 
 
1559
  msgid ""
1560
- "2) Enter a secret word consisting of alphanumeric characters which will be "
1561
- "difficult to guess. This secret word will be useful whenever you need to "
1562
- "know the special URL which you will use to access the login page (see point "
1563
- "below)."
1564
  msgstr ""
1565
- "2) Введите секретное слово, состоящее из буквенно-цифровых символов (буквы "
1566
- "латинские), которое будет трудно разгадать. Это слово будет использовано, "
1567
- "чтобы создать для Вас специальный URL для доступа к странице авторизации "
1568
- "(смотрите следующий пункт)."
1569
 
1570
- #: ../admin/wp-security-firewall-menu.php:663
1571
  msgid ""
1572
- "3) You will then be provided with a special login URL. You will need to use "
1573
- "this URL to login to your WordPress site instead of the usual login URL. "
1574
- "NOTE: The system will deposit a special cookie in your browser which will "
1575
- "allow you access to the WordPress administration login page."
1576
  msgstr ""
1577
- "3) После сохранения этих настроек Вы получите специальный URL для "
1578
- "авторизации, о котором больше никто не будет знать. Этот URL Вы должны "
1579
- "будете использовать вместо стандартного URL к странице авторизации. "
1580
- "ВНИМАНИЕ: Плагин поместит в Ваш браузер специальный куки-файл, который будет "
1581
- "служить Вашим персональным пропуском в админ-панель блога."
1582
 
1583
- #: ../admin/wp-security-firewall-menu.php:665
1584
  msgid ""
1585
- "Any person trying to access your login page who does not have the special "
1586
- "cookie in their browser will be automatically blocked."
1587
  msgstr ""
1588
- "Любой, кто попытается попасть на Вашу страницу авторизации, не имея "
1589
- "специального куки-файла в своем браузере, будет автоматически заблокирован."
1590
 
1591
- #: ../admin/wp-security-firewall-menu.php:672
1592
- msgid "Secret Word"
1593
- msgstr "Секретное слово"
1594
 
1595
- #: ../admin/wp-security-firewall-menu.php:674
1596
- msgid ""
1597
- "Choose a secret word consisting of alphanumeric characters which you can use "
1598
- "to access your special URL. Your are highly encouraged to choose a word "
1599
- "which will be difficult to guess."
1600
  msgstr ""
1601
- "Введите секретное слово (только латинские буквы и цифры). Подберите такое "
1602
- "слово, чтобы его было трудно угадать."
1603
-
1604
- #: ../admin/wp-security-firewall-menu.php:678
1605
- msgid "Re-direct URL"
1606
- msgstr "URL перенаправления"
1607
 
1608
- #: ../admin/wp-security-firewall-menu.php:682
1609
- msgid ""
1610
- "Specify a URL to redirect a hacker to when they try to access your WordPress "
1611
- "login page."
1612
  msgstr ""
1613
- "Введите URL, на который будет перенаправляться хакер при попытках получить "
1614
- "доступ к Вашей форме авторизации."
 
 
 
 
 
 
 
 
1615
 
1616
- #: ../admin/wp-security-firewall-menu.php:689
 
1617
  msgid ""
1618
- "The URL specified here can be any site's URL and does not have to be your "
1619
- "own. For example you can be as creative as you like and send hackers to the "
1620
- "CIA or NSA home page."
1621
  msgstr ""
1622
- "URL, который должен быть в этом поле, может быть адресом любого сайта или "
1623
- "страницы - не обязательно Вашего. Вы можете проявить фантазию и "
1624
- "перенаправлять хакеров, например, на сайт ЦРУ или ФСБ."
1625
 
1626
- #: ../admin/wp-security-firewall-menu.php:691
1627
  msgid ""
1628
- "This field will default to: http://127.0.0.1 if you do not enter a value."
 
1629
  msgstr ""
1630
- "Если Вы ничего не будете вводить в это поле, будет использовано значение по "
1631
- "умолчанию, т.е. «http://127.0.0.1»."
1632
 
1633
- #: ../admin/wp-security-firewall-menu.php:693
1634
- msgid "Useful Tip:"
1635
- msgstr "Полезная подсказка:"
1636
 
1637
- #: ../admin/wp-security-firewall-menu.php:695
1638
  msgid ""
1639
- "It's a good idea to not redirect attempted brute force login attempts to "
1640
- "your site because it increases the load on your server."
1641
  msgstr ""
1642
- "Правильно будет не перенаправлять хакера при неудачных попытках брутфорс-"
1643
- "атак на другие страницы Вашего сайта, так как это только увеличит нагрузку "
1644
- "на Ваш сервер."
1645
 
1646
- #: ../admin/wp-security-firewall-menu.php:697
1647
  msgid ""
1648
- "Redirecting a hacker or malicious bot back to \"http://127.0.0.1\" is ideal "
1649
- "because it deflects them back to their own local host and puts the load on "
1650
- "their server instead of yours."
1651
  msgstr ""
1652
- "Переадресация хакера или вредоносного бота на «http://127.0.0.1» - идеальный "
1653
- "вариант, т.к. возвращает его обратно на его собственный локальный хост и "
1654
- "нагружает его сервер вместо Вашего."
1655
 
1656
- #: ../admin/wp-security-firewall-menu.php:704
1657
- msgid "My Site Has Posts Or Pages Which Are Password Protected"
 
 
 
1658
  msgstr ""
1659
- "На моем сайте есть посты или страницы, закрытые встроенной функцией "
1660
- "Wordpress для защиты контента паролем "
 
1661
 
1662
- #: ../admin/wp-security-firewall-menu.php:707
1663
  msgid ""
1664
- "Check this if you are using the native WordPress password protection feature "
1665
- "for some or all of your blog posts or pages."
1666
  msgstr ""
1667
- "Включите эту опцию, если Вы используете встроенную функцию WordPress для "
1668
- "защиты постов или страниц паролями."
1669
 
1670
- #: ../admin/wp-security-firewall-menu.php:712
1671
  msgid ""
1672
- "In the cases where you are protecting some of your posts or pages using the "
1673
- "in-built WordPress password protection feature, a few extra lines of "
1674
- "directives and exceptions need to be added to your .htacces file so that "
1675
- "people trying to access pages are not automatically blocked."
1676
  msgstr ""
1677
- "В случае, если Вы защищаете свои посты и страницы паролями, используя "
1678
- "соответствующую встроенную функцию WordPress, в файл .htacces необходимо "
1679
- "добавить некоторые дополнительные директивы."
1680
 
1681
- #: ../admin/wp-security-firewall-menu.php:714
1682
  msgid ""
1683
- "By enabling this checkbox the plugin will add the necessary rules and "
1684
- "exceptions to your .htacces file so that people trying to access these pages "
1685
- "are not automatically blocked."
1686
  msgstr ""
1687
- "Включение этой опции добавит в файл .htacces необходимые правила, чтобы "
1688
- "люди, пытающиеся получить доступ к этим страницам, не были автоматически "
1689
- "заблокированы. "
1690
 
1691
- #: ../admin/wp-security-firewall-menu.php:716
1692
- msgid "Helpful Tip:"
1693
- msgstr "Полезная подсказка:"
 
 
 
 
 
 
 
 
 
 
1694
 
1695
- #: ../admin/wp-security-firewall-menu.php:718
1696
  msgid ""
1697
- "If you do not use the WordPress password protection feature for your posts "
1698
- "or pages then it is highly recommended that you leave this checkbox disabled."
 
 
1699
  msgstr ""
1700
- "Если Вы не используете встроенную функцию WordPress для защиты постов или "
1701
- "страниц паролями, крайне рекомендуется оставить этот чекбокс неотмеченным."
 
 
1702
 
1703
- #: ../admin/wp-security-firewall-menu.php:733
1704
- msgid "The cookie test was successful. You can now enable this feature."
1705
- msgstr "Куки-тест прошел успешно - можете активировать эту опцию."
1706
 
1707
- #: ../admin/wp-security-firewall-menu.php:736
1708
- msgid "Save Feature Settings"
1709
- msgstr "Сохранить настройки"
1710
 
1711
- #: ../admin/wp-security-firewall-menu.php:743
 
 
 
 
1712
  msgid ""
1713
- "The cookie test failed on this server. So this feature cannot be used on "
1714
- "this site."
1715
- msgstr "Куки-тест негативный - использование этой функции невозможно."
1716
 
1717
- #: ../admin/wp-security-firewall-menu.php:749
1718
  msgid ""
1719
- "Before using this feature you are required to perform a cookie test first. "
1720
- "This is to make sure that your browser cookie is working correctly and that "
1721
- "you won't lock yourself out."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1722
  msgstr ""
1723
- "Перед включением этой опции необходимо протестировать куки, чтобы убедиться "
1724
- "в корректной обработке куки-файлов Вашим браузером и, тем самым, избежать "
1725
- "блокировки Вашего собственного аккаунта."
1726
 
1727
- #: ../admin/wp-security-firewall-menu.php:751
1728
- msgid "Perform Cookie Test"
1729
- msgstr "Протестировать Куки"
 
 
 
 
 
 
 
 
 
 
1730
 
1731
- #: ../admin/wp-security-list-acct-activity.php:79
1732
- #: ../admin/wp-security-list-comment-spammer-ip.php:76
1733
- #: ../admin/wp-security-list-locked-ip.php:80
1734
- #: ../admin/wp-security-list-locked-ip.php:91
1735
- #: ../admin/wp-security-list-login-fails.php:78
 
 
 
1736
  msgid "Please select some records using the checkboxes"
1737
  msgstr "Пожалуйста, выберите записи, отметив соответствующие чекбоксы"
1738
 
1739
- #: ../admin/wp-security-list-acct-activity.php:107
1740
- #: ../admin/wp-security-list-login-fails.php:107
1741
  msgid "The selected entries were deleted successfully!"
1742
  msgstr "Выбранные записи удалены!"
1743
 
1744
- #: ../admin/wp-security-list-acct-activity.php:120
1745
- #: ../admin/wp-security-list-login-fails.php:119
1746
  msgid "The selected entry was deleted successfully!"
1747
  msgstr "Выбранная запись удалена!"
1748
 
1749
- #: ../admin/wp-security-list-comment-spammer-ip.php:129
1750
  msgid ""
1751
  "The selected IP addresses were saved in the blacklist configuration settings."
1752
  msgstr "Указанные IP-адреса внесены в черный список."
1753
 
1754
- #: ../admin/wp-security-list-comment-spammer-ip.php:143
1755
  msgid ""
1756
  "The .htaccess file was successfully modified to include the selected IP "
1757
  "addresses."
1758
  msgstr "Файл .htaccess успешно изменен - в него внесены указанные IP-адреса."
1759
 
1760
- #: ../admin/wp-security-list-comment-spammer-ip.php:149
1761
  msgid ""
1762
  "NOTE: The .htaccess file was not modified because you have disabled the "
1763
  "\"Enable IP or User Agent Blacklisting\" check box."
@@ -1765,7 +3310,7 @@ msgstr ""
1765
  "ВНИМАНИЕ: файл .htaccess не был изменен, так как опция «Вести Черный список» "
1766
  "неактивна."
1767
 
1768
- #: ../admin/wp-security-list-comment-spammer-ip.php:150
1769
  #, php-format
1770
  msgid ""
1771
  "To block these IP addresses you will need to enable the above flag in the %s "
@@ -1774,25 +3319,67 @@ msgstr ""
1774
  "Чтобы заблокировать эти IP-адреса, необходимо установить соответствующий "
1775
  "флаг в %s меню"
1776
 
1777
- #: ../admin/wp-security-list-locked-ip.php:115
1778
- #: ../admin/wp-security-user-login-menu.php:439
1779
- msgid "The selected IP ranges were unlocked successfully!"
1780
- msgstr "Указанный диапазон IP-адресов разблокирован!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1781
 
1782
- #: ../admin/wp-security-list-locked-ip.php:124
1783
- #: ../admin/wp-security-user-login-menu.php:448
1784
- msgid "The selected IP range was unlocked successfully!"
1785
- msgstr "Указанный диапазон IP-адресов разблокирован!"
1786
 
1787
- #: ../admin/wp-security-maintenance-menu.php:82
 
 
 
 
 
 
 
 
1788
  msgid "Site lockout feature settings saved!"
1789
  msgstr "Сайт переведен в режим обслуживания!"
1790
 
1791
- #: ../admin/wp-security-maintenance-menu.php:87
1792
  msgid "General Visitor Lockout"
1793
  msgstr "Блокирование доступа посетителей к сайту"
1794
 
1795
- #: ../admin/wp-security-maintenance-menu.php:93
1796
  msgid ""
1797
  "This feature allows you to put your site into \"maintenance mode\" by "
1798
  "locking down the front-end to all visitors except logged in users with super "
@@ -1801,7 +3388,7 @@ msgstr ""
1801
  "Эта опция позволяет перевести Ваш сайт в режим обслуживания, сделав "
1802
  "невозможным просмотр сайта посетителями, за исключением администраторов."
1803
 
1804
- #: ../admin/wp-security-maintenance-menu.php:94
1805
  msgid ""
1806
  "Locking your site down to general visitors can be useful if you are "
1807
  "investigating some issues on your site or perhaps you might be doing some "
@@ -1810,11 +3397,11 @@ msgstr ""
1810
  "Это может быть очень полезным, если Вы что-то настраиваете, меняете дизайн, "
1811
  "проверяете работу плагинов и т.д. и т.п."
1812
 
1813
- #: ../admin/wp-security-maintenance-menu.php:99
1814
  msgid "Enable Front-end Lockout"
1815
  msgstr "Включить режим обслуживания"
1816
 
1817
- #: ../admin/wp-security-maintenance-menu.php:102
1818
  msgid ""
1819
  "Check this if you want all visitors except those who are logged in as "
1820
  "administrator to be locked out of the front-end of your site."
@@ -1822,43 +3409,153 @@ msgstr ""
1822
  "Включите эту опцию, если Вы хотите, чтобы обычные посетители не могли "
1823
  "просматривать Ваш сайт - это смогут делать только администраторы."
1824
 
1825
- #: ../admin/wp-security-maintenance-menu.php:106
1826
  msgid "Enter a Message:"
1827
  msgstr "Введите сообщение:"
1828
 
1829
- #: ../admin/wp-security-maintenance-menu.php:118
1830
  msgid ""
1831
  "Enter a message you wish to display to visitors when your site is in "
1832
  "maintenance mode."
1833
  msgstr "Введите сообщение"
1834
 
1835
- #: ../admin/wp-security-maintenance-menu.php:125
1836
  msgid "Save Site Lockout Settings"
1837
  msgstr "Сохранить настройки блокировки сайта"
1838
 
1839
- #: ../admin/wp-security-settings-menu.php:81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1840
  msgid "All the security features have been disabled successfully!"
1841
  msgstr "Все функции безопасности успешно деактивированы!"
1842
 
1843
- #: ../admin/wp-security-settings-menu.php:90
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1844
  msgid "WP Security Plugin"
1845
  msgstr "Плагин WP Security"
1846
 
1847
- #: ../admin/wp-security-settings-menu.php:92
1848
  msgid ""
1849
  "Thank you for using our WordPress security plugin. There are a lot of "
1850
  "security features in this plugin."
1851
  msgstr "Спасибо, что используете плагин WordPress security!"
1852
 
1853
- #: ../admin/wp-security-settings-menu.php:93
1854
  msgid ""
1855
  "Go through each menu items and enable the security options to add more "
1856
- "security to your site."
1857
  msgstr ""
1858
  "Воспользуйтесь меню плагина, чтобы активировать функции безопасности и "
1859
- "защитить свой сайт."
1860
 
1861
- #: ../admin/wp-security-settings-menu.php:94
1862
  msgid ""
1863
  "It is a good practice to take a backup of your .htaccess file, database and "
1864
  "wp-config.php file before activating the security features. This plugin has "
@@ -1868,23 +3565,23 @@ msgstr ""
1868
  "резервные копии важных файлов и базы данных. Вы легко можете это сделать, "
1869
  "воспользовавшись соответствующими опциями данного плагина."
1870
 
1871
- #: ../admin/wp-security-settings-menu.php:97
1872
  msgid "Backup your database"
1873
  msgstr "Создать резервную копию базы данных"
1874
 
1875
- #: ../admin/wp-security-settings-menu.php:98
1876
  msgid "Backup .htaccess file"
1877
  msgstr "Создать резервную копию файла .htaccess"
1878
 
1879
- #: ../admin/wp-security-settings-menu.php:99
1880
  msgid "Backup wp-config.php file"
1881
  msgstr "Создать резервную копию файла wp-config.php"
1882
 
1883
- #: ../admin/wp-security-settings-menu.php:105
1884
  msgid "Disable Security Features"
1885
  msgstr "Отключение функции безопасности"
1886
 
1887
- #: ../admin/wp-security-settings-menu.php:111
1888
  msgid ""
1889
  "If you think that some plugin functionality on your site is broken due to a "
1890
  "security feature you enabled in this plugin, then use the following option "
@@ -1894,21 +3591,36 @@ msgstr ""
1894
  "активирования функций безопасности, воспользуйтесь этой кнопкой, чтобы все "
1895
  "эти функции отключить."
1896
 
1897
- #: ../admin/wp-security-settings-menu.php:115
1898
  msgid "Disable All Security Features"
1899
  msgstr "Отключить все функции безопасности"
1900
 
1901
- #: ../admin/wp-security-settings-menu.php:143
 
 
 
 
 
1902
  msgid ""
1903
- "Your .htaccess file was successfully backed up! Right click on the following "
1904
- "file name and save the backup to your computer."
1905
- msgstr "Резервная копия файла .htaccess успшно создана!"
 
 
 
 
 
1906
 
1907
- #: ../admin/wp-security-settings-menu.php:145
1908
- msgid "Your .htaccess File: "
1909
- msgstr "Ваш файл .htaccess:"
 
 
 
 
 
1910
 
1911
- #: ../admin/wp-security-settings-menu.php:153
1912
  msgid ""
1913
  "htaccess file rename failed during backup. Please check your root directory "
1914
  "for the backup file using FTP."
@@ -1917,15 +3629,15 @@ msgstr ""
1917
  "Воспользуйтесь FTP, чтобы вручную просмотреть корневую директорию сайта на "
1918
  "предмет наличия созданной резервной копии."
1919
 
1920
- #: ../admin/wp-security-settings-menu.php:159
1921
  msgid "htaccess backup failed."
1922
  msgstr "Создать резервную копию файла .htaccess не удалось."
1923
 
1924
- #: ../admin/wp-security-settings-menu.php:174
1925
  msgid "Please choose a .htaccess to restore from."
1926
- msgstr "Выберите резервную копию файла .htaccess"
1927
 
1928
- #: ../admin/wp-security-settings-menu.php:190
1929
  msgid ""
1930
  "htaccess file restore failed. Please attempt to restore the .htaccess "
1931
  "manually using FTP."
@@ -1933,11 +3645,11 @@ msgstr ""
1933
  "Восстановить файл .htaccess не удалось. Попробуйте сделать это вручную, "
1934
  "используя FTP."
1935
 
1936
- #: ../admin/wp-security-settings-menu.php:194
1937
  msgid "Your .htaccess file has successfully been restored!"
1938
  msgstr "Файл .htaccess успешно восстановлен!"
1939
 
1940
- #: ../admin/wp-security-settings-menu.php:200
1941
  msgid ""
1942
  "htaccess Restore operation failed! Please check the contents of the file you "
1943
  "are trying to restore from."
@@ -1945,11 +3657,11 @@ msgstr ""
1945
  "Операция восстановления файла .htaccess не удалась. Убедитесь, что с "
1946
  "содержимым резервной копии все в порядке."
1947
 
1948
- #: ../admin/wp-security-settings-menu.php:206
1949
  msgid ".htaccess File Operations"
1950
  msgstr "Операции с файлом .htaccess"
1951
 
1952
- #: ../admin/wp-security-settings-menu.php:209
1953
  msgid ""
1954
  "Your \".htaccess\" file is a key component of your website's security and it "
1955
  "can be modified to implement various levels of protection mechanisms."
@@ -1957,7 +3669,7 @@ msgstr ""
1957
  "Файл «.htaccess» - это ключевой компонент обеспечения безопасности сайта, "
1958
  "который позволяет в значительной степени варьировать механизмы его защиты."
1959
 
1960
- #: ../admin/wp-security-settings-menu.php:210
1961
  msgid ""
1962
  "This feature allows you to backup and save your currently active .htaccess "
1963
  "file should you need to re-use the the backed up file in the future."
@@ -1965,215 +3677,639 @@ msgstr ""
1965
  "В этом разделе Вы можете создать резервную копию файла .htaccess и, при "
1966
  "необходимости,"
1967
 
1968
- #: ../admin/wp-security-settings-menu.php:211
1969
  msgid ""
1970
  "You can also restore your site's .htaccess settings using a backed up ."
1971
  "htaccess file."
1972
  msgstr "восстановить его из резервной копии в будущем."
1973
 
1974
- #: ../admin/wp-security-settings-menu.php:217
1975
  msgid "Save the current .htaccess file"
1976
  msgstr "Создание резервной копии файла .htaccess"
1977
 
1978
- #: ../admin/wp-security-settings-menu.php:221
1979
  msgid ""
1980
  "Click the button below to backup and save the currently active .htaccess "
1981
  "file."
1982
  msgstr "Для создания резервной копии файла .htaccess нажмите эту кнопку:"
1983
 
1984
- #: ../admin/wp-security-settings-menu.php:222
1985
  msgid "Backup .htaccess File"
1986
  msgstr "Создать и скачать резервную копию файла .htaccess"
1987
 
1988
- #: ../admin/wp-security-settings-menu.php:226
1989
  msgid "Restore from a backed up .htaccess file"
1990
  msgstr "Восстановление файл .htaccess из резервной копии"
1991
 
1992
- #: ../admin/wp-security-settings-menu.php:232
1993
  msgid ".htaccess file to restore from"
1994
  msgstr "Выберите файл резервной копии"
1995
 
1996
- #: ../admin/wp-security-settings-menu.php:238
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1997
  msgid ""
1998
- "After selecting your file, click the button below to restore your site using "
1999
- "the backed up htaccess file (htaccess_backup.txt)."
2000
  msgstr ""
2001
- "После того, как Вы выберите файл резервной копии именем htaccess_backup."
2002
- "txt) на своем компьютере, чтобы заменить им текущий активный файл .htaccess, "
2003
- "нажмите эту кнопку:"
2004
 
2005
- #: ../admin/wp-security-settings-menu.php:244
2006
- msgid "Restore .htaccess File"
2007
- msgstr "Восстановить файл .htaccess"
 
 
 
 
 
 
2008
 
2009
- #: ../admin/wp-security-settings-menu.php:248
2010
- msgid "View Contents of the currently active .htaccess file"
2011
- msgstr "Просмотр содержимого активного файла .htaccess"
 
 
 
 
 
 
2012
 
2013
- #: ../admin/wp-security-settings-menu.php:282
2014
  msgid ""
2015
- "Your wp-config.php file was successfully backed up! Right click on the "
2016
- "following file name and save the backup to your computer."
2017
- msgstr "Резервная копия файла wp-config.php успешно создана!"
 
 
 
 
2018
 
2019
- #: ../admin/wp-security-settings-menu.php:284
2020
- msgid "Your wp-config.php File: "
2021
- msgstr "Ваш файл wp-config.php:"
2022
 
2023
- #: ../admin/wp-security-settings-menu.php:292
2024
  msgid ""
2025
- "wp-config.php file rename failed during backup. Please check your root "
2026
- "directory for the backup file using FTP."
2027
  msgstr ""
2028
- "Во время резервного копирования файла wp-config.php не удалось его "
2029
- "переименовать. Воспользуйтесь FTP, чтобы проверить наличие созданной "
2030
- "резервной копии в корневой директории Вашего сайта."
2031
 
2032
- #: ../admin/wp-security-settings-menu.php:298
2033
- msgid "wp-config.php backup failed."
2034
- msgstr "Создать резервную копию файла wp-config.php не удалось."
 
 
 
 
2035
 
2036
- #: ../admin/wp-security-settings-menu.php:313
2037
- msgid "Please choose a wp-config.php file to restore from."
2038
- msgstr "Выберите файл резервной копии."
 
 
 
 
2039
 
2040
- #: ../admin/wp-security-settings-menu.php:329
2041
  msgid ""
2042
- "wp-config.php file restore failed. Please attempt to restore this file "
2043
- "manually using FTP."
2044
  msgstr ""
2045
- "Операция по восстановлению файла wp-config.php не удалась! Попытайтесь "
2046
- "сделать это вручную, используя FTP."
2047
 
2048
- #: ../admin/wp-security-settings-menu.php:333
2049
- msgid "Your wp-config.php file has successfully been restored!"
2050
- msgstr "Файл wp-config.php успешно восстановлен!"
 
 
 
 
 
2051
 
2052
- #: ../admin/wp-security-settings-menu.php:339
2053
  msgid ""
2054
- "wp-config.php Restore operation failed! Please check the contents of the "
2055
- "file you are trying to restore from."
 
 
 
2056
  msgstr ""
2057
- "Операция по восстановлению файла wp-config.php не удалась! Проверьте "
2058
- "содержимое файла резервной копии."
 
 
2059
 
2060
- #: ../admin/wp-security-settings-menu.php:345
2061
- msgid "wp-config.php File Operations"
2062
- msgstr "Операции с файлом wp-config.php"
2063
 
2064
- #: ../admin/wp-security-settings-menu.php:348
 
 
 
 
2065
  msgid ""
2066
- "Your \"wp-config.php\" file is one of the most important in your WordPress "
2067
- "installation. It is a primary configuration file and contains crucial things "
2068
- "such as details of your database and other critical components."
2069
  msgstr ""
2070
- "Файл wp-config.php - это один из наиболее важных файлов WordPress, "
2071
- "содержащий данные доступа к Вашей базе данных и другие очень ценные "
2072
- "настройки."
2073
 
2074
- #: ../admin/wp-security-settings-menu.php:349
2075
  msgid ""
2076
- "This feature allows you to backup and save your currently active wp-config."
2077
- "php file should you need to re-use the the backed up file in the future."
2078
  msgstr ""
2079
- "В этом разделе Вы можете создать резервную копию этого файла и, при "
2080
- "необходимости,"
2081
 
2082
- #: ../admin/wp-security-settings-menu.php:350
2083
  msgid ""
2084
- "You can also restore your site's wp-config.php settings using a backed up wp-"
2085
- "config.php file."
2086
- msgstr "восстановить его в будущем, используя эту резервную копию."
2087
-
2088
- #: ../admin/wp-security-settings-menu.php:356
2089
- msgid "Save the current wp-config.php file"
2090
- msgstr "Создание резервной копии файла wp-config.php"
2091
 
2092
- #: ../admin/wp-security-settings-menu.php:360
2093
- msgid ""
2094
- "Click the button below to backup and save the currently active wp-config.php "
2095
- "file."
2096
- msgstr "Для создания резервной копии файла wp-config.php нажмите эту кнопку:"
2097
 
2098
- #: ../admin/wp-security-settings-menu.php:361
2099
- msgid "Backup wp-config.php File"
2100
- msgstr "Создать и скачать резервную копию файла wp-config"
2101
 
2102
- #: ../admin/wp-security-settings-menu.php:365
2103
- msgid "Restore from a backed up wp-config file"
2104
- msgstr "Восстановление файла wp-config из резервной копии"
 
 
 
2105
 
2106
- #: ../admin/wp-security-settings-menu.php:371
2107
- msgid "wp-config file to restore from"
2108
- msgstr "Выберите резервную копию файла wp-config"
2109
 
2110
- #: ../admin/wp-security-settings-menu.php:377
2111
  msgid ""
2112
- "After selecting your file click the button below to restore your site using "
2113
- "the backed up wp-config file (wp-config.php.backup.txt)."
2114
  msgstr ""
2115
- "После того, как Вы выберите файл резервной копии (с именем wp-config.php."
2116
- "backup.txt) на своем компьютере, чтобы заменить им текущий активный файл wp-"
2117
- "config, нажмите эту кнопку:"
2118
 
2119
- #: ../admin/wp-security-settings-menu.php:383
2120
- msgid "Restore wp-config File"
2121
- msgstr "Восстановить файл wp-config"
2122
 
2123
- #: ../admin/wp-security-settings-menu.php:387
2124
- msgid "View Contents of the currently active wp-config.php file"
2125
- msgstr "Просмотр содержимого файла wp-config.php"
2126
 
2127
- #: ../admin/wp-security-settings-menu.php:421
2128
- msgid "WP Generator Meta Tag"
2129
- msgstr "Мета-тег WP Generator"
 
 
 
 
2130
 
2131
- #: ../admin/wp-security-settings-menu.php:424
2132
  msgid ""
2133
- "Wordpress generator automatically adds some meta information inside the "
2134
- "\"head\" tags of every page on your site's front end. Below is an example of "
2135
- "this:"
2136
  msgstr ""
2137
- "WP Generator автоматически выводит информацию о текущей весии Wordpress в "
2138
- "специальном мета-теге в секции «head» на всех страницах сайта. Вот пример "
2139
- "такого вывода:"
 
 
 
 
2140
 
2141
- #: ../admin/wp-security-settings-menu.php:426
2142
  msgid ""
2143
- "The above meta information shows which version of WordPress your site is "
2144
- "currently running and thus can help hackers or crawlers scan your site to "
2145
- "see if you have an older version of WordPress or one with a known exploit."
2146
  msgstr ""
2147
- "Эта информация существенно помогает хакерам и их роботам-паукам определять, "
2148
- "не используете ли Вы какую-нибудь устаревшую версию WordPress с уже "
2149
- "известными уязвимостями."
2150
 
2151
- #: ../admin/wp-security-settings-menu.php:427
2152
  msgid ""
2153
- "This feature will allow you to remove the WP generator meta info from your "
2154
- "site's pages."
2155
  msgstr ""
2156
- "Данная опция позволит Вам удалить этот мета-тег со всех страниц Вашего сайта."
 
2157
 
2158
- #: ../admin/wp-security-settings-menu.php:433
2159
- msgid "WP Generator Meta Info"
2160
- msgstr "Мета-данные WP Generator"
2161
 
2162
- #: ../admin/wp-security-settings-menu.php:445
2163
- msgid "Remove WP Generator Meta Info"
2164
- msgstr "Удаление мета-данных WP Generator"
2165
 
2166
- #: ../admin/wp-security-settings-menu.php:448
2167
- msgid ""
2168
- "Check this if you want to remove the meta info produced by WP Generator from "
2169
- "all pages"
2170
- msgstr "Включите эту опцию, чтобы удалить мета-тег WP Generator"
2171
 
2172
- #: ../admin/wp-security-user-accounts-menu.php:79
2173
  msgid "Admin User Security"
2174
  msgstr "Безопасность аккаунта Администратора"
2175
 
2176
- #: ../admin/wp-security-user-accounts-menu.php:82
2177
  msgid ""
2178
  "By default, WordPress sets the administrator username to \"admin\" at "
2179
  "installation time."
@@ -2181,7 +4317,7 @@ msgstr ""
2181
  "При установке WordPress автоматически присваивает администратору имя "
2182
  "пользователя «admin» (если Вы вручную не измените его)."
2183
 
2184
- #: ../admin/wp-security-user-accounts-menu.php:83
2185
  msgid ""
2186
  "A lot of hackers try to take advantage of this information by attempting "
2187
  "\"Brute Force Login Attacks\" where they repeatedly try to guess the "
@@ -2191,7 +4327,7 @@ msgstr ""
2191
  "нападения «Брутфорс-атаку», когда они систематично подбирают пароль, "
2192
  "используя слово «admin» в качестве имени пользователя."
2193
 
2194
- #: ../admin/wp-security-user-accounts-menu.php:84
2195
  msgid ""
2196
  "From a security perspective, changing the default \"admin\" user name is one "
2197
  "of the first and smartest things you should do on your site."
@@ -2200,7 +4336,7 @@ msgstr ""
2200
  "которую Вы должны сделать на своем сайте, это изменить имя пользователя по "
2201
  "умолчанию, т.е. «admin»."
2202
 
2203
- #: ../admin/wp-security-user-accounts-menu.php:85
2204
  msgid ""
2205
  "This feature will allow you to change your default \"admin\" user name to a "
2206
  "more secure name of your choosing."
@@ -2208,15 +4344,16 @@ msgstr ""
2208
  "Этот раздел как раз и предназначен для изменения имени пользователя «admin» "
2209
  "на более безопасное, по Вашему выбору."
2210
 
2211
- #: ../admin/wp-security-user-accounts-menu.php:92
2212
  msgid "List of Administrator Accounts"
2213
  msgstr "Список Администраторов"
2214
 
2215
- #: ../admin/wp-security-user-accounts-menu.php:102
 
2216
  msgid "Change Admin Username"
2217
  msgstr "Изменение имени пользователя Админстратора"
2218
 
2219
- #: ../admin/wp-security-user-accounts-menu.php:110
2220
  msgid ""
2221
  "Your site currently has an account which uses the default \"admin\" "
2222
  "username. \n"
@@ -2229,19 +4366,19 @@ msgstr ""
2229
  "Крайне рекомендуется изменить его на какое-нибудь другое.\n"
2230
  "Для этого воспользуйтесь следующим полем."
2231
 
2232
- #: ../admin/wp-security-user-accounts-menu.php:118
2233
  msgid "New Admin Username"
2234
  msgstr "Новое имя пользователя для администратора"
2235
 
2236
- #: ../admin/wp-security-user-accounts-menu.php:120
2237
  msgid "Choose a new username for admin."
2238
  msgstr "Выберите новое имя пользователя для администратора."
2239
 
2240
- #: ../admin/wp-security-user-accounts-menu.php:124
2241
  msgid "Change Username"
2242
  msgstr "Изменить имя пользователя"
2243
 
2244
- #: ../admin/wp-security-user-accounts-menu.php:126
2245
  msgid ""
2246
  "NOTE: If you are currently logged in as \"admin\" you will be automatically "
2247
  "logged out after changing your username and will be required to log back in."
@@ -2250,11 +4387,11 @@ msgstr ""
2250
  "сессия будет автоматически прекращена, после того, как Вы измените имя "
2251
  "пользователя - надо будет снова авторизоваться, используя уже новый логин."
2252
 
2253
- #: ../admin/wp-security-user-accounts-menu.php:133
2254
  msgid "No action required! "
2255
  msgstr "Действие не требуется!"
2256
 
2257
- #: ../admin/wp-security-user-accounts-menu.php:135
2258
  msgid ""
2259
  "Your site does not have any account which uses the default \"admin\" "
2260
  "username. "
@@ -2262,15 +4399,15 @@ msgstr ""
2262
  "На Вашем сайте нет аккаунтов, использующих в качестве имени пользователя имя "
2263
  "пользователя по умолчанию, т.е. «admin» - "
2264
 
2265
- #: ../admin/wp-security-user-accounts-menu.php:136
2266
  msgid "This is good security practice."
2267
  msgstr "и это очень хорошо."
2268
 
2269
- #: ../admin/wp-security-user-accounts-menu.php:148
2270
  msgid "Display Name Security"
2271
  msgstr "Защита отображаемого имени"
2272
 
2273
- #: ../admin/wp-security-user-accounts-menu.php:151
2274
  msgid ""
2275
  "When you submit a post or answer a comment, WordPress will usually display "
2276
  "your \"nickname\"."
@@ -2278,12 +4415,12 @@ msgstr ""
2278
  "Когда Вы публикуете пост или отвечаете на комментарий, WordPress обычно "
2279
  "отображает Ваш «никнейм»."
2280
 
2281
- #: ../admin/wp-security-user-accounts-menu.php:152
2282
  msgid ""
2283
  "By default the nickname is set to the login (or user) name of your account."
2284
  msgstr "По умолчанию отображаемое имя пользователя идентично логину аккаунта."
2285
 
2286
- #: ../admin/wp-security-user-accounts-menu.php:153
2287
  msgid ""
2288
  "From a security perspective, leaving your nickname the same as your user "
2289
  "name is bad practice because it gives a hacker at least half of your "
@@ -2293,7 +4430,7 @@ msgstr ""
2293
  "половину облегчает хакеру работу - фактически, Вы сами сообщаете ему логин "
2294
  "своего аккаунта."
2295
 
2296
- #: ../admin/wp-security-user-accounts-menu.php:154
2297
  msgid ""
2298
  "Therefore to further tighten your site's security you are advised to change "
2299
  "your <strong>nickname</strong> and <strong>Display name</strong> to be "
@@ -2303,13 +4440,13 @@ msgstr ""
2303
  "свой <strong>никнейм</strong> и <strong>отображаемое имя</strong>, чтобы они "
2304
  "отличались от Вашего <strong>имени пользователя</strong>."
2305
 
2306
- #: ../admin/wp-security-user-accounts-menu.php:160
2307
  msgid "Modify Accounts With Identical Login Name & Display Name"
2308
  msgstr ""
2309
  "Редактирование аккаунтов с совпадающими именем пользователя и отображаемым "
2310
  "именем."
2311
 
2312
- #: ../admin/wp-security-user-accounts-menu.php:169
2313
  msgid ""
2314
  "Your site currently has the following accounts which have an identical login "
2315
  "name and display name."
@@ -2317,15 +4454,15 @@ msgstr ""
2317
  "Следующие аккаунты на Вашем сайте имеют имя пользователя, совпадающее с "
2318
  "отображаемым именем."
2319
 
2320
- #: ../admin/wp-security-user-accounts-menu.php:170
2321
  msgid "Click on the link to edit the settings of that particular user account"
2322
  msgstr "Перейдите по ссылке, чтобы внести изменения в соответствующий аккаунт"
2323
 
2324
- #: ../admin/wp-security-user-accounts-menu.php:185
2325
  msgid "No action required."
2326
  msgstr "Действие не требуется."
2327
 
2328
- #: ../admin/wp-security-user-accounts-menu.php:186
2329
  msgid ""
2330
  "Your site does not have a user account where the display name is identical "
2331
  "to the username."
@@ -2333,11 +4470,11 @@ msgstr ""
2333
  "На Вашем сайте нет аккаунтов, в которых имя пользователя совпадает с "
2334
  "отображаемым именем."
2335
 
2336
- #: ../admin/wp-security-user-accounts-menu.php:197
2337
  msgid "Password Tool"
2338
  msgstr "Проверка пароля"
2339
 
2340
- #: ../admin/wp-security-user-accounts-menu.php:200
2341
  msgid ""
2342
  "Poor password selection is one of the most common weak points of many sites "
2343
  "and is usually the first thing a hacker will try to exploit when attempting "
@@ -2347,7 +4484,7 @@ msgstr ""
2347
  "сайтов, и, как правило, первое, что будет делать хакер, чтобы проникнуть на "
2348
  "сайт - попытается подобрать пароль."
2349
 
2350
- #: ../admin/wp-security-user-accounts-menu.php:201
2351
  msgid ""
2352
  "Many people fall into the trap of using a simple word or series of numbers "
2353
  "as their password. Such a predictable and simple password would take a "
@@ -2360,7 +4497,7 @@ msgstr ""
2360
  "программы с большими базами наиболее распространенных сочетаний букв, слов и "
2361
  "цифр."
2362
 
2363
- #: ../admin/wp-security-user-accounts-menu.php:202
2364
  msgid ""
2365
  "The longer and more complex your password is the harder it is for hackers to "
2366
  "\"crack\" because more complex passwords require much greater computing "
@@ -2369,54 +4506,85 @@ msgstr ""
2369
  "Чем длиннее и сложнее пароль, тем тяжелее будет хакеру его подобрать, потому "
2370
  "что это требует гораздо больше вычислительных мощностей и времени."
2371
 
2372
- #: ../admin/wp-security-user-accounts-menu.php:203
2373
  msgid ""
2374
  "This section contains a useful password strength tool which you can use to "
2375
  "check whether your password is sufficiently strong enough."
2376
  msgstr "Здесь Вы можете проверить свой пароль на надежность."
2377
 
2378
- #: ../admin/wp-security-user-accounts-menu.php:208
2379
  msgid "Password Strength Tool"
2380
  msgstr "Проверка надежности пароля"
2381
 
2382
- #: ../admin/wp-security-user-accounts-menu.php:213
2383
  msgid "Start typing a password."
2384
  msgstr "Введите пароль."
2385
 
2386
- #: ../admin/wp-security-user-accounts-menu.php:238
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2387
  msgid "Nonce check failed on admin username change operation!"
2388
  msgstr "Не удалось изменить имя пользователя!"
2389
 
2390
- #: ../admin/wp-security-user-accounts-menu.php:245
2391
  msgid "Username "
2392
  msgstr "Такое имя пользователя"
2393
 
2394
- #: ../admin/wp-security-user-accounts-menu.php:245
2395
  msgid " already exists. Please enter another value. "
2396
  msgstr "уже существует. Пожалуйста, введите другое значение."
2397
 
2398
- #: ../admin/wp-security-user-accounts-menu.php:261
2399
  msgid "The database update operation of the user account failed!"
2400
  msgstr "Обновление учетной записи не удалось!"
2401
 
2402
- #: ../admin/wp-security-user-accounts-menu.php:288
2403
  msgid "You entered an invalid username. Please enter another value. "
2404
  msgstr ""
2405
  "Вы ввели неверное имя пользователя. Пожалуйста, введите другое значение."
2406
 
2407
- #: ../admin/wp-security-user-accounts-menu.php:292
2408
  msgid "Please enter a value for your username. "
2409
  msgstr "Пожалуйста, введите имя пользователя."
2410
 
2411
- #: ../admin/wp-security-user-accounts-menu.php:299
2412
  msgid "Username Successfully Changed!"
2413
  msgstr "Имя пользователя изменено!"
2414
 
2415
- #: ../admin/wp-security-user-accounts-menu.php:319
2416
  msgid "Account Login Name"
2417
  msgstr "Имя пользователя"
2418
 
2419
- #: ../admin/wp-security-user-login-menu.php:88
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2420
  msgid ""
2421
  "You entered a non numeric value for the max login attempts field. It has "
2422
  "been set to the default value."
@@ -2424,7 +4592,7 @@ msgstr ""
2424
  "Вы ввели нечисловое значение для максимального количества попыток "
2425
  "авторизации. Установлено значение по умолчанию."
2426
 
2427
- #: ../admin/wp-security-user-login-menu.php:95
2428
  msgid ""
2429
  "You entered a non numeric value for the login retry time period field. It "
2430
  "has been set to the default value."
@@ -2432,35 +4600,27 @@ msgstr ""
2432
  "Вы ввели нечисловое значение для ограничения времени попыток авторизации. "
2433
  "Установлено значение по умолчанию."
2434
 
2435
- #: ../admin/wp-security-user-login-menu.php:102
2436
- msgid ""
2437
- "You entered a non numeric value for the lockout time length field. It has "
2438
- "been set to the default value."
2439
- msgstr ""
2440
- "Вы ввели нечисловое значение для периода блокирования. Установлено значение "
2441
- "по умолчанию."
2442
-
2443
- #: ../admin/wp-security-user-login-menu.php:146
2444
  msgid "Login Lockdown Configuration"
2445
  msgstr "Настройки опций блокировки процесса авторизации"
2446
 
2447
- #: ../admin/wp-security-user-login-menu.php:150
2448
  msgid "One of the ways hackers try to compromise sites is via a "
2449
  msgstr ""
2450
  "Один из распространенных способов, используемых хакерами для проникновения "
2451
  "на сайт, является "
2452
 
2453
- #: ../admin/wp-security-user-login-menu.php:150
2454
  msgid "Brute Force Login Attack"
2455
  msgstr "Брутфорс-атака"
2456
 
2457
- #: ../admin/wp-security-user-login-menu.php:151
2458
  msgid ""
2459
  "This is where attackers use repeated login attempts until they guess the "
2460
  "password."
2461
  msgstr "Так называются многократные попытки входа методом подбора паролей."
2462
 
2463
- #: ../admin/wp-security-user-login-menu.php:152
2464
  msgid ""
2465
  "Apart from choosing strong passwords, monitoring and blocking IP addresses "
2466
  "which are involved in repeated login failures in a short period of time is a "
@@ -2472,7 +4632,7 @@ msgstr ""
2472
  "времени для таких попыток, является очень эффективным способом "
2473
  "противодействия этим типам атак."
2474
 
2475
- #: ../admin/wp-security-user-login-menu.php:153
2476
  #, php-format
2477
  msgid ""
2478
  "You may also want to checkout our %s feature for another secure way to "
@@ -2481,15 +4641,15 @@ msgstr ""
2481
  "Вы также можете ознакомиться с другими %s опциями безопасности для защиты от "
2482
  "такого типа атак."
2483
 
2484
- #: ../admin/wp-security-user-login-menu.php:158
2485
  msgid "Login Lockdown Options"
2486
  msgstr "Опции блокировки авторизации"
2487
 
2488
- #: ../admin/wp-security-user-login-menu.php:170
2489
  msgid "Enable Login Lockdown Feature"
2490
  msgstr "Включить опции блокировки попыток авторизации"
2491
 
2492
- #: ../admin/wp-security-user-login-menu.php:173
2493
  msgid ""
2494
  "Check this if you want to enable the login lockdown feature and apply the "
2495
  "settings below"
@@ -2497,22 +4657,34 @@ msgstr ""
2497
  "Отметьте эту опцию, если Вы хотите включить функции контроля за процессом "
2498
  "авторизации, установите необходимые параметры и сохраните настройки"
2499
 
2500
- #: ../admin/wp-security-user-login-menu.php:177
 
 
 
 
 
 
 
 
 
 
 
 
2501
  msgid "Max Login Attempts"
2502
  msgstr "Максимальное количество попыток входа"
2503
 
2504
- #: ../admin/wp-security-user-login-menu.php:179
2505
  msgid ""
2506
  "Set the value for the maximum login retries before IP address is locked out"
2507
  msgstr ""
2508
  "Установите значение для максимального количества попыток входа, после чего "
2509
  "IP-адрес будет заблокирован"
2510
 
2511
- #: ../admin/wp-security-user-login-menu.php:183
2512
  msgid "Login Retry Time Period (min)"
2513
  msgstr "Ограничение времени попыток авторизации (минуты)"
2514
 
2515
- #: ../admin/wp-security-user-login-menu.php:185
2516
  msgid ""
2517
  "If the maximum number of failed login attempts for a particular IP address "
2518
  "occur within this time period the plugin will lock out that address"
@@ -2521,21 +4693,21 @@ msgstr ""
2521
  "адреса IP произойдет в течение этого периода времени, плагин заблокирует "
2522
  "этот адрес"
2523
 
2524
- #: ../admin/wp-security-user-login-menu.php:189
2525
  msgid "Time Length of Lockout (min)"
2526
  msgstr "Период блокирования (минуты)"
2527
 
2528
- #: ../admin/wp-security-user-login-menu.php:191
2529
  msgid ""
2530
  "Set the length of time for which a particular IP address will be prevented "
2531
  "from logging in"
2532
  msgstr "Укажите период времени, на который будут блокироваться IP-адреса"
2533
 
2534
- #: ../admin/wp-security-user-login-menu.php:195
2535
  msgid "Display Generic Error Message"
2536
  msgstr "Выводить сообщения об ошибках авторизации"
2537
 
2538
- #: ../admin/wp-security-user-login-menu.php:198
2539
  msgid ""
2540
  "Check this if you want to show a generic error message when a login attempt "
2541
  "fails"
@@ -2543,11 +4715,23 @@ msgstr ""
2543
  "Отметьте эту опцию, если Вы хотите, чтобы при неудачных попытках авторизации "
2544
  "отображалось сообщение об ошибке"
2545
 
2546
- #: ../admin/wp-security-user-login-menu.php:202
 
 
 
 
 
 
 
 
 
 
 
 
2547
  msgid "Notify By Email"
2548
  msgstr "Уведомлять по Email"
2549
 
2550
- #: ../admin/wp-security-user-login-menu.php:205
2551
  msgid ""
2552
  "Check this if you want to receive an email when someone has been locked out "
2553
  "due to maximum failed login attempts"
@@ -2555,27 +4739,36 @@ msgstr ""
2555
  "Отметьте эту опцию, если Вы хотите получать отчет о неудачных попытках "
2556
  "авторизации на свой почтовый ящик"
2557
 
2558
- #: ../admin/wp-security-user-login-menu.php:215
2559
  msgid "Currently Locked Out IP Address Ranges"
2560
  msgstr "Диапазон временно заблокированных IP-адресов"
2561
 
2562
- #: ../admin/wp-security-user-login-menu.php:242
 
 
 
 
 
 
 
 
 
2563
  msgid "Nonce check failed for delete all failed login records operation!"
2564
  msgstr "Записи об ошибочных попытках авторизации удалить не удалось!"
2565
 
2566
- #: ../admin/wp-security-user-login-menu.php:251
2567
  msgid "User Login Feature - Delete all failed login records operation failed!"
2568
  msgstr "Записи об ошибочных попытках авторизации удалить не удалось!"
2569
 
2570
- #: ../admin/wp-security-user-login-menu.php:255
2571
  msgid "All records from the Failed Logins table were deleted successfully!"
2572
  msgstr "Все записи об ошибочных попытках авторизации удалены!"
2573
 
2574
- #: ../admin/wp-security-user-login-menu.php:270
2575
  msgid "This tab displays the failed login attempts for your site."
2576
  msgstr "Здесь отображаются записи о безуспешных попытках входа на Ваш сайт."
2577
 
2578
- #: ../admin/wp-security-user-login-menu.php:271
2579
  msgid ""
2580
  "The information below can be handy if you need to do security investigations "
2581
  "because it will show you the IP range, username and ID (if applicable) and "
@@ -2586,23 +4779,19 @@ msgstr ""
2586
  "пользователя и ID (если возможно) и время / дата неуспешной попытки входа на "
2587
  "сайт."
2588
 
2589
- #: ../admin/wp-security-user-login-menu.php:276
2590
- msgid "Failed Login Records"
2591
- msgstr "Ошибочные попытки авторизации"
2592
-
2593
- #: ../admin/wp-security-user-login-menu.php:292
2594
- #: ../admin/wp-security-user-login-menu.php:301
2595
  msgid "Delete All Failed Login Records"
2596
  msgstr "Удалить записи"
2597
 
2598
- #: ../admin/wp-security-user-login-menu.php:298
2599
  msgid ""
2600
  "Click this button if you wish to delete all failed login records in one go."
2601
  msgstr ""
2602
  "Нажмите эту кнопку, если Вы хотите удалить все записи об ошибочных попытках "
2603
  "авторизации."
2604
 
2605
- #: ../admin/wp-security-user-login-menu.php:326
2606
  msgid ""
2607
  "You entered a non numeric value for the logout time period field. It has "
2608
  "been set to the default value."
@@ -2610,7 +4799,7 @@ msgstr ""
2610
  "Вы ввели нечисловое значение периода времени. Установка сброшена к значению "
2611
  "по умолчанию."
2612
 
2613
- #: ../admin/wp-security-user-login-menu.php:348
2614
  msgid ""
2615
  "Setting an expiry period for your WP administration session is a simple way "
2616
  "to protect against unauthorized access to your site from your computer."
@@ -2619,92 +4808,248 @@ msgstr ""
2619
  "способ защиты от несанкционированного доступа к вашему сайту с вашего "
2620
  "компьютера."
2621
 
2622
- #: ../admin/wp-security-user-login-menu.php:349
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2623
  msgid ""
2624
- "This feature allows you to specify a time period in minutes after which the "
2625
- "admin session will expire and the user will be forced to log back in."
 
2626
  msgstr ""
2627
- "Эта опция позволяет установить временной период, после истечения которого "
2628
- "сессия администратора истекает и пользователю надо будет авторизоваться "
2629
- "заново."
2630
 
2631
- #: ../admin/wp-security-user-login-menu.php:354
2632
- msgid "Force User Logout Options"
2633
- msgstr "Опции автоматического разлогинивания пользователей"
2634
 
2635
- #: ../admin/wp-security-user-login-menu.php:366
2636
- msgid "Enable Force WP User Logout"
2637
- msgstr "Включить авторазлогинивание"
 
 
 
 
 
 
 
 
2638
 
2639
- #: ../admin/wp-security-user-login-menu.php:369
2640
  msgid ""
2641
- "Check this if you want to force a wp user to be logged out after a "
2642
- "configured amount of time"
2643
  msgstr ""
2644
- "Отметьте эту опцию, чтобы автоматически прекращать авторизационную сессию "
2645
- "пользователей по истечении определенного периода времени"
2646
 
2647
- #: ../admin/wp-security-user-login-menu.php:373
2648
- msgid "Logout the WP User After XX Minutes"
2649
- msgstr "Разлогинить пользователя через"
 
 
 
 
 
 
2650
 
2651
- #: ../admin/wp-security-user-login-menu.php:375
2652
  msgid ""
2653
- "(Minutes) The user will be forced to log back in after this time period has "
2654
- "elapased."
2655
  msgstr ""
2656
- "(Минуты) Пользователь автоматически будет разлогинен по истечении этого "
2657
- "периода времени."
2658
 
2659
- #: ../admin/wp-security-user-login-menu.php:399
 
 
 
 
2660
  msgid ""
2661
- "This tab displays the login activity for WordPress admin accounts registered "
2662
- "with your site."
2663
- msgstr "Здесь отображается активность администраторов на Вашем сайте."
 
 
2664
 
2665
- #: ../admin/wp-security-user-login-menu.php:400
2666
  msgid ""
2667
- "The information below can be handy if you need to do security investigations "
2668
- "because it will show you the last 50 recent login events by username, IP "
2669
- "address and time/date."
2670
  msgstr ""
2671
- "Приведенная ниже информация может пригодиться, если Вы будете проводить "
2672
- "исследование пользовательской активности, так как здесь будут показаны "
2673
- "последние 50 событий авторизации с данными имени пользователя, IP-адресом и "
2674
- "временем входа."
2675
 
2676
- #: ../admin/wp-security-user-login-menu.php:405
2677
- msgid "Account Activity Logs"
2678
- msgstr "Журнал активности аккаунта"
2679
 
2680
- #: ../admin/wp-security-user-login-menu.php:470
2681
- msgid "The selected records were deleted successfully!"
2682
- msgstr "Выбранные записи успешно удалены!"
 
 
 
 
2683
 
2684
- #: ../admin/wp-security-user-login-menu.php:479
2685
- msgid "The selected record was deleted successfully!"
2686
- msgstr "Выбранная запись успешно удалена!"
2687
 
2688
- #: ../admin/wp-security-whois-menu.php:68
2689
  msgid "WHOIS Lookup Information"
2690
  msgstr "Результаты WHOIS-поиска"
2691
 
2692
- #: ../admin/wp-security-whois-menu.php:71
2693
  msgid ""
2694
  "This feature allows you to look up more detailed information about an IP "
2695
  "address or domain name by querying the WHOIS API."
2696
  msgstr ""
2697
  "Эта функция позволяет получить детальную информацию об IP-адресе или домену."
2698
 
2699
- #: ../admin/wp-security-whois-menu.php:77
2700
  msgid "Perform a WHOIS Lookup for an IP or Domain Name"
2701
  msgstr "Выполнить WHOIS-поиск по IP или домену"
2702
 
2703
- #: ../admin/wp-security-whois-menu.php:84
2704
  msgid "Enter IP Address or Domain Name"
2705
  msgstr "Введите IP-адрес или доменное имя"
2706
 
2707
- #: ../admin/wp-security-whois-menu.php:86
2708
  msgid ""
2709
  "Enter an IP address or domain name. Example: 111.11.12.13 OR some-domain-"
2710
  "name.com"
@@ -2712,15 +5057,15 @@ msgstr ""
2712
  "Введите IP-адрес или доменное имя. Пример: 111.11.12.13 или some-domain-name."
2713
  "com"
2714
 
2715
- #: ../admin/wp-security-whois-menu.php:90
2716
  msgid "Perform IP or Domain Lookup"
2717
  msgstr "Выполнить поиск по IP или домену"
2718
 
2719
- #: ../admin/wp-security-whois-menu.php:110
2720
  msgid "WHOIS lookup successfully completed. Please see the results below:"
2721
  msgstr "WHOIS-поиск закончен. Результаты Вы можете видеть ниже:"
2722
 
2723
- #: ../admin/wp-security-whois-menu.php:122
2724
  msgid ""
2725
  "You have entered an incorrectly formatted IP address or domain name. Please "
2726
  "try again."
@@ -2728,89 +5073,386 @@ msgstr ""
2728
  "Вы ввели некорректный IP-адрес или доменное имя. Пожалуйста, попробуйте еще "
2729
  "раз."
2730
 
2731
- #: ../admin/general/wp-security-list-table.php:178
2732
  msgid "No items found."
2733
  msgstr "Ничего не найдено."
2734
 
2735
- #: ../admin/general/wp-security-list-table.php:281
2736
  msgid "Bulk Actions"
2737
  msgstr "Комплексные действия"
2738
 
2739
- #: ../admin/general/wp-security-list-table.php:291
2740
  msgid "Apply"
2741
  msgstr "Применить"
2742
 
2743
- #: ../admin/general/wp-security-list-table.php:365
2744
  msgid "Show all dates"
2745
  msgstr "Отобразить все даты"
2746
 
2747
- #: ../admin/general/wp-security-list-table.php:378
2748
  #, php-format
2749
  msgid "%1$s %2$d"
2750
  msgstr "%1$s %2$d"
2751
 
2752
- #: ../admin/general/wp-security-list-table.php:394
2753
  msgid "List View"
2754
  msgstr "Список"
2755
 
2756
- #: ../admin/general/wp-security-list-table.php:395
2757
  msgid "Excerpt View"
2758
  msgstr "Краткий обзор"
2759
 
2760
- #: ../admin/general/wp-security-list-table.php:421
2761
  #, php-format
2762
  msgid "%s pending"
2763
  msgstr "%s в ожидании"
2764
 
2765
- #: ../admin/general/wp-security-list-table.php:653
2766
  msgid "Select All"
2767
  msgstr "Выбрать все"
2768
 
2769
- #: ../classes/wp-security-backup.php:110
2770
  msgid "All In One WP Security - Site Database Backup"
2771
- msgstr "BAll In One WP Security - Резервное копирование базы данных"
2772
 
2773
- #: ../classes/wp-security-backup.php:112
2774
  msgid "Attached is your latest DB backup file for site URL"
2775
  msgstr "Прикреплена последняя резервная копия базы данных Вашего сайта"
2776
 
2777
- #: ../classes/wp-security-backup.php:112
2778
  msgid " generated on"
2779
  msgstr "создано по"
2780
 
2781
- #: ../classes/wp-security-user-login.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2782
  msgid ""
2783
  "<strong>ERROR</strong>: Login failed because your IP address has been "
2784
- "blocked due to too many failed login attempts.\n"
2785
- " Please contact the administrator."
2786
  msgstr ""
2787
- "<strong>ОШИБКА</strong>: Авторизация не удалась, так как Ваш IP-адрес был "
2788
- "заблокирован по причине слишком большого количества попыток авторизации.\n"
2789
- "Пожалуйста, свяжитесь с администратором."
2790
 
2791
- #: ../classes/wp-security-user-login.php:48
2792
  msgid "<strong>ERROR</strong>: The username field is empty."
2793
  msgstr ""
2794
  "<strong>ОШИБКА</strong>: Поле для указания имени пользователя незаполнено."
2795
 
2796
- #: ../classes/wp-security-user-login.php:52
2797
  msgid "<strong>ERROR</strong>: The password field is empty."
2798
  msgstr "<strong>ERROR</strong>: Поле для указания пароля незаполнено."
2799
 
2800
- #: ../classes/wp-security-user-login.php:64
2801
- msgid "unknown"
2802
- msgstr "неизвестно"
2803
-
2804
- #: ../classes/wp-security-user-login.php:69
2805
- #: ../classes/wp-security-user-login.php:92
2806
  msgid "<strong>ERROR</strong>: Invalid login credentials."
2807
  msgstr "<strong>ОШИБКА</strong>: Неверные логин или пароль"
2808
 
2809
- #: ../classes/wp-security-user-login.php:72
2810
  msgid "<strong>ERROR</strong>: Invalid username."
2811
  msgstr "<strong>ОШИБКА</strong>: Неверное имя пользователя."
2812
 
2813
- #: ../classes/wp-security-user-login.php:95
2814
  #, php-format
2815
  msgid ""
2816
  "<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password "
@@ -2819,27 +5461,39 @@ msgstr ""
2819
  "<strong>ОШИБКА</strong>: Неверный пароль. <a href=\"%s\" title="
2820
  "\"Восстановление пароля\">Забыли свой пароль</a>?"
2821
 
2822
- #: ../classes/wp-security-user-login.php:217
 
 
 
 
 
 
 
 
2823
  msgid "Site Lockout Notification"
2824
  msgstr "Уведомления блокировки"
2825
 
2826
- #: ../classes/wp-security-user-login.php:218
2827
  msgid ""
2828
- "A lockdown event has occurred due to too many failed login attempts with the "
2829
- "following user details"
2830
  msgstr ""
2831
- "Пользователь был заблокирован из-за слишком большого количества попыток "
2832
- "неудачного входа со следующими данными"
2833
 
2834
- #: ../classes/wp-security-user-login.php:219
2835
  msgid "Username: "
2836
  msgstr "Имя пользователя:"
2837
 
2838
- #: ../classes/wp-security-user-login.php:220
 
 
 
 
2839
  msgid "IP Range: "
2840
  msgstr "Диапазон IP-адресов:"
2841
 
2842
- #: ../classes/wp-security-user-login.php:221
2843
  msgid ""
2844
  "Log into your site's WordPress administration panel to see the duration of "
2845
  "the lockout or to unlock the user."
@@ -2847,7 +5501,27 @@ msgstr ""
2847
  "Авторизуйтесь в админ-панели блога, чтобы видеть продолжительность "
2848
  "блокировки или чтобы разблокировать пользователя."
2849
 
2850
- #: ../classes/wp-security-user-login.php:336
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2851
  #, php-format
2852
  msgid ""
2853
  "Your session has expired because it has been over %d minutes since your last "
@@ -2856,24 +5530,452 @@ msgstr ""
2856
  "Ваша сессия была прекращена, поскольку прошло уже более %d минут с тех пор, "
2857
  "как Вы авторизовались последний раз."
2858
 
2859
- #: ../classes/wp-security-user-login.php:337
2860
- #: ../classes/wp-security-user-login.php:341
2861
  msgid "Please log back in to continue."
2862
  msgstr "Для продолжения авторизуйтесь снова."
2863
 
2864
- #: ../classes/wp-security-user-login.php:340
2865
  msgid "You were logged out because you just changed the \"admin\" username."
2866
  msgstr ""
2867
  "Ваша авторизационная сессия была прекращена, так как Вы только что изменили "
2868
  "имя пользователя «admin»."
2869
 
2870
- #: ../classes/wp-security-utility-ip-address.php:79
2871
- #: ../classes/wp-security-utility-ip-address.php:98
2872
- #: ../classes/wp-security-utility-ip-address.php:113
2873
- #: ../classes/wp-security-utility-ip-address.php:128
 
 
 
 
2874
  msgid " is not a valid ip address format."
2875
  msgstr "не является правильным форматом IP-адреса."
2876
 
2877
- #: ../classes/wp-security-utility-ip-address.php:136
2878
  msgid "You cannot ban your own IP address: "
2879
  msgstr "Свой собственный IP-адрес забанить нельзя:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: All In One WP Security & Firewall\n"
4
+ "POT-Creation-Date: 2014-09-19 10:46+1000\n"
5
+ "PO-Revision-Date: 2014-11-07 09:20+0100\n"
6
+ "Last-Translator: Tor-Bjorn Fjellner <bounce@fjellner.com>\n"
7
+ "Language-Team: Update Nov 2014 - Tobi: gsm.fjellner.com\n"
8
+ "Language: ru\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Generator: Poedit 1.5.7\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11) ? 0 : ((n%10>=2 && n"
16
+ "%10<=4 && (n%100<10 || n%100>=20)) ? 1 : 2);\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:203
21
  msgid "WP Security"
22
  msgstr "WP Security"
23
 
24
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:204
25
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:23
26
  msgid "Dashboard"
27
  msgstr "Панель управления"
28
 
29
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:205
30
  msgid "Settings"
31
  msgstr "Настройки"
32
 
33
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:206
34
  msgid "User Accounts"
35
  msgstr "Администраторы"
36
 
37
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:207
38
  msgid "User Login"
39
  msgstr "Авторизация"
40
 
41
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:208
42
+ msgid "User Registration"
43
+ msgstr "Регистрация пользователя"
44
+
45
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:209
46
  msgid "Database Security"
47
  msgstr "База данных"
48
 
49
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:213
50
  msgid "Filesystem Security"
51
  msgstr "Файловая система"
52
 
53
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:215
54
  msgid "WHOIS Lookup"
55
  msgstr "WHOIS-поиск"
56
 
57
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:219
58
  msgid "Blacklist Manager"
59
  msgstr "Черный список"
60
 
61
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:224
62
  msgid "Firewall"
63
  msgstr "Файерволл"
64
 
65
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:229
66
+ msgid "Brute Force"
67
+ msgstr "Защита от брутфорс-атак"
68
+
69
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:231
70
+ msgid "SPAM Prevention"
71
+ msgstr "Защита от SPAM"
72
+
73
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:235
74
+ msgid "Scanner"
75
+ msgstr "Сканнер"
76
+
77
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:237
78
  msgid "Maintenance"
79
  msgstr "Режим обслуживания"
80
 
81
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:238
82
+ msgid "Miscellaneous"
83
+ msgstr "Разное"
84
+
85
+ #: all-in-one-wp-security/admin/wp-security-admin-menu.php:43
86
  msgid "Settings successfully updated."
87
  msgstr "Настройки успешно сохранены!"
88
 
89
+ #: all-in-one-wp-security/admin/wp-security-admin-menu.php:50
90
  msgid "The selected record(s) deleted successfully!"
91
  msgstr "Выбранные записи удалены!"
92
 
93
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:22
94
+ msgid "Ban Users"
95
+ msgstr "Забанить пользователей"
96
+
97
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:80
98
  msgid "Nonce check failed for save blacklist settings!"
99
  msgstr "Настройки черного списка сохранить не удалось!"
100
 
101
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:132
102
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:631
103
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:147
104
  msgid ""
105
  "The plugin was unable to write to the .htaccess file. Please edit file "
106
  "manually."
108
  "Не удалось сделать записи в файле .htaccess file. Пожалуйста, отредактируйте "
109
  "файл вручную."
110
 
111
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:139
112
  msgid "Ban IPs or User Agents"
113
  msgstr "Бан по IP-адресам или юзер-агентам"
114
 
115
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:142
116
  msgid ""
117
  "The All In One WP Security Blacklist feature gives you the option of banning "
118
  "certain host IP addresses or ranges and also user agents."
120
  "Функция «Черный список» позволяет блокировать определенные IP-адреса, "
121
  "диапазоны и юзер-агенты,"
122
 
123
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:143
124
  msgid ""
125
  "This feature will deny total site access for users which have IP addresses "
126
  "or user agents matching those which you have configured in the settings "
129
  "отказывая в доступе к сайту тем пользователям и ботам, которые использовали "
130
  "эти IP-адреса для спама или по другим причинам."
131
 
132
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:144
133
  msgid ""
134
  "The plugin achieves this by making appropriate modifications to your ."
135
  "htaccess file."
136
  msgstr ""
137
  "Данная функция реализуется добавлением в файл .htaccess определенных правил."
138
 
139
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:145
140
  msgid ""
141
  "By blocking people via the .htaccess file your are using the most secure "
142
  "first line of defence which denies all access to blacklisted visitors as "
146
  "первую линию обороны, которая отбросит нежелательных посетителей сразу же, "
147
  "как только они попытаются создать запрос к Вашему серверу."
148
 
149
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:151
150
  msgid "IP Hosts and User Agent Blacklist Settings"
151
  msgstr "Настройки черного списка для блокировки IP-адресов и юзер-агентов"
152
 
153
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:162
154
  msgid "Enable IP or User Agent Blacklisting"
155
  msgstr "Вести Черный список"
156
 
157
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:165
158
  msgid ""
159
  "Check this if you want to enable the banning (or blacklisting) of selected "
160
  "IP addresses and/or user agents specified in the settings below"
162
  "Отметьте этот чекбокс, если Вы хотите иметь возможнось банить указанные IP-"
163
  "адреса или юзер-агенты"
164
 
165
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:169
166
  msgid "Enter IP Addresses:"
167
  msgstr "Введите IP-адреса:"
168
 
169
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:173
170
  msgid "Enter one or more IP addresses or IP ranges."
171
  msgstr "Введите один или более IP-адрес или диапазон адресов."
172
 
173
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:174
174
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:194
175
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:347
176
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:381
177
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:404
178
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:425
179
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:687
180
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:293
181
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:310
182
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:165
183
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:195
184
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:326
185
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:356
186
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:387
187
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:415
188
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:444
189
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:532
190
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:622
191
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:824
192
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:847
193
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:168
194
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:253
195
  msgid "More Info"
196
  msgstr "Подробнее"
197
 
198
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:177
199
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:690
200
  msgid "Each IP address must be on a new line."
201
  msgstr "Каждый IP-адрес должен находиться в отдельной строке."
202
 
203
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:178
204
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:691
205
  msgid ""
206
  "To specify an IP range use a wildcard \"*\" character. Acceptable ways to "
207
  "use wildcards is shown in the examples below:"
209
  "Чтобы указать диапазон IP-адресов, используйте маску «*». Примеры приведены "
210
  "ниже:"
211
 
212
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:179
213
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:692
214
  msgid "Example 1: 195.47.89.*"
215
  msgstr "Пример 1: 195.47.89.*"
216
 
217
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:180
218
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:693
219
  msgid "Example 2: 195.47.*.*"
220
  msgstr "Пример 2: 195.47.*.*"
221
 
222
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:181
223
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:694
224
  msgid "Example 3: 195.*.*.*"
225
  msgstr "Пример 3: 195.*.*.*"
226
 
227
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:188
228
  msgid "Enter User Agents:"
229
  msgstr "Введите названия юзер-агентов:"
230
 
231
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:193
232
  msgid "Enter one or more user agent strings."
233
  msgstr "Введите одну или более строк с названиями юзер-агентов."
234
 
235
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:197
236
  msgid "Each user agent string must be on a new line."
237
  msgstr "Каждый юзер-агент прописывайте в отдельной строке."
238
 
239
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:198
240
  msgid "Example 1 - A single user agent string to block:"
241
  msgstr "Пример 1: Одиночная строка с названием юзер-агента для блокировки:"
242
 
243
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:200
244
  msgid "Example 2 - A list of more than 1 user agent strings to block"
245
  msgstr "Пример 2: Список нескольких юзер-агентов для блокировки"
246
 
247
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:208
248
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:192
249
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:567
250
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:701
251
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:763
252
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:356
253
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:331
254
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:231
255
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:700
256
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:866
257
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:165
258
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:495
259
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:183
260
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:349
261
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:239
262
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:407
263
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:146
264
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:232
265
  msgid "Save Settings"
266
  msgstr "Сохранить настройки"
267
 
268
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:26
269
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:368
270
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:377
271
+ msgid "Rename Login Page"
272
+ msgstr "Переименовать страницу логина"
273
 
274
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:27
275
+ msgid "Cookie Based Brute Force Prevention"
276
+ msgstr "Защита от брутфорс-атак, основанная на использовании куки"
 
 
 
 
277
 
278
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:28
279
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:44
280
+ msgid "Login Captcha"
281
+ msgstr "CAPTCHA на логин"
282
+
283
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:29
284
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:638
285
+ msgid "Login Whitelist"
286
+ msgstr "Белый список для логина"
287
+
288
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:30
289
+ msgid "Honeypot"
290
+ msgstr "Бочка с медом (Honeypot)"
291
+
292
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:101
293
+ msgid "Please enter a value for your login page slug."
294
+ msgstr ""
295
+ "Пожалуйста, введите значение, которое будет использовано в адресе вашей "
296
+ "страницы логина."
297
+
298
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:105
299
+ msgid "You cannot use the value \"wp-admin\" for your login page slug."
300
+ msgstr "Нельзя использовать значение \"wp-admin\" в адресе страницы логина."
301
+
302
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:107
303
+ msgid "You must alpha numeric characters for your login page slug."
304
+ msgstr "Необходимо использовать буквы и цифры в адресе страницы логина."
305
+
306
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:112
307
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:271
308
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:171
309
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:769
310
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:213
311
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:123
312
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:360
313
  msgid "Attention!"
314
  msgstr "Внимание!"
315
 
316
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:131
 
317
  msgid ""
318
+ "Could not delete the Cookie-based directives from the .htaccess file. Please "
319
+ "check the file permissions."
320
  msgstr ""
321
+ "Не удалось из файла .htaccess удалить инструкции для защиты от брутфорс-атак "
322
+ "на основе куки. Пожалуйста, проверьте разрешения на запись для этого файла."
323
 
324
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:141
325
  msgid ""
326
+ "An effective Brute Force prevention technique is to change the default "
327
+ "WordPress login page URL."
328
  msgstr ""
329
+ "Эффективная мера защиты от того, чтобы роботы пытались догадаться паролей - "
330
+ "изменение адреса страницы логина."
331
 
332
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:142
333
  msgid ""
334
+ "Normally if you wanted to login to WordPress you would type your site's home "
335
+ "URL followed by wp-login.php."
336
  msgstr ""
337
+ "Обычно, для того, чтобы логиниться в WordPress, набираешь базовый адрес "
338
+ "сайта, и затем wp-login.php."
339
 
340
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:143
341
  msgid ""
342
+ "This feature allows you to change the login URL by setting your own slug and "
343
+ "renaming the last portion of the login URL which contains the <strong>wp-"
344
+ "login.php</strong> to any string that you like."
345
  msgstr ""
346
+ "С этой функцией сможешь изменить адрес страницы логина, указав собственный "
347
+ "адрес, изменив последнюю часть адреса (URL) страницы, которая обычно "
348
+ "пишется<strong>wp-login.php</strong> на что угодно. "
349
 
350
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:144
351
  msgid ""
352
+ "By doing this, malicious bots and hackers will not be able to access your "
353
+ "login page because they will not know the correct login page URL."
 
 
 
354
  msgstr ""
355
+ "Если сделать так, тогда злонамеренные роботы и хакеры не смогут найти вашу "
356
+ "страницу логина, т.к. не будут знать ее верный адрес."
 
 
 
 
 
 
357
 
358
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:146
 
 
 
 
359
  msgid ""
360
+ "You may also be interested in the following alternative brute force "
361
+ "prevention features:"
362
  msgstr ""
363
+ "Вас также может интересовать следующая альтернатива защиты от брутфорс-атак:"
 
364
 
365
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:157
366
+ msgid "Your WordPress login page URL has been renamed."
367
+ msgstr "Адрес (URL) вашей страницы логина в WordPress изменен."
368
+
369
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:158
370
+ msgid "Your current login URL is:"
371
+ msgstr "Текущий адрес страницы логина:"
372
 
373
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:160
374
  msgid ""
375
+ "NOTE: If you already had the Cookie-Based Brute Force Prevention feature "
376
+ "active, the plugin has automatically deactivated it because only one of "
377
+ "these features can be active at any one time."
378
  msgstr ""
379
+ "Обратите внимание: Если до этого была активна защита от брутфорс-атак на "
380
+ "основе куки, тогда эта две функции не могут быть активны одновременно."
381
 
382
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:167
383
+ msgid "Rename Login Page Settings"
384
+ msgstr "Настройки по переименованию адреса страницы для логина"
385
 
386
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:179
387
+ msgid "Enable Rename Login Page Feature"
388
+ msgstr "Включить опцию переименования страницы логина"
389
 
390
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:182
391
+ msgid "Check this if you want to enable the rename login page feature"
392
+ msgstr ""
393
+ "Ставьте галочку, если хотите активировать функцию переименования страницы "
394
+ "логина"
395
 
396
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:186
397
+ msgid "Login Page URL"
398
+ msgstr "Адрес (URL) страницы логина"
399
 
400
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:188
401
  msgid ""
402
+ "Enter a string which will represent your secure login page slug. You are "
403
+ "enouraged to choose something which is hard to guess and only you will "
404
+ "remember."
405
  msgstr ""
406
+ "Введите текстоое значение, которое составит часть адреса вашей страницы "
407
+ "логина. Предлагаем выбрать нечто, что сложно угадать, и только вы будете "
408
+ "помнить."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
409
 
410
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:221
411
  msgid ""
412
+ "Settings have not been saved - your secret word must consist only of "
413
+ "alphanumeric characters, ie, letters and/or numbers only!"
414
  msgstr ""
415
+ "Настройки не сохранились - секретное слово должно состоять только из "
416
+ "латинских букв и/или цифр!"
 
 
 
 
417
 
418
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:240
419
+ msgid ""
420
+ "You have successfully enabled the cookie based brute force prevention feature"
421
+ msgstr "Вы успешно активировали защиту от брутфорс-атак"
422
 
423
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:241
424
+ msgid ""
425
+ "From now on you will need to log into your WP Admin using the following URL:"
426
+ msgstr "С этого момента заходите на Вашу страницу авторизации по этому адресу:"
 
427
 
428
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:243
429
+ msgid ""
430
+ "It is important that you save this URL value somewhere in case you forget "
431
+ "it, OR,"
432
+ msgstr ""
433
+ "Очень важно, чтобы Вы сохранили этот URL где-нибудь в надежном месте, на "
434
+ "случай, если Вы его забудете, или"
435
 
436
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:244
437
+ #, php-format
438
+ msgid "simply remember to add a \"?%s=1\" to your current site URL address."
439
+ msgstr "просто запомните, что к адресу Вашего сайта надо добавить «?%s=1»."
440
 
441
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:250
442
+ msgid ""
443
+ "You have successfully saved cookie based brute force prevention feature "
444
+ "settings."
445
+ msgstr "Настройки сохранены!"
446
 
447
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:285
448
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:275
449
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:119
450
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:287
451
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:498
452
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:667
453
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:585
454
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:108
455
  msgid ""
456
+ "Could not write to the .htaccess file. Please check the file permissions."
 
 
457
  msgstr ""
458
+ "Файл .htaccess недоступен для записи. Пожалуйста, проверьте разрешения на "
459
+ "запись для этого файла. "
 
460
 
461
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:295
462
+ msgid "Brute Force Prevention Firewall Settings"
463
+ msgstr "Настройки Файерволла для защиты от Брутфорс-атак"
464
 
465
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:300
466
  msgid ""
467
+ "A Brute Force Attack is when a hacker tries many combinations of usernames "
468
+ "and passwords until they succeed in guessing the right combination."
469
  msgstr ""
470
+ "Брутфорс-атакой называется многократный перебор различных сочетаний имен "
471
+ "пользователей и паролей, до тех пор, пока не будет найдена их правильная "
472
+ "комбинация."
 
 
 
473
 
474
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:301
475
  msgid ""
476
+ "Due to the fact that at any one time there may be many concurrent login "
477
+ "attempts occurring on your site via malicious automated robots, this also "
478
+ "has a negative impact on your server's memory and performance."
479
  msgstr ""
480
+ "В связи с тем, что в любой момент времени может происходить большое "
481
+ "количество попыток входа на Ваш сайт, осуществляемых с помощью вредоносных "
482
+ "программ-роботов, это также оказывает негативное влияние на Ваш сервер, так "
483
+ "как отнимает ресурсы памяти и снижает его производительность."
484
 
485
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:302
486
  msgid ""
487
+ "The features in this tab will stop the majority of Brute Force Login Attacks "
488
+ "at the .htaccess level thus providing even better protection for your WP "
489
+ "login page and also reducing the load on your server because the system does "
490
+ "not have to run PHP code to process the login attempts."
491
  msgstr ""
492
+ "Функции в этой вкладке остановят большинство брутфорс-атак на уровне файла ."
493
+ "htaccess, обеспечивая тем самым усиленную защиту Вашей страницы авторизации "
494
+ "и снижая нагрузку на сервер, так как система при этом не запускает PHP код "
495
+ "для обработки попыток входа в систему."
496
 
497
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:309
498
+ #, php-format
499
  msgid ""
500
+ "Even though this feature should not have any impact on your site's general "
501
+ "functionality <strong>you are strongly encouraged to take a %s of your ."
502
+ "htaccess file before proceeding</strong>."
503
  msgstr ""
504
+ "Активация этих опций не должна иметь никакого влияния на общую "
505
+ "функциональность Вашего сайта, но при желании Вы можете создать %s Вашего ."
506
+ "htaccess-файла, перед тем, как включите эти настройки."
507
 
508
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:310
509
  msgid ""
510
+ "If this feature is not used correctly, you can get locked out of your site. "
511
+ "A backed up .htaccess file will come in handy if that happens."
512
  msgstr ""
513
+ "Если эта услуга используется неправильно есть риск, что вы потеряете доступ "
514
+ "к своему сайту. В таком случае, резервная копия файла .htaccess может сильно "
515
+ "помочь."
 
 
 
516
 
517
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:311
518
  #, php-format
 
 
 
 
 
 
 
 
519
  msgid ""
520
+ "To learn more about how to use this feature please watch the following %s."
 
 
 
521
  msgstr ""
522
+ "Вы можете узнать больше о том, как пользоваться этой услугой здесь: %s."
 
 
 
 
 
523
 
524
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:324
525
  msgid ""
526
+ "NOTE: If you already had the Rename Login Page feature active, the plugin "
527
+ "has automatically deactivated it because only one of these features can be "
528
+ "active at any one time."
529
  msgstr ""
530
+ "Обратите внимание: Если была активна функция переименования страницы логина, "
531
+ "тогда этот плагин автоматически отключила ее, т.к. эти две услуги не могут "
532
+ "быть активны одновременно."
533
 
534
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:332
535
+ msgid "Cookie Based Brute Force Login Prevention"
536
+ msgstr "Защита от брутфорс-атак, основанная на использовании куки"
537
 
538
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:343
539
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:90
540
+ msgid "Enable Brute Force Attack Prevention"
541
+ msgstr "Активировать защиту от брутфорс-атак"
542
+
543
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:346
544
  msgid ""
545
+ "Check this if you want to protect your login page from Brute Force Attack."
 
546
  msgstr ""
547
+ "Отметьте, если Вы хотите защитить Вашу форму авторизации от брутфорс-атак."
 
 
 
 
 
 
 
 
 
 
548
 
549
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:351
550
  msgid ""
551
+ "This feature will deny access to your WordPress login page for all people "
552
+ "except those who have a special cookie in their browser."
553
  msgstr ""
554
+ "Эта функция запретит доступ к Вашей странице авторизации любому "
555
+ "пользователю, у которого в браузере нет специального куки-файла."
556
 
557
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:353
558
+ msgid "To use this feature do the following:"
559
+ msgstr "Для активации этой опции сделайте следующее:"
560
 
561
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:355
562
+ msgid "1) Enable the checkbox."
563
+ msgstr "1) Включите этот чекбокс."
 
 
564
 
565
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:357
566
  msgid ""
567
+ "2) Enter a secret word consisting of alphanumeric characters which will be "
568
+ "difficult to guess. This secret word will be useful whenever you need to "
569
+ "know the special URL which you will use to access the login page (see point "
570
+ "below)."
571
  msgstr ""
572
+ "2) Введите секретное слово, состоящее из буквенно-цифровых символов (буквы "
573
+ "латинские), которое будет трудно разгадать. Это слово будет использовано, "
574
+ "чтобы создать для Вас специальный URL для доступа к странице авторизации "
575
+ "(смотрите следующий пункт)."
576
 
577
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:359
578
  msgid ""
579
+ "3) You will then be provided with a special login URL. You will need to use "
580
+ "this URL to login to your WordPress site instead of the usual login URL. "
581
+ "NOTE: The system will deposit a special cookie in your browser which will "
582
+ "allow you access to the WordPress administration login page."
583
+ msgstr ""
584
+ "3) После сохранения этих настроек Вы получите специальный URL для "
585
+ "авторизации, о котором больше никто не будет знать. Этот URL Вы должны "
586
+ "будете использовать вместо стандартного URL к странице авторизации. "
587
+ "ВНИМАНИЕ: Плагин поместит в Ваш браузер специальный куки-файл, который будет "
588
+ "служить Вашим персональным пропуском в админ-панель блога."
589
+
590
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:361
591
+ msgid ""
592
+ "Any person trying to access your login page who does not have the special "
593
+ "cookie in their browser will be automatically blocked."
594
+ msgstr ""
595
+ "Любой, кто попытается попасть на Вашу страницу авторизации, не имея "
596
+ "специального куки-файла в своем браузере, будет автоматически заблокирован."
597
+
598
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:368
599
+ msgid "Secret Word"
600
+ msgstr "Секретное слово"
601
+
602
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:370
603
+ msgid ""
604
+ "Choose a secret word consisting of alphanumeric characters which you can use "
605
+ "to access your special URL. Your are highly encouraged to choose a word "
606
+ "which will be difficult to guess."
607
+ msgstr ""
608
+ "Введите секретное слово (только латинские буквы и цифры). Подберите такое "
609
+ "слово, чтобы его было трудно угадать."
610
+
611
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:374
612
+ msgid "Re-direct URL"
613
+ msgstr "URL перенаправления"
614
+
615
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:378
616
+ msgid ""
617
+ "Specify a URL to redirect a hacker to when they try to access your WordPress "
618
+ "login page."
619
+ msgstr ""
620
+ "Введите URL, на который будет перенаправляться хакер при попытках получить "
621
+ "доступ к Вашей форме авторизации."
622
+
623
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:385
624
+ msgid ""
625
+ "The URL specified here can be any site's URL and does not have to be your "
626
+ "own. For example you can be as creative as you like and send hackers to the "
627
+ "CIA or NSA home page."
628
+ msgstr ""
629
+ "URL, который должен быть в этом поле, может быть адресом любого сайта или "
630
+ "страницы - не обязательно Вашего. Вы можете проявить фантазию и "
631
+ "перенаправлять хакеров, например, на сайт ЦРУ или ФСБ."
632
+
633
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:387
634
+ msgid ""
635
+ "This field will default to: http://127.0.0.1 if you do not enter a value."
636
+ msgstr ""
637
+ "Если Вы ничего не будете вводить в это поле, будет использовано значение по "
638
+ "умолчанию, т.е. «http://127.0.0.1»."
639
+
640
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:389
641
+ msgid "Useful Tip:"
642
+ msgstr "Полезная подсказка:"
643
+
644
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:391
645
+ msgid ""
646
+ "It's a good idea to not redirect attempted brute force login attempts to "
647
+ "your site because it increases the load on your server."
648
+ msgstr ""
649
+ "Правильно будет не перенаправлять хакера при неудачных попытках брутфорс-"
650
+ "атак на другие страницы Вашего сайта, так как это только увеличит нагрузку "
651
+ "на Ваш сервер."
652
+
653
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:393
654
+ msgid ""
655
+ "Redirecting a hacker or malicious bot back to \"http://127.0.0.1\" is ideal "
656
+ "because it deflects them back to their own local host and puts the load on "
657
+ "their server instead of yours."
658
+ msgstr ""
659
+ "Переадресация хакера или вредоносного бота на «http://127.0.0.1» - идеальный "
660
+ "вариант, т.к. возвращает его обратно на его собственный локальный хост и "
661
+ "нагружает его сервер вместо Вашего."
662
+
663
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:400
664
+ msgid "My Site Has Posts Or Pages Which Are Password Protected"
665
+ msgstr ""
666
+ "На моем сайте есть посты или страницы, закрытые встроенной функцией "
667
+ "Wordpress для защиты контента паролем "
668
+
669
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:403
670
+ msgid ""
671
+ "Check this if you are using the native WordPress password protection feature "
672
+ "for some or all of your blog posts or pages."
673
+ msgstr ""
674
+ "Включите эту опцию, если Вы используете встроенную функцию WordPress для "
675
+ "защиты постов или страниц паролями."
676
+
677
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:408
678
+ msgid ""
679
+ "In the cases where you are protecting some of your posts or pages using the "
680
+ "in-built WordPress password protection feature, a few extra lines of "
681
+ "directives and exceptions need to be added to your .htacces file so that "
682
+ "people trying to access pages are not automatically blocked."
683
+ msgstr ""
684
+ "В случае, если Вы защищаете свои посты и страницы паролями, используя "
685
+ "соответствующую встроенную функцию WordPress, в файл .htacces необходимо "
686
+ "добавить некоторые дополнительные директивы."
687
+
688
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:410
689
+ msgid ""
690
+ "By enabling this checkbox the plugin will add the necessary rules and "
691
+ "exceptions to your .htacces file so that people trying to access these pages "
692
+ "are not automatically blocked."
693
+ msgstr ""
694
+ "Включение этой опции добавит в файл .htacces необходимые правила, чтобы "
695
+ "люди, пытающиеся получить доступ к этим страницам, не были автоматически "
696
+ "заблокированы. "
697
+
698
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:412
699
+ msgid "Helpful Tip:"
700
+ msgstr "Полезная подсказка:"
701
+
702
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:414
703
+ msgid ""
704
+ "If you do not use the WordPress password protection feature for your posts "
705
+ "or pages then it is highly recommended that you leave this checkbox disabled."
706
+ msgstr ""
707
+ "Если Вы не используете встроенную функцию WordPress для защиты постов или "
708
+ "страниц паролями, крайне рекомендуется оставить этот чекбокс неотмеченным."
709
+
710
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:421
711
+ msgid "My Site Has a Theme or Plugins Which Use AJAX"
712
+ msgstr "На этом сайте есть тема или плагин, которые используют AJAX"
713
+
714
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:424
715
+ msgid "Check this if your site uses AJAX functionality."
716
+ msgstr "Поставьте галочку, если ваш сайт использует функциональность AJAX."
717
+
718
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:429
719
+ msgid ""
720
+ "In the cases where your WordPress installation has a theme or plugins which "
721
+ "use AJAX, a few extra lines of directives and exceptions need to be added to "
722
+ "your .htacces file to prevent AJAX requests from being automatically blocked "
723
+ "by the brute force prevention feature."
724
+ msgstr ""
725
+ "В случае, если на вашем сайте есть темы или плагины, которые используют "
726
+ "AJAX, тогда несколько дополнительных строчек с командами и исключениями "
727
+ "должны быть добавлены в файле .htaccess вашего сайта для того, чтобы запросы "
728
+ "AJAX не были бы заблокированы защитой от брутфорса."
729
+
730
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:431
731
+ msgid ""
732
+ "By enabling this checkbox the plugin will add the necessary rules and "
733
+ "exceptions to your .htacces file so that AJAX operations will work as "
734
+ "expected."
735
+ msgstr ""
736
+ "Включение этой опции добавит в файл .htacces необходимые правила, чтобы "
737
+ "процедуры AJAX работали правильно. "
738
+
739
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:446
740
+ msgid "The cookie test was successful. You can now enable this feature."
741
+ msgstr "Куки-тест прошел успешно - можете активировать эту опцию."
742
+
743
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:449
744
+ msgid "Save Feature Settings"
745
+ msgstr "Сохранить настройки"
746
+
747
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:456
748
+ msgid ""
749
+ "The cookie test failed on this server. So this feature cannot be used on "
750
+ "this site."
751
+ msgstr "Куки-тест негативный - использование этой функции невозможно."
752
+
753
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:461
754
+ msgid ""
755
+ "Before using this feature you are required to perform a cookie test first. "
756
+ "This is to make sure that your browser cookie is working correctly and that "
757
+ "you won't lock yourself out."
758
+ msgstr ""
759
+ "Перед включением этой опции необходимо протестировать куки, чтобы убедиться "
760
+ "в корректной обработке куки-файлов Вашим браузером и, тем самым, избежать "
761
+ "блокировки Вашего собственного аккаунта."
762
+
763
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:463
764
+ msgid "Perform Cookie Test"
765
+ msgstr "Протестировать Куки"
766
+
767
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:503
768
+ msgid ""
769
+ "This feature allows you to add a captcha form on the WordPress login page."
770
+ msgstr ""
771
+ "Данная функция позволяет вам добавить поле CAPTCHA на странице логин "
772
+ "WordPress."
773
+
774
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:504
775
+ msgid ""
776
+ "Users who attempt to login will also need to enter the answer to a simple "
777
+ "mathematical question - if they enter the wrong answer, the plugin will not "
778
+ "allow them login even if they entered the correct username and password."
779
+ msgstr ""
780
+ "Кроме того, пользователи, которые пытаются авторизоваться, должны ввести "
781
+ "ответ на очень простой математический вопрос. Если на вопрос ответили "
782
+ "неверно, тогда плагин не даст им войти, даже если верно указали имя "
783
+ "пользователя и пароль."
784
+
785
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:505
786
+ msgid ""
787
+ "Therefore, adding a captcha form on the login page is another effective yet "
788
+ "simple \"Brute Force\" prevention technique."
789
+ msgstr ""
790
+ "Поэтому, добавить форму CAPTCHA на странице логина - еще один эффективный и "
791
+ "одновременно простой способ защиты от брутфорс-атак."
792
+
793
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:511
794
+ msgid "Login Form Captcha Settings"
795
+ msgstr "Настройки формы CAPTCHA на странице логина"
796
+
797
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:522
798
+ msgid "Enable Captcha On Login Page"
799
+ msgstr "Включить CAPTCHA на странице логина"
800
+
801
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:525
802
+ msgid "Check this if you want to insert a captcha form on the login page"
803
+ msgstr ""
804
+ "Включите этот чекбокс, чтобы добавить CAPTCHA на странице логина вашего сайта"
805
+
806
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:531
807
+ msgid "Custom Login Form Captcha Settings"
808
+ msgstr "Особые настройки формы CAPTCHA на странице логина"
809
+
810
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:540
811
+ msgid "Enable Captcha On Custom Login Form"
812
+ msgstr "Активировать форму CAPTCHA на измененной странице логина"
813
+
814
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:543
815
+ msgid ""
816
+ "Check this if you want to insert captcha on a custom login form generated by "
817
+ "the following WP function: wp_login_form()"
818
+ msgstr ""
819
+ "Поставьте галочку тут, чтобы добавить CAPTCHA в специальную форму логина, "
820
+ "которая генерируется функцией wp_login_form()"
821
+
822
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:549
823
+ msgid "Lost Password Form Captcha Settings"
824
+ msgstr "Настройки CAPTCHA на странице \"потерянного пароля\""
825
+
826
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:559
827
+ msgid "Enable Captcha On Lost Password Page"
828
+ msgstr "Активировать CAPTCHA на странице \"потерянного пароля\""
829
+
830
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:562
831
+ msgid ""
832
+ "Check this if you want to insert a captcha form on the lost password page"
833
+ msgstr ""
834
+ "Поставьте галочку тут, чтобы добавить CAPTCHA на странице восстановления "
835
+ "пароля"
836
+
837
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:584
838
+ msgid "Nonce check failed for save whitelist settings!"
839
+ msgstr ""
840
+ "Не удалось сохранить новые настройки белого списка, т.к. произошла ошибка с "
841
+ "одноразовым параметром nonce!"
842
+
843
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:641
844
+ msgid ""
845
+ "The All In One WP Security Whitelist feature gives you the option of only "
846
+ "allowing certain IP addresses or ranges to have access to your WordPress "
847
+ "login page."
848
+ msgstr ""
849
+ "Функция белого списка All In One WP Security дает возможность открыть доступ "
850
+ "на страницу логина WordPress только с определенных адресов или блоков IP."
851
+
852
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:642
853
+ msgid ""
854
+ "This feature will deny login access for all IP addresses which are not in "
855
+ "your whitelist as configured in the settings below."
856
+ msgstr ""
857
+ "Эта функция запретит доступ на логин для всех адресов IP, которых нет в "
858
+ "белом списке, ниже."
859
+
860
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:643
861
+ msgid ""
862
+ "The plugin achieves this by writing the appropriate directives to your ."
863
+ "htaccess file."
864
+ msgstr "Для этого, плагин пишет соответствующие правила в файл .htaccess."
865
+
866
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:644
867
+ msgid ""
868
+ "By allowing/blocking IP addresses via the .htaccess file your are using the "
869
+ "most secure first line of defence because login access will only be granted "
870
+ "to whitelisted IP addresses and other addresses will be blocked as soon as "
871
+ "they try to access your login page."
872
+ msgstr ""
873
+ "Пропуская / блокируя разные IP-адреса с помощью директив файла .htaccess Вы "
874
+ "используете первую линию обороны, т.к. доступ к странице логина будет открыт "
875
+ "только IP-адресам из белого списка. Все остальные адреса будут "
876
+ "заблокированы, как только пытаются открыть страницу логина."
877
+
878
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:651
879
+ #, php-format
880
+ msgid ""
881
+ "Attention: If in addition to enabling the white list feature, you also have "
882
+ "the %s feature enabled, <strong>you will still need to use your secret word "
883
+ "in the URL when trying to access your WordPress login page</strong>."
884
+ msgstr ""
885
+ "Внимание: Если, кроме функции Белого списка, вы еще активировали функцию %s, "
886
+ "тогда <strong>вам все равно приходится использовать адрес (URL) с секретным "
887
+ "словом для доступа к вашей странице логин в WordPress</strong>"
888
+
889
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:652
890
+ msgid ""
891
+ "These features are NOT functionally related. Having both of them enabled on "
892
+ "your site means you are creating 2 layers of security."
893
+ msgstr ""
894
+ "Эти функции независимы друг от друга. Если обе активированы, тогда на вашем "
895
+ "сайте работают два уровня защиты одновременно."
896
+
897
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:657
898
+ msgid "Login IP Whitelist Settings"
899
+ msgstr "Белый список адресов IP для логина"
900
+
901
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:668
902
+ msgid "Enable IP Whitelisting"
903
+ msgstr "Активировать белый список IP-адресов"
904
+
905
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:671
906
+ msgid ""
907
+ "Check this if you want to enable the whitelisting of selected IP addresses "
908
+ "specified in the settings below"
909
+ msgstr ""
910
+ "Отметьте этот чекбокс, если Вы хотите пользоваться белым списком избранных "
911
+ "IP-адресов ниже"
912
+
913
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:675
914
+ msgid "Your Current IP Address"
915
+ msgstr "Ваш текущий адрес IP"
916
+
917
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:678
918
+ msgid ""
919
+ "You can copy and paste this address in the text box below if you want to "
920
+ "include it in your login whitelist."
921
+ msgstr ""
922
+ "Можно скопировать и вставить этот адрес в текстовое поле внизу, если хотите "
923
+ "включить его в белый список адресов для логина."
924
+
925
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:682
926
+ msgid "Enter Whitelisted IP Addresses:"
927
+ msgstr "Введите IP-адреса для белого списка:"
928
+
929
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:686
930
+ msgid ""
931
+ "Enter one or more IP addresses or IP ranges you wish to include in your "
932
+ "whitelist. Only the addresses specified here will have access to the "
933
+ "WordPress login page."
934
+ msgstr ""
935
+ "Введите один или несколько адресов IP или блоки IP-адресов, которые хотите "
936
+ "включить в ваш белый список. Доступ к странице логина в WordPress будет "
937
+ "открыт только с этих адресов."
938
+
939
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:734
940
+ msgid ""
941
+ "This feature allows you to add a special hidden \"honeypot\" field on the "
942
+ "WordPress login page. This will only be visible to robots and not humans."
943
+ msgstr ""
944
+ "Данная функция позволяет добавить специальное, скрытое поле \"honeypot\" на "
945
+ "странице логина. Оно будет видно только роботам."
946
+
947
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:735
948
+ msgid ""
949
+ "Since robots usually fill in every input field from a login form, they will "
950
+ "also submit a value for the special hidden honeypot field."
951
+ msgstr ""
952
+ "Т.к. роботы обычно заполняют все поля в форме логина, они отправят и какое-"
953
+ "то значение в специальном, скрытом поле медового бочка (honey pot)."
954
+
955
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:736
956
+ msgid ""
957
+ "The way honeypots work is that a hidden field is placed somewhere inside a "
958
+ "form which only robots will submit. If that field contains a value when the "
959
+ "form is submitted then a robot has most likely submitted the form and it is "
960
+ "consquently dealt with."
961
+ msgstr ""
962
+ "Медовый боченок (honey pot) означает, что скрытое поле помещается внутри "
963
+ "какой-то формы, и только роботы его заполняют. Если данное поле имеет "
964
+ "значени, когда содержание формы передается на сервер, тогда форма, скорее "
965
+ "всего, была заполнена роботом, и сервер, следовательно, поведет себя "
966
+ "соответственно."
967
+
968
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:737
969
+ msgid ""
970
+ "Therefore, if the plugin detects that this field has a value when the login "
971
+ "form is submitted, then the robot which is attempting to login to your site "
972
+ "will be redirected to its localhost address - http://127.0.0.1."
973
+ msgstr ""
974
+ "Поэтому, если плагин видит, что данное поле было заполнено, робот, который "
975
+ "пытается логиниться на вашем сайте, будет перенаправлен на свой собственный "
976
+ "адрес, а именно - http://127.0.0.1."
977
+
978
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:743
979
+ msgid "Login Form Honeypot Settings"
980
+ msgstr "Настройки медового боченка (honey pot) страницы логина"
981
+
982
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:754
983
+ msgid "Enable Honeypot On Login Page"
984
+ msgstr "Активировать медовый боченок (honey pot) на странице логина"
985
+
986
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:757
987
+ msgid ""
988
+ "Check this if you want to enable the honeypot feature for the login page"
989
+ msgstr ""
990
+ "Включите этот чекбокс, чтобы активировать функция медовый бачок / honeypot "
991
+ "на странице логина"
992
+
993
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:24
994
+ msgid "System Info"
995
+ msgstr "Информация о системе"
996
+
997
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:25
998
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:460
999
+ msgid "Locked IP Addresses"
1000
+ msgstr "Заблокированные IP-адреса"
1001
+
1002
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:75
1003
+ msgid "For information, updates and documentation, please visit the"
1004
+ msgstr ""
1005
+ "Для получения информации, обновлений и документации, пожалуйста посетите"
1006
+
1007
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:75
1008
+ msgid "AIO WP Security & Firewall Plugin"
1009
+ msgstr "плагин AIO WP Security & Firewall"
1010
+
1011
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:75
1012
+ msgid "Page"
1013
+ msgstr "Страница"
1014
+
1015
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:76
1016
+ msgid "Follow us"
1017
+ msgstr "Следите за нами"
1018
+
1019
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:76
1020
+ msgid ""
1021
+ "Twitter, Google+ or via Email to stay up to date about the new security "
1022
+ "features of this plugin."
1023
+ msgstr ""
1024
+ "Через Twitter, Google+ или по электронной почте вы можете всегда быть в "
1025
+ "курсе последних новинок нашего плагина по безопасности."
1026
+
1027
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:92
1028
+ msgid "Security Strength Meter"
1029
+ msgstr "Измеритель уровня безопасности"
1030
+
1031
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:121
1032
+ msgid "Total Achievable Points: "
1033
+ msgstr "Максимально возможный балл:"
1034
+
1035
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:123
1036
+ msgid "Current Score of Your Site: "
1037
+ msgstr "Текущий балл Вашего сайта:"
1038
+
1039
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:133
1040
+ msgid "Security Points Breakdown"
1041
+ msgstr "Подробная разборка очков безопасности"
1042
+
1043
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:174
1044
+ msgid "Spread the Word"
1045
+ msgstr "Расскажите друзьям"
1046
+
1047
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:177
1048
+ msgid ""
1049
+ "We are working hard to make your WordPress site more secure. Please support "
1050
+ "us, here is how:"
1051
+ msgstr ""
1052
+ "Мы стараемся делать ваш сайт WordPress более защищенным. Поддержите нас! Вот "
1053
+ "как это можете делать: "
1054
+
1055
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:193
1056
+ msgid "Critical Feature Status"
1057
+ msgstr "Текущий статус самых важных функций"
1058
+
1059
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:197
1060
+ msgid ""
1061
+ "Below is the current status of the critical features that you should "
1062
+ "activate on your site to achieve a minimum level of recommended security"
1063
+ msgstr ""
1064
+ "Здесь показан текущий статус критически важных параметров, которые должны "
1065
+ "быть активированы для достижения минимального уровня рекомендуемой "
1066
+ "безопасности:"
1067
+
1068
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:201
1069
+ msgid "Admin Username"
1070
+ msgstr "Логин Администратора"
1071
+
1072
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:216
1073
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:25
1074
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:42
1075
+ msgid "Login Lockdown"
1076
+ msgstr "Блокировка авторизаций"
1077
+
1078
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:231
1079
+ msgid "File Permission"
1080
+ msgstr "Права на файлы"
1081
+
1082
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:246
1083
+ msgid "Basic Firewall"
1084
+ msgstr "Базовый файерволл"
1085
+
1086
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:264
1087
+ msgid "Last 5 Logins"
1088
+ msgstr "Последних 5 авторизаций"
1089
+
1090
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:281
1091
+ msgid "No data found!"
1092
+ msgstr "Ничего не найдено."
1093
+
1094
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:285
1095
+ msgid "Last 5 logins summary:"
1096
+ msgstr "Информация о последних 5 логинах:"
1097
+
1098
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:289
1099
+ msgid "User"
1100
+ msgstr "Пользователь"
1101
+
1102
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:290
1103
+ msgid "Date"
1104
+ msgstr "Дата"
1105
+
1106
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:291
1107
+ msgid "IP"
1108
+ msgstr "IP"
1109
+
1110
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:312
1111
+ msgid "Maintenance Mode Status"
1112
+ msgstr "Режим обслуживания"
1113
+
1114
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:316
1115
+ msgid ""
1116
+ "Maintenance mode is currently enabled. Remember to turn it off when you are "
1117
+ "done"
1118
+ msgstr ""
1119
+ "Режим обслуживания включен. Не забудьте отключить его, когда захотите "
1120
+ "открыть его для посетителей."
1121
+
1122
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:319
1123
+ msgid "Maintenance mode is currently off."
1124
+ msgstr "Режим обслуживания отключен."
1125
+
1126
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:323
1127
+ msgid "Maintenance Mode"
1128
+ msgstr "Режим обслуживания"
1129
+
1130
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:345
1131
+ msgid "Cookie Based Brute Prevention"
1132
+ msgstr "Защита от брутфорс-атак, основанная на использовании куки"
1133
+
1134
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:348
1135
+ msgid "Cookie-Based Brute Force"
1136
+ msgstr "Защита от брутфорс-атак, основанная на использовании куки"
1137
+
1138
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:352
1139
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:380
1140
+ #, php-format
1141
+ msgid "The %s feature is currently active."
1142
+ msgstr "Функция %s сейчас активна."
1143
+
1144
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:353
1145
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:381
1146
+ msgid "Your new WordPress login URL is now:"
1147
+ msgstr "Новый адрес вашей страницы логина сейчас:"
1148
+
1149
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:413
1150
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:29
1151
+ msgid "Logged In Users"
1152
+ msgstr "Активных сессий"
1153
+
1154
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:423
1155
+ msgid "Number of users currently logged in site-wide is:"
1156
+ msgstr "Количество активных сессий на всем сайте на данный момент:"
1157
+
1158
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:424
1159
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:446
1160
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:474
1161
+ #, php-format
1162
+ msgid "Go to the %s menu to see more details"
1163
+ msgstr "Выберите меню %s для более подробной информации"
1164
+
1165
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:429
1166
+ msgid "There are no other site-wide users currently logged in."
1167
+ msgstr "Кроме вас нет ни одной активной сессии на сайте."
1168
+
1169
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:445
1170
+ msgid "Number of users currently logged into your site (including you) is:"
1171
+ msgstr "Количество пользователей на вашем сайте сейчас (включая вас): "
1172
+
1173
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:451
1174
+ msgid "There are no other users currently logged in."
1175
+ msgstr "Сейчас нет активных пользователей, кроме вас."
1176
+
1177
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:468
1178
+ msgid "There are no IP addresses currently locked out."
1179
+ msgstr "В настоящий момент никакие IP-адреса не заблокированы."
1180
+
1181
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:473
1182
+ msgid "Number of temporarily locked out IP addresses: "
1183
+ msgstr "Количество временно заблокированных IP-адресов: "
1184
+
1185
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:516
1186
+ msgid "Site Info"
1187
+ msgstr "Информация о сайте"
1188
+
1189
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:518
1190
+ msgid "Plugin Version"
1191
+ msgstr "Версия плагина"
1192
+
1193
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:519
1194
+ msgid "WP Version"
1195
+ msgstr "Версия WP"
1196
+
1197
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:521
1198
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:523
1199
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:619
1200
+ msgid "Version"
1201
+ msgstr "Версия"
1202
+
1203
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:522
1204
+ msgid "Table Prefix"
1205
+ msgstr "Pрефикс таблиц БД"
1206
+
1207
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:524
1208
+ msgid "Session Save Path"
1209
+ msgstr "Место хранения сессии"
1210
+
1211
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:526
1212
+ msgid "Server Name"
1213
+ msgstr "Название сервера"
1214
+
1215
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:527
1216
+ msgid "Cookie Domain"
1217
+ msgstr "Домэн для cookies"
1218
+
1219
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:528
1220
+ msgid "Library Present"
1221
+ msgstr "Текущая библиотека"
1222
+
1223
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:529
1224
+ msgid "Debug File Write Permissions"
1225
+ msgstr "Исправление прав доступа к файлам"
1226
+
1227
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:533
1228
+ msgid "PHP Info"
1229
+ msgstr "Информация о PHP"
1230
+
1231
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:535
1232
+ msgid "PHP Version"
1233
+ msgstr "Версия PHP"
1234
+
1235
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:536
1236
+ msgid "PHP Memory Usage"
1237
+ msgstr "Объем использованной памяти для PHP"
1238
+
1239
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:537
1240
+ msgid " MB"
1241
+ msgstr " мб"
1242
+
1243
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:543
1244
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:551
1245
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:559
1246
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:601
1247
+ msgid "N/A"
1248
+ msgstr "N/A"
1249
+
1250
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:546
1251
+ msgid "PHP Memory Limit"
1252
+ msgstr "Максимальнyj oбъем памяти для PHP"
1253
+
1254
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:554
1255
+ msgid "PHP Max Upload Size"
1256
+ msgstr "Максимальный размер файла для загрузки через PHP"
1257
+
1258
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:562
1259
+ msgid "PHP Max Post Size"
1260
+ msgstr "Максимальный размер данных по операции POST для PHP"
1261
+
1262
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:565
1263
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:573
1264
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:582
1265
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:590
1266
+ msgid "On"
1267
+ msgstr "Вкл"
1268
+
1269
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:567
1270
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:575
1271
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:584
1272
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:592
1273
+ msgid "Off"
1274
+ msgstr "Выкл."
1275
+
1276
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:570
1277
+ msgid "PHP Safe Mode"
1278
+ msgstr "PHP Безопасный режим/Safe Mode"
1279
+
1280
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:578
1281
+ msgid "PHP Allow URL fopen"
1282
+ msgstr "PHP позволяет fopen URL"
1283
+
1284
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:587
1285
+ msgid "PHP Allow URL Include"
1286
+ msgstr "PHP позволяет URL include"
1287
+
1288
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:595
1289
+ msgid "PHP Display Errors"
1290
+ msgstr "PHP показывает ощибки"
1291
+
1292
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:604
1293
+ msgid "PHP Max Script Execution Time"
1294
+ msgstr "Максимальное время выполнения скриптов PHP"
1295
+
1296
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:604
1297
+ msgid "Seconds"
1298
+ msgstr "Сек."
1299
+
1300
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:608
1301
+ msgid "Active Plugins"
1302
+ msgstr "Активные плагины"
1303
+
1304
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:618
1305
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:130
1306
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:149
1307
+ msgid "Name"
1308
+ msgstr "Название"
1309
+
1310
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:620
1311
+ msgid "Plugin URL"
1312
+ msgstr "URL плагина"
1313
+
1314
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:656
1315
+ msgid "Currently Locked Out IP Addresses and Ranges"
1316
+ msgstr "В настоящий момент заблокированные IP-адреса и -блоки"
1317
+
1318
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:26
1319
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:31
1320
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:63
1321
+ msgid "DB Backup"
1322
+ msgstr "Резервное копирование БД"
1323
+
1324
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:30
1325
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:61
1326
+ msgid "DB Prefix"
1327
+ msgstr "Префикс названий таблиц БД"
1328
+
1329
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:93
1330
+ msgid "Nonce check failed for DB prefix change operation!"
1331
+ msgstr "Не удалось изменить префикс таблиц БД."
1332
+
1333
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:101
1334
+ msgid ""
1335
+ "The plugin has detected that it cannot write to the wp-config.php file. This "
1336
+ "feature can only be used if the plugin can successfully write to the wp-"
1337
+ "config.php file."
1338
+ msgstr ""
1339
+ "Плагину не удалось внести изменения в файл wp-config.php. Эта опция может "
1340
+ "быть использована только если на файл wp-config будут установлены права на "
1341
+ "запись."
1342
+
1343
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:114
1344
+ msgid "Please enter a value for the DB prefix."
1345
+ msgstr "Пожалуйста, введите значение для нового префикса."
1346
+
1347
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:123
1348
+ msgid ""
1349
+ "<strong>ERROR</strong>: The table prefix can only contain numbers, letters, "
1350
+ "and underscores."
1351
+ msgstr ""
1352
+ "<strong>ОШИБКА</strong>: Префикс может содержать только латинские буквы, "
1353
+ "цифры и символ подчеркивания."
1354
+
1355
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:131
1356
+ msgid "Change Database Prefix"
1357
+ msgstr "Изменение префикса таблиц базы данных"
1358
+
1359
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:134
1360
+ msgid ""
1361
+ "Your WordPress DB is the most important asset of your website because it "
1362
+ "contains a lot of your site's precious information."
1363
+ msgstr ""
1364
+ "Ваша база данных - это наиболее ценный актив, так как в ней находится весь "
1365
+ "контент и настройки."
1366
+
1367
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:135
1368
+ msgid ""
1369
+ "The DB is also a target for hackers via methods such as SQL injections and "
1370
+ "malicious and automated code which targets certain tables."
1371
+ msgstr ""
1372
+ "База данных также является мишенью для хакеров, пытающихся получить контроль "
1373
+ "над определенными таблицами методом SQL-инъекций и внедрением другого "
1374
+ "вредоносного кода."
1375
+
1376
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:136
1377
+ msgid ""
1378
+ "One way to add a layer of protection for your DB is to change the default "
1379
+ "WordPress table prefix from \"wp_\" to something else which will be "
1380
+ "difficult for hackers to guess."
1381
+ msgstr ""
1382
+ "Одним из способов усилить защиту от таких атак является изменение префикса "
1383
+ "таблиц базы данных с устанавливаемого по умолчанию («wp_») на какой-нибудь "
1384
+ "другой, который было бы тяжело угадать."
1385
+
1386
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:137
1387
+ msgid ""
1388
+ "This feature allows you to easily change the prefix to a value of your "
1389
+ "choice or to a random value set by this plugin."
1390
+ msgstr ""
1391
+ "Эти опции позволяют легко изменить префикс БД на любое введенное Вами "
1392
+ "значение или на сгенерированное плагином."
1393
+
1394
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:143
1395
+ msgid "DB Prefix Options"
1396
+ msgstr "Опции изменения префикса таблиц БД"
1397
+
1398
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:154
1399
+ #, php-format
1400
+ msgid "It is recommended that you perform a %s before using this feature"
1401
+ msgstr "Рекомендуется перед изменением префикса создать %s базы данных"
1402
+
1403
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:163
1404
+ msgid "Current DB Table Prefix"
1405
+ msgstr "Текущий префикс таблиц БД"
1406
+
1407
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:169
1408
+ msgid ""
1409
+ "Your site is currently using the default WordPress DB prefix value of \"wp_"
1410
+ "\". \n"
1411
+ " To increase your site's security you should "
1412
+ "consider changing the DB prefix value to another value."
1413
+ msgstr ""
1414
+ "На Вашем сайте используется префикс таблиц базы данных по умолчанию: «wp_».\n"
1415
+ "Для усиления безопасности, измените его на любое другое значение."
1416
+
1417
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:176
1418
+ msgid "Generate New DB Table Prefix"
1419
+ msgstr "Сгенерировать новый префикс таблиц БД"
1420
+
1421
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:179
1422
+ msgid ""
1423
+ "Check this if you want the plugin to generate a random 6 character string "
1424
+ "for the table prefix"
1425
+ msgstr ""
1426
+ "Отметьте, чтобы плагин сам сгенерировал префикс длиной в 6 случайных символов"
1427
+
1428
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:180
1429
+ msgid "OR"
1430
+ msgstr "ИЛИ"
1431
+
1432
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:182
1433
+ msgid ""
1434
+ "Choose your own DB prefix by specifying a string which contains letters and/"
1435
+ "or numbers and/or underscores. Example: xyz_"
1436
+ msgstr ""
1437
+ "Введите собственный вариант префикса, используя латинские буквы, цифры и "
1438
+ "символ подчеркивания. Например: xyz_"
1439
+
1440
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:186
1441
+ msgid "Change DB Prefix"
1442
+ msgstr "Изменить префикс таблиц"
1443
+
1444
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:207
1445
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:86
1446
+ msgid "Nonce check failed for manual DB backup operation!"
1447
+ msgstr "Создать бэкап базы данных не удалось!"
1448
+
1449
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:224
1450
+ msgid ""
1451
+ "DB Backup was successfully completed! You will receive the backup file via "
1452
+ "email if you have enabled \"Send Backup File Via Email\", otherwise you can "
1453
+ "retrieve it via FTP from the following directory:"
1454
+ msgstr ""
1455
+ "Резервное копирование БД успешно завершено! Вы получите резерную копию по "
1456
+ "электронной почте, если вы активировали эту опцию. В обратном случае, вы "
1457
+ "можете загрузить копию по протоколу FTP из следующего каталога:"
1458
+
1459
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:226
1460
+ msgid "Your DB Backup File location: "
1461
+ msgstr "Место хранения файлов резервных копий базы данных:"
1462
+
1463
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:234
1464
+ msgid "DB Backup failed. Please check the permissions of the backup directory."
1465
+ msgstr ""
1466
+ "Создать резервную копию БД не удалось. Проверьте права на запись для бэкап-"
1467
+ "директории плагина."
1468
+
1469
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:251
1470
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:135
1471
+ msgid ""
1472
+ "You entered a non numeric value for the \"backup time interval\" field. It "
1473
+ "has been set to the default value."
1474
+ msgstr ""
1475
+ "Вы ввели нечисловое значение в поле «Частота создания бэкапов». Сохранено "
1476
+ "значение по умолчанию."
1477
+
1478
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:258
1479
+ msgid ""
1480
+ "You entered a non numeric value for the \"number of backup files to keep\" "
1481
  "field. It has been set to the default value."
1482
  msgstr ""
1483
  "Вы ввели нечисловое значение в поле «Количество бэкапов для хранения». "
1484
  "Сохранено значение по умолчанию."
1485
 
1486
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:265
1487
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:165
1488
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:117
1489
  msgid ""
1490
  "You have entered an incorrect email address format. It has been set to your "
1491
  "WordPress admin email as default."
1493
  "Email-адрес введен неправильно. По умолчанию установлен Email администратора "
1494
  "блога."
1495
 
1496
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:298
1497
  msgid "Manual Backup"
1498
  msgstr "Создание резервной копии базы данных вручную"
1499
 
1500
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:304
1501
  msgid "To create a new DB backup just click on the button below."
1502
  msgstr "Для немедленного создания резервной копии нажмите эту кнопку:"
1503
 
1504
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:307
1505
  msgid "Create DB Backup Now"
1506
  msgstr "Создать бэкап базы данных сейчас"
1507
 
1508
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:311
1509
  msgid "Automated Scheduled Backups"
1510
  msgstr "Автоматическое создание резервных копий"
1511
 
1512
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:323
1513
  msgid "Enable Automated Scheduled Backups"
1514
  msgstr "Включить автоматическое создание бэкапов"
1515
 
1516
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:326
1517
  msgid ""
1518
  "Check this if you want the system to automatically generate backups "
1519
  "periodically based on the settings below"
1521
  "Включите этот чекбокс, чтобы система автоматически создавала резервные копии "
1522
  "базы данных по расписанию"
1523
 
1524
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:330
1525
  msgid "Backup Time Interval"
1526
  msgstr "Частота создания бэкапов"
1527
 
1528
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:333
1529
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:281
1530
  msgid "Hours"
1531
  msgstr "Часов"
1532
 
1533
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:334
1534
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:282
1535
  msgid "Days"
1536
  msgstr "Дней"
1537
 
1538
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:335
1539
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:283
1540
  msgid "Weeks"
1541
  msgstr "Недель"
1542
 
1543
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:337
1544
  msgid "Set the value for how often you would like an automated backup to occur"
1545
  msgstr "Укажите периодичность создания резервных копий"
1546
 
1547
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:341
1548
  msgid "Number of Backup Files To Keep"
1549
  msgstr "Количество бэкапов для хранения"
1550
 
1551
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:343
1552
  msgid ""
1553
  "Thie field allows you to choose the number of backup files you would like to "
1554
  "keep in the backup directory"
1556
  "Укажите в этом поле количество резервных копий, которые должны храниться в "
1557
  "бэкап-директории плагина"
1558
 
1559
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:347
1560
  msgid "Send Backup File Via Email"
1561
  msgstr "Пересылать бэкап на Email"
1562
 
1563
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:350
1564
  msgid ""
1565
  "Check this if you want the system to email you the backup file after a DB "
1566
  "backup has been performed"
1567
  msgstr ""
1568
  "Включите этот чекбокс, если хотите получать бэкап базы данных на свой email"
1569
 
1570
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:352
1571
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:327
1572
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:235
1573
  msgid "Enter an email address"
1574
  msgstr "Введите Email-адрес"
1575
 
1576
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:383
1577
+ msgid "Error - Could not get tables or no tables found!"
1578
+ msgstr "Ощибка - не удалось запросить таблицы, или таблцы не найдены!"
1579
+
1580
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:387
1581
  msgid "Starting DB prefix change operations....."
1582
  msgstr "Начинаю процесс изменения префикса таблиц базы данных..."
1583
 
1584
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:389
1585
  #, php-format
1586
  msgid ""
1587
  "Your WordPress system has a total of %s tables and your new DB prefix will "
1590
  "Общее количество таблиц в базе данных WordPress %s и новый префикс таблиц "
1591
  "будет установлен как: %s"
1592
 
1593
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:395
1594
+ #: all-in-one-wp-security/classes/wp-security-utility.php:206
1595
  msgid ""
1596
  "Failed to make a backup of the wp-config.php file. This operation will not "
1597
  "go ahead."
1598
  msgstr ""
1599
  "Не удалось создать резервную копию файла wp-config.php. Операция прервана."
1600
 
1601
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:399
1602
  msgid "A backup copy of your wp-config.php file was created successfully!"
1603
  msgstr "Резервная копия Вашего файла wp-config.php успешно создана!"
1604
 
1605
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:421
1606
  #, php-format
1607
  msgid "%s table name update failed"
1608
  msgstr "Не удалось переименовать таблицу %s"
1609
 
1610
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:433
1611
  #, php-format
1612
  msgid "Please change the prefix manually for the above tables to: %s"
1613
  msgstr ""
1614
  "Пожалуйста, измените префикс для вышеперечисленных таблиц на «%s» вручную"
1615
 
1616
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:436
1617
  #, php-format
1618
  msgid "%s tables had their prefix updated successfully!"
1619
  msgstr "Префикс таблиц %s успешно изменен!"
1620
 
1621
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:452
1622
  msgid "wp-config.php file was updated successfully!"
1623
  msgstr "Файл wp-config.php успешно обновлен!"
1624
 
1625
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:455
1626
  #, php-format
1627
  msgid ""
1628
  "The \"wp-config.php\" file was not able to be modified. Please modify this "
1634
  "отредактируйте его вручную, заменив значение переменной «$table_prefix» на "
1635
  "значение %s"
1636
 
1637
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:468
1638
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:490
1639
+ #, php-format
1640
+ msgid "Update of table %s failed: unable to change %s to %s"
1641
+ msgstr "Запись в таблицу %s не получилась: не удалось изменить %s на %s"
1642
+
1643
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:472
1644
+ msgid ""
1645
+ "The options table records which had references to the old DB prefix were "
1646
+ "updated successfully!"
1647
+ msgstr ""
1648
+ "Записи в таблице опций блога, имеющие ссылки на старый префикс таблиц базы "
1649
+ "данных успешно скорректированы!"
1650
+
1651
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:494
1652
+ #, php-format
1653
+ msgid ""
1654
+ "The %s table records which had references to the old DB prefix were updated "
1655
+ "successfully!"
1656
+ msgstr ""
1657
+ "Записи в таблице %s, имеющие ссылки на старый префикс таблиц базы данных "
1658
+ "успешно скорректированы!"
1659
+
1660
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:523
1661
+ #, php-format
1662
+ msgid ""
1663
+ "Error updating user_meta table where new meta_key = %s, old meta_key = %s "
1664
+ "and user_id = %s."
1665
+ msgstr ""
1666
+ "Не удалось скорректировать записи в таблице «user_meta», где новый meta_key "
1667
+ "= %s, old meta_key = %s и user_id = %s."
1668
+
1669
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:528
1670
+ msgid ""
1671
+ "The usermeta table records which had references to the old DB prefix were "
1672
+ "updated successfully!"
1673
+ msgstr ""
1674
+ "Записи в таблице «user_meta», имеющие ссылки на старый префикс таблиц базы "
1675
+ "данных успешно скорректированы!"
1676
+
1677
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:530
1678
+ msgid "DB prefix change tasks have been completed."
1679
+ msgstr "Префикс таблиц базы данных успешно изменен."
1680
+
1681
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:24
1682
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:107
1683
+ msgid "File Change Detection"
1684
+ msgstr "Отслеживание изменений в файлах"
1685
+
1686
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:25
1687
+ msgid "Malware Scan"
1688
+ msgstr "Сканирование от вредных программ"
1689
+
1690
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:26
1691
+ msgid "DB Scan"
1692
+ msgstr "Сканирование базы данных"
1693
+
1694
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:95
1695
+ msgid "There have been no file changes since the last scan."
1696
+ msgstr "С прошлго сканирования не было никаких изменений в файлах."
1697
+
1698
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:105
1699
+ msgid "Nonce check failed for manual file change detection scan operation!"
1700
+ msgstr ""
1701
+ "Проверка одноразового параметра безопасности (nonce) для ручного запуска "
1702
+ "сканирования файлов не удалась!"
1703
+
1704
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:112
1705
+ msgid ""
1706
+ "The plugin has detected that this is your first file change detection scan. "
1707
+ "The file details from this scan will be used to detect file changes for "
1708
+ "future scans!"
1709
+ msgstr ""
1710
+ "Плагин заметил, что сейчас сканирование измененных файлов было сделано "
1711
+ "впервые. Результат данного сканирования будет сохранен для того,чтобы в "
1712
+ "будущем детектировать изменения в файлах!"
1713
+
1714
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:114
1715
+ msgid "Scan Complete - There were no file changes detected!"
1716
+ msgstr "Сканирование закончено - Изменений файлов не было обнаружено!"
1717
+
1718
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:203
1719
+ msgid ""
1720
+ "NEW SCAN COMPLETED: The plugin has detected that you have made changes to "
1721
+ "the \"File Types To Ignore\" or \"Files To Ignore\" fields.\n"
1722
+ " In order to ensure that future scan results are "
1723
+ "accurate, the old scan data has been refreshed."
1724
+ msgstr ""
1725
+ "НОВОЕ СКАНИРОВАНИЕ ЗАКОНЧЕНО: Плагин установило, что вы изменили настройки в "
1726
+ "поле \"Игнорировать следующие типы файлов\" или \"Игнорировать следующие "
1727
+ "файлы\".\n"
1728
+ " Для того, чтобы будущие сканирования показывали верный "
1729
+ "результат, данные предыдущих сканирований былы обновлены."
1730
+
1731
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:213
1732
+ msgid ""
1733
+ "All In One WP Security & Firewall has detected that there was a change in "
1734
+ "your host's files."
1735
+ msgstr ""
1736
+ "All In One WP Security & Firewall обнаружило изменения в файлах вашего сайта."
1737
+
1738
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:215
1739
+ msgid "View Scan Details & Clear This Message"
1740
+ msgstr "Посмотреть результат сканирования и закрыть это сообщение"
1741
+
1742
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:224
1743
+ msgid ""
1744
+ "If given an opportunity hackers can insert their code or files into your "
1745
+ "system which they can then use to carry out malicious acts on your site."
1746
+ msgstr ""
1747
+ "Если для этого открывается возможность, хакеры могут вставить свой код или "
1748
+ "файлы в вашу систему, что потом позволит им выполнять вредные действия на "
1749
+ "вашем сайте."
1750
+
1751
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:225
1752
+ msgid ""
1753
+ "Being informed of any changes in your files can be a good way to quickly "
1754
+ "prevent a hacker from causing damage to your website."
1755
+ msgstr ""
1756
+ "Знание о любых изменениях ваших файлов может помочь вам быстро предотвратить "
1757
+ "вредние действия или разрушение на вашем сайте."
1758
+
1759
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:226
1760
+ msgid ""
1761
+ "In general, WordPress core and plugin files and file types such as \".php\" "
1762
+ "or \".js\" should not change often and when they do, it is important that "
1763
+ "you are made aware when a change occurs and which file was affected."
1764
+ msgstr ""
1765
+ "В принципе, файлы системы WordPress и разных плагинов, такие как \".php\" or "
1766
+ "\".js\" не должны меняться слишком часто. И когда они меняются важно об "
1767
+ "этом узнать, и какой файл был изменен.!"
1768
+
1769
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:227
1770
+ msgid ""
1771
+ "The \"File Change Detection Feature\" will notify you of any file change "
1772
+ "which occurs on your system, including the addition and deletion of files by "
1773
+ "performing a regular automated or manual scan of your system's files."
1774
+ msgstr ""
1775
+ "Функция \"Детектирование изменений файлов\" вам сообщит о любых изменений "
1776
+ "файлов в вашей системе, включая появление и удаление файлов, путем "
1777
+ "регулярного автоматического или ручного сканирования файлов вашей системы."
1778
+
1779
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:228
1780
+ msgid ""
1781
+ "This feature also allows you to exclude certain files or folders from the "
1782
+ "scan in cases where you know that they change often as part of their normal "
1783
+ "operation. (For example log files and certain caching plugin files may "
1784
+ "change often and hence you may choose to exclude such files from the file "
1785
+ "change detection scan)"
1786
+ msgstr ""
1787
+ "Эта функция позволяет исключить определенные файлы или папки от "
1788
+ "сканирования, в случае, если вы знаете, что они часто меняются при обычной "
1789
+ "работе системы. (Например лог-файлы или определенные файлы кеширования могут "
1790
+ "меняться часто, и вы можете выбрать не включить их в сканирование измененных "
1791
+ "файлов)"
1792
+
1793
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:233
1794
+ msgid "Manual File Change Detection Scan"
1795
+ msgstr "Ручное сканирование изменений файлов"
1796
+
1797
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:239
1798
+ msgid ""
1799
+ "To perform a manual file change detection scan click on the button below."
1800
+ msgstr "Для запуска сканирования файлов сейчас, нажмите эту кнопку."
1801
+
1802
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:242
1803
+ msgid "Perform Scan Now"
1804
+ msgstr "Сканировать сейчас"
1805
+
1806
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:246
1807
+ msgid "View Last Saved File Change Results"
1808
+ msgstr ""
1809
+ "Посмотреть сохраненные результаты последнего сканирования изменений файлов"
1810
+
1811
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:252
1812
+ msgid ""
1813
+ "Click the button below to view the saved file change results from the last "
1814
+ "scan."
1815
+ msgstr ""
1816
+ "Нажмите кнопку внизу, чтобы посмотреть сохраненный отчет об измененных "
1817
+ "файлов последнего сканирования."
1818
+
1819
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:255
1820
+ msgid "View Last File Change"
1821
+ msgstr "Посмотреть последние изменения файлов"
1822
+
1823
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:259
1824
+ msgid "File Change Detection Settings"
1825
+ msgstr "Настройки детектирования изменений файлов"
1826
+
1827
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:271
1828
+ msgid "Enable Automated File Change Detection Scan"
1829
+ msgstr "Активировать автоматическое сканирование измененных файлов"
1830
+
1831
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:274
1832
+ msgid ""
1833
+ "Check this if you want the system to automatically/periodically scan your "
1834
+ "files to check for file changes based on the settings below"
1835
+ msgstr ""
1836
+ "Включите этот чекбокс, чтобы система автоматически проверяла, есть ли "
1837
+ "изменения в файлах, на основе настроек ниже"
1838
+
1839
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:278
1840
+ msgid "Scan Time Interval"
1841
+ msgstr "Частота сканирования"
1842
+
1843
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:285
1844
+ msgid "Set the value for how often you would like a scan to occur"
1845
+ msgstr "Укажите периодичность сканирования"
1846
+
1847
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:289
1848
+ msgid "File Types To Ignore"
1849
+ msgstr "Игнорировать файлы следующих типов"
1850
+
1851
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:292
1852
+ msgid ""
1853
+ "Enter each file type or extension on a new line which you wish to exclude "
1854
+ "from the file change detection scan."
1855
+ msgstr ""
1856
+ "Введите каждый тип файла или окончание названия на отдельной строчке, "
1857
+ "которые вы хотите не включать в сканирование измененных файлов."
1858
+
1859
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:296
1860
+ msgid ""
1861
+ "You can exclude file types from the scan which would not normally pose any "
1862
+ "security threat if they were changed. These can include things such as image "
1863
+ "files."
1864
+ msgstr ""
1865
+ "Вы можете исключить типы таких файлов, которые обычно не создавали бы "
1866
+ "никакую опасность, если они были изменены. Это может, например, касаться "
1867
+ "файлы с изображениями."
1868
+
1869
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:297
1870
+ msgid ""
1871
+ "Example: If you want the scanner to ignore files of type jpg, png, and bmp, "
1872
+ "then you would enter the following:"
1873
+ msgstr ""
1874
+ "Например, если вы хотите, чтобы сканирование не обращало внимания на файлы "
1875
+ "типов jpg, png или bmp, тогда следует ввести следующее:"
1876
+
1877
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:298
1878
+ msgid "jpg"
1879
+ msgstr "jpg"
1880
+
1881
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:299
1882
+ msgid "png"
1883
+ msgstr "png"
1884
+
1885
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:300
1886
+ msgid "bmp"
1887
+ msgstr "bmp"
1888
+
1889
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:306
1890
+ msgid "Files/Directories To Ignore"
1891
+ msgstr "Игнорировать определенные файлы и папки"
1892
+
1893
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:309
1894
+ msgid ""
1895
+ "Enter each file or directory on a new line which you wish to exclude from "
1896
+ "the file change detection scan."
1897
+ msgstr ""
1898
+ "Введите каждый файл или каждую папку на новой строчке, которые хотите "
1899
+ "исключить от сканирования измененных файлов."
1900
+
1901
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:313
1902
+ msgid ""
1903
+ "You can exclude specific files/directories from the scan which would not "
1904
+ "normally pose any security threat if they were changed. These can include "
1905
+ "things such as log files."
1906
+ msgstr ""
1907
+ "Вы можете исключить определенные файлы/папки от сканирования, если они не "
1908
+ "создавали бы опасность, если бы они были изменены. Это может, например, "
1909
+ "касаться лог-файлов."
1910
+
1911
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:314
1912
+ msgid ""
1913
+ "Example: If you want the scanner to ignore certain files in different "
1914
+ "directories or whole directories, then you would enter the following:"
1915
+ msgstr ""
1916
+ "Например, если вы хотите, чтобы сканнер игнорировал определенные файлы в "
1917
+ "разных папках, или целые папки, тогда вы могли бы ввест следующее:"
1918
+
1919
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:315
1920
+ msgid "cache/config/master.php"
1921
+ msgstr "cache/config/master.php"
1922
+
1923
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:316
1924
+ msgid "somedirectory"
1925
+ msgstr "somedirectory"
1926
+
1927
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:322
1928
+ msgid "Send Email When Change Detected"
1929
+ msgstr "Отправить мейл когда найдено изменение"
1930
+
1931
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:325
1932
+ msgid ""
1933
+ "Check this if you want the system to email you if a file change was detected"
1934
+ msgstr ""
1935
+ "Включите этот чекбокс, если хотите получать уведомление об измененных файлах "
1936
+ "на свой email"
1937
+
1938
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:343
1939
+ msgid "What is Malware?"
1940
+ msgstr "Что такое вредные программы (malware)?"
1941
+
1942
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:344
1943
+ msgid ""
1944
+ "The word Malware stands for Malicious Software. It can consist of things "
1945
+ "like trojan horses, adware, worms, spyware and any other undesirable code "
1946
+ "which a hacker will try to inject into your website."
1947
+ msgstr ""
1948
+ "Слово malware означает malicious software - опасные программы. Это может, "
1949
+ "например, быть троянские кони, программы для подачи рекламы, программы-"
1950
+ "черви, шпионские программы или друие нежелательные программы, которые хакер "
1951
+ "старается разместить на вашем сайте."
1952
+
1953
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:345
1954
+ msgid ""
1955
+ "Often when malware code has been inserted into your site you will normally "
1956
+ "not notice anything out of the ordinary based on appearances, but it can "
1957
+ "have a dramatic effect on your site's search ranking."
1958
+ msgstr ""
1959
+ "Часто, когда вредные программы размещены на вашем сайте, вы не заметите "
1960
+ "ничего странного, но этот факт может серьезно сказаться на позицию вашего "
1961
+ "сайта у поисковиков."
1962
+
1963
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:346
1964
+ msgid ""
1965
+ "This is because the bots and spiders from search engines such as Google have "
1966
+ "the capability to detect malware when they are indexing the pages on your "
1967
+ "site, and consequently they can blacklist your website which will in turn "
1968
+ "affect your search rankings."
1969
+ msgstr ""
1970
+ "Дело в том, что роботы индексации от поисковиков, например от Google, "
1971
+ "способны распознать вредные программы когда индексируют страницы вашего "
1972
+ "сайта и в результате могут записать ваш сайт в черный список, что, в свою "
1973
+ "очередь, сильно испортит вашу позицию у поисковиков."
1974
+
1975
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:350
1976
+ msgid "Scanning For Malware"
1977
+ msgstr "Сканирование вредных программ"
1978
+
1979
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:351
1980
+ msgid ""
1981
+ "Due to the constantly changing and complex nature of Malware, scanning for "
1982
+ "such things using a standalone plugin will not work reliably. This is "
1983
+ "something best done via an external scan of your site regularly."
1984
+ msgstr ""
1985
+ "Т.к. вредные программы - постоянно меняющая и сложная тема, их невозможно "
1986
+ "искать надежно с помощью самостоятельного плагина. Эта задача лучше решается "
1987
+ "регулярным внешним сканированием вашего сайта."
1988
+
1989
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:352
1990
+ msgid ""
1991
+ "This is why we have created an easy-to-use scanning service which is hosted "
1992
+ "off our own server which will scan your site for malware once every day and "
1993
+ "notify you if it finds anything."
1994
+ msgstr ""
1995
+ "Поэтому мы создали легкую в употреблении услугу, которая находится вне "
1996
+ "вашего сервера, и ищет на вашем сайте вредные программы каждый день и "
1997
+ "сообщит вам, если что-нибудь найдется."
1998
+
1999
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:353
2000
+ msgid "When you sign up for this service you will get the following:"
2001
+ msgstr "Когда заключите договор об этой услуге, вы получите следующее:"
2002
+
2003
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:355
2004
+ msgid "Automatic Daily Scan of 1 Website"
2005
+ msgstr "Автоматическое сканирование одного сайта раз в день"
2006
+
2007
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:356
2008
+ msgid "Automatic Malware & Blacklist Monitoring"
2009
+ msgstr "Автоматическое отслеживание вредных программ и черных списков"
2010
+
2011
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:357
2012
+ msgid "Automatic Email Alerting"
2013
+ msgstr "Автоматическое оповещение по мейлу"
2014
+
2015
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:358
2016
+ msgid "Site uptime monitoring"
2017
+ msgstr "Отслеживание, сколько времени сайт доступен в интернете"
2018
+
2019
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:359
2020
+ msgid "Site response time monitoring"
2021
+ msgstr "Отслеживание, как быстро отвечает сайт на запросы"
2022
+
2023
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:360
2024
+ msgid "Malware Cleanup"
2025
+ msgstr "Чистка от вредных программ"
2026
+
2027
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:361
2028
+ msgid "Blacklist Removal"
2029
+ msgstr "Удаление из черного списка"
2030
+
2031
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:362
2032
+ msgid "No Contract (Cancel Anytime)"
2033
+ msgstr "Нет контракта (вы можете отменить в любое время)"
2034
+
2035
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:364
2036
+ #, php-format
2037
+ msgid "To learn more please %s."
2038
+ msgstr "Узнайте больше, пожалуйста %s."
2039
+
2040
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:374
2041
+ msgid ""
2042
+ "This feature performs a basic database scan which will look for any common "
2043
+ "suspicious-looking strings and javascript and html code in some of the "
2044
+ "Wordpress core tables."
2045
+ msgstr ""
2046
+ "Данная функция проводит простое сканирование базы данных в поисках типичных "
2047
+ "странных текстов, программ javascrip или html в некоторых основных траблицах "
2048
+ "WordPress."
2049
+
2050
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:391
2051
+ msgid "Nonce check failed for manual db scan operation!"
2052
+ msgstr ""
2053
+ "Проверка одноразового параметра безопасности (nonce) для ручного запуска "
2054
+ "сканирования базы данных не удалась!"
2055
 
2056
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:402
2057
  msgid ""
2058
+ "This feature will perform a basic database scan which will look for any "
2059
+ "common suspicious-looking strings and javascript and html code in some of "
2060
+ "the Wordpress core tables."
2061
  msgstr ""
2062
+ "Данная функция проводит простое сканирование базы данных в поисках типичных "
2063
+ "странных текстов, программ javascrip или html в некоторых основных траблицах "
2064
+ "WordPress."
2065
 
2066
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:403
 
2067
  msgid ""
2068
+ "If the scan finds anything it will list all \"potentially\" malicious "
2069
+ "results but it is up to you to verify whether a result is a genuine example "
2070
+ "of a hacking attack or a false positive."
2071
  msgstr ""
2072
+ "Если при сканировании что-нибуд будет найдено, оно перечислит все "
2073
+ "\"потенциально\" вредных результатов. Но вам следует проверять, "
2074
+ "действительно ли данные строки являются результатом атаки хакеров, или это "
2075
+ "на самом деле безопасное вещи, которые случайно совпали с правилами поиска."
2076
 
2077
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:404
2078
  msgid ""
2079
+ "As well as scanning for generic strings commonly used in malicious cases, "
2080
+ "this feature will also scan for some of the known \"pharma\" hack entries "
2081
+ "and if it finds any it will automatically delete them."
2082
  msgstr ""
2083
+ "Кроме поиска типичных строк, которые часто встречаются во вредних "
2084
+ "программах, данная функция так же ищет некоторые известные записи взлома "
2085
+ "\"pharma\" и удаляет их, если их найдет."
2086
 
2087
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:405
2088
+ msgid ""
2089
+ "The WordPress core tables scanned by this feature include: posts, postmeta, "
2090
+ "comments, links, users, usermeta, and options tables."
2091
+ msgstr ""
2092
+ "Основные таблицы WordPress, которые сканируются: posts, postmeta, comments, "
2093
+ "links, users, usermeta, и options."
2094
+
2095
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:410
2096
+ msgid "Database Scan"
2097
+ msgstr "Сканирование базы данных"
2098
+
2099
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:416
2100
+ msgid "To perform a database scan click on the button below."
2101
+ msgstr "Для немедленного сканирования базы данных, нажмите эту кнопку"
2102
+
2103
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:419
2104
+ msgid "Perform DB Scan"
2105
+ msgstr "Выполнить сканирование базы данных"
2106
+
2107
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:462
2108
+ msgid "Latest File Change Scan Results"
2109
+ msgstr "Результаты последнего сканирования по измененным файлам"
2110
+
2111
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:471
2112
+ msgid "The following files were added to your host."
2113
+ msgstr "Следующие новые файлы были добавлены на вашем сервере."
2114
+
2115
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:474
2116
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:495
2117
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:519
2118
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:27
2119
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:28
2120
+ msgid "File"
2121
+ msgstr "Файл"
2122
+
2123
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:475
2124
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:496
2125
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:520
2126
+ msgid "File Size"
2127
+ msgstr "Размер"
2128
+
2129
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:476
2130
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:497
2131
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:521
2132
+ msgid "File Modified"
2133
+ msgstr "Файл изменен"
2134
+
2135
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:492
2136
+ msgid "The following files were removed from your host."
2137
+ msgstr "Следующие файлы исчезли с вашего сервера."
2138
+
2139
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:516
2140
+ msgid "The following files were changed on your host."
2141
+ msgstr "Следующие файлы были изменены на вашем сервере."
2142
+
2143
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:26
2144
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:67
2145
+ msgid "File Permissions"
2146
+ msgstr "Доступ к файлам"
2147
+
2148
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:27
2149
+ msgid "PHP File Editing"
2150
+ msgstr "Редактирование файлов PHP"
2151
+
2152
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:28
2153
+ msgid "WP File Access"
2154
+ msgstr "WP доступ к файлам"
2155
+
2156
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:29
2157
+ msgid "Host System Logs"
2158
+ msgstr "Системные журналы"
2159
 
2160
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:96
2161
  #, php-format
2162
  msgid "The permissions for %s were succesfully changed to %s"
2163
  msgstr "Разрешения для %s успешно изменены на %s"
2164
 
2165
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:100
2166
  #, php-format
2167
  msgid "Unable to change permissions for %s!"
2168
  msgstr "Невозможно изменить разрешения для %s!"
2169
 
2170
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:106
2171
  msgid "File Permissions Scan"
2172
  msgstr "Сканирование разрешений на файлы и директории WordPress"
2173
 
2174
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:109
2175
  msgid ""
2176
  "Your WordPress file and folder permission settings govern the accessability "
2177
  "and read/write privileges of the files and folders which make up your WP "
2180
  "Установки разрешений на файлы и папки WordPress, позволяющие управлять "
2181
  "доступом к этим файлам."
2182
 
2183
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:110
2184
  msgid ""
2185
  "Your WP installation already comes with reasonably secure file permission "
2186
  "settings for the filesystem."
2188
  "При первоначальной установке WordPress автоматически присваивает разумные "
2189
  "права доступа к своей файловой системе."
2190
 
2191
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:111
2192
  msgid ""
2193
  "However, sometimes people or other plugins modify the various permission "
2194
  "settings of certain core WP folders or files such that they end up making "
2198
  "директории и файлы, снижая таким образом уровень безопасности своего сайта, "
2199
  "установив неверные права доступа."
2200
 
2201
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:112
2202
  msgid ""
2203
  "This feature will scan the critical WP core folders and files and will "
2204
  "highlight any permission settings which are insecure."
2206
  "Эта опция сканирует все важные директории и файлы ядра WordPress и "
2207
  "подсвечивает все небезопасные настройки."
2208
 
2209
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:118
2210
  msgid "WP Directory and File Permissions Scan Results"
2211
  msgstr "Результат сканирования разрешений на директории и файлы WordPress"
2212
 
2213
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:131
2214
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:150
2215
  msgid "File/Folder"
2216
  msgstr "Файл/Папка"
2217
 
2218
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:132
2219
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:151
2220
  msgid "Current Permissions"
2221
  msgstr "Текущие разрешения"
2222
 
2223
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:133
2224
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:152
2225
  msgid "Recommended Permissions"
2226
  msgstr "Рекомендуемые разрешения"
2227
 
2228
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:134
2229
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:153
2230
  msgid "Recommended Action"
2231
  msgstr "Рекомендуемое действие"
2232
 
2233
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:191
2234
+ msgid "Your PHP file editing settings were saved successfully."
2235
+ msgstr "Настройки редактирования файлов PHP сохранены!"
2236
+
2237
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:195
2238
+ msgid ""
2239
+ "Operation failed! Unable to modify or make a backup of wp-config.php file!"
2240
+ msgstr ""
2241
+ "Операция не удалась! Невозможно изменить или сделать резервную копию файла "
2242
+ "wp-config.php!"
2243
+
2244
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:201
2245
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:69
2246
  msgid "File Editing"
2247
  msgstr "Редактирование файлов"
2248
 
2249
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:204
2250
  msgid ""
2251
  "The Wordpress Dashboard by default allows administrators to edit PHP files, "
2252
  "such as plugin and theme files."
2254
  "По умолчанию из панели администрирования WordPress позволяется редактировать "
2255
  "PHP-файлы плагинов и тем."
2256
 
2257
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:205
2258
  msgid ""
2259
  "This is often the first tool an attacker will use if able to login, since it "
2260
  "allows code execution."
2262
  "Это первейшее подспорье хакеру, получившему доступ в консоль администратора, "
2263
  "предоставляющее ему возможность выполнить любой код на Вашем сервере."
2264
 
2265
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:206
2266
  msgid ""
2267
  "This feature will disable the ability for people to edit PHP files via the "
2268
  "dashboard."
2270
  "Данная опция отключает возможность редактирования файлов из панели "
2271
  "администратора."
2272
 
2273
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:212
2274
  msgid "Disable PHP File Editing"
2275
  msgstr "Отключение редактирования PHP-файлов"
2276
 
2277
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:224
2278
  msgid "Disable Ability To Edit PHP Files"
2279
  msgstr "Отключить возможность редактирования PHP-файлов"
2280
 
2281
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:227
2282
  msgid ""
2283
  "Check this if you want to remove the ability for people to edit PHP files "
2284
  "via the WP dashboard"
2286
  "Отметьте этот чекбокс, чтобы запретить редактирование PHP-файлов из админ-"
2287
  "панели WordPress"
2288
 
2289
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:271
2290
  msgid ""
2291
  "You have successfully saved the Prevent Access to Default WP Files "
2292
  "configuration."
2293
  msgstr "Запрет к информационным файлам WordPress установлен."
2294
 
2295
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:280
 
 
 
 
 
 
 
 
 
 
 
2296
  msgid "WordPress Files"
2297
  msgstr "Информационные файлы WordPress"
2298
 
2299
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:283
2300
  #, php-format
2301
  msgid ""
2302
  "This feature allows you to prevent access to files such as %s, %s and %s "
2305
  "Данная опция запретит доступ к таким файлам как %s, %s и %s, которые "
2306
  "создаются во время установки WordPress и не несут в себе системной нагрузки,"
2307
 
2308
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:284
2309
  msgid ""
2310
  "By preventing access to these files you are hiding some key pieces of "
2311
  "information (such as WordPress version info) from potential hackers."
2313
  "но ограничение доступа к этим файлам позволит Вам скрыть от хакеров важную "
2314
  "информацию (такую как версия WordPress)."
2315
 
2316
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:289
2317
  msgid "Prevent Access to Default WP Files"
2318
  msgstr "Запрет доступа к информационным файлам WordPress"
2319
 
2320
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:300
2321
  msgid "Prevent Access to WP Default Install Files"
2322
  msgstr ""
2323
  "Запретить доступ к информационным файлам, создаваемых по умолчанию при "
2324
  "установке WordPress."
2325
 
2326
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:303
2327
  msgid ""
2328
  "Check this if you want to prevent access to readme.html, license.txt and wp-"
2329
  "config-sample.php."
2331
  "Отметьте этот чекбокс, чтобы запретить доступ к файлам readme.html, license."
2332
  "txt и wp-config-sample.php."
2333
 
2334
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:307
2335
  msgid "Save Setting"
2336
  msgstr "Сохранить настройки"
2337
 
2338
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:331
2339
  msgid "System Logs"
2340
  msgstr "Системные журналы"
2341
 
2342
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:334
2343
  msgid ""
2344
  "Sometimes your hosting platform will produce error or warning logs in a file "
2345
  "called \"error_log\"."
2347
  "Периодически Ваш сервер может публиковать отчеты об ошибках в специальных "
2348
  "файлах, которые называются «error_log»."
2349
 
2350
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:335
2351
  msgid ""
2352
  "Depending on the nature and cause of the error or warning, your hosting "
2353
  "server can create multiple instances of this file in numerous directory "
2356
  "В зависимости от характера и причин ошибки, Ваш сервер может создать "
2357
  "несколько файлов журналов в различных каталогах Вашей установки WordPress."
2358
 
2359
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:336
2360
  msgid ""
2361
  "By occassionally viewing the contents of these logs files you can keep "
2362
  "informed of any underlying problems on your system which you might need to "
2366
  "проблем на Вашем сайте и сможете воспользоваться этой информацией для их "
2367
  "решения."
2368
 
2369
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:342
2370
  msgid "View System Logs"
2371
  msgstr "Просмотр системных журналов"
2372
 
2373
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:347
2374
+ msgid "Enter System Log File Name"
2375
+ msgstr "Введите название лог-файла системы"
2376
+
2377
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:349
2378
+ msgid "Enter your system log file name. (Defaults to error_log)"
2379
+ msgstr "Введите название лог-файла вашей системы. (по умольчанию: error_log)"
2380
+
2381
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:352
2382
  msgid "View Latest System Logs"
2383
  msgstr "Просмотр последних записей в системных журналах"
2384
 
2385
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:354
2386
  msgid "Loading..."
2387
  msgstr "Загрузка..."
2388
 
2389
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:371
2390
  msgid "No system logs were found!"
2391
  msgstr "Записей в системных журналах не найдено!"
2392
 
2393
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:424
2394
  msgid "Set Recommended Permissions"
2395
  msgstr "Установить рекомендуемые разрешения"
2396
 
2397
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:430
2398
  msgid "No Action Required"
2399
  msgstr "Действие не требуется"
2400
 
2401
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:470
2402
+ #, php-format
2403
+ msgid "Showing latest entries of error_log file: %s"
2404
+ msgstr "Последние записи об ошибках в журнале: %s"
 
2405
 
2406
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:27
2407
+ msgid "Basic Firewall Rules"
2408
+ msgstr "Базовые правила файерволла"
 
 
 
 
2409
 
2410
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:28
2411
+ msgid "Additional Firewall Rules"
2412
+ msgstr "Дополнительные праивла файерволла"
 
 
2413
 
2414
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:29
2415
+ msgid "5G Blacklist Firewall Rules"
2416
+ msgstr "Настройки 5G Файерволл"
2417
 
2418
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:30
2419
+ msgid "Internet Bots"
2420
+ msgstr "Интернет-роботы"
 
 
 
 
2421
 
2422
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:31
2423
+ msgid "Prevent Hotlinks"
2424
+ msgstr "Предотвратить хотлинки"
 
 
 
2425
 
2426
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:32
2427
+ msgid "404 Detection"
2428
+ msgstr "Детектирование 404"
 
2429
 
2430
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:115
2431
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:663
2432
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:104
2433
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:317
2434
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:96
2435
  msgid "Settings were successfully saved"
2436
  msgstr "Настройки успешно сохранены"
2437
 
2438
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:124
2439
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:503
2440
  msgid "Firewall Settings"
2441
  msgstr "Настройки файерволл (брандмауэра)"
2442
 
2443
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:131
 
2444
  #, php-format
2445
  msgid ""
2446
  "This should not have any impact on your site's general functionality but if "
2450
  "функциональность Вашего сайта, но при желании Вы можете создать %s Вашего ."
2451
  "htaccess-файла, перед тем, как включите эти настройки."
2452
 
2453
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:132
2454
  msgid ""
2455
  "The features in this tab allow you to activate some basic firewall security "
2456
  "protection rules for your site."
2458
  "Опции в этой вкладке позволяют применить некоторые базовые правила защиты "
2459
  "для Вашего сайта."
2460
 
2461
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:133
2462
  msgid ""
2463
  "The firewall functionality is achieved via the insertion of special code "
2464
  "into your currently active .htaccess file."
2466
  "Данная функциональность брандмауэра достигается методом добавления в Ваш "
2467
  "файл .htaccess некоторых специальных директив."
2468
 
2469
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:143
2470
+ msgid "Attention:"
2471
+ msgstr "Внимание!"
2472
+
2473
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:144
2474
+ msgid "Currently the "
2475
+ msgstr "В настоящее время опция "
2476
+
2477
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:144
2478
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:191
2479
+ msgid "Enable Pingback Protection"
2480
+ msgstr "Активировать Пингбэк-защиту"
2481
+
2482
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:144
2483
+ msgid " is active."
2484
+ msgstr " активна."
2485
+
2486
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:145
2487
+ msgid ""
2488
+ "Please beware that if you are using the WordPress iOS App, then you will "
2489
+ "need to deactivate this feature in order for the app to work properly."
2490
+ msgstr ""
2491
+ "Обратите внимание: если используете Апп iOS для WordPress, тогда для верной "
2492
+ "работы данного аппа необходимо выключить данной функции."
2493
+
2494
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:153
2495
  msgid "Basic Firewall Settings"
2496
  msgstr "Основные функции брандмауэра"
2497
 
2498
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:161
2499
  msgid "Enable Basic Firewall Protection"
2500
  msgstr "Активировать основные функции брандмауэра"
2501
 
2502
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:164
2503
  msgid "Check this if you want to apply basic firewall protection to your site."
2504
  msgstr ""
2505
  "Отметьте этот чекбокс, чтобы активировать основные функции файерволл на "
2506
  "Вашем сайте."
2507
 
2508
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:168
2509
  msgid ""
2510
  "This setting will implement the following basic firewall protection "
2511
  "mechanisms on your site:"
2512
  msgstr "Эта опция запустит следующий базовый механизм защиты на Вашем сайте:"
2513
 
2514
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:169
2515
  msgid "1) Protect your htaccess file by denying access to it."
2516
  msgstr "1) Защитит файл htaccess от несанкционированного доступа."
2517
 
2518
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:170
2519
  msgid "2) Disable the server signature."
2520
  msgstr "2) Отключит сигнатуру сервера в ответах на запросы."
2521
 
2522
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:171
2523
  msgid "3) Limit file upload size (10MB)."
2524
  msgstr "3) Ограничит лимит на размер загружаемых файлов до 10Мб."
2525
 
2526
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:172
2527
  msgid "4) Protect your wp-config.php file by denying access to it."
2528
  msgstr "4) Защитит Ваш файл wp-config.php от несанкционированного доступа."
2529
 
2530
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:173
2531
  msgid ""
2532
  "The above firewall features will be applied via your .htaccess file and "
2533
  "should not affect your site's overall functionality."
2536
  "файл .htaccess определенных директив и не должна повлиять на общую "
2537
  "работоспособность Вашего сайта."
2538
 
2539
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:174
2540
  msgid ""
2541
  "You are still advised to take a backup of your active .htaccess file just in "
2542
  "case."
2544
  "Однако, просто на всякий случай, рекомендуется предварительно сделать "
2545
  "резервную копию файла .htaccess."
2546
 
2547
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:183
2548
  msgid "WordPress Pingback Vulnerability Protection"
2549
  msgstr "Защита от Пингбэк-уязвимостей"
2550
 
2551
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:194
 
 
 
 
2552
  msgid ""
2553
  "Check this if you are not using the WP XML-RPC functionality and you want to "
2554
  "enable protection against WordPress pingback vulnerabilities."
2556
  "Включите этот чекбокс, если Вы хотите активировать защиту от пингбэк-"
2557
  "уязвимостей и не используете в своем WordPress функциональность XML-RPC."
2558
 
2559
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:198
2560
  msgid ""
2561
  "This setting will add a directive in your .htaccess to disable access to the "
2562
  "WordPress xmlrpc.php file which is responsible for the XML-RPC functionality "
2566
  "xmlrpc.php, который отвечает за функциональность XML-RPC и за пингбэки в "
2567
  "Вашем WordPress."
2568
 
2569
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:199
2570
  msgid ""
2571
  "Hackers can exploit various pingback vulnerabilities in the WordPress XML-"
2572
  "RPC API in a number of ways such as:"
2574
  "Хакеры часто пользуются уязвимостями в этой функциональности, чтобы достичь "
2575
  "следующих целей:"
2576
 
2577
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:200
2578
  msgid "1) Denial of Service (DoS) attacks"
2579
  msgstr ""
2580
  "1) Перегрузить сервер запросами и вывести тем самым его из строя (DoS-атака)"
2581
 
2582
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:201
2583
  msgid "2) Hacking internal routers."
2584
  msgstr "2) Взломать внутренние маршрутизаторы"
2585
 
2586
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:202
2587
  msgid "3) Scanning ports in internal networks to get info from various hosts."
2588
  msgstr ""
2589
  "3) Просканировать порты внутренней сети, чтобы получить информацию от "
2590
  "различных хостов на сервере."
2591
 
2592
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:203
2593
  msgid ""
2594
  "Apart from the security protection benefit, this feature may also help "
2595
  "reduce load on your server, particularly if your site currently has a lot of "
2599
  "на Ваш сервер, особенно если Ваш сайт получает много нежелательного трафика, "
2600
  "нацеленного на XML-RPC API."
2601
 
2602
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:204
2603
  msgid ""
2604
  "NOTE: You should only enable this feature if you are not currently using the "
2605
  "XML-RPC functionality on your WordPress installation."
2607
  "ВНИМАНИЕ: Эту опцию можно активировать только в том случае, если Вы в своей "
2608
  "WordPress-установке не используете функциональность XML-RPC."
2609
 
2610
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:211
2611
  msgid "Save Basic Firewall Settings"
2612
  msgstr "Сохранить основные настройки брандмауэра"
2613
 
2614
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:283
2615
  msgid ""
2616
  "You have successfully saved the Additional Firewall Protection configuration"
2617
  msgstr "Дополнительные настройки конфигурации брандмауэра успешно сохранены!"
2618
 
2619
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:297
2620
  msgid "Additional Firewall Protection"
2621
  msgstr "Дополнительные функции брандмауэра"
2622
 
2623
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:301
2624
  #, php-format
2625
  msgid ""
2626
  "Due to the nature of the code being inserted to the .htaccess file, this "
2632
  "функциональность некоторых плагинов, поэтому рекомендуется до их включения "
2633
  "сделать %s файла .htaccess."
2634
 
2635
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:303
2636
  msgid ""
2637
  "This feature allows you to activate more advanced firewall settings to your "
2638
  "site."
2640
  "В этой вкладке Вы можете активировать дополнительные настройки файерволл для "
2641
  "защиты Вашего сайта."
2642
 
2643
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:304
2644
  msgid ""
2645
  "The advanced firewall rules are applied via the insertion of special code to "
2646
  "your currently active .htaccess file."
2648
  "Эти опции реализуются методом добавления определенных правил в Ваш файл ."
2649
  "htaccess."
2650
 
2651
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:313
2652
  msgid "Listing of Directory Contents"
2653
  msgstr "Просмотр содержимого директорий"
2654
 
2655
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:322
2656
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:91
2657
  msgid "Disable Index Views"
2658
  msgstr "Отключить возможность просмотра директорий"
2659
 
2660
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:325
2661
  msgid "Check this if you want to disable directory and file listing."
2662
  msgstr ""
2663
  "Включите этот чекбокс, чтобы предотвратить свободный просмотр директорий на "
2664
  "Вашем сайте"
2665
 
2666
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:330
2667
  msgid ""
2668
  "By default, an Apache server will allow the listing of the contents of a "
2669
  "directory if it doesn't contain an index.php file."
2671
  "По умолчанию сервер Apache позволяет видет содержимое директорий, если в них "
2672
  "нет файла index.php или index.html."
2673
 
2674
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:332
2675
  msgid "This feature will prevent the listing of contents for all directories."
2676
  msgstr "Эта функция запрещает такую возможность."
2677
 
2678
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:334
2679
  msgid ""
2680
+ "NOTE: In order for this feature to work \"AllowOverride\" of the Indexes "
2681
+ "directive must be enabled in your httpd.conf file. Ask your hosting provider "
2682
+ "to check this if you don't have access to httpd.conf"
2683
  msgstr ""
2684
  "ВНИМАНИЕ: Для того, чтобы эта функция работала, в Вашем файле httpd.conf "
2685
  "должна быть включена директива «AllowOverride». Если у Вас нет доступа к "
2686
  "файлу httpd.conf, обратитесь к своему хостинг-провайдеру."
2687
 
2688
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:343
2689
  msgid "Trace and Track"
2690
  msgstr "HTTP-трассировка"
2691
 
2692
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:352
2693
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:92
2694
  msgid "Disable Trace and Track"
2695
  msgstr "Отключить http-трассировку"
2696
 
2697
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:355
2698
  msgid "Check this if you want to disable trace and track."
2699
  msgstr "Отметьте этот чекбокс, чтобы защититься от http-трассировки."
2700
 
2701
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:360
2702
  msgid ""
2703
  "HTTP Trace attack (XST) can be used to return header requests and grab "
2704
  "cookies and other information."
2707
  "применяются, чтобы получить информацию из возвращаемых сервером http-"
2708
  "заголовков и похитить куки и другую информацию."
2709
 
2710
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:362
2711
  msgid ""
2712
  "This hacking technique is usually used together with cross site scripting "
2713
  "attacks (XSS)."
2715
  "Эта хакерская технология обычно применяется в сочетании с межсайтовым "
2716
  "скриптингом (XSS)."
2717
 
2718
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:364
2719
  msgid ""
2720
  "Disabling trace and track on your site will help prevent HTTP Trace attacks."
2721
  msgstr "Данная опция предназначена как раз для защиты от этого типа атак."
2722
 
2723
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:373
2724
  msgid "Proxy Comment Posting"
2725
  msgstr "Комментарии через Прокси-серверы"
2726
 
2727
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:383
2728
  msgid "Forbid Proxy Comment Posting"
2729
  msgstr "Запретить комментарии через прокси"
2730
 
2731
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:386
2732
  msgid "Check this if you want to forbid proxy comment posting."
2733
  msgstr "Отметьте этот чекбокс, чтобы запретить комментирование через прокси."
2734
 
2735
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:391
2736
  msgid ""
2737
  "This setting will deny any requests that use a proxy server when posting "
2738
  "comments."
2740
  "Эта опция отклонит любые запросы, использующие прокси-сервер при отправке "
2741
  "комментариев."
2742
 
2743
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:392
2744
  msgid ""
2745
  "By forbidding proxy comments you are in effect eliminating some SPAM and "
2746
  "other proxy requests."
2748
  "Это усилит защиту от спама в комментариях и от других нежелательных прокси-"
2749
  "запросов."
2750
 
2751
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:401
2752
  msgid "Bad Query Strings"
2753
  msgstr "Нежелательные строки в запросах"
2754
 
2755
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:411
2756
  msgid "Deny Bad Query Strings"
2757
  msgstr "Запретить вредоносные строки в запросах"
2758
 
2759
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:414
2760
  msgid "This will help protect you against malicious queries via XSS."
2761
  msgstr "Включите этот чекбокс, чтобы активировать защиту от XSS-атак."
2762
 
2763
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:419
2764
  msgid ""
2765
  "This feature will write rules in your .htaccess file to prevent malicious "
2766
  "string attacks on your site using XSS."
2767
  msgstr ""
2768
  "Эта опция предназначена для защиты от ввода вредоносного кода при XSS-атаках."
2769
 
2770
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:420
2771
  msgid ""
2772
  "NOTE: Some of these strings might be used for plugins or themes and hence "
2773
  "this might break some functionality."
2776
  "плагинах или Вашей теме, и, следовательно, данная опция может нарушить их "
2777
  "функциональность."
2778
 
2779
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:421
2780
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:451
2781
  msgid ""
2782
  "You are therefore strongly advised to take a backup of your active .htaccess "
2783
  "file before applying this feature."
2785
  "ОБЯЗАТЕЛЬНО СДЕЛАЙТЕ РЕЗЕРВНУЮ КОПИЮ ВАШЕГО .HTACCESS-ФАЙЛА, ДО ТОГО, КАК ВЫ "
2786
  "АКТИВИРУЕТЕ ЭТУ ФУНКЦИЮ! "
2787
 
2788
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:430
2789
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:95
2790
  msgid "Advanced Character String Filter"
2791
  msgstr "Дополнительная фильтрация символов"
2792
 
2793
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:440
2794
  msgid "Enable Advanced Character String Filter"
2795
  msgstr "Активировать дополнительную фильтрацию символов"
2796
 
2797
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:443
2798
  msgid "This will block bad character matches from XSS."
2799
  msgstr "Включите этот чекбокс, чтобы защитить сайт от XSS-атак."
2800
 
2801
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:448
2802
  msgid ""
2803
  "This is an advanced character string filter to prevent malicious string "
2804
  "attacks on your site coming from Cross Site Scripting (XSS)."
2806
  "Это дополнительная фильтрация символов для блокировки вредоносных команд, "
2807
  "используемых в XSS-атаках (межсайтовый скриптинг)."
2808
 
2809
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:449
2810
  msgid ""
2811
  "This setting matches for common malicious string patterns and exploits and "
2812
  "will produce a 403 error for the hacker attempting the query."
2814
  "Данная опция фиксирует распространенные образцы вредоносного кода и "
2815
  "эксплойты и вернет хакеру сообщение об ошибке 403 (доступ запрещен)."
2816
 
2817
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:450
2818
  msgid "NOTE: Some strings for this setting might break some functionality."
2819
  msgstr ""
2820
  "ВНИМАНИЕ: Некоторые директивы в этих установках могут нарушить "
2821
  "функциональность сайта (это зависит от хостинг-провайдера)."
2822
 
2823
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:459
2824
  msgid "Save Additional Firewall Settings"
2825
  msgstr "Сохранить дополнительные настройки брандмауэра"
2826
 
2827
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:494
2828
  msgid "You have successfully saved the 5G Firewall Protection configuration"
2829
  msgstr "Вы успешно сохранили настройки 5G-защиты"
2830
 
2831
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:507
2832
  #, php-format
2833
  msgid ""
2834
  "This feature allows you to activate the 5G firewall security protection "
2837
  "Эта опция позволяет включить функции защиты «5G», разработанные и "
2838
  "произведенные %s."
2839
 
2840
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:508
2841
  msgid ""
2842
  "The 5G Blacklist is a simple, flexible blacklist that helps reduce the "
2843
  "number of malicious URL requests that hit your website."
2845
  "5G-брандмауэр (файерволл) - это простая и гибкая защита, помогающая "
2846
  "уменьшить количество вредоносных запросов, добавляемых в URL Вашего сайта."
2847
 
2848
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:509
2849
  msgid ""
2850
  "The added advantage of applying the 5G firewall to your site is that it has "
2851
  "been tested and confirmed by the people at PerishablePress.com to be an "
2857
  "com, как наименее разрушительный набор директив безопасности для файла ."
2858
  "htaccess, на сайтах, работающих на сервере Apache или аналогичных."
2859
 
2860
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:510
2861
  #, php-format
2862
  msgid ""
2863
  "Therefore the 5G firewall rules should not have any impact on your site's "
2868
  "функциональность Вашего сайта, но, тем не менее, при желании Вы можете "
2869
  "создать %s Вашего .htaccess-файла, до того, как активируете эту защиту."
2870
 
2871
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:516
2872
  msgid "5G Blacklist/Firewall Settings"
2873
  msgstr "Настройки 5G Файерволл"
2874
 
2875
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:528
2876
  msgid "Enable 5G Firewall Protection"
2877
  msgstr "Включить 5G Файерволл"
2878
 
2879
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:531
2880
  msgid ""
2881
  "Check this if you want to apply the 5G Blacklist firewall protection from "
2882
  "perishablepress.com to your site."
2883
  msgstr "Включите этот чекбокс, чтобы активировать 5G-защиту на Вашем сайте."
2884
 
2885
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:535
2886
  msgid ""
2887
  "This setting will implement the 5G security firewall protection mechanisms "
2888
  "on your site which include the following things:"
2889
  msgstr ""
2890
  "Эта опция активирует 5G-защиту на Вашем сайте, которая включает следующее:"
2891
 
2892
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:536
2893
  msgid "1) Block forbidden characters commonly used in exploitative attacks."
2894
  msgstr ""
2895
  "1) Блокировку запрещенных символов, обычно используемых в хакерских атаках."
2896
 
2897
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:537
2898
  msgid "2) Block malicious encoded URL characters such as the \".css(\" string."
2899
  msgstr ""
2900
  "2) Блокировку вредоносных закодированных строк в URL, таких как «.css(» и т."
2901
  "п."
2902
 
2903
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:538
2904
  msgid ""
2905
  "3) Guard against the common patterns and specific exploits in the root "
2906
  "portion of targeted URLs."
2909
  "эксплойтов (последовательностей команд, использующих известные уязвимости) в "
2910
  "URL."
2911
 
2912
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:539
2913
  msgid ""
2914
  "4) Stop attackers from manipulating query strings by disallowing illicit "
2915
  "characters."
2916
  msgstr "4) Блокировку запрещенных символов в параметрах запросов."
2917
 
2918
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:540
2919
  msgid "....and much more."
2920
  msgstr "...и многое другое."
2921
 
2922
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:546
2923
  msgid "Save 5G Firewall Settings"
2924
  msgstr "Сохранить настройки 5G Файерволл"
2925
 
2926
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:577
2927
+ msgid "The Internet bot settings were successfully saved"
2928
+ msgstr "Настройки по интернет-роботам успешно сохранены"
2929
+
2930
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:581
2931
+ msgid "Internet Bot Settings"
2932
+ msgstr "Настройки по интернет-роботам"
2933
+
2934
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:588
2935
+ #, php-format
2936
+ msgid "%s?"
2937
+ msgstr "%s?"
2938
+
2939
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:590
2940
  msgid ""
2941
+ "A bot is a piece of software which runs on the Internet and performs "
2942
+ "automatic tasks. For example when Google indexes your pages it uses "
2943
+ "automatic bots to achieve this task."
2944
  msgstr ""
2945
+ "Робот - компьютерная программа, которая выполняется в интеренете и выполняет "
2946
+ "автоматические задачи. Google, например, использует автоматические роботы "
2947
+ "для того, чтобы каталогизировать страницы вашего сайта."
2948
 
2949
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:591
2950
  msgid ""
2951
+ "A lot of bots are legitimate and non-malicous but not all bots are good and "
2952
+ "often you will find some which try to impersonate legitimate bots such as "
2953
+ "\"Googlebot\" but in reality they have nohing to do with Google at all."
2954
+ msgstr ""
2955
+ "Много роботов безвредны и полезны, но не все роботы хорошие. Иногда можете "
2956
+ "заметить, что кто-то пытается делать вид, что он - робот от Google "
2957
+ "(Googlebot) когда он на самом деле никак с Google не связан."
2958
 
2959
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:592
2960
  msgid ""
2961
+ "Although most of the bots out there are relatively harmless sometimes "
2962
+ "website owners want to have more control over which bots they allow into "
2963
+ "their site."
2964
+ msgstr ""
2965
+ "Хотя большинство роботов в интернете относительно безвредны, иногда "
2966
+ "администраторы сайтов могут хотеть контролировать, каким роботам они "
2967
+ "позволяют ходить по их сайту."
2968
 
2969
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:593
2970
  msgid ""
2971
+ "This feature allows you to block bots which are impersonating as a Googlebot "
2972
+ "but actually aren't. (In other words they are fake Google bots)"
2973
  msgstr ""
2974
+ "Данная функция позволяет блокировать роботы, которые делают вид, что они - "
2975
+ "Googlebot, когда это неправда. (Другими словами, они - ложные роботы Google)"
 
 
 
 
 
2976
 
2977
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:594
2978
  msgid ""
2979
+ "Googlebots have a unique indentity which cannot easily be forged and this "
2980
+ "feature will indentify any fake Google bots and block them from reading your "
2981
+ "site's pages."
2982
+ msgstr ""
2983
+ роботов Google - уникальные признаки, которые сложно подделать. Данная "
2984
+ "функция распознает любые ложные роботы Google и блокирует им доступ к "
2985
+ "страницам вашего сайта."
2986
 
2987
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:600
2988
  msgid ""
2989
+ "<strong>Attention</strong>: Sometimes non-malicious Internet organizations "
2990
+ "might have bots which impersonate as a \"Googlebot\"."
2991
  msgstr ""
2992
+ "<strong>Внимание</strong>: Бывает, что и роботы не злонамеренных организаций "
2993
+ "представляют себя как \"Googlebot\"."
 
2994
 
2995
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:601
2996
  msgid ""
2997
+ "Just be aware that if you activate this feature the plugin will block all "
2998
+ "bots which use the \"Googlebot\" string in their User Agent information but "
2999
+ "are NOT officially from Google (irrespective whether they are malicious or "
3000
+ "not)."
3001
  msgstr ""
3002
+ "Просто имейте в виду, что если вы активируете данную функцию, тогда вы "
3003
+ "будете блокировать любые роботы, которые представляют себя строчкой "
3004
+ "\"Googlebot\" в поле User Agent information но при этом не от Google "
3005
+ "(независимо от того, злонамеренные они, или нет)."
3006
 
3007
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:602
3008
  msgid ""
3009
+ "All other bots from other organizations such as \"Yahoo\", \"Bing\" etc will "
3010
+ "not be affected by this feature."
 
 
3011
  msgstr ""
3012
+ "Это не влияет на работу любых роботов от других организаций, например \"Yahoo"
3013
+ "\", \"Bing\" и т.д."
 
 
3014
 
3015
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:608
3016
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:618
3017
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:97
3018
+ msgid "Block Fake Googlebots"
3019
+ msgstr "Блокировать ложные Googlebots"
3020
 
3021
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:621
3022
+ msgid "Check this if you want to block all fake Googlebots."
3023
+ msgstr ""
3024
+ "Отметьте этот чекбокс, если хотите блокировать все ложные Google-роботы."
3025
 
3026
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:625
3027
  msgid ""
3028
+ "This feature will check if the User Agent information of a bot contains the "
3029
+ "string \"Googlebot\"."
3030
  msgstr ""
3031
+ "Данная функция проверяет, содержит ли поле User Agent information строчку "
3032
+ "\"Googlebot\"."
3033
 
3034
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:626
3035
  msgid ""
3036
+ "It will then perform a few tests to verify if the bot is legitimately from "
3037
+ "Google and if so it will allow the bot to proceed."
3038
  msgstr ""
3039
+ "В таком случае, функция выполняет несколько тестов для того, чтобы убедится, "
3040
+ "действительно ли это - робот от Google. Если да, тогда позволяет роботу "
3041
+ "работать дальше."
3042
 
3043
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:627
3044
+ msgid ""
3045
+ "If the bot fails the checks then the plugin will mark it as being a fake "
3046
+ "Googlebot and it will block it"
3047
+ msgstr ""
3048
+ "Если робот не выдержит этот тест, функция пометит его, как ложный Googlebot "
3049
+ "и блокирует его"
3050
 
3051
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:634
3052
+ msgid "Save Internet Bot Settings"
3053
+ msgstr "Сохранить настройки по интернет-роботам"
3054
 
3055
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:671
3056
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:693
3057
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:32
3058
+ msgid "Prevent Image Hotlinking"
3059
+ msgstr "Предотвратить хотлинки на изображения"
3060
+
3061
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:674
3062
  msgid ""
3063
+ "A Hotlink is where someone displays an image on their site which is actually "
3064
+ "located on your site by using a direct link to the source of the image on "
3065
+ "your server."
 
3066
  msgstr ""
3067
+ "Хотлинк - когда кто-то на своем сайте показывает изображение, которое, на "
3068
+ "самом деле, находится на вашем сайте, используя прямую ссылку на исходник "
3069
+ "изображения на ваш сайт."
 
3070
 
3071
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:675
3072
  msgid ""
3073
+ "Due to the fact that the image being displayed on the other person's site is "
3074
+ "coming from your server, this can cause leaking of bandwidth and resources "
3075
+ "for you because your server has to present this image for the people viewing "
3076
+ "it on someone elses's site."
3077
  msgstr ""
3078
+ "Т.к. изображение, которое показывается на чужом сайте, предоставляется с "
3079
+ "вашего сайта, это может привести к потерям скорости и ресурсов для вас, т.к. "
3080
+ "вашему серверу приходится передавать эту картину людям, которые его видят на "
3081
+ "чужом сайте."
 
3082
 
3083
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:676
3084
  msgid ""
3085
+ "This feature will prevent people from directly hotlinking images from your "
3086
+ "site's pages by writing some directives in your .htaccess file."
3087
  msgstr ""
3088
+ "Данная функция предотвращает прямые хотлинки на изображения ваших страниц, "
3089
+ "добавив несколько инструкций в ваш файл .htaccess."
3090
 
3091
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:681
3092
+ msgid "Prevent Hotlinking"
3093
+ msgstr "Предотвратить хотлинки"
3094
 
3095
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:696
3096
+ msgid "Check this if you want to prevent hotlinking to images on your site."
 
 
 
3097
  msgstr ""
3098
+ "Отметьте этот чекбокс, чтобы предотвратить использование изображнеий этого "
3099
+ "сайта на страницах чужих сайтов (хотлинкс)."
 
 
 
 
3100
 
3101
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:716
3102
+ msgid "Nonce check failed for delete all 404 event logs operation!"
 
 
3103
  msgstr ""
3104
+ "Не удалось удалить все записи ошибки 404, т.к. одноразовый параметр nonce не "
3105
+ "был верным!"
3106
+
3107
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:727
3108
+ msgid "404 Detection Feature - Delete all 404 event logs operation failed!"
3109
+ msgstr "Отслеживание ошибок 404 - не удалось удалить все записи ошибок 404!"
3110
+
3111
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:731
3112
+ msgid "All 404 event logs were deleted from the DB successfully!"
3113
+ msgstr "Все записи ошибок 404 были успешно удалены!"
3114
 
3115
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:757
3116
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:110
3117
  msgid ""
3118
+ "You entered a non numeric value for the lockout time length field. It has "
3119
+ "been set to the default value."
 
3120
  msgstr ""
3121
+ "Вы ввели нечисловое значение для периода блокирования. Установлено значение "
3122
+ "по умолчанию."
 
3123
 
3124
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:763
3125
  msgid ""
3126
+ "You entered an incorrect format for the \"Redirect URL\" field. It has been "
3127
+ "set to the default value."
3128
  msgstr ""
3129
+ "Вы ввели адрес неверного формата «Адрес переадресации». Сохранено значение "
3130
+ "по умолчанию."
3131
 
3132
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:795
3133
+ msgid "404 Detection Configuration"
3134
+ msgstr "Настройки отслеживания ошибок 404"
3135
 
3136
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:798
3137
  msgid ""
3138
+ "A 404 or Not Found error occurs when somebody tries to access a non-existent "
3139
+ "page on your website."
3140
  msgstr ""
3141
+ "Ошибка 404 или \"Страница не найдена\" возникает, когда кто-то запрашивает "
3142
+ "страницу, которой нет на вашем сайте. "
 
3143
 
3144
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:799
3145
  msgid ""
3146
+ "Typically, most 404 errors happen quite innocently when people have mis-"
3147
+ "typed a URL or used an old link to page which doesn't exist anymore."
 
3148
  msgstr ""
3149
+ "Большинство ошибок 404 случаются, когда посетитель написал URL страницы с "
3150
+ "ошибкой или использовал старую ссылку на страницу, которой уже нет."
 
3151
 
3152
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:800
3153
+ msgid ""
3154
+ "However, in some cases you may find many repeated 404 errors which occur in "
3155
+ "a relatively short space of time and from the same IP address which are all "
3156
+ "attempting to access a variety of non-existent page URLs."
3157
  msgstr ""
3158
+ "Однако, в иногда можно заметить большое количество ошибок 404 подряд за "
3159
+ "относительно короткое время с одного и того же адреса IP, все запрашивая URL "
3160
+ "страниц, которых нет."
3161
 
3162
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:801
3163
  msgid ""
3164
+ "Such behaviour can mean that a hacker might be trying to find a particular "
3165
+ "page or URL for sinister reasons."
3166
  msgstr ""
3167
+ "Такое поведение может означать, что хакер пытается найти какую-то "
3168
+ "специальную страницу или URL со злым умыслом."
3169
 
3170
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:802
3171
  msgid ""
3172
+ "This feature allows you to monitor all 404 events which occur on your site, "
3173
+ "and it also gives you the option of blocking IP addresses for a configured "
3174
+ "length of time."
 
3175
  msgstr ""
3176
+ "Данная функция позволяет отслеживать все случаи 404, которые происходят на "
3177
+ "вашем сайте, а также дает возможность заблокировать соответствующие адреса "
3178
+ "IP на время, которое выбираете."
3179
 
3180
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:803
3181
  msgid ""
3182
+ "If you want to temporarily block an IP address, simply click the \"Temp Block"
3183
+ "\" link for the applicable IP entry in the \"404 Event Logs\" table below."
 
3184
  msgstr ""
3185
+ "Если хотите временно заблокировать адрес IP, просто пометьте ссылку "
3186
+ "\"Временно заблокировать\" в соответствующей строчке в таблице \"Логи ошибок "
3187
+ "404\" внизу."
3188
 
3189
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:808
3190
+ msgid "404 Detection Options"
3191
+ msgstr "Настройки детектирования ошибок 404"
3192
+
3193
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:820
3194
+ msgid "Enable IP Lockout For 404 Events"
3195
+ msgstr "Активировать возможность блокировать IP-адреса в связи с ошибками 404"
3196
+
3197
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:823
3198
+ msgid "Check this if you want to enable the lockout of selected IP addresses."
3199
+ msgstr ""
3200
+ "Отметьте этот чекбокс, если Вы хотите иметь возможнось банить указанные IP-"
3201
+ "адреса."
3202
 
3203
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:828
3204
  msgid ""
3205
+ "When you enable this checkbox, all 404 events on your site will be logged in "
3206
+ "the table below. You can monitor these events and select some IP addresses "
3207
+ "to be blocked in the table. All IP addresses you select to be blocked from "
3208
+ "the \"404 Event Logs\" table section will be unable to access your site."
3209
  msgstr ""
3210
+ "Когда ставите галочку тут, все случаи ошибок 404 на вашем сайте будете "
3211
+ "включены в лог внизу. Вы можете следить за этими случаями и выбрать "
3212
+ "некоторые адреса IP в таблице, которые вы желаете заблокировать из таблицы "
3213
+ "\"Логи ошибок 404\". Тогда эти адреса не будут иметь доступ к вашему сайту."
3214
 
3215
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:836
3216
+ msgid "Enable 404 Event Logging"
3217
+ msgstr "Активировать отслеживание ошибок 404"
3218
 
3219
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:839
3220
+ msgid "Check this if you want to enable the logging of 404 events"
3221
+ msgstr "Отметьте эту опцию, если Вы хотите включить отслежиание ошибок 404"
3222
 
3223
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:844
3224
+ msgid "Time Length of 404 Lockout (min)"
3225
+ msgstr "Период блокирования из-за ошибок 404 (минуты)"
3226
+
3227
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:846
3228
  msgid ""
3229
+ "Set the length of time for which a blocked IP address will be prevented from "
3230
+ "visiting your site"
3231
+ msgstr "Укажите период времени, на который будут блокироваться IP-адреса"
3232
 
3233
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:851
3234
  msgid ""
3235
+ "You can lock any IP address which is recorded in the \"404 Event Logs\" "
3236
+ "table section below."
3237
+ msgstr ""
3238
+ "Вы можете заблокировать любые IP-адреса, которые записаны в таблице \"Логи "
3239
+ "ошибок 404\" внизу."
3240
+
3241
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:853
3242
+ msgid ""
3243
+ "To temporarily lock an IP address, hover over the ID column and click the "
3244
+ "\"Temp Block\" link for the applicable IP entry."
3245
+ msgstr ""
3246
+ "Для того, чтобы заблокировать адрес IP, наведите маркер на графу ID и "
3247
+ "нажмите на ссылку \"Заблокировать временно\" для соответствующего адреса IP."
3248
+
3249
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:860
3250
+ msgid "404 Lockout Redirect URL"
3251
+ msgstr "URL перенаправления при ошибке 404"
3252
+
3253
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:862
3254
+ msgid "A blocked visitor will be automatically redirected to this URL."
3255
  msgstr ""
3256
+ "Заблокированный посетитель автоматически будет переадресован на следующий "
3257
+ "адрес URL."
 
3258
 
3259
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:871
3260
+ msgid "404 Event Logs"
3261
+ msgstr "Логи ошибок 404"
3262
+
3263
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:893
3264
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:902
3265
+ msgid "Delete All 404 Event Logs"
3266
+ msgstr "Удалить все записи ошибок 404"
3267
+
3268
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:899
3269
+ msgid "Click this button if you wish to purge all 404 event logs from the DB."
3270
+ msgstr ""
3271
+ "Нажмите эту кнопку, если Вы хотите удалить все записи об ошибках 202 из БД."
3272
 
3273
+ #: all-in-one-wp-security/admin/wp-security-list-404.php:105
3274
+ #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:79
3275
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:86
3276
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:82
3277
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:93
3278
+ #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:78
3279
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:82
3280
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:93
3281
  msgid "Please select some records using the checkboxes"
3282
  msgstr "Пожалуйста, выберите записи, отметив соответствующие чекбоксы"
3283
 
3284
+ #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:107
3285
+ #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:107
3286
  msgid "The selected entries were deleted successfully!"
3287
  msgstr "Выбранные записи удалены!"
3288
 
3289
+ #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:120
3290
+ #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:119
3291
  msgid "The selected entry was deleted successfully!"
3292
  msgstr "Выбранная запись удалена!"
3293
 
3294
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:139
3295
  msgid ""
3296
  "The selected IP addresses were saved in the blacklist configuration settings."
3297
  msgstr "Указанные IP-адреса внесены в черный список."
3298
 
3299
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:153
3300
  msgid ""
3301
  "The .htaccess file was successfully modified to include the selected IP "
3302
  "addresses."
3303
  msgstr "Файл .htaccess успешно изменен - в него внесены указанные IP-адреса."
3304
 
3305
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:159
3306
  msgid ""
3307
  "NOTE: The .htaccess file was not modified because you have disabled the "
3308
  "\"Enable IP or User Agent Blacklisting\" check box."
3310
  "ВНИМАНИЕ: файл .htaccess не был изменен, так как опция «Вести Черный список» "
3311
  "неактивна."
3312
 
3313
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:160
3314
  #, php-format
3315
  msgid ""
3316
  "To block these IP addresses you will need to enable the above flag in the %s "
3319
  "Чтобы заблокировать эти IP-адреса, необходимо установить соответствующий "
3320
  "флаг в %s меню"
3321
 
3322
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:117
3323
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:527
3324
+ msgid "The selected IP entries were unlocked successfully!"
3325
+ msgstr "Указанные IP-адреса разблокированы!"
3326
+
3327
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:126
3328
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:536
3329
+ msgid "The selected IP entry was unlocked successfully!"
3330
+ msgstr "Указанный IP-адрес разблокирован!"
3331
+
3332
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:127
3333
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:153
3334
+ msgid "Your account is now active"
3335
+ msgstr "Ваша учётная запись активирована!"
3336
+
3337
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:128
3338
+ msgid "Your account with username:"
3339
+ msgstr "Ваш аккаунт и пользовательское имя:"
3340
+
3341
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:128
3342
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:154
3343
+ msgid " is now active"
3344
+ msgstr " сейчас активен"
3345
+
3346
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:137
3347
+ msgid "The selected accounts were approved successfully!"
3348
+ msgstr "Выбранные аккаунты успешно подтверждены!"
3349
+
3350
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:141
3351
+ msgid "The following accounts failed to update successfully: "
3352
+ msgstr "Следующие аккаунты не удалось изменить: !"
3353
+
3354
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:149
3355
+ msgid "The selected account was approved successfully!"
3356
+ msgstr "Выбранный аккаунт успешно подтвержден!"
3357
+
3358
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:154
3359
+ msgid "Your account with username: "
3360
+ msgstr "Ваш аккаунт и пользовательское имя:"
3361
 
3362
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:180
3363
+ msgid "The selected accounts were deleted successfully!"
3364
+ msgstr "Выбранные аккаунты успешно удалены!"
 
3365
 
3366
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:188
3367
+ msgid "The selected account was deleted successfully!"
3368
+ msgstr "Выбранный аккаунт успешно удален!"
3369
+
3370
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:22
3371
+ msgid "Visitor Lockout"
3372
+ msgstr "Блокирование доступа посетителей к сайту"
3373
+
3374
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:88
3375
  msgid "Site lockout feature settings saved!"
3376
  msgstr "Сайт переведен в режим обслуживания!"
3377
 
3378
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:93
3379
  msgid "General Visitor Lockout"
3380
  msgstr "Блокирование доступа посетителей к сайту"
3381
 
3382
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:99
3383
  msgid ""
3384
  "This feature allows you to put your site into \"maintenance mode\" by "
3385
  "locking down the front-end to all visitors except logged in users with super "
3388
  "Эта опция позволяет перевести Ваш сайт в режим обслуживания, сделав "
3389
  "невозможным просмотр сайта посетителями, за исключением администраторов."
3390
 
3391
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:100
3392
  msgid ""
3393
  "Locking your site down to general visitors can be useful if you are "
3394
  "investigating some issues on your site or perhaps you might be doing some "
3397
  "Это может быть очень полезным, если Вы что-то настраиваете, меняете дизайн, "
3398
  "проверяете работу плагинов и т.д. и т.п."
3399
 
3400
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:105
3401
  msgid "Enable Front-end Lockout"
3402
  msgstr "Включить режим обслуживания"
3403
 
3404
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:108
3405
  msgid ""
3406
  "Check this if you want all visitors except those who are logged in as "
3407
  "administrator to be locked out of the front-end of your site."
3409
  "Включите эту опцию, если Вы хотите, чтобы обычные посетители не могли "
3410
  "просматривать Ваш сайт - это смогут делать только администраторы."
3411
 
3412
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:112
3413
  msgid "Enter a Message:"
3414
  msgstr "Введите сообщение:"
3415
 
3416
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:124
3417
  msgid ""
3418
  "Enter a message you wish to display to visitors when your site is in "
3419
  "maintenance mode."
3420
  msgstr "Введите сообщение"
3421
 
3422
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:131
3423
  msgid "Save Site Lockout Settings"
3424
  msgstr "Сохранить настройки блокировки сайта"
3425
 
3426
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:23
3427
+ msgid "Copy Protection"
3428
+ msgstr "Защита от копирования"
3429
+
3430
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:24
3431
+ msgid "Frames"
3432
+ msgstr "Фрейму"
3433
+
3434
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:88
3435
+ msgid "Copy Protection feature settings saved!"
3436
+ msgstr "Настройки функции защиты от копирования сохранены!"
3437
+
3438
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:93
3439
+ msgid "Disable The Ability To Copy Text"
3440
+ msgstr "Отключить возможность копировать текст"
3441
+
3442
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:99
3443
+ msgid ""
3444
+ "This feature allows you to disable the ability to select and copy text from "
3445
+ "your front end."
3446
+ msgstr ""
3447
+ "Данная опция позволит вам закрыть возможность пометить и копировать текст в "
3448
+ "публичной части вашего сайта."
3449
+
3450
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:104
3451
+ msgid "Enable Copy Protection"
3452
+ msgstr "Активировать защиту от копирования"
3453
+
3454
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:107
3455
+ msgid ""
3456
+ "Check this if you want to disable the \"Right Click\", \"Text Selection\" "
3457
+ "and \"Copy\" option on the front end of your site."
3458
+ msgstr ""
3459
+ "Включите эту опцию, если Вы хотите блокировать функции \"Правая кнопка\", "
3460
+ "\"Пометка текста\" и \"Копировать\", на публичных страницах вашего сайта."
3461
+
3462
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:114
3463
+ msgid "Save Copy Protection Settings"
3464
+ msgstr "Сохранить настройки по защите от копирования"
3465
+
3466
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:138
3467
+ msgid "Frame Display Prevention feature settings saved!"
3468
+ msgstr "Настройки по защите от показа сайта внутри фрейма сохранены!"
3469
+
3470
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:143
3471
+ msgid "Prevent Your Site From Being Displayed In a Frame"
3472
+ msgstr "Предотвратите показ вашего сайта внутри фрейма"
3473
+
3474
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:149
3475
+ msgid ""
3476
+ "This feature allows you to prevent other sites from displaying any of your "
3477
+ "content via a frame or iframe."
3478
+ msgstr ""
3479
+ "Эта функция позволяет предотвратить показ вашего сайта и его содержания "
3480
+ "внутри frame или iframe другого сайта."
3481
+
3482
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:150
3483
+ msgid ""
3484
+ "When enabled, this feature will set the \"X-Frame-Options\" paramater to "
3485
+ "\"sameorigin\" in the HTTP header."
3486
+ msgstr ""
3487
+ "Когда активна, данная функция определяет параметр \"X-Frame-Options\" как "
3488
+ "\"sameorigin\" в загаловках HTTP."
3489
+
3490
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:155
3491
+ msgid "Enable iFrame Protection"
3492
+ msgstr "Активировать фрейм-защиту"
3493
+
3494
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:158
3495
+ msgid ""
3496
+ "Check this if you want to stop other sites from displaying your content in a "
3497
+ "frame or iframe."
3498
+ msgstr ""
3499
+ "Отметьте, если Вы хотите, чтобы другие сайты не могли показывать ваш контент "
3500
+ "внутри frame или iframe."
3501
+
3502
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:26
3503
+ msgid "General Settings"
3504
+ msgstr "Общие настройки"
3505
+
3506
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:29
3507
+ msgid "WP Meta Info"
3508
+ msgstr "WP мета-информация"
3509
+
3510
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:30
3511
+ msgid "Import/Export"
3512
+ msgstr "Импорт/Экспорт"
3513
+
3514
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:97
3515
  msgid "All the security features have been disabled successfully!"
3516
  msgstr "Все функции безопасности успешно деактивированы!"
3517
 
3518
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:101
3519
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:128
3520
+ msgid ""
3521
+ "Could not write to the .htaccess file. Please restore your .htaccess file "
3522
+ "manually using the restore functionality in the \".htaccess File\"."
3523
+ msgstr ""
3524
+ "Файл .htaccess недоступен для записи. Пожалуйста, исправьте ваш файл ."
3525
+ "htaccess вручную, с помощью функции восстановления файла \".htaccess\"."
3526
+
3527
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:106
3528
+ msgid ""
3529
+ "Could not write to the wp-config.php. Please restore your wp-config.php file "
3530
+ "manually using the restore functionality in the \"wp-config.php File\"."
3531
+ msgstr ""
3532
+ "Не удалось записать изменения в файл wp-config.php. Пожалуйста обновите ваш "
3533
+ "файл wp-config.php вручную, с помощью функции восстановления файла \"wp-"
3534
+ "config.php File\"."
3535
+
3536
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:124
3537
+ msgid "All firewall rules have been disabled successfully!"
3538
+ msgstr "Все функции файерволла успешно деактивированы!"
3539
+
3540
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:138
3541
  msgid "WP Security Plugin"
3542
  msgstr "Плагин WP Security"
3543
 
3544
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:140
3545
  msgid ""
3546
  "Thank you for using our WordPress security plugin. There are a lot of "
3547
  "security features in this plugin."
3548
  msgstr "Спасибо, что используете плагин WordPress security!"
3549
 
3550
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:141
3551
  msgid ""
3552
  "Go through each menu items and enable the security options to add more "
3553
+ "security to your site. Start by activating the basic features first."
3554
  msgstr ""
3555
  "Воспользуйтесь меню плагина, чтобы активировать функции безопасности и "
3556
+ "защитить свой сайт. Начните с основных функций."
3557
 
3558
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:142
3559
  msgid ""
3560
  "It is a good practice to take a backup of your .htaccess file, database and "
3561
  "wp-config.php file before activating the security features. This plugin has "
3565
  "резервные копии важных файлов и базы данных. Вы легко можете это сделать, "
3566
  "воспользовавшись соответствующими опциями данного плагина."
3567
 
3568
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:145
3569
  msgid "Backup your database"
3570
  msgstr "Создать резервную копию базы данных"
3571
 
3572
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:146
3573
  msgid "Backup .htaccess file"
3574
  msgstr "Создать резервную копию файла .htaccess"
3575
 
3576
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:147
3577
  msgid "Backup wp-config.php file"
3578
  msgstr "Создать резервную копию файла wp-config.php"
3579
 
3580
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:153
3581
  msgid "Disable Security Features"
3582
  msgstr "Отключение функции безопасности"
3583
 
3584
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:159
3585
  msgid ""
3586
  "If you think that some plugin functionality on your site is broken due to a "
3587
  "security feature you enabled in this plugin, then use the following option "
3591
  "активирования функций безопасности, воспользуйтесь этой кнопкой, чтобы все "
3592
  "эти функции отключить."
3593
 
3594
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:163
3595
  msgid "Disable All Security Features"
3596
  msgstr "Отключить все функции безопасности"
3597
 
3598
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:169
3599
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:179
3600
+ msgid "Disable All Firewall Rules"
3601
+ msgstr "Отключить все функции файерволла"
3602
+
3603
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:175
3604
  msgid ""
3605
+ "This feature will disable all firewall rules which are currently active in "
3606
+ "this plugin and it will also delete these rules from your .htacess file. Use "
3607
+ "it if you think one of the firewall rules is causing an issue on your site."
3608
+ msgstr ""
3609
+ "Данная функция отключает все правила файрвола, которые сейчас активны в "
3610
+ "данном плагине, а также удалит эти правила из файла .htaccess. Используйте "
3611
+ "ее если вам кажется, что какое-то из правил файрвола создает проблемы на "
3612
+ "вашем сайте."
3613
 
3614
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:208
3615
+ msgid ""
3616
+ "Your .htaccess file was successfully backed up! Using an FTP program go to "
3617
+ "the \"/wp-content/aiowps_backups\" directory to save a copy of the file to "
3618
+ "your computer."
3619
+ msgstr ""
3620
+ "Резервная копия файла .htaccess успшно создана! Скопируйте копию на свой "
3621
+ "компьютер из папки \"/wp-content/aiowps_backups\" с помощью программы FTP."
3622
 
3623
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:214
3624
  msgid ""
3625
  "htaccess file rename failed during backup. Please check your root directory "
3626
  "for the backup file using FTP."
3629
  "Воспользуйтесь FTP, чтобы вручную просмотреть корневую директорию сайта на "
3630
  "предмет наличия созданной резервной копии."
3631
 
3632
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:220
3633
  msgid "htaccess backup failed."
3634
  msgstr "Создать резервную копию файла .htaccess не удалось."
3635
 
3636
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:235
3637
  msgid "Please choose a .htaccess to restore from."
3638
+ msgstr "Выберите резервную копию файла .htaccess"
3639
 
3640
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:251
3641
  msgid ""
3642
  "htaccess file restore failed. Please attempt to restore the .htaccess "
3643
  "manually using FTP."
3645
  "Восстановить файл .htaccess не удалось. Попробуйте сделать это вручную, "
3646
  "используя FTP."
3647
 
3648
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:255
3649
  msgid "Your .htaccess file has successfully been restored!"
3650
  msgstr "Файл .htaccess успешно восстановлен!"
3651
 
3652
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:261
3653
  msgid ""
3654
  "htaccess Restore operation failed! Please check the contents of the file you "
3655
  "are trying to restore from."
3657
  "Операция восстановления файла .htaccess не удалась. Убедитесь, что с "
3658
  "содержимым резервной копии все в порядке."
3659
 
3660
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:267
3661
  msgid ".htaccess File Operations"
3662
  msgstr "Операции с файлом .htaccess"
3663
 
3664
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:270
3665
  msgid ""
3666
  "Your \".htaccess\" file is a key component of your website's security and it "
3667
  "can be modified to implement various levels of protection mechanisms."
3669
  "Файл «.htaccess» - это ключевой компонент обеспечения безопасности сайта, "
3670
  "который позволяет в значительной степени варьировать механизмы его защиты."
3671
 
3672
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:271
3673
  msgid ""
3674
  "This feature allows you to backup and save your currently active .htaccess "
3675
  "file should you need to re-use the the backed up file in the future."
3677
  "В этом разделе Вы можете создать резервную копию файла .htaccess и, при "
3678
  "необходимости,"
3679
 
3680
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:272
3681
  msgid ""
3682
  "You can also restore your site's .htaccess settings using a backed up ."
3683
  "htaccess file."
3684
  msgstr "восстановить его из резервной копии в будущем."
3685
 
3686
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:286
3687
  msgid "Save the current .htaccess file"
3688
  msgstr "Создание резервной копии файла .htaccess"
3689
 
3690
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:290
3691
  msgid ""
3692
  "Click the button below to backup and save the currently active .htaccess "
3693
  "file."
3694
  msgstr "Для создания резервной копии файла .htaccess нажмите эту кнопку:"
3695
 
3696
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:291
3697
  msgid "Backup .htaccess File"
3698
  msgstr "Создать и скачать резервную копию файла .htaccess"
3699
 
3700
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:295
3701
  msgid "Restore from a backed up .htaccess file"
3702
  msgstr "Восстановление файл .htaccess из резервной копии"
3703
 
3704
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:301
3705
  msgid ".htaccess file to restore from"
3706
  msgstr "Выберите файл резервной копии"
3707
 
3708
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:307
3709
+ msgid ""
3710
+ "After selecting your file, click the button below to restore your site using "
3711
+ "the backed up htaccess file (htaccess_backup.txt)."
3712
+ msgstr ""
3713
+ "После того, как Вы выберите файл резервной копии (с именем htaccess_backup."
3714
+ "txt) на своем компьютере, чтобы заменить им текущий активный файл .htaccess, "
3715
+ "нажмите эту кнопку:"
3716
+
3717
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:313
3718
+ msgid "Restore .htaccess File"
3719
+ msgstr "Восстановить файл .htaccess"
3720
+
3721
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:317
3722
+ msgid "View Contents of the currently active .htaccess file"
3723
+ msgstr "Просмотр содержимого активного файла .htaccess"
3724
+
3725
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:346
3726
+ msgid "Please choose a wp-config.php file to restore from."
3727
+ msgstr "Выберите файл резервной копии."
3728
+
3729
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:362
3730
+ msgid ""
3731
+ "wp-config.php file restore failed. Please attempt to restore this file "
3732
+ "manually using FTP."
3733
+ msgstr ""
3734
+ "Операция по восстановлению файла wp-config.php не удалась! Попытайтесь "
3735
+ "сделать это вручную, используя FTP."
3736
+
3737
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:366
3738
+ msgid "Your wp-config.php file has successfully been restored!"
3739
+ msgstr "Файл wp-config.php успешно восстановлен!"
3740
+
3741
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:372
3742
+ msgid ""
3743
+ "wp-config.php Restore operation failed! Please check the contents of the "
3744
+ "file you are trying to restore from."
3745
+ msgstr ""
3746
+ "Операция по восстановлению файла wp-config.php не удалась! Проверьте "
3747
+ "содержимое файла резервной копии."
3748
+
3749
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:378
3750
+ msgid "wp-config.php File Operations"
3751
+ msgstr "Операции с файлом wp-config.php"
3752
+
3753
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:381
3754
+ msgid ""
3755
+ "Your \"wp-config.php\" file is one of the most important in your WordPress "
3756
+ "installation. It is a primary configuration file and contains crucial things "
3757
+ "such as details of your database and other critical components."
3758
+ msgstr ""
3759
+ "Файл wp-config.php - это один из наиболее важных файлов WordPress, "
3760
+ "содержащий данные доступа к Вашей базе данных и другие очень ценные "
3761
+ "настройки."
3762
+
3763
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:382
3764
+ msgid ""
3765
+ "This feature allows you to backup and save your currently active wp-config."
3766
+ "php file should you need to re-use the the backed up file in the future."
3767
+ msgstr ""
3768
+ "В этом разделе Вы можете создать резервную копию этого файла и, при "
3769
+ "необходимости,"
3770
+
3771
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:383
3772
+ msgid ""
3773
+ "You can also restore your site's wp-config.php settings using a backed up wp-"
3774
+ "config.php file."
3775
+ msgstr "восстановить его в будущем, используя эту резервную копию."
3776
+
3777
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:397
3778
+ msgid "Save the current wp-config.php file"
3779
+ msgstr "Создание резервной копии файла wp-config.php"
3780
+
3781
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:401
3782
+ msgid ""
3783
+ "Click the button below to backup and download the contents of the currently "
3784
+ "active wp-config.php file."
3785
+ msgstr ""
3786
+ "Для создания резервной копии файла wp-config.php и его загрузки на ваш "
3787
+ "компьютер нажмите эту кнопку:"
3788
+
3789
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:402
3790
+ msgid "Backup wp-config.php File"
3791
+ msgstr "Создать и скачать резервную копию файла wp-config"
3792
+
3793
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:407
3794
+ msgid "Restore from a backed up wp-config file"
3795
+ msgstr "Восстановление файла wp-config из резервной копии"
3796
+
3797
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:413
3798
+ msgid "wp-config file to restore from"
3799
+ msgstr "Выберите резервную копию файла wp-config"
3800
+
3801
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:419
3802
+ msgid ""
3803
+ "After selecting your file click the button below to restore your site using "
3804
+ "the backed up wp-config file (wp-config.php.backup.txt)."
3805
+ msgstr ""
3806
+ "После того, как Вы выберите файл резервной копии (с именем wp-config.php."
3807
+ "backup.txt) на своем компьютере, чтобы заменить им текущий активный файл wp-"
3808
+ "config, нажмите эту кнопку:"
3809
+
3810
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:425
3811
+ msgid "Restore wp-config File"
3812
+ msgstr "Восстановить файл wp-config"
3813
+
3814
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:429
3815
+ msgid "View Contents of the currently active wp-config.php file"
3816
+ msgstr "Просмотр содержимого файла wp-config.php"
3817
+
3818
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:464
3819
+ msgid "WP Generator Meta Tag"
3820
+ msgstr "Мета-тег WP Generator"
3821
+
3822
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:467
3823
+ msgid ""
3824
+ "Wordpress generator automatically adds some meta information inside the "
3825
+ "\"head\" tags of every page on your site's front end. Below is an example of "
3826
+ "this:"
3827
+ msgstr ""
3828
+ "WP Generator автоматически выводит информацию о текущей весии Wordpress в "
3829
+ "специальном мета-теге в секции «head» на всех страницах сайта. Вот пример "
3830
+ "такого вывода:"
3831
+
3832
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:469
3833
+ msgid ""
3834
+ "The above meta information shows which version of WordPress your site is "
3835
+ "currently running and thus can help hackers or crawlers scan your site to "
3836
+ "see if you have an older version of WordPress or one with a known exploit."
3837
+ msgstr ""
3838
+ "Эта информация существенно помогает хакерам и их роботам-паукам определять, "
3839
+ "не используете ли Вы какую-нибудь устаревшую версию WordPress с уже "
3840
+ "известными уязвимостями."
3841
+
3842
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:470
3843
+ msgid ""
3844
+ "This feature will allow you to remove the WP generator meta info from your "
3845
+ "site's pages."
3846
+ msgstr ""
3847
+ "Данная опция позволит Вам удалить этот мета-тег со всех страниц Вашего сайта."
3848
+
3849
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:476
3850
+ msgid "WP Generator Meta Info"
3851
+ msgstr "Мета-данные WP Generator"
3852
+
3853
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:488
3854
+ msgid "Remove WP Generator Meta Info"
3855
+ msgstr "Удаление мета-данных WP Generator"
3856
+
3857
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:491
3858
+ msgid ""
3859
+ "Check this if you want to remove the meta info produced by WP Generator from "
3860
+ "all pages"
3861
+ msgstr "Включите эту опцию, чтобы удалить мета-тег WP Generator"
3862
+
3863
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:517
3864
+ msgid "Please choose a file to import your settings from."
3865
+ msgstr "Выберите файл, из которого хотите импортировать настройки"
3866
+
3867
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:549
3868
+ msgid "Import AIOWPS settings from "
3869
+ msgstr "Импортировать насторйки AIOWPS от "
3870
+
3871
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:555
3872
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:599
3873
+ msgid ""
3874
+ "The deletion of the import file failed. Please delete this file manually via "
3875
+ "the media menu for security purposes."
3876
+ msgstr ""
3877
+ "Не удалось удалить файл импорта. Пожалуйста, удалите этот файл вручную, с "
3878
+ "помощью меню\"Медияфайлы\", в целях безопасности."
3879
+
3880
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:557
3881
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:601
3882
+ msgid ""
3883
+ "The file you uploaded was also deleted for security purposes because it "
3884
+ "contains security settings details."
3885
+ msgstr ""
3886
+ "Файл, который вы загрузили, тоже был удален, в целях безопасности, т.к. в "
3887
+ "нем содержатся подробности настроек безопасности."
3888
+
3889
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:572
3890
+ msgid "Your AIOWPS settings were successfully imported via file input."
3891
+ msgstr "Ваши настройки AIOWPS успешно импортированы из файла."
3892
+
3893
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:573
3894
+ msgid ""
3895
+ "The deletion of the import file failed. Please delete this file manually via "
3896
+ "the media menu for security purposes because it contains security settings "
3897
+ "details."
3898
+ msgstr ""
3899
+ "Не удалось удалить файл импорта. Пожалуйста, удалите этот файл вручную, с "
3900
+ "помощью меню\"Медияфайлы\", в целях безопасности."
3901
+
3902
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:575
3903
+ msgid ""
3904
+ "Your AIOWPS settings were successfully imported. The file you uploaded was "
3905
+ "also deleted for security purposes because it contains security settings "
3906
+ "details."
3907
+ msgstr ""
3908
+ "Ваши настройки AIOWPS удачно импортированы. Кроме того, файл, который вы "
3909
+ "загрузили, тоже был удален, в целях безопасности, т.к. в нем содержатся "
3910
+ "подробности настроек безопасности."
3911
+
3912
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:578
3913
+ msgid "Your AIOWPS settings were successfully imported via text entry."
3914
+ msgstr "Ваши настройки AIOWPS успешно импортированы с помощью ввода текста."
3915
+
3916
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:593
3917
+ msgid ""
3918
+ "The contents of your settings file appear invalid. Please check the contents "
3919
+ "of the file you are trying to import settings from."
3920
+ msgstr ""
3921
+ "Похоже, что формат вашего файла с настройками неверный. Пожалуйста, "
3922
+ "проверьте содержание файла, который вы пытаетесь импортировать."
3923
+
3924
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:610
3925
+ msgid "Export or Import Your AIOWPS Settings"
3926
+ msgstr "Экспортировать или импортировать настройки AIOWPS"
3927
+
3928
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:613
3929
+ msgid ""
3930
+ "This section allows you to export or import your All In One WP Security & "
3931
+ "Firewall settings."
3932
+ msgstr ""
3933
+ "Данная секция позволяет вам экспортировать или импортироать все настройки "
3934
+ "All In One WP Security & Firewall."
3935
+
3936
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:614
3937
+ msgid ""
3938
+ "This can be handy if you wanted to save time by applying the settings from "
3939
+ "one site to another site."
3940
+ msgstr ""
3941
+ "Это может быть удобно, если вы хотите использовать одинаковые настройки на "
3942
+ "нескольких сайтах."
3943
+
3944
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:615
3945
+ msgid ""
3946
+ "NOTE: Before importing, it is your responsibility to know what settings you "
3947
+ "are trying to import. Importing settings blindly can cause you to be locked "
3948
+ "out of your site."
3949
+ msgstr ""
3950
+ "Внимание: До того, как импортировать, вы должны понимать, какие настройки вы "
3951
+ "пытаетесь импортировать. При слепом импорте настроек, есть риск, что вы "
3952
+ "потеряете доступ к вашему собственному сайту."
3953
+
3954
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:616
3955
+ msgid ""
3956
+ "For Example: If a settings item relies on the domain URL then it may not "
3957
+ "work correctly when imported into a site with a different domain."
3958
+ msgstr ""
3959
+ "Например, если какая-нибудь настройка зависит от домэна URL, тогда она может "
3960
+ "не работать правильно, когда она внедряется в другой домэн."
3961
+
3962
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:622
3963
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:631
3964
+ msgid "Export AIOWPS Settings"
3965
+ msgstr "Экспорт настроек AIOWPS"
3966
+
3967
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:628
3968
+ msgid ""
3969
+ "To export your All In One WP Security & Firewall settings click the button "
3970
+ "below."
3971
+ msgstr ""
3972
+ "Для того, чтобы экспортировать все ваши настройки плагина All In One WP "
3973
+ "Security & Firewall, нажмите на кнопку ниже."
3974
+
3975
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:635
3976
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:660
3977
+ msgid "Import AIOWPS Settings"
3978
+ msgstr "Импорт настроек AIOWPS"
3979
+
3980
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:641
3981
+ msgid ""
3982
+ "Use this section to import your All In One WP Security & Firewall settings "
3983
+ "from a file. Alternatively, copy/paste the contents of your import file into "
3984
+ "the textarea below."
3985
+ msgstr ""
3986
+ "Используйте данную секцию для того,чтобы импортировать все ваши настройки "
3987
+ "плагина All In One WP Security & Firewall из файла. Также можете скопировать "
3988
+ "содержание экспортированного файла и вставить его в текстовое поле ниже."
3989
+
3990
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:642
3991
+ msgid "Import File"
3992
+ msgstr "Импортировать файл"
3993
+
3994
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:648
3995
+ msgid ""
3996
+ "After selecting your file, click the button below to apply the settings to "
3997
+ "your site."
3998
+ msgstr ""
3999
+ "После того, как Вы выберите файл, нажмите кнопку внизу для импорта настроек "
4000
+ "на вас сайт."
4001
+
4002
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:654
4003
+ msgid "Copy/Paste Import Data"
4004
+ msgstr "Копировать и вставить данные для импорта"
4005
+
4006
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:24
4007
+ msgid "Comment SPAM"
4008
+ msgstr "Спам в комментариях"
4009
+
4010
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:25
4011
+ msgid "Comment SPAM IP Monitoring"
4012
+ msgstr "Отслеживание IP-адресов по спаму в комментах"
4013
+
4014
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:26
4015
+ msgid "BuddyPress"
4016
+ msgstr "BuddyPress"
4017
+
4018
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:113
4019
+ msgid "Comment SPAM Settings"
4020
+ msgstr "Настройки по СПАМ-комментариям"
4021
+
4022
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:118
4023
+ msgid "Add Captcha To Comments Form"
4024
+ msgstr "Добавить CAPTCHA в форму комментариев"
4025
+
4026
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:122
4027
+ msgid ""
4028
+ "This feature will add a simple math captcha field in the WordPress comments "
4029
+ "form."
4030
+ msgstr ""
4031
+ "Данная функция добавить поле с простым математичекой задачей в форму "
4032
+ "комментариев WordPress."
4033
+
4034
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:123
4035
+ msgid ""
4036
+ "Adding a captcha field in the comment form is a simple way of greatly "
4037
+ "reducing SPAM comments from bots without using .htaccess rules."
4038
+ msgstr ""
4039
+ "Добавление поля CAPTCHA в форму для комментариев - простой способ резко "
4040
+ "снизить количество спам от роботов в комментариах, без использования правил "
4041
+ "в файле .htaccess."
4042
+
4043
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:132
4044
+ msgid "Enable Captcha On Comment Forms"
4045
+ msgstr "Активировать CAPTCHA в формах для комментариев"
4046
+
4047
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:135
4048
+ msgid "Check this if you want to insert a captcha field on the comment forms"
4049
+ msgstr ""
4050
+ "Отметьте этот чекбокс, чтобы вставить поле CAPTCHA в форму для комментариев."
4051
+
4052
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:142
4053
+ msgid "Block Spambot Comments"
4054
+ msgstr "Блокировка комментариев от спам-роботов"
4055
+
4056
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:146
4057
+ msgid ""
4058
+ "A large portion of WordPress blog comment SPAM is mainly produced by "
4059
+ "automated bots and not necessarily by humans. "
4060
+ msgstr ""
4061
+ "Значительная часть спама в комментариах WordPress приходит от автоматических "
4062
+ "роботов, а не вручную."
4063
+
4064
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:147
4065
+ msgid ""
4066
+ "This feature will greatly minimize the useless and unecessary traffic and "
4067
+ "load on your server resulting from SPAM comments by blocking all comment "
4068
+ "requests which do not originate from your domain."
4069
+ msgstr ""
4070
+ "Данная функция сильно снижает бесполезного и лишнего трафика, а так же "
4071
+ "лишнюю нагрузку на сервер из-за спам-комментариев, заблокировав все запросы "
4072
+ "на запись комментария, которые не пришли с вашего же домена."
4073
+
4074
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:148
4075
+ msgid ""
4076
+ "In other words, if the comment was not submitted by a human who physically "
4077
+ "submitted the comment on your site, the request will be blocked."
4078
+ msgstr ""
4079
+ "Другими словами, если коммент не был отправлен живым человеком, который сам "
4080
+ "отправил комментарий на вашем сайте, тогда запрос блокируется."
4081
+
4082
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:164
4083
+ msgid "Block Spambots From Posting Comments"
4084
+ msgstr "Блокировать спам-роботов от комментирования"
4085
+
4086
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:167
4087
+ msgid ""
4088
+ "Check this if you want to apply a firewall rule which will block comments "
4089
+ "originating from spambots."
4090
+ msgstr ""
4091
+ "Отметьте этот чекбокс, чтобы активировать правила файерволла для блокировки "
4092
+ "комментарии от спам-роботов."
4093
+
4094
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:171
4095
  msgid ""
4096
+ "This feature will implement a firewall rule to block all comment attempts "
4097
+ "which do not originate from your domain."
4098
  msgstr ""
4099
+ "Данная функция создаст правило файрвола, который блокирует попытки записать "
4100
+ "комментарий, если запрос не пришел со страницы вашего домена."
 
4101
 
4102
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:172
4103
+ msgid ""
4104
+ "A legitimate comment is one which is submitted by a human who physically "
4105
+ "fills out the comment form and clicks the submit button. For such events, "
4106
+ "the HTTP_REFERRER is always set to your own domain."
4107
+ msgstr ""
4108
+ "Честный коммент всегда отправлен человеком, который заполняет форму "
4109
+ "комментирования и кликает на кнопку \"Отправить\". В таком случае, поле "
4110
+ "HTTP_REFERRER всегда имеет значение, которые ссылается на ваш домен."
4111
 
4112
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:173
4113
+ msgid ""
4114
+ "A comment submitted by a spambot is done by directly calling the comments."
4115
+ "php file, which usually means that the HTTP_REFERRER value is not your "
4116
+ "domain and often times empty."
4117
+ msgstr ""
4118
+ "Комментарий от спам-робота отправляется сразу запросом на файл comments.php, "
4119
+ "это обычно означает, что поле HTTP_REFERRER может быть пустым, или ссылается "
4120
+ "на чужой домен."
4121
 
4122
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:174
4123
  msgid ""
4124
+ "This feature will check and block comment requests which are not referred by "
4125
+ "your domain thus greatly reducing your overall blog SPAM and PHP requests "
4126
+ "done by the server to process these comments."
4127
+ msgstr ""
4128
+ "Данная функция проверяет и блокирует комменты, которые не пришли с вашего "
4129
+ "домена. Это сильно снижает общее количество СПАМА и запросов со страниц PHP "
4130
+ "внутри вашего сервера, для обработки спам-запросов."
4131
 
4132
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:201
4133
+ msgid "Nonce check failed for list SPAM comment IPs!"
4134
+ msgstr "Не удалось установить параметры для отображения списка IP-адресов!"
4135
 
4136
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:207
4137
  msgid ""
4138
+ "You entered a non numeric value for the minimum SPAM comments per IP field. "
4139
+ "It has been set to the default value."
4140
  msgstr ""
4141
+ "Вы ввели нечисловое значение для указания минимального количества спам-"
4142
+ "комментариев. Принято значение по умолчанию."
 
4143
 
4144
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:219
4145
+ #, php-format
4146
+ msgid ""
4147
+ "Displaying results for IP addresses which have posted a minimum of %s SPAM "
4148
+ "comments"
4149
+ msgstr ""
4150
+ "Список IP-адресов, с которых было отправлено минимум %s спам-комментариев"
4151
 
4152
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:235
4153
+ msgid ""
4154
+ "This tab displays a list of the IP addresses of the people or bots who have "
4155
+ "left SPAM comments on your site."
4156
+ msgstr ""
4157
+ "В этой вкладке отображается список IP-адресов тех пользователей или ботов, "
4158
+ "которые оставили спам-комментарии на Вашем сайте."
4159
 
4160
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:236
4161
  msgid ""
4162
+ "This information can be handy for identifying the most persistent IP "
4163
+ "addresses or ranges used by spammers."
4164
  msgstr ""
4165
+ "Эта информация может быть полезна для определения наиболее стабильно "
4166
+ "использующихся спаммерами IP-адресов или их диапазонов. "
4167
 
4168
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:237
4169
+ msgid ""
4170
+ "By inspecting the IP address data coming from spammers you will be in a "
4171
+ "better position to determine which addresses or address ranges you should "
4172
+ "block by adding them to your blacklist."
4173
+ msgstr ""
4174
+ "Анализ этой информации позволит Вам быстро определить, какие адреса или "
4175
+ "диапазоны следует заблокировать, добавив их в черный список."
4176
 
4177
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:238
4178
  msgid ""
4179
+ "To add one or more of the IP addresses displayed in the table below to your "
4180
+ "blacklist, simply click the \"Block\" link for the individual row or select "
4181
+ "more than one address \n"
4182
+ " using the checkboxes and then choose the \"block"
4183
+ "\" option from the Bulk Actions dropdown list and click the \"Apply\" button."
4184
  msgstr ""
4185
+ "Для добавления одного или сразу нескольких адресов в черный список, кликните "
4186
+ "по ссылке «Block» в строке с выбранным адресом, или выберите несколько "
4187
+ "адресов, используя чекбоксы и установите вариант «Block» в выпадающем списке "
4188
+ "«Действия», после чего нажмите кнопку «Применить»."
4189
 
4190
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:244
4191
+ msgid "List SPAMMER IP Addresses"
4192
+ msgstr "Список IP-адресов спаммеров"
4193
 
4194
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:250
4195
+ msgid "Minimum number of SPAM comments per IP"
4196
+ msgstr "Минимальное количество спам-комментариев на каждый IP"
4197
+
4198
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:252
4199
  msgid ""
4200
+ "This field allows you to list only those IP addresses which have been used "
4201
+ "to post X or more SPAM comments."
 
4202
  msgstr ""
4203
+ "Это поле позволяет фиксировать только те IP-адреса, с которых было загружено "
4204
+ "Х или более спам-комментариев."
 
4205
 
4206
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:256
4207
  msgid ""
4208
+ "Example 1: Setting this value to \"0\" or \"1\" will list ALL IP addresses "
4209
+ "which were used to submit SPAM comments."
4210
  msgstr ""
4211
+ "Пример 1: Установка этого значения в «0» или «1» выведет список всех IP-"
4212
+ "адресов, уличенных в спаме хотя бы 1 раз."
4213
 
4214
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:257
4215
  msgid ""
4216
+ "Example 2: Setting this value to \"5\" will list only those IP addresses "
4217
+ "which were used to submit 5 SPAM comments or more on your site."
4218
+ msgstr ""
4219
+ "Пример 2: Установка значения в «5» выведет список IP-адресов, которые "
4220
+ "разместили на Вашем сайте 5 и более спам-комментариев."
 
 
4221
 
4222
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:264
4223
+ msgid "Find IP Addresses"
4224
+ msgstr "Найти IP-адреса"
 
 
4225
 
4226
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:268
4227
+ msgid "SPAMMER IP Address Results"
4228
+ msgstr "IP-адреса спаммеров"
4229
 
4230
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:274
4231
+ #: all-in-one-wp-security/classes/wp-security-utility.php:150
4232
+ msgid ""
4233
+ "The plugin has detected that you are using a Multi-Site WordPress "
4234
+ "installation."
4235
+ msgstr "Плагин заметил, что у вас WordPress инсталлирован как мульти-сайт."
4236
 
4237
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:275
4238
+ msgid "Only the \"superadmin\" can block IP addresses from the main site."
4239
+ msgstr "Только \"superadmin\" может блокировать адреса IP с главного сайта."
4240
 
4241
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:276
4242
  msgid ""
4243
+ "Take note of the IP addresses you want blocked and ask the superadmin to add "
4244
+ "these to the blacklist using the \"Blacklist Manager\" on the main site."
4245
  msgstr ""
4246
+ "\"Запишите адреса-IP, которые хотите заблокировать и попросите суперадмина "
4247
+ "добавить их в черный список с помощью \"Управление черным списком\" на "
4248
+ "главном сайте."
4249
 
4250
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:321
4251
+ msgid "BuddyPress SPAM Settings"
4252
+ msgstr "Настройки по спаму в BuddyPress"
4253
 
4254
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:326
4255
+ msgid "Add Captcha To BuddyPress Registration Form"
4256
+ msgstr "Добавить CAPTCHA в форме регистрации BuddyPress"
4257
 
4258
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:330
4259
+ msgid ""
4260
+ "This feature will add a simple math captcha field in the BuddyPress "
4261
+ "registration form."
4262
+ msgstr ""
4263
+ "Данная функция добавит CAPTCHA с простой математической задачей в форму "
4264
+ "регистрации BuddyPress."
4265
 
4266
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:331
4267
  msgid ""
4268
+ "Adding a captcha field in the registration form is a simple way of greatly "
4269
+ "reducing SPAM signups from bots without using .htaccess rules."
 
4270
  msgstr ""
4271
+ "Добавление поле CAPTCHA в регистрационной форме - простой способ сильно "
4272
+ "снизить количество спам-регистраций от роботов, без изменения правил в "
4273
+ "файле .htaccess."
4274
+
4275
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:341
4276
+ msgid "Enable Captcha On BuddyPress Registration Form"
4277
+ msgstr "Включить CAPTCHA в форме регистрации BuddyPress"
4278
 
4279
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:344
4280
  msgid ""
4281
+ "Check this if you want to insert a captcha field on the BuddyPress "
4282
+ "registration forms"
 
4283
  msgstr ""
4284
+ "Отметьте этот чекбокс, чтобы добавить поле CAPTCHA в форму регистрации "
4285
+ "BuddyPress."
 
4286
 
4287
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:353
4288
  msgid ""
4289
+ "BuddyPress is not active! In order to use this feature you will need to have "
4290
+ "BuddyPress installed and activated."
4291
  msgstr ""
4292
+ "Плагин BuddyPress не активен! Для того, чтобы использовать данную функцию, "
4293
+ "BuddyPress должен быть инсталлирован и активирован."
4294
 
4295
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:29
4296
+ msgid "WP Username"
4297
+ msgstr "Пользовательское имя WP"
4298
 
4299
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:30
4300
+ msgid "Display Name"
4301
+ msgstr "Отображаемое имя"
4302
 
4303
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:31
4304
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:862
4305
+ msgid "Password"
4306
+ msgstr "Пароль"
 
4307
 
4308
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:85
4309
  msgid "Admin User Security"
4310
  msgstr "Безопасность аккаунта Администратора"
4311
 
4312
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:88
4313
  msgid ""
4314
  "By default, WordPress sets the administrator username to \"admin\" at "
4315
  "installation time."
4317
  "При установке WordPress автоматически присваивает администратору имя "
4318
  "пользователя «admin» (если Вы вручную не измените его)."
4319
 
4320
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:89
4321
  msgid ""
4322
  "A lot of hackers try to take advantage of this information by attempting "
4323
  "\"Brute Force Login Attacks\" where they repeatedly try to guess the "
4327
  "нападения «Брутфорс-атаку», когда они систематично подбирают пароль, "
4328
  "используя слово «admin» в качестве имени пользователя."
4329
 
4330
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:90
4331
  msgid ""
4332
  "From a security perspective, changing the default \"admin\" user name is one "
4333
  "of the first and smartest things you should do on your site."
4336
  "которую Вы должны сделать на своем сайте, это изменить имя пользователя по "
4337
  "умолчанию, т.е. «admin»."
4338
 
4339
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:91
4340
  msgid ""
4341
  "This feature will allow you to change your default \"admin\" user name to a "
4342
  "more secure name of your choosing."
4344
  "Этот раздел как раз и предназначен для изменения имени пользователя «admin» "
4345
  "на более безопасное, по Вашему выбору."
4346
 
4347
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:98
4348
  msgid "List of Administrator Accounts"
4349
  msgstr "Список Администраторов"
4350
 
4351
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:107
4352
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:36
4353
  msgid "Change Admin Username"
4354
  msgstr "Изменение имени пользователя Админстратора"
4355
 
4356
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:115
4357
  msgid ""
4358
  "Your site currently has an account which uses the default \"admin\" "
4359
  "username. \n"
4366
  "Крайне рекомендуется изменить его на какое-нибудь другое.\n"
4367
  "Для этого воспользуйтесь следующим полем."
4368
 
4369
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:123
4370
  msgid "New Admin Username"
4371
  msgstr "Новое имя пользователя для администратора"
4372
 
4373
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:125
4374
  msgid "Choose a new username for admin."
4375
  msgstr "Выберите новое имя пользователя для администратора."
4376
 
4377
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:129
4378
  msgid "Change Username"
4379
  msgstr "Изменить имя пользователя"
4380
 
4381
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:131
4382
  msgid ""
4383
  "NOTE: If you are currently logged in as \"admin\" you will be automatically "
4384
  "logged out after changing your username and will be required to log back in."
4387
  "сессия будет автоматически прекращена, после того, как Вы измените имя "
4388
  "пользователя - надо будет снова авторизоваться, используя уже новый логин."
4389
 
4390
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:138
4391
  msgid "No action required! "
4392
  msgstr "Действие не требуется!"
4393
 
4394
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:140
4395
  msgid ""
4396
  "Your site does not have any account which uses the default \"admin\" "
4397
  "username. "
4399
  "На Вашем сайте нет аккаунтов, использующих в качестве имени пользователя имя "
4400
  "пользователя по умолчанию, т.е. «admin» - "
4401
 
4402
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:141
4403
  msgid "This is good security practice."
4404
  msgstr "и это очень хорошо."
4405
 
4406
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:153
4407
  msgid "Display Name Security"
4408
  msgstr "Защита отображаемого имени"
4409
 
4410
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:156
4411
  msgid ""
4412
  "When you submit a post or answer a comment, WordPress will usually display "
4413
  "your \"nickname\"."
4415
  "Когда Вы публикуете пост или отвечаете на комментарий, WordPress обычно "
4416
  "отображает Ваш «никнейм»."
4417
 
4418
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:157
4419
  msgid ""
4420
  "By default the nickname is set to the login (or user) name of your account."
4421
  msgstr "По умолчанию отображаемое имя пользователя идентично логину аккаунта."
4422
 
4423
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:158
4424
  msgid ""
4425
  "From a security perspective, leaving your nickname the same as your user "
4426
  "name is bad practice because it gives a hacker at least half of your "
4430
  "половину облегчает хакеру работу - фактически, Вы сами сообщаете ему логин "
4431
  "своего аккаунта."
4432
 
4433
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:159
4434
  msgid ""
4435
  "Therefore to further tighten your site's security you are advised to change "
4436
  "your <strong>nickname</strong> and <strong>Display name</strong> to be "
4440
  "свой <strong>никнейм</strong> и <strong>отображаемое имя</strong>, чтобы они "
4441
  "отличались от Вашего <strong>имени пользователя</strong>."
4442
 
4443
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:165
4444
  msgid "Modify Accounts With Identical Login Name & Display Name"
4445
  msgstr ""
4446
  "Редактирование аккаунтов с совпадающими именем пользователя и отображаемым "
4447
  "именем."
4448
 
4449
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:174
4450
  msgid ""
4451
  "Your site currently has the following accounts which have an identical login "
4452
  "name and display name."
4454
  "Следующие аккаунты на Вашем сайте имеют имя пользователя, совпадающее с "
4455
  "отображаемым именем."
4456
 
4457
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:175
4458
  msgid "Click on the link to edit the settings of that particular user account"
4459
  msgstr "Перейдите по ссылке, чтобы внести изменения в соответствующий аккаунт"
4460
 
4461
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:190
4462
  msgid "No action required."
4463
  msgstr "Действие не требуется."
4464
 
4465
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:191
4466
  msgid ""
4467
  "Your site does not have a user account where the display name is identical "
4468
  "to the username."
4470
  "На Вашем сайте нет аккаунтов, в которых имя пользователя совпадает с "
4471
  "отображаемым именем."
4472
 
4473
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:202
4474
  msgid "Password Tool"
4475
  msgstr "Проверка пароля"
4476
 
4477
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:205
4478
  msgid ""
4479
  "Poor password selection is one of the most common weak points of many sites "
4480
  "and is usually the first thing a hacker will try to exploit when attempting "
4484
  "сайтов, и, как правило, первое, что будет делать хакер, чтобы проникнуть на "
4485
  "сайт - попытается подобрать пароль."
4486
 
4487
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:206
4488
  msgid ""
4489
  "Many people fall into the trap of using a simple word or series of numbers "
4490
  "as their password. Such a predictable and simple password would take a "
4497
  "программы с большими базами наиболее распространенных сочетаний букв, слов и "
4498
  "цифр."
4499
 
4500
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:207
4501
  msgid ""
4502
  "The longer and more complex your password is the harder it is for hackers to "
4503
  "\"crack\" because more complex passwords require much greater computing "
4506
  "Чем длиннее и сложнее пароль, тем тяжелее будет хакеру его подобрать, потому "
4507
  "что это требует гораздо больше вычислительных мощностей и времени."
4508
 
4509
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:208
4510
  msgid ""
4511
  "This section contains a useful password strength tool which you can use to "
4512
  "check whether your password is sufficiently strong enough."
4513
  msgstr "Здесь Вы можете проверить свой пароль на надежность."
4514
 
4515
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:213
4516
  msgid "Password Strength Tool"
4517
  msgstr "Проверка надежности пароля"
4518
 
4519
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:218
4520
  msgid "Start typing a password."
4521
  msgstr "Введите пароль."
4522
 
4523
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:221
4524
+ msgid "It would take a desktop PC approximately"
4525
+ msgstr "Домашний компьютер смог бы примерно за"
4526
+
4527
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:222
4528
+ msgid "1 sec"
4529
+ msgstr "одну секунду"
4530
+
4531
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:222
4532
+ msgid "to crack your password!"
4533
+ msgstr "сломать ваш пароль!"
4534
+
4535
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:227
4536
+ msgid "Password Strength"
4537
+ msgstr "Надежности пароля"
4538
+
4539
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:243
4540
  msgid "Nonce check failed on admin username change operation!"
4541
  msgstr "Не удалось изменить имя пользователя!"
4542
 
4543
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:250
4544
  msgid "Username "
4545
  msgstr "Такое имя пользователя"
4546
 
4547
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:250
4548
  msgid " already exists. Please enter another value. "
4549
  msgstr "уже существует. Пожалуйста, введите другое значение."
4550
 
4551
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:266
4552
  msgid "The database update operation of the user account failed!"
4553
  msgstr "Обновление учетной записи не удалось!"
4554
 
4555
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:293
4556
  msgid "You entered an invalid username. Please enter another value. "
4557
  msgstr ""
4558
  "Вы ввели неверное имя пользователя. Пожалуйста, введите другое значение."
4559
 
4560
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:297
4561
  msgid "Please enter a value for your username. "
4562
  msgstr "Пожалуйста, введите имя пользователя."
4563
 
4564
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:304
4565
  msgid "Username Successfully Changed!"
4566
  msgstr "Имя пользователя изменено!"
4567
 
4568
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:324
4569
  msgid "Account Login Name"
4570
  msgstr "Имя пользователя"
4571
 
4572
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:26
4573
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:298
4574
+ msgid "Failed Login Records"
4575
+ msgstr "Ошибочные попытки авторизации"
4576
+
4577
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:27
4578
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:51
4579
+ msgid "Force Logout"
4580
+ msgstr "Автоматическое разлогинивание пользователей"
4581
+
4582
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:28
4583
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:432
4584
+ msgid "Account Activity Logs"
4585
+ msgstr "Журнал активности аккаунта"
4586
+
4587
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:96
4588
  msgid ""
4589
  "You entered a non numeric value for the max login attempts field. It has "
4590
  "been set to the default value."
4592
  "Вы ввели нечисловое значение для максимального количества попыток "
4593
  "авторизации. Установлено значение по умолчанию."
4594
 
4595
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:103
4596
  msgid ""
4597
  "You entered a non numeric value for the login retry time period field. It "
4598
  "has been set to the default value."
4600
  "Вы ввели нечисловое значение для ограничения времени попыток авторизации. "
4601
  "Установлено значение по умолчанию."
4602
 
4603
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:159
 
 
 
 
 
 
 
 
4604
  msgid "Login Lockdown Configuration"
4605
  msgstr "Настройки опций блокировки процесса авторизации"
4606
 
4607
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:163
4608
  msgid "One of the ways hackers try to compromise sites is via a "
4609
  msgstr ""
4610
  "Один из распространенных способов, используемых хакерами для проникновения "
4611
  "на сайт, является "
4612
 
4613
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:163
4614
  msgid "Brute Force Login Attack"
4615
  msgstr "Брутфорс-атака"
4616
 
4617
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:164
4618
  msgid ""
4619
  "This is where attackers use repeated login attempts until they guess the "
4620
  "password."
4621
  msgstr "Так называются многократные попытки входа методом подбора паролей."
4622
 
4623
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:165
4624
  msgid ""
4625
  "Apart from choosing strong passwords, monitoring and blocking IP addresses "
4626
  "which are involved in repeated login failures in a short period of time is a "
4632
  "времени для таких попыток, является очень эффективным способом "
4633
  "противодействия этим типам атак."
4634
 
4635
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:166
4636
  #, php-format
4637
  msgid ""
4638
  "You may also want to checkout our %s feature for another secure way to "
4641
  "Вы также можете ознакомиться с другими %s опциями безопасности для защиты от "
4642
  "такого типа атак."
4643
 
4644
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:171
4645
  msgid "Login Lockdown Options"
4646
  msgstr "Опции блокировки авторизации"
4647
 
4648
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:183
4649
  msgid "Enable Login Lockdown Feature"
4650
  msgstr "Включить опции блокировки попыток авторизации"
4651
 
4652
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:186
4653
  msgid ""
4654
  "Check this if you want to enable the login lockdown feature and apply the "
4655
  "settings below"
4657
  "Отметьте эту опцию, если Вы хотите включить функции контроля за процессом "
4658
  "авторизации, установите необходимые параметры и сохраните настройки"
4659
 
4660
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:190
4661
+ msgid "Allow Unlock Requests"
4662
+ msgstr "Допускать запросы на разблокирование"
4663
+
4664
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:193
4665
+ msgid ""
4666
+ "Check this if you want to allow users to generate an automated unlock "
4667
+ "request link which will unlock their account"
4668
+ msgstr ""
4669
+ "Поставьте галочку, если хотите позволить пользователям сами создавать "
4670
+ "автоматические запросы на разблокирование своего аккаунта"
4671
+
4672
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:197
4673
  msgid "Max Login Attempts"
4674
  msgstr "Максимальное количество попыток входа"
4675
 
4676
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:199
4677
  msgid ""
4678
  "Set the value for the maximum login retries before IP address is locked out"
4679
  msgstr ""
4680
  "Установите значение для максимального количества попыток входа, после чего "
4681
  "IP-адрес будет заблокирован"
4682
 
4683
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:203
4684
  msgid "Login Retry Time Period (min)"
4685
  msgstr "Ограничение времени попыток авторизации (минуты)"
4686
 
4687
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:205
4688
  msgid ""
4689
  "If the maximum number of failed login attempts for a particular IP address "
4690
  "occur within this time period the plugin will lock out that address"
4693
  "адреса IP произойдет в течение этого периода времени, плагин заблокирует "
4694
  "этот адрес"
4695
 
4696
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:209
4697
  msgid "Time Length of Lockout (min)"
4698
  msgstr "Период блокирования (минуты)"
4699
 
4700
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:211
4701
  msgid ""
4702
  "Set the length of time for which a particular IP address will be prevented "
4703
  "from logging in"
4704
  msgstr "Укажите период времени, на который будут блокироваться IP-адреса"
4705
 
4706
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:215
4707
  msgid "Display Generic Error Message"
4708
  msgstr "Выводить сообщения об ошибках авторизации"
4709
 
4710
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:218
4711
  msgid ""
4712
  "Check this if you want to show a generic error message when a login attempt "
4713
  "fails"
4715
  "Отметьте эту опцию, если Вы хотите, чтобы при неудачных попытках авторизации "
4716
  "отображалось сообщение об ошибке"
4717
 
4718
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:222
4719
+ msgid "Instantly Lockout Invalid Usernames"
4720
+ msgstr "Сразу заблокировать неверные пользовательские имена"
4721
+
4722
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:225
4723
+ msgid ""
4724
+ "Check this if you want to instantly lockout login attempts with usernames "
4725
+ "which do not exist on your system"
4726
+ msgstr ""
4727
+ "Поставьте галочку, если хотите сразу заблокировать попытки логина с "
4728
+ "пользовательским именем, которого нет в вашей системе"
4729
+
4730
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:230
4731
  msgid "Notify By Email"
4732
  msgstr "Уведомлять по Email"
4733
 
4734
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:233
4735
  msgid ""
4736
  "Check this if you want to receive an email when someone has been locked out "
4737
  "due to maximum failed login attempts"
4739
  "Отметьте эту опцию, если Вы хотите получать отчет о неудачных попытках "
4740
  "авторизации на свой почтовый ящик"
4741
 
4742
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:243
4743
  msgid "Currently Locked Out IP Address Ranges"
4744
  msgstr "Диапазон временно заблокированных IP-адресов"
4745
 
4746
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:248
4747
+ #, php-format
4748
+ msgid ""
4749
+ "To see a list of all locked IP addresses and ranges go to the %s tab in the "
4750
+ "dashboard menu."
4751
+ msgstr ""
4752
+ "Вы можете посмотреть список всех заблокированных IP-адресов и блоков в "
4753
+ "разделе %s в меню управления."
4754
+
4755
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:264
4756
  msgid "Nonce check failed for delete all failed login records operation!"
4757
  msgstr "Записи об ошибочных попытках авторизации удалить не удалось!"
4758
 
4759
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:273
4760
  msgid "User Login Feature - Delete all failed login records operation failed!"
4761
  msgstr "Записи об ошибочных попытках авторизации удалить не удалось!"
4762
 
4763
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:277
4764
  msgid "All records from the Failed Logins table were deleted successfully!"
4765
  msgstr "Все записи об ошибочных попытках авторизации удалены!"
4766
 
4767
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:292
4768
  msgid "This tab displays the failed login attempts for your site."
4769
  msgstr "Здесь отображаются записи о безуспешных попытках входа на Ваш сайт."
4770
 
4771
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:293
4772
  msgid ""
4773
  "The information below can be handy if you need to do security investigations "
4774
  "because it will show you the IP range, username and ID (if applicable) and "
4779
  "пользователя и ID (если возможно) и время / дата неуспешной попытки входа на "
4780
  "сайт."
4781
 
4782
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:314
4783
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:323
 
 
 
 
4784
  msgid "Delete All Failed Login Records"
4785
  msgstr "Удалить записи"
4786
 
4787
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:320
4788
  msgid ""
4789
  "Click this button if you wish to delete all failed login records in one go."
4790
  msgstr ""
4791
  "Нажмите эту кнопку, если Вы хотите удалить все записи об ошибочных попытках "
4792
  "авторизации."
4793
 
4794
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:348
4795
  msgid ""
4796
  "You entered a non numeric value for the logout time period field. It has "
4797
  "been set to the default value."
4799
  "Вы ввели нечисловое значение периода времени. Установка сброшена к значению "
4800
  "по умолчанию."
4801
 
4802
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:376
4803
  msgid ""
4804
  "Setting an expiry period for your WP administration session is a simple way "
4805
  "to protect against unauthorized access to your site from your computer."
4808
  "способ защиты от несанкционированного доступа к вашему сайту с вашего "
4809
  "компьютера."
4810
 
4811
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:377
4812
+ msgid ""
4813
+ "This feature allows you to specify a time period in minutes after which the "
4814
+ "admin session will expire and the user will be forced to log back in."
4815
+ msgstr ""
4816
+ "Эта опция позволяет установить временной период, после истечения которого "
4817
+ "сессия администратора истекает и пользователю надо будет авторизоваться "
4818
+ "заново."
4819
+
4820
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:382
4821
+ msgid "Force User Logout Options"
4822
+ msgstr "Опции автоматического разлогинивания пользователей"
4823
+
4824
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:394
4825
+ msgid "Enable Force WP User Logout"
4826
+ msgstr "Включить авторазлогинивание"
4827
+
4828
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:397
4829
+ msgid ""
4830
+ "Check this if you want to force a wp user to be logged out after a "
4831
+ "configured amount of time"
4832
+ msgstr ""
4833
+ "Отметьте эту опцию, чтобы автоматически прекращать авторизационную сессию "
4834
+ "пользователей по истечении определенного периода времени"
4835
+
4836
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:401
4837
+ msgid "Logout the WP User After XX Minutes"
4838
+ msgstr "Разлогинить пользователя через"
4839
+
4840
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:403
4841
+ msgid ""
4842
+ "(Minutes) The user will be forced to log back in after this time period has "
4843
+ "elapased."
4844
+ msgstr ""
4845
+ "(Минуты) Пользователь автоматически будет разлогинен по истечении этого "
4846
+ "периода времени."
4847
+
4848
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:426
4849
+ msgid ""
4850
+ "This tab displays the login activity for WordPress admin accounts registered "
4851
+ "with your site."
4852
+ msgstr "Здесь отображается активность администраторов на Вашем сайте."
4853
+
4854
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:427
4855
+ msgid ""
4856
+ "The information below can be handy if you need to do security investigations "
4857
+ "because it will show you the last 50 recent login events by username, IP "
4858
+ "address and time/date."
4859
+ msgstr ""
4860
+ "Приведенная ниже информация может пригодиться, если Вы будете проводить "
4861
+ "исследование пользовательской активности, так как здесь будут показаны "
4862
+ "последние 50 событий авторизации с данными имени пользователя, IP-адресом и "
4863
+ "временем входа."
4864
+
4865
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:464
4866
+ msgid "Nonce check failed for users logged in list!"
4867
+ msgstr ""
4868
+ "Одноразовый параметр (nonce) для списка пользователей в системе не совпал!"
4869
+
4870
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:477
4871
+ msgid "Refresh Logged In User Data"
4872
+ msgstr "Обновить данные об активных пользователях"
4873
+
4874
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:481
4875
+ msgid "Refresh Data"
4876
+ msgstr "Обновить данные"
4877
+
4878
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:487
4879
+ msgid "This tab displays all users who are currently logged into your site."
4880
+ msgstr ""
4881
+ "Здесь отображаются все пользователи, которые в настоящий момент авторизованы "
4882
+ "на вашем сайте."
4883
+
4884
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:488
4885
+ msgid ""
4886
+ "If you suspect there is a user or users who are logged in which should not "
4887
+ "be, you can block them by inspecting the IP addresses from the data below "
4888
+ "and adding them to your blacklist."
4889
+ msgstr ""
4890
+ "Если вы подозреваете, что в системе есть активный пользователь, которого не "
4891
+ "должно быть, тогда вы можете их заблокировать, проверив их адрес IP в списке "
4892
+ "внизу, и добавив их в черный список."
4893
+
4894
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:493
4895
+ msgid "Currently Logged In Users"
4896
+ msgstr "В настоящее время авторизованные пользователи"
4897
+
4898
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:558
4899
+ msgid "The selected records were deleted successfully!"
4900
+ msgstr "Выбранные записи успешно удалены!"
4901
+
4902
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:567
4903
+ msgid "The selected record was deleted successfully!"
4904
+ msgstr "Выбранная запись успешно удалена!"
4905
+
4906
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:23
4907
+ msgid "Manual Approval"
4908
+ msgstr "Подтверждение вручную"
4909
+
4910
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:24
4911
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:57
4912
+ msgid "Registration Captcha"
4913
+ msgstr "CAPTCHA при регистрации"
4914
+
4915
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:112
4916
+ msgid "User Registration Settings"
4917
+ msgstr "Настройки для регистрации пользователя"
4918
+
4919
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:116
4920
+ msgid "Manually Approve New Registrations"
4921
+ msgstr "Подтверждать новые регистрации вручную"
4922
+
4923
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:120
4924
+ msgid ""
4925
+ "If your site allows people to create their own accounts via the WordPress "
4926
+ "registration form, then you can minimize SPAM or bogus registrations by "
4927
+ "manually approving each registration."
4928
+ msgstr ""
4929
+ "Если ваш сайт позволяет людям самим создавать свои аккаунты через "
4930
+ "регистрационную форму WordPress, тогда можете свести СПАМ и левых "
4931
+ "регистраций до минимума, подтверждая каждую регистрацию вручную."
4932
+
4933
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:121
4934
+ msgid ""
4935
+ "This feature will automatically set a newly registered account to \"pending"
4936
+ "\" until the administrator activates it. Therefore undesirable registrants "
4937
+ "will be unable to log in without your express approval."
4938
+ msgstr ""
4939
+ "Данная функция автоматически метит аккаунты новых регистраций как \"pending/"
4940
+ "в ожидании\" пока администратор их не активирует. Тогда нежеланные "
4941
+ "регистрировавшиеся не могут логиниться, до того, как вы это подтверждаете."
4942
+
4943
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:122
4944
  msgid ""
4945
+ "You can view all accounts which have been newly registered via the handy "
4946
+ "table below and you can also perform bulk activation/deactivation/deletion "
4947
+ "tasks on each account."
4948
  msgstr ""
4949
+ "Все недавно зарегистрированные аккаунты можете увидеть в удобной таблице "
4950
+ "внизу, а там также можно одновременно выполнить активацию, деактивацию или "
4951
+ "удалиение нескольких аккаунтов."
4952
 
4953
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:138
4954
+ msgid "Enable manual approval of new registrations"
4955
+ msgstr "Активировать ручное одобрение новых регистраций"
4956
 
4957
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:141
4958
+ msgid ""
4959
+ "Check this if you want to automatically disable all newly registered "
4960
+ "accounts so that you can approve them manually."
4961
+ msgstr ""
4962
+ "Поставьте галочку тут, если хотите, чтобы все новые аккаунты автоматически "
4963
+ "создавались неактивными и вы их могли подтверждать вручную."
4964
+
4965
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:150
4966
+ msgid "Approve Registered Users"
4967
+ msgstr "Подтверждение регистрированных пользователей"
4968
 
4969
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:195
4970
  msgid ""
4971
+ "This feature allows you to add a captcha form on the WordPress registration "
4972
+ "page."
4973
  msgstr ""
4974
+ "Данная функция позволяет вам добавить поле CAPTCHA на странице регистрации "
4975
+ "WordPress."
4976
 
4977
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:196
4978
+ msgid ""
4979
+ "Users who attempt to register will also need to enter the answer to a simple "
4980
+ "mathematical question - if they enter the wrong answer, the plugin will not "
4981
+ "allow them to register."
4982
+ msgstr ""
4983
+ "Кроме того, пользователи, которые пытаются зарегистрироваться, должны "
4984
+ "ответить на простой математический вопрос. Если ответ неверный, плагин ие "
4985
+ "даст им зарегистрироваться."
4986
 
4987
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:197
4988
  msgid ""
4989
+ "Therefore, adding a captcha form on the registration page is another "
4990
+ "effective yet simple SPAM registration prevention technique."
4991
  msgstr ""
4992
+ "Поэтому, добавление формы CAPTCHA на странице регистрации - еще один "
4993
+ "эффективный способ защиты от СПАМ-регистраций."
4994
 
4995
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:202
4996
+ msgid "Registration Page Captcha Settings"
4997
+ msgstr "Настройки CAPTCHA на странице регистрации"
4998
+
4999
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:209
5000
  msgid ""
5001
+ "The core default behaviour for WordPress Multi Site regarding user "
5002
+ "registration is that all users are registered via the main site."
5003
+ msgstr ""
5004
+ "По умолчанию, WordPress Multi Site требует, чтобы все регистрации "
5005
+ "проводились на главном сайте."
5006
 
5007
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:210
5008
  msgid ""
5009
+ "Therefore, if you would like to add a captcha form to the registration page "
5010
+ "for a Multi Site, please go to \"Registration Captcha\" settings on the main "
5011
+ "site."
5012
  msgstr ""
5013
+ "Поэтому, если вы хотите добавить форму CAPTCHA на странице регистрации для "
5014
+ "WordPress Multi Site, пойдите на \"CAPTCHA при регистрации\" на основном "
5015
+ "сайте. "
 
5016
 
5017
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:225
5018
+ msgid "Enable Captcha On Registration Page"
5019
+ msgstr "Активировать CAPTCHA на странице регистрации"
5020
 
5021
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:228
5022
+ msgid ""
5023
+ "Check this if you want to insert a captcha form on the WordPress user "
5024
+ "registration page (if you allow user registration)."
5025
+ msgstr ""
5026
+ "Поставьте галочку, если хотите добавить форму CAPTCHA на странице WordPress "
5027
+ "для регистрации (если вы позволяете людям регистрироваться на вашем сайте)."
5028
 
5029
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:22
5030
+ msgid "WhoIS Lookup"
5031
+ msgstr "WHOIS-поиск"
5032
 
5033
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:74
5034
  msgid "WHOIS Lookup Information"
5035
  msgstr "Результаты WHOIS-поиска"
5036
 
5037
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:77
5038
  msgid ""
5039
  "This feature allows you to look up more detailed information about an IP "
5040
  "address or domain name by querying the WHOIS API."
5041
  msgstr ""
5042
  "Эта функция позволяет получить детальную информацию об IP-адресе или домену."
5043
 
5044
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:83
5045
  msgid "Perform a WHOIS Lookup for an IP or Domain Name"
5046
  msgstr "Выполнить WHOIS-поиск по IP или домену"
5047
 
5048
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:89
5049
  msgid "Enter IP Address or Domain Name"
5050
  msgstr "Введите IP-адрес или доменное имя"
5051
 
5052
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:91
5053
  msgid ""
5054
  "Enter an IP address or domain name. Example: 111.11.12.13 OR some-domain-"
5055
  "name.com"
5057
  "Введите IP-адрес или доменное имя. Пример: 111.11.12.13 или some-domain-name."
5058
  "com"
5059
 
5060
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:95
5061
  msgid "Perform IP or Domain Lookup"
5062
  msgstr "Выполнить поиск по IP или домену"
5063
 
5064
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:115
5065
  msgid "WHOIS lookup successfully completed. Please see the results below:"
5066
  msgstr "WHOIS-поиск закончен. Результаты Вы можете видеть ниже:"
5067
 
5068
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:127
5069
  msgid ""
5070
  "You have entered an incorrectly formatted IP address or domain name. Please "
5071
  "try again."
5073
  "Вы ввели некорректный IP-адрес или доменное имя. Пожалуйста, попробуйте еще "
5074
  "раз."
5075
 
5076
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:178
5077
  msgid "No items found."
5078
  msgstr "Ничего не найдено."
5079
 
5080
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:281
5081
  msgid "Bulk Actions"
5082
  msgstr "Комплексные действия"
5083
 
5084
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:291
5085
  msgid "Apply"
5086
  msgstr "Применить"
5087
 
5088
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:365
5089
  msgid "Show all dates"
5090
  msgstr "Отобразить все даты"
5091
 
5092
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:378
5093
  #, php-format
5094
  msgid "%1$s %2$d"
5095
  msgstr "%1$s %2$d"
5096
 
5097
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:394
5098
  msgid "List View"
5099
  msgstr "Список"
5100
 
5101
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:395
5102
  msgid "Excerpt View"
5103
  msgstr "Краткий обзор"
5104
 
5105
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:421
5106
  #, php-format
5107
  msgid "%s pending"
5108
  msgstr "%s в ожидании"
5109
 
5110
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:653
5111
  msgid "Select All"
5112
  msgstr "Выбрать все"
5113
 
5114
+ #: all-in-one-wp-security/classes/wp-security-backup.php:188
5115
  msgid "All In One WP Security - Site Database Backup"
5116
+ msgstr "All In One WP Security - Резервное копирование базы данных"
5117
 
5118
+ #: all-in-one-wp-security/classes/wp-security-backup.php:190
5119
  msgid "Attached is your latest DB backup file for site URL"
5120
  msgstr "Прикреплена последняя резервная копия базы данных Вашего сайта"
5121
 
5122
+ #: all-in-one-wp-security/classes/wp-security-backup.php:190
5123
  msgid " generated on"
5124
  msgstr "создано по"
5125
 
5126
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:17
5127
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:254
5128
+ msgid "Please enter an answer in digits:"
5129
+ msgstr "Пожалуйста, введите ответ цыфрами:"
5130
+
5131
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:96
5132
+ msgid "one"
5133
+ msgstr "один"
5134
+
5135
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:97
5136
+ msgid "two"
5137
+ msgstr "два"
5138
+
5139
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:98
5140
+ msgid "three"
5141
+ msgstr "три"
5142
+
5143
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:99
5144
+ msgid "four"
5145
+ msgstr "четыре"
5146
+
5147
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:100
5148
+ msgid "five"
5149
+ msgstr "пять"
5150
+
5151
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:101
5152
+ msgid "six"
5153
+ msgstr "шесть"
5154
+
5155
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:102
5156
+ msgid "seven"
5157
+ msgstr "семь"
5158
+
5159
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:103
5160
+ msgid "eight"
5161
+ msgstr "восемь"
5162
+
5163
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:104
5164
+ msgid "nine"
5165
+ msgstr "девять"
5166
+
5167
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:105
5168
+ msgid "ten"
5169
+ msgstr "10"
5170
+
5171
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:106
5172
+ msgid "eleven"
5173
+ msgstr "одиннадцать"
5174
+
5175
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:107
5176
+ msgid "twelve"
5177
+ msgstr "двенадцать"
5178
+
5179
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:108
5180
+ msgid "thirteen"
5181
+ msgstr "тринадцать"
5182
+
5183
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:109
5184
+ msgid "fourteen"
5185
+ msgstr "четрынадцать"
5186
+
5187
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:110
5188
+ msgid "fifteen"
5189
+ msgstr "пятнадцать"
5190
+
5191
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:111
5192
+ msgid "sixteen"
5193
+ msgstr "шестнадцать"
5194
+
5195
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:112
5196
+ msgid "seventeen"
5197
+ msgstr "семнадцать"
5198
+
5199
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:113
5200
+ msgid "eighteen"
5201
+ msgstr "восемнадцать"
5202
+
5203
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:114
5204
+ msgid "nineteen"
5205
+ msgstr "девятнадцать"
5206
+
5207
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:115
5208
+ msgid "twenty"
5209
+ msgstr "двадцать"
5210
+
5211
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:65
5212
+ msgid "All In One WP Security - File change detected!"
5213
+ msgstr "All In One WP Security - Обнаружены изменения в файлах!"
5214
+
5215
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:67
5216
+ msgid "A file change was detected on your system for site URL"
5217
+ msgstr "Изменение файла замечено на вашей системе по URL сайта"
5218
+
5219
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:67
5220
+ msgid ". Scan was generated on"
5221
+ msgstr ". Сканирование создано "
5222
+
5223
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:68
5224
+ msgid "Login to your site to view the scan details."
5225
+ msgstr "Зайдите на свой сайт, чтобы увидеть подробный результат сканирования."
5226
+
5227
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:269
5228
+ msgid ""
5229
+ "Starting DB scan.....please wait while the plugin scans your database......."
5230
+ msgstr ""
5231
+ "Начинается сканирование базы данных......ждите, пока плагин сканирует вашу "
5232
+ "БД......."
5233
+
5234
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:273
5235
+ msgid "Scanning options table........."
5236
+ msgstr "Сканируется таблица options........."
5237
+
5238
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:342
5239
+ #, php-format
5240
+ msgid "%s and option_id: %s"
5241
+ msgstr "%s и настройки (option_id): %s"
5242
+
5243
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:345
5244
+ #, php-format
5245
+ msgid ""
5246
+ "Deletion of known pharma hack entry for option_name %s failed. Please delete "
5247
+ "this entry manually!"
5248
+ msgstr ""
5249
+ "Не удалось удалить параметр вируса pharma hack для настройки %s. Пожалуйста, "
5250
+ "удалите эту строчку вручную!"
5251
+
5252
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:347
5253
+ #, php-format
5254
+ msgid ""
5255
+ "The options table entry with known pharma hack for option_id %s with "
5256
+ "option_name %s was successfully deleted"
5257
+ msgstr ""
5258
+ "Строчка в таблице с настройкой (option_id) %s и названием (option_name) %s "
5259
+ "была успешно удалена"
5260
+
5261
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:361
5262
+ #, php-format
5263
+ msgid "Possible suspicious entry found (for option_id: %s) - %s "
5264
+ msgstr "Подозрительная строчка найдена (option_id: %s) - %s "
5265
+
5266
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:370
5267
+ msgid "No suspicious entries found in options table"
5268
+ msgstr "Подозрительных строк в таблице настроек не найдено"
5269
+
5270
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:374
5271
+ msgid "Scanning posts table........."
5272
+ msgstr "Сканируются таблицa posts........"
5273
+
5274
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:414
5275
+ #, php-format
5276
+ msgid ""
5277
+ "Possible suspicious entry found (for Post ID: %s) in the following column - "
5278
+ "%s "
5279
+ msgstr "Подозрительная строчка найдена (Post ID: %s) в столбце - %s "
5280
+
5281
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:423
5282
+ msgid "No suspicious entries found in posts table"
5283
+ msgstr "Подозрительных строчек не найдено в таблице posts"
5284
+
5285
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:427
5286
+ msgid "Scanning links table........."
5287
+ msgstr "Сканируется таблица links............."
5288
+
5289
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:466
5290
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:517
5291
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:545
5292
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:573
5293
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:622
5294
+ #, php-format
5295
+ msgid "Possible suspicious entry - %s "
5296
+ msgstr "Найдена подозрительная строчка - %s "
5297
+
5298
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:475
5299
+ msgid "No suspicious entries found in links table"
5300
+ msgstr "Подозрительных строчек не найдено в таблице links"
5301
+
5302
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:479
5303
+ msgid "Scanning comments table........."
5304
+ msgstr "Сканируется таблица comments............."
5305
+
5306
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:526
5307
+ msgid "No suspicious entries found in comments table"
5308
+ msgstr "Подозрительных строчек не найдено в таблице comments"
5309
+
5310
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:530
5311
+ msgid "Scanning postmeta table........."
5312
+ msgstr "Сканируется таблица postmeta............."
5313
+
5314
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:554
5315
+ msgid "No suspicious entries found in postmeta table"
5316
+ msgstr "Подозрительных строчек не найдено в таблице postmeta"
5317
+
5318
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:558
5319
+ msgid "Scanning usermeta table........."
5320
+ msgstr "Сканируется таблица usermeta............."
5321
+
5322
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:582
5323
+ msgid "No suspicious entries found in usermeta table"
5324
+ msgstr "Подозрительных строчек не найдено в таблице usermeta"
5325
+
5326
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:586
5327
+ msgid "Scanning users table........."
5328
+ msgstr "Сканируется таблица users............."
5329
+
5330
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:631
5331
+ msgid "No suspicious entries found in users table"
5332
+ msgstr "Подозрительных строчек не найдено в таблице users"
5333
+
5334
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:638
5335
+ msgid ""
5336
+ "The plugin has detected that there are some potentially suspicious entries "
5337
+ "in your database."
5338
+ msgstr "Плагин обнаружил подозрительные строчки в вашей базе данных."
5339
+
5340
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:639
5341
+ msgid ""
5342
+ "Please verify the results listed below to confirm whether the entries "
5343
+ "detected are genuinely suspicious or if they are false positives."
5344
+ msgstr ""
5345
+ "Пожалуйста, проверьте, действительно ли следующие строчки подозрительные, "
5346
+ "или они безопасные."
5347
+
5348
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:644
5349
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:659
5350
+ msgid "Disclaimer:"
5351
+ msgstr "Отговорка:"
5352
+
5353
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:645
5354
+ msgid ""
5355
+ "Even though this database scan has revealed some suspicious entries, this "
5356
+ "does not necessarily mean that other parts of your DB or site are also not "
5357
+ "compromised."
5358
+ msgstr ""
5359
+ "Несмотря на то, что сканирование базы данных выявило несколько "
5360
+ "подозрительных строчек, это не означает, что другие части вашей БД не "
5361
+ "заражены."
5362
+
5363
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:646
5364
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:661
5365
+ msgid ""
5366
+ "Please note that database scan performed by this feature is basic and looks "
5367
+ "for common malicious entries. Since hackers are continually evolving their "
5368
+ "methods this scan is not meant to be a guaranteed catch-all for malware."
5369
+ msgstr ""
5370
+ "Обратите внимание, что сканирование базы данных данного плагина - достаточно "
5371
+ "поверхностное и ищет часто встречающиеся злонамеренные строчки. Т.к. хакеры "
5372
+ "постоянно развивают свои методы, данное сканирование не гарантирует, что все "
5373
+ "вирусы найдены."
5374
+
5375
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:647
5376
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:662
5377
+ #, php-format
5378
+ msgid ""
5379
+ "It is your responsibility to do the due diligence and perform a robust %s on "
5380
+ "your site if you wish to be more certain that your site is clean."
5381
+ msgstr ""
5382
+ "Ваша ответственность провести внимательную проверку выполнить подробное %s "
5383
+ "вашего сайта если хотите быть более уверены, что ваш сайт не поврежденный."
5384
+
5385
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:654
5386
+ msgid "DB Scan was completed successfully. No suspicious entries found."
5387
+ msgstr ""
5388
+ "Сканирование базы данных успешно выполнено. Подозрительных строчек не "
5389
+ "найдено."
5390
+
5391
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:660
5392
+ msgid ""
5393
+ "Even though the database scan has not revealed any suspicious entries, this "
5394
+ "does not necessarily mean that your site is actually completely clean or not "
5395
+ "compromised."
5396
+ msgstr ""
5397
+ "Несмотря на то, что сканирование базы данных не обнаружило злонамеренных "
5398
+ "строчек это не обязательно означает, что ваш сайт полностью чист и не "
5399
+ "зараженный никаким вирусом."
5400
+
5401
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:281
5402
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:358
5403
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:69
5404
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:72
5405
+ #: all-in-one-wp-security/classes/wp-security-user-registration.php:61
5406
+ msgid "<strong>ERROR</strong>: Your answer was incorrect - please try again."
5407
+ msgstr "<strong>ОШИБКА</strong>: Ваш ответ неверный - попробуйте еще раз."
5408
+
5409
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:293
5410
+ msgid "Enter something special:"
5411
+ msgstr "Если вы - человек, тогда лучше оставить это поле пустым:"
5412
+
5413
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:320
5414
+ msgid "Please enter an answer in the CAPTCHA field."
5415
+ msgstr "Пожалуйста, напишите ответ в поле CAPTCHA."
5416
+
5417
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:330
5418
+ msgid ""
5419
+ "Error: You entered an incorrect CAPTCHA answer. Please go back and try again."
5420
+ msgstr ""
5421
+ "Ошибка: Вы ввели некорректный ответ в поле CAPTCHA. Пожалуйста, попробуйте "
5422
+ "еще раз."
5423
+
5424
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:382
5425
+ msgid "Your CAPTCHA answer was incorrect - please try again."
5426
+ msgstr ""
5427
+ "Вы ввели некорректный ответ в поле CAPTCHA. Пожалуйста, попробуйте еще раз."
5428
+
5429
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:43
5430
  msgid ""
5431
  "<strong>ERROR</strong>: Login failed because your IP address has been "
5432
+ "blocked. Please contact the administrator."
 
5433
  msgstr ""
5434
+ "<strong>ОШИБКА</strong>: Авторизация не удалась, так как Ваш IP-адрес "
5435
+ "заблокирован. Пожалуйста, свяжитесь с администратором."
 
5436
 
5437
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:82
5438
  msgid "<strong>ERROR</strong>: The username field is empty."
5439
  msgstr ""
5440
  "<strong>ОШИБКА</strong>: Поле для указания имени пользователя незаполнено."
5441
 
5442
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:86
5443
  msgid "<strong>ERROR</strong>: The password field is empty."
5444
  msgstr "<strong>ERROR</strong>: Поле для указания пароля незаполнено."
5445
 
5446
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:106
5447
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:132
 
 
 
 
5448
  msgid "<strong>ERROR</strong>: Invalid login credentials."
5449
  msgstr "<strong>ОШИБКА</strong>: Неверные логин или пароль"
5450
 
5451
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:109
5452
  msgid "<strong>ERROR</strong>: Invalid username."
5453
  msgstr "<strong>ОШИБКА</strong>: Неверное имя пользователя."
5454
 
5455
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:135
5456
  #, php-format
5457
  msgid ""
5458
  "<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password "
5461
  "<strong>ОШИБКА</strong>: Неверный пароль. <a href=\"%s\" title="
5462
  "\"Восстановление пароля\">Забыли свой пароль</a>?"
5463
 
5464
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:146
5465
+ msgid ""
5466
+ "<strong>ACCOUNT PENDING</strong>: Your account is currently not active. An "
5467
+ "administrator needs to activate your account before you can login."
5468
+ msgstr ""
5469
+ "<strong>АККАУНТ В ОЖИДАНИИ ПРОВЕРКИ</strong>: Ваш аккаунт еще не активен. До "
5470
+ "того, как сможете войти, администратор должен активировать аккаунт."
5471
+
5472
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:269
5473
  msgid "Site Lockout Notification"
5474
  msgstr "Уведомления блокировки"
5475
 
5476
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:270
5477
  msgid ""
5478
+ "A lockdown event has occurred due to too many failed login attempts or "
5479
+ "invalid username:"
5480
  msgstr ""
5481
+ "Вы были заблокированы из-за слишком большого количества попыток неудачного "
5482
+ "входа или с неверным пользовательским именем: "
5483
 
5484
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:271
5485
  msgid "Username: "
5486
  msgstr "Имя пользователя:"
5487
 
5488
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:272
5489
+ msgid "IP Address: "
5490
+ msgstr "IP-адрес: "
5491
+
5492
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:273
5493
  msgid "IP Range: "
5494
  msgstr "Диапазон IP-адресов:"
5495
 
5496
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:274
5497
  msgid ""
5498
  "Log into your site's WordPress administration panel to see the duration of "
5499
  "the lockout or to unlock the user."
5501
  "Авторизуйтесь в админ-панели блога, чтобы видеть продолжительность "
5502
  "блокировки или чтобы разблокировать пользователя."
5503
 
5504
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:338
5505
+ msgid "Unlock Request Notification"
5506
+ msgstr "Уведомление о просьбе разблокировки"
5507
+
5508
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:339
5509
+ msgid "You have requested for the account with email address "
5510
+ msgstr "Вы попросили аккаунт с мейл-адресом "
5511
+
5512
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:340
5513
+ msgid "Unlock link: "
5514
+ msgstr "Ссылка для разблокировки: "
5515
+
5516
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:341
5517
+ msgid ""
5518
+ "After clicking the above link you will be able to login to the WordPress "
5519
+ "administration panel."
5520
+ msgstr ""
5521
+ "После того, как кликните на эту ссылку, вы сможете логиниться в консоль "
5522
+ "WordPress."
5523
+
5524
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:507
5525
  #, php-format
5526
  msgid ""
5527
  "Your session has expired because it has been over %d minutes since your last "
5530
  "Ваша сессия была прекращена, поскольку прошло уже более %d минут с тех пор, "
5531
  "как Вы авторизовались последний раз."
5532
 
5533
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:508
5534
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:512
5535
  msgid "Please log back in to continue."
5536
  msgstr "Для продолжения авторизуйтесь снова."
5537
 
5538
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:511
5539
  msgid "You were logged out because you just changed the \"admin\" username."
5540
  msgstr ""
5541
  "Ваша авторизационная сессия была прекращена, так как Вы только что изменили "
5542
  "имя пользователя «admin»."
5543
 
5544
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:537
5545
+ msgid "Request Unlock"
5546
+ msgstr "Попросить разблокировку"
5547
+
5548
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:76
5549
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:95
5550
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:110
5551
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:125
5552
  msgid " is not a valid ip address format."
5553
  msgstr "не является правильным форматом IP-адреса."
5554
 
5555
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:133
5556
  msgid "You cannot ban your own IP address: "
5557
  msgstr "Свой собственный IP-адрес забанить нельзя:"
5558
+
5559
+ #: all-in-one-wp-security/classes/wp-security-utility.php:151
5560
+ msgid ""
5561
+ "This feature can only be configured by the \"superadmin\" on the main site."
5562
+ msgstr ""
5563
+ "Данная функция может быть настроена только главным админом \"superadmin\" на "
5564
+ "главном сайте."
5565
+
5566
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:29
5567
+ msgid "Remove WP Generatore Meta Tag"
5568
+ msgstr "Удалите тэг мета-данных WP Generator"
5569
+
5570
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:38
5571
+ msgid "Change Display Name"
5572
+ msgstr "Изменить отображаемое имя пользователя"
5573
+
5574
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:45
5575
+ msgid "Custom Login Captcha"
5576
+ msgstr "Специальная CAPTCHA для логина"
5577
+
5578
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:47
5579
+ msgid "Lost Password Captcha"
5580
+ msgstr "CAPTCHA для восстановления пароля"
5581
+
5582
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:49
5583
+ msgid "Login IP Whitelisting"
5584
+ msgstr "Белый список IP-адресов для логина"
5585
+
5586
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:55
5587
+ msgid "Registration Approval"
5588
+ msgstr "Одобрение регистрации"
5589
+
5590
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:71
5591
+ msgid "WordPress Files Access"
5592
+ msgstr "Доступ к файлам WordPress"
5593
+
5594
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:75
5595
+ msgid "IP and User Agent Blacklisting"
5596
+ msgstr "Черного список для блокировки IP-адресов и юзер-агентов"
5597
+
5598
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:79
5599
+ msgid "Enable Basic Firewall"
5600
+ msgstr "Активировать базовый файерволл"
5601
+
5602
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:80
5603
+ msgid "Enable Pingback Vulnerability Protection"
5604
+ msgstr "Активировать защиты от Пингбэк-уязвимостей"
5605
+
5606
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:81
5607
+ msgid "Enable IP blocking for 404 detection"
5608
+ msgstr "Активировать блоровки IP-адресов на основе ошибок 404"
5609
+
5610
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:85
5611
+ msgid "Enable Rename Login Page"
5612
+ msgstr "Активировать изменение адреса страницы логина"
5613
+
5614
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:87
5615
+ msgid "Enable Login Honeypot"
5616
+ msgstr "Включить медовый боченок (honeypot) при авторизации"
5617
+
5618
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:93
5619
+ msgid "Forbid Proxy Comments"
5620
+ msgstr "Запретить комментарии через прокси"
5621
+
5622
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:94
5623
+ msgid "Deny Bad Queries"
5624
+ msgstr "Запретить вредоносные запросы"
5625
+
5626
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:96
5627
+ msgid "5G Blacklist"
5628
+ msgstr "Черный список 5G"
5629
+
5630
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:99
5631
+ msgid "Block Spambots"
5632
+ msgstr "Блокировать спам-роботы"
5633
+
5634
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:101
5635
+ msgid "Comment Captcha"
5636
+ msgstr "CAPTCHA для комментариев"
5637
+
5638
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:103
5639
+ msgid "BuddyPress Registration Captcha"
5640
+ msgstr "CAPTCHA для регистрации BuddyPress"
5641
+
5642
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:28
5643
+ msgid "Basic"
5644
+ msgstr "Основное"
5645
+
5646
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:31
5647
+ msgid "Intermediate"
5648
+ msgstr "Среднее"
5649
+
5650
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:34
5651
+ msgid "Advanced"
5652
+ msgstr "Для продвинутого"
5653
+
5654
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:96
5655
+ msgid "https://wordpress.org/"
5656
+ msgstr "https://wordpress.org/"
5657
+
5658
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:97
5659
+ #: all-in-one-wp-security/other-includes/wp-security-unlock-request.php:14
5660
+ msgid "Powered by WordPress"
5661
+ msgstr "Сайт работает на WordPress"
5662
+
5663
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:214
5664
+ #, php-format
5665
+ msgid "&larr; Back to %s"
5666
+ msgstr "&larr; Назад к &laquo;%s&raquo;"
5667
+
5668
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:272
5669
+ msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
5670
+ msgstr "<strong>ОШИБКА</strong>: Введите имя пользователя или e-mail."
5671
+
5672
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:276
5673
+ msgid ""
5674
+ "<strong>ERROR</strong>: There is no user registered with that email address."
5675
+ msgstr ""
5676
+ "<strong>ОШИБКА</strong>: Пользователей с таким адресом e-mail не "
5677
+ "зарегистрировано."
5678
+
5679
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:293
5680
+ msgid "<strong>ERROR</strong>: Invalid username or e-mail."
5681
+ msgstr "<strong>ОШИБКА</strong>: Неверное имя пользователя или e-mail."
5682
+
5683
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:330
5684
+ msgid "Password reset is not allowed for this user"
5685
+ msgstr "Сброс пароля для этого пользователя не разрешён"
5686
+
5687
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:355
5688
+ msgid "Someone requested that the password be reset for the following account:"
5689
+ msgstr "Кто-то запросил сброс пароля для следующей учётной записи:"
5690
+
5691
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:357
5692
+ #, php-format
5693
+ msgid "Username: %s"
5694
+ msgstr "Имя пользователя: %s"
5695
+
5696
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:358
5697
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
5698
+ msgstr ""
5699
+ "Если произошла ошибка, просто проигнорируйте это письмо, и ничего не "
5700
+ "произойдёт."
5701
+
5702
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:359
5703
+ msgid "To reset your password, visit the following address:"
5704
+ msgstr "Чтобы сбросить пароль, перейдите по следующей ссылке:"
5705
+
5706
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:369
5707
+ #, php-format
5708
+ msgid "[%s] Password Reset"
5709
+ msgstr "[%s] Новый пароль"
5710
+
5711
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:390
5712
+ msgid "The e-mail could not be sent."
5713
+ msgstr "Сообщение не удалось отправить."
5714
+
5715
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:390
5716
+ msgid "Possible reason: your host may have disabled the mail() function."
5717
+ msgstr "Возможная причина: сервер не поддерживает функцию mail()."
5718
+
5719
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:495
5720
+ msgid "Sorry, that key does not appear to be valid."
5721
+ msgstr "Извините, этот ключ неверен."
5722
+
5723
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:497
5724
+ msgid "Sorry, that key has expired. Please try again."
5725
+ msgstr "К сожалению, данный ключ уже истек. Попробуйте еще раз."
5726
+
5727
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:517
5728
+ msgid "Lost Password"
5729
+ msgstr "Забыли пароль?"
5730
+
5731
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:517
5732
+ msgid ""
5733
+ "Please enter your username or email address. You will receive a link to "
5734
+ "create a new password via email."
5735
+ msgstr ""
5736
+ "Пожалуйста, введите ваше имя пользователя или e-mail. Вы получите письмо со "
5737
+ "ссылкой для создания нового пароля."
5738
+
5739
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:525
5740
+ msgid "Username or E-mail:"
5741
+ msgstr "Имя пользователя или e-mail:"
5742
+
5743
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:540
5744
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:589
5745
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:631
5746
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:713
5747
+ msgid "Log in"
5748
+ msgstr "Войти"
5749
+
5750
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:543
5751
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:634
5752
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:892
5753
+ msgid "Register"
5754
+ msgstr "Регистрация"
5755
+
5756
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:575
5757
+ msgid "The passwords do not match."
5758
+ msgstr "Пароли не совпадают."
5759
+
5760
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:589
5761
+ msgid "Password Reset"
5762
+ msgstr "Сброс пароля"
5763
+
5764
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:589
5765
+ msgid "Your password has been reset."
5766
+ msgstr "Ваш новый пароль вступил в силу."
5767
+
5768
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:597
5769
+ msgid "Reset Password"
5770
+ msgstr "Задать пароль"
5771
+
5772
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:597
5773
+ msgid "Enter your new password below."
5774
+ msgstr "Введите свой новый пароль ниже."
5775
+
5776
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:604
5777
+ msgid "New password"
5778
+ msgstr "Новый пароль"
5779
+
5780
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:608
5781
+ msgid "Confirm new password"
5782
+ msgstr "Подтвердите новый пароль"
5783
+
5784
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:612
5785
+ msgid "Strength indicator"
5786
+ msgstr "Индикатор надёжности"
5787
+
5788
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:613
5789
+ msgid ""
5790
+ "Hint: The password should be at least seven characters long. To make it "
5791
+ "stronger, use upper and lower case letters, numbers, and symbols like ! \" ? "
5792
+ "$ % ^ &amp; )."
5793
+ msgstr ""
5794
+ "Подсказка: Пароль должен состоять как минимум из семи символов. Чтобы "
5795
+ "сделать его надёжнее, используйте буквы верхнего и нижнего регистра, числа и "
5796
+ "символы наподобие ! \" ? $ % ^ &amp; )."
5797
+
5798
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:686
5799
+ msgid "Registration Form"
5800
+ msgstr "Регистрационная форма"
5801
+
5802
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:686
5803
+ msgid "Register For This Site"
5804
+ msgstr "Зарегистрироваться на этом сайте"
5805
+
5806
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:691
5807
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:858
5808
+ msgid "Username"
5809
+ msgstr "Имя пользователя"
5810
+
5811
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:695
5812
+ msgid "E-mail"
5813
+ msgstr "E-mail"
5814
+
5815
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:706
5816
+ msgid "A password will be e-mailed to you."
5817
+ msgstr "Пароль будет отправлен вам на e-mail."
5818
+
5819
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:714
5820
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:897
5821
+ msgid "Lost your password?"
5822
+ msgstr "Забыли пароль?"
5823
+
5824
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:760
5825
+ #, php-format
5826
+ msgid ""
5827
+ "<strong>ERROR</strong>: Cookies are blocked due to unexpected output. For "
5828
+ "help, please see <a href=\"%1$s\">this documentation</a> or try the <a href="
5829
+ "\"%2$s\">support forums</a>."
5830
+ msgstr ""
5831
+ "<strong>ОШИБКА</strong>: Выод куки заблокированы из-за преждевременного "
5832
+ "отправления данных к клиенту. Для помощи, смотрите <a href=\"%1$s\">эту "
5833
+ "документацию</a> или обратитесь в <a href=\"%2$s\">форумы поддержки</a>."
5834
+
5835
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:761
5836
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:765
5837
+ msgid "http://codex.wordpress.org/Cookies"
5838
+ msgstr "http://codex.wordpress.org/Cookies"
5839
+
5840
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:761
5841
+ msgid "https://wordpress.org/support/"
5842
+ msgstr "https://ru.forums.wordpress.org/"
5843
+
5844
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:764
5845
+ #, php-format
5846
+ msgid ""
5847
+ "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
5848
+ "browser. You must <a href=\"%s\">enable cookies</a> to use WordPress."
5849
+ msgstr ""
5850
+ "<strong>ОШИБКА</strong>: Куки либо заблокированы вашим браузером, либо ваш "
5851
+ "браузер их не поддерживает. Для пользования WordPress, необходимо <a href="
5852
+ "\"%s\">активировать куки</a>."
5853
+
5854
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:783
5855
+ msgid "You have logged in successfully."
5856
+ msgstr "Вы успешно вошли в систему."
5857
+
5858
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:817
5859
+ msgid ""
5860
+ "Session expired. Please log in again. You will not move away from this page."
5861
+ msgstr ""
5862
+ "Время вашей сессии истекло. Пожалуйста, авторизуйтесь снова. Вы останетесь "
5863
+ "на этой же странице."
5864
+
5865
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:821
5866
+ msgid "You are now logged out."
5867
+ msgstr "Вы вышли из системы."
5868
+
5869
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:823
5870
+ msgid "User registration is currently not allowed."
5871
+ msgstr "В данный момент регистрация запрещена."
5872
+
5873
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:825
5874
+ msgid "Check your e-mail for the confirmation link."
5875
+ msgstr "Вам отправлено письмо со ссылкой для подтверждения."
5876
+
5877
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:827
5878
+ msgid "Check your e-mail for your new password."
5879
+ msgstr "Вам отправлено письмо с новым паролем."
5880
+
5881
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:829
5882
+ msgid "Registration complete. Please check your e-mail."
5883
+ msgstr "Регистрация завершена. Проверьте вашу почту."
5884
+
5885
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:831
5886
+ msgid ""
5887
+ "<strong>You have successfully updated WordPress!</strong> Please log back in "
5888
+ "to experience the awesomeness."
5889
+ msgstr ""
5890
+ "<strong>Вы успешно обновили WordPress!</strong> Пожалуйста, войдите снова, "
5891
+ "чтобы ощутить все прелести."
5892
+
5893
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:848
5894
+ msgid "Log In"
5895
+ msgstr "Войти"
5896
+
5897
+ #: all-in-one-wp-security/other-includes/wp-security-unlock-request.php:13
5898
+ msgid "http://wordpress.org/"
5899
+ msgstr "http://ru.wordpress.org/"
5900
+
5901
+ #: all-in-one-wp-security/other-includes/wp-security-unlock-request.php:48
5902
+ msgid "Please enter a valid email address"
5903
+ msgstr "Пожалуйста, введите корректный адрес e-mail."
5904
+
5905
+ #: all-in-one-wp-security/other-includes/wp-security-unlock-request.php:59
5906
+ msgid "User account not found!"
5907
+ msgstr "Учетной записи пользователя нет!"
5908
+
5909
+ #: all-in-one-wp-security/other-includes/wp-security-unlock-request.php:70
5910
+ msgid "Error: No locked entry was found in the DB with your IP address range!"
5911
+ msgstr ""
5912
+ "Ошибка: Никакой запертой записи не было найдено в БД с блоком вашего IP-"
5913
+ "адреса!"
5914
+
5915
+ #: all-in-one-wp-security/other-includes/wp-security-unlock-request.php:98
5916
+ msgid "Email Address"
5917
+ msgstr "Адрес электронной почты"
5918
+
5919
+ #~ msgid "There was an error when updating the options table."
5920
+ #~ msgstr "Не удалось скорректировать записи в таблице опций."
5921
+
5922
+ #~ msgid ""
5923
+ #~ "DB Backup was successfully completed! Right click on the following file "
5924
+ #~ "name and save the backup to your computer."
5925
+ #~ msgstr ""
5926
+ #~ "Резервная копия БД успешно создана! Кликните правой кнопкой мыши по имени "
5927
+ #~ "файла, чтобы скачать его на компьютер."
5928
+
5929
+ #~ msgid ""
5930
+ #~ "Your system config file is already configured to disallow PHP file "
5931
+ #~ "editing."
5932
+ #~ msgstr ""
5933
+ #~ "Ваша система уже сконфигурирована с запретом на редактирование PHP-файлов."
5934
+
5935
+ #~ msgid ""
5936
+ #~ "Settings Saved - Your system is now configured to not allow PHP file "
5937
+ #~ "editing."
5938
+ #~ msgstr ""
5939
+ #~ "Настройки сохранены - Ваша система сконфигурирована с запретом на "
5940
+ #~ "редактирование PHP-файлов."
5941
+
5942
+ #~ msgid ""
5943
+ #~ "A backup copy of your wp-config.php file was created successfully...."
5944
+ #~ msgstr "Резервная копия Вашего файла wp-config.php успешно создана..."
5945
+
5946
+ #~ msgid ""
5947
+ #~ "Your system config file is already configured to allow PHP file editing."
5948
+ #~ msgstr ""
5949
+ #~ "В Вашем файле wp-config.php уже прописана константа, разрешающая "
5950
+ #~ "редактирование PHP-файлов."
5951
+
5952
+ #~ msgid ""
5953
+ #~ "Settings Saved - Your system is now configured to allow PHP file editing."
5954
+ #~ msgstr ""
5955
+ #~ "Настройки сохранены - Ваша система сконфигурирована с разрешением "
5956
+ #~ "редактировать PHP-файлы."
5957
+
5958
+ #~ msgid "Your .htaccess File: "
5959
+ #~ msgstr "Ваш файл .htaccess:"
5960
+
5961
+ #~ msgid ""
5962
+ #~ "Your wp-config.php file was successfully backed up! Right click on the "
5963
+ #~ "following file name and save the backup to your computer."
5964
+ #~ msgstr "Резервная копия файла wp-config.php успешно создана!"
5965
+
5966
+ #~ msgid "Your wp-config.php File: "
5967
+ #~ msgstr "Ваш файл wp-config.php:"
5968
+
5969
+ #~ msgid ""
5970
+ #~ "wp-config.php file rename failed during backup. Please check your root "
5971
+ #~ "directory for the backup file using FTP."
5972
+ #~ msgstr ""
5973
+ #~ "Во время резервного копирования файла wp-config.php не удалось его "
5974
+ #~ "переименовать. Воспользуйтесь FTP, чтобы проверить наличие созданной "
5975
+ #~ "резервной копии в корневой директории Вашего сайта."
5976
+
5977
+ #~ msgid "wp-config.php backup failed."
5978
+ #~ msgstr "Создать резервную копию файла wp-config.php не удалось."
5979
+
5980
+ #~ msgid "unknown"
5981
+ #~ msgstr "неизвестно"
languages/aiowpsecurity-sv_SE.mo ADDED
Binary file
languages/aiowpsecurity-sv_SE.po ADDED
@@ -0,0 +1,5087 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: AIOWPS Swedish translation of public parts\n"
4
+ "POT-Creation-Date: 2014-09-19 10:46+1000\n"
5
+ "PO-Revision-Date: 2014-11-06 16:31+0100\n"
6
+ "Last-Translator: Tor-Bjorn Fjellner <bounce@fjellner.com>\n"
7
+ "Language-Team: Tor-Bjorn Fjellner 6 Nov 2014 <gsm.fjellner.com>\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.5.7\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "Language: sv_SE\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:203
20
+ msgid "WP Security"
21
+ msgstr ""
22
+
23
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:204
24
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:23
25
+ msgid "Dashboard"
26
+ msgstr ""
27
+
28
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:205
29
+ msgid "Settings"
30
+ msgstr ""
31
+
32
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:206
33
+ msgid "User Accounts"
34
+ msgstr ""
35
+
36
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:207
37
+ msgid "User Login"
38
+ msgstr ""
39
+
40
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:208
41
+ msgid "User Registration"
42
+ msgstr ""
43
+
44
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:209
45
+ msgid "Database Security"
46
+ msgstr ""
47
+
48
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:213
49
+ msgid "Filesystem Security"
50
+ msgstr ""
51
+
52
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:215
53
+ msgid "WHOIS Lookup"
54
+ msgstr ""
55
+
56
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:219
57
+ msgid "Blacklist Manager"
58
+ msgstr ""
59
+
60
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:224
61
+ msgid "Firewall"
62
+ msgstr ""
63
+
64
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:229
65
+ msgid "Brute Force"
66
+ msgstr ""
67
+
68
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:231
69
+ msgid "SPAM Prevention"
70
+ msgstr ""
71
+
72
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:235
73
+ msgid "Scanner"
74
+ msgstr ""
75
+
76
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:237
77
+ msgid "Maintenance"
78
+ msgstr ""
79
+
80
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:238
81
+ msgid "Miscellaneous"
82
+ msgstr ""
83
+
84
+ #: all-in-one-wp-security/admin/wp-security-admin-menu.php:43
85
+ msgid "Settings successfully updated."
86
+ msgstr ""
87
+
88
+ #: all-in-one-wp-security/admin/wp-security-admin-menu.php:50
89
+ msgid "The selected record(s) deleted successfully!"
90
+ msgstr ""
91
+
92
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:22
93
+ msgid "Ban Users"
94
+ msgstr ""
95
+
96
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:80
97
+ msgid "Nonce check failed for save blacklist settings!"
98
+ msgstr ""
99
+
100
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:132
101
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:631
102
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:147
103
+ msgid ""
104
+ "The plugin was unable to write to the .htaccess file. Please edit file "
105
+ "manually."
106
+ msgstr ""
107
+
108
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:139
109
+ msgid "Ban IPs or User Agents"
110
+ msgstr ""
111
+
112
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:142
113
+ msgid ""
114
+ "The All In One WP Security Blacklist feature gives you the option of banning "
115
+ "certain host IP addresses or ranges and also user agents."
116
+ msgstr ""
117
+
118
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:143
119
+ msgid ""
120
+ "This feature will deny total site access for users which have IP addresses "
121
+ "or user agents matching those which you have configured in the settings "
122
+ "below."
123
+ msgstr ""
124
+
125
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:144
126
+ msgid ""
127
+ "The plugin achieves this by making appropriate modifications to your ."
128
+ "htaccess file."
129
+ msgstr ""
130
+
131
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:145
132
+ msgid ""
133
+ "By blocking people via the .htaccess file your are using the most secure "
134
+ "first line of defence which denies all access to blacklisted visitors as "
135
+ "soon as they hit your hosting server."
136
+ msgstr ""
137
+
138
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:151
139
+ msgid "IP Hosts and User Agent Blacklist Settings"
140
+ msgstr ""
141
+
142
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:162
143
+ msgid "Enable IP or User Agent Blacklisting"
144
+ msgstr ""
145
+
146
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:165
147
+ msgid ""
148
+ "Check this if you want to enable the banning (or blacklisting) of selected "
149
+ "IP addresses and/or user agents specified in the settings below"
150
+ msgstr ""
151
+
152
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:169
153
+ msgid "Enter IP Addresses:"
154
+ msgstr ""
155
+
156
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:173
157
+ msgid "Enter one or more IP addresses or IP ranges."
158
+ msgstr ""
159
+
160
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:174
161
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:194
162
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:347
163
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:381
164
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:404
165
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:425
166
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:687
167
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:293
168
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:310
169
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:165
170
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:195
171
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:326
172
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:356
173
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:387
174
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:415
175
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:444
176
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:532
177
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:622
178
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:824
179
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:847
180
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:168
181
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:253
182
+ msgid "More Info"
183
+ msgstr ""
184
+
185
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:177
186
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:690
187
+ msgid "Each IP address must be on a new line."
188
+ msgstr ""
189
+
190
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:178
191
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:691
192
+ msgid ""
193
+ "To specify an IP range use a wildcard \"*\" character. Acceptable ways to "
194
+ "use wildcards is shown in the examples below:"
195
+ msgstr ""
196
+
197
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:179
198
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:692
199
+ msgid "Example 1: 195.47.89.*"
200
+ msgstr ""
201
+
202
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:180
203
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:693
204
+ msgid "Example 2: 195.47.*.*"
205
+ msgstr ""
206
+
207
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:181
208
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:694
209
+ msgid "Example 3: 195.*.*.*"
210
+ msgstr ""
211
+
212
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:188
213
+ msgid "Enter User Agents:"
214
+ msgstr ""
215
+
216
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:193
217
+ msgid "Enter one or more user agent strings."
218
+ msgstr ""
219
+
220
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:197
221
+ msgid "Each user agent string must be on a new line."
222
+ msgstr ""
223
+
224
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:198
225
+ msgid "Example 1 - A single user agent string to block:"
226
+ msgstr ""
227
+
228
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:200
229
+ msgid "Example 2 - A list of more than 1 user agent strings to block"
230
+ msgstr ""
231
+
232
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:208
233
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:192
234
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:567
235
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:701
236
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:763
237
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:356
238
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:331
239
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:231
240
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:700
241
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:866
242
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:165
243
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:495
244
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:183
245
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:349
246
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:239
247
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:407
248
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:146
249
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:232
250
+ msgid "Save Settings"
251
+ msgstr ""
252
+
253
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:26
254
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:368
255
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:377
256
+ msgid "Rename Login Page"
257
+ msgstr ""
258
+
259
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:27
260
+ msgid "Cookie Based Brute Force Prevention"
261
+ msgstr ""
262
+
263
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:28
264
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:44
265
+ msgid "Login Captcha"
266
+ msgstr ""
267
+
268
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:29
269
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:638
270
+ msgid "Login Whitelist"
271
+ msgstr ""
272
+
273
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:30
274
+ msgid "Honeypot"
275
+ msgstr ""
276
+
277
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:101
278
+ msgid "Please enter a value for your login page slug."
279
+ msgstr ""
280
+
281
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:105
282
+ msgid "You cannot use the value \"wp-admin\" for your login page slug."
283
+ msgstr ""
284
+
285
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:107
286
+ msgid "You must alpha numeric characters for your login page slug."
287
+ msgstr ""
288
+
289
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:112
290
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:271
291
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:171
292
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:769
293
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:213
294
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:123
295
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:360
296
+ msgid "Attention!"
297
+ msgstr ""
298
+
299
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:131
300
+ msgid ""
301
+ "Could not delete the Cookie-based directives from the .htaccess file. Please "
302
+ "check the file permissions."
303
+ msgstr ""
304
+
305
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:141
306
+ msgid ""
307
+ "An effective Brute Force prevention technique is to change the default "
308
+ "WordPress login page URL."
309
+ msgstr ""
310
+
311
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:142
312
+ msgid ""
313
+ "Normally if you wanted to login to WordPress you would type your site's home "
314
+ "URL followed by wp-login.php."
315
+ msgstr ""
316
+
317
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:143
318
+ msgid ""
319
+ "This feature allows you to change the login URL by setting your own slug and "
320
+ "renaming the last portion of the login URL which contains the <strong>wp-"
321
+ "login.php</strong> to any string that you like."
322
+ msgstr ""
323
+
324
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:144
325
+ msgid ""
326
+ "By doing this, malicious bots and hackers will not be able to access your "
327
+ "login page because they will not know the correct login page URL."
328
+ msgstr ""
329
+
330
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:146
331
+ msgid ""
332
+ "You may also be interested in the following alternative brute force "
333
+ "prevention features:"
334
+ msgstr ""
335
+
336
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:157
337
+ msgid "Your WordPress login page URL has been renamed."
338
+ msgstr ""
339
+
340
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:158
341
+ msgid "Your current login URL is:"
342
+ msgstr ""
343
+
344
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:160
345
+ msgid ""
346
+ "NOTE: If you already had the Cookie-Based Brute Force Prevention feature "
347
+ "active, the plugin has automatically deactivated it because only one of "
348
+ "these features can be active at any one time."
349
+ msgstr ""
350
+
351
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:167
352
+ msgid "Rename Login Page Settings"
353
+ msgstr ""
354
+
355
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:179
356
+ msgid "Enable Rename Login Page Feature"
357
+ msgstr ""
358
+
359
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:182
360
+ msgid "Check this if you want to enable the rename login page feature"
361
+ msgstr ""
362
+
363
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:186
364
+ msgid "Login Page URL"
365
+ msgstr ""
366
+
367
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:188
368
+ msgid ""
369
+ "Enter a string which will represent your secure login page slug. You are "
370
+ "enouraged to choose something which is hard to guess and only you will "
371
+ "remember."
372
+ msgstr ""
373
+
374
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:221
375
+ msgid ""
376
+ "Settings have not been saved - your secret word must consist only of "
377
+ "alphanumeric characters, ie, letters and/or numbers only!"
378
+ msgstr ""
379
+
380
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:240
381
+ msgid ""
382
+ "You have successfully enabled the cookie based brute force prevention feature"
383
+ msgstr ""
384
+
385
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:241
386
+ msgid ""
387
+ "From now on you will need to log into your WP Admin using the following URL:"
388
+ msgstr ""
389
+
390
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:243
391
+ msgid ""
392
+ "It is important that you save this URL value somewhere in case you forget "
393
+ "it, OR,"
394
+ msgstr ""
395
+
396
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:244
397
+ #, php-format
398
+ msgid "simply remember to add a \"?%s=1\" to your current site URL address."
399
+ msgstr ""
400
+
401
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:250
402
+ msgid ""
403
+ "You have successfully saved cookie based brute force prevention feature "
404
+ "settings."
405
+ msgstr ""
406
+
407
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:285
408
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:275
409
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:119
410
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:287
411
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:498
412
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:667
413
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:585
414
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:108
415
+ msgid ""
416
+ "Could not write to the .htaccess file. Please check the file permissions."
417
+ msgstr ""
418
+
419
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:295
420
+ msgid "Brute Force Prevention Firewall Settings"
421
+ msgstr ""
422
+
423
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:300
424
+ msgid ""
425
+ "A Brute Force Attack is when a hacker tries many combinations of usernames "
426
+ "and passwords until they succeed in guessing the right combination."
427
+ msgstr ""
428
+
429
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:301
430
+ msgid ""
431
+ "Due to the fact that at any one time there may be many concurrent login "
432
+ "attempts occurring on your site via malicious automated robots, this also "
433
+ "has a negative impact on your server's memory and performance."
434
+ msgstr ""
435
+
436
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:302
437
+ msgid ""
438
+ "The features in this tab will stop the majority of Brute Force Login Attacks "
439
+ "at the .htaccess level thus providing even better protection for your WP "
440
+ "login page and also reducing the load on your server because the system does "
441
+ "not have to run PHP code to process the login attempts."
442
+ msgstr ""
443
+
444
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:309
445
+ #, php-format
446
+ msgid ""
447
+ "Even though this feature should not have any impact on your site's general "
448
+ "functionality <strong>you are strongly encouraged to take a %s of your ."
449
+ "htaccess file before proceeding</strong>."
450
+ msgstr ""
451
+
452
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:310
453
+ msgid ""
454
+ "If this feature is not used correctly, you can get locked out of your site. "
455
+ "A backed up .htaccess file will come in handy if that happens."
456
+ msgstr ""
457
+
458
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:311
459
+ #, php-format
460
+ msgid ""
461
+ "To learn more about how to use this feature please watch the following %s."
462
+ msgstr ""
463
+
464
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:324
465
+ msgid ""
466
+ "NOTE: If you already had the Rename Login Page feature active, the plugin "
467
+ "has automatically deactivated it because only one of these features can be "
468
+ "active at any one time."
469
+ msgstr ""
470
+
471
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:332
472
+ msgid "Cookie Based Brute Force Login Prevention"
473
+ msgstr ""
474
+
475
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:343
476
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:90
477
+ msgid "Enable Brute Force Attack Prevention"
478
+ msgstr ""
479
+
480
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:346
481
+ msgid ""
482
+ "Check this if you want to protect your login page from Brute Force Attack."
483
+ msgstr ""
484
+
485
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:351
486
+ msgid ""
487
+ "This feature will deny access to your WordPress login page for all people "
488
+ "except those who have a special cookie in their browser."
489
+ msgstr ""
490
+
491
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:353
492
+ msgid "To use this feature do the following:"
493
+ msgstr ""
494
+
495
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:355
496
+ msgid "1) Enable the checkbox."
497
+ msgstr ""
498
+
499
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:357
500
+ msgid ""
501
+ "2) Enter a secret word consisting of alphanumeric characters which will be "
502
+ "difficult to guess. This secret word will be useful whenever you need to "
503
+ "know the special URL which you will use to access the login page (see point "
504
+ "below)."
505
+ msgstr ""
506
+
507
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:359
508
+ msgid ""
509
+ "3) You will then be provided with a special login URL. You will need to use "
510
+ "this URL to login to your WordPress site instead of the usual login URL. "
511
+ "NOTE: The system will deposit a special cookie in your browser which will "
512
+ "allow you access to the WordPress administration login page."
513
+ msgstr ""
514
+
515
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:361
516
+ msgid ""
517
+ "Any person trying to access your login page who does not have the special "
518
+ "cookie in their browser will be automatically blocked."
519
+ msgstr ""
520
+
521
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:368
522
+ msgid "Secret Word"
523
+ msgstr ""
524
+
525
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:370
526
+ msgid ""
527
+ "Choose a secret word consisting of alphanumeric characters which you can use "
528
+ "to access your special URL. Your are highly encouraged to choose a word "
529
+ "which will be difficult to guess."
530
+ msgstr ""
531
+
532
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:374
533
+ msgid "Re-direct URL"
534
+ msgstr ""
535
+
536
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:378
537
+ msgid ""
538
+ "Specify a URL to redirect a hacker to when they try to access your WordPress "
539
+ "login page."
540
+ msgstr ""
541
+
542
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:385
543
+ msgid ""
544
+ "The URL specified here can be any site's URL and does not have to be your "
545
+ "own. For example you can be as creative as you like and send hackers to the "
546
+ "CIA or NSA home page."
547
+ msgstr ""
548
+
549
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:387
550
+ msgid ""
551
+ "This field will default to: http://127.0.0.1 if you do not enter a value."
552
+ msgstr ""
553
+
554
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:389
555
+ msgid "Useful Tip:"
556
+ msgstr ""
557
+
558
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:391
559
+ msgid ""
560
+ "It's a good idea to not redirect attempted brute force login attempts to "
561
+ "your site because it increases the load on your server."
562
+ msgstr ""
563
+
564
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:393
565
+ msgid ""
566
+ "Redirecting a hacker or malicious bot back to \"http://127.0.0.1\" is ideal "
567
+ "because it deflects them back to their own local host and puts the load on "
568
+ "their server instead of yours."
569
+ msgstr ""
570
+
571
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:400
572
+ msgid "My Site Has Posts Or Pages Which Are Password Protected"
573
+ msgstr ""
574
+
575
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:403
576
+ msgid ""
577
+ "Check this if you are using the native WordPress password protection feature "
578
+ "for some or all of your blog posts or pages."
579
+ msgstr ""
580
+
581
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:408
582
+ msgid ""
583
+ "In the cases where you are protecting some of your posts or pages using the "
584
+ "in-built WordPress password protection feature, a few extra lines of "
585
+ "directives and exceptions need to be added to your .htacces file so that "
586
+ "people trying to access pages are not automatically blocked."
587
+ msgstr ""
588
+
589
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:410
590
+ msgid ""
591
+ "By enabling this checkbox the plugin will add the necessary rules and "
592
+ "exceptions to your .htacces file so that people trying to access these pages "
593
+ "are not automatically blocked."
594
+ msgstr ""
595
+
596
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:412
597
+ msgid "Helpful Tip:"
598
+ msgstr ""
599
+
600
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:414
601
+ msgid ""
602
+ "If you do not use the WordPress password protection feature for your posts "
603
+ "or pages then it is highly recommended that you leave this checkbox disabled."
604
+ msgstr ""
605
+
606
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:421
607
+ msgid "My Site Has a Theme or Plugins Which Use AJAX"
608
+ msgstr ""
609
+
610
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:424
611
+ msgid "Check this if your site uses AJAX functionality."
612
+ msgstr ""
613
+
614
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:429
615
+ msgid ""
616
+ "In the cases where your WordPress installation has a theme or plugins which "
617
+ "use AJAX, a few extra lines of directives and exceptions need to be added to "
618
+ "your .htacces file to prevent AJAX requests from being automatically blocked "
619
+ "by the brute force prevention feature."
620
+ msgstr ""
621
+
622
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:431
623
+ msgid ""
624
+ "By enabling this checkbox the plugin will add the necessary rules and "
625
+ "exceptions to your .htacces file so that AJAX operations will work as "
626
+ "expected."
627
+ msgstr ""
628
+
629
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:446
630
+ msgid "The cookie test was successful. You can now enable this feature."
631
+ msgstr ""
632
+
633
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:449
634
+ msgid "Save Feature Settings"
635
+ msgstr ""
636
+
637
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:456
638
+ msgid ""
639
+ "The cookie test failed on this server. So this feature cannot be used on "
640
+ "this site."
641
+ msgstr ""
642
+
643
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:461
644
+ msgid ""
645
+ "Before using this feature you are required to perform a cookie test first. "
646
+ "This is to make sure that your browser cookie is working correctly and that "
647
+ "you won't lock yourself out."
648
+ msgstr ""
649
+
650
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:463
651
+ msgid "Perform Cookie Test"
652
+ msgstr ""
653
+
654
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:503
655
+ msgid ""
656
+ "This feature allows you to add a captcha form on the WordPress login page."
657
+ msgstr ""
658
+
659
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:504
660
+ msgid ""
661
+ "Users who attempt to login will also need to enter the answer to a simple "
662
+ "mathematical question - if they enter the wrong answer, the plugin will not "
663
+ "allow them login even if they entered the correct username and password."
664
+ msgstr ""
665
+
666
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:505
667
+ msgid ""
668
+ "Therefore, adding a captcha form on the login page is another effective yet "
669
+ "simple \"Brute Force\" prevention technique."
670
+ msgstr ""
671
+
672
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:511
673
+ msgid "Login Form Captcha Settings"
674
+ msgstr ""
675
+
676
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:522
677
+ msgid "Enable Captcha On Login Page"
678
+ msgstr ""
679
+
680
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:525
681
+ msgid "Check this if you want to insert a captcha form on the login page"
682
+ msgstr ""
683
+
684
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:531
685
+ msgid "Custom Login Form Captcha Settings"
686
+ msgstr ""
687
+
688
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:540
689
+ msgid "Enable Captcha On Custom Login Form"
690
+ msgstr ""
691
+
692
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:543
693
+ msgid ""
694
+ "Check this if you want to insert captcha on a custom login form generated by "
695
+ "the following WP function: wp_login_form()"
696
+ msgstr ""
697
+
698
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:549
699
+ msgid "Lost Password Form Captcha Settings"
700
+ msgstr ""
701
+
702
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:559
703
+ msgid "Enable Captcha On Lost Password Page"
704
+ msgstr ""
705
+
706
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:562
707
+ msgid ""
708
+ "Check this if you want to insert a captcha form on the lost password page"
709
+ msgstr ""
710
+
711
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:584
712
+ msgid "Nonce check failed for save whitelist settings!"
713
+ msgstr ""
714
+
715
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:641
716
+ msgid ""
717
+ "The All In One WP Security Whitelist feature gives you the option of only "
718
+ "allowing certain IP addresses or ranges to have access to your WordPress "
719
+ "login page."
720
+ msgstr ""
721
+
722
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:642
723
+ msgid ""
724
+ "This feature will deny login access for all IP addresses which are not in "
725
+ "your whitelist as configured in the settings below."
726
+ msgstr ""
727
+
728
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:643
729
+ msgid ""
730
+ "The plugin achieves this by writing the appropriate directives to your ."
731
+ "htaccess file."
732
+ msgstr ""
733
+
734
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:644
735
+ msgid ""
736
+ "By allowing/blocking IP addresses via the .htaccess file your are using the "
737
+ "most secure first line of defence because login access will only be granted "
738
+ "to whitelisted IP addresses and other addresses will be blocked as soon as "
739
+ "they try to access your login page."
740
+ msgstr ""
741
+
742
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:651
743
+ #, php-format
744
+ msgid ""
745
+ "Attention: If in addition to enabling the white list feature, you also have "
746
+ "the %s feature enabled, <strong>you will still need to use your secret word "
747
+ "in the URL when trying to access your WordPress login page</strong>."
748
+ msgstr ""
749
+
750
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:652
751
+ msgid ""
752
+ "These features are NOT functionally related. Having both of them enabled on "
753
+ "your site means you are creating 2 layers of security."
754
+ msgstr ""
755
+
756
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:657
757
+ msgid "Login IP Whitelist Settings"
758
+ msgstr ""
759
+
760
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:668
761
+ msgid "Enable IP Whitelisting"
762
+ msgstr ""
763
+
764
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:671
765
+ msgid ""
766
+ "Check this if you want to enable the whitelisting of selected IP addresses "
767
+ "specified in the settings below"
768
+ msgstr ""
769
+
770
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:675
771
+ msgid "Your Current IP Address"
772
+ msgstr ""
773
+
774
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:678
775
+ msgid ""
776
+ "You can copy and paste this address in the text box below if you want to "
777
+ "include it in your login whitelist."
778
+ msgstr ""
779
+
780
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:682
781
+ msgid "Enter Whitelisted IP Addresses:"
782
+ msgstr ""
783
+
784
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:686
785
+ msgid ""
786
+ "Enter one or more IP addresses or IP ranges you wish to include in your "
787
+ "whitelist. Only the addresses specified here will have access to the "
788
+ "WordPress login page."
789
+ msgstr ""
790
+
791
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:734
792
+ msgid ""
793
+ "This feature allows you to add a special hidden \"honeypot\" field on the "
794
+ "WordPress login page. This will only be visible to robots and not humans."
795
+ msgstr ""
796
+
797
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:735
798
+ msgid ""
799
+ "Since robots usually fill in every input field from a login form, they will "
800
+ "also submit a value for the special hidden honeypot field."
801
+ msgstr ""
802
+
803
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:736
804
+ msgid ""
805
+ "The way honeypots work is that a hidden field is placed somewhere inside a "
806
+ "form which only robots will submit. If that field contains a value when the "
807
+ "form is submitted then a robot has most likely submitted the form and it is "
808
+ "consquently dealt with."
809
+ msgstr ""
810
+
811
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:737
812
+ msgid ""
813
+ "Therefore, if the plugin detects that this field has a value when the login "
814
+ "form is submitted, then the robot which is attempting to login to your site "
815
+ "will be redirected to its localhost address - http://127.0.0.1."
816
+ msgstr ""
817
+
818
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:743
819
+ msgid "Login Form Honeypot Settings"
820
+ msgstr ""
821
+
822
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:754
823
+ msgid "Enable Honeypot On Login Page"
824
+ msgstr ""
825
+
826
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:757
827
+ msgid ""
828
+ "Check this if you want to enable the honeypot feature for the login page"
829
+ msgstr ""
830
+
831
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:24
832
+ msgid "System Info"
833
+ msgstr ""
834
+
835
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:25
836
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:460
837
+ msgid "Locked IP Addresses"
838
+ msgstr ""
839
+
840
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:75
841
+ msgid "For information, updates and documentation, please visit the"
842
+ msgstr ""
843
+
844
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:75
845
+ msgid "AIO WP Security & Firewall Plugin"
846
+ msgstr ""
847
+
848
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:75
849
+ msgid "Page"
850
+ msgstr ""
851
+
852
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:76
853
+ msgid "Follow us"
854
+ msgstr ""
855
+
856
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:76
857
+ msgid ""
858
+ "Twitter, Google+ or via Email to stay up to date about the new security "
859
+ "features of this plugin."
860
+ msgstr ""
861
+
862
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:92
863
+ msgid "Security Strength Meter"
864
+ msgstr ""
865
+
866
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:121
867
+ msgid "Total Achievable Points: "
868
+ msgstr ""
869
+
870
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:123
871
+ msgid "Current Score of Your Site: "
872
+ msgstr ""
873
+
874
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:133
875
+ msgid "Security Points Breakdown"
876
+ msgstr ""
877
+
878
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:174
879
+ msgid "Spread the Word"
880
+ msgstr ""
881
+
882
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:177
883
+ msgid ""
884
+ "We are working hard to make your WordPress site more secure. Please support "
885
+ "us, here is how:"
886
+ msgstr ""
887
+
888
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:193
889
+ msgid "Critical Feature Status"
890
+ msgstr ""
891
+
892
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:197
893
+ msgid ""
894
+ "Below is the current status of the critical features that you should "
895
+ "activate on your site to achieve a minimum level of recommended security"
896
+ msgstr ""
897
+
898
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:201
899
+ msgid "Admin Username"
900
+ msgstr ""
901
+
902
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:216
903
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:25
904
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:42
905
+ msgid "Login Lockdown"
906
+ msgstr ""
907
+
908
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:231
909
+ msgid "File Permission"
910
+ msgstr ""
911
+
912
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:246
913
+ msgid "Basic Firewall"
914
+ msgstr ""
915
+
916
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:264
917
+ msgid "Last 5 Logins"
918
+ msgstr ""
919
+
920
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:281
921
+ msgid "No data found!"
922
+ msgstr ""
923
+
924
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:285
925
+ msgid "Last 5 logins summary:"
926
+ msgstr ""
927
+
928
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:289
929
+ msgid "User"
930
+ msgstr ""
931
+
932
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:290
933
+ msgid "Date"
934
+ msgstr ""
935
+
936
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:291
937
+ msgid "IP"
938
+ msgstr ""
939
+
940
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:312
941
+ msgid "Maintenance Mode Status"
942
+ msgstr ""
943
+
944
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:316
945
+ msgid ""
946
+ "Maintenance mode is currently enabled. Remember to turn it off when you are "
947
+ "done"
948
+ msgstr ""
949
+
950
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:319
951
+ msgid "Maintenance mode is currently off."
952
+ msgstr ""
953
+
954
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:323
955
+ msgid "Maintenance Mode"
956
+ msgstr ""
957
+
958
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:345
959
+ msgid "Cookie Based Brute Prevention"
960
+ msgstr ""
961
+
962
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:348
963
+ msgid "Cookie-Based Brute Force"
964
+ msgstr ""
965
+
966
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:352
967
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:380
968
+ #, php-format
969
+ msgid "The %s feature is currently active."
970
+ msgstr ""
971
+
972
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:353
973
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:381
974
+ msgid "Your new WordPress login URL is now:"
975
+ msgstr ""
976
+
977
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:413
978
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:29
979
+ msgid "Logged In Users"
980
+ msgstr ""
981
+
982
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:423
983
+ msgid "Number of users currently logged in site-wide is:"
984
+ msgstr ""
985
+
986
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:424
987
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:446
988
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:474
989
+ #, php-format
990
+ msgid "Go to the %s menu to see more details"
991
+ msgstr ""
992
+
993
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:429
994
+ msgid "There are no other site-wide users currently logged in."
995
+ msgstr ""
996
+
997
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:445
998
+ msgid "Number of users currently logged into your site (including you) is:"
999
+ msgstr ""
1000
+
1001
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:451
1002
+ msgid "There are no other users currently logged in."
1003
+ msgstr ""
1004
+
1005
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:468
1006
+ msgid "There are no IP addresses currently locked out."
1007
+ msgstr ""
1008
+
1009
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:473
1010
+ msgid "Number of temporarily locked out IP addresses: "
1011
+ msgstr ""
1012
+
1013
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:516
1014
+ msgid "Site Info"
1015
+ msgstr ""
1016
+
1017
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:518
1018
+ msgid "Plugin Version"
1019
+ msgstr ""
1020
+
1021
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:519
1022
+ msgid "WP Version"
1023
+ msgstr ""
1024
+
1025
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:521
1026
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:523
1027
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:619
1028
+ msgid "Version"
1029
+ msgstr ""
1030
+
1031
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:522
1032
+ msgid "Table Prefix"
1033
+ msgstr ""
1034
+
1035
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:524
1036
+ msgid "Session Save Path"
1037
+ msgstr ""
1038
+
1039
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:526
1040
+ msgid "Server Name"
1041
+ msgstr ""
1042
+
1043
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:527
1044
+ msgid "Cookie Domain"
1045
+ msgstr ""
1046
+
1047
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:528
1048
+ msgid "Library Present"
1049
+ msgstr ""
1050
+
1051
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:529
1052
+ msgid "Debug File Write Permissions"
1053
+ msgstr ""
1054
+
1055
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:533
1056
+ msgid "PHP Info"
1057
+ msgstr ""
1058
+
1059
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:535
1060
+ msgid "PHP Version"
1061
+ msgstr ""
1062
+
1063
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:536
1064
+ msgid "PHP Memory Usage"
1065
+ msgstr ""
1066
+
1067
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:537
1068
+ msgid " MB"
1069
+ msgstr ""
1070
+
1071
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:543
1072
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:551
1073
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:559
1074
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:601
1075
+ msgid "N/A"
1076
+ msgstr ""
1077
+
1078
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:546
1079
+ msgid "PHP Memory Limit"
1080
+ msgstr ""
1081
+
1082
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:554
1083
+ msgid "PHP Max Upload Size"
1084
+ msgstr ""
1085
+
1086
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:562
1087
+ msgid "PHP Max Post Size"
1088
+ msgstr ""
1089
+
1090
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:565
1091
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:573
1092
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:582
1093
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:590
1094
+ msgid "On"
1095
+ msgstr ""
1096
+
1097
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:567
1098
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:575
1099
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:584
1100
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:592
1101
+ msgid "Off"
1102
+ msgstr ""
1103
+
1104
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:570
1105
+ msgid "PHP Safe Mode"
1106
+ msgstr ""
1107
+
1108
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:578
1109
+ msgid "PHP Allow URL fopen"
1110
+ msgstr ""
1111
+
1112
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:587
1113
+ msgid "PHP Allow URL Include"
1114
+ msgstr ""
1115
+
1116
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:595
1117
+ msgid "PHP Display Errors"
1118
+ msgstr ""
1119
+
1120
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:604
1121
+ msgid "PHP Max Script Execution Time"
1122
+ msgstr ""
1123
+
1124
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:604
1125
+ msgid "Seconds"
1126
+ msgstr ""
1127
+
1128
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:608
1129
+ msgid "Active Plugins"
1130
+ msgstr ""
1131
+
1132
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:618
1133
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:130
1134
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:149
1135
+ msgid "Name"
1136
+ msgstr ""
1137
+
1138
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:620
1139
+ msgid "Plugin URL"
1140
+ msgstr ""
1141
+
1142
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:656
1143
+ msgid "Currently Locked Out IP Addresses and Ranges"
1144
+ msgstr ""
1145
+
1146
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:26
1147
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:31
1148
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:63
1149
+ msgid "DB Backup"
1150
+ msgstr ""
1151
+
1152
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:30
1153
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:61
1154
+ msgid "DB Prefix"
1155
+ msgstr ""
1156
+
1157
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:93
1158
+ msgid "Nonce check failed for DB prefix change operation!"
1159
+ msgstr ""
1160
+
1161
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:101
1162
+ msgid ""
1163
+ "The plugin has detected that it cannot write to the wp-config.php file. This "
1164
+ "feature can only be used if the plugin can successfully write to the wp-"
1165
+ "config.php file."
1166
+ msgstr ""
1167
+
1168
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:114
1169
+ msgid "Please enter a value for the DB prefix."
1170
+ msgstr ""
1171
+
1172
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:123
1173
+ msgid ""
1174
+ "<strong>ERROR</strong>: The table prefix can only contain numbers, letters, "
1175
+ "and underscores."
1176
+ msgstr ""
1177
+
1178
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:131
1179
+ msgid "Change Database Prefix"
1180
+ msgstr ""
1181
+
1182
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:134
1183
+ msgid ""
1184
+ "Your WordPress DB is the most important asset of your website because it "
1185
+ "contains a lot of your site's precious information."
1186
+ msgstr ""
1187
+
1188
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:135
1189
+ msgid ""
1190
+ "The DB is also a target for hackers via methods such as SQL injections and "
1191
+ "malicious and automated code which targets certain tables."
1192
+ msgstr ""
1193
+
1194
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:136
1195
+ msgid ""
1196
+ "One way to add a layer of protection for your DB is to change the default "
1197
+ "WordPress table prefix from \"wp_\" to something else which will be "
1198
+ "difficult for hackers to guess."
1199
+ msgstr ""
1200
+
1201
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:137
1202
+ msgid ""
1203
+ "This feature allows you to easily change the prefix to a value of your "
1204
+ "choice or to a random value set by this plugin."
1205
+ msgstr ""
1206
+
1207
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:143
1208
+ msgid "DB Prefix Options"
1209
+ msgstr ""
1210
+
1211
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:154
1212
+ #, php-format
1213
+ msgid "It is recommended that you perform a %s before using this feature"
1214
+ msgstr ""
1215
+
1216
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:163
1217
+ msgid "Current DB Table Prefix"
1218
+ msgstr ""
1219
+
1220
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:169
1221
+ msgid ""
1222
+ "Your site is currently using the default WordPress DB prefix value of \"wp_"
1223
+ "\". \n"
1224
+ " To increase your site's security you should "
1225
+ "consider changing the DB prefix value to another value."
1226
+ msgstr ""
1227
+
1228
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:176
1229
+ msgid "Generate New DB Table Prefix"
1230
+ msgstr ""
1231
+
1232
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:179
1233
+ msgid ""
1234
+ "Check this if you want the plugin to generate a random 6 character string "
1235
+ "for the table prefix"
1236
+ msgstr ""
1237
+
1238
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:180
1239
+ msgid "OR"
1240
+ msgstr ""
1241
+
1242
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:182
1243
+ msgid ""
1244
+ "Choose your own DB prefix by specifying a string which contains letters and/"
1245
+ "or numbers and/or underscores. Example: xyz_"
1246
+ msgstr ""
1247
+
1248
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:186
1249
+ msgid "Change DB Prefix"
1250
+ msgstr ""
1251
+
1252
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:207
1253
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:86
1254
+ msgid "Nonce check failed for manual DB backup operation!"
1255
+ msgstr ""
1256
+
1257
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:224
1258
+ msgid ""
1259
+ "DB Backup was successfully completed! You will receive the backup file via "
1260
+ "email if you have enabled \"Send Backup File Via Email\", otherwise you can "
1261
+ "retrieve it via FTP from the following directory:"
1262
+ msgstr ""
1263
+
1264
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:226
1265
+ msgid "Your DB Backup File location: "
1266
+ msgstr ""
1267
+
1268
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:234
1269
+ msgid "DB Backup failed. Please check the permissions of the backup directory."
1270
+ msgstr ""
1271
+
1272
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:251
1273
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:135
1274
+ msgid ""
1275
+ "You entered a non numeric value for the \"backup time interval\" field. It "
1276
+ "has been set to the default value."
1277
+ msgstr ""
1278
+
1279
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:258
1280
+ msgid ""
1281
+ "You entered a non numeric value for the \"number of backup files to keep\" "
1282
+ "field. It has been set to the default value."
1283
+ msgstr ""
1284
+
1285
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:265
1286
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:165
1287
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:117
1288
+ msgid ""
1289
+ "You have entered an incorrect email address format. It has been set to your "
1290
+ "WordPress admin email as default."
1291
+ msgstr ""
1292
+
1293
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:298
1294
+ msgid "Manual Backup"
1295
+ msgstr ""
1296
+
1297
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:304
1298
+ msgid "To create a new DB backup just click on the button below."
1299
+ msgstr ""
1300
+
1301
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:307
1302
+ msgid "Create DB Backup Now"
1303
+ msgstr ""
1304
+
1305
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:311
1306
+ msgid "Automated Scheduled Backups"
1307
+ msgstr ""
1308
+
1309
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:323
1310
+ msgid "Enable Automated Scheduled Backups"
1311
+ msgstr ""
1312
+
1313
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:326
1314
+ msgid ""
1315
+ "Check this if you want the system to automatically generate backups "
1316
+ "periodically based on the settings below"
1317
+ msgstr ""
1318
+
1319
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:330
1320
+ msgid "Backup Time Interval"
1321
+ msgstr ""
1322
+
1323
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:333
1324
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:281
1325
+ msgid "Hours"
1326
+ msgstr ""
1327
+
1328
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:334
1329
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:282
1330
+ msgid "Days"
1331
+ msgstr ""
1332
+
1333
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:335
1334
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:283
1335
+ msgid "Weeks"
1336
+ msgstr ""
1337
+
1338
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:337
1339
+ msgid "Set the value for how often you would like an automated backup to occur"
1340
+ msgstr ""
1341
+
1342
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:341
1343
+ msgid "Number of Backup Files To Keep"
1344
+ msgstr ""
1345
+
1346
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:343
1347
+ msgid ""
1348
+ "Thie field allows you to choose the number of backup files you would like to "
1349
+ "keep in the backup directory"
1350
+ msgstr ""
1351
+
1352
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:347
1353
+ msgid "Send Backup File Via Email"
1354
+ msgstr ""
1355
+
1356
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:350
1357
+ msgid ""
1358
+ "Check this if you want the system to email you the backup file after a DB "
1359
+ "backup has been performed"
1360
+ msgstr ""
1361
+
1362
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:352
1363
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:327
1364
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:235
1365
+ msgid "Enter an email address"
1366
+ msgstr ""
1367
+
1368
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:383
1369
+ msgid "Error - Could not get tables or no tables found!"
1370
+ msgstr ""
1371
+
1372
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:387
1373
+ msgid "Starting DB prefix change operations....."
1374
+ msgstr ""
1375
+
1376
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:389
1377
+ #, php-format
1378
+ msgid ""
1379
+ "Your WordPress system has a total of %s tables and your new DB prefix will "
1380
+ "be: %s"
1381
+ msgstr ""
1382
+
1383
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:395
1384
+ #: all-in-one-wp-security/classes/wp-security-utility.php:206
1385
+ msgid ""
1386
+ "Failed to make a backup of the wp-config.php file. This operation will not "
1387
+ "go ahead."
1388
+ msgstr ""
1389
+
1390
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:399
1391
+ msgid "A backup copy of your wp-config.php file was created successfully!"
1392
+ msgstr ""
1393
+
1394
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:421
1395
+ #, php-format
1396
+ msgid "%s table name update failed"
1397
+ msgstr ""
1398
+
1399
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:433
1400
+ #, php-format
1401
+ msgid "Please change the prefix manually for the above tables to: %s"
1402
+ msgstr ""
1403
+
1404
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:436
1405
+ #, php-format
1406
+ msgid "%s tables had their prefix updated successfully!"
1407
+ msgstr ""
1408
+
1409
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:452
1410
+ msgid "wp-config.php file was updated successfully!"
1411
+ msgstr ""
1412
+
1413
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:455
1414
+ #, php-format
1415
+ msgid ""
1416
+ "The \"wp-config.php\" file was not able to be modified. Please modify this "
1417
+ "file manually using your favourite editor and search \n"
1418
+ " for variable \"$table_prefix\" and assign the following "
1419
+ "value to that variable: %s"
1420
+ msgstr ""
1421
+
1422
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:468
1423
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:490
1424
+ #, php-format
1425
+ msgid "Update of table %s failed: unable to change %s to %s"
1426
+ msgstr ""
1427
+
1428
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:472
1429
+ msgid ""
1430
+ "The options table records which had references to the old DB prefix were "
1431
+ "updated successfully!"
1432
+ msgstr ""
1433
+
1434
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:494
1435
+ #, php-format
1436
+ msgid ""
1437
+ "The %s table records which had references to the old DB prefix were updated "
1438
+ "successfully!"
1439
+ msgstr ""
1440
+
1441
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:523
1442
+ #, php-format
1443
+ msgid ""
1444
+ "Error updating user_meta table where new meta_key = %s, old meta_key = %s "
1445
+ "and user_id = %s."
1446
+ msgstr ""
1447
+
1448
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:528
1449
+ msgid ""
1450
+ "The usermeta table records which had references to the old DB prefix were "
1451
+ "updated successfully!"
1452
+ msgstr ""
1453
+
1454
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:530
1455
+ msgid "DB prefix change tasks have been completed."
1456
+ msgstr ""
1457
+
1458
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:24
1459
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:107
1460
+ msgid "File Change Detection"
1461
+ msgstr ""
1462
+
1463
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:25
1464
+ msgid "Malware Scan"
1465
+ msgstr ""
1466
+
1467
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:26
1468
+ msgid "DB Scan"
1469
+ msgstr ""
1470
+
1471
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:95
1472
+ msgid "There have been no file changes since the last scan."
1473
+ msgstr ""
1474
+
1475
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:105
1476
+ msgid "Nonce check failed for manual file change detection scan operation!"
1477
+ msgstr ""
1478
+
1479
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:112
1480
+ msgid ""
1481
+ "The plugin has detected that this is your first file change detection scan. "
1482
+ "The file details from this scan will be used to detect file changes for "
1483
+ "future scans!"
1484
+ msgstr ""
1485
+
1486
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:114
1487
+ msgid "Scan Complete - There were no file changes detected!"
1488
+ msgstr ""
1489
+
1490
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:203
1491
+ msgid ""
1492
+ "NEW SCAN COMPLETED: The plugin has detected that you have made changes to "
1493
+ "the \"File Types To Ignore\" or \"Files To Ignore\" fields.\n"
1494
+ " In order to ensure that future scan results are "
1495
+ "accurate, the old scan data has been refreshed."
1496
+ msgstr ""
1497
+
1498
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:213
1499
+ msgid ""
1500
+ "All In One WP Security & Firewall has detected that there was a change in "
1501
+ "your host's files."
1502
+ msgstr ""
1503
+
1504
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:215
1505
+ msgid "View Scan Details & Clear This Message"
1506
+ msgstr ""
1507
+
1508
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:224
1509
+ msgid ""
1510
+ "If given an opportunity hackers can insert their code or files into your "
1511
+ "system which they can then use to carry out malicious acts on your site."
1512
+ msgstr ""
1513
+
1514
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:225
1515
+ msgid ""
1516
+ "Being informed of any changes in your files can be a good way to quickly "
1517
+ "prevent a hacker from causing damage to your website."
1518
+ msgstr ""
1519
+
1520
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:226
1521
+ msgid ""
1522
+ "In general, WordPress core and plugin files and file types such as \".php\" "
1523
+ "or \".js\" should not change often and when they do, it is important that "
1524
+ "you are made aware when a change occurs and which file was affected."
1525
+ msgstr ""
1526
+
1527
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:227
1528
+ msgid ""
1529
+ "The \"File Change Detection Feature\" will notify you of any file change "
1530
+ "which occurs on your system, including the addition and deletion of files by "
1531
+ "performing a regular automated or manual scan of your system's files."
1532
+ msgstr ""
1533
+
1534
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:228
1535
+ msgid ""
1536
+ "This feature also allows you to exclude certain files or folders from the "
1537
+ "scan in cases where you know that they change often as part of their normal "
1538
+ "operation. (For example log files and certain caching plugin files may "
1539
+ "change often and hence you may choose to exclude such files from the file "
1540
+ "change detection scan)"
1541
+ msgstr ""
1542
+
1543
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:233
1544
+ msgid "Manual File Change Detection Scan"
1545
+ msgstr ""
1546
+
1547
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:239
1548
+ msgid ""
1549
+ "To perform a manual file change detection scan click on the button below."
1550
+ msgstr ""
1551
+
1552
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:242
1553
+ msgid "Perform Scan Now"
1554
+ msgstr ""
1555
+
1556
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:246
1557
+ msgid "View Last Saved File Change Results"
1558
+ msgstr ""
1559
+
1560
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:252
1561
+ msgid ""
1562
+ "Click the button below to view the saved file change results from the last "
1563
+ "scan."
1564
+ msgstr ""
1565
+
1566
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:255
1567
+ msgid "View Last File Change"
1568
+ msgstr ""
1569
+
1570
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:259
1571
+ msgid "File Change Detection Settings"
1572
+ msgstr ""
1573
+
1574
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:271
1575
+ msgid "Enable Automated File Change Detection Scan"
1576
+ msgstr ""
1577
+
1578
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:274
1579
+ msgid ""
1580
+ "Check this if you want the system to automatically/periodically scan your "
1581
+ "files to check for file changes based on the settings below"
1582
+ msgstr ""
1583
+
1584
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:278
1585
+ msgid "Scan Time Interval"
1586
+ msgstr ""
1587
+
1588
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:285
1589
+ msgid "Set the value for how often you would like a scan to occur"
1590
+ msgstr ""
1591
+
1592
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:289
1593
+ msgid "File Types To Ignore"
1594
+ msgstr ""
1595
+
1596
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:292
1597
+ msgid ""
1598
+ "Enter each file type or extension on a new line which you wish to exclude "
1599
+ "from the file change detection scan."
1600
+ msgstr ""
1601
+
1602
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:296
1603
+ msgid ""
1604
+ "You can exclude file types from the scan which would not normally pose any "
1605
+ "security threat if they were changed. These can include things such as image "
1606
+ "files."
1607
+ msgstr ""
1608
+
1609
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:297
1610
+ msgid ""
1611
+ "Example: If you want the scanner to ignore files of type jpg, png, and bmp, "
1612
+ "then you would enter the following:"
1613
+ msgstr ""
1614
+
1615
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:298
1616
+ msgid "jpg"
1617
+ msgstr ""
1618
+
1619
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:299
1620
+ msgid "png"
1621
+ msgstr ""
1622
+
1623
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:300
1624
+ msgid "bmp"
1625
+ msgstr ""
1626
+
1627
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:306
1628
+ msgid "Files/Directories To Ignore"
1629
+ msgstr ""
1630
+
1631
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:309
1632
+ msgid ""
1633
+ "Enter each file or directory on a new line which you wish to exclude from "
1634
+ "the file change detection scan."
1635
+ msgstr ""
1636
+
1637
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:313
1638
+ msgid ""
1639
+ "You can exclude specific files/directories from the scan which would not "
1640
+ "normally pose any security threat if they were changed. These can include "
1641
+ "things such as log files."
1642
+ msgstr ""
1643
+
1644
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:314
1645
+ msgid ""
1646
+ "Example: If you want the scanner to ignore certain files in different "
1647
+ "directories or whole directories, then you would enter the following:"
1648
+ msgstr ""
1649
+
1650
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:315
1651
+ msgid "cache/config/master.php"
1652
+ msgstr ""
1653
+
1654
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:316
1655
+ msgid "somedirectory"
1656
+ msgstr ""
1657
+
1658
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:322
1659
+ msgid "Send Email When Change Detected"
1660
+ msgstr ""
1661
+
1662
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:325
1663
+ msgid ""
1664
+ "Check this if you want the system to email you if a file change was detected"
1665
+ msgstr ""
1666
+
1667
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:343
1668
+ msgid "What is Malware?"
1669
+ msgstr ""
1670
+
1671
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:344
1672
+ msgid ""
1673
+ "The word Malware stands for Malicious Software. It can consist of things "
1674
+ "like trojan horses, adware, worms, spyware and any other undesirable code "
1675
+ "which a hacker will try to inject into your website."
1676
+ msgstr ""
1677
+
1678
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:345
1679
+ msgid ""
1680
+ "Often when malware code has been inserted into your site you will normally "
1681
+ "not notice anything out of the ordinary based on appearances, but it can "
1682
+ "have a dramatic effect on your site's search ranking."
1683
+ msgstr ""
1684
+
1685
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:346
1686
+ msgid ""
1687
+ "This is because the bots and spiders from search engines such as Google have "
1688
+ "the capability to detect malware when they are indexing the pages on your "
1689
+ "site, and consequently they can blacklist your website which will in turn "
1690
+ "affect your search rankings."
1691
+ msgstr ""
1692
+
1693
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:350
1694
+ msgid "Scanning For Malware"
1695
+ msgstr ""
1696
+
1697
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:351
1698
+ msgid ""
1699
+ "Due to the constantly changing and complex nature of Malware, scanning for "
1700
+ "such things using a standalone plugin will not work reliably. This is "
1701
+ "something best done via an external scan of your site regularly."
1702
+ msgstr ""
1703
+
1704
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:352
1705
+ msgid ""
1706
+ "This is why we have created an easy-to-use scanning service which is hosted "
1707
+ "off our own server which will scan your site for malware once every day and "
1708
+ "notify you if it finds anything."
1709
+ msgstr ""
1710
+
1711
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:353
1712
+ msgid "When you sign up for this service you will get the following:"
1713
+ msgstr ""
1714
+
1715
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:355
1716
+ msgid "Automatic Daily Scan of 1 Website"
1717
+ msgstr ""
1718
+
1719
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:356
1720
+ msgid "Automatic Malware & Blacklist Monitoring"
1721
+ msgstr ""
1722
+
1723
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:357
1724
+ msgid "Automatic Email Alerting"
1725
+ msgstr ""
1726
+
1727
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:358
1728
+ msgid "Site uptime monitoring"
1729
+ msgstr ""
1730
+
1731
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:359
1732
+ msgid "Site response time monitoring"
1733
+ msgstr ""
1734
+
1735
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:360
1736
+ msgid "Malware Cleanup"
1737
+ msgstr ""
1738
+
1739
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:361
1740
+ msgid "Blacklist Removal"
1741
+ msgstr ""
1742
+
1743
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:362
1744
+ msgid "No Contract (Cancel Anytime)"
1745
+ msgstr ""
1746
+
1747
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:364
1748
+ #, php-format
1749
+ msgid "To learn more please %s."
1750
+ msgstr ""
1751
+
1752
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:374
1753
+ msgid ""
1754
+ "This feature performs a basic database scan which will look for any common "
1755
+ "suspicious-looking strings and javascript and html code in some of the "
1756
+ "Wordpress core tables."
1757
+ msgstr ""
1758
+
1759
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:391
1760
+ msgid "Nonce check failed for manual db scan operation!"
1761
+ msgstr ""
1762
+
1763
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:402
1764
+ msgid ""
1765
+ "This feature will perform a basic database scan which will look for any "
1766
+ "common suspicious-looking strings and javascript and html code in some of "
1767
+ "the Wordpress core tables."
1768
+ msgstr ""
1769
+
1770
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:403
1771
+ msgid ""
1772
+ "If the scan finds anything it will list all \"potentially\" malicious "
1773
+ "results but it is up to you to verify whether a result is a genuine example "
1774
+ "of a hacking attack or a false positive."
1775
+ msgstr ""
1776
+
1777
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:404
1778
+ msgid ""
1779
+ "As well as scanning for generic strings commonly used in malicious cases, "
1780
+ "this feature will also scan for some of the known \"pharma\" hack entries "
1781
+ "and if it finds any it will automatically delete them."
1782
+ msgstr ""
1783
+
1784
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:405
1785
+ msgid ""
1786
+ "The WordPress core tables scanned by this feature include: posts, postmeta, "
1787
+ "comments, links, users, usermeta, and options tables."
1788
+ msgstr ""
1789
+
1790
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:410
1791
+ msgid "Database Scan"
1792
+ msgstr ""
1793
+
1794
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:416
1795
+ msgid "To perform a database scan click on the button below."
1796
+ msgstr ""
1797
+
1798
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:419
1799
+ msgid "Perform DB Scan"
1800
+ msgstr ""
1801
+
1802
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:462
1803
+ msgid "Latest File Change Scan Results"
1804
+ msgstr ""
1805
+
1806
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:471
1807
+ msgid "The following files were added to your host."
1808
+ msgstr ""
1809
+
1810
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:474
1811
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:495
1812
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:519
1813
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:27
1814
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:28
1815
+ msgid "File"
1816
+ msgstr ""
1817
+
1818
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:475
1819
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:496
1820
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:520
1821
+ msgid "File Size"
1822
+ msgstr ""
1823
+
1824
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:476
1825
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:497
1826
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:521
1827
+ msgid "File Modified"
1828
+ msgstr ""
1829
+
1830
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:492
1831
+ msgid "The following files were removed from your host."
1832
+ msgstr ""
1833
+
1834
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:516
1835
+ msgid "The following files were changed on your host."
1836
+ msgstr ""
1837
+
1838
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:26
1839
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:67
1840
+ msgid "File Permissions"
1841
+ msgstr ""
1842
+
1843
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:27
1844
+ msgid "PHP File Editing"
1845
+ msgstr ""
1846
+
1847
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:28
1848
+ msgid "WP File Access"
1849
+ msgstr ""
1850
+
1851
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:29
1852
+ msgid "Host System Logs"
1853
+ msgstr ""
1854
+
1855
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:96
1856
+ #, php-format
1857
+ msgid "The permissions for %s were succesfully changed to %s"
1858
+ msgstr ""
1859
+
1860
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:100
1861
+ #, php-format
1862
+ msgid "Unable to change permissions for %s!"
1863
+ msgstr ""
1864
+
1865
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:106
1866
+ msgid "File Permissions Scan"
1867
+ msgstr ""
1868
+
1869
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:109
1870
+ msgid ""
1871
+ "Your WordPress file and folder permission settings govern the accessability "
1872
+ "and read/write privileges of the files and folders which make up your WP "
1873
+ "installation."
1874
+ msgstr ""
1875
+
1876
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:110
1877
+ msgid ""
1878
+ "Your WP installation already comes with reasonably secure file permission "
1879
+ "settings for the filesystem."
1880
+ msgstr ""
1881
+
1882
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:111
1883
+ msgid ""
1884
+ "However, sometimes people or other plugins modify the various permission "
1885
+ "settings of certain core WP folders or files such that they end up making "
1886
+ "their site less secure because they chose the wrong permission values."
1887
+ msgstr ""
1888
+
1889
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:112
1890
+ msgid ""
1891
+ "This feature will scan the critical WP core folders and files and will "
1892
+ "highlight any permission settings which are insecure."
1893
+ msgstr ""
1894
+
1895
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:118
1896
+ msgid "WP Directory and File Permissions Scan Results"
1897
+ msgstr ""
1898
+
1899
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:131
1900
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:150
1901
+ msgid "File/Folder"
1902
+ msgstr ""
1903
+
1904
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:132
1905
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:151
1906
+ msgid "Current Permissions"
1907
+ msgstr ""
1908
+
1909
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:133
1910
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:152
1911
+ msgid "Recommended Permissions"
1912
+ msgstr ""
1913
+
1914
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:134
1915
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:153
1916
+ msgid "Recommended Action"
1917
+ msgstr ""
1918
+
1919
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:191
1920
+ msgid "Your PHP file editing settings were saved successfully."
1921
+ msgstr ""
1922
+
1923
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:195
1924
+ msgid ""
1925
+ "Operation failed! Unable to modify or make a backup of wp-config.php file!"
1926
+ msgstr ""
1927
+
1928
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:201
1929
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:69
1930
+ msgid "File Editing"
1931
+ msgstr ""
1932
+
1933
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:204
1934
+ msgid ""
1935
+ "The Wordpress Dashboard by default allows administrators to edit PHP files, "
1936
+ "such as plugin and theme files."
1937
+ msgstr ""
1938
+
1939
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:205
1940
+ msgid ""
1941
+ "This is often the first tool an attacker will use if able to login, since it "
1942
+ "allows code execution."
1943
+ msgstr ""
1944
+
1945
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:206
1946
+ msgid ""
1947
+ "This feature will disable the ability for people to edit PHP files via the "
1948
+ "dashboard."
1949
+ msgstr ""
1950
+
1951
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:212
1952
+ msgid "Disable PHP File Editing"
1953
+ msgstr ""
1954
+
1955
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:224
1956
+ msgid "Disable Ability To Edit PHP Files"
1957
+ msgstr ""
1958
+
1959
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:227
1960
+ msgid ""
1961
+ "Check this if you want to remove the ability for people to edit PHP files "
1962
+ "via the WP dashboard"
1963
+ msgstr ""
1964
+
1965
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:271
1966
+ msgid ""
1967
+ "You have successfully saved the Prevent Access to Default WP Files "
1968
+ "configuration."
1969
+ msgstr ""
1970
+
1971
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:280
1972
+ msgid "WordPress Files"
1973
+ msgstr ""
1974
+
1975
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:283
1976
+ #, php-format
1977
+ msgid ""
1978
+ "This feature allows you to prevent access to files such as %s, %s and %s "
1979
+ "which are delivered with all WP installations."
1980
+ msgstr ""
1981
+
1982
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:284
1983
+ msgid ""
1984
+ "By preventing access to these files you are hiding some key pieces of "
1985
+ "information (such as WordPress version info) from potential hackers."
1986
+ msgstr ""
1987
+
1988
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:289
1989
+ msgid "Prevent Access to Default WP Files"
1990
+ msgstr ""
1991
+
1992
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:300
1993
+ msgid "Prevent Access to WP Default Install Files"
1994
+ msgstr ""
1995
+
1996
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:303
1997
+ msgid ""
1998
+ "Check this if you want to prevent access to readme.html, license.txt and wp-"
1999
+ "config-sample.php."
2000
+ msgstr ""
2001
+
2002
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:307
2003
+ msgid "Save Setting"
2004
+ msgstr ""
2005
+
2006
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:331
2007
+ msgid "System Logs"
2008
+ msgstr ""
2009
+
2010
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:334
2011
+ msgid ""
2012
+ "Sometimes your hosting platform will produce error or warning logs in a file "
2013
+ "called \"error_log\"."
2014
+ msgstr ""
2015
+
2016
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:335
2017
+ msgid ""
2018
+ "Depending on the nature and cause of the error or warning, your hosting "
2019
+ "server can create multiple instances of this file in numerous directory "
2020
+ "locations of your WordPress installation."
2021
+ msgstr ""
2022
+
2023
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:336
2024
+ msgid ""
2025
+ "By occassionally viewing the contents of these logs files you can keep "
2026
+ "informed of any underlying problems on your system which you might need to "
2027
+ "address."
2028
+ msgstr ""
2029
+
2030
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:342
2031
+ msgid "View System Logs"
2032
+ msgstr ""
2033
+
2034
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:347
2035
+ msgid "Enter System Log File Name"
2036
+ msgstr ""
2037
+
2038
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:349
2039
+ msgid "Enter your system log file name. (Defaults to error_log)"
2040
+ msgstr ""
2041
+
2042
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:352
2043
+ msgid "View Latest System Logs"
2044
+ msgstr ""
2045
+
2046
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:354
2047
+ msgid "Loading..."
2048
+ msgstr ""
2049
+
2050
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:371
2051
+ msgid "No system logs were found!"
2052
+ msgstr ""
2053
+
2054
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:424
2055
+ msgid "Set Recommended Permissions"
2056
+ msgstr ""
2057
+
2058
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:430
2059
+ msgid "No Action Required"
2060
+ msgstr ""
2061
+
2062
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:470
2063
+ #, php-format
2064
+ msgid "Showing latest entries of error_log file: %s"
2065
+ msgstr ""
2066
+
2067
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:27
2068
+ msgid "Basic Firewall Rules"
2069
+ msgstr ""
2070
+
2071
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:28
2072
+ msgid "Additional Firewall Rules"
2073
+ msgstr ""
2074
+
2075
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:29
2076
+ msgid "5G Blacklist Firewall Rules"
2077
+ msgstr ""
2078
+
2079
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:30
2080
+ msgid "Internet Bots"
2081
+ msgstr ""
2082
+
2083
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:31
2084
+ msgid "Prevent Hotlinks"
2085
+ msgstr ""
2086
+
2087
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:32
2088
+ msgid "404 Detection"
2089
+ msgstr ""
2090
+
2091
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:115
2092
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:663
2093
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:104
2094
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:317
2095
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:96
2096
+ msgid "Settings were successfully saved"
2097
+ msgstr ""
2098
+
2099
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:124
2100
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:503
2101
+ msgid "Firewall Settings"
2102
+ msgstr ""
2103
+
2104
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:131
2105
+ #, php-format
2106
+ msgid ""
2107
+ "This should not have any impact on your site's general functionality but if "
2108
+ "you wish you can take a %s of your .htaccess file before proceeding."
2109
+ msgstr ""
2110
+
2111
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:132
2112
+ msgid ""
2113
+ "The features in this tab allow you to activate some basic firewall security "
2114
+ "protection rules for your site."
2115
+ msgstr ""
2116
+
2117
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:133
2118
+ msgid ""
2119
+ "The firewall functionality is achieved via the insertion of special code "
2120
+ "into your currently active .htaccess file."
2121
+ msgstr ""
2122
+
2123
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:143
2124
+ msgid "Attention:"
2125
+ msgstr ""
2126
+
2127
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:144
2128
+ msgid "Currently the "
2129
+ msgstr ""
2130
+
2131
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:144
2132
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:191
2133
+ msgid "Enable Pingback Protection"
2134
+ msgstr ""
2135
+
2136
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:144
2137
+ msgid " is active."
2138
+ msgstr ""
2139
+
2140
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:145
2141
+ msgid ""
2142
+ "Please beware that if you are using the WordPress iOS App, then you will "
2143
+ "need to deactivate this feature in order for the app to work properly."
2144
+ msgstr ""
2145
+
2146
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:153
2147
+ msgid "Basic Firewall Settings"
2148
+ msgstr ""
2149
+
2150
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:161
2151
+ msgid "Enable Basic Firewall Protection"
2152
+ msgstr ""
2153
+
2154
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:164
2155
+ msgid "Check this if you want to apply basic firewall protection to your site."
2156
+ msgstr ""
2157
+
2158
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:168
2159
+ msgid ""
2160
+ "This setting will implement the following basic firewall protection "
2161
+ "mechanisms on your site:"
2162
+ msgstr ""
2163
+
2164
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:169
2165
+ msgid "1) Protect your htaccess file by denying access to it."
2166
+ msgstr ""
2167
+
2168
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:170
2169
+ msgid "2) Disable the server signature."
2170
+ msgstr ""
2171
+
2172
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:171
2173
+ msgid "3) Limit file upload size (10MB)."
2174
+ msgstr ""
2175
+
2176
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:172
2177
+ msgid "4) Protect your wp-config.php file by denying access to it."
2178
+ msgstr ""
2179
+
2180
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:173
2181
+ msgid ""
2182
+ "The above firewall features will be applied via your .htaccess file and "
2183
+ "should not affect your site's overall functionality."
2184
+ msgstr ""
2185
+
2186
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:174
2187
+ msgid ""
2188
+ "You are still advised to take a backup of your active .htaccess file just in "
2189
+ "case."
2190
+ msgstr ""
2191
+
2192
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:183
2193
+ msgid "WordPress Pingback Vulnerability Protection"
2194
+ msgstr ""
2195
+
2196
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:194
2197
+ msgid ""
2198
+ "Check this if you are not using the WP XML-RPC functionality and you want to "
2199
+ "enable protection against WordPress pingback vulnerabilities."
2200
+ msgstr ""
2201
+
2202
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:198
2203
+ msgid ""
2204
+ "This setting will add a directive in your .htaccess to disable access to the "
2205
+ "WordPress xmlrpc.php file which is responsible for the XML-RPC functionality "
2206
+ "such as pingbacks in WordPress."
2207
+ msgstr ""
2208
+
2209
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:199
2210
+ msgid ""
2211
+ "Hackers can exploit various pingback vulnerabilities in the WordPress XML-"
2212
+ "RPC API in a number of ways such as:"
2213
+ msgstr ""
2214
+
2215
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:200
2216
+ msgid "1) Denial of Service (DoS) attacks"
2217
+ msgstr ""
2218
+
2219
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:201
2220
+ msgid "2) Hacking internal routers."
2221
+ msgstr ""
2222
+
2223
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:202
2224
+ msgid "3) Scanning ports in internal networks to get info from various hosts."
2225
+ msgstr ""
2226
+
2227
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:203
2228
+ msgid ""
2229
+ "Apart from the security protection benefit, this feature may also help "
2230
+ "reduce load on your server, particularly if your site currently has a lot of "
2231
+ "unwanted traffic hitting the XML-RPC API on your installation."
2232
+ msgstr ""
2233
+
2234
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:204
2235
+ msgid ""
2236
+ "NOTE: You should only enable this feature if you are not currently using the "
2237
+ "XML-RPC functionality on your WordPress installation."
2238
+ msgstr ""
2239
+
2240
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:211
2241
+ msgid "Save Basic Firewall Settings"
2242
+ msgstr ""
2243
+
2244
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:283
2245
+ msgid ""
2246
+ "You have successfully saved the Additional Firewall Protection configuration"
2247
+ msgstr ""
2248
+
2249
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:297
2250
+ msgid "Additional Firewall Protection"
2251
+ msgstr ""
2252
+
2253
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:301
2254
+ #, php-format
2255
+ msgid ""
2256
+ "Due to the nature of the code being inserted to the .htaccess file, this "
2257
+ "feature may break some functionality for certain plugins and you are "
2258
+ "therefore advised to take a %s of .htaccess before applying this "
2259
+ "configuration."
2260
+ msgstr ""
2261
+
2262
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:303
2263
+ msgid ""
2264
+ "This feature allows you to activate more advanced firewall settings to your "
2265
+ "site."
2266
+ msgstr ""
2267
+
2268
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:304
2269
+ msgid ""
2270
+ "The advanced firewall rules are applied via the insertion of special code to "
2271
+ "your currently active .htaccess file."
2272
+ msgstr ""
2273
+
2274
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:313
2275
+ msgid "Listing of Directory Contents"
2276
+ msgstr ""
2277
+
2278
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:322
2279
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:91
2280
+ msgid "Disable Index Views"
2281
+ msgstr ""
2282
+
2283
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:325
2284
+ msgid "Check this if you want to disable directory and file listing."
2285
+ msgstr ""
2286
+
2287
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:330
2288
+ msgid ""
2289
+ "By default, an Apache server will allow the listing of the contents of a "
2290
+ "directory if it doesn't contain an index.php file."
2291
+ msgstr ""
2292
+
2293
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:332
2294
+ msgid "This feature will prevent the listing of contents for all directories."
2295
+ msgstr ""
2296
+
2297
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:334
2298
+ msgid ""
2299
+ "NOTE: In order for this feature to work \"AllowOverride\" of the Indexes "
2300
+ "directive must be enabled in your httpd.conf file. Ask your hosting provider "
2301
+ "to check this if you don't have access to httpd.conf"
2302
+ msgstr ""
2303
+
2304
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:343
2305
+ msgid "Trace and Track"
2306
+ msgstr ""
2307
+
2308
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:352
2309
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:92
2310
+ msgid "Disable Trace and Track"
2311
+ msgstr ""
2312
+
2313
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:355
2314
+ msgid "Check this if you want to disable trace and track."
2315
+ msgstr ""
2316
+
2317
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:360
2318
+ msgid ""
2319
+ "HTTP Trace attack (XST) can be used to return header requests and grab "
2320
+ "cookies and other information."
2321
+ msgstr ""
2322
+
2323
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:362
2324
+ msgid ""
2325
+ "This hacking technique is usually used together with cross site scripting "
2326
+ "attacks (XSS)."
2327
+ msgstr ""
2328
+
2329
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:364
2330
+ msgid ""
2331
+ "Disabling trace and track on your site will help prevent HTTP Trace attacks."
2332
+ msgstr ""
2333
+
2334
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:373
2335
+ msgid "Proxy Comment Posting"
2336
+ msgstr ""
2337
+
2338
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:383
2339
+ msgid "Forbid Proxy Comment Posting"
2340
+ msgstr ""
2341
+
2342
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:386
2343
+ msgid "Check this if you want to forbid proxy comment posting."
2344
+ msgstr ""
2345
+
2346
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:391
2347
+ msgid ""
2348
+ "This setting will deny any requests that use a proxy server when posting "
2349
+ "comments."
2350
+ msgstr ""
2351
+
2352
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:392
2353
+ msgid ""
2354
+ "By forbidding proxy comments you are in effect eliminating some SPAM and "
2355
+ "other proxy requests."
2356
+ msgstr ""
2357
+
2358
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:401
2359
+ msgid "Bad Query Strings"
2360
+ msgstr ""
2361
+
2362
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:411
2363
+ msgid "Deny Bad Query Strings"
2364
+ msgstr ""
2365
+
2366
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:414
2367
+ msgid "This will help protect you against malicious queries via XSS."
2368
+ msgstr ""
2369
+
2370
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:419
2371
+ msgid ""
2372
+ "This feature will write rules in your .htaccess file to prevent malicious "
2373
+ "string attacks on your site using XSS."
2374
+ msgstr ""
2375
+
2376
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:420
2377
+ msgid ""
2378
+ "NOTE: Some of these strings might be used for plugins or themes and hence "
2379
+ "this might break some functionality."
2380
+ msgstr ""
2381
+
2382
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:421
2383
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:451
2384
+ msgid ""
2385
+ "You are therefore strongly advised to take a backup of your active .htaccess "
2386
+ "file before applying this feature."
2387
+ msgstr ""
2388
+
2389
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:430
2390
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:95
2391
+ msgid "Advanced Character String Filter"
2392
+ msgstr ""
2393
+
2394
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:440
2395
+ msgid "Enable Advanced Character String Filter"
2396
+ msgstr ""
2397
+
2398
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:443
2399
+ msgid "This will block bad character matches from XSS."
2400
+ msgstr ""
2401
+
2402
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:448
2403
+ msgid ""
2404
+ "This is an advanced character string filter to prevent malicious string "
2405
+ "attacks on your site coming from Cross Site Scripting (XSS)."
2406
+ msgstr ""
2407
+
2408
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:449
2409
+ msgid ""
2410
+ "This setting matches for common malicious string patterns and exploits and "
2411
+ "will produce a 403 error for the hacker attempting the query."
2412
+ msgstr ""
2413
+
2414
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:450
2415
+ msgid "NOTE: Some strings for this setting might break some functionality."
2416
+ msgstr ""
2417
+
2418
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:459
2419
+ msgid "Save Additional Firewall Settings"
2420
+ msgstr ""
2421
+
2422
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:494
2423
+ msgid "You have successfully saved the 5G Firewall Protection configuration"
2424
+ msgstr ""
2425
+
2426
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:507
2427
+ #, php-format
2428
+ msgid ""
2429
+ "This feature allows you to activate the 5G firewall security protection "
2430
+ "rules designed and produced by %s."
2431
+ msgstr ""
2432
+
2433
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:508
2434
+ msgid ""
2435
+ "The 5G Blacklist is a simple, flexible blacklist that helps reduce the "
2436
+ "number of malicious URL requests that hit your website."
2437
+ msgstr ""
2438
+
2439
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:509
2440
+ msgid ""
2441
+ "The added advantage of applying the 5G firewall to your site is that it has "
2442
+ "been tested and confirmed by the people at PerishablePress.com to be an "
2443
+ "optimal and least disruptive set of .htaccess security rules for general WP "
2444
+ "sites running on an Apache server or similar."
2445
+ msgstr ""
2446
+
2447
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:510
2448
+ #, php-format
2449
+ msgid ""
2450
+ "Therefore the 5G firewall rules should not have any impact on your site's "
2451
+ "general functionality but if you wish you can take a %s of your .htaccess "
2452
+ "file before proceeding."
2453
+ msgstr ""
2454
+
2455
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:516
2456
+ msgid "5G Blacklist/Firewall Settings"
2457
+ msgstr ""
2458
+
2459
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:528
2460
+ msgid "Enable 5G Firewall Protection"
2461
+ msgstr ""
2462
+
2463
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:531
2464
+ msgid ""
2465
+ "Check this if you want to apply the 5G Blacklist firewall protection from "
2466
+ "perishablepress.com to your site."
2467
+ msgstr ""
2468
+
2469
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:535
2470
+ msgid ""
2471
+ "This setting will implement the 5G security firewall protection mechanisms "
2472
+ "on your site which include the following things:"
2473
+ msgstr ""
2474
+
2475
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:536
2476
+ msgid "1) Block forbidden characters commonly used in exploitative attacks."
2477
+ msgstr ""
2478
+
2479
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:537
2480
+ msgid "2) Block malicious encoded URL characters such as the \".css(\" string."
2481
+ msgstr ""
2482
+
2483
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:538
2484
+ msgid ""
2485
+ "3) Guard against the common patterns and specific exploits in the root "
2486
+ "portion of targeted URLs."
2487
+ msgstr ""
2488
+
2489
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:539
2490
+ msgid ""
2491
+ "4) Stop attackers from manipulating query strings by disallowing illicit "
2492
+ "characters."
2493
+ msgstr ""
2494
+
2495
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:540
2496
+ msgid "....and much more."
2497
+ msgstr ""
2498
+
2499
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:546
2500
+ msgid "Save 5G Firewall Settings"
2501
+ msgstr ""
2502
+
2503
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:577
2504
+ msgid "The Internet bot settings were successfully saved"
2505
+ msgstr ""
2506
+
2507
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:581
2508
+ msgid "Internet Bot Settings"
2509
+ msgstr ""
2510
+
2511
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:588
2512
+ #, php-format
2513
+ msgid "%s?"
2514
+ msgstr ""
2515
+
2516
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:590
2517
+ msgid ""
2518
+ "A bot is a piece of software which runs on the Internet and performs "
2519
+ "automatic tasks. For example when Google indexes your pages it uses "
2520
+ "automatic bots to achieve this task."
2521
+ msgstr ""
2522
+
2523
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:591
2524
+ msgid ""
2525
+ "A lot of bots are legitimate and non-malicous but not all bots are good and "
2526
+ "often you will find some which try to impersonate legitimate bots such as "
2527
+ "\"Googlebot\" but in reality they have nohing to do with Google at all."
2528
+ msgstr ""
2529
+
2530
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:592
2531
+ msgid ""
2532
+ "Although most of the bots out there are relatively harmless sometimes "
2533
+ "website owners want to have more control over which bots they allow into "
2534
+ "their site."
2535
+ msgstr ""
2536
+
2537
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:593
2538
+ msgid ""
2539
+ "This feature allows you to block bots which are impersonating as a Googlebot "
2540
+ "but actually aren't. (In other words they are fake Google bots)"
2541
+ msgstr ""
2542
+
2543
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:594
2544
+ msgid ""
2545
+ "Googlebots have a unique indentity which cannot easily be forged and this "
2546
+ "feature will indentify any fake Google bots and block them from reading your "
2547
+ "site's pages."
2548
+ msgstr ""
2549
+
2550
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:600
2551
+ msgid ""
2552
+ "<strong>Attention</strong>: Sometimes non-malicious Internet organizations "
2553
+ "might have bots which impersonate as a \"Googlebot\"."
2554
+ msgstr ""
2555
+
2556
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:601
2557
+ msgid ""
2558
+ "Just be aware that if you activate this feature the plugin will block all "
2559
+ "bots which use the \"Googlebot\" string in their User Agent information but "
2560
+ "are NOT officially from Google (irrespective whether they are malicious or "
2561
+ "not)."
2562
+ msgstr ""
2563
+
2564
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:602
2565
+ msgid ""
2566
+ "All other bots from other organizations such as \"Yahoo\", \"Bing\" etc will "
2567
+ "not be affected by this feature."
2568
+ msgstr ""
2569
+
2570
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:608
2571
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:618
2572
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:97
2573
+ msgid "Block Fake Googlebots"
2574
+ msgstr ""
2575
+
2576
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:621
2577
+ msgid "Check this if you want to block all fake Googlebots."
2578
+ msgstr ""
2579
+
2580
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:625
2581
+ msgid ""
2582
+ "This feature will check if the User Agent information of a bot contains the "
2583
+ "string \"Googlebot\"."
2584
+ msgstr ""
2585
+
2586
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:626
2587
+ msgid ""
2588
+ "It will then perform a few tests to verify if the bot is legitimately from "
2589
+ "Google and if so it will allow the bot to proceed."
2590
+ msgstr ""
2591
+
2592
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:627
2593
+ msgid ""
2594
+ "If the bot fails the checks then the plugin will mark it as being a fake "
2595
+ "Googlebot and it will block it"
2596
+ msgstr ""
2597
+
2598
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:634
2599
+ msgid "Save Internet Bot Settings"
2600
+ msgstr ""
2601
+
2602
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:671
2603
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:693
2604
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:32
2605
+ msgid "Prevent Image Hotlinking"
2606
+ msgstr ""
2607
+
2608
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:674
2609
+ msgid ""
2610
+ "A Hotlink is where someone displays an image on their site which is actually "
2611
+ "located on your site by using a direct link to the source of the image on "
2612
+ "your server."
2613
+ msgstr ""
2614
+
2615
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:675
2616
+ msgid ""
2617
+ "Due to the fact that the image being displayed on the other person's site is "
2618
+ "coming from your server, this can cause leaking of bandwidth and resources "
2619
+ "for you because your server has to present this image for the people viewing "
2620
+ "it on someone elses's site."
2621
+ msgstr ""
2622
+
2623
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:676
2624
+ msgid ""
2625
+ "This feature will prevent people from directly hotlinking images from your "
2626
+ "site's pages by writing some directives in your .htaccess file."
2627
+ msgstr ""
2628
+
2629
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:681
2630
+ msgid "Prevent Hotlinking"
2631
+ msgstr ""
2632
+
2633
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:696
2634
+ msgid "Check this if you want to prevent hotlinking to images on your site."
2635
+ msgstr ""
2636
+
2637
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:716
2638
+ msgid "Nonce check failed for delete all 404 event logs operation!"
2639
+ msgstr ""
2640
+
2641
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:727
2642
+ msgid "404 Detection Feature - Delete all 404 event logs operation failed!"
2643
+ msgstr ""
2644
+
2645
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:731
2646
+ msgid "All 404 event logs were deleted from the DB successfully!"
2647
+ msgstr ""
2648
+
2649
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:757
2650
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:110
2651
+ msgid ""
2652
+ "You entered a non numeric value for the lockout time length field. It has "
2653
+ "been set to the default value."
2654
+ msgstr ""
2655
+
2656
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:763
2657
+ msgid ""
2658
+ "You entered an incorrect format for the \"Redirect URL\" field. It has been "
2659
+ "set to the default value."
2660
+ msgstr ""
2661
+
2662
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:795
2663
+ msgid "404 Detection Configuration"
2664
+ msgstr ""
2665
+
2666
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:798
2667
+ msgid ""
2668
+ "A 404 or Not Found error occurs when somebody tries to access a non-existent "
2669
+ "page on your website."
2670
+ msgstr ""
2671
+
2672
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:799
2673
+ msgid ""
2674
+ "Typically, most 404 errors happen quite innocently when people have mis-"
2675
+ "typed a URL or used an old link to page which doesn't exist anymore."
2676
+ msgstr ""
2677
+
2678
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:800
2679
+ msgid ""
2680
+ "However, in some cases you may find many repeated 404 errors which occur in "
2681
+ "a relatively short space of time and from the same IP address which are all "
2682
+ "attempting to access a variety of non-existent page URLs."
2683
+ msgstr ""
2684
+
2685
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:801
2686
+ msgid ""
2687
+ "Such behaviour can mean that a hacker might be trying to find a particular "
2688
+ "page or URL for sinister reasons."
2689
+ msgstr ""
2690
+
2691
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:802
2692
+ msgid ""
2693
+ "This feature allows you to monitor all 404 events which occur on your site, "
2694
+ "and it also gives you the option of blocking IP addresses for a configured "
2695
+ "length of time."
2696
+ msgstr ""
2697
+
2698
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:803
2699
+ msgid ""
2700
+ "If you want to temporarily block an IP address, simply click the \"Temp Block"
2701
+ "\" link for the applicable IP entry in the \"404 Event Logs\" table below."
2702
+ msgstr ""
2703
+
2704
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:808
2705
+ msgid "404 Detection Options"
2706
+ msgstr ""
2707
+
2708
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:820
2709
+ msgid "Enable IP Lockout For 404 Events"
2710
+ msgstr ""
2711
+
2712
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:823
2713
+ msgid "Check this if you want to enable the lockout of selected IP addresses."
2714
+ msgstr ""
2715
+
2716
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:828
2717
+ msgid ""
2718
+ "When you enable this checkbox, all 404 events on your site will be logged in "
2719
+ "the table below. You can monitor these events and select some IP addresses "
2720
+ "to be blocked in the table. All IP addresses you select to be blocked from "
2721
+ "the \"404 Event Logs\" table section will be unable to access your site."
2722
+ msgstr ""
2723
+
2724
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:836
2725
+ msgid "Enable 404 Event Logging"
2726
+ msgstr ""
2727
+
2728
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:839
2729
+ msgid "Check this if you want to enable the logging of 404 events"
2730
+ msgstr ""
2731
+
2732
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:844
2733
+ msgid "Time Length of 404 Lockout (min)"
2734
+ msgstr ""
2735
+
2736
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:846
2737
+ msgid ""
2738
+ "Set the length of time for which a blocked IP address will be prevented from "
2739
+ "visiting your site"
2740
+ msgstr ""
2741
+
2742
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:851
2743
+ msgid ""
2744
+ "You can lock any IP address which is recorded in the \"404 Event Logs\" "
2745
+ "table section below."
2746
+ msgstr ""
2747
+
2748
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:853
2749
+ msgid ""
2750
+ "To temporarily lock an IP address, hover over the ID column and click the "
2751
+ "\"Temp Block\" link for the applicable IP entry."
2752
+ msgstr ""
2753
+
2754
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:860
2755
+ msgid "404 Lockout Redirect URL"
2756
+ msgstr ""
2757
+
2758
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:862
2759
+ msgid "A blocked visitor will be automatically redirected to this URL."
2760
+ msgstr ""
2761
+
2762
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:871
2763
+ msgid "404 Event Logs"
2764
+ msgstr ""
2765
+
2766
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:893
2767
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:902
2768
+ msgid "Delete All 404 Event Logs"
2769
+ msgstr ""
2770
+
2771
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:899
2772
+ msgid "Click this button if you wish to purge all 404 event logs from the DB."
2773
+ msgstr ""
2774
+
2775
+ #: all-in-one-wp-security/admin/wp-security-list-404.php:105
2776
+ #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:79
2777
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:86
2778
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:82
2779
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:93
2780
+ #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:78
2781
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:82
2782
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:93
2783
+ msgid "Please select some records using the checkboxes"
2784
+ msgstr ""
2785
+
2786
+ #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:107
2787
+ #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:107
2788
+ msgid "The selected entries were deleted successfully!"
2789
+ msgstr ""
2790
+
2791
+ #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:120
2792
+ #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:119
2793
+ msgid "The selected entry was deleted successfully!"
2794
+ msgstr ""
2795
+
2796
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:139
2797
+ msgid ""
2798
+ "The selected IP addresses were saved in the blacklist configuration settings."
2799
+ msgstr ""
2800
+
2801
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:153
2802
+ msgid ""
2803
+ "The .htaccess file was successfully modified to include the selected IP "
2804
+ "addresses."
2805
+ msgstr ""
2806
+
2807
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:159
2808
+ msgid ""
2809
+ "NOTE: The .htaccess file was not modified because you have disabled the "
2810
+ "\"Enable IP or User Agent Blacklisting\" check box."
2811
+ msgstr ""
2812
+
2813
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:160
2814
+ #, php-format
2815
+ msgid ""
2816
+ "To block these IP addresses you will need to enable the above flag in the %s "
2817
+ "menu"
2818
+ msgstr ""
2819
+
2820
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:117
2821
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:527
2822
+ msgid "The selected IP entries were unlocked successfully!"
2823
+ msgstr ""
2824
+
2825
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:126
2826
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:536
2827
+ msgid "The selected IP entry was unlocked successfully!"
2828
+ msgstr ""
2829
+
2830
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:127
2831
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:153
2832
+ msgid "Your account is now active"
2833
+ msgstr ""
2834
+
2835
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:128
2836
+ msgid "Your account with username:"
2837
+ msgstr ""
2838
+
2839
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:128
2840
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:154
2841
+ msgid " is now active"
2842
+ msgstr ""
2843
+
2844
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:137
2845
+ msgid "The selected accounts were approved successfully!"
2846
+ msgstr ""
2847
+
2848
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:141
2849
+ msgid "The following accounts failed to update successfully: "
2850
+ msgstr ""
2851
+
2852
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:149
2853
+ msgid "The selected account was approved successfully!"
2854
+ msgstr ""
2855
+
2856
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:154
2857
+ msgid "Your account with username: "
2858
+ msgstr ""
2859
+
2860
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:180
2861
+ msgid "The selected accounts were deleted successfully!"
2862
+ msgstr ""
2863
+
2864
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:188
2865
+ msgid "The selected account was deleted successfully!"
2866
+ msgstr ""
2867
+
2868
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:22
2869
+ msgid "Visitor Lockout"
2870
+ msgstr ""
2871
+
2872
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:88
2873
+ msgid "Site lockout feature settings saved!"
2874
+ msgstr ""
2875
+
2876
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:93
2877
+ msgid "General Visitor Lockout"
2878
+ msgstr ""
2879
+
2880
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:99
2881
+ msgid ""
2882
+ "This feature allows you to put your site into \"maintenance mode\" by "
2883
+ "locking down the front-end to all visitors except logged in users with super "
2884
+ "admin privileges."
2885
+ msgstr ""
2886
+
2887
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:100
2888
+ msgid ""
2889
+ "Locking your site down to general visitors can be useful if you are "
2890
+ "investigating some issues on your site or perhaps you might be doing some "
2891
+ "maintenance and wish to keep out all traffic for security reasons."
2892
+ msgstr ""
2893
+
2894
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:105
2895
+ msgid "Enable Front-end Lockout"
2896
+ msgstr ""
2897
+
2898
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:108
2899
+ msgid ""
2900
+ "Check this if you want all visitors except those who are logged in as "
2901
+ "administrator to be locked out of the front-end of your site."
2902
+ msgstr ""
2903
+
2904
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:112
2905
+ msgid "Enter a Message:"
2906
+ msgstr ""
2907
+
2908
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:124
2909
+ msgid ""
2910
+ "Enter a message you wish to display to visitors when your site is in "
2911
+ "maintenance mode."
2912
+ msgstr ""
2913
+
2914
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:131
2915
+ msgid "Save Site Lockout Settings"
2916
+ msgstr ""
2917
+
2918
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:23
2919
+ msgid "Copy Protection"
2920
+ msgstr ""
2921
+
2922
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:24
2923
+ msgid "Frames"
2924
+ msgstr ""
2925
+
2926
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:88
2927
+ msgid "Copy Protection feature settings saved!"
2928
+ msgstr ""
2929
+
2930
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:93
2931
+ msgid "Disable The Ability To Copy Text"
2932
+ msgstr ""
2933
+
2934
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:99
2935
+ msgid ""
2936
+ "This feature allows you to disable the ability to select and copy text from "
2937
+ "your front end."
2938
+ msgstr ""
2939
+
2940
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:104
2941
+ msgid "Enable Copy Protection"
2942
+ msgstr ""
2943
+
2944
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:107
2945
+ msgid ""
2946
+ "Check this if you want to disable the \"Right Click\", \"Text Selection\" "
2947
+ "and \"Copy\" option on the front end of your site."
2948
+ msgstr ""
2949
+
2950
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:114
2951
+ msgid "Save Copy Protection Settings"
2952
+ msgstr ""
2953
+
2954
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:138
2955
+ msgid "Frame Display Prevention feature settings saved!"
2956
+ msgstr ""
2957
+
2958
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:143
2959
+ msgid "Prevent Your Site From Being Displayed In a Frame"
2960
+ msgstr ""
2961
+
2962
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:149
2963
+ msgid ""
2964
+ "This feature allows you to prevent other sites from displaying any of your "
2965
+ "content via a frame or iframe."
2966
+ msgstr ""
2967
+
2968
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:150
2969
+ msgid ""
2970
+ "When enabled, this feature will set the \"X-Frame-Options\" paramater to "
2971
+ "\"sameorigin\" in the HTTP header."
2972
+ msgstr ""
2973
+
2974
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:155
2975
+ msgid "Enable iFrame Protection"
2976
+ msgstr ""
2977
+
2978
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:158
2979
+ msgid ""
2980
+ "Check this if you want to stop other sites from displaying your content in a "
2981
+ "frame or iframe."
2982
+ msgstr ""
2983
+
2984
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:26
2985
+ msgid "General Settings"
2986
+ msgstr ""
2987
+
2988
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:29
2989
+ msgid "WP Meta Info"
2990
+ msgstr ""
2991
+
2992
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:30
2993
+ msgid "Import/Export"
2994
+ msgstr ""
2995
+
2996
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:97
2997
+ msgid "All the security features have been disabled successfully!"
2998
+ msgstr ""
2999
+
3000
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:101
3001
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:128
3002
+ msgid ""
3003
+ "Could not write to the .htaccess file. Please restore your .htaccess file "
3004
+ "manually using the restore functionality in the \".htaccess File\"."
3005
+ msgstr ""
3006
+
3007
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:106
3008
+ msgid ""
3009
+ "Could not write to the wp-config.php. Please restore your wp-config.php file "
3010
+ "manually using the restore functionality in the \"wp-config.php File\"."
3011
+ msgstr ""
3012
+
3013
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:124
3014
+ msgid "All firewall rules have been disabled successfully!"
3015
+ msgstr ""
3016
+
3017
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:138
3018
+ msgid "WP Security Plugin"
3019
+ msgstr ""
3020
+
3021
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:140
3022
+ msgid ""
3023
+ "Thank you for using our WordPress security plugin. There are a lot of "
3024
+ "security features in this plugin."
3025
+ msgstr ""
3026
+
3027
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:141
3028
+ msgid ""
3029
+ "Go through each menu items and enable the security options to add more "
3030
+ "security to your site. Start by activating the basic features first."
3031
+ msgstr ""
3032
+
3033
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:142
3034
+ msgid ""
3035
+ "It is a good practice to take a backup of your .htaccess file, database and "
3036
+ "wp-config.php file before activating the security features. This plugin has "
3037
+ "options that you can use to backup those resources easily."
3038
+ msgstr ""
3039
+
3040
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:145
3041
+ msgid "Backup your database"
3042
+ msgstr ""
3043
+
3044
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:146
3045
+ msgid "Backup .htaccess file"
3046
+ msgstr ""
3047
+
3048
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:147
3049
+ msgid "Backup wp-config.php file"
3050
+ msgstr ""
3051
+
3052
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:153
3053
+ msgid "Disable Security Features"
3054
+ msgstr ""
3055
+
3056
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:159
3057
+ msgid ""
3058
+ "If you think that some plugin functionality on your site is broken due to a "
3059
+ "security feature you enabled in this plugin, then use the following option "
3060
+ "to turn off all the security features of this plugin."
3061
+ msgstr ""
3062
+
3063
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:163
3064
+ msgid "Disable All Security Features"
3065
+ msgstr ""
3066
+
3067
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:169
3068
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:179
3069
+ msgid "Disable All Firewall Rules"
3070
+ msgstr ""
3071
+
3072
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:175
3073
+ msgid ""
3074
+ "This feature will disable all firewall rules which are currently active in "
3075
+ "this plugin and it will also delete these rules from your .htacess file. Use "
3076
+ "it if you think one of the firewall rules is causing an issue on your site."
3077
+ msgstr ""
3078
+
3079
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:208
3080
+ msgid ""
3081
+ "Your .htaccess file was successfully backed up! Using an FTP program go to "
3082
+ "the \"/wp-content/aiowps_backups\" directory to save a copy of the file to "
3083
+ "your computer."
3084
+ msgstr ""
3085
+
3086
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:214
3087
+ msgid ""
3088
+ "htaccess file rename failed during backup. Please check your root directory "
3089
+ "for the backup file using FTP."
3090
+ msgstr ""
3091
+
3092
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:220
3093
+ msgid "htaccess backup failed."
3094
+ msgstr ""
3095
+
3096
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:235
3097
+ msgid "Please choose a .htaccess to restore from."
3098
+ msgstr ""
3099
+
3100
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:251
3101
+ msgid ""
3102
+ "htaccess file restore failed. Please attempt to restore the .htaccess "
3103
+ "manually using FTP."
3104
+ msgstr ""
3105
+
3106
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:255
3107
+ msgid "Your .htaccess file has successfully been restored!"
3108
+ msgstr ""
3109
+
3110
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:261
3111
+ msgid ""
3112
+ "htaccess Restore operation failed! Please check the contents of the file you "
3113
+ "are trying to restore from."
3114
+ msgstr ""
3115
+
3116
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:267
3117
+ msgid ".htaccess File Operations"
3118
+ msgstr ""
3119
+
3120
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:270
3121
+ msgid ""
3122
+ "Your \".htaccess\" file is a key component of your website's security and it "
3123
+ "can be modified to implement various levels of protection mechanisms."
3124
+ msgstr ""
3125
+
3126
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:271
3127
+ msgid ""
3128
+ "This feature allows you to backup and save your currently active .htaccess "
3129
+ "file should you need to re-use the the backed up file in the future."
3130
+ msgstr ""
3131
+
3132
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:272
3133
+ msgid ""
3134
+ "You can also restore your site's .htaccess settings using a backed up ."
3135
+ "htaccess file."
3136
+ msgstr ""
3137
+
3138
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:286
3139
+ msgid "Save the current .htaccess file"
3140
+ msgstr ""
3141
+
3142
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:290
3143
+ msgid ""
3144
+ "Click the button below to backup and save the currently active .htaccess "
3145
+ "file."
3146
+ msgstr ""
3147
+
3148
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:291
3149
+ msgid "Backup .htaccess File"
3150
+ msgstr ""
3151
+
3152
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:295
3153
+ msgid "Restore from a backed up .htaccess file"
3154
+ msgstr ""
3155
+
3156
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:301
3157
+ msgid ".htaccess file to restore from"
3158
+ msgstr ""
3159
+
3160
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:307
3161
+ msgid ""
3162
+ "After selecting your file, click the button below to restore your site using "
3163
+ "the backed up htaccess file (htaccess_backup.txt)."
3164
+ msgstr ""
3165
+
3166
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:313
3167
+ msgid "Restore .htaccess File"
3168
+ msgstr ""
3169
+
3170
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:317
3171
+ msgid "View Contents of the currently active .htaccess file"
3172
+ msgstr ""
3173
+
3174
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:346
3175
+ msgid "Please choose a wp-config.php file to restore from."
3176
+ msgstr ""
3177
+
3178
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:362
3179
+ msgid ""
3180
+ "wp-config.php file restore failed. Please attempt to restore this file "
3181
+ "manually using FTP."
3182
+ msgstr ""
3183
+
3184
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:366
3185
+ msgid "Your wp-config.php file has successfully been restored!"
3186
+ msgstr ""
3187
+
3188
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:372
3189
+ msgid ""
3190
+ "wp-config.php Restore operation failed! Please check the contents of the "
3191
+ "file you are trying to restore from."
3192
+ msgstr ""
3193
+
3194
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:378
3195
+ msgid "wp-config.php File Operations"
3196
+ msgstr ""
3197
+
3198
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:381
3199
+ msgid ""
3200
+ "Your \"wp-config.php\" file is one of the most important in your WordPress "
3201
+ "installation. It is a primary configuration file and contains crucial things "
3202
+ "such as details of your database and other critical components."
3203
+ msgstr ""
3204
+
3205
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:382
3206
+ msgid ""
3207
+ "This feature allows you to backup and save your currently active wp-config."
3208
+ "php file should you need to re-use the the backed up file in the future."
3209
+ msgstr ""
3210
+
3211
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:383
3212
+ msgid ""
3213
+ "You can also restore your site's wp-config.php settings using a backed up wp-"
3214
+ "config.php file."
3215
+ msgstr ""
3216
+
3217
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:397
3218
+ msgid "Save the current wp-config.php file"
3219
+ msgstr ""
3220
+
3221
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:401
3222
+ msgid ""
3223
+ "Click the button below to backup and download the contents of the currently "
3224
+ "active wp-config.php file."
3225
+ msgstr ""
3226
+
3227
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:402
3228
+ msgid "Backup wp-config.php File"
3229
+ msgstr ""
3230
+
3231
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:407
3232
+ msgid "Restore from a backed up wp-config file"
3233
+ msgstr ""
3234
+
3235
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:413
3236
+ msgid "wp-config file to restore from"
3237
+ msgstr ""
3238
+
3239
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:419
3240
+ msgid ""
3241
+ "After selecting your file click the button below to restore your site using "
3242
+ "the backed up wp-config file (wp-config.php.backup.txt)."
3243
+ msgstr ""
3244
+
3245
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:425
3246
+ msgid "Restore wp-config File"
3247
+ msgstr ""
3248
+
3249
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:429
3250
+ msgid "View Contents of the currently active wp-config.php file"
3251
+ msgstr ""
3252
+
3253
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:464
3254
+ msgid "WP Generator Meta Tag"
3255
+ msgstr ""
3256
+
3257
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:467
3258
+ msgid ""
3259
+ "Wordpress generator automatically adds some meta information inside the "
3260
+ "\"head\" tags of every page on your site's front end. Below is an example of "
3261
+ "this:"
3262
+ msgstr ""
3263
+
3264
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:469
3265
+ msgid ""
3266
+ "The above meta information shows which version of WordPress your site is "
3267
+ "currently running and thus can help hackers or crawlers scan your site to "
3268
+ "see if you have an older version of WordPress or one with a known exploit."
3269
+ msgstr ""
3270
+
3271
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:470
3272
+ msgid ""
3273
+ "This feature will allow you to remove the WP generator meta info from your "
3274
+ "site's pages."
3275
+ msgstr ""
3276
+
3277
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:476
3278
+ msgid "WP Generator Meta Info"
3279
+ msgstr ""
3280
+
3281
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:488
3282
+ msgid "Remove WP Generator Meta Info"
3283
+ msgstr ""
3284
+
3285
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:491
3286
+ msgid ""
3287
+ "Check this if you want to remove the meta info produced by WP Generator from "
3288
+ "all pages"
3289
+ msgstr ""
3290
+
3291
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:517
3292
+ msgid "Please choose a file to import your settings from."
3293
+ msgstr ""
3294
+
3295
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:549
3296
+ msgid "Import AIOWPS settings from "
3297
+ msgstr ""
3298
+
3299
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:555
3300
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:599
3301
+ msgid ""
3302
+ "The deletion of the import file failed. Please delete this file manually via "
3303
+ "the media menu for security purposes."
3304
+ msgstr ""
3305
+
3306
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:557
3307
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:601
3308
+ msgid ""
3309
+ "The file you uploaded was also deleted for security purposes because it "
3310
+ "contains security settings details."
3311
+ msgstr ""
3312
+
3313
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:572
3314
+ msgid "Your AIOWPS settings were successfully imported via file input."
3315
+ msgstr ""
3316
+
3317
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:573
3318
+ msgid ""
3319
+ "The deletion of the import file failed. Please delete this file manually via "
3320
+ "the media menu for security purposes because it contains security settings "
3321
+ "details."
3322
+ msgstr ""
3323
+
3324
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:575
3325
+ msgid ""
3326
+ "Your AIOWPS settings were successfully imported. The file you uploaded was "
3327
+ "also deleted for security purposes because it contains security settings "
3328
+ "details."
3329
+ msgstr ""
3330
+
3331
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:578
3332
+ msgid "Your AIOWPS settings were successfully imported via text entry."
3333
+ msgstr ""
3334
+
3335
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:593
3336
+ msgid ""
3337
+ "The contents of your settings file appear invalid. Please check the contents "
3338
+ "of the file you are trying to import settings from."
3339
+ msgstr ""
3340
+
3341
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:610
3342
+ msgid "Export or Import Your AIOWPS Settings"
3343
+ msgstr ""
3344
+
3345
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:613
3346
+ msgid ""
3347
+ "This section allows you to export or import your All In One WP Security & "
3348
+ "Firewall settings."
3349
+ msgstr ""
3350
+
3351
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:614
3352
+ msgid ""
3353
+ "This can be handy if you wanted to save time by applying the settings from "
3354
+ "one site to another site."
3355
+ msgstr ""
3356
+
3357
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:615
3358
+ msgid ""
3359
+ "NOTE: Before importing, it is your responsibility to know what settings you "
3360
+ "are trying to import. Importing settings blindly can cause you to be locked "
3361
+ "out of your site."
3362
+ msgstr ""
3363
+
3364
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:616
3365
+ msgid ""
3366
+ "For Example: If a settings item relies on the domain URL then it may not "
3367
+ "work correctly when imported into a site with a different domain."
3368
+ msgstr ""
3369
+
3370
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:622
3371
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:631
3372
+ msgid "Export AIOWPS Settings"
3373
+ msgstr ""
3374
+
3375
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:628
3376
+ msgid ""
3377
+ "To export your All In One WP Security & Firewall settings click the button "
3378
+ "below."
3379
+ msgstr ""
3380
+
3381
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:635
3382
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:660
3383
+ msgid "Import AIOWPS Settings"
3384
+ msgstr ""
3385
+
3386
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:641
3387
+ msgid ""
3388
+ "Use this section to import your All In One WP Security & Firewall settings "
3389
+ "from a file. Alternatively, copy/paste the contents of your import file into "
3390
+ "the textarea below."
3391
+ msgstr ""
3392
+
3393
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:642
3394
+ msgid "Import File"
3395
+ msgstr ""
3396
+
3397
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:648
3398
+ msgid ""
3399
+ "After selecting your file, click the button below to apply the settings to "
3400
+ "your site."
3401
+ msgstr ""
3402
+
3403
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:654
3404
+ msgid "Copy/Paste Import Data"
3405
+ msgstr ""
3406
+
3407
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:24
3408
+ msgid "Comment SPAM"
3409
+ msgstr ""
3410
+
3411
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:25
3412
+ msgid "Comment SPAM IP Monitoring"
3413
+ msgstr ""
3414
+
3415
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:26
3416
+ msgid "BuddyPress"
3417
+ msgstr ""
3418
+
3419
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:113
3420
+ msgid "Comment SPAM Settings"
3421
+ msgstr ""
3422
+
3423
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:118
3424
+ msgid "Add Captcha To Comments Form"
3425
+ msgstr ""
3426
+
3427
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:122
3428
+ msgid ""
3429
+ "This feature will add a simple math captcha field in the WordPress comments "
3430
+ "form."
3431
+ msgstr ""
3432
+
3433
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:123
3434
+ msgid ""
3435
+ "Adding a captcha field in the comment form is a simple way of greatly "
3436
+ "reducing SPAM comments from bots without using .htaccess rules."
3437
+ msgstr ""
3438
+
3439
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:132
3440
+ msgid "Enable Captcha On Comment Forms"
3441
+ msgstr ""
3442
+
3443
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:135
3444
+ msgid "Check this if you want to insert a captcha field on the comment forms"
3445
+ msgstr ""
3446
+
3447
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:142
3448
+ msgid "Block Spambot Comments"
3449
+ msgstr ""
3450
+
3451
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:146
3452
+ msgid ""
3453
+ "A large portion of WordPress blog comment SPAM is mainly produced by "
3454
+ "automated bots and not necessarily by humans. "
3455
+ msgstr ""
3456
+
3457
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:147
3458
+ msgid ""
3459
+ "This feature will greatly minimize the useless and unecessary traffic and "
3460
+ "load on your server resulting from SPAM comments by blocking all comment "
3461
+ "requests which do not originate from your domain."
3462
+ msgstr ""
3463
+
3464
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:148
3465
+ msgid ""
3466
+ "In other words, if the comment was not submitted by a human who physically "
3467
+ "submitted the comment on your site, the request will be blocked."
3468
+ msgstr ""
3469
+
3470
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:164
3471
+ msgid "Block Spambots From Posting Comments"
3472
+ msgstr ""
3473
+
3474
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:167
3475
+ msgid ""
3476
+ "Check this if you want to apply a firewall rule which will block comments "
3477
+ "originating from spambots."
3478
+ msgstr ""
3479
+
3480
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:171
3481
+ msgid ""
3482
+ "This feature will implement a firewall rule to block all comment attempts "
3483
+ "which do not originate from your domain."
3484
+ msgstr ""
3485
+
3486
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:172
3487
+ msgid ""
3488
+ "A legitimate comment is one which is submitted by a human who physically "
3489
+ "fills out the comment form and clicks the submit button. For such events, "
3490
+ "the HTTP_REFERRER is always set to your own domain."
3491
+ msgstr ""
3492
+
3493
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:173
3494
+ msgid ""
3495
+ "A comment submitted by a spambot is done by directly calling the comments."
3496
+ "php file, which usually means that the HTTP_REFERRER value is not your "
3497
+ "domain and often times empty."
3498
+ msgstr ""
3499
+
3500
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:174
3501
+ msgid ""
3502
+ "This feature will check and block comment requests which are not referred by "
3503
+ "your domain thus greatly reducing your overall blog SPAM and PHP requests "
3504
+ "done by the server to process these comments."
3505
+ msgstr ""
3506
+
3507
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:201
3508
+ msgid "Nonce check failed for list SPAM comment IPs!"
3509
+ msgstr ""
3510
+
3511
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:207
3512
+ msgid ""
3513
+ "You entered a non numeric value for the minimum SPAM comments per IP field. "
3514
+ "It has been set to the default value."
3515
+ msgstr ""
3516
+
3517
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:219
3518
+ #, php-format
3519
+ msgid ""
3520
+ "Displaying results for IP addresses which have posted a minimum of %s SPAM "
3521
+ "comments"
3522
+ msgstr ""
3523
+
3524
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:235
3525
+ msgid ""
3526
+ "This tab displays a list of the IP addresses of the people or bots who have "
3527
+ "left SPAM comments on your site."
3528
+ msgstr ""
3529
+
3530
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:236
3531
+ msgid ""
3532
+ "This information can be handy for identifying the most persistent IP "
3533
+ "addresses or ranges used by spammers."
3534
+ msgstr ""
3535
+
3536
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:237
3537
+ msgid ""
3538
+ "By inspecting the IP address data coming from spammers you will be in a "
3539
+ "better position to determine which addresses or address ranges you should "
3540
+ "block by adding them to your blacklist."
3541
+ msgstr ""
3542
+
3543
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:238
3544
+ msgid ""
3545
+ "To add one or more of the IP addresses displayed in the table below to your "
3546
+ "blacklist, simply click the \"Block\" link for the individual row or select "
3547
+ "more than one address \n"
3548
+ " using the checkboxes and then choose the \"block"
3549
+ "\" option from the Bulk Actions dropdown list and click the \"Apply\" button."
3550
+ msgstr ""
3551
+
3552
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:244
3553
+ msgid "List SPAMMER IP Addresses"
3554
+ msgstr ""
3555
+
3556
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:250
3557
+ msgid "Minimum number of SPAM comments per IP"
3558
+ msgstr ""
3559
+
3560
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:252
3561
+ msgid ""
3562
+ "This field allows you to list only those IP addresses which have been used "
3563
+ "to post X or more SPAM comments."
3564
+ msgstr ""
3565
+
3566
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:256
3567
+ msgid ""
3568
+ "Example 1: Setting this value to \"0\" or \"1\" will list ALL IP addresses "
3569
+ "which were used to submit SPAM comments."
3570
+ msgstr ""
3571
+
3572
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:257
3573
+ msgid ""
3574
+ "Example 2: Setting this value to \"5\" will list only those IP addresses "
3575
+ "which were used to submit 5 SPAM comments or more on your site."
3576
+ msgstr ""
3577
+
3578
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:264
3579
+ msgid "Find IP Addresses"
3580
+ msgstr ""
3581
+
3582
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:268
3583
+ msgid "SPAMMER IP Address Results"
3584
+ msgstr ""
3585
+
3586
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:274
3587
+ #: all-in-one-wp-security/classes/wp-security-utility.php:150
3588
+ msgid ""
3589
+ "The plugin has detected that you are using a Multi-Site WordPress "
3590
+ "installation."
3591
+ msgstr ""
3592
+
3593
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:275
3594
+ msgid "Only the \"superadmin\" can block IP addresses from the main site."
3595
+ msgstr ""
3596
+
3597
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:276
3598
+ msgid ""
3599
+ "Take note of the IP addresses you want blocked and ask the superadmin to add "
3600
+ "these to the blacklist using the \"Blacklist Manager\" on the main site."
3601
+ msgstr ""
3602
+
3603
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:321
3604
+ msgid "BuddyPress SPAM Settings"
3605
+ msgstr ""
3606
+
3607
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:326
3608
+ msgid "Add Captcha To BuddyPress Registration Form"
3609
+ msgstr ""
3610
+
3611
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:330
3612
+ msgid ""
3613
+ "This feature will add a simple math captcha field in the BuddyPress "
3614
+ "registration form."
3615
+ msgstr ""
3616
+
3617
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:331
3618
+ msgid ""
3619
+ "Adding a captcha field in the registration form is a simple way of greatly "
3620
+ "reducing SPAM signups from bots without using .htaccess rules."
3621
+ msgstr ""
3622
+
3623
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:341
3624
+ msgid "Enable Captcha On BuddyPress Registration Form"
3625
+ msgstr ""
3626
+
3627
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:344
3628
+ msgid ""
3629
+ "Check this if you want to insert a captcha field on the BuddyPress "
3630
+ "registration forms"
3631
+ msgstr ""
3632
+
3633
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:353
3634
+ msgid ""
3635
+ "BuddyPress is not active! In order to use this feature you will need to have "
3636
+ "BuddyPress installed and activated."
3637
+ msgstr ""
3638
+
3639
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:29
3640
+ msgid "WP Username"
3641
+ msgstr ""
3642
+
3643
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:30
3644
+ msgid "Display Name"
3645
+ msgstr ""
3646
+
3647
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:31
3648
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:862
3649
+ msgid "Password"
3650
+ msgstr ""
3651
+
3652
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:85
3653
+ msgid "Admin User Security"
3654
+ msgstr ""
3655
+
3656
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:88
3657
+ msgid ""
3658
+ "By default, WordPress sets the administrator username to \"admin\" at "
3659
+ "installation time."
3660
+ msgstr ""
3661
+
3662
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:89
3663
+ msgid ""
3664
+ "A lot of hackers try to take advantage of this information by attempting "
3665
+ "\"Brute Force Login Attacks\" where they repeatedly try to guess the "
3666
+ "password by using \"admin\" for username."
3667
+ msgstr ""
3668
+
3669
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:90
3670
+ msgid ""
3671
+ "From a security perspective, changing the default \"admin\" user name is one "
3672
+ "of the first and smartest things you should do on your site."
3673
+ msgstr ""
3674
+
3675
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:91
3676
+ msgid ""
3677
+ "This feature will allow you to change your default \"admin\" user name to a "
3678
+ "more secure name of your choosing."
3679
+ msgstr ""
3680
+
3681
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:98
3682
+ msgid "List of Administrator Accounts"
3683
+ msgstr ""
3684
+
3685
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:107
3686
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:36
3687
+ msgid "Change Admin Username"
3688
+ msgstr ""
3689
+
3690
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:115
3691
+ msgid ""
3692
+ "Your site currently has an account which uses the default \"admin\" "
3693
+ "username. \n"
3694
+ " It is highly recommended that you change this name to "
3695
+ "something else. \n"
3696
+ " Use the following field to change the admin username."
3697
+ msgstr ""
3698
+
3699
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:123
3700
+ msgid "New Admin Username"
3701
+ msgstr ""
3702
+
3703
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:125
3704
+ msgid "Choose a new username for admin."
3705
+ msgstr ""
3706
+
3707
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:129
3708
+ msgid "Change Username"
3709
+ msgstr ""
3710
+
3711
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:131
3712
+ msgid ""
3713
+ "NOTE: If you are currently logged in as \"admin\" you will be automatically "
3714
+ "logged out after changing your username and will be required to log back in."
3715
+ msgstr ""
3716
+
3717
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:138
3718
+ msgid "No action required! "
3719
+ msgstr ""
3720
+
3721
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:140
3722
+ msgid ""
3723
+ "Your site does not have any account which uses the default \"admin\" "
3724
+ "username. "
3725
+ msgstr ""
3726
+
3727
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:141
3728
+ msgid "This is good security practice."
3729
+ msgstr ""
3730
+
3731
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:153
3732
+ msgid "Display Name Security"
3733
+ msgstr ""
3734
+
3735
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:156
3736
+ msgid ""
3737
+ "When you submit a post or answer a comment, WordPress will usually display "
3738
+ "your \"nickname\"."
3739
+ msgstr ""
3740
+
3741
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:157
3742
+ msgid ""
3743
+ "By default the nickname is set to the login (or user) name of your account."
3744
+ msgstr ""
3745
+
3746
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:158
3747
+ msgid ""
3748
+ "From a security perspective, leaving your nickname the same as your user "
3749
+ "name is bad practice because it gives a hacker at least half of your "
3750
+ "account's login credentials."
3751
+ msgstr ""
3752
+
3753
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:159
3754
+ msgid ""
3755
+ "Therefore to further tighten your site's security you are advised to change "
3756
+ "your <strong>nickname</strong> and <strong>Display name</strong> to be "
3757
+ "different from your <strong>Username</strong>."
3758
+ msgstr ""
3759
+
3760
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:165
3761
+ msgid "Modify Accounts With Identical Login Name & Display Name"
3762
+ msgstr ""
3763
+
3764
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:174
3765
+ msgid ""
3766
+ "Your site currently has the following accounts which have an identical login "
3767
+ "name and display name."
3768
+ msgstr ""
3769
+
3770
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:175
3771
+ msgid "Click on the link to edit the settings of that particular user account"
3772
+ msgstr ""
3773
+
3774
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:190
3775
+ msgid "No action required."
3776
+ msgstr ""
3777
+
3778
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:191
3779
+ msgid ""
3780
+ "Your site does not have a user account where the display name is identical "
3781
+ "to the username."
3782
+ msgstr ""
3783
+
3784
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:202
3785
+ msgid "Password Tool"
3786
+ msgstr ""
3787
+
3788
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:205
3789
+ msgid ""
3790
+ "Poor password selection is one of the most common weak points of many sites "
3791
+ "and is usually the first thing a hacker will try to exploit when attempting "
3792
+ "to break into your site."
3793
+ msgstr ""
3794
+
3795
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:206
3796
+ msgid ""
3797
+ "Many people fall into the trap of using a simple word or series of numbers "
3798
+ "as their password. Such a predictable and simple password would take a "
3799
+ "competent hacker merely minutes to guess your password by using a simple "
3800
+ "script which cycles through the easy and most common combinations."
3801
+ msgstr ""
3802
+
3803
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:207
3804
+ msgid ""
3805
+ "The longer and more complex your password is the harder it is for hackers to "
3806
+ "\"crack\" because more complex passwords require much greater computing "
3807
+ "power and time."
3808
+ msgstr ""
3809
+
3810
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:208
3811
+ msgid ""
3812
+ "This section contains a useful password strength tool which you can use to "
3813
+ "check whether your password is sufficiently strong enough."
3814
+ msgstr ""
3815
+
3816
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:213
3817
+ msgid "Password Strength Tool"
3818
+ msgstr ""
3819
+
3820
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:218
3821
+ msgid "Start typing a password."
3822
+ msgstr ""
3823
+
3824
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:221
3825
+ msgid "It would take a desktop PC approximately"
3826
+ msgstr ""
3827
+
3828
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:222
3829
+ msgid "1 sec"
3830
+ msgstr ""
3831
+
3832
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:222
3833
+ msgid "to crack your password!"
3834
+ msgstr ""
3835
+
3836
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:227
3837
+ msgid "Password Strength"
3838
+ msgstr ""
3839
+
3840
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:243
3841
+ msgid "Nonce check failed on admin username change operation!"
3842
+ msgstr ""
3843
+
3844
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:250
3845
+ msgid "Username "
3846
+ msgstr ""
3847
+
3848
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:250
3849
+ msgid " already exists. Please enter another value. "
3850
+ msgstr ""
3851
+
3852
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:266
3853
+ msgid "The database update operation of the user account failed!"
3854
+ msgstr ""
3855
+
3856
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:293
3857
+ msgid "You entered an invalid username. Please enter another value. "
3858
+ msgstr ""
3859
+
3860
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:297
3861
+ msgid "Please enter a value for your username. "
3862
+ msgstr ""
3863
+
3864
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:304
3865
+ msgid "Username Successfully Changed!"
3866
+ msgstr ""
3867
+
3868
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:324
3869
+ msgid "Account Login Name"
3870
+ msgstr ""
3871
+
3872
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:26
3873
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:298
3874
+ msgid "Failed Login Records"
3875
+ msgstr ""
3876
+
3877
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:27
3878
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:51
3879
+ msgid "Force Logout"
3880
+ msgstr ""
3881
+
3882
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:28
3883
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:432
3884
+ msgid "Account Activity Logs"
3885
+ msgstr ""
3886
+
3887
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:96
3888
+ msgid ""
3889
+ "You entered a non numeric value for the max login attempts field. It has "
3890
+ "been set to the default value."
3891
+ msgstr ""
3892
+
3893
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:103
3894
+ msgid ""
3895
+ "You entered a non numeric value for the login retry time period field. It "
3896
+ "has been set to the default value."
3897
+ msgstr ""
3898
+
3899
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:159
3900
+ msgid "Login Lockdown Configuration"
3901
+ msgstr ""
3902
+
3903
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:163
3904
+ msgid "One of the ways hackers try to compromise sites is via a "
3905
+ msgstr ""
3906
+
3907
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:163
3908
+ msgid "Brute Force Login Attack"
3909
+ msgstr ""
3910
+
3911
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:164
3912
+ msgid ""
3913
+ "This is where attackers use repeated login attempts until they guess the "
3914
+ "password."
3915
+ msgstr ""
3916
+
3917
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:165
3918
+ msgid ""
3919
+ "Apart from choosing strong passwords, monitoring and blocking IP addresses "
3920
+ "which are involved in repeated login failures in a short period of time is a "
3921
+ "very effective way to stop these types of attacks."
3922
+ msgstr ""
3923
+
3924
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:166
3925
+ #, php-format
3926
+ msgid ""
3927
+ "You may also want to checkout our %s feature for another secure way to "
3928
+ "protect against these types of attacks."
3929
+ msgstr ""
3930
+
3931
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:171
3932
+ msgid "Login Lockdown Options"
3933
+ msgstr ""
3934
+
3935
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:183
3936
+ msgid "Enable Login Lockdown Feature"
3937
+ msgstr ""
3938
+
3939
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:186
3940
+ msgid ""
3941
+ "Check this if you want to enable the login lockdown feature and apply the "
3942
+ "settings below"
3943
+ msgstr ""
3944
+
3945
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:190
3946
+ msgid "Allow Unlock Requests"
3947
+ msgstr ""
3948
+
3949
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:193
3950
+ msgid ""
3951
+ "Check this if you want to allow users to generate an automated unlock "
3952
+ "request link which will unlock their account"
3953
+ msgstr ""
3954
+
3955
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:197
3956
+ msgid "Max Login Attempts"
3957
+ msgstr ""
3958
+
3959
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:199
3960
+ msgid ""
3961
+ "Set the value for the maximum login retries before IP address is locked out"
3962
+ msgstr ""
3963
+
3964
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:203
3965
+ msgid "Login Retry Time Period (min)"
3966
+ msgstr ""
3967
+
3968
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:205
3969
+ msgid ""
3970
+ "If the maximum number of failed login attempts for a particular IP address "
3971
+ "occur within this time period the plugin will lock out that address"
3972
+ msgstr ""
3973
+
3974
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:209
3975
+ msgid "Time Length of Lockout (min)"
3976
+ msgstr ""
3977
+
3978
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:211
3979
+ msgid ""
3980
+ "Set the length of time for which a particular IP address will be prevented "
3981
+ "from logging in"
3982
+ msgstr ""
3983
+
3984
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:215
3985
+ msgid "Display Generic Error Message"
3986
+ msgstr ""
3987
+
3988
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:218
3989
+ msgid ""
3990
+ "Check this if you want to show a generic error message when a login attempt "
3991
+ "fails"
3992
+ msgstr ""
3993
+
3994
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:222
3995
+ msgid "Instantly Lockout Invalid Usernames"
3996
+ msgstr ""
3997
+
3998
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:225
3999
+ msgid ""
4000
+ "Check this if you want to instantly lockout login attempts with usernames "
4001
+ "which do not exist on your system"
4002
+ msgstr ""
4003
+
4004
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:230
4005
+ msgid "Notify By Email"
4006
+ msgstr ""
4007
+
4008
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:233
4009
+ msgid ""
4010
+ "Check this if you want to receive an email when someone has been locked out "
4011
+ "due to maximum failed login attempts"
4012
+ msgstr ""
4013
+
4014
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:243
4015
+ msgid "Currently Locked Out IP Address Ranges"
4016
+ msgstr ""
4017
+
4018
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:248
4019
+ #, php-format
4020
+ msgid ""
4021
+ "To see a list of all locked IP addresses and ranges go to the %s tab in the "
4022
+ "dashboard menu."
4023
+ msgstr ""
4024
+
4025
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:264
4026
+ msgid "Nonce check failed for delete all failed login records operation!"
4027
+ msgstr ""
4028
+
4029
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:273
4030
+ msgid "User Login Feature - Delete all failed login records operation failed!"
4031
+ msgstr ""
4032
+
4033
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:277
4034
+ msgid "All records from the Failed Logins table were deleted successfully!"
4035
+ msgstr ""
4036
+
4037
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:292
4038
+ msgid "This tab displays the failed login attempts for your site."
4039
+ msgstr ""
4040
+
4041
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:293
4042
+ msgid ""
4043
+ "The information below can be handy if you need to do security investigations "
4044
+ "because it will show you the IP range, username and ID (if applicable) and "
4045
+ "the time/date of the failed login attempt."
4046
+ msgstr ""
4047
+
4048
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:314
4049
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:323
4050
+ msgid "Delete All Failed Login Records"
4051
+ msgstr ""
4052
+
4053
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:320
4054
+ msgid ""
4055
+ "Click this button if you wish to delete all failed login records in one go."
4056
+ msgstr ""
4057
+
4058
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:348
4059
+ msgid ""
4060
+ "You entered a non numeric value for the logout time period field. It has "
4061
+ "been set to the default value."
4062
+ msgstr ""
4063
+
4064
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:376
4065
+ msgid ""
4066
+ "Setting an expiry period for your WP administration session is a simple way "
4067
+ "to protect against unauthorized access to your site from your computer."
4068
+ msgstr ""
4069
+
4070
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:377
4071
+ msgid ""
4072
+ "This feature allows you to specify a time period in minutes after which the "
4073
+ "admin session will expire and the user will be forced to log back in."
4074
+ msgstr ""
4075
+
4076
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:382
4077
+ msgid "Force User Logout Options"
4078
+ msgstr ""
4079
+
4080
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:394
4081
+ msgid "Enable Force WP User Logout"
4082
+ msgstr ""
4083
+
4084
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:397
4085
+ msgid ""
4086
+ "Check this if you want to force a wp user to be logged out after a "
4087
+ "configured amount of time"
4088
+ msgstr ""
4089
+
4090
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:401
4091
+ msgid "Logout the WP User After XX Minutes"
4092
+ msgstr ""
4093
+
4094
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:403
4095
+ msgid ""
4096
+ "(Minutes) The user will be forced to log back in after this time period has "
4097
+ "elapased."
4098
+ msgstr ""
4099
+
4100
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:426
4101
+ msgid ""
4102
+ "This tab displays the login activity for WordPress admin accounts registered "
4103
+ "with your site."
4104
+ msgstr ""
4105
+
4106
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:427
4107
+ msgid ""
4108
+ "The information below can be handy if you need to do security investigations "
4109
+ "because it will show you the last 50 recent login events by username, IP "
4110
+ "address and time/date."
4111
+ msgstr ""
4112
+
4113
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:464
4114
+ msgid "Nonce check failed for users logged in list!"
4115
+ msgstr ""
4116
+
4117
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:477
4118
+ msgid "Refresh Logged In User Data"
4119
+ msgstr ""
4120
+
4121
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:481
4122
+ msgid "Refresh Data"
4123
+ msgstr ""
4124
+
4125
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:487
4126
+ msgid "This tab displays all users who are currently logged into your site."
4127
+ msgstr ""
4128
+
4129
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:488
4130
+ msgid ""
4131
+ "If you suspect there is a user or users who are logged in which should not "
4132
+ "be, you can block them by inspecting the IP addresses from the data below "
4133
+ "and adding them to your blacklist."
4134
+ msgstr ""
4135
+
4136
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:493
4137
+ msgid "Currently Logged In Users"
4138
+ msgstr ""
4139
+
4140
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:558
4141
+ msgid "The selected records were deleted successfully!"
4142
+ msgstr ""
4143
+
4144
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:567
4145
+ msgid "The selected record was deleted successfully!"
4146
+ msgstr ""
4147
+
4148
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:23
4149
+ msgid "Manual Approval"
4150
+ msgstr ""
4151
+
4152
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:24
4153
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:57
4154
+ msgid "Registration Captcha"
4155
+ msgstr ""
4156
+
4157
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:112
4158
+ msgid "User Registration Settings"
4159
+ msgstr ""
4160
+
4161
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:116
4162
+ msgid "Manually Approve New Registrations"
4163
+ msgstr ""
4164
+
4165
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:120
4166
+ msgid ""
4167
+ "If your site allows people to create their own accounts via the WordPress "
4168
+ "registration form, then you can minimize SPAM or bogus registrations by "
4169
+ "manually approving each registration."
4170
+ msgstr ""
4171
+
4172
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:121
4173
+ msgid ""
4174
+ "This feature will automatically set a newly registered account to \"pending"
4175
+ "\" until the administrator activates it. Therefore undesirable registrants "
4176
+ "will be unable to log in without your express approval."
4177
+ msgstr ""
4178
+
4179
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:122
4180
+ msgid ""
4181
+ "You can view all accounts which have been newly registered via the handy "
4182
+ "table below and you can also perform bulk activation/deactivation/deletion "
4183
+ "tasks on each account."
4184
+ msgstr ""
4185
+
4186
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:138
4187
+ msgid "Enable manual approval of new registrations"
4188
+ msgstr ""
4189
+
4190
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:141
4191
+ msgid ""
4192
+ "Check this if you want to automatically disable all newly registered "
4193
+ "accounts so that you can approve them manually."
4194
+ msgstr ""
4195
+
4196
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:150
4197
+ msgid "Approve Registered Users"
4198
+ msgstr ""
4199
+
4200
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:195
4201
+ msgid ""
4202
+ "This feature allows you to add a captcha form on the WordPress registration "
4203
+ "page."
4204
+ msgstr ""
4205
+
4206
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:196
4207
+ msgid ""
4208
+ "Users who attempt to register will also need to enter the answer to a simple "
4209
+ "mathematical question - if they enter the wrong answer, the plugin will not "
4210
+ "allow them to register."
4211
+ msgstr ""
4212
+
4213
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:197
4214
+ msgid ""
4215
+ "Therefore, adding a captcha form on the registration page is another "
4216
+ "effective yet simple SPAM registration prevention technique."
4217
+ msgstr ""
4218
+
4219
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:202
4220
+ msgid "Registration Page Captcha Settings"
4221
+ msgstr ""
4222
+
4223
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:209
4224
+ msgid ""
4225
+ "The core default behaviour for WordPress Multi Site regarding user "
4226
+ "registration is that all users are registered via the main site."
4227
+ msgstr ""
4228
+
4229
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:210
4230
+ msgid ""
4231
+ "Therefore, if you would like to add a captcha form to the registration page "
4232
+ "for a Multi Site, please go to \"Registration Captcha\" settings on the main "
4233
+ "site."
4234
+ msgstr ""
4235
+
4236
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:225
4237
+ msgid "Enable Captcha On Registration Page"
4238
+ msgstr ""
4239
+
4240
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:228
4241
+ msgid ""
4242
+ "Check this if you want to insert a captcha form on the WordPress user "
4243
+ "registration page (if you allow user registration)."
4244
+ msgstr ""
4245
+
4246
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:22
4247
+ msgid "WhoIS Lookup"
4248
+ msgstr ""
4249
+
4250
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:74
4251
+ msgid "WHOIS Lookup Information"
4252
+ msgstr ""
4253
+
4254
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:77
4255
+ msgid ""
4256
+ "This feature allows you to look up more detailed information about an IP "
4257
+ "address or domain name by querying the WHOIS API."
4258
+ msgstr ""
4259
+
4260
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:83
4261
+ msgid "Perform a WHOIS Lookup for an IP or Domain Name"
4262
+ msgstr ""
4263
+
4264
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:89
4265
+ msgid "Enter IP Address or Domain Name"
4266
+ msgstr ""
4267
+
4268
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:91
4269
+ msgid ""
4270
+ "Enter an IP address or domain name. Example: 111.11.12.13 OR some-domain-"
4271
+ "name.com"
4272
+ msgstr ""
4273
+
4274
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:95
4275
+ msgid "Perform IP or Domain Lookup"
4276
+ msgstr ""
4277
+
4278
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:115
4279
+ msgid "WHOIS lookup successfully completed. Please see the results below:"
4280
+ msgstr ""
4281
+
4282
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:127
4283
+ msgid ""
4284
+ "You have entered an incorrectly formatted IP address or domain name. Please "
4285
+ "try again."
4286
+ msgstr ""
4287
+
4288
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:178
4289
+ msgid "No items found."
4290
+ msgstr ""
4291
+
4292
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:281
4293
+ msgid "Bulk Actions"
4294
+ msgstr ""
4295
+
4296
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:291
4297
+ msgid "Apply"
4298
+ msgstr ""
4299
+
4300
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:365
4301
+ msgid "Show all dates"
4302
+ msgstr ""
4303
+
4304
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:378
4305
+ #, php-format
4306
+ msgid "%1$s %2$d"
4307
+ msgstr ""
4308
+
4309
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:394
4310
+ msgid "List View"
4311
+ msgstr ""
4312
+
4313
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:395
4314
+ msgid "Excerpt View"
4315
+ msgstr ""
4316
+
4317
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:421
4318
+ #, php-format
4319
+ msgid "%s pending"
4320
+ msgstr ""
4321
+
4322
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:653
4323
+ msgid "Select All"
4324
+ msgstr ""
4325
+
4326
+ #: all-in-one-wp-security/classes/wp-security-backup.php:188
4327
+ msgid "All In One WP Security - Site Database Backup"
4328
+ msgstr ""
4329
+
4330
+ #: all-in-one-wp-security/classes/wp-security-backup.php:190
4331
+ msgid "Attached is your latest DB backup file for site URL"
4332
+ msgstr ""
4333
+
4334
+ #: all-in-one-wp-security/classes/wp-security-backup.php:190
4335
+ msgid " generated on"
4336
+ msgstr ""
4337
+
4338
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:17
4339
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:254
4340
+ msgid "Please enter an answer in digits:"
4341
+ msgstr "Vänligen svara med siffror:"
4342
+
4343
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:96
4344
+ msgid "one"
4345
+ msgstr "ett"
4346
+
4347
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:97
4348
+ msgid "two"
4349
+ msgstr "två"
4350
+
4351
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:98
4352
+ msgid "three"
4353
+ msgstr "tre"
4354
+
4355
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:99
4356
+ msgid "four"
4357
+ msgstr "fyra"
4358
+
4359
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:100
4360
+ msgid "five"
4361
+ msgstr "fem"
4362
+
4363
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:101
4364
+ msgid "six"
4365
+ msgstr "sex"
4366
+
4367
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:102
4368
+ msgid "seven"
4369
+ msgstr "sju"
4370
+
4371
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:103
4372
+ msgid "eight"
4373
+ msgstr "åtta"
4374
+
4375
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:104
4376
+ msgid "nine"
4377
+ msgstr "nio"
4378
+
4379
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:105
4380
+ msgid "ten"
4381
+ msgstr "tio"
4382
+
4383
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:106
4384
+ msgid "eleven"
4385
+ msgstr "elva"
4386
+
4387
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:107
4388
+ msgid "twelve"
4389
+ msgstr "tolv"
4390
+
4391
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:108
4392
+ msgid "thirteen"
4393
+ msgstr "tretton"
4394
+
4395
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:109
4396
+ msgid "fourteen"
4397
+ msgstr "fjorton"
4398
+
4399
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:110
4400
+ msgid "fifteen"
4401
+ msgstr "femton"
4402
+
4403
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:111
4404
+ msgid "sixteen"
4405
+ msgstr "sexton"
4406
+
4407
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:112
4408
+ msgid "seventeen"
4409
+ msgstr "sjutton"
4410
+
4411
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:113
4412
+ msgid "eighteen"
4413
+ msgstr "arton"
4414
+
4415
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:114
4416
+ msgid "nineteen"
4417
+ msgstr "nitton"
4418
+
4419
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:115
4420
+ msgid "twenty"
4421
+ msgstr "tjugo"
4422
+
4423
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:65
4424
+ msgid "All In One WP Security - File change detected!"
4425
+ msgstr ""
4426
+
4427
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:67
4428
+ msgid "A file change was detected on your system for site URL"
4429
+ msgstr ""
4430
+
4431
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:67
4432
+ msgid ". Scan was generated on"
4433
+ msgstr ""
4434
+
4435
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:68
4436
+ msgid "Login to your site to view the scan details."
4437
+ msgstr ""
4438
+
4439
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:269
4440
+ msgid ""
4441
+ "Starting DB scan.....please wait while the plugin scans your database......."
4442
+ msgstr ""
4443
+
4444
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:273
4445
+ msgid "Scanning options table........."
4446
+ msgstr ""
4447
+
4448
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:342
4449
+ #, php-format
4450
+ msgid "%s and option_id: %s"
4451
+ msgstr ""
4452
+
4453
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:345
4454
+ #, php-format
4455
+ msgid ""
4456
+ "Deletion of known pharma hack entry for option_name %s failed. Please delete "
4457
+ "this entry manually!"
4458
+ msgstr ""
4459
+
4460
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:347
4461
+ #, php-format
4462
+ msgid ""
4463
+ "The options table entry with known pharma hack for option_id %s with "
4464
+ "option_name %s was successfully deleted"
4465
+ msgstr ""
4466
+
4467
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:361
4468
+ #, php-format
4469
+ msgid "Possible suspicious entry found (for option_id: %s) - %s "
4470
+ msgstr ""
4471
+
4472
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:370
4473
+ msgid "No suspicious entries found in options table"
4474
+ msgstr ""
4475
+
4476
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:374
4477
+ msgid "Scanning posts table........."
4478
+ msgstr ""
4479
+
4480
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:414
4481
+ #, php-format
4482
+ msgid ""
4483
+ "Possible suspicious entry found (for Post ID: %s) in the following column - "
4484
+ "%s "
4485
+ msgstr ""
4486
+
4487
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:423
4488
+ msgid "No suspicious entries found in posts table"
4489
+ msgstr ""
4490
+
4491
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:427
4492
+ msgid "Scanning links table........."
4493
+ msgstr ""
4494
+
4495
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:466
4496
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:517
4497
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:545
4498
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:573
4499
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:622
4500
+ #, php-format
4501
+ msgid "Possible suspicious entry - %s "
4502
+ msgstr ""
4503
+
4504
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:475
4505
+ msgid "No suspicious entries found in links table"
4506
+ msgstr ""
4507
+
4508
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:479
4509
+ msgid "Scanning comments table........."
4510
+ msgstr ""
4511
+
4512
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:526
4513
+ msgid "No suspicious entries found in comments table"
4514
+ msgstr ""
4515
+
4516
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:530
4517
+ msgid "Scanning postmeta table........."
4518
+ msgstr ""
4519
+
4520
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:554
4521
+ msgid "No suspicious entries found in postmeta table"
4522
+ msgstr ""
4523
+
4524
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:558
4525
+ msgid "Scanning usermeta table........."
4526
+ msgstr ""
4527
+
4528
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:582
4529
+ msgid "No suspicious entries found in usermeta table"
4530
+ msgstr ""
4531
+
4532
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:586
4533
+ msgid "Scanning users table........."
4534
+ msgstr ""
4535
+
4536
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:631
4537
+ msgid "No suspicious entries found in users table"
4538
+ msgstr ""
4539
+
4540
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:638
4541
+ msgid ""
4542
+ "The plugin has detected that there are some potentially suspicious entries "
4543
+ "in your database."
4544
+ msgstr ""
4545
+
4546
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:639
4547
+ msgid ""
4548
+ "Please verify the results listed below to confirm whether the entries "
4549
+ "detected are genuinely suspicious or if they are false positives."
4550
+ msgstr ""
4551
+
4552
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:644
4553
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:659
4554
+ msgid "Disclaimer:"
4555
+ msgstr ""
4556
+
4557
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:645
4558
+ msgid ""
4559
+ "Even though this database scan has revealed some suspicious entries, this "
4560
+ "does not necessarily mean that other parts of your DB or site are also not "
4561
+ "compromised."
4562
+ msgstr ""
4563
+
4564
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:646
4565
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:661
4566
+ msgid ""
4567
+ "Please note that database scan performed by this feature is basic and looks "
4568
+ "for common malicious entries. Since hackers are continually evolving their "
4569
+ "methods this scan is not meant to be a guaranteed catch-all for malware."
4570
+ msgstr ""
4571
+
4572
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:647
4573
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:662
4574
+ #, php-format
4575
+ msgid ""
4576
+ "It is your responsibility to do the due diligence and perform a robust %s on "
4577
+ "your site if you wish to be more certain that your site is clean."
4578
+ msgstr ""
4579
+
4580
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:654
4581
+ msgid "DB Scan was completed successfully. No suspicious entries found."
4582
+ msgstr ""
4583
+
4584
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:660
4585
+ msgid ""
4586
+ "Even though the database scan has not revealed any suspicious entries, this "
4587
+ "does not necessarily mean that your site is actually completely clean or not "
4588
+ "compromised."
4589
+ msgstr ""
4590
+
4591
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:281
4592
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:358
4593
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:69
4594
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:72
4595
+ #: all-in-one-wp-security/classes/wp-security-user-registration.php:61
4596
+ msgid "<strong>ERROR</strong>: Your answer was incorrect - please try again."
4597
+ msgstr "<strong>FEL</strong>: Ditt svar var fel. Försök igen."
4598
+
4599
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:293
4600
+ msgid "Enter something special:"
4601
+ msgstr "Skriv någonting här om du inte är människa:"
4602
+
4603
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:320
4604
+ msgid "Please enter an answer in the CAPTCHA field."
4605
+ msgstr "Var vänlig skriv ett svar i CAPTCHA-fältet."
4606
+
4607
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:330
4608
+ msgid ""
4609
+ "Error: You entered an incorrect CAPTCHA answer. Please go back and try again."
4610
+ msgstr ""
4611
+ "Fel: Du angav fel svar i CAPTCHA-fältet. Gå tillbaka och prova en gång till."
4612
+
4613
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:382
4614
+ msgid "Your CAPTCHA answer was incorrect - please try again."
4615
+ msgstr "Ditt CAPTCHA-svar var fel. Försök igen!"
4616
+
4617
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:43
4618
+ msgid ""
4619
+ "<strong>ERROR</strong>: Login failed because your IP address has been "
4620
+ "blocked. Please contact the administrator."
4621
+ msgstr ""
4622
+ "<strong>FEL</strong>: Inloggning misslyckades eftersom din IP-adress är "
4623
+ "spärrad. Vänligen kontakta administratören."
4624
+
4625
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:82
4626
+ msgid "<strong>ERROR</strong>: The username field is empty."
4627
+ msgstr "<strong>FEL</strong>: Användarnamnet är inte ifyllt."
4628
+
4629
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:86
4630
+ msgid "<strong>ERROR</strong>: The password field is empty."
4631
+ msgstr "<strong>FEL</strong>: Inget lösenord ifyllt."
4632
+
4633
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:106
4634
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:132
4635
+ msgid "<strong>ERROR</strong>: Invalid login credentials."
4636
+ msgstr "<strong>FEL</strong>: Inloggningsuppgifterna är felaktiga."
4637
+
4638
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:109
4639
+ msgid "<strong>ERROR</strong>: Invalid username."
4640
+ msgstr "<strong>FEL</strong>: Ogiltigt användarnamn."
4641
+
4642
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:135
4643
+ #, php-format
4644
+ msgid ""
4645
+ "<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password "
4646
+ "Lost and Found\">Lost your password</a>?"
4647
+ msgstr ""
4648
+ "<strong>FEL</strong>: Felaktigt lösenord. <a href=\"%s\" title=\"Skapa nytt "
4649
+ "lösenord\">Glömt lösenord</a>?"
4650
+
4651
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:146
4652
+ msgid ""
4653
+ "<strong>ACCOUNT PENDING</strong>: Your account is currently not active. An "
4654
+ "administrator needs to activate your account before you can login."
4655
+ msgstr ""
4656
+ "<strong>KONTOT AVVAKTAR</strong>: Ditt konto är ännu inte aktivt. Innan du "
4657
+ "kan logga in, behöver en administratör aktivera kontot."
4658
+
4659
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:269
4660
+ msgid "Site Lockout Notification"
4661
+ msgstr "Blockerad från sajten"
4662
+
4663
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:270
4664
+ msgid ""
4665
+ "A lockdown event has occurred due to too many failed login attempts or "
4666
+ "invalid username:"
4667
+ msgstr ""
4668
+ "På grund av alltför många inloggningsförsök eller felaktiga användarnamn, är "
4669
+ "du blockerad:"
4670
+
4671
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:271
4672
+ msgid "Username: "
4673
+ msgstr "Användarnamn: "
4674
+
4675
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:272
4676
+ msgid "IP Address: "
4677
+ msgstr "IP-adress: "
4678
+
4679
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:273
4680
+ msgid "IP Range: "
4681
+ msgstr "IP-adressblock: "
4682
+
4683
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:274
4684
+ msgid ""
4685
+ "Log into your site's WordPress administration panel to see the duration of "
4686
+ "the lockout or to unlock the user."
4687
+ msgstr ""
4688
+
4689
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:338
4690
+ msgid "Unlock Request Notification"
4691
+ msgstr "Begäran att häva blockering"
4692
+
4693
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:339
4694
+ msgid "You have requested for the account with email address "
4695
+ msgstr "Du har begärt för kontot med mejladress "
4696
+
4697
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:340
4698
+ msgid "Unlock link: "
4699
+ msgstr "Länk för upplåsning: "
4700
+
4701
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:341
4702
+ msgid ""
4703
+ "After clicking the above link you will be able to login to the WordPress "
4704
+ "administration panel."
4705
+ msgstr ""
4706
+ "När du klickat på denna länk så kan du logga in i WordPress "
4707
+ "administrationspanel."
4708
+
4709
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:507
4710
+ #, php-format
4711
+ msgid ""
4712
+ "Your session has expired because it has been over %d minutes since your last "
4713
+ "login."
4714
+ msgstr ""
4715
+ "Din session har avslutets eftersom det gått mer än %d minuter sedan senaste "
4716
+ "inloggning."
4717
+
4718
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:508
4719
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:512
4720
+ msgid "Please log back in to continue."
4721
+ msgstr "Var vänlig logga in igen för att fortsätta."
4722
+
4723
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:511
4724
+ msgid "You were logged out because you just changed the \"admin\" username."
4725
+ msgstr "Du loggades ut eftersom du just bytte användarnamnet \"admin\"."
4726
+
4727
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:537
4728
+ msgid "Request Unlock"
4729
+ msgstr "Begär upplåsning"
4730
+
4731
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:76
4732
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:95
4733
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:110
4734
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:125
4735
+ msgid " is not a valid ip address format."
4736
+ msgstr ""
4737
+
4738
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:133
4739
+ msgid "You cannot ban your own IP address: "
4740
+ msgstr ""
4741
+
4742
+ #: all-in-one-wp-security/classes/wp-security-utility.php:151
4743
+ msgid ""
4744
+ "This feature can only be configured by the \"superadmin\" on the main site."
4745
+ msgstr ""
4746
+
4747
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:29
4748
+ msgid "Remove WP Generatore Meta Tag"
4749
+ msgstr ""
4750
+
4751
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:38
4752
+ msgid "Change Display Name"
4753
+ msgstr ""
4754
+
4755
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:45
4756
+ msgid "Custom Login Captcha"
4757
+ msgstr ""
4758
+
4759
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:47
4760
+ msgid "Lost Password Captcha"
4761
+ msgstr ""
4762
+
4763
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:49
4764
+ msgid "Login IP Whitelisting"
4765
+ msgstr ""
4766
+
4767
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:55
4768
+ msgid "Registration Approval"
4769
+ msgstr ""
4770
+
4771
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:71
4772
+ msgid "WordPress Files Access"
4773
+ msgstr ""
4774
+
4775
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:75
4776
+ msgid "IP and User Agent Blacklisting"
4777
+ msgstr ""
4778
+
4779
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:79
4780
+ msgid "Enable Basic Firewall"
4781
+ msgstr ""
4782
+
4783
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:80
4784
+ msgid "Enable Pingback Vulnerability Protection"
4785
+ msgstr ""
4786
+
4787
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:81
4788
+ msgid "Enable IP blocking for 404 detection"
4789
+ msgstr ""
4790
+
4791
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:85
4792
+ msgid "Enable Rename Login Page"
4793
+ msgstr ""
4794
+
4795
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:87
4796
+ msgid "Enable Login Honeypot"
4797
+ msgstr ""
4798
+
4799
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:93
4800
+ msgid "Forbid Proxy Comments"
4801
+ msgstr ""
4802
+
4803
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:94
4804
+ msgid "Deny Bad Queries"
4805
+ msgstr ""
4806
+
4807
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:96
4808
+ msgid "5G Blacklist"
4809
+ msgstr ""
4810
+
4811
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:99
4812
+ msgid "Block Spambots"
4813
+ msgstr ""
4814
+
4815
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:101
4816
+ msgid "Comment Captcha"
4817
+ msgstr ""
4818
+
4819
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:103
4820
+ msgid "BuddyPress Registration Captcha"
4821
+ msgstr ""
4822
+
4823
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:28
4824
+ msgid "Basic"
4825
+ msgstr ""
4826
+
4827
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:31
4828
+ msgid "Intermediate"
4829
+ msgstr ""
4830
+
4831
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:34
4832
+ msgid "Advanced"
4833
+ msgstr ""
4834
+
4835
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:96
4836
+ msgid "https://wordpress.org/"
4837
+ msgstr ""
4838
+
4839
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:97
4840
+ #: all-in-one-wp-security/other-includes/wp-security-unlock-request.php:14
4841
+ msgid "Powered by WordPress"
4842
+ msgstr "Drivs med WordPress"
4843
+
4844
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:214
4845
+ #, php-format
4846
+ msgid "&larr; Back to %s"
4847
+ msgstr "&larr; Åter till %s"
4848
+
4849
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:272
4850
+ msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
4851
+ msgstr ""
4852
+
4853
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:276
4854
+ msgid ""
4855
+ "<strong>ERROR</strong>: There is no user registered with that email address."
4856
+ msgstr ""
4857
+
4858
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:293
4859
+ msgid "<strong>ERROR</strong>: Invalid username or e-mail."
4860
+ msgstr ""
4861
+
4862
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:330
4863
+ msgid "Password reset is not allowed for this user"
4864
+ msgstr ""
4865
+
4866
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:355
4867
+ msgid "Someone requested that the password be reset for the following account:"
4868
+ msgstr "Någon har begärt återställning av lösenordet för följande konto: "
4869
+
4870
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:357
4871
+ #, php-format
4872
+ msgid "Username: %s"
4873
+ msgstr "Användarnamn: %s"
4874
+
4875
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:358
4876
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
4877
+ msgstr ""
4878
+ "Om detta var ett misstag, är det bara att ignorera detta mejl, så händer "
4879
+ "ingenting."
4880
+
4881
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:359
4882
+ msgid "To reset your password, visit the following address:"
4883
+ msgstr "För att återställa ditt lösenord, gå till följande adress: "
4884
+
4885
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:369
4886
+ #, php-format
4887
+ msgid "[%s] Password Reset"
4888
+ msgstr "[%s] Återställning av lösenor"
4889
+
4890
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:390
4891
+ msgid "The e-mail could not be sent."
4892
+ msgstr "E-mejl kunde inte skickas."
4893
+
4894
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:390
4895
+ msgid "Possible reason: your host may have disabled the mail() function."
4896
+ msgstr ""
4897
+ "En tänkbar förklaring skulle kunna vara om funktionen mail() är avstängd på "
4898
+ "servern."
4899
+
4900
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:495
4901
+ msgid "Sorry, that key does not appear to be valid."
4902
+ msgstr "Tyvärr verkar nyckeln inte vara giltig."
4903
+
4904
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:497
4905
+ msgid "Sorry, that key has expired. Please try again."
4906
+ msgstr "Tyvärr är nyckeln inte längre giltig. Försök en gång till."
4907
+
4908
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:517
4909
+ msgid "Lost Password"
4910
+ msgstr "Förlorat lösenord"
4911
+
4912
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:517
4913
+ msgid ""
4914
+ "Please enter your username or email address. You will receive a link to "
4915
+ "create a new password via email."
4916
+ msgstr ""
4917
+ "Var vänlig skriv in ditt användarnamn eller mejladress. Du får en länk får "
4918
+ "återställning av lösenord via e-post."
4919
+
4920
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:525
4921
+ msgid "Username or E-mail:"
4922
+ msgstr "Användarnamn eller e-post:"
4923
+
4924
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:540
4925
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:589
4926
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:631
4927
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:713
4928
+ msgid "Log in"
4929
+ msgstr "Logga in"
4930
+
4931
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:543
4932
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:634
4933
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:892
4934
+ msgid "Register"
4935
+ msgstr "Registrering"
4936
+
4937
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:575
4938
+ msgid "The passwords do not match."
4939
+ msgstr "Du har angivit olika löseord."
4940
+
4941
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:589
4942
+ msgid "Password Reset"
4943
+ msgstr "Återställning av lösenord"
4944
+
4945
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:589
4946
+ msgid "Your password has been reset."
4947
+ msgstr "Ditt lösenord har återställts."
4948
+
4949
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:597
4950
+ msgid "Reset Password"
4951
+ msgstr "Återställ lösenord"
4952
+
4953
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:597
4954
+ msgid "Enter your new password below."
4955
+ msgstr "Skriv in ditt nya lösenord här nedanför."
4956
+
4957
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:604
4958
+ msgid "New password"
4959
+ msgstr "Nytt lösenord"
4960
+
4961
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:608
4962
+ msgid "Confirm new password"
4963
+ msgstr "Bekräfta nytt lösenord"
4964
+
4965
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:612
4966
+ msgid "Strength indicator"
4967
+ msgstr "Indikering av lösenordets styrka"
4968
+
4969
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:613
4970
+ msgid ""
4971
+ "Hint: The password should be at least seven characters long. To make it "
4972
+ "stronger, use upper and lower case letters, numbers, and symbols like ! \" ? "
4973
+ "$ % ^ &amp; )."
4974
+ msgstr ""
4975
+ "Tips: Lösenordet bör vara minst sju tecken långt. För ett starkare lösenord, "
4976
+ "använda både stora och små bokstäver samt siffror och specialtecken, såsom ! "
4977
+ "\" ? $ % ^ &amp; )."
4978
+
4979
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:686
4980
+ msgid "Registration Form"
4981
+ msgstr "Registreringsformulär"
4982
+
4983
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:686
4984
+ msgid "Register For This Site"
4985
+ msgstr "Registrera dig på denna webbplats"
4986
+
4987
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:691
4988
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:858
4989
+ msgid "Username"
4990
+ msgstr "Användarnamn"
4991
+
4992
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:695
4993
+ msgid "E-mail"
4994
+ msgstr "E-post"
4995
+
4996
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:706
4997
+ msgid "A password will be e-mailed to you."
4998
+ msgstr "Ett lösenord mejlas till dig."
4999
+
5000
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:714
5001
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:897
5002
+ msgid "Lost your password?"
5003
+ msgstr "Har du glömt lösenordet?"
5004
+
5005
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:760
5006
+ #, php-format
5007
+ msgid ""
5008
+ "<strong>ERROR</strong>: Cookies are blocked due to unexpected output. For "
5009
+ "help, please see <a href=\"%1$s\">this documentation</a> or try the <a href="
5010
+ "\"%2$s\">support forums</a>."
5011
+ msgstr ""
5012
+
5013
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:761
5014
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:765
5015
+ msgid "http://codex.wordpress.org/Cookies"
5016
+ msgstr ""
5017
+
5018
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:761
5019
+ msgid "https://wordpress.org/support/"
5020
+ msgstr ""
5021
+
5022
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:764
5023
+ #, php-format
5024
+ msgid ""
5025
+ "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
5026
+ "browser. You must <a href=\"%s\">enable cookies</a> to use WordPress."
5027
+ msgstr ""
5028
+
5029
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:783
5030
+ msgid "You have logged in successfully."
5031
+ msgstr "Du är nu inloggad."
5032
+
5033
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:817
5034
+ msgid ""
5035
+ "Session expired. Please log in again. You will not move away from this page."
5036
+ msgstr "Sessionen är slut. Logga in igen. Du kommer inte att lämna denna sida."
5037
+
5038
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:821
5039
+ msgid "You are now logged out."
5040
+ msgstr "Nu är du utloggad."
5041
+
5042
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:823
5043
+ msgid "User registration is currently not allowed."
5044
+ msgstr "För tillfället är registrering blockerad."
5045
+
5046
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:825
5047
+ msgid "Check your e-mail for the confirmation link."
5048
+ msgstr "Leta efter en bekräftelselänk i din e-post."
5049
+
5050
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:827
5051
+ msgid "Check your e-mail for your new password."
5052
+ msgstr "Leta efter e-post med ditt nya lösenord."
5053
+
5054
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:829
5055
+ msgid "Registration complete. Please check your e-mail."
5056
+ msgstr "Registrering klar. Kolla din e-post."
5057
+
5058
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:831
5059
+ msgid ""
5060
+ "<strong>You have successfully updated WordPress!</strong> Please log back in "
5061
+ "to experience the awesomeness."
5062
+ msgstr ""
5063
+ "<strong>Du har uppdaterat WordPress!</strong> Logga in igen för att njuta."
5064
+
5065
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:848
5066
+ msgid "Log In"
5067
+ msgstr "Logga in"
5068
+
5069
+ #: all-in-one-wp-security/other-includes/wp-security-unlock-request.php:13
5070
+ msgid "http://wordpress.org/"
5071
+ msgstr ""
5072
+
5073
+ #: all-in-one-wp-security/other-includes/wp-security-unlock-request.php:48
5074
+ msgid "Please enter a valid email address"
5075
+ msgstr "Skriv in en giltig e-postadress"
5076
+
5077
+ #: all-in-one-wp-security/other-includes/wp-security-unlock-request.php:59
5078
+ msgid "User account not found!"
5079
+ msgstr "Användarkonto kunde inte hittas!"
5080
+
5081
+ #: all-in-one-wp-security/other-includes/wp-security-unlock-request.php:70
5082
+ msgid "Error: No locked entry was found in the DB with your IP address range!"
5083
+ msgstr "Fel: Databasen innehåller inget låst adressblock med din IP-adress!"
5084
+
5085
+ #: all-in-one-wp-security/other-includes/wp-security-unlock-request.php:98
5086
+ msgid "Email Address"
5087
+ msgstr "Mejladress"
languages/aiowpsecurity.pot CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AIOWPS\n"
4
- "POT-Creation-Date: 2013-12-03 12:53+1000\n"
5
- "PO-Revision-Date: 2013-12-03 12:54+1000\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "MIME-Version: 1.0\n"
@@ -13,63 +13,71 @@ msgstr ""
13
  "X-Poedit-Basepath: .\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: all-in-one-wp-security/admin/wp-security-admin-init.php:156
17
  msgid "WP Security"
18
  msgstr ""
19
 
20
- #: all-in-one-wp-security/admin/wp-security-admin-init.php:157
21
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:22
22
  msgid "Dashboard"
23
  msgstr ""
24
 
25
- #: all-in-one-wp-security/admin/wp-security-admin-init.php:158
26
  msgid "Settings"
27
  msgstr ""
28
 
29
- #: all-in-one-wp-security/admin/wp-security-admin-init.php:159
30
  msgid "User Accounts"
31
  msgstr ""
32
 
33
- #: all-in-one-wp-security/admin/wp-security-admin-init.php:160
34
  msgid "User Login"
35
  msgstr ""
36
 
37
- #: all-in-one-wp-security/admin/wp-security-admin-init.php:161
38
  msgid "User Registration"
39
  msgstr ""
40
 
41
- #: all-in-one-wp-security/admin/wp-security-admin-init.php:162
42
  msgid "Database Security"
43
  msgstr ""
44
 
45
- #: all-in-one-wp-security/admin/wp-security-admin-init.php:166
46
  msgid "Filesystem Security"
47
  msgstr ""
48
 
49
- #: all-in-one-wp-security/admin/wp-security-admin-init.php:168
50
  msgid "WHOIS Lookup"
51
  msgstr ""
52
 
53
- #: all-in-one-wp-security/admin/wp-security-admin-init.php:172
54
  msgid "Blacklist Manager"
55
  msgstr ""
56
 
57
- #: all-in-one-wp-security/admin/wp-security-admin-init.php:177
58
  msgid "Firewall"
59
  msgstr ""
60
 
61
- #: all-in-one-wp-security/admin/wp-security-admin-init.php:179
 
 
 
 
62
  msgid "SPAM Prevention"
63
  msgstr ""
64
 
65
- #: all-in-one-wp-security/admin/wp-security-admin-init.php:183
66
  msgid "Scanner"
67
  msgstr ""
68
 
69
- #: all-in-one-wp-security/admin/wp-security-admin-init.php:185
70
  msgid "Maintenance"
71
  msgstr ""
72
 
 
 
 
 
73
  #: all-in-one-wp-security/admin/wp-security-admin-menu.php:43
74
  msgid "Settings successfully updated."
75
  msgstr ""
@@ -87,8 +95,8 @@ msgid "Nonce check failed for save blacklist settings!"
87
  msgstr ""
88
 
89
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:132
 
90
  #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:147
91
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:400
92
  msgid ""
93
  "The plugin was unable to write to the .htaccess file. Please edit file "
94
  "manually."
@@ -148,50 +156,53 @@ msgstr ""
148
 
149
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:174
150
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:194
151
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:271
152
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:288
153
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:147
154
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:177
155
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:308
156
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:338
157
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:369
158
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:397
159
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:426
160
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:514
161
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:669
162
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:703
163
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:726
164
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:747
165
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:174
166
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:259
167
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:456
 
 
 
168
  msgid "More Info"
169
  msgstr ""
170
 
171
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:177
172
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:459
173
  msgid "Each IP address must be on a new line."
174
  msgstr ""
175
 
176
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:178
177
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:460
178
  msgid ""
179
  "To specify an IP range use a wildcard \"*\" character. Acceptable ways to "
180
  "use wildcards is shown in the examples below:"
181
  msgstr ""
182
 
183
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:179
184
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:461
185
  msgid "Example 1: 195.47.89.*"
186
  msgstr ""
187
 
188
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:180
189
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:462
190
  msgid "Example 2: 195.47.*.*"
191
  msgstr ""
192
 
193
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:181
194
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:463
195
  msgid "Example 3: 195.*.*.*"
196
  msgstr ""
197
 
@@ -216,472 +227,1187 @@ msgid "Example 2 - A list of more than 1 user agent strings to block"
216
  msgstr ""
217
 
218
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:208
219
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:347
220
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:309
 
 
 
 
221
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:231
222
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:497
223
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:189
224
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:232
225
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:336
226
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:470
227
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:628
 
 
228
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:146
229
- #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:221
230
  msgid "Save Settings"
231
  msgstr ""
232
 
233
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:23
234
- msgid "System Info"
 
 
235
  msgstr ""
236
 
237
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:73
238
- msgid "For information, updates and documentation, please visit the"
239
  msgstr ""
240
 
241
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:73
242
- msgid "AIO WP Security & Firewall Plugin"
 
243
  msgstr ""
244
 
245
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:73
246
- msgid "Page"
 
247
  msgstr ""
248
 
249
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:74
250
- msgid "Follow us"
251
  msgstr ""
252
 
253
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:74
254
- msgid ""
255
- "Twitter, Google+ or via Email to stay upto date about the new security "
256
- "features of this plugin."
257
  msgstr ""
258
 
259
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:88
260
- msgid "Security Strength Meter"
261
  msgstr ""
262
 
263
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:117
264
- msgid "Total Achievable Points: "
265
  msgstr ""
266
 
267
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:119
268
- msgid "Current Score of Your Site: "
 
 
 
 
 
 
269
  msgstr ""
270
 
271
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:129
272
- msgid "Security Points Breakdown"
 
 
273
  msgstr ""
274
 
275
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:170
276
- msgid "Critical Feature Status"
 
 
277
  msgstr ""
278
 
279
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:174
280
  msgid ""
281
- "Below is the current status of the critical features that you should "
282
- "activate on your site to achieve a minimum level of recommended security"
283
  msgstr ""
284
 
285
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:178
286
- msgid "Admin Username"
 
 
 
287
  msgstr ""
288
 
289
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:193
290
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:27
291
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:39
292
- msgid "Login Lockdown"
293
  msgstr ""
294
 
295
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:208
296
- msgid "File Permission"
 
 
297
  msgstr ""
298
 
299
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:223
300
- msgid "Basic Firewall"
301
  msgstr ""
302
 
303
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:241
304
- msgid "Maintenance Mode Status"
305
  msgstr ""
306
 
307
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:245
308
  msgid ""
309
- "Maintenance mode is currently enabled. Remember to turn it off when you are "
310
- "done"
 
311
  msgstr ""
312
 
313
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:248
314
- msgid "Maintenance mode is currently off."
315
  msgstr ""
316
 
317
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:252
318
- msgid "Maintenance Mode"
319
  msgstr ""
320
 
321
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:291
322
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:33
323
- msgid "Logged In Users"
324
  msgstr ""
325
 
326
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:301
327
- msgid "Number of users currently logged in site-wide is:"
328
  msgstr ""
329
 
330
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:302
331
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:324
332
- #, php-format
333
- msgid "Go to the %s menu to see more details"
 
334
  msgstr ""
335
 
336
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:307
337
- msgid "There are no other site-wide users currently logged in."
 
 
338
  msgstr ""
339
 
340
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:323
341
- msgid "Number of users currently logged into your site is:"
 
342
  msgstr ""
343
 
344
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:329
345
- msgid "There are no other users currently logged in."
 
346
  msgstr ""
347
 
348
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:340
349
- msgid "Spread the Word"
 
 
350
  msgstr ""
351
 
352
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:343
353
- msgid ""
354
- "We are working to make your WordPress site more secure. Please support us, "
355
- "here is how:"
356
  msgstr ""
357
 
358
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:367
359
- msgid "Site Info"
 
 
360
  msgstr ""
361
 
362
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:369
363
- msgid "Plugin Version"
 
 
 
 
 
 
 
 
364
  msgstr ""
365
 
366
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:370
367
- msgid "WP Version"
368
  msgstr ""
369
 
370
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:372
371
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:374
372
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:395
373
- msgid "Version"
374
  msgstr ""
375
 
376
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:373
377
- msgid "Table Prefix"
 
 
 
378
  msgstr ""
379
 
380
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:375
381
- msgid "Session Save Path"
 
 
 
 
382
  msgstr ""
383
 
384
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:377
385
- msgid "Server Name"
 
 
 
 
386
  msgstr ""
387
 
388
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:378
389
- msgid "Cookie Domain"
 
 
390
  msgstr ""
391
 
392
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:379
393
- msgid "Library Present"
 
 
394
  msgstr ""
395
 
396
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:380
397
- msgid "Debug File Write Permissions"
 
 
 
398
  msgstr ""
399
 
400
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:384
401
- msgid "Active Plugins"
402
  msgstr ""
403
 
404
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:394
405
- #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:130
406
- #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:149
407
- msgid "Name"
408
  msgstr ""
409
 
410
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:396
411
- msgid "Plugin URL"
 
412
  msgstr ""
413
 
414
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:23
415
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:57
416
- msgid "DB Prefix"
 
417
  msgstr ""
418
 
419
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:24
420
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:59
421
- msgid "DB Backup"
422
  msgstr ""
423
 
424
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:84
425
- msgid "Nonce check failed for DB prefix change operation!"
426
  msgstr ""
427
 
428
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:92
429
  msgid ""
430
- "The plugin has detected that it cannot write to the wp-config.php file. This "
431
- "feature can only be used if the plugin can successfully write to the wp-"
432
- "config.php file."
 
433
  msgstr ""
434
 
435
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:105
436
- msgid "Please enter a value for the DB prefix."
 
 
 
 
437
  msgstr ""
438
 
439
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:114
440
  msgid ""
441
- "<strong>ERROR</strong>: The table prefix can only contain numbers, letters, "
442
- "and underscores."
443
  msgstr ""
444
 
445
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:122
446
- msgid "Change Database Prefix"
447
  msgstr ""
448
 
449
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:125
450
  msgid ""
451
- "Your WordPress DB is the most important asset of your website because it "
452
- "contains a lot of your site's precious information."
 
453
  msgstr ""
454
 
455
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:126
456
- msgid ""
457
- "The DB is also a target for hackers via methods such as SQL injections and "
458
- "malicious and automated code which targets certain tables."
459
  msgstr ""
460
 
461
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:127
462
  msgid ""
463
- "One way to add a layer of protection for your DB is to change the default "
464
- "WordPress table prefix from \"wp_\" to something else which will be "
465
- "difficult for hackers to guess."
466
  msgstr ""
467
 
468
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:128
469
  msgid ""
470
- "This feature allows you to easily change the prefix to a value of your "
471
- "choice or to a random value set by this plugin."
 
472
  msgstr ""
473
 
474
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:134
475
- msgid "DB Prefix Options"
 
476
  msgstr ""
477
 
478
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:145
479
- #, php-format
480
- msgid "It is recommended that you perform a %s before using this feature"
481
  msgstr ""
482
 
483
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:154
484
- msgid "Current DB Table Prefix"
 
 
485
  msgstr ""
486
 
487
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:160
488
  msgid ""
489
- "Your site is currently using the default WordPress DB prefix value of \"wp_"
490
- "\". \n"
491
- " To increase your site's security you should "
492
- "consider changing the DB prefix value to another value."
493
  msgstr ""
494
 
495
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:167
496
- msgid "Generate New DB Table Prefix"
497
  msgstr ""
498
 
499
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:170
500
  msgid ""
501
- "Check this if you want the plugin to generate a random 6 character string "
502
- "for the table prefix"
503
- msgstr ""
504
-
505
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:171
506
- msgid "OR"
507
  msgstr ""
508
 
509
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:173
510
  msgid ""
511
- "Choose your own DB prefix by specifying a string which contains letters and/"
512
- "or numbers and/or underscores. Example: xyz_"
 
 
513
  msgstr ""
514
 
515
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:177
516
- msgid "Change DB Prefix"
 
 
 
517
  msgstr ""
518
 
519
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:198
520
- #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:86
521
- msgid "Nonce check failed for manual DB backup operation!"
522
  msgstr ""
523
 
524
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:215
525
  msgid ""
526
- "DB Backup was successfully completed! You will receive the backup file via "
527
- "email if you have enabled \"Send Backup File Via Email\", otherwise you can "
528
- "retrieve it via FTP from the following directory:"
529
  msgstr ""
530
 
531
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:217
532
- msgid "Your DB Backup File location: "
533
  msgstr ""
534
 
535
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:225
536
- msgid "DB Backup failed. Please check the permissions of the backup directory."
537
  msgstr ""
538
 
539
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:242
540
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:126
541
  msgid ""
542
- "You entered a non numeric value for the \"backup time interval\" field. It "
543
- "has been set to the default value."
 
 
544
  msgstr ""
545
 
546
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:249
547
  msgid ""
548
- "You entered a non numeric value for the \"number of backup files to keep\" "
549
- "field. It has been set to the default value."
 
550
  msgstr ""
551
 
552
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:256
553
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:156
554
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:121
555
- msgid ""
556
- "You have entered an incorrect email address format. It has been set to your "
557
- "WordPress admin email as default."
558
  msgstr ""
559
 
560
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:262
561
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:162
562
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:219
563
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:127
564
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:581
565
- msgid "Attention!"
566
  msgstr ""
567
 
568
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:289
569
- msgid "Manual Backup"
 
 
570
  msgstr ""
571
 
572
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:295
573
- msgid "To create a new DB backup just click on the button below."
 
 
 
574
  msgstr ""
575
 
576
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:298
577
- msgid "Create DB Backup Now"
578
  msgstr ""
579
 
580
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:302
581
- msgid "Automated Scheduled Backups"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
582
  msgstr ""
583
 
584
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:314
 
 
 
 
 
 
 
 
585
  msgid "Enable Automated Scheduled Backups"
586
  msgstr ""
587
 
588
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:317
589
  msgid ""
590
  "Check this if you want the system to automatically generate backups "
591
  "periodically based on the settings below"
592
  msgstr ""
593
 
594
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:321
595
  msgid "Backup Time Interval"
596
  msgstr ""
597
 
598
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:324
599
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:259
600
  msgid "Hours"
601
  msgstr ""
602
 
603
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:325
604
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:260
605
  msgid "Days"
606
  msgstr ""
607
 
608
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:326
609
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:261
610
  msgid "Weeks"
611
  msgstr ""
612
 
613
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:328
614
  msgid "Set the value for how often you would like an automated backup to occur"
615
  msgstr ""
616
 
617
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:332
618
  msgid "Number of Backup Files To Keep"
619
  msgstr ""
620
 
621
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:334
622
  msgid ""
623
  "Thie field allows you to choose the number of backup files you would like to "
624
  "keep in the backup directory"
625
  msgstr ""
626
 
627
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:338
628
  msgid "Send Backup File Via Email"
629
  msgstr ""
630
 
631
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:341
632
  msgid ""
633
  "Check this if you want the system to email you the backup file after a DB "
634
  "backup has been performed"
635
  msgstr ""
636
 
637
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:343
638
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:305
639
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:228
640
  msgid "Enter an email address"
641
  msgstr ""
642
 
643
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:373
 
 
 
 
644
  msgid "Starting DB prefix change operations....."
645
  msgstr ""
646
 
647
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:375
648
  #, php-format
649
  msgid ""
650
  "Your WordPress system has a total of %s tables and your new DB prefix will "
651
  "be: %s"
652
  msgstr ""
653
 
654
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:381
655
  #: all-in-one-wp-security/classes/wp-security-utility.php:206
656
  msgid ""
657
  "Failed to make a backup of the wp-config.php file. This operation will not "
658
  "go ahead."
659
  msgstr ""
660
 
661
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:385
662
  msgid "A backup copy of your wp-config.php file was created successfully!"
663
  msgstr ""
664
 
665
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:408
666
  #, php-format
667
  msgid "%s table name update failed"
668
  msgstr ""
669
 
670
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:420
671
  #, php-format
672
  msgid "Please change the prefix manually for the above tables to: %s"
673
  msgstr ""
674
 
675
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:423
676
  #, php-format
677
  msgid "%s tables had their prefix updated successfully!"
678
  msgstr ""
679
 
680
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:438
681
  msgid "wp-config.php file was updated successfully!"
682
  msgstr ""
683
 
684
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:441
685
  #, php-format
686
  msgid ""
687
  "The \"wp-config.php\" file was not able to be modified. Please modify this "
@@ -690,50 +1416,75 @@ msgid ""
690
  "value to that variable: %s"
691
  msgstr ""
692
 
693
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:462
694
- msgid "There was an error when updating the options table."
 
 
695
  msgstr ""
696
 
697
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:466
698
  msgid ""
699
  "The options table records which had references to the old DB prefix were "
700
  "updated successfully!"
701
  msgstr ""
702
 
703
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:491
 
 
 
 
 
 
 
704
  #, php-format
705
  msgid ""
706
  "Error updating user_meta table where new meta_key = %s, old meta_key = %s "
707
  "and user_id = %s."
708
  msgstr ""
709
 
710
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:497
711
  msgid ""
712
  "The usermeta table records which had references to the old DB prefix were "
713
  "updated successfully!"
714
  msgstr ""
715
 
716
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:499
717
  msgid "DB prefix change tasks have been completed."
718
  msgstr ""
719
 
720
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:22
721
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:94
722
  msgid "File Change Detection"
723
  msgstr ""
724
 
725
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:93
 
 
 
 
 
 
 
 
 
 
 
 
726
  msgid "Nonce check failed for manual file change detection scan operation!"
727
  msgstr ""
728
 
729
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:100
730
  msgid ""
731
  "The plugin has detected that this is your first file change detection scan. "
732
  "The file details from this scan will be used to detect file changes for "
733
  "future scans!"
734
  msgstr ""
735
 
736
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:194
 
 
 
 
737
  msgid ""
738
  "NEW SCAN COMPLETED: The plugin has detected that you have made changes to "
739
  "the \"File Types To Ignore\" or \"Files To Ignore\" fields.\n"
@@ -741,43 +1492,43 @@ msgid ""
741
  "accurate, the old scan data has been refreshed."
742
  msgstr ""
743
 
744
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:204
745
  msgid ""
746
  "All In One WP Security & Firewall has detected that there was a change in "
747
  "your host's files."
748
  msgstr ""
749
 
750
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:206
751
  msgid "View Scan Details & Clear This Message"
752
  msgstr ""
753
 
754
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:215
755
  msgid ""
756
  "If given an opportunity hackers can insert their code or files into your "
757
  "system which they can then use to carry out malicious acts on your site."
758
  msgstr ""
759
 
760
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:216
761
  msgid ""
762
  "Being informed of any changes in your files can be a good way to quickly "
763
  "prevent a hacker from causing damage to your website."
764
  msgstr ""
765
 
766
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:217
767
  msgid ""
768
  "In general, WordPress core and plugin files and file types such as \".php\" "
769
  "or \".js\" should not change often and when they do, it is important that "
770
  "you are made aware when a change occurs and which file was affected."
771
  msgstr ""
772
 
773
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:218
774
  msgid ""
775
  "The \"File Change Detection Feature\" will notify you of any file change "
776
  "which occurs on your system, including the addition and deletion of files by "
777
  "performing a regular automated or manual scan of your system's files."
778
  msgstr ""
779
 
780
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:219
781
  msgid ""
782
  "This feature also allows you to exclude certain files or folders from the "
783
  "scan in cases where you know that they change often as part of their normal "
@@ -786,154 +1537,303 @@ msgid ""
786
  "change detection scan)"
787
  msgstr ""
788
 
789
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:224
790
  msgid "Manual File Change Detection Scan"
791
  msgstr ""
792
 
793
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:230
794
  msgid ""
795
  "To perform a manual file change detection scan click on the button below."
796
  msgstr ""
797
 
798
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:233
799
  msgid "Perform Scan Now"
800
  msgstr ""
801
 
802
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:237
 
 
 
 
 
 
 
 
 
 
 
 
 
 
803
  msgid "File Change Detection Settings"
804
  msgstr ""
805
 
806
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:249
807
  msgid "Enable Automated File Change Detection Scan"
808
  msgstr ""
809
 
810
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:252
811
  msgid ""
812
  "Check this if you want the system to automatically/periodically scan your "
813
  "files to check for file changes based on the settings below"
814
  msgstr ""
815
 
816
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:256
817
  msgid "Scan Time Interval"
818
  msgstr ""
819
 
820
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:263
821
  msgid "Set the value for how often you would like a scan to occur"
822
  msgstr ""
823
 
824
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:267
825
  msgid "File Types To Ignore"
826
  msgstr ""
827
 
828
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:270
829
  msgid ""
830
  "Enter each file type or extension on a new line which you wish to exclude "
831
  "from the file change detection scan."
832
  msgstr ""
833
 
834
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:274
835
  msgid ""
836
  "You can exclude file types from the scan which would not normally pose any "
837
  "security threat if they were changed. These can include things such as image "
838
  "files."
839
  msgstr ""
840
 
841
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:275
842
  msgid ""
843
  "Example: If you want the scanner to ignore files of type jpg, png, and bmp, "
844
  "then you would enter the following:"
845
  msgstr ""
846
 
847
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:276
848
  msgid "jpg"
849
  msgstr ""
850
 
851
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:277
852
  msgid "png"
853
  msgstr ""
854
 
855
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:278
856
  msgid "bmp"
857
  msgstr ""
858
 
859
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:284
860
  msgid "Files/Directories To Ignore"
861
  msgstr ""
862
 
863
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:287
864
  msgid ""
865
  "Enter each file or directory on a new line which you wish to exclude from "
866
  "the file change detection scan."
867
  msgstr ""
868
 
869
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:291
870
  msgid ""
871
  "You can exclude specific files/directories from the scan which would not "
872
  "normally pose any security threat if they were changed. These can include "
873
  "things such as log files."
874
  msgstr ""
875
 
876
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:292
877
  msgid ""
878
  "Example: If you want the scanner to ignore certain files in different "
879
  "directories or whole directories, then you would enter the following:"
880
  msgstr ""
881
 
882
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:293
883
  msgid "cache/config/master.php"
884
  msgstr ""
885
 
886
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:294
887
  msgid "somedirectory"
888
  msgstr ""
889
 
890
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:300
891
  msgid "Send Email When Change Detected"
892
  msgstr ""
893
 
894
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:303
895
  msgid ""
896
  "Check this if you want the system to email you if a file change was detected"
897
  msgstr ""
898
 
899
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:335
900
- msgid "Latest File Change Scan Results"
901
  msgstr ""
902
 
903
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:344
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
904
  msgid "The following files were added to your host."
905
  msgstr ""
906
 
907
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:347
908
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:368
909
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:392
910
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:26
911
  #: all-in-one-wp-security/admin/wp-security-settings-menu.php:27
 
912
  msgid "File"
913
  msgstr ""
914
 
915
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:348
916
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:369
917
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:393
918
  msgid "File Size"
919
  msgstr ""
920
 
921
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:349
922
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:370
923
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:394
924
  msgid "File Modified"
925
  msgstr ""
926
 
927
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:365
928
  msgid "The following files were removed from your host."
929
  msgstr ""
930
 
931
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:389
932
  msgid "The following files were changed on your host."
933
  msgstr ""
934
 
935
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:26
936
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:63
937
  msgid "File Permissions"
938
  msgstr ""
939
 
@@ -1023,7 +1923,7 @@ msgid ""
1023
  msgstr ""
1024
 
1025
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:201
1026
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:65
1027
  msgid "File Editing"
1028
  msgstr ""
1029
 
@@ -1065,16 +1965,6 @@ msgid ""
1065
  "configuration."
1066
  msgstr ""
1067
 
1068
- #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:275
1069
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:115
1070
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:269
1071
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:480
1072
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:619
1073
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:106
1074
- msgid ""
1075
- "Could not write to the .htaccess file. Please check the file permissions."
1076
- msgstr ""
1077
-
1078
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:280
1079
  msgid "WordPress Files"
1080
  msgstr ""
@@ -1171,164 +2061,193 @@ msgstr ""
1171
  msgid "Showing latest entries of error_log file: %s"
1172
  msgstr ""
1173
 
1174
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:25
1175
  msgid "Basic Firewall Rules"
1176
  msgstr ""
1177
 
1178
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:26
1179
  msgid "Additional Firewall Rules"
1180
  msgstr ""
1181
 
1182
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:27
1183
  msgid "5G Blacklist Firewall Rules"
1184
  msgstr ""
1185
 
1186
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:28
1187
- msgid "Brute Force Prevention"
 
 
 
 
1188
  msgstr ""
1189
 
1190
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:111
1191
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:102
 
 
 
 
 
 
1192
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:96
1193
  msgid "Settings were successfully saved"
1194
  msgstr ""
1195
 
1196
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:120
1197
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:485
1198
  msgid "Firewall Settings"
1199
  msgstr ""
1200
 
1201
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:127
1202
  #, php-format
1203
  msgid ""
1204
  "This should not have any impact on your site's general functionality but if "
1205
  "you wish you can take a %s of your .htaccess file before proceeding."
1206
  msgstr ""
1207
 
1208
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:128
1209
  msgid ""
1210
  "The features in this tab allow you to activate some basic firewall security "
1211
  "protection rules for your site."
1212
  msgstr ""
1213
 
1214
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:129
1215
  msgid ""
1216
  "The firewall functionality is achieved via the insertion of special code "
1217
  "into your currently active .htaccess file."
1218
  msgstr ""
1219
 
1220
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:135
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1221
  msgid "Basic Firewall Settings"
1222
  msgstr ""
1223
 
1224
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:143
1225
  msgid "Enable Basic Firewall Protection"
1226
  msgstr ""
1227
 
1228
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:146
1229
  msgid "Check this if you want to apply basic firewall protection to your site."
1230
  msgstr ""
1231
 
1232
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:150
1233
  msgid ""
1234
  "This setting will implement the following basic firewall protection "
1235
  "mechanisms on your site:"
1236
  msgstr ""
1237
 
1238
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:151
1239
  msgid "1) Protect your htaccess file by denying access to it."
1240
  msgstr ""
1241
 
1242
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:152
1243
  msgid "2) Disable the server signature."
1244
  msgstr ""
1245
 
1246
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:153
1247
  msgid "3) Limit file upload size (10MB)."
1248
  msgstr ""
1249
 
1250
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:154
1251
  msgid "4) Protect your wp-config.php file by denying access to it."
1252
  msgstr ""
1253
 
1254
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:155
1255
  msgid ""
1256
  "The above firewall features will be applied via your .htaccess file and "
1257
  "should not affect your site's overall functionality."
1258
  msgstr ""
1259
 
1260
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:156
1261
  msgid ""
1262
  "You are still advised to take a backup of your active .htaccess file just in "
1263
  "case."
1264
  msgstr ""
1265
 
1266
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:165
1267
  msgid "WordPress Pingback Vulnerability Protection"
1268
  msgstr ""
1269
 
1270
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:173
1271
- msgid "Enable Pingback Protection"
1272
- msgstr ""
1273
-
1274
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:176
1275
  msgid ""
1276
  "Check this if you are not using the WP XML-RPC functionality and you want to "
1277
  "enable protection against WordPress pingback vulnerabilities."
1278
  msgstr ""
1279
 
1280
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:180
1281
  msgid ""
1282
  "This setting will add a directive in your .htaccess to disable access to the "
1283
  "WordPress xmlrpc.php file which is responsible for the XML-RPC functionality "
1284
  "such as pingbacks in WordPress."
1285
  msgstr ""
1286
 
1287
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:181
1288
  msgid ""
1289
  "Hackers can exploit various pingback vulnerabilities in the WordPress XML-"
1290
  "RPC API in a number of ways such as:"
1291
  msgstr ""
1292
 
1293
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:182
1294
  msgid "1) Denial of Service (DoS) attacks"
1295
  msgstr ""
1296
 
1297
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:183
1298
  msgid "2) Hacking internal routers."
1299
  msgstr ""
1300
 
1301
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:184
1302
  msgid "3) Scanning ports in internal networks to get info from various hosts."
1303
  msgstr ""
1304
 
1305
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:185
1306
  msgid ""
1307
  "Apart from the security protection benefit, this feature may also help "
1308
  "reduce load on your server, particularly if your site currently has a lot of "
1309
  "unwanted traffic hitting the XML-RPC API on your installation."
1310
  msgstr ""
1311
 
1312
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:186
1313
  msgid ""
1314
  "NOTE: You should only enable this feature if you are not currently using the "
1315
  "XML-RPC functionality on your WordPress installation."
1316
  msgstr ""
1317
 
1318
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:193
1319
  msgid "Save Basic Firewall Settings"
1320
  msgstr ""
1321
 
1322
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:265
1323
  msgid ""
1324
  "You have successfully saved the Additional Firewall Protection configuration"
1325
  msgstr ""
1326
 
1327
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:279
1328
  msgid "Additional Firewall Protection"
1329
  msgstr ""
1330
 
1331
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:283
1332
  #, php-format
1333
  msgid ""
1334
  "Due to the nature of the code being inserted to the .htaccess file, this "
@@ -1337,184 +2256,184 @@ msgid ""
1337
  "configuration."
1338
  msgstr ""
1339
 
1340
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:285
1341
  msgid ""
1342
  "This feature allows you to activate more advanced firewall settings to your "
1343
  "site."
1344
  msgstr ""
1345
 
1346
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:286
1347
  msgid ""
1348
  "The advanced firewall rules are applied via the insertion of special code to "
1349
  "your currently active .htaccess file."
1350
  msgstr ""
1351
 
1352
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:295
1353
  msgid "Listing of Directory Contents"
1354
  msgstr ""
1355
 
1356
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:304
1357
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:80
1358
  msgid "Disable Index Views"
1359
  msgstr ""
1360
 
1361
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:307
1362
  msgid "Check this if you want to disable directory and file listing."
1363
  msgstr ""
1364
 
1365
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:312
1366
  msgid ""
1367
  "By default, an Apache server will allow the listing of the contents of a "
1368
  "directory if it doesn't contain an index.php file."
1369
  msgstr ""
1370
 
1371
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:314
1372
  msgid "This feature will prevent the listing of contents for all directories."
1373
  msgstr ""
1374
 
1375
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:316
1376
  msgid ""
1377
- "NOTE: In order for this feature to work \"AllowOverride\" must be enabled in "
1378
- "your httpd.conf file. Ask your hosting provider to check this if you don't "
1379
- "have access to httpd.conf"
1380
  msgstr ""
1381
 
1382
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:325
1383
  msgid "Trace and Track"
1384
  msgstr ""
1385
 
1386
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:334
1387
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:81
1388
  msgid "Disable Trace and Track"
1389
  msgstr ""
1390
 
1391
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:337
1392
  msgid "Check this if you want to disable trace and track."
1393
  msgstr ""
1394
 
1395
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:342
1396
  msgid ""
1397
  "HTTP Trace attack (XST) can be used to return header requests and grab "
1398
  "cookies and other information."
1399
  msgstr ""
1400
 
1401
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:344
1402
  msgid ""
1403
  "This hacking technique is usually used together with cross site scripting "
1404
  "attacks (XSS)."
1405
  msgstr ""
1406
 
1407
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:346
1408
  msgid ""
1409
  "Disabling trace and track on your site will help prevent HTTP Trace attacks."
1410
  msgstr ""
1411
 
1412
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:355
1413
  msgid "Proxy Comment Posting"
1414
  msgstr ""
1415
 
1416
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:365
1417
  msgid "Forbid Proxy Comment Posting"
1418
  msgstr ""
1419
 
1420
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:368
1421
  msgid "Check this if you want to forbid proxy comment posting."
1422
  msgstr ""
1423
 
1424
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:373
1425
  msgid ""
1426
  "This setting will deny any requests that use a proxy server when posting "
1427
  "comments."
1428
  msgstr ""
1429
 
1430
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:374
1431
  msgid ""
1432
  "By forbidding proxy comments you are in effect eliminating some SPAM and "
1433
  "other proxy requests."
1434
  msgstr ""
1435
 
1436
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:383
1437
  msgid "Bad Query Strings"
1438
  msgstr ""
1439
 
1440
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:393
1441
  msgid "Deny Bad Query Strings"
1442
  msgstr ""
1443
 
1444
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:396
1445
  msgid "This will help protect you against malicious queries via XSS."
1446
  msgstr ""
1447
 
1448
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:401
1449
  msgid ""
1450
  "This feature will write rules in your .htaccess file to prevent malicious "
1451
  "string attacks on your site using XSS."
1452
  msgstr ""
1453
 
1454
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:402
1455
  msgid ""
1456
  "NOTE: Some of these strings might be used for plugins or themes and hence "
1457
  "this might break some functionality."
1458
  msgstr ""
1459
 
1460
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:403
1461
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:433
1462
  msgid ""
1463
  "You are therefore strongly advised to take a backup of your active .htaccess "
1464
  "file before applying this feature."
1465
  msgstr ""
1466
 
1467
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:412
1468
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:84
1469
  msgid "Advanced Character String Filter"
1470
  msgstr ""
1471
 
1472
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:422
1473
  msgid "Enable Advanced Character String Filter"
1474
  msgstr ""
1475
 
1476
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:425
1477
  msgid "This will block bad character matches from XSS."
1478
  msgstr ""
1479
 
1480
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:430
1481
  msgid ""
1482
  "This is an advanced character string filter to prevent malicious string "
1483
  "attacks on your site coming from Cross Site Scripting (XSS)."
1484
  msgstr ""
1485
 
1486
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:431
1487
  msgid ""
1488
  "This setting matches for common malicious string patterns and exploits and "
1489
  "will produce a 403 error for the hacker attempting the query."
1490
  msgstr ""
1491
 
1492
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:432
1493
  msgid "NOTE: Some strings for this setting might break some functionality."
1494
  msgstr ""
1495
 
1496
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:441
1497
  msgid "Save Additional Firewall Settings"
1498
  msgstr ""
1499
 
1500
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:476
1501
  msgid "You have successfully saved the 5G Firewall Protection configuration"
1502
  msgstr ""
1503
 
1504
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:489
1505
  #, php-format
1506
  msgid ""
1507
  "This feature allows you to activate the 5G firewall security protection "
1508
  "rules designed and produced by %s."
1509
  msgstr ""
1510
 
1511
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:490
1512
  msgid ""
1513
  "The 5G Blacklist is a simple, flexible blacklist that helps reduce the "
1514
  "number of malicious URL requests that hit your website."
1515
  msgstr ""
1516
 
1517
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:491
1518
  msgid ""
1519
  "The added advantage of applying the 5G firewall to your site is that it has "
1520
  "been tested and confirmed by the people at PerishablePress.com to be an "
@@ -1522,7 +2441,7 @@ msgid ""
1522
  "sites running on an Apache server or similar."
1523
  msgstr ""
1524
 
1525
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:492
1526
  #, php-format
1527
  msgid ""
1528
  "Therefore the 5G firewall rules should not have any impact on your site's "
@@ -1530,319 +2449,331 @@ msgid ""
1530
  "file before proceeding."
1531
  msgstr ""
1532
 
1533
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:498
1534
  msgid "5G Blacklist/Firewall Settings"
1535
  msgstr ""
1536
 
1537
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:510
1538
  msgid "Enable 5G Firewall Protection"
1539
  msgstr ""
1540
 
1541
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:513
1542
  msgid ""
1543
  "Check this if you want to apply the 5G Blacklist firewall protection from "
1544
  "perishablepress.com to your site."
1545
  msgstr ""
1546
 
1547
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:517
1548
  msgid ""
1549
  "This setting will implement the 5G security firewall protection mechanisms "
1550
  "on your site which include the following things:"
1551
  msgstr ""
1552
 
1553
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:518
1554
  msgid "1) Block forbidden characters commonly used in exploitative attacks."
1555
  msgstr ""
1556
 
1557
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:519
1558
  msgid "2) Block malicious encoded URL characters such as the \".css(\" string."
1559
  msgstr ""
1560
 
1561
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:520
1562
  msgid ""
1563
  "3) Guard against the common patterns and specific exploits in the root "
1564
  "portion of targeted URLs."
1565
  msgstr ""
1566
 
1567
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:521
1568
  msgid ""
1569
  "4) Stop attackers from manipulating query strings by disallowing illicit "
1570
  "characters."
1571
  msgstr ""
1572
 
1573
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:522
1574
  msgid "....and much more."
1575
  msgstr ""
1576
 
1577
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:528
1578
  msgid "Save 5G Firewall Settings"
1579
  msgstr ""
1580
 
1581
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:556
1582
- msgid ""
1583
- "Settings have not been saved - your secret word must consist only of "
1584
- "alphanumeric characters, ie, letters and/or numbers only!"
1585
  msgstr ""
1586
 
1587
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:574
1588
- msgid ""
1589
- "You have successfully enabled the cookie based brute force prevention feature"
 
 
 
 
1590
  msgstr ""
1591
 
1592
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:575
1593
  msgid ""
1594
- "From now on you will need to log into your WP Admin using the following URL:"
 
 
1595
  msgstr ""
1596
 
1597
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:577
1598
  msgid ""
1599
- "It is important that you save this URL value somewhere in case you forget "
1600
- "it, OR,"
 
1601
  msgstr ""
1602
 
1603
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:578
1604
- #, php-format
1605
- msgid "simply remember to add a \"?%s=1\" to your current site URL address."
 
 
1606
  msgstr ""
1607
 
1608
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:584
1609
  msgid ""
1610
- "You have successfully saved cookie based brute force prevention feature "
1611
- "settings."
1612
  msgstr ""
1613
 
1614
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:629
1615
- msgid "Brute Force Prevention Firewall Settings"
 
 
 
1616
  msgstr ""
1617
 
1618
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:634
1619
  msgid ""
1620
- "A Brute Force Attack is when a hacker tries many combinations of usernames "
1621
- "and passwords until they succeed in guessing the right combination."
1622
  msgstr ""
1623
 
1624
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:635
1625
  msgid ""
1626
- "Due to the fact that at any one time there may be many concurrent login "
1627
- "attempts occurring on your site via malicious automated robots, this also "
1628
- "has a negative impact on your server's memory and performance."
 
1629
  msgstr ""
1630
 
1631
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:636
1632
  msgid ""
1633
- "The features in this tab will stop the majority of Brute Force Login Attacks "
1634
- "at the .htaccess level thus providing even better protection for your WP "
1635
- "login page and also reducing the load on your server because the system does "
1636
- "not have to run PHP code to process the login attempts."
1637
  msgstr ""
1638
 
1639
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:643
1640
- #, php-format
 
 
 
 
 
 
 
 
 
1641
  msgid ""
1642
- "Even though this feature should not have any impact on your site's general "
1643
- "functionality <strong>you are strongly encouraged to take a %s of your ."
1644
- "htaccess file before proceeding</strong>."
1645
  msgstr ""
1646
 
1647
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:644
1648
  msgid ""
1649
- "If this feature is not used correctly, you can get locked out of your site. "
1650
- "A backup file will come in handy if that happens."
1651
  msgstr ""
1652
 
1653
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:645
1654
- #, php-format
1655
  msgid ""
1656
- "To learn more about how to use this feature please watch the following %s."
 
1657
  msgstr ""
1658
 
1659
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:654
1660
- msgid "Cookie Based Brute Force Login Prevention"
1661
  msgstr ""
1662
 
1663
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:665
1664
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:79
1665
- msgid "Enable Brute Force Attack Prevention"
 
 
 
 
 
 
 
 
1666
  msgstr ""
1667
 
1668
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:668
1669
  msgid ""
1670
- "Check this if you want to protect your login page from Brute Force Attack."
 
 
 
1671
  msgstr ""
1672
 
1673
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:673
1674
  msgid ""
1675
- "This feature will deny access to your WordPress login page for all people "
1676
- "except those who have a special cookie in their browser."
1677
  msgstr ""
1678
 
1679
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:675
1680
- msgid "To use this feature do the following:"
1681
  msgstr ""
1682
 
1683
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:677
1684
- msgid "1) Enable the checkbox."
1685
  msgstr ""
1686
 
1687
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:679
1688
- msgid ""
1689
- "2) Enter a secret word consisting of alphanumeric characters which will be "
1690
- "difficult to guess. This secret word will be useful whenever you need to "
1691
- "know the special URL which you will use to access the login page (see point "
1692
- "below)."
1693
  msgstr ""
1694
 
1695
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:681
1696
- msgid ""
1697
- "3) You will then be provided with a special login URL. You will need to use "
1698
- "this URL to login to your WordPress site instead of the usual login URL. "
1699
- "NOTE: The system will deposit a special cookie in your browser which will "
1700
- "allow you access to the WordPress administration login page."
1701
  msgstr ""
1702
 
1703
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:683
1704
- msgid ""
1705
- "Any person trying to access your login page who does not have the special "
1706
- "cookie in their browser will be automatically blocked."
1707
  msgstr ""
1708
 
1709
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:690
1710
- msgid "Secret Word"
 
 
 
1711
  msgstr ""
1712
 
1713
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:692
1714
  msgid ""
1715
- "Choose a secret word consisting of alphanumeric characters which you can use "
1716
- "to access your special URL. Your are highly encouraged to choose a word "
1717
- "which will be difficult to guess."
1718
  msgstr ""
1719
 
1720
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:696
1721
- msgid "Re-direct URL"
1722
  msgstr ""
1723
 
1724
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:700
1725
  msgid ""
1726
- "Specify a URL to redirect a hacker to when they try to access your WordPress "
1727
- "login page."
1728
  msgstr ""
1729
 
1730
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:707
1731
  msgid ""
1732
- "The URL specified here can be any site's URL and does not have to be your "
1733
- "own. For example you can be as creative as you like and send hackers to the "
1734
- "CIA or NSA home page."
1735
  msgstr ""
1736
 
1737
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:709
1738
  msgid ""
1739
- "This field will default to: http://127.0.0.1 if you do not enter a value."
 
 
1740
  msgstr ""
1741
 
1742
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:711
1743
- msgid "Useful Tip:"
 
 
1744
  msgstr ""
1745
 
1746
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:713
1747
  msgid ""
1748
- "It's a good idea to not redirect attempted brute force login attempts to "
1749
- "your site because it increases the load on your server."
 
1750
  msgstr ""
1751
 
1752
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:715
1753
  msgid ""
1754
- "Redirecting a hacker or malicious bot back to \"http://127.0.0.1\" is ideal "
1755
- "because it deflects them back to their own local host and puts the load on "
1756
- "their server instead of yours."
1757
  msgstr ""
1758
 
1759
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:722
1760
- msgid "My Site Has Posts Or Pages Which Are Password Protected"
1761
  msgstr ""
1762
 
1763
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:725
1764
- msgid ""
1765
- "Check this if you are using the native WordPress password protection feature "
1766
- "for some or all of your blog posts or pages."
1767
  msgstr ""
1768
 
1769
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:730
1770
- msgid ""
1771
- "In the cases where you are protecting some of your posts or pages using the "
1772
- "in-built WordPress password protection feature, a few extra lines of "
1773
- "directives and exceptions need to be added to your .htacces file so that "
1774
- "people trying to access pages are not automatically blocked."
1775
  msgstr ""
1776
 
1777
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:732
1778
  msgid ""
1779
- "By enabling this checkbox the plugin will add the necessary rules and "
1780
- "exceptions to your .htacces file so that people trying to access these pages "
1781
- "are not automatically blocked."
 
1782
  msgstr ""
1783
 
1784
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:734
1785
- msgid "Helpful Tip:"
1786
  msgstr ""
1787
 
1788
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:736
1789
- msgid ""
1790
- "If you do not use the WordPress password protection feature for your posts "
1791
- "or pages then it is highly recommended that you leave this checkbox disabled."
1792
  msgstr ""
1793
 
1794
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:743
1795
- msgid "My Site Has a Theme or Plugins Which Use AJAX"
1796
  msgstr ""
1797
 
1798
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:746
1799
- msgid "Check this if your site uses AJAX functionality."
 
 
1800
  msgstr ""
1801
 
1802
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:751
1803
  msgid ""
1804
- "In the cases where your WordPress installation has a theme or plugins which "
1805
- "use AJAX, a few extra lines of directives and exceptions need to be added to "
1806
- "your .htacces file to prevent AJAX requests from being automatically blocked "
1807
- "by the brute force prevention feature."
1808
  msgstr ""
1809
 
1810
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:753
1811
  msgid ""
1812
- "By enabling this checkbox the plugin will add the necessary rules and "
1813
- "exceptions to your .htacces file so that AJAX operations will work as "
1814
- "expected."
1815
  msgstr ""
1816
 
1817
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:768
1818
- msgid "The cookie test was successful. You can now enable this feature."
1819
  msgstr ""
1820
 
1821
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:771
1822
- msgid "Save Feature Settings"
1823
  msgstr ""
1824
 
1825
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:778
1826
- msgid ""
1827
- "The cookie test failed on this server. So this feature cannot be used on "
1828
- "this site."
1829
  msgstr ""
1830
 
1831
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:784
1832
- msgid ""
1833
- "Before using this feature you are required to perform a cookie test first. "
1834
- "This is to make sure that your browser cookie is working correctly and that "
1835
- "you won't lock yourself out."
1836
  msgstr ""
1837
 
1838
- #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:786
1839
- msgid "Perform Cookie Test"
1840
  msgstr ""
1841
 
 
1842
  #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:79
1843
  #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:86
1844
- #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:80
1845
- #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:91
1846
  #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:78
1847
  #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:82
1848
  #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:93
@@ -1883,29 +2814,51 @@ msgid ""
1883
  "menu"
1884
  msgstr ""
1885
 
1886
- #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:115
1887
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:748
1888
- msgid "The selected IP ranges were unlocked successfully!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1889
  msgstr ""
1890
 
1891
- #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:124
1892
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:757
1893
- msgid "The selected IP range was unlocked successfully!"
1894
  msgstr ""
1895
 
1896
- #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:118
1897
  msgid "The selected accounts were approved successfully!"
1898
  msgstr ""
1899
 
1900
- #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:125
 
 
 
 
1901
  msgid "The selected account was approved successfully!"
1902
  msgstr ""
1903
 
1904
- #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:146
 
 
 
 
1905
  msgid "The selected accounts were deleted successfully!"
1906
  msgstr ""
1907
 
1908
- #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:154
1909
  msgid "The selected account was deleted successfully!"
1910
  msgstr ""
1911
 
@@ -1959,430 +2912,632 @@ msgstr ""
1959
  msgid "Save Site Lockout Settings"
1960
  msgstr ""
1961
 
1962
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1963
  msgid "General Settings"
1964
  msgstr ""
1965
 
1966
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:28
1967
  msgid "WP Meta Info"
1968
  msgstr ""
1969
 
1970
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:95
 
 
 
 
1971
  msgid "All the security features have been disabled successfully!"
1972
  msgstr ""
1973
 
1974
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:99
1975
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:126
1976
  msgid ""
1977
  "Could not write to the .htaccess file. Please restore your .htaccess file "
1978
  "manually using the restore functionality in the \".htaccess File\"."
1979
  msgstr ""
1980
 
1981
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:104
1982
  msgid ""
1983
  "Could not write to the wp-config.php. Please restore your wp-config.php file "
1984
  "manually using the restore functionality in the \"wp-config.php File\"."
1985
  msgstr ""
1986
 
1987
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:122
1988
  msgid "All firewall rules have been disabled successfully!"
1989
  msgstr ""
1990
 
1991
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:136
1992
  msgid "WP Security Plugin"
1993
  msgstr ""
1994
 
1995
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:138
1996
  msgid ""
1997
  "Thank you for using our WordPress security plugin. There are a lot of "
1998
  "security features in this plugin."
1999
  msgstr ""
2000
 
2001
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:139
2002
  msgid ""
2003
  "Go through each menu items and enable the security options to add more "
2004
  "security to your site. Start by activating the basic features first."
2005
  msgstr ""
2006
 
2007
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:140
2008
  msgid ""
2009
  "It is a good practice to take a backup of your .htaccess file, database and "
2010
  "wp-config.php file before activating the security features. This plugin has "
2011
  "options that you can use to backup those resources easily."
2012
  msgstr ""
2013
 
2014
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:143
2015
  msgid "Backup your database"
2016
  msgstr ""
2017
 
2018
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:144
2019
  msgid "Backup .htaccess file"
2020
  msgstr ""
2021
 
2022
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:145
2023
  msgid "Backup wp-config.php file"
2024
  msgstr ""
2025
 
2026
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:151
2027
  msgid "Disable Security Features"
2028
  msgstr ""
2029
 
2030
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:157
2031
  msgid ""
2032
  "If you think that some plugin functionality on your site is broken due to a "
2033
  "security feature you enabled in this plugin, then use the following option "
2034
  "to turn off all the security features of this plugin."
2035
  msgstr ""
2036
 
2037
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:161
2038
  msgid "Disable All Security Features"
2039
  msgstr ""
2040
 
2041
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:167
2042
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:177
2043
  msgid "Disable All Firewall Rules"
2044
  msgstr ""
2045
 
2046
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:173
2047
  msgid ""
2048
  "This feature will disable all firewall rules which are currently active in "
2049
  "this plugin and it will also delete these rules from your .htacess file. Use "
2050
  "it if you think one of the firewall rules is causing an issue on your site."
2051
  msgstr ""
2052
 
2053
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:206
2054
  msgid ""
2055
  "Your .htaccess file was successfully backed up! Using an FTP program go to "
2056
- "the \"backups\" directory of this plugin to save a copy of the file to your "
2057
- "computer."
2058
  msgstr ""
2059
 
2060
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:216
2061
  msgid ""
2062
  "htaccess file rename failed during backup. Please check your root directory "
2063
  "for the backup file using FTP."
2064
  msgstr ""
2065
 
2066
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:222
2067
  msgid "htaccess backup failed."
2068
  msgstr ""
2069
 
2070
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:237
2071
  msgid "Please choose a .htaccess to restore from."
2072
  msgstr ""
2073
 
2074
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:253
2075
  msgid ""
2076
  "htaccess file restore failed. Please attempt to restore the .htaccess "
2077
  "manually using FTP."
2078
  msgstr ""
2079
 
2080
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:257
2081
  msgid "Your .htaccess file has successfully been restored!"
2082
  msgstr ""
2083
 
2084
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:263
2085
  msgid ""
2086
  "htaccess Restore operation failed! Please check the contents of the file you "
2087
  "are trying to restore from."
2088
  msgstr ""
2089
 
2090
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:269
2091
  msgid ".htaccess File Operations"
2092
  msgstr ""
2093
 
2094
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:272
2095
  msgid ""
2096
  "Your \".htaccess\" file is a key component of your website's security and it "
2097
  "can be modified to implement various levels of protection mechanisms."
2098
  msgstr ""
2099
 
2100
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:273
2101
  msgid ""
2102
  "This feature allows you to backup and save your currently active .htaccess "
2103
  "file should you need to re-use the the backed up file in the future."
2104
  msgstr ""
2105
 
2106
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:274
2107
  msgid ""
2108
  "You can also restore your site's .htaccess settings using a backed up ."
2109
  "htaccess file."
2110
  msgstr ""
2111
 
2112
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:288
2113
  msgid "Save the current .htaccess file"
2114
  msgstr ""
2115
 
2116
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:292
2117
  msgid ""
2118
  "Click the button below to backup and save the currently active .htaccess "
2119
  "file."
2120
  msgstr ""
2121
 
2122
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:293
2123
  msgid "Backup .htaccess File"
2124
  msgstr ""
2125
 
2126
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:297
2127
  msgid "Restore from a backed up .htaccess file"
2128
  msgstr ""
2129
 
2130
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:303
2131
  msgid ".htaccess file to restore from"
2132
  msgstr ""
2133
 
2134
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:309
2135
  msgid ""
2136
  "After selecting your file, click the button below to restore your site using "
2137
  "the backed up htaccess file (htaccess_backup.txt)."
2138
  msgstr ""
2139
 
2140
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:315
2141
  msgid "Restore .htaccess File"
2142
  msgstr ""
2143
 
2144
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:319
2145
  msgid "View Contents of the currently active .htaccess file"
2146
  msgstr ""
2147
 
2148
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:348
2149
  msgid "Please choose a wp-config.php file to restore from."
2150
  msgstr ""
2151
 
2152
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:364
2153
  msgid ""
2154
  "wp-config.php file restore failed. Please attempt to restore this file "
2155
  "manually using FTP."
2156
  msgstr ""
2157
 
2158
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:368
2159
  msgid "Your wp-config.php file has successfully been restored!"
2160
  msgstr ""
2161
 
2162
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:374
2163
  msgid ""
2164
  "wp-config.php Restore operation failed! Please check the contents of the "
2165
  "file you are trying to restore from."
2166
  msgstr ""
2167
 
2168
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:380
2169
  msgid "wp-config.php File Operations"
2170
  msgstr ""
2171
 
2172
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:383
2173
  msgid ""
2174
  "Your \"wp-config.php\" file is one of the most important in your WordPress "
2175
  "installation. It is a primary configuration file and contains crucial things "
2176
  "such as details of your database and other critical components."
2177
  msgstr ""
2178
 
2179
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:384
2180
  msgid ""
2181
  "This feature allows you to backup and save your currently active wp-config."
2182
  "php file should you need to re-use the the backed up file in the future."
2183
  msgstr ""
2184
 
2185
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:385
2186
  msgid ""
2187
  "You can also restore your site's wp-config.php settings using a backed up wp-"
2188
  "config.php file."
2189
  msgstr ""
2190
 
2191
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:399
2192
  msgid "Save the current wp-config.php file"
2193
  msgstr ""
2194
 
2195
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:403
2196
  msgid ""
2197
  "Click the button below to backup and download the contents of the currently "
2198
  "active wp-config.php file."
2199
  msgstr ""
2200
 
2201
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:404
2202
  msgid "Backup wp-config.php File"
2203
  msgstr ""
2204
 
2205
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:409
2206
  msgid "Restore from a backed up wp-config file"
2207
  msgstr ""
2208
 
2209
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:415
2210
  msgid "wp-config file to restore from"
2211
  msgstr ""
2212
 
2213
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:421
2214
  msgid ""
2215
  "After selecting your file click the button below to restore your site using "
2216
  "the backed up wp-config file (wp-config.php.backup.txt)."
2217
  msgstr ""
2218
 
2219
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:427
2220
  msgid "Restore wp-config File"
2221
  msgstr ""
2222
 
2223
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:431
2224
  msgid "View Contents of the currently active wp-config.php file"
2225
  msgstr ""
2226
 
2227
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:466
2228
  msgid "WP Generator Meta Tag"
2229
  msgstr ""
2230
 
2231
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:469
2232
  msgid ""
2233
  "Wordpress generator automatically adds some meta information inside the "
2234
  "\"head\" tags of every page on your site's front end. Below is an example of "
2235
  "this:"
2236
  msgstr ""
2237
 
2238
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:471
2239
  msgid ""
2240
  "The above meta information shows which version of WordPress your site is "
2241
  "currently running and thus can help hackers or crawlers scan your site to "
2242
  "see if you have an older version of WordPress or one with a known exploit."
2243
  msgstr ""
2244
 
2245
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:472
2246
  msgid ""
2247
  "This feature will allow you to remove the WP generator meta info from your "
2248
  "site's pages."
2249
  msgstr ""
2250
 
2251
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:478
2252
  msgid "WP Generator Meta Info"
2253
  msgstr ""
2254
 
2255
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:490
2256
  msgid "Remove WP Generator Meta Info"
2257
  msgstr ""
2258
 
2259
- #: all-in-one-wp-security/admin/wp-security-settings-menu.php:493
2260
  msgid ""
2261
  "Check this if you want to remove the meta info produced by WP Generator from "
2262
  "all pages"
2263
  msgstr ""
2264
 
2265
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:23
2266
- msgid "Comment SPAM"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2267
  msgstr ""
2268
 
2269
  #: all-in-one-wp-security/admin/wp-security-spam-menu.php:24
 
 
 
 
2270
  msgid "Comment SPAM IP Monitoring"
2271
  msgstr ""
2272
 
2273
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:111
 
 
 
 
2274
  msgid "Comment SPAM Settings"
2275
  msgstr ""
2276
 
2277
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:116
2278
  msgid "Add Captcha To Comments Form"
2279
  msgstr ""
2280
 
2281
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:120
2282
  msgid ""
2283
  "This feature will add a simple math captcha field in the WordPress comments "
2284
  "form."
2285
  msgstr ""
2286
 
2287
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:137
 
 
 
 
 
 
2288
  msgid "Enable Captcha On Comment Forms"
2289
  msgstr ""
2290
 
2291
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:140
2292
  msgid "Check this if you want to insert a captcha field on the comment forms"
2293
  msgstr ""
2294
 
2295
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:148
2296
  msgid "Block Spambot Comments"
2297
  msgstr ""
2298
 
2299
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:152
2300
  msgid ""
2301
  "A large portion of WordPress blog comment SPAM is mainly produced by "
2302
  "automated bots and not necessarily by humans. "
2303
  msgstr ""
2304
 
2305
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:153
2306
  msgid ""
2307
  "This feature will greatly minimize the useless and unecessary traffic and "
2308
  "load on your server resulting from SPAM comments by blocking all comment "
2309
  "requests which do not originate from your domain."
2310
  msgstr ""
2311
 
2312
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:170
 
 
 
 
 
 
2313
  msgid "Block Spambots From Posting Comments"
2314
  msgstr ""
2315
 
2316
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:173
2317
  msgid ""
2318
  "Check this if you want to apply a firewall rule which will block comments "
2319
  "originating from spambots."
2320
  msgstr ""
2321
 
2322
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:177
2323
  msgid ""
2324
  "This feature will implement a firewall rule to block all comment attempts "
2325
  "which do not originate from your domain."
2326
  msgstr ""
2327
 
2328
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:178
2329
  msgid ""
2330
  "A legitimate comment is one which is submitted by a human who physically "
2331
  "fills out the comment form and clicks the submit button. For such events, "
2332
  "the HTTP_REFERRER is always set to your own domain."
2333
  msgstr ""
2334
 
2335
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:179
2336
  msgid ""
2337
  "A comment submitted by a spambot is done by directly calling the comments."
2338
  "php file, which usually means that the HTTP_REFERRER value is not your "
2339
  "domain and often times empty."
2340
  msgstr ""
2341
 
2342
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:180
2343
  msgid ""
2344
  "This feature will check and block comment requests which are not referred by "
2345
  "your domain thus greatly reducing your overall blog SPAM and PHP requests "
2346
  "done by the server to process these comments."
2347
  msgstr ""
2348
 
2349
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:207
2350
  msgid "Nonce check failed for list SPAM comment IPs!"
2351
  msgstr ""
2352
 
2353
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:213
2354
  msgid ""
2355
  "You entered a non numeric value for the minimum SPAM comments per IP field. "
2356
  "It has been set to the default value."
2357
  msgstr ""
2358
 
2359
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:225
2360
  #, php-format
2361
  msgid ""
2362
  "Displaying results for IP addresses which have posted a minimum of %s SPAM "
2363
  "comments"
2364
  msgstr ""
2365
 
2366
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:241
2367
  msgid ""
2368
  "This tab displays a list of the IP addresses of the people or bots who have "
2369
  "left SPAM comments on your site."
2370
  msgstr ""
2371
 
2372
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:242
2373
  msgid ""
2374
  "This information can be handy for identifying the most persistent IP "
2375
  "addresses or ranges used by spammers."
2376
  msgstr ""
2377
 
2378
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:243
2379
  msgid ""
2380
  "By inspecting the IP address data coming from spammers you will be in a "
2381
  "better position to determine which addresses or address ranges you should "
2382
  "block by adding them to your blacklist."
2383
  msgstr ""
2384
 
2385
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:244
2386
  msgid ""
2387
  "To add one or more of the IP addresses displayed in the table below to your "
2388
  "blacklist, simply click the \"Block\" link for the individual row or select "
@@ -2391,57 +3546,93 @@ msgid ""
2391
  "\" option from the Bulk Actions dropdown list and click the \"Apply\" button."
2392
  msgstr ""
2393
 
2394
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:250
2395
  msgid "List SPAMMER IP Addresses"
2396
  msgstr ""
2397
 
2398
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:256
2399
  msgid "Minimum number of SPAM comments per IP"
2400
  msgstr ""
2401
 
2402
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:258
2403
  msgid ""
2404
  "This field allows you to list only those IP addresses which have been used "
2405
  "to post X or more SPAM comments."
2406
  msgstr ""
2407
 
2408
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:262
2409
  msgid ""
2410
  "Example 1: Setting this value to \"0\" or \"1\" will list ALL IP addresses "
2411
  "which were used to submit SPAM comments."
2412
  msgstr ""
2413
 
2414
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:263
2415
  msgid ""
2416
  "Example 2: Setting this value to \"5\" will list only those IP addresses "
2417
  "which were used to submit 5 SPAM comments or more on your site."
2418
  msgstr ""
2419
 
2420
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:270
2421
  msgid "Find IP Addresses"
2422
  msgstr ""
2423
 
2424
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:274
2425
  msgid "SPAMMER IP Address Results"
2426
  msgstr ""
2427
 
2428
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:280
2429
  #: all-in-one-wp-security/classes/wp-security-utility.php:150
2430
  msgid ""
2431
  "The plugin has detected that you are using a Multi-Site WordPress "
2432
  "installation."
2433
  msgstr ""
2434
 
2435
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:281
2436
  msgid "Only the \"superadmin\" can block IP addresses from the main site."
2437
  msgstr ""
2438
 
2439
- #: all-in-one-wp-security/admin/wp-security-spam-menu.php:282
2440
  msgid ""
2441
  "Take note of the IP addresses you want blocked and ask the superadmin to add "
2442
  "these to the blacklist using the \"Blacklist Manager\" on the main site."
2443
  msgstr ""
2444
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2445
  #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:29
2446
  msgid "WP Username"
2447
  msgstr ""
@@ -2451,6 +3642,7 @@ msgid "Display Name"
2451
  msgstr ""
2452
 
2453
  #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:31
 
2454
  msgid "Password"
2455
  msgstr ""
2456
 
@@ -2488,7 +3680,7 @@ msgid "List of Administrator Accounts"
2488
  msgstr ""
2489
 
2490
  #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:107
2491
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:33
2492
  msgid "Change Admin Username"
2493
  msgstr ""
2494
 
@@ -2670,53 +3862,37 @@ msgstr ""
2670
  msgid "Username Successfully Changed!"
2671
  msgstr ""
2672
 
2673
- #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:324
2674
- msgid "Account Login Name"
2675
- msgstr ""
2676
-
2677
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:28
2678
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:41
2679
- msgid "Login Captcha"
2680
- msgstr ""
2681
-
2682
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:29
2683
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:407
2684
- msgid "Login Whitelist"
2685
  msgstr ""
2686
 
2687
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:30
2688
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:519
2689
  msgid "Failed Login Records"
2690
  msgstr ""
2691
 
2692
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:31
2693
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:47
2694
  msgid "Force Logout"
2695
  msgstr ""
2696
 
2697
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:32
2698
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:653
2699
  msgid "Account Activity Logs"
2700
  msgstr ""
2701
 
2702
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:100
2703
  msgid ""
2704
  "You entered a non numeric value for the max login attempts field. It has "
2705
  "been set to the default value."
2706
  msgstr ""
2707
 
2708
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:107
2709
  msgid ""
2710
  "You entered a non numeric value for the login retry time period field. It "
2711
  "has been set to the default value."
2712
  msgstr ""
2713
 
2714
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:114
2715
- msgid ""
2716
- "You entered a non numeric value for the lockout time length field. It has "
2717
- "been set to the default value."
2718
- msgstr ""
2719
-
2720
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:159
2721
  msgid "Login Lockdown Configuration"
2722
  msgstr ""
@@ -2764,311 +3940,205 @@ msgid ""
2764
  msgstr ""
2765
 
2766
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:190
 
 
 
 
 
 
 
 
 
 
2767
  msgid "Max Login Attempts"
2768
  msgstr ""
2769
 
2770
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:192
2771
  msgid ""
2772
  "Set the value for the maximum login retries before IP address is locked out"
2773
  msgstr ""
2774
 
2775
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:196
2776
  msgid "Login Retry Time Period (min)"
2777
  msgstr ""
2778
 
2779
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:198
2780
  msgid ""
2781
  "If the maximum number of failed login attempts for a particular IP address "
2782
  "occur within this time period the plugin will lock out that address"
2783
  msgstr ""
2784
 
2785
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:202
2786
  msgid "Time Length of Lockout (min)"
2787
  msgstr ""
2788
 
2789
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:204
2790
  msgid ""
2791
  "Set the length of time for which a particular IP address will be prevented "
2792
  "from logging in"
2793
  msgstr ""
2794
 
2795
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:208
2796
  msgid "Display Generic Error Message"
2797
  msgstr ""
2798
 
2799
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:211
2800
  msgid ""
2801
  "Check this if you want to show a generic error message when a login attempt "
2802
  "fails"
2803
  msgstr ""
2804
 
2805
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:215
2806
  msgid "Instantly Lockout Invalid Usernames"
2807
  msgstr ""
2808
 
2809
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:218
2810
  msgid ""
2811
  "Check this if you want to instantly lockout login attempts with usernames "
2812
  "which do not exist on your system"
2813
  msgstr ""
2814
 
2815
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:223
2816
  msgid "Notify By Email"
2817
  msgstr ""
2818
 
2819
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:226
2820
  msgid ""
2821
  "Check this if you want to receive an email when someone has been locked out "
2822
  "due to maximum failed login attempts"
2823
  msgstr ""
2824
 
2825
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:236
2826
  msgid "Currently Locked Out IP Address Ranges"
2827
  msgstr ""
2828
 
2829
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:290
2830
- msgid ""
2831
- "This feature allows you to add a captcha form on the WordPress login page."
2832
- msgstr ""
2833
-
2834
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:291
2835
- msgid ""
2836
- "Users who attempt to login will also need to enter the answer to a simple "
2837
- "mathematical question - if they enter the wrong answer, the plugin will not "
2838
- "allow them login even if they entered the correct username and password."
2839
- msgstr ""
2840
-
2841
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:292
2842
- msgid ""
2843
- "Therefore, adding a captcha form on the login page is another effective yet "
2844
- "simple \"Brute Force\" prevention technique."
2845
- msgstr ""
2846
-
2847
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:298
2848
- msgid "Login Form Captcha Settings"
2849
- msgstr ""
2850
-
2851
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:309
2852
- msgid "Enable Captcha On Login Page"
2853
- msgstr ""
2854
-
2855
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:312
2856
- msgid "Check this if you want to insert a captcha form on the login page"
2857
- msgstr ""
2858
-
2859
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:318
2860
- msgid "Lost Password Form Captcha Settings"
2861
- msgstr ""
2862
-
2863
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:328
2864
- msgid "Enable Captcha On Lost Password Page"
2865
- msgstr ""
2866
-
2867
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:331
2868
- msgid ""
2869
- "Check this if you want to insert a captcha form on the lost password page"
2870
- msgstr ""
2871
-
2872
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:353
2873
- msgid "Nonce check failed for save whitelist settings!"
2874
- msgstr ""
2875
-
2876
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:410
2877
- msgid ""
2878
- "The All In One WP Security Whitelist feature gives you the option of only "
2879
- "allowing certain IP addresses or ranges to have access to your WordPress "
2880
- "login page."
2881
- msgstr ""
2882
-
2883
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:411
2884
- msgid ""
2885
- "This feature will deny login access for all IP addresses which are not in "
2886
- "your whitelist as configured in the settings below."
2887
- msgstr ""
2888
-
2889
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:412
2890
- msgid ""
2891
- "The plugin achieves this by writing the appropriate directives to your ."
2892
- "htaccess file."
2893
- msgstr ""
2894
-
2895
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:413
2896
- msgid ""
2897
- "By allowing/blocking IP addresses via the .htaccess file your are using the "
2898
- "most secure first line of defence because login access will only be granted "
2899
- "to whitelisted IP addresses and other addresses will be blocked as soon as "
2900
- "they try to access your login page."
2901
- msgstr ""
2902
-
2903
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:420
2904
  #, php-format
2905
  msgid ""
2906
- "Attention: If in addition to enabling the white list feature, you also have "
2907
- "the %s feature enabled, <strong>you will still need to use your secret word "
2908
- "in the URL when trying to access your WordPress login page</strong>."
2909
- msgstr ""
2910
-
2911
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:421
2912
- msgid ""
2913
- "These features are NOT functionally related. Having both of them enabled on "
2914
- "your site means you are creating 2 layers of security."
2915
- msgstr ""
2916
-
2917
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:426
2918
- msgid "Login IP Whitelist Settings"
2919
- msgstr ""
2920
-
2921
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:437
2922
- msgid "Enable IP Whitelisting"
2923
- msgstr ""
2924
-
2925
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:440
2926
- msgid ""
2927
- "Check this if you want to enable the whitelisting of selected IP addresses "
2928
- "specified in the settings below"
2929
- msgstr ""
2930
-
2931
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:444
2932
- msgid "Your Current IP Address"
2933
- msgstr ""
2934
-
2935
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:447
2936
- msgid ""
2937
- "You can copy and paste this address in the text box below if you want to "
2938
- "include it in your login whitelist."
2939
- msgstr ""
2940
-
2941
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:451
2942
- msgid "Enter Whitelisted IP Addresses:"
2943
- msgstr ""
2944
-
2945
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:455
2946
- msgid ""
2947
- "Enter one or more IP addresses or IP ranges you wish to include in your "
2948
- "whitelist. Only the addresses specified here will have access to the "
2949
- "WordPress login page."
2950
  msgstr ""
2951
 
2952
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:485
2953
  msgid "Nonce check failed for delete all failed login records operation!"
2954
  msgstr ""
2955
 
2956
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:494
2957
  msgid "User Login Feature - Delete all failed login records operation failed!"
2958
  msgstr ""
2959
 
2960
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:498
2961
  msgid "All records from the Failed Logins table were deleted successfully!"
2962
  msgstr ""
2963
 
2964
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:513
2965
  msgid "This tab displays the failed login attempts for your site."
2966
  msgstr ""
2967
 
2968
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:514
2969
  msgid ""
2970
  "The information below can be handy if you need to do security investigations "
2971
  "because it will show you the IP range, username and ID (if applicable) and "
2972
  "the time/date of the failed login attempt."
2973
  msgstr ""
2974
 
2975
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:535
2976
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:544
2977
  msgid "Delete All Failed Login Records"
2978
  msgstr ""
2979
 
2980
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:541
2981
  msgid ""
2982
  "Click this button if you wish to delete all failed login records in one go."
2983
  msgstr ""
2984
 
2985
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:569
2986
  msgid ""
2987
  "You entered a non numeric value for the logout time period field. It has "
2988
  "been set to the default value."
2989
  msgstr ""
2990
 
2991
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:597
2992
  msgid ""
2993
  "Setting an expiry period for your WP administration session is a simple way "
2994
  "to protect against unauthorized access to your site from your computer."
2995
  msgstr ""
2996
 
2997
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:598
2998
  msgid ""
2999
  "This feature allows you to specify a time period in minutes after which th
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AIOWPS\n"
4
+ "POT-Creation-Date: 2014-09-19 10:46+1000\n"
5
+ "PO-Revision-Date: 2014-09-19 10:46+1000\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "MIME-Version: 1.0\n"
13
  "X-Poedit-Basepath: .\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:203
17
  msgid "WP Security"
18
  msgstr ""
19
 
20
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:204
21
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:23
22
  msgid "Dashboard"
23
  msgstr ""
24
 
25
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:205
26
  msgid "Settings"
27
  msgstr ""
28
 
29
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:206
30
  msgid "User Accounts"
31
  msgstr ""
32
 
33
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:207
34
  msgid "User Login"
35
  msgstr ""
36
 
37
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:208
38
  msgid "User Registration"
39
  msgstr ""
40
 
41
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:209
42
  msgid "Database Security"
43
  msgstr ""
44
 
45
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:213
46
  msgid "Filesystem Security"
47
  msgstr ""
48
 
49
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:215
50
  msgid "WHOIS Lookup"
51
  msgstr ""
52
 
53
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:219
54
  msgid "Blacklist Manager"
55
  msgstr ""
56
 
57
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:224
58
  msgid "Firewall"
59
  msgstr ""
60
 
61
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:229
62
+ msgid "Brute Force"
63
+ msgstr ""
64
+
65
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:231
66
  msgid "SPAM Prevention"
67
  msgstr ""
68
 
69
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:235
70
  msgid "Scanner"
71
  msgstr ""
72
 
73
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:237
74
  msgid "Maintenance"
75
  msgstr ""
76
 
77
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:238
78
+ msgid "Miscellaneous"
79
+ msgstr ""
80
+
81
  #: all-in-one-wp-security/admin/wp-security-admin-menu.php:43
82
  msgid "Settings successfully updated."
83
  msgstr ""
95
  msgstr ""
96
 
97
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:132
98
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:631
99
  #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:147
 
100
  msgid ""
101
  "The plugin was unable to write to the .htaccess file. Please edit file "
102
  "manually."
156
 
157
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:174
158
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:194
159
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:347
160
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:381
161
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:404
162
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:425
163
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:687
164
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:293
165
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:310
166
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:165
167
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:195
168
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:326
169
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:356
170
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:387
171
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:415
172
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:444
173
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:532
174
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:622
175
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:824
176
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:847
177
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:168
178
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:253
179
  msgid "More Info"
180
  msgstr ""
181
 
182
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:177
183
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:690
184
  msgid "Each IP address must be on a new line."
185
  msgstr ""
186
 
187
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:178
188
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:691
189
  msgid ""
190
  "To specify an IP range use a wildcard \"*\" character. Acceptable ways to "
191
  "use wildcards is shown in the examples below:"
192
  msgstr ""
193
 
194
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:179
195
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:692
196
  msgid "Example 1: 195.47.89.*"
197
  msgstr ""
198
 
199
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:180
200
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:693
201
  msgid "Example 2: 195.47.*.*"
202
  msgstr ""
203
 
204
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:181
205
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:694
206
  msgid "Example 3: 195.*.*.*"
207
  msgstr ""
208
 
227
  msgstr ""
228
 
229
  #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:208
230
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:192
231
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:567
232
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:701
233
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:763
234
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:356
235
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:331
236
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:231
237
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:700
238
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:866
239
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:165
240
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:495
241
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:183
242
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:349
243
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:239
244
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:407
245
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:146
246
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:232
247
  msgid "Save Settings"
248
  msgstr ""
249
 
250
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:26
251
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:368
252
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:377
253
+ msgid "Rename Login Page"
254
  msgstr ""
255
 
256
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:27
257
+ msgid "Cookie Based Brute Force Prevention"
258
  msgstr ""
259
 
260
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:28
261
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:44
262
+ msgid "Login Captcha"
263
  msgstr ""
264
 
265
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:29
266
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:638
267
+ msgid "Login Whitelist"
268
  msgstr ""
269
 
270
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:30
271
+ msgid "Honeypot"
272
  msgstr ""
273
 
274
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:101
275
+ msgid "Please enter a value for your login page slug."
 
 
276
  msgstr ""
277
 
278
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:105
279
+ msgid "You cannot use the value \"wp-admin\" for your login page slug."
280
  msgstr ""
281
 
282
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:107
283
+ msgid "You must alpha numeric characters for your login page slug."
284
  msgstr ""
285
 
286
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:112
287
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:271
288
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:171
289
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:769
290
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:213
291
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:123
292
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:360
293
+ msgid "Attention!"
294
  msgstr ""
295
 
296
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:131
297
+ msgid ""
298
+ "Could not delete the Cookie-based directives from the .htaccess file. Please "
299
+ "check the file permissions."
300
  msgstr ""
301
 
302
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:141
303
+ msgid ""
304
+ "An effective Brute Force prevention technique is to change the default "
305
+ "WordPress login page URL."
306
  msgstr ""
307
 
308
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:142
309
  msgid ""
310
+ "Normally if you wanted to login to WordPress you would type your site's home "
311
+ "URL followed by wp-login.php."
312
  msgstr ""
313
 
314
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:143
315
+ msgid ""
316
+ "This feature allows you to change the login URL by setting your own slug and "
317
+ "renaming the last portion of the login URL which contains the <strong>wp-"
318
+ "login.php</strong> to any string that you like."
319
  msgstr ""
320
 
321
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:144
322
+ msgid ""
323
+ "By doing this, malicious bots and hackers will not be able to access your "
324
+ "login page because they will not know the correct login page URL."
325
  msgstr ""
326
 
327
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:146
328
+ msgid ""
329
+ "You may also be interested in the following alternative brute force "
330
+ "prevention features:"
331
  msgstr ""
332
 
333
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:157
334
+ msgid "Your WordPress login page URL has been renamed."
335
  msgstr ""
336
 
337
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:158
338
+ msgid "Your current login URL is:"
339
  msgstr ""
340
 
341
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:160
342
  msgid ""
343
+ "NOTE: If you already had the Cookie-Based Brute Force Prevention feature "
344
+ "active, the plugin has automatically deactivated it because only one of "
345
+ "these features can be active at any one time."
346
  msgstr ""
347
 
348
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:167
349
+ msgid "Rename Login Page Settings"
350
  msgstr ""
351
 
352
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:179
353
+ msgid "Enable Rename Login Page Feature"
354
  msgstr ""
355
 
356
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:182
357
+ msgid "Check this if you want to enable the rename login page feature"
 
358
  msgstr ""
359
 
360
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:186
361
+ msgid "Login Page URL"
362
  msgstr ""
363
 
364
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:188
365
+ msgid ""
366
+ "Enter a string which will represent your secure login page slug. You are "
367
+ "enouraged to choose something which is hard to guess and only you will "
368
+ "remember."
369
  msgstr ""
370
 
371
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:221
372
+ msgid ""
373
+ "Settings have not been saved - your secret word must consist only of "
374
+ "alphanumeric characters, ie, letters and/or numbers only!"
375
  msgstr ""
376
 
377
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:240
378
+ msgid ""
379
+ "You have successfully enabled the cookie based brute force prevention feature"
380
  msgstr ""
381
 
382
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:241
383
+ msgid ""
384
+ "From now on you will need to log into your WP Admin using the following URL:"
385
  msgstr ""
386
 
387
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:243
388
+ msgid ""
389
+ "It is important that you save this URL value somewhere in case you forget "
390
+ "it, OR,"
391
  msgstr ""
392
 
393
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:244
394
+ #, php-format
395
+ msgid "simply remember to add a \"?%s=1\" to your current site URL address."
 
396
  msgstr ""
397
 
398
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:250
399
+ msgid ""
400
+ "You have successfully saved cookie based brute force prevention feature "
401
+ "settings."
402
  msgstr ""
403
 
404
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:285
405
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:275
406
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:119
407
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:287
408
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:498
409
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:667
410
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:585
411
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:108
412
+ msgid ""
413
+ "Could not write to the .htaccess file. Please check the file permissions."
414
  msgstr ""
415
 
416
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:295
417
+ msgid "Brute Force Prevention Firewall Settings"
418
  msgstr ""
419
 
420
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:300
421
+ msgid ""
422
+ "A Brute Force Attack is when a hacker tries many combinations of usernames "
423
+ "and passwords until they succeed in guessing the right combination."
424
  msgstr ""
425
 
426
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:301
427
+ msgid ""
428
+ "Due to the fact that at any one time there may be many concurrent login "
429
+ "attempts occurring on your site via malicious automated robots, this also "
430
+ "has a negative impact on your server's memory and performance."
431
  msgstr ""
432
 
433
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:302
434
+ msgid ""
435
+ "The features in this tab will stop the majority of Brute Force Login Attacks "
436
+ "at the .htaccess level thus providing even better protection for your WP "
437
+ "login page and also reducing the load on your server because the system does "
438
+ "not have to run PHP code to process the login attempts."
439
  msgstr ""
440
 
441
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:309
442
+ #, php-format
443
+ msgid ""
444
+ "Even though this feature should not have any impact on your site's general "
445
+ "functionality <strong>you are strongly encouraged to take a %s of your ."
446
+ "htaccess file before proceeding</strong>."
447
  msgstr ""
448
 
449
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:310
450
+ msgid ""
451
+ "If this feature is not used correctly, you can get locked out of your site. "
452
+ "A backed up .htaccess file will come in handy if that happens."
453
  msgstr ""
454
 
455
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:311
456
+ #, php-format
457
+ msgid ""
458
+ "To learn more about how to use this feature please watch the following %s."
459
  msgstr ""
460
 
461
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:324
462
+ msgid ""
463
+ "NOTE: If you already had the Rename Login Page feature active, the plugin "
464
+ "has automatically deactivated it because only one of these features can be "
465
+ "active at any one time."
466
  msgstr ""
467
 
468
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:332
469
+ msgid "Cookie Based Brute Force Login Prevention"
470
  msgstr ""
471
 
472
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:343
473
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:90
474
+ msgid "Enable Brute Force Attack Prevention"
 
475
  msgstr ""
476
 
477
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:346
478
+ msgid ""
479
+ "Check this if you want to protect your login page from Brute Force Attack."
480
  msgstr ""
481
 
482
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:351
483
+ msgid ""
484
+ "This feature will deny access to your WordPress login page for all people "
485
+ "except those who have a special cookie in their browser."
486
  msgstr ""
487
 
488
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:353
489
+ msgid "To use this feature do the following:"
 
490
  msgstr ""
491
 
492
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:355
493
+ msgid "1) Enable the checkbox."
494
  msgstr ""
495
 
496
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:357
497
  msgid ""
498
+ "2) Enter a secret word consisting of alphanumeric characters which will be "
499
+ "difficult to guess. This secret word will be useful whenever you need to "
500
+ "know the special URL which you will use to access the login page (see point "
501
+ "below)."
502
  msgstr ""
503
 
504
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:359
505
+ msgid ""
506
+ "3) You will then be provided with a special login URL. You will need to use "
507
+ "this URL to login to your WordPress site instead of the usual login URL. "
508
+ "NOTE: The system will deposit a special cookie in your browser which will "
509
+ "allow you access to the WordPress administration login page."
510
  msgstr ""
511
 
512
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:361
513
  msgid ""
514
+ "Any person trying to access your login page who does not have the special "
515
+ "cookie in their browser will be automatically blocked."
516
  msgstr ""
517
 
518
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:368
519
+ msgid "Secret Word"
520
  msgstr ""
521
 
522
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:370
523
  msgid ""
524
+ "Choose a secret word consisting of alphanumeric characters which you can use "
525
+ "to access your special URL. Your are highly encouraged to choose a word "
526
+ "which will be difficult to guess."
527
  msgstr ""
528
 
529
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:374
530
+ msgid "Re-direct URL"
 
 
531
  msgstr ""
532
 
533
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:378
534
  msgid ""
535
+ "Specify a URL to redirect a hacker to when they try to access your WordPress "
536
+ "login page."
 
537
  msgstr ""
538
 
539
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:385
540
  msgid ""
541
+ "The URL specified here can be any site's URL and does not have to be your "
542
+ "own. For example you can be as creative as you like and send hackers to the "
543
+ "CIA or NSA home page."
544
  msgstr ""
545
 
546
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:387
547
+ msgid ""
548
+ "This field will default to: http://127.0.0.1 if you do not enter a value."
549
  msgstr ""
550
 
551
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:389
552
+ msgid "Useful Tip:"
 
553
  msgstr ""
554
 
555
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:391
556
+ msgid ""
557
+ "It's a good idea to not redirect attempted brute force login attempts to "
558
+ "your site because it increases the load on your server."
559
  msgstr ""
560
 
561
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:393
562
  msgid ""
563
+ "Redirecting a hacker or malicious bot back to \"http://127.0.0.1\" is ideal "
564
+ "because it deflects them back to their own local host and puts the load on "
565
+ "their server instead of yours."
 
566
  msgstr ""
567
 
568
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:400
569
+ msgid "My Site Has Posts Or Pages Which Are Password Protected"
570
  msgstr ""
571
 
572
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:403
573
  msgid ""
574
+ "Check this if you are using the native WordPress password protection feature "
575
+ "for some or all of your blog posts or pages."
 
 
 
 
576
  msgstr ""
577
 
578
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:408
579
  msgid ""
580
+ "In the cases where you are protecting some of your posts or pages using the "
581
+ "in-built WordPress password protection feature, a few extra lines of "
582
+ "directives and exceptions need to be added to your .htacces file so that "
583
+ "people trying to access pages are not automatically blocked."
584
  msgstr ""
585
 
586
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:410
587
+ msgid ""
588
+ "By enabling this checkbox the plugin will add the necessary rules and "
589
+ "exceptions to your .htacces file so that people trying to access these pages "
590
+ "are not automatically blocked."
591
  msgstr ""
592
 
593
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:412
594
+ msgid "Helpful Tip:"
 
595
  msgstr ""
596
 
597
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:414
598
  msgid ""
599
+ "If you do not use the WordPress password protection feature for your posts "
600
+ "or pages then it is highly recommended that you leave this checkbox disabled."
 
601
  msgstr ""
602
 
603
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:421
604
+ msgid "My Site Has a Theme or Plugins Which Use AJAX"
605
  msgstr ""
606
 
607
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:424
608
+ msgid "Check this if your site uses AJAX functionality."
609
  msgstr ""
610
 
611
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:429
 
612
  msgid ""
613
+ "In the cases where your WordPress installation has a theme or plugins which "
614
+ "use AJAX, a few extra lines of directives and exceptions need to be added to "
615
+ "your .htacces file to prevent AJAX requests from being automatically blocked "
616
+ "by the brute force prevention feature."
617
  msgstr ""
618
 
619
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:431
620
  msgid ""
621
+ "By enabling this checkbox the plugin will add the necessary rules and "
622
+ "exceptions to your .htacces file so that AJAX operations will work as "
623
+ "expected."
624
  msgstr ""
625
 
626
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:446
627
+ msgid "The cookie test was successful. You can now enable this feature."
 
 
 
 
628
  msgstr ""
629
 
630
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:449
631
+ msgid "Save Feature Settings"
 
 
 
 
632
  msgstr ""
633
 
634
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:456
635
+ msgid ""
636
+ "The cookie test failed on this server. So this feature cannot be used on "
637
+ "this site."
638
  msgstr ""
639
 
640
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:461
641
+ msgid ""
642
+ "Before using this feature you are required to perform a cookie test first. "
643
+ "This is to make sure that your browser cookie is working correctly and that "
644
+ "you won't lock yourself out."
645
  msgstr ""
646
 
647
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:463
648
+ msgid "Perform Cookie Test"
649
  msgstr ""
650
 
651
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:503
652
+ msgid ""
653
+ "This feature allows you to add a captcha form on the WordPress login page."
654
+ msgstr ""
655
+
656
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:504
657
+ msgid ""
658
+ "Users who attempt to login will also need to enter the answer to a simple "
659
+ "mathematical question - if they enter the wrong answer, the plugin will not "
660
+ "allow them login even if they entered the correct username and password."
661
+ msgstr ""
662
+
663
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:505
664
+ msgid ""
665
+ "Therefore, adding a captcha form on the login page is another effective yet "
666
+ "simple \"Brute Force\" prevention technique."
667
+ msgstr ""
668
+
669
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:511
670
+ msgid "Login Form Captcha Settings"
671
+ msgstr ""
672
+
673
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:522
674
+ msgid "Enable Captcha On Login Page"
675
+ msgstr ""
676
+
677
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:525
678
+ msgid "Check this if you want to insert a captcha form on the login page"
679
+ msgstr ""
680
+
681
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:531
682
+ msgid "Custom Login Form Captcha Settings"
683
+ msgstr ""
684
+
685
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:540
686
+ msgid "Enable Captcha On Custom Login Form"
687
+ msgstr ""
688
+
689
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:543
690
+ msgid ""
691
+ "Check this if you want to insert captcha on a custom login form generated by "
692
+ "the following WP function: wp_login_form()"
693
+ msgstr ""
694
+
695
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:549
696
+ msgid "Lost Password Form Captcha Settings"
697
+ msgstr ""
698
+
699
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:559
700
+ msgid "Enable Captcha On Lost Password Page"
701
+ msgstr ""
702
+
703
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:562
704
+ msgid ""
705
+ "Check this if you want to insert a captcha form on the lost password page"
706
+ msgstr ""
707
+
708
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:584
709
+ msgid "Nonce check failed for save whitelist settings!"
710
+ msgstr ""
711
+
712
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:641
713
+ msgid ""
714
+ "The All In One WP Security Whitelist feature gives you the option of only "
715
+ "allowing certain IP addresses or ranges to have access to your WordPress "
716
+ "login page."
717
+ msgstr ""
718
+
719
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:642
720
+ msgid ""
721
+ "This feature will deny login access for all IP addresses which are not in "
722
+ "your whitelist as configured in the settings below."
723
+ msgstr ""
724
+
725
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:643
726
+ msgid ""
727
+ "The plugin achieves this by writing the appropriate directives to your ."
728
+ "htaccess file."
729
+ msgstr ""
730
+
731
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:644
732
+ msgid ""
733
+ "By allowing/blocking IP addresses via the .htaccess file your are using the "
734
+ "most secure first line of defence because login access will only be granted "
735
+ "to whitelisted IP addresses and other addresses will be blocked as soon as "
736
+ "they try to access your login page."
737
+ msgstr ""
738
+
739
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:651
740
+ #, php-format
741
+ msgid ""
742
+ "Attention: If in addition to enabling the white list feature, you also have "
743
+ "the %s feature enabled, <strong>you will still need to use your secret word "
744
+ "in the URL when trying to access your WordPress login page</strong>."
745
+ msgstr ""
746
+
747
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:652
748
+ msgid ""
749
+ "These features are NOT functionally related. Having both of them enabled on "
750
+ "your site means you are creating 2 layers of security."
751
+ msgstr ""
752
+
753
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:657
754
+ msgid "Login IP Whitelist Settings"
755
+ msgstr ""
756
+
757
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:668
758
+ msgid "Enable IP Whitelisting"
759
+ msgstr ""
760
+
761
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:671
762
+ msgid ""
763
+ "Check this if you want to enable the whitelisting of selected IP addresses "
764
+ "specified in the settings below"
765
+ msgstr ""
766
+
767
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:675
768
+ msgid "Your Current IP Address"
769
+ msgstr ""
770
+
771
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:678
772
+ msgid ""
773
+ "You can copy and paste this address in the text box below if you want to "
774
+ "include it in your login whitelist."
775
+ msgstr ""
776
+
777
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:682
778
+ msgid "Enter Whitelisted IP Addresses:"
779
+ msgstr ""
780
+
781
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:686
782
+ msgid ""
783
+ "Enter one or more IP addresses or IP ranges you wish to include in your "
784
+ "whitelist. Only the addresses specified here will have access to the "
785
+ "WordPress login page."
786
+ msgstr ""
787
+
788
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:734
789
+ msgid ""
790
+ "This feature allows you to add a special hidden \"honeypot\" field on the "
791
+ "WordPress login page. This will only be visible to robots and not humans."
792
+ msgstr ""
793
+
794
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:735
795
+ msgid ""
796
+ "Since robots usually fill in every input field from a login form, they will "
797
+ "also submit a value for the special hidden honeypot field."
798
+ msgstr ""
799
+
800
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:736
801
+ msgid ""
802
+ "The way honeypots work is that a hidden field is placed somewhere inside a "
803
+ "form which only robots will submit. If that field contains a value when the "
804
+ "form is submitted then a robot has most likely submitted the form and it is "
805
+ "consquently dealt with."
806
+ msgstr ""
807
+
808
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:737
809
+ msgid ""
810
+ "Therefore, if the plugin detects that this field has a value when the login "
811
+ "form is submitted, then the robot which is attempting to login to your site "
812
+ "will be redirected to its localhost address - http://127.0.0.1."
813
+ msgstr ""
814
+
815
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:743
816
+ msgid "Login Form Honeypot Settings"
817
+ msgstr ""
818
+
819
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:754
820
+ msgid "Enable Honeypot On Login Page"
821
+ msgstr ""
822
+
823
+ #: all-in-one-wp-security/admin/wp-security-brute-force-menu.php:757
824
+ msgid ""
825
+ "Check this if you want to enable the honeypot feature for the login page"
826
+ msgstr ""
827
+
828
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:24
829
+ msgid "System Info"
830
+ msgstr ""
831
+
832
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:25
833
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:460
834
+ msgid "Locked IP Addresses"
835
+ msgstr ""
836
+
837
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:75
838
+ msgid "For information, updates and documentation, please visit the"
839
+ msgstr ""
840
+
841
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:75
842
+ msgid "AIO WP Security & Firewall Plugin"
843
+ msgstr ""
844
+
845
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:75
846
+ msgid "Page"
847
+ msgstr ""
848
+
849
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:76
850
+ msgid "Follow us"
851
+ msgstr ""
852
+
853
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:76
854
+ msgid ""
855
+ "Twitter, Google+ or via Email to stay up to date about the new security "
856
+ "features of this plugin."
857
+ msgstr ""
858
+
859
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:92
860
+ msgid "Security Strength Meter"
861
+ msgstr ""
862
+
863
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:121
864
+ msgid "Total Achievable Points: "
865
+ msgstr ""
866
+
867
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:123
868
+ msgid "Current Score of Your Site: "
869
+ msgstr ""
870
+
871
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:133
872
+ msgid "Security Points Breakdown"
873
+ msgstr ""
874
+
875
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:174
876
+ msgid "Spread the Word"
877
+ msgstr ""
878
+
879
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:177
880
+ msgid ""
881
+ "We are working hard to make your WordPress site more secure. Please support "
882
+ "us, here is how:"
883
+ msgstr ""
884
+
885
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:193
886
+ msgid "Critical Feature Status"
887
+ msgstr ""
888
+
889
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:197
890
+ msgid ""
891
+ "Below is the current status of the critical features that you should "
892
+ "activate on your site to achieve a minimum level of recommended security"
893
+ msgstr ""
894
+
895
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:201
896
+ msgid "Admin Username"
897
+ msgstr ""
898
+
899
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:216
900
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:25
901
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:42
902
+ msgid "Login Lockdown"
903
+ msgstr ""
904
+
905
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:231
906
+ msgid "File Permission"
907
+ msgstr ""
908
+
909
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:246
910
+ msgid "Basic Firewall"
911
+ msgstr ""
912
+
913
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:264
914
+ msgid "Last 5 Logins"
915
+ msgstr ""
916
+
917
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:281
918
+ msgid "No data found!"
919
+ msgstr ""
920
+
921
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:285
922
+ msgid "Last 5 logins summary:"
923
+ msgstr ""
924
+
925
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:289
926
+ msgid "User"
927
+ msgstr ""
928
+
929
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:290
930
+ msgid "Date"
931
+ msgstr ""
932
+
933
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:291
934
+ msgid "IP"
935
+ msgstr ""
936
+
937
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:312
938
+ msgid "Maintenance Mode Status"
939
+ msgstr ""
940
+
941
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:316
942
+ msgid ""
943
+ "Maintenance mode is currently enabled. Remember to turn it off when you are "
944
+ "done"
945
+ msgstr ""
946
+
947
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:319
948
+ msgid "Maintenance mode is currently off."
949
+ msgstr ""
950
+
951
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:323
952
+ msgid "Maintenance Mode"
953
+ msgstr ""
954
+
955
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:345
956
+ msgid "Cookie Based Brute Prevention"
957
+ msgstr ""
958
+
959
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:348
960
+ msgid "Cookie-Based Brute Force"
961
+ msgstr ""
962
+
963
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:352
964
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:380
965
+ #, php-format
966
+ msgid "The %s feature is currently active."
967
+ msgstr ""
968
+
969
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:353
970
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:381
971
+ msgid "Your new WordPress login URL is now:"
972
+ msgstr ""
973
+
974
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:413
975
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:29
976
+ msgid "Logged In Users"
977
+ msgstr ""
978
+
979
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:423
980
+ msgid "Number of users currently logged in site-wide is:"
981
+ msgstr ""
982
+
983
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:424
984
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:446
985
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:474
986
+ #, php-format
987
+ msgid "Go to the %s menu to see more details"
988
+ msgstr ""
989
+
990
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:429
991
+ msgid "There are no other site-wide users currently logged in."
992
+ msgstr ""
993
+
994
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:445
995
+ msgid "Number of users currently logged into your site (including you) is:"
996
+ msgstr ""
997
+
998
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:451
999
+ msgid "There are no other users currently logged in."
1000
+ msgstr ""
1001
+
1002
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:468
1003
+ msgid "There are no IP addresses currently locked out."
1004
+ msgstr ""
1005
+
1006
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:473
1007
+ msgid "Number of temporarily locked out IP addresses: "
1008
+ msgstr ""
1009
+
1010
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:516
1011
+ msgid "Site Info"
1012
+ msgstr ""
1013
+
1014
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:518
1015
+ msgid "Plugin Version"
1016
+ msgstr ""
1017
+
1018
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:519
1019
+ msgid "WP Version"
1020
+ msgstr ""
1021
+
1022
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:521
1023
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:523
1024
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:619
1025
+ msgid "Version"
1026
+ msgstr ""
1027
+
1028
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:522
1029
+ msgid "Table Prefix"
1030
+ msgstr ""
1031
+
1032
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:524
1033
+ msgid "Session Save Path"
1034
+ msgstr ""
1035
+
1036
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:526
1037
+ msgid "Server Name"
1038
+ msgstr ""
1039
+
1040
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:527
1041
+ msgid "Cookie Domain"
1042
+ msgstr ""
1043
+
1044
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:528
1045
+ msgid "Library Present"
1046
+ msgstr ""
1047
+
1048
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:529
1049
+ msgid "Debug File Write Permissions"
1050
+ msgstr ""
1051
+
1052
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:533
1053
+ msgid "PHP Info"
1054
+ msgstr ""
1055
+
1056
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:535
1057
+ msgid "PHP Version"
1058
+ msgstr ""
1059
+
1060
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:536
1061
+ msgid "PHP Memory Usage"
1062
+ msgstr ""
1063
+
1064
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:537
1065
+ msgid " MB"
1066
+ msgstr ""
1067
+
1068
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:543
1069
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:551
1070
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:559
1071
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:601
1072
+ msgid "N/A"
1073
+ msgstr ""
1074
+
1075
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:546
1076
+ msgid "PHP Memory Limit"
1077
+ msgstr ""
1078
+
1079
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:554
1080
+ msgid "PHP Max Upload Size"
1081
+ msgstr ""
1082
+
1083
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:562
1084
+ msgid "PHP Max Post Size"
1085
+ msgstr ""
1086
+
1087
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:565
1088
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:573
1089
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:582
1090
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:590
1091
+ msgid "On"
1092
+ msgstr ""
1093
+
1094
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:567
1095
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:575
1096
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:584
1097
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:592
1098
+ msgid "Off"
1099
+ msgstr ""
1100
+
1101
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:570
1102
+ msgid "PHP Safe Mode"
1103
+ msgstr ""
1104
+
1105
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:578
1106
+ msgid "PHP Allow URL fopen"
1107
+ msgstr ""
1108
+
1109
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:587
1110
+ msgid "PHP Allow URL Include"
1111
+ msgstr ""
1112
+
1113
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:595
1114
+ msgid "PHP Display Errors"
1115
+ msgstr ""
1116
+
1117
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:604
1118
+ msgid "PHP Max Script Execution Time"
1119
+ msgstr ""
1120
+
1121
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:604
1122
+ msgid "Seconds"
1123
+ msgstr ""
1124
+
1125
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:608
1126
+ msgid "Active Plugins"
1127
+ msgstr ""
1128
+
1129
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:618
1130
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:130
1131
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:149
1132
+ msgid "Name"
1133
+ msgstr ""
1134
+
1135
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:620
1136
+ msgid "Plugin URL"
1137
+ msgstr ""
1138
+
1139
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:656
1140
+ msgid "Currently Locked Out IP Addresses and Ranges"
1141
+ msgstr ""
1142
+
1143
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:26
1144
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:31
1145
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:63
1146
+ msgid "DB Backup"
1147
+ msgstr ""
1148
+
1149
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:30
1150
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:61
1151
+ msgid "DB Prefix"
1152
+ msgstr ""
1153
+
1154
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:93
1155
+ msgid "Nonce check failed for DB prefix change operation!"
1156
+ msgstr ""
1157
+
1158
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:101
1159
+ msgid ""
1160
+ "The plugin has detected that it cannot write to the wp-config.php file. This "
1161
+ "feature can only be used if the plugin can successfully write to the wp-"
1162
+ "config.php file."
1163
+ msgstr ""
1164
+
1165
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:114
1166
+ msgid "Please enter a value for the DB prefix."
1167
+ msgstr ""
1168
+
1169
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:123
1170
+ msgid ""
1171
+ "<strong>ERROR</strong>: The table prefix can only contain numbers, letters, "
1172
+ "and underscores."
1173
+ msgstr ""
1174
+
1175
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:131
1176
+ msgid "Change Database Prefix"
1177
+ msgstr ""
1178
+
1179
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:134
1180
+ msgid ""
1181
+ "Your WordPress DB is the most important asset of your website because it "
1182
+ "contains a lot of your site's precious information."
1183
+ msgstr ""
1184
+
1185
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:135
1186
+ msgid ""
1187
+ "The DB is also a target for hackers via methods such as SQL injections and "
1188
+ "malicious and automated code which targets certain tables."
1189
+ msgstr ""
1190
+
1191
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:136
1192
+ msgid ""
1193
+ "One way to add a layer of protection for your DB is to change the default "
1194
+ "WordPress table prefix from \"wp_\" to something else which will be "
1195
+ "difficult for hackers to guess."
1196
+ msgstr ""
1197
+
1198
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:137
1199
+ msgid ""
1200
+ "This feature allows you to easily change the prefix to a value of your "
1201
+ "choice or to a random value set by this plugin."
1202
+ msgstr ""
1203
+
1204
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:143
1205
+ msgid "DB Prefix Options"
1206
+ msgstr ""
1207
+
1208
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:154
1209
+ #, php-format
1210
+ msgid "It is recommended that you perform a %s before using this feature"
1211
+ msgstr ""
1212
+
1213
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:163
1214
+ msgid "Current DB Table Prefix"
1215
+ msgstr ""
1216
+
1217
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:169
1218
+ msgid ""
1219
+ "Your site is currently using the default WordPress DB prefix value of \"wp_"
1220
+ "\". \n"
1221
+ " To increase your site's security you should "
1222
+ "consider changing the DB prefix value to another value."
1223
+ msgstr ""
1224
+
1225
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:176
1226
+ msgid "Generate New DB Table Prefix"
1227
+ msgstr ""
1228
+
1229
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:179
1230
+ msgid ""
1231
+ "Check this if you want the plugin to generate a random 6 character string "
1232
+ "for the table prefix"
1233
+ msgstr ""
1234
+
1235
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:180
1236
+ msgid "OR"
1237
+ msgstr ""
1238
+
1239
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:182
1240
+ msgid ""
1241
+ "Choose your own DB prefix by specifying a string which contains letters and/"
1242
+ "or numbers and/or underscores. Example: xyz_"
1243
+ msgstr ""
1244
+
1245
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:186
1246
+ msgid "Change DB Prefix"
1247
+ msgstr ""
1248
+
1249
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:207
1250
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:86
1251
+ msgid "Nonce check failed for manual DB backup operation!"
1252
+ msgstr ""
1253
+
1254
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:224
1255
+ msgid ""
1256
+ "DB Backup was successfully completed! You will receive the backup file via "
1257
+ "email if you have enabled \"Send Backup File Via Email\", otherwise you can "
1258
+ "retrieve it via FTP from the following directory:"
1259
+ msgstr ""
1260
+
1261
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:226
1262
+ msgid "Your DB Backup File location: "
1263
+ msgstr ""
1264
+
1265
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:234
1266
+ msgid "DB Backup failed. Please check the permissions of the backup directory."
1267
+ msgstr ""
1268
+
1269
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:251
1270
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:135
1271
+ msgid ""
1272
+ "You entered a non numeric value for the \"backup time interval\" field. It "
1273
+ "has been set to the default value."
1274
+ msgstr ""
1275
+
1276
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:258
1277
+ msgid ""
1278
+ "You entered a non numeric value for the \"number of backup files to keep\" "
1279
+ "field. It has been set to the default value."
1280
+ msgstr ""
1281
+
1282
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:265
1283
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:165
1284
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:117
1285
+ msgid ""
1286
+ "You have entered an incorrect email address format. It has been set to your "
1287
+ "WordPress admin email as default."
1288
+ msgstr ""
1289
+
1290
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:298
1291
+ msgid "Manual Backup"
1292
+ msgstr ""
1293
+
1294
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:304
1295
+ msgid "To create a new DB backup just click on the button below."
1296
  msgstr ""
1297
 
1298
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:307
1299
+ msgid "Create DB Backup Now"
1300
+ msgstr ""
1301
+
1302
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:311
1303
+ msgid "Automated Scheduled Backups"
1304
+ msgstr ""
1305
+
1306
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:323
1307
  msgid "Enable Automated Scheduled Backups"
1308
  msgstr ""
1309
 
1310
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:326
1311
  msgid ""
1312
  "Check this if you want the system to automatically generate backups "
1313
  "periodically based on the settings below"
1314
  msgstr ""
1315
 
1316
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:330
1317
  msgid "Backup Time Interval"
1318
  msgstr ""
1319
 
1320
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:333
1321
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:281
1322
  msgid "Hours"
1323
  msgstr ""
1324
 
1325
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:334
1326
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:282
1327
  msgid "Days"
1328
  msgstr ""
1329
 
1330
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:335
1331
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:283
1332
  msgid "Weeks"
1333
  msgstr ""
1334
 
1335
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:337
1336
  msgid "Set the value for how often you would like an automated backup to occur"
1337
  msgstr ""
1338
 
1339
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:341
1340
  msgid "Number of Backup Files To Keep"
1341
  msgstr ""
1342
 
1343
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:343
1344
  msgid ""
1345
  "Thie field allows you to choose the number of backup files you would like to "
1346
  "keep in the backup directory"
1347
  msgstr ""
1348
 
1349
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:347
1350
  msgid "Send Backup File Via Email"
1351
  msgstr ""
1352
 
1353
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:350
1354
  msgid ""
1355
  "Check this if you want the system to email you the backup file after a DB "
1356
  "backup has been performed"
1357
  msgstr ""
1358
 
1359
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:352
1360
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:327
1361
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:235
1362
  msgid "Enter an email address"
1363
  msgstr ""
1364
 
1365
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:383
1366
+ msgid "Error - Could not get tables or no tables found!"
1367
+ msgstr ""
1368
+
1369
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:387
1370
  msgid "Starting DB prefix change operations....."
1371
  msgstr ""
1372
 
1373
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:389
1374
  #, php-format
1375
  msgid ""
1376
  "Your WordPress system has a total of %s tables and your new DB prefix will "
1377
  "be: %s"
1378
  msgstr ""
1379
 
1380
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:395
1381
  #: all-in-one-wp-security/classes/wp-security-utility.php:206
1382
  msgid ""
1383
  "Failed to make a backup of the wp-config.php file. This operation will not "
1384
  "go ahead."
1385
  msgstr ""
1386
 
1387
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:399
1388
  msgid "A backup copy of your wp-config.php file was created successfully!"
1389
  msgstr ""
1390
 
1391
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:421
1392
  #, php-format
1393
  msgid "%s table name update failed"
1394
  msgstr ""
1395
 
1396
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:433
1397
  #, php-format
1398
  msgid "Please change the prefix manually for the above tables to: %s"
1399
  msgstr ""
1400
 
1401
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:436
1402
  #, php-format
1403
  msgid "%s tables had their prefix updated successfully!"
1404
  msgstr ""
1405
 
1406
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:452
1407
  msgid "wp-config.php file was updated successfully!"
1408
  msgstr ""
1409
 
1410
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:455
1411
  #, php-format
1412
  msgid ""
1413
  "The \"wp-config.php\" file was not able to be modified. Please modify this "
1416
  "value to that variable: %s"
1417
  msgstr ""
1418
 
1419
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:468
1420
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:490
1421
+ #, php-format
1422
+ msgid "Update of table %s failed: unable to change %s to %s"
1423
  msgstr ""
1424
 
1425
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:472
1426
  msgid ""
1427
  "The options table records which had references to the old DB prefix were "
1428
  "updated successfully!"
1429
  msgstr ""
1430
 
1431
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:494
1432
+ #, php-format
1433
+ msgid ""
1434
+ "The %s table records which had references to the old DB prefix were updated "
1435
+ "successfully!"
1436
+ msgstr ""
1437
+
1438
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:523
1439
  #, php-format
1440
  msgid ""
1441
  "Error updating user_meta table where new meta_key = %s, old meta_key = %s "
1442
  "and user_id = %s."
1443
  msgstr ""
1444
 
1445
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:528
1446
  msgid ""
1447
  "The usermeta table records which had references to the old DB prefix were "
1448
  "updated successfully!"
1449
  msgstr ""
1450
 
1451
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:530
1452
  msgid "DB prefix change tasks have been completed."
1453
  msgstr ""
1454
 
1455
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:24
1456
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:107
1457
  msgid "File Change Detection"
1458
  msgstr ""
1459
 
1460
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:25
1461
+ msgid "Malware Scan"
1462
+ msgstr ""
1463
+
1464
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:26
1465
+ msgid "DB Scan"
1466
+ msgstr ""
1467
+
1468
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:95
1469
+ msgid "There have been no file changes since the last scan."
1470
+ msgstr ""
1471
+
1472
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:105
1473
  msgid "Nonce check failed for manual file change detection scan operation!"
1474
  msgstr ""
1475
 
1476
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:112
1477
  msgid ""
1478
  "The plugin has detected that this is your first file change detection scan. "
1479
  "The file details from this scan will be used to detect file changes for "
1480
  "future scans!"
1481
  msgstr ""
1482
 
1483
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:114
1484
+ msgid "Scan Complete - There were no file changes detected!"
1485
+ msgstr ""
1486
+
1487
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:203
1488
  msgid ""
1489
  "NEW SCAN COMPLETED: The plugin has detected that you have made changes to "
1490
  "the \"File Types To Ignore\" or \"Files To Ignore\" fields.\n"
1492
  "accurate, the old scan data has been refreshed."
1493
  msgstr ""
1494
 
1495
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:213
1496
  msgid ""
1497
  "All In One WP Security & Firewall has detected that there was a change in "
1498
  "your host's files."
1499
  msgstr ""
1500
 
1501
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:215
1502
  msgid "View Scan Details & Clear This Message"
1503
  msgstr ""
1504
 
1505
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:224
1506
  msgid ""
1507
  "If given an opportunity hackers can insert their code or files into your "
1508
  "system which they can then use to carry out malicious acts on your site."
1509
  msgstr ""
1510
 
1511
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:225
1512
  msgid ""
1513
  "Being informed of any changes in your files can be a good way to quickly "
1514
  "prevent a hacker from causing damage to your website."
1515
  msgstr ""
1516
 
1517
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:226
1518
  msgid ""
1519
  "In general, WordPress core and plugin files and file types such as \".php\" "
1520
  "or \".js\" should not change often and when they do, it is important that "
1521
  "you are made aware when a change occurs and which file was affected."
1522
  msgstr ""
1523
 
1524
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:227
1525
  msgid ""
1526
  "The \"File Change Detection Feature\" will notify you of any file change "
1527
  "which occurs on your system, including the addition and deletion of files by "
1528
  "performing a regular automated or manual scan of your system's files."
1529
  msgstr ""
1530
 
1531
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:228
1532
  msgid ""
1533
  "This feature also allows you to exclude certain files or folders from the "
1534
  "scan in cases where you know that they change often as part of their normal "
1537
  "change detection scan)"
1538
  msgstr ""
1539
 
1540
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:233
1541
  msgid "Manual File Change Detection Scan"
1542
  msgstr ""
1543
 
1544
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:239
1545
  msgid ""
1546
  "To perform a manual file change detection scan click on the button below."
1547
  msgstr ""
1548
 
1549
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:242
1550
  msgid "Perform Scan Now"
1551
  msgstr ""
1552
 
1553
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:246
1554
+ msgid "View Last Saved File Change Results"
1555
+ msgstr ""
1556
+
1557
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:252
1558
+ msgid ""
1559
+ "Click the button below to view the saved file change results from the last "
1560
+ "scan."
1561
+ msgstr ""
1562
+
1563
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:255
1564
+ msgid "View Last File Change"
1565
+ msgstr ""
1566
+
1567
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:259
1568
  msgid "File Change Detection Settings"
1569
  msgstr ""
1570
 
1571
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:271
1572
  msgid "Enable Automated File Change Detection Scan"
1573
  msgstr ""
1574
 
1575
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:274
1576
  msgid ""
1577
  "Check this if you want the system to automatically/periodically scan your "
1578
  "files to check for file changes based on the settings below"
1579
  msgstr ""
1580
 
1581
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:278
1582
  msgid "Scan Time Interval"
1583
  msgstr ""
1584
 
1585
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:285
1586
  msgid "Set the value for how often you would like a scan to occur"
1587
  msgstr ""
1588
 
1589
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:289
1590
  msgid "File Types To Ignore"
1591
  msgstr ""
1592
 
1593
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:292
1594
  msgid ""
1595
  "Enter each file type or extension on a new line which you wish to exclude "
1596
  "from the file change detection scan."
1597
  msgstr ""
1598
 
1599
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:296
1600
  msgid ""
1601
  "You can exclude file types from the scan which would not normally pose any "
1602
  "security threat if they were changed. These can include things such as image "
1603
  "files."
1604
  msgstr ""
1605
 
1606
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:297
1607
  msgid ""
1608
  "Example: If you want the scanner to ignore files of type jpg, png, and bmp, "
1609
  "then you would enter the following:"
1610
  msgstr ""
1611
 
1612
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:298
1613
  msgid "jpg"
1614
  msgstr ""
1615
 
1616
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:299
1617
  msgid "png"
1618
  msgstr ""
1619
 
1620
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:300
1621
  msgid "bmp"
1622
  msgstr ""
1623
 
1624
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:306
1625
  msgid "Files/Directories To Ignore"
1626
  msgstr ""
1627
 
1628
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:309
1629
  msgid ""
1630
  "Enter each file or directory on a new line which you wish to exclude from "
1631
  "the file change detection scan."
1632
  msgstr ""
1633
 
1634
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:313
1635
  msgid ""
1636
  "You can exclude specific files/directories from the scan which would not "
1637
  "normally pose any security threat if they were changed. These can include "
1638
  "things such as log files."
1639
  msgstr ""
1640
 
1641
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:314
1642
  msgid ""
1643
  "Example: If you want the scanner to ignore certain files in different "
1644
  "directories or whole directories, then you would enter the following:"
1645
  msgstr ""
1646
 
1647
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:315
1648
  msgid "cache/config/master.php"
1649
  msgstr ""
1650
 
1651
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:316
1652
  msgid "somedirectory"
1653
  msgstr ""
1654
 
1655
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:322
1656
  msgid "Send Email When Change Detected"
1657
  msgstr ""
1658
 
1659
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:325
1660
  msgid ""
1661
  "Check this if you want the system to email you if a file change was detected"
1662
  msgstr ""
1663
 
1664
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:343
1665
+ msgid "What is Malware?"
1666
  msgstr ""
1667
 
1668
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:344
1669
+ msgid ""
1670
+ "The word Malware stands for Malicious Software. It can consist of things "
1671
+ "like trojan horses, adware, worms, spyware and any other undesirable code "
1672
+ "which a hacker will try to inject into your website."
1673
+ msgstr ""
1674
+
1675
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:345
1676
+ msgid ""
1677
+ "Often when malware code has been inserted into your site you will normally "
1678
+ "not notice anything out of the ordinary based on appearances, but it can "
1679
+ "have a dramatic effect on your site's search ranking."
1680
+ msgstr ""
1681
+
1682
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:346
1683
+ msgid ""
1684
+ "This is because the bots and spiders from search engines such as Google have "
1685
+ "the capability to detect malware when they are indexing the pages on your "
1686
+ "site, and consequently they can blacklist your website which will in turn "
1687
+ "affect your search rankings."
1688
+ msgstr ""
1689
+
1690
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:350
1691
+ msgid "Scanning For Malware"
1692
+ msgstr ""
1693
+
1694
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:351
1695
+ msgid ""
1696
+ "Due to the constantly changing and complex nature of Malware, scanning for "
1697
+ "such things using a standalone plugin will not work reliably. This is "
1698
+ "something best done via an external scan of your site regularly."
1699
+ msgstr ""
1700
+
1701
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:352
1702
+ msgid ""
1703
+ "This is why we have created an easy-to-use scanning service which is hosted "
1704
+ "off our own server which will scan your site for malware once every day and "
1705
+ "notify you if it finds anything."
1706
+ msgstr ""
1707
+
1708
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:353
1709
+ msgid "When you sign up for this service you will get the following:"
1710
+ msgstr ""
1711
+
1712
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:355
1713
+ msgid "Automatic Daily Scan of 1 Website"
1714
+ msgstr ""
1715
+
1716
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:356
1717
+ msgid "Automatic Malware & Blacklist Monitoring"
1718
+ msgstr ""
1719
+
1720
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:357
1721
+ msgid "Automatic Email Alerting"
1722
+ msgstr ""
1723
+
1724
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:358
1725
+ msgid "Site uptime monitoring"
1726
+ msgstr ""
1727
+
1728
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:359
1729
+ msgid "Site response time monitoring"
1730
+ msgstr ""
1731
+
1732
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:360
1733
+ msgid "Malware Cleanup"
1734
+ msgstr ""
1735
+
1736
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:361
1737
+ msgid "Blacklist Removal"
1738
+ msgstr ""
1739
+
1740
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:362
1741
+ msgid "No Contract (Cancel Anytime)"
1742
+ msgstr ""
1743
+
1744
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:364
1745
+ #, php-format
1746
+ msgid "To learn more please %s."
1747
+ msgstr ""
1748
+
1749
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:374
1750
+ msgid ""
1751
+ "This feature performs a basic database scan which will look for any common "
1752
+ "suspicious-looking strings and javascript and html code in some of the "
1753
+ "Wordpress core tables."
1754
+ msgstr ""
1755
+
1756
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:391
1757
+ msgid "Nonce check failed for manual db scan operation!"
1758
+ msgstr ""
1759
+
1760
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:402
1761
+ msgid ""
1762
+ "This feature will perform a basic database scan which will look for any "
1763
+ "common suspicious-looking strings and javascript and html code in some of "
1764
+ "the Wordpress core tables."
1765
+ msgstr ""
1766
+
1767
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:403
1768
+ msgid ""
1769
+ "If the scan finds anything it will list all \"potentially\" malicious "
1770
+ "results but it is up to you to verify whether a result is a genuine example "
1771
+ "of a hacking attack or a false positive."
1772
+ msgstr ""
1773
+
1774
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:404
1775
+ msgid ""
1776
+ "As well as scanning for generic strings commonly used in malicious cases, "
1777
+ "this feature will also scan for some of the known \"pharma\" hack entries "
1778
+ "and if it finds any it will automatically delete them."
1779
+ msgstr ""
1780
+
1781
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:405
1782
+ msgid ""
1783
+ "The WordPress core tables scanned by this feature include: posts, postmeta, "
1784
+ "comments, links, users, usermeta, and options tables."
1785
+ msgstr ""
1786
+
1787
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:410
1788
+ msgid "Database Scan"
1789
+ msgstr ""
1790
+
1791
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:416
1792
+ msgid "To perform a database scan click on the button below."
1793
+ msgstr ""
1794
+
1795
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:419
1796
+ msgid "Perform DB Scan"
1797
+ msgstr ""
1798
+
1799
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:462
1800
+ msgid "Latest File Change Scan Results"
1801
+ msgstr ""
1802
+
1803
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:471
1804
  msgid "The following files were added to your host."
1805
  msgstr ""
1806
 
1807
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:474
1808
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:495
1809
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:519
 
1810
  #: all-in-one-wp-security/admin/wp-security-settings-menu.php:27
1811
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:28
1812
  msgid "File"
1813
  msgstr ""
1814
 
1815
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:475
1816
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:496
1817
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:520
1818
  msgid "File Size"
1819
  msgstr ""
1820
 
1821
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:476
1822
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:497
1823
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:521
1824
  msgid "File Modified"
1825
  msgstr ""
1826
 
1827
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:492
1828
  msgid "The following files were removed from your host."
1829
  msgstr ""
1830
 
1831
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:516
1832
  msgid "The following files were changed on your host."
1833
  msgstr ""
1834
 
1835
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:26
1836
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:67
1837
  msgid "File Permissions"
1838
  msgstr ""
1839
 
1923
  msgstr ""
1924
 
1925
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:201
1926
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:69
1927
  msgid "File Editing"
1928
  msgstr ""
1929
 
1965
  "configuration."
1966
  msgstr ""
1967
 
 
 
 
 
 
 
 
 
 
 
1968
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:280
1969
  msgid "WordPress Files"
1970
  msgstr ""
2061
  msgid "Showing latest entries of error_log file: %s"
2062
  msgstr ""
2063
 
2064
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:27
2065
  msgid "Basic Firewall Rules"
2066
  msgstr ""
2067
 
2068
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:28
2069
  msgid "Additional Firewall Rules"
2070
  msgstr ""
2071
 
2072
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:29
2073
  msgid "5G Blacklist Firewall Rules"
2074
  msgstr ""
2075
 
2076
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:30
2077
+ msgid "Internet Bots"
2078
+ msgstr ""
2079
+
2080
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:31
2081
+ msgid "Prevent Hotlinks"
2082
  msgstr ""
2083
 
2084
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:32
2085
+ msgid "404 Detection"
2086
+ msgstr ""
2087
+
2088
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:115
2089
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:663
2090
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:104
2091
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:317
2092
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:96
2093
  msgid "Settings were successfully saved"
2094
  msgstr ""
2095
 
2096
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:124
2097
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:503
2098
  msgid "Firewall Settings"
2099
  msgstr ""
2100
 
2101
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:131
2102
  #, php-format
2103
  msgid ""
2104
  "This should not have any impact on your site's general functionality but if "
2105
  "you wish you can take a %s of your .htaccess file before proceeding."
2106
  msgstr ""
2107
 
2108
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:132
2109
  msgid ""
2110
  "The features in this tab allow you to activate some basic firewall security "
2111
  "protection rules for your site."
2112
  msgstr ""
2113
 
2114
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:133
2115
  msgid ""
2116
  "The firewall functionality is achieved via the insertion of special code "
2117
  "into your currently active .htaccess file."
2118
  msgstr ""
2119
 
2120
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:143
2121
+ msgid "Attention:"
2122
+ msgstr ""
2123
+
2124
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:144
2125
+ msgid "Currently the "
2126
+ msgstr ""
2127
+
2128
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:144
2129
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:191
2130
+ msgid "Enable Pingback Protection"
2131
+ msgstr ""
2132
+
2133
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:144
2134
+ msgid " is active."
2135
+ msgstr ""
2136
+
2137
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:145
2138
+ msgid ""
2139
+ "Please beware that if you are using the WordPress iOS App, then you will "
2140
+ "need to deactivate this feature in order for the app to work properly."
2141
+ msgstr ""
2142
+
2143
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:153
2144
  msgid "Basic Firewall Settings"
2145
  msgstr ""
2146
 
2147
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:161
2148
  msgid "Enable Basic Firewall Protection"
2149
  msgstr ""
2150
 
2151
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:164
2152
  msgid "Check this if you want to apply basic firewall protection to your site."
2153
  msgstr ""
2154
 
2155
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:168
2156
  msgid ""
2157
  "This setting will implement the following basic firewall protection "
2158
  "mechanisms on your site:"
2159
  msgstr ""
2160
 
2161
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:169
2162
  msgid "1) Protect your htaccess file by denying access to it."
2163
  msgstr ""
2164
 
2165
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:170
2166
  msgid "2) Disable the server signature."
2167
  msgstr ""
2168
 
2169
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:171
2170
  msgid "3) Limit file upload size (10MB)."
2171
  msgstr ""
2172
 
2173
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:172
2174
  msgid "4) Protect your wp-config.php file by denying access to it."
2175
  msgstr ""
2176
 
2177
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:173
2178
  msgid ""
2179
  "The above firewall features will be applied via your .htaccess file and "
2180
  "should not affect your site's overall functionality."
2181
  msgstr ""
2182
 
2183
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:174
2184
  msgid ""
2185
  "You are still advised to take a backup of your active .htaccess file just in "
2186
  "case."
2187
  msgstr ""
2188
 
2189
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:183
2190
  msgid "WordPress Pingback Vulnerability Protection"
2191
  msgstr ""
2192
 
2193
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:194
 
 
 
 
2194
  msgid ""
2195
  "Check this if you are not using the WP XML-RPC functionality and you want to "
2196
  "enable protection against WordPress pingback vulnerabilities."
2197
  msgstr ""
2198
 
2199
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:198
2200
  msgid ""
2201
  "This setting will add a directive in your .htaccess to disable access to the "
2202
  "WordPress xmlrpc.php file which is responsible for the XML-RPC functionality "
2203
  "such as pingbacks in WordPress."
2204
  msgstr ""
2205
 
2206
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:199
2207
  msgid ""
2208
  "Hackers can exploit various pingback vulnerabilities in the WordPress XML-"
2209
  "RPC API in a number of ways such as:"
2210
  msgstr ""
2211
 
2212
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:200
2213
  msgid "1) Denial of Service (DoS) attacks"
2214
  msgstr ""
2215
 
2216
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:201
2217
  msgid "2) Hacking internal routers."
2218
  msgstr ""
2219
 
2220
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:202
2221
  msgid "3) Scanning ports in internal networks to get info from various hosts."
2222
  msgstr ""
2223
 
2224
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:203
2225
  msgid ""
2226
  "Apart from the security protection benefit, this feature may also help "
2227
  "reduce load on your server, particularly if your site currently has a lot of "
2228
  "unwanted traffic hitting the XML-RPC API on your installation."
2229
  msgstr ""
2230
 
2231
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:204
2232
  msgid ""
2233
  "NOTE: You should only enable this feature if you are not currently using the "
2234
  "XML-RPC functionality on your WordPress installation."
2235
  msgstr ""
2236
 
2237
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:211
2238
  msgid "Save Basic Firewall Settings"
2239
  msgstr ""
2240
 
2241
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:283
2242
  msgid ""
2243
  "You have successfully saved the Additional Firewall Protection configuration"
2244
  msgstr ""
2245
 
2246
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:297
2247
  msgid "Additional Firewall Protection"
2248
  msgstr ""
2249
 
2250
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:301
2251
  #, php-format
2252
  msgid ""
2253
  "Due to the nature of the code being inserted to the .htaccess file, this "
2256
  "configuration."
2257
  msgstr ""
2258
 
2259
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:303
2260
  msgid ""
2261
  "This feature allows you to activate more advanced firewall settings to your "
2262
  "site."
2263
  msgstr ""
2264
 
2265
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:304
2266
  msgid ""
2267
  "The advanced firewall rules are applied via the insertion of special code to "
2268
  "your currently active .htaccess file."
2269
  msgstr ""
2270
 
2271
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:313
2272
  msgid "Listing of Directory Contents"
2273
  msgstr ""
2274
 
2275
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:322
2276
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:91
2277
  msgid "Disable Index Views"
2278
  msgstr ""
2279
 
2280
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:325
2281
  msgid "Check this if you want to disable directory and file listing."
2282
  msgstr ""
2283
 
2284
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:330
2285
  msgid ""
2286
  "By default, an Apache server will allow the listing of the contents of a "
2287
  "directory if it doesn't contain an index.php file."
2288
  msgstr ""
2289
 
2290
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:332
2291
  msgid "This feature will prevent the listing of contents for all directories."
2292
  msgstr ""
2293
 
2294
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:334
2295
  msgid ""
2296
+ "NOTE: In order for this feature to work \"AllowOverride\" of the Indexes "
2297
+ "directive must be enabled in your httpd.conf file. Ask your hosting provider "
2298
+ "to check this if you don't have access to httpd.conf"
2299
  msgstr ""
2300
 
2301
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:343
2302
  msgid "Trace and Track"
2303
  msgstr ""
2304
 
2305
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:352
2306
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:92
2307
  msgid "Disable Trace and Track"
2308
  msgstr ""
2309
 
2310
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:355
2311
  msgid "Check this if you want to disable trace and track."
2312
  msgstr ""
2313
 
2314
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:360
2315
  msgid ""
2316
  "HTTP Trace attack (XST) can be used to return header requests and grab "
2317
  "cookies and other information."
2318
  msgstr ""
2319
 
2320
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:362
2321
  msgid ""
2322
  "This hacking technique is usually used together with cross site scripting "
2323
  "attacks (XSS)."
2324
  msgstr ""
2325
 
2326
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:364
2327
  msgid ""
2328
  "Disabling trace and track on your site will help prevent HTTP Trace attacks."
2329
  msgstr ""
2330
 
2331
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:373
2332
  msgid "Proxy Comment Posting"
2333
  msgstr ""
2334
 
2335
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:383
2336
  msgid "Forbid Proxy Comment Posting"
2337
  msgstr ""
2338
 
2339
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:386
2340
  msgid "Check this if you want to forbid proxy comment posting."
2341
  msgstr ""
2342
 
2343
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:391
2344
  msgid ""
2345
  "This setting will deny any requests that use a proxy server when posting "
2346
  "comments."
2347
  msgstr ""
2348
 
2349
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:392
2350
  msgid ""
2351
  "By forbidding proxy comments you are in effect eliminating some SPAM and "
2352
  "other proxy requests."
2353
  msgstr ""
2354
 
2355
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:401
2356
  msgid "Bad Query Strings"
2357
  msgstr ""
2358
 
2359
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:411
2360
  msgid "Deny Bad Query Strings"
2361
  msgstr ""
2362
 
2363
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:414
2364
  msgid "This will help protect you against malicious queries via XSS."
2365
  msgstr ""
2366
 
2367
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:419
2368
  msgid ""
2369
  "This feature will write rules in your .htaccess file to prevent malicious "
2370
  "string attacks on your site using XSS."
2371
  msgstr ""
2372
 
2373
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:420
2374
  msgid ""
2375
  "NOTE: Some of these strings might be used for plugins or themes and hence "
2376
  "this might break some functionality."
2377
  msgstr ""
2378
 
2379
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:421
2380
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:451
2381
  msgid ""
2382
  "You are therefore strongly advised to take a backup of your active .htaccess "
2383
  "file before applying this feature."
2384
  msgstr ""
2385
 
2386
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:430
2387
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:95
2388
  msgid "Advanced Character String Filter"
2389
  msgstr ""
2390
 
2391
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:440
2392
  msgid "Enable Advanced Character String Filter"
2393
  msgstr ""
2394
 
2395
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:443
2396
  msgid "This will block bad character matches from XSS."
2397
  msgstr ""
2398
 
2399
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:448
2400
  msgid ""
2401
  "This is an advanced character string filter to prevent malicious string "
2402
  "attacks on your site coming from Cross Site Scripting (XSS)."
2403
  msgstr ""
2404
 
2405
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:449
2406
  msgid ""
2407
  "This setting matches for common malicious string patterns and exploits and "
2408
  "will produce a 403 error for the hacker attempting the query."
2409
  msgstr ""
2410
 
2411
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:450
2412
  msgid "NOTE: Some strings for this setting might break some functionality."
2413
  msgstr ""
2414
 
2415
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:459
2416
  msgid "Save Additional Firewall Settings"
2417
  msgstr ""
2418
 
2419
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:494
2420
  msgid "You have successfully saved the 5G Firewall Protection configuration"
2421
  msgstr ""
2422
 
2423
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:507
2424
  #, php-format
2425
  msgid ""
2426
  "This feature allows you to activate the 5G firewall security protection "
2427
  "rules designed and produced by %s."
2428
  msgstr ""
2429
 
2430
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:508
2431
  msgid ""
2432
  "The 5G Blacklist is a simple, flexible blacklist that helps reduce the "
2433
  "number of malicious URL requests that hit your website."
2434
  msgstr ""
2435
 
2436
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:509
2437
  msgid ""
2438
  "The added advantage of applying the 5G firewall to your site is that it has "
2439
  "been tested and confirmed by the people at PerishablePress.com to be an "
2441
  "sites running on an Apache server or similar."
2442
  msgstr ""
2443
 
2444
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:510
2445
  #, php-format
2446
  msgid ""
2447
  "Therefore the 5G firewall rules should not have any impact on your site's "
2449
  "file before proceeding."
2450
  msgstr ""
2451
 
2452
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:516
2453
  msgid "5G Blacklist/Firewall Settings"
2454
  msgstr ""
2455
 
2456
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:528
2457
  msgid "Enable 5G Firewall Protection"
2458
  msgstr ""
2459
 
2460
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:531
2461
  msgid ""
2462
  "Check this if you want to apply the 5G Blacklist firewall protection from "
2463
  "perishablepress.com to your site."
2464
  msgstr ""
2465
 
2466
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:535
2467
  msgid ""
2468
  "This setting will implement the 5G security firewall protection mechanisms "
2469
  "on your site which include the following things:"
2470
  msgstr ""
2471
 
2472
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:536
2473
  msgid "1) Block forbidden characters commonly used in exploitative attacks."
2474
  msgstr ""
2475
 
2476
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:537
2477
  msgid "2) Block malicious encoded URL characters such as the \".css(\" string."
2478
  msgstr ""
2479
 
2480
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:538
2481
  msgid ""
2482
  "3) Guard against the common patterns and specific exploits in the root "
2483
  "portion of targeted URLs."
2484
  msgstr ""
2485
 
2486
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:539
2487
  msgid ""
2488
  "4) Stop attackers from manipulating query strings by disallowing illicit "
2489
  "characters."
2490
  msgstr ""
2491
 
2492
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:540
2493
  msgid "....and much more."
2494
  msgstr ""
2495
 
2496
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:546
2497
  msgid "Save 5G Firewall Settings"
2498
  msgstr ""
2499
 
2500
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:577
2501
+ msgid "The Internet bot settings were successfully saved"
 
 
2502
  msgstr ""
2503
 
2504
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:581
2505
+ msgid "Internet Bot Settings"
2506
+ msgstr ""
2507
+
2508
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:588
2509
+ #, php-format
2510
+ msgid "%s?"
2511
  msgstr ""
2512
 
2513
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:590
2514
  msgid ""
2515
+ "A bot is a piece of software which runs on the Internet and performs "
2516
+ "automatic tasks. For example when Google indexes your pages it uses "
2517
+ "automatic bots to achieve this task."
2518
  msgstr ""
2519
 
2520
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:591
2521
  msgid ""
2522
+ "A lot of bots are legitimate and non-malicous but not all bots are good and "
2523
+ "often you will find some which try to impersonate legitimate bots such as "
2524
+ "\"Googlebot\" but in reality they have nohing to do with Google at all."
2525
  msgstr ""
2526
 
2527
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:592
2528
+ msgid ""
2529
+ "Although most of the bots out there are relatively harmless sometimes "
2530
+ "website owners want to have more control over which bots they allow into "
2531
+ "their site."
2532
  msgstr ""
2533
 
2534
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:593
2535
  msgid ""
2536
+ "This feature allows you to block bots which are impersonating as a Googlebot "
2537
+ "but actually aren't. (In other words they are fake Google bots)"
2538
  msgstr ""
2539
 
2540
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:594
2541
+ msgid ""
2542
+ "Googlebots have a unique indentity which cannot easily be forged and this "
2543
+ "feature will indentify any fake Google bots and block them from reading your "
2544
+ "site's pages."
2545
  msgstr ""
2546
 
2547
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:600
2548
  msgid ""
2549
+ "<strong>Attention</strong>: Sometimes non-malicious Internet organizations "
2550
+ "might have bots which impersonate as a \"Googlebot\"."
2551
  msgstr ""
2552
 
2553
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:601
2554
  msgid ""
2555
+ "Just be aware that if you activate this feature the plugin will block all "
2556
+ "bots which use the \"Googlebot\" string in their User Agent information but "
2557
+ "are NOT officially from Google (irrespective whether they are malicious or "
2558
+ "not)."
2559
  msgstr ""
2560
 
2561
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:602
2562
  msgid ""
2563
+ "All other bots from other organizations such as \"Yahoo\", \"Bing\" etc will "
2564
+ "not be affected by this feature."
 
 
2565
  msgstr ""
2566
 
2567
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:608
2568
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:618
2569
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:97
2570
+ msgid "Block Fake Googlebots"
2571
+ msgstr ""
2572
+
2573
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:621
2574
+ msgid "Check this if you want to block all fake Googlebots."
2575
+ msgstr ""
2576
+
2577
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:625
2578
  msgid ""
2579
+ "This feature will check if the User Agent information of a bot contains the "
2580
+ "string \"Googlebot\"."
 
2581
  msgstr ""
2582
 
2583
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:626
2584
  msgid ""
2585
+ "It will then perform a few tests to verify if the bot is legitimately from "
2586
+ "Google and if so it will allow the bot to proceed."
2587
  msgstr ""
2588
 
2589
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:627
 
2590
  msgid ""
2591
+ "If the bot fails the checks then the plugin will mark it as being a fake "
2592
+ "Googlebot and it will block it"
2593
  msgstr ""
2594
 
2595
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:634
2596
+ msgid "Save Internet Bot Settings"
2597
  msgstr ""
2598
 
2599
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:671
2600
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:693
2601
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:32
2602
+ msgid "Prevent Image Hotlinking"
2603
+ msgstr ""
2604
+
2605
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:674
2606
+ msgid ""
2607
+ "A Hotlink is where someone displays an image on their site which is actually "
2608
+ "located on your site by using a direct link to the source of the image on "
2609
+ "your server."
2610
  msgstr ""
2611
 
2612
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:675
2613
  msgid ""
2614
+ "Due to the fact that the image being displayed on the other person's site is "
2615
+ "coming from your server, this can cause leaking of bandwidth and resources "
2616
+ "for you because your server has to present this image for the people viewing "
2617
+ "it on someone elses's site."
2618
  msgstr ""
2619
 
2620
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:676
2621
  msgid ""
2622
+ "This feature will prevent people from directly hotlinking images from your "
2623
+ "site's pages by writing some directives in your .htaccess file."
2624
  msgstr ""
2625
 
2626
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:681
2627
+ msgid "Prevent Hotlinking"
2628
  msgstr ""
2629
 
2630
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:696
2631
+ msgid "Check this if you want to prevent hotlinking to images on your site."
2632
  msgstr ""
2633
 
2634
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:716
2635
+ msgid "Nonce check failed for delete all 404 event logs operation!"
 
 
 
 
2636
  msgstr ""
2637
 
2638
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:727
2639
+ msgid "404 Detection Feature - Delete all 404 event logs operation failed!"
 
 
 
 
2640
  msgstr ""
2641
 
2642
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:731
2643
+ msgid "All 404 event logs were deleted from the DB successfully!"
 
 
2644
  msgstr ""
2645
 
2646
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:757
2647
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:110
2648
+ msgid ""
2649
+ "You entered a non numeric value for the lockout time length field. It has "
2650
+ "been set to the default value."
2651
  msgstr ""
2652
 
2653
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:763
2654
  msgid ""
2655
+ "You entered an incorrect format for the \"Redirect URL\" field. It has been "
2656
+ "set to the default value."
 
2657
  msgstr ""
2658
 
2659
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:795
2660
+ msgid "404 Detection Configuration"
2661
  msgstr ""
2662
 
2663
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:798
2664
  msgid ""
2665
+ "A 404 or Not Found error occurs when somebody tries to access a non-existent "
2666
+ "page on your website."
2667
  msgstr ""
2668
 
2669
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:799
2670
  msgid ""
2671
+ "Typically, most 404 errors happen quite innocently when people have mis-"
2672
+ "typed a URL or used an old link to page which doesn't exist anymore."
 
2673
  msgstr ""
2674
 
2675
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:800
2676
  msgid ""
2677
+ "However, in some cases you may find many repeated 404 errors which occur in "
2678
+ "a relatively short space of time and from the same IP address which are all "
2679
+ "attempting to access a variety of non-existent page URLs."
2680
  msgstr ""
2681
 
2682
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:801
2683
+ msgid ""
2684
+ "Such behaviour can mean that a hacker might be trying to find a particular "
2685
+ "page or URL for sinister reasons."
2686
  msgstr ""
2687
 
2688
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:802
2689
  msgid ""
2690
+ "This feature allows you to monitor all 404 events which occur on your site, "
2691
+ "and it also gives you the option of blocking IP addresses for a configured "
2692
+ "length of time."
2693
  msgstr ""
2694
 
2695
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:803
2696
  msgid ""
2697
+ "If you want to temporarily block an IP address, simply click the \"Temp Block"
2698
+ "\" link for the applicable IP entry in the \"404 Event Logs\" table below."
 
2699
  msgstr ""
2700
 
2701
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:808
2702
+ msgid "404 Detection Options"
2703
  msgstr ""
2704
 
2705
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:820
2706
+ msgid "Enable IP Lockout For 404 Events"
 
 
2707
  msgstr ""
2708
 
2709
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:823
2710
+ msgid "Check this if you want to enable the lockout of selected IP addresses."
 
 
 
 
2711
  msgstr ""
2712
 
2713
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:828
2714
  msgid ""
2715
+ "When you enable this checkbox, all 404 events on your site will be logged in "
2716
+ "the table below. You can monitor these events and select some IP addresses "
2717
+ "to be blocked in the table. All IP addresses you select to be blocked from "
2718
+ "the \"404 Event Logs\" table section will be unable to access your site."
2719
  msgstr ""
2720
 
2721
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:836
2722
+ msgid "Enable 404 Event Logging"
2723
  msgstr ""
2724
 
2725
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:839
2726
+ msgid "Check this if you want to enable the logging of 404 events"
 
 
2727
  msgstr ""
2728
 
2729
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:844
2730
+ msgid "Time Length of 404 Lockout (min)"
2731
  msgstr ""
2732
 
2733
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:846
2734
+ msgid ""
2735
+ "Set the length of time for which a blocked IP address will be prevented from "
2736
+ "visiting your site"
2737
  msgstr ""
2738
 
2739
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:851
2740
  msgid ""
2741
+ "You can lock any IP address which is recorded in the \"404 Event Logs\" "
2742
+ "table section below."
 
 
2743
  msgstr ""
2744
 
2745
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:853
2746
  msgid ""
2747
+ "To temporarily lock an IP address, hover over the ID column and click the "
2748
+ "\"Temp Block\" link for the applicable IP entry."
 
2749
  msgstr ""
2750
 
2751
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:860
2752
+ msgid "404 Lockout Redirect URL"
2753
  msgstr ""
2754
 
2755
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:862
2756
+ msgid "A blocked visitor will be automatically redirected to this URL."
2757
  msgstr ""
2758
 
2759
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:871
2760
+ msgid "404 Event Logs"
 
 
2761
  msgstr ""
2762
 
2763
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:893
2764
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:902
2765
+ msgid "Delete All 404 Event Logs"
 
 
2766
  msgstr ""
2767
 
2768
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:899
2769
+ msgid "Click this button if you wish to purge all 404 event logs from the DB."
2770
  msgstr ""
2771
 
2772
+ #: all-in-one-wp-security/admin/wp-security-list-404.php:105
2773
  #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:79
2774
  #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:86
2775
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:82
2776
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:93
2777
  #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:78
2778
  #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:82
2779
  #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:93
2814
  "menu"
2815
  msgstr ""
2816
 
2817
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:117
2818
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:527
2819
+ msgid "The selected IP entries were unlocked successfully!"
2820
+ msgstr ""
2821
+
2822
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:126
2823
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:536
2824
+ msgid "The selected IP entry was unlocked successfully!"
2825
+ msgstr ""
2826
+
2827
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:127
2828
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:153
2829
+ msgid "Your account is now active"
2830
+ msgstr ""
2831
+
2832
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:128
2833
+ msgid "Your account with username:"
2834
  msgstr ""
2835
 
2836
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:128
2837
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:154
2838
+ msgid " is now active"
2839
  msgstr ""
2840
 
2841
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:137
2842
  msgid "The selected accounts were approved successfully!"
2843
  msgstr ""
2844
 
2845
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:141
2846
+ msgid "The following accounts failed to update successfully: "
2847
+ msgstr ""
2848
+
2849
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:149
2850
  msgid "The selected account was approved successfully!"
2851
  msgstr ""
2852
 
2853
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:154
2854
+ msgid "Your account with username: "
2855
+ msgstr ""
2856
+
2857
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:180
2858
  msgid "The selected accounts were deleted successfully!"
2859
  msgstr ""
2860
 
2861
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:188
2862
  msgid "The selected account was deleted successfully!"
2863
  msgstr ""
2864
 
2912
  msgid "Save Site Lockout Settings"
2913
  msgstr ""
2914
 
2915
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:23
2916
+ msgid "Copy Protection"
2917
+ msgstr ""
2918
+
2919
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:24
2920
+ msgid "Frames"
2921
+ msgstr ""
2922
+
2923
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:88
2924
+ msgid "Copy Protection feature settings saved!"
2925
+ msgstr ""
2926
+
2927
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:93
2928
+ msgid "Disable The Ability To Copy Text"
2929
+ msgstr ""
2930
+
2931
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:99
2932
+ msgid ""
2933
+ "This feature allows you to disable the ability to select and copy text from "
2934
+ "your front end."
2935
+ msgstr ""
2936
+
2937
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:104
2938
+ msgid "Enable Copy Protection"
2939
+ msgstr ""
2940
+
2941
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:107
2942
+ msgid ""
2943
+ "Check this if you want to disable the \"Right Click\", \"Text Selection\" "
2944
+ "and \"Copy\" option on the front end of your site."
2945
+ msgstr ""
2946
+
2947
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:114
2948
+ msgid "Save Copy Protection Settings"
2949
+ msgstr ""
2950
+
2951
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:138
2952
+ msgid "Frame Display Prevention feature settings saved!"
2953
+ msgstr ""
2954
+
2955
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:143
2956
+ msgid "Prevent Your Site From Being Displayed In a Frame"
2957
+ msgstr ""
2958
+
2959
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:149
2960
+ msgid ""
2961
+ "This feature allows you to prevent other sites from displaying any of your "
2962
+ "content via a frame or iframe."
2963
+ msgstr ""
2964
+
2965
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:150
2966
+ msgid ""
2967
+ "When enabled, this feature will set the \"X-Frame-Options\" paramater to "
2968
+ "\"sameorigin\" in the HTTP header."
2969
+ msgstr ""
2970
+
2971
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:155
2972
+ msgid "Enable iFrame Protection"
2973
+ msgstr ""
2974
+
2975
+ #: all-in-one-wp-security/admin/wp-security-misc-options-menu.php:158
2976
+ msgid ""
2977
+ "Check this if you want to stop other sites from displaying your content in a "
2978
+ "frame or iframe."
2979
+ msgstr ""
2980
+
2981
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:26
2982
  msgid "General Settings"
2983
  msgstr ""
2984
 
2985
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:29
2986
  msgid "WP Meta Info"
2987
  msgstr ""
2988
 
2989
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:30
2990
+ msgid "Import/Export"
2991
+ msgstr ""
2992
+
2993
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:97
2994
  msgid "All the security features have been disabled successfully!"
2995
  msgstr ""
2996
 
2997
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:101
2998
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:128
2999
  msgid ""
3000
  "Could not write to the .htaccess file. Please restore your .htaccess file "
3001
  "manually using the restore functionality in the \".htaccess File\"."
3002
  msgstr ""
3003
 
3004
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:106
3005
  msgid ""
3006
  "Could not write to the wp-config.php. Please restore your wp-config.php file "
3007
  "manually using the restore functionality in the \"wp-config.php File\"."
3008
  msgstr ""
3009
 
3010
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:124
3011
  msgid "All firewall rules have been disabled successfully!"
3012
  msgstr ""
3013
 
3014
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:138
3015
  msgid "WP Security Plugin"
3016
  msgstr ""
3017
 
3018
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:140
3019
  msgid ""
3020
  "Thank you for using our WordPress security plugin. There are a lot of "
3021
  "security features in this plugin."
3022
  msgstr ""
3023
 
3024
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:141
3025
  msgid ""
3026
  "Go through each menu items and enable the security options to add more "
3027
  "security to your site. Start by activating the basic features first."
3028
  msgstr ""
3029
 
3030
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:142
3031
  msgid ""
3032
  "It is a good practice to take a backup of your .htaccess file, database and "
3033
  "wp-config.php file before activating the security features. This plugin has "
3034
  "options that you can use to backup those resources easily."
3035
  msgstr ""
3036
 
3037
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:145
3038
  msgid "Backup your database"
3039
  msgstr ""
3040
 
3041
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:146
3042
  msgid "Backup .htaccess file"
3043
  msgstr ""
3044
 
3045
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:147
3046
  msgid "Backup wp-config.php file"
3047
  msgstr ""
3048
 
3049
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:153
3050
  msgid "Disable Security Features"
3051
  msgstr ""
3052
 
3053
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:159
3054
  msgid ""
3055
  "If you think that some plugin functionality on your site is broken due to a "
3056
  "security feature you enabled in this plugin, then use the following option "
3057
  "to turn off all the security features of this plugin."
3058
  msgstr ""
3059
 
3060
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:163
3061
  msgid "Disable All Security Features"
3062
  msgstr ""
3063
 
3064
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:169
3065
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:179
3066
  msgid "Disable All Firewall Rules"
3067
  msgstr ""
3068
 
3069
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:175
3070
  msgid ""
3071
  "This feature will disable all firewall rules which are currently active in "
3072
  "this plugin and it will also delete these rules from your .htacess file. Use "
3073
  "it if you think one of the firewall rules is causing an issue on your site."
3074
  msgstr ""
3075
 
3076
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:208
3077
  msgid ""
3078
  "Your .htaccess file was successfully backed up! Using an FTP program go to "
3079
+ "the \"/wp-content/aiowps_backups\" directory to save a copy of the file to "
3080
+ "your computer."
3081
  msgstr ""
3082
 
3083
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:214
3084
  msgid ""
3085
  "htaccess file rename failed during backup. Please check your root directory "
3086
  "for the backup file using FTP."
3087
  msgstr ""
3088
 
3089
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:220
3090
  msgid "htaccess backup failed."
3091
  msgstr ""
3092
 
3093
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:235
3094
  msgid "Please choose a .htaccess to restore from."
3095
  msgstr ""
3096
 
3097
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:251
3098
  msgid ""
3099
  "htaccess file restore failed. Please attempt to restore the .htaccess "
3100
  "manually using FTP."
3101
  msgstr ""
3102
 
3103
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:255
3104
  msgid "Your .htaccess file has successfully been restored!"
3105
  msgstr ""
3106
 
3107
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:261
3108
  msgid ""
3109
  "htaccess Restore operation failed! Please check the contents of the file you "
3110
  "are trying to restore from."
3111
  msgstr ""
3112
 
3113
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:267
3114
  msgid ".htaccess File Operations"
3115
  msgstr ""
3116
 
3117
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:270
3118
  msgid ""
3119
  "Your \".htaccess\" file is a key component of your website's security and it "
3120
  "can be modified to implement various levels of protection mechanisms."
3121
  msgstr ""
3122
 
3123
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:271
3124
  msgid ""
3125
  "This feature allows you to backup and save your currently active .htaccess "
3126
  "file should you need to re-use the the backed up file in the future."
3127
  msgstr ""
3128
 
3129
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:272
3130
  msgid ""
3131
  "You can also restore your site's .htaccess settings using a backed up ."
3132
  "htaccess file."
3133
  msgstr ""
3134
 
3135
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:286
3136
  msgid "Save the current .htaccess file"
3137
  msgstr ""
3138
 
3139
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:290
3140
  msgid ""
3141
  "Click the button below to backup and save the currently active .htaccess "
3142
  "file."
3143
  msgstr ""
3144
 
3145
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:291
3146
  msgid "Backup .htaccess File"
3147
  msgstr ""
3148
 
3149
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:295
3150
  msgid "Restore from a backed up .htaccess file"
3151
  msgstr ""
3152
 
3153
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:301
3154
  msgid ".htaccess file to restore from"
3155
  msgstr ""
3156
 
3157
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:307
3158
  msgid ""
3159
  "After selecting your file, click the button below to restore your site using "
3160
  "the backed up htaccess file (htaccess_backup.txt)."
3161
  msgstr ""
3162
 
3163
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:313
3164
  msgid "Restore .htaccess File"
3165
  msgstr ""
3166
 
3167
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:317
3168
  msgid "View Contents of the currently active .htaccess file"
3169
  msgstr ""
3170
 
3171
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:346
3172
  msgid "Please choose a wp-config.php file to restore from."
3173
  msgstr ""
3174
 
3175
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:362
3176
  msgid ""
3177
  "wp-config.php file restore failed. Please attempt to restore this file "
3178
  "manually using FTP."
3179
  msgstr ""
3180
 
3181
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:366
3182
  msgid "Your wp-config.php file has successfully been restored!"
3183
  msgstr ""
3184
 
3185
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:372
3186
  msgid ""
3187
  "wp-config.php Restore operation failed! Please check the contents of the "
3188
  "file you are trying to restore from."
3189
  msgstr ""
3190
 
3191
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:378
3192
  msgid "wp-config.php File Operations"
3193
  msgstr ""
3194
 
3195
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:381
3196
  msgid ""
3197
  "Your \"wp-config.php\" file is one of the most important in your WordPress "
3198
  "installation. It is a primary configuration file and contains crucial things "
3199
  "such as details of your database and other critical components."
3200
  msgstr ""
3201
 
3202
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:382
3203
  msgid ""
3204
  "This feature allows you to backup and save your currently active wp-config."
3205
  "php file should you need to re-use the the backed up file in the future."
3206
  msgstr ""
3207
 
3208
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:383
3209
  msgid ""
3210
  "You can also restore your site's wp-config.php settings using a backed up wp-"
3211
  "config.php file."
3212
  msgstr ""
3213
 
3214
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:397
3215
  msgid "Save the current wp-config.php file"
3216
  msgstr ""
3217
 
3218
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:401
3219
  msgid ""
3220
  "Click the button below to backup and download the contents of the currently "
3221
  "active wp-config.php file."
3222
  msgstr ""
3223
 
3224
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:402
3225
  msgid "Backup wp-config.php File"
3226
  msgstr ""
3227
 
3228
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:407
3229
  msgid "Restore from a backed up wp-config file"
3230
  msgstr ""
3231
 
3232
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:413
3233
  msgid "wp-config file to restore from"
3234
  msgstr ""
3235
 
3236
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:419
3237
  msgid ""
3238
  "After selecting your file click the button below to restore your site using "
3239
  "the backed up wp-config file (wp-config.php.backup.txt)."
3240
  msgstr ""
3241
 
3242
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:425
3243
  msgid "Restore wp-config File"
3244
  msgstr ""
3245
 
3246
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:429
3247
  msgid "View Contents of the currently active wp-config.php file"
3248
  msgstr ""
3249
 
3250
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:464
3251
  msgid "WP Generator Meta Tag"
3252
  msgstr ""
3253
 
3254
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:467
3255
  msgid ""
3256
  "Wordpress generator automatically adds some meta information inside the "
3257
  "\"head\" tags of every page on your site's front end. Below is an example of "
3258
  "this:"
3259
  msgstr ""
3260
 
3261
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:469
3262
  msgid ""
3263
  "The above meta information shows which version of WordPress your site is "
3264
  "currently running and thus can help hackers or crawlers scan your site to "
3265
  "see if you have an older version of WordPress or one with a known exploit."
3266
  msgstr ""
3267
 
3268
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:470
3269
  msgid ""
3270
  "This feature will allow you to remove the WP generator meta info from your "
3271
  "site's pages."
3272
  msgstr ""
3273
 
3274
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:476
3275
  msgid "WP Generator Meta Info"
3276
  msgstr ""
3277
 
3278
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:488
3279
  msgid "Remove WP Generator Meta Info"
3280
  msgstr ""
3281
 
3282
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:491
3283
  msgid ""
3284
  "Check this if you want to remove the meta info produced by WP Generator from "
3285
  "all pages"
3286
  msgstr ""
3287
 
3288
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:517
3289
+ msgid "Please choose a file to import your settings from."
3290
+ msgstr ""
3291
+
3292
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:549
3293
+ msgid "Import AIOWPS settings from "
3294
+ msgstr ""
3295
+
3296
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:555
3297
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:599
3298
+ msgid ""
3299
+ "The deletion of the import file failed. Please delete this file manually via "
3300
+ "the media menu for security purposes."
3301
+ msgstr ""
3302
+
3303
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:557
3304
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:601
3305
+ msgid ""
3306
+ "The file you uploaded was also deleted for security purposes because it "
3307
+ "contains security settings details."
3308
+ msgstr ""
3309
+
3310
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:572
3311
+ msgid "Your AIOWPS settings were successfully imported via file input."
3312
+ msgstr ""
3313
+
3314
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:573
3315
+ msgid ""
3316
+ "The deletion of the import file failed. Please delete this file manually via "
3317
+ "the media menu for security purposes because it contains security settings "
3318
+ "details."
3319
+ msgstr ""
3320
+
3321
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:575
3322
+ msgid ""
3323
+ "Your AIOWPS settings were successfully imported. The file you uploaded was "
3324
+ "also deleted for security purposes because it contains security settings "
3325
+ "details."
3326
+ msgstr ""
3327
+
3328
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:578
3329
+ msgid "Your AIOWPS settings were successfully imported via text entry."
3330
+ msgstr ""
3331
+
3332
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:593
3333
+ msgid ""
3334
+ "The contents of your settings file appear invalid. Please check the contents "
3335
+ "of the file you are trying to import settings from."
3336
+ msgstr ""
3337
+
3338
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:610
3339
+ msgid "Export or Import Your AIOWPS Settings"
3340
+ msgstr ""
3341
+
3342
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:613
3343
+ msgid ""
3344
+ "This section allows you to export or import your All In One WP Security & "
3345
+ "Firewall settings."
3346
+ msgstr ""
3347
+
3348
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:614
3349
+ msgid ""
3350
+ "This can be handy if you wanted to save time by applying the settings from "
3351
+ "one site to another site."
3352
+ msgstr ""
3353
+
3354
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:615
3355
+ msgid ""
3356
+ "NOTE: Before importing, it is your responsibility to know what settings you "
3357
+ "are trying to import. Importing settings blindly can cause you to be locked "
3358
+ "out of your site."
3359
+ msgstr ""
3360
+
3361
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:616
3362
+ msgid ""
3363
+ "For Example: If a settings item relies on the domain URL then it may not "
3364
+ "work correctly when imported into a site with a different domain."
3365
+ msgstr ""
3366
+
3367
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:622
3368
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:631
3369
+ msgid "Export AIOWPS Settings"
3370
+ msgstr ""
3371
+
3372
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:628
3373
+ msgid ""
3374
+ "To export your All In One WP Security & Firewall settings click the button "
3375
+ "below."
3376
+ msgstr ""
3377
+
3378
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:635
3379
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:660
3380
+ msgid "Import AIOWPS Settings"
3381
+ msgstr ""
3382
+
3383
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:641
3384
+ msgid ""
3385
+ "Use this section to import your All In One WP Security & Firewall settings "
3386
+ "from a file. Alternatively, copy/paste the contents of your import file into "
3387
+ "the textarea below."
3388
+ msgstr ""
3389
+
3390
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:642
3391
+ msgid "Import File"
3392
+ msgstr ""
3393
+
3394
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:648
3395
+ msgid ""
3396
+ "After selecting your file, click the button below to apply the settings to "
3397
+ "your site."
3398
+ msgstr ""
3399
+
3400
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:654
3401
+ msgid "Copy/Paste Import Data"
3402
  msgstr ""
3403
 
3404
  #: all-in-one-wp-security/admin/wp-security-spam-menu.php:24
3405
+ msgid "Comment SPAM"
3406
+ msgstr ""
3407
+
3408
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:25
3409
  msgid "Comment SPAM IP Monitoring"
3410
  msgstr ""
3411
 
3412
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:26
3413
+ msgid "BuddyPress"
3414
+ msgstr ""
3415
+
3416
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:113
3417
  msgid "Comment SPAM Settings"
3418
  msgstr ""
3419
 
3420
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:118
3421
  msgid "Add Captcha To Comments Form"
3422
  msgstr ""
3423
 
3424
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:122
3425
  msgid ""
3426
  "This feature will add a simple math captcha field in the WordPress comments "
3427
  "form."
3428
  msgstr ""
3429
 
3430
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:123
3431
+ msgid ""
3432
+ "Adding a captcha field in the comment form is a simple way of greatly "
3433
+ "reducing SPAM comments from bots without using .htaccess rules."
3434
+ msgstr ""
3435
+
3436
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:132
3437
  msgid "Enable Captcha On Comment Forms"
3438
  msgstr ""
3439
 
3440
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:135
3441
  msgid "Check this if you want to insert a captcha field on the comment forms"
3442
  msgstr ""
3443
 
3444
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:142
3445
  msgid "Block Spambot Comments"
3446
  msgstr ""
3447
 
3448
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:146
3449
  msgid ""
3450
  "A large portion of WordPress blog comment SPAM is mainly produced by "
3451
  "automated bots and not necessarily by humans. "
3452
  msgstr ""
3453
 
3454
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:147
3455
  msgid ""
3456
  "This feature will greatly minimize the useless and unecessary traffic and "
3457
  "load on your server resulting from SPAM comments by blocking all comment "
3458
  "requests which do not originate from your domain."
3459
  msgstr ""
3460
 
3461
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:148
3462
+ msgid ""
3463
+ "In other words, if the comment was not submitted by a human who physically "
3464
+ "submitted the comment on your site, the request will be blocked."
3465
+ msgstr ""
3466
+
3467
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:164
3468
  msgid "Block Spambots From Posting Comments"
3469
  msgstr ""
3470
 
3471
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:167
3472
  msgid ""
3473
  "Check this if you want to apply a firewall rule which will block comments "
3474
  "originating from spambots."
3475
  msgstr ""
3476
 
3477
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:171
3478
  msgid ""
3479
  "This feature will implement a firewall rule to block all comment attempts "
3480
  "which do not originate from your domain."
3481
  msgstr ""
3482
 
3483
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:172
3484
  msgid ""
3485
  "A legitimate comment is one which is submitted by a human who physically "
3486
  "fills out the comment form and clicks the submit button. For such events, "
3487
  "the HTTP_REFERRER is always set to your own domain."
3488
  msgstr ""
3489
 
3490
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:173
3491
  msgid ""
3492
  "A comment submitted by a spambot is done by directly calling the comments."
3493
  "php file, which usually means that the HTTP_REFERRER value is not your "
3494
  "domain and often times empty."
3495
  msgstr ""
3496
 
3497
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:174
3498
  msgid ""
3499
  "This feature will check and block comment requests which are not referred by "
3500
  "your domain thus greatly reducing your overall blog SPAM and PHP requests "
3501
  "done by the server to process these comments."
3502
  msgstr ""
3503
 
3504
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:201
3505
  msgid "Nonce check failed for list SPAM comment IPs!"
3506
  msgstr ""
3507
 
3508
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:207
3509
  msgid ""
3510
  "You entered a non numeric value for the minimum SPAM comments per IP field. "
3511
  "It has been set to the default value."
3512
  msgstr ""
3513
 
3514
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:219
3515
  #, php-format
3516
  msgid ""
3517
  "Displaying results for IP addresses which have posted a minimum of %s SPAM "
3518
  "comments"
3519
  msgstr ""
3520
 
3521
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:235
3522
  msgid ""
3523
  "This tab displays a list of the IP addresses of the people or bots who have "
3524
  "left SPAM comments on your site."
3525
  msgstr ""
3526
 
3527
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:236
3528
  msgid ""
3529
  "This information can be handy for identifying the most persistent IP "
3530
  "addresses or ranges used by spammers."
3531
  msgstr ""
3532
 
3533
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:237
3534
  msgid ""
3535
  "By inspecting the IP address data coming from spammers you will be in a "
3536
  "better position to determine which addresses or address ranges you should "
3537
  "block by adding them to your blacklist."
3538
  msgstr ""
3539
 
3540
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:238
3541
  msgid ""
3542
  "To add one or more of the IP addresses displayed in the table below to your "
3543
  "blacklist, simply click the \"Block\" link for the individual row or select "
3546
  "\" option from the Bulk Actions dropdown list and click the \"Apply\" button."
3547
  msgstr ""
3548
 
3549
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:244
3550
  msgid "List SPAMMER IP Addresses"
3551
  msgstr ""
3552
 
3553
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:250
3554
  msgid "Minimum number of SPAM comments per IP"
3555
  msgstr ""
3556
 
3557
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:252
3558
  msgid ""
3559
  "This field allows you to list only those IP addresses which have been used "
3560
  "to post X or more SPAM comments."
3561
  msgstr ""
3562
 
3563
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:256
3564
  msgid ""
3565
  "Example 1: Setting this value to \"0\" or \"1\" will list ALL IP addresses "
3566
  "which were used to submit SPAM comments."
3567
  msgstr ""
3568
 
3569
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:257
3570
  msgid ""
3571
  "Example 2: Setting this value to \"5\" will list only those IP addresses "
3572
  "which were used to submit 5 SPAM comments or more on your site."
3573
  msgstr ""
3574
 
3575
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:264
3576
  msgid "Find IP Addresses"
3577
  msgstr ""
3578
 
3579
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:268
3580
  msgid "SPAMMER IP Address Results"
3581
  msgstr ""
3582
 
3583
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:274
3584
  #: all-in-one-wp-security/classes/wp-security-utility.php:150
3585
  msgid ""
3586
  "The plugin has detected that you are using a Multi-Site WordPress "
3587
  "installation."
3588
  msgstr ""
3589
 
3590
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:275
3591
  msgid "Only the \"superadmin\" can block IP addresses from the main site."
3592
  msgstr ""
3593
 
3594
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:276
3595
  msgid ""
3596
  "Take note of the IP addresses you want blocked and ask the superadmin to add "
3597
  "these to the blacklist using the \"Blacklist Manager\" on the main site."
3598
  msgstr ""
3599
 
3600
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:321
3601
+ msgid "BuddyPress SPAM Settings"
3602
+ msgstr ""
3603
+
3604
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:326
3605
+ msgid "Add Captcha To BuddyPress Registration Form"
3606
+ msgstr ""
3607
+
3608
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:330
3609
+ msgid ""
3610
+ "This feature will add a simple math captcha field in the BuddyPress "
3611
+ "registration form."
3612
+ msgstr ""
3613
+
3614
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:331
3615
+ msgid ""
3616
+ "Adding a captcha field in the registration form is a simple way of greatly "
3617
+ "reducing SPAM signups from bots without using .htaccess rules."
3618
+ msgstr ""
3619
+
3620
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:341
3621
+ msgid "Enable Captcha On BuddyPress Registration Form"
3622
+ msgstr ""
3623
+
3624
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:344
3625
+ msgid ""
3626
+ "Check this if you want to insert a captcha field on the BuddyPress "
3627
+ "registration forms"
3628
+ msgstr ""
3629
+
3630
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:353
3631
+ msgid ""
3632
+ "BuddyPress is not active! In order to use this feature you will need to have "
3633
+ "BuddyPress installed and activated."
3634
+ msgstr ""
3635
+
3636
  #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:29
3637
  msgid "WP Username"
3638
  msgstr ""
3642
  msgstr ""
3643
 
3644
  #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:31
3645
+ #: all-in-one-wp-security/other-includes/wp-security-rename-login-feature.php:862
3646
  msgid "Password"
3647
  msgstr ""
3648
 
3680
  msgstr ""
3681
 
3682
  #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:107
3683
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:36
3684
  msgid "Change Admin Username"
3685
  msgstr ""
3686
 
3862
  msgid "Username Successfully Changed!"
3863
  msgstr ""
3864
 
3865
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:324
3866
+ msgid "Account Login Name"
 
 
 
 
 
 
 
 
 
 
3867
  msgstr ""
3868
 
3869
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:26
3870
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:298
3871
  msgid "Failed Login Records"
3872
  msgstr ""
3873
 
3874
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:27
3875
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:51
3876
  msgid "Force Logout"
3877
  msgstr ""
3878
 
3879
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:28
3880
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:432
3881
  msgid "Account Activity Logs"
3882
  msgstr ""
3883
 
3884
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:96
3885
  msgid ""
3886
  "You entered a non numeric value for the max login attempts field. It has "
3887
  "been set to the default value."
3888
  msgstr ""
3889
 
3890
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:103
3891
  msgid ""
3892
  "You entered a non numeric value for the login retry time period field. It "
3893
  "has been set to the default value."
3894
  msgstr ""
3895
 
 
 
 
 
 
 
3896
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:159
3897
  msgid "Login Lockdown Configuration"
3898
  msgstr ""
3940
  msgstr ""
3941
 
3942
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:190
3943
+ msgid "Allow Unlock Requests"
3944
+ msgstr ""
3945
+
3946
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:193
3947
+ msgid ""
3948
+ "Check this if you want to allow users to generate an automated unlock "
3949
+ "request link which will unlock their account"
3950
+ msgstr ""
3951
+
3952
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:197
3953
  msgid "Max Login Attempts"
3954
  msgstr ""
3955
 
3956
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:199
3957
  msgid ""
3958
  "Set the value for the maximum login retries before IP address is locked out"
3959
  msgstr ""
3960
 
3961
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:203
3962
  msgid "Login Retry Time Period (min)"
3963
  msgstr ""
3964
 
3965
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:205
3966
  msgid ""
3967
  "If the maximum number of failed login attempts for a particular IP address "
3968
  "occur within this time period the plugin will lock out that address"
3969
  msgstr ""
3970
 
3971
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:209
3972
  msgid "Time Length of Lockout (min)"
3973
  msgstr ""
3974
 
3975
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:211
3976
  msgid ""
3977
  "Set the length of time for which a particular IP address will be prevented "
3978
  "from logging in"
3979
  msgstr ""
3980
 
3981
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:215
3982
  msgid "Display Generic Error Message"
3983
  msgstr ""
3984
 
3985
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:218
3986
  msgid ""
3987
  "Check this if you want to show a generic error message when a login attempt "
3988
  "fails"
3989
  msgstr ""
3990
 
3991
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:222
3992
  msgid "Instantly Lockout Invalid Usernames"
3993
  msgstr ""
3994
 
3995
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:225
3996
  msgid ""
3997
  "Check this if you want to instantly lockout login attempts with usernames "
3998
  "which do not exist on your system"
3999
  msgstr ""
4000
 
4001
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:230
4002
  msgid "Notify By Email"
4003
  msgstr ""
4004
 
4005
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:233
4006
  msgid ""
4007
  "Check this if you want to receive an email when someone has been locked out "
4008
  "due to maximum failed login attempts"
4009
  msgstr ""
4010
 
4011
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:243
4012
  msgid "Currently Locked Out IP Address Ranges"
4013
  msgstr ""
4014
 
4015
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:248
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4016
  #, php-format
4017
  msgid ""
4018
+ "To see a list of all locked IP addresses and ranges go to the %s tab in the "
4019
+ "dashboard menu."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4020
  msgstr ""
4021
 
4022
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:264
4023
  msgid "Nonce check failed for delete all failed login records operation!"
4024
  msgstr ""
4025
 
4026
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:273
4027
  msgid "User Login Feature - Delete all failed login records operation failed!"
4028
  msgstr ""
4029
 
4030
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:277
4031
  msgid "All records from the Failed Logins table were deleted successfully!"
4032
  msgstr ""
4033
 
4034
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:292
4035
  msgid "This tab displays the failed login attempts for your site."
4036
  msgstr ""
4037
 
4038
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:293
4039
  msgid ""
4040
  "The information below can be handy if you need to do security investigations "
4041
  "because it will show you the IP range, username and ID (if applicable) and "
4042
  "the time/date of the failed login attempt."
4043
  msgstr ""
4044
 
4045
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:314
4046
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:323
4047
  msgid "Delete All Failed Login Records"
4048
  msgstr ""
4049
 
4050
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:320
4051
  msgid ""
4052
  "Click this button if you wish to delete all failed login records in one go."
4053
  msgstr ""
4054
 
4055
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:348
4056
  msgid ""
4057
  "You entered a non numeric value for the logout time period field. It has "
4058
  "been set to the default value."
4059
  msgstr ""
4060
 
4061
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:376
4062
  msgid ""
4063
  "Setting an expiry period for your WP administration session is a simple way "
4064
  "to protect against unauthorized access to your site from your computer."
4065
  msgstr ""
4066
 
4067
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:377
4068
  msgid ""
4069
  "This feature allows you to specify a time period in minutes after which th