All In One WP Security & Firewall - Version 4.0.8

Version Description

  • Added ability to identify IP addresses during user registration and option to block selected IPs.
  • Added login form captcha functionality for sub-sites in a multi-site installation. (see the Brute Force menu)
  • Fixed multi-site bug related to manual user-chosen DB prefix change.
  • Added extra XSS protection inside admin menu pages for the "tab" query parameter.
  • Added a note to the features that has the potential to lock you out if it doesn't work correctly on your site.
  • Updated Brazil-Portuguese language file.
  • Fixed issue with firewall custom rules being corrupted by magic quotes. Thanks to @chesio for fixing this.
Download this release

Release Info

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

Code changes from version 4.0.7 to 4.0.8

admin/wp-security-blacklist-menu.php CHANGED
@@ -26,7 +26,7 @@ class AIOWPSecurity_Blacklist_Menu extends AIOWPSecurity_Admin_Menu
26
  function get_current_tab()
27
  {
28
  $tab_keys = array_keys($this->menu_tabs);
29
- $tab = isset( $_GET['tab'] ) ? $_GET['tab'] : $tab_keys[0];
30
  return $tab;
31
  }
32
 
@@ -150,6 +150,16 @@ class AIOWPSecurity_Blacklist_Menu extends AIOWPSecurity_Admin_Menu
150
  </p>';
151
  ?>
152
  </div>
 
 
 
 
 
 
 
 
 
 
153
 
154
  <div class="postbox">
155
  <h3 class="hndle"><label for="title"><?php _e('IP Hosts and User Agent Blacklist Settings', 'all-in-one-wp-security-and-firewall'); ?></label></h3>
26
  function get_current_tab()
27
  {
28
  $tab_keys = array_keys($this->menu_tabs);
29
+ $tab = isset( $_GET['tab'] ) ? sanitize_text_field($_GET['tab']) : $tab_keys[0];
30
  return $tab;
31
  }
32
 
150
  </p>';
151
  ?>
152
  </div>
153
+ <div class="aio_grey_box">
154
+ <?php
155
+ $addon_link = '<strong><a href="http://www.site-scanners.com/country-blocking-addon/" target="_blank">Country Blocking Addon</a></strong>';
156
+ $info_msg = sprintf( __('You may also be interested in our %s.', 'all-in-one-wp-security-and-firewall'), $addon_link);
157
+ $info_msg2 = __('This addon allows you to automatically block IP addresses based on their country of origin.', 'all-in-one-wp-security-and-firewall');
158
+
159
+ echo '<p>'.$info_msg.
160
+ '<br />'.$info_msg2.'</p>';
161
+ ?>
162
+ </div>
163
 
164
  <div class="postbox">
165
  <h3 class="hndle"><label for="title"><?php _e('IP Hosts and User Agent Blacklist Settings', 'all-in-one-wp-security-and-firewall'); ?></label></h3>
admin/wp-security-brute-force-menu.php CHANGED
@@ -35,7 +35,7 @@ class AIOWPSecurity_Brute_Force_Menu extends AIOWPSecurity_Admin_Menu
35
  function get_current_tab()
36
  {
37
  $tab_keys = array_keys($this->menu_tabs);
38
- $tab = isset( $_GET['tab'] ) ? $_GET['tab'] : $tab_keys[0];
39
  return $tab;
40
  }
41
 
@@ -49,8 +49,9 @@ class AIOWPSecurity_Brute_Force_Menu extends AIOWPSecurity_Admin_Menu
49
  echo '<h2 class="nav-tab-wrapper">';
50
  foreach ( $this->menu_tabs as $tab_key => $tab_caption )
51
  {
52
- if (AIOWPSecurity_Utility::is_multisite_install() && get_current_blog_id() != 1 && stristr($tab_caption, "Rename Login Page") === false){
53
- //Suppress the all Brute Force menu tabs except rename login if site is a multi site AND not the main site
 
54
  }else{
55
  $active = $current_tab == $tab_key ? 'nav-tab-active' : '';
56
  echo '<a class="nav-tab ' . $active . '" href="?page=' . $this->menu_page_slug . '&tab=' . $tab_key . '">' . $tab_caption . '</a>';
@@ -179,6 +180,11 @@ class AIOWPSecurity_Brute_Force_Menu extends AIOWPSecurity_Admin_Menu
179
 
180
  <form action="" method="POST">
181
  <?php wp_nonce_field('aiowpsec-rename-login-page-nonce'); ?>
 
 
 
 
 
182
  <table class="form-table">
183
  <tr valign="top">
184
  <th scope="row"><?php _e('Enable Rename Login Page Feature', 'all-in-one-wp-security-and-firewall')?>:</th>
@@ -310,7 +316,7 @@ class AIOWPSecurity_Brute_Force_Menu extends AIOWPSecurity_Admin_Menu
310
  <div class="aio_yellow_box">
311
  <?php
312
  $backup_tab_link = '<a href="admin.php?page='.AIOWPSEC_SETTINGS_MENU_SLUG.'&tab=tab2" target="_blank">backup</a>';
313
- $video_link = '<a href="http://www.tipsandtricks-hq.com/all-in-one-wp-security-plugin-cookie-based-brute-force-login-attack-prevention-feature-5994" target="_blank">video tutorial</a>';
314
  $info_msg = sprintf( __('Even though this feature should not have any impact on your site\'s general functionality <strong>you are strongly encouraged to take a %s of your .htaccess file before proceeding</strong>.', 'all-in-one-wp-security-and-firewall'), $backup_tab_link);
315
  $info_msg1 = __('If this feature is not used correctly, you can get locked out of your site. A backed up .htaccess file will come in handy if that happens.', 'all-in-one-wp-security-and-firewall');
316
  $info_msg2 = sprintf( __('To learn more about how to use this feature please watch the following %s.', 'all-in-one-wp-security-and-firewall'), $video_link);
@@ -342,7 +348,12 @@ class AIOWPSecurity_Brute_Force_Menu extends AIOWPSecurity_Admin_Menu
342
  $aiowps_feature_mgr->output_feature_details_badge("firewall-enable-brute-force-attack-prevention");
343
  ?>
344
  <form action="" method="POST">
345
- <?php wp_nonce_field('aiowpsec-enable-cookie-based-brute-force-prevention'); ?>
 
 
 
 
 
346
  <table class="form-table">
347
  <tr valign="top">
348
  <th scope="row"><?php _e('Enable Brute Force Attack Prevention', 'all-in-one-wp-security-and-firewall')?>:</th>
35
  function get_current_tab()
36
  {
37
  $tab_keys = array_keys($this->menu_tabs);
38
+ $tab = isset( $_GET['tab'] ) ? sanitize_text_field($_GET['tab']) : $tab_keys[0];
39
  return $tab;
40
  }
41
 
49
  echo '<h2 class="nav-tab-wrapper">';
50
  foreach ( $this->menu_tabs as $tab_key => $tab_caption )
51
  {
52
+ if (AIOWPSecurity_Utility::is_multisite_install() && get_current_blog_id() != 1
53
+ && stristr($tab_caption, "Rename Login Page") === false && stristr($tab_caption, "Login Captcha") === false){
54
+ //Suppress the all Brute Force menu tabs if site is a multi site AND not the main site except "rename login" and "captcha"
55
  }else{
56
  $active = $current_tab == $tab_key ? 'nav-tab-active' : '';
57
  echo '<a class="nav-tab ' . $active . '" href="?page=' . $this->menu_page_slug . '&tab=' . $tab_key . '">' . $tab_caption . '</a>';
180
 
181
  <form action="" method="POST">
182
  <?php wp_nonce_field('aiowpsec-rename-login-page-nonce'); ?>
183
+ <div class="aio_orange_box">
184
+ <p>
185
+ <?php _e('This feature can lock you out of admin if it doesn\'t work correctly on your site. You <a href="https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin#advanced_features_note" target="_blank">must read this message</a> before activating this feature.', 'all-in-one-wp-security-and-firewall'); ?>
186
+ </p>
187
+ </div>
188
  <table class="form-table">
189
  <tr valign="top">
190
  <th scope="row"><?php _e('Enable Rename Login Page Feature', 'all-in-one-wp-security-and-firewall')?>:</th>
316
  <div class="aio_yellow_box">
317
  <?php
318
  $backup_tab_link = '<a href="admin.php?page='.AIOWPSEC_SETTINGS_MENU_SLUG.'&tab=tab2" target="_blank">backup</a>';
319
+ $video_link = '<a href="https://www.tipsandtricks-hq.com/all-in-one-wp-security-plugin-cookie-based-brute-force-login-attack-prevention-feature-5994" target="_blank">video tutorial</a>';
320
  $info_msg = sprintf( __('Even though this feature should not have any impact on your site\'s general functionality <strong>you are strongly encouraged to take a %s of your .htaccess file before proceeding</strong>.', 'all-in-one-wp-security-and-firewall'), $backup_tab_link);
321
  $info_msg1 = __('If this feature is not used correctly, you can get locked out of your site. A backed up .htaccess file will come in handy if that happens.', 'all-in-one-wp-security-and-firewall');
322
  $info_msg2 = sprintf( __('To learn more about how to use this feature please watch the following %s.', 'all-in-one-wp-security-and-firewall'), $video_link);
348
  $aiowps_feature_mgr->output_feature_details_badge("firewall-enable-brute-force-attack-prevention");
349
  ?>
350
  <form action="" method="POST">
351
+ <?php wp_nonce_field('aiowpsec-enable-cookie-based-brute-force-prevention'); ?>
352
+ <div class="aio_orange_box">
353
+ <p>
354
+ <?php _e('This feature can lock you out of admin if it doesn\'t work correctly on your site. You <a href="https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin#advanced_features_note" target="_blank">must read this message</a> before activating this feature.', 'all-in-one-wp-security-and-firewall'); ?>
355
+ </p>
356
+ </div>
357
  <table class="form-table">
358
  <tr valign="top">
359
  <th scope="row"><?php _e('Enable Brute Force Attack Prevention', 'all-in-one-wp-security-and-firewall')?>:</th>
admin/wp-security-dashboard-menu.php CHANGED
@@ -33,7 +33,7 @@ class AIOWPSecurity_Dashboard_Menu extends AIOWPSecurity_Admin_Menu
33
  function get_current_tab()
34
  {
35
  $tab_keys = array_keys($this->menu_tabs);
36
- $tab = isset($_GET['tab']) ? $_GET['tab'] : $tab_keys[0];
37
  return $tab;
38
  }
39
 
33
  function get_current_tab()
34
  {
35
  $tab_keys = array_keys($this->menu_tabs);
36
+ $tab = isset($_GET['tab']) ? sanitize_text_field($_GET['tab']) : $tab_keys[0];
37
  return $tab;
38
  }
39
 
admin/wp-security-database-menu.php CHANGED
@@ -37,7 +37,7 @@ class AIOWPSecurity_Database_Menu extends AIOWPSecurity_Admin_Menu
37
  function get_current_tab()
38
  {
39
  $tab_keys = array_keys($this->menu_tabs);
40
- $tab = isset( $_GET['tab'] ) ? $_GET['tab'] : $tab_keys[0];
41
  return $tab;
42
  }
43
 
@@ -118,11 +118,12 @@ class AIOWPSecurity_Database_Menu extends AIOWPSecurity_Admin_Menu
118
  {
119
  //User has chosen their own DB prefix value
120
  $new_db_prefix = wp_strip_all_tags( trim( $_POST['aiowps_new_manual_db_prefix'] ) );
121
- $error = $wpdb->set_prefix( $new_db_prefix );
122
  if(is_wp_error($error))
123
  {
124
  wp_die( __('<strong>ERROR</strong>: The table prefix can only contain numbers, letters, and underscores.', 'all-in-one-wp-security-and-firewall') );
125
  }
 
126
  $perform_db_change = true;
127
  }
128
  }
37
  function get_current_tab()
38
  {
39
  $tab_keys = array_keys($this->menu_tabs);
40
+ $tab = isset( $_GET['tab'] ) ? sanitize_text_field($_GET['tab']) : $tab_keys[0];
41
  return $tab;
42
  }
43
 
118
  {
119
  //User has chosen their own DB prefix value
120
  $new_db_prefix = wp_strip_all_tags( trim( $_POST['aiowps_new_manual_db_prefix'] ) );
121
+ $error = $wpdb->set_prefix( $new_db_prefix ); //validate the user chosen prefix
122
  if(is_wp_error($error))
123
  {
124
  wp_die( __('<strong>ERROR</strong>: The table prefix can only contain numbers, letters, and underscores.', 'all-in-one-wp-security-and-firewall') );
125
  }
126
+ $wpdb->set_prefix( $old_db_prefix );
127
  $perform_db_change = true;
128
  }
129
  }
admin/wp-security-filescan-menu.php CHANGED
@@ -30,7 +30,7 @@ class AIOWPSecurity_Filescan_Menu extends AIOWPSecurity_Admin_Menu
30
  function get_current_tab()
31
  {
32
  $tab_keys = array_keys($this->menu_tabs);
33
- $tab = isset( $_GET['tab'] ) ? $_GET['tab'] : $tab_keys[0];
34
  return $tab;
35
  }
36
 
30
  function get_current_tab()
31
  {
32
  $tab_keys = array_keys($this->menu_tabs);
33
+ $tab = isset( $_GET['tab'] ) ? sanitize_text_field($_GET['tab']) : $tab_keys[0];
34
  return $tab;
35
  }
36
 
admin/wp-security-filesystem-menu.php CHANGED
@@ -33,7 +33,7 @@ class AIOWPSecurity_Filesystem_Menu extends AIOWPSecurity_Admin_Menu
33
  function get_current_tab()
34
  {
35
  $tab_keys = array_keys($this->menu_tabs);
36
- $tab = isset( $_GET['tab'] ) ? $_GET['tab'] : $tab_keys[0];
37
  return $tab;
38
  }
39
 
33
  function get_current_tab()
34
  {
35
  $tab_keys = array_keys($this->menu_tabs);
36
+ $tab = isset( $_GET['tab'] ) ? sanitize_text_field($_GET['tab']) : $tab_keys[0];
37
  return $tab;
38
  }
39
 
admin/wp-security-firewall-menu.php CHANGED
@@ -38,7 +38,7 @@ class AIOWPSecurity_Firewall_Menu extends AIOWPSecurity_Admin_Menu
38
  function get_current_tab()
39
  {
40
  $tab_keys = array_keys($this->menu_tabs);
41
- $tab = isset( $_GET['tab'] ) ? $_GET['tab'] : $tab_keys[0];
42
  return $tab;
43
  }
44
 
@@ -997,8 +997,10 @@ class AIOWPSecurity_Firewall_Menu extends AIOWPSecurity_Admin_Menu
997
  {
998
  if (!empty($_POST['aiowps_custom_rules']))
999
  {
1000
- $custom_rules = $_POST['aiowps_custom_rules'];
1001
-
 
 
1002
  }
1003
  else
1004
  {
38
  function get_current_tab()
39
  {
40
  $tab_keys = array_keys($this->menu_tabs);
41
+ $tab = isset( $_GET['tab'] ) ? sanitize_text_field($_GET['tab']) : $tab_keys[0];
42
  return $tab;
43
  }
44
 
997
  {
998
  if (!empty($_POST['aiowps_custom_rules']))
999
  {
1000
+ // Undo magic quotes that are automatically added to `$_GET`,
1001
+ // `$_POST`, `$_COOKIE`, and `$_SERVER` by WordPress as
1002
+ // they corrupt any custom rule with backslash in it...
1003
+ $custom_rules = stripslashes($_POST['aiowps_custom_rules']);
1004
  }
1005
  else
1006
  {
admin/wp-security-list-registered-users.php CHANGED
@@ -24,11 +24,16 @@ class AIOWPSecurity_List_Registered_Users extends AIOWPSecurity_List_Table {
24
  //Add nonce to delete URL
25
  $delete_url_nonce = wp_nonce_url($delete_url, "delete_user_acct", "aiowps_nonce");
26
 
 
 
 
 
27
  //Build row actions
28
  $actions = array(
29
  'view' => sprintf('<a href="user-edit.php?user_id=%s" target="_blank">View</a>',$item['ID']),
30
  'approve_acct' => sprintf('<a href="admin.php?page=%s&action=%s&user_id=%s" onclick="return confirm(\'Are you sure you want to approve this account?\')">Approve</a>',AIOWPSEC_USER_REGISTRATION_MENU_SLUG,'approve_acct',$item['ID']),
31
  'delete_acct' => '<a href="'.$delete_url_nonce.'" onclick="return confirm(\'Are you sure you want to delete this account?\')">Delete</a>',
 
32
  );
33
 
34
  //Return the user_login contents
@@ -38,7 +43,14 @@ class AIOWPSecurity_List_Registered_Users extends AIOWPSecurity_List_Table {
38
  );
39
  }
40
 
41
-
 
 
 
 
 
 
 
42
  function column_cb($item){
43
  return sprintf(
44
  '<input type="checkbox" name="%1$s[]" value="%2$s" />',
@@ -55,7 +67,8 @@ class AIOWPSecurity_List_Registered_Users extends AIOWPSecurity_List_Table {
55
  'user_login' => 'Login Name',
56
  'user_email' => 'Email',
57
  'user_registered' => 'Register Date',
58
- 'account_status' => 'Account Status'
 
59
  );
60
  return $columns;
61
  }
@@ -74,7 +87,8 @@ class AIOWPSecurity_List_Registered_Users extends AIOWPSecurity_List_Table {
74
  function get_bulk_actions() {
75
  $actions = array(
76
  'approve' => 'Approve',
77
- 'delete' => 'Delete'
 
78
  );
79
  return $actions;
80
  }
@@ -102,6 +116,17 @@ class AIOWPSecurity_List_Registered_Users extends AIOWPSecurity_List_Table {
102
  }
103
  }
104
 
 
 
 
 
 
 
 
 
 
 
 
105
  }
106
 
107
  function approve_selected_accounts($entries)
@@ -216,7 +241,52 @@ class AIOWPSecurity_List_Registered_Users extends AIOWPSecurity_List_Table {
216
  }
217
  }
218
  }
219
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
220
  function prepare_items() {
221
  //First, lets decide how many records per page to show
222
  $per_page = 20;
@@ -254,6 +324,8 @@ class AIOWPSecurity_List_Registered_Users extends AIOWPSecurity_List_Table {
254
  {
255
  $temp_array = get_object_vars($user); //Turn the object into array
256
  $temp_array['account_status'] = get_user_meta($temp_array['ID'], 'aiowps_account_status', true);
 
 
257
  $final_data[] = $temp_array;
258
  }
259
  return $final_data;
24
  //Add nonce to delete URL
25
  $delete_url_nonce = wp_nonce_url($delete_url, "delete_user_acct", "aiowps_nonce");
26
 
27
+ $block_ip = sprintf('admin.php?page=%s&action=%s&ip_address=%s', AIOWPSEC_USER_REGISTRATION_MENU_SLUG, 'block_ip', $item['ip_address']);
28
+ //Add nonce to block IP
29
+ $block_ip_nonce = wp_nonce_url($block_ip, "block_ip", "aiowps_nonce");
30
+
31
  //Build row actions
32
  $actions = array(
33
  'view' => sprintf('<a href="user-edit.php?user_id=%s" target="_blank">View</a>',$item['ID']),
34
  'approve_acct' => sprintf('<a href="admin.php?page=%s&action=%s&user_id=%s" onclick="return confirm(\'Are you sure you want to approve this account?\')">Approve</a>',AIOWPSEC_USER_REGISTRATION_MENU_SLUG,'approve_acct',$item['ID']),
35
  'delete_acct' => '<a href="'.$delete_url_nonce.'" onclick="return confirm(\'Are you sure you want to delete this account?\')">Delete</a>',
36
+ 'block_ip' => '<a href="'.$block_ip_nonce.'" onclick="return confirm(\'Are you sure you want to block this IP address?\')">Block IP</a>',
37
  );
38
 
39
  //Return the user_login contents
43
  );
44
  }
45
 
46
+ function column_ip_address($item){
47
+ if (AIOWPSecurity_Blocking::is_ip_blocked($item['ip_address'])){
48
+ return $item['ip_address'].'<br /><span class="aiowps-label aiowps-label-success">'.__('blocked','WPS').'</span>';
49
+ } else{
50
+ return $item['ip_address'];
51
+ }
52
+ }
53
+
54
  function column_cb($item){
55
  return sprintf(
56
  '<input type="checkbox" name="%1$s[]" value="%2$s" />',
67
  'user_login' => 'Login Name',
68
  'user_email' => 'Email',
69
  'user_registered' => 'Register Date',
70
+ 'account_status' => 'Account Status',
71
+ 'ip_address' => 'IP Address'
72
  );
73
  return $columns;
74
  }
87
  function get_bulk_actions() {
88
  $actions = array(
89
  'approve' => 'Approve',
90
+ 'delete' => 'Delete',
91
+ 'block' => 'Block IP'
92
  );
93
  return $actions;
94
  }
116
  }
117
  }
118
 
119
+ if('block'===$this->current_action())
120
+ {//Process block bulk actions
121
+ if(!isset($_REQUEST['item']))
122
+ {
123
+ AIOWPSecurity_Admin_Menu::show_msg_error_st(__('Please select some records using the checkboxes','all-in-one-wp-security-and-firewall'));
124
+ }else
125
+ {
126
+ $this->block_selected_ips(($_REQUEST['item']));
127
+ }
128
+ }
129
+
130
  }
131
 
132
  function approve_selected_accounts($entries)
241
  }
242
  }
243
  }
244
+
245
+ function block_selected_ips($entries)
246
+ {
247
+ global $wpdb, $aio_wp_security;
248
+ if (is_array($entries))
249
+ {
250
+ if (isset($_REQUEST['_wp_http_referer']))
251
+ {
252
+ //Let's go through each entry and block IP
253
+ foreach($entries as $id)
254
+ {
255
+ $ip_address = get_user_meta($id, 'aiowps_registrant_ip', true);
256
+ $result = AIOWPSecurity_Blocking::add_ip_to_block_list($ip_address, 'registration_spam');
257
+ if($result === false)
258
+ {
259
+ $aio_wp_security->debug_logger->log_debug("AIOWPSecurity_List_Registered_Users::block_selected_ips() - could not block IP : $ip_address",4);
260
+ }
261
+ }
262
+ $msg = __('The selected IP addresses were successfully added to the permanent block list!','all-in-one-wp-security-and-firewall');
263
+ $msg .= ' <a href="admin.php?page='.AIOWPSEC_MAIN_MENU_SLUG.'&tab=tab4" target="_blank">'.__('View Blocked IPs','all-in-one-wp-security-and-firewall').'</a>';
264
+ AIOWPSecurity_Admin_Menu::show_msg_updated_st($msg);
265
+ }
266
+ } elseif ($entries != NULL)
267
+ {
268
+ $nonce=isset($_GET['aiowps_nonce'])?$_GET['aiowps_nonce']:'';
269
+ if (!isset($nonce) ||!wp_verify_nonce($nonce, 'block_ip'))
270
+ {
271
+ $aio_wp_security->debug_logger->log_debug("Nonce check failed for block IP operation of registered user!",4);
272
+ die(__('Nonce check failed for block IP operation of registered user!','all-in-one-wp-security-and-firewall'));
273
+ }
274
+
275
+ //Block single IP
276
+ $result = AIOWPSecurity_Blocking::add_ip_to_block_list($entries, 'registration_spam');
277
+ if($result === true)
278
+ {
279
+ $msg = __('The selected IP was successfully added to the permanent block list!','all-in-one-wp-security-and-firewall');
280
+ $msg .= ' <a href="admin.php?page='.AIOWPSEC_MAIN_MENU_SLUG.'&tab=tab4" target="_blank">'.__('View Blocked IPs','all-in-one-wp-security-and-firewall').'</a>';
281
+ AIOWPSecurity_Admin_Menu::show_msg_updated_st($msg);
282
+ }
283
+ else
284
+ {
285
+ $aio_wp_security->debug_logger->log_debug("AIOWPSecurity_List_Registered_Users::block_selected_ips() - could not block IP: $entries",4);
286
+ }
287
+ }
288
+ }
289
+
290
  function prepare_items() {
291
  //First, lets decide how many records per page to show
292
  $per_page = 20;
324
  {
325
  $temp_array = get_object_vars($user); //Turn the object into array
326
  $temp_array['account_status'] = get_user_meta($temp_array['ID'], 'aiowps_account_status', true);
327
+ $ip = get_user_meta($temp_array['ID'], 'aiowps_registrant_ip', true);
328
+ $temp_array['ip_address'] = empty($ip)?'':$ip;
329
  $final_data[] = $temp_array;
330
  }
331
  return $final_data;
admin/wp-security-maintenance-menu.php CHANGED
@@ -26,7 +26,7 @@ class AIOWPSecurity_Maintenance_Menu extends AIOWPSecurity_Admin_Menu
26
  function get_current_tab()
27
  {
28
  $tab_keys = array_keys($this->menu_tabs);
29
- $tab = isset( $_GET['tab'] ) ? $_GET['tab'] : $tab_keys[0];
30
  return $tab;
31
  }
32
 
26
  function get_current_tab()
27
  {
28
  $tab_keys = array_keys($this->menu_tabs);
29
+ $tab = isset( $_GET['tab'] ) ? sanitize_text_field($_GET['tab']) : $tab_keys[0];
30
  return $tab;
31
  }
32
 
admin/wp-security-misc-options-menu.php CHANGED
@@ -30,7 +30,7 @@ class AIOWPSecurity_Misc_Options_Menu extends AIOWPSecurity_Admin_Menu
30
  function get_current_tab()
31
  {
32
  $tab_keys = array_keys($this->menu_tabs);
33
- $tab = isset( $_GET['tab'] ) ? $_GET['tab'] : $tab_keys[0];
34
  return $tab;
35
  }
36
 
30
  function get_current_tab()
31
  {
32
  $tab_keys = array_keys($this->menu_tabs);
33
+ $tab = isset( $_GET['tab'] ) ? sanitize_text_field($_GET['tab']) : $tab_keys[0];
34
  return $tab;
35
  }
36
 
admin/wp-security-settings-menu.php CHANGED
@@ -34,7 +34,7 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
34
  function get_current_tab()
35
  {
36
  $tab_keys = array_keys($this->menu_tabs);
37
- $tab = isset( $_GET['tab'] ) ? $_GET['tab'] : $tab_keys[0];
38
  return $tab;
39
  }
40
 
34
  function get_current_tab()
35
  {
36
  $tab_keys = array_keys($this->menu_tabs);
37
+ $tab = isset( $_GET['tab'] ) ? sanitize_text_field($_GET['tab']) : $tab_keys[0];
38
  return $tab;
39
  }
40
 
admin/wp-security-spam-menu.php CHANGED
@@ -30,7 +30,7 @@ class AIOWPSecurity_Spam_Menu extends AIOWPSecurity_Admin_Menu
30
  function get_current_tab()
31
  {
32
  $tab_keys = array_keys($this->menu_tabs);
33
- $tab = isset( $_GET['tab'] ) ? $_GET['tab'] : $tab_keys[0];
34
  return $tab;
35
  }
36
 
30
  function get_current_tab()
31
  {
32
  $tab_keys = array_keys($this->menu_tabs);
33
+ $tab = isset( $_GET['tab'] ) ? sanitize_text_field($_GET['tab']) : $tab_keys[0];
34
  return $tab;
35
  }
36
 
admin/wp-security-user-accounts-menu.php CHANGED
@@ -35,7 +35,7 @@ class AIOWPSecurity_User_Accounts_Menu extends AIOWPSecurity_Admin_Menu
35
  function get_current_tab()
36
  {
37
  $tab_keys = array_keys($this->menu_tabs);
38
- $tab = isset( $_GET['tab'] ) ? $_GET['tab'] : $tab_keys[0];
39
  return $tab;
40
  }
41
 
35
  function get_current_tab()
36
  {
37
  $tab_keys = array_keys($this->menu_tabs);
38
+ $tab = isset( $_GET['tab'] ) ? sanitize_text_field($_GET['tab']) : $tab_keys[0];
39
  return $tab;
40
  }
41
 
admin/wp-security-user-login-menu.php CHANGED
@@ -33,7 +33,7 @@ class AIOWPSecurity_User_Login_Menu extends AIOWPSecurity_Admin_Menu
33
  function get_current_tab()
34
  {
35
  $tab_keys = array_keys($this->menu_tabs);
36
- $tab = isset( $_GET['tab'] ) ? $_GET['tab'] : $tab_keys[0];
37
  return $tab;
38
  }
39
 
33
  function get_current_tab()
34
  {
35
  $tab_keys = array_keys($this->menu_tabs);
36
+ $tab = isset( $_GET['tab'] ) ? sanitize_text_field($_GET['tab']) : $tab_keys[0];
37
  return $tab;
38
  }
39
 
admin/wp-security-user-registration-menu.php CHANGED
@@ -28,7 +28,7 @@ class AIOWPSecurity_User_Registration_Menu extends AIOWPSecurity_Admin_Menu
28
  function get_current_tab()
29
  {
30
  $tab_keys = array_keys($this->menu_tabs);
31
- $tab = isset( $_GET['tab'] ) ? $_GET['tab'] : $tab_keys[0];
32
  return $tab;
33
  }
34
 
@@ -99,13 +99,17 @@ class AIOWPSecurity_User_Registration_Menu extends AIOWPSecurity_Admin_Menu
99
 
100
  if(isset($_REQUEST['action'])) //Do list table form row action tasks
101
  {
102
- if($_REQUEST['action'] == 'approve_acct'){ //Delete link was clicked for a row in list table
103
  $user_list->approve_selected_accounts(strip_tags($_REQUEST['user_id']));
104
  }
105
 
106
- if($_REQUEST['action'] == 'delete_acct'){ //Unlock link was clicked for a row in list table
107
  $user_list->delete_selected_accounts(strip_tags($_REQUEST['user_id']));
108
  }
 
 
 
 
109
  }
110
 
111
 
28
  function get_current_tab()
29
  {
30
  $tab_keys = array_keys($this->menu_tabs);
31
+ $tab = isset( $_GET['tab'] ) ? sanitize_text_field($_GET['tab']) : $tab_keys[0];
32
  return $tab;
33
  }
34
 
99
 
100
  if(isset($_REQUEST['action'])) //Do list table form row action tasks
101
  {
102
+ if($_REQUEST['action'] == 'approve_acct'){ //Approve link was clicked for a row in list table
103
  $user_list->approve_selected_accounts(strip_tags($_REQUEST['user_id']));
104
  }
105
 
106
+ if($_REQUEST['action'] == 'delete_acct'){ //Delete link was clicked for a row in list table
107
  $user_list->delete_selected_accounts(strip_tags($_REQUEST['user_id']));
108
  }
109
+
110
+ if($_REQUEST['action'] == 'block_ip'){ //Block IP link was clicked for a row in list table
111
+ $user_list->block_selected_ips(strip_tags($_REQUEST['ip_address']));
112
+ }
113
  }
114
 
115
 
admin/wp-security-whois-menu.php CHANGED
@@ -26,7 +26,7 @@ class AIOWPSecurity_WhoIs_Menu extends AIOWPSecurity_Admin_Menu
26
  function get_current_tab()
27
  {
28
  $tab_keys = array_keys($this->menu_tabs);
29
- $tab = isset( $_GET['tab'] ) ? $_GET['tab'] : $tab_keys[0];
30
  return $tab;
31
  }
32
 
26
  function get_current_tab()
27
  {
28
  $tab_keys = array_keys($this->menu_tabs);
29
+ $tab = isset( $_GET['tab'] ) ? sanitize_text_field($_GET['tab']) : $tab_keys[0];
30
  return $tab;
31
  }
32
 
classes/wp-security-user-registration.php CHANGED
@@ -27,6 +27,12 @@ class AIOWPSecurity_User_Registration
27
  if (!$res){
28
  $aio_wp_security->debug_logger->log_debug("aiowps_user_registration_action_handler: Error adding user meta data: aiowps_account_status",4);
29
  }
 
 
 
 
 
 
30
  }
31
  }
32
 
27
  if (!$res){
28
  $aio_wp_security->debug_logger->log_debug("aiowps_user_registration_action_handler: Error adding user meta data: aiowps_account_status",4);
29
  }
30
+ $user_ip_address = AIOWPSecurity_Utility_IP::get_user_ip_address();
31
+ $res = add_user_meta($user_id, 'aiowps_registrant_ip', $user_ip_address);
32
+ if (!$res){
33
+ $aio_wp_security->debug_logger->log_debug("aiowps_user_registration_action_handler: Error adding user meta data: aiowps_registrant_ip",4);
34
+ }
35
+
36
  }
37
  }
38
 
css/wp-security-admin-styles.css CHANGED
@@ -73,7 +73,7 @@
73
  border-radius: 3px 3px 3px 3px;
74
  border-style: solid;
75
  border-width: 1px;
76
- padding: 0 0 0 1em;
77
  }
78
 
79
 
@@ -364,6 +364,36 @@
364
  color: darkorange;
365
  }
366
 
 
367
  .aiowps_dashboard_table{
368
  table-layout: fixed;
369
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  border-radius: 3px 3px 3px 3px;
74
  border-style: solid;
75
  border-width: 1px;
76
+ padding: 0 1em 0 1em;
77
  }
78
 
79
 
364
  color: darkorange;
365
  }
366
 
367
+ /* bootstrap type labels */
368
  .aiowps_dashboard_table{
369
  table-layout: fixed;
370
+ }
371
+
372
+ .aiowps-label-danger {
373
+ background-color: #d9534f;
374
+ }
375
+
376
+ .aiowps-label-warning {
377
+ background-color: #f0ad4e;
378
+ }
379
+
380
+ .aiowps-label-primary {
381
+ background-color: #337ab7;
382
+ }
383
+
384
+ .aiowps-label-success {
385
+ background-color: #5cb85c;
386
+ }
387
+
388
+ .aiowps-label {
389
+ border-radius: 0.25em;
390
+ color: #fff;
391
+ display: inline;
392
+ font-size: 75%;
393
+ font-weight: 700;
394
+ line-height: 1;
395
+ padding: 0.2em 0.6em 0.3em;
396
+ text-align: center;
397
+ vertical-align: baseline;
398
+ white-space: nowrap;
399
+ }
languages/all-in-one-wp-security-and-firewall-pt_BR.mo CHANGED
Binary file
languages/all-in-one-wp-security-and-firewall-pt_BR.po CHANGED
@@ -1,3561 +1,4711 @@
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-08-19 12:18-0300\n"
6
- "Last-Translator: Sms Lbr <smslbr@gmail.com>\n"
7
- "Language-Team: Li9 <suporte@li9.com.br>\n"
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 1.6.7\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
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 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 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 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 "Verificador"
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 "Salvar Configurações"
235
 
236
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:23
237
- msgid "System Info"
238
- msgstr "System Info"
 
 
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 "Avaliação atual do seu Website"
273
 
274
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:129
275
- msgid "Security Points Breakdown"
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 "Usuário Administrativo"
291
 
292
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:193
293
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:27
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 "Usuários Logados"
328
 
329
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:301
330
- msgid "Number of users currently logged in site-wide is:"
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 " para o %s menu para ver mais detalhes"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
338
 
339
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:307
340
- msgid "There are no other site-wide users currently logged in."
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 "O número de usuários logados em seu website é:"
346
 
347
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:329
348
- msgid "There are no other users currently logged in."
349
- msgstr "Não outros usuários atualmente logados."
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 "Informações Website"
 
364
 
365
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:369
366
- msgid "Plugin Version"
367
- msgstr "Versão do Plugin"
368
 
369
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:370
370
- msgid "WP Version"
371
- msgstr "Versão WP"
372
 
373
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:372
374
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:374
375
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:395
376
- msgid "Version"
377
- msgstr "Versão"
378
 
379
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:373
380
- msgid "Table Prefix"
381
- msgstr "Prefixo Tabela"
382
 
383
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:375
384
- msgid "Session Save Path"
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 "Plugins Ativos"
406
 
407
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:394
408
- #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:130
409
- #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:149
410
- msgid "Name"
411
- msgstr "Nome"
412
 
413
- #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:396
414
- msgid "Plugin URL"
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 "Alterar o Prefixo do Banco de Dados"
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 "OU"
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 "Alterar Prefixo B"
521
 
522
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:198
523
- #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:86
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 "Atenção!"
570
 
571
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:289
572
- msgid "Manual Backup"
573
- msgstr "Backup Manual"
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 "Criar Agora um Backup do DB"
582
 
583
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:302
584
- msgid "Automated Scheduled Backups"
585
- msgstr ""
586
 
587
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:314
588
- msgid "Enable Automated Scheduled Backups"
589
- msgstr "Permitir Agendar Backups Automáticos"
590
 
591
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:317
592
- msgid ""
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 "Intervalo do Tempo de Backup"
600
 
601
- #: all-in-one-wp-security/admin/wp-security-database-menu.php:324
602
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:259
603
- msgid "Hours"
604
- msgstr "Horas"
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 "Dias"
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 "Semanas"
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 "Enviar Arquivo Backup via Email"
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 "Digite um endereço de email"
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 "Detecção de Substituição de Arquivo"
 
 
 
 
 
 
 
 
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 "Veja os Detalhes da Verificação & Apague esta Mensagem"
756
 
