All In One WP Security & Firewall - Version 3.7.3

Version Description

  • Added Brazilian language translation. The translation was submitted by Sergio Siqueira.
  • Added two new action hooks for plugin activation and deactivation time.
  • Improved the get_user_ip_address() function so it handles cases when multiple addresses are returned due to proxy.
  • Fixed the mis-alignment of login page which was broken by WP3.9 when rename login feature is used.
  • WordPress 3.9 compatibility
Download this release

Release Info

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

Code changes from version 3.7.1 to 3.7.3

admin/wp-security-dashboard-menu.php CHANGED
@@ -462,7 +462,7 @@ class AIOWPSecurity_Dashboard_Menu extends AIOWPSecurity_Admin_Menu
462
  <h3><label for="title"><?php _e('Spread the Word', 'aiowpsecurity');?></label></h3>
463
  <div class="inside">
464
 
465
- <p><?php _e('We are working to make your WordPress site more secure. Please support us, here is how:', 'aiowpsecurity');?></p>
466
  <p>
467
  <a href="https://plus.google.com/102469783420435518783/" target="_blank">Follow us on Google+</a>
468
  </p>
@@ -470,7 +470,7 @@ class AIOWPSecurity_Dashboard_Menu extends AIOWPSecurity_Admin_Menu
470
  <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>
471
  </p>
472
  <p>
473
- <a href="http://wordpress.org/support/view/plugin-reviews/all-in-one-wp-security-and-firewall/" target="_blank" class="aio_rate_us_link">Vote & Rate Now</a>
474
  </p>
475
 
476
  </div></div>
@@ -500,7 +500,82 @@ class AIOWPSecurity_Dashboard_Menu extends AIOWPSecurity_Admin_Menu
500
  <strong><?php _e('Cookie Domain', 'aiowpsecurity');?>: </strong><code><?php $cookieDomain = parse_url( strtolower( get_bloginfo('wpurl') ) ); echo $cookieDomain['host']; ?></code><br />
501
  <strong>CURL <?php _e('Library Present', 'aiowpsecurity');?>: </strong><code><?php echo (function_exists('curl_init')) ? "Yes" : "No"; ?></code><br />
502
  <strong><?php _e('Debug File Write Permissions', 'aiowpsecurity');?>: </strong><code><?php echo (is_writable(AIO_WP_SECURITY_PATH)) ? "Writable" : "Not Writable"; ?></code><br />
503
- </div></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
504
 
505
  <div class="postbox">
506
  <h3><label for="title"><?php _e('Active Plugins', 'aiowpsecurity');?></label></h3>
@@ -528,7 +603,7 @@ class AIOWPSecurity_Dashboard_Menu extends AIOWPSecurity_Admin_Menu
528
  ?>
529
  </tbody>
530
  </table>
531
- </div></div>
532
  <?php
533
  }
534
 
462
  <h3><label for="title"><?php _e('Spread the Word', 'aiowpsecurity');?></label></h3>
463
  <div class="inside">
464
 
465
+ <p><?php _e('We are working hard to make your WordPress site more secure. Please support us, here is how:', 'aiowpsecurity');?></p>
466
  <p>
467
  <a href="https://plus.google.com/102469783420435518783/" target="_blank">Follow us on Google+</a>
468
  </p>
470
  <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>
471
  </p>
472
  <p>
473
+ <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>
474
  </p>
475
 
476
  </div></div>
500
  <strong><?php _e('Cookie Domain', 'aiowpsecurity');?>: </strong><code><?php $cookieDomain = parse_url( strtolower( get_bloginfo('wpurl') ) ); echo $cookieDomain['host']; ?></code><br />
501
  <strong>CURL <?php _e('Library Present', 'aiowpsecurity');?>: </strong><code><?php echo (function_exists('curl_init')) ? "Yes" : "No"; ?></code><br />
502
  <strong><?php _e('Debug File Write Permissions', 'aiowpsecurity');?>: </strong><code><?php echo (is_writable(AIO_WP_SECURITY_PATH)) ? "Writable" : "Not Writable"; ?></code><br />
503
+ </div></div><!-- End of Site Info -->
504
+
505
+ <div class="postbox">
506
+ <h3><label for="title"><?php _e('PHP Info', 'aiowpsecurity');?></label></h3>
507
+ <div class="inside">
508
+ <strong><?php _e('PHP Version', 'aiowpsecurity'); ?>: </strong><code><?php echo PHP_VERSION; ?></code><br />
509
+ <strong><?php _e('PHP Memory Usage', 'aiowpsecurity'); ?>:
510
+ </strong><code><?php echo round(memory_get_usage() / 1024 / 1024, 2) . __(' MB', 'aiowpsecurity'); ?></code>
511
+ <br />
512
+ <?php
513
+ if (ini_get('memory_limit')) {
514
+ $memory_limit = filter_var(ini_get('memory_limit'), FILTER_SANITIZE_STRING);
515
+ } else {
516
+ $memory_limit = __('N/A', 'aiowpsecurity');
517
+ }
518
+ ?>
519
+ <strong><?php _e('PHP Memory Limit', 'aiowpsecurity'); ?>: </strong><code><?php echo $memory_limit; ?></code><br />
520
+ <?php
521
+ if (ini_get('upload_max_filesize')) {
522
+ $upload_max = filter_var(ini_get('upload_max_filesize'), FILTER_SANITIZE_STRING);
523
+ } else {
524
+ $upload_max = __('N/A', 'aiowpsecurity');
525
+ }
526
+ ?>
527
+ <strong><?php _e('PHP Max Upload Size', 'aiowpsecurity'); ?>: </strong><code><?php echo $upload_max; ?></code><br />
528
+ <?php
529
+ if (ini_get('post_max_size')) {
530
+ $post_max = filter_var(ini_get('post_max_size'), FILTER_SANITIZE_STRING);
531
+ } else {
532
+ $post_max = __('N/A', 'aiowpsecurity');
533
+ }
534
+ ?>
535
+ <strong><?php _e('PHP Max Post Size', 'aiowpsecurity'); ?>: </strong><code><?php echo $post_max; ?></code><br />
536
+ <?php
537
+ if (ini_get('safe_mode')) {
538
+ $safe_mode = __('On', 'aiowpsecurity');
539
+ } else {
540
+ $safe_mode = __('Off', 'aiowpsecurity');
541
+ }
542
+ ?>
543
+ <strong><?php _e('PHP Safe Mode', 'aiowpsecurity'); ?>: </strong><code><?php echo $safe_mode; ?></code><br />
544
+ <?php
545
+ if (ini_get('allow_url_fopen')) {
546
+ $allow_url_fopen = __('On', 'aiowpsecurity');
547
+ } else {
548
+ $allow_url_fopen = __('Off', 'aiowpsecurity');
549
+ }
550
+ ?>
551
+ <strong><?php _e('PHP Allow URL fopen', 'aiowpsecurity'); ?>: </strong><code><?php echo $allow_url_fopen; ?></code>
552
+ <br />
553
+ <?php
554
+ if (ini_get('allow_url_include')) {
555
+ $allow_url_include = __('On', 'aiowpsecurity');
556
+ } else {
557
+ $allow_url_include = __('Off', 'aiowpsecurity');
558
+ }
559
+ ?>
560
+ <strong><?php _e('PHP Allow URL Include'); ?>: </strong><code><?php echo $allow_url_include; ?></code><br />
561
+ <?php
562
+ if (ini_get('display_errors')) {
563
+ $display_errors = __('On', 'aiowpsecurity');
564
+ } else {
565
+ $display_errors = __('Off', 'aiowpsecurity');
566
+ }
567
+ ?>
568
+ <strong><?php _e('PHP Display Errors', 'aiowpsecurity'); ?>: </strong><code><?php echo $display_errors; ?></code>
569
+ <br />
570
+ <?php
571
+ if (ini_get('max_execution_time')) {
572
+ $max_execute = filter_var(ini_get('max_execution_time'));
573
+ } else {
574
+ $max_execute = __('N/A', 'aiowpsecurity');
575
+ }
576
+ ?>
577
+ <strong><?php _e('PHP Max Script Execution Time', 'aiowpsecurity'); ?>: </strong><code><?php echo $max_execute; ?> <?php _e('Seconds'); ?></code><br />
578
+ </div></div><!-- End of PHP Info -->
579
 
580
  <div class="postbox">
581
  <h3><label for="title"><?php _e('Active Plugins', 'aiowpsecurity');?></label></h3>
603
  ?>
604
  </tbody>
605
  </table>
606
+ </div></div><!-- End of Active Plugins -->
607
  <?php
608
  }
609
 
admin/wp-security-database-menu.php CHANGED
@@ -531,10 +531,20 @@ class AIOWPSecurity_Database_Menu extends AIOWPSecurity_Admin_Menu
531
  }
532
 
533
  if ($result = $mysqli->query($list_tables_sql, MYSQLI_USE_RESULT)) {
534
- $temp = $result->fetch_all();
535
- foreach($temp as $res){
536
- $tables[] = $res[0];
537
- }
 
 
 
 
 
 
 
 
 
 
538
  }
539
  $result->close();
540
  $mysqli->close();
531
  }
532
 
533
  if ($result = $mysqli->query($list_tables_sql, MYSQLI_USE_RESULT)) {
534
+ //$temp = $result->fetch_all();
535
+
536
+ //Alternative way to get the tables
537
+ while ($row = $result->fetch_assoc()) {
538
+ foreach( $row AS $value ) {
539
+ $tables[] = $value;
540
+ }
541
+ //var_dump($row);
542
+ //$key = 'Tables_in_'.$database;
543
+
544
+ }
545
+ // foreach($temp as $res){
546
+ // $tables[] = $res[0];
547
+ // }
548
  }
549
  $result->close();
550
  $mysqli->close();
admin/wp-security-filescan-menu.php CHANGED
@@ -350,7 +350,6 @@ class AIOWPSecurity_Filescan_Menu extends AIOWPSecurity_Admin_Menu
350
  '<p>'.__('This is why we have created an easy-to-use scanning service which is hosted off our own server which will scan your site for malware once every day and notify you if it finds anything.', 'aiowpsecurity').'</p>';
351
  echo '<p>'.__('When you sign up for this service you will get the following:', 'aiowpsecurity').'</p>';
352
  echo '<ul class="aiowps_admin_ul_grp1">
353
- <li>'.__('Free for the First 14 Days (zero risk)','aiowpsecurity').'</li>
354
  <li>'.__('Automatic Daily Scan of 1 Website','aiowpsecurity').'</li>
355
  <li>'.__('Automatic Malware & Blacklist Monitoring','aiowpsecurity').'</li>
356
  <li>'.__('Automatic Email Alerting','aiowpsecurity').'</li>
350
  '<p>'.__('This is why we have created an easy-to-use scanning service which is hosted off our own server which will scan your site for malware once every day and notify you if it finds anything.', 'aiowpsecurity').'</p>';
351
  echo '<p>'.__('When you sign up for this service you will get the following:', 'aiowpsecurity').'</p>';
352
  echo '<ul class="aiowps_admin_ul_grp1">
 
353
  <li>'.__('Automatic Daily Scan of 1 Website','aiowpsecurity').'</li>
354
  <li>'.__('Automatic Malware & Blacklist Monitoring','aiowpsecurity').'</li>
355
  <li>'.__('Automatic Email Alerting','aiowpsecurity').'</li>
admin/wp-security-firewall-menu.php CHANGED
@@ -707,6 +707,32 @@ class AIOWPSecurity_Firewall_Menu extends AIOWPSecurity_Admin_Menu
707
  {
708
  global $aio_wp_security;
709
  global $aiowps_feature_mgr;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
710
  include_once 'wp-security-list-404.php'; //For rendering the AIOWPSecurity_List_Table in tab1
711
  $event_list_404 = new AIOWPSecurity_List_404(); //For rendering the AIOWPSecurity_List_Table in tab1
712
 
@@ -862,6 +888,20 @@ class AIOWPSecurity_Firewall_Menu extends AIOWPSecurity_Admin_Menu
862
  <?php $event_list_404->display(); ?>
863
  </form>
864
  </div></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
865
  <?php
866
  }
867
 
707
  {
708
  global $aio_wp_security;
709
  global $aiowps_feature_mgr;
710
+ if (isset($_POST['aiowps_delete_404_event_records']))
711
+ {
712
+ $nonce=$_REQUEST['_wpnonce'];
713
+ if (!wp_verify_nonce($nonce, 'aiowpsec-delete-404-event-records-nonce'))
714
+ {
715
+ $aio_wp_security->debug_logger->log_debug("Nonce check failed for delete all 404 event logs operation!",4);
716
+ die(__('Nonce check failed for delete all 404 event logs operation!','aiowpsecurity'));
717
+ }
718
+ global $wpdb;
719
+ $events_table_name = AIOWPSEC_TBL_EVENTS;
720
+ //Delete all 404 records from the events table
721
+ $where = array('event_type' => '404');
722
+ $result = $wpdb->delete($events_table_name, $where);
723
+
724
+ if ($result === FALSE)
725
+ {
726
+ $aio_wp_security->debug_logger->log_debug("404 Detection Feature - Delete all 404 event logs operation failed!",4);
727
+ $this->show_msg_error(__('404 Detection Feature - Delete all 404 event logs operation failed!','aiowpsecurity'));
728
+ }
729
+ else
730
+ {
731
+ $this->show_msg_updated(__('All 404 event logs were deleted from the DB successfully!','aiowpsecurity'));
732
+ }
733
+ }
734
+
735
+
736
  include_once 'wp-security-list-404.php'; //For rendering the AIOWPSecurity_List_Table in tab1
737
  $event_list_404 = new AIOWPSecurity_List_404(); //For rendering the AIOWPSecurity_List_Table in tab1
738
 
888
  <?php $event_list_404->display(); ?>
889
  </form>
890
  </div></div>
891
+ <div class="postbox">
892
+ <h3><label for="title"><?php _e('Delete All 404 Event Logs', 'aiowpsecurity'); ?></label></h3>
893
+ <div class="inside">
894
+ <form action="" method="POST">
895
+ <?php wp_nonce_field('aiowpsec-delete-404-event-records-nonce'); ?>
896
+ <table class="form-table">
897
+ <tr valign="top">
898
+ <span class="description"><?php _e('Click this button if you wish to purge all 404 event logs from the DB.', 'aiowpsecurity'); ?></span>
899
+ </tr>
900
+ </table>
901
+ <input type="submit" name="aiowps_delete_404_event_records" value="<?php _e('Delete All 404 Event Logs', 'aiowpsecurity')?>" class="button-primary" onclick="return confirm('Are you sure you want to delete all records?')"/>
902
+ </form>
903
+ </div></div>
904
+
905
  <?php
906
  }
907
 
admin/wp-security-list-registered-users.php CHANGED
@@ -104,6 +104,8 @@ class AIOWPSecurity_List_Registered_Users extends AIOWPSecurity_List_Table {
104
  global $wpdb, $aio_wp_security;
105
  $meta_key = 'aiowps_account_status';
106
  $meta_value = 'approved'; //set account status
 
 
107
  if (is_array($entries))
108
  {
109
  //Let's go through each entry and approve
@@ -112,10 +114,30 @@ class AIOWPSecurity_List_Registered_Users extends AIOWPSecurity_List_Table {
112
  $result = update_user_meta($user_id, $meta_key, $meta_value);
113
  if($result === false)
114
  {
 
115
  $aio_wp_security->debug_logger->log_debug("AIOWPSecurity_List_Registered_Users::approve_selected_accounts() - could not approve account ID: $user_id",4);
 
 
 
 
 
 
 
 
 
 
 
 
 
116
  }
117
  }
118
- AIOWPSecurity_Admin_Menu::show_msg_updated_st(__('The selected accounts were approved successfully!','aiowpsecurity'));
 
 
 
 
 
 
119
  } elseif ($entries != NULL)
120
  {
121
  //Approve single account
@@ -123,6 +145,14 @@ class AIOWPSecurity_List_Registered_Users extends AIOWPSecurity_List_Table {
123
  if($result)
124
  {
125
  AIOWPSecurity_Admin_Menu::show_msg_updated_st(__('The selected account was approved successfully!','aiowpsecurity'));
 
 
 
 
 
 
 
 
126
  }else if($result === false){
127
  $aio_wp_security->debug_logger->log_debug("AIOWPSecurity_List_Registered_Users::approve_selected_accounts() - could not approve account ID: $user_id",4);
128
  }
104
  global $wpdb, $aio_wp_security;
105
  $meta_key = 'aiowps_account_status';
106
  $meta_value = 'approved'; //set account status
107
+ $failed_accts = ''; //string to store comma separated accounts which failed to update
108
+ $at_least_one_updated = false;
109
  if (is_array($entries))
110
  {
111
  //Let's go through each entry and approve
114
  $result = update_user_meta($user_id, $meta_key, $meta_value);
115
  if($result === false)
116
  {
117
+ $failed_accts .= ' '.$user_id.',';
118
  $aio_wp_security->debug_logger->log_debug("AIOWPSecurity_List_Registered_Users::approve_selected_accounts() - could not approve account ID: $user_id",4);
119
+ }else{
120
+ $at_least_one_updated = true;
121
+ $user = get_user_by('id', $user_id);
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
  }
133
  }
134
+ if ($at_least_one_updated){
135
+ AIOWPSecurity_Admin_Menu::show_msg_updated_st(__('The selected accounts were approved successfully!','aiowpsecurity'));
136
+ }
137
+ if ($failed_accts != ''){//display any failed account updates
138
+ rtrim($failed_accts);
139
+ AIOWPSecurity_Admin_Menu::show_msg_error_st(__('The following accounts failed to update successfully: ','aiowpsecurity').$failed_accts);
140
+ }
141
  } elseif ($entries != NULL)
142
  {
143
  //Approve single account
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){
157
  $aio_wp_security->debug_logger->log_debug("AIOWPSecurity_List_Registered_Users::approve_selected_accounts() - could not approve account ID: $user_id",4);
158
  }
classes/wp-security-utility-htaccess.php CHANGED
@@ -128,6 +128,7 @@ class AIOWPSecurity_Utility_Htaccess
128
  }
129
 
130
  $rulesarray = explode( PHP_EOL, $rules );
 
131
  $contents = array_merge( $rulesarray, $ht );
132
 
133
  if (!$f = @fopen($htaccess, 'w+'))
128
  }