757
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:215
758
- msgid ""
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 "Efetue uma Verificação Agora"
804
 
805
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:237
 
 
 
 
 
 
 
 
 
 
 
 
806
  msgid "File Change Detection Settings"
807
- msgstr "Configuração para Detecção de Arquivos Alterados"
808
 
809
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:249
810
  msgid "Enable Automated File Change Detection Scan"
811
- msgstr "Permitir Detecção Automática de Arquivos Alterados"
812
 
813
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:252
814
- msgid ""
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 "Intervalo de Tempo para a Verificação"
822
 
823
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:263
824
  msgid "Set the value for how often you would like a scan to occur"
825
- msgstr ""
826
 
827
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:267
828
  msgid "File Types To Ignore"
829
- msgstr "Tipos de Arquivo para Ignorar"
830
 
831
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:270
832
- msgid ""
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 "Arquivos/Diretórios para Ignorar"
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 "Os seguintes arquivos foram adicionados para o seu host."
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 "Arquivo"
917
 
918
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:348
919
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:369
920
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:393
921
  msgid "File Size"
922
- msgstr "Tamanho Arquivo"
923
 
924
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:349
925
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:370
926
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:394
927
  msgid "File Modified"
928
- msgstr "Arquivo Modificado"
929
 
930
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:365
931
  msgid "The following files were removed from your host."
932
  msgstr "Os seguintes arquivos foram removidos do seu provedor."
933
 
934
- #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:389
935
  msgid "The following files were changed on your host."
936
  msgstr "Os seguintes arquivos foram alterados em seu provedor."
937
 
938
- #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:26
939
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:63
940
  msgid "File Permissions"
941
- msgstr "Permissões Arquivos"
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 "Verificação de Permissão de Arquivos"
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 "Permissões Atuais"
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 "Permissões Recomendadas"
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 "Ação Recomendada"
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 "Ação não Necessária"
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 "Salvar Configurações Básicas Firewall"
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 "As faixas de IP selecionadas foram desbloqueadas com sucesso!"
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 "As faixas de IP selecionadas foram desbloqueadas com sucesso!"
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 "Por favor, digite o seu nome de usuário."
2671
 
2672
- #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:304
2673
  msgid "Username Successfully Changed!"
2674
- msgstr "Nome de usuário alterado com Sucesso!"
2675
 
2676
- #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:324
2677
  msgid "Account Login Name"
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 "Forçar Logout"
2699
 
2700
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:32
2701
- #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:653
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 "Usuários Atualmente Logados"
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 "Aprovação Manual"
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 "Captcha ao Registrar"
3086
 
3087
- #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:112
3088
  msgid "User Registration Settings"
3089
- msgstr "Configurações Registro Usuários"
3090
 
3091
- #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:116
3092
  msgid "Manually Approve New Registrations"
3093
- msgstr "Aprovar Manualmente os Novos Registros"
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
- "Se o seu site permite que as pessoas criem suas próprias contas, através do "
3102
- "formulário de inscrição WordPress, então você pode minimizar SPAM ou "
3103
- "registros falsos, aprovando manualmente cada registro."
3104
 
3105
- #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:121
3106
- msgid ""
3107
- "This feature will automatically set a newly registered account to \"pending"
3108
- "\" until the administrator activates it. Therefore undesirable registrants "
3109
- "will be unable to log in without your express approval."
3110
- msgstr ""
3111
- "Este recurso irá definir automaticamente uma conta recém-registrada para "
3112
- "\"pendente\" até que o administrador a ative. Portanto inscritos "
3113
- "indesejáveis ​​não serão capazes de entrar sem a sua autorização expressa."
3114
 
3115
- #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:122
3116
- msgid ""
3117
- "You can view all accounts which have been newly registered via the handy "
3118
- "table below and you can also perform bulk activation/deactivation/deletion "
3119
- "tasks on each account."
3120
- msgstr ""
3121
- "Você pode ver todas as contas que foram recentemente registados através da "
3122
- "tabela prática abaixo e você também pode executar tarefas de ativação em "
3123
- "massa / desativação / exclusão em cada conta."
3124
 
3125
- #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:138
3126
  msgid "Enable manual approval of new registrations"
3127
- msgstr "Permitir Aprovação Manual para Novos Registros"
3128
 
3129
- #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:141
3130
- msgid ""
3131
- "Check this if you want to automatically disable all newly registered "
3132
- "accounts so that you can approve them manually."
3133
- msgstr ""
3134
 
3135
- #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:150
3136
  msgid "Approve Registered Users"
3137
- msgstr "Aprovar Usuários Registrados"
3138
 
3139
- #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:195
3140
- msgid ""
3141
- "This feature allows you to add a captcha form on the WordPress registration "
3142
- "page."
3143
- msgstr ""
3144
 
3145
- #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:196
3146
- msgid ""
3147
- "Users who attempt to register will also need to enter the answer to a simple "
3148
- "mathematical question - if they enter the wrong answer, the plugin will not "
3149
- "allow them to register."
3150
- msgstr ""
3151
 
3152
- #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:197
3153
- msgid ""
3154
- "Therefore, adding a captcha form on the registration page is another "
3155
- "effective yet simple SPAM registration prevention technique."
3156
- msgstr ""
3157
 
3158
- #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:202
3159
  msgid "Registration Page Captcha Settings"
3160
- msgstr ""
3161
 
3162
- #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:214
 
 
 
 
 
 
 
 
3163
  msgid "Enable Captcha On Registration Page"
3164
- msgstr ""
3165
 
3166
- #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:217
3167
- msgid ""
3168
- "Check this if you want to insert a captcha form on the WordPress user "
3169
- "registration page (if you allow user registration)."
3170
- msgstr ""
3171
 
3172
- #: all-in-one-wp-security/admin/wp-security-whois-menu.php:22
3173
  msgid "WhoIS Lookup"
3174
- msgstr ""
3175
 
3176
- #: all-in-one-wp-security/admin/wp-security-whois-menu.php:74
3177
  msgid "WHOIS Lookup Information"
3178
- msgstr ""
3179
 
3180
- #: all-in-one-wp-security/admin/wp-security-whois-menu.php:77
3181
- msgid ""
3182
- "This feature allows you to look up more detailed information about an IP "
3183
- "address or domain name by querying the WHOIS API."
3184
- msgstr ""
3185
 
3186
- #: all-in-one-wp-security/admin/wp-security-whois-menu.php:83
3187
  msgid "Perform a WHOIS Lookup for an IP or Domain Name"
3188
- msgstr ""
3189
 
3190
- #: all-in-one-wp-security/admin/wp-security-whois-menu.php:89
3191
  msgid "Enter IP Address or Domain Name"
3192
- msgstr ""
3193
 
3194
- #: all-in-one-wp-security/admin/wp-security-whois-menu.php:91
3195
- msgid ""
3196
- "Enter an IP address or domain name. Example: 111.11.12.13 OR some-domain-"
3197
- "name.com"
3198
- msgstr ""
3199
 
3200
- #: all-in-one-wp-security/admin/wp-security-whois-menu.php:95
3201
  msgid "Perform IP or Domain Lookup"
3202
- msgstr ""
3203
 
3204
- #: all-in-one-wp-security/admin/wp-security-whois-menu.php:115
3205
  msgid "WHOIS lookup successfully completed. Please see the results below:"
3206
- msgstr ""
3207
 
3208
- #: all-in-one-wp-security/admin/wp-security-whois-menu.php:127
3209
- msgid ""
3210
- "You have entered an incorrectly formatted IP address or domain name. Please "
3211
- "try again."
3212
- msgstr ""
3213
- "Você inseriu a forma incorreta de um endereço IP ou nome do domínio. Por "
3214
- "favor, tente novamente."
3215
 
3216
- #: all-in-one-wp-security/admin/general/wp-security-list-table.php:178
3217
- msgid "No items found."
3218
- msgstr "Itens não encontrados."
3219
 
3220
- #: all-in-one-wp-security/admin/general/wp-security-list-table.php:281
3221
- msgid "Bulk Actions"
3222
- msgstr "Ações em Massa"
3223
 
3224
- #: all-in-one-wp-security/admin/general/wp-security-list-table.php:291
3225
- msgid "Apply"
3226
- msgstr "Ativar"
3227
 
3228
- #: all-in-one-wp-security/admin/general/wp-security-list-table.php:365
3229
- msgid "Show all dates"
3230
- msgstr "Mostrar todas Datas"
3231
 
3232
- #: all-in-one-wp-security/admin/general/wp-security-list-table.php:378
3233
- #, php-format
3234
- msgid "%1$s %2$d"
3235
- msgstr ""
3236
 
3237
- #: all-in-one-wp-security/admin/general/wp-security-list-table.php:394
3238
- msgid "List View"
3239
- msgstr "Ver Lista"
3240
 
3241
- #: all-in-one-wp-security/admin/general/wp-security-list-table.php:395
3242
- msgid "Excerpt View"
3243
- msgstr "Ver Resumo"
3244
 
3245
- #: all-in-one-wp-security/admin/general/wp-security-list-table.php:421
3246
- #, php-format
3247
- msgid "%s pending"
3248
- msgstr "%s pendente"
3249
 
3250
- #: all-in-one-wp-security/admin/general/wp-security-list-table.php:653
3251
- msgid "Select All"
3252
- msgstr "Selecione Tudo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3253
 
3254
- #: all-in-one-wp-security/classes/wp-security-backup.php:177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3255
  msgid "All In One WP Security - Site Database Backup"
3256
- msgstr "All In One WP Security - Backup Banco de Dados do Website"
3257
 
3258
- #: all-in-one-wp-security/classes/wp-security-backup.php:179
3259
  msgid "Attached is your latest DB backup file for site URL"
3260
- msgstr ""
3261
 
3262
- #: all-in-one-wp-security/classes/wp-security-backup.php:179
3263
  msgid " generated on"
3264
- msgstr "gerado em"
3265
 
3266
- #: all-in-one-wp-security/classes/wp-security-captcha.php:12
 
3267
  msgid "Please enter an answer in digits:"
3268
- msgstr "Favor inserir a resposta em dígitos:"
3269
 
3270
- #: all-in-one-wp-security/classes/wp-security-captcha.php:91
3271
  msgid "one"
3272
  msgstr "um"
3273
 
3274
- #: all-in-one-wp-security/classes/wp-security-captcha.php:92
3275
  msgid "two"
3276
  msgstr "dois"
3277
 
3278
- #: all-in-one-wp-security/classes/wp-security-captcha.php:93
3279
  msgid "three"
3280
  msgstr "três"
3281
 
3282
- #: all-in-one-wp-security/classes/wp-security-captcha.php:94
3283
  msgid "four"
3284
  msgstr "quatro"
3285
 
3286
- #: all-in-one-wp-security/classes/wp-security-captcha.php:95
3287
  msgid "five"
3288
  msgstr "cinco"
3289
 
3290
- #: all-in-one-wp-security/classes/wp-security-captcha.php:96
3291
  msgid "six"
3292
  msgstr "seis"
3293
 
3294
- #: all-in-one-wp-security/classes/wp-security-captcha.php:97
3295
  msgid "seven"
3296
  msgstr "sete"
3297
 
3298
- #: all-in-one-wp-security/classes/wp-security-captcha.php:98
3299
  msgid "eight"
3300
  msgstr "oito"
3301
 
3302
- #: all-in-one-wp-security/classes/wp-security-captcha.php:99
3303
  msgid "nine"
3304
  msgstr "nove"
3305
 
3306
- #: all-in-one-wp-security/classes/wp-security-captcha.php:100
3307
  msgid "ten"
3308
  msgstr "dez"
3309
 
3310
- #: all-in-one-wp-security/classes/wp-security-captcha.php:101
3311
  msgid "eleven"
3312
  msgstr "onze"
3313
 
3314
- #: all-in-one-wp-security/classes/wp-security-captcha.php:102
3315
  msgid "twelve"
3316
  msgstr "doze"
3317
 
3318
- #: all-in-one-wp-security/classes/wp-security-captcha.php:103
3319
  msgid "thirteen"
3320
  msgstr "treze"
3321
 
3322
- #: all-in-one-wp-security/classes/wp-security-captcha.php:104
3323
  msgid "fourteen"
3324
  msgstr "catorze"
3325
 
3326
- #: all-in-one-wp-security/classes/wp-security-captcha.php:105
3327
  msgid "fifteen"
3328
  msgstr "quinze"
3329
 
3330
- #: all-in-one-wp-security/classes/wp-security-captcha.php:106
3331
  msgid "sixteen"
3332
  msgstr "dezesseis"
3333
 
3334
- #: all-in-one-wp-security/classes/wp-security-captcha.php:107
3335
  msgid "seventeen"
3336
  msgstr "dezessete"
3337
 
3338
- #: all-in-one-wp-security/classes/wp-security-captcha.php:108
3339
  msgid "eighteen"
3340
  msgstr "dezoito"
3341
 
3342
- #: all-in-one-wp-security/classes/wp-security-captcha.php:109
3343
  msgid "nineteen"
3344
  msgstr "dezenove"
3345
 
3346
- #: all-in-one-wp-security/classes/wp-security-captcha.php:110
3347
  msgid "twenty"
3348
  msgstr "vinte"
3349
 
3350
- #: all-in-one-wp-security/classes/wp-security-file-scan.php:58
3351
  msgid "All In One WP Security - File change detected!"
3352
- msgstr "All In One WP Security - Alteração de Arquivo detectada!"
3353
 
3354
- #: all-in-one-wp-security/classes/wp-security-file-scan.php:60
3355
  msgid "A file change was detected on your system for site URL"
3356
- msgstr "Um arquivo substituido foi detectado em seu sistema do website URL "
3357
 
3358
- #: all-in-one-wp-security/classes/wp-security-file-scan.php:60
3359
  msgid ". Scan was generated on"
3360
  msgstr ". Verificação foi gerada em"
3361
 
3362
- #: all-in-one-wp-security/classes/wp-security-file-scan.php:61
 
 
 
 
3363
  msgid "Login to your site to view the scan details."
3364
  msgstr "Logue-se em seu website para ver os detalhes da verificação."
3365
 
3366
- #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:158
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3367
  msgid "Please enter an answer in the CAPTCHA field."
3368
  msgstr "Por favor, digite uma resposta no campo CAPTCHA."
3369
 
3370
- #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:168
3371
- msgid ""
3372
- "Error: You entered an incorrect CAPTCHA answer. Please go back and try again."
3373
- msgstr ""
3374
- "Erro: Você digitou a resposta CAPTCHA, de forma incorreta. Por favor, volte "
3375
- "e tente NOVAMENTE."
3376
 
3377
- #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:196
3378
- #: all-in-one-wp-security/classes/wp-security-user-login.php:63
3379
- #: all-in-one-wp-security/classes/wp-security-user-login.php:66
3380
- #: all-in-one-wp-security/classes/wp-security-user-registration.php:59
3381
- msgid "<strong>ERROR</strong>: Your answer was incorrect - please try again."
3382
- msgstr ""
3383
- "<strong>ERRO</strong>: A sua resposta está INCORRETA - por favor, tente "
3384
- "novamente."
3385
 
3386
- #: all-in-one-wp-security/classes/wp-security-user-login.php:39
3387
- msgid ""
3388
- "<strong>ERROR</strong>: Login failed because your IP address has been "
3389
- "blocked.\n"
3390
- " Please contact the administrator."
3391
- msgstr ""
3392
- "<strong>ERRO</strong>: O seu LOGIN falhou porque o seu endereço IP foi "
3393
- "bloqueado.\n"
3394
- " Por favor, contate o administrador do "
3395
- "Website."
3396
 
3397
- #: all-in-one-wp-security/classes/wp-security-user-login.php:76
3398
  msgid "<strong>ERROR</strong>: The username field is empty."
3399
  msgstr "<strong>ERRO</strong>: O campo nome de USUÁRIO está vazio."
3400
 
3401
- #: all-in-one-wp-security/classes/wp-security-user-login.php:80
3402
  msgid "<strong>ERROR</strong>: The password field is empty."
3403
  msgstr "<strong>ERRO</strong>: O campo da SENHA está vazio."
3404
 
3405
- #: all-in-one-wp-security/classes/wp-security-user-login.php:100
3406
- #: all-in-one-wp-security/classes/wp-security-user-login.php:126
3407
  msgid "<strong>ERROR</strong>: Invalid login credentials."
3408
  msgstr "<strong>ERRO</strong>: As suas informações de login são INVÁLIDAS."
3409
 
3410
- #: all-in-one-wp-security/classes/wp-security-user-login.php:103
3411
  msgid "<strong>ERROR</strong>: Invalid username."
3412
  msgstr "<strong>ERRO</strong>: NOME DE USUÁRIO Inválido."
3413
 
3414
- #: all-in-one-wp-security/classes/wp-security-user-login.php:129
3415
  #, php-format
3416
- msgid ""
3417
- "<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password "
3418
- "Lost and Found\">Lost your password</a>?"
3419
- msgstr ""
3420
- "<strong>ERRO</strong>: SENHA INCORRETA. <a href=\"%s\" title=\"Senha Perdida "
3421
- "e Encontrada\">Perdeu a sua SENHA</a>?"
3422
 
3423
- #: all-in-one-wp-security/classes/wp-security-user-login.php:140
3424
- msgid ""
3425
- "<strong>ACCOUNT PENDING</strong>: Your account is currently not active. An "
3426
- "administrator needs to activate your account before you can login."
3427
- msgstr ""
3428
- "<strong>CONTA PENDENTE</strong>: A sua CONTA não está ativa. Um "
3429
- "Administrador precisa ativar a sua conta ante e você efetuar o LOGIN."
3430
 
3431
- #: all-in-one-wp-security/classes/wp-security-user-login.php:263
3432
  msgid "Site Lockout Notification"
3433
- msgstr "Notificação de Bloqueio do Website"
3434
 
3435
- #: all-in-one-wp-security/classes/wp-security-user-login.php:264
3436
- msgid ""
3437
- "A lockdown event has occurred due to too many failed login attempts or "
3438
- "invalid username:"
3439
- msgstr ""
3440
- "Um evento de bloqueio ocorreu devido a muitas tentativas de login ou nome de "
3441
- "usuário inválido:"
3442
 
3443
- #: all-in-one-wp-security/classes/wp-security-user-login.php:265
3444
  msgid "Username: "
3445
- msgstr "Usuário:"
3446
 
3447
- #: all-in-one-wp-security/classes/wp-security-user-login.php:266
3448
  msgid "IP Address: "
3449
  msgstr "Endereço IP:"
3450
 
3451
- #: all-in-one-wp-security/classes/wp-security-user-login.php:267
3452
  msgid "IP Range: "
3453
  msgstr "Faixa IP:"
3454
 
3455
- #: all-in-one-wp-security/classes/wp-security-user-login.php:268
3456
- msgid ""
3457
- "Log into your site's WordPress administration panel to see the duration of "
3458
- "the lockout or to unlock the user."
3459
- msgstr ""
3460
 
3461
- #: all-in-one-wp-security/classes/wp-security-user-login.php:425
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3462
  #, php-format
3463
- msgid ""
3464
- "Your session has expired because it has been over %d minutes since your last "
3465
- "login."
3466
- msgstr ""
3467
- "A sua sessão foi encerrada porque já se passaram %d minutos do seu último "
3468
- "login."
3469
 
3470
- #: all-in-one-wp-security/classes/wp-security-user-login.php:426
3471
- #: all-in-one-wp-security/classes/wp-security-user-login.php:430
3472
  msgid "Please log back in to continue."
3473
- msgstr ""
3474
 
3475
- #: all-in-one-wp-security/classes/wp-security-user-login.php:429
3476
  msgid "You were logged out because you just changed the \"admin\" username."
3477
- msgstr ""
3478
 
3479
- #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:79
3480
- #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:98
3481
- #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:113
3482
- #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:128
 
 
 
 
 
 
 
 
 
3483
  msgid " is not a valid ip address format."
3484
- msgstr "esse formato de endereço de IP não é válido."
3485
 
3486
- #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:136
3487
  msgid "You cannot ban your own IP address: "
3488
  msgstr "Você não pode banir o seu próprio endereço IP"
3489
 
3490
- #: all-in-one-wp-security/classes/wp-security-utility.php:151
3491
- msgid ""
3492
- "This feature can only be configured by the \"superadmin\" on the main site."
3493
- msgstr ""
3494
 
3495
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:29
3496
- msgid "Remove WP Generatore Meta Tag"
3497
- msgstr "Remover Gerador da Meta Tag WP "
3498
 
3499
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:35
3500
- msgid "Change Display Name"
3501
- msgstr "Troca do Nome Exibido"
 
3502
 
3503
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:43
3504
- msgid "Lost Password Captcha"
3505
- msgstr "Captcha Senha Perdida"
 
3506
 
3507
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:45
3508
- msgid "Login IP Whitelisting"
3509
- msgstr ""
3510
 
3511
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:51
3512
- msgid "Registration Approval"
3513
- msgstr "Aprovação do Registro"
3514
 
3515
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:67
3516
- msgid "WordPress Files Access"
3517
- msgstr "Acesso Arquivos WordPress"
3518
 
3519
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:71
3520
- msgid "IP and User Agent Blacklisting"
3521
- msgstr ""
3522
 
3523
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:75
3524
- msgid "Enable Basic Firewall"
3525
- msgstr "Ativar Firewall Básico"
3526
 
3527
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:76
3528
- msgid "Enable Pingback Vulnerability Protection"
3529
- msgstr "Ativar Proteção Vulnerabilidade Pingback"
 
3530
 
3531
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:82
3532
- msgid "Forbid Proxy Comments"
3533
- msgstr ""
3534
 
3535
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:83
3536
- msgid "Deny Bad Queries"
3537
- msgstr "Impedir Consultas Duvidosas"
3538
 
3539
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:85
3540
- msgid "5G Blacklist"
3541
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3542
 
3543
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:88
3544
- msgid "Block Spambots"
3545
- msgstr "Bloquear Spambots"
 
3546
 
3547
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:90
3548
- msgid "Comment Captcha"
3549
- msgstr "Captcha Comentário"
3550
 
3551
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:28
3552
- msgid "Basic"
3553
- msgstr "Basico"
 
3554
 
3555
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:31
3556
- msgid "Intermediate"
3557
- msgstr "Intermediario"
3558
 
3559
- #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:34
3560
- msgid "Advanced"
3561
- msgstr "Avançado"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: All In One WP Security v4.0.7\n"
4
+ "POT-Creation-Date: 2016-04-14 11:14-0300\n"
5
+ "PO-Revision-Date: 2016-04-18 13:26-0300\n"
6
+ "Last-Translator: Gilvanilson Santos <gilvanilson@gmail.com>\n"
7
+ "Language-Team: GVSANTOS Group <grupogvsantos@gmail.com>\n"
8
+ "Language: pt_BR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
 
 
 
12
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
13
+ "X-Generator: Poedit 1.8.7\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
16
+ "X-Poedit-Basepath: .\n"
17
+ "X-Textdomain-Support: yes\n"
18
+ "X-Poedit-SearchPath-0: ../../plugins/all-in-one-wp-security-and-firewall\n"
19
+
20
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/general/wp-security-list-table.php:178
21
+ msgid "No items found."
22
+ msgstr "Nenhum item encontrado."
23
+
24
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/general/wp-security-list-table.php:281
25
+ msgid "Bulk Actions"
26
+ msgstr "Ações em massa"
27
+
28
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/general/wp-security-list-table.php:291
29
+ msgid "Apply"
30
+ msgstr "Aplicar"
31
+
32
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/general/wp-security-list-table.php:365
33
+ msgid "Show all dates"
34
+ msgstr "Mostrar todas as datas"
35
+
36
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/general/wp-security-list-table.php:378
37
+ #, php-format
38
+ msgid "%1$s %2$d"
39
+ msgstr "%1$s %2$d"
40
+
41
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/general/wp-security-list-table.php:394
42
+ msgid "List View"
43
+ msgstr "Ver lista"
44
+
45
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/general/wp-security-list-table.php:395
46
+ msgid "Excerpt View"
47
+ msgstr "Ver resumo"
48
+
49
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/general/wp-security-list-table.php:421
50
+ #, php-format
51
+ msgid "%s pending"
52
+ msgstr "%s pendente"
53
+
54
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/general/wp-security-list-table.php:653
55
+ msgid "Select All"
56
+ msgstr "Selecionar todos"
57
 
58
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php:203
59
  msgid "WP Security"
60
+ msgstr "Segurança WP"
61
 
62
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php:204
63
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:25
64
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:61
65
  msgid "Dashboard"
66
  msgstr "Painel"
67
 
68
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php:205
69
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:63
70
  msgid "Settings"
71
  msgstr "Configurações"
72
 
73
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php:206
74
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:64
75
  msgid "User Accounts"
76
+ msgstr "Contas de usuários"
77
 
78
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php:207
79
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:62
80
  msgid "User Login"
81
+ msgstr "Login de usuário"
82
 
83
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php:208
84
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:57
85
  msgid "User Registration"
86
+ msgstr "Registro de usuário"
87
 
88
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php:209
89
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:66
90
  msgid "Database Security"
91
+ msgstr "Segurança do DB"
92
 
93
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php:213
94
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:62
95
  msgid "Filesystem Security"
96
+ msgstr "Segurança de arquivos"
97
 
98
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php:215
99
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-whois-menu.php:55
100
  msgid "WHOIS Lookup"
101
+ msgstr "Pesquisa WHOIS"
102
 
103
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php:219
104
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:55
105
  msgid "Blacklist Manager"
106
+ msgstr "Gerenciar lista negra"
107
 
108
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php:224
109
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:67
110
  msgid "Firewall"
111
  msgstr "Firewall"
112
 
113
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php:226
114
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:68
115
+ msgid "Brute Force"
116
+ msgstr "Força bruta"
117
+
118
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php:227
119
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:59
120
  msgid "SPAM Prevention"
121
  msgstr "Prevenção SPAM"
122
 
123
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php:231
124
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:59
125
  msgid "Scanner"
126
  msgstr "Verificador"
127
 
128
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php:233
129
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-maintenance-menu.php:55
130
  msgid "Maintenance"
131
  msgstr "Manutenção"
132
 
133
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php:234
134
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:59
135
+ msgid "Miscellaneous"
136
+ msgstr "Diversos"
137
+
138
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-menu.php:43
139
  msgid "Settings successfully updated."
140
  msgstr "Configurações autalizadas com sucesso."
141
 
142
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-menu.php:50
143
  msgid "The selected record(s) deleted successfully!"
144
+ msgstr "O registro (s) selecionado foi excluído com sucesso!"
145
 
146
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:22
147
  msgid "Ban Users"
148
+ msgstr "Usuários banidos"
149
 
150
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:81
151
  msgid "Nonce check failed for save blacklist settings!"
152
+ msgstr "Verificação núncio falhou para salvar configurações de lista negra!"
153
+
154
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:136
155
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:636
156
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:1017
157
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-404.php:217
158
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-comment-spammer-ip.php:198
159
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-general-init-tasks.php:201
160
+ msgid "The plugin was unable to write to the .htaccess file. Please edit file manually."
161
+ msgstr "O plugin não foi capaz de gravar no arquivo .htaccess. Por favor, edite o arquivo manualmente."
162
+
163
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:143
164
  msgid "Ban IPs or User Agents"
165
+ msgstr "Banir IPs ou agentes de usuário"
166
 
167
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:146
168
+ msgid "The All In One WP Security Blacklist feature gives you the option of banning certain host IP addresses or ranges and also user agents."
169
+ msgstr "O recurso de lista negra do All In One WP Security lhe a opção de proibir determinados endereços IP de host ou intervalos e também agentes de usuário."
 
 
170
 
171
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:147
172
+ msgid "This feature will deny total site access for users which have IP addresses or user agents matching those which you have configured in the settings below."
173
+ msgstr "Este recurso irá negar o acesso total do local para os usuários que têm endereços IP ou os agentes de usuário correspondentes aos que você configurou nas configurações abaixo."
 
 
 
174
 
175
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:148
176
+ msgid "The plugin achieves this by making appropriate modifications to your .htaccess file."
177
+ msgstr "O plugin consegue isso fazendo modificações apropriadas ao seu arquivo .htaccess."
 
 
178
 
179
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:149
180
+ msgid "By blocking people via the .htaccess file your are using the most secure first line of defence which denies all access to blacklisted visitors as soon as they hit your hosting server."
181
+ msgstr "Ao bloquear as pessoas através do arquivo .htaccess você está usando a primeira linha mais seguro de defesa que nega todo o acesso a visitantes na lista negra, assim que atingirem o seu servidor de hospedagem."
 
 
 
182
 
183
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:155
184
  msgid "IP Hosts and User Agent Blacklist Settings"
185
+ msgstr "Hosts IP e configurações de lista negra de agente do usuário"
186
 
187
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:166
188
  msgid "Enable IP or User Agent Blacklisting"
189
+ msgstr "Habilitar IP ou agente de usuário obstrução na lista negra"
190
 
191
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:169
192
+ msgid "Check this if you want to enable the banning (or blacklisting) of selected IP addresses and/or user agents specified in the settings below"
193
+ msgstr "Marque esta opção se você deseja ativar a proibição (ou obstrução da lista negra) de endereços IP selecionados e / ou agentes de usuário especificados nas configurações abaixo"
 
 
194
 
195
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:173
196
  msgid "Enter IP Addresses:"
197
  msgstr "Digite o endereço IP:"
198
 
199
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:177
200
  msgid "Enter one or more IP addresses or IP ranges."
201
+ msgstr "Digite um ou mais endereços IP ou intervalos de IP."
202
+
203
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:178
204
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:198
205
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:352
206
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:386
207
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:409
208
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:430
209
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:693
210
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:300
211
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:317
212
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:169
213
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:199
214
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:229
215
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:356
216
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:386
217
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:417
218
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:445
219
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:474
220
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:573
221
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:591
222
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:681
223
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:894
224
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:917
225
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:169
226
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:342
227
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:384
228
  msgid "More Info"
229
+ msgstr "Mais informação"
230
 
231
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:181
232
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:696
233
  msgid "Each IP address must be on a new line."
234
+ msgstr "Cada endereço IP deve estar em uma nova linha."
235
 
236
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:182
237
+ msgid "To specify an IP range use a wildcard \"*\" character. Acceptable ways to use wildcards is shown in the examples below:"
238
+ msgstr "Para especificar um intervalo de IP usar um caractere curinga \"*\". Maneiras aceitáveis para usar caracteres curinga é mostrada nos exemplos abaixo:"
 
 
 
239
 
240
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:183
241
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:698
242
  msgid "Example 1: 195.47.89.*"
243
+ msgstr "Exemplo 1: 195.47.89.*"
244
 
245
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:184
246
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:699
247
  msgid "Example 2: 195.47.*.*"
248
+ msgstr "Exemplo 2: 195.47.*.*"
249
 
250
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:185
251
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:700
252
  msgid "Example 3: 195.*.*.*"
253
+ msgstr "Exemplo 3: 195.*.*.*"
254
 
255
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:192
256
  msgid "Enter User Agents:"
257
+ msgstr "Digite os agentes do usuário:"
258
 
259
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:197
260
  msgid "Enter one or more user agent strings."
261
+ msgstr "Digite uma ou mais sequências de caracteres de agente de usuário."
262
 
263
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:201
264
  msgid "Each user agent string must be on a new line."
265
+ msgstr "Cada sequência do agente de usuário deve estar em uma nova linha."
266
 
267
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:202
268
  msgid "Example 1 - A single user agent string to block:"
269
+ msgstr "Exemplo 1 - Uma sequência de caracteres de agente de usuário único para bloquear:"
270
 
271
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:204
272
  msgid "Example 2 - A list of more than 1 user agent strings to block"
273
+ msgstr "Exemplo 2 - Uma lista de mais de 1 sequências de agente de usuário para bloquear"
274
+
275
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php:212
276
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:197
277
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:572
278
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:710
279
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:772
280
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:354
281
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:340
282
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:239
283
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:759
284
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:936
285
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:168
286
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:219
287
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:539
288
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:184
289
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:359
290
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:480
291
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:239
292
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:407
293
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:147
294
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:233
295
  msgid "Save Settings"
296
+ msgstr "Salvar configurações"
297
 
298
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:26
299
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:430
300
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:441
301
+ msgid "Rename Login Page"
302
+ msgstr "Renomeação da página de login"
303
 
304
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:27
305
+ msgid "Cookie Based Brute Force Prevention"
306
+ msgstr "Prevenção baseadas em cookies de força bruta"
307
 
308
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:28
309
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:44
310
+ msgid "Login Captcha"
311
+ msgstr "Captcha login"
312
 
313
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:29
314
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:643
315
+ msgid "Login Whitelist"
316
+ msgstr "Lista branca de login"
317
+
318
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:30
319
+ msgid "Honeypot"
320
+ msgstr "Pote de mel"
321
+
322
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:106
323
+ msgid "Please enter a value for your login page slug."
324
+ msgstr "Por favor, insira um valor para sua lesma/apelido da página de login."
325
+
326
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:110
327
+ msgid "You cannot use the value \"wp-admin\" for your login page slug."
328
+ msgstr "Você não pode usar o valor \"wp-admin\" para sua lesma/apelido da página de login."
329
+
330
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:112
331
+ msgid "You must alpha numeric characters for your login page slug."
332
+ msgstr "Você deve usar caracteres alfa numéricos para sua lesma/apelido da página de login."
333
+
334
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:117
335
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:271
336
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:178
337
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:826
338
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:220
339
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:254
340
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:124
341
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:360
342
+ msgid "Attention!"
343
+ msgstr "Atenção!"
344
 
345
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:136
346
+ msgid "Could not delete the Cookie-based directives from the .htaccess file. Please check the file permissions."
347
+ msgstr "Não foi possível excluir as diretrizes baseadas em cookie do arquivo .htaccess. Por favor, verifique as permissões do arquivo."
348
 
349
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:146
350
+ msgid "An effective Brute Force prevention technique is to change the default WordPress login page URL."
351
+ msgstr "Uma técnica eficaz para a prevenção de força bruta é alterar a URL padrão da página de login do WordPress."
 
 
352
 
353
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:147
354
+ msgid "Normally if you wanted to login to WordPress you would type your site's home URL followed by wp-login.php."
355
+ msgstr "Normalmente, se você deseja fazer login para WordPress você deve digitar uma URL home do seu site, seguido de wp-login.php."
356
 
357
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:148
358
+ msgid "This feature allows you to change the login URL by setting your own slug and renaming the last portion of the login URL which contains the <strong>wp-login.php</strong> to any string that you like."
359
+ msgstr "Esse recurso permite você alterar a URL de login definindo sua própria lesma/apelido e renomeando a última parte da URL de login que contém o <strong>wp-login.php</strong> para qualquer sequência de caracteres que você gosta."
360
 
361
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:149
362
+ msgid "By doing this, malicious bots and hackers will not be able to access your login page because they will not know the correct login page URL."
363
+ msgstr "Ao fazer isso, os hackers e robôs maliciosos não serão capazes de acessar a página de login, porque eles não vão saber a URL da página de login correta."
364
 
365
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:151
366
+ msgid "You may also be interested in the following alternative brute force prevention features:"
367
+ msgstr "Você pode também estar interessado nos seguintes recursos alternativos de prevenção de força bruta:"
368
 
369
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:162
370
+ msgid "Your WordPress login page URL has been renamed."
371
+ msgstr "Seu URL da página de login do WordPress foi renomeada."
372
 
373
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:163
374
+ msgid "Your current login URL is:"
375
+ msgstr "Seu URL de login atual é:"
 
 
376
 
377
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:165
378
+ msgid "NOTE: If you already had the Cookie-Based Brute Force Prevention feature active, the plugin has automatically deactivated it because only one of these features can be active at any one time."
379
+ msgstr "NOTA: Se você já teve o recurso de prevenção de força bruta baseadas em cookie, ativo, o plugin foi desativado automaticamente porque apenas um desses recursos pode estar ativo de cada vez."
380
 
381
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:172
382
+ msgid "Rename Login Page Settings"
383
+ msgstr "Configurações de renomeação da página de login"
 
 
384
 
385
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:184
386
+ msgid "Enable Rename Login Page Feature"
387
+ msgstr "Habilitar recurso de renomeação da página de login"
388
 
389
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:187
390
+ msgid "Check this if you want to enable the rename login page feature"
391
+ msgstr "Marque esta opção se você deseja ativar o recurso de renomeação da página de login"
392
 
393
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:191
394
+ msgid "Login Page URL"
395
+ msgstr "URL da página de login"
396
 
397
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:193
398
+ msgid "Enter a string which will represent your secure login page slug. You are enouraged to choose something which is hard to guess and only you will remember."
399
+ msgstr "Digite uma sequência de caracteres que irá representar sua lesma/apelido da página de login seguro. Você é incentivado a escolher algo que é difícil de adivinhar e só você vai se lembrar."
 
 
400
 
401
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:226
402
+ msgid "Settings have not been saved - your secret word must consist only of alphanumeric characters, ie, letters and/or numbers only!"
403
+ msgstr "Configurações não foram salvas - sua palavra secreta deve consistir apenas de caracteres alfanuméricos, ou seja, letras e/ou números apenas!"
404
 
405
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:245
406
+ msgid "You have successfully enabled the cookie based brute force prevention feature"
407
+ msgstr "Você ativou com sucesso o recurso de prevenção de força bruta baseada em cookie"
408
 
409
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:246
410
+ msgid "From now on you will need to log into your WP Admin using the following URL:"
411
+ msgstr "De agora em diante, você precisará fazer login em sua administração WP usando a seguinte URL:"
 
412
 
413
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:248
414
+ msgid "It is important that you save this URL value somewhere in case you forget it, OR,"
415
+ msgstr "É importante que você salve esse valor de URL em algum lugar caso você esqueça, OU,"
416
 
417
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:249
 
418
  #, php-format
419
+ msgid "simply remember to add a \"?%s=1\" to your current site URL address."
420
+ msgstr "simplesmente lembre-se de adicionar um \"?%s=1\" para o seu endereço de URL do site atual."
421
+
422
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:255
423
+ msgid "You have successfully saved cookie based brute force prevention feature settings."
424
+ msgstr "Você salvou com sucesso as configurações de recursos de prevenção de força bruta baseadas em cookies."
425
+
426
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:290
427
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:283
428
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:123
429
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:317
430
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:538
431
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:726
432
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:633
433
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:109
434
+ msgid "Could not write to the .htaccess file. Please check the file permissions."
435
+ msgstr "Não foi possível gravar no arquivo .htaccess. Por favor, verifique as permissões do arquivo."
436
+
437
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:300
438
+ msgid "Brute Force Prevention Firewall Settings"
439
+ msgstr "Configurações de firewall de prevenção de força bruta"
440
 
441
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:305
442
+ msgid "A Brute Force Attack is when a hacker tries many combinations of usernames and passwords until they succeed in guessing the right combination."
443
+ msgstr "Um ataque de força bruta é quando um hacker tenta muitas combinações de nomes de usuário e senhas até que eles conseguem adivinhar a combinação certa."
444
 
445
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:306
446
+ msgid "Due to the fact that at any one time there may be many concurrent login attempts occurring on your site via malicious automated robots, this also has a negative impact on your server's memory and performance."
447
+ msgstr "Devido ao fato de que a qualquer momento, pode haver muitas tentativas de login simultâneas ocorrendo no seu site através de robôs automatizados maliciosos, este também tem um impacto negativo sobre a memória e o desempenho do seu servidor."
448
 
449
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:307
450
+ msgid "The features in this tab will stop the majority of Brute Force Login Attacks at the .htaccess level thus providing even better protection for your WP login page and also reducing the load on your server because the system does not have to run PHP code to process the login attempts."
451
+ msgstr "Os recursos neste guia irá parar a maioria dos ataques de login de força bruta em vigor no nível do .htaccess proporcionando assim uma maior proteção para a sua página de login do WP e também reduzindo a carga sobre o servidor porque o sistema não tem que executar código PHP para processar as tentativas de login."
452
 
453
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:314
454
+ #, php-format
455
+ msgid "Even though this feature should not have any impact on your site's general functionality <strong>you are strongly encouraged to take a %s of your .htaccess file before proceeding</strong>."
456
+ msgstr "Mesmo que esse recurso não deve ter nenhum impacto na funcionalidade geral do seu site <strong>você é fortemente encorajado a fazer um %s de seu arquivo .htaccess antes de prosseguir</strong>."
457
 
458
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:315
459
+ msgid "If this feature is not used correctly, you can get locked out of your site. A backed up .htaccess file will come in handy if that happens."
460
+ msgstr "Se esse recurso não for usado corretamente, você pode ficar trancado para fora de seu site. Um backup do arquivo .htaccess virá a calhar, se isso acontecer."
 
 
461
 
462
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:316
463
+ #, php-format
464
+ msgid "To learn more about how to use this feature please watch the following %s."
465
+ msgstr "Para obter mais informações sobre como usar esse recurso por favor ver o seguinte %s."
466
 
467
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:329
468
+ msgid "NOTE: If you already had the Rename Login Page feature active, the plugin has automatically deactivated it because only one of these features can be active at any one time."
469
+ msgstr "NOTA: Se você já teve o recurso de renomeação da página de login ativo, o plugin foi desativado automaticamente porque apenas um desses recursos pode estar ativo de cada vez."
470
 
471
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:337
472
+ msgid "Cookie Based Brute Force Login Prevention"
473
+ msgstr "Prevenção de acesso baseadas em cookies de força bruta"
474
 
475
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:348
476
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:91
477
+ msgid "Enable Brute Force Attack Prevention"
478
+ msgstr "Habilitar prevenção contra ataque de força bruta"
 
479
 
480
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:351
481
+ msgid "Check this if you want to protect your login page from Brute Force Attack."
482
+ msgstr "Marque esta opção se você deseja proteger sua página de login de ataque de força bruta."
483
 
484
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:356
485
+ msgid "This feature will deny access to your WordPress login page for all people except those who have a special cookie in their browser."
486
+ msgstr "Esse recurso irá negar o acesso à sua página de login do WordPress para todas as pessoas, exceto aqueles que têm um cookie especial em seu navegador."
487
 
488
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:358
489
+ msgid "To use this feature do the following:"
490
+ msgstr "Para usar este recurso faça o seguinte:"
491
 
492
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:360
493
+ msgid "1) Enable the checkbox."
494
+ msgstr "1) Habilite a caixa de seleção."
495
 
496
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:362
497
+ msgid "2) Enter a secret word consisting of alphanumeric characters which will be difficult to guess. This secret word will be useful whenever you need to know the special URL which you will use to access the login page (see point below)."
498
+ msgstr "2) Digite uma palavra secreta, constituída por caracteres alfanuméricos, que será difícil de adivinhar. Esta palavra secreta será útil sempre que você precisa saber a URL especial que você usará para acessar a página de login (ver ponto abaixo)."
499
 
500
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:364
501
+ msgid "3) You will then be provided with a special login URL. You will need to use this URL to login to your WordPress site instead of the usual login URL. NOTE: The system will deposit a special cookie in your browser which will allow you access to the WordPress administration login page."
502
+ msgstr "3) Em seguida, será fornecido com uma URL de login especial. Você precisará usar esta URL para acessar o seu site WordPress em vez da URL de login habitual. NOTA: O sistema irá depositar um cookie especial em seu navegador, que lhe permitirá aceder à página de login de administração do WordPress."
503
 
504
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:366
505
+ msgid "Any person trying to access your login page who does not have the special cookie in their browser will be automatically blocked."
506
+ msgstr "Qualquer pessoa que tentar acessar a página de login que não tem o cookie especial em seu navegador será bloqueado automaticamente."
507
 
508
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:373
509
+ msgid "Secret Word"
510
+ msgstr "Palavra secreta"
 
 
511
 
512
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:375
513
+ msgid "Choose a secret word consisting of alphanumeric characters which you can use to access your special URL. Your are highly encouraged to choose a word which will be difficult to guess."
514
+ msgstr "Escolha uma palavra secreta composta de caracteres alfanuméricos, que você pode usar para acessar sua URL especial. Você estar altamente incentivados a escolher uma palavra que será difícil de adivinhar."
515
 
516
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:379
517
+ msgid "Re-direct URL"
518
+ msgstr "Redirecionar URL"
 
519
 
520
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:383
521
+ msgid "Specify a URL to redirect a hacker to when they try to access your WordPress login page."
522
+ msgstr "Especifique uma URL para redirecionar um hacker para quando eles tentam acessar a página de login do WordPress."
 
523
 
524
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:390
525
+ msgid "The URL specified here can be any site's URL and does not have to be your own. For example you can be as creative as you like and send hackers to the CIA or NSA home page."
526
+ msgstr "A URL especificada aqui pode ser URL de qualquer site e não tem que ser o seu próprio. Por exemplo, você pode ser tão criativo como você gosta e enviar os hackers para a página inicial da CIA ou NSA."
527
 
528
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:392
529
+ msgid "This field will default to: http://127.0.0.1 if you do not enter a value."
530
+ msgstr "Este campo será o padrão para: http://127.0.0.1 se você não digitar um valor."
 
 
 
531
 
532
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:394
533
+ msgid "Useful Tip:"
534
+ msgstr "Dica útil:"
535
 
536
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:396
537
+ msgid "It's a good idea to not redirect attempted brute force login attempts to your site because it increases the load on your server."
538
+ msgstr "É uma boa ideia não redirecionar tentativas de login de tentativa de força bruta para seu site, porque aumenta a carga no seu servidor."
 
 
539
 
540
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:398
541
+ msgid "Redirecting a hacker or malicious bot back to \"http://127.0.0.1\" is ideal because it deflects them back to their own local host and puts the load on their server instead of yours."
542
+ msgstr "Redirecionando um hacker ou robô malicioso de volta para \"http://127.0.0.1\" é ideal, pois desvia-los de volta ao seu próprio host local e coloca a carga em seu servidor ao invés do seu."
543
 
544
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:405
545
+ msgid "My Site Has Posts Or Pages Which Are Password Protected"
546
+ msgstr "Meu site tem posts ou páginas que são protegidos por senha"
 
 
547
 
548
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:408
549
+ msgid "Check this if you are using the native WordPress password protection feature for some or all of your blog posts or pages."
550
+ msgstr "Marque esta opção se você estiver usando o recurso de proteção de senha nativo do WordPress para alguns ou todos os seus posts no blog ou páginas."
 
 
551
 
552
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:413
553
+ msgid "In the cases where you are protecting some of your posts or pages using the in-built WordPress password protection feature, a few extra lines of directives and exceptions need to be added to your .htacces file so that people trying to access pages are not automatically blocked."
554
+ msgstr "Nos casos em que você está protegendo alguns de seus posts ou páginas usando o recurso de proteção de senha do WordPress embutido, algumas linhas extras de diretivas e exceções precisam ser adicionados ao seu arquivo .htacces para que as pessoas que tentam acessar páginas não sejam automaticamente bloqueadas."
 
 
 
555
 
556
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:415
557
+ msgid "By enabling this checkbox the plugin will add the necessary rules and exceptions to your .htacces file so that people trying to access these pages are not automatically blocked."
558
+ msgstr "Habilitando esta opção o plugin irá adicionar as regras necessárias e exceções ao arquivo .htacces para que as pessoas que tentam acessar essas páginas não sejam automaticamente bloqueadas."
 
 
559
 
560
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:417
561
+ msgid "Helpful Tip:"
562
+ msgstr "Dica útil:"
563
 
564
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:419
565
+ msgid "If you do not use the WordPress password protection feature for your posts or pages then it is highly recommended that you leave this checkbox disabled."
566
+ msgstr "Se você não usar o recurso de proteção de senha do WordPress para seus posts ou páginas, então é altamente recomendado que você deixe essa caixa de seleção desativada."
 
567
 
568
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:426
569
+ msgid "My Site Has a Theme or Plugins Which Use AJAX"
570
+ msgstr "Meu site tem um tema ou plugins que usam AJAX"
571
 
572
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:429
573
+ msgid "Check this if your site uses AJAX functionality."
574
+ msgstr "Marque esta opção se o seu site usa a funcionalidade AJAX."
 
 
 
 
575
 
576
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:434
577
+ msgid "In the cases where your WordPress installation has a theme or plugins which use AJAX, a few extra lines of directives and exceptions need to be added to your .htacces file to prevent AJAX requests from being automatically blocked by the brute force prevention feature."
578
+ msgstr "Nos casos em que a instalação do WordPress tem um tema ou plugins que usam AJAX, algumas linhas extras de diretivas e exceções precisam ser adicionados ao seu arquivo .htacces para impedir que solicitações de AJAX seja bloqueado automaticamente pelo recurso de prevenção de força bruta."
579
 
580
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:436
581
+ msgid "By enabling this checkbox the plugin will add the necessary rules and exceptions to your .htacces file so that AJAX operations will work as expected."
582
+ msgstr "Habilitando esta opção o plugin irá adicionar as regras necessárias e exceções ao arquivo .htacces para que operações de AJAX funcionará como esperado."
 
 
583
 
584
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:451
585
+ msgid "The cookie test was successful. You can now enable this feature."
586
+ msgstr "O teste de cookie foi bem sucedido. Agora, você pode ativar esse recurso."
587
 
588
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:454
589
+ msgid "Save Feature Settings"
590
+ msgstr "Salvar configurações de recurso"
 
 
591
 
592
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:461
593
+ msgid "The cookie test failed on this server. So this feature cannot be used on this site."
594
+ msgstr "O teste de cookie falhou neste servidor. Então, esse recurso não pode ser usado neste site."
595
 
596
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:466
597
+ msgid "Before using this feature you are required to perform a cookie test first. This is to make sure that your browser cookie is working correctly and that you won't lock yourself out."
598
+ msgstr "Antes de utilizar este recurso você é obrigado a realizar um teste de cookie. Isso é para se certificar de que seu cookie de navegador está funcionando corretamente e que você não vai se tranca para fora."
 
599
 
600
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:468
601
+ msgid "Perform Cookie Test"
602
+ msgstr "Executar teste de cookies"
 
 
 
603
 
604
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:508
605
+ msgid "This feature allows you to add a captcha form on the WordPress login page."
606
+ msgstr "Esse recurso permite que você adicione um formulário captcha na página de login do WordPress."
607
 
608
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:509
609
+ msgid "Users who attempt to login will also need to enter the answer to a simple mathematical question - if they enter the wrong answer, the plugin will not allow them login even if they entered the correct username and password."
610
+ msgstr "Os usuários que tentam acessar também precisará digitar a resposta a uma simples questão de matemática - se digitar a resposta errada, o plugin não lhes permitirá entrar mesmo que entraram o correto nome de usuário e senha."
611
 
612
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:510
613
+ msgid "Therefore, adding a captcha form on the login page is another effective yet simple \"Brute Force\" prevention technique."
614
+ msgstr "Portanto, adicionando um formulário captcha na página de login é uma outra técnica de prevenção eficaz, ainda que simples \"força bruta\"."
 
 
 
615
 
616
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:516
617
+ msgid "Login Form Captcha Settings"
618
+ msgstr "Configurações do formulário captcha de login"
 
 
619
 
620
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:527
621
+ msgid "Enable Captcha On Login Page"
622
+ msgstr "Habilitar captcha na página de login"
 
 
 
 
623
 
624
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:530
625
+ msgid "Check this if you want to insert a captcha form on the login page"
626
+ msgstr "Marque esta opção se você deseja inserir um formulário captcha na página de login"
 
 
 
 
627
 
628
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:536
629
+ msgid "Custom Login Form Captcha Settings"
630
+ msgstr "Configurações personalizadas do formulário captcha de login"
631
 
632
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:545
633
+ msgid "Enable Captcha On Custom Login Form"
634
+ msgstr "Habilitar captcha no formulário de login personalizado"
635
 
636
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:548
637
+ msgid "Check this if you want to insert captcha on a custom login form generated by the following WP function: wp_login_form()"
638
+ msgstr "Marque esta opção se você deseja inserir o captcha em um formulário de login personalizado gerado pela seguinte função WP: wp_login_form()"
639
 
640
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:554
641
+ msgid "Lost Password Form Captcha Settings"
642
+ msgstr "Configurações do formulário captcha de senha perdida"
643
 
644
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:564
645
+ msgid "Enable Captcha On Lost Password Page"
646
+ msgstr "Habilitar captcha na página senha perdida"
647
 
648
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:567
649
+ msgid "Check this if you want to insert a captcha form on the lost password page"
650
+ msgstr "Marque esta opção se você deseja inserir um formulário captcha na página de senha perdida"
 
 
651
 
652
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:589
653
+ msgid "Nonce check failed for save whitelist settings!"
654
+ msgstr "Verificação núncio falhou para salvar configurações de lista branca!"
655
 
656
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:646
657
+ msgid "The All In One WP Security Whitelist feature gives you the option of only allowing certain IP addresses or ranges to have access to your WordPress login page."
658
+ msgstr "O recurso de lista branca de All In One WP Security lhe dá a opção de permitir apenas determinados endereços IP ou intervalos para ter acesso à sua página de login do WordPress."
 
659
 
660
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:647
661
+ msgid "This feature will deny login access for all IP addresses which are not in your whitelist as configured in the settings below."
662
+ msgstr "Este recurso irá negar o acesso de login para todos os endereços IP que não estão em sua lista branca conforme configurado nas configurações abaixo."
 
663
 
664
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:648
665
+ msgid "The plugin achieves this by writing the appropriate directives to your .htaccess file."
666
+ msgstr "O plugin consegue isso por escrito as diretivas apropriadas para o seu arquivo .htaccess."
 
667
 
668
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:649
669
+ msgid "By allowing/blocking IP addresses via the .htaccess file your are using the most secure first line of defence because login access will only be granted to whitelisted IP addresses and other addresses will be blocked as soon as they try to access your login page."
670
+ msgstr "Ao permitir / bloquear endereços IP via arquivo .htaccess você está usando a primeira linha mais seguro de defesa porque o acesso de login será concedido somente a endereços IP autorizados na lista branca e outros endereços serão bloqueadas assim que eles tentam acessar a página de login."
671
 
672
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:657
673
+ #, php-format
674
+ msgid "Attention: If in addition to enabling the white list feature, you also have one of the %s or %s features enabled, <strong>you will still need to use your secret word or special slug in the URL when trying to access your WordPress login page</strong>."
675
+ msgstr "Atenção: Se além de habilitar o recurso de lista branca, você também tem um dos %s ou %s recursos habilitados, <strong>você ainda precisará usar sua palavra secreta ou lesma/apelido especial na URL quando você tentar acessar a página de login do WordPress</strong>."
676
 
677
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:658
678
+ msgid "These features are NOT functionally related. Having both of them enabled on your site means you are creating 2 layers of security."
679
+ msgstr "Esses recursos não estão funcionalmente relacionados. Tendo ambos habilitado em seu site significa que você está criando 2 camadas de segurança."
 
 
680
 
681
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:663
682
+ msgid "Login IP Whitelist Settings"
683
+ msgstr "Configurações de login de lista branca IP"
684
 
685
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:674
686
+ msgid "Enable IP Whitelisting"
687
+ msgstr "Habilitar lista branca de IP"
 
 
688
 
689
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:677
690
+ msgid "Check this if you want to enable the whitelisting of selected IP addresses specified in the settings below"
691
+ msgstr "Marque esta opção se você deseja ativar o lista branca de endereços IP selecionados especificados nas configurações abaixo"
 
 
692
 
693
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:681
694
+ msgid "Your Current IP Address"
695
+ msgstr "Seu endereço IP atual"
696
 
697
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:684
698
+ msgid "You can copy and paste this address in the text box below if you want to include it in your login whitelist."
699
+ msgstr "Você pode copiar e colar esse endereço na caixa de texto abaixo, se você deseja incluí-lo em sua lista branca de login."
 
 
 
700
 
701
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:688
702
+ msgid "Enter Whitelisted IP Addresses:"
703
+ msgstr "Digite endereços IP na lista branca:"
 
 
 
704
 
705
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:692
706
+ msgid "Enter one or more IP addresses or IP ranges you wish to include in your whitelist. Only the addresses specified here will have access to the WordPress login page."
707
+ msgstr "Digite um ou mais endereços IP ou intervalos de IP que você deseja incluir em sua lista branca. Apenas os endereços especificados aqui terá acesso à página de login do WordPress."
708
 
709
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:697
710
+ msgid "To specify an IPv4 range use a wildcard \"*\" character. Acceptable ways to use wildcards is shown in the examples below:"
711
+ msgstr "Para especificar um endereço IPv4 escala usar um caractere curinga \"*\". Maneiras aceitáveis para usar caracteres curinga é mostrada nos exemplos abaixo:"
712
+
713
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:701
714
+ msgid "Or you can enter an IPv6 address (NOTE: ranges/wildcards are currently not supported for ipv6)"
715
+ msgstr "Ou você pode digitar um endereço IPv6 (Nota: atualmente intervalos/curingas não são suportados para ipv6)"
716
+
717
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:702
718
+ msgid "Example 4: 4102:0:3ea6:79fd:b:46f8:230f:bb05"
719
+ msgstr "Exemplo 4: 4102:0:3ea6:79fd:b:46f8:230f:bb05"
720
+
721
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:703
722
+ msgid "Example 5: 2205:0:1ca2:810d::"
723
+ msgstr "Exemplo 5: 2205:0:1ca2:810d::"
724
+
725
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:743
726
+ msgid "This feature allows you to add a special hidden \"honeypot\" field on the WordPress login page. This will only be visible to robots and not humans."
727
+ msgstr "Esse recurso permite que você adicione um campo oculto especial \"pote de mel\" na página de login do WordPress. Isso só será visível para os robôs e não seres humanos."
728
+
729
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:744
730
+ msgid "Since robots usually fill in every input field from a login form, they will also submit a value for the special hidden honeypot field."
731
+ msgstr "Desde que os robôs geralmente preencher cada campo de entrada de um formulário de login, eles também apresentará um valor para o campo de pote de mel oculto especial."
732
+
733
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:745
734
+ msgid "The way honeypots work is that a hidden field is placed somewhere inside a form which only robots will submit. If that field contains a value when the form is submitted then a robot has most likely submitted the form and it is consequently dealt with."
735
+ msgstr "A maneira de trabalho de potes de mel é que um campo oculto é colocado em algum lugar dentro de uma forma que apenas os robôs irão apresentar. Se esse campo contém um valor quando o formulário é enviado, em seguida, um robô muito provavelmente apresentou a forma e isso consequentemente é tratado com."
736
+
737
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:746
738
+ msgid "Therefore, if the plugin detects that this field has a value when the login form is submitted, then the robot which is attempting to login to your site will be redirected to its localhost address - http://127.0.0.1."
739
+ msgstr "Portanto, se o plugin detecta que este campo tem um valor quando o formulário de login é enviado, então o robô que está tentando fazer o login para o seu site será redirecionado para seu endereço localhost - http://127.0.0.1."
740
+
741
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:752
742
+ msgid "Login Form Honeypot Settings"
743
+ msgstr "Configurações do formulário de login pote de mel"
744
+
745
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:763
746
+ msgid "Enable Honeypot On Login Page"
747
+ msgstr "Habilitar pote de mel na página de login"
748
+
749
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php:766
750
+ msgid "Check this if you want to enable the honeypot feature for the login page"
751
+ msgstr "Marque esta opção se você deseja ativar o recurso pote de mel para a página de login"
752
+
753
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:26
754
+ msgid "System Info"
755
+ msgstr "Informações do sistema"
756
+
757
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:27
758
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:518
759
+ msgid "Locked IP Addresses"
760
+ msgstr "Endereços IP bloqueados"
761
+
762
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:28
763
+ msgid "Permanent Block List"
764
+ msgstr "Lista de bloqueio permanente"
765
+
766
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:29
767
+ msgid "AIOWPS Logs"
768
+ msgstr "Registros de AIOWPS"
769
+
770
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:79
771
+ msgid "For information, updates and documentation, please visit the"
772
+ msgstr "Para informações, atualizações e documentação, por favor visite o"
773
+
774
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:79
775
+ msgid "AIO WP Security & Firewall Plugin"
776
+ msgstr "AIO WP Segurança e Plugin de Firewall"
777
+
778
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:79
779
+ msgid "Page"
780
+ msgstr "Página"
781
+
782
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:80
783
+ msgid "Follow us"
784
+ msgstr "Siga-nos"
785
+
786
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:80
787
+ msgid "Twitter, Google+ or via Email to stay up to date about the new security features of this plugin."
788
+ msgstr "Twitter, Google+ ou via E-mail para ficar atualizado sobre os novos recursos de segurança deste plugin."
789
+
790
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:97
791
+ msgid "Security Strength Meter"
792
+ msgstr "Medidor de força de segurança"
793
+
794
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:128
795
+ msgid "Total Achievable Points: "
796
+ msgstr "Total de pontos alcançáveis: "
797
+
798
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:130
799
+ msgid "Current Score of Your Site: "
800
+ msgstr "Avaliação atual do seu site: "
801
+
802
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:143
803
+ msgid "Security Points Breakdown"
804
+ msgstr "Segurança aponta esgotamento"
805
+
806
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:187
807
+ msgid "Spread the Word"
808
+ msgstr "Estenda a palavra"
809
+
810
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:192
811
+ msgid "We are working hard to make your WordPress site more secure. Please support us, here is how:"
812
+ msgstr "Estamos trabalhando duro para tornar seu site WordPress mais seguro. Por favor, apoiem-nos, aqui está como:"
813
+
814
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:217
815
+ msgid "Get To Know The Developers"
816
+ msgstr "Conheça os desenvolvedores"
817
+
818
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:221
819
+ msgid "Wanna know more about the developers behind this plugin?"
820
+ msgstr "Quer saber mais sobre os desenvolvedores por trás deste plugin?"
821
+
822
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:238
823
+ msgid "Critical Feature Status"
824
+ msgstr "Status de característica crítica"
825
+
826
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:244
827
+ msgid "Below is the current status of the critical features that you should activate on your site to achieve a minimum level of recommended security"
828
+ msgstr "Abaixo está o estado atual dos recursos críticos que você deve ativar em seu site para atingir um nível mínimo de segurança recomendado"
829
+
830
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:248
831
+ msgid "Admin Username"
832
+ msgstr "Nome de usuário admin"
833
+
834
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:263
835
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:25
836
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:42
837
+ msgid "Login Lockdown"
838
+ msgstr "Bloqueio de login"
839
+
840
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:278
841
+ msgid "File Permission"
842
+ msgstr "Permissão de arquivo"
843
+
844
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:293
845
+ msgid "Basic Firewall"
846
+ msgstr "Firewall básico"
847
+
848
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:314
849
+ msgid "Last 5 Logins"
850
+ msgstr "Últimos 5 logins"
851
+
852
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:332
853
+ msgid "No data found!"
854
+ msgstr "Nenhum dado encontrado!"
855
+
856
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:336
857
+ msgid "Last 5 logins summary:"
858
+ msgstr "Últimos 5 logins resumidos:"
859
+
860
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:340
861
+ msgid "User"
862
+ msgstr "Usuário"
863
+
864
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:341
865
+ msgid "Date"
866
+ msgstr "Data"
867
+
868
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:342
869
+ msgid "IP"
870
+ msgstr "IP"
871
+
872
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:366
873
+ msgid "Maintenance Mode Status"
874
+ msgstr "Status do modo de manutenção"
875
+
876
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:372
877
+ msgid "Maintenance mode is currently enabled. Remember to turn it off when you are done"
878
+ msgstr "Modo de manutenção está habilitado no momento. Lembre-se de desabilita-lo quando você terminar"
879
+
880
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:374
881
+ msgid "Maintenance mode is currently off."
882
+ msgstr "Modo de manutenção atualmente está desligado."
883
+
884
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:378
885
+ msgid "Maintenance Mode"
886
+ msgstr "Modo de manutenção"
887
+
888
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:403
889
+ msgid "Cookie Based Brute Prevention"
890
+ msgstr "Prevenção com base bruta em cookies"
891
+
892
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:408
893
+ msgid "Cookie-Based Brute Force"
894
+ msgstr "Força bruta baseada em cookie"
895
+
896
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:412
897
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:444
898
+ #, php-format
899
+ msgid "The %s feature is currently active."
900
+ msgstr "O recurso %s está atualmente ativo."
901
+
902
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:413
903
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:445
904
+ msgid "Your new WordPress login URL is now:"
905
+ msgstr "Sua nova URL de login WordPress agora é:"
906
+
907
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:478
908
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:29
909
+ msgid "Logged In Users"
910
+ msgstr "Usuários conectados"
911
+
912
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:488
913
+ msgid "Number of users currently logged in site-wide is:"
914
+ msgstr "Número de usuários atualmente conectados em todo o site é:"
915
+
916
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:489
917
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:503
918
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:531
919
+ #, php-format
920
+ msgid "Go to the %s menu to see more details"
921
+ msgstr "Vá para o %s menu para ver mais detalhes"
922
+
923
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:492
924
+ msgid "There are no other site-wide users currently logged in."
925
+ msgstr "Não há nenhum outro usuário por todo o sítio atualmente conectado."
926
+
927
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:502
928
+ msgid "Number of users currently logged into your site (including you) is:"
929
+ msgstr "Número de usuários atualmente conectados a seu site (incluindo você) é:"
930
+
931
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:506
932
+ msgid "There are no other users currently logged in."
933
+ msgstr "Não há nenhum outros usuários atualmente conectado."
934
+
935
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:527
936
+ msgid "There are no IP addresses currently locked out."
937
+ msgstr "Não há nenhum endereço IP atualmente bloqueado."
938
+
939
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:530
940
+ msgid "Number of temporarily locked out IP addresses: "
941
+ msgstr "Número de endereços IP temporariamente bloqueado: "
942
+
943
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:576
944
+ msgid "Site Info"
945
+ msgstr "Informações do site"
946
+
947
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:580
948
+ msgid "Plugin Version"
949
+ msgstr "Versão do plugin"
950
+
951
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:582
952
+ msgid "WP Version"
953
+ msgstr "Versão WP"
954
+
955
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:585
956
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:589
957
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:707
958
+ msgid "Version"
959
+ msgstr "Versão"
960
+
961
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:587
962
+ msgid "Table Prefix"
963
+ msgstr "Prefixo de tabela"
964
+
965
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:591
966
+ msgid "Session Save Path"
967
+ msgstr "Sessão salvar caminho"
968
+
969
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:594
970
+ msgid "Server Name"
971
+ msgstr "Nome do servidor"
972
+
973
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:596
974
+ msgid "Cookie Domain"
975
+ msgstr "Domínio do cookie"
976
+
977
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:599
978
+ msgid "Library Present"
979
+ msgstr "Biblioteca presente"
980
+
981
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:601
982
+ msgid "Debug File Write Permissions"
983
+ msgstr "Depurar arquivo permissões de gravação"
984
+
985
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:607
986
+ msgid "PHP Info"
987
+ msgstr "Informações PHP"
988
+
989
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:611
990
+ msgid "PHP Version"
991
+ msgstr "Versão PHP"
992
+
993
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:613
994
+ msgid "PHP Memory Usage"
995
+ msgstr "Uso de memória"
996
+
997
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:614
998
+ msgid " MB"
999
+ msgstr " MB"
1000
+
1001
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:620
1002
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:629
1003
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:638
1004
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:685
1005
+ msgid "N/A"
1006
+ msgstr "N/A"
1007
+
1008
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:623
1009
+ msgid "PHP Memory Limit"
1010
+ msgstr "Limite de memória"
1011
+
1012
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:632
1013
+ msgid "PHP Max Upload Size"
1014
+ msgstr "Tamanho máximo para carregar"
1015
+
1016
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:641
1017
+ msgid "PHP Max Post Size"
1018
+ msgstr "Tamanho máximo do post"
1019
+
1020
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:645
1021
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:654
1022
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:664
1023
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:673
1024
+ msgid "On"
1025
+ msgstr "Ligado"
1026
+
1027
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:647
1028
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:656
1029
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:666
1030
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:675
1031
+ msgid "Off"
1032
+ msgstr "Desligado"
1033
+
1034
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:650
1035
+ msgid "PHP Safe Mode"
1036
+ msgstr "Modo de segurança"
1037
+
1038
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:659
1039
+ msgid "PHP Allow URL fopen"
1040
+ msgstr "Permitir URL fopen"
1041
+
1042
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:669
1043
+ msgid "PHP Allow URL Include"
1044
+ msgstr "Permitir URL incluir"
1045
+
1046
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:678
1047
+ msgid "PHP Display Errors"
1048
+ msgstr "Erros de exibição"
1049
+
1050
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:688
1051
+ msgid "PHP Max Script Execution Time"
1052
+ msgstr "Tempo máximo de execução de script"
1053
+
1054
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:689
1055
+ msgid "Seconds"
1056
+ msgstr "Segundos"
1057
+
1058
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:695
1059
+ msgid "Active Plugins"
1060
+ msgstr "Plugins ativos"
1061
+
1062
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:706
1063
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:131
1064
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:150
1065
+ msgid "Name"
1066
+ msgstr "Nome"
1067
+
1068
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:708
1069
+ msgid "Plugin URL"
1070
+ msgstr "URL do plugin"
1071
+
1072
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:746
1073
+ msgid "This tab displays the list of all IP addresses which are currently temporarily locked out due to the Login Lockdown feature:"
1074
+ msgstr "Esta guia exibe a lista de todos os endereços IP que estão atualmente bloqueados temporariamente fora devido ao recurso de bloqueio de login:"
1075
+
1076
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:753
1077
+ msgid "Currently Locked Out IP Addresses and Ranges"
1078
+ msgstr "Endereços IP e intervalos atualmente bloqueado"
1079
+
1080
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:796
1081
+ msgid "This tab displays the list of all permanently blocked IP addresses."
1082
+ msgstr "Esta guia exibe a lista de todos os endereços IP bloqueados permanentemente."
1083
+
1084
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:797
1085
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:291
1086
+ msgid "NOTE: This feature does NOT use the .htaccess file to permanently block the IP addresses so it should be compatible with all web servers running WordPress."
1087
+ msgstr "Nota: Esse recurso não usa o arquivo .htaccess para bloquear permanentemente os endereços IP, por isso deve ser compatível com todos os servidores web executando o WordPress."
1088
+
1089
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:803
1090
+ msgid "Permanently Blocked IP Addresses"
1091
+ msgstr "Endereços IP bloqueados permanentemente"
1092
+
1093
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:836
1094
+ msgid "View Logs for All In WP Security & Firewall Plugin"
1095
+ msgstr "Exibir logs para Plugin All In WP Security & Firewall"
1096
+
1097
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:844
1098
+ msgid "Log File"
1099
+ msgstr "Arquivo de log"
1100
+
1101
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:848
1102
+ msgid "--Select a file--"
1103
+ msgstr "--Selecione um arquivo--"
1104
+
1105
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:859
1106
+ msgid "Select one of the log files to view the contents"
1107
+ msgstr "Selecione um dos arquivos de log para exibir os conteúdos"
1108
+
1109
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:864
1110
+ msgid "View Logs"
1111
+ msgstr "Exibir logs"
1112
+
1113
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:884
1114
+ msgid "Log File Contents For"
1115
+ msgstr "Conteúdo do arquivo de log para"
1116
+
1117
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php:898
1118
+ msgid "Log file is empty!"
1119
+ msgstr "Arquivo de log está vazio!"
1120
+
1121
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:26
1122
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:31
1123
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:63
1124
+ msgid "DB Backup"
1125
+ msgstr "Backup do BD"
1126
+
1127
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:30
1128
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:61
1129
+ msgid "DB Prefix"
1130
+ msgstr "Prefixo de BD"
1131
+
1132
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:94
1133
+ msgid "Nonce check failed for DB prefix change operation!"
1134
+ msgstr "Verificação núncio falhou para operação de alteração de prefixo do banco de dados!"
1135
+
1136
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:102
1137
+ msgid "The plugin has detected that it cannot write to the wp-config.php file. This feature can only be used if the plugin can successfully write to the wp-config.php file."
1138
+ msgstr "O plugin detectou que não é possível gravar o arquivo wp-config.php. Este recurso só pode ser usado se o plugin com sucesso pode gravar o arquivo wp-config.php."
1139
+
1140
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:115
1141
+ msgid "Please enter a value for the DB prefix."
1142
+ msgstr "Por favor, insira um valor para o prefixo do banco de dados."
1143
+
1144
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:124
1145
+ msgid "<strong>ERROR</strong>: The table prefix can only contain numbers, letters, and underscores."
1146
+ msgstr "<strong>ERRO</strong>: O prefixo da tabela pode conter apenas números, letras e sublinhados."
1147
+
1148
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:132
1149
+ msgid "Change Database Prefix"
1150
+ msgstr "Alterar prefixo do banco de dados"
1151
+
1152
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:135
1153
+ msgid "Your WordPress DB is the most important asset of your website because it contains a lot of your site's precious information."
1154
+ msgstr "Seu banco de dados WordPress é o ativo mais importante de seu site, porque ele contém muitas informações preciosas do seu site."
1155
+
1156
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:136
1157
+ msgid "The DB is also a target for hackers via methods such as SQL injections and malicious and automated code which targets certain tables."
1158
+ msgstr "O banco de dados também é um alvo para hackers através de métodos tais como injeções de SQL e código malicioso e automatizado que tem como alvo determinadas tabelas."
1159
+
1160
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:137
1161
+ msgid "One way to add a layer of protection for your DB is to change the default WordPress table prefix from \"wp_\" to something else which will be difficult for hackers to guess."
1162
+ msgstr "Uma maneira de adicionar uma camada de proteção para seu Banco de Dados é alterar o prefixo da tabela padrão WordPress \"wp_\" para outra coisa que será difícil para os hackers de adivinhar."
1163
+
1164
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:138
1165
+ msgid "This feature allows you to easily change the prefix to a value of your choice or to a random value set by this plugin."
1166
+ msgstr "Esse recurso permite que você altere facilmente o prefixo para um valor de sua escolha ou para um valor aleatório definido por este plugin."
1167
+
1168
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:144
1169
+ msgid "DB Prefix Options"
1170
+ msgstr "Opções de prefixo do banco de dados"
1171
+
1172
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:155
1173
+ #, php-format
1174
+ msgid "It is recommended that you perform a %s before using this feature"
1175
+ msgstr "É recomendável que você execute um %s antes de usar este recurso"
1176
+
1177
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:164
1178
+ msgid "Current DB Table Prefix"
1179
+ msgstr "Atual prefixo da tabela BD"
1180
+
1181
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:170
1182
+ msgid ""
1183
+ "Your site is currently using the default WordPress DB prefix value of \"wp_\". \n"
1184
+ " To increase your site's security you should consider changing the DB prefix value to another value."
1185
  msgstr ""