129
 
130
  $rulesarray = explode( PHP_EOL, $rules );
131
+ $rulesarray = apply_filters('aiowps_htaccess_rules_before_writing', $rulesarray);
132
  $contents = array_merge( $rulesarray, $ht );
133
 
134
  if (!$f = @fopen($htaccess, 'w+'))
classes/wp-security-utility-ip-address.php CHANGED
@@ -8,23 +8,16 @@ class AIOWPSecurity_Utility_IP
8
 
9
  static function get_user_ip_address()
10
  {
11
- //Let's try getting the headers if possible
12
- if ( function_exists( 'apache_request_headers' ) ) {
13
- $headers = apache_request_headers();
14
- } else {
15
- $headers = $_SERVER;
16
- }
17
-
18
- //Get the forwarded IP if it exists
19
- if (array_key_exists( 'X-Forwarded-For', $headers) )
20
- {
21
- $userIP = $headers['X-Forwarded-For'];
22
- }
23
- else
24
- {
25
- $userIP = $_SERVER['REMOTE_ADDR'];
26
  }
27
- return $userIP;
28
  }
29
 
30
  /*
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
  /*
languages/aiowpsecurity-pt_BR.mo ADDED
Binary file
languages/aiowpsecurity-pt_BR.po ADDED
@@ -0,0 +1,3534 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2014-04-06 17:19-0300\n"
6
+ "Last-Translator: Sergio Siqueira <sergiosiqueira@li9.com.br>\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.4\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
15
+ "Language: pt_BR\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:156
20
+ msgid "WP Security"
21
+ msgstr ""
22
+
23
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:157
24
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:22
25
+ msgid "Dashboard"
26
+ msgstr "Painel"
27
+
28
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:158
29
+ msgid "Settings"
30
+ msgstr "Configurações"
31
+
32
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:159
33
+ msgid "User Accounts"
34
+ msgstr "Contas de Usuários"
35
+
36
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:160
37
+ msgid "User Login"
38
+ msgstr "Login de Usuário"
39
+
40
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:161
41
+ msgid "User Registration"
42
+ msgstr "Registro de Usuário"
43
+
44
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:162
45
+ msgid "Database Security"
46
+ msgstr "Segurança da Base de Dados"
47
+
48
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:166
49
+ msgid "Filesystem Security"
50
+ msgstr "Segurança do Sistema de Arquivos"
51
+
52
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:168
53
+ msgid "WHOIS Lookup"
54
+ msgstr ""
55
+
56
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:172
57
+ msgid "Blacklist Manager"
58
+ msgstr "Gerenciador da Lista Negra"
59
+
60
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:177
61
+ msgid "Firewall"
62
+ msgstr "Firewall"
63
+
64
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:179
65
+ msgid "SPAM Prevention"
66
+ 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"
74
+ msgstr "Manutenção"
75
+
76
+ #: all-in-one-wp-security/admin/wp-security-admin-menu.php:43
77
+ msgid "Settings successfully updated."
78
+ msgstr "Configurações autalizadas com sucesso."
79
+
80
+ #: all-in-one-wp-security/admin/wp-security-admin-menu.php:50
81
+ msgid "The selected record(s) deleted successfully!"
82
+ msgstr ""
83
+
84
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:22
85
+ msgid "Ban Users"
86
+ msgstr "Usuários Banidos"
87
+
88
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:80
89
+ msgid "Nonce check failed for save blacklist settings!"
90
+ msgstr ""
91
+
92
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:132
93
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:147
94
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:400
95
+ msgid ""
96
+ "The plugin was unable to write to the .htaccess file. Please edit file "
97
+ "manually."
98
+ msgstr ""
99
+
100
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:139
101
+ msgid "Ban IPs or User Agents"
102
+ msgstr ""
103
+
104
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:142
105
+ msgid ""
106
+ "The All In One WP Security Blacklist feature gives you the option of banning "
107
+ "certain host IP addresses or ranges and also user agents."
108
+ msgstr ""
109
+
110
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:143
111
+ msgid ""
112
+ "This feature will deny total site access for users which have IP addresses "
113
+ "or user agents matching those which you have configured in the settings "
114
+ "below."
115
+ msgstr ""
116
+
117
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:144
118
+ msgid ""
119
+ "The plugin achieves this by making appropriate modifications to your ."
120
+ "htaccess file."
121
+ msgstr ""
122
+
123
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:145
124
+ msgid ""
125
+ "By blocking people via the .htaccess file your are using the most secure "
126
+ "first line of defence which denies all access to blacklisted visitors as "
127
+ "soon as they hit your hosting server."
128
+ msgstr ""
129
+
130
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:151
131
+ msgid "IP Hosts and User Agent Blacklist Settings"
132
+ msgstr ""
133
+
134
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:162
135
+ msgid "Enable IP or User Agent Blacklisting"
136
+ msgstr ""
137
+
138
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:165
139
+ msgid ""
140
+ "Check this if you want to enable the banning (or blacklisting) of selected "
141
+ "IP addresses and/or user agents specified in the settings below"
142
+ msgstr ""
143
+
144
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:169
145
+ msgid "Enter IP Addresses:"
146
+ msgstr "Digite o endereço IP:"
147
+
148
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:173
149
+ msgid "Enter one or more IP addresses or IP ranges."
150
+ msgstr ""
151
+
152
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:174
153
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:194
154
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:271
155
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:288
156
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:147
157
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:177
158
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:308
159
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:338
160
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:369
161
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:397
162
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:426
163
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:514
164
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:669
165
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:703
166
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:726
167
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:747
168
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:174
169
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:259
170
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:456
171
+ msgid "More Info"
172
+ msgstr "Mais Informação"
173
+
174
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:177
175
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:459
176
+ msgid "Each IP address must be on a new line."
177
+ msgstr ""
178
+
179
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:178
180
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:460
181
+ msgid ""
182
+ "To specify an IP range use a wildcard \"*\" character. Acceptable ways to "
183
+ "use wildcards is shown in the examples below:"
184
+ msgstr ""
185
+
186
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:179
187
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:461
188
+ msgid "Example 1: 195.47.89.*"
189
+ msgstr ""
190
+
191
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:180
192
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:462
193
+ msgid "Example 2: 195.47.*.*"
194
+ msgstr ""
195
+
196
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:181
197
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:463
198
+ msgid "Example 3: 195.*.*.*"
199
+ msgstr ""
200
+
201
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:188
202
+ msgid "Enter User Agents:"
203
+ msgstr ""
204
+
205
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:193
206
+ msgid "Enter one or more user agent strings."
207
+ msgstr ""
208
+
209
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:197
210
+ msgid "Each user agent string must be on a new line."
211
+ msgstr ""
212
+
213
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:198
214
+ msgid "Example 1 - A single user agent string to block:"
215
+ msgstr ""
216
+
217
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:200
218
+ msgid "Example 2 - A list of more than 1 user agent strings to block"
219
+ msgstr ""
220
+
221
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:208
222
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:347
223
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:309
224
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:231
225
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:497
226
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:189
227
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:232
228
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:336
229
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:470
230
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:628
231
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:146
232
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:221
233
+ msgid "Save Settings"
234
+ msgstr ""
235
+
236
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:23
237
+ msgid "System Info"
238
+ msgstr ""
239
+
240
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:73
241
+ msgid "For information, updates and documentation, please visit the"
242
+ msgstr ""
243
+
244
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:73
245
+ msgid "AIO WP Security & Firewall Plugin"
246
+ msgstr ""
247
+
248
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:73
249
+ msgid "Page"
250
+ msgstr "Página"
251
+
252
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:74
253
+ msgid "Follow us"
254
+ msgstr "Siga-nos"
255
+
256
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:74
257
+ msgid ""
258
+ "Twitter, Google+ or via Email to stay upto date about the new security "
259
+ "features of this plugin."
260
+ msgstr ""
261
+
262
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:88
263
+ msgid "Security Strength Meter"
264
+ msgstr ""
265
+
266
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:117
267
+ msgid "Total Achievable Points: "
268
+ 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"
276
+ msgstr ""
277
+
278
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:170
279
+ msgid "Critical Feature Status"
280
+ msgstr ""
281
+
282
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:174
283
+ msgid ""
284
+ "Below is the current status of the critical features that you should "
285
+ "activate on your site to achieve a minimum level of recommended security"
286
+ 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
294
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:39
295
+ msgid "Login Lockdown"
296
+ msgstr ""
297
+
298
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:208
299
+ msgid "File Permission"
300
+ msgstr "Permissão de Arquivo"
301
+
302
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:223
303
+ msgid "Basic Firewall"
304
+ msgstr "Firewall Básico"
305
+
306
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:241
307
+ msgid "Maintenance Mode Status"
308
+ msgstr ""
309
+
310
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:245
311
+ msgid ""
312
+ "Maintenance mode is currently enabled. Remember to turn it off when you are "
313
+ "done"
314
+ msgstr ""
315
+
316
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:248
317
+ msgid "Maintenance mode is currently off."
318
+ msgstr ""
319
+
320
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:252
321
+ msgid "Maintenance Mode"
322
+ msgstr ""
323
+
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:"
331
+ msgstr ""
332
+
333
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:302
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."
341
+ 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"
353
+ msgstr ""
354
+
355
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:343
356
+ msgid ""
357
+ "We are working to make your WordPress site more secure. Please support us, "
358
+ "here is how:"
359
+ 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"
385
+ msgstr ""
386
+
387
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:377
388
+ msgid "Server Name"
389
+ msgstr ""
390
+
391
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:378
392
+ msgid "Cookie Domain"
393
+ msgstr ""
394
+
395
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:379
396
+ msgid "Library Present"
397
+ msgstr ""
398
+
399
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:380
400
+ msgid "Debug File Write Permissions"
401
+ 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"
415
+ msgstr ""
416
+
417
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:23
418
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:57
419
+ msgid "DB Prefix"
420
+ msgstr ""
421
+
422
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:24
423
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:59
424
+ msgid "DB Backup"
425
+ msgstr ""
426
+
427
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:84
428
+ msgid "Nonce check failed for DB prefix change operation!"
429
+ msgstr ""
430
+
431
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:92
432
+ msgid ""
433
+ "The plugin has detected that it cannot write to the wp-config.php file. This "
434
+ "feature can only be used if the plugin can successfully write to the wp-"
435
+ "config.php file."
436
+ msgstr ""
437
+
438
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:105
439
+ msgid "Please enter a value for the DB prefix."
440
+ msgstr ""
441
+
442
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:114
443
+ msgid ""
444
+ "<strong>ERROR</strong>: The table prefix can only contain numbers, letters, "
445
+ "and underscores."
446
+ 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 ""
454
+ "Your WordPress DB is the most important asset of your website because it "
455
+ "contains a lot of your site's precious information."
456
+ msgstr ""
457
+
458
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:126
459
+ msgid ""
460
+ "The DB is also a target for hackers via methods such as SQL injections and "
461
+ "malicious and automated code which targets certain tables."
462
+ msgstr ""
463
+
464
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:127
465
+ msgid ""
466
+ "One way to add a layer of protection for your DB is to change the default "
467
+ "WordPress table prefix from \"wp_\" to something else which will be "
468
+ "difficult for hackers to guess."
469
+ msgstr ""
470
+
471
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:128
472
+ msgid ""
473
+ "This feature allows you to easily change the prefix to a value of your "
474
+ "choice or to a random value set by this plugin."
475
+ msgstr ""
476
+
477
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:134
478
+ msgid "DB Prefix Options"
479
+ msgstr ""
480
+
481
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:145
482
+ #, php-format
483
+ msgid "It is recommended that you perform a %s before using this feature"
484
+ msgstr ""
485
+
486
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:154
487
+ msgid "Current DB Table Prefix"
488
+ msgstr ""
489
+
490
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:160
491
+ msgid ""
492
+ "Your site is currently using the default WordPress DB prefix value of \"wp_"
493
+ "\". \n"
494
+ " To increase your site's security you should "
495
+ "consider changing the DB prefix value to another value."
496
+ msgstr ""
497
+
498
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:167
499
+ msgid "Generate New DB Table Prefix"
500
+ msgstr ""
501
+
502
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:170
503
+ msgid ""
504
+ "Check this if you want the plugin to generate a random 6 character string "
505
+ "for the table prefix"
506
+ 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 ""
514
+ "Choose your own DB prefix by specifying a string which contains letters and/"
515
+ "or numbers and/or underscores. Example: xyz_"
516
+ 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
524
+ msgid "Nonce check failed for manual DB backup operation!"
525
+ msgstr ""
526
+
527
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:215
528
+ msgid ""
529
+ "DB Backup was successfully completed! You will receive the backup file via "
530
+ "email if you have enabled \"Send Backup File Via Email\", otherwise you can "
531
+ "retrieve it via FTP from the following directory:"
532
+ msgstr ""
533
+
534
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:217
535
+ msgid "Your DB Backup File location: "
536
+ msgstr ""
537
+
538
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:225
539
+ msgid "DB Backup failed. Please check the permissions of the backup directory."
540
+ msgstr ""
541
+
542
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:242
543
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:126
544
+ msgid ""
545
+ "You entered a non numeric value for the \"backup time interval\" field. It "
546
+ "has been set to the default value."
547
+ msgstr ""
548
+
549
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:249
550
+ msgid ""
551
+ "You entered a non numeric value for the \"number of backup files to keep\" "
552
+ "field. It has been set to the default value."
553
+ msgstr ""
554
+
555
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:256
556
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:156
557
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:121
558
+ msgid ""
559
+ "You have entered an incorrect email address format. It has been set to your "
560
+ "WordPress admin email as default."
561
+ msgstr ""
562
+
563
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:262
564
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:162
565
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:219
566
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:127
567
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:581
568
+ msgid "Attention!"
569
+ msgstr ""
570
+
571
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:289
572
+ msgid "Manual Backup"
573
+ msgstr ""
574
+
575
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:295
576
+ msgid "To create a new DB backup just click on the button below."
577
+ 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"
585
+ 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 ""
593
+ "Check this if you want the system to automatically generate backups "
594
+ "periodically based on the settings below"
595
+ 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
603
+ msgid "Hours"
604
+ msgstr ""
605
+
606
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:325
607
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:260
608
+ msgid "Days"
609
+ msgstr ""
610
+
611
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:326
612
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:261
613
+ msgid "Weeks"
614
+ msgstr ""
615
+
616
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:328
617
+ msgid "Set the value for how often you would like an automated backup to occur"
618
+ msgstr ""
619
+
620
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:332
621
+ msgid "Number of Backup Files To Keep"
622
+ msgstr ""
623
+
624
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:334
625
+ msgid ""
626
+ "Thie field allows you to choose the number of backup files you would like to "
627
+ "keep in the backup directory"
628
+ 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 ""
636
+ "Check this if you want the system to email you the backup file after a DB "
637
+ "backup has been performed"
638
+ msgstr ""
639
+
640
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:343
641
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:305
642
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:228
643
+ msgid "Enter an email address"
644
+ msgstr ""
645
+
646
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:373
647
+ msgid "Starting DB prefix change operations....."
648
+ msgstr ""
649
+
650
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:375
651
+ #, php-format
652
+ msgid ""
653
+ "Your WordPress system has a total of %s tables and your new DB prefix will "
654
+ "be: %s"
655
+ msgstr ""
656
+
657
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:381
658
+ #: all-in-one-wp-security/classes/wp-security-utility.php:206
659
+ msgid ""
660
+ "Failed to make a backup of the wp-config.php file. This operation will not "
661
+ "go ahead."
662
+ msgstr ""
663
+
664
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:385
665
+ msgid "A backup copy of your wp-config.php file was created successfully!"
666
+ msgstr ""
667
+
668
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:408
669
+ #, php-format
670
+ msgid "%s table name update failed"
671
+ msgstr ""
672
+
673
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:420
674
+ #, php-format
675
+ msgid "Please change the prefix manually for the above tables to: %s"
676
+ msgstr ""
677
+
678
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:423
679
+ #, php-format
680
+ msgid "%s tables had their prefix updated successfully!"
681
+ msgstr ""
682
+
683
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:438
684
+ msgid "wp-config.php file was updated successfully!"
685
+ msgstr ""
686
+
687
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:441
688
+ #, php-format
689
+ msgid ""
690
+ "The \"wp-config.php\" file was not able to be modified. Please modify this "
691
+ "file manually using your favourite editor and search \n"
692
+ " for variable \"$table_prefix\" and assign the following "
693
+ "value to that variable: %s"
694
+ msgstr ""
695
+
696
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:462
697
+ msgid "There was an error when updating the options table."
698
+ msgstr ""
699
+
700
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:466
701
+ msgid ""
702
+ "The options table records which had references to the old DB prefix were "
703
+ "updated successfully!"
704
+ msgstr ""
705
+
706
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:491
707
+ #, php-format
708
+ msgid ""
709
+ "Error updating user_meta table where new meta_key = %s, old meta_key = %s "
710
+ "and user_id = %s."
711
+ msgstr ""
712
+
713
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:497
714
+ msgid ""
715
+ "The usermeta table records which had references to the old DB prefix were "
716
+ "updated successfully!"
717
+ msgstr ""
718
+
719
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:499
720
+ msgid "DB prefix change tasks have been completed."
721
+ msgstr ""
722
+
723
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:22
724
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:94
725
+ msgid "File Change Detection"
726
+ msgstr ""
727
+
728
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:93
729
+ msgid "Nonce check failed for manual file change detection scan operation!"
730
+ msgstr ""
731
+
732
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:100
733
+ msgid ""
734
+ "The plugin has detected that this is your first file change detection scan. "
735
+ "The file details from this scan will be used to detect file changes for "
736
+ "future scans!"
737
+ msgstr ""
738
+
739
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:194
740
+ msgid ""
741
+ "NEW SCAN COMPLETED: The plugin has detected that you have made changes to "
742
+ "the \"File Types To Ignore\" or \"Files To Ignore\" fields.\n"
743
+ " In order to ensure that future scan results are "
744
+ "accurate, the old scan data has been refreshed."
745
+ msgstr ""
746
+
747
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:204
748
+ msgid ""
749
+ "All In One WP Security & Firewall has detected that there was a change in "
750
+ "your host's files."
751
+ 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 ""
759
+ "If given an opportunity hackers can insert their code or files into your "
760
+ "system which they can then use to carry out malicious acts on your site."
761
+ msgstr ""
762
+
763
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:216
764
+ msgid ""
765
+ "Being informed of any changes in your files can be a good way to quickly "
766
+ "prevent a hacker from causing damage to your website."
767
+ msgstr ""
768
+
769
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:217
770
+ msgid ""
771
+ "In general, WordPress core and plugin files and file types such as \".php\" "
772
+ "or \".js\" should not change often and when they do, it is important that "
773
+ "you are made aware when a change occurs and which file was affected."
774
+ msgstr ""
775
+
776
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:218
777
+ msgid ""
778
+ "The \"File Change Detection Feature\" will notify you of any file change "
779
+ "which occurs on your system, including the addition and deletion of files by "
780
+ "performing a regular automated or manual scan of your system's files."
781
+ msgstr ""
782
+
783
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:219
784
+ msgid ""
785
+ "This feature also allows you to exclude certain files or folders from the "
786
+ "scan in cases where you know that they change often as part of their normal "
787
+ "operation. (For example log files and certain caching plugin files may "
788
+ "change often and hence you may choose to exclude such files from the file "
789
+ "change detection scan)"
790
+ msgstr ""
791
+
792
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:224
793
+ msgid "Manual File Change Detection Scan"
794
+ msgstr ""
795
+
796
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:230
797
+ msgid ""
798
+ "To perform a manual file change detection scan click on the button below."
799
+ 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 ""
815
+ "Check this if you want the system to automatically/periodically scan your "
816
+ "files to check for file changes based on the settings below"
817
+ 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"
825
+ 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 ""
833
+ "Enter each file type or extension on a new line which you wish to exclude "
834
+ "from the file change detection scan."
835
+ msgstr ""
836
+
837
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:274
838
+ msgid ""
839
+ "You can exclude file types from the scan which would not normally pose any "
840
+ "security threat if they were changed. These can include things such as image "
841
+ "files."
842
+ msgstr ""
843
+
844
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:275
845
+ msgid ""
846
+ "Example: If you want the scanner to ignore files of type jpg, png, and bmp, "
847
+ "then you would enter the following:"
848
+ msgstr ""
849
+
850
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:276
851
+ msgid "jpg"
852
+ msgstr ""
853
+
854
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:277
855
+ msgid "png"
856
+ msgstr ""
857
+
858
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:278
859
+ msgid "bmp"
860
+ 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 ""
868
+ "Enter each file or directory on a new line which you wish to exclude from "
869
+ "the file change detection scan."
870
+ msgstr ""
871
+
872
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:291
873
+ msgid ""
874
+ "You can exclude specific files/directories from the scan which would not "
875
+ "normally pose any security threat if they were changed. These can include "
876
+ "things such as log files."
877
+ msgstr ""
878
+
879
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:292
880
+ msgid ""
881
+ "Example: If you want the scanner to ignore certain files in different "
882
+ "directories or whole directories, then you would enter the following:"
883
+ msgstr ""
884
+
885
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:293
886
+ msgid "cache/config/master.php"
887
+ msgstr ""
888
+
889
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:294
890
+ msgid "somedirectory"
891
+ msgstr ""
892
+
893
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:300
894
+ msgid "Send Email When Change Detected"
895
+ msgstr ""
896
+
897
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:303
898
+ msgid ""
899
+ "Check this if you want the system to email you if a file change was detected"
900
+ msgstr ""
901
+
902
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:335
903
+ msgid "Latest File Change Scan Results"
904
+ msgstr ""
905
+
906
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:344
907
+ msgid "The following files were added to your host."
908
+ msgstr ""
909
+
910
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:347
911
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:368
912
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:392
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
940
+ msgid "File Permissions"
941
+ msgstr ""
942
+
943
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:27
944
+ msgid "PHP File Editing"
945
+ msgstr ""
946
+
947
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:28
948
+ msgid "WP File Access"
949
+ msgstr ""
950
+
951
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:29
952
+ msgid "Host System Logs"
953
+ msgstr ""
954
+
955
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:96
956
+ #, php-format
957
+ msgid "The permissions for %s were succesfully changed to %s"
958
+ msgstr ""
959
+
960
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:100
961
+ #, php-format
962
+ msgid "Unable to change permissions for %s!"
963
+ 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 ""
971
+ "Your WordPress file and folder permission settings govern the accessability "
972
+ "and read/write privileges of the files and folders which make up your WP "
973
+ "installation."
974
+ msgstr ""
975
+
976
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:110
977
+ msgid ""
978
+ "Your WP installation already comes with reasonably secure file permission "
979
+ "settings for the filesystem."
980
+ msgstr ""
981
+
982
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:111
983
+ msgid ""
984
+ "However, sometimes people or other plugins modify the various permission "
985
+ "settings of certain core WP folders or files such that they end up making "
986
+ "their site less secure because they chose the wrong permission values."
987
+ msgstr ""
988
+
989
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:112
990
+ msgid ""
991
+ "This feature will scan the critical WP core folders and files and will "
992
+ "highlight any permission settings which are insecure."
993
+ msgstr ""
994
+
995
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:118
996
+ msgid "WP Directory and File Permissions Scan Results"
997
+ msgstr ""
998
+
999
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:131
1000
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:150
1001
+ msgid "File/Folder"
1002
+ msgstr ""
1003
+
1004
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:132
1005
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:151
1006
+ msgid "Current Permissions"
1007
+ msgstr ""
1008
+
1009
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:133
1010
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:152
1011
+ msgid "Recommended Permissions"
1012
+ msgstr ""
1013
+
1014
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:134
1015
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:153
1016
+ msgid "Recommended Action"
1017
+ msgstr ""
1018
+
1019
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:191
1020
+ msgid "Your PHP file editing settings were saved successfully."
1021
+ msgstr ""
1022
+
1023
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:195
1024
+ msgid ""
1025
+ "Operation failed! Unable to modify or make a backup of wp-config.php file!"
1026
+ msgstr ""
1027
+
1028
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:201
1029
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:65
1030
+ msgid "File Editing"
1031
+ msgstr ""
1032
+
1033
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:204
1034
+ msgid ""
1035
+ "The Wordpress Dashboard by default allows administrators to edit PHP files, "
1036
+ "such as plugin and theme files."
1037
+ msgstr ""
1038
+
1039
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:205
1040
+ msgid ""
1041
+ "This is often the first tool an attacker will use if able to login, since it "
1042
+ "allows code execution."
1043
+ msgstr ""
1044
+
1045
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:206
1046
+ msgid ""
1047
+ "This feature will disable the ability for people to edit PHP files via the "
1048
+ "dashboard."
1049
+ msgstr ""
1050
+
1051
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:212
1052
+ msgid "Disable PHP File Editing"
1053
+ msgstr ""
1054
+
1055
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:224
1056
+ msgid "Disable Ability To Edit PHP Files"
1057
+ msgstr ""
1058
+
1059
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:227
1060
+ msgid ""
1061
+ "Check this if you want to remove the ability for people to edit PHP files "
1062
+ "via the WP dashboard"
1063
+ msgstr ""
1064
+
1065
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:271
1066
+ msgid ""
1067
+ "You have successfully saved the Prevent Access to Default WP Files "
1068
+ "configuration."
1069
+ msgstr ""
1070
+
1071
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:275
1072
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:115
1073
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:269
1074
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:480
1075
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:619
1076
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:106
1077
+ msgid ""
1078
+ "Could not write to the .htaccess file. Please check the file permissions."
1079
+ msgstr ""
1080
+
1081
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:280
1082
+ msgid "WordPress Files"
1083
+ msgstr ""
1084
+
1085
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:283
1086
+ #, php-format
1087
+ msgid ""
1088
+ "This feature allows you to prevent access to files such as %s, %s and %s "
1089
+ "which are delivered with all WP installations."
1090
+ msgstr ""
1091
+
1092
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:284
1093
+ msgid ""
1094
+ "By preventing access to these files you are hiding some key pieces of "
1095
+ "information (such as WordPress version info) from potential hackers."
1096
+ msgstr ""
1097
+
1098
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:289
1099
+ msgid "Prevent Access to Default WP Files"
1100
+ msgstr ""
1101
+
1102
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:300
1103
+ msgid "Prevent Access to WP Default Install Files"
1104
+ msgstr ""
1105
+
1106
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:303
1107
+ msgid ""
1108
+ "Check this if you want to prevent access to readme.html, license.txt and wp-"
1109
+ "config-sample.php."
1110
+ msgstr ""
1111
+
1112
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:307
1113
+ msgid "Save Setting"
1114
+ msgstr ""
1115
+
1116
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:331
1117
+ msgid "System Logs"
1118
+ msgstr ""
1119
+
1120
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:334
1121
+ msgid ""
1122
+ "Sometimes your hosting platform will produce error or warning logs in a file "
1123
+ "called \"error_log\"."
1124
+ msgstr ""
1125
+
1126
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:335
1127
+ msgid ""
1128
+ "Depending on the nature and cause of the error or warning, your hosting "
1129
+ "server can create multiple instances of this file in numerous directory "
1130
+ "locations of your WordPress installation."
1131
+ msgstr ""
1132
+
1133
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:336
1134
+ msgid ""
1135
+ "By occassionally viewing the contents of these logs files you can keep "
1136
+ "informed of any underlying problems on your system which you might need to "
1137
+ "address."
1138
+ msgstr ""
1139
+
1140
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:342
1141
+ msgid "View System Logs"
1142
+ msgstr ""
1143
+
1144
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:347
1145
+ msgid "Enter System Log File Name"
1146
+ msgstr ""
1147
+
1148
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:349
1149
+ msgid "Enter your system log file name. (Defaults to error_log)"
1150
+ msgstr ""
1151
+
1152
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:352
1153
+ msgid "View Latest System Logs"
1154
+ msgstr ""
1155
+
1156
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:354
1157
+ msgid "Loading..."
1158
+ msgstr ""
1159
+
1160
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:371
1161
+ msgid "No system logs were found!"
1162
+ msgstr ""
1163
+
1164
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:424
1165
+ msgid "Set Recommended Permissions"
1166
+ 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
1174
+ msgid "Showing latest entries of error_log file: %s"
1175
+ msgstr ""
1176
+
1177
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:25
1178
+ msgid "Basic Firewall Rules"
1179
+ msgstr ""
1180
+
1181
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:26
1182
+ msgid "Additional Firewall Rules"
1183
+ msgstr ""
1184
+
1185
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:27
1186
+ msgid "5G Blacklist Firewall Rules"
1187
+ msgstr ""
1188
+
1189
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:28
1190
+ msgid "Brute Force Prevention"
1191
+ msgstr ""
1192
+
1193
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:111
1194
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:102
1195
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:96
1196
+ msgid "Settings were successfully saved"
1197
+ msgstr ""
1198
+
1199
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:120
1200
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:485
1201
+ msgid "Firewall Settings"
1202
+ msgstr ""
1203
+
1204
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:127
1205
+ #, php-format
1206
+ msgid ""
1207
+ "This should not have any impact on your site's general functionality but if "
1208
+ "you wish you can take a %s of your .htaccess file before proceeding."
1209
+ msgstr ""
1210
+
1211
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:128
1212
+ msgid ""
1213
+ "The features in this tab allow you to activate some basic firewall security "
1214
+ "protection rules for your site."
1215
+ msgstr ""
1216
+
1217
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:129
1218
+ msgid ""
1219
+ "The firewall functionality is achieved via the insertion of special code "
1220
+ "into your currently active .htaccess file."
1221
+ msgstr ""
1222
+
1223
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:135
1224
+ msgid "Basic Firewall Settings"
1225
+ msgstr ""
1226
+
1227
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:143
1228
+ msgid "Enable Basic Firewall Protection"
1229
+ msgstr ""
1230
+
1231
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:146
1232
+ msgid "Check this if you want to apply basic firewall protection to your site."
1233
+ msgstr ""
1234
+
1235
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:150
1236
+ msgid ""
1237
+ "This setting will implement the following basic firewall protection "
1238
+ "mechanisms on your site:"
1239
+ msgstr ""
1240
+
1241
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:151
1242
+ msgid "1) Protect your htaccess file by denying access to it."
1243
+ msgstr ""
1244
+
1245
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:152
1246
+ msgid "2) Disable the server signature."
1247
+ msgstr ""
1248
+
1249
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:153
1250
+ msgid "3) Limit file upload size (10MB)."
1251
+ msgstr ""
1252
+
1253
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:154
1254
+ msgid "4) Protect your wp-config.php file by denying access to it."
1255
+ msgstr ""
1256
+
1257
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:155
1258
+ msgid ""
1259
+ "The above firewall features will be applied via your .htaccess file and "
1260
+ "should not affect your site's overall functionality."
1261
+ msgstr ""
1262
+
1263
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:156
1264
+ msgid ""
1265
+ "You are still advised to take a backup of your active .htaccess file just in "
1266
+ "case."
1267
+ msgstr ""
1268
+
1269
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:165
1270
+ msgid "WordPress Pingback Vulnerability Protection"
1271
+ msgstr ""
1272
+
1273
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:173
1274
+ msgid "Enable Pingback Protection"
1275
+ msgstr ""
1276
+
1277
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:176
1278
+ msgid ""
1279
+ "Check this if you are not using the WP XML-RPC functionality and you want to "
1280
+ "enable protection against WordPress pingback vulnerabilities."
1281
+ msgstr ""
1282
+
1283
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:180
1284
+ msgid ""
1285
+ "This setting will add a directive in your .htaccess to disable access to the "
1286
+ "WordPress xmlrpc.php file which is responsible for the XML-RPC functionality "
1287
+ "such as pingbacks in WordPress."
1288
+ msgstr ""
1289
+
1290
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:181
1291
+ msgid ""
1292
+ "Hackers can exploit various pingback vulnerabilities in the WordPress XML-"
1293
+ "RPC API in a number of ways such as:"
1294
+ msgstr ""
1295
+
1296
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:182
1297
+ msgid "1) Denial of Service (DoS) attacks"
1298
+ msgstr ""
1299
+
1300
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:183
1301
+ msgid "2) Hacking internal routers."
1302
+ msgstr ""
1303
+
1304
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:184
1305
+ msgid "3) Scanning ports in internal networks to get info from various hosts."
1306
+ msgstr ""
1307
+
1308
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:185
1309
+ msgid ""
1310
+ "Apart from the security protection benefit, this feature may also help "
1311
+ "reduce load on your server, particularly if your site currently has a lot of "
1312
+ "unwanted traffic hitting the XML-RPC API on your installation."
1313
+ msgstr ""
1314
+
1315
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:186
1316
+ msgid ""
1317
+ "NOTE: You should only enable this feature if you are not currently using the "
1318
+ "XML-RPC functionality on your WordPress installation."
1319
+ msgstr ""
1320
+
1321
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:193
1322
+ msgid "Save Basic Firewall Settings"
1323
+ msgstr ""
1324
+
1325
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:265
1326
+ msgid ""
1327
+ "You have successfully saved the Additional Firewall Protection configuration"
1328
+ msgstr ""
1329
+
1330
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:279
1331
+ msgid "Additional Firewall Protection"
1332
+ msgstr ""
1333
+
1334
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:283
1335
+ #, php-format
1336
+ msgid ""
1337
+ "Due to the nature of the code being inserted to the .htaccess file, this "
1338
+ "feature may break some functionality for certain plugins and you are "
1339
+ "therefore advised to take a %s of .htaccess before applying this "
1340
+ "configuration."
1341
+ msgstr ""
1342
+
1343
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:285
1344
+ msgid ""
1345
+ "This feature allows you to activate more advanced firewall settings to your "
1346
+ "site."
1347
+ msgstr ""
1348
+
1349
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:286
1350
+ msgid ""
1351
+ "The advanced firewall rules are applied via the insertion of special code to "
1352
+ "your currently active .htaccess file."
1353
+ msgstr ""
1354
+
1355
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:295
1356
+ msgid "Listing of Directory Contents"
1357
+ msgstr ""
1358
+
1359
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:304
1360
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:80
1361
+ msgid "Disable Index Views"
1362
+ msgstr ""
1363
+
1364
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:307
1365
+ msgid "Check this if you want to disable directory and file listing."
1366
+ msgstr ""
1367
+
1368
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:312
1369
+ msgid ""
1370
+ "By default, an Apache server will allow the listing of the contents of a "
1371
+ "directory if it doesn't contain an index.php file."
1372
+ msgstr ""
1373
+
1374
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:314
1375
+ msgid "This feature will prevent the listing of contents for all directories."
1376
+ msgstr ""
1377
+
1378
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:316
1379
+ msgid ""
1380
+ "NOTE: In order for this feature to work \"AllowOverride\" must be enabled in "
1381
+ "your httpd.conf file. Ask your hosting provider to check this if you don't "
1382
+ "have access to httpd.conf"
1383
+ msgstr ""
1384
+
1385
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:325
1386
+ msgid "Trace and Track"
1387
+ msgstr ""
1388
+
1389
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:334
1390
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:81
1391
+ msgid "Disable Trace and Track"
1392
+ msgstr ""
1393
+
1394
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:337
1395
+ msgid "Check this if you want to disable trace and track."
1396
+ msgstr ""
1397
+
1398
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:342
1399
+ msgid ""
1400
+ "HTTP Trace attack (XST) can be used to return header requests and grab "
1401
+ "cookies and other information."
1402
+ msgstr ""
1403
+
1404
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:344
1405
+ msgid ""
1406
+ "This hacking technique is usually used together with cross site scripting "
1407
+ "attacks (XSS)."
1408
+ msgstr ""
1409
+
1410
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:346
1411
+ msgid ""
1412
+ "Disabling trace and track on your site will help prevent HTTP Trace attacks."
1413
+ msgstr ""
1414
+
1415
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:355
1416
+ msgid "Proxy Comment Posting"
1417
+ msgstr ""
1418
+
1419
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:365
1420
+ msgid "Forbid Proxy Comment Posting"
1421
+ msgstr ""
1422
+
1423
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:368
1424
+ msgid "Check this if you want to forbid proxy comment posting."
1425
+ msgstr ""
1426
+
1427
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:373
1428
+ msgid ""
1429
+ "This setting will deny any requests that use a proxy server when posting "
1430
+ "comments."
1431
+ msgstr ""
1432
+
1433
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:374
1434
+ msgid ""
1435
+ "By forbidding proxy comments you are in effect eliminating some SPAM and "
1436
+ "other proxy requests."
1437
+ msgstr ""
1438
+
1439
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:383
1440
+ msgid "Bad Query Strings"
1441
+ msgstr ""
1442
+
1443
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:393
1444
+ msgid "Deny Bad Query Strings"
1445
+ msgstr ""
1446
+
1447
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:396
1448
+ msgid "This will help protect you against malicious queries via XSS."
1449
+ msgstr ""
1450
+
1451
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:401
1452
+ msgid ""
1453
+ "This feature will write rules in your .htaccess file to prevent malicious "
1454
+ "string attacks on your site using XSS."
1455
+ msgstr ""
1456
+
1457
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:402
1458
+ msgid ""
1459
+ "NOTE: Some of these strings might be used for plugins or themes and hence "
1460
+ "this might break some functionality."
1461
+ msgstr ""
1462
+
1463
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:403
1464
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:433
1465
+ msgid ""
1466
+ "You are therefore strongly advised to take a backup of your active .htaccess "
1467
+ "file before applying this feature."
1468
+ msgstr ""
1469
+
1470
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:412
1471
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:84
1472
+ msgid "Advanced Character String Filter"
1473
+ msgstr ""
1474
+
1475
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:422
1476
+ msgid "Enable Advanced Character String Filter"
1477
+ msgstr ""
1478
+
1479
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:425
1480
+ msgid "This will block bad character matches from XSS."
1481
+ msgstr ""
1482
+
1483
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:430
1484
+ msgid ""
1485
+ "This is an advanced character string filter to prevent malicious string "
1486
+ "attacks on your site coming from Cross Site Scripting (XSS)."
1487
+ msgstr ""
1488
+
1489
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:431
1490
+ msgid ""
1491
+ "This setting matches for common malicious string patterns and exploits and "
1492
+ "will produce a 403 error for the hacker attempting the query."
1493
+ msgstr ""
1494
+
1495
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:432
1496
+ msgid "NOTE: Some strings for this setting might break some functionality."
1497
+ msgstr ""
1498
+
1499
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:441
1500
+ msgid "Save Additional Firewall Settings"
1501
+ msgstr ""
1502
+
1503
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:476
1504
+ msgid "You have successfully saved the 5G Firewall Protection configuration"
1505
+ msgstr ""
1506
+
1507
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:489
1508
+ #, php-format
1509
+ msgid ""
1510
+ "This feature allows you to activate the 5G firewall security protection "
1511
+ "rules designed and produced by %s."
1512
+ msgstr ""
1513
+
1514
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:490
1515
+ msgid ""
1516
+ "The 5G Blacklist is a simple, flexible blacklist that helps reduce the "
1517
+ "number of malicious URL requests that hit your website."
1518
+ msgstr ""
1519
+
1520
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:491
1521
+ msgid ""
1522
+ "The added advantage of applying the 5G firewall to your site is that it has "
1523
+ "been tested and confirmed by the people at PerishablePress.com to be an "
1524
+ "optimal and least disruptive set of .htaccess security rules for general WP "
1525
+ "sites running on an Apache server or similar."
1526
+ msgstr ""
1527
+
1528
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:492
1529
+ #, php-format
1530
+ msgid ""
1531
+ "Therefore the 5G firewall rules should not have any impact on your site's "
1532
+ "general functionality but if you wish you can take a %s of your .htaccess "
1533
+ "file before proceeding."
1534
+ msgstr ""
1535
+
1536
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:498
1537
+ msgid "5G Blacklist/Firewall Settings"
1538
+ msgstr ""
1539
+
1540
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:510
1541
+ msgid "Enable 5G Firewall Protection"
1542
+ msgstr ""
1543
+
1544
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:513
1545
+ msgid ""
1546
+ "Check this if you want to apply the 5G Blacklist firewall protection from "
1547
+ "perishablepress.com to your site."
1548
+ msgstr ""
1549
+
1550
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:517
1551
+ msgid ""
1552
+ "This setting will implement the 5G security firewall protection mechanisms "
1553
+ "on your site which include the following things:"
1554
+ msgstr ""
1555
+
1556
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:518
1557
+ msgid "1) Block forbidden characters commonly used in exploitative attacks."
1558
+ msgstr ""
1559
+
1560
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:519
1561
+ msgid "2) Block malicious encoded URL characters such as the \".css(\" string."
1562
+ msgstr ""
1563
+
1564
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:520
1565
+ msgid ""
1566
+ "3) Guard against the common patterns and specific exploits in the root "
1567
+ "portion of targeted URLs."
1568
+ msgstr ""
1569
+
1570
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:521
1571
+ msgid ""
1572
+ "4) Stop attackers from manipulating query strings by disallowing illicit "
1573
+ "characters."
1574
+ msgstr ""
1575
+
1576
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:522
1577
+ msgid "....and much more."
1578
+ msgstr ""
1579
+
1580
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:528
1581
+ msgid "Save 5G Firewall Settings"
1582
+ msgstr ""
1583
+
1584
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:556
1585
+ msgid ""
1586
+ "Settings have not been saved - your secret word must consist only of "
1587
+ "alphanumeric characters, ie, letters and/or numbers only!"
1588
+ msgstr ""
1589
+
1590
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:574
1591
+ msgid ""
1592
+ "You have successfully enabled the cookie based brute force prevention feature"
1593
+ msgstr ""
1594
+
1595
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:575
1596
+ msgid ""
1597
+ "From now on you will need to log into your WP Admin using the following URL:"
1598
+ msgstr ""
1599
+
1600
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:577
1601
+ msgid ""
1602
+ "It is important that you save this URL value somewhere in case you forget "
1603
+ "it, OR,"
1604
+ msgstr ""
1605
+
1606
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:578
1607
+ #, php-format
1608
+ msgid "simply remember to add a \"?%s=1\" to your current site URL address."
1609
+ msgstr ""
1610
+
1611
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:584
1612
+ msgid ""
1613
+ "You have successfully saved cookie based brute force prevention feature "
1614
+ "settings."
1615
+ msgstr ""
1616
+
1617
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:629
1618
+ msgid "Brute Force Prevention Firewall Settings"
1619
+ msgstr ""
1620
+
1621
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:634
1622
+ msgid ""
1623
+ "A Brute Force Attack is when a hacker tries many combinations of usernames "
1624
+ "and passwords until they succeed in guessing the right combination."
1625
+ msgstr ""
1626
+
1627
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:635
1628
+ msgid ""
1629
+ "Due to the fact that at any one time there may be many concurrent login "
1630
+ "attempts occurring on your site via malicious automated robots, this also "
1631
+ "has a negative impact on your server's memory and performance."
1632
+ msgstr ""
1633
+
1634
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:636
1635
+ msgid ""
1636
+ "The features in this tab will stop the majority of Brute Force Login Attacks "
1637
+ "at the .htaccess level thus providing even better protection for your WP "
1638
+ "login page and also reducing the load on your server because the system does "
1639
+ "not have to run PHP code to process the login attempts."
1640
+ msgstr ""
1641
+
1642
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:643
1643
+ #, php-format
1644
+ msgid ""
1645
+ "Even though this feature should not have any impact on your site's general "
1646
+ "functionality <strong>you are strongly encouraged to take a %s of your ."
1647
+ "htaccess file before proceeding</strong>."
1648
+ msgstr ""
1649
+
1650
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:644
1651
+ msgid ""
1652
+ "If this feature is not used correctly, you can get locked out of your site. "
1653
+ "A backup file will come in handy if that happens."
1654
+ msgstr ""
1655
+
1656
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:645
1657
+ #, php-format
1658
+ msgid ""
1659
+ "To learn more about how to use this feature please watch the following %s."
1660
+ msgstr ""
1661
+
1662
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:654
1663
+ msgid "Cookie Based Brute Force Login Prevention"
1664
+ msgstr ""
1665
+
1666
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:665
1667
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:79
1668
+ msgid "Enable Brute Force Attack Prevention"
1669
+ msgstr ""
1670
+
1671
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:668
1672
+ msgid ""
1673
+ "Check this if you want to protect your login page from Brute Force Attack."
1674
+ msgstr ""
1675
+
1676
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:673
1677
+ msgid ""
1678
+ "This feature will deny access to your WordPress login page for all people "
1679
+ "except those who have a special cookie in their browser."
1680
+ msgstr ""
1681
+
1682
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:675
1683
+ msgid "To use this feature do the following:"
1684
+ msgstr ""
1685
+
1686
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:677
1687
+ msgid "1) Enable the checkbox."
1688
+ msgstr ""
1689
+
1690
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:679
1691
+ msgid ""
1692
+ "2) Enter a secret word consisting of alphanumeric characters which will be "
1693
+ "difficult to guess. This secret word will be useful whenever you need to "
1694
+ "know the special URL which you will use to access the login page (see point "
1695
+ "below)."
1696
+ msgstr ""
1697
+
1698
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:681
1699
+ msgid ""
1700
+ "3) You will then be provided with a special login URL. You will need to use "
1701
+ "this URL to login to your WordPress site instead of the usual login URL. "
1702
+ "NOTE: The system will deposit a special cookie in your browser which will "
1703
+ "allow you access to the WordPress administration login page."
1704
+ msgstr ""
1705
+
1706
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:683
1707
+ msgid ""
1708
+ "Any person trying to access your login page who does not have the special "
1709
+ "cookie in their browser will be automatically blocked."
1710
+ msgstr ""
1711
+
1712
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:690
1713
+ msgid "Secret Word"
1714
+ msgstr ""
1715
+
1716
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:692
1717
+ msgid ""
1718
+ "Choose a secret word consisting of alphanumeric characters which you can use "
1719
+ "to access your special URL. Your are highly encouraged to choose a word "
1720
+ "which will be difficult to guess."
1721
+ msgstr ""
1722
+
1723
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:696
1724
+ msgid "Re-direct URL"
1725
+ msgstr ""
1726
+
1727
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:700
1728
+ msgid ""
1729
+ "Specify a URL to redirect a hacker to when they try to access your WordPress "
1730
+ "login page."
1731
+ msgstr ""
1732
+
1733
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:707
1734
+ msgid ""
1735
+ "The URL specified here can be any site's URL and does not have to be your "
1736
+ "own. For example you can be as creative as you like and send hackers to the "
1737
+ "CIA or NSA home page."
1738
+ msgstr ""
1739
+
1740
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:709
1741
+ msgid ""
1742
+ "This field will default to: http://127.0.0.1 if you do not enter a value."
1743
+ msgstr ""
1744
+
1745
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:711
1746
+ msgid "Useful Tip:"
1747
+ msgstr ""
1748
+
1749
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:713
1750
+ msgid ""
1751
+ "It's a good idea to not redirect attempted brute force login attempts to "
1752
+ "your site because it increases the load on your server."
1753
+ msgstr ""
1754
+
1755
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:715
1756
+ msgid ""
1757
+ "Redirecting a hacker or malicious bot back to \"http://127.0.0.1\" is ideal "
1758
+ "because it deflects them back to their own local host and puts the load on "
1759
+ "their server instead of yours."
1760
+ msgstr ""
1761
+
1762
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:722
1763
+ msgid "My Site Has Posts Or Pages Which Are Password Protected"
1764
+ msgstr ""
1765
+
1766
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:725
1767
+ msgid ""
1768
+ "Check this if you are using the native WordPress password protection feature "
1769
+ "for some or all of your blog posts or pages."
1770
+ msgstr ""
1771
+
1772
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:730
1773
+ msgid ""
1774
+ "In the cases where you are protecting some of your posts or pages using the "
1775
+ "in-built WordPress password protection feature, a few extra lines of "
1776
+ "directives and exceptions need to be added to your .htacces file so that "
1777
+ "people trying to access pages are not automatically blocked."
1778
+ msgstr ""
1779
+
1780
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:732
1781
+ msgid ""
1782
+ "By enabling this checkbox the plugin will add the necessary rules and "
1783
+ "exceptions to your .htacces file so that people trying to access these pages "
1784
+ "are not automatically blocked."
1785
+ msgstr ""
1786
+
1787
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:734
1788
+ msgid "Helpful Tip:"
1789
+ msgstr ""
1790
+
1791
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:736
1792
+ msgid ""
1793
+ "If you do not use the WordPress password protection feature for your posts "
1794
+ "or pages then it is highly recommended that you leave this checkbox disabled."
1795
+ msgstr ""
1796
+
1797
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:743
1798
+ msgid "My Site Has a Theme or Plugins Which Use AJAX"
1799
+ msgstr ""
1800
+
1801
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:746
1802
+ msgid "Check this if your site uses AJAX functionality."
1803
+ msgstr ""
1804
+
1805
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:751
1806
+ msgid ""
1807
+ "In the cases where your WordPress installation has a theme or plugins which "
1808
+ "use AJAX, a few extra lines of directives and exceptions need to be added to "
1809
+ "your .htacces file to prevent AJAX requests from being automatically blocked "
1810
+ "by the brute force prevention feature."
1811
+ msgstr ""
1812
+
1813
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:753
1814
+ msgid ""
1815
+ "By enabling this checkbox the plugin will add the necessary rules and "
1816
+ "exceptions to your .htacces file so that AJAX operations will work as "
1817
+ "expected."
1818
+ msgstr ""
1819
+
1820
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:768
1821
+ msgid "The cookie test was successful. You can now enable this feature."
1822
+ msgstr ""
1823
+
1824
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:771
1825
+ msgid "Save Feature Settings"
1826
+ msgstr ""
1827
+
1828
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:778
1829
+ msgid ""
1830
+ "The cookie test failed on this server. So this feature cannot be used on "
1831
+ "this site."
1832
+ msgstr ""
1833
+
1834
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:784
1835
+ msgid ""
1836
+ "Before using this feature you are required to perform a cookie test first. "
1837
+ "This is to make sure that your browser cookie is working correctly and that "
1838
+ "you won't lock yourself out."
1839
+ msgstr ""
1840
+
1841
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:786
1842
+ msgid "Perform Cookie Test"
1843
+ msgstr ""
1844
+
1845
+ #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:79
1846
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:86
1847
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:80
1848
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:91
1849
+ #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:78
1850
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:82
1851
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:93
1852
+ msgid "Please select some records using the checkboxes"
1853
+ msgstr ""
1854
+
1855
+ #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:107
1856
+ #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:107
1857
+ msgid "The selected entries were deleted successfully!"
1858
+ msgstr ""
1859
+
1860
+ #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:120
1861
+ #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:119
1862
+ msgid "The selected entry was deleted successfully!"
1863
+ msgstr ""
1864
+
1865
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:139
1866
+ msgid ""
1867
+ "The selected IP addresses were saved in the blacklist configuration settings."
1868
+ msgstr ""
1869
+
1870
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:153
1871
+ msgid ""
1872
+ "The .htaccess file was successfully modified to include the selected IP "
1873
+ "addresses."
1874
+ msgstr ""
1875
+
1876
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:159
1877
+ msgid ""
1878
+ "NOTE: The .htaccess file was not modified because you have disabled the "
1879
+ "\"Enable IP or User Agent Blacklisting\" check box."
1880
+ msgstr ""
1881
+
1882
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:160
1883
+ #, php-format
1884
+ msgid ""
1885
+ "To block these IP addresses you will need to enable the above flag in the %s "
1886
+ "menu"
1887
+ msgstr ""
1888
+
1889
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:115
1890
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:748
1891
+ msgid "The selected IP ranges were unlocked successfully!"
1892
+ msgstr ""
1893
+
1894
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:124
1895
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:757
1896
+ msgid "The selected IP range was unlocked successfully!"
1897
+ msgstr ""
1898
+
1899
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:118
1900
+ msgid "The selected accounts were approved successfully!"
1901
+ msgstr ""
1902
+
1903
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:125
1904
+ msgid "The selected account was approved successfully!"
1905
+ msgstr ""
1906
+
1907
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:146
1908
+ msgid "The selected accounts were deleted successfully!"
1909
+ msgstr ""
1910
+
1911
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:154
1912
+ msgid "The selected account was deleted successfully!"
1913
+ msgstr ""
1914
+
1915
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:22
1916
+ msgid "Visitor Lockout"
1917
+ msgstr ""
1918
+
1919
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:88
1920
+ msgid "Site lockout feature settings saved!"
1921
+ msgstr ""
1922
+
1923
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:93
1924
+ msgid "General Visitor Lockout"
1925
+ msgstr ""
1926
+
1927
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:99
1928
+ msgid ""
1929
+ "This feature allows you to put your site into \"maintenance mode\" by "
1930
+ "locking down the front-end to all visitors except logged in users with super "
1931
+ "admin privileges."
1932
+ msgstr ""
1933
+
1934
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:100
1935
+ msgid ""
1936
+ "Locking your site down to general visitors can be useful if you are "
1937
+ "investigating some issues on your site or perhaps you might be doing some "
1938
+ "maintenance and wish to keep out all traffic for security reasons."
1939
+ msgstr ""
1940
+
1941
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:105
1942
+ msgid "Enable Front-end Lockout"
1943
+ msgstr ""
1944
+
1945
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:108
1946
+ msgid ""
1947
+ "Check this if you want all visitors except those who are logged in as "
1948
+ "administrator to be locked out of the front-end of your site."
1949
+ msgstr ""
1950
+
1951
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:112
1952
+ msgid "Enter a Message:"
1953
+ msgstr ""
1954
+
1955
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:124
1956
+ msgid ""
1957
+ "Enter a message you wish to display to visitors when your site is in "
1958
+ "maintenance mode."
1959
+ msgstr ""
1960
+
1961
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:131
1962
+ msgid "Save Site Lockout Settings"
1963
+ msgstr ""
1964
+
1965
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:25
1966
+ msgid "General Settings"
1967
+ msgstr ""
1968
+
1969
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:28
1970
+ msgid "WP Meta Info"
1971
+ msgstr ""
1972
+
1973
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:95
1974
+ msgid "All the security features have been disabled successfully!"
1975
+ msgstr ""
1976
+
1977
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:99
1978
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:126
1979
+ msgid ""
1980
+ "Could not write to the .htaccess file. Please restore your .htaccess file "
1981
+ "manually using the restore functionality in the \".htaccess File\"."
1982
+ msgstr ""
1983
+
1984
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:104
1985
+ msgid ""
1986
+ "Could not write to the wp-config.php. Please restore your wp-config.php file "
1987
+ "manually using the restore functionality in the \"wp-config.php File\"."
1988
+ msgstr ""
1989
+
1990
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:122
1991
+ msgid "All firewall rules have been disabled successfully!"
1992
+ msgstr ""
1993
+
1994
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:136
1995
+ msgid "WP Security Plugin"
1996
+ msgstr ""
1997
+
1998
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:138
1999
+ msgid ""
2000
+ "Thank you for using our WordPress security plugin. There are a lot of "
2001
+ "security features in this plugin."
2002
+ msgstr ""
2003
+
2004
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:139
2005
+ msgid ""
2006
+ "Go through each menu items and enable the security options to add more "
2007
+ "security to your site. Start by activating the basic features first."
2008
+ msgstr ""
2009
+
2010
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:140
2011
+ msgid ""
2012
+ "It is a good practice to take a backup of your .htaccess file, database and "
2013
+ "wp-config.php file before activating the security features. This plugin has "
2014
+ "options that you can use to backup those resources easily."
2015
+ msgstr ""
2016
+
2017
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:143
2018
+ msgid "Backup your database"
2019
+ msgstr ""
2020
+
2021
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:144
2022
+ msgid "Backup .htaccess file"
2023
+ msgstr ""
2024
+
2025
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:145
2026
+ msgid "Backup wp-config.php file"
2027
+ msgstr ""
2028
+
2029
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:151
2030
+ msgid "Disable Security Features"
2031
+ msgstr ""
2032
+
2033
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:157
2034
+ msgid ""
2035
+ "If you think that some plugin functionality on your site is broken due to a "
2036
+ "security feature you enabled in this plugin, then use the following option "
2037
+ "to turn off all the security features of this plugin."
2038
+ msgstr ""
2039
+
2040
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:161
2041
+ msgid "Disable All Security Features"
2042
+ msgstr ""
2043
+
2044
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:167
2045
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:177
2046
+ msgid "Disable All Firewall Rules"
2047
+ msgstr ""
2048
+
2049
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:173
2050
+ msgid ""
2051
+ "This feature will disable all firewall rules which are currently active in "
2052
+ "this plugin and it will also delete these rules from your .htacess file. Use "
2053
+ "it if you think one of the firewall rules is causing an issue on your site."
2054
+ msgstr ""
2055
+
2056
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:206
2057
+ msgid ""
2058
+ "Your .htaccess file was successfully backed up! Using an FTP program go to "
2059
+ "the \"backups\" directory of this plugin to save a copy of the file to your "
2060
+ "computer."
2061
+ msgstr ""
2062
+
2063
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:216
2064
+ msgid ""
2065
+ "htaccess file rename failed during backup. Please check your root directory "
2066
+ "for the backup file using FTP."
2067
+ msgstr ""
2068
+
2069
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:222
2070
+ msgid "htaccess backup failed."
2071
+ msgstr ""
2072
+
2073
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:237
2074
+ msgid "Please choose a .htaccess to restore from."
2075
+ msgstr ""
2076
+
2077
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:253
2078
+ msgid ""
2079
+ "htaccess file restore failed. Please attempt to restore the .htaccess "
2080
+ "manually using FTP."
2081
+ msgstr ""
2082
+
2083
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:257
2084
+ msgid "Your .htaccess file has successfully been restored!"
2085
+ msgstr ""
2086
+
2087
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:263
2088
+ msgid ""
2089
+ "htaccess Restore operation failed! Please check the contents of the file you "
2090
+ "are trying to restore from."
2091
+ msgstr ""
2092
+
2093
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:269
2094
+ msgid ".htaccess File Operations"
2095
+ msgstr ""
2096
+
2097
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:272
2098
+ msgid ""
2099
+ "Your \".htaccess\" file is a key component of your website's security and it "
2100
+ "can be modified to implement various levels of protection mechanisms."
2101
+ msgstr ""
2102
+
2103
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:273
2104
+ msgid ""
2105
+ "This feature allows you to backup and save your currently active .htaccess "
2106
+ "file should you need to re-use the the backed up file in the future."
2107
+ msgstr ""
2108
+
2109
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:274
2110
+ msgid ""
2111
+ "You can also restore your site's .htaccess settings using a backed up ."
2112
+ "htaccess file."
2113
+ msgstr ""
2114
+
2115
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:288
2116
+ msgid "Save the current .htaccess file"
2117
+ msgstr ""
2118
+
2119
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:292
2120
+ msgid ""
2121
+ "Click the button below to backup and save the currently active .htaccess "
2122
+ "file."
2123
+ msgstr ""
2124
+
2125
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:293
2126
+ msgid "Backup .htaccess File"
2127
+ msgstr ""
2128
+
2129
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:297
2130
+ msgid "Restore from a backed up .htaccess file"
2131
+ msgstr ""
2132
+
2133
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:303
2134
+ msgid ".htaccess file to restore from"
2135
+ msgstr ""
2136
+
2137
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:309
2138
+ msgid ""
2139
+ "After selecting your file, click the button below to restore your site using "
2140
+ "the backed up htaccess file (htaccess_backup.txt)."
2141
+ msgstr ""
2142
+
2143
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:315
2144
+ msgid "Restore .htaccess File"
2145
+ msgstr ""
2146
+
2147
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:319
2148
+ msgid "View Contents of the currently active .htaccess file"
2149
+ msgstr ""
2150
+
2151
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:348
2152
+ msgid "Please choose a wp-config.php file to restore from."
2153
+ msgstr ""
2154
+
2155
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:364
2156
+ msgid ""
2157
+ "wp-config.php file restore failed. Please attempt to restore this file "
2158
+ "manually using FTP."
2159
+ msgstr ""
2160
+
2161
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:368
2162
+ msgid "Your wp-config.php file has successfully been restored!"
2163
+ msgstr ""
2164
+
2165
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:374
2166
+ msgid ""
2167
+ "wp-config.php Restore operation failed! Please check the contents of the "
2168
+ "file you are trying to restore from."
2169
+ msgstr ""
2170
+
2171
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:380
2172
+ msgid "wp-config.php File Operations"
2173
+ msgstr ""
2174
+
2175
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:383
2176
+ msgid ""
2177
+ "Your \"wp-config.php\" file is one of the most important in your WordPress "
2178
+ "installation. It is a primary configuration file and contains crucial things "
2179
+ "such as details of your database and other critical components."
2180
+ msgstr ""
2181
+
2182
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:384
2183
+ msgid ""
2184
+ "This feature allows you to backup and save your currently active wp-config."
2185
+ "php file should you need to re-use the the backed up file in the future."
2186
+ msgstr ""
2187
+
2188
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:385
2189
+ msgid ""
2190
+ "You can also restore your site's wp-config.php settings using a backed up wp-"
2191
+ "config.php file."
2192
+ msgstr ""
2193
+
2194
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:399
2195
+ msgid "Save the current wp-config.php file"
2196
+ msgstr ""
2197
+
2198
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:403
2199
+ msgid ""
2200
+ "Click the button below to backup and download the contents of the currently "
2201
+ "active wp-config.php file."
2202
+ msgstr ""
2203
+
2204
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:404
2205
+ msgid "Backup wp-config.php File"
2206
+ msgstr ""
2207
+
2208
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:409
2209
+ msgid "Restore from a backed up wp-config file"
2210
+ msgstr ""
2211
+
2212
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:415
2213
+ msgid "wp-config file to restore from"
2214
+ msgstr ""
2215
+
2216
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:421
2217
+ msgid ""
2218
+ "After selecting your file click the button below to restore your site using "
2219
+ "the backed up wp-config file (wp-config.php.backup.txt)."
2220
+ msgstr ""
2221
+
2222
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:427
2223
+ msgid "Restore wp-config File"
2224
+ msgstr ""
2225
+
2226
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:431
2227
+ msgid "View Contents of the currently active wp-config.php file"
2228
+ msgstr ""
2229
+
2230
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:466
2231
+ msgid "WP Generator Meta Tag"
2232
+ msgstr ""
2233
+
2234
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:469
2235
+ msgid ""
2236
+ "Wordpress generator automatically adds some meta information inside the "
2237
+ "\"head\" tags of every page on your site's front end. Below is an example of "
2238
+ "this:"
2239
+ msgstr ""
2240
+
2241
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:471
2242
+ msgid ""
2243
+ "The above meta information shows which version of WordPress your site is "
2244
+ "currently running and thus can help hackers or crawlers scan your site to "
2245
+ "see if you have an older version of WordPress or one with a known exploit."
2246
+ msgstr ""
2247
+
2248
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:472
2249
+ msgid ""
2250
+ "This feature will allow you to remove the WP generator meta info from your "
2251
+ "site's pages."
2252
+ msgstr ""
2253
+
2254
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:478
2255
+ msgid "WP Generator Meta Info"
2256
+ msgstr ""
2257
+
2258
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:490
2259
+ msgid "Remove WP Generator Meta Info"
2260
+ msgstr ""
2261
+
2262
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:493
2263
+ msgid ""
2264
+ "Check this if you want to remove the meta info produced by WP Generator from "
2265
+ "all pages"
2266
+ msgstr ""
2267
+
2268
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:23
2269
+ msgid "Comment SPAM"
2270
+ msgstr ""
2271
+
2272
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:24
2273
+ msgid "Comment SPAM IP Monitoring"
2274
+ msgstr ""
2275
+
2276
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:111
2277
+ msgid "Comment SPAM Settings"
2278
+ msgstr ""
2279
+
2280
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:116
2281
+ msgid "Add Captcha To Comments Form"
2282
+ msgstr ""
2283
+
2284
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:120
2285
+ msgid ""
2286
+ "This feature will add a simple math captcha field in the WordPress comments "
2287
+ "form."
2288
+ msgstr ""
2289
+
2290
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:137
2291
+ msgid "Enable Captcha On Comment Forms"
2292
+ msgstr ""
2293
+
2294
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:140
2295
+ msgid "Check this if you want to insert a captcha field on the comment forms"
2296
+ msgstr ""
2297
+
2298
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:148
2299
+ msgid "Block Spambot Comments"
2300
+ msgstr ""
2301
+
2302
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:152
2303
+ msgid ""
2304
+ "A large portion of WordPress blog comment SPAM is mainly produced by "
2305
+ "automated bots and not necessarily by humans. "
2306
+ msgstr ""
2307
+
2308
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:153
2309
+ msgid ""
2310
+ "This feature will greatly minimize the useless and unecessary traffic and "
2311
+ "load on your server resulting from SPAM comments by blocking all comment "
2312
+ "requests which do not originate from your domain."
2313
+ msgstr ""
2314
+
2315
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:170
2316
+ msgid "Block Spambots From Posting Comments"
2317
+ msgstr ""
2318
+
2319
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:173
2320
+ msgid ""
2321
+ "Check this if you want to apply a firewall rule which will block comments "
2322
+ "originating from spambots."
2323
+ msgstr ""
2324
+
2325
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:177
2326
+ msgid ""
2327
+ "This feature will implement a firewall rule to block all comment attempts "
2328
+ "which do not originate from your domain."
2329
+ msgstr ""
2330
+
2331
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:178
2332
+ msgid ""
2333
+ "A legitimate comment is one which is submitted by a human who physically "
2334
+ "fills out the comment form and clicks the submit button. For such events, "
2335
+ "the HTTP_REFERRER is always set to your own domain."
2336
+ msgstr ""
2337
+
2338
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:179
2339
+ msgid ""
2340
+ "A comment submitted by a spambot is done by directly calling the comments."
2341
+ "php file, which usually means that the HTTP_REFERRER value is not your "
2342
+ "domain and often times empty."
2343
+ msgstr ""
2344
+
2345
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:180
2346
+ msgid ""
2347
+ "This feature will check and block comment requests which are not referred by "
2348
+ "your domain thus greatly reducing your overall blog SPAM and PHP requests "
2349
+ "done by the server to process these comments."
2350
+ msgstr ""
2351
+
2352
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:207
2353
+ msgid "Nonce check failed for list SPAM comment IPs!"
2354
+ msgstr ""
2355
+
2356
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:213
2357
+ msgid ""
2358
+ "You entered a non numeric value for the minimum SPAM comments per IP field. "
2359
+ "It has been set to the default value."
2360
+ msgstr ""
2361
+
2362
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:225
2363
+ #, php-format
2364
+ msgid ""
2365
+ "Displaying results for IP addresses which have posted a minimum of %s SPAM "
2366
+ "comments"
2367
+ msgstr ""
2368
+
2369
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:241
2370
+ msgid ""
2371
+ "This tab displays a list of the IP addresses of the people or bots who have "
2372
+ "left SPAM comments on your site."
2373
+ msgstr ""
2374
+
2375
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:242
2376
+ msgid ""
2377
+ "This information can be handy for identifying the most persistent IP "
2378
+ "addresses or ranges used by spammers."
2379
+ msgstr ""
2380
+
2381
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:243
2382
+ msgid ""
2383
+ "By inspecting the IP address data coming from spammers you will be in a "
2384
+ "better position to determine which addresses or address ranges you should "
2385
+ "block by adding them to your blacklist."
2386
+ msgstr ""
2387
+
2388
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:244
2389
+ msgid ""
2390
+ "To add one or more of the IP addresses displayed in the table below to your "
2391
+ "blacklist, simply click the \"Block\" link for the individual row or select "
2392
+ "more than one address \n"
2393
+ " using the checkboxes and then choose the \"block"
2394
+ "\" option from the Bulk Actions dropdown list and click the \"Apply\" button."
2395
+ msgstr ""
2396
+
2397
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:250
2398
+ msgid "List SPAMMER IP Addresses"
2399
+ msgstr ""
2400
+
2401
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:256
2402
+ msgid "Minimum number of SPAM comments per IP"
2403
+ msgstr ""
2404
+
2405
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:258
2406
+ msgid ""
2407
+ "This field allows you to list only those IP addresses which have been used "
2408
+ "to post X or more SPAM comments."
2409
+ msgstr ""
2410
+
2411
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:262
2412
+ msgid ""
2413
+ "Example 1: Setting this value to \"0\" or \"1\" will list ALL IP addresses "
2414
+ "which were used to submit SPAM comments."
2415
+ msgstr ""
2416
+
2417
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:263
2418
+ msgid ""
2419
+ "Example 2: Setting this value to \"5\" will list only those IP addresses "
2420
+ "which were used to submit 5 SPAM comments or more on your site."
2421
+ msgstr ""
2422
+
2423
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:270
2424
+ msgid "Find IP Addresses"
2425
+ msgstr ""
2426
+
2427
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:274
2428
+ msgid "SPAMMER IP Address Results"
2429
+ msgstr ""
2430
+
2431
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:280
2432
+ #: all-in-one-wp-security/classes/wp-security-utility.php:150
2433
+ msgid ""
2434
+ "The plugin has detected that you are using a Multi-Site WordPress "
2435
+ "installation."
2436
+ msgstr ""
2437
+
2438
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:281
2439
+ msgid "Only the \"superadmin\" can block IP addresses from the main site."
2440
+ msgstr ""
2441
+
2442
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:282
2443
+ msgid ""
2444
+ "Take note of the IP addresses you want blocked and ask the superadmin to add "
2445
+ "these to the blacklist using the \"Blacklist Manager\" on the main site."
2446
+ msgstr ""
2447
+
2448
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:29
2449
+ msgid "WP Username"
2450
+ msgstr ""
2451
+
2452
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:30
2453
+ msgid "Display Name"
2454
+ msgstr ""
2455
+
2456
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:31
2457
+ msgid "Password"
2458
+ msgstr ""
2459
+
2460
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:85
2461
+ msgid "Admin User Security"
2462
+ msgstr ""
2463
+
2464
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:88
2465
+ msgid ""
2466
+ "By default, WordPress sets the administrator username to \"admin\" at "
2467
+ "installation time."
2468
+ msgstr ""
2469
+
2470
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:89
2471
+ msgid ""
2472
+ "A lot of hackers try to take advantage of this information by attempting "
2473
+ "\"Brute Force Login Attacks\" where they repeatedly try to guess the "
2474
+ "password by using \"admin\" for username."
2475
+ msgstr ""
2476
+
2477
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:90
2478
+ msgid ""
2479
+ "From a security perspective, changing the default \"admin\" user name is one "
2480
+ "of the first and smartest things you should do on your site."
2481
+ msgstr ""
2482
+
2483
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:91
2484
+ msgid ""
2485
+ "This feature will allow you to change your default \"admin\" user name to a "
2486
+ "more secure name of your choosing."
2487
+ msgstr ""
2488
+
2489
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:98
2490
+ msgid "List of Administrator Accounts"
2491
+ msgstr ""
2492
+
2493
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:107
2494
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:33
2495
+ msgid "Change Admin Username"
2496
+ msgstr ""
2497
+
2498
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:115
2499
+ msgid ""
2500
+ "Your site currently has an account which uses the default \"admin\" "
2501
+ "username. \n"
2502
+ " It is highly recommended that you change this name to "
2503
+ "something else. \n"
2504
+ " Use the following field to change the admin username."
2505
+ msgstr ""
2506
+
2507
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:123
2508
+ msgid "New Admin Username"
2509
+ msgstr ""
2510
+
2511
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:125
2512
+ msgid "Choose a new username for admin."
2513
+ msgstr ""
2514
+
2515
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:129
2516
+ msgid "Change Username"
2517
+ msgstr ""
2518
+
2519
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:131
2520
+ msgid ""
2521
+ "NOTE: If you are currently logged in as \"admin\" you will be automatically "
2522
+ "logged out after changing your username and will be required to log back in."
2523
+ msgstr ""
2524
+
2525
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:138
2526
+ msgid "No action required! "
2527
+ msgstr ""
2528
+
2529
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:140
2530
+ msgid ""
2531
+ "Your site does not have any account which uses the default \"admin\" "
2532
+ "username. "
2533
+ msgstr ""
2534
+
2535
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:141
2536
+ msgid "This is good security practice."
2537
+ msgstr ""
2538
+
2539
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:153
2540
+ msgid "Display Name Security"
2541
+ msgstr ""
2542
+
2543
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:156
2544
+ msgid ""
2545
+ "When you submit a post or answer a comment, WordPress will usually display "
2546
+ "your \"nickname\"."
2547
+ msgstr ""
2548
+
2549
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:157
2550
+ msgid ""
2551
+ "By default the nickname is set to the login (or user) name of your account."
2552
+ msgstr ""
2553
+
2554
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:158
2555
+ msgid ""
2556
+ "From a security perspective, leaving your nickname the same as your user "
2557
+ "name is bad practice because it gives a hacker at least half of your "
2558
+ "account's login credentials."
2559
+ msgstr ""
2560
+
2561
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:159
2562
+ msgid ""
2563
+ "Therefore to further tighten your site's security you are advised to change "
2564
+ "your <strong>nickname</strong> and <strong>Display name</strong> to be "
2565
+ "different from your <strong>Username</strong>."
2566
+ msgstr ""
2567
+
2568
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:165
2569
+ msgid "Modify Accounts With Identical Login Name & Display Name"
2570
+ msgstr ""
2571
+
2572
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:174
2573
+ msgid ""
2574
+ "Your site currently has the following accounts which have an identical login "
2575
+ "name and display name."
2576
+ msgstr ""
2577
+
2578
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:175
2579
+ msgid "Click on the link to edit the settings of that particular user account"
2580
+ msgstr ""
2581
+
2582
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:190
2583
+ msgid "No action required."
2584
+ msgstr ""
2585
+
2586
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:191
2587
+ msgid ""
2588
+ "Your site does not have a user account where the display name is identical "
2589
+ "to the username."
2590
+ msgstr ""
2591
+
2592
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:202
2593
+ msgid "Password Tool"
2594
+ msgstr ""
2595
+
2596
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:205
2597
+ msgid ""
2598
+ "Poor password selection is one of the most common weak points of many sites "
2599
+ "and is usually the first thing a hacker will try to exploit when attempting "
2600
+ "to break into your site."
2601
+ msgstr ""
2602
+
2603
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:206
2604
+ msgid ""
2605
+ "Many people fall into the trap of using a simple word or series of numbers "
2606
+ "as their password. Such a predictable and simple password would take a "
2607
+ "competent hacker merely minutes to guess your password by using a simple "
2608
+ "script which cycles through the easy and most common combinations."
2609
+ msgstr ""
2610
+
2611
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:207
2612
+ msgid ""
2613
+ "The longer and more complex your password is the harder it is for hackers to "
2614
+ "\"crack\" because more complex passwords require much greater computing "
2615
+ "power and time."
2616
+ msgstr ""
2617
+
2618
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:208
2619
+ msgid ""
2620
+ "This section contains a useful password strength tool which you can use to "
2621
+ "check whether your password is sufficiently strong enough."
2622
+ msgstr ""
2623
+
2624
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:213
2625
+ msgid "Password Strength Tool"
2626
+ msgstr ""
2627
+
2628
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:218
2629
+ msgid "Start typing a password."
2630
+ msgstr ""
2631
+
2632
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:221
2633
+ msgid "It would take a desktop PC approximately"
2634
+ msgstr ""
2635
+
2636
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:222
2637
+ msgid "1 sec"
2638
+ msgstr ""
2639
+
2640
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:222
2641
+ msgid "to crack your password!"
2642
+ msgstr ""
2643
+
2644
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:227
2645
+ msgid "Password Strength"
2646
+ msgstr ""
2647
+
2648
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:243
2649
+ msgid "Nonce check failed on admin username change operation!"
2650
+ msgstr ""
2651
+
2652
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:250
2653
+ msgid "Username "
2654
+ msgstr ""
2655
+
2656
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:250
2657
+ msgid " already exists. Please enter another value. "
2658
+ msgstr ""
2659
+
2660
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:266
2661
+ msgid "The database update operation of the user account failed!"
2662
+ msgstr ""
2663
+
2664
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:293
2665
+ msgid "You entered an invalid username. Please enter another value. "
2666
+ 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"
2678
+ msgstr ""
2679
+
2680
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:28
2681
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:41
2682
+ msgid "Login Captcha"
2683
+ msgstr ""
2684
+
2685
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:29
2686
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:407
2687
+ msgid "Login Whitelist"
2688
+ msgstr ""
2689
+
2690
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:30
2691
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:519
2692
+ msgid "Failed Login Records"
2693
+ msgstr ""
2694
+
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
2702
+ msgid "Account Activity Logs"
2703
+ msgstr ""
2704
+
2705
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:100
2706
+ msgid ""
2707
+ "You entered a non numeric value for the max login attempts field. It has "
2708
+ "been set to the default value."
2709
+ msgstr ""
2710
+
2711
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:107
2712
+ msgid ""
2713
+ "You entered a non numeric value for the login retry time period field. It "
2714
+ "has been set to the default value."
2715
+ msgstr ""
2716
+
2717
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:114
2718
+ msgid ""
2719
+ "You entered a non numeric value for the lockout time length field. It has "
2720
+ "been set to the default value."
2721
+ msgstr ""
2722
+
2723
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:159
2724
+ msgid "Login Lockdown Configuration"
2725
+ msgstr ""
2726
+
2727
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:163
2728
+ msgid "One of the ways hackers try to compromise sites is via a "
2729
+ msgstr ""
2730
+
2731
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:163
2732
+ msgid "Brute Force Login Attack"
2733
+ msgstr ""
2734
+
2735
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:164
2736
+ msgid ""
2737
+ "This is where attackers use repeated login attempts until they guess the "
2738
+ "password."
2739
+ msgstr ""
2740
+
2741
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:165
2742
+ msgid ""
2743
+ "Apart from choosing strong passwords, monitoring and blocking IP addresses "
2744
+ "which are involved in repeated login failures in a short period of time is a "
2745
+ "very effective way to stop these types of attacks."
2746
+ msgstr ""
2747
+
2748
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:166
2749
+ #, php-format
2750
+ msgid ""
2751
+ "You may also want to checkout our %s feature for another secure way to "
2752
+ "protect against these types of attacks."
2753
+ msgstr ""
2754
+
2755
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:171
2756
+ msgid "Login Lockdown Options"
2757
+ msgstr ""
2758
+
2759
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:183
2760
+ msgid "Enable Login Lockdown Feature"
2761
+ msgstr ""
2762
+
2763
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:186
2764
+ msgid ""
2765
+ "Check this if you want to enable the login lockdown feature and apply the "
2766
+ "settings below"
2767
+ msgstr ""
2768
+
2769
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:190
2770
+ msgid "Max Login Attempts"
2771
+ msgstr ""
2772
+
2773
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:192
2774
+ msgid ""
2775
+ "Set the value for the maximum login retries before IP address is locked out"
2776
+ msgstr ""
2777
+
2778
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:196
2779
+ msgid "Login Retry Time Period (min)"
2780
+ msgstr ""
2781
+
2782
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:198
2783
+ msgid ""
2784
+ "If the maximum number of failed login attempts for a particular IP address "
2785
+ "occur within this time period the plugin will lock out that address"
2786
+ msgstr ""
2787
+
2788
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:202
2789
+ msgid "Time Length of Lockout (min)"
2790
+ msgstr ""
2791
+
2792
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:204
2793
+ msgid ""
2794
+ "Set the length of time for which a particular IP address will be prevented "
2795
+ "from logging in"
2796
+ msgstr ""
2797
+
2798
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:208
2799
+ msgid "Display Generic Error Message"
2800
+ msgstr ""
2801
+
2802
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:211
2803
+ msgid ""
2804
+ "Check this if you want to show a generic error message when a login attempt "
2805
+ "fails"
2806
+ msgstr ""
2807
+
2808
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:215
2809
+ msgid "Instantly Lockout Invalid Usernames"
2810
+ msgstr ""
2811
+
2812
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:218
2813
+ msgid ""
2814
+ "Check this if you want to instantly lockout login attempts with usernames "
2815
+ "which do not exist on your system"
2816
+ msgstr ""
2817
+
2818
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:223
2819
+ msgid "Notify By Email"
2820
+ msgstr ""
2821
+
2822
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:226
2823
+ msgid ""
2824
+ "Check this if you want to receive an email when someone has been locked out "
2825
+ "due to maximum failed login attempts"
2826
+ msgstr ""
2827
+
2828
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:236
2829
+ msgid "Currently Locked Out IP Address Ranges"
2830
+ msgstr ""
2831
+
2832
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:290
2833
+ msgid ""
2834
+ "This feature allows you to add a captcha form on the WordPress login page."
2835
+ msgstr ""
2836
+
2837
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:291
2838
+ msgid ""
2839
+ "Users who attempt to login will also need to enter the answer to a simple "
2840
+ "mathematical question - if they enter the wrong answer, the plugin will not "
2841
+ "allow them login even if they entered the correct username and password."
2842
+ msgstr ""
2843
+
2844
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:292
2845
+ msgid ""
2846
+ "Therefore, adding a captcha form on the login page is another effective yet "
2847
+ "simple \"Brute Force\" prevention technique."
2848
+ msgstr ""
2849
+
2850
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:298
2851
+ msgid "Login Form Captcha Settings"
2852
+ msgstr ""
2853
+
2854
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:309
2855
+ msgid "Enable Captcha On Login Page"
2856
+ msgstr ""
2857
+
2858
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:312
2859
+ msgid "Check this if you want to insert a captcha form on the login page"
2860
+ msgstr ""
2861
+
2862
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:318
2863
+ msgid "Lost Password Form Captcha Settings"
2864
+ msgstr ""
2865
+
2866
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:328
2867
+ msgid "Enable Captcha On Lost Password Page"
2868
+ msgstr ""
2869
+
2870
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:331
2871
+ msgid ""
2872
+ "Check this if you want to insert a captcha form on the lost password page"
2873
+ msgstr ""
2874
+
2875
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:353
2876
+ msgid "Nonce check failed for save whitelist settings!"
2877
+ msgstr ""
2878
+
2879
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:410
2880
+ msgid ""
2881
+ "The All In One WP Security Whitelist feature gives you the option of only "
2882
+ "allowing certain IP addresses or ranges to have access to your WordPress "
2883
+ "login page."
2884
+ msgstr ""
2885
+
2886
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:411
2887
+ msgid ""
2888
+ "This feature will deny login access for all IP addresses which are not in "
2889
+ "your whitelist as configured in the settings below."
2890
+ msgstr ""
2891
+
2892
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:412
2893
+ msgid ""
2894
+ "The plugin achieves this by writing the appropriate directives to your ."
2895
+ "htaccess file."
2896
+ msgstr ""
2897
+
2898
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:413
2899
+ msgid ""
2900
+ "By allowing/blocking IP addresses via the .htaccess file your are using the "
2901
+ "most secure first line of defence because login access will only be granted "
2902
+ "to whitelisted IP addresses and other addresses will be blocked as soon as "
2903
+ "they try to access your login page."
2904
+ msgstr ""
2905
+
2906
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:420
2907
+ #, php-format
2908
+ msgid ""
2909
+ "Attention: If in addition to enabling the white list feature, you also have "
2910
+ "the %s feature enabled, <strong>you will still need to use your secret word "
2911
+ "in the URL when trying to access your WordPress login page</strong>."
2912
+ msgstr ""
2913
+
2914
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:421
2915
+ msgid ""
2916
+ "These features are NOT functionally related. Having both of them enabled on "
2917
+ "your site means you are creating 2 layers of security."
2918
+ msgstr ""
2919
+
2920
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:426
2921
+ msgid "Login IP Whitelist Settings"
2922
+ msgstr ""
2923
+
2924
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:437
2925
+ msgid "Enable IP Whitelisting"
2926
+ msgstr ""
2927
+
2928
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:440
2929
+ msgid ""
2930
+ "Check this if you want to enable the whitelisting of selected IP addresses "
2931
+ "specified in the settings below"
2932
+ msgstr ""
2933
+
2934
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:444
2935
+ msgid "Your Current IP Address"
2936
+ msgstr ""
2937
+
2938
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:447
2939
+ msgid ""
2940
+ "You can copy and paste this address in the text box below if you want to "
2941
+ "include it in your login whitelist."
2942
+ msgstr ""
2943
+
2944
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:451
2945
+ msgid "Enter Whitelisted IP Addresses:"
2946
+ msgstr ""
2947
+
2948
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:455
2949
+ msgid ""
2950
+ "Enter one or more IP addresses or IP ranges you wish to include in your "
2951
+ "whitelist. Only the addresses specified here will have access to the "
2952
+ "WordPress login page."
2953
+ msgstr ""
2954
+
2955
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:485
2956
+ msgid "Nonce check failed for delete all failed login records operation!"
2957
+ msgstr ""
2958
+
2959
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:494
2960
+ msgid "User Login Feature - Delete all failed login records operation failed!"
2961
+ msgstr ""
2962
+
2963
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:498
2964
+ msgid "All records from the Failed Logins table were deleted successfully!"
2965
+ msgstr ""
2966
+
2967
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:513
2968
+ msgid "This tab displays the failed login attempts for your site."
2969
+ msgstr ""
2970
+
2971
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:514
2972
+ msgid ""
2973
+ "The information below can be handy if you need to do security investigations "
2974
+ "because it will show you the IP range, username and ID (if applicable) and "
2975
+ "the time/date of the failed login attempt."
2976
+ msgstr ""
2977
+
2978
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:535
2979
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:544
2980
+ msgid "Delete All Failed Login Records"
2981
+ msgstr ""
2982
+
2983
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:541
2984
+ msgid ""
2985
+ "Click this button if you wish to delete all failed login records in one go."
2986
+ msgstr ""
2987
+
2988
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:569
2989
+ msgid ""
2990
+ "You entered a non numeric value for the logout time period field. It has "
2991
+ "been set to the default value."
2992
+ msgstr ""
2993
+
2994
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:597
2995
+ msgid ""
2996
+ "Setting an expiry period for your WP administration session is a simple way "
2997
+ "to protect against unauthorized access to your site from your computer."
2998
+ msgstr ""
2999
+
3000
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:598
3001
+ msgid ""
3002
+ "This feature allows you to specify a time period in minutes after which the "
3003
+ "admin session will expire and the user will be forced to log back in."
3004
+ msgstr ""
3005
+
3006
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:603
3007
+ msgid "Force User Logout Options"
3008
+ msgstr ""
3009
+
3010
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:615
3011
+ msgid "Enable Force WP User Logout"
3012
+ msgstr ""
3013
+
3014
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:618
3015
+ msgid ""
3016
+ "Check this if you want to force a wp user to be logged out after a "
3017
+ "configured amount of time"
3018
+ msgstr ""
3019
+
3020
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:622
3021
+ msgid "Logout the WP User After XX Minutes"
3022
+ msgstr ""
3023
+
3024
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:624
3025
+ msgid ""
3026
+ "(Minutes) The user will be forced to log back in after this time period has "
3027
+ "elapased."
3028
+ msgstr ""
3029
+
3030
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:647
3031
+ msgid ""
3032
+ "This tab displays the login activity for WordPress admin accounts registered "
3033
+ "with your site."
3034
+ msgstr ""
3035
+
3036
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:648
3037
+ msgid ""
3038
+ "The information below can be handy if you need to do security investigations "
3039
+ "because it will show you the last 50 recent login events by username, IP "
3040
+ "address and time/date."
3041
+ msgstr ""
3042
+
3043
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:685
3044
+ msgid "Nonce check failed for users logged in list!"
3045
+ msgstr ""
3046
+
3047
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:698
3048
+ msgid "Refresh Logged In User Data"
3049
+ msgstr ""
3050
+
3051
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:702
3052
+ msgid "Refresh Data"
3053
+ msgstr ""
3054
+
3055
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:708
3056
+ msgid "This tab displays all users who are currently logged into your site."
3057
+ msgstr ""
3058
+
3059
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:709
3060
+ msgid ""
3061
+ "If you suspect there is a user or users who are logged in which should not "
3062
+ "be, you can block them by inspecting the IP addresses from the data below "
3063
+ "and adding them to your blacklist."
3064
+ msgstr ""
3065
+
3066
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:714
3067
+ msgid "Currently Logged In Users"
3068
+ msgstr ""
3069
+
3070
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:779
3071
+ msgid "The selected records were deleted successfully!"
3072
+ msgstr ""
3073
+
3074
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:788
3075
+ msgid "The selected record was deleted successfully!"
3076
+ msgstr ""
3077
+
3078
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:23
3079
+ msgid "Manual Approval"
3080
+ msgstr ""
3081
+
3082
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:24
3083
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:53
3084
+ msgid "Registration Captcha"
3085
+ msgstr ""
3086
+
3087
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:112
3088
+ msgid "User Registration Settings"
3089
+ msgstr ""
3090
+
3091
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:116
3092
+ msgid "Manually Approve New Registrations"
3093
+ msgstr ""
3094
+
3095
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:120
3096
+ msgid ""
3097
+ "If your site allows people to create their own accounts via the WordPress "
3098
+ "registration form, then you can minimize SPAM or bogus registrations by "
3099
+ "manually approving each registration."
3100
+ msgstr ""
3101
+
3102
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:121
3103
+ msgid ""
3104
+ "This feature will automatically set a newly registered account to \"pending"
3105
+ "\" until the administrator activates it. Therefore undesirable registrants "
3106
+ "will be unable to log in without your express approval."
3107
+ msgstr ""
3108
+
3109
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:122
3110
+ msgid ""
3111
+ "You can view all accounts which have been newly registered via the handy "
3112
+ "table below and you can also perform bulk activation/deactivation/deletion "
3113
+ "tasks on each account."
3114
+ msgstr ""
3115
+
3116
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:138
3117
+ msgid "Enable manual approval of new registrations"
3118
+ msgstr ""
3119
+
3120
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:141
3121
+ msgid ""
3122
+ "Check this if you want to automatically disable all newly registered "
3123
+ "accounts so that you can approve them manually."
3124
+ msgstr ""
3125
+
3126
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:150
3127
+ msgid "Approve Registered Users"
3128
+ msgstr ""
3129
+
3130
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:195
3131
+ msgid ""
3132
+ "This feature allows you to add a captcha form on the WordPress registration "
3133
+ "page."
3134
+ msgstr ""
3135
+
3136
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:196
3137
+ msgid ""
3138
+ "Users who attempt to register will also need to enter the answer to a simple "
3139
+ "mathematical question - if they enter the wrong answer, the plugin will not "
3140
+ "allow them to register."
3141
+ msgstr ""
3142
+
3143
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:197
3144
+ msgid ""
3145
+ "Therefore, adding a captcha form on the registration page is another "
3146
+ "effective yet simple SPAM registration prevention technique."
3147
+ msgstr ""
3148
+
3149
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:202
3150
+ msgid "Registration Page Captcha Settings"
3151
+ msgstr ""
3152
+
3153
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:214
3154
+ msgid "Enable Captcha On Registration Page"
3155
+ msgstr ""
3156
+
3157
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:217
3158
+ msgid ""
3159
+ "Check this if you want to insert a captcha form on the WordPress user "
3160
+ "registration page (if you allow user registration)."
3161
+ msgstr ""
3162
+
3163
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:22
3164
+ msgid "WhoIS Lookup"
3165
+ msgstr ""
3166
+
3167
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:74
3168
+ msgid "WHOIS Lookup Information"
3169
+ msgstr ""
3170
+
3171
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:77
3172
+ msgid ""
3173
+ "This feature allows you to look up more detailed information about an IP "
3174
+ "address or domain name by querying the WHOIS API."
3175
+ msgstr ""
3176
+
3177
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:83
3178
+ msgid "Perform a WHOIS Lookup for an IP or Domain Name"
3179
+ msgstr ""
3180
+
3181
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:89
3182
+ msgid "Enter IP Address or Domain Name"
3183
+ msgstr ""
3184
+
3185
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:91
3186
+ msgid ""
3187
+ "Enter an IP address or domain name. Example: 111.11.12.13 OR some-domain-"
3188
+ "name.com"
3189
+ msgstr ""
3190
+
3191
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:95
3192
+ msgid "Perform IP or Domain Lookup"
3193
+ msgstr ""
3194
+
3195
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:115
3196
+ msgid "WHOIS lookup successfully completed. Please see the results below:"
3197
+ msgstr ""
3198
+
3199
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:127
3200
+ msgid ""
3201
+ "You have entered an incorrectly formatted IP address or domain name. Please "
3202
+ "try again."
3203
+ msgstr ""
3204
+
3205
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:178
3206
+ msgid "No items found."
3207
+ msgstr ""
3208
+
3209
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:281
3210
+ msgid "Bulk Actions"
3211
+ msgstr ""
3212
+
3213
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:291
3214
+ msgid "Apply"
3215
+ msgstr ""
3216
+
3217
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:365
3218
+ msgid "Show all dates"
3219
+ msgstr ""
3220
+
3221
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:378
3222
+ #, php-format
3223
+ msgid "%1$s %2$d"
3224
+ msgstr ""
3225
+
3226
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:394
3227
+ msgid "List View"
3228
+ msgstr ""
3229
+
3230
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:395
3231
+ msgid "Excerpt View"
3232
+ msgstr ""
3233
+
3234
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:421
3235
+ #, php-format
3236
+ msgid "%s pending"
3237
+ msgstr ""
3238
+
3239
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:653
3240
+ msgid "Select All"
3241
+ msgstr ""
3242
+
3243
+ #: all-in-one-wp-security/classes/wp-security-backup.php:177
3244
+ msgid "All In One WP Security - Site Database Backup"
3245
+ msgstr ""
3246
+
3247
+ #: all-in-one-wp-security/classes/wp-security-backup.php:179
3248
+ msgid "Attached is your latest DB backup file for site URL"
3249
+ msgstr ""
3250
+
3251
+ #: all-in-one-wp-security/classes/wp-security-backup.php:179
3252
+ msgid " generated on"
3253
+ msgstr ""
3254
+
3255
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:12
3256
+ msgid "Please enter an answer in digits:"
3257
+ msgstr "Favor inserir a resposta em dígitos:"
3258
+
3259
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:91
3260
+ msgid "one"
3261
+ msgstr "um"
3262
+
3263
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:92
3264
+ msgid "two"
3265
+ msgstr "dois"
3266
+
3267
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:93
3268
+ msgid "three"
3269
+ msgstr "três"
3270
+
3271
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:94
3272
+ msgid "four"
3273
+ msgstr "quatro"
3274
+
3275
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:95
3276
+ msgid "five"
3277
+ msgstr "cinco"
3278
+
3279
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:96
3280
+ msgid "six"
3281
+ msgstr "seis"
3282
+
3283
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:97
3284
+ msgid "seven"
3285
+ msgstr "sete"
3286
+
3287
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:98
3288
+ msgid "eight"
3289
+ msgstr "oito"
3290
+
3291
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:99
3292
+ msgid "nine"
3293
+ msgstr "nove"
3294
+
3295
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:100
3296
+ msgid "ten"
3297
+ msgstr "dez"
3298
+
3299
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:101
3300
+ msgid "eleven"
3301
+ msgstr "onze"
3302
+
3303
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:102
3304
+ msgid "twelve"
3305
+ msgstr "doze"
3306
+
3307
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:103
3308
+ msgid "thirteen"
3309
+ msgstr "treze"
3310
+
3311
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:104
3312
+ msgid "fourteen"
3313
+ msgstr "catorze"
3314
+
3315
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:105
3316
+ msgid "fifteen"
3317
+ msgstr "quinze"
3318
+
3319
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:106
3320
+ msgid "sixteen"
3321
+ msgstr "dezesseis"
3322
+
3323
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:107
3324
+ msgid "seventeen"
3325
+ msgstr "dezessete"
3326
+
3327
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:108
3328
+ msgid "eighteen"
3329
+ msgstr "dezoito"
3330
+
3331
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:109
3332
+ msgid "nineteen"
3333
+ msgstr "dezenove"
3334
+
3335
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:110
3336
+ msgid "twenty"
3337
+ msgstr "vinte"
3338
+
3339
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:58
3340
+ msgid "All In One WP Security - File change detected!"
3341
+ msgstr "All In One WP Security - Alteração de Arquivo detectada!"
3342
+
3343
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:60
3344
+ msgid "A file change was detected on your system for site URL"
3345
+ msgstr ""
3346
+
3347
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:60
3348
+ msgid ". Scan was generated on"
3349
+ msgstr ""
3350
+
3351
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:61
3352
+ msgid "Login to your site to view the scan details."
3353
+ msgstr ""
3354
+
3355
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:158
3356
+ msgid "Please enter an answer in the CAPTCHA field."
3357
+ msgstr ""
3358
+
3359
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:168
3360
+ msgid ""
3361
+ "Error: You entered an incorrect CAPTCHA answer. Please go back and try again."
3362
+ msgstr ""
3363
+
3364
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:196
3365
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:63
3366
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:66
3367
+ #: all-in-one-wp-security/classes/wp-security-user-registration.php:59
3368
+ msgid "<strong>ERROR</strong>: Your answer was incorrect - please try again."
3369
+ msgstr ""
3370
+
3371
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:39
3372
+ msgid ""
3373
+ "<strong>ERROR</strong>: Login failed because your IP address has been "
3374
+ "blocked.\n"
3375
+ " Please contact the administrator."
3376
+ msgstr ""
3377
+
3378
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:76
3379
+ msgid "<strong>ERROR</strong>: The username field is empty."
3380
+ msgstr ""
3381
+
3382
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:80
3383
+ msgid "<strong>ERROR</strong>: The password field is empty."
3384
+ msgstr ""
3385
+
3386
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:100
3387
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:126
3388
+ msgid "<strong>ERROR</strong>: Invalid login credentials."
3389
+ msgstr ""
3390
+
3391
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:103
3392
+ msgid "<strong>ERROR</strong>: Invalid username."
3393
+ msgstr ""
3394
+
3395
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:129
3396
+ #, php-format
3397
+ msgid ""
3398
+ "<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password "
3399
+ "Lost and Found\">Lost your password</a>?"
3400
+ msgstr ""
3401
+
3402
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:140
3403
+ msgid ""
3404
+ "<strong>ACCOUNT PENDING</strong>: Your account is currently not active. An "
3405
+ "administrator needs to activate your account before you can login."
3406
+ msgstr ""
3407
+
3408
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:263
3409
+ msgid "Site Lockout Notification"
3410
+ msgstr ""
3411
+
3412
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:264
3413
+ msgid ""
3414
+ "A lockdown event has occurred due to too many failed login attempts or "
3415
+ "invalid username:"
3416
+ msgstr ""
3417
+
3418
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:265
3419
+ msgid "Username: "
3420
+ msgstr ""
3421
+
3422
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:266
3423
+ msgid "IP Address: "
3424
+ msgstr ""
3425
+
3426
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:267
3427
+ msgid "IP Range: "
3428
+ msgstr ""
3429
+
3430
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:268
3431
+ msgid ""
3432
+ "Log into your site's WordPress administration panel to see the duration of "
3433
+ "the lockout or to unlock the user."
3434
+ msgstr ""
3435
+
3436
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:425
3437
+ #, php-format
3438
+ msgid ""
3439
+ "Your session has expired because it has been over %d minutes since your last "
3440
+ "login."
3441
+ msgstr ""
3442
+
3443
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:426
3444
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:430
3445
+ msgid "Please log back in to continue."
3446
+ msgstr ""
3447
+
3448
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:429
3449
+ msgid "You were logged out because you just changed the \"admin\" username."
3450
+ msgstr ""
3451
+
3452
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:79
3453
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:98
3454
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:113
3455
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:128
3456
+ msgid " is not a valid ip address format."
3457
+ msgstr ""
3458
+
3459
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:136
3460
+ msgid "You cannot ban your own IP address: "
3461
+ msgstr ""
3462
+
3463
+ #: all-in-one-wp-security/classes/wp-security-utility.php:151
3464
+ msgid ""
3465
+ "This feature can only be configured by the \"superadmin\" on the main site."
3466
+ msgstr ""
3467
+
3468
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:29
3469
+ msgid "Remove WP Generatore Meta Tag"
3470
+ msgstr ""
3471
+
3472
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:35
3473
+ msgid "Change Display Name"
3474
+ msgstr "Troca do Nome Exibido"
3475
+
3476
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:43
3477
+ msgid "Lost Password Captcha"
3478
+ msgstr "Captcha Senha Perdida"
3479
+
3480
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:45
3481
+ msgid "Login IP Whitelisting"
3482
+ msgstr ""
3483
+
3484
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:51
3485
+ msgid "Registration Approval"
3486
+ msgstr "Aprovação do Registro"
3487
+
3488
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:67
3489
+ msgid "WordPress Files Access"
3490
+ msgstr ""
3491
+
3492
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:71
3493
+ msgid "IP and User Agent Blacklisting"
3494
+ msgstr ""
3495
+
3496
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:75
3497
+ msgid "Enable Basic Firewall"
3498
+ msgstr "Ativar Firewall Básico"
3499
+
3500
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:76
3501
+ msgid "Enable Pingback Vulnerability Protection"
3502
+ msgstr ""
3503
+
3504
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:82
3505
+ msgid "Forbid Proxy Comments"
3506
+ msgstr ""
3507
+
3508
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:83
3509
+ msgid "Deny Bad Queries"
3510
+ msgstr ""
3511
+
3512
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:85
3513
+ msgid "5G Blacklist"
3514
+ msgstr ""
3515
+
3516
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:88
3517
+ msgid "Block Spambots"
3518
+ msgstr ""
3519
+
3520
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:90
3521
+ msgid "Comment Captcha"
3522
+ msgstr ""
3523
+
3524
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:28
3525
+ msgid "Basic"
3526
+ msgstr "Basico"
3527
+
3528
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:31
3529
+ msgid "Intermediate"
3530
+ msgstr "Intermediario"
3531
+
3532
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:34
3533
+ msgid "Advanced"
3534
+ msgstr "Avançado"
other-includes/wp-security-rename-login-feature.php CHANGED
@@ -65,9 +65,7 @@ function login_header( $title = 'Log In', $message = '', $wp_error = '' ) {
65
  <title><?php bloginfo('name'); ?> &rsaquo; <?php echo $title; ?></title>
66
  <?php
67
 
68
- wp_admin_css( 'wp-admin', true );
69
- wp_admin_css( 'colors-fresh', true );
70
- wp_admin_css( 'ie', true );
71
 
72
  // Remove all stored post data on logging out.
73
  // This could be added by add_action('login_head'...) like wp_shake_js()
@@ -95,7 +93,7 @@ function login_header( $title = 'Log In', $message = '', $wp_error = '' ) {
95
  $login_header_url = network_home_url();
96
  $login_header_title = get_current_site()->site_name;
97
  } else {
98
- $login_header_url = __( 'http://wordpress.org/' );
99
  $login_header_title = __( 'Powered by WordPress' );
100
  }
101
 
@@ -130,6 +128,7 @@ function login_header( $title = 'Log In', $message = '', $wp_error = '' ) {
130
  if ( 'success' === $interim_login )
131
  $classes[] = 'interim-login-success';
132
  }
 
133
 
134
  /**
135
  * Filter the login page body classes.
@@ -387,7 +386,7 @@ function retrieve_password() {
387
  */