1186
+ "Seu site está usando o valor de prefixo padrão do banco de dados WordPress \"wp_\". \n"
1187
+ " Para aumentar a segurança do seu site, você deve considerar mudar o valor de prefixo do banco de dados para outro valor."
1188
+
1189
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:177
1190
+ msgid "Generate New DB Table Prefix"
1191
+ msgstr "Gerar novo prefixo da tabela BD"
1192
+
1193
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:180
1194
+ msgid "Check this if you want the plugin to generate a random 6 character string for the table prefix"
1195
+ msgstr "Marque esta opção se você deseja que o plugin para gerar uma sequência de 6 caracteres aleatórios para o prefixo da tabela"
1196
+
1197
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:181
1198
+ msgid "OR"
1199
+ msgstr "OU"
1200
+
1201
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:183
1202
+ msgid "Choose your own DB prefix by specifying a string which contains letters and/or numbers and/or underscores. Example: xyz_"
1203
+ msgstr "Escolha o seu próprio prefixo do banco de dados especificando uma sequência de caracteres que contém letras, números ou sublinhados. Exemplo: xyz_"
1204
+
1205
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:187
1206
+ msgid "Change DB Prefix"
1207
+ msgstr "Alterar prefixo do banco de dados"
1208
+
1209
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:208
1210
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:87
1211
+ msgid "Nonce check failed for manual DB backup operation!"
1212
+ msgstr "Verificação núncio falhou para operação de backup manual do banco de dados!"
1213
+
1214
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:225
1215
+ msgid "DB Backup was successfully completed! You will receive the backup file via email if you have enabled \"Send Backup File Via Email\", otherwise you can retrieve it via FTP from the following directory:"
1216
+ msgstr "Backup do banco de dados foi concluído com sucesso! Você receberá o arquivo de backup via e-mail se tiver ativado \"Enviar arquivo de backup via e-mail\", caso contrário, você pode recuperá-lo via FTP no seguinte diretório:"
1217
+
1218
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:227
1219
+ msgid "Your DB Backup File location: "
1220
+ msgstr "Seu local do arquivo de backup do BD:"
1221
+
1222
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:234
1223
+ msgid "DB Backup failed. Please check the permissions of the backup directory."
1224
+ msgstr "Backup do banco de dados falhou. Por favor, verifique as permissões do diretório de backup."
1225
 
1226
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:251
1227
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:135
1228
+ msgid "You entered a non numeric value for the \"backup time interval\" field. It has been set to the default value."
1229
+ msgstr "Você digitou um valor não numérico para o campo \"intervalo de tempo de backup\". Foi definido como o valor padrão."
1230
+
1231
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:258
1232
+ msgid "You entered a non numeric value for the \"number of backup files to keep\" field. It has been set to the default value."
1233
+ msgstr "Você digitou um valor não numérico para no campo \"número de arquivos de backup para manter\". Foi definido como o valor padrão."
1234
+
1235
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:265
1236
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:118
1237
+ msgid "You have entered an incorrect email address format. It has been set to your WordPress admin email as default."
1238
+ msgstr "Você digitou um formato de endereço de e-mail incorreto. Foi definido para seu e-mail de administração do WordPress como padrão."
1239
+
1240
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:298
1241
+ msgid "Manual Backup"
1242
+ msgstr "Backup manual"
1243
+
1244
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:303
1245
+ msgid "To create a new DB backup just click on the button below."
1246
+ msgstr "Para criar um novo backup do banco de dados basta clicar no botão abaixo."
1247
+
1248
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:305
1249
+ msgid "Create DB Backup Now"
1250
+ msgstr "Criar backup do banco de dados agora "
1251
+
1252
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:309
1253
+ msgid "Automated Scheduled Backups"
1254
+ msgstr "Backups agendados automatizados"
1255
+
1256
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:321
1257
+ msgid "Enable Automated Scheduled Backups"
1258
+ msgstr "Permitir agendar backups automáticos"
1259
+
1260
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:324
1261
+ msgid "Check this if you want the system to automatically generate backups periodically based on the settings below"
1262
+ msgstr "Marque esta opção se você deseja que o sistema gere automaticamente backups periodicamente, com base nas configurações abaixo"
1263
+
1264
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:328
1265
+ msgid "Backup Time Interval"
1266
+ msgstr "Intervalo de tempo de backup"
1267
+
1268
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:331
1269
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:288
1270
+ msgid "Hours"
1271
+ msgstr "Horas"
1272
+
1273
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:332
1274
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:289
1275
+ msgid "Days"
1276
+ msgstr "Dias"
1277
+
1278
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:333
1279
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:290
1280
+ msgid "Weeks"
1281
+ msgstr "Semanas"
1282
+
1283
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:335
1284
+ msgid "Set the value for how often you would like an automated backup to occur"
1285
+ msgstr "Defina o valor para quantas vezes você gostaria de um backup automatizado para ocorrer"
1286
+
1287
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:339
1288
+ msgid "Number of Backup Files To Keep"
1289
+ msgstr "Número de arquivos de backup para manter"
1290
+
1291
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:341
1292
+ msgid "Thie field allows you to choose the number of backup files you would like to keep in the backup directory"
1293
+ msgstr "O campo permite que você escolha o número de arquivos de backup que você gostaria de manter no diretório de backup"
1294
+
1295
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:345
1296
+ msgid "Send Backup File Via Email"
1297
+ msgstr "Enviar arquivo de backup via e-mail"
1298
+
1299
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:348
1300
+ msgid "Check this if you want the system to email you the backup file after a DB backup has been performed"
1301
+ msgstr "Marque esta opção se você desejar que o sistema envie para e-mail o arquivo de backup após um backup do banco de dados for realizado"
1302
+
1303
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:350
1304
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:235
1305
+ msgid "Enter an email address"
1306
+ msgstr "Digite um endereço de e-mail"
1307
+
1308
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:381
1309
+ msgid "Error - Could not get tables or no tables found!"
1310
+ msgstr "Erro - Não foi possível obter tabelas ou sem tabelas encontradas!"
1311
+
1312
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:385
1313
+ msgid "Starting DB prefix change operations....."
1314
+ msgstr "Iniciando operações de alteração do prefixo do banco de dados....."
1315
+
1316
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:387
1317
+ #, php-format
1318
+ msgid "Your WordPress system has a total of %s tables and your new DB prefix will be: %s"
1319
+ msgstr "Seu sistema WordPress tem um total de %s tabelas e seu novo prefixo DB será: %s"
1320
+
1321
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:393
1322
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility.php:227
1323
+ msgid "Failed to make a backup of the wp-config.php file. This operation will not go ahead."
1324
+ msgstr "Falha ao fazer um backup do arquivo wp-config.php. Esta operação não irá em frente."
1325
+
1326
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:397
1327
+ msgid "A backup copy of your wp-config.php file was created successfully!"
1328
+ msgstr "Uma cópia de backup de seu arquivo wp-config.php foi criada com sucesso!"
1329
+
1330
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:424
1331
+ #, php-format
1332
+ msgid "%s table name update failed"
1333
+ msgstr "Falha na atualização do nome da tabela %s"
1334
+
1335
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:436
1336
  #, php-format
1337
  msgid "Please change the prefix manually for the above tables to: %s"
1338
+ msgstr "Por favor, altere o prefixo manualmente para as tabelas acima para: %s"
1339
 
1340
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:439
1341
  #, php-format
1342
  msgid "%s tables had their prefix updated successfully!"
1343
+ msgstr "O prefixo da tabela %s foi atualizado com sucesso!"
1344
 
1345
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:455
1346
  msgid "wp-config.php file was updated successfully!"
1347
+ msgstr "O arquivo wp-config.php foi atualizado com sucesso!"
1348
 
1349
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:458
1350
  #, php-format
1351
  msgid ""
1352
+ "The \"wp-config.php\" file was not able to be modified. Please modify this file manually using your favourite editor and search \n"
1353
+ " for variable \"$table_prefix\" and assign the following value to that variable: %s"
 
 
1354
  msgstr ""
1355
+ "O arquivo \"wp-config.php\" não foi capaz de ser modificado. Por favor, modifique este arquivo manualmente usando seu editor favorito e procurar \n"
1356
+ " a variável \"$table_prefix\" e atribuir o seguinte valor para essa variável: %s"
1357
 
1358
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:471
1359
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:491
1360
+ #, php-format
1361
+ msgid "Update of table %s failed: unable to change %s to %s"
1362
+ msgstr "Falha na atualização da tabela de %s: Não é possível alterar %s para %s"
1363
 
1364
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:475
1365
+ msgid "The options table records which had references to the old DB prefix were updated successfully!"
1366
+ msgstr "Os registros da tabela de opções que tinham referências ao antigo prefixo DB foram atualizados com sucesso!"
 
 
1367
 
1368
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:495
1369
  #, php-format
1370
+ msgid "The %s table records which had references to the old DB prefix were updated successfully!"
1371
+ msgstr "Os registros da tabela %s que tinham referências ao antigo prefixo DB foram atualizados com sucesso!"
 
 
1372
 
1373
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:524
1374
+ #, php-format
1375
+ msgid "Error updating user_meta table where new meta_key = %s, old meta_key = %s and user_id = %s."
1376
+ msgstr "Erro ao atualizar a tabela de user_meta onde novo meta_key = %s, velho meta_key = %s e user_id = %s."
1377
+
1378
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:529
1379
+ msgid "The usermeta table records which had references to the old DB prefix were updated successfully!"
1380
+ msgstr "Os registros da tabela usermeta que tinham referências ao antigo prefixo DB foram atualizados com sucesso!"
1381
 
1382
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php:531
1383
  msgid "DB prefix change tasks have been completed."
1384
+ msgstr "As tarefas de mudança de prefixo do banco de dados foram concluídas."
1385
 
1386
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:24
1387
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:108
1388
  msgid "File Change Detection"
1389
+ msgstr "Detecção de alteração de arquivo"
1390
+
1391
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:25
1392
+ msgid "Malware Scan"
1393
+ msgstr "Examinar malware"
1394
+
1395
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:26
1396
+ msgid "DB Scan"
1397
+ msgstr "Examinar banco de dados"
1398
 
1399
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:95
1400
+ msgid "There have been no file changes since the last scan."
1401
+ msgstr "Não houve nenhuma alteração de arquivo desde a última verificação."
1402
+
1403
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:105
1404
  msgid "Nonce check failed for manual file change detection scan operation!"
1405
+ msgstr "Verificação núncio falhou para operação de verificação de detecção de alteração de arquivo manual!"
1406
 
1407
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:112
1408
+ msgid "The plugin has detected that this is your first file change detection scan. The file details from this scan will be used to detect file changes for future scans!"
1409
+ msgstr "O plugin detectou que este é a sua primeira verificação de detecção de alteração de arquivo. Os detalhes do arquivo desta verificação serão usados para detectar alterações de arquivo para futuras verificações!"
 
 
 
1410
 
1411
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:114
1412
+ msgid "Scan Complete - There were no file changes detected!"
1413
+ msgstr "Verificação completa - não houve nenhuma alteração de arquivo detectado!"
 
 
 
 
1414
 
1415
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:210
1416
  msgid ""
1417
+ "NEW SCAN COMPLETED: The plugin has detected that you have made changes to the \"File Types To Ignore\" or \"Files To Ignore\" fields.\n"
1418
+ " In order to ensure that future scan results are accurate, the old scan data has been refreshed."
1419
  msgstr ""
1420
+ "NOVA VERIFICAÇÃO CONCLUÍDA: O plugin detectou que você fez alterações para os campos \"Tipos de arquivo para ignorar\" ou \"Arquivos para ignorar\".\n"
1421
+ " Para assegurar que os resultados da verificação futura são exatos, os dados antigos de verificação foram atualizados."
1422
+
1423
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:220
1424
+ msgid "All In One WP Security & Firewall has detected that there was a change in your host's files."
1425
+ msgstr "All In One WP Security e Firewall detectou que houve uma mudança nos arquivos do seu hospedeiro."
1426
 
1427
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:222
1428
  msgid "View Scan Details & Clear This Message"
1429
+ msgstr "Veja os detalhes da verificação e apague esta mensagem"
1430
 
1431
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:231
1432
+ msgid "If given an opportunity hackers can insert their code or files into your system which they can then use to carry out malicious acts on your site."
1433
+ msgstr "Se lhe for dada uma oportunidade os hackers podem inserir o seu código ou arquivos em seu sistema que eles podem usar para realizar atos maliciosos em seu site."
 
 
1434
 
1435
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:232
1436
+ msgid "Being informed of any changes in your files can be a good way to quickly prevent a hacker from causing damage to your website."
1437
+ msgstr "Sendo informado de quaisquer alterações em seus arquivos pode ser uma boa maneira de evitar rapidamente um hacker de causar danos ao seu site."
 
 
1438
 
1439
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:233
1440
+ msgid "In general, WordPress core and plugin files and file types such as \".php\" or \".js\" should not change often and when they do, it is important that you are made aware when a change occurs and which file was affected."
1441
+ msgstr "Em geral, arquivos de núcleo e plugin do WordPress e tipos de arquivo como \".php\" ou \".js\" não devem mudar frequentemente e quando o fazem, é importante que você esteja ciente quando uma alteração ocorre e qual arquivo foi afetado."
 
 
 
1442
 
1443
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:234
1444
+ msgid "The \"File Change Detection Feature\" will notify you of any file change which occurs on your system, including the addition and deletion of files by performing a regular automated or manual scan of your system's files."
1445
+ msgstr "O \"recurso de detecção de alteração de arquivo\" irá notificá-lo de qualquer alteração de arquivo que ocorre em seu sistema, incluindo a adição e exclusão de arquivos através da realização de uma verificação regular, automatizado ou manual de arquivos do seu sistema."
 
 
 
1446
 
1447
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:235
1448
+ msgid "This feature also allows you to exclude certain files or folders from the scan in cases where you know that they change often as part of their normal operation. (For example log files and certain caching plugin files may change often and hence you may choose to exclude such files from the file change detection scan)"
1449
+ msgstr "Este recurso também permite excluir determinados arquivos ou pastas da verificação nos casos em que você sabe que eles mudam frequentemente como parte de sua operação normal. (Por exemplo arquivos de log e determinados arquivos de plugin de cache podem mudar muitas vezes e, portanto, você pode optar por excluir esses arquivos da verificação de detecção de alteração de arquivo)"
 
 
 
 
 
1450
 
1451
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:240
1452
  msgid "Manual File Change Detection Scan"
1453
+ msgstr "Verificação de detecção de alteração manual de arquivo"
1454
 
1455
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:246
1456
+ msgid "To perform a manual file change detection scan click on the button below."
1457
+ msgstr "Para realizar uma verificação de detecção de alteração manual de arquivo clique no botão abaixo."
 
1458
 
1459
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:249
1460
  msgid "Perform Scan Now"
1461
+ msgstr "Efetuar uma verificação agora"
1462
 
1463
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:253
1464
+ msgid "View Last Saved File Change Results"
1465
+ msgstr "Exibir últimos resultados salvos de alteração de arquivo"
1466
+
1467
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:259
1468
+ msgid "Click the button below to view the saved file change results from the last scan."
1469
+ msgstr "Clique no botão abaixo para visualizar os resultados de alteração de arquivos salvos da última verificação."
1470
+
1471
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:262
1472
+ msgid "View Last File Change"
1473
+ msgstr "Visualizar últimas alterações de arquivo"
1474
+
1475
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:266
1476
  msgid "File Change Detection Settings"
1477
+ msgstr "Configuração de detecção de alteração de arquivo"
1478
 
1479
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:278
1480
  msgid "Enable Automated File Change Detection Scan"
1481
+ msgstr "Habilitar a verificação de detecção automatizada de alteração de arquivos"
1482
 
1483
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:281
1484
+ msgid "Check this if you want the system to automatically/periodically scan your files to check for file changes based on the settings below"
1485
+ msgstr "Marque isso, se você deseja que o sistema automaticamente/periodicamente digitalizar seus arquivos para verificar se há alterações de arquivo com base nas configurações abaixo"
 
 
1486
 
1487
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:285
1488
  msgid "Scan Time Interval"
1489
+ msgstr "Intervalo de tempo para verificação"
1490
 
1491
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:292
1492
  msgid "Set the value for how often you would like a scan to occur"
1493
+ msgstr "Defina o valor para quantas vezes você gostaria de ter uma verificação para ocorrer"
1494
 
1495
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:296
1496
  msgid "File Types To Ignore"
1497
+ msgstr "Tipos de arquivo para ignorar"
1498
 
1499
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:299
1500
+ msgid "Enter each file type or extension on a new line which you wish to exclude from the file change detection scan."
1501
+ msgstr "Digite cada tipo de arquivo ou extensão em uma nova linha que você deseja excluir da análise de detecção de alteração de arquivo."
 
 
1502
 
1503
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:303
1504
+ msgid "You can exclude file types from the scan which would not normally pose any security threat if they were changed. These can include things such as image files."
1505
+ msgstr "Você pode excluir tipos de arquivo da verificação que normalmente não representa qualquer ameaça de segurança se eles foram alterados. Estes podem incluir coisas tais como arquivos de imagem."
 
 
 
1506
 
1507
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:304
1508
+ msgid "Example: If you want the scanner to ignore files of type jpg, png, and bmp, then you would enter the following:"
1509
+ msgstr "Exemplo: Se você deseja que a verificação ignore arquivos do tipo jpg, png e bmp, em seguida, você deve digitar o seguinte:"
 
 
1510
 
1511
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:305
1512
  msgid "jpg"
1513
+ msgstr "jpg"
1514
 
1515
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:306
1516
  msgid "png"
1517
+ msgstr "png"
1518
+
1519
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:307
1520
+ msgid "bmp"
1521
+ msgstr "bmp"
1522
+
1523
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:313
1524
+ msgid "Files/Directories To Ignore"
1525
+ msgstr "Arquivos/Diretórios para ignorar"
1526
+
1527
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:316
1528
+ msgid "Enter each file or directory on a new line which you wish to exclude from the file change detection scan."
1529
+ msgstr "Digite cada arquivo ou diretório em uma nova linha que você deseja excluir da análise de detecção de alteração de arquivo."
1530
+
1531
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:320
1532
+ msgid "You can exclude specific files/directories from the scan which would not normally pose any security threat if they were changed. These can include things such as log files."
1533
+ msgstr "Você pode excluir arquivos/diretórios específicos da verificação que normalmente não representem qualquer ameaça à segurança se eles foram alterados. Estes podem incluir coisas tais como arquivos de log."
1534
+
1535
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:321
1536
+ msgid "Example: If you want the scanner to ignore certain files in different directories or whole directories, then you would enter the following:"
1537
+ msgstr "Exemplo: Se você deseja que a verificação ignore determinados arquivos em diferentes pastas ou diretórios inteiros, então você deve digitar o seguinte:"
1538
+
1539
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:322
1540
+ msgid "cache/config/master.php"
1541
+ msgstr "cache/config/master.php"
1542
+
1543
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:323
1544
+ msgid "somedirectory"
1545
+ msgstr "somedirectory"
1546
+
1547
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:329
1548
+ msgid "Send Email When Change Detected"
1549
+ msgstr "Enviar e-mail quando detectada alteração"
1550
+
1551
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:332
1552
+ msgid "Check this if you want the system to email you if a file change was detected"
1553
+ msgstr "Marque esta opção se você deseja que o sistema envie um e-mail, se foi detectada uma alteração no arquivo"
1554
+
1555
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:336
1556
+ msgid "Enter one or more email addresses on a new line."
1557
+ msgstr "Digite um ou mais endereços de e-mail em uma nova linha."
1558
+
1559
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:352
1560
+ msgid "What is Malware?"
1561
+ msgstr "O que é Malware?"
1562
+
1563
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:353
1564
+ msgid "The word Malware stands for Malicious Software. It can consist of things like trojan horses, adware, worms, spyware and any other undesirable code which a hacker will try to inject into your website."
1565
+ msgstr "A palavra Malware significa software malicioso. Ele pode consistir de coisas como cavalos de tróia, adware, worms, spyware e qualquer outro código indesejável que um hacker irá tentar injetar em seu site."
1566
+
1567
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:354
1568
+ msgid "Often when malware code has been inserted into your site you will normally not notice anything out of the ordinary based on appearances, but it can have a dramatic effect on your site's search ranking."
1569
+ msgstr "Muitas vezes, quando código de malware foi inserido em seu site você normalmente não vai notar nada fora do comum, com base em aparências, mas pode ter um efeito dramático no ranking de busca do seu site."
1570
+
1571
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:355
1572
+ msgid "This is because the bots and spiders from search engines such as Google have the capability to detect malware when they are indexing the pages on your site, and consequently they can blacklist your website which will in turn affect your search rankings."
1573
+ msgstr "Isso ocorre porque os robôs e aranhas dos motores de busca como o Google tem a capacidade de detectar malware quando eles estão indexando as páginas do seu site, e, consequentemente, pode barrar seu site, que por sua vez irá afetar seus rankings de busca."
1574
+
1575
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:359
1576
+ msgid "Scanning For Malware"
1577
+ msgstr "Verificação de Malware"
1578
+
1579
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:360
1580
+ msgid "Due to the constantly changing and complex nature of Malware, scanning for such things using a standalone plugin will not work reliably. This is something best done via an external scan of your site regularly."
1581
+ msgstr "Devido à natureza de constante mudança e complexo de Malware, verificação para tais coisas usando um plugin autônomo não vai funcionar de forma confiável. Isso é algo melhor feito através de uma verificação externa de seu site regularmente."
1582
+
1583
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:361
1584
+ msgid "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."
1585
+ msgstr "É por isso que criamos um serviço de verificação de fácil utilização que está hospedado fora de nosso próprio servidor, que irá analisar o seu site em busca de malware, uma vez por dia e notificá-lo se ele encontrar qualquer coisa."
1586
+
1587
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:362
1588
+ msgid "When you sign up for this service you will get the following:"
1589
+ msgstr "Quando você se inscrever para este serviço, você receberá o seguinte:"
1590
+
1591
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:364
1592
+ msgid "Automatic Daily Scan of 1 Website"
1593
+ msgstr "Verificação automática diária de 1 site"
1594
+
1595
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:365
1596
+ msgid "Automatic Malware & Blacklist Monitoring"
1597
+ msgstr "Monitoramento de lista negra e malware automático"
1598
+
1599
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:366
1600
+ msgid "Automatic Email Alerting"
1601
+ msgstr "Alerta automático por e-mail"
1602
+
1603
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:367
1604
+ msgid "Site uptime monitoring"
1605
+ msgstr "Monitoramento do tempo de atividade do site"
1606
+
1607
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:368
1608
+ msgid "Site response time monitoring"
1609
+ msgstr "Monitoramento do tempo de resposta do site"
1610
+
1611
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:369
1612
+ msgid "Malware Cleanup"
1613
+ msgstr "Limpeza de malware"
1614
+
1615
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:370
1616
+ msgid "Blacklist Removal"
1617
+ msgstr "Remoção da lista negra"
1618
+
1619
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:371
1620
+ msgid "No Contract (Cancel Anytime)"
1621
+ msgstr "Não há contrato (cancelar a qualquer momento)"
1622
 
1623
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:373
1624
+ #, php-format
1625
+ msgid "To learn more please %s."
1626
+ msgstr "Para saber mais, por favor %s."
1627
 
1628
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:383
1629
+ msgid "This feature performs a basic database scan which will look for any common suspicious-looking strings and javascript and html code in some of the Wordpress core tables."
1630
+ msgstr "Esse recurso executa uma verificação de banco de dados básico que irá procurar qualquer sequências de caracteres comuns de aparência suspeita, código javascript e html em algumas das tabelas de núcleo do Wordpress."
1631
 
1632
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:400
1633
+ msgid "Nonce check failed for manual db scan operation!"
1634
+ msgstr "Verificação núncio falhou para operação de verificação manual do banco de dados!"
 
 
1635
 
1636
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:411
1637
+ msgid "This feature will perform a basic database scan which will look for any common suspicious-looking strings and javascript and html code in some of the Wordpress core tables."
1638
+ msgstr "Esta característica irá executar uma verificação de banco de dados básico que irá procurar qualquer sequências de caracteres comuns de aparência suspeita, código javascript e html em algumas das tabelas de núcleo do Wordpress."
 
 
 
1639
 
1640
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:412
1641
+ msgid "If the scan finds anything it will list all \"potentially\" malicious results but it is up to you to verify whether a result is a genuine example of a hacking attack or a false positive."
1642
+ msgstr "Se a verificação encontrar qualquer coisa, irá listar todos os resultados maliciosos \"potencialmente\", mas é até você para verificar se o resultado é um verdadeiro exemplo de um ataque de hacker ou um falso positivo."
 
 
1643
 
1644
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:413
1645
+ msgid "As well as scanning for generic strings commonly used in malicious cases, this feature will also scan for some of the known \"pharma\" hack entries and if it finds any it will automatically delete them."
1646
+ msgstr "Assim como a verificação de sequências de caracteres genéricos comumente usados em casos de maliciosos, esse recurso também procura algumas das entradas \"pharma\" conhecidas de hack e se encontrar qualquer irá excluí-los automaticamente."
1647
 
1648
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:414
1649
+ msgid "The WordPress core tables scanned by this feature include: posts, postmeta, comments, links, users, usermeta, and options tables."
1650
+ msgstr "As tabelas de núcleo do WordPress digitalizadas por esse recurso incluem: posts, postmeta, comentários, links, usuários, usermeta e opções de tabelas."
1651
 
1652
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:419
1653
+ msgid "Database Scan"
1654
+ msgstr "Examinar banco de dados"
1655
 
1656
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:425
1657
+ msgid "To perform a database scan click on the button below."
1658
+ msgstr "Para executar uma verificação de banco de dados, clique no botão abaixo."
 
1659
 
1660
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:428
1661
+ msgid "Perform DB Scan"
1662
+ msgstr "Realizar verificação DB"
1663
+
1664
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:461
1665
  msgid "Latest File Change Scan Results"
1666
+ msgstr "Últimos resultados de verificação de alteração de arquivo"
1667
 
1668
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:470
1669
  msgid "The following files were added to your host."
1670
  msgstr "Os seguintes arquivos foram adicionados para o seu host."
1671
 
1672
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:473
1673
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:494
1674
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:518
1675
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:27
1676
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:28
1677
  msgid "File"
1678
  msgstr "Arquivo"
1679
 
1680
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:474
1681
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:495
1682
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:519
1683
  msgid "File Size"
1684
+ msgstr "Tamanho do arquivo"
1685
 
1686
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:475
1687
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:496
1688
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:520
1689
  msgid "File Modified"
1690
+ msgstr "Arquivo modificado"
1691
 
1692
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:491
1693
  msgid "The following files were removed from your host."
1694
  msgstr "Os seguintes arquivos foram removidos do seu provedor."
1695
 
1696
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php:515
1697
  msgid "The following files were changed on your host."
1698
  msgstr "Os seguintes arquivos foram alterados em seu provedor."
1699
 
1700
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:26
1701
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:67
1702
  msgid "File Permissions"
1703
+ msgstr "Permissões de arquivos"
1704
 
1705
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:27
1706
  msgid "PHP File Editing"
1707
+ msgstr "Edição de arquivo PHP"
1708
 
1709
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:28
1710
  msgid "WP File Access"
1711
+ msgstr "Acesso ao arquivo WP"
1712
 
1713
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:29
1714
  msgid "Host System Logs"
1715
+ msgstr "Logs do sistema hospedeiro"
1716
 
1717
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:97
1718
  #, php-format
1719
  msgid "The permissions for %s were succesfully changed to %s"
1720
+ msgstr "As permissões de %s foram alteradas com sucesso para %s"
1721
 
1722
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:101
1723
  #, php-format
1724
  msgid "Unable to change permissions for %s!"
1725
+ msgstr "Não foi possível alterar as permissões de %s!"
1726
 
1727
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:107
1728
  msgid "File Permissions Scan"
1729
+ msgstr "Verificação de permissão de arquivos"
1730
 
1731
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:110
1732
+ msgid "Your WordPress file and folder permission settings govern the accessability and read/write privileges of the files and folders which make up your WP installation."
1733
+ msgstr "Suas configurações de permissão de arquivo e pasta WordPress governam os privilégios de acessibilidades e leitura/gravação de arquivos e pastas que compõem sua instalação do WP."
 
 
 
1734
 
1735
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:111
1736
+ msgid "Your WP installation already comes with reasonably secure file permission settings for the filesystem."
1737
+ msgstr "Sua instalação WP vem com configurações de permissão de arquivo razoavelmente segura para o sistema de arquivos."
 
 
1738
 
1739
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:112
1740
+ msgid "However, sometimes people or other plugins modify the various permission settings of certain core WP folders or files such that they end up making their site less secure because they chose the wrong permission values."
1741
+ msgstr "No entanto, às vezes as pessoas ou outros plugins modificar as várias configurações de permissão de determinados arquivos ou pastas do núcleo WP tal que eles acabam fazendo com que seu site menos seguro porque eles escolheram os valores de permissão errados."
 
 
 
1742
 
1743
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:113
1744
+ msgid "This feature will scan the critical WP core folders and files and will highlight any permission settings which are insecure."
1745
+ msgstr "Esta recurso irá verificar as pastas e arquivos críticos do núcleo WP e irá destacar quaisquer configurações de permissão que são inseguros."
 
 
1746
 
1747
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:119
1748
  msgid "WP Directory and File Permissions Scan Results"
1749
+ msgstr "Resultados de pesquisa de permissões de arquivo e diretório WP"
1750
 
1751
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:132
1752
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:151
1753
  msgid "File/Folder"
1754
+ msgstr "Arquivo / Pasta"
1755
 
1756
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:133
1757
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:152
1758
  msgid "Current Permissions"
1759
+ msgstr "Permissões atuais"
1760
 
1761
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:134
1762
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:153
1763
  msgid "Recommended Permissions"
1764
+ msgstr "Permissões recomendadas"
1765
 
1766
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:135
1767
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:154
1768
  msgid "Recommended Action"
1769
+ msgstr "Ação recomendada"
1770
 
1771
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:192
1772
  msgid "Your PHP file editing settings were saved successfully."
1773
+ msgstr "Suas configurações de edição de arquivos PHP foram salvas com sucesso."
1774
 
1775
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:196
1776
+ msgid "Operation failed! Unable to modify or make a backup of wp-config.php file!"
1777
+ msgstr "Operação falhou! Não é possível modificar ou fazer um backup do arquivo wp-config.php!"
 
1778
 
1779
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:209
1780
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:69
1781
  msgid "File Editing"
1782
+ msgstr "Edição de arquivo"
1783
 
1784
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:212
1785
+ msgid "The Wordpress Dashboard by default allows administrators to edit PHP files, such as plugin and theme files."
1786
+ msgstr "O painel do Wordpress por padrão permite que os administradores editar arquivos PHP, tais como arquivos de plugin e tema."
 
 
1787
 
1788
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:213
1789
+ msgid "This is often the first tool an attacker will use if able to login, since it allows code execution."
1790
+ msgstr "Isso é muitas vezes a primeira ferramenta que um invasor irá usar se for capaz de fazer o login, uma vez que permite a execução de código."
 
 
1791
 
1792
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:214
1793
+ msgid "This feature will disable the ability for people to edit PHP files via the dashboard."
1794
+ msgstr "Este recurso irá desativar a capacidade para as pessoas editar arquivos PHP através do painel de controle."
 
 
1795
 
1796
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:220
1797
  msgid "Disable PHP File Editing"
1798
+ msgstr "Desativar edição de arquivo PHP"
1799
 
1800
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:232
1801
  msgid "Disable Ability To Edit PHP Files"
1802
+ msgstr "Desativar a capacidade para editar arquivos PHP"
 
 
 
 
 
 
1803
 
1804
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:235
1805
+ msgid "Check this if you want to remove the ability for people to edit PHP files via the WP dashboard"
1806
+ msgstr "Marque esta opção se você deseja remover a capacidade de pessoas para editar arquivos PHP através do painel WP"
 
 
1807
 
1808
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:279
1809
+ msgid "You have successfully saved the Prevent Access to Default WP Files configuration."
1810
+ msgstr "Você salvou com sucesso a impedir acesso à configuração de arquivos padrão do WP."
 
 
 
 
 
 
1811
 
1812
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:288
1813
  msgid "WordPress Files"
1814
+ msgstr "Arquivos WordPress"
1815
 
1816
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:291
1817
  #, php-format
1818
+ msgid "This feature allows you to prevent access to files such as %s, %s and %s which are delivered with all WP installations."
1819
+ msgstr "Esse recurso permite-lhe impedir o acesso a arquivos, como %s, %s e %s, que são entregues com todas as instalações WP."
 
 
1820
 
1821
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:292
1822
+ msgid "By preventing access to these files you are hiding some key pieces of information (such as WordPress version info) from potential hackers."
1823
+ msgstr "Ao impedir o acesso a esses arquivos que você está escondendo algumas peças-chave de informação (por exemplo, informações de versão do WordPress) dos potenciais hackers."
 
 
1824
 
1825
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:297
1826
  msgid "Prevent Access to Default WP Files"
1827
+ msgstr "Impedir o acesso a arquivos padrão do WP"
1828
 
1829
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:308
1830
  msgid "Prevent Access to WP Default Install Files"
1831
+ msgstr "Impedir o acesso a arquivos de instalação padrão do WP"
1832
 
1833
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:311
1834
+ msgid "Check this if you want to prevent access to readme.html, license.txt and wp-config-sample.php."
1835
+ msgstr "Marque esta opção se você deseja impedir o acesso a readme.html, license.txt and wp-config-sample.php."
 
 
1836
 
1837
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:315
1838
  msgid "Save Setting"
1839
+ msgstr "Salvar configuração"
1840
 
1841
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:339
1842
  msgid "System Logs"
1843
+ msgstr "Logs do sistema"
1844
 
1845
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:342
1846
+ msgid "Sometimes your hosting platform will produce error or warning logs in a file called \"error_log\"."
1847
+ msgstr "Às vezes sua plataforma de hospedagem irá produzir erro ou logs de aviso em um arquivo chamado \"error_log\"."
 
 
1848
 
1849
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:343
1850
+ msgid "Depending on the nature and cause of the error or warning, your hosting server can create multiple instances of this file in numerous directory locations of your WordPress installation."
1851
+ msgstr "Dependendo da natureza e da causa do erro ou aviso, seu servidor de hospedagem pode criar várias instâncias deste arquivo em vários locais do diretório de sua instalação do WordPress."
 
 
 
1852
 
1853
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:344
1854
+ msgid "By occassionally viewing the contents of these logs files you can keep informed of any underlying problems on your system which you might need to address."
1855
+ msgstr "Por ocasionalmente exibindo o conteúdo desses arquivos de logs que pode manter-se informado de quaisquer problemas subjacentes em seu sistema que você pode precisar do endereço para resolver."
 
 
 
1856
 
1857
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:350
1858
  msgid "View System Logs"
1859
+ msgstr "Ver logs do sistema"
1860
 
1861
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:355
1862
  msgid "Enter System Log File Name"
1863
+ msgstr "Digite o nome do arquivo de log do sistema"
1864
 
1865
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:357
1866
  msgid "Enter your system log file name. (Defaults to error_log)"
1867
+ msgstr "Digite seu nome de arquivo de log do sistema. (Padrões para error_log)"
1868
 
1869
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:360
1870
  msgid "View Latest System Logs"
1871
+ msgstr "Ver logs mais recentes do sistema"
1872
 
1873
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:362
1874
  msgid "Loading..."
1875
+ msgstr "Carregando..."
1876
 
1877
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:379
1878
  msgid "No system logs were found!"
1879
+ msgstr "Nenhum registro de logs do sistema foram encontrados!"
1880
 
1881
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:432
1882
  msgid "Set Recommended Permissions"
1883
+ msgstr "Conjunto recomendado de permissões"
1884
 
1885
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:438
1886
  msgid "No Action Required"
1887
+ msgstr "Nenhuma ação necessária"
1888
 
1889
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php:478
1890
  #, php-format
1891
  msgid "Showing latest entries of error_log file: %s"
1892
+ msgstr "Mostrando as últimas entradas de arquivo error_log: %s"
1893
 
1894
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:28
1895
  msgid "Basic Firewall Rules"
1896
+ msgstr "Regras básicas do firewall"
1897
 
1898
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:29
1899
  msgid "Additional Firewall Rules"
1900
+ msgstr "Regras adicionais do firewall"
1901
 
1902
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:30
1903
+ msgid "6G Blacklist Firewall Rules"
1904
+ msgstr "Regras do firewall de lista negra 6G"
1905
 
1906
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:31
1907
+ msgid "Internet Bots"
1908
+ msgstr "Robôs da internet"
1909
+
1910
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:32
1911
+ msgid "Prevent Hotlinks"
1912
+ msgstr "Impedir hotlinks"
1913
 
1914
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:33
1915
+ msgid "404 Detection"
1916
+ msgstr "Detecção 404"
1917
+
1918
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:34
1919
+ msgid "Custom Rules"
1920
+ msgstr "Regras personalizadas"
1921
+
1922
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:119
1923
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:722
1924
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:105
1925
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:448
1926
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:97
1927
  msgid "Settings were successfully saved"
1928
+ msgstr "Configurações foram salvas com sucesso"
1929
 
1930
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:128
1931
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:543
1932
  msgid "Firewall Settings"
1933
+ msgstr "Configurações do firewall"
1934
 
1935
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:135
1936
  #, php-format
1937
+ msgid "This should not have any impact on your site's general functionality but if you wish you can take a %s of your .htaccess file before proceeding."
1938
+ msgstr "Isto não deve ter nenhum impacto sobre a funcionalidade geral do seu site, mas se você quiser, você pode tomar um %s do seu arquivo .htaccess antes de prosseguir."
 
 
1939
 
1940
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:136
1941
+ msgid "The features in this tab allow you to activate some basic firewall security protection rules for your site."
1942
+ msgstr "Os recursos neste guia permitem que você ative algumas regras básicas de proteção de segurança de firewall para o seu site."
 
 
1943
 
1944
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:137
1945
+ msgid "The firewall functionality is achieved via the insertion of special code into your currently active .htaccess file."
1946
+ msgstr "A funcionalidade de firewall é conseguida através da inserção de código especial em seu arquivo .htaccess atualmente ativo."
1947
+
1948
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:147
1949
+ msgid "Attention:"
1950
+ msgstr "Atenção:"
1951
+
1952
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:148
1953
+ msgid "Currently the "
1954
+ msgstr "Atualmente o "
1955
 
1956
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:148
1957
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:195
1958
+ msgid "Enable Pingback Protection"
1959
+ msgstr "Habilitar proteção Pingback"
1960
+
1961
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:148
1962
+ msgid " is active."
1963
+ msgstr " está ativo"
1964
+
1965
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:149
1966
+ msgid "Please beware that if you are using the WordPress iOS App, then you will need to deactivate this feature in order for the app to work properly."
1967
+ msgstr "Por favor, cuidado com isso se você estiver usando o WordPress iOS App e, em seguida, você precisará desativar esse recurso para que o aplicativo funcione corretamente."
1968
+
1969
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:157
1970
  msgid "Basic Firewall Settings"
1971
+ msgstr "Configurações de firewall básico"
1972
 
1973
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:165
1974
  msgid "Enable Basic Firewall Protection"
1975
+ msgstr "Habilitar proteção de firewall básico"
1976
 
1977
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:168
1978
  msgid "Check this if you want to apply basic firewall protection to your site."
1979
+ msgstr "Marque esta opção se você deseja aplicar a proteção de firewall básico para o seu site."
1980
 
1981
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:172
1982
+ msgid "This setting will implement the following basic firewall protection mechanisms on your site:"
1983
+ msgstr "Esta configuração irá implementar os seguintes mecanismos de proteção básica do firewall no seu site:"
 
 
1984
 
1985
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:173
1986
  msgid "1) Protect your htaccess file by denying access to it."
1987
+ msgstr "1) Proteja o seu arquivo .htaccess, negando o acesso a ele."
1988
 
1989
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:174
1990
  msgid "2) Disable the server signature."
1991
+ msgstr "2) Desativa a assinatura do servidor."
1992
 
1993
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:175
1994
  msgid "3) Limit file upload size (10MB)."
1995
+ msgstr "3) Limita o tamanho de upload de arquivo (10MB)."
1996
 
1997
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:176
1998
  msgid "4) Protect your wp-config.php file by denying access to it."
1999
+ msgstr "4) Protege seu arquivo wp-config.php, negando o acesso a ele."
2000
 
2001
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:177
2002
+ msgid "The above firewall features will be applied via your .htaccess file and should not affect your site's overall functionality."
2003
+ msgstr "Os recursos de firewall acima serão aplicados através de seu arquivo .htaccess e não devem afetar a funcionalidade geral do seu site."
 
 
2004
 
2005
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:178
2006
+ msgid "You are still advised to take a backup of your active .htaccess file just in case."
2007
+ msgstr "Ainda é aconselhável fazer um backup de seu arquivo .htaccess ativo apenas no caso."
 
 
2008
 
2009
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:187
2010
  msgid "WordPress Pingback Vulnerability Protection"
2011
+ msgstr "Proteção de vulnerabilidade pingback do WordPress"
 
 
 
 
2012
 
2013
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:198
2014
+ msgid "Check this if you are not using the WP XML-RPC functionality and you want to enable protection against WordPress pingback vulnerabilities."
2015
+ msgstr "Marque esta opção se você não estiver usando a funcionalidade XML-RPC WP e você deseja habilitar a proteção contra vulnerabilidades pingback do WordPress."
 
 
2016
 
2017
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:202
2018
+ msgid "This setting will add a directive in your .htaccess to disable access to the WordPress xmlrpc.php file which is responsible for the XML-RPC functionality such as pingbacks in WordPress."
2019
+ msgstr "Esta configuração irá adicionar uma diretiva no seu .htaccess para desabilitar o acesso ao arquivo xmlrpc.php WordPress, que é responsável pela funcionalidade XML-RPC como pingbacks em WordPress."
 
 
 
2020
 
2021
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:203
2022
+ msgid "Hackers can exploit various pingback vulnerabilities in the WordPress XML-RPC API in a number of ways such as:"
2023
+ msgstr "Os hackers podem explorar várias vulnerabilidades pingback no WordPress XML-RPC API em um número de maneiras tais como:"
 
 
2024
 
2025
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:204
2026
  msgid "1) Denial of Service (DoS) attacks"
2027
+ msgstr "1) Ataques de negação de serviço (DoS)"
2028
 
2029
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:205
2030
  msgid "2) Hacking internal routers."
2031
+ msgstr "2) Roteadores internos pirata."
2032
 
2033
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:206
2034
  msgid "3) Scanning ports in internal networks to get info from various hosts."
2035
+ msgstr "3) Varredura de portas em redes internas para obter informações de vários hosts."
2036
 
2037
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:207
2038
+ msgid "Apart from the security protection benefit, this feature may also help reduce load on your server, particularly if your site currently has a lot of unwanted traffic hitting the XML-RPC API on your installation."
2039
+ msgstr "Além do benefício de proteção de segurança, esse recurso também pode ajudar a reduzir a carga no seu servidor, especialmente quando o site tem atualmente uma grande quantidade de tráfego indesejado, batendo o XML-RPC API em sua instalação."
 
 
 
2040
 
2041
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:208
2042
+ msgid "NOTE: You should only enable this feature if you are not currently using the XML-RPC functionality on your WordPress installation."
2043
+ msgstr "NOTA: Você deve ativar esse recurso se você não estiver usando atualmente a funcionalidade XML-RPC em sua instalação do WordPress."
2044
+
2045
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:217
2046
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:81
2047
+ msgid "Block Accesss to Debug Log File"
2048
+ msgstr "Bloquear o acesso ao arquivo de registro de depuração"
2049
+
2050
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:225
2051
+ msgid "Block Access to debug.log File"
2052
+ msgstr "Bloquear o acesso ao arquivo debug.log"
2053
 
2054
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:228
2055
+ msgid "Check this if you want to block access to the debug.log file that WordPress creates when debug logging is enabled."
2056
+ msgstr "Marque esta opção se você deseja bloquear o acesso ao arquivo debug.log que o WordPress cria quando o registo de depuração está habilitado."
2057
+
2058
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:232
2059
+ msgid "WordPress has an option to turn on the debug logging to a file located in wp-content/debug.log. This file may contain sensitive information."
2060
+ msgstr "WordPress tem uma opção para ativar o registro de depuração para um arquivo localizado em wp-content/debug.log. Este arquivo pode conter informações confidenciais."
2061
+
2062
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:233
2063
+ msgid "Using this optoin will block external access to this file. You can still access this file by logging into your site via FTP"
2064
+ msgstr "Usando este optoin irá bloquear o acesso externo a este arquivo. Você ainda pode acessar esse arquivo, entrando em seu site via FTP"
2065
+
2066
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:241
2067
  msgid "Save Basic Firewall Settings"
2068
+ msgstr "Salvar configurações de firewall básico"
2069
 
2070
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:313
2071
+ msgid "You have successfully saved the Additional Firewall Protection configuration"
2072
+ msgstr "Você salvou com sucesso a configuração adicional de proteção por firewall"
 
2073
 
2074
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:327
2075
  msgid "Additional Firewall Protection"
2076
+ msgstr "Proteção de firewall adicional"
2077
 
2078
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:331
2079
  #, php-format
2080
+ msgid "Due to the nature of the code being inserted to the .htaccess file, this feature may break some functionality for certain plugins and you are therefore advised to take a %s of .htaccess before applying this configuration."
2081
+ msgstr "Devido à natureza do código que está sendo inserido no arquivo .htaccess, esse recurso pode quebrar algumas funcionalidades para certos plugins e, portanto, você é aconselhado a tomar um %s do .htaccess antes de aplicar essa configuração."
 
 
 
 
2082
 
2083
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:333
2084
+ msgid "This feature allows you to activate more advanced firewall settings to your site."
2085
+ msgstr "Este recurso permite que você ative as configurações de firewall mais avançadas para o seu site."
 
 
2086
 
2087
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:334
2088
+ msgid "The advanced firewall rules are applied via the insertion of special code to your currently active .htaccess file."
2089
+ msgstr "As regras de firewall avançado são aplicadas através da inserção de código especial para seu arquivo .htaccess atualmente ativo."
 
 
2090
 
2091
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:343
2092
  msgid "Listing of Directory Contents"
2093
+ msgstr "Listagem do conteúdo do diretório"
2094
 
2095
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:352
2096
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:92
2097
  msgid "Disable Index Views"
2098
+ msgstr "Desabilitar visualizações de índice"
2099
 
2100
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:355
2101
  msgid "Check this if you want to disable directory and file listing."
2102
+ msgstr "Marque esta opção se você deseja desativar o diretório e lista de arquivos."
2103
 
2104
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:360
2105
+ msgid "By default, an Apache server will allow the listing of the contents of a directory if it doesn't contain an index.php file."
2106
+ msgstr "Por padrão, um servidor Apache permitirá a listagem do conteúdo de um diretório, se ele não contém um arquivo index.php."
 
 
2107
 
2108
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:362
2109
  msgid "This feature will prevent the listing of contents for all directories."
2110
+ msgstr "Este recurso impedirá a listagem de conteúdos para todos os diretórios."
2111
 
2112
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:364
2113
+ msgid "NOTE: In order for this feature to work \"AllowOverride\" of the Indexes directive must be enabled in your httpd.conf file. Ask your hosting provider to check this if you don't have access to httpd.conf"
2114
+ msgstr "NOTA: Para que este recurso funcione \"AllowOverride\" da directiva índices deve estar habilitada no seu arquivo httpd.conf. Pergunte ao seu provedor de hospedagem para verificar isso, se você não tem acesso ao httpd.conf "
 
 
 
2115
 
2116
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:373
2117
  msgid "Trace and Track"
2118
+ msgstr "Rastrear e acompanhar"
2119
 
2120
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:382
2121
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:93
2122
  msgid "Disable Trace and Track"
2123
+ msgstr "Desabilitar o rastreamento e acompanhamento"
2124
 
2125
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:385
2126
  msgid "Check this if you want to disable trace and track."
2127
+ msgstr "Marque esta opção se você deseja desativar o rastreamento e acompanhamento."
2128
 
2129
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:390
2130
+ msgid "HTTP Trace attack (XST) can be used to return header requests and grab cookies and other information."
2131
+ msgstr "Ataque de rastreamento HTTP (XST) pode ser usado para retornar solicitações de cabeçalho e cookies de apoio e outras informações."
 
 
2132
 
2133
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:392
2134
+ msgid "This hacking technique is usually used together with cross site scripting attacks (XSS)."
2135
+ msgstr "Esta técnica de hacking é geralmente usado em conjunto com ataques de script entre sites (XSS)."
 
 
2136
 
2137
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:394
2138
+ msgid "Disabling trace and track on your site will help prevent HTTP Trace attacks."
2139
+ msgstr "Desabilitação de rastreamento e acompanhamento em seu site irá ajudar a evitar ataques de rastreamento HTTP."
 
2140
 
2141
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:403
2142
  msgid "Proxy Comment Posting"
2143
+ msgstr "Postagem de comentário proxy"
2144
 
2145
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:413
2146
  msgid "Forbid Proxy Comment Posting"
2147
+ msgstr "Proibir postagem de comentários de proxy"
2148
 
2149
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:416
2150
  msgid "Check this if you want to forbid proxy comment posting."
2151
+ msgstr "Marque esta opção se você deseja proibir postagem de comentários de proxy."
2152
 
2153
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:421
2154
+ msgid "This setting will deny any requests that use a proxy server when posting comments."
2155
+ msgstr "Essa configuração negará quaisquer solicitações que usam um servidor proxy ao postar comentários."
 
 
2156
 
2157
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:422
2158
+ msgid "By forbidding proxy comments you are in effect eliminating some SPAM and other proxy requests."
2159
+ msgstr "Proibindo comentários de proxy, você está em efeito, eliminando alguns SPAM e outras solicitações de proxy."
 
 
2160
 
2161
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:431
2162
  msgid "Bad Query Strings"
2163
+ msgstr "Sequências de caracteres de consulta ruim"
2164
 
2165
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:441
2166
  msgid "Deny Bad Query Strings"
2167
+ msgstr "Negar sequências de caracteres de consulta ruim"
2168
 
2169
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:444
2170
  msgid "This will help protect you against malicious queries via XSS."
2171
+ msgstr "Isso ajudará a protegê-lo contra consultas maliciosas via XSS."
2172
 
2173
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:449
2174
+ msgid "This feature will write rules in your .htaccess file to prevent malicious string attacks on your site using XSS."
2175
+ msgstr "Esse recurso irá escrever regras em seu arquivo .htaccess para impedir ataques maliciosos de sequência de caracteres no seu site usando XSS."
 
 
2176
 
2177
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:450
2178
+ msgid "NOTE: Some of these strings might be used for plugins or themes and hence this might break some functionality."
2179
+ msgstr "NOTA: Algumas destas sequências de caracteres podem ser usadas para plugins ou temas e, portanto, isso pode quebrar algumas funcionalidades."
 
 
2180
 
2181
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:451
2182
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:481
2183
+ msgid "You are therefore strongly advised to take a backup of your active .htaccess file before applying this feature."
2184
+ msgstr "É, portanto, fortemente aconselhável fazer um backup de seu arquivo .htaccess ativo antes de aplicar esse recurso."
 
 
2185
 
2186
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:460
2187
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:96
2188
  msgid "Advanced Character String Filter"
2189
+ msgstr "Filtro de sequência de caráter avançado"
2190
 
2191
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:470
2192
  msgid "Enable Advanced Character String Filter"
2193
+ msgstr "Habilitar filtro de sequência de caráter avançado"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2194
 
2195
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:473
2196
+ msgid "This will block bad character matches from XSS."
2197
+ msgstr "Isto irá bloquear mau caráter corresponde de XSS."
2198
 
2199
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:478
2200
+ msgid "This is an advanced character string filter to prevent malicious string attacks on your site coming from Cross Site Scripting (XSS)."
2201
+ msgstr "Este é um filtro de sequência de caracteres de caráter avançado para impedir ataques maliciosos de sequência de caracteres em seu site vindo de Cross Site Scripting (XSS)."
 
 
2202
 
2203
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:479
2204
+ msgid "This setting matches for common malicious string patterns and exploits and will produce a 403 error for the hacker attempting the query."
2205
+ msgstr "Essa configuração corresponde para exploits e padrões comuns de sequência malicioso e produzirá um erro 403 para o hacker tentar a consulta."
 
 
 
2206
 
2207
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:480
2208
+ msgid "NOTE: Some strings for this setting might break some functionality."
2209
+ msgstr "NOTA: Algumas sequências de caracteres para esta configuração podem quebrar algumas funcionalidades."
 
 
 
 
2210
 
2211
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:489
2212
+ msgid "Save Additional Firewall Settings"
2213
+ msgstr "Salvar configurações de firewall adicional"
 
 
 
 
2214
 
2215
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:532
2216
+ msgid "You have successfully saved the 5G/6G Firewall Protection configuration"
2217
+ msgstr "Você salvou com sucesso a configuração de proteção de firewall 5G/6G"
 
 
2218
 
2219
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:547
2220
  #, php-format
2221
+ msgid "This feature allows you to activate the %s (or legacy %s) firewall security protection rules designed and produced by %s."
2222
+ msgstr "Esse recurso permite que você ative o %s (ou %s legado) regras de proteção de segurança de firewall projetado e produzido por %s."
 
 
 
 
 
2223
 
2224
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:548
2225
+ msgid "The 6G Blacklist is updated and improved version of 5G Blacklist. If you have 5G Blacklist active, you might consider activating 6G Blacklist instead."
2226
+ msgstr "A lista negra 6G é atualizada e melhorada da versão da lista negra 5G. Se você tem lista negra 5G ativa, você pode considerar ativando a lista negra 6G em vez disso."
 
2227
 
2228
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:549
2229
+ msgid "The 6G Blacklist is a simple, flexible blacklist that helps reduce the number of malicious URL requests that hit your website."
2230
+ msgstr "Lista negra 6G é uma lista negra simples, flexível, que ajuda a reduzir o número de solicitações de URL maliciosas que atingem seu site."
 
2231
 
2232
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:550
2233
+ msgid "The added advantage of applying the 6G firewall to your site is that it has been tested and confirmed by the people at PerishablePress.com to be an optimal and least disruptive set of .htaccess security rules for general WP sites running on an Apache server or similar."
2234
+ msgstr "A vantagem de aplicar o firewall 6G para o seu site é que ele foi testado e confirmado pelas pessoas em PerishablePress.com ser um conjunto ideal e menos perturbadora de regras de segurança de .htaccess para sites gerais WP, executando em um servidor Apache ou similar."
 
 
2235
 
2236
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:551
2237
+ #, php-format
2238
+ msgid "Therefore the 6G firewall rules should not have any impact on your site's general functionality but if you wish you can take a %s of your .htaccess file before proceeding."
2239
+ msgstr "Portanto, as regras de firewall 6G não devem ter qualquer impacto na funcionalidade geral do seu site, mas se quiser você pode tomar um %s de seu arquivo .htaccess antes de prosseguir."
2240
 
2241
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:557
2242
+ msgid "6G Blacklist/Firewall Settings"
2243
+ msgstr "Configurações de firewall / lista negra 6G"
2244
 
2245
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:569
2246
+ msgid "Enable 6G Firewall Protection"
2247
+ msgstr "Habilitar proteção de firewall 6G"
 
 
 
 
2248
 
2249
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:572
2250
+ msgid "Check this if you want to apply the 6G Blacklist firewall protection from perishablepress.com to your site."
2251
+ msgstr "Marque esta opção se você deseja aplicar a proteção de firewall de lista negra 6G de perishablepress.com para o seu site."
 
 
 
 
2252
 
2253
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:576
2254
+ msgid "This setting will implement the 6G security firewall protection mechanisms on your site which include the following things:"
2255
+ msgstr "Esta configuração irá implementar os mecanismos de proteção de firewall de segurança 6G em seu site que incluem as seguintes coisas:"
 
 
2256
 
2257
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:577
2258
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:595
2259
+ msgid "1) Block forbidden characters commonly used in exploitative attacks."
2260
+ msgstr "1) Caracteres em bloco proibido comumente usado em ataques de exploração."
2261
 
2262
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:578
2263
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:596
2264
+ msgid "2) Block malicious encoded URL characters such as the \".css(\" string."
2265
+ msgstr "2) Bloquear caracteres codificados de URL maliciosos, tais como o \".css(\" sequências."
 
 
2266
 
2267
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:579
2268
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:597
2269
+ msgid "3) Guard against the common patterns and specific exploits in the root portion of targeted URLs."
2270
+ msgstr "3) Proteja-se contra os padrões comuns e exploração específicas na parte de raiz de URLs de destino."
2271
 
2272
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:580
2273
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:598
2274
+ msgid "4) Stop attackers from manipulating query strings by disallowing illicit characters."
2275
+ msgstr "4) Pare atacantes de manipular sequências de consulta por não permitir caracteres ilícitos."
 
2276
 
2277
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:581
2278
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:599
2279
+ msgid "....and much more."
2280
+ msgstr "....e muito mais."
 
 
2281
 
2282
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:587
2283
+ msgid "Enable legacy 5G Firewall Protection"
2284
+ msgstr "Habilitar proteção de firewall 5G legado"
 
2285
 
2286
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:590
2287
+ msgid "Check this if you want to apply the 5G Blacklist firewall protection from perishablepress.com to your site."
2288
+ msgstr "Marque esta opção se você deseja aplicar a proteção de firewall de lista negra 5G de perishablepress.com para o seu site."
2289
 
2290
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:594
2291
+ msgid "This setting will implement the 5G security firewall protection mechanisms on your site which include the following things:"
2292
+ msgstr "Esta configuração irá implementar os mecanismos de proteção de firewall de segurança 5G em seu site que incluem as seguintes coisas:"
 
 
2293
 
2294
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:605
2295
+ msgid "Save 5G/6G Firewall Settings"
2296
+ msgstr "Salvar configurações de firewall 5G/6G"
 
 
 
2297
 
2298
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:636
2299
+ msgid "The Internet bot settings were successfully saved"
2300
+ msgstr "As configurações de robôs da internet foram salvas com sucesso"
2301
 
2302
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:640
2303
+ msgid "Internet Bot Settings"
2304
+ msgstr "Configurações de robôs da internet"
 
 
2305
 
2306
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:647
2307
+ #, php-format
2308
+ msgid "%s?"
2309
+ msgstr "%s?"
2310
+
2311
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:649
2312
+ msgid "A bot is a piece of software which runs on the Internet and performs automatic tasks. For example when Google indexes your pages it uses automatic bots to achieve this task."
2313
+ msgstr "Um robô é um pedaço de software que é executado na internet e executa tarefas automáticas. Por exemplo, quando o Google indexa suas páginas ele usa robôs automáticos para realizar esta tarefa."
2314
+
2315
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:650
2316
+ msgid "A lot of bots are legitimate and non-malicous but not all bots are good and often you will find some which try to impersonate legitimate bots such as \"Googlebot\" but in reality they have nohing to do with Google at all."
2317
+ msgstr "Um monte de robôs são legítimos e não malicioso mas não todos os robôs são bons e muitas vezes você vai encontrar alguns que tentam representar legítimo robôs como \"Googlebot\" mas na realidade eles não têm nada a ver com o Google em tudo."
2318
+
2319
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:651
2320
+ msgid "Although most of the bots out there are relatively harmless sometimes website owners want to have more control over which bots they allow into their site."
2321
+ msgstr "Embora a maioria dos robôs lá fora, são relativamente inofensivos, às vezes proprietários de site querem ter mais controle sobre quais robôs permitem em seu site."
2322
+
2323
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:652
2324
+ msgid "This feature allows you to block bots which are impersonating as a Googlebot but actually aren't. (In other words they are fake Google bots)"
2325
+ msgstr "Esse recurso permite você bloquear robôs que estão representando como um Googlebot, mas na verdade não são. (Em outras palavras, eles são falsos robôs do Google)"
2326
+
2327
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:653
2328
+ msgid "Googlebots have a unique indentity which cannot easily be forged and this feature will indentify any fake Google bots and block them from reading your site's pages."
2329
+ msgstr "Googlebots tem uma identidade exclusiva, que não pode ser facilmente forjado e esse recurso irá identificar quaisquer falsos robôs do Google e bloqueá-los de ler as páginas do seu site."
2330
+
2331
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:659
2332
+ msgid "<strong>Attention</strong>: Sometimes non-malicious Internet organizations might have bots which impersonate as a \"Googlebot\"."
2333
+ msgstr "<strong>Atenção</strong>: Organizações da internet, por vezes, não maliciosos podem ter robôs que imitam como um \"Googlebot\"."
2334
+
2335
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:660
2336
+ msgid "Just be aware that if you activate this feature the plugin will block all bots which use the \"Googlebot\" string in their User Agent information but are NOT officially from Google (irrespective whether they are malicious or not)."
2337
+ msgstr "Esteja ciente de que, se você ativar esse recurso o plugin irá bloquear todos os robôs que usar a sequência de \"Googlebot\" em suas informações de agente de usuário, mas não são oficialmente do Google (independentemente se eles são mal-intencionados ou não). "
2338
+
2339
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:661
2340
+ msgid "All other bots from other organizations such as \"Yahoo\", \"Bing\" etc will not be affected by this feature."
2341
+ msgstr "Todos os outros robôs de outras organizações, tais como \"Yahoo\", \"Bing\" etc não serão afetados por esse recurso."
2342
+
2343
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:667
2344
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:677
2345
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:98
2346
+ msgid "Block Fake Googlebots"
2347
+ msgstr "Bloquear Googlebots falsos"
2348
+
2349
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:680
2350
+ msgid "Check this if you want to block all fake Googlebots."
2351
+ msgstr "Marque esta opção se você deseja bloquear todos os Googlebots falsos."
2352
+
2353
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:684
2354
+ msgid "This feature will check if the User Agent information of a bot contains the string \"Googlebot\"."
2355
+ msgstr "Esta característica irá verificar se as informações do agente de usuário de um robô contém a sequência de caracteres \"Googlebot\"."
2356
+
2357
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:685
2358
+ msgid "It will then perform a few tests to verify if the bot is legitimately from Google and if so it will allow the bot to proceed."
2359
+ msgstr "Em seguida, ele irá executar alguns testes para verificar se o robô é legitimamente do Google e se assim permitirá que o robô prosseguir."
2360
+
2361
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:686
2362
+ msgid "If the bot fails the checks then the plugin will mark it as being a fake Googlebot and it will block it"
2363
+ msgstr "Se o robô falha nas verificações em seguida, o plugin irá marcá-lo como sendo um Googlebot falso e ele vai bloqueá-lo"
2364
+
2365
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:693
2366
+ msgid "Save Internet Bot Settings"
2367
+ msgstr "Salvar configurações de robô da internet"
2368
+
2369
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:730
2370
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:752
2371
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:32
2372
+ msgid "Prevent Image Hotlinking"
2373
+ msgstr "Evitar hotlinking de imagem"
2374
+
2375
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:733
2376
+ msgid "A Hotlink is where someone displays an image on their site which is actually located on your site by using a direct link to the source of the image on your server."
2377
+ msgstr "Um hotlink é onde alguém exibe uma imagem em seu site que encontra em seu site usando um link direto para a fonte da imagem no seu servidor."
2378
+
2379
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:734
2380
+ msgid "Due to the fact that the image being displayed on the other person's site is coming from your server, this can cause leaking of bandwidth and resources for you because your server has to present this image for the people viewing it on someone elses's site."
2381
+ msgstr "Devido ao fato de que a imagem seja exibida no site da outra pessoa está vindo do seu servidor, isso pode causar vazamento de largura de banda e recursos para você, porque o servidor tem de apresentar essa imagem para as pessoas vê-lo em algum local do site da elses."
2382
+
2383
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:735
2384
+ msgid "This feature will prevent people from directly hotlinking images from your site's pages by writing some directives in your .htaccess file."
2385
+ msgstr "Este recurso irá impedir pessoas de diretamente de hotlinking de imagens de páginas de seu site, escrevendo algumas diretivas em seu arquivo .htaccess."
2386
+
2387
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:740
2388
+ msgid "Prevent Hotlinking"
2389
+ msgstr "Evitar hotlinking"
2390
+
2391
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:755
2392
+ msgid "Check this if you want to prevent hotlinking to images on your site."
2393
+ msgstr "Marque esta opção se você deseja evitar hotlinking de imagens no seu site."
2394
+
2395
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:775
2396
+ msgid "Nonce check failed for delete all 404 event logs operation!"
2397
+ msgstr "Verificação núncio falhou para operação de exclusão de todos os registros de eventos 404!"
2398
+
2399
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:786
2400
+ msgid "404 Detection Feature - Delete all 404 event logs operation failed!"
2401
+ msgstr "Recurso de detecção 404 - Excluir todos os registros de eventos 404 com falha na operação!"
2402
+
2403
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:790
2404
+ msgid "All 404 event logs were deleted from the DB successfully!"
2405
+ msgstr "Todos os registros de eventos 404 foram excluídos do banco de dados com sucesso!"
2406
+
2407
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:814
2408
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:111
2409
+ msgid "You entered a non numeric value for the lockout time length field. It has been set to the default value."
2410
+ msgstr "Você digitou um valor não numérico para o campo de comprimento tempo de bloqueio. Foi definido como o valor padrão."
2411
+
2412
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:820
2413
+ msgid "You entered an incorrect format for the \"Redirect URL\" field. It has been set to the default value."
2414
+ msgstr "Você digitou um formato incorreto para o campo \"Redirecionamento de URL\". Foi definido como o valor padrão."
2415
+
2416
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:855
2417
+ msgid "404 Detection Configuration"
2418
+ msgstr "Configuração de detecção 404"
2419
+
2420
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:858
2421
+ msgid "A 404 or Not Found error occurs when somebody tries to access a non-existent page on your website."
2422
+ msgstr "Um 404 ou nenhum erro encontrado ocorre quando alguém tenta acessar uma página inexistente em seu site."
2423
+
2424
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:859
2425
+ msgid "Typically, most 404 errors happen quite innocently when people have mis-typed a URL or used an old link to page which doesn't exist anymore."
2426
+ msgstr "Normalmente, a maioria dos erros 404 acontecer muito inocentemente quando as pessoas têm mal digitado uma URL ou usado um link antigo para a página que não existe mais."
2427
+
2428
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:860
2429
+ msgid "However, in some cases you may find many repeated 404 errors which occur in a relatively short space of time and from the same IP address which are all attempting to access a variety of non-existent page URLs."
2430
+ msgstr "No entanto, em alguns casos, você pode encontrar muitos repetidos erros 404 que ocorrem em um espaço relativamente curto de tempo e com o mesmo endereço IP que estão todos tentando acessar uma variedade de URLs de páginas inexistentes."
2431
+
2432
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:861
2433
+ msgid "Such behaviour can mean that a hacker might be trying to find a particular page or URL for sinister reasons."
2434
+ msgstr "Tal comportamento pode significar que um hacker pode estar tentando encontrar uma determinada página ou URL por razões sinistras."
2435
+
2436
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:862
2437
+ msgid "This feature allows you to monitor all 404 events which occur on your site, and it also gives you the option of blocking IP addresses for a configured length of time."
2438
+ msgstr "Este recurso permite que você monitore todos os eventos 404 que ocorrem em seu site, e também lhe dá a opção de bloquear endereços IP configurado por um período de tempo."
2439
+
2440
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:863
2441
+ msgid "If you want to temporarily block an IP address, simply click the \"Temp Block\" link for the applicable IP entry in the \"404 Event Logs\" table below."
2442
+ msgstr "Se você deseja bloquear temporariamente um endereço IP, basta clicar no link \"Temp Block\" para a entrada IP aplicável na tabela \"Registros de evento 404\" abaixo."
2443
+
2444
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:869
2445
+ #, php-format
2446
+ msgid "You may also be interested in our %s."
2447
+ msgstr "Você pode também estar interessado em nosso %s."
2448
 
2449
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:870
2450
+ msgid "This addon allows you to automatically and permanently block IP addresses based on how many 404 errors they produce."
2451
+ msgstr "Este complemento permite bloquear automaticamente e permanentemente endereços IP com base em quantos erros 404 que produzem."
 
 
 
2452
 
2453
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:878
2454
+ msgid "404 Detection Options"
2455
+ msgstr "Opções de detecção 404"
2456
 
2457
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:890
2458
+ msgid "Enable 404 IP Detection and Lockout"
2459
+ msgstr "Habilita detecção 404 de IP e bloqueio"
 
 
2460
 
2461
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:893
2462
+ msgid "Check this if you want to enable the lockout of selected IP addresses."
2463
+ msgstr "Marque esta opção se você deseja ativar o bloqueio de endereços IP selecionados."
2464
 
2465
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:898
2466
+ msgid "When you enable this checkbox, all 404 events on your site will be logged in the table below. You can monitor these events and select some IP addresses listed in the table below and block them for a specified amount of time. All IP addresses you select to be blocked from the \"404 Event Logs\" table section will be unable to access your site during the time specified."
2467
+ msgstr "Quando você ativa esta opção, todos os eventos 404 em seu site serão registrados na tabela abaixo. Você pode monitorar esses eventos e selecionar alguns endereços IP listados na tabela abaixo e bloqueá-los para um determinado período de tempo. Todos os endereços IP que você selecionar a ser bloqueado a partir da secção da tabela \"registros de evento 404\" não será capaz de acessar seu site durante o tempo especificado."
2468
 
2469
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:906
2470
+ msgid "Enable 404 Event Logging"
2471
+ msgstr "Habilitar registro de eventos 404"
 
 
 
 
2472
 
2473
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:909
2474
+ msgid "Check this if you want to enable the logging of 404 events"
2475
+ msgstr "Marque esta opção se você deseja ativar o registro de eventos 404"
2476
+
2477
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:914
2478
+ msgid "Time Length of 404 Lockout (min)"
2479
+ msgstr "Comprimento de tempo do bloqueio 404 (minuto)"
2480
+
2481
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:916
2482
+ msgid "Set the length of time for which a blocked IP address will be prevented from visiting your site"
2483
+ msgstr "Defina o período de tempo durante o qual um endereço IP bloqueado será impedido de visitar o seu site"
2484
+
2485
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:921
2486
+ msgid "You can lock any IP address which is recorded in the \"404 Event Logs\" table section below."
2487
+ msgstr "Você pode bloquear qualquer endereço IP que está registrado na seção de tabela \"registros de evento 404\" abaixo."
2488
+
2489
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:923
2490
+ msgid "To temporarily lock an IP address, hover over the ID column and click the \"Temp Block\" link for the applicable IP entry."
2491
+ msgstr "Para bloquear temporariamente um endereço IP, passe o mouse sobre a coluna ID e clique no link \"Temp Block\" para a entrada IP aplicável."
2492
+
2493
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:930
2494
+ msgid "404 Lockout Redirect URL"
2495
+ msgstr "Redirecionamento de URL 404 bloqueada"
2496
+
2497
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:932
2498
+ msgid "A blocked visitor will be automatically redirected to this URL."
2499
+ msgstr "Um visitante bloqueado será automaticamente redirecionado para esta URL."
2500
+
2501
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:941
2502
+ msgid "404 Event Logs"
2503
+ msgstr "Registros de eventos 404"
2504
+
2505
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:963
2506
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:972
2507
+ msgid "Delete All 404 Event Logs"
2508
+ msgstr "Excluir todos os registros de eventos 404"
2509
+
2510
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:969
2511
+ msgid "Click this button if you wish to purge all 404 event logs from the DB."
2512
+ msgstr "Clique nesse botão se você deseja limpar todos os registros de eventos 404 do banco de dados."
2513
+
2514
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:1025
2515
+ msgid "Custom .htaccess Rules Settings"
2516
+ msgstr "Configurações de regras .htaccess personalizadas"
2517
+
2518
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:1032
2519
+ msgid "This feature can be used to apply your own custom .htaccess rules and directives."
2520
+ msgstr "Esse recurso pode ser usado para aplicar suas próprias regras .htaccess e diretivas personalizadas."
2521
+
2522
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:1033
2523
+ msgid "It is useful for when you want to tweak our existing firewall rules or when you want to add your own."
2524
+ msgstr "É útil para quando você quer ajustar as nossas regras de firewall existentes ou quando você deseja adicionar o seu próprio."
2525
+
2526
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:1034
2527
+ msgid "NOTE: This feature can only used if your site is hosted in an apache or similar web server."
2528
+ msgstr "NOTA: Esse recurso só pode ser usado se o seu site está hospedado em um servidor web Apache ou similar."
2529
+
2530
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:1040
2531
+ msgid "<strong>Warning</strong>: Only use this feature if you know what you are doing."
2532
+ msgstr "<strong>Aviso</strong>: Só use esse recurso se você sabe o que está fazendo."
2533
+
2534
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:1041
2535
+ msgid "Incorrect .htaccess rules or directives can break or prevent access to your site."
2536
+ msgstr "Regras .htaccess ou diretivas incorretas podem quebrar ou impedir o acesso ao seu site."
2537
+
2538
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:1042
2539
+ msgid "It is your responsibility to ensure that you are entering the correct code!"
2540
+ msgstr "É de sua responsabilidade para garantir que você está digitando o código correto!"
2541
+
2542
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:1043
2543
+ msgid "If you break your site you will need to access your server via FTP or something similar and then edit your .htaccess file and delete the changes you made."
2544
+ msgstr "Se você quebrar seu site, você precisará acessar o servidor via FTP ou algo similar e, em seguida, editar o seu arquivo .htaccess e excluir as alterações feitas."
2545
+
2546
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:1049
2547
+ msgid "Custom .htaccess Rules"
2548
+ msgstr "Regras .htaccess personalizadas"
2549
+
2550
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:1053
2551
+ msgid "Enable Custom .htaccess Rules"
2552
+ msgstr "Habilitar regras .htaccess personalizadas"
2553
+
2554
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:1056
2555
+ msgid "Check this if you want to enable custom rules entered in the text box below"
2556
+ msgstr "Marque esta opção se você deseja ativar regras personalizadas inseridas na caixa de texto abaixo"
2557
+
2558
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:1060
2559
+ msgid "Enter Custom .htaccess Rules:"
2560
+ msgstr "Digite regras .htaccess personalizadas:"
2561
+
2562
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:1064
2563
+ msgid "Enter your custom .htaccess rules/directives."
2564
+ msgstr "Digite suas regras/diretivas .htaccess personalizadas"
2565
+
2566
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php:1069
2567
+ msgid "Save Custom Rules"
2568
+ msgstr "Salvar regras personalizadas"
2569
+
2570
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-404.php:118
2571
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-404.php:126
2572
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-404.php:133
2573
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-acct-activity.php:83
2574
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-comment-spammer-ip.php:92
2575
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-locked-ip.php:90
2576
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-locked-ip.php:101
2577
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-login-fails.php:82
2578
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-permanent-blocked-ip.php:93
2579
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php:87
2580
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php:98
2581
+ msgid "Please select some records using the checkboxes"
2582
+ msgstr "Por favor, selecione alguns registros usando as caixas de seleção"
2583
 