388
  $message = apply_filters( 'retrieve_password_message', $message, $key );
389
 
390
- if ( $message && !wp_mail($user_email, $title, $message) )
391
  wp_die( __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function.') );
392
 
393
  return true;
@@ -611,9 +610,20 @@ case 'rp' :
611
  </p>
612
 
613
  <div id="pass-strength-result" class="hide-if-no-js"><?php _e('Strength indicator'); ?></div>
614
- <p class="description indicator-hint"><?php _e('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ &amp; ).'); ?></p>
615
 
616
  <br class="clear" />
 
 
 
 
 
 
 
 
 
 
 
617
  <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Reset Password'); ?>" /></p>
618
  </form>
619
 
@@ -743,11 +753,18 @@ default:
743
  if ( !$secure_cookie && is_ssl() && force_ssl_login() && !force_ssl_admin() && ( 0 !== strpos($redirect_to, 'https') ) && ( 0 === strpos($redirect_to, 'http') ) )
744
  $secure_cookie = false;
745
 
746
- // If cookies are disabled we can't log in even with a valid user+pass
747
- if ( isset($_POST['testcookie']) && empty($_COOKIE[TEST_COOKIE]) )
748
- $user = new WP_Error('test_cookie', __("<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href='http://www.google.com/cookies.html'>enable cookies</a> to use WordPress."));
749
- else
750
- $user = wp_signon('', $secure_cookie);
 
 
 
 
 
 
 
751
 
752
  $requested_redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
753
  /**
@@ -902,7 +919,7 @@ d.select();
902
  }, 200);
903
  }
904
 
905
- <?php if ( !$errors ) { ?>
906
  wp_attempt_focus();
907
  <?php } ?>
908
  if(typeof wpOnload=='function')wpOnload();
65
  <title><?php bloginfo('name'); ?> &rsaquo; <?php echo $title; ?></title>
66
  <?php
67
 
68
+ wp_admin_css( 'login', true );
 
 
69
 
70
  // Remove all stored post data on logging out.
71
  // This could be added by add_action('login_head'...) like wp_shake_js()
93
  $login_header_url = network_home_url();
94
  $login_header_title = get_current_site()->site_name;
95
  } else {
96
+ $login_header_url = __( 'https://wordpress.org/' );
97
  $login_header_title = __( 'Powered by WordPress' );
98
  }
99
 
128
  if ( 'success' === $interim_login )
129
  $classes[] = 'interim-login-success';
130
  }
131
+ $classes[] =' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) );
132
 
133
  /**
134
  * Filter the login page body classes.
386
  */
387
  $message = apply_filters( 'retrieve_password_message', $message, $key );
388
 
389
+ if ( $message && !wp_mail( $user_email, wp_specialchars_decode( $title ), $message ) )
390
  wp_die( __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function.') );
391
 
392
  return true;
610
  </p>
611
 
612
  <div id="pass-strength-result" class="hide-if-no-js"><?php _e('Strength indicator'); ?></div>
613
+ <p class="description indicator-hint"><?php _e('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers, and symbols like ! " ? $ % ^ &amp; ).'); ?></p>
614
 
615
  <br class="clear" />
616
+
617
+ <?php
618
+ /**
619
+ * Fires following the 'Strength indicator' meter in the user password reset form.
620
+ *
621
+ * @since 3.9.0
622
+ *
623
+ * @param WP_User $user User object of the user whose password is being reset.
624
+ */
625
+ do_action( 'resetpass_form', $user );
626
+ ?>
627
  <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Reset Password'); ?>" /></p>
628
  </form>
629
 
753
  if ( !$secure_cookie && is_ssl() && force_ssl_login() && !force_ssl_admin() && ( 0 !== strpos($redirect_to, 'https') ) && ( 0 === strpos($redirect_to, 'http') ) )
754
  $secure_cookie = false;
755
 
756
+ $user = wp_signon( '', $secure_cookie );
757
+
758
+ if ( empty( $_COOKIE[ LOGGED_IN_COOKIE ] ) ) {
759
+ if ( headers_sent() ) {
760
+ $user = new WP_Error( 'test_cookie', sprintf( __( '<strong>ERROR</strong>: Cookies are blocked due to unexpected output. For help, please see <a href="%1$s">this documentation</a> or try the <a href="%2$s">support forums</a>.' ),
761
+ __( 'http://codex.wordpress.org/Cookies' ), __( 'https://wordpress.org/support/' ) ) );
762
+ } elseif ( isset( $_POST['testcookie'] ) && empty( $_COOKIE[ TEST_COOKIE ] ) ) {
763
+ // If cookies are disabled we can't log in even with a valid user+pass
764
+ $user = new WP_Error( 'test_cookie', sprintf( __( '<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href="%s">enable cookies</a> to use WordPress.' ),
765
+ __( 'http://codex.wordpress.org/Cookies' ) ) );
766
+ }
767
+ }
768
 
769
  $requested_redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
770
  /**
919
  }, 200);
920
  }
921
 
922
+ <?php if ( !$error ) { ?>
923
  wp_attempt_focus();
924
  <?php } ?>
925
  if(typeof wpOnload=='function')wpOnload();
readme.txt CHANGED
@@ -1,16 +1,16 @@
1
  === All In One WP Security & Firewall ===
2
  Contributors: Tips and Tricks HQ, wpsolutions, Peter Petreski, Ruhul Amin
3
  Donate link: http://www.tipsandtricks-hq.com
4
- Tags: security, secure, Anti Virus, antivirus, ban, ban hacker, virus, firewall, firewall security, login, lockdown, htaccess, hack, malware, vulnerability, protect, protection, phishing, database, backup, plugin, sql injection, ssl, restrict, login captcha, bot, hotlink, 404 detection,
5
  Requires at least: 3.5
6
- Tested up to: 3.8.1
7
- Stable tag: 3.7.1
8
  License: GPLv3
9
 
10
  A comprehensive, user-friendly, all in one WordPress security and firewall plugin for your site.
11
 
12
  == Description ==
13
- = A COMPREHENSIVE, EASY TO USE AND WELL SUPPORTED WORDPRESS SECURITY PLUGIN =
14
 
15
  WordPress itself is a very secure platform. However, it helps to add some extra security and firewall to your site by using a security plugin that enforces a lot of good security practices.
16
 
@@ -26,6 +26,8 @@ All In One WP Security also uses an unprecedented security points grading system
26
 
27
  Our security and firewall rules are categorized into "basic", "intermediate" and "advanced". This way you can apply the firewall rules progressively without breaking your site's functionality.
28
 
 
 
29
  Below is a list of the security and firewall features offered in this plugin:
30
 
31
  = User Accounts Security =
@@ -92,7 +94,7 @@ or malicious bots who do not have a special cookie in their browser. You (the si
92
  = Brute force login attack prevention =
93
  * Instantly block Brute Force Login Attacks via our special Cookie-Based Brute Force Login Prevention feature. This firewall functionality will block all login attempts from people and bots.
94
  * Ability to add a simple math captcha to the WordPress login form to fight against brute force login attacks.
95
- * Rename your WordPress login page URL so that bots and hackers cannot access your real WordPress login URL. This feature allows you to change the default login page (wp-login.php) to something you configure.
96
 
97
  = WhoIs Lookup =
98
  * Perform a WhoIs lookup of a suspicious host or IP address and get full details.
@@ -149,6 +151,21 @@ None
149
 
150
  == Changelog ==
151
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
152
  = 3.7.1 =
153
  - Fixed a minor bug: dashboard link was pointing to the wrong tab for the "Logged In Users" tab.
154
  - Fix a bug with the login page captcha. The captcha wansn't shown if the rename login page feature was enabled at the same time.
@@ -183,7 +200,7 @@ None
183
  = 3.4 =
184
  - Consolidated "Brute Force" features by moving all such features to the "Brute Force" menu.
185
  - Improved the file change detection scan feature: Introduced a button allowing admin to view the file change results from the last scan and fixed small bug whereby the change detected flag was not being cleared for applicable cases.
186
- - Fixed a small bug with "rename login page" feature.
187
  - Made wp-config.php and .htaccess file backups more secure. Thanks to @TheAssurer for the tip.
188
  - Made the login code more robust by catering for cases where the "wp_login" action was not passing 2 parameters.
189
 
1
  === All In One WP Security & Firewall ===
2
  Contributors: Tips and Tricks HQ, wpsolutions, Peter Petreski, Ruhul Amin
3
  Donate link: http://www.tipsandtricks-hq.com
4
+ Tags: security, secure, Anti Virus, antivirus, ban, ban hacker, virus, firewall, firewall security, login, lockdown, htaccess, hack, malware, vulnerability, protect, protection, phishing, database, backup, plugin, sql injection, ssl, restrict, login captcha, bot, hotlink, 404 detection, admin, rename,
5
  Requires at least: 3.5
6
+ Tested up to: 3.9
7
+ Stable tag: 3.7.3
8
  License: GPLv3
9
 
10
  A comprehensive, user-friendly, all in one WordPress security and firewall plugin for your site.
11
 
12
  == Description ==
13
+ = A COMPREHENSIVE, EASY TO USE, STABLE AND WELL SUPPORTED WORDPRESS SECURITY PLUGIN =
14
 
15
  WordPress itself is a very secure platform. However, it helps to add some extra security and firewall to your site by using a security plugin that enforces a lot of good security practices.
16
 
26
 
27
  Our security and firewall rules are categorized into "basic", "intermediate" and "advanced". This way you can apply the firewall rules progressively without breaking your site's functionality.
28
 
29
+ The All In One WordPress Security plugin doesn't slow down your site and it is 100% free.
30
+
31
  Below is a list of the security and firewall features offered in this plugin:
32
 
33
  = User Accounts Security =
94
  = Brute force login attack prevention =
95
  * Instantly block Brute Force Login Attacks via our special Cookie-Based Brute Force Login Prevention feature. This firewall functionality will block all login attempts from people and bots.
96
  * Ability to add a simple math captcha to the WordPress login form to fight against brute force login attacks.
97
+ * Ability to hide admin login page. Rename your WordPress login page URL so that bots and hackers cannot access your real WordPress login URL. This feature allows you to change the default login page (wp-login.php) to something you configure.
98
 
99
  = WhoIs Lookup =
100
  * Perform a WhoIs lookup of a suspicious host or IP address and get full details.
151
 
152
  == Changelog ==
153
 
154
+ = 3.7.3 =
155
+ - Added Brazilian language translation. The translation was submitted by Sergio Siqueira.
156
+ - Added two new action hooks for plugin activation and deactivation time.
157
+ - Improved the get_user_ip_address() function so it handles cases when multiple addresses are returned due to proxy.
158
+ - Fixed the mis-alignment of login page which was broken by WP3.9 when rename login feature is used.
159
+ - WordPress 3.9 compatibility
160
+
161
+ = 3.7.2 =
162
+ - Added a PHP Info section in the system info interface to show some important PHP details of the server.
163
+ - Added a filter to allow the user to have a custom translation in a place (which will be loaded instead of the default one from the plugin). This change was submitted by Samuel Aguilera.
164
+ - Replaced myslqi fetch_all method with fetch_assoc to cover cases where some servers do not have the correct mysql drivers.
165
+ - Added a new filter to allow manipulation of the htaccess rules from your custom code. The name of the filter is 'aiowps_htaccess_rules_before_writing'.
166
+ - Added a "Delete All 404 Event Logs" button to purge all 404 logs from DB
167
+ - Added code to automatically send an email to the registrant when an account has been manually "Approved" from the User Registration menu.
168
+
169
  = 3.7.1 =
170
  - Fixed a minor bug: dashboard link was pointing to the wrong tab for the "Logged In Users" tab.
171
  - Fix a bug with the login page captcha. The captcha wansn't shown if the rename login page feature was enabled at the same time.
200
  = 3.4 =
201
  - Consolidated "Brute Force" features by moving all such features to the "Brute Force" menu.
202
  - Improved the file change detection scan feature: Introduced a button allowing admin to view the file change results from the last scan and fixed small bug whereby the change detected flag was not being cleared for applicable cases.
203
+ - Fixed a small bug with "rename login page" (hide admin login) feature.
204
  - Made wp-config.php and .htaccess file backups more secure. Thanks to @TheAssurer for the tip.
205
  - Made the login code more robust by catering for cases where the "wp_login" action was not passing 2 parameters.
206
 
wp-security-core.php CHANGED
@@ -3,7 +3,7 @@
3
  if (!class_exists('AIO_WP_Security')){
4
 
5
  class AIO_WP_Security{
6
- var $version = '3.7.1';
7
  var $db_version = '1.6';
8
  var $plugin_url;
9
  var $plugin_path;
@@ -127,6 +127,8 @@ class AIO_WP_Security{
127
  AIOWPSecurity_Installer::run_installer();
128
  wp_schedule_event(time(), 'hourly', 'aiowps_hourly_cron_event'); //schedule an hourly cron event
129
  //wp_schedule_event(time(), 'daily', 'aiowps_daily_cron_event'); //schedule an daily cron event
 
 
130
  }
131
 
132
  static function deactivate_handler()
@@ -136,14 +138,14 @@ class AIO_WP_Security{
136
  //AIOWPSecurity_Deactivation::run_deactivation_tasks();
137
  wp_clear_scheduled_hook('aiowps_hourly_cron_event');
138
  //wp_clear_scheduled_hook('aiowps_daily_cron_event');
139
- if (AIOWPSecurity_Utility::is_multisite_install())
140
- {
141
  delete_site_transient('users_online');
142
  }
143
- else
144
- {
145
  delete_transient('users_online');
146
  }
 
 
147
  }
148
 
149
  function db_upgrade_handler()
@@ -168,7 +170,9 @@ class AIO_WP_Security{
168
 
169
  function wp_security_plugin_init()
170
  {
171
- //Set up localisation
 
 
172
  load_plugin_textdomain('aiowpsecurity', false, dirname(plugin_basename(__FILE__ )) . '/languages/');
173
 
174
  //Actions, filters, shortcodes goes here
3
  if (!class_exists('AIO_WP_Security')){
4
 
5
  class AIO_WP_Security{
6
+ var $version = '3.7.3';
7
  var $db_version = '1.6';
8
  var $plugin_url;
9
  var $plugin_path;
127
  AIOWPSecurity_Installer::run_installer();
128
  wp_schedule_event(time(), 'hourly', 'aiowps_hourly_cron_event'); //schedule an hourly cron event
129
  //wp_schedule_event(time(), 'daily', 'aiowps_daily_cron_event'); //schedule an daily cron event
130
+
131
+ do_action('aiowps_activation_complete');
132
  }
133
 
134
  static function deactivate_handler()
138
  //AIOWPSecurity_Deactivation::run_deactivation_tasks();
139
  wp_clear_scheduled_hook('aiowps_hourly_cron_event');
140
  //wp_clear_scheduled_hook('aiowps_daily_cron_event');
141
+ if (AIOWPSecurity_Utility::is_multisite_install()){
 
142
  delete_site_transient('users_online');
143
  }
144
+ else{
 
145
  delete_transient('users_online');
146
  }
147
+
148
+ do_action('aiowps_deactivation_complete');
149
  }
150
 
151
  function db_upgrade_handler()
170
 
171
  function wp_security_plugin_init()
172
  {
173
+ //Set up localisation. First loaded overrides strings present in later loaded file
174
+ $locale = apply_filters( 'plugin_locale', get_locale(), 'aiowpsecurity' );
175
+ load_textdomain( 'aiowpsecurity', WP_LANG_DIR . "/aiowpsecurity-$locale.mo" );
176
  load_plugin_textdomain('aiowpsecurity', false, dirname(plugin_basename(__FILE__ )) . '/languages/');
177
 
178
  //Actions, filters, shortcodes goes here
wp-security.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: All In One WP Security
4
- Version: v3.7.1
5
  Plugin URI: http://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin
6
  Author: Tips and Tricks HQ, Peter, Ruhul, Ivy
7
  Author URI: http://www.tipsandtricks-hq.com/
1
  <?php
2
  /*
3
  Plugin Name: All In One WP Security
4
+ Version: v3.7.3
5
  Plugin URI: http://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin
6
  Author: Tips and Tricks HQ, Peter, Ruhul, Ivy
7
  Author URI: http://www.tipsandtricks-hq.com/