2584
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-404.php:155
2585
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-404.php:193
2586
+ msgid "Could not process the request because the IP addresses for the selected entries could not be found!"
2587
+ msgstr "Não foi possível processar a solicitação, porque os endereços IP para os itens selecionados não podem ser encontrados!"
2588
 
2589
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-404.php:164
2590
+ msgid "The selected IP addresses are now temporarily blocked!"
2591
+ msgstr "Os endereços IP selecionados estão temporariamente bloqueados!"
2592
 
2593
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-404.php:169
2594
+ msgid "The selected IP address is now temporarily blocked!"
2595
+ msgstr "O endereço IP selecionado agora está temporariamente bloqueado!"
 
 
2596
 
2597
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-404.php:171
2598
+ msgid "The selected entry is not a valid IP address!"
2599
+ msgstr "A entrada selecionada não é um endereço IP válido!"
 
 
 
2600
 
2601
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-404.php:220
2602
+ msgid "The selected IP addresses have been added to the blacklist and will be permanently blocked!"
2603
+ msgstr "Os endereços IP selecionados foram adicionados à lista negra e serão permanentemente bloqueados!"
2604
 
2605
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-404.php:257
2606
+ msgid "Nonce check failed for delete selected 404 event logs operation!"
2607
+ msgstr "Verificação núncio falhou para operação de exclusão dos registros de eventos 404 selecionados!"
 
 
 
 
 
 
2608
 
2609
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-acct-activity.php:114
2610
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-login-fails.php:114
2611
  msgid "The selected entries were deleted successfully!"
2612
+ msgstr "As entradas selecionadas foram excluídas com sucesso!"
2613
 
2614
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-acct-activity.php:126
2615
+ msgid "Nonce check failed for delete selected account activity logs operation!"
2616
+ msgstr "Verificação núncio falhou para operação de exclusão dos registros de atividade das contas selecionadas!"
 
2617
 
2618
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-acct-activity.php:134
2619
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-login-fails.php:134
2620
+ msgid "The selected entry was deleted successfully!"
2621
+ msgstr "A entrada selecionada foi excluída com sucesso!"
2622
 
2623
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-comment-spammer-ip.php:127
2624
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-comment-spammer-ip.php:176
2625
+ msgid "Nonce check failed for delete selected blocked IP operation!"
2626
+ msgstr "Verificação núncio falhou para operação de exclusão de IP bloqueado selecionado!"
 
2627
 
2628
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-comment-spammer-ip.php:134
2629
+ msgid "The selected IP addresses are now permanently blocked!"
2630
+ msgstr "Os endereços IP selecionados agora estão permanentemente bloqueados!"
 
 
2631
 
2632
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-comment-spammer-ip.php:190
2633
+ msgid "The selected IP addresses were saved in the blacklist configuration settings."
2634
+ msgstr "Os endereços IP selecionados foram salvas nas definições de configuração de lista negra."
 
 
 
2635
 
2636
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-comment-spammer-ip.php:204
2637
+ msgid "The .htaccess file was successfully modified to include the selected IP addresses."
2638
+ msgstr "O arquivo .htaccess foi modificado com sucesso para incluir os endereços IP selecionados."
 
2639
 
2640
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-comment-spammer-ip.php:210
2641
+ msgid "NOTE: The .htaccess file was not modified because you have disabled the \"Enable IP or User Agent Blacklisting\" check box."
2642
+ msgstr "NOTA: O arquivo .htaccess não foi modificado porque você desativou a caixa de seleção \"Ativar IP ou lista negra de agente de usuário\"."
 
2643
 
2644
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-comment-spammer-ip.php:211
2645
+ #, php-format
2646
+ msgid "To block these IP addresses you will need to enable the above flag in the %s menu"
2647
+ msgstr "Para bloquear esses endereços IP você precisará habilitar o sinalizador acima no menu %s"
2648
+
2649
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-locked-ip.php:128
2650
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:530
2651
+ msgid "The selected IP entries were unlocked successfully!"
2652
+ msgstr "As entradas selecionadas do IP foram desbloqueadas com sucesso!"
2653
+
2654
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-locked-ip.php:137
2655
+ msgid "Nonce check failed for unlock IP operation!"
2656
+ msgstr "Verificação núncio falhou para operação de desbloqueio de IP!"
2657
+
2658
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-locked-ip.php:145
2659
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:539
2660
+ msgid "The selected IP entry was unlocked successfully!"
2661
+ msgstr "A entrada IP selecionado foi desbloqueado com sucesso!"
2662
+
2663
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-locked-ip.php:179
2664
+ msgid "Nonce check failed for delete lockdown record operation!"
2665
+ msgstr "Verificação núncio falhou para operação de registro de bloqueio de exclusão!"
2666
+
2667
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-logged-in-users.php:84
2668
+ msgid "Nonce check failed for force user logout operation!"
2669
+ msgstr "Verificação núncio falhou para operação de saída do usuário à força!"
2670
+
2671
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-logged-in-users.php:95
2672
+ msgid "The selected user was logged out successfully!"
2673
+ msgstr "O usuário selecionado foi desconectado com sucesso!"
2674
+
2675
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-login-fails.php:126
2676
+ msgid "Nonce check failed for delete failed login record operation!"
2677
+ msgstr "Verificação núncio falhou para operação de exclusão de registro de login com falha!"
2678
+
2679
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-permanent-blocked-ip.php:123
2680
+ msgid "Nonce check failed for unblock IP operation!"
2681
+ msgstr "Verificação núncio falhou para operação de desbloqueio de IP!"
2682
+
2683
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php:132
2684
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php:162
2685
+ msgid "Your account is now active"
2686
+ msgstr "Sua conta já está ativa"
2687
+
2688
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php:133
2689
+ msgid "Your account with user ID:"
2690
+ msgstr "Sua conta com o ID de usuário:"
2691
+
2692
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php:133
2693
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php:163
2694
+ msgid " is now active"
2695
+ msgstr " agora está ativa"
2696
+
2697
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php:146
2698
  msgid "The selected accounts were approved successfully!"
2699
+ msgstr "As contas selecionadas foram aprovados com sucesso!"
2700
+
2701
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php:150
2702
+ msgid "The following accounts failed to update successfully: "
2703
+ msgstr "As seguintes contas falharam ao atualizar com sucesso: "
2704
 
2705
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php:158
2706
  msgid "The selected account was approved successfully!"
2707
+ msgstr "A conta selecionada foi aprovada com sucesso!"
2708
+
2709
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php:163
2710
+ msgid "Your account with username: "
2711
+ msgstr "Sua conta com nome de usuário: "
2712
 
2713
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php:195
2714
  msgid "The selected accounts were deleted successfully!"
2715
+ msgstr "As contas selecionadas foram excluídas com sucesso!"
2716
+
2717
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php:203
2718
+ msgid "Nonce check failed for delete registered user account operation!"
2719
+ msgstr "Verificação núncio falhou para operação de exclusão de conta de usuário registrado!"
2720
 
2721
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php:211
2722
  msgid "The selected account was deleted successfully!"
2723
+ msgstr "A conta selecionada foi excluída com sucesso!"
2724
 
2725
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-maintenance-menu.php:22
2726
  msgid "Visitor Lockout"
2727
+ msgstr "Bloqueio de visitantes"
2728
 
2729
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-maintenance-menu.php:89
2730
  msgid "Site lockout feature settings saved!"
2731
+ msgstr "Configurações de recurso de bloqueio de site salvas!"
2732
 
2733
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-maintenance-menu.php:94
2734
  msgid "General Visitor Lockout"
2735
+ msgstr "Bloqueio de visitante geral"
2736
 
2737
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-maintenance-menu.php:100
2738
+ msgid "This feature allows you to put your site into \"maintenance mode\" by locking down the front-end to all visitors except logged in users with super admin privileges."
2739
+ msgstr "Esse recurso permite à você colocar seu site no \"modo de manutenção\" por bloquear o front-end para todos os visitantes, exceto usuários logados com privilégios de super administrador."
 
 
 
2740
 
2741
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-maintenance-menu.php:101
2742
+ msgid "Locking your site down to general visitors can be useful if you are investigating some issues on your site or perhaps you might be doing some maintenance and wish to keep out all traffic for security reasons."
2743
+ msgstr "Bloquear o seu site no ar para os visitantes em geral pode ser útil se você está investigando alguns problemas em seu site ou talvez você poderia estar fazendo alguma manutenção e deseja manter fora todo o tráfego por razões de segurança."
 
 
 
2744
 
2745
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-maintenance-menu.php:106
2746
  msgid "Enable Front-end Lockout"
2747
+ msgstr "Habilitar bloqueio de front-end"
2748
 
2749
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-maintenance-menu.php:109
2750
+ msgid "Check this if you want all visitors except those who are logged in as administrator to be locked out of the front-end of your site."
2751
+ msgstr "Marque esta opção se você deseja que todos os visitantes, exceto aqueles que estão logado como administrador para ser bloqueado para fora do front-end do seu site."
 
 
2752
 
2753
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-maintenance-menu.php:113
2754
  msgid "Enter a Message:"
2755
+ msgstr "Digite uma mensagem:"
2756
 
2757
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-maintenance-menu.php:125
2758
+ msgid "Enter a message you wish to display to visitors when your site is in maintenance mode."
2759
+ msgstr "Digite uma mensagem que você deseja exibir aos visitantes, quando seu site estiver em modo de manutenção."
 
 
2760
 
2761
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-maintenance-menu.php:132
2762
  msgid "Save Site Lockout Settings"
2763
+ msgstr "Salvar configurações de bloqueio do site"
2764
+
2765
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:24
2766
+ msgid "Copy Protection"
2767
+ msgstr "Proteção de cópia"
2768
+
2769
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:25
2770
+ msgid "Frames"
2771
+ msgstr "Quadros"
2772
+
2773
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:26
2774
+ msgid "Users Enumeration"
2775
+ msgstr "Enumeração de usuários"
2776
+
2777
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:91
2778
+ msgid "Copy Protection feature settings saved!"
2779
+ msgstr "Configurações de recurso de proteção contra cópia salvas!"
2780
+
2781
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:96
2782
+ msgid "Disable The Ability To Copy Text"
2783
+ msgstr "Desabilitar a capacidade de copiar o texto"
2784
+
2785
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:102
2786
+ msgid "This feature allows you to disable the ability to select and copy text from your front end."
2787
+ msgstr "Esse recurso permite que você desative a capacidade de selecionar e copiar texto do seu front-end."
2788
+
2789
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:107
2790
+ msgid "Enable Copy Protection"
2791
+ msgstr "Habilitar proteção de cópia"
2792
+
2793
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:110
2794
+ msgid "Check this if you want to disable the \"Right Click\", \"Text Selection\" and \"Copy\" option on the front end of your site."
2795
+ msgstr "Marque esta opção se você deseja desativar o \"Clique Direito\", \"Seleção de Texto\" e a opção \"Copiar\" no front-end do seu site."
2796
+
2797
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:117
2798
+ msgid "Save Copy Protection Settings"
2799
+ msgstr "Salvar configurações de proteção de cópia"
2800
+
2801
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:141
2802
+ msgid "Frame Display Prevention feature settings saved!"
2803
+ msgstr "Configurações de recursos de prevenção de exposição de quadro salvas!"
2804
+
2805
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:146
2806
+ msgid "Prevent Your Site From Being Displayed In a Frame"
2807
+ msgstr "Impedir que o seu site seja exibido em um quadro"
2808
+
2809
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:152
2810
+ msgid "This feature allows you to prevent other sites from displaying any of your content via a frame or iframe."
2811
+ msgstr "Esse recurso permite que você impeça que outros sites de exibir qualquer um dos seus conteúdos através de um frame ou iframe."
2812
+
2813
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:153
2814
+ msgid "When enabled, this feature will set the \"X-Frame-Options\" paramater to \"sameorigin\" in the HTTP header."
2815
+ msgstr "Quando habilitado, esse recurso irá definir o parâmetro inválido \"X-Frame-Options\" para \"sameorigin\" no cabeçalho HTTP."
2816
 
2817
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:158
2818
+ msgid "Enable iFrame Protection"
2819
+ msgstr "Habilitar proteção iFrame"
2820
+
2821
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:161
2822
+ msgid "Check this if you want to stop other sites from displaying your content in a frame or iframe."
2823
+ msgstr "Marque esta opção se você deseja impedir que outros sites exiba seu conteúdo em um frame ou iframe."
2824
+
2825
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:192
2826
+ msgid "Users Enumeration Prevention feature settings saved!"
2827
+ msgstr "Configurações de recurso de prevenção de enumeração de usuários salvas!"
2828
+
2829
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:197
2830
+ msgid "Prevent Users Enumeration"
2831
+ msgstr "Evitar enumeração de usuários"
2832
+
2833
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:203
2834
+ msgid "This feature allows you to prevent external users/bots from fetching the user info with urls like \"/?author=1\"."
2835
+ msgstr "Esse recurso permite-lhe evitar externas de usuários/robôs de buscar a informação do usuário com urls como \"/?author=1\"."
2836
+
2837
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:204
2838
+ msgid "When enabled, this feature will print a \"forbidden\" error rather than the user information."
2839
+ msgstr "Quando habilitado, esse recurso irá imprimir um erro \"proibido\", em vez das informações do usuário."
2840
+
2841
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:209
2842
+ msgid "Disable Users Enumeration"
2843
+ msgstr "Desabilitar enumeração de usuários"
2844
+
2845
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php:212
2846
+ msgid "Check this if you want to stop users enumeration."
2847
+ msgstr "Marque esta opção se você deseja parar com a enumeração de usuários."
2848
+
2849
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:26
2850
  msgid "General Settings"
2851
+ msgstr "Configurações gerais"
2852
 
2853
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:29
2854
  msgid "WP Meta Info"
2855
+ msgstr "Informações de meta WP"
2856
 
2857
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:30
2858
+ msgid "Import/Export"
2859
+ msgstr "Importar / Exportar"
2860
+
2861
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:98
2862
  msgid "All the security features have been disabled successfully!"
2863
+ msgstr "Todos os recursos de segurança foram desativados com sucesso!"
2864
 
2865
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:102
2866
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:129
2867
+ msgid "Could not write to the .htaccess file. Please restore your .htaccess file manually using the restore functionality in the \".htaccess File\"."
2868
+ msgstr "Não foi possível gravar no arquivo .htaccess. Por favor, restaure o arquivo .htaccess manualmente usando a funcionalidade de restauração do \"arquivo .htaccess\"."
 
 
2869
 
2870
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:107
2871
+ msgid "Could not write to the wp-config.php. Please restore your wp-config.php file manually using the restore functionality in the \"wp-config.php File\"."
2872
+ msgstr "Não foi possível escrever para o wp-config.php. Por favor, restaure o arquivo wp-config.php manualmente usando a funcionalidade de restauração do \"arquivo wp-config.php\"."
 
 
2873
 
2874
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:125
2875
  msgid "All firewall rules have been disabled successfully!"
2876
+ msgstr "Todas as regras de firewall foram desativadas com sucesso!"
2877
 
2878
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:154
2879
  msgid "WP Security Plugin"
2880
+ msgstr "Plugin de segurança WP"
2881
 
2882
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:156
2883
+ msgid "Thank you for using our WordPress security plugin. There are a lot of security features in this plugin."
2884
+ msgstr "Obrigado por usar nosso plugin de segurança WordPress. muitas características de segurança neste plugin."
 
 
2885
 
2886
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:157
2887
+ msgid "Go through each menu items and enable the security options to add more security to your site. Start by activating the basic features first."
2888
+ msgstr "Passar por cada itens de menu e ativar as opções de segurança para adicionar mais segurança ao seu site. Comece ativando os recursos básicos em primeiro lugar."
 
 
2889
 
2890
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:158
2891
+ msgid "It is a good practice to take a backup of your .htaccess file, database and wp-config.php file before activating the security features. This plugin has options that you can use to backup those resources easily."
2892
+ msgstr "É uma boa prática para ter um backup do seu arquivo .htaccess, o arquivo de banco de dados e o wp-config.php antes de ativar os recursos de segurança. Este plugin possui opções que você pode usar para fazer backup desses recursos facilmente."
 
 
 
2893
 
2894
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:161
2895
  msgid "Backup your database"
2896
+ msgstr "Fazer backup de seu banco de dados"
2897
 
2898
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:162
2899
  msgid "Backup .htaccess file"
2900
+ msgstr "Fazer backup do arquivo .htaccess"
2901
 
2902
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:163
2903
  msgid "Backup wp-config.php file"
2904
+ msgstr "Fazer backup do arquivo wp-config.php"
2905
 
2906
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:170
2907
  msgid "Disable Security Features"
2908
+ msgstr "Desabilitar recursos de segurança"
2909
 
2910
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:176
2911
+ msgid "If you think that some plugin functionality on your site is broken due to a security feature you enabled in this plugin, then use the following option to turn off all the security features of this plugin."
2912
+ msgstr "Se você acha que algumas funcionalidades do plugin em seu site estão quebrado devido a um recurso de segurança que você habilitou neste plugin, então use a seguinte opção para desativar todos os recursos de segurança deste plugin."
 
 
 
2913
 
2914
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:180
2915
  msgid "Disable All Security Features"
2916
+ msgstr "Desabilitar todos os recursos de segurança"
2917
 
2918
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:187
2919
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:197
2920
  msgid "Disable All Firewall Rules"
2921
+ msgstr "Desabilitar todas as regras de firewall"
2922
 
2923
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:193
2924
+ msgid "This feature will disable all firewall rules which are currently active in this plugin and it will also delete these rules from your .htacess file. Use it if you think one of the firewall rules is causing an issue on your site."
2925
+ msgstr "Este recurso irá desabilitar todas as regras de firewall que estão atualmente ativas neste plugin e também irá excluir essas regras do seu arquivo .htacess. Usá-lo, se você acha que uma das regras de firewall está causando um problema no seu site."
 
 
 
2926
 
2927
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:204
2928
+ msgid "Debug Settings"
2929
+ msgstr "Configurações de depuração"
 
 
 
2930
 
2931
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:210
2932
+ msgid "This setting allows you to enable/disable debug for this plugin."
2933
+ msgstr "Essa configuração permite você ativar / desativar depuração para este plugin."
2934
+
2935
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:216
2936
+ msgid "Enable Debug"
2937
+ msgstr "Habilitar depuração"
2938
+
2939
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:219
2940
+ msgid "Check this if you want to enable debug"
2941
+ msgstr "Marque esta opção se você deseja habilitar depuração"
2942
 
2943
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:223
2944
+ msgid "Save Debug Settings"
2945
+ msgstr "Salvar configurações de depuração"
2946
+
2947
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:252
2948
+ msgid "Your .htaccess file was successfully backed up! Using an FTP program go to the \"/wp-content/aiowps_backups\" directory to save a copy of the file to your computer."
2949
+ msgstr "Seu backup do arquivo .htaccess foi feito com sucesso! Usando um programa de FTP vá para o diretório \"/wp-content/aiowps_backups\" para salvar uma cópia do arquivo em seu computador."
2950
+
2951
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:258
2952
+ msgid "htaccess file rename failed during backup. Please check your root directory for the backup file using FTP."
2953
+ msgstr "Renomeação do arquivo .htaccess falhou durante o backup. Por favor, verifique o diretório raiz do arquivo de backup usando FTP."
2954
+
2955
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:264
2956
  msgid "htaccess backup failed."
2957
+ msgstr "Backup htaccess falhou."
2958
 
2959
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:279
2960
  msgid "Please choose a .htaccess to restore from."
2961
+ msgstr "Por favor, escolha um .htaccess para restaurar."
2962
 
2963
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:295
2964
+ msgid "htaccess file restore failed. Please attempt to restore the .htaccess manually using FTP."
2965
+ msgstr "Restauração do arquivo .htaccess falhou. Por favor, tente restaurar o .htaccess manualmente usando FTP."
 
 
2966
 
2967
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:299
2968
  msgid "Your .htaccess file has successfully been restored!"
2969
+ msgstr "Seu arquivo .htaccess foi restaurado com sucesso!"
2970
 
2971
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:305
2972
+ msgid "htaccess Restore operation failed! Please check the contents of the file you are trying to restore from."
2973
+ msgstr "Operação de restauração htaccess falhou! Por favor, verifique o conteúdo do arquivo que você está tentando restaurar."
 
 
2974
 
2975
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:311
2976
  msgid ".htaccess File Operations"
2977
+ msgstr "Operações do arquivo .htaccess"
2978
 
2979
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:314
2980
+ msgid "Your \".htaccess\" file is a key component of your website's security and it can be modified to implement various levels of protection mechanisms."
2981
+ msgstr "Seu arquivo \".htaccess\" é um componente essencial de segurança do seu site e pode ser modificado para implementar vários níveis de mecanismos de proteção."
 
 
2982
 
2983
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:315
2984
+ msgid "This feature allows you to backup and save your currently active .htaccess file should you need to re-use the the backed up file in the future."
2985
+ msgstr "Este recurso permite fazer backup e salvar o seu arquivo .htaccess atualmente ativo, caso haja necessidade de voltar a usar o arquivo de backup no futuro."
 
 
2986
 
2987
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:316
2988
+ msgid "You can also restore your site's .htaccess settings using a backed up .htaccess file."
2989
+ msgstr "Você também pode restaurar as configurações .htaccess do seu site usando um backup do arquivo .htaccess."
 
 
2990
 
2991
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:330
2992
  msgid "Save the current .htaccess file"
2993
+ msgstr "Salvar o arquivo .htaccess atual"
2994
 
2995
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:334
2996
+ msgid "Click the button below to backup and save the currently active .htaccess file."
2997
+ msgstr "Clique no botão abaixo para fazer backup e salvar o arquivo .htaccess atualmente ativo."
 
 
2998
 
2999
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:335
3000
  msgid "Backup .htaccess File"
3001
+ msgstr "Fazer backup do arquivo .htaccess"
3002
 
3003
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:339
3004
  msgid "Restore from a backed up .htaccess file"
3005
+ msgstr "Restaurar backup de um arquivo .htaccess"
3006
 
3007
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:345
3008
  msgid ".htaccess file to restore from"
3009
+ msgstr "Arquivo .htaccess para restaurar"
3010
 
3011
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:351
3012
+ msgid "After selecting your file, click the button below to restore your site using the backed up htaccess file (htaccess_backup.txt)."
3013
+ msgstr "Depois de selecionar o arquivo, clique no botão abaixo para restaurar seu site usando o backup do arquivo .htaccess (htaccess_backup.txt)."
 
 
3014
 
3015
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:357
3016
  msgid "Restore .htaccess File"
3017
+ msgstr "Restaurar arquivo .htaccess"
 
 
 
 
3018
 
3019
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:390
3020
  msgid "Please choose a wp-config.php file to restore from."
3021
+ msgstr "Por favor, escolha um arquivo wp-config.php para restaurar."
3022
 
3023
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:406
3024
+ msgid "wp-config.php file restore failed. Please attempt to restore this file manually using FTP."
3025
+ msgstr "Restauração do arquivo wp-config.php falhou. Por favor, tente restaurar este arquivo manualmente usando o FTP."
 
 
3026
 
3027
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:410
3028
  msgid "Your wp-config.php file has successfully been restored!"
3029
+ msgstr "Seu arquivo wp-config.php foi restaurado com sucesso!"
3030
 
3031
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:416
3032
+ msgid "wp-config.php Restore operation failed! Please check the contents of the file you are trying to restore from."
3033
+ msgstr "Operação de restauração wp-config.php falhou! Por favor, verifique o conteúdo do arquivo que você está tentando restaurar."
 
 
3034
 
3035
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:422
3036
  msgid "wp-config.php File Operations"
3037
+ msgstr "Operações do arquivo wp-config.php"
3038
 
3039
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:425
3040
+ msgid "Your \"wp-config.php\" file is one of the most important in your WordPress installation. It is a primary configuration file and contains crucial things such as details of your database and other critical components."
3041
+ msgstr "Seu arquivo \"wp-config.php\" é um dos mais importantes em sua instalação do WordPress. É um arquivo de configuração principal e contém coisas cruciais, tais como detalhes de seu banco de dados e outros componentes críticos."
 
 
 
3042
 
3043
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:426
3044
+ msgid "This feature allows you to backup and save your currently active wp-config.php file should you need to re-use the the backed up file in the future."
3045
+ msgstr "Este recurso permite fazer backup e salvar o seu arquivo wp-config.php atualmente ativo, caso haja necessidade de voltar a usar o arquivo de backup no futuro."
 
 
3046
 
3047
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:427
3048
+ msgid "You can also restore your site's wp-config.php settings using a backed up wp-config.php file."
3049
+ msgstr "Você também pode restaurar as configurações wp-config.php do seu site usando um backup do arquivo wp-config.php."
 
 
3050
 
3051
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:441
3052
  msgid "Save the current wp-config.php file"
3053
+ msgstr "Salvar o arquivo wp-config.php atual"
3054
 
3055
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:445
3056
+ msgid "Click the button below to backup and download the contents of the currently active wp-config.php file."
3057
+ msgstr "Clique no botão abaixo para fazer backup e transferir o conteúdo do arquivo wp-config.php atualmente ativo."
 
 
3058
 
3059
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:446
3060
  msgid "Backup wp-config.php File"
3061
+ msgstr "Fazer backup do arquivo wp-config.php"
3062
 
3063
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:451
3064
  msgid "Restore from a backed up wp-config file"
3065
+ msgstr "Restaurar backup de um arquivo wp-config"
3066
 
3067
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:457
3068
  msgid "wp-config file to restore from"
3069
+ msgstr "Arquivo wp-config para restaurar"
3070
 
3071
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:463
3072
+ msgid "After selecting your file click the button below to restore your site using the backed up wp-config file (wp-config.php.backup.txt)."
3073
+ msgstr "Depois de selecionar o arquivo, clique no botão abaixo para restaurar seu site usando o backup do arquivo wp-config (wp-config.php.backup.txt)."
3074
+
3075
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:469
3076
+ msgid "Restore wp-config File"
3077
+ msgstr "Restaurar arquivo wp-config"
3078
+
3079
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:508
3080
+ msgid "WP Generator Meta Tag"
3081
+ msgstr "Gerador meta tag WP"
3082
+
3083
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:511
3084
+ msgid "Wordpress generator automatically adds some meta information inside the \"head\" tags of every page on your site's front end. Below is an example of this:"
3085
+ msgstr "Gerador WordPress adiciona automaticamente algumas informações de meta dentro das tags \"head\" de cada página em front-end do seu site. Abaixo está um exemplo disso:"
3086
+
3087
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:513
3088
+ msgid "The above meta information shows which version of WordPress your site is currently running and thus can help hackers or crawlers scan your site to see if you have an older version of WordPress or one with a known exploit."
3089
+ msgstr "As informações de meta acima mostram qual versão do WordPress, seu site está atualmente em execução e, portanto, pode ajudar hackers ou rastreadores analisar o seu site para ver se você tem uma versão antiga do WordPress ou um com uma exploração conhecida."
3090
+
3091
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:514
3092
+ msgid "This feature will allow you to remove the WP generator meta info from your site's pages."
3093
+ msgstr "Este recurso permitirá que você remova o gerador WP meta informações de páginas do seu site."
3094
+
3095
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:520
3096
+ msgid "WP Generator Meta Info"
3097
+ msgstr "Gerador de informações de meta WP"
3098
+
3099
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:532
3100
+ msgid "Remove WP Generator Meta Info"
3101
+ msgstr "Remover gerador de informações de meta WP"
3102
+
3103
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:535
3104
+ msgid "Check this if you want to remove the meta info produced by WP Generator from all pages"
3105
+ msgstr "Marque esta opção, se você deseja remover as informações de meta produzido pelo Gerador WP de todas as páginas"
3106
+
3107
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:565
3108
+ msgid "Please choose a file to import your settings from."
3109
+ msgstr "Por favor, escolha um arquivo para importar suas definições."
3110
+
3111
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:597
3112
+ msgid "Import AIOWPS settings from "
3113
+ msgstr "Importar configurações AIOWPS de "
3114
+
3115
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:603
3116
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:647
3117
+ msgid "The deletion of the import file failed. Please delete this file manually via the media menu for security purposes."
3118
+ msgstr "A exclusão do arquivo de importação falhou. Por favor, apague este arquivo manualmente através do menu de mídia para fins de segurança."
3119
+
3120
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:605
3121
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:649
3122
+ msgid "The file you uploaded was also deleted for security purposes because it contains security settings details."
3123
+ msgstr "O arquivo que você carregou também foi excluído para fins de segurança, pois ele contém detalhes de configurações de segurança."
3124
+
3125
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:620
3126
+ msgid "Your AIOWPS settings were successfully imported via file input."
3127
+ msgstr "Suas configurações AIOWPS foram importadas com sucesso através do arquivo de entrada."
3128
+
3129
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:621
3130
+ msgid "The deletion of the import file failed. Please delete this file manually via the media menu for security purposes because it contains security settings details."
3131
+ msgstr "A exclusão do arquivo de importação falhou. Por favor, apague este arquivo manualmente através do menu de mídia para fins de segurança, pois ele contém detalhes de configurações de segurança."
3132
+
3133
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:623
3134
+ msgid "Your AIOWPS settings were successfully imported. The file you uploaded was also deleted for security purposes because it contains security settings details."
3135
+ msgstr "Suas configurações AIOWPS foram importadas com sucesso. O arquivo que você carregou também foi excluído para fins de segurança, pois ele contém detalhes de configurações de segurança."
3136
+
3137
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:626
3138
+ msgid "Your AIOWPS settings were successfully imported via text entry."
3139
+ msgstr "Suas configurações AIOWPS foram importadas com sucesso através de entrada de texto."
3140
+
3141
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:641
3142
+ msgid "The contents of your settings file appear invalid. Please check the contents of the file you are trying to import settings from."
3143
+ msgstr "O conteúdo do seu arquivo de configurações aparece inválido. Por favor, verifique o conteúdo do arquivo que você está tentando importar configurações de."
3144
+
3145
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:658
3146
+ msgid "Export or Import Your AIOWPS Settings"
3147
+ msgstr "Exportar ou Importar suas configurações AIOWPS"
3148
+
3149
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:661
3150
+ msgid "This section allows you to export or import your All In One WP Security & Firewall settings."
3151
+ msgstr "Esta seção permite-lhe exportar ou importar suas configurações de All In One WP Security e Firewall"
3152
 
3153
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:662
3154
+ msgid "This can be handy if you wanted to save time by applying the settings from one site to another site."
3155
+ msgstr "Isto pode ser útil se você quiser economizar tempo aplicando as configurações de um site para outro site."
3156
 
3157
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:663
3158
+ msgid "NOTE: Before importing, it is your responsibility to know what settings you are trying to import. Importing settings blindly can cause you to be locked out of your site."
3159
+ msgstr "Antes de importar, é sua responsabilidade saber quais configurações que você está tentando importar. Importando configurações cegamente pode causar-lhe ser trancado para fora de seu site."
3160
 
3161
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:664
3162
+ msgid "For Example: If a settings item relies on the domain URL then it may not work correctly when imported into a site with a different domain."
3163
+ msgstr "Por exemplo: se um item de configurações depende do domínio URL, então pode não funcionar corretamente quando importado para um site com um domínio diferente."
3164
 
3165
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:670
3166
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:679
3167
+ msgid "Export AIOWPS Settings"
3168
+ msgstr "Exportar configurações AIOWPS"
 
 
3169
 
3170
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:676
3171
+ msgid "To export your All In One WP Security & Firewall settings click the button below."
3172
+ msgstr "Para exportar as configurações All In One WP Security e Firewall, clique no botão abaixo."
 
 
 
3173
 
3174
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:683
3175
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:708
3176
+ msgid "Import AIOWPS Settings"
3177
+ msgstr "Importar configurações AIOWPS"
 
3178
 
3179
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:689
3180
+ msgid "Use this section to import your All In One WP Security & Firewall settings from a file. Alternatively, copy/paste the contents of your import file into the textarea below."
3181
+ msgstr "Use esta seção para importar as configurações de All In One WP Security e Firewall de um arquivo. Alternativamente, copiar / colar o conteúdo do seu arquivo de importação para a área de texto abaixo."
3182
 
3183
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:690
3184
+ msgid "Import File"
3185
+ msgstr "Importar arquivo"
3186
 
3187
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:696
3188
+ msgid "After selecting your file, click the button below to apply the settings to your site."
3189
+ msgstr "Depois de selecionar o arquivo, clique no botão abaixo para aplicar as configurações para o seu site."
3190
+
3191
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php:702
3192
+ msgid "Copy/Paste Import Data"
3193
+ msgstr "Copiar/Colar dados de importação"
3194
 
3195
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:24
3196
  msgid "Comment SPAM"
3197
+ msgstr "SPAM de comentário"
3198
 
3199
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:25
3200
  msgid "Comment SPAM IP Monitoring"
3201
+ msgstr "Monitoramento de IP SPAM de comentário"
3202
 
3203
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:26
3204
+ msgid "BuddyPress"
3205
+ msgstr "BuddyPress"
3206
+
3207
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:114
3208
  msgid "Comment SPAM Settings"
3209
+ msgstr "Configurações de SPAM de comentário"
3210
 
3211
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:119
3212
  msgid "Add Captcha To Comments Form"
3213
+ msgstr "Adicionar captcha para formulário de comentários"
3214
 
3215
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:123
3216
+ msgid "This feature will add a simple math captcha field in the WordPress comments form."
3217
+ msgstr "Este recurso irá adicionar um campo de matemática captcha simples no formulário de comentários do WordPress."
3218
+
3219
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:124
3220
+ msgid "Adding a captcha field in the comment form is a simple way of greatly reducing SPAM comments from bots without using .htaccess rules."
3221
+ msgstr "Adicionando um campo de captcha no formulário de comentário é uma maneira simples de reduzir grandemente SPAM de comentários de robôs sem usar regras .htaccess."
3222
 
3223
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:133
3224
  msgid "Enable Captcha On Comment Forms"
3225
+ msgstr "Habilitar captcha em formulários de comentário"
3226
 
3227
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:136
3228
  msgid "Check this if you want to insert a captcha field on the comment forms"
3229
+ msgstr "Marque esta opção se você deseja inserir um campo captcha em formulários o comentário"
3230
 
3231
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:143
3232
  msgid "Block Spambot Comments"
3233
+ msgstr "Bloquear comentários spambot"
3234
 
3235
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:147
3236
+ msgid "A large portion of WordPress blog comment SPAM is mainly produced by automated bots and not necessarily by humans. "
3237
+ msgstr "Uma grande parcela de comentário de blog WordPress SPAM é produzida principalmente por robôs automatizados e não necessariamente por seres humanos."
 
 
3238
 
3239
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:148
3240
+ msgid "This feature will greatly minimize the useless and unecessary traffic and load on your server resulting from SPAM comments by blocking all comment requests which do not originate from your domain."
3241
+ msgstr "Este recurso irá minimizar consideravelmente o tráfego e carga inútil e desnecessário em seu servidor, resultante de comentários de spam, bloqueando todas as solicitações de comentário que não são originários do seu domínio."
3242
+
3243
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:149
3244
+ msgid "In other words, if the comment was not submitted by a human who physically submitted the comment on your site, the request will be blocked."
3245
+ msgstr "Em outras palavras, se o comentário não foi enviado por um ser humano que fisicamente apresentou o comentário em seu site, a solicitação será bloqueada."
3246
 
3247
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:165
3248
  msgid "Block Spambots From Posting Comments"
3249
+ msgstr "Bloquear spambots de publicar comentários"
3250
 
3251
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:168
3252
+ msgid "Check this if you want to apply a firewall rule which will block comments originating from spambots."
3253
+ msgstr "Marque esta opção se você deseja aplicar uma regra de firewall que irá bloquear comentários provenientes de spambots."
 
 
3254
 
3255
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:172
3256
+ msgid "This feature will implement a firewall rule to block all comment attempts which do not originate from your domain."
3257
+ msgstr "Este recurso irá implementar uma regra de firewall para bloquear todas as tentativas de comentário que não são originários do seu domínio."
 
 
3258
 
3259
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:173
3260
+ msgid "A legitimate comment is one which is submitted by a human who physically fills out the comment form and clicks the submit button. For such events, the HTTP_REFERRER is always set to your own domain."
3261
+ msgstr "Um comentário legítimo é aquele que é enviado por um ser humano que fisicamente preenche o formulário de comentário e clica no botão enviar. Para tais eventos, a HTTP_REFERRER é sempre definido para seu próprio domínio."
 
 
 
3262
 
3263
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:174
3264
+ msgid "A comment submitted by a spambot is done by directly calling the comments.php file, which usually means that the HTTP_REFERRER value is not your domain and often times empty."
3265
+ msgstr "Um comentário enviado por um spambot é feito chamando diretamente o arquivo comments.php, que geralmente significa que o valor HTTP_REFERRER não é o seu domínio e muitas vezes vazio."
 
 
 
3266
 
3267
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:175
3268
+ msgid "This feature will check and block comment requests which are not referred by your domain thus greatly reducing your overall blog SPAM and PHP requests done by the server to process these comments."
3269
+ msgstr "Esta função irá verificar e bloquear solicitações de comentário que não são referidos por seu domínio reduzindo assim significativamente as suas solicitações globais do blog de SPAM e PHP feito pelo servidor para processar esses comentários."
3270
+
3271
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:210
3272
+ msgid "You entered a non numeric value for the minimum number of spam comments field. It has been set to the default value."
3273
+ msgstr "Você digitou um valor não numérico para o número mínimo de campo de comentários de spam. Foi definido como o valor padrão."
3274
 
3275
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:213
3276
+ msgid "You must enter an integer greater than zero for minimum number of spam comments field. It has been set to the default value."
3277
+ msgstr "Você deve digitar um número inteiro maior que zero para o número mínimo de campo de comentários de spam. Foi definido como o valor padrão."
3278
+
3279
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:242
3280
  msgid "Nonce check failed for list SPAM comment IPs!"
3281
+ msgstr "Verificação núncio falhou para a lista de SPAM de comentários IPs!"
3282
 
3283
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:248
3284
+ msgid "You entered a non numeric value for the minimum SPAM comments per IP field. It has been set to the default value."
3285
+ msgstr "Você digitou um valor não numérico para os comentários mínimos SPAM por campo IP. Foi definido como o valor padrão."
 
 
3286
 
3287
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:260
3288
  #, php-format
3289
+ msgid "Displaying results for IP addresses which have posted a minimum of %s SPAM comments"
3290
+ msgstr "Mostrar resultados para endereços IP, que postaram um mínimo de %s SPAM de comentários"
 
 
3291
 
3292
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:275
3293
+ msgid "Auto Block SPAMMER IPs"
3294
+ msgstr "Bloquear automaticamente IPs SPAMMER"
 
 
3295
 
3296
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:280
3297
+ #, php-format
3298
+ msgid "This feature has detected that %s is not active. It is highly recommended that you activate the Akismet plugin to make the most of this feature."
3299
+ msgstr "Esse recurso detectou que o %s não está ativo. É altamente recomendável que você ative o plugin Akismet para aproveitar ao máximo este recurso."
 
3300
 
3301
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:289
3302
+ msgid "This feature allows you to automatically and permanently block IP addresses which have exceeded a certain number of comments labelled as SPAM."
3303
+ msgstr "Esse recurso permite que você automaticamente e permanentemente bloquear endereços IP que tenham ultrapassado um determinado número de comentários marcados como SPAM."
 
 
 
3304
 
3305
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:290
3306
+ msgid "Comments are usually labelled as SPAM either by the Akismet plugin or manually by the WP administrator when they mark a comment as \"spam\" from the WordPress Comments menu."
3307
+ msgstr "Comentários são geralmente marcados como SPAM pelo plugin Akismet ou manualmente pelo administrador do WP quando eles marcar um comentário como \"spam\" no menu comentários do WordPress."
3308
+
3309
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:304
3310
+ msgid "You currently have no IP addresses permanently blocked due to SPAM."
3311
+ msgstr "Atualmente você não tem endereços IP permanentemente bloqueados devido à SPAM."
3312
+
3313
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:317
3314
+ msgid "Spammer IPs Added To Permanent Block List Today: "
3315
+ msgstr "IPs spammer adicionado a lista de bloqueios permanente hoje: "
3316
+
3317
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:318
3318
+ msgid "All Time Total: "
3319
+ msgstr "Total de todo tempo: "
3320
 
3321
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:319
3322
+ msgid "View Blocked IPs"
3323
+ msgstr "Ver IPs bloqueados"
3324
+
3325
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:332
3326
+ msgid "Enable Auto Block of SPAM Comment IPs"
3327
+ msgstr "Ativar o bloqueio automático de IPs de comentário SPAM"
3328
+
3329
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:335
3330
+ msgid "Check this box if you want this plugin to automatically block IP addresses which submit SPAM comments."
3331
+ msgstr "Marque esta caixa se você deseja que este plugin para bloquear automaticamente endereços IP que apresentem comentários SPAM."
3332
+
3333
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:339
3334
+ msgid "Minimum number of SPAM comments"
3335
+ msgstr "Número mínimo de comentários SPAM"
3336
+
3337
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:341
3338
+ msgid "Specify the minimum number of SPAM comments for an IP address before it is permanently blocked."
3339
+ msgstr "Especifica o número mínimo de comentários SPAM para um endereço IP antes que seja permanentemente bloqueado."
3340
+
3341
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:345
3342
+ msgid "Example 1: Setting this value to \"1\" will block ALL IP addresses which were used to submit at least one SPAM comment."
3343
+ msgstr "Exemplo 1: Definir esse valor para \"1\" irá bloquear todos os endereços IP que foram usados ​​para enviar pelo menos um comentário SPAM."
3344
+
3345
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:346
3346
+ msgid "Example 2: Setting this value to \"5\" will block only those IP addresses which were used to submit 5 SPAM comments or more on your site."
3347
+ msgstr "Exemplo 2: Definir esse valor para \"5\" irá bloquear apenas os endereços IP que foram usados ​​para enviar 5 comentários SPAM ou mais em seu site."
3348
+
3349
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:364
3350
  msgid "List SPAMMER IP Addresses"
3351
+ msgstr "Lista de endereços IP SPAMMER"
3352
 
3353
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:368
3354
+ msgid "This section displays a list of the IP addresses of the people or bots who have left SPAM comments on your site."
3355
+ msgstr "Esta seção exibe uma lista dos endereços IP das pessoas ou robôs que deixaram comentários SPAM em seu site."
3356
 
3357
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:369
3358
+ msgid "This information can be handy for identifying the most persistent IP addresses or ranges used by spammers."
3359
+ msgstr "Esta informação pode ser útil para identificar os endereços IP mais persistentes ou intervalos usados ​​por spammers."
 
 
3360
 
3361
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:370
3362
+ msgid "By inspecting the IP address data coming from spammers you will be in a better position to determine which addresses or address ranges you should block by adding them to your blacklist."
3363
+ msgstr "Ao inspecionar os dados de endereço IP provenientes de remetentes de spam, você estará em melhor posição para determinar quais endereços ou intervalos de endereços que você deve bloquear, adicionando-os à sua lista negra."
 
 
3364
 
3365
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:371
3366
  msgid ""
3367
+ "To add one or more of the IP addresses displayed in the table below to your blacklist, simply click the \"Block\" link for the individual row or select more than one address\n"
3368
+ " using the checkboxes and then choose the \"block\" option from the Bulk Actions dropdown list and click the \"Apply\" button."
3369
  msgstr ""
3370
+ "Para adicionar um ou mais dos endereços IP exibidos na tabela abaixo para a sua lista negra, basta clicar no link \"Bloquear\" para a linha individual ou selecionar mais de um endereço\n"
3371
+ " usando as caixas de seleção e, em seguida, escolha a opção \"bloquear\" na lista suspensa ações em massa e clique no botão \"Aplicar\"."
3372
+
3373
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:381
3374
+ msgid "Minimum number of SPAM comments per IP"
3375
+ msgstr "Número mínimo de comentários SPAM por IP"
3376
 
3377
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:383
3378
+ msgid "This field allows you to list only those IP addresses which have been used to post X or more SPAM comments."
3379
+ msgstr "Este campo permite listar apenas os endereços IP que foram usados ​​para postar X ou mais comentários SPAM."
3380
+
3381
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:387
3382
+ msgid "Example 1: Setting this value to \"0\" or \"1\" will list ALL IP addresses which were used to submit SPAM comments."
3383
+ msgstr "Exemplo 1: Definir esse valor para \"0\" ou \"1\" irá listar todos os endereços IP que foram usados ​​para enviar comentários SPAM."
3384
+
3385
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:388
3386
+ msgid "Example 2: Setting this value to \"5\" will list only those IP addresses which were used to submit 5 SPAM comments or more on your site."
3387
+ msgstr "Exemplo 2: Definir esse valor para \"5\" irá listar apenas os endereços IP que foram usados ​​para enviar 5 comentários SPAM ou mais em seu site."
3388
+
3389
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:395
3390
  msgid "Find IP Addresses"
3391
+ msgstr "Encontrar endereços IP"
3392
 
3393
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:399
3394
  msgid "SPAMMER IP Address Results"
3395
+ msgstr "Resultados de endereço IP SPAMMER"
3396
 
3397
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:405
3398
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility.php:177
3399
+ msgid "The plugin has detected that you are using a Multi-Site WordPress installation."
3400
+ msgstr "O plugin detectou que você está usando uma instalação de WordPress Multi site."
 
 
3401
 
3402
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:406
3403
  msgid "Only the \"superadmin\" can block IP addresses from the main site."
3404
+ msgstr "Somente o \"super administrador\" pode bloquear endereços IP a partir do site principal."
3405
 
3406
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:407
3407
+ msgid "Take note of the IP addresses you want blocked and ask the superadmin to add these to the blacklist using the \"Blacklist Manager\" on the main site."
3408
+ msgstr "Tome nota dos endereços IP que deseja bloquear e pedir ao super administrador para adicioná-los à lista negra usando o \"Gerenciador de lista negra\" no site principal."
3409
+
3410
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:452
3411
+ msgid "BuddyPress SPAM Settings"
3412
+ msgstr "Configurações de SPAM BuddyPress"
3413
+
3414
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:457
3415
+ msgid "Add Captcha To BuddyPress Registration Form"
3416
+ msgstr "Adicionar captcha para formulário de registro BuddyPress"
3417
+
3418
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:461
3419
+ msgid "This feature will add a simple math captcha field in the BuddyPress registration form."
3420
+ msgstr "Este recurso irá adicionar um campo de matemática captcha simples no formulário de inscrição BuddyPress."
3421
+
3422
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:462
3423
+ msgid "Adding a captcha field in the registration form is a simple way of greatly reducing SPAM signups from bots without using .htaccess rules."
3424
+ msgstr "Adicionando um campo de captcha no formulário de inscrição é uma maneira simples de reduzir grandemente inscrições SPAM de robôs sem usar regras .htaccess."
3425
+
3426
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:472
3427
+ msgid "Enable Captcha On BuddyPress Registration Form"
3428
+ msgstr "Habilitar captcha no formulário de registro BuddyPress"
3429
+
3430
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:475
3431
+ msgid "Check this if you want to insert a captcha field on the BuddyPress registration forms"
3432
+ msgstr "Marque esta opção se você deseja inserir um campo captcha no formulários de registro BuddyPress"
3433
 
3434
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php:484
3435
+ msgid "BuddyPress is not active! In order to use this feature you will need to have BuddyPress installed and activated."
3436
+ msgstr "BuddyPress não está ativo! Para utilizar este recurso, você precisará ter o BuddyPress instalado e ativado."
3437
+
3438
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:29
3439
  msgid "WP Username"
3440
+ msgstr "Nome de usuário WP"
3441
 
3442
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:30
3443
  msgid "Display Name"
3444
+ msgstr "Nome de exibição"
3445
 
3446
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:31
3447
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:915
3448
  msgid "Password"
3449
+ msgstr "Senha"
3450
 
3451
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:86
3452
  msgid "Admin User Security"
3453
+ msgstr "Segurança do usuário administrador"
3454
 
3455
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:89
3456
+ msgid "By default, WordPress sets the administrator username to \"admin\" at installation time."
3457
+ msgstr "Por padrão, o WordPress define o nome do usuário administrador para \"admin\" no momento da instalação."
 
 
3458
 
3459
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:90
3460
+ msgid "A lot of hackers try to take advantage of this information by attempting \"Brute Force Login Attacks\" where they repeatedly try to guess the password by using \"admin\" for username."
3461
+ msgstr "Um monte de hackers tentam tirar proveito desta informação pela tentativa \"Ataques Acesso de Força Bruta\" onde eles repetidamente tentam adivinhar a senha usando \"admin\" para o nome de usuário."
 
 
 
3462
 
3463
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:91
3464
+ msgid "From a security perspective, changing the default \"admin\" user name is one of the first and smartest things you should do on your site."
3465
+ msgstr "Numa perspectiva de segurança, alterar o nome de usuário padrão \"admin\" é uma das primeiras e mais inteligentes coisas que você deve fazer em seu site."
 
 
3466
 
3467
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:92
3468
+ msgid "This feature will allow you to change your default \"admin\" user name to a more secure name of your choosing."
3469
+ msgstr "Este recurso permitirá que você altere seu nome de usuário \"admin\" padrão para um nome mais seguro de sua escolha."
 
 
3470
 
3471
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:99
3472
  msgid "List of Administrator Accounts"
3473
+ msgstr "Lista de contas de administrador"
3474
 
3475
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:108
3476
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:36
3477
  msgid "Change Admin Username"
3478
+ msgstr "Alterar nome de usuário admin"
3479
 
3480
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:116
3481
  msgid ""
3482
+ "Your site currently has an account which uses the default \"admin\" username. \n"
3483
+ " It is highly recommended that you change this name to something else. \n"
 
 
3484
  " Use the following field to change the admin username."
3485
  msgstr ""
3486
+ "Seu site tem atualmente uma conta que usa o nome de usuário padrão \"admin\".\n"
3487
+ " É altamente recomendável que você altere esse nome para algo mais seguro. \n"
3488
+ " Use o campo a seguir para alterar o nome de usuário admin."
3489
 
3490
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:124
3491
  msgid "New Admin Username"
3492
+ msgstr "Novo nome de usuário admin"
3493
 
3494
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:126
3495
  msgid "Choose a new username for admin."
3496
+ msgstr "Escolha um novo nome de usuário para o administrador."
3497
 
3498
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:130
3499
  msgid "Change Username"
3500
+ msgstr "Alterar nome de usuário"
3501
 
3502
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:132
3503
+ msgid "NOTE: If you are currently logged in as \"admin\" you will be automatically logged out after changing your username and will be required to log back in."
3504
+ msgstr "NOTA: Se você está conectado no momento como \"admin\" você será automaticamente desconectado depois de mudar seu nome de usuário e será necessário fazer login novamente."
 
 
3505
 
3506
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:139
3507
  msgid "No action required! "
3508
+ msgstr "Nenhuma ação necessária! "
3509
 
3510
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:141
3511
+ msgid "Your site does not have any account which uses the default \"admin\" username. "
3512
+ msgstr "Seu site não tem qualquer conta que usa o nome de usuário padrão \"admin\"."
 
 
3513
 
3514
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:142
3515
  msgid "This is good security practice."
3516
+ msgstr "Esta é uma boa prática de segurança."
3517
 
3518
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:154
3519
  msgid "Display Name Security"
3520
+ msgstr "Segurança do nome de exibição"
3521
 
3522
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:157
3523
+ msgid "When you submit a post or answer a comment, WordPress will usually display your \"nickname\"."
3524
+ msgstr "Quando você envia uma mensagem ou responde a um comentário, o WordPress normalmente exibirá o seu \"apelido\"."
 
 
3525
 
3526
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:158
3527
+ msgid "By default the nickname is set to the login (or user) name of your account."
3528
+ msgstr "Por padrão, o apelido é definido para o nome de login (ou usuário) da sua conta."
 
3529
 
3530
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:159
3531
+ msgid "From a security perspective, leaving your nickname the same as your user name is bad practice because it gives a hacker at least half of your account's login credentials."
3532
+ msgstr "De uma perspectiva de segurança, deixar seu apelido o mesmo que seu nome de usuário é uma prática ruim, porque dá um hacker pelo menos metade das credenciais de login da sua conta."
 
 
 
3533
 
3534
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:160
3535
+ msgid "Therefore to further tighten your site's security you are advised to change your <strong>nickname</strong> and <strong>Display name</strong> to be different from your <strong>Username</strong>."
3536
+ msgstr "Portanto, para apertar ainda mais a segurança do seu site você é aconselhado a alterar o seu <strong>apelido</strong> e <strong>nome de exibição</strong> para ser diferente do seu <strong>nome de usuário</strong>."
 
 
 
3537
 
3538
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:166
3539
  msgid "Modify Accounts With Identical Login Name & Display Name"
3540
+ msgstr "Modificar contas com nome de login e nome de exibição idêntico"
3541
 
3542
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:175
3543
+ msgid "Your site currently has the following accounts which have an identical login name and display name."
3544
+ msgstr "Seu site tem atualmente as seguintes contas que têm um nome de login e nome de exibição idêntico."
 
 
3545
 
3546
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:176
3547
  msgid "Click on the link to edit the settings of that particular user account"
3548
+ msgstr "Clique no link para editar as configurações de determinada conta de usuário"
3549
 
3550
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:191
3551
  msgid "No action required."
3552
+ msgstr "Nenhuma ação necessária."
3553
 
3554
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:192
3555
+ msgid "Your site does not have a user account where the display name is identical to the username."
3556
+ msgstr "Seu site não tem uma conta de usuário onde o nome de exibição é idêntico ao nome de usuário."
 
 
3557
 
3558
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:203
3559
  msgid "Password Tool"
3560
+ msgstr "Ferramenta de senha"
3561
 
3562
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:206
3563
+ msgid "Poor password selection is one of the most common weak points of many sites and is usually the first thing a hacker will try to exploit when attempting to break into your site."
3564
+ msgstr "Seleção de senha pobres é um dos pontos fracos mais comuns de muitos sites, e é geralmente a primeira coisa que um hacker vai tentar explorar ao tentar entrar no seu site."
 
 
 
3565
 
3566
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:207
3567
+ msgid "Many people fall into the trap of using a simple word or series of numbers as their password. Such a predictable and simple password would take a competent hacker merely minutes to guess your password by using a simple script which cycles through the easy and most common combinations."
3568
+ msgstr "Muitas pessoas caem na armadilha de usar uma palavra simples ou uma série de números como sua senha. Uma senha tão previsível e simples levaria um hacker competente apenas minutos para adivinhar sua senha usando um script simples que percorre as combinações mais comuns e fácil."
 
 
 
 
3569
 
3570
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:208
3571
+ msgid "The longer and more complex your password is the harder it is for hackers to \"crack\" because more complex passwords require much greater computing power and time."
3572
+ msgstr "O mais longo e mais complexo sua senha é o mais difícil é para os hackers \"crack\" porque as senhas mais complexas exigem muito maior poder de computação e tempo."
 
 
 
3573
 
3574
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:209
3575
+ msgid "This section contains a useful password strength tool which you can use to check whether your password is sufficiently strong enough."
3576
+ msgstr "Esta seção contém uma ferramenta de força de senha útil que você pode usar para verificar se sua senha é suficientemente forte o suficiente."
 
 
3577
 
3578
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:214
3579
  msgid "Password Strength Tool"
3580
+ msgstr "Ferramenta de força de senha"
3581
 
3582
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:219
3583
  msgid "Start typing a password."
3584
+ msgstr "Comece a digitar uma senha."
3585
 
3586
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:222
3587
  msgid "It would take a desktop PC approximately"
3588
+ msgstr "Demora aproximadamente um PC desktop"
3589
 
3590
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:223
3591
  msgid "1 sec"
3592
+ msgstr "1 segundo"
3593
 
3594
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:223
3595
  msgid "to crack your password!"
3596
+ msgstr "para quebrar sua senha!"
3597
 
3598
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:228
3599
  msgid "Password Strength"
3600
+ msgstr "Força da senha"
3601
 
3602
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:244
3603
  msgid "Nonce check failed on admin username change operation!"
3604
+ msgstr "Verificação núncio falhou na operação de alteração do nome de usuário admin!"
3605
 
3606
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:251
3607
  msgid "Username "
3608
+ msgstr "Nome de usuário "
3609
 
3610
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:251
3611
  msgid " already exists. Please enter another value. "
3612
+ msgstr " já existe. Por favor, digite outro valor. "
3613
 
3614
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:267
3615
  msgid "The database update operation of the user account failed!"
3616
+ msgstr "Falha na operação de atualização do banco de dados da conta de usuário!"
3617
 
3618
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:296
3619
  msgid "You entered an invalid username. Please enter another value. "
3620
+ msgstr "Você digitou um nome de usuário inválido. Por favor, digite outro valor."
3621
 
3622
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:300
3623
  msgid "Please enter a value for your username. "
3624
  msgstr "Por favor, digite o seu nome de usuário."
3625
 
3626
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:307
3627
  msgid "Username Successfully Changed!"
3628
+ msgstr "Nome de usuário alterado com sucesso!"
3629
 
3630
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php:327
3631
  msgid "Account Login Name"
3632
+ msgstr "Nome de login de conta"
 
 
 
 
 
3633
 
3634
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:26
3635
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:298
 
 
 
 
 
3636
  msgid "Failed Login Records"
3637
+ msgstr "Registros de falhas de login"
3638
 
3639
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:27
3640
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:51
3641
  msgid "Force Logout"
3642
+ msgstr "Forçar saída"
3643
 
3644
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:28
3645
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:432
3646
  msgid "Account Activity Logs"
3647
+ msgstr "Logs de atividade de conta"
 
 
 
 
 
 
3648
 
3649
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:97
3650
+ msgid "You entered a non numeric value for the max login attempts field. It has been set to the default value."
3651
+ msgstr "Você digitou um valor não numérico para o campo de tentativas de login máximo. Foi definido como o valor padrão."
 
 
3652
 
3653
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:104
3654
+ msgid "You entered a non numeric value for the login retry time period field. It has been set to the default value."
3655
+ msgstr "Você digitou um valor não numérico para o campo período de tempo de repetição do login. Foi definido como o valor padrão."
 
 
3656
 
3657
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:160
3658
  msgid "Login Lockdown Configuration"
3659
+ msgstr "Configurações de bloqueio de login"
3660
 
3661
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:164
3662
  msgid "One of the ways hackers try to compromise sites is via a "
3663
+ msgstr "Uma das maneiras que hackers tentam comprometer sites é através de um "
3664
 
3665
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:164
3666
  msgid "Brute Force Login Attack"
3667
+ msgstr "Ataque de Login de Força Bruta"
3668
 
3669
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:165
3670
+ msgid "This is where attackers use repeated login attempts until they guess the password."
3671
+ msgstr "Isto é onde os atacantes usam tentativas de login repetidos até eles adivinhar a senha."
 
 
3672
 
3673
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:166
3674
+ msgid "Apart from choosing strong passwords, monitoring and blocking IP addresses which are involved in repeated login failures in a short period of time is a very effective way to stop these types of attacks."
3675
+ msgstr "Além de escolher senhas fortes, monitoramento e bloqueio de endereços IP que estão envolvidos em falhas de login repetidos em um curto período de tempo é uma maneira muito eficaz de parar esses tipos de ataques."
 
 
 
3676
 
3677
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:167
3678
  #, php-format
3679
+ msgid "You may also want to checkout our %s feature for another secure way to protect against these types of attacks."
3680
+ msgstr "Você também pode querer fazer o check-out em nosso recurso de %s para uma outra forma segura de proteger contra esses tipos de ataques."
 
 
3681
 
3682
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:172
3683
  msgid "Login Lockdown Options"
3684
+ msgstr "Opções de bloqueio de login"
3685
 
3686
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:183
3687
  msgid "Enable Login Lockdown Feature"
3688
+ msgstr "Habilitar recurso de bloqueio de login"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3689
 
3690
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:186
3691
+ msgid "Check this if you want to enable the login lockdown feature and apply the settings below"
3692
+ msgstr "Marque esta opção se você deseja ativar o recurso de bloqueio de login e aplicar as configurações abaixo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3693
 
3694
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:190
3695
+ msgid "Allow Unlock Requests"
3696
+ msgstr "Permite desbloquear pedidos"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3697
 
3698
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:193
3699
+ msgid "Check this if you want to allow users to generate an automated unlock request link which will unlock their account"
3700
+ msgstr "Marque esta opção se você deseja permitir que os usuários para gerar um link de solicitação de desbloqueio automático que irá desbloquear as suas contas"
 
 
 
 
 
3701
 
3702
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:197
3703
+ msgid "Max Login Attempts"
3704
+ msgstr "Tentativas de login máximo"
3705
 
3706
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:199
3707
+ msgid "Set the value for the maximum login retries before IP address is locked out"
3708
+ msgstr "Defina o valor para o número máximo de tentativas de login antes de endereço IP está bloqueado"
 
 
 
3709
 
3710
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:203
3711
+ msgid "Login Retry Time Period (min)"
3712
+ msgstr "Período de tempo (min) para fazer login novamente"
 
 
3713
 
3714
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:205
3715
+ msgid "If the maximum number of failed login attempts for a particular IP address occur within this time period the plugin will lock out that address"
3716
+ msgstr "Se o número máximo de tentativas de login para um determinado endereço IP ocorrer dentro deste período de tempo o plugin irá bloquear esse endereço"
 
 
3717
 
3718
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:209
3719
+ msgid "Time Length of Lockout (min)"
3720
+ msgstr "Tempo de duração do bloqueio (min)"
 
 
 
 
3721
 
3722
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:211
3723
+ msgid "Set the length of time for which a particular IP address will be prevented from logging in"
3724
+ msgstr "Defina o período de tempo durante o qual um determinado endereço IP será impedido de efetuar login"
 
 
 
 
3725
 
3726
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:215
3727
+ msgid "Display Generic Error Message"
3728
+ msgstr "Exibir mensagem de erro genérico"
 
 
3729
 
3730
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:218
3731
+ msgid "Check this if you want to show a generic error message when a login attempt fails"
3732
+ msgstr "Marque esta opção se deseja mostrar uma mensagem de erro genérico quando uma tentativa de login falhar"
3733
 
3734
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:222
3735
+ msgid "Instantly Lockout Invalid Usernames"
3736
+ msgstr "Bloquear instantaneamente nome de usuário inválido"
3737
 
3738
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:225
3739
+ msgid "Check this if you want to instantly lockout login attempts with usernames which do not exist on your system"
3740
+ msgstr "Marque esta opção se você deseja instantaneamente o bloqueio de tentativas de login com nomes de usuários que não existem em seu sistema"
 
 
3741
 
3742
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:230
3743
+ msgid "Notify By Email"
3744
+ msgstr "Notificar por e-mail"
3745
 
3746
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:233
3747
+ msgid "Check this if you want to receive an email when someone has been locked out due to maximum failed login attempts"
3748
+ msgstr "Marque esta opção se você deseja receber um e-mail quando alguém foi bloqueado devido a tentativas máximas na falha de login"
 
 
3749
 
3750
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:243
3751
+ msgid "Currently Locked Out IP Address Ranges"
3752
+ msgstr "Atualmente bloqueado intervalos de endereços IP"
3753
 
3754
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:248
3755
+ #, php-format
3756
+ msgid "To see a list of all locked IP addresses and ranges go to the %s tab in the dashboard menu."
3757
+ msgstr "Para ver uma lista de todos os endereços IP bloqueados e intervalos ir para a aba %s no menu do painel."
 
 
3758
 
3759
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:264
3760
  msgid "Nonce check failed for delete all failed login records operation!"
3761
+ msgstr "Verificação núncio falhou para operação de exclusão de todos os registros de login com falha!"
3762
 
3763
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:273
3764
  msgid "User Login Feature - Delete all failed login records operation failed!"
3765
+ msgstr "Recurso de login de usuário - Excluir todas as falhas de operação de registros de falhas de login!"
3766
 
3767
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:277
3768
  msgid "All records from the Failed Logins table were deleted successfully!"
3769
+ msgstr "Todos os registros da tabela falhas de logins foram excluídos com sucesso!"
3770
 
3771
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:292
3772
  msgid "This tab displays the failed login attempts for your site."
3773
+ msgstr "Essa guia exibe as tentativas de login para o seu site."
3774
 
3775
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:293
3776
+ msgid "The information below can be handy if you need to do security investigations because it will show you the IP range, username and ID (if applicable) and the time/date of the failed login attempt."
3777
+ msgstr "As informações abaixo podem ser útil se você precisa fazer investigações de segurança porque ele lhe mostrará o intervalo de IP, nome de usuário e ID (se aplicável) e a hora/data da falha de tentativa de login."
 
 
 
3778
 
3779
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:314
3780
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:323
3781
  msgid "Delete All Failed Login Records"
3782
+ msgstr "Excluir todos os registros de falha de login"
3783
 
3784
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:320
3785
+ msgid "Click this button if you wish to delete all failed login records in one go."
3786
+ msgstr "Clique nesse botão se você deseja excluir todos os registros de falhas de login de uma vez."
 
3787
 
3788
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:348
3789
+ msgid "You entered a non numeric value for the logout time period field. It has been set to the default value."
3790
+ msgstr "Você digitou um valor não numérico para o campo de período de tempo de saída. Foi definido como o valor padrão."
 
 
3791
 
3792
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:376
3793
+ msgid "Setting an expiry period for your WP administration session is a simple way to protect against unauthorized access to your site from your computer."
3794
+ msgstr "Definir um período de expiração para a sessão de administração do WP é uma maneira simples para proteger contra o acesso não autorizado ao seu site a partir do seu computador."
 
 
3795
 
3796
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:377
3797
+ msgid "This feature allows you to specify a time period in minutes after which the admin session will expire and the user will be forced to log back in."
3798
+ msgstr "Este recurso permite que você especifique um período de tempo em minutos, após o qual a sessão de administração irá expirar e o usuário será forçado a voltar a iniciar sessão."
 
 
3799
 
3800
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:382
3801
  msgid "Force User Logout Options"
3802
+ msgstr "Opções de saída do usuário à força"
3803
 
3804
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:394
3805
  msgid "Enable Force WP User Logout"
3806
+ msgstr "Habilitar saída do usuário WP à força"
3807
 
3808
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:397
3809
+ msgid "Check this if you want to force a wp user to be logged out after a configured amount of time"
3810
+ msgstr "Marque esta opção se você deseja forçar um usuário wp a ser desconectado após um período de tempo configurado"
 
 
3811
 
3812
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:401
3813
  msgid "Logout the WP User After XX Minutes"
3814
+ msgstr "Desconectar usuário WP após XX minutos"
3815
 
3816
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:403
3817
+ msgid "(Minutes) The user will be forced to log back in after this time period has elapased."
3818
+ msgstr "(Minutos) O usuário será obrigado a efetuar login novamente após este período de tempo tem passado."
 
 
3819
 
3820
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:426
3821
+ msgid "This tab displays the login activity for WordPress admin accounts registered with your site."
3822
+ msgstr "Esta guia exibe a atividade de login para contas de administração do WordPress registrados com o seu site."
 
 
3823
 
3824
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:427
3825
+ msgid "The information below can be handy if you need to do security investigations because it will show you the last 50 recent login events by username, IP address and time/date."
3826
+ msgstr "As informações abaixo podem ser útil se você precisa fazer investigações de segurança porque ele vai te mostrar os últimas 50 recentes login eventos por nome de usuário, endereço IP e data / hora."
 
 
 
3827
 
3828
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:470
3829
  msgid "Nonce check failed for users logged in list!"
3830
+ msgstr "Verificação núncio falhou para lista de usuários conectados!"
3831
 
3832
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:478
3833
  msgid "Refresh Logged In User Data"
3834
+ msgstr "Atualizar dados de usuários conectados"
3835
 
3836
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:482
3837
  msgid "Refresh Data"
3838
+ msgstr "Atualizar dados"
3839
 
3840
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:488
3841
  msgid "This tab displays all users who are currently logged into your site."
3842
+ msgstr "Essa guia exibe todos os usuários que estão atualmente conectados no seu site."
3843
 
3844
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:489
3845
+ msgid "If you suspect there is a user or users who are logged in which should not be, you can block them by inspecting the IP addresses from the data below and adding them to your blacklist."
3846
+ msgstr "Se você suspeitar que um ou mais usuários que estão conectados que não deve ser, você pode bloqueá-los inspecionando os endereços IP a partir dos dados abaixo e adicioná-los à sua lista negra."
 
 
 
3847
 
3848
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:490
3849
+ msgid "You can also instantly log them out by clicking on the \"Force Logout\" link when you hover over the row in the User Id column."
3850
+ msgstr "Você também pode imediatamente desconecta-los clicando no link \"Força Saída\" quando você passa o mouse sobre a linha na coluna Id do usuário."
3851
+
3852
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:495
3853
  msgid "Currently Logged In Users"
3854
+ msgstr "Usuários atualmente conectados"
3855
 
3856
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:562
3857
  msgid "The selected records were deleted successfully!"
3858
+ msgstr "Os registros selecionados foram excluídos com sucesso!"
3859
 
3860
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php:572
3861
  msgid "The selected record was deleted successfully!"
3862
+ msgstr "O registro selecionado foi excluído com sucesso!"
3863
 
3864
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:23
3865
  msgid "Manual Approval"
3866
+ msgstr "Aprovação manual"
3867
 
3868
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:24
3869
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:57
3870
  msgid "Registration Captcha"
3871
+ msgstr "Captcha em registro"
3872
 
3873
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:113
3874
  msgid "User Registration Settings"
3875
+ msgstr "Configurações de registro de usuários"
3876
 
3877
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:117
3878
  msgid "Manually Approve New Registrations"
3879
+ msgstr "Aprovar manualmente novos registros"
3880
 
3881
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:121
3882
+ msgid "If your site allows people to create their own accounts via the WordPress registration form, then you can minimize SPAM or bogus registrations by manually approving each registration."
3883
+ msgstr "Se o seu site permite que as pessoas criem suas próprias contas, através do formulário de inscrição WordPress, então você pode minimizar SPAM ou registros falsos, aprovando manualmente cada registro."
 
 
 
 
 
 
3884
 
3885
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:122
3886
+ msgid "This feature will automatically set a newly registered account to \"pending\" until the administrator activates it. Therefore undesirable registrants will be unable to log in without your express approval."
3887
+ msgstr "Este recurso irá definir automaticamente uma conta recém registrada para \"pendente\" até que o administrador a ative. Portanto inscritos indesejáveis ​​não serão capazes de entrar sem a sua autorização expressa."
 
 
 
 
 
 
3888
 
3889
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:123
3890
+ msgid "You can view all accounts which have been newly registered via the handy table below and you can also perform bulk activation/deactivation/deletion tasks on each account."
3891
+ msgstr "Você pode ver todas as contas que foram recentemente registradas através da tabela acessível abaixo e você também pode executar tarefas de ativação / desativação / exclusão em massa em cada conta."
 
 
 
 
 
 
3892
 
3893
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:139
3894
  msgid "Enable manual approval of new registrations"
3895
+ msgstr "Habilitar aprovação manual de novos registros"
3896
 
3897
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:142
3898
+ msgid "Check this if you want to automatically disable all newly registered accounts so that you can approve them manually."
3899
+ msgstr "Marque esta opção se você deseja desabilitar automaticamente todas as contas recém registradas de modo que você possa aprová-las manualmente."
 
 
3900
 
3901
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:151
3902
  msgid "Approve Registered Users"
3903
+ msgstr "Aprovar os usuários registrados"
3904
 
3905
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:196
3906
+ msgid "This feature allows you to add a captcha form on the WordPress registration page."
3907
+ msgstr "Este recurso permite que você adicione uma formulário captcha na página de registro WordPress."
 
 
3908
 
3909
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:197
3910
+ msgid "Users who attempt to register will also need to enter the answer to a simple mathematical question - if they enter the wrong answer, the plugin will not allow them to register."
3911
+ msgstr "Usuários que tentam registrar também precisará digitar a resposta a uma simples questão de matemática - se entrarem com a resposta errada, o plugin não irá permitir-lhes para se registrar."
 
 
 
3912
 
3913
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:198
3914
+ msgid "Therefore, adding a captcha form on the registration page is another effective yet simple SPAM registration prevention technique."
3915
+ msgstr "Portanto, adicionando um formulário captcha na página de registro é outra técnica de prevenção de registro SPAM eficaz, ainda que simples."
 
 
3916
 
3917
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:203
3918
  msgid "Registration Page Captcha Settings"
3919
+ msgstr "Configurações de captcha na página de registro"
3920
 
3921
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:210
3922
+ msgid "The core default behaviour for WordPress Multi Site regarding user registration is that all users are registered via the main site."
3923
+ msgstr "O comportamento padrão de núcleo para WordPress Multi Site sobre registro de usuário é que todos os usuários são registrados através do site principal."
3924
+
3925
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:211
3926
+ msgid "Therefore, if you would like to add a captcha form to the registration page for a Multi Site, please go to \"Registration Captcha\" settings on the main site."
3927
+ msgstr "Portanto, se você gostaria de adicionar um formulário captcha à página de registro para um multi site, por favor, vá para Configurações \"Captcha Registro\" no site principal."
3928
+
3929
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:226
3930
  msgid "Enable Captcha On Registration Page"
3931
+ msgstr "Habilitar captcha na página de registro"
3932
 
3933
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php:229
3934
+ msgid "Check this if you want to insert a captcha form on the WordPress user registration page (if you allow user registration)."
3935
+ msgstr "Marque esta opção se você deseja inserir um formulário captcha na página de registro de usuário do WordPress (se você permitir o registo do usuário)."
 
 
3936
 
3937
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-whois-menu.php:22
3938
  msgid "WhoIS Lookup"
3939
+ msgstr "Pesquisa WhoIS"
3940
 
3941
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-whois-menu.php:75
3942
  msgid "WHOIS Lookup Information"
3943
+ msgstr "Informações de pesquisa WHOIS"
3944
 
3945
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-whois-menu.php:78
3946
+ msgid "This feature allows you to look up more detailed information about an IP address or domain name by querying the WHOIS API."
3947
+ msgstr "Esse recurso permite que você procure informações mais detalhadas sobre um endereço IP ou nome de domínio, consultando a API do WHOIS."
 
 
3948
 
3949
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-whois-menu.php:84
3950
  msgid "Perform a WHOIS Lookup for an IP or Domain Name"
3951
+ msgstr "Executar uma pesquisa WHOIS para um IP ou nome de domínio"
3952
 
3953
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-whois-menu.php:90
3954
  msgid "Enter IP Address or Domain Name"
3955
+ msgstr "Digite o endereço IP ou nome de domínio"
3956
 
3957
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-whois-menu.php:92
3958
+ msgid "Enter an IP address or domain name. Example: 111.11.12.13 OR some-domain-name.com"
3959
+ msgstr "Digite um endereço IP ou nome de domínio. Exemplo: 111.11.12.13 OU some-domain-name.com"
 
 
3960
 
3961
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-whois-menu.php:96
3962
  msgid "Perform IP or Domain Lookup"
3963
+ msgstr "Executar IP ou pesquisa de domínio"
3964
 
3965
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-whois-menu.php:117
3966
  msgid "WHOIS lookup successfully completed. Please see the results below:"
3967
+ msgstr "Pesquisa WHOIS concluída com sucesso. Por favor, veja os resultados abaixo:"
3968
 
3969
+ #: ../../plugins/all-in-one-wp-security-and-firewall/admin/wp-security-whois-menu.php:129
3970
+ msgid "You have entered an incorrectly formatted IP address or domain name. Please try again."
3971
+ msgstr "Você inseriu a forma incorreta de um endereço IP ou nome do domínio. Por favor, tente novamente."
 
 
 
 
3972
 
3973
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:29
3974
+ msgid "Remove WP Generatore Meta Tag"
3975
+ msgstr "Remover gerador de meta tag WP"
3976
 
3977
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:38
3978
+ msgid "Change Display Name"
3979
+ msgstr "Alterar nome de exibição"
3980
 
3981
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:45
3982
+ msgid "Custom Login Captcha"
3983
+ msgstr "Captcha login personalizado"
3984
 
3985
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:47
3986
+ msgid "Lost Password Captcha"
3987
+ msgstr "Captcha senha perdida"
3988
 
3989
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:49
3990
+ msgid "Login IP Whitelisting"
3991
+ msgstr "Lista branca IP login"
 
3992
 
3993
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:55
3994
+ msgid "Registration Approval"
3995
+ msgstr "Aprovação do registro"
3996
 
3997
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:71
3998
+ msgid "WordPress Files Access"
3999
+ msgstr "Acesso arquivos WordPress"
4000
 
4001
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:75
4002
+ msgid "IP and User Agent Blacklisting"
4003
+ msgstr "Lista negra de agente de usuário e IP"
 
4004
 
4005
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:79
4006
+ msgid "Enable Basic Firewall"
4007
+ msgstr "Habilitar firewall básico"
4008
+
4009
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:80
4010
+ msgid "Enable Pingback Vulnerability Protection"
4011
+ msgstr "Habilitar proteção vulnerabilidade pingback"
4012
+
4013
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:82
4014
+ msgid "Enable IP blocking for 404 detection"
4015
+ msgstr "Habilitar o bloqueio de IP para a detecção de 404"
4016
+
4017
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:86
4018
+ msgid "Enable Rename Login Page"
4019
+ msgstr "Habilitar renomeação da página de login"
4020
+
4021
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:88
4022
+ msgid "Enable Login Honeypot"
4023
+ msgstr "Habilitar pote de mel em login"
4024
+
4025
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:94
4026
+ msgid "Forbid Proxy Comments"
4027
+ msgstr "Proibir comentários proxy"
4028
+
4029
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:95
4030
+ msgid "Deny Bad Queries"
4031
+ msgstr "Impedir consultas duvidosas"
4032
+
4033
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:97
4034
+ msgid "5G/6G Blacklist"
4035
+ msgstr "Lista negra 5G/6G"
4036
 
4037
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:100
4038
+ msgid "Block Spambots"
4039
+ msgstr "Bloquear Spambots"
4040
+
4041
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:102
4042
+ msgid "Comment Captcha"
4043
+ msgstr "Captcha comentário"
4044
+
4045
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php:104
4046
+ msgid "BuddyPress Registration Captcha"
4047
+ msgstr "Captcha registro BuddyPress"
4048
+
4049
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item.php:28
4050
+ msgid "Basic"
4051
+ msgstr "Básico"
4052
+
4053
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item.php:31
4054
+ msgid "Intermediate"
4055
+ msgstr "Intermediario"
4056
+
4057
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item.php:34
4058
+ msgid "Advanced"
4059
+ msgstr "Avançado"
4060
+
4061
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-backup.php:189
4062
  msgid "All In One WP Security - Site Database Backup"
4063
+ msgstr "All In One WP Security - Backup do banco de dados do site"
4064
 
4065
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-backup.php:191
4066
  msgid "Attached is your latest DB backup file for site URL"
4067
+ msgstr "Em anexo é o seu arquivo de backup mais recente do banco de dados para a URL do site"
4068
 
4069
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-backup.php:191
4070
  msgid " generated on"
4071
+ msgstr " gerado em"
4072
 
4073
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:17
4074
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-general-init-tasks.php:328
4075
  msgid "Please enter an answer in digits:"
4076
+ msgstr "Favor digite a resposta em dígitos:"
4077
 
4078
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:96
4079
  msgid "one"
4080
  msgstr "um"
4081
 
4082
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:97
4083
  msgid "two"
4084
  msgstr "dois"
4085
 
4086
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:98
4087
  msgid "three"
4088
  msgstr "três"
4089
 
4090
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:99
4091
  msgid "four"
4092
  msgstr "quatro"
4093
 
4094
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:100
4095
  msgid "five"
4096
  msgstr "cinco"
4097
 
4098
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:101
4099
  msgid "six"
4100
  msgstr "seis"
4101
 
4102
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:102
4103
  msgid "seven"
4104
  msgstr "sete"
4105
 
4106
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:103
4107
  msgid "eight"
4108
  msgstr "oito"
4109
 
4110
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:104
4111
  msgid "nine"
4112
  msgstr "nove"
4113
 
4114
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:105
4115
  msgid "ten"
4116
  msgstr "dez"
4117
 
4118
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:106
4119
  msgid "eleven"
4120
  msgstr "onze"
4121
 
4122
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:107
4123
  msgid "twelve"
4124
  msgstr "doze"
4125
 
4126
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:108
4127
  msgid "thirteen"
4128
  msgstr "treze"
4129
 
4130
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:109
4131
  msgid "fourteen"
4132
  msgstr "catorze"
4133
 
4134
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:110
4135
  msgid "fifteen"
4136
  msgstr "quinze"
4137
 
4138
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:111
4139
  msgid "sixteen"
4140
  msgstr "dezesseis"
4141
 
4142
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:112
4143
  msgid "seventeen"
4144
  msgstr "dezessete"
4145
 
4146
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:113
4147
  msgid "eighteen"
4148
  msgstr "dezoito"
4149
 
4150
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:114
4151
  msgid "nineteen"
4152
  msgstr "dezenove"
4153
 
4154
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php:115
4155
  msgid "twenty"
4156
  msgstr "vinte"
4157
 
4158
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:55
4159
  msgid "All In One WP Security - File change detected!"
4160
+ msgstr "All In One WP Security - Alteração de arquivo detectada!"
4161
 
4162
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:57
4163
  msgid "A file change was detected on your system for site URL"
4164
+ msgstr "Um arquivo substituido foi detectado em seu sistema do website URL"
4165
 
4166
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:57
4167
  msgid ". Scan was generated on"
4168
  msgstr ". Verificação foi gerada em"
4169
 
4170
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:58
4171
+ msgid "A summary of the scan results is shown below:"
4172
+ msgstr "Um resumo dos resultados da verificação é mostrado abaixo:"
4173
+
4174
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:67
4175
  msgid "Login to your site to view the scan details."
4176
  msgstr "Logue-se em seu website para ver os detalhes da verificação."
4177
 
4178
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:293
4179
+ msgid "Starting DB scan.....please wait while the plugin scans your database......."
4180
+ msgstr "Iniciando a verificação do DB... por favor aguarde enquanto o plugin examina seu banco de dados..."
4181
+
4182
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:297
4183
+ msgid "Scanning options table........."
4184
+ msgstr "Digitalização da tabela de opções..."
4185
+
4186
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:366
4187
+ #, php-format
4188
+ msgid "%s and option_id: %s"
4189
+ msgstr "%s e option_id: %s"
4190
+
4191
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:369
4192
+ #, php-format
4193
+ msgid "Deletion of known pharma hack entry for option_name %s failed. Please delete this entry manually!"
4194
+ msgstr "Supressão da entrada de hack conhecido pharma de option_name %s falhou. Por favor, exclua esta entrada manualmente!"
4195
+
4196
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:371
4197
+ #, php-format
4198
+ msgid "The options table entry with known pharma hack for option_id %s with option_name %s was successfully deleted"
4199
+ msgstr "A entrada da tabela de opções com pharma conhecido hack para option_id %s com option_name %s foi excluído com sucesso"
4200
+
4201
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:385
4202
+ #, php-format
4203
+ msgid "Possible suspicious entry found (for option_id: %s) - %s "
4204
+ msgstr "Possível entrada suspeita encontrada (para option_id: %s) - %s "
4205
+
4206
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:394
4207
+ msgid "No suspicious entries found in options table"
4208
+ msgstr "Não há entradas suspeitas, encontradas na tabela de opções"
4209
+
4210
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:398
4211
+ msgid "Scanning posts table........."
4212
+ msgstr "Digitalização da tabela de postagens..."
4213
+
4214
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:438
4215
+ #, php-format
4216
+ msgid "Possible suspicious entry found (for Post ID: %s) in the following column - %s "
4217
+ msgstr "Possível entrada suspeita encontrada (para Post ID: %s) na coluna seguinte - %s "
4218
+
4219
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:447
4220
+ msgid "No suspicious entries found in posts table"
4221
+ msgstr "Não há entradas suspeitas, encontradas na tabela de postagens"
4222
+
4223
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:451
4224
+ msgid "Scanning links table........."
4225
+ msgstr "Digitalização da tabela de ligações..."
4226
+
4227
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:490
4228
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:541
4229
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:569
4230
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:597
4231
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:646
4232
+ #, php-format
4233
+ msgid "Possible suspicious entry - %s "
4234
+ msgstr "Possível entrada suspeita - %s "
4235
+
4236
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:499
4237
+ msgid "No suspicious entries found in links table"
4238
+ msgstr "Não há entradas suspeitas, encontradas na tabela de ligações"
4239
+
4240
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:503
4241
+ msgid "Scanning comments table........."
4242
+ msgstr "Digitalização da tabela de comentários..."
4243
+
4244
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:550
4245
+ msgid "No suspicious entries found in comments table"
4246
+ msgstr "Não há entradas suspeitas, encontradas na tabela de comentários"
4247
+
4248
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:554
4249
+ msgid "Scanning postmeta table........."
4250
+ msgstr "Digitalização da tabela de postmeta..."
4251
+
4252
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:578
4253
+ msgid "No suspicious entries found in postmeta table"
4254
+ msgstr "Não há entradas suspeitas, encontradas na tabela de postmeta"
4255
+
4256
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:582
4257
+ msgid "Scanning usermeta table........."
4258
+ msgstr "Digitalização da tabela de usermeta..."
4259
+
4260
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:606
4261
+ msgid "No suspicious entries found in usermeta table"
4262
+ msgstr "Não há entradas suspeitas, encontradas na tabela de usermeta"
4263
+
4264
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:610
4265
+ msgid "Scanning users table........."
4266
+ msgstr "Digitalização da tabela de usuários..."
4267
+
4268
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:655
4269
+ msgid "No suspicious entries found in users table"
4270
+ msgstr "Não há entradas suspeitas, encontradas na tabela de usuários"
4271
+
4272
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:662
4273
+ msgid "The plugin has detected that there are some potentially suspicious entries in your database."
4274
+ msgstr "O plugin detectou que existem algumas entradas potencialmente suspeitas em seu banco de dados."
4275
+
4276
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:663
4277
+ msgid "Please verify the results listed below to confirm whether the entries detected are genuinely suspicious or if they are false positives."
4278
+ msgstr "Por favor, verifique os resultados listados abaixo para confirmar se as entradas detectadas são genuinamente suspeitas ou se eles são falsos positivos."
4279
+
4280
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:668
4281
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:683
4282
+ msgid "Disclaimer:"
4283
+ msgstr "Aviso legal:"
4284
+
4285
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:669
4286
+ msgid "Even though this database scan has revealed some suspicious entries, this does not necessarily mean that other parts of your DB or site are also not compromised."
4287
+ msgstr "Apesar dessa verificação de banco de dados ter revelado algumas entradas suspeitas, isto não significa necessariamente que outras partes do seu DB ou do site também não estão comprometidos."
4288
+
4289
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:670
4290
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:685
4291
+ msgid "Please note that database scan performed by this feature is basic and looks for common malicious entries. Since hackers are continually evolving their methods this scan is not meant to be a guaranteed catch-all for malware."
4292
+ msgstr "Por favor, note que a verificação de banco de dados realizada por esse recurso é básico e procura por entradas maliciosos comuns. Uma vez que os hackers estão evoluindo continuamente seus métodos esta verificação não pretende ser um pega-tudo garantido para malware."
4293
+
4294
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:671
4295
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:686
4296
+ #, php-format
4297
+ msgid "It is your responsibility to do the due diligence and perform a robust %s on your site if you wish to be more certain that your site is clean."
4298
+ msgstr "É de sua responsabilidade fazer a devida diligência e executar um robusto %s em seu site, se você deseja ter mais certeza de que seu site está limpo."
4299
+
4300
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:678
4301
+ msgid "DB Scan was completed successfully. No suspicious entries found."
4302
+ msgstr "Verificação do banco de dados foi concluída com sucesso. Não há entradas suspeitas encontradas."
4303
+
4304
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:684
4305
+ msgid "Even though the database scan has not revealed any suspicious entries, this does not necessarily mean that your site is actually completely clean or not compromised."
4306
+ msgstr "Mesmo que a verificação de banco de dados não tenha revelado quaisquer entradas suspeitas, isto não significa necessariamente que seu site é realmente completamente limpo ou não comprometidos."
4307
+
4308
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:726
4309
+ msgid "The following files were added to your host"
4310
+ msgstr "Os seguintes arquivos foram adicionados ao seu host"
4311
+
4312
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:728
4313
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:737
4314
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:747
4315
+ msgid "modified on: "
4316
+ msgstr "modificado em: "
4317
+
4318
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:735
4319
+ msgid "The following files were removed from your host"
4320
+ msgstr "Os seguintes arquivos foram removidos do seu hospedeiro"
4321
+
4322
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php:745
4323
+ msgid "The following files were changed on your host"
4324
+ msgstr "Os seguintes arquivos foram alterados em seu hospedeiro"
4325
+
4326
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-general-init-tasks.php:355
4327
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-general-init-tasks.php:432
4328
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:70
4329
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:73
4330
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-registration.php:68
4331
+ msgid "<strong>ERROR</strong>: Your answer was incorrect - please try again."
4332
+ msgstr "<strong>ERRO</strong>: A sua resposta está INCORRETA - por favor, tente novamente."
4333
+
4334
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-general-init-tasks.php:367
4335
+ msgid "Enter something special:"
4336
+ msgstr "Digite algo especial:"
4337
+
4338
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-general-init-tasks.php:394
4339
  msgid "Please enter an answer in the CAPTCHA field."
4340
  msgstr "Por favor, digite uma resposta no campo CAPTCHA."
4341
 
4342
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-general-init-tasks.php:404
4343
+ msgid "Error: You entered an incorrect CAPTCHA answer. Please go back and try again."
4344
+ msgstr "Erro: Você digitou a resposta CAPTCHA, de forma incorreta. Por favor, volte e tente NOVAMENTE."
 
 
 
4345
 
4346
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-general-init-tasks.php:456
4347
+ msgid "Your CAPTCHA answer was incorrect - please try again."
4348
+ msgstr "Sua resposta CAPTCHA estava errada - por favor, tente novamente."
 
 
 
 
 
4349
 
4350
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:44
4351
+ msgid "<strong>ERROR</strong>: Login failed because your IP address has been blocked. Please contact the administrator."
4352
+ msgstr "<strong>ERRO</strong>: Falha no login porque seu endereço IP está bloqueado. Por favor, entre em contato com o administrador."
 
 
 
 
 
 
 
4353
 
4354
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:83
4355
  msgid "<strong>ERROR</strong>: The username field is empty."
4356
  msgstr "<strong>ERRO</strong>: O campo nome de USUÁRIO está vazio."
4357
 
4358
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:87
4359
  msgid "<strong>ERROR</strong>: The password field is empty."
4360
  msgstr "<strong>ERRO</strong>: O campo da SENHA está vazio."
4361
 
4362
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:107
4363
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:133
4364
  msgid "<strong>ERROR</strong>: Invalid login credentials."
4365
  msgstr "<strong>ERRO</strong>: As suas informações de login são INVÁLIDAS."
4366
 
4367
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:110
4368
  msgid "<strong>ERROR</strong>: Invalid username."
4369
  msgstr "<strong>ERRO</strong>: NOME DE USUÁRIO Inválido."
4370
 
4371
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:136
4372
  #, php-format
4373
+ msgid "<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password Lost and Found\">Lost your password</a>?"
4374
+ msgstr "<strong>ERRO</strong>: SENHA INCORRETA. <a href=\"%s\" title=\"Senha Perdida e Encontrada\">Perdeu a sua SENHA</a>?"
 
 
 
 
4375
 
4376
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:147
4377
+ msgid "<strong>ACCOUNT PENDING</strong>: Your account is currently not active. An administrator needs to activate your account before you can login."
4378
+ msgstr "<strong>CONTA PENDENTE</strong>: A sua CONTA não está ativa. Um administrador precisa ativar a sua conta antes de você efetuar o LOGIN."
 
 
 
 
4379
 
4380
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:270
4381
  msgid "Site Lockout Notification"
4382
+ msgstr "Notificação de bloqueio do site"
4383
 
4384
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:271
4385
+ msgid "A lockdown event has occurred due to too many failed login attempts or invalid username:"
4386
+ msgstr "Um evento de bloqueio ocorreu devido a muitas tentativas de login ou nome de usuário inválido:"
 
 
 
 
4387
 
4388
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:272
4389
  msgid "Username: "
4390
+ msgstr "Nome de usuário: "
4391
 
4392
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:273
4393
  msgid "IP Address: "
4394
  msgstr "Endereço IP:"
4395
 
4396
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:274
4397
  msgid "IP Range: "
4398
  msgstr "Faixa IP:"
4399
 
4400
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:275
4401
+ msgid "Log into your site's WordPress administration panel to see the duration of the lockout or to unlock the user."
4402
+ msgstr "Faça login no painel de administração do seu site WordPress para ver a duração do bloqueio ou para desbloquear o usuário."
 
 
4403
 
4404
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:352
4405
+ msgid "Unlock Request Notification"
4406
+ msgstr "Desbloquear solicitação de notificação"
4407
+
4408
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:353
4409
+ msgid "You have requested for the account with email address "
4410
+ msgstr "Você tenha solicitado a conta com endereço de e-mail"
4411
+
4412
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:354
4413
+ msgid "Unlock link: "
4414
+ msgstr "Desbloquear link: "
4415
+
4416
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:355
4417
+ msgid "After clicking the above link you will be able to login to the WordPress administration panel."
4418
+ msgstr "Após clicar no link acima, você será capaz de acessar o painel de administração do WordPress."
4419
+
4420
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:525
4421
  #, php-format
4422
+ msgid "Your session has expired because it has been over %d minutes since your last login."
4423
+ msgstr "A sua sessão foi encerrada porque se passaram %d minutos do seu último login."
 
 
 
 
4424
 
4425
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:526
4426
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:530
4427
  msgid "Please log back in to continue."
4428
+ msgstr "Por favor efetue o login novamente para continuar."
4429
 
4430
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:529
4431
  msgid "You were logged out because you just changed the \"admin\" username."
4432
+ msgstr "Você foi desconectado porque você apenas alterou o nome de usuário \"admin\"."
4433
 
4434
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php:555
4435
+ msgid "Request Unlock"
4436
+ msgstr "Solicitação de desbloqueio"
4437
+
4438
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-registration.php:55
4439
+ msgid "<strong>ERROR</strong>: You are not allowed to register because your IP address is currently locked!"
4440
+ msgstr "<strong>ERRO</strong>: Você não tem permissão para se registrar porque seu endereço IP está atualmente bloqueado!"
4441
+
4442
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility-ip-address.php:73
4443
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility-ip-address.php:88
4444
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility-ip-address.php:107
4445
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility-ip-address.php:122
4446
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility-ip-address.php:137
4447
  msgid " is not a valid ip address format."
4448
+ msgstr " esse formato de endereço de IP não é válido."
4449
 
4450
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility-ip-address.php:145
4451
  msgid "You cannot ban your own IP address: "
4452
  msgstr "Você não pode banir o seu próprio endereço IP"
4453
 
4454
+ #: ../../plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility.php:178
4455
+ msgid "This feature can only be configured by the \"superadmin\" on the main site."
4456
+ msgstr "Este recurso pode ser configurado pelo \"super administrador\" no site principal."
 
4457
 
4458
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:99
4459
+ msgid "https://wordpress.org/"
4460
+ msgstr "https://wordpress.org/"
4461
 
4462
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:100
4463
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-unlock-request.php:14
4464
+ msgid "Powered by WordPress"
4465
+ msgstr "Alimentado por WordPress"
4466
 
4467
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:217
4468
+ #, php-format
4469
+ msgid "&larr; Back to %s"
4470
+ msgstr "&larr; Voltar para %s"
4471
 
4472
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:282
4473
+ msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
4474
+ msgstr "<strong>ERRO</strong>: Digite um nome de usuário ou endereço de e-mail."
4475
 
4476
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:286
4477
+ msgid "<strong>ERROR</strong>: There is no user registered with that email address."
4478
+ msgstr "<strong>ERRO</strong>: Não existe nenhum usuário registrado com esse endereço de e-mail."
4479
 
4480
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:303
4481
+ msgid "<strong>ERROR</strong>: Invalid username or e-mail."
4482
+ msgstr "<strong>ERRO</strong>: Nome de usuário inválido ou e-mail."
4483
 
4484
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:341
4485
+ msgid "Password reset is not allowed for this user"
4486
+ msgstr "Redefinição de senha não é permitida para este usuário"
4487
 
4488
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:367
4489
+ msgid "Someone requested that the password be reset for the following account:"
4490
+ msgstr "Alguém solicitou que a senha seja redefinida para a seguinte conta:"
4491
 
4492
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:369
4493
+ #, php-format
4494
+ msgid "Username: %s"
4495
+ msgstr "Nome de usuário: %s"
4496
 
4497
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:370
4498
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
4499
+ msgstr "Se isso foi um erro, apenas ignore este e-mail e nada acontecerá."
4500
 
4501
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:371
4502
+ msgid "To reset your password, visit the following address:"
4503
+ msgstr "Para redefinir sua senha, visite o seguinte endereço:"
4504
 
4505
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:383
4506
+ #, php-format
4507
+ msgid "[%s] Password Reset"
4508
+ msgstr "Redefinir de senha [%s]"
4509
+
4510
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:408
4511
+ msgid "The e-mail could not be sent."
4512
+ msgstr "O e-mail não pôde ser enviado."
4513
+
4514
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:408
4515
+ msgid "Possible reason: your host may have disabled the mail() function."
4516
+ msgstr "Possível motivo: seu host pode ter desabilitado a função mail()."
4517
+
4518
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:530
4519
+ msgid "Your password reset link appears to be invalid. Please request a new link below."
4520
+ msgstr "Seu link de redefinição de senha parece ser inválido. Por favor, solicite um novo link abaixo."
4521
+
4522
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:532
4523
+ msgid "Your password reset link has expired. Please request a new link below."
4524
+ msgstr "Seu link de redefinição de senha expirou. Por favor, solicite um novo link abaixo."
4525
+
4526
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:553
4527
+ msgid "Lost Password"
4528
+ msgstr "Senha perdida"
4529
+
4530
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:553
4531
+ msgid "Please enter your username or email address. You will receive a link to create a new password via email."
4532
+ msgstr "Por favor, digite seu nome de usuário ou endereço de e-mail. Você receberá um link para criar uma nova senha por e-mail."
4533
+
4534
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:561
4535
+ msgid "Username or E-mail:"
4536
+ msgstr "Nome de usuário ou e-mail:"
4537
+
4538
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:576
4539
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:639
4540
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:685
4541
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:767
4542
+ msgid "Log in"
4543
+ msgstr "Entrar"
4544
+
4545
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:579
4546
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:688
4547
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:945
4548
+ msgid "Register"
4549
+ msgstr "Registrar"
4550
+
4551
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:624
4552
+ msgid "The passwords do not match."
4553
+ msgstr "As senhas não coincidem."
4554
+
4555
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:639
4556
+ msgid "Password Reset"
4557
+ msgstr "Resetar senha"
4558
+
4559
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:639
4560
+ msgid "Your password has been reset."
4561
+ msgstr "Sua senha foi redefinida."
4562
+
4563
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:647
4564
+ msgid "Reset Password"
4565
+ msgstr "Redefinir senha"
4566
+
4567
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:647
4568
+ msgid "Enter your new password below."
4569
+ msgstr "Digite sua nova senha abaixo."
4570
+
4571
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:654
4572
+ msgid "New password"
4573
+ msgstr "Nova senha"
4574
+
4575
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:659
4576
+ msgid "Strength indicator"
4577
+ msgstr "Indicador de força"
4578
+
4579
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:663
4580
+ msgid "Confirm new password"
4581
+ msgstr "Confirmar nova senha"
4582
+
4583
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:740
4584
+ msgid "Registration Form"
4585
+ msgstr "Formulário de registro"
4586
+
4587
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:740
4588
+ msgid "Register For This Site"
4589
+ msgstr "Registre-se nesse site"
4590
+
4591
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:745
4592
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:911
4593
+ msgid "Username"
4594
+ msgstr "Nome de usuário"
4595
+
4596
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:749
4597
+ msgid "E-mail"
4598
+ msgstr "E-mail"
4599
+
4600
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:760
4601
+ msgid "Registration confirmation will be e-mailed to you."
4602
+ msgstr "Confirmação de inscrição será enviado por e-mail para você."
4603
+
4604
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:768
4605
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:951
4606
+ msgid "Lost your password?"
4607
+ msgstr "Perdeu sua senha?"
4608
+
4609
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:808
4610
+ #, php-format
4611
+ msgid "<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>."
4612
+ msgstr "<strong>ERRO</strong>: Cookies são bloqueados devido a saída inesperada. Para obter ajuda, consulte <a href=\"%1$s\">esta documentação</a> ou tente os <a href=\"%2$s\">fóruns de suporte</a>."
4613
 
4614
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:809
4615
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:813
4616
+ msgid "https://codex.wordpress.org/Cookies"
4617
+ msgstr "https://codex.wordpress.org/Cookies"
4618
 
4619
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:809
4620
+ msgid "https://wordpress.org/support/"
4621
+ msgstr "https://wordpress.org/support/"
4622
 
4623
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:812
4624
+ #, php-format
4625
+ msgid "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href=\"%s\">enable cookies</a> to use WordPress."
4626
+ msgstr "<strong>ERRO</strong>: Cookies são bloqueados ou não suportados pelo seu navegador. Você deve <a href=\"%s\">habilitar cookies</a> para usar o WordPress."
4627
 
4628
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:831
4629
+ msgid "You have logged in successfully."
4630
+ msgstr "Você foi conectado com sucesso."
4631
 
4632
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:865
4633
+ msgid "Session expired. Please log in again. You will not move away from this page."
4634
+ msgstr "Sessão expirada. Por favor faça login novamente. Você não vai se afastar desta página."
4635
+
4636
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:869
4637
+ msgid "You are now logged out."
4638
+ msgstr "Agora você está desconectado."
4639
+
4640
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:871
4641
+ msgid "User registration is currently not allowed."
4642
+ msgstr "O registro do usuário não é permitido atualmente."
4643
+
4644
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:873
4645
+ msgid "Check your e-mail for the confirmation link."
4646
+ msgstr "Verifique seu e-mail para o link de confirmação."
4647
+
4648
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:875
4649
+ msgid "Check your e-mail for your new password."
4650
+ msgstr "Verifique seu e-mail para sua nova senha."
4651
+
4652
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:877
4653
+ msgid "Registration complete. Please check your e-mail."
4654
+ msgstr "Registro completo. Por favor, verifique seu e-mail."
4655
+
4656
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:879
4657
+ msgid "<strong>You have successfully updated WordPress!</strong> Please log back in to see what&#8217;s new."
4658
+ msgstr "<strong>Você atualizou com sucesso o WordPress!</strong> Por favor efetue o login novamente para ver o que é novo."
4659
+
4660
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php:896
4661
+ msgid "Log In"
4662
+ msgstr "Entrar"
4663
+
4664
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-unlock-request.php:13
4665
+ msgid "http://wordpress.org/"
4666
+ msgstr "http://wordpress.org/"
4667
+
4668
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-unlock-request.php:33
4669
+ msgid "ERROR: Unable to process your request!"
4670
+ msgstr "ERRO: Não é possível processar o seu pedido!"
4671
+
4672
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-unlock-request.php:50
4673
+ msgid "Please enter a valid email address"
4674
+ msgstr "Por favor digite um endereço de e-mail válido"
4675
+
4676
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-unlock-request.php:62
4677
+ msgid "User account not found!"
4678
+ msgstr "Conta de usuário não encontrada!"
4679
+
4680
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-unlock-request.php:73
4681
+ msgid "Error: No locked entry was found in the DB with your IP address range!"
4682
+ msgstr "Erro: Nenhuma entrada bloqueada foi encontrada no banco de dados com seu intervalo de endereços IP!"
4683
+
4684
+ #: ../../plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-unlock-request.php:101
4685
+ msgid "Email Address"
4686
+ msgstr "Endereço de e-mail"
4687
+
4688
+ # @ all-in-one-wp-security-and-firewall
4689
+ #. Description of the plugin
4690
+ msgid "All round best WordPress security plugin!"
4691
+ msgstr "Em todas as partes o melhor plugin de segurança WordPress!"
4692
+
4693
+ # @ all-in-one-wp-security-and-firewall
4694
+ msgid "Number of users currently logged into your site is:"
4695
+ msgstr "O número de usuários conectado em seu website é:"
4696
+
4697
+ # @ all-in-one-wp-security-and-firewall
4698
+ msgid "The selected IP range was unlocked successfully!"
4699
+ msgstr "A faixa de IP selecionado foi desbloqueado com sucesso!"
4700
+
4701
+ # @ all-in-one-wp-security-and-firewall
4702
+ msgid "The selected IP ranges were unlocked successfully!"
4703
+ msgstr "As faixas de IPs selecionados foram desbloqueados com sucesso!"
4704
+
4705
+ # @ all-in-one-wp-security-and-firewall
4706
+ msgid ""
4707
+ "<strong>ERROR</strong>: Login failed because your IP address has been blocked.\n"
4708
+ " Please contact the administrator."
4709
+ msgstr ""
4710
+ "<strong>ERRO</strong>: O seu LOGIN falhou porque o seu endereço IP foi bloqueado.\n"
4711
+ " Por favor, contate o administrador do site."
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === All In One WP Security & Firewall ===
2
- Contributors: Tips and Tricks HQ, wpsolutions, Peter Petreski, Ruhul Amin, mbrsolution, gdavide
3
  Donate link: https://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, all in one, scan, scanner, iframe,
5
  Requires at least: 3.5
6
  Tested up to: 4.5
7
- Stable tag: 4.0.7
8
  License: GPLv3
9
 
10
  A comprehensive, user-friendly, all in one WordPress security and firewall plugin for your site.
@@ -182,6 +182,15 @@ None
182
 
183
  == Changelog ==
184
 
 
 
 
 
 
 
 
 
 
185
  = 4.0.7 =
186
  - Added a new action hook "aiopws_before_set_404" which triggers just before the AIOWPS sets a 404. (handy for cases when rename login page is used which affects some themes when accessing "wp-admin" directly)
187
  - Fixed some potential SQL injection vulnerabilities.
1
  === All In One WP Security & Firewall ===
2
+ Contributors: Tips and Tricks HQ, wpsolutions, Peter Petreski, Ruhul Amin, mbrsolution, chesio
3
  Donate link: https://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, all in one, scan, scanner, iframe,
5
  Requires at least: 3.5
6
  Tested up to: 4.5
7
+ Stable tag: 4.0.8
8
  License: GPLv3
9
 
10
  A comprehensive, user-friendly, all in one WordPress security and firewall plugin for your site.
182
 
183
  == Changelog ==
184
 
185
+ = 4.0.8 =
186
+ - Added ability to identify IP addresses during user registration and option to block selected IPs.
187
+ - Added login form captcha functionality for sub-sites in a multi-site installation. (see the Brute Force menu)
188
+ - Fixed multi-site bug related to manual user-chosen DB prefix change.
189
+ - Added extra XSS protection inside admin menu pages for the "tab" query parameter.
190
+ - Added a note to the features that has the potential to lock you out if it doesn't work correctly on your site.
191
+ - Updated Brazil-Portuguese language file.
192
+ - Fixed issue with firewall custom rules being corrupted by magic quotes. Thanks to @chesio for fixing this.
193
+
194
  = 4.0.7 =
195
  - Added a new action hook "aiopws_before_set_404" which triggers just before the AIOWPS sets a 404. (handy for cases when rename login page is used which affects some themes when accessing "wp-admin" directly)
196
  - Fixed some potential SQL injection vulnerabilities.
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 = '4.0.7';
7
  var $db_version = '1.8';
8
  var $plugin_url;
9
  var $plugin_path;
3
  if (!class_exists('AIO_WP_Security')){
4
 
5
  class AIO_WP_Security{
6
+ var $version = '4.0.8';
7
  var $db_version = '1.8';
8
  var $plugin_url;
9
  var $plugin_path;
wp-security.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
  /*
3
  Plugin Name: All In One WP Security
4
- Version: 4.0.7
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/
8
  Description: All round best WordPress security plugin!
9
  License: GPL3
10
  */
1
  <?php
2
  /*
3
  Plugin Name: All In One WP Security
4
+ Version: 4.0.8
5
+ Plugin URI: https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin
6
  Author: Tips and Tricks HQ, Peter, Ruhul, Ivy
7
+ Author URI: https://www.tipsandtricks-hq.com/
8
  Description: All round best WordPress security plugin!
9
  License: GPL3
10
  */