All In One WP Security & Firewall - Version 3.7.5

Version Description

  • Added a new DB scan feature. Go to the "Scanner" menu to use this new feature.
  • Added new settings import/export feature.
  • Modified user accounts feature to alert administrator if one or both "admin" or "Admin" usernames are being used.
  • Added Persian language translation. The translation was submitted by Amir Mousavi Pour (me@ameer.ir).
  • Small change to get_mysql_tables function to prevent fatal error when mysqli query is unsuccessful.
  • Added Italian language translation. The translation was submitted by Marco Guglielmetti.
Download this release

Release Info

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

Code changes from version 3.7.3 to 3.7.5

admin/wp-security-admin-init.php CHANGED
@@ -20,6 +20,7 @@ class AIOWPSecurity_Admin_Init
20
  var $maintenance_menu;
21
  var $spam_menu;
22
  var $filescan_menu;
 
23
 
24
  function __construct()
25
  {
@@ -149,6 +150,21 @@ class AIOWPSecurity_Admin_Init
149
  $result = AIOWPSecurity_Utility_File::backup_and_rename_wp_config($wp_config_path); //Backup the wp_config.php file
150
  AIOWPSecurity_Utility_File::download_a_file_option1($wp_config_path, "wp-config-backup.txt");
151
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
152
  }
153
 
154
  function create_admin_menus()
@@ -189,6 +205,7 @@ class AIOWPSecurity_Admin_Init
189
  add_submenu_page(AIOWPSEC_MAIN_MENU_SLUG, __('Scanner', 'aiowpsecurity'), __('Scanner', 'aiowpsecurity') , AIOWPSEC_MANAGEMENT_PERMISSION, AIOWPSEC_FILESCAN_MENU_SLUG, array(&$this, 'handle_filescan_menu_rendering'));
190
  }
191
  add_submenu_page(AIOWPSEC_MAIN_MENU_SLUG, __('Maintenance', 'aiowpsecurity'), __('Maintenance', 'aiowpsecurity') , AIOWPSEC_MANAGEMENT_PERMISSION, AIOWPSEC_MAINTENANCE_MENU_SLUG, array(&$this, 'handle_maintenance_menu_rendering'));
 
192
  do_action('aiowpsecurity_admin_menu_created');
193
  }
194
 
@@ -277,5 +294,11 @@ class AIOWPSecurity_Admin_Init
277
  $this->filescan_menu = new AIOWPSecurity_Filescan_Menu();
278
  }
279
 
 
 
 
 
 
 
280
  }//End of class
281
 
20
  var $maintenance_menu;
21
  var $spam_menu;
22
  var $filescan_menu;
23
+ var $misc_menu;
24
 
25
  function __construct()
26
  {
150
  $result = AIOWPSecurity_Utility_File::backup_and_rename_wp_config($wp_config_path); //Backup the wp_config.php file
151
  AIOWPSecurity_Utility_File::download_a_file_option1($wp_config_path, "wp-config-backup.txt");
152
  }
153
+
154
+ //Handle export settings
155
+ if(isset($_POST['aiowps_export_settings']))//Do form submission tasks
156
+ {
157
+ $nonce=$_REQUEST['_wpnonce'];
158
+ if (!wp_verify_nonce($nonce, 'aiowpsec-export-settings-nonce'))
159
+ {
160
+ $aio_wp_security->debug_logger->log_debug("Nonce check failed on export AIOWPS settings!",4);
161
+ die("Nonce check failed on export AIOWPS settings!");
162
+ }
163
+ $config_data = get_option('aio_wp_security_configs');
164
+ $output = json_encode($config_data);
165
+ AIOWPSecurity_Utility_File::download_content_to_a_file($output);
166
+ }
167
+
168
  }
169
 
170
  function create_admin_menus()
205
  add_submenu_page(AIOWPSEC_MAIN_MENU_SLUG, __('Scanner', 'aiowpsecurity'), __('Scanner', 'aiowpsecurity') , AIOWPSEC_MANAGEMENT_PERMISSION, AIOWPSEC_FILESCAN_MENU_SLUG, array(&$this, 'handle_filescan_menu_rendering'));
206
  }
207
  add_submenu_page(AIOWPSEC_MAIN_MENU_SLUG, __('Maintenance', 'aiowpsecurity'), __('Maintenance', 'aiowpsecurity') , AIOWPSEC_MANAGEMENT_PERMISSION, AIOWPSEC_MAINTENANCE_MENU_SLUG, array(&$this, 'handle_maintenance_menu_rendering'));
208
+ add_submenu_page(AIOWPSEC_MAIN_MENU_SLUG, __('Miscellaneous', 'aiowpsecurity'), __('Miscellaneous', 'aiowpsecurity') , AIOWPSEC_MANAGEMENT_PERMISSION, AIOWPSEC_MISC_MENU_SLUG, array(&$this, 'handle_misc_menu_rendering'));
209
  do_action('aiowpsecurity_admin_menu_created');
210
  }
211
 
294
  $this->filescan_menu = new AIOWPSecurity_Filescan_Menu();
295
  }
296
 
297
+ function handle_misc_menu_rendering()
298
+ {
299
+ include_once('wp-security-misc-options-menu.php');
300
+ $this->misc_menu = new AIOWPSecurity_Misc_Options_Menu();
301
+ }
302
+
303
  }//End of class
304
 
admin/wp-security-dashboard-menu.php CHANGED
@@ -85,6 +85,8 @@ class AIOWPSecurity_Dashboard_Menu extends AIOWPSecurity_Admin_Menu
85
  $total_security_points_achievable = $feature_mgr->get_total_achievable_points();
86
 
87
  ?>
 
 
88
  <div class="aiowps_dashboard_box_small">
89
  <div class="postbox">
90
  <h3><label for="title"><?php _e('Security Strength Meter', 'aiowpsecurity');?></label></h3>
@@ -167,6 +169,25 @@ class AIOWPSecurity_Dashboard_Menu extends AIOWPSecurity_Admin_Menu
167
  </div></div>
168
  </div><!-- aiowps_dashboard_box -->
169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  <div class="aiowps_dashboard_box_small">
171
  <div class="postbox">
172
  <h3><label for="title"><?php _e('Critical Feature Status', 'aiowpsecurity');?></label></h3>
@@ -454,29 +475,32 @@ class AIOWPSecurity_Dashboard_Menu extends AIOWPSecurity_Admin_Menu
454
  ?>
455
  </div></div>
456
  </div><!-- aiowps_dashboard_box -->
457
-
458
  <div class="aio_clear_float"></div>
459
 
460
- <div class="aiowps_dashboard_box_small aiowps_spread_the_word_widget">
461
- <div class="postbox">
462
- <h3><label for="title"><?php _e('Spread the Word', 'aiowpsecurity');?></label></h3>
463
- <div class="inside">
464
-
465
- <p><?php _e('We are working hard to make your WordPress site more secure. Please support us, here is how:', 'aiowpsecurity');?></p>
466
- <p>
467
- <a href="https://plus.google.com/102469783420435518783/" target="_blank">Follow us on Google+</a>
468
- </p>
469
- <p>
470
- <a href="http://twitter.com/intent/tweet?url=http://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin&text=I love the All In One WP Security and Firewall plugin!" target="_blank" class="aio_tweet_link">Post to Twitter</a>
471
- </p>
472
- <p>
473
- <a href="http://wordpress.org/support/view/plugin-reviews/all-in-one-wp-security-and-firewall/" target="_blank" class="aio_rate_us_link">Give us a Good Rating</a>
474
- </p>
475
-
476
- </div></div>
477
- </div><!-- aiowps_dashboard_box -->
 
 
 
 
478
 
479
- <div class="aio_clear_float"></div>
480
  <?php
481
  }
482
 
85
  $total_security_points_achievable = $feature_mgr->get_total_achievable_points();
86
 
87
  ?>
88
+ <div id="aiowps_dashboard_widget_content">
89
+
90
  <div class="aiowps_dashboard_box_small">
91
  <div class="postbox">
92
  <h3><label for="title"><?php _e('Security Strength Meter', 'aiowpsecurity');?></label></h3>
169
  </div></div>
170
  </div><!-- aiowps_dashboard_box -->
171
 
172
+ <div class="aiowps_dashboard_box_small aiowps_spread_the_word_widget">
173
+ <div class="postbox">
174
+ <h3><label for="title"><?php _e('Spread the Word', 'aiowpsecurity');?></label></h3>
175
+ <div class="inside">
176
+
177
+ <p><?php _e('We are working hard to make your WordPress site more secure. Please support us, here is how:', 'aiowpsecurity');?></p>
178
+ <p>
179
+ <a href="https://plus.google.com/102469783420435518783/" target="_blank">Follow us on Google+</a>
180
+ </p>
181
+ <p>
182
+ <a href="http://twitter.com/intent/tweet?url=http://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin&text=I love the All In One WP Security and Firewall plugin!" target="_blank" class="aio_tweet_link">Post to Twitter</a>
183
+ </p>
184
+ <p>
185
+ <a href="http://wordpress.org/support/view/plugin-reviews/all-in-one-wp-security-and-firewall/" target="_blank" class="aio_rate_us_link">Give us a Good Rating</a>
186
+ </p>
187
+
188
+ </div></div>
189
+ </div><!-- aiowps_dashboard_box -->
190
+
191
  <div class="aiowps_dashboard_box_small">
192
  <div class="postbox">
193
  <h3><label for="title"><?php _e('Critical Feature Status', 'aiowpsecurity');?></label></h3>
475
  ?>
476
  </div></div>
477
  </div><!-- aiowps_dashboard_box -->
478
+
479
  <div class="aio_clear_float"></div>
480
 
481
+ </div>
482
+ <!-- Masonry stuff -->
483
+ <?php
484
+ //wp_enqueue_script('masonry');
485
+ echo '<script type="text/javascript" src="'.AIO_WP_SECURITY_URL.'/js/masonry.pkgd.min.js?ver='.AIO_WP_SECURITY_VERSION.'"></script>';
486
+ ?>
487
+ <style>
488
+ .aiowps_dashboard_box_small {
489
+ width: 350px;
490
+ }
491
+ </style>
492
+ <script type="text/javascript">
493
+ window.onload = function(){
494
+ var container = document.querySelector('#aiowps_dashboard_widget_content');
495
+ var msnry = new Masonry( container, {
496
+ // options
497
+ columnWidth: 100,
498
+ itemSelector: '.aiowps_dashboard_box_small'
499
+ });
500
+ }
501
+ </script>
502
+ <!-- End Masonry stuff -->
503
 
 
504
  <?php
505
  }
506
 
admin/wp-security-database-menu.php CHANGED
@@ -545,8 +545,8 @@ class AIOWPSecurity_Database_Menu extends AIOWPSecurity_Admin_Menu
545
  // foreach($temp as $res){
546
  // $tables[] = $res[0];
547
  // }
 
548
  }
549
- $result->close();
550
  $mysqli->close();
551
  return $tables;
552
  }
545
  // foreach($temp as $res){
546
  // $tables[] = $res[0];
547
  // }
548
+ $result->close();
549
  }
 
550
  $mysqli->close();
551
  return $tables;
552
  }
admin/wp-security-filescan-menu.php CHANGED
@@ -10,6 +10,7 @@ class AIOWPSecurity_Filescan_Menu extends AIOWPSecurity_Admin_Menu
10
  var $menu_tabs_handler = array(
11
  'tab1' => 'render_tab1',
12
  'tab2' => 'render_tab2',
 
13
  );
14
 
15
  function __construct()
@@ -20,8 +21,9 @@ class AIOWPSecurity_Filescan_Menu extends AIOWPSecurity_Admin_Menu
20
  function set_menu_tabs()
21
  {
22
  $this->menu_tabs = array(
23
- 'tab1' => __('File Change Detection','aiowpsecurity'),
24
- 'tab2' => __('Malware Scan','aiowpsecurity'),
 
25
  );
26
  }
27
 
@@ -103,7 +105,7 @@ class AIOWPSecurity_Filescan_Menu extends AIOWPSecurity_Admin_Menu
103
  die(__('Nonce check failed for manual file change detection scan operation!','aiowpsecurity'));
104
  }
105
 
106
- $result = $aio_wp_security->filescan_obj->execute_file_change_detection_scan();
107
  //If this is first scan display special message
108
  if ($result['initial_scan'] == 1)
109
  {
@@ -197,7 +199,7 @@ class AIOWPSecurity_Filescan_Menu extends AIOWPSecurity_Admin_Menu
197
  $aiowps_global_meta_tbl_name = AIOWPSEC_TBL_GLOBAL_META_DATA;
198
  $where = array('meta_key1' => 'file_change_detection', 'meta_value1' => 'file_scan_data');
199
  $wpdb->delete( $aiowps_global_meta_tbl_name, $where);
200
- $result = $aio_wp_security->filescan_obj->execute_file_change_detection_scan();
201
  $new_scan_alert = __('NEW SCAN COMPLETED: The plugin has detected that you have made changes to the "File Types To Ignore" or "Files To Ignore" fields.
202
  In order to ensure that future scan results are accurate, the old scan data has been refreshed.', 'aiowpsecurity');
203
  $this->show_msg_updated($new_scan_alert);
@@ -365,6 +367,65 @@ class AIOWPSecurity_Filescan_Menu extends AIOWPSecurity_Admin_Menu
365
 
366
  <?php
367
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
368
 
369
  /*
370
  * Outputs the last scan results in a postbox
10
  var $menu_tabs_handler = array(
11
  'tab1' => 'render_tab1',
12
  'tab2' => 'render_tab2',
13
+ 'tab3' => 'render_tab3',
14
  );
15
 
16
  function __construct()
21
  function set_menu_tabs()
22
  {
23
  $this->menu_tabs = array(
24
+ 'tab1' => __('File Change Detection','aiowpsecurity'),
25
+ 'tab2' => __('Malware Scan','aiowpsecurity'),
26
+ 'tab3' => __('DB Scan','aiowpsecurity'),
27
  );
28
  }
29
 
105
  die(__('Nonce check failed for manual file change detection scan operation!','aiowpsecurity'));
106
  }
107
 
108
+ $result = $aio_wp_security->scan_obj->execute_file_change_detection_scan();
109
  //If this is first scan display special message
110
  if ($result['initial_scan'] == 1)
111
  {
199
  $aiowps_global_meta_tbl_name = AIOWPSEC_TBL_GLOBAL_META_DATA;
200
  $where = array('meta_key1' => 'file_change_detection', 'meta_value1' => 'file_scan_data');
201
  $wpdb->delete( $aiowps_global_meta_tbl_name, $where);
202
+ $result = $aio_wp_security->scan_obj->execute_file_change_detection_scan();
203
  $new_scan_alert = __('NEW SCAN COMPLETED: The plugin has detected that you have made changes to the "File Types To Ignore" or "Files To Ignore" fields.
204
  In order to ensure that future scan results are accurate, the old scan data has been refreshed.', 'aiowpsecurity');
205
  $this->show_msg_updated($new_scan_alert);
367
 
368
  <?php
369
  }
370
+
371
+ function render_tab3()
372
+ {
373
+ global $wpdb, $aio_wp_security;
374
+ $perform_db_scan = false;
375
+ if (isset($_POST['aiowps_manual_db_scan']))
376
+ {
377
+ $nonce=$_REQUEST['_wpnonce'];
378
+ if (!wp_verify_nonce($nonce, 'aiowpsec-manual-db-scan-nonce'))
379
+ {
380
+ $aio_wp_security->debug_logger->log_debug("Nonce check failed for manual db scan operation!",4);
381
+ die(__('Nonce check failed for manual db scan operation!','aiowpsecurity'));
382
+ }
383
+
384
+ $perform_db_scan = true;
385
+ }
386
+
387
+
388
+ ?>
389
+ <div class="aio_blue_box">
390
+ <?php
391
+ $malware_scan = '<a href="admin.php?page='.AIOWPSEC_FILESCAN_MENU_SLUG.'&tab=tab2">Malware Scan</a>';
392
+ echo '<p>'.__('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.', 'aiowpsecurity').
393
+ '<br />'.__('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.', 'aiowpsecurity').
394
+ '<br />'.__('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.', 'aiowpsecurity').
395
+ '<br />'.__('The WordPress core tables scanned by this feature include: posts, postmeta, comments, links, users, usermeta, and options tables.', 'aiowpsecurity').'</p>';
396
+ ?>
397
+ </div>
398
+
399
+ <div class="postbox">
400
+ <h3><label for="title"><?php _e('Database Scan', 'aiowpsecurity'); ?></label></h3>
401
+ <div class="inside">
402
+ <form action="" method="POST">
403
+ <?php wp_nonce_field('aiowpsec-manual-db-scan-nonce'); ?>
404
+ <table class="form-table">
405
+ <tr valign="top">
406
+ <span class="description"><?php _e('To perform a database scan click on the button below.', 'aiowpsecurity'); ?></span>
407
+ </tr>
408
+ </table>
409
+ <input type="submit" name="aiowps_manual_db_scan" value="<?php _e('Perform DB Scan', 'aiowpsecurity')?>" class="button-primary" />
410
+ </form>
411
+ </div></div>
412
+ <?php
413
+ if ($perform_db_scan)
414
+ {
415
+
416
+ $result = $aio_wp_security->scan_obj->execute_db_scan();
417
+ echo $result;
418
+ // if ($result == 1)
419
+ // {
420
+ // $error_msg = '<p>'.__('The plugin has detected that there are some potentially suspicious entries in your database.', 'aiowpsecurity').'</p>';
421
+ // $error_msg .= '<p>'.__('Please verify the results listed below to confirm whether the entries detected are genuinely suspicious or if they are false positives.', 'aiowpsecurity').'</p>';
422
+ // $this->show_msg_error($error_msg);
423
+ // }else{
424
+ // $this->show_msg_updated(__('The basic database scan was completed and no suspicious entries were detected.', 'aiowpsecurity'));
425
+ // }
426
+ }
427
+ }
428
+
429
 
430
  /*
431
  * Outputs the last scan results in a postbox
admin/wp-security-misc-options-menu.php ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class AIOWPSecurity_Misc_Options_Menu extends AIOWPSecurity_Admin_Menu
4
+ {
5
+ var $menu_page_slug = AIOWPSEC_MISC_MENU_SLUG;
6
+
7
+ /* Specify all the tabs of this menu in the following array */
8
+ var $menu_tabs;
9
+
10
+ var $menu_tabs_handler = array(
11
+ 'tab1' => 'render_tab1',
12
+ );
13
+
14
+ function __construct()
15
+ {
16
+ $this->render_menu_page();
17
+ }
18
+
19
+ function set_menu_tabs()
20
+ {
21
+ $this->menu_tabs = array(
22
+ 'tab1' => __('Copy Protection', 'aiowpsecurity'),
23
+ );
24
+ }
25
+
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
+
33
+ /*
34
+ * Renders our tabs of this menu as nav items
35
+ */
36
+ function render_menu_tabs()
37
+ {
38
+ $current_tab = $this->get_current_tab();
39
+
40
+ echo '<h2 class="nav-tab-wrapper">';
41
+ foreach ( $this->menu_tabs as $tab_key => $tab_caption )
42
+ {
43
+ $active = $current_tab == $tab_key ? 'nav-tab-active' : '';
44
+ echo '<a class="nav-tab ' . $active . '" href="?page=' . $this->menu_page_slug . '&tab=' . $tab_key . '">' . $tab_caption . '</a>';
45
+ }
46
+ echo '</h2>';
47
+ }
48
+
49
+ /*
50
+ * The menu rendering goes here
51
+ */
52
+ function render_menu_page()
53
+ {
54
+ $this->set_menu_tabs();
55
+ $tab = $this->get_current_tab();
56
+ ?>
57
+ <div class="wrap">
58
+ <div id="poststuff"><div id="post-body">
59
+ <?php
60
+ $this->render_menu_tabs();
61
+ //$tab_keys = array_keys($this->menu_tabs);
62
+ call_user_func(array(&$this, $this->menu_tabs_handler[$tab]));
63
+ ?>
64
+ </div></div>
65
+ </div><!-- end of wrap -->
66
+ <?php
67
+ }
68
+
69
+ function render_tab1()
70
+ {
71
+ global $aio_wp_security;
72
+ $maint_msg = '';
73
+ if(isset($_POST['aiowpsec_save_copy_protection']))
74
+ {
75
+ $nonce=$_REQUEST['_wpnonce'];
76
+ if (!wp_verify_nonce($nonce, 'aiowpsec-copy-protection'))
77
+ {
78
+ $aio_wp_security->debug_logger->log_debug("Nonce check failed on copy protection feature settings save!",4);
79
+ die("Nonce check failed on copy protection feature settings save!");
80
+ }
81
+
82
+ //Save settings
83
+ $aio_wp_security->configs->set_value('aiowps_copy_protection',isset($_POST["aiowps_copy_protection"])?'1':'');
84
+ $aio_wp_security->configs->save_config();
85
+
86
+ $this->show_msg_updated(__('Copy Protection feature settings saved!', 'aiowpsecurity'));
87
+
88
+ }
89
+ ?>
90
+ <div class="postbox">
91
+ <h3><label for="title"><?php _e('Disable The Ability To Copy Text', 'aiowpsecurity'); ?></label></h3>
92
+ <div class="inside">
93
+ <form action="" method="POST">
94
+ <?php wp_nonce_field('aiowpsec-copy-protection'); ?>
95
+ <div class="aio_blue_box">
96
+ <?php
97
+ echo '<p>'.__('This feature allows you to disable the ability to select and copy text from your front end.', 'aiowpsecurity').'</p>';
98
+ ?>
99
+ </div>
100
+ <table class="form-table">
101
+ <tr valign="top">
102
+ <th scope="row"><?php _e('Enable Copy Protection', 'aiowpsecurity')?>:</th>
103
+ <td>
104
+ <input name="aiowps_copy_protection" type="checkbox"<?php if($aio_wp_security->configs->get_value('aiowps_copy_protection')=='1') echo ' checked="checked"'; ?> value="1"/>
105
+ <span class="description"><?php _e('Check this if you want to disable the "Right Click", "Text Selection" and "Copy" option on the front end of your site.', 'aiowpsecurity'); ?></span>
106
+ </td>
107
+ </tr>
108
+
109
+ </table>
110
+
111
+ <div class="submit">
112
+ <input type="submit" class="button-primary" name="aiowpsec_save_copy_protection" value="<?php _e('Save Copy Protection Settings'); ?>" />
113
+ </div>
114
+ </form>
115
+ </div></div>
116
+ <?php
117
+ }
118
+ } //end class
admin/wp-security-settings-menu.php CHANGED
@@ -12,6 +12,7 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
12
  'tab2' => 'render_tab2',
13
  'tab3' => 'render_tab3',
14
  'tab4' => 'render_tab4',
 
15
  );
16
 
17
  function __construct()
@@ -22,10 +23,11 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
22
  function set_menu_tabs()
23
  {
24
  $this->menu_tabs = array(
25
- 'tab1' => __('General Settings', 'aiowpsecurity'),
26
- 'tab2' => '.htaccess '.__('File', 'aiowpsecurity'),
27
- 'tab3' => 'wp-config.php '.__('File', 'aiowpsecurity'),
28
- 'tab4' => __('WP Meta Info', 'aiowpsecurity'),
 
29
  );
30
  }
31
 
@@ -347,9 +349,9 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
347
  {
348
  //Let's copy the uploaded wp-config.php file into the active root file
349
  $new_wp_config_file_path = trim($_POST['aiowps_wp_config_file']);
350
- //TODO
351
- //Verify that file chosen has contents which are relevant to .htaccess file
352
- $is_wp_config = $this->check_if_wp_config_contents($new_wp_config_file_path); //TODO - write the function
353
  if ($is_wp_config == 1)
354
  {
355
  $active_root_wp_config = ABSPATH.'wp-config.php';
@@ -496,6 +498,133 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
496
  <?php
497
  }
498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
499
  function check_if_wp_config_contents($wp_file)
500
  {
501
  $is_wp_config = false;
@@ -529,5 +658,35 @@ class AIOWPSecurity_Settings_Menu extends AIOWPSecurity_Admin_Menu
529
  }
530
 
531
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
532
 
533
  } //end class
12
  'tab2' => 'render_tab2',
13
  'tab3' => 'render_tab3',
14
  'tab4' => 'render_tab4',
15
+ 'tab5' => 'render_tab5',
16
  );
17
 
18
  function __construct()
23
  function set_menu_tabs()
24
  {
25
  $this->menu_tabs = array(
26
+ 'tab1' => __('General Settings', 'aiowpsecurity'),
27
+ 'tab2' => '.htaccess '.__('File', 'aiowpsecurity'),
28
+ 'tab3' => 'wp-config.php '.__('File', 'aiowpsecurity'),
29
+ 'tab4' => __('WP Meta Info', 'aiowpsecurity'),
30
+ 'tab5' => __('Import/Export', 'aiowpsecurity'),
31
  );
32
  }
33
 
349
  {
350
  //Let's copy the uploaded wp-config.php file into the active root file
351
  $new_wp_config_file_path = trim($_POST['aiowps_wp_config_file']);
352
+
353
+ //Verify that file chosen is a wp-config.file
354
+ $is_wp_config = $this->check_if_wp_config_contents($new_wp_config_file_path);
355
  if ($is_wp_config == 1)
356
  {
357
  $active_root_wp_config = ABSPATH.'wp-config.php';
498
  <?php
499
  }
500
 
501
+
502
+ function render_tab5()
503
+ {
504
+ global $aio_wp_security;
505
+
506
+ if(isset($_POST['aiowps_import_settings']))//Do form submission tasks
507
+ {
508
+ $nonce=$_REQUEST['_wpnonce'];
509
+ if (!wp_verify_nonce($nonce, 'aiowpsec-import-settings-nonce'))
510
+ {
511
+ $aio_wp_security->debug_logger->log_debug("Nonce check failed on import AIOWPS settings!",4);
512
+ die("Nonce check failed on import AIOWPS settings!");
513
+ }
514
+
515
+ if (empty($_POST['aiowps_import_settings_file']))
516
+ {
517
+ $this->show_msg_error(__('Please choose a file to import your settings from.', 'aiowpsecurity'));
518
+ }
519
+ else
520
+ {
521
+ //Let's get the uploaded import file path
522
+ $submitted_import_file_path = trim($_POST['aiowps_import_settings_file']);
523
+ $attachment_id = AIOWPSecurity_Utility_File::get_attachment_id_from_url($submitted_import_file_path); //we'll need this later for deleting
524
+
525
+ //Verify that file chosen has valid AIOWPS settings contents
526
+ $aiowps_settings_file_contents = $this->check_if_valid_aiowps_settings_file($submitted_import_file_path);
527
+ if ($aiowps_settings_file_contents != -1)
528
+ {
529
+ //Apply the settings and delete the file
530
+ $settings_array = json_decode($aiowps_settings_file_contents, true);
531
+ $aiowps_settings_applied = update_option('aio_wp_security_configs', $settings_array);
532
+
533
+ if (!$aiowps_settings_applied)
534
+ {
535
+ //Failed to import settings
536
+ $aio_wp_security->debug_logger->log_debug("Import AIOWPS settings from file operation failed!",4);
537
+ $this->show_msg_error(__('Import AIOWPS settings from file operation failed!','aiowpsecurity'));
538
+
539
+ //Delete the uploaded settings file for security purposes
540
+ wp_delete_attachment( $attachment_id, true );
541
+ if ( false === wp_delete_attachment( $attachment_id, true ) ){
542
+ $this->show_msg_error(__('The deletion of the import file failed. Please delete this file manually via the media menu for security purposes.', 'aiowpsecurity'));
543
+ }else{
544
+ $this->show_msg_updated(__('The file you uploaded was also deleted for security purposes because it contains security settings details.', 'aiowpsecurity'));
545
+ }
546
+ }
547
+ else
548
+ {
549
+ //Delete the uploaded settings file for security purposes
550
+ wp_delete_attachment( $attachment_id, true );
551
+ if ( false === wp_delete_attachment( $attachment_id, true ) ){
552
+ $this->show_msg_updated(__('Your AIOWPS settings were successfully imported.', 'aiowpsecurity'));
553
+ $this->show_msg_error(__('The deletion of the import file failed. Please delete this file manually via the media menu for security purposes because it contains security settings details.', 'aiowpsecurity'));
554
+ }else{
555
+ $this->show_msg_updated(__('Your AIOWPS settings were successfully imported. The file you uploaded was also deleted for security purposes because it contains security settings details.', 'aiowpsecurity'));
556
+ }
557
+ }
558
+ }
559
+ else
560
+ {
561
+ //Invalid settings file
562
+ $aio_wp_security->debug_logger->log_debug("The contents of your settings file appear invalid!",4);
563
+ $this->show_msg_error(__('The contents of your settings file appear invalid. Please check the contents of the file you are trying to import settings from.','aiowpsecurity'));
564
+ //Let's also delete the uploaded settings file for security purposes
565
+ wp_delete_attachment( $attachment_id, true );
566
+ if ( false === wp_delete_attachment( $attachment_id, true ) ){
567
+ $this->show_msg_error(__('The deletion of the import file failed. Please delete this file manually via the media menu for security purposes.', 'aiowpsecurity'));
568
+ }else{
569
+ $this->show_msg_updated(__('The file you uploaded was also deleted for security purposes because it contains security settings details.', 'aiowpsecurity'));
570
+ }
571
+
572
+ }
573
+ }
574
+ }
575
+
576
+
577
+ ?>
578
+ <h2><?php _e('Export or Import Your AIOWPS Settings', 'aiowpsecurity')?></h2>
579
+ <div class="aio_blue_box">
580
+ <?php
581
+ echo '<p>'.__('This section allows you to export or import your All In One WP Security & Firewall settings.', 'aiowpsecurity');
582
+ echo '<br />'.__('This can be handy if you wanted to save time by applying the settings from one site to another site.', 'aiowpsecurity').'
583
+ <br />'.__('NOTE: Before importing, it is your responsibility to know what settings you are trying to import. Importing settings blindly can cause you to be locked out of your site.', 'aiowpsecurity').'
584
+ <br />'.__('For Example: If a settings item rely on the domain URL then it may not work correctly when imported into a different domain.','aiowpsecurity').'
585
+ </p>';
586
+ ?>
587
+ </div>
588
+
589
+ <div class="postbox">
590
+ <h3><label for="title"><?php _e('Export AIOWPS Settings', 'aiowpsecurity'); ?></label></h3>
591
+ <div class="inside">
592
+ <form action="" method="POST">
593
+ <?php wp_nonce_field('aiowpsec-export-settings-nonce'); ?>
594
+ <table class="form-table">
595
+ <tr valign="top">
596
+ <span class="description"><?php _e('To export your All In One WP Security & Firewall settings click the button below.', 'aiowpsecurity'); ?></span>
597
+ </tr>
598
+ </table>
599
+ <input type="submit" name="aiowps_export_settings" value="<?php _e('Export AIOWPS Settings', 'aiowpsecurity')?>" class="button-primary" />
600
+ </form>
601
+ </div></div>
602
+ <div class="postbox">
603
+ <h3><label for="title"><?php _e('Import AIOWPS Settings', 'aiowpsecurity'); ?></label></h3>
604
+ <div class="inside">
605
+ <form action="" method="POST">
606
+ <?php wp_nonce_field('aiowpsec-import-settings-nonce'); ?>
607
+ <table class="form-table">
608
+ <tr valign="top">
609
+ <span class="description"><?php _e('Use this section to import your All In One WP Security & Firewall settings from a file.', 'aiowpsecurity'); ?></span>
610
+ <th scope="row"><?php _e('Import File', 'aiowpsecurity')?>:</th>
611
+ <td>
612
+ <input type="button" id="aiowps_import_settings_file_button" name="aiowps_import_settings_file_button" class="button rbutton" value="Select Your Import Settings File" />
613
+ <input name="aiowps_import_settings_file" type="text" id="aiowps_import_settings_file" value="" size="80" />
614
+ <p class="description">
615
+ <?php
616
+ _e('After selecting your file, click the button below to apply the settings to your site.', 'aiowpsecurity');
617
+ ?>
618
+ </p>
619
+ </td>
620
+ </tr>
621
+ </table>
622
+ <input type="submit" name="aiowps_import_settings" value="<?php _e('Import AIOWPS Settings', 'aiowpsecurity')?>" class="button-primary" />
623
+ </form>
624
+ </div></div>
625
+ <?php
626
+ }
627
+
628
  function check_if_wp_config_contents($wp_file)
629
  {
630
  $is_wp_config = false;
658
  }
659
 
660
  }
661
+
662
+
663
+ //Checks if valid aiowps settings file and returns contents as string
664
+ function check_if_valid_aiowps_settings_file($wp_file)
665
+ {
666
+ $is_aiopws_settings = false;
667
+
668
+ $file_contents = file_get_contents($wp_file);
669
+
670
+ if ($file_contents == '' || $file_contents == NULL || $file_contents == false)
671
+ {
672
+ return -1;
673
+ }
674
+
675
+ //Check a known aiowps config strings to see if it is contained within this file
676
+ if(strpos($file_contents, 'aiowps_enable_login_lockdown') === FALSE){
677
+ $is_aiopws_settings = false;
678
+ }else{
679
+ $is_aiopws_settings = true;
680
+ }
681
+ if ($is_aiopws_settings)
682
+ {
683
+ return $file_contents;
684
+ }
685
+ else
686
+ {
687
+ return -1;
688
+ }
689
+
690
+ }
691
 
692
  } //end class
admin/wp-security-spam-menu.php CHANGED
@@ -124,13 +124,6 @@ class AIOWPSecurity_Spam_Menu extends AIOWPSecurity_Admin_Menu
124
  <?php
125
  //Display security info badge
126
  $aiowps_feature_mgr->output_feature_details_badge("comment-form-captcha");
127
- if (AIOWPSecurity_Utility::is_multisite_install() && get_current_blog_id() != 1)
128
- {
129
- //Hide config settings if MS and not main site
130
- AIOWPSecurity_Utility::display_multisite_message();
131
- }
132
- else
133
- {
134
  ?>
135
  <table class="form-table">
136
  <tr valign="top">
@@ -141,7 +134,6 @@ class AIOWPSecurity_Spam_Menu extends AIOWPSecurity_Admin_Menu
141
  </td>
142
  </tr>
143
  </table>
144
- <?php } //End if statement ?>
145
  </div></div>
146
 
147
  <div class="postbox">
124
  <?php
125
  //Display security info badge
126
  $aiowps_feature_mgr->output_feature_details_badge("comment-form-captcha");
 
 
 
 
 
 
 
127
  ?>
128
  <table class="form-table">
129
  <tr valign="top">
134
  </td>
135
  </tr>
136
  </table>
 
137
  </div></div>
138
 
139
  <div class="postbox">
admin/wp-security-user-accounts-menu.php CHANGED
@@ -110,7 +110,7 @@ class AIOWPSecurity_User_Accounts_Menu extends AIOWPSecurity_Admin_Menu
110
  global $aiowps_feature_mgr;
111
  $aiowps_feature_mgr->output_feature_details_badge("user-accounts-change-admin-user");
112
 
113
- if (AIOWPSecurity_Utility::check_user_exists('admin'))
114
  {
115
  echo '<div class="aio_red_box"><p>'.__('Your site currently has an account which uses the default "admin" username.
116
  It is highly recommended that you change this name to something else.
@@ -324,7 +324,7 @@ class AIOWPSecurity_User_Accounts_Menu extends AIOWPSecurity_Admin_Menu
324
  $account_output .= '<tr><th>'.__('Account Login Name', 'aiowpsecurity').'</th></tr>';
325
  foreach ($admin_users as $entry) {
326
  $account_output .= '<tr>';
327
- if ($entry->user_login == 'admin') {
328
  $account_output .= '<td style="color:red; font-weight: bold;">'.$entry->user_login.'</td>';
329
  }else {
330
  $account_output .= '<td>'.$entry->user_login.'</td>';
110
  global $aiowps_feature_mgr;
111
  $aiowps_feature_mgr->output_feature_details_badge("user-accounts-change-admin-user");
112
 
113
+ if (AIOWPSecurity_Utility::check_user_exists('admin') || AIOWPSecurity_Utility::check_user_exists('Admin'))
114
  {
115
  echo '<div class="aio_red_box"><p>'.__('Your site currently has an account which uses the default "admin" username.
116
  It is highly recommended that you change this name to something else.
324
  $account_output .= '<tr><th>'.__('Account Login Name', 'aiowpsecurity').'</th></tr>';
325
  foreach ($admin_users as $entry) {
326
  $account_output .= '<tr>';
327
+ if (strtolower($entry->user_login) == 'admin') {
328
  $account_output .= '<td style="color:red; font-weight: bold;">'.$entry->user_login.'</td>';
329
  }else {
330
  $account_output .= '<td>'.$entry->user_login.'</td>';
classes/wp-security-configure-settings.php CHANGED
@@ -109,7 +109,10 @@ class AIOWPSecurity_Configure_Settings
109
  $aio_wp_security->configs->set_value('aiowps_fcd_scan_email_address',$blog_email_address);
110
  $aio_wp_security->configs->set_value('aiowps_fcds_change_detected', FALSE); //used to display a global alert on site when file change detected
111
 
112
-
 
 
 
113
  //TODO - keep adding default options for any fields that require it
114
 
115
  //Save it
@@ -219,6 +222,11 @@ class AIOWPSecurity_Configure_Settings
219
  $aio_wp_security->configs->add_value('aiowps_fcd_scan_email_address',$blog_email_address);
220
  $aio_wp_security->configs->add_value('aiowps_fcds_change_detected',FALSE); //used to display a global alert on site when file change detected
221
 
 
 
 
 
 
222
  //TODO - keep adding default options for any fields that require it
223
 
224
  //Save it
109
  $aio_wp_security->configs->set_value('aiowps_fcd_scan_email_address',$blog_email_address);
110
  $aio_wp_security->configs->set_value('aiowps_fcds_change_detected', FALSE); //used to display a global alert on site when file change detected
111
 
112
+ //Misc Options
113
+ //Copy protection feature
114
+ $aio_wp_security->configs->set_value('aiowps_copy_protection','');//Checkbox
115
+
116
  //TODO - keep adding default options for any fields that require it
117
 
118
  //Save it
222
  $aio_wp_security->configs->add_value('aiowps_fcd_scan_email_address',$blog_email_address);
223
  $aio_wp_security->configs->add_value('aiowps_fcds_change_detected',FALSE); //used to display a global alert on site when file change detected
224
 
225
+ //Misc Options
226
+ //Copy protection feature
227
+ $aio_wp_security->configs->add_value('aiowps_copy_protection','');//Checkbox
228
+
229
+
230
  //TODO - keep adding default options for any fields that require it
231
 
232
  //Save it
classes/wp-security-file-scan.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- class AIOWPSecurity_Filescan
3
  {
4
 
5
  function __construct()
@@ -251,4 +251,412 @@ class AIOWPSecurity_Filescan
251
  );
252
  return $results;
253
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
254
  }
1
  <?php
2
+ class AIOWPSecurity_Scan
3
  {
4
 
5
  function __construct()
251
  );
252
  return $results;
253
  }
254
+
255
+ function execute_db_scan()
256
+ {
257
+ global $aio_wp_security;
258
+ global $wpdb;
259
+
260
+ //$aio_wp_security->admin_init->filescan_menu->start_buffer();
261
+ ob_start();
262
+
263
+ $info_msg_string = '<p class="aio_info_with_icon">'.__('Starting DB scan.....please wait while the plugin scans your database.......', 'aiowpsecurity').'</p>';
264
+ echo $info_msg_string;
265
+
266
+ //Options table
267
+ echo '<p class="aio_info_with_icon">'.__('Scanning options table.........', 'aiowpsecurity').'</p>';
268
+ $options_table = $wpdb->prefix . 'options';
269
+ $sql= "SELECT option_id,option_value,option_name
270
+ FROM $options_table WHERE
271
+ INSTR(LCASE(option_name), 'class_generic_support') +
272
+ INSTR(LCASE(option_name), 'widget_generic_support') +
273
+ INSTR(LCASE(option_name), 'fwp') +
274
+ INSTR(LCASE(option_name), 'wp_check_hash') +
275
+ INSTR(LCASE(option_name), 'ftp_credentials') +
276
+ INSTR(LCASE(option_name), 'page_option') +
277
+ INSTR(LCASE(option_value), '<script') +
278
+ INSTR(LCASE(option_value), 'display:none') +
279
+ INSTR(LCASE(option_value), 'networkads') +
280
+ INSTR(option_value, 'eval(') +
281
+ INSTR(LCASE(option_value), 'javascript:') >0
282
+ ";
283
+
284
+ $results = $wpdb->get_results($sql, ARRAY_A);
285
+ $sus_options_entry_found = false;
286
+
287
+ $found_options = '';
288
+
289
+ if ($results) {
290
+ foreach ($results as $entry) {
291
+ $found_options = '';
292
+ $known_pharma_hack = false;
293
+ $option_id = $entry['option_id'];
294
+ $option_name = $entry['option_name'];
295
+ $option_value = $entry['option_value'];
296
+
297
+ if (strpos(strtolower($option_name),'class_generic_support')!==false){
298
+ $known_pharma_hack = true;
299
+ $found_options.="Known WP Pharma Hack Entry: class_generic_support ";
300
+ }
301
+ if (strpos(strtolower($option_name),'widget_generic_support')!==false){
302
+ $known_pharma_hack = true;
303
+ $found_options.="Known WP Pharma Hack Entry: widget_generic_support ";
304
+ }
305
+ if (strpos(strtolower($option_name),'fwp')!==false){
306
+ $known_pharma_hack = true;
307
+ $found_options.="Known WP Pharma Hack Entry: fwp ";
308
+ }
309
+ if (strpos(strtolower($option_name),'wp_check_hash')!==false){
310
+ $known_pharma_hack = true;
311
+ $found_options.="Known WP Pharma Hack Entry: wp_check_hash ";
312
+ }
313
+ if (strpos(strtolower($option_name),'ftp_credentials')!==false){
314
+ $known_pharma_hack = true;
315
+ $found_options.="Known WP Pharma Hack Entry: ftp_credentials ";
316
+ }
317
+ if (strpos(strtolower($option_name),'page_option')!==false){
318
+ $known_pharma_hack = true;
319
+ $found_options.="Known WP Pharma Hack Entry: page_option ";
320
+ }
321
+
322
+
323
+ //Turned off for false positive
324
+ // if (strpos($option_name,'rss_')!==false) {
325
+ // if($option_name == 'rss_use_language' || $option_name == 'rss_use_excerpt' || $option_name == 'rss_excerpt_length'){
326
+ // //any one of these entries are ok.
327
+ // continue;
328
+ // }else{
329
+ // $known_pharma_hack = true;
330
+ // $found_options.="Known WP Pharma Hack Entry found in options table with option_name: ".$option_name;
331
+ // }
332
+ // }
333
+
334
+ //If known pharma hack entry was found delete it
335
+ if($known_pharma_hack){
336
+ echo '<p class="aio_error_with_icon">'.sprintf( __('%s and option_id: %s', 'aiowpsecurity'), $found_options, $entry['option_id']).'</p>';
337
+ $delete_sql = $wpdb->delete($options_table, array('option_name'=>$option_name));
338
+ if($delete_sql === FALSE){
339
+ echo '<p class="aio_error_with_icon">'.sprintf( __('Deletion of known pharma hack entry for option_name %s failed. Please delete this entry manually!', 'aiowpsecurity'), $entry['option_name']).'</p>';
340
+ }else{
341
+ echo '<p class="aio_success_with_icon">'.sprintf( __('The options table entry with known pharma hack for option_id %s with option_name %s was successfully deleted', 'aiowpsecurity'), $entry['option_id'], $entry['option_name']).'</p>';
342
+ }
343
+
344
+ }
345
+
346
+ // if (strpos($option_name, '_transient_feed') !== false){
347
+ // continue;
348
+ // }
349
+ if (strpos(strtolower($option_value),'<script')!==false && strpos(strtolower($option_name),'_transient_feed')!==false) continue; //this is a known legit WP entry
350
+ if (strpos(strtolower($option_value),'<script')!==false) $found_options.="&lt;script&gt; tags found in the option_value field for option_name: ".$option_name;
351
+ if (strpos(strtolower($option_value),'display:none')!==false) $found_options.="display:none found in the option_value field for option_name: ".$option_name;
352
+ if (strpos(strtolower($option_value),'networkads')!==false) $found_options.="networkads found in the option_value field for option_name: ".$option_name;
353
+ if (strpos(strtolower($option_value),'eval(')!==false) $found_options.="eval() statement found in the option_value field for option_name: ".$option_name;
354
+ if (strpos(strtolower($option_value),'javascript:')!==false) $found_options.="javascript statement found in the option_value field for option_name: ".$option_name;
355
+ echo '<p class="aio_error_with_icon">'.sprintf( __('Possible suspicious entry found (for option_id: %s) - %s ', 'aiowpsecurity'), $entry['option_id'], $found_options).'</p>';
356
+
357
+ if($found_options != ''){
358
+ $sus_options_entry_found = true;
359
+ }
360
+ }
361
+ }
362
+
363
+ if(!$sus_options_entry_found){
364
+ echo '<p class="aio_success_with_icon">'.__('No suspicious entries found in options table', 'aiowpsecurity').'</p>';
365
+ }
366
+
367
+ //Posts table
368
+ echo '<p class="aio_info_with_icon">'.__('Scanning posts table.........', 'aiowpsecurity').'</p>';
369
+ $posts_table = $wpdb->prefix . 'posts';
370
+ $sql= "SELECT ID,post_author,post_title,post_name,guid,post_content,post_mime_type
371
+ FROM $posts_table WHERE
372
+ INSTR(LCASE(post_author), '<script') +
373
+ INSTR(LCASE(post_title), '<script') +
374
+ INSTR(LCASE(post_name), '<script') +
375
+ INSTR(LCASE(guid), '<script') +
376
+ INSTR(LCASE(post_author), 'eval(') +
377
+ INSTR(LCASE(post_title), 'eval(') +
378
+ INSTR(LCASE(post_name), 'eval(') +
379
+ INSTR(LCASE(guid), 'eval(') +
380
+ INSTR(LCASE(post_content), 'eval(') +
381
+ INSTR(LCASE(post_content), 'document.write(unescape(') +
382
+ INSTR(LCASE(post_content), 'try{window.onload') +
383
+ INSTR(LCASE(post_content), 'setAttribute(\'src\'') +
384
+ INSTR(LCASE(post_mime_type), 'script') >0
385
+ ";
386
+
387
+ $results = $wpdb->get_results($sql, ARRAY_A);
388
+ $sus_posts_entry_found = false;
389
+ $found_posts = '';
390
+ if ($results) {
391
+ foreach ($results as $entry) {
392
+ $found_posts = '';
393
+ if (strpos(strtolower($entry['post_author']),'<script')!==false) $found_posts.="post_author: &lt;script ";
394
+ if (strpos(strtolower($entry['post_title']),'<script')!==false) $found_posts.="post_title: &lt;script ";
395
+ if (strpos(strtolower($entry['post_name']),'<script')!==false) $found_posts.="post_name: &lt;script ";
396
+ if (strpos(strtolower($entry['guid']),'<script')!==false) $found_posts.="guid: &lt;script ";
397
+
398
+ if (strpos(strtolower($entry['post_author']),'eval(')!==false) $found_posts.="post_author: eval() ";
399
+ if (strpos(strtolower($entry['post_title']),'eval(')!==false) $found_posts.="post_title: eval() ";
400
+ if (strpos(strtolower($entry['post_name']),'eval(')!==false) $found_posts.="post_name: eval() ";
401
+ if (strpos(strtolower($entry['guid']),'eval(')!==false) $found_posts.="guid: eval() ";
402
+ if (strpos(strtolower($entry['post_content']),'eval(')!==false) $found_posts.="post_content: eval() ";
403
+
404
+ if (strpos(strtolower($entry['post_content']),'document.write(unescape(')!==false) $found_posts.="post_content: document.write(unescape( ";
405
+ if (strpos(strtolower($entry['post_content']),'try{window.onload')!==false) $found_posts.="post_content: try{window.onload ";
406
+ if (strpos(strtolower($entry['post_content']),"setAttribute('src'")!==false) $found_posts.="post_content: setAttribute('src' ";
407
+ if (strpos(strtolower($entry['post_mime_type']),'script')!==false) $found_posts.="post_mime_type: script ";
408
+ echo '<p class="aio_error_with_icon">'.sprintf( __('Possible suspicious entry found (for Post ID: %s) in the following column - %s ', 'aiowpsecurity'), $entry['ID'], $found_posts).'</p>';
409
+
410
+ if($found_options != ''){
411
+ $sus_posts_entry_found = true;
412
+ }
413
+ }
414
+ }
415
+
416
+ if(!$sus_posts_entry_found){
417
+ echo '<p class="aio_success_with_icon">'.__('No suspicious entries found in posts table', 'aiowpsecurity').'</p>';
418
+ }
419
+
420
+ //Links table
421
+ echo '<p class="aio_info_with_icon">'.__('Scanning links table.........', 'aiowpsecurity').'</p>';
422
+ $links_table = $wpdb->prefix . 'links';
423
+ $sql= "SELECT link_id,link_url,link_image,link_description,link_notes,link_rel,link_rss
424
+ FROM $links_table WHERE
425
+ INSTR(LCASE(link_url), '<script') +
426
+ INSTR(LCASE(link_image), '<script') +
427
+ INSTR(LCASE(link_description), '<script') +
428
+ INSTR(LCASE(link_notes), '<script') +
429
+ INSTR(LCASE(link_rel), '<script') +
430
+ INSTR(LCASE(link_rss), '<script') +
431
+ INSTR(LCASE(link_url), 'eval(') +
432
+ INSTR(LCASE(link_image), 'eval(') +
433
+ INSTR(LCASE(link_description), 'eval(') +
434
+ INSTR(LCASE(link_notes), 'eval(') +
435
+ INSTR(LCASE(link_rel), 'eval(') +
436
+ INSTR(LCASE(link_rss), 'eval(') +
437
+ INSTR(LCASE(link_url), 'javascript:') >0
438
+ ";
439
+
440
+ $results = $wpdb->get_results($sql, ARRAY_A);
441
+ $sus_links_entry_found = false;
442
+ $found_links = '';
443
+ if ($results) {
444
+ foreach ($results as $entry) {
445
+ $found_links = '';
446
+ if (strpos(strtolower($entry['link_url']),'<script')!==false) $found_links.="&lt;script&gt; tags found in the link_url field for link_id: ".$entry['link_id'];
447
+ if (strpos(strtolower($entry['link_image']),'<script')!==false) $found_links.="&lt;script&gt; tags found in the link_image field for link_id: ".$entry['link_id'];
448
+ if (strpos(strtolower($entry['link_description']),'<script')!==false) $found_links.="&lt;script&gt; tags found in the link_description field for link_id: ".$entry['link_id'];
449
+ if (strpos(strtolower($entry['link_notes']),'<script')!==false) $found_links.="&lt;script&gt; tags found in the link_notes field for link_id: ".$entry['link_id'];
450
+ if (strpos(strtolower($entry['link_rel']),'<script')!==false) $found_links.="&lt;script&gt; tags found in the link_rel field for link_id: ".$entry['link_id'];
451
+ if (strpos(strtolower($entry['link_rss']),'<script')!==false) $found_links.="&lt;script&gt; tags found in the link_rss field for link_id: ".$entry['link_id'];
452
+
453
+ if (strpos(strtolower($entry['link_url']),'eval(')!==false) $found_links.="eval() statement found in the link_url field for link_id: ".$entry['link_id'];
454
+ if (strpos(strtolower($entry['link_image']),'eval(')!==false) $found_links.="eval() statement found in the link_image field for link_id: ".$entry['link_id'];
455
+ if (strpos(strtolower($entry['link_description']),'eval(')!==false) $found_links.="eval() statement found in the link_description field for link_id: ".$entry['link_id'];
456
+ if (strpos(strtolower($entry['link_notes']),'eval(')!==false) $found_links.="eval() statement found in the link_notes field for link_id: ".$entry['link_id'];
457
+ if (strpos(strtolower($entry['link_rel']),'eval(')!==false) $found_links.="eval() statement found in the link_rel field for link_id: ".$entry['link_id'];
458
+ if (strpos(strtolower($entry['link_rss']),'eval(')!==false) $found_links.="eval() statement found in the link_rss field for link_id: ".$entry['link_id'];
459
+
460
+ echo '<p class="aio_error_with_icon">'.sprintf( __('Possible suspicious entry - %s ', 'aiowpsecurity'), $found_links).'</p>';
461
+
462
+ if($found_options != ''){
463
+ $sus_links_entry_found = true;
464
+ }
465
+ }
466
+ }
467
+
468
+ if(!$sus_links_entry_found) {
469
+ echo '<p class="aio_success_with_icon">'.__('No suspicious entries found in links table', 'aiowpsecurity').'</p>';
470
+ }
471
+
472
+ //Comments table
473
+ echo '<p class="aio_info_with_icon">'.__('Scanning comments table.........', 'aiowpsecurity').'</p>';
474
+ $comments_table = $wpdb->prefix . 'comments';
475
+ $sql= "SELECT comment_ID,comment_author_url,comment_agent,comment_author,comment_author_email,comment_content
476
+ FROM $comments_table WHERE
477
+ INSTR(LCASE(comment_author_url), '<script') +
478
+ INSTR(LCASE(comment_agent), '<script') +
479
+ INSTR(LCASE(comment_author), '<script') +
480
+ INSTR(LCASE(comment_author_email), '<script') +
481
+ INSTR(LCASE(comment_content), '<script') +
482
+ INSTR(LCASE(comment_author_url), 'eval(') +
483
+ INSTR(LCASE(comment_agent), 'eval(') +
484
+ INSTR(LCASE(comment_author), 'eval(') +
485
+ INSTR(LCASE(comment_author_email), 'eval(') +
486
+ INSTR(LCASE(comment_content), 'eval(') +
487
+ INSTR(LCASE(comment_content), 'document.write(unescape(') +
488
+ INSTR(LCASE(comment_content), 'try{window.onload') +
489
+ INSTR(LCASE(comment_content), 'setAttribute(\'src\'') +
490
+ INSTR(LCASE(comment_author_url), 'javascript:') >0
491
+ ";
492
+
493
+ $results = $wpdb->get_results($sql, ARRAY_A);
494
+ $sus_comments_entry_found = false;
495
+ $found_comments = '';
496
+ if ($results) {
497
+ foreach ($results as $entry) {
498
+ $found_comments = '';
499
+ if (strpos(strtolower($entry['comment_author']),'<script')!==false) $found_comments.="&lt;script&gt; tags found in the comment_author field for link_id: ".$entry['comment_ID'];
500
+ if (strpos(strtolower($entry['comment_author_url']),'<script')!==false) $found_comments.="&lt;script&gt; tags found in the comment_author_url field for link_id: ".$entry['comment_ID'];
501
+ if (strpos(strtolower($entry['comment_agent']),'<script')!==false) $found_comments.="&lt;script&gt; tags found in the comment_agent field for link_id: ".$entry['comment_ID'];
502
+ if (strpos(strtolower($entry['comment_author_email']),'<script')!==false) $found_comments.="&lt;script&gt; tags found in the comment_author_email field for link_id: ".$entry['comment_ID'];
503
+ if (strpos(strtolower($entry['comment_content']),'<script')!==false) $found_comments.="&lt;script&gt; tags found in the comment_content field for link_id: ".$entry['comment_ID'];
504
+
505
+ if (strpos(strtolower($entry['comment_author']),'eval(')!==false) $found_comments.="eval() statement found in the comment_author field for link_id: ".$entry['comment_ID'];
506
+ if (strpos(strtolower($entry['comment_author_url']),'eval(')!==false) $found_comments.="eval() statement found in the comment_author_url field for link_id: ".$entry['comment_ID'];
507
+ if (strpos(strtolower($entry['comment_agent']),'eval(')!==false) $found_comments.="eval() statement found in the comment_agent field for link_id: ".$entry['comment_ID'];
508
+ if (strpos(strtolower($entry['comment_author_email']),'eval(')!==false) $found_comments.="eval() statement found in the comment_author_email field for link_id: ".$entry['comment_ID'];
509
+ if (strpos(strtolower($entry['comment_content']),'eval(')!==false) $found_comments.="eval() statement found in the comment_content field for link_id: ".$entry['comment_ID'];
510
+
511
+ echo '<p class="aio_error_with_icon">'.sprintf( __('Possible suspicious entry - %s ', 'aiowpsecurity'), $found_comments).'</p>';
512
+
513
+ if($found_comments != ''){
514
+ $sus_comments_entry_found = true;
515
+ }
516
+ }
517
+ }
518
+
519
+ if(!$sus_comments_entry_found) {
520
+ echo '<p class="aio_success_with_icon">'.__('No suspicious entries found in comments table', 'aiowpsecurity').'</p>';
521
+ }
522
+
523
+ //postmeta table
524
+ echo '<p class="aio_info_with_icon">'.__('Scanning postmeta table.........', 'aiowpsecurity').'</p>';
525
+ $postmeta_table = $wpdb->prefix . 'postmeta';
526
+ $sql= "SELECT meta_id,meta_value
527
+ FROM $postmeta_table WHERE
528
+ INSTR(LCASE(meta_value), 'eval(')>0
529
+ ";
530
+
531
+ $results = $wpdb->get_results($sql, ARRAY_A);
532
+ $sus_postmeta_entry_found = false;
533
+ $found_postmeta = '';
534
+ if ($results) {
535
+ foreach ($results as $entry) {
536
+ $found_postmeta = '';
537
+ if (strpos(strtolower($entry['meta_value']),'eval(')!==false) $found_postmeta.="eval() statement found in the meta_value field for meta_id: ".$entry['meta_id'];
538
+
539
+ echo '<p class="aio_error_with_icon">'.sprintf( __('Possible suspicious entry - %s ', 'aiowpsecurity'), $found_postmeta).'</p>';
540
+
541
+ if($found_postmeta != ''){
542
+ $sus_postmeta_entry_found = true;
543
+ }
544
+ }
545
+ }
546
+
547
+ if(!$sus_postmeta_entry_found) {
548
+ echo '<p class="aio_success_with_icon">'.__('No suspicious entries found in postmeta table', 'aiowpsecurity').'</p>';
549
+ }
550
+
551
+ //usermeta table
552
+ echo '<p class="aio_info_with_icon">'.__('Scanning usermeta table.........', 'aiowpsecurity').'</p>';
553
+ $usermeta_table = $wpdb->prefix . 'usermeta';
554
+ $sql= "SELECT umeta_id,meta_value
555
+ FROM $usermeta_table WHERE
556
+ INSTR(LCASE(meta_value), 'eval(')>0
557
+ ";
558
+
559
+ $results = $wpdb->get_results($sql, ARRAY_A);
560
+ $sus_usermeta_entry_found = false;
561
+ $found_usermeta = '';
562
+ if ($results) {
563
+ foreach ($results as $entry) {
564
+ $found_usermeta = '';
565
+ if (strpos(strtolower($entry['meta_value']),'eval(')!==false) $found_usermeta.="eval() statement found in the meta_value field for meta_id: ".$entry['umeta_id'];
566
+
567
+ echo '<p class="aio_error_with_icon">'.sprintf( __('Possible suspicious entry - %s ', 'aiowpsecurity'), $found_usermeta).'</p>';
568
+
569
+ if($found_usermeta != ''){
570
+ $sus_usermeta_entry_found = true;
571
+ }
572
+ }
573
+ }
574
+
575
+ if(!$sus_usermeta_entry_found) {
576
+ echo '<p class="aio_success_with_icon">'.__('No suspicious entries found in usermeta table', 'aiowpsecurity').'</p>';
577
+ }
578
+
579
+ //users table
580
+ echo '<p class="aio_info_with_icon">'.__('Scanning users table.........', 'aiowpsecurity').'</p>';
581
+ $users_table = $wpdb->prefix . 'users';
582
+ $sql= "SELECT ID,user_login,user_nicename,user_email,user_url,display_name
583
+ FROM $users_table WHERE
584
+ INSTR(LCASE(user_login), '<script') +
585
+ INSTR(LCASE(user_nicename), '<script') +
586
+ INSTR(LCASE(user_email), '<script') +
587
+ INSTR(LCASE(user_url), '<script') +
588
+ INSTR(LCASE(display_name), '<script') +
589
+ INSTR(user_login, 'eval(') +
590
+ INSTR(user_nicename, 'eval(') +
591
+ INSTR(user_email, 'eval(') +
592
+ INSTR(user_url, 'eval(') +
593
+ INSTR(display_name, 'eval(') +
594
+ INSTR(LCASE(user_url), 'javascript:') +
595
+ INSTR(LCASE(user_email), 'javascript:')>0
596
+ ";
597
+
598
+ $results = $wpdb->get_results($sql, ARRAY_A);
599
+ $sus_users_entry_found = false;
600
+ $found_users = '';
601
+ if ($results) {
602
+ foreach ($results as $entry) {
603
+ $found_users = '';
604
+ if (strpos(strtolower($entry['user_login']),'<script')!==false) $found_users.="&lt;script&gt; tags found in the user_login field for user ID: ".$entry['ID'];
605
+ if (strpos(strtolower($entry['user_nicename']),'<script')!==false) $found_users.="&lt;script&gt; tags found in the user_nicename field for user ID: ".$entry['ID'];
606
+ if (strpos(strtolower($entry['user_email']),'<script')!==false) $found_users.="&lt;script&gt; tags found in the user_email field for user ID: ".$entry['ID'];
607
+ if (strpos(strtolower($entry['user_url']),'<script')!==false) $found_users.="&lt;script&gt; tags found in the user_url field for user ID: ".$entry['ID'];
608
+ if (strpos(strtolower($entry['display_name']),'<script')!==false) $found_users.="&lt;script&gt; tags found in the display_name field for user ID: ".$entry['ID'];
609
+
610
+ if (strpos(strtolower($entry['user_login']),'eval(')!==false) $found_users.="eval() statement found in the user_login field for user ID: ".$entry['ID'];
611
+ if (strpos(strtolower($entry['user_nicename']),'eval(')!==false) $found_users.="eval() statement found in the user_nicename field for user ID: ".$entry['ID'];
612
+ if (strpos(strtolower($entry['user_email']),'eval(')!==false) $found_users.="eval() statement found in the user_email field for user ID: ".$entry['ID'];
613
+ if (strpos(strtolower($entry['user_url']),'eval(')!==false) $found_users.="eval() statement found in the user_url field for user ID: ".$entry['ID'];
614
+ if (strpos(strtolower($entry['display_name']),'eval(')!==false) $found_users.="eval() statement found in the display_name field for user ID: ".$entry['ID'];
615
+
616
+ echo '<p class="aio_error_with_icon">'.sprintf( __('Possible suspicious entry - %s ', 'aiowpsecurity'), $found_users).'</p>';
617
+
618
+ if($found_users != ''){
619
+ $sus_users_entry_found = true;
620
+ }
621
+ }
622
+ }
623
+
624
+ if(!$sus_users_entry_found) {
625
+ echo '<p class="aio_success_with_icon">'.__('No suspicious entries found in users table', 'aiowpsecurity').'</p>';
626
+ }
627
+
628
+ $output = ob_get_contents();
629
+ ob_end_clean();
630
+
631
+ if($found_options != '' || $found_posts != '' || $found_links != '' || $found_comments != '' || $found_postmeta != '' || $found_usermeta != '' || $found_users != ''){
632
+ $error_msg = '<div id="message" class="error"><p><strong><p>'.__('The plugin has detected that there are some potentially suspicious entries in your database.', 'aiowpsecurity').'</p>';
633
+ $error_msg .= '<p>'.__('Please verify the results listed below to confirm whether the entries detected are genuinely suspicious or if they are false positives.', 'aiowpsecurity').'</p>';
634
+ $error_msg .= '</strong></p></div>';
635
+
636
+ //Display a yellow box disclaimer stating that if no suspicious entries found does not necessarily mean site is not currently hacked
637
+ $malware_scan_tab_link = '<a href="admin.php?page='.AIOWPSEC_FILESCAN_MENU_SLUG.'&tab=tab2" target="_blank">Malware Scan</a>';
638
+ $info_msg = '<strong>'.__('Disclaimer:').'</strong><br />';
639
+ $info_msg .= __('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.', 'aiowpsecurity').'<br />';
640
+ $info_msg .= __('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.', 'aiowpsecurity').'<br />';
641
+ $info_msg .= sprintf( __('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.', 'aiowpsecurity'), $malware_scan_tab_link);
642
+ $disclaimer = '<div class="aio_yellow_box"><p>'.$info_msg.'</p></div>';
643
+
644
+ return $error_msg.$disclaimer.$output;
645
+
646
+ }else{
647
+ $scan_complete_msg = '<div id="message" class="updated fade"><p><strong>';
648
+ $scan_complete_msg .= __('DB Scan was completed successfully. No suspicious entries found.');
649
+ $scan_complete_msg .= '</strong></p></div>';
650
+
651
+ //Display a yellow box disclaimer stating that if no suspicious entries found does not necessarily mean site is not currently hacked
652
+ $malware_scan_tab_link = '<a href="admin.php?page='.AIOWPSEC_FILESCAN_MENU_SLUG.'&tab=tab2" target="_blank">Malware Scan</a>';
653
+ $info_msg = '<strong>'.__('Disclaimer:').'</strong><br />';
654
+ $info_msg .= __('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.', 'aiowpsecurity').'<br />';
655
+ $info_msg .= __('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.', 'aiowpsecurity').'<br />';
656
+ $info_msg .= sprintf( __('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.', 'aiowpsecurity'), $malware_scan_tab_link);
657
+ $disclaimer = '<div class="aio_yellow_box"><p>'.$info_msg.'</p></div>';
658
+
659
+ return $scan_complete_msg.$disclaimer.$output;
660
+ }
661
+ }
662
  }
classes/wp-security-general-init-tasks.php CHANGED
@@ -61,25 +61,22 @@ class AIOWPSecurity_General_Init_Tasks
61
  }
62
 
63
  //For comment captcha feature
64
- if($aio_wp_security->configs->get_value('aiowps_enable_comment_captcha') == '1'){
65
- add_action( 'comment_form_after_fields', array(&$this, 'insert_captcha_question_form'), 1 );
66
- add_action( 'comment_form_logged_in_after', array(&$this, 'insert_captcha_question_form'), 1 );
67
- add_filter( 'preprocess_comment', array(&$this, 'process_comment_post') );
68
- }
69
-
70
- //For rename login page feature
71
- if($aio_wp_security->configs->get_value('aiowps_enable_rename_login_page') == '1'){
72
- include_once(AIO_WP_SECURITY_PATH.'/classes/wp-security-process-renamed-login-page.php');
73
- $login_object = new AIOWPSecurity_Process_Renamed_Login_Page();
74
- AIOWPSecurity_Process_Renamed_Login_Page::renamed_login_init_tasks();
75
- }
76
-
77
- //For site lockout feature (ie, maintenance mode)
78
- if($aio_wp_security->configs->get_value('aiowps_site_lockout') == '1'){
79
- if (!is_user_logged_in() && !current_user_can('administrator') && !is_admin() && !in_array( $GLOBALS['pagenow'], array( 'wp-login.php', 'wp-register.php' ))) {
80
- $this->site_lockout_tasks();
81
  }
82
- }
 
 
 
 
 
 
 
83
 
84
  //For feature which displays logged in users
85
  $this->update_logged_in_user_transient();
@@ -103,14 +100,6 @@ class AIOWPSecurity_General_Init_Tasks
103
  {
104
  return '';
105
  }
106
-
107
- function site_lockout_tasks(){
108
- nocache_headers();
109
- header("HTTP/1.0 503 Service Unavailable");
110
- remove_action('wp_head','head_addons',7);
111
- include_once(AIO_WP_SECURITY_PATH.'/other-includes/wp-security-visitor-lockout-page.php');
112
- exit();
113
- }
114
 
115
  function do_404_lockout_tasks(){
116
  global $aio_wp_security;
61
  }
62
 
63
  //For comment captcha feature
64
+ if (AIOWPSecurity_Utility::is_multisite_install()){
65
+ $blog_id = get_current_blog_id();
66
+ switch_to_blog($blog_id);
67
+ if($aio_wp_security->configs->get_value('aiowps_enable_comment_captcha') == '1'){
68
+ add_action( 'comment_form_after_fields', array(&$this, 'insert_captcha_question_form'), 1 );
69
+ add_action( 'comment_form_logged_in_after', array(&$this, 'insert_captcha_question_form'), 1 );
70
+ add_filter( 'preprocess_comment', array(&$this, 'process_comment_post') );
 
 
 
 
 
 
 
 
 
 
71
  }
72
+ restore_current_blog();
73
+ }else{
74
+ if($aio_wp_security->configs->get_value('aiowps_enable_comment_captcha') == '1'){
75
+ add_action( 'comment_form_after_fields', array(&$this, 'insert_captcha_question_form'), 1 );
76
+ add_action( 'comment_form_logged_in_after', array(&$this, 'insert_captcha_question_form'), 1 );
77
+ add_filter( 'preprocess_comment', array(&$this, 'process_comment_post') );
78
+ }
79
+ }
80
 
81
  //For feature which displays logged in users
82
  $this->update_logged_in_user_transient();
100
  {
101
  return '';
102
  }
 
 
 
 
 
 
 
 
103
 
104
  function do_404_lockout_tasks(){
105
  global $aio_wp_security;
classes/wp-security-utility-file.php CHANGED
@@ -212,6 +212,21 @@ class AIOWPSecurity_Utility_File
212
  exit;
213
  }
214
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215
  /*
216
  * This function will compare the current permission value for a file or dir with the recommended value.
217
  * It will compare the individual "execute", "write" and "read" bits for the "public", "group" and "owner" permissions.
@@ -361,5 +376,26 @@ class AIOWPSecurity_Utility_File
361
  }
362
  return $res;
363
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
364
 
365
  }
212
  exit;
213
  }
214
 
215
+ static function download_content_to_a_file($output, $file_name = '')
216
+ {
217
+ if(empty($file_name)){$file_name = "aiowps_" . date("Y-m-d_H-i", time()).".txt";}
218
+
219
+ header("Content-Encoding: UTF-8");
220
+ header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
221
+ header("Content-Description: File Transfer");
222
+ header("Content-type: application/octet-stream");
223
+ header("Content-disposition: attachment; filename=" . $file_name);
224
+ header("Content-Transfer-Encoding: binary");
225
+ header("Content-Length: " . strlen($output));
226
+ echo $output;
227
+ exit;
228
+ }
229
+
230
  /*
231
  * This function will compare the current permission value for a file or dir with the recommended value.
232
  * It will compare the individual "execute", "write" and "read" bits for the "public", "group" and "owner" permissions.
376
  }
377
  return $res;
378
  }
379
+
380
+ static function get_attachment_id_from_url($attachment_url = '')
381
+ {
382
+ global $wpdb;
383
+ $attachment_id = false;
384
+
385
+ // If there is no url, return.
386
+ if ('' == $attachment_url)return;
387
+
388
+ // Get the upload directory paths
389
+ $upload_dir_paths = wp_upload_dir();
390
+
391
+ // Make sure the upload path base directory exists in the attachment URL, to verify that we're working with a media library image
392
+ if (false !== strpos($attachment_url, $upload_dir_paths['baseurl'])) {
393
+ // Remove the upload path base directory from the attachment URL
394
+ $attachment_url = str_replace( $upload_dir_paths['baseurl'] . '/', '', $attachment_url );
395
+ // Now run custom database query to get attachment ID from attachment URL
396
+ $attachment_id = $wpdb->get_var( $wpdb->prepare( "SELECT wposts.ID FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta WHERE wposts.ID = wpostmeta.post_id AND wpostmeta.meta_key = '_wp_attached_file' AND wpostmeta.meta_value = '%s' AND wposts.post_type = 'attachment'", $attachment_url ) );
397
+ }
398
+ return $attachment_id;
399
+ }
400
 
401
  }
classes/wp-security-utility-htaccess.php CHANGED
@@ -573,7 +573,7 @@ class AIOWPSecurity_Utility_Htaccess
573
  if($aio_wp_security->configs->get_value('aiowps_disable_index_views')=='1')
574
  {
575
  $rules .= AIOWPSecurity_Utility_Htaccess::$disable_index_views_marker_start . PHP_EOL; //Add feature marker start
576
- $rules .= 'Options All -Indexes' . PHP_EOL;
577
  $rules .= AIOWPSecurity_Utility_Htaccess::$disable_index_views_marker_end . PHP_EOL; //Add feature marker end
578
  }
579
 
573
  if($aio_wp_security->configs->get_value('aiowps_disable_index_views')=='1')
574
  {
575
  $rules .= AIOWPSecurity_Utility_Htaccess::$disable_index_views_marker_start . PHP_EOL; //Add feature marker start
576
+ $rules .= 'Options -Indexes' . PHP_EOL;
577
  $rules .= AIOWPSecurity_Utility_Htaccess::$disable_index_views_marker_end . PHP_EOL; //Add feature marker end
578
  }
579
 
classes/wp-security-wp-footer-content.php ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*** This class handles tasks that need to be executed at wp-loaded time ***/
4
+ class AIOWPSecurity_WP_Footer_Content {
5
+
6
+ function __construct() {
7
+ //Add content that need to be outputted in the footer area.
8
+
9
+ global $aio_wp_security;
10
+
11
+ //Handle the copy protection feature
12
+ if ($aio_wp_security->configs->get_value('aiowps_copy_protection') == '1') {
13
+ $this->output_copy_protection_code();
14
+ }
15
+
16
+ //TODO - add other footer output content here
17
+
18
+ }
19
+
20
+ function output_copy_protection_code()
21
+ {
22
+ ?>
23
+ <meta http-equiv="imagetoolbar" content="no"><!-- disable image toolbar (if any) -->
24
+ <script language="Javascript">
25
+ /*<![CDATA[*/
26
+ document.oncontextmenu = function(){return false;};
27
+ /*]]>*/
28
+ </script>
29
+ <script type="text/javascript">
30
+ /*<![CDATA[*/
31
+ document.onselectstart=function(){
32
+ if (event.srcElement.type != "text" && event.srcElement.type != "textarea" && event.srcElement.type != "password") {
33
+ return false;
34
+ }
35
+ else {
36
+ return true;
37
+ }
38
+ };
39
+ if (window.sidebar) {
40
+ document.onmousedown=function(e){
41
+ var obj=e.target;
42
+ if (obj.tagName.toUpperCase() == 'SELECT'
43
+ || obj.tagName.toUpperCase() == "INPUT"
44
+ || obj.tagName.toUpperCase() == "TEXTAREA"
45
+ || obj.tagName.toUpperCase() == "PASSWORD") {
46
+ return true;
47
+ }
48
+ else {
49
+ return false;
50
+ }
51
+ };
52
+ }
53
+ /*]]>*/
54
+ </script>
55
+ <script type="text/javascript" language="JavaScript1.1">
56
+ /*<![CDATA[*/
57
+ if (parent.frames.length > 0) { top.location.replace(document.location); }
58
+ /*]]>*/
59
+ </script>
60
+ <script language="Javascript">
61
+ /*<![CDATA[*/
62
+ document.ondragstart = function(){return false;};
63
+ /*]]>*/
64
+ </script>
65
+ <?php
66
+ }
67
+
68
+ }//End of class
classes/wp-security-wp-loaded-tasks.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*** This class handles tasks that need to be executed at wp-loaded time ***/
4
+ class AIOWPSecurity_WP_Loaded_Tasks {
5
+
6
+ function __construct() {
7
+ //Add tasks that need to be executed at wp-loaded time
8
+
9
+ global $aio_wp_security;
10
+
11
+ //Handle the rename login page feature
12
+ if ($aio_wp_security->configs->get_value('aiowps_enable_rename_login_page') == '1') {
13
+ include_once(AIO_WP_SECURITY_PATH . '/classes/wp-security-process-renamed-login-page.php');
14
+ $login_object = new AIOWPSecurity_Process_Renamed_Login_Page();
15
+ AIOWPSecurity_Process_Renamed_Login_Page::renamed_login_init_tasks();
16
+ }
17
+
18
+ //For site lockout feature (ie, maintenance mode). It needs to be checked after the rename login page
19
+ if($aio_wp_security->configs->get_value('aiowps_site_lockout') == '1'){
20
+ if (!is_user_logged_in() && !current_user_can('administrator') && !is_admin() && !in_array( $GLOBALS['pagenow'], array( 'wp-login.php', 'wp-register.php' ))) {
21
+ $this->site_lockout_tasks();
22
+ }
23
+ }
24
+
25
+ }
26
+
27
+ function site_lockout_tasks(){
28
+ nocache_headers();
29
+ header("HTTP/1.0 503 Service Unavailable");
30
+ remove_action('wp_head','head_addons',7);
31
+ include_once(AIO_WP_SECURITY_PATH.'/other-includes/wp-security-visitor-lockout-page.php');
32
+ exit();
33
+ }
34
+
35
+
36
+ }
css/wp-security-admin-styles.css CHANGED
@@ -160,6 +160,11 @@
160
  max-width:350px;
161
  margin-right:15px;
162
  }
 
 
 
 
 
163
  .aiowps_dashboard_widget_footer{
164
  background-color: #E6E6E6;
165
  padding: 10px;
160
  max-width:350px;
161
  margin-right:15px;
162
  }
163
+
164
+ #security_strength_chart_div table{
165
+ margin-right: auto !important;
166
+ margin-left:auto !important;
167
+ }
168
  .aiowps_dashboard_widget_footer{
169
  background-color: #E6E6E6;
170
  padding: 10px;
js/masonry.pkgd.min.js ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Masonry PACKAGED v3.1.5
3
+ * Cascading grid layout library
4
+ * http://masonry.desandro.com
5
+ * MIT License
6
+ * by David DeSandro
7
+ */
8
+
9
+ !function(a){function b(){}function c(a){function c(b){b.prototype.option||(b.prototype.option=function(b){a.isPlainObject(b)&&(this.options=a.extend(!0,this.options,b))})}function e(b,c){a.fn[b]=function(e){if("string"==typeof e){for(var g=d.call(arguments,1),h=0,i=this.length;i>h;h++){var j=this[h],k=a.data(j,b);if(k)if(a.isFunction(k[e])&&"_"!==e.charAt(0)){var l=k[e].apply(k,g);if(void 0!==l)return l}else f("no such method '"+e+"' for "+b+" instance");else f("cannot call methods on "+b+" prior to initialization; attempted to call '"+e+"'")}return this}return this.each(function(){var d=a.data(this,b);d?(d.option(e),d._init()):(d=new c(this,e),a.data(this,b,d))})}}if(a){var f="undefined"==typeof console?b:function(a){console.error(a)};return a.bridget=function(a,b){c(b),e(a,b)},a.bridget}}var d=Array.prototype.slice;"function"==typeof define&&define.amd?define("jquery-bridget/jquery.bridget",["jquery"],c):c(a.jQuery)}(window),function(a){function b(b){var c=a.event;return c.target=c.target||c.srcElement||b,c}var c=document.documentElement,d=function(){};c.addEventListener?d=function(a,b,c){a.addEventListener(b,c,!1)}:c.attachEvent&&(d=function(a,c,d){a[c+d]=d.handleEvent?function(){var c=b(a);d.handleEvent.call(d,c)}:function(){var c=b(a);d.call(a,c)},a.attachEvent("on"+c,a[c+d])});var e=function(){};c.removeEventListener?e=function(a,b,c){a.removeEventListener(b,c,!1)}:c.detachEvent&&(e=function(a,b,c){a.detachEvent("on"+b,a[b+c]);try{delete a[b+c]}catch(d){a[b+c]=void 0}});var f={bind:d,unbind:e};"function"==typeof define&&define.amd?define("eventie/eventie",f):"object"==typeof exports?module.exports=f:a.eventie=f}(this),function(a){function b(a){"function"==typeof a&&(b.isReady?a():f.push(a))}function c(a){var c="readystatechange"===a.type&&"complete"!==e.readyState;if(!b.isReady&&!c){b.isReady=!0;for(var d=0,g=f.length;g>d;d++){var h=f[d];h()}}}function d(d){return d.bind(e,"DOMContentLoaded",c),d.bind(e,"readystatechange",c),d.bind(a,"load",c),b}var e=a.document,f=[];b.isReady=!1,"function"==typeof define&&define.amd?(b.isReady="function"==typeof requirejs,define("doc-ready/doc-ready",["eventie/eventie"],d)):a.docReady=d(a.eventie)}(this),function(){function a(){}function b(a,b){for(var c=a.length;c--;)if(a[c].listener===b)return c;return-1}function c(a){return function(){return this[a].apply(this,arguments)}}var d=a.prototype,e=this,f=e.EventEmitter;d.getListeners=function(a){var b,c,d=this._getEvents();if(a instanceof RegExp){b={};for(c in d)d.hasOwnProperty(c)&&a.test(c)&&(b[c]=d[c])}else b=d[a]||(d[a]=[]);return b},d.flattenListeners=function(a){var b,c=[];for(b=0;b<a.length;b+=1)c.push(a[b].listener);return c},d.getListenersAsObject=function(a){var b,c=this.getListeners(a);return c instanceof Array&&(b={},b[a]=c),b||c},d.addListener=function(a,c){var d,e=this.getListenersAsObject(a),f="object"==typeof c;for(d in e)e.hasOwnProperty(d)&&-1===b(e[d],c)&&e[d].push(f?c:{listener:c,once:!1});return this},d.on=c("addListener"),d.addOnceListener=function(a,b){return this.addListener(a,{listener:b,once:!0})},d.once=c("addOnceListener"),d.defineEvent=function(a){return this.getListeners(a),this},d.defineEvents=function(a){for(var b=0;b<a.length;b+=1)this.defineEvent(a[b]);return this},d.removeListener=function(a,c){var d,e,f=this.getListenersAsObject(a);for(e in f)f.hasOwnProperty(e)&&(d=b(f[e],c),-1!==d&&f[e].splice(d,1));return this},d.off=c("removeListener"),d.addListeners=function(a,b){return this.manipulateListeners(!1,a,b)},d.removeListeners=function(a,b){return this.manipulateListeners(!0,a,b)},d.manipulateListeners=function(a,b,c){var d,e,f=a?this.removeListener:this.addListener,g=a?this.removeListeners:this.addListeners;if("object"!=typeof b||b instanceof RegExp)for(d=c.length;d--;)f.call(this,b,c[d]);else for(d in b)b.hasOwnProperty(d)&&(e=b[d])&&("function"==typeof e?f.call(this,d,e):g.call(this,d,e));return this},d.removeEvent=function(a){var b,c=typeof a,d=this._getEvents();if("string"===c)delete d[a];else if(a instanceof RegExp)for(b in d)d.hasOwnProperty(b)&&a.test(b)&&delete d[b];else delete this._events;return this},d.removeAllListeners=c("removeEvent"),d.emitEvent=function(a,b){var c,d,e,f,g=this.getListenersAsObject(a);for(e in g)if(g.hasOwnProperty(e))for(d=g[e].length;d--;)c=g[e][d],c.once===!0&&this.removeListener(a,c.listener),f=c.listener.apply(this,b||[]),f===this._getOnceReturnValue()&&this.removeListener(a,c.listener);return this},d.trigger=c("emitEvent"),d.emit=function(a){var b=Array.prototype.slice.call(arguments,1);return this.emitEvent(a,b)},d.setOnceReturnValue=function(a){return this._onceReturnValue=a,this},d._getOnceReturnValue=function(){return this.hasOwnProperty("_onceReturnValue")?this._onceReturnValue:!0},d._getEvents=function(){return this._events||(this._events={})},a.noConflict=function(){return e.EventEmitter=f,a},"function"==typeof define&&define.amd?define("eventEmitter/EventEmitter",[],function(){return a}):"object"==typeof module&&module.exports?module.exports=a:this.EventEmitter=a}.call(this),function(a){function b(a){if(a){if("string"==typeof d[a])return a;a=a.charAt(0).toUpperCase()+a.slice(1);for(var b,e=0,f=c.length;f>e;e++)if(b=c[e]+a,"string"==typeof d[b])return b}}var c="Webkit Moz ms Ms O".split(" "),d=document.documentElement.style;"function"==typeof define&&define.amd?define("get-style-property/get-style-property",[],function(){return b}):"object"==typeof exports?module.exports=b:a.getStyleProperty=b}(window),function(a){function b(a){var b=parseFloat(a),c=-1===a.indexOf("%")&&!isNaN(b);return c&&b}function c(){for(var a={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},b=0,c=g.length;c>b;b++){var d=g[b];a[d]=0}return a}function d(a){function d(a){if("string"==typeof a&&(a=document.querySelector(a)),a&&"object"==typeof a&&a.nodeType){var d=f(a);if("none"===d.display)return c();var e={};e.width=a.offsetWidth,e.height=a.offsetHeight;for(var k=e.isBorderBox=!(!j||!d[j]||"border-box"!==d[j]),l=0,m=g.length;m>l;l++){var n=g[l],o=d[n];o=h(a,o);var p=parseFloat(o);e[n]=isNaN(p)?0:p}var q=e.paddingLeft+e.paddingRight,r=e.paddingTop+e.paddingBottom,s=e.marginLeft+e.marginRight,t=e.marginTop+e.marginBottom,u=e.borderLeftWidth+e.borderRightWidth,v=e.borderTopWidth+e.borderBottomWidth,w=k&&i,x=b(d.width);x!==!1&&(e.width=x+(w?0:q+u));var y=b(d.height);return y!==!1&&(e.height=y+(w?0:r+v)),e.innerWidth=e.width-(q+u),e.innerHeight=e.height-(r+v),e.outerWidth=e.width+s,e.outerHeight=e.height+t,e}}function h(a,b){if(e||-1===b.indexOf("%"))return b;var c=a.style,d=c.left,f=a.runtimeStyle,g=f&&f.left;return g&&(f.left=a.currentStyle.left),c.left=b,b=c.pixelLeft,c.left=d,g&&(f.left=g),b}var i,j=a("boxSizing");return function(){if(j){var a=document.createElement("div");a.style.width="200px",a.style.padding="1px 2px 3px 4px",a.style.borderStyle="solid",a.style.borderWidth="1px 2px 3px 4px",a.style[j]="border-box";var c=document.body||document.documentElement;c.appendChild(a);var d=f(a);i=200===b(d.width),c.removeChild(a)}}(),d}var e=a.getComputedStyle,f=e?function(a){return e(a,null)}:function(a){return a.currentStyle},g=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"];"function"==typeof define&&define.amd?define("get-size/get-size",["get-style-property/get-style-property"],d):"object"==typeof exports?module.exports=d(require("get-style-property")):a.getSize=d(a.getStyleProperty)}(window),function(a,b){function c(a,b){return a[h](b)}function d(a){if(!a.parentNode){var b=document.createDocumentFragment();b.appendChild(a)}}function e(a,b){d(a);for(var c=a.parentNode.querySelectorAll(b),e=0,f=c.length;f>e;e++)if(c[e]===a)return!0;return!1}function f(a,b){return d(a),c(a,b)}var g,h=function(){if(b.matchesSelector)return"matchesSelector";for(var a=["webkit","moz","ms","o"],c=0,d=a.length;d>c;c++){var e=a[c],f=e+"MatchesSelector";if(b[f])return f}}();if(h){var i=document.createElement("div"),j=c(i,"div");g=j?c:f}else g=e;"function"==typeof define&&define.amd?define("matches-selector/matches-selector",[],function(){return g}):window.matchesSelector=g}(this,Element.prototype),function(a){function b(a,b){for(var c in b)a[c]=b[c];return a}function c(a){for(var b in a)return!1;return b=null,!0}function d(a){return a.replace(/([A-Z])/g,function(a){return"-"+a.toLowerCase()})}function e(a,e,f){function h(a,b){a&&(this.element=a,this.layout=b,this.position={x:0,y:0},this._create())}var i=f("transition"),j=f("transform"),k=i&&j,l=!!f("perspective"),m={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"otransitionend",transition:"transitionend"}[i],n=["transform","transition","transitionDuration","transitionProperty"],o=function(){for(var a={},b=0,c=n.length;c>b;b++){var d=n[b],e=f(d);e&&e!==d&&(a[d]=e)}return a}();b(h.prototype,a.prototype),h.prototype._create=function(){this._transn={ingProperties:{},clean:{},onEnd:{}},this.css({position:"absolute"})},h.prototype.handleEvent=function(a){var b="on"+a.type;this[b]&&this[b](a)},h.prototype.getSize=function(){this.size=e(this.element)},h.prototype.css=function(a){var b=this.element.style;for(var c in a){var d=o[c]||c;b[d]=a[c]}},h.prototype.getPosition=function(){var a=g(this.element),b=this.layout.options,c=b.isOriginLeft,d=b.isOriginTop,e=parseInt(a[c?"left":"right"],10),f=parseInt(a[d?"top":"bottom"],10);e=isNaN(e)?0:e,f=isNaN(f)?0:f;var h=this.layout.size;e-=c?h.paddingLeft:h.paddingRight,f-=d?h.paddingTop:h.paddingBottom,this.position.x=e,this.position.y=f},h.prototype.layoutPosition=function(){var a=this.layout.size,b=this.layout.options,c={};b.isOriginLeft?(c.left=this.position.x+a.paddingLeft+"px",c.right=""):(c.right=this.position.x+a.paddingRight+"px",c.left=""),b.isOriginTop?(c.top=this.position.y+a.paddingTop+"px",c.bottom=""):(c.bottom=this.position.y+a.paddingBottom+"px",c.top=""),this.css(c),this.emitEvent("layout",[this])};var p=l?function(a,b){return"translate3d("+a+"px, "+b+"px, 0)"}:function(a,b){return"translate("+a+"px, "+b+"px)"};h.prototype._transitionTo=function(a,b){this.getPosition();var c=this.position.x,d=this.position.y,e=parseInt(a,10),f=parseInt(b,10),g=e===this.position.x&&f===this.position.y;if(this.setPosition(a,b),g&&!this.isTransitioning)return void this.layoutPosition();var h=a-c,i=b-d,j={},k=this.layout.options;h=k.isOriginLeft?h:-h,i=k.isOriginTop?i:-i,j.transform=p(h,i),this.transition({to:j,onTransitionEnd:{transform:this.layoutPosition},isCleaning:!0})},h.prototype.goTo=function(a,b){this.setPosition(a,b),this.layoutPosition()},h.prototype.moveTo=k?h.prototype._transitionTo:h.prototype.goTo,h.prototype.setPosition=function(a,b){this.position.x=parseInt(a,10),this.position.y=parseInt(b,10)},h.prototype._nonTransition=function(a){this.css(a.to),a.isCleaning&&this._removeStyles(a.to);for(var b in a.onTransitionEnd)a.onTransitionEnd[b].call(this)},h.prototype._transition=function(a){if(!parseFloat(this.layout.options.transitionDuration))return void this._nonTransition(a);var b=this._transn;for(var c in a.onTransitionEnd)b.onEnd[c]=a.onTransitionEnd[c];for(c in a.to)b.ingProperties[c]=!0,a.isCleaning&&(b.clean[c]=!0);if(a.from){this.css(a.from);var d=this.element.offsetHeight;d=null}this.enableTransition(a.to),this.css(a.to),this.isTransitioning=!0};var q=j&&d(j)+",opacity";h.prototype.enableTransition=function(){this.isTransitioning||(this.css({transitionProperty:q,transitionDuration:this.layout.options.transitionDuration}),this.element.addEventListener(m,this,!1))},h.prototype.transition=h.prototype[i?"_transition":"_nonTransition"],h.prototype.onwebkitTransitionEnd=function(a){this.ontransitionend(a)},h.prototype.onotransitionend=function(a){this.ontransitionend(a)};var r={"-webkit-transform":"transform","-moz-transform":"transform","-o-transform":"transform"};h.prototype.ontransitionend=function(a){if(a.target===this.element){var b=this._transn,d=r[a.propertyName]||a.propertyName;if(delete b.ingProperties[d],c(b.ingProperties)&&this.disableTransition(),d in b.clean&&(this.element.style[a.propertyName]="",delete b.clean[d]),d in b.onEnd){var e=b.onEnd[d];e.call(this),delete b.onEnd[d]}this.emitEvent("transitionEnd",[this])}},h.prototype.disableTransition=function(){this.removeTransitionStyles(),this.element.removeEventListener(m,this,!1),this.isTransitioning=!1},h.prototype._removeStyles=function(a){var b={};for(var c in a)b[c]="";this.css(b)};var s={transitionProperty:"",transitionDuration:""};return h.prototype.removeTransitionStyles=function(){this.css(s)},h.prototype.removeElem=function(){this.element.parentNode.removeChild(this.element),this.emitEvent("remove",[this])},h.prototype.remove=function(){if(!i||!parseFloat(this.layout.options.transitionDuration))return void this.removeElem();var a=this;this.on("transitionEnd",function(){return a.removeElem(),!0}),this.hide()},h.prototype.reveal=function(){delete this.isHidden,this.css({display:""});var a=this.layout.options;this.transition({from:a.hiddenStyle,to:a.visibleStyle,isCleaning:!0})},h.prototype.hide=function(){this.isHidden=!0,this.css({display:""});var a=this.layout.options;this.transition({from:a.visibleStyle,to:a.hiddenStyle,isCleaning:!0,onTransitionEnd:{opacity:function(){this.isHidden&&this.css({display:"none"})}}})},h.prototype.destroy=function(){this.css({position:"",left:"",right:"",top:"",bottom:"",transition:"",transform:""})},h}var f=a.getComputedStyle,g=f?function(a){return f(a,null)}:function(a){return a.currentStyle};"function"==typeof define&&define.amd?define("outlayer/item",["eventEmitter/EventEmitter","get-size/get-size","get-style-property/get-style-property"],e):(a.Outlayer={},a.Outlayer.Item=e(a.EventEmitter,a.getSize,a.getStyleProperty))}(window),function(a){function b(a,b){for(var c in b)a[c]=b[c];return a}function c(a){return"[object Array]"===l.call(a)}function d(a){var b=[];if(c(a))b=a;else if(a&&"number"==typeof a.length)for(var d=0,e=a.length;e>d;d++)b.push(a[d]);else b.push(a);return b}function e(a,b){var c=n(b,a);-1!==c&&b.splice(c,1)}function f(a){return a.replace(/(.)([A-Z])/g,function(a,b,c){return b+"-"+c}).toLowerCase()}function g(c,g,l,n,o,p){function q(a,c){if("string"==typeof a&&(a=h.querySelector(a)),!a||!m(a))return void(i&&i.error("Bad "+this.constructor.namespace+" element: "+a));this.element=a,this.options=b({},this.constructor.defaults),this.option(c);var d=++r;this.element.outlayerGUID=d,s[d]=this,this._create(),this.options.isInitLayout&&this.layout()}var r=0,s={};return q.namespace="outlayer",q.Item=p,q.defaults={containerStyle:{position:"relative"},isInitLayout:!0,isOriginLeft:!0,isOriginTop:!0,isResizeBound:!0,isResizingContainer:!0,transitionDuration:"0.4s",hiddenStyle:{opacity:0,transform:"scale(0.001)"},visibleStyle:{opacity:1,transform:"scale(1)"}},b(q.prototype,l.prototype),q.prototype.option=function(a){b(this.options,a)},q.prototype._create=function(){this.reloadItems(),this.stamps=[],this.stamp(this.options.stamp),b(this.element.style,this.options.containerStyle),this.options.isResizeBound&&this.bindResize()},q.prototype.reloadItems=function(){this.items=this._itemize(this.element.children)},q.prototype._itemize=function(a){for(var b=this._filterFindItemElements(a),c=this.constructor.Item,d=[],e=0,f=b.length;f>e;e++){var g=b[e],h=new c(g,this);d.push(h)}return d},q.prototype._filterFindItemElements=function(a){a=d(a);for(var b=this.options.itemSelector,c=[],e=0,f=a.length;f>e;e++){var g=a[e];if(m(g))if(b){o(g,b)&&c.push(g);for(var h=g.querySelectorAll(b),i=0,j=h.length;j>i;i++)c.push(h[i])}else c.push(g)}return c},q.prototype.getItemElements=function(){for(var a=[],b=0,c=this.items.length;c>b;b++)a.push(this.items[b].element);return a},q.prototype.layout=function(){this._resetLayout(),this._manageStamps();var a=void 0!==this.options.isLayoutInstant?this.options.isLayoutInstant:!this._isLayoutInited;this.layoutItems(this.items,a),this._isLayoutInited=!0},q.prototype._init=q.prototype.layout,q.prototype._resetLayout=function(){this.getSize()},q.prototype.getSize=function(){this.size=n(this.element)},q.prototype._getMeasurement=function(a,b){var c,d=this.options[a];d?("string"==typeof d?c=this.element.querySelector(d):m(d)&&(c=d),this[a]=c?n(c)[b]:d):this[a]=0},q.prototype.layoutItems=function(a,b){a=this._getItemsForLayout(a),this._layoutItems(a,b),this._postLayout()},q.prototype._getItemsForLayout=function(a){for(var b=[],c=0,d=a.length;d>c;c++){var e=a[c];e.isIgnored||b.push(e)}return b},q.prototype._layoutItems=function(a,b){function c(){d.emitEvent("layoutComplete",[d,a])}var d=this;if(!a||!a.length)return void c();this._itemsOn(a,"layout",c);for(var e=[],f=0,g=a.length;g>f;f++){var h=a[f],i=this._getItemLayoutPosition(h);i.item=h,i.isInstant=b||h.isLayoutInstant,e.push(i)}this._processLayoutQueue(e)},q.prototype._getItemLayoutPosition=function(){return{x:0,y:0}},q.prototype._processLayoutQueue=function(a){for(var b=0,c=a.length;c>b;b++){var d=a[b];this._positionItem(d.item,d.x,d.y,d.isInstant)}},q.prototype._positionItem=function(a,b,c,d){d?a.goTo(b,c):a.moveTo(b,c)},q.prototype._postLayout=function(){this.resizeContainer()},q.prototype.resizeContainer=function(){if(this.options.isResizingContainer){var a=this._getContainerSize();a&&(this._setContainerMeasure(a.width,!0),this._setContainerMeasure(a.height,!1))}},q.prototype._getContainerSize=k,q.prototype._setContainerMeasure=function(a,b){if(void 0!==a){var c=this.size;c.isBorderBox&&(a+=b?c.paddingLeft+c.paddingRight+c.borderLeftWidth+c.borderRightWidth:c.paddingBottom+c.paddingTop+c.borderTopWidth+c.borderBottomWidth),a=Math.max(a,0),this.element.style[b?"width":"height"]=a+"px"}},q.prototype._itemsOn=function(a,b,c){function d(){return e++,e===f&&c.call(g),!0}for(var e=0,f=a.length,g=this,h=0,i=a.length;i>h;h++){var j=a[h];j.on(b,d)}},q.prototype.ignore=function(a){var b=this.getItem(a);b&&(b.isIgnored=!0)},q.prototype.unignore=function(a){var b=this.getItem(a);b&&delete b.isIgnored},q.prototype.stamp=function(a){if(a=this._find(a)){this.stamps=this.stamps.concat(a);for(var b=0,c=a.length;c>b;b++){var d=a[b];this.ignore(d)}}},q.prototype.unstamp=function(a){if(a=this._find(a))for(var b=0,c=a.length;c>b;b++){var d=a[b];e(d,this.stamps),this.unignore(d)}},q.prototype._find=function(a){return a?("string"==typeof a&&(a=this.element.querySelectorAll(a)),a=d(a)):void 0},q.prototype._manageStamps=function(){if(this.stamps&&this.stamps.length){this._getBoundingRect();for(var a=0,b=this.stamps.length;b>a;a++){var c=this.stamps[a];this._manageStamp(c)}}},q.prototype._getBoundingRect=function(){var a=this.element.getBoundingClientRect(),b=this.size;this._boundingRect={left:a.left+b.paddingLeft+b.borderLeftWidth,top:a.top+b.paddingTop+b.borderTopWidth,right:a.right-(b.paddingRight+b.borderRightWidth),bottom:a.bottom-(b.paddingBottom+b.borderBottomWidth)}},q.prototype._manageStamp=k,q.prototype._getElementOffset=function(a){var b=a.getBoundingClientRect(),c=this._boundingRect,d=n(a),e={left:b.left-c.left-d.marginLeft,top:b.top-c.top-d.marginTop,right:c.right-b.right-d.marginRight,bottom:c.bottom-b.bottom-d.marginBottom};return e},q.prototype.handleEvent=function(a){var b="on"+a.type;this[b]&&this[b](a)},q.prototype.bindResize=function(){this.isResizeBound||(c.bind(a,"resize",this),this.isResizeBound=!0)},q.prototype.unbindResize=function(){this.isResizeBound&&c.unbind(a,"resize",this),this.isResizeBound=!1},q.prototype.onresize=function(){function a(){b.resize(),delete b.resizeTimeout}this.resizeTimeout&&clearTimeout(this.resizeTimeout);var b=this;this.resizeTimeout=setTimeout(a,100)},q.prototype.resize=function(){this.isResizeBound&&this.needsResizeLayout()&&this.layout()},q.prototype.needsResizeLayout=function(){var a=n(this.element),b=this.size&&a;return b&&a.innerWidth!==this.size.innerWidth},q.prototype.addItems=function(a){var b=this._itemize(a);return b.length&&(this.items=this.items.concat(b)),b},q.prototype.appended=function(a){var b=this.addItems(a);b.length&&(this.layoutItems(b,!0),this.reveal(b))},q.prototype.prepended=function(a){var b=this._itemize(a);if(b.length){var c=this.items.slice(0);this.items=b.concat(c),this._resetLayout(),this._manageStamps(),this.layoutItems(b,!0),this.reveal(b),this.layoutItems(c)}},q.prototype.reveal=function(a){var b=a&&a.length;if(b)for(var c=0;b>c;c++){var d=a[c];d.reveal()}},q.prototype.hide=function(a){var b=a&&a.length;if(b)for(var c=0;b>c;c++){var d=a[c];d.hide()}},q.prototype.getItem=function(a){for(var b=0,c=this.items.length;c>b;b++){var d=this.items[b];if(d.element===a)return d}},q.prototype.getItems=function(a){if(a&&a.length){for(var b=[],c=0,d=a.length;d>c;c++){var e=a[c],f=this.getItem(e);f&&b.push(f)}return b}},q.prototype.remove=function(a){a=d(a);var b=this.getItems(a);if(b&&b.length){this._itemsOn(b,"remove",function(){this.emitEvent("removeComplete",[this,b])});for(var c=0,f=b.length;f>c;c++){var g=b[c];g.remove(),e(g,this.items)}}},q.prototype.destroy=function(){var a=this.element.style;a.height="",a.position="",a.width="";for(var b=0,c=this.items.length;c>b;b++){var d=this.items[b];d.destroy()}this.unbindResize(),delete this.element.outlayerGUID,j&&j.removeData(this.element,this.constructor.namespace)},q.data=function(a){var b=a&&a.outlayerGUID;return b&&s[b]},q.create=function(a,c){function d(){q.apply(this,arguments)}return Object.create?d.prototype=Object.create(q.prototype):b(d.prototype,q.prototype),d.prototype.constructor=d,d.defaults=b({},q.defaults),b(d.defaults,c),d.prototype.settings={},d.namespace=a,d.data=q.data,d.Item=function(){p.apply(this,arguments)},d.Item.prototype=new p,g(function(){for(var b=f(a),c=h.querySelectorAll(".js-"+b),e="data-"+b+"-options",g=0,k=c.length;k>g;g++){var l,m=c[g],n=m.getAttribute(e);try{l=n&&JSON.parse(n)}catch(o){i&&i.error("Error parsing "+e+" on "+m.nodeName.toLowerCase()+(m.id?"#"+m.id:"")+": "+o);continue}var p=new d(m,l);j&&j.data(m,a,p)}}),j&&j.bridget&&j.bridget(a,d),d},q.Item=p,q}var h=a.document,i=a.console,j=a.jQuery,k=function(){},l=Object.prototype.toString,m="object"==typeof HTMLElement?function(a){return a instanceof HTMLElement}:function(a){return a&&"object"==typeof a&&1===a.nodeType&&"string"==typeof a.nodeName},n=Array.prototype.indexOf?function(a,b){return a.indexOf(b)}:function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1};"function"==typeof define&&define.amd?define("outlayer/outlayer",["eventie/eventie","doc-ready/doc-ready","eventEmitter/EventEmitter","get-size/get-size","matches-selector/matches-selector","./item"],g):a.Outlayer=g(a.eventie,a.docReady,a.EventEmitter,a.getSize,a.matchesSelector,a.Outlayer.Item)}(window),function(a){function b(a,b){var d=a.create("masonry");return d.prototype._resetLayout=function(){this.getSize(),this._getMeasurement("columnWidth","outerWidth"),this._getMeasurement("gutter","outerWidth"),this.measureColumns();var a=this.cols;for(this.colYs=[];a--;)this.colYs.push(0);this.maxY=0},d.prototype.measureColumns=function(){if(this.getContainerWidth(),!this.columnWidth){var a=this.items[0],c=a&&a.element;this.columnWidth=c&&b(c).outerWidth||this.containerWidth}this.columnWidth+=this.gutter,this.cols=Math.floor((this.containerWidth+this.gutter)/this.columnWidth),this.cols=Math.max(this.cols,1)},d.prototype.getContainerWidth=function(){var a=this.options.isFitWidth?this.element.parentNode:this.element,c=b(a);this.containerWidth=c&&c.innerWidth},d.prototype._getItemLayoutPosition=function(a){a.getSize();var b=a.size.outerWidth%this.columnWidth,d=b&&1>b?"round":"ceil",e=Math[d](a.size.outerWidth/this.columnWidth);e=Math.min(e,this.cols);for(var f=this._getColGroup(e),g=Math.min.apply(Math,f),h=c(f,g),i={x:this.columnWidth*h,y:g},j=g+a.size.outerHeight,k=this.cols+1-f.length,l=0;k>l;l++)this.colYs[h+l]=j;return i},d.prototype._getColGroup=function(a){if(2>a)return this.colYs;for(var b=[],c=this.cols+1-a,d=0;c>d;d++){var e=this.colYs.slice(d,d+a);b[d]=Math.max.apply(Math,e)}return b},d.prototype._manageStamp=function(a){var c=b(a),d=this._getElementOffset(a),e=this.options.isOriginLeft?d.left:d.right,f=e+c.outerWidth,g=Math.floor(e/this.columnWidth);g=Math.max(0,g);var h=Math.floor(f/this.columnWidth);h-=f%this.columnWidth?0:1,h=Math.min(this.cols-1,h);for(var i=(this.options.isOriginTop?d.top:d.bottom)+c.outerHeight,j=g;h>=j;j++)this.colYs[j]=Math.max(i,this.colYs[j])},d.prototype._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var a={height:this.maxY};return this.options.isFitWidth&&(a.width=this._getContainerFitWidth()),a},d.prototype._getContainerFitWidth=function(){for(var a=0,b=this.cols;--b&&0===this.colYs[b];)a++;return(this.cols-a)*this.columnWidth-this.gutter},d.prototype.needsResizeLayout=function(){var a=this.containerWidth;return this.getContainerWidth(),a!==this.containerWidth},d}var c=Array.prototype.indexOf?function(a,b){return a.indexOf(b)}:function(a,b){for(var c=0,d=a.length;d>c;c++){var e=a[c];if(e===b)return c}return-1};"function"==typeof define&&define.amd?define(["outlayer/outlayer","get-size/get-size"],b):a.Masonry=b(a.Outlayer,a.getSize)}(window);
js/wp-security-admin-script.js CHANGED
@@ -18,6 +18,7 @@ jQuery(document).ready(function($){
18
  }
19
  aiowps_attach_media_uploader('aiowps_htaccess_file');
20
  aiowps_attach_media_uploader('aiowps_wp_config_file');
 
21
  aiowps_attach_media_uploader('aiowps_db_file'); //TODO - for future use when we implement DB restore
22
  //End of Media Uploader
23
 
18
  }
19
  aiowps_attach_media_uploader('aiowps_htaccess_file');
20
  aiowps_attach_media_uploader('aiowps_wp_config_file');
21
+ aiowps_attach_media_uploader('aiowps_import_settings_file');
22
  aiowps_attach_media_uploader('aiowps_db_file'); //TODO - for future use when we implement DB restore
23
  //End of Media Uploader
24
 
languages/aiowpsecurity-de_DE.mo ADDED
Binary file
languages/aiowpsecurity-de_DE.po ADDED
@@ -0,0 +1,4760 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: All In One WP Security vv3.7.2\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-04-16 20:01:12+0000\n"
7
+ "Last-Translator: manuel <m@movemeta.org>\n"
8
+ "Language-Team: \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: CSL v1.x\n"
14
+ "X-Poedit-Language: German\n"
15
+ "X-Poedit-Country: GERMANY\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #: admin/general/wp-security-list-table.php:178
24
+ #@ default
25
+ msgid "No items found."
26
+ msgstr ""
27
+
28
+ #: admin/general/wp-security-list-table.php:281
29
+ #@ default
30
+ msgid "Bulk Actions"
31
+ msgstr ""
32
+
33
+ #: admin/general/wp-security-list-table.php:291
34
+ #@ default
35
+ msgid "Apply"
36
+ msgstr ""
37
+
38
+ #: admin/general/wp-security-list-table.php:365
39
+ #@ default
40
+ msgid "Show all dates"
41
+ msgstr ""
42
+
43
+ #. translators: 1: month name, 2: 4-digit year
44
+ #: admin/general/wp-security-list-table.php:378
45
+ #, php-format
46
+ #@ default
47
+ msgid "%1$s %2$d"
48
+ msgstr ""
49
+
50
+ #: admin/general/wp-security-list-table.php:394
51
+ #@ default
52
+ msgid "List View"
53
+ msgstr ""
54
+
55
+ #: admin/general/wp-security-list-table.php:395
56
+ #@ default
57
+ msgid "Excerpt View"
58
+ msgstr ""
59
+
60
+ #: admin/general/wp-security-list-table.php:421
61
+ #, php-format
62
+ #@ default
63
+ msgid "%s pending"
64
+ msgstr ""
65
+
66
+ #: admin/general/wp-security-list-table.php:477
67
+ #: admin/general/wp-security-list-table.php:881
68
+ #, php-format
69
+ #@ default
70
+ msgid "1 item"
71
+ msgid_plural "%s items"
72
+ msgstr[0] ""
73
+ msgstr[1] ""
74
+
75
+ #: admin/general/wp-security-list-table.php:495
76
+ #@ default
77
+ msgid "Go to the first page"
78
+ msgstr ""
79
+
80
+ #: admin/general/wp-security-list-table.php:502
81
+ #@ default
82
+ msgid "Go to the previous page"
83
+ msgstr ""
84
+
85
+ #: admin/general/wp-security-list-table.php:511
86
+ #@ default
87
+ msgid "Current page"
88
+ msgstr ""
89
+
90
+ #: admin/general/wp-security-list-table.php:517
91
+ #, php-format
92
+ #@ default
93
+ msgctxt "paging"
94
+ msgid "%1$s of %2$s"
95
+ msgstr ""
96
+
97
+ #: admin/general/wp-security-list-table.php:521
98
+ #@ default
99
+ msgid "Go to the next page"
100
+ msgstr ""
101
+
102
+ #: admin/general/wp-security-list-table.php:528
103
+ #@ default
104
+ msgid "Go to the last page"
105
+ msgstr ""
106
+
107
+ #: admin/general/wp-security-list-table.php:653
108
+ #@ default
109
+ msgid "Select All"
110
+ msgstr ""
111
+
112
+ #: admin/wp-security-admin-init.php:157
113
+ #@ aiowpsecurity
114
+ msgid "WP Security"
115
+ msgstr ""
116
+
117
+ #: admin/wp-security-admin-init.php:158
118
+ #: admin/wp-security-dashboard-menu.php:23
119
+ #@ aiowpsecurity
120
+ msgid "Dashboard"
121
+ msgstr ""
122
+
123
+ #: admin/wp-security-admin-init.php:159
124
+ #@ aiowpsecurity
125
+ msgid "Settings"
126
+ msgstr ""
127
+
128
+ #: admin/wp-security-admin-init.php:160
129
+ #@ aiowpsecurity
130
+ msgid "User Accounts"
131
+ msgstr ""
132
+
133
+ #: admin/wp-security-admin-init.php:161
134
+ #@ aiowpsecurity
135
+ msgid "User Login"
136
+ msgstr ""
137
+
138
+ #: admin/wp-security-admin-init.php:162
139
+ #@ aiowpsecurity
140
+ msgid "User Registration"
141
+ msgstr ""
142
+
143
+ #: admin/wp-security-admin-init.php:163
144
+ #@ aiowpsecurity
145
+ msgid "Database Security"
146
+ msgstr ""
147
+
148
+ #: admin/wp-security-admin-init.php:167
149
+ #@ aiowpsecurity
150
+ msgid "Filesystem Security"
151
+ msgstr ""
152
+
153
+ #: admin/wp-security-admin-init.php:169
154
+ #@ aiowpsecurity
155
+ msgid "WHOIS Lookup"
156
+ msgstr ""
157
+
158
+ #: admin/wp-security-admin-init.php:173
159
+ #@ aiowpsecurity
160
+ msgid "Blacklist Manager"
161
+ msgstr ""
162
+
163
+ #: admin/wp-security-admin-init.php:178
164
+ #@ aiowpsecurity
165
+ msgid "Firewall"
166
+ msgstr ""
167
+
168
+ #: admin/wp-security-admin-init.php:183
169
+ #@ aiowpsecurity
170
+ msgid "Brute Force"
171
+ msgstr ""
172
+
173
+ #: admin/wp-security-admin-init.php:185
174
+ #@ aiowpsecurity
175
+ msgid "SPAM Prevention"
176
+ msgstr ""
177
+
178
+ #: admin/wp-security-admin-init.php:189
179
+ #@ aiowpsecurity
180
+ msgid "Scanner"
181
+ msgstr ""
182
+
183
+ #: admin/wp-security-admin-init.php:191
184
+ #@ aiowpsecurity
185
+ msgid "Maintenance"
186
+ msgstr ""
187
+
188
+ #: admin/wp-security-admin-menu.php:43
189
+ #@ aiowpsecurity
190
+ msgid "Settings successfully updated."
191
+ msgstr ""
192
+
193
+ #: admin/wp-security-admin-menu.php:50
194
+ #@ aiowpsecurity
195
+ msgid "The selected record(s) deleted successfully!"
196
+ msgstr ""
197
+
198
+ #: admin/wp-security-blacklist-menu.php:22
199
+ #@ aiowpsecurity
200
+ msgid "Ban Users"
201
+ msgstr ""
202
+
203
+ #: admin/wp-security-blacklist-menu.php:80
204
+ #@ aiowpsecurity
205
+ msgid "Nonce check failed for save blacklist settings!"
206
+ msgstr ""
207
+
208
+ #: admin/wp-security-blacklist-menu.php:132
209
+ #: admin/wp-security-brute-force-menu.php:608
210
+ #: admin/wp-security-list-comment-spammer-ip.php:147
211
+ #@ aiowpsecurity
212
+ msgid "The plugin was unable to write to the .htaccess file. Please edit file manually."
213
+ msgstr ""
214
+
215
+ #: admin/wp-security-blacklist-menu.php:139
216
+ #@ aiowpsecurity
217
+ msgid "Ban IPs or User Agents"
218
+ msgstr ""
219
+
220
+ #: admin/wp-security-blacklist-menu.php:142
221
+ #@ aiowpsecurity
222
+ 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."
223
+ msgstr ""
224
+
225
+ #: admin/wp-security-blacklist-menu.php:143
226
+ #@ aiowpsecurity
227
+ 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."
228
+ msgstr ""
229
+
230
+ #: admin/wp-security-blacklist-menu.php:144
231
+ #@ aiowpsecurity
232
+ msgid "The plugin achieves this by making appropriate modifications to your .htaccess file."
233
+ msgstr ""
234
+
235
+ #: admin/wp-security-blacklist-menu.php:145
236
+ #@ aiowpsecurity
237
+ 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."
238
+ msgstr ""
239
+
240
+ #: admin/wp-security-blacklist-menu.php:151
241
+ #@ aiowpsecurity
242
+ msgid "IP Hosts and User Agent Blacklist Settings"
243
+ msgstr ""
244
+
245
+ #: admin/wp-security-blacklist-menu.php:162
246
+ #@ aiowpsecurity
247
+ msgid "Enable IP or User Agent Blacklisting"
248
+ msgstr ""
249
+
250
+ #: admin/wp-security-blacklist-menu.php:165
251
+ #@ aiowpsecurity
252
+ 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"
253
+ msgstr ""
254
+
255
+ #: admin/wp-security-blacklist-menu.php:169
256
+ #@ aiowpsecurity
257
+ msgid "Enter IP Addresses:"
258
+ msgstr ""
259
+
260
+ #: admin/wp-security-blacklist-menu.php:173
261
+ #@ aiowpsecurity
262
+ msgid "Enter one or more IP addresses or IP ranges."
263
+ msgstr ""
264
+
265
+ #: admin/wp-security-blacklist-menu.php:174
266
+ #: admin/wp-security-blacklist-menu.php:194
267
+ #: admin/wp-security-brute-force-menu.php:343
268
+ #: admin/wp-security-brute-force-menu.php:377
269
+ #: admin/wp-security-brute-force-menu.php:400
270
+ #: admin/wp-security-brute-force-menu.php:421
271
+ #: admin/wp-security-brute-force-menu.php:664
272
+ #: admin/wp-security-filescan-menu.php:291
273
+ #: admin/wp-security-filescan-menu.php:308
274
+ #: admin/wp-security-firewall-menu.php:165
275
+ #: admin/wp-security-firewall-menu.php:195
276
+ #: admin/wp-security-firewall-menu.php:326
277
+ #: admin/wp-security-firewall-menu.php:356
278
+ #: admin/wp-security-firewall-menu.php:387
279
+ #: admin/wp-security-firewall-menu.php:415
280
+ #: admin/wp-security-firewall-menu.php:444
281
+ #: admin/wp-security-firewall-menu.php:532
282
+ #: admin/wp-security-firewall-menu.php:622
283
+ #: admin/wp-security-firewall-menu.php:824
284
+ #: admin/wp-security-firewall-menu.php:847
285
+ #: admin/wp-security-spam-menu.php:174
286
+ #: admin/wp-security-spam-menu.php:259
287
+ #@ aiowpsecurity
288
+ msgid "More Info"
289
+ msgstr ""
290
+
291
+ #: admin/wp-security-blacklist-menu.php:177
292
+ #: admin/wp-security-brute-force-menu.php:667
293
+ #@ aiowpsecurity
294
+ msgid "Each IP address must be on a new line."
295
+ msgstr ""
296
+
297
+ #: admin/wp-security-blacklist-menu.php:178
298
+ #: admin/wp-security-brute-force-menu.php:668
299
+ #@ aiowpsecurity
300
+ msgid "To specify an IP range use a wildcard \"*\" character. Acceptable ways to use wildcards is shown in the examples below:"
301
+ msgstr ""
302
+
303
+ #: admin/wp-security-blacklist-menu.php:179
304
+ #: admin/wp-security-brute-force-menu.php:669
305
+ #@ aiowpsecurity
306
+ msgid "Example 1: 195.47.89.*"
307
+ msgstr ""
308
+
309
+ #: admin/wp-security-blacklist-menu.php:180
310
+ #: admin/wp-security-brute-force-menu.php:670
311
+ #@ aiowpsecurity
312
+ msgid "Example 2: 195.47.*.*"
313
+ msgstr ""
314
+
315
+ #: admin/wp-security-blacklist-menu.php:181
316
+ #: admin/wp-security-brute-force-menu.php:671
317
+ #@ aiowpsecurity
318
+ msgid "Example 3: 195.*.*.*"
319
+ msgstr ""
320
+
321
+ #: admin/wp-security-blacklist-menu.php:188
322
+ #@ aiowpsecurity
323
+ msgid "Enter User Agents:"
324
+ msgstr ""
325
+
326
+ #: admin/wp-security-blacklist-menu.php:193
327
+ #@ aiowpsecurity
328
+ msgid "Enter one or more user agent strings."
329
+ msgstr ""
330
+
331
+ #: admin/wp-security-blacklist-menu.php:197
332
+ #@ aiowpsecurity
333
+ msgid "Each user agent string must be on a new line."
334
+ msgstr ""
335
+
336
+ #: admin/wp-security-blacklist-menu.php:198
337
+ #@ aiowpsecurity
338
+ msgid "Example 1 - A single user agent string to block:"
339
+ msgstr ""
340
+
341
+ #: admin/wp-security-blacklist-menu.php:200
342
+ #@ aiowpsecurity
343
+ msgid "Example 2 - A list of more than 1 user agent strings to block"
344
+ msgstr ""
345
+
346
+ #: admin/wp-security-blacklist-menu.php:208
347
+ #: admin/wp-security-brute-force-menu.php:188
348
+ #: admin/wp-security-brute-force-menu.php:544
349
+ #: admin/wp-security-brute-force-menu.php:678
350
+ #: admin/wp-security-database-menu.php:356
351
+ #: admin/wp-security-filescan-menu.php:329
352
+ #: admin/wp-security-filesystem-menu.php:231
353
+ #: admin/wp-security-firewall-menu.php:700
354
+ #: admin/wp-security-firewall-menu.php:866
355
+ #: admin/wp-security-settings-menu.php:493
356
+ #: admin/wp-security-spam-menu.php:189
357
+ #: admin/wp-security-user-login-menu.php:239
358
+ #: admin/wp-security-user-login-menu.php:407
359
+ #: admin/wp-security-user-registration-menu.php:146
360
+ #: admin/wp-security-user-registration-menu.php:221
361
+ #@ aiowpsecurity
362
+ msgid "Save Settings"
363
+ msgstr ""
364
+
365
+ #: admin/wp-security-brute-force-menu.php:25
366
+ #: admin/wp-security-dashboard-menu.php:344
367
+ #: admin/wp-security-dashboard-menu.php:353
368
+ #@ aiowpsecurity
369
+ msgid "Rename Login Page"
370
+ msgstr ""
371
+
372
+ #: admin/wp-security-brute-force-menu.php:26
373
+ #@ aiowpsecurity
374
+ msgid "Cookie Based Brute Force Prevention"
375
+ msgstr ""
376
+
377
+ #: admin/wp-security-brute-force-menu.php:27
378
+ #: classes/grade-system/wp-security-feature-item-manager.php:44
379
+ #@ aiowpsecurity
380
+ msgid "Login Captcha"
381
+ msgstr ""
382
+
383
+ #: admin/wp-security-brute-force-menu.php:28
384
+ #: admin/wp-security-brute-force-menu.php:615
385
+ #@ aiowpsecurity
386
+ msgid "Login Whitelist"
387
+ msgstr ""
388
+
389
+ #: admin/wp-security-brute-force-menu.php:99
390
+ #@ aiowpsecurity
391
+ msgid "Please enter a value for your login page slug."
392
+ msgstr ""
393
+
394
+ #: admin/wp-security-brute-force-menu.php:103
395
+ #@ aiowpsecurity
396
+ msgid "You cannot use the value \"wp-admin\" for your login page slug."
397
+ msgstr ""
398
+
399
+ #: admin/wp-security-brute-force-menu.php:108
400
+ #: admin/wp-security-database-menu.php:271
401
+ #: admin/wp-security-filescan-menu.php:169
402
+ #: admin/wp-security-firewall-menu.php:769
403
+ #: admin/wp-security-spam-menu.php:219
404
+ #: admin/wp-security-user-login-menu.php:123
405
+ #: admin/wp-security-user-login-menu.php:360
406
+ #@ aiowpsecurity
407
+ msgid "Attention!"
408
+ msgstr ""
409
+
410
+ #: admin/wp-security-brute-force-menu.php:127
411
+ #@ aiowpsecurity
412
+ msgid "Could not delete the Cookie-based directives from the .htaccess file. Please check the file permissions."
413
+ msgstr ""
414
+
415
+ #: admin/wp-security-brute-force-menu.php:137
416
+ #@ aiowpsecurity
417
+ msgid "An effective Brute Force prevention technique is to change the default WordPress login page URL."
418
+ msgstr ""
419
+
420
+ #: admin/wp-security-brute-force-menu.php:138
421
+ #@ aiowpsecurity
422
+ msgid "Normally if you wanted to login to WordPress you would type your site's home URL followed by wp-login.php."
423
+ msgstr ""
424
+
425
+ #: admin/wp-security-brute-force-menu.php:139
426
+ #@ aiowpsecurity
427
+ 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."
428
+ msgstr ""
429
+
430
+ #: admin/wp-security-brute-force-menu.php:140
431
+ #@ aiowpsecurity
432
+ 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."
433
+ msgstr ""
434
+
435
+ #: admin/wp-security-brute-force-menu.php:142
436
+ #@ aiowpsecurity
437
+ msgid "You may also be interested in the following alternative brute force prevention features:"
438
+ msgstr ""
439
+
440
+ #: admin/wp-security-brute-force-menu.php:153
441
+ #@ aiowpsecurity
442
+ msgid "Your WordPress login page URL has been renamed."
443
+ msgstr ""
444
+
445
+ #: admin/wp-security-brute-force-menu.php:154
446
+ #@ aiowpsecurity
447
+ msgid "Your current login URL is:"
448
+ msgstr ""
449
+
450
+ #: admin/wp-security-brute-force-menu.php:156
451
+ #@ aiowpsecurity
452
+ 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."
453
+ msgstr ""
454
+
455
+ #: admin/wp-security-brute-force-menu.php:163
456
+ #@ aiowpsecurity
457
+ msgid "Rename Login Page Settings"
458
+ msgstr ""
459
+
460
+ #: admin/wp-security-brute-force-menu.php:175
461
+ #@ aiowpsecurity
462
+ msgid "Enable Rename Login Page Feature"
463
+ msgstr ""
464
+
465
+ #: admin/wp-security-brute-force-menu.php:178
466
+ #@ aiowpsecurity
467
+ msgid "Check this if you want to enable the rename login page feature"
468
+ msgstr ""
469
+
470
+ #: admin/wp-security-brute-force-menu.php:182
471
+ #@ aiowpsecurity
472
+ msgid "Login Page URL"
473
+ msgstr ""
474
+
475
+ #: admin/wp-security-brute-force-menu.php:184
476
+ #@ aiowpsecurity
477
+ 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."
478
+ msgstr ""
479
+
480
+ #: admin/wp-security-brute-force-menu.php:217
481
+ #@ aiowpsecurity
482
+ msgid "Settings have not been saved - your secret word must consist only of alphanumeric characters, ie, letters and/or numbers only!"
483
+ msgstr ""
484
+
485
+ #: admin/wp-security-brute-force-menu.php:236
486
+ #@ aiowpsecurity
487
+ msgid "You have successfully enabled the cookie based brute force prevention feature"
488
+ msgstr ""
489
+
490
+ #: admin/wp-security-brute-force-menu.php:237
491
+ #@ aiowpsecurity
492
+ msgid "From now on you will need to log into your WP Admin using the following URL:"
493
+ msgstr ""
494
+
495
+ #: admin/wp-security-brute-force-menu.php:239
496
+ #@ aiowpsecurity
497
+ msgid "It is important that you save this URL value somewhere in case you forget it, OR,"
498
+ msgstr ""
499
+
500
+ #: admin/wp-security-brute-force-menu.php:240
501
+ #, php-format
502
+ #@ aiowpsecurity
503
+ msgid "simply remember to add a \"?%s=1\" to your current site URL address."
504
+ msgstr ""
505
+
506
+ #: admin/wp-security-brute-force-menu.php:246
507
+ #@ aiowpsecurity
508
+ msgid "You have successfully saved cookie based brute force prevention feature settings."
509
+ msgstr ""
510
+
511
+ #: admin/wp-security-brute-force-menu.php:281
512
+ #: admin/wp-security-filesystem-menu.php:275
513
+ #: admin/wp-security-firewall-menu.php:119
514
+ #: admin/wp-security-firewall-menu.php:287
515
+ #: admin/wp-security-firewall-menu.php:498
516
+ #: admin/wp-security-firewall-menu.php:667
517
+ #: admin/wp-security-spam-menu.php:106
518
+ #@ aiowpsecurity
519
+ msgid "Could not write to the .htaccess file. Please check the file permissions."
520
+ msgstr ""
521
+
522
+ #: admin/wp-security-brute-force-menu.php:291
523
+ #@ aiowpsecurity
524
+ msgid "Brute Force Prevention Firewall Settings"
525
+ msgstr ""
526
+
527
+ #: admin/wp-security-brute-force-menu.php:296
528
+ #@ aiowpsecurity
529
+ msgid "A Brute Force Attack is when a hacker tries many combinations of usernames and passwords until they succeed in guessing the right combination."
530
+ msgstr ""
531
+
532
+ #: admin/wp-security-brute-force-menu.php:297
533
+ #@ aiowpsecurity
534
+ 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."
535
+ msgstr ""
536
+
537
+ #: admin/wp-security-brute-force-menu.php:298
538
+ #@ aiowpsecurity
539
+ 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."
540
+ msgstr ""
541
+
542
+ #: admin/wp-security-brute-force-menu.php:305
543
+ #, php-format
544
+ #@ aiowpsecurity
545
+ 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>."
546
+ msgstr ""
547
+
548
+ #: admin/wp-security-brute-force-menu.php:306
549
+ #@ aiowpsecurity
550
+ 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."
551
+ msgstr ""
552
+
553
+ #: admin/wp-security-brute-force-menu.php:307
554
+ #, php-format
555
+ #@ aiowpsecurity
556
+ msgid "To learn more about how to use this feature please watch the following %s."
557
+ msgstr ""
558
+
559
+ #: admin/wp-security-brute-force-menu.php:320
560
+ #@ aiowpsecurity
561
+ 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."
562
+ msgstr ""
563
+
564
+ #: admin/wp-security-brute-force-menu.php:328
565
+ #@ aiowpsecurity
566
+ msgid "Cookie Based Brute Force Login Prevention"
567
+ msgstr ""
568
+
569
+ #: admin/wp-security-brute-force-menu.php:339
570
+ #: classes/grade-system/wp-security-feature-item-manager.php:87
571
+ #@ aiowpsecurity
572
+ msgid "Enable Brute Force Attack Prevention"
573
+ msgstr ""
574
+
575
+ #: admin/wp-security-brute-force-menu.php:342
576
+ #@ aiowpsecurity
577
+ msgid "Check this if you want to protect your login page from Brute Force Attack."
578
+ msgstr ""
579
+
580
+ #: admin/wp-security-brute-force-menu.php:347
581
+ #@ aiowpsecurity
582
+ msgid "This feature will deny access to your WordPress login page for all people except those who have a special cookie in their browser."
583
+ msgstr ""
584
+
585
+ #: admin/wp-security-brute-force-menu.php:349
586
+ #@ aiowpsecurity
587
+ msgid "To use this feature do the following:"
588
+ msgstr ""
589
+
590
+ #: admin/wp-security-brute-force-menu.php:351
591
+ #@ aiowpsecurity
592
+ msgid "1) Enable the checkbox."
593
+ msgstr ""
594
+
595
+ #: admin/wp-security-brute-force-menu.php:353
596
+ #@ aiowpsecurity
597
+ 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)."
598
+ msgstr ""
599
+
600
+ #: admin/wp-security-brute-force-menu.php:355
601
+ #@ aiowpsecurity
602
+ 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."
603
+ msgstr ""
604
+
605
+ #: admin/wp-security-brute-force-menu.php:357
606
+ #@ aiowpsecurity
607
+ msgid "Any person trying to access your login page who does not have the special cookie in their browser will be automatically blocked."
608
+ msgstr ""
609
+
610
+ #: admin/wp-security-brute-force-menu.php:364
611
+ #@ aiowpsecurity
612
+ msgid "Secret Word"
613
+ msgstr ""
614
+
615
+ #: admin/wp-security-brute-force-menu.php:366
616
+ #@ aiowpsecurity
617
+ 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."
618
+ msgstr ""
619
+
620
+ #: admin/wp-security-brute-force-menu.php:370
621
+ #@ aiowpsecurity
622
+ msgid "Re-direct URL"
623
+ msgstr ""
624
+
625
+ #: admin/wp-security-brute-force-menu.php:374
626
+ #@ aiowpsecurity
627
+ msgid "Specify a URL to redirect a hacker to when they try to access your WordPress login page."
628
+ msgstr ""
629
+
630
+ #: admin/wp-security-brute-force-menu.php:381
631
+ #@ aiowpsecurity
632
+ 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."
633
+ msgstr ""
634
+
635
+ #: admin/wp-security-brute-force-menu.php:383
636
+ #@ aiowpsecurity
637
+ msgid "This field will default to: http://127.0.0.1 if you do not enter a value."
638
+ msgstr ""
639
+
640
+ #: admin/wp-security-brute-force-menu.php:385
641
+ #@ aiowpsecurity
642
+ msgid "Useful Tip:"
643
+ msgstr ""
644
+
645
+ #: admin/wp-security-brute-force-menu.php:387
646
+ #@ aiowpsecurity
647
+ 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."
648
+ msgstr ""
649
+
650
+ #: admin/wp-security-brute-force-menu.php:389
651
+ #@ aiowpsecurity
652
+ 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."
653
+ msgstr ""
654
+
655
+ #: admin/wp-security-brute-force-menu.php:396
656
+ #@ aiowpsecurity
657
+ msgid "My Site Has Posts Or Pages Which Are Password Protected"
658
+ msgstr ""
659
+
660
+ #: admin/wp-security-brute-force-menu.php:399
661
+ #@ aiowpsecurity
662
+ msgid "Check this if you are using the native WordPress password protection feature for some or all of your blog posts or pages."
663
+ msgstr ""
664
+
665
+ #: admin/wp-security-brute-force-menu.php:404
666
+ #@ aiowpsecurity
667
+ 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."
668
+ msgstr ""
669
+
670
+ #: admin/wp-security-brute-force-menu.php:406
671
+ #@ aiowpsecurity
672
+ 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."
673
+ msgstr ""
674
+
675
+ #: admin/wp-security-brute-force-menu.php:408
676
+ #@ aiowpsecurity
677
+ msgid "Helpful Tip:"
678
+ msgstr ""
679
+
680
+ #: admin/wp-security-brute-force-menu.php:410
681
+ #@ aiowpsecurity
682
+ 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."
683
+ msgstr ""
684
+
685
+ #: admin/wp-security-brute-force-menu.php:417
686
+ #@ aiowpsecurity
687
+ msgid "My Site Has a Theme or Plugins Which Use AJAX"
688
+ msgstr ""
689
+
690
+ #: admin/wp-security-brute-force-menu.php:420
691
+ #@ aiowpsecurity
692
+ msgid "Check this if your site uses AJAX functionality."
693
+ msgstr ""
694
+
695
+ #: admin/wp-security-brute-force-menu.php:425
696
+ #@ aiowpsecurity
697
+ 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."
698
+ msgstr ""
699
+
700
+ #: admin/wp-security-brute-force-menu.php:427
701
+ #@ aiowpsecurity
702
+ 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."
703
+ msgstr ""
704
+
705
+ #: admin/wp-security-brute-force-menu.php:442
706
+ #@ aiowpsecurity
707
+ msgid "The cookie test was successful. You can now enable this feature."
708
+ msgstr ""
709
+
710
+ #: admin/wp-security-brute-force-menu.php:445
711
+ #@ aiowpsecurity
712
+ msgid "Save Feature Settings"
713
+ msgstr ""
714
+
715
+ #: admin/wp-security-brute-force-menu.php:452
716
+ #@ aiowpsecurity
717
+ msgid "The cookie test failed on this server. So this feature cannot be used on this site."
718
+ msgstr ""
719
+
720
+ #: admin/wp-security-brute-force-menu.php:457
721
+ #@ aiowpsecurity
722
+ 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."
723
+ msgstr ""
724
+
725
+ #: admin/wp-security-brute-force-menu.php:459
726
+ #@ aiowpsecurity
727
+ msgid "Perform Cookie Test"
728
+ msgstr ""
729
+
730
+ #: admin/wp-security-brute-force-menu.php:498
731
+ #@ aiowpsecurity
732
+ msgid "This feature allows you to add a captcha form on the WordPress login page."
733
+ msgstr ""
734
+
735
+ #: admin/wp-security-brute-force-menu.php:499
736
+ #@ aiowpsecurity
737
+ 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."
738
+ msgstr ""
739
+
740
+ #: admin/wp-security-brute-force-menu.php:500
741
+ #@ aiowpsecurity
742
+ msgid "Therefore, adding a captcha form on the login page is another effective yet simple \"Brute Force\" prevention technique."
743
+ msgstr ""
744
+
745
+ #: admin/wp-security-brute-force-menu.php:506
746
+ #@ aiowpsecurity
747
+ msgid "Login Form Captcha Settings"
748
+ msgstr ""
749
+
750
+ #: admin/wp-security-brute-force-menu.php:517
751
+ #@ aiowpsecurity
752
+ msgid "Enable Captcha On Login Page"
753
+ msgstr ""
754
+
755
+ #: admin/wp-security-brute-force-menu.php:520
756
+ #@ aiowpsecurity
757
+ msgid "Check this if you want to insert a captcha form on the login page"
758
+ msgstr ""
759
+
760
+ #: admin/wp-security-brute-force-menu.php:526
761
+ #@ aiowpsecurity
762
+ msgid "Lost Password Form Captcha Settings"
763
+ msgstr ""
764
+
765
+ #: admin/wp-security-brute-force-menu.php:536
766
+ #@ aiowpsecurity
767
+ msgid "Enable Captcha On Lost Password Page"
768
+ msgstr ""
769
+
770
+ #: admin/wp-security-brute-force-menu.php:539
771
+ #@ aiowpsecurity
772
+ msgid "Check this if you want to insert a captcha form on the lost password page"
773
+ msgstr ""
774
+
775
+ #: admin/wp-security-brute-force-menu.php:561
776
+ #@ aiowpsecurity
777
+ msgid "Nonce check failed for save whitelist settings!"
778
+ msgstr ""
779
+
780
+ #: admin/wp-security-brute-force-menu.php:618
781
+ #@ aiowpsecurity
782
+ 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."
783
+ msgstr ""
784
+
785
+ #: admin/wp-security-brute-force-menu.php:619
786
+ #@ aiowpsecurity
787
+ msgid "This feature will deny login access for all IP addresses which are not in your whitelist as configured in the settings below."
788
+ msgstr ""
789
+
790
+ #: admin/wp-security-brute-force-menu.php:620
791
+ #@ aiowpsecurity
792
+ msgid "The plugin achieves this by writing the appropriate directives to your .htaccess file."
793
+ msgstr ""
794
+
795
+ #: admin/wp-security-brute-force-menu.php:621
796
+ #@ aiowpsecurity
797
+ 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."
798
+ msgstr ""
799
+
800
+ #: admin/wp-security-brute-force-menu.php:628
801
+ #, php-format
802
+ #@ aiowpsecurity
803
+ msgid "Attention: If in addition to enabling the white list feature, you also have the %s feature enabled, <strong>you will still need to use your secret word in the URL when trying to access your WordPress login page</strong>."
804
+ msgstr ""
805
+
806
+ #: admin/wp-security-brute-force-menu.php:629
807
+ #@ aiowpsecurity
808
+ msgid "These features are NOT functionally related. Having both of them enabled on your site means you are creating 2 layers of security."
809
+ msgstr ""
810
+
811
+ #: admin/wp-security-brute-force-menu.php:634
812
+ #@ aiowpsecurity
813
+ msgid "Login IP Whitelist Settings"
814
+ msgstr ""
815
+
816
+ #: admin/wp-security-brute-force-menu.php:645
817
+ #@ aiowpsecurity
818
+ msgid "Enable IP Whitelisting"
819
+ msgstr ""
820
+
821
+ #: admin/wp-security-brute-force-menu.php:648
822
+ #@ aiowpsecurity
823
+ msgid "Check this if you want to enable the whitelisting of selected IP addresses specified in the settings below"
824
+ msgstr ""
825
+
826
+ #: admin/wp-security-brute-force-menu.php:652
827
+ #@ aiowpsecurity
828
+ msgid "Your Current IP Address"
829
+ msgstr ""
830
+
831
+ #: admin/wp-security-brute-force-menu.php:655
832
+ #@ aiowpsecurity
833
+ msgid "You can copy and paste this address in the text box below if you want to include it in your login whitelist."
834
+ msgstr ""
835
+
836
+ #: admin/wp-security-brute-force-menu.php:659
837
+ #@ aiowpsecurity
838
+ msgid "Enter Whitelisted IP Addresses:"
839
+ msgstr ""
840
+
841
+ #: admin/wp-security-brute-force-menu.php:663
842
+ #@ aiowpsecurity
843
+ 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."
844
+ msgstr ""
845
+
846
+ #: admin/wp-security-dashboard-menu.php:24
847
+ #@ aiowpsecurity
848
+ msgid "System Info"
849
+ msgstr ""
850
+
851
+ #: admin/wp-security-dashboard-menu.php:25
852
+ #: admin/wp-security-dashboard-menu.php:436
853
+ #@ aiowpsecurity
854
+ msgid "Locked IP Addresses"
855
+ msgstr ""
856
+
857
+ #: admin/wp-security-dashboard-menu.php:75
858
+ #@ aiowpsecurity
859
+ msgid "For information, updates and documentation, please visit the"
860
+ msgstr ""
861
+
862
+ #: admin/wp-security-dashboard-menu.php:75
863
+ #@ aiowpsecurity
864
+ msgid "AIO WP Security & Firewall Plugin"
865
+ msgstr ""
866
+
867
+ #: admin/wp-security-dashboard-menu.php:75
868
+ #@ aiowpsecurity
869
+ msgid "Page"
870
+ msgstr ""
871
+
872
+ #: admin/wp-security-dashboard-menu.php:76
873
+ #@ aiowpsecurity
874
+ msgid "Follow us"
875
+ msgstr ""
876
+
877
+ #: admin/wp-security-dashboard-menu.php:76
878
+ #@ aiowpsecurity
879
+ msgid "Twitter, Google+ or via Email to stay up to date about the new security features of this plugin."
880
+ msgstr ""
881
+
882
+ #: admin/wp-security-dashboard-menu.php:90
883
+ #@ aiowpsecurity
884
+ msgid "Security Strength Meter"
885
+ msgstr ""
886
+
887
+ #: admin/wp-security-dashboard-menu.php:119
888
+ #@ aiowpsecurity
889
+ msgid "Total Achievable Points: "
890
+ msgstr ""
891
+
892
+ #: admin/wp-security-dashboard-menu.php:121
893
+ #@ aiowpsecurity
894
+ msgid "Current Score of Your Site: "
895
+ msgstr ""
896
+
897
+ #: admin/wp-security-dashboard-menu.php:131
898
+ #@ aiowpsecurity
899
+ msgid "Security Points Breakdown"
900
+ msgstr ""
901
+
902
+ #: admin/wp-security-dashboard-menu.php:172
903
+ #@ aiowpsecurity
904
+ msgid "Critical Feature Status"
905
+ msgstr ""
906
+
907
+ #: admin/wp-security-dashboard-menu.php:176
908
+ #@ aiowpsecurity
909
+ 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"
910
+ msgstr ""
911
+
912
+ #: admin/wp-security-dashboard-menu.php:180
913
+ #@ aiowpsecurity
914
+ msgid "Admin Username"
915
+ msgstr ""
916
+
917
+ #: admin/wp-security-dashboard-menu.php:195
918
+ #: admin/wp-security-user-login-menu.php:25
919
+ #: classes/grade-system/wp-security-feature-item-manager.php:42
920
+ #@ aiowpsecurity
921
+ msgid "Login Lockdown"
922
+ msgstr ""
923
+
924
+ #: admin/wp-security-dashboard-menu.php:210
925
+ #@ aiowpsecurity
926
+ msgid "File Permission"
927
+ msgstr ""
928
+
929
+ #: admin/wp-security-dashboard-menu.php:225
930
+ #@ aiowpsecurity
931
+ msgid "Basic Firewall"
932
+ msgstr ""
933
+
934
+ #: admin/wp-security-dashboard-menu.php:243
935
+ #@ aiowpsecurity
936
+ msgid "Last 5 Logins"
937
+ msgstr ""
938
+
939
+ #: admin/wp-security-dashboard-menu.php:257
940
+ #@ aiowpsecurity
941
+ msgid "No data found!"
942
+ msgstr ""
943
+
944
+ #: admin/wp-security-dashboard-menu.php:261
945
+ #@ aiowpsecurity
946
+ msgid "Last 5 logins summary:"
947
+ msgstr ""
948
+
949
+ #: admin/wp-security-dashboard-menu.php:265
950
+ #@ aiowpsecurity
951
+ msgid "User"
952
+ msgstr ""
953
+
954
+ #: admin/wp-security-dashboard-menu.php:266
955
+ #@ aiowpsecurity
956
+ msgid "Date"
957
+ msgstr ""
958
+
959
+ #: admin/wp-security-dashboard-menu.php:267
960
+ #@ aiowpsecurity
961
+ msgid "IP"
962
+ msgstr ""
963
+
964
+ #: admin/wp-security-dashboard-menu.php:288
965
+ #@ aiowpsecurity
966
+ msgid "Maintenance Mode Status"
967
+ msgstr ""
968
+
969
+ #: admin/wp-security-dashboard-menu.php:292
970
+ #@ aiowpsecurity
971
+ msgid "Maintenance mode is currently enabled. Remember to turn it off when you are done"
972
+ msgstr ""
973
+
974
+ #: admin/wp-security-dashboard-menu.php:295
975
+ #@ aiowpsecurity
976
+ msgid "Maintenance mode is currently off."
977
+ msgstr ""
978
+
979
+ #: admin/wp-security-dashboard-menu.php:299
980
+ #@ aiowpsecurity
981
+ msgid "Maintenance Mode"
982
+ msgstr ""
983
+
984
+ #: admin/wp-security-dashboard-menu.php:321
985
+ #@ aiowpsecurity
986
+ msgid "Cookie Based Brute Prevention"
987
+ msgstr ""
988
+
989
+ #: admin/wp-security-dashboard-menu.php:324
990
+ #@ aiowpsecurity
991
+ msgid "Cookie-Based Brute Force"
992
+ msgstr ""
993
+
994
+ #: admin/wp-security-dashboard-menu.php:328
995
+ #: admin/wp-security-dashboard-menu.php:356
996
+ #, php-format
997
+ #@ aiowpsecurity
998
+ msgid "The %s feature is currently active."
999
+ msgstr ""
1000
+
1001
+ #: admin/wp-security-dashboard-menu.php:329
1002
+ #: admin/wp-security-dashboard-menu.php:357
1003
+ #@ aiowpsecurity
1004
+ msgid "Your new WordPress login URL is now:"
1005
+ msgstr ""
1006
+
1007
+ #: admin/wp-security-dashboard-menu.php:389
1008
+ #: admin/wp-security-user-login-menu.php:29
1009
+ #@ aiowpsecurity
1010
+ msgid "Logged In Users"
1011
+ msgstr ""
1012
+
1013
+ #: admin/wp-security-dashboard-menu.php:399
1014
+ #@ aiowpsecurity
1015
+ msgid "Number of users currently logged in site-wide is:"
1016
+ msgstr ""
1017
+
1018
+ #: admin/wp-security-dashboard-menu.php:400
1019
+ #: admin/wp-security-dashboard-menu.php:422
1020
+ #: admin/wp-security-dashboard-menu.php:450
1021
+ #, php-format
1022
+ #@ aiowpsecurity
1023
+ msgid "Go to the %s menu to see more details"
1024
+ msgstr ""
1025
+
1026
+ #: admin/wp-security-dashboard-menu.php:405
1027
+ #@ aiowpsecurity
1028
+ msgid "There are no other site-wide users currently logged in."
1029
+ msgstr ""
1030
+
1031
+ #: admin/wp-security-dashboard-menu.php:421
1032
+ #@ aiowpsecurity
1033
+ msgid "Number of users currently logged into your site (including you) is:"
1034
+ msgstr ""
1035
+
1036
+ #: admin/wp-security-dashboard-menu.php:427
1037
+ #@ aiowpsecurity
1038
+ msgid "There are no other users currently logged in."
1039
+ msgstr ""
1040
+
1041
+ #: admin/wp-security-dashboard-menu.php:444
1042
+ #@ aiowpsecurity
1043
+ msgid "There are no IP addresses currently locked out."
1044
+ msgstr ""
1045
+
1046
+ #: admin/wp-security-dashboard-menu.php:449
1047
+ #@ aiowpsecurity
1048
+ msgid "Number of temporarily locked out IP addresses: "
1049
+ msgstr ""
1050
+
1051
+ #: admin/wp-security-dashboard-menu.php:462
1052
+ #@ aiowpsecurity
1053
+ msgid "Spread the Word"
1054
+ msgstr ""
1055
+
1056
+ #: admin/wp-security-dashboard-menu.php:465
1057
+ #@ aiowpsecurity
1058
+ msgid "We are working hard to make your WordPress site more secure. Please support us, here is how:"
1059
+ msgstr ""
1060
+
1061
+ #: admin/wp-security-dashboard-menu.php:489
1062
+ #@ aiowpsecurity
1063
+ msgid "Site Info"
1064
+ msgstr ""
1065
+
1066
+ #: admin/wp-security-dashboard-menu.php:491
1067
+ #@ aiowpsecurity
1068
+ msgid "Plugin Version"
1069
+ msgstr ""
1070
+
1071
+ #: admin/wp-security-dashboard-menu.php:492
1072
+ #@ aiowpsecurity
1073
+ msgid "WP Version"
1074
+ msgstr ""
1075
+
1076
+ #: admin/wp-security-dashboard-menu.php:494
1077
+ #: admin/wp-security-dashboard-menu.php:496
1078
+ #: admin/wp-security-dashboard-menu.php:592
1079
+ #@ aiowpsecurity
1080
+ msgid "Version"
1081
+ msgstr ""
1082
+
1083
+ #: admin/wp-security-dashboard-menu.php:495
1084
+ #@ aiowpsecurity
1085
+ msgid "Table Prefix"
1086
+ msgstr ""
1087
+
1088
+ #: admin/wp-security-dashboard-menu.php:497
1089
+ #@ aiowpsecurity
1090
+ msgid "Session Save Path"
1091
+ msgstr ""
1092
+
1093
+ #: admin/wp-security-dashboard-menu.php:499
1094
+ #@ aiowpsecurity
1095
+ msgid "Server Name"
1096
+ msgstr ""
1097
+
1098
+ #: admin/wp-security-dashboard-menu.php:500
1099
+ #@ aiowpsecurity
1100
+ msgid "Cookie Domain"
1101
+ msgstr ""
1102
+
1103
+ #: admin/wp-security-dashboard-menu.php:501
1104
+ #@ aiowpsecurity
1105
+ msgid "Library Present"
1106
+ msgstr ""
1107
+
1108
+ #: admin/wp-security-dashboard-menu.php:502
1109
+ #@ aiowpsecurity
1110
+ msgid "Debug File Write Permissions"
1111
+ msgstr ""
1112
+
1113
+ #: admin/wp-security-dashboard-menu.php:506
1114
+ #@ aiowpsecurity
1115
+ msgid "PHP Info"
1116
+ msgstr ""
1117
+
1118
+ #: admin/wp-security-dashboard-menu.php:508
1119
+ #@ aiowpsecurity
1120
+ msgid "PHP Version"
1121
+ msgstr ""
1122
+
1123
+ #: admin/wp-security-dashboard-menu.php:509
1124
+ #@ aiowpsecurity
1125
+ msgid "PHP Memory Usage"
1126
+ msgstr ""
1127
+
1128
+ #: admin/wp-security-dashboard-menu.php:510
1129
+ #@ aiowpsecurity
1130
+ msgid " MB"
1131
+ msgstr ""
1132
+
1133
+ #: admin/wp-security-dashboard-menu.php:516
1134
+ #: admin/wp-security-dashboard-menu.php:524
1135
+ #: admin/wp-security-dashboard-menu.php:532
1136
+ #: admin/wp-security-dashboard-menu.php:574
1137
+ #@ aiowpsecurity
1138
+ msgid "N/A"
1139
+ msgstr ""
1140
+
1141
+ #: admin/wp-security-dashboard-menu.php:519
1142
+ #@ aiowpsecurity
1143
+ msgid "PHP Memory Limit"
1144
+ msgstr ""
1145
+
1146
+ #: admin/wp-security-dashboard-menu.php:527
1147
+ #@ aiowpsecurity
1148
+ msgid "PHP Max Upload Size"
1149
+ msgstr ""
1150
+
1151
+ #: admin/wp-security-dashboard-menu.php:535
1152
+ #@ aiowpsecurity
1153
+ msgid "PHP Max Post Size"
1154
+ msgstr ""
1155
+
1156
+ #: admin/wp-security-dashboard-menu.php:538
1157
+ #: admin/wp-security-dashboard-menu.php:546
1158
+ #: admin/wp-security-dashboard-menu.php:555
1159
+ #: admin/wp-security-dashboard-menu.php:563
1160
+ #@ aiowpsecurity
1161
+ msgid "On"
1162
+ msgstr ""
1163
+
1164
+ #: admin/wp-security-dashboard-menu.php:540
1165
+ #: admin/wp-security-dashboard-menu.php:548
1166
+ #: admin/wp-security-dashboard-menu.php:557
1167
+ #: admin/wp-security-dashboard-menu.php:565
1168
+ #@ aiowpsecurity
1169
+ msgid "Off"
1170
+ msgstr ""
1171
+
1172
+ #: admin/wp-security-dashboard-menu.php:543
1173
+ #@ aiowpsecurity
1174
+ msgid "PHP Safe Mode"
1175
+ msgstr ""
1176
+
1177
+ #: admin/wp-security-dashboard-menu.php:551
1178
+ #@ aiowpsecurity
1179
+ msgid "PHP Allow URL fopen"
1180
+ msgstr ""
1181
+
1182
+ #: admin/wp-security-dashboard-menu.php:560
1183
+ #@ default
1184
+ msgid "PHP Allow URL Include"
1185
+ msgstr ""
1186
+
1187
+ #: admin/wp-security-dashboard-menu.php:568
1188
+ #@ aiowpsecurity
1189
+ msgid "PHP Display Errors"
1190
+ msgstr ""
1191
+
1192
+ #: admin/wp-security-dashboard-menu.php:577
1193
+ #@ aiowpsecurity
1194
+ msgid "PHP Max Script Execution Time"
1195
+ msgstr ""
1196
+
1197
+ #: admin/wp-security-dashboard-menu.php:577
1198
+ #@ default
1199
+ msgid "Seconds"
1200
+ msgstr ""
1201
+
1202
+ #: admin/wp-security-dashboard-menu.php:581
1203
+ #@ aiowpsecurity
1204
+ msgid "Active Plugins"
1205
+ msgstr ""
1206
+
1207
+ #: admin/wp-security-dashboard-menu.php:591
1208
+ #: admin/wp-security-filesystem-menu.php:130
1209
+ #: admin/wp-security-filesystem-menu.php:149
1210
+ #@ aiowpsecurity
1211
+ msgid "Name"
1212
+ msgstr ""
1213
+
1214
+ #: admin/wp-security-dashboard-menu.php:593
1215
+ #@ aiowpsecurity
1216
+ msgid "Plugin URL"
1217
+ msgstr ""
1218
+
1219
+ #: admin/wp-security-dashboard-menu.php:629
1220
+ #@ aiowpsecurity
1221
+ msgid "Currently Locked Out IP Addresses and Ranges"
1222
+ msgstr ""
1223
+
1224
+ #: admin/wp-security-database-menu.php:26
1225
+ #: admin/wp-security-database-menu.php:31
1226
+ #: classes/grade-system/wp-security-feature-item-manager.php:62
1227
+ #@ aiowpsecurity
1228
+ msgid "DB Backup"
1229
+ msgstr ""
1230
+
1231
+ #: admin/wp-security-database-menu.php:30
1232
+ #: classes/grade-system/wp-security-feature-item-manager.php:60
1233
+ #@ aiowpsecurity
1234
+ msgid "DB Prefix"
1235
+ msgstr ""
1236
+
1237
+ #: admin/wp-security-database-menu.php:93
1238
+ #@ aiowpsecurity
1239
+ msgid "Nonce check failed for DB prefix change operation!"
1240
+ msgstr ""
1241
+
1242
+ #: admin/wp-security-database-menu.php:101
1243
+ #@ aiowpsecurity
1244
+ 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."
1245
+ msgstr ""
1246
+
1247
+ #: admin/wp-security-database-menu.php:114
1248
+ #@ aiowpsecurity
1249
+ msgid "Please enter a value for the DB prefix."
1250
+ msgstr ""
1251
+
1252
+ #: admin/wp-security-database-menu.php:123
1253
+ #@ aiowpsecurity
1254
+ msgid "<strong>ERROR</strong>: The table prefix can only contain numbers, letters, and underscores."
1255
+ msgstr ""
1256
+
1257
+ #: admin/wp-security-database-menu.php:131
1258
+ #@ aiowpsecurity
1259
+ msgid "Change Database Prefix"
1260
+ msgstr ""
1261
+
1262
+ #: admin/wp-security-database-menu.php:134
1263
+ #@ aiowpsecurity
1264
+ msgid "Your WordPress DB is the most important asset of your website because it contains a lot of your site's precious information."
1265
+ msgstr ""
1266
+
1267
+ #: admin/wp-security-database-menu.php:135
1268
+ #@ aiowpsecurity
1269
+ msgid "The DB is also a target for hackers via methods such as SQL injections and malicious and automated code which targets certain tables."
1270
+ msgstr ""
1271
+
1272
+ #: admin/wp-security-database-menu.php:136
1273
+ #@ aiowpsecurity
1274
+ 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."
1275
+ msgstr ""
1276
+
1277
+ #: admin/wp-security-database-menu.php:137
1278
+ #@ aiowpsecurity
1279
+ 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."
1280
+ msgstr ""
1281
+
1282
+ #: admin/wp-security-database-menu.php:143
1283
+ #@ aiowpsecurity
1284
+ msgid "DB Prefix Options"
1285
+ msgstr ""
1286
+
1287
+ #: admin/wp-security-database-menu.php:154
1288
+ #, php-format
1289
+ #@ aiowpsecurity
1290
+ msgid "It is recommended that you perform a %s before using this feature"
1291
+ msgstr ""
1292
+
1293
+ #: admin/wp-security-database-menu.php:163
1294
+ #@ aiowpsecurity
1295
+ msgid "Current DB Table Prefix"
1296
+ msgstr ""
1297
+
1298
+ #: admin/wp-security-database-menu.php:169
1299
+ #@ aiowpsecurity
1300
+ msgid ""
1301
+ "Your site is currently using the default WordPress DB prefix value of \"wp_\". \n"
1302
+ " To increase your site's security you should consider changing the DB prefix value to another value."
1303
+ msgstr ""
1304
+
1305
+ #: admin/wp-security-database-menu.php:176
1306
+ #@ aiowpsecurity
1307
+ msgid "Generate New DB Table Prefix"
1308
+ msgstr ""
1309
+
1310
+ #: admin/wp-security-database-menu.php:179
1311
+ #@ aiowpsecurity
1312
+ msgid "Check this if you want the plugin to generate a random 6 character string for the table prefix"
1313
+ msgstr ""
1314
+
1315
+ #: admin/wp-security-database-menu.php:180
1316
+ #@ aiowpsecurity
1317
+ msgid "OR"
1318
+ msgstr ""
1319
+
1320
+ #: admin/wp-security-database-menu.php:182
1321
+ #@ aiowpsecurity
1322
+ msgid "Choose your own DB prefix by specifying a string which contains letters and/or numbers and/or underscores. Example: xyz_"
1323
+ msgstr ""
1324
+
1325
+ #: admin/wp-security-database-menu.php:186
1326
+ #@ aiowpsecurity
1327
+ msgid "Change DB Prefix"
1328
+ msgstr ""
1329
+
1330
+ #: admin/wp-security-database-menu.php:207
1331
+ #: admin/wp-security-filesystem-menu.php:86
1332
+ #@ aiowpsecurity
1333
+ msgid "Nonce check failed for manual DB backup operation!"
1334
+ msgstr ""
1335
+
1336
+ #: admin/wp-security-database-menu.php:224
1337
+ #@ aiowpsecurity
1338
+ 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:"
1339
+ msgstr ""
1340
+
1341
+ #: admin/wp-security-database-menu.php:226
1342
+ #@ default
1343
+ msgid "Your DB Backup File location: "
1344
+ msgstr ""
1345
+
1346
+ #: admin/wp-security-database-menu.php:234
1347
+ #@ aiowpsecurity
1348
+ msgid "DB Backup failed. Please check the permissions of the backup directory."
1349
+ msgstr ""
1350
+
1351
+ #: admin/wp-security-database-menu.php:251
1352
+ #: admin/wp-security-filescan-menu.php:133
1353
+ #@ aiowpsecurity
1354
+ msgid "You entered a non numeric value for the \"backup time interval\" field. It has been set to the default value."
1355
+ msgstr ""
1356
+
1357
+ #: admin/wp-security-database-menu.php:258
1358
+ #@ aiowpsecurity
1359
+ msgid "You entered a non numeric value for the \"number of backup files to keep\" field. It has been set to the default value."
1360
+ msgstr ""
1361
+
1362
+ #: admin/wp-security-database-menu.php:265
1363
+ #: admin/wp-security-filescan-menu.php:163
1364
+ #: admin/wp-security-user-login-menu.php:117
1365
+ #@ aiowpsecurity
1366
+ msgid "You have entered an incorrect email address format. It has been set to your WordPress admin email as default."
1367
+ msgstr ""
1368
+
1369
+ #: admin/wp-security-database-menu.php:298
1370
+ #@ aiowpsecurity
1371
+ msgid "Manual Backup"
1372
+ msgstr ""
1373
+
1374
+ #: admin/wp-security-database-menu.php:304
1375
+ #@ aiowpsecurity
1376
+ msgid "To create a new DB backup just click on the button below."
1377
+ msgstr ""
1378
+
1379
+ #: admin/wp-security-database-menu.php:307
1380
+ #@ aiowpsecurity
1381
+ msgid "Create DB Backup Now"
1382
+ msgstr ""
1383
+
1384
+ #: admin/wp-security-database-menu.php:311
1385
+ #@ aiowpsecurity
1386
+ msgid "Automated Scheduled Backups"
1387
+ msgstr ""
1388
+
1389
+ #: admin/wp-security-database-menu.php:323
1390
+ #@ aiowpsecurity
1391
+ msgid "Enable Automated Scheduled Backups"
1392
+ msgstr ""
1393
+
1394
+ #: admin/wp-security-database-menu.php:326
1395
+ #@ aiowpsecurity
1396
+ msgid "Check this if you want the system to automatically generate backups periodically based on the settings below"
1397
+ msgstr ""
1398
+
1399
+ #: admin/wp-security-database-menu.php:330
1400
+ #@ aiowpsecurity
1401
+ msgid "Backup Time Interval"
1402
+ msgstr ""
1403
+
1404
+ #: admin/wp-security-database-menu.php:333
1405
+ #: admin/wp-security-filescan-menu.php:279
1406
+ #@ aiowpsecurity
1407
+ msgid "Hours"
1408
+ msgstr ""
1409
+
1410
+ #: admin/wp-security-database-menu.php:334
1411
+ #: admin/wp-security-filescan-menu.php:280
1412
+ #@ aiowpsecurity
1413
+ msgid "Days"
1414
+ msgstr ""
1415
+
1416
+ #: admin/wp-security-database-menu.php:335
1417
+ #: admin/wp-security-filescan-menu.php:281
1418
+ #@ aiowpsecurity
1419
+ msgid "Weeks"
1420
+ msgstr ""
1421
+
1422
+ #: admin/wp-security-database-menu.php:337
1423
+ #@ aiowpsecurity
1424
+ msgid "Set the value for how often you would like an automated backup to occur"
1425
+ msgstr ""
1426
+
1427
+ #: admin/wp-security-database-menu.php:341
1428
+ #@ aiowpsecurity
1429
+ msgid "Number of Backup Files To Keep"
1430
+ msgstr ""
1431
+
1432
+ #: admin/wp-security-database-menu.php:343
1433
+ #@ aiowpsecurity
1434
+ msgid "Thie field allows you to choose the number of backup files you would like to keep in the backup directory"
1435
+ msgstr ""
1436
+
1437
+ #: admin/wp-security-database-menu.php:347
1438
+ #@ aiowpsecurity
1439
+ msgid "Send Backup File Via Email"
1440
+ msgstr ""
1441
+
1442
+ #: admin/wp-security-database-menu.php:350
1443
+ #@ aiowpsecurity
1444
+ msgid "Check this if you want the system to email you the backup file after a DB backup has been performed"
1445
+ msgstr ""
1446
+
1447
+ #: admin/wp-security-database-menu.php:352
1448
+ #: admin/wp-security-filescan-menu.php:325
1449
+ #: admin/wp-security-user-login-menu.php:235
1450
+ #@ aiowpsecurity
1451
+ msgid "Enter an email address"
1452
+ msgstr ""
1453
+
1454
+ #: admin/wp-security-database-menu.php:383
1455
+ #@ aiowpsecurity
1456
+ msgid "Error - Could not get tables or no tables found!"
1457
+ msgstr ""
1458
+
1459
+ #: admin/wp-security-database-menu.php:388
1460
+ #@ aiowpsecurity
1461
+ msgid "Starting DB prefix change operations....."
1462
+ msgstr ""
1463
+
1464
+ #: admin/wp-security-database-menu.php:390
1465
+ #, php-format
1466
+ #@ aiowpsecurity
1467
+ msgid "Your WordPress system has a total of %s tables and your new DB prefix will be: %s"
1468
+ msgstr ""
1469
+
1470
+ #: admin/wp-security-database-menu.php:396
1471
+ #: classes/wp-security-utility.php:206
1472
+ #@ aiowpsecurity
1473
+ msgid "Failed to make a backup of the wp-config.php file. This operation will not go ahead."
1474
+ msgstr ""
1475
+
1476
+ #: admin/wp-security-database-menu.php:400
1477
+ #@ aiowpsecurity
1478
+ msgid "A backup copy of your wp-config.php file was created successfully!"
1479
+ msgstr ""
1480
+
1481
+ #: admin/wp-security-database-menu.php:422
1482
+ #, php-format
1483
+ #@ aiowpsecurity
1484
+ msgid "%s table name update failed"
1485
+ msgstr ""
1486
+
1487
+ #: admin/wp-security-database-menu.php:434
1488
+ #, php-format
1489
+ #@ aiowpsecurity
1490
+ msgid "Please change the prefix manually for the above tables to: %s"
1491
+ msgstr ""
1492
+
1493
+ #: admin/wp-security-database-menu.php:437
1494
+ #, php-format
1495
+ #@ aiowpsecurity
1496
+ msgid "%s tables had their prefix updated successfully!"
1497
+ msgstr ""
1498
+
1499
+ #: admin/wp-security-database-menu.php:452
1500
+ #@ aiowpsecurity
1501
+ msgid "wp-config.php file was updated successfully!"
1502
+ msgstr ""
1503
+
1504
+ #: admin/wp-security-database-menu.php:455
1505
+ #, php-format
1506
+ #@ aiowpsecurity
1507
+ msgid ""
1508
+ "The \"wp-config.php\" file was not able to be modified. Please modify this file manually using your favourite editor and search \n"
1509
+ " for variable \"$table_prefix\" and assign the following value to that variable: %s"
1510
+ msgstr ""
1511
+
1512
+ #: admin/wp-security-database-menu.php:476
1513
+ #@ aiowpsecurity
1514
+ msgid "There was an error when updating the options table."
1515
+ msgstr ""
1516
+
1517
+ #: admin/wp-security-database-menu.php:480
1518
+ #@ aiowpsecurity
1519
+ msgid "The options table records which had references to the old DB prefix were updated successfully!"
1520
+ msgstr ""
1521
+
1522
+ #: admin/wp-security-database-menu.php:505
1523
+ #, php-format
1524
+ #@ aiowpsecurity
1525
+ msgid "Error updating user_meta table where new meta_key = %s, old meta_key = %s and user_id = %s."
1526
+ msgstr ""
1527
+
1528
+ #: admin/wp-security-database-menu.php:511
1529
+ #@ aiowpsecurity
1530
+ msgid "The usermeta table records which had references to the old DB prefix were updated successfully!"
1531
+ msgstr ""
1532
+
1533
+ #: admin/wp-security-database-menu.php:513
1534
+ #@ aiowpsecurity
1535
+ msgid "DB prefix change tasks have been completed."
1536
+ msgstr ""
1537
+
1538
+ #: admin/wp-security-filescan-menu.php:23
1539
+ #: classes/grade-system/wp-security-feature-item-manager.php:102
1540
+ #@ aiowpsecurity
1541
+ msgid "File Change Detection"
1542
+ msgstr ""
1543
+
1544
+ #: admin/wp-security-filescan-menu.php:24
1545
+ #@ aiowpsecurity
1546
+ msgid "Malware Scan"
1547
+ msgstr ""
1548
+
1549
+ #: admin/wp-security-filescan-menu.php:93
1550
+ #@ aiowpsecurity
1551
+ msgid "There have been no file changes since the last scan."
1552
+ msgstr ""
1553
+
1554
+ #: admin/wp-security-filescan-menu.php:103
1555
+ #@ aiowpsecurity
1556
+ msgid "Nonce check failed for manual file change detection scan operation!"
1557
+ msgstr ""
1558
+
1559
+ #: admin/wp-security-filescan-menu.php:110
1560
+ #@ aiowpsecurity
1561
+ 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!"
1562
+ msgstr ""
1563
+
1564
+ #: admin/wp-security-filescan-menu.php:112
1565
+ #@ aiowpsecurity
1566
+ msgid "Scan Complete - There were no file changes detected!"
1567
+ msgstr ""
1568
+
1569
+ #: admin/wp-security-filescan-menu.php:201
1570
+ #@ aiowpsecurity
1571
+ msgid ""
1572
+ "NEW SCAN COMPLETED: The plugin has detected that you have made changes to the \"File Types To Ignore\" or \"Files To Ignore\" fields.\n"
1573
+ " In order to ensure that future scan results are accurate, the old scan data has been refreshed."
1574
+ msgstr ""
1575
+
1576
+ #: admin/wp-security-filescan-menu.php:211
1577
+ #@ aiowpsecurity
1578
+ msgid "All In One WP Security & Firewall has detected that there was a change in your host's files."
1579
+ msgstr ""
1580
+
1581
+ #: admin/wp-security-filescan-menu.php:213
1582
+ #@ aiowpsecurity
1583
+ msgid "View Scan Details & Clear This Message"
1584
+ msgstr ""
1585
+
1586
+ #: admin/wp-security-filescan-menu.php:222
1587
+ #@ aiowpsecurity
1588
+ 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."
1589
+ msgstr ""
1590
+
1591
+ #: admin/wp-security-filescan-menu.php:223
1592
+ #@ aiowpsecurity
1593
+ 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."
1594
+ msgstr ""
1595
+
1596
+ #: admin/wp-security-filescan-menu.php:224
1597
+ #@ aiowpsecurity
1598
+ 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."
1599
+ msgstr ""
1600
+
1601
+ #: admin/wp-security-filescan-menu.php:225
1602
+ #@ aiowpsecurity
1603
+ 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."
1604
+ msgstr ""
1605
+
1606
+ #: admin/wp-security-filescan-menu.php:226
1607
+ #@ aiowpsecurity
1608
+ 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)"
1609
+ msgstr ""
1610
+
1611
+ #: admin/wp-security-filescan-menu.php:231
1612
+ #@ aiowpsecurity
1613
+ msgid "Manual File Change Detection Scan"
1614
+ msgstr ""
1615
+
1616
+ #: admin/wp-security-filescan-menu.php:237
1617
+ #@ aiowpsecurity
1618
+ msgid "To perform a manual file change detection scan click on the button below."
1619
+ msgstr ""
1620
+
1621
+ #: admin/wp-security-filescan-menu.php:240
1622
+ #@ aiowpsecurity
1623
+ msgid "Perform Scan Now"
1624
+ msgstr ""
1625
+
1626
+ #: admin/wp-security-filescan-menu.php:244
1627
+ #@ aiowpsecurity
1628
+ msgid "View Last Saved File Change Results"
1629
+ msgstr ""
1630
+
1631
+ #: admin/wp-security-filescan-menu.php:250
1632
+ #@ aiowpsecurity
1633
+ msgid "Click the button below to view the saved file change results from the last scan."
1634
+ msgstr ""
1635
+
1636
+ #: admin/wp-security-filescan-menu.php:253
1637
+ #@ aiowpsecurity
1638
+ msgid "View Last File Change"
1639
+ msgstr ""
1640
+
1641
+ #: admin/wp-security-filescan-menu.php:257
1642
+ #@ aiowpsecurity
1643
+ msgid "File Change Detection Settings"
1644
+ msgstr ""
1645
+
1646
+ #: admin/wp-security-filescan-menu.php:269
1647
+ #@ aiowpsecurity
1648
+ msgid "Enable Automated File Change Detection Scan"
1649
+ msgstr ""
1650
+
1651
+ #: admin/wp-security-filescan-menu.php:272
1652
+ #@ aiowpsecurity
1653
+ msgid "Check this if you want the system to automatically/periodically scan your files to check for file changes based on the settings below"
1654
+ msgstr ""
1655
+
1656
+ #: admin/wp-security-filescan-menu.php:276
1657
+ #@ aiowpsecurity
1658
+ msgid "Scan Time Interval"
1659
+ msgstr ""
1660
+
1661
+ #: admin/wp-security-filescan-menu.php:283
1662
+ #@ aiowpsecurity
1663
+ msgid "Set the value for how often you would like a scan to occur"
1664
+ msgstr ""
1665
+
1666
+ #: admin/wp-security-filescan-menu.php:287
1667
+ #@ aiowpsecurity
1668
+ msgid "File Types To Ignore"
1669
+ msgstr ""
1670
+
1671
+ #: admin/wp-security-filescan-menu.php:290
1672
+ #@ aiowpsecurity
1673
+ msgid "Enter each file type or extension on a new line which you wish to exclude from the file change detection scan."
1674
+ msgstr ""
1675
+
1676
+ #: admin/wp-security-filescan-menu.php:294
1677
+ #@ aiowpsecurity
1678
+ 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."
1679
+ msgstr ""
1680
+
1681
+ #: admin/wp-security-filescan-menu.php:295
1682
+ #@ aiowpsecurity
1683
+ msgid "Example: If you want the scanner to ignore files of type jpg, png, and bmp, then you would enter the following:"
1684
+ msgstr ""
1685
+
1686
+ #: admin/wp-security-filescan-menu.php:296
1687
+ #@ aiowpsecurity
1688
+ msgid "jpg"
1689
+ msgstr ""
1690
+
1691
+ #: admin/wp-security-filescan-menu.php:297
1692
+ #@ aiowpsecurity
1693
+ msgid "png"
1694
+ msgstr ""
1695
+
1696
+ #: admin/wp-security-filescan-menu.php:298
1697
+ #@ aiowpsecurity
1698
+ msgid "bmp"
1699
+ msgstr ""
1700
+
1701
+ #: admin/wp-security-filescan-menu.php:304
1702
+ #@ aiowpsecurity
1703
+ msgid "Files/Directories To Ignore"
1704
+ msgstr ""
1705
+
1706
+ #: admin/wp-security-filescan-menu.php:307
1707
+ #@ aiowpsecurity
1708
+ msgid "Enter each file or directory on a new line which you wish to exclude from the file change detection scan."
1709
+ msgstr ""
1710
+
1711
+ #: admin/wp-security-filescan-menu.php:311
1712
+ #@ aiowpsecurity
1713
+ 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."
1714
+ msgstr ""
1715
+
1716
+ #: admin/wp-security-filescan-menu.php:312
1717
+ #@ aiowpsecurity
1718
+ msgid "Example: If you want the scanner to ignore certain files in different directories or whole directories, then you would enter the following:"
1719
+ msgstr ""
1720
+
1721
+ #: admin/wp-security-filescan-menu.php:313
1722
+ #@ aiowpsecurity
1723
+ msgid "cache/config/master.php"
1724
+ msgstr ""
1725
+
1726
+ #: admin/wp-security-filescan-menu.php:314
1727
+ #@ aiowpsecurity
1728
+ msgid "somedirectory"
1729
+ msgstr ""
1730
+
1731
+ #: admin/wp-security-filescan-menu.php:320
1732
+ #@ aiowpsecurity
1733
+ msgid "Send Email When Change Detected"
1734
+ msgstr ""
1735
+
1736
+ #: admin/wp-security-filescan-menu.php:323
1737
+ #@ aiowpsecurity
1738
+ msgid "Check this if you want the system to email you if a file change was detected"
1739
+ msgstr ""
1740
+
1741
+ #: admin/wp-security-filescan-menu.php:341
1742
+ #@ aiowpsecurity
1743
+ msgid "What is Malware?"
1744
+ msgstr ""
1745
+
1746
+ #: admin/wp-security-filescan-menu.php:342
1747
+ #@ aiowpsecurity
1748
+ 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."
1749
+ msgstr ""
1750
+
1751
+ #: admin/wp-security-filescan-menu.php:343
1752
+ #@ aiowpsecurity
1753
+ 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."
1754
+ msgstr ""
1755
+
1756
+ #: admin/wp-security-filescan-menu.php:344
1757
+ #@ aiowpsecurity
1758
+ 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."
1759
+ msgstr ""
1760
+
1761
+ #: admin/wp-security-filescan-menu.php:348
1762
+ #@ aiowpsecurity
1763
+ msgid "Scanning For Malware"
1764
+ msgstr ""
1765
+
1766
+ #: admin/wp-security-filescan-menu.php:349
1767
+ #@ aiowpsecurity
1768
+ 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."
1769
+ msgstr ""
1770
+
1771
+ #: admin/wp-security-filescan-menu.php:350
1772
+ #@ aiowpsecurity
1773
+ 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."
1774
+ msgstr ""
1775
+
1776
+ #: admin/wp-security-filescan-menu.php:351
1777
+ #@ aiowpsecurity
1778
+ msgid "When you sign up for this service you will get the following:"
1779
+ msgstr ""
1780
+
1781
+ #: admin/wp-security-filescan-menu.php:353
1782
+ #@ aiowpsecurity
1783
+ msgid "Automatic Daily Scan of 1 Website"
1784
+ msgstr ""
1785
+
1786
+ #: admin/wp-security-filescan-menu.php:354
1787
+ #@ aiowpsecurity
1788
+ msgid "Automatic Malware & Blacklist Monitoring"
1789
+ msgstr ""
1790
+
1791
+ #: admin/wp-security-filescan-menu.php:355
1792
+ #@ aiowpsecurity
1793
+ msgid "Automatic Email Alerting"
1794
+ msgstr ""
1795
+
1796
+ #: admin/wp-security-filescan-menu.php:356
1797
+ #@ aiowpsecurity
1798
+ msgid "Site uptime monitoring"
1799
+ msgstr ""
1800
+
1801
+ #: admin/wp-security-filescan-menu.php:357
1802
+ #@ aiowpsecurity
1803
+ msgid "Site response time monitoring"
1804
+ msgstr ""
1805
+
1806
+ #: admin/wp-security-filescan-menu.php:358
1807
+ #@ aiowpsecurity
1808
+ msgid "Malware Cleanup"
1809
+ msgstr ""
1810
+
1811
+ #: admin/wp-security-filescan-menu.php:359
1812
+ #@ aiowpsecurity
1813
+ msgid "Blacklist Removal"
1814
+ msgstr ""
1815
+
1816
+ #: admin/wp-security-filescan-menu.php:360
1817
+ #@ aiowpsecurity
1818
+ msgid "No Contract (Cancel Anytime)"
1819
+ msgstr ""
1820
+
1821
+ #: admin/wp-security-filescan-menu.php:362
1822
+ #, php-format
1823
+ #@ aiowpsecurity
1824
+ msgid "To learn more please %s."
1825
+ msgstr ""
1826
+
1827
+ #: admin/wp-security-filescan-menu.php:391
1828
+ #@ aiowpsecurity
1829
+ msgid "Latest File Change Scan Results"
1830
+ msgstr ""
1831
+
1832
+ #: admin/wp-security-filescan-menu.php:400
1833
+ #@ aiowpsecurity
1834
+ msgid "The following files were added to your host."
1835
+ msgstr ""
1836
+
1837
+ #: admin/wp-security-filescan-menu.php:403
1838
+ #: admin/wp-security-filescan-menu.php:424
1839
+ #: admin/wp-security-filescan-menu.php:448
1840
+ #: admin/wp-security-settings-menu.php:26
1841
+ #: admin/wp-security-settings-menu.php:27
1842
+ #@ aiowpsecurity
1843
+ msgid "File"
1844
+ msgstr ""
1845
+
1846
+ #: admin/wp-security-filescan-menu.php:404
1847
+ #: admin/wp-security-filescan-menu.php:425
1848
+ #: admin/wp-security-filescan-menu.php:449
1849
+ #@ aiowpsecurity
1850
+ msgid "File Size"
1851
+ msgstr ""
1852
+
1853
+ #: admin/wp-security-filescan-menu.php:405
1854
+ #: admin/wp-security-filescan-menu.php:426
1855
+ #: admin/wp-security-filescan-menu.php:450
1856
+ #@ aiowpsecurity
1857
+ msgid "File Modified"
1858
+ msgstr ""
1859
+
1860
+ #: admin/wp-security-filescan-menu.php:421
1861
+ #@ aiowpsecurity
1862
+ msgid "The following files were removed from your host."
1863
+ msgstr ""
1864
+
1865
+ #: admin/wp-security-filescan-menu.php:445
1866
+ #@ aiowpsecurity
1867
+ msgid "The following files were changed on your host."
1868
+ msgstr ""
1869
+
1870
+ #: admin/wp-security-filesystem-menu.php:26
1871
+ #: classes/grade-system/wp-security-feature-item-manager.php:66
1872
+ #@ aiowpsecurity
1873
+ msgid "File Permissions"
1874
+ msgstr ""
1875
+
1876
+ #: admin/wp-security-filesystem-menu.php:27
1877
+ #@ aiowpsecurity
1878
+ msgid "PHP File Editing"
1879
+ msgstr ""
1880
+
1881
+ #: admin/wp-security-filesystem-menu.php:28
1882
+ #@ aiowpsecurity
1883
+ msgid "WP File Access"
1884
+ msgstr ""
1885
+
1886
+ #: admin/wp-security-filesystem-menu.php:29
1887
+ #@ aiowpsecurity
1888
+ msgid "Host System Logs"
1889
+ msgstr ""
1890
+
1891
+ #: admin/wp-security-filesystem-menu.php:96
1892
+ #, php-format
1893
+ #@ aiowpsecurity
1894
+ msgid "The permissions for %s were succesfully changed to %s"
1895
+ msgstr ""
1896
+
1897
+ #: admin/wp-security-filesystem-menu.php:100
1898
+ #, php-format
1899
+ #@ aiowpsecurity
1900
+ msgid "Unable to change permissions for %s!"
1901
+ msgstr ""
1902
+
1903
+ #: admin/wp-security-filesystem-menu.php:106
1904
+ #@ aiowpsecurity
1905
+ msgid "File Permissions Scan"
1906
+ msgstr ""
1907
+
1908
+ #: admin/wp-security-filesystem-menu.php:109
1909
+ #@ aiowpsecurity
1910
+ 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."
1911
+ msgstr ""
1912
+
1913
+ #: admin/wp-security-filesystem-menu.php:110
1914
+ #@ aiowpsecurity
1915
+ msgid "Your WP installation already comes with reasonably secure file permission settings for the filesystem."
1916
+ msgstr ""
1917
+
1918
+ #: admin/wp-security-filesystem-menu.php:111
1919
+ #@ aiowpsecurity
1920
+ 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."
1921
+ msgstr ""
1922
+
1923
+ #: admin/wp-security-filesystem-menu.php:112
1924
+ #@ aiowpsecurity
1925
+ msgid "This feature will scan the critical WP core folders and files and will highlight any permission settings which are insecure."
1926
+ msgstr ""
1927
+
1928
+ #: admin/wp-security-filesystem-menu.php:118
1929
+ #@ aiowpsecurity
1930
+ msgid "WP Directory and File Permissions Scan Results"
1931
+ msgstr ""
1932
+
1933
+ #: admin/wp-security-filesystem-menu.php:131
1934
+ #: admin/wp-security-filesystem-menu.php:150
1935
+ #@ aiowpsecurity
1936
+ msgid "File/Folder"
1937
+ msgstr ""
1938
+
1939
+ #: admin/wp-security-filesystem-menu.php:132
1940
+ #: admin/wp-security-filesystem-menu.php:151
1941
+ #@ aiowpsecurity
1942
+ msgid "Current Permissions"
1943
+ msgstr ""
1944
+
1945
+ #: admin/wp-security-filesystem-menu.php:133
1946
+ #: admin/wp-security-filesystem-menu.php:152
1947
+ #@ aiowpsecurity
1948
+ msgid "Recommended Permissions"
1949
+ msgstr ""
1950
+
1951
+ #: admin/wp-security-filesystem-menu.php:134
1952
+ #: admin/wp-security-filesystem-menu.php:153
1953
+ #@ aiowpsecurity
1954
+ msgid "Recommended Action"
1955
+ msgstr ""
1956
+
1957
+ #: admin/wp-security-filesystem-menu.php:191
1958
+ #@ aiowpsecurity
1959
+ msgid "Your PHP file editing settings were saved successfully."
1960
+ msgstr ""
1961
+
1962
+ #: admin/wp-security-filesystem-menu.php:195
1963
+ #@ aiowpsecurity
1964
+ msgid "Operation failed! Unable to modify or make a backup of wp-config.php file!"
1965
+ msgstr ""
1966
+
1967
+ #: admin/wp-security-filesystem-menu.php:201
1968
+ #: classes/grade-system/wp-security-feature-item-manager.php:68
1969
+ #@ aiowpsecurity
1970
+ msgid "File Editing"
1971
+ msgstr ""
1972
+
1973
+ #: admin/wp-security-filesystem-menu.php:204
1974
+ #@ aiowpsecurity
1975
+ msgid "The Wordpress Dashboard by default allows administrators to edit PHP files, such as plugin and theme files."
1976
+ msgstr ""
1977
+
1978
+ #: admin/wp-security-filesystem-menu.php:205
1979
+ #@ aiowpsecurity
1980
+ msgid "This is often the first tool an attacker will use if able to login, since it allows code execution."
1981
+ msgstr ""
1982
+
1983
+ #: admin/wp-security-filesystem-menu.php:206
1984
+ #@ aiowpsecurity
1985
+ msgid "This feature will disable the ability for people to edit PHP files via the dashboard."
1986
+ msgstr ""
1987
+
1988
+ #: admin/wp-security-filesystem-menu.php:212
1989
+ #@ aiowpsecurity
1990
+ msgid "Disable PHP File Editing"
1991
+ msgstr ""
1992
+
1993
+ #: admin/wp-security-filesystem-menu.php:224
1994
+ #@ aiowpsecurity
1995
+ msgid "Disable Ability To Edit PHP Files"
1996
+ msgstr ""
1997
+
1998
+ #: admin/wp-security-filesystem-menu.php:227
1999
+ #@ aiowpsecurity
2000
+ msgid "Check this if you want to remove the ability for people to edit PHP files via the WP dashboard"
2001
+ msgstr ""
2002
+
2003
+ #: admin/wp-security-filesystem-menu.php:271
2004
+ #@ aiowpsecurity
2005
+ msgid "You have successfully saved the Prevent Access to Default WP Files configuration."
2006
+ msgstr ""
2007
+
2008
+ #: admin/wp-security-filesystem-menu.php:280
2009
+ #@ aiowpsecurity
2010
+ msgid "WordPress Files"
2011
+ msgstr ""
2012
+
2013
+ #: admin/wp-security-filesystem-menu.php:283
2014
+ #, php-format
2015
+ #@ aiowpsecurity
2016
+ msgid "This feature allows you to prevent access to files such as %s, %s and %s which are delivered with all WP installations."
2017
+ msgstr ""
2018
+
2019
+ #: admin/wp-security-filesystem-menu.php:284
2020
+ #@ aiowpsecurity
2021
+ msgid "By preventing access to these files you are hiding some key pieces of information (such as WordPress version info) from potential hackers."
2022
+ msgstr ""
2023
+
2024
+ #: admin/wp-security-filesystem-menu.php:289
2025
+ #@ aiowpsecurity
2026
+ msgid "Prevent Access to Default WP Files"
2027
+ msgstr ""
2028
+
2029
+ #: admin/wp-security-filesystem-menu.php:300
2030
+ #@ aiowpsecurity
2031
+ msgid "Prevent Access to WP Default Install Files"
2032
+ msgstr ""
2033
+
2034
+ #: admin/wp-security-filesystem-menu.php:303
2035
+ #@ aiowpsecurity
2036
+ msgid "Check this if you want to prevent access to readme.html, license.txt and wp-config-sample.php."
2037
+ msgstr ""
2038
+
2039
+ #: admin/wp-security-filesystem-menu.php:307
2040
+ #@ aiowpsecurity
2041
+ msgid "Save Setting"
2042
+ msgstr ""
2043
+
2044
+ #: admin/wp-security-filesystem-menu.php:331
2045
+ #@ aiowpsecurity
2046
+ msgid "System Logs"
2047
+ msgstr ""
2048
+
2049
+ #: admin/wp-security-filesystem-menu.php:334
2050
+ #@ aiowpsecurity
2051
+ msgid "Sometimes your hosting platform will produce error or warning logs in a file called \"error_log\"."
2052
+ msgstr ""
2053
+
2054
+ #: admin/wp-security-filesystem-menu.php:335
2055
+ #@ aiowpsecurity
2056
+ 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."
2057
+ msgstr ""
2058
+
2059
+ #: admin/wp-security-filesystem-menu.php:336
2060
+ #@ aiowpsecurity
2061
+ 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."
2062
+ msgstr ""
2063
+
2064
+ #: admin/wp-security-filesystem-menu.php:342
2065
+ #@ aiowpsecurity
2066
+ msgid "View System Logs"
2067
+ msgstr ""
2068
+
2069
+ #: admin/wp-security-filesystem-menu.php:347
2070
+ #@ aiowpsecurity
2071
+ msgid "Enter System Log File Name"
2072
+ msgstr ""
2073
+
2074
+ #: admin/wp-security-filesystem-menu.php:349
2075
+ #@ aiowpsecurity
2076
+ msgid "Enter your system log file name. (Defaults to error_log)"
2077
+ msgstr ""
2078
+
2079
+ #: admin/wp-security-filesystem-menu.php:352
2080
+ #@ aiowpsecurity
2081
+ msgid "View Latest System Logs"
2082
+ msgstr ""
2083
+
2084
+ #: admin/wp-security-filesystem-menu.php:354
2085
+ #@ aiowpsecurity
2086
+ msgid "Loading..."
2087
+ msgstr ""
2088
+
2089
+ #: admin/wp-security-filesystem-menu.php:371
2090
+ #@ aiowpsecurity
2091
+ msgid "No system logs were found!"
2092
+ msgstr ""
2093
+
2094
+ #: admin/wp-security-filesystem-menu.php:424
2095
+ #@ aiowpsecurity
2096
+ msgid "Set Recommended Permissions"
2097
+ msgstr ""
2098
+
2099
+ #: admin/wp-security-filesystem-menu.php:430
2100
+ #@ aiowpsecurity
2101
+ msgid "No Action Required"
2102
+ msgstr ""
2103
+
2104
+ #: admin/wp-security-filesystem-menu.php:470
2105
+ #, php-format
2106
+ #@ aiowpsecurity
2107
+ msgid "Showing latest entries of error_log file: %s"
2108
+ msgstr ""
2109
+
2110
+ #: admin/wp-security-firewall-menu.php:27
2111
+ #@ aiowpsecurity
2112
+ msgid "Basic Firewall Rules"
2113
+ msgstr ""
2114
+
2115
+ #: admin/wp-security-firewall-menu.php:28
2116
+ #@ aiowpsecurity
2117
+ msgid "Additional Firewall Rules"
2118
+ msgstr ""
2119
+
2120
+ #: admin/wp-security-firewall-menu.php:29
2121
+ #@ aiowpsecurity
2122
+ msgid "5G Blacklist Firewall Rules"
2123
+ msgstr ""
2124
+
2125
+ #: admin/wp-security-firewall-menu.php:30
2126
+ #@ aiowpsecurity
2127
+ msgid "Internet Bots"
2128
+ msgstr ""
2129
+
2130
+ #: admin/wp-security-firewall-menu.php:31
2131
+ #@ aiowpsecurity
2132
+ msgid "Prevent Hotlinks"
2133
+ msgstr ""
2134
+
2135
+ #: admin/wp-security-firewall-menu.php:32
2136
+ #@ aiowpsecurity
2137
+ msgid "404 Detection"
2138
+ msgstr ""
2139
+
2140
+ #: admin/wp-security-firewall-menu.php:115
2141
+ #: admin/wp-security-firewall-menu.php:663
2142
+ #: admin/wp-security-spam-menu.php:102
2143
+ #: admin/wp-security-user-registration-menu.php:96
2144
+ #@ aiowpsecurity
2145
+ msgid "Settings were successfully saved"
2146
+ msgstr ""
2147
+
2148
+ #: admin/wp-security-firewall-menu.php:124
2149
+ #: admin/wp-security-firewall-menu.php:503
2150
+ #@ aiowpsecurity
2151
+ msgid "Firewall Settings"
2152
+ msgstr ""
2153
+
2154
+ #: admin/wp-security-firewall-menu.php:131
2155
+ #, php-format
2156
+ #@ aiowpsecurity
2157
+ 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."
2158
+ msgstr ""
2159
+
2160
+ #: admin/wp-security-firewall-menu.php:132
2161
+ #@ aiowpsecurity
2162
+ msgid "The features in this tab allow you to activate some basic firewall security protection rules for your site."
2163
+ msgstr ""
2164
+
2165
+ #: admin/wp-security-firewall-menu.php:133
2166
+ #@ aiowpsecurity
2167
+ msgid "The firewall functionality is achieved via the insertion of special code into your currently active .htaccess file."
2168
+ msgstr ""
2169
+
2170
+ #: admin/wp-security-firewall-menu.php:143
2171
+ #@ aiowpsecurity
2172
+ msgid "Attention:"
2173
+ msgstr ""
2174
+
2175
+ #: admin/wp-security-firewall-menu.php:144
2176
+ #@ aiowpsecurity
2177
+ msgid "Currently the "
2178
+ msgstr ""
2179
+
2180
+ #: admin/wp-security-firewall-menu.php:144
2181
+ #: admin/wp-security-firewall-menu.php:191
2182
+ #@ aiowpsecurity
2183
+ msgid "Enable Pingback Protection"
2184
+ msgstr ""
2185
+
2186
+ #: admin/wp-security-firewall-menu.php:144
2187
+ #@ aiowpsecurity
2188
+ msgid " is active."
2189
+ msgstr ""
2190
+
2191
+ #: admin/wp-security-firewall-menu.php:145
2192
+ #@ aiowpsecurity
2193
+ 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."
2194
+ msgstr ""
2195
+
2196
+ #: admin/wp-security-firewall-menu.php:153
2197
+ #@ aiowpsecurity
2198
+ msgid "Basic Firewall Settings"
2199
+ msgstr ""
2200
+
2201
+ #: admin/wp-security-firewall-menu.php:161
2202
+ #@ aiowpsecurity
2203
+ msgid "Enable Basic Firewall Protection"
2204
+ msgstr ""
2205
+
2206
+ #: admin/wp-security-firewall-menu.php:164
2207
+ #@ aiowpsecurity
2208
+ msgid "Check this if you want to apply basic firewall protection to your site."
2209
+ msgstr ""
2210
+
2211
+ #: admin/wp-security-firewall-menu.php:168
2212
+ #@ aiowpsecurity
2213
+ msgid "This setting will implement the following basic firewall protection mechanisms on your site:"
2214
+ msgstr ""
2215
+
2216
+ #: admin/wp-security-firewall-menu.php:169
2217
+ #@ aiowpsecurity
2218
+ msgid "1) Protect your htaccess file by denying access to it."
2219
+ msgstr ""
2220
+
2221
+ #: admin/wp-security-firewall-menu.php:170
2222
+ #@ aiowpsecurity
2223
+ msgid "2) Disable the server signature."
2224
+ msgstr ""
2225
+
2226
+ #: admin/wp-security-firewall-menu.php:171
2227
+ #@ aiowpsecurity
2228
+ msgid "3) Limit file upload size (10MB)."
2229
+ msgstr ""
2230
+
2231
+ #: admin/wp-security-firewall-menu.php:172
2232
+ #@ aiowpsecurity
2233
+ msgid "4) Protect your wp-config.php file by denying access to it."
2234
+ msgstr ""
2235
+
2236
+ #: admin/wp-security-firewall-menu.php:173
2237
+ #@ aiowpsecurity
2238
+ msgid "The above firewall features will be applied via your .htaccess file and should not affect your site's overall functionality."
2239
+ msgstr ""
2240
+
2241
+ #: admin/wp-security-firewall-menu.php:174
2242
+ #@ aiowpsecurity
2243
+ msgid "You are still advised to take a backup of your active .htaccess file just in case."
2244
+ msgstr ""
2245
+
2246
+ #: admin/wp-security-firewall-menu.php:183
2247
+ #@ aiowpsecurity
2248
+ msgid "WordPress Pingback Vulnerability Protection"
2249
+ msgstr ""
2250
+
2251
+ #: admin/wp-security-firewall-menu.php:194
2252
+ #@ aiowpsecurity
2253
+ msgid "Check this if you are not using the WP XML-RPC functionality and you want to enable protection against WordPress pingback vulnerabilities."
2254
+ msgstr ""
2255
+
2256
+ #: admin/wp-security-firewall-menu.php:198
2257
+ #@ aiowpsecurity
2258
+ 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."
2259
+ msgstr ""
2260
+
2261
+ #: admin/wp-security-firewall-menu.php:199
2262
+ #@ aiowpsecurity
2263
+ msgid "Hackers can exploit various pingback vulnerabilities in the WordPress XML-RPC API in a number of ways such as:"
2264
+ msgstr ""
2265
+
2266
+ #: admin/wp-security-firewall-menu.php:200
2267
+ #@ aiowpsecurity
2268
+ msgid "1) Denial of Service (DoS) attacks"
2269
+ msgstr ""
2270
+
2271
+ #: admin/wp-security-firewall-menu.php:201
2272
+ #@ aiowpsecurity
2273
+ msgid "2) Hacking internal routers."
2274
+ msgstr ""
2275
+
2276
+ #: admin/wp-security-firewall-menu.php:202
2277
+ #@ aiowpsecurity
2278
+ msgid "3) Scanning ports in internal networks to get info from various hosts."
2279
+ msgstr ""
2280
+
2281
+ #: admin/wp-security-firewall-menu.php:203
2282
+ #@ aiowpsecurity
2283
+ 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."
2284
+ msgstr ""
2285
+
2286
+ #: admin/wp-security-firewall-menu.php:204
2287
+ #@ aiowpsecurity
2288
+ msgid "NOTE: You should only enable this feature if you are not currently using the XML-RPC functionality on your WordPress installation."
2289
+ msgstr ""
2290
+
2291
+ #: admin/wp-security-firewall-menu.php:211
2292
+ #@ aiowpsecurity
2293
+ msgid "Save Basic Firewall Settings"
2294
+ msgstr ""
2295
+
2296
+ #: admin/wp-security-firewall-menu.php:283
2297
+ #@ aiowpsecurity
2298
+ msgid "You have successfully saved the Additional Firewall Protection configuration"
2299
+ msgstr ""
2300
+
2301
+ #: admin/wp-security-firewall-menu.php:297
2302
+ #@ aiowpsecurity
2303
+ msgid "Additional Firewall Protection"
2304
+ msgstr ""
2305
+
2306
+ #: admin/wp-security-firewall-menu.php:301
2307
+ #, php-format
2308
+ #@ aiowpsecurity
2309
+ 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."
2310
+ msgstr ""
2311
+
2312
+ #: admin/wp-security-firewall-menu.php:303
2313
+ #@ aiowpsecurity
2314
+ msgid "This feature allows you to activate more advanced firewall settings to your site."
2315
+ msgstr ""
2316
+
2317
+ #: admin/wp-security-firewall-menu.php:304
2318
+ #@ aiowpsecurity
2319
+ msgid "The advanced firewall rules are applied via the insertion of special code to your currently active .htaccess file."
2320
+ msgstr ""
2321
+
2322
+ #: admin/wp-security-firewall-menu.php:313
2323
+ #@ aiowpsecurity
2324
+ msgid "Listing of Directory Contents"
2325
+ msgstr ""
2326
+
2327
+ #: admin/wp-security-firewall-menu.php:322
2328
+ #: classes/grade-system/wp-security-feature-item-manager.php:88
2329
+ #@ aiowpsecurity
2330
+ msgid "Disable Index Views"
2331
+ msgstr ""
2332
+
2333
+ #: admin/wp-security-firewall-menu.php:325
2334
+ #@ aiowpsecurity
2335
+ msgid "Check this if you want to disable directory and file listing."
2336
+ msgstr ""
2337
+
2338
+ #: admin/wp-security-firewall-menu.php:330
2339
+ #@ aiowpsecurity
2340
+ 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."
2341
+ msgstr ""
2342
+
2343
+ #: admin/wp-security-firewall-menu.php:332
2344
+ #@ aiowpsecurity
2345
+ msgid "This feature will prevent the listing of contents for all directories."
2346
+ msgstr ""
2347
+
2348
+ #: admin/wp-security-firewall-menu.php:334
2349
+ #@ aiowpsecurity
2350
+ 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"
2351
+ msgstr ""
2352
+
2353
+ #: admin/wp-security-firewall-menu.php:343
2354
+ #@ aiowpsecurity
2355
+ msgid "Trace and Track"
2356
+ msgstr ""
2357
+
2358
+ #: admin/wp-security-firewall-menu.php:352
2359
+ #: classes/grade-system/wp-security-feature-item-manager.php:89
2360
+ #@ aiowpsecurity
2361
+ msgid "Disable Trace and Track"
2362
+ msgstr ""
2363
+
2364
+ #: admin/wp-security-firewall-menu.php:355
2365
+ #@ aiowpsecurity
2366
+ msgid "Check this if you want to disable trace and track."
2367
+ msgstr ""
2368
+
2369
+ #: admin/wp-security-firewall-menu.php:360
2370
+ #@ aiowpsecurity
2371
+ msgid "HTTP Trace attack (XST) can be used to return header requests and grab cookies and other information."
2372
+ msgstr ""
2373
+
2374
+ #: admin/wp-security-firewall-menu.php:362
2375
+ #@ aiowpsecurity
2376
+ msgid "This hacking technique is usually used together with cross site scripting attacks (XSS)."
2377
+ msgstr ""
2378
+
2379
+ #: admin/wp-security-firewall-menu.php:364
2380
+ #@ aiowpsecurity
2381
+ msgid "Disabling trace and track on your site will help prevent HTTP Trace attacks."
2382
+ msgstr ""
2383
+
2384
+ #: admin/wp-security-firewall-menu.php:373
2385
+ #@ aiowpsecurity
2386
+ msgid "Proxy Comment Posting"
2387
+ msgstr ""
2388
+
2389
+ #: admin/wp-security-firewall-menu.php:383
2390
+ #@ aiowpsecurity
2391
+ msgid "Forbid Proxy Comment Posting"
2392
+ msgstr ""
2393
+
2394
+ #: admin/wp-security-firewall-menu.php:386
2395
+ #@ aiowpsecurity
2396
+ msgid "Check this if you want to forbid proxy comment posting."
2397
+ msgstr ""
2398
+
2399
+ #: admin/wp-security-firewall-menu.php:391
2400
+ #@ aiowpsecurity
2401
+ msgid "This setting will deny any requests that use a proxy server when posting comments."
2402
+ msgstr ""
2403
+
2404
+ #: admin/wp-security-firewall-menu.php:392
2405
+ #@ aiowpsecurity
2406
+ msgid "By forbidding proxy comments you are in effect eliminating some SPAM and other proxy requests."
2407
+ msgstr ""
2408
+
2409
+ #: admin/wp-security-firewall-menu.php:401
2410
+ #@ aiowpsecurity
2411
+ msgid "Bad Query Strings"
2412
+ msgstr ""
2413
+
2414
+ #: admin/wp-security-firewall-menu.php:411
2415
+ #@ aiowpsecurity
2416
+ msgid "Deny Bad Query Strings"
2417
+ msgstr ""
2418
+
2419
+ #: admin/wp-security-firewall-menu.php:414
2420
+ #@ aiowpsecurity
2421
+ msgid "This will help protect you against malicious queries via XSS."
2422
+ msgstr ""
2423
+
2424
+ #: admin/wp-security-firewall-menu.php:419
2425
+ #@ aiowpsecurity
2426
+ msgid "This feature will write rules in your .htaccess file to prevent malicious string attacks on your site using XSS."
2427
+ msgstr ""
2428
+
2429
+ #: admin/wp-security-firewall-menu.php:420
2430
+ #@ aiowpsecurity
2431
+ msgid "NOTE: Some of these strings might be used for plugins or themes and hence this might break some functionality."
2432
+ msgstr ""
2433
+
2434
+ #: admin/wp-security-firewall-menu.php:421
2435
+ #: admin/wp-security-firewall-menu.php:451
2436
+ #@ aiowpsecurity
2437
+ msgid "You are therefore strongly advised to take a backup of your active .htaccess file before applying this feature."
2438
+ msgstr ""
2439
+
2440
+ #: admin/wp-security-firewall-menu.php:430
2441
+ #: classes/grade-system/wp-security-feature-item-manager.php:92
2442
+ #@ aiowpsecurity
2443
+ msgid "Advanced Character String Filter"
2444
+ msgstr ""
2445
+
2446
+ #: admin/wp-security-firewall-menu.php:440
2447
+ #@ aiowpsecurity
2448
+ msgid "Enable Advanced Character String Filter"
2449
+ msgstr ""
2450
+
2451
+ #: admin/wp-security-firewall-menu.php:443
2452
+ #@ aiowpsecurity
2453
+ msgid "This will block bad character matches from XSS."
2454
+ msgstr ""
2455
+
2456
+ #: admin/wp-security-firewall-menu.php:448
2457
+ #@ aiowpsecurity
2458
+ msgid "This is an advanced character string filter to prevent malicious string attacks on your site coming from Cross Site Scripting (XSS)."
2459
+ msgstr ""
2460
+
2461
+ #: admin/wp-security-firewall-menu.php:449
2462
+ #@ aiowpsecurity
2463
+ msgid "This setting matches for common malicious string patterns and exploits and will produce a 403 error for the hacker attempting the query."
2464
+ msgstr ""
2465
+
2466
+ #: admin/wp-security-firewall-menu.php:450
2467
+ #@ aiowpsecurity
2468
+ msgid "NOTE: Some strings for this setting might break some functionality."
2469
+ msgstr ""
2470
+
2471
+ #: admin/wp-security-firewall-menu.php:459
2472
+ #@ aiowpsecurity
2473
+ msgid "Save Additional Firewall Settings"
2474
+ msgstr ""
2475
+
2476
+ #: admin/wp-security-firewall-menu.php:494
2477
+ #@ aiowpsecurity
2478
+ msgid "You have successfully saved the 5G Firewall Protection configuration"
2479
+ msgstr ""
2480
+
2481
+ #: admin/wp-security-firewall-menu.php:507
2482
+ #, php-format
2483
+ #@ aiowpsecurity
2484
+ msgid "This feature allows you to activate the 5G firewall security protection rules designed and produced by %s."
2485
+ msgstr ""
2486
+
2487
+ #: admin/wp-security-firewall-menu.php:508
2488
+ #@ aiowpsecurity
2489
+ msgid "The 5G Blacklist is a simple, flexible blacklist that helps reduce the number of malicious URL requests that hit your website."
2490
+ msgstr ""
2491
+
2492
+ #: admin/wp-security-firewall-menu.php:509
2493
+ #@ aiowpsecurity
2494
+ msgid "The added advantage of applying the 5G 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."
2495
+ msgstr ""
2496
+
2497
+ #: admin/wp-security-firewall-menu.php:510
2498
+ #, php-format
2499
+ #@ aiowpsecurity
2500
+ msgid "Therefore the 5G 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."
2501
+ msgstr ""
2502
+
2503
+ #: admin/wp-security-firewall-menu.php:516
2504
+ #@ aiowpsecurity
2505
+ msgid "5G Blacklist/Firewall Settings"
2506
+ msgstr ""
2507
+
2508
+ #: admin/wp-security-firewall-menu.php:528
2509
+ #@ aiowpsecurity
2510
+ msgid "Enable 5G Firewall Protection"
2511
+ msgstr ""
2512
+
2513
+ #: admin/wp-security-firewall-menu.php:531
2514
+ #@ aiowpsecurity
2515
+ msgid "Check this if you want to apply the 5G Blacklist firewall protection from perishablepress.com to your site."
2516
+ msgstr ""
2517
+
2518
+ #: admin/wp-security-firewall-menu.php:535
2519
+ #@ aiowpsecurity
2520
+ msgid "This setting will implement the 5G security firewall protection mechanisms on your site which include the following things:"
2521
+ msgstr ""
2522
+
2523
+ #: admin/wp-security-firewall-menu.php:536
2524
+ #@ aiowpsecurity
2525
+ msgid "1) Block forbidden characters commonly used in exploitative attacks."
2526
+ msgstr ""
2527
+
2528
+ #: admin/wp-security-firewall-menu.php:537
2529
+ #@ aiowpsecurity
2530
+ msgid "2) Block malicious encoded URL characters such as the \".css(\" string."
2531
+ msgstr ""
2532
+
2533
+ #: admin/wp-security-firewall-menu.php:538
2534
+ #@ aiowpsecurity
2535
+ msgid "3) Guard against the common patterns and specific exploits in the root portion of targeted URLs."
2536
+ msgstr ""
2537
+
2538
+ #: admin/wp-security-firewall-menu.php:539
2539
+ #@ aiowpsecurity
2540
+ msgid "4) Stop attackers from manipulating query strings by disallowing illicit characters."
2541
+ msgstr ""
2542
+
2543
+ #: admin/wp-security-firewall-menu.php:540
2544
+ #@ aiowpsecurity
2545
+ msgid "....and much more."
2546
+ msgstr ""
2547
+
2548
+ #: admin/wp-security-firewall-menu.php:546
2549
+ #@ aiowpsecurity
2550
+ msgid "Save 5G Firewall Settings"
2551
+ msgstr ""
2552
+
2553
+ #: admin/wp-security-firewall-menu.php:577
2554
+ #@ aiowpsecurity
2555
+ msgid "The Internet bot settings were successfully saved"
2556
+ msgstr ""
2557
+
2558
+ #: admin/wp-security-firewall-menu.php:581
2559
+ #@ aiowpsecurity
2560
+ msgid "Internet Bot Settings"
2561
+ msgstr ""
2562
+
2563
+ #: admin/wp-security-firewall-menu.php:588
2564
+ #, php-format
2565
+ #@ aiowpsecurity
2566
+ msgid "%s?"
2567
+ msgstr ""
2568
+
2569
+ #: admin/wp-security-firewall-menu.php:590
2570
+ #@ aiowpsecurity
2571
+ 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."
2572
+ msgstr ""
2573
+
2574
+ #: admin/wp-security-firewall-menu.php:591
2575
+ #@ aiowpsecurity
2576
+ 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."
2577
+ msgstr ""
2578
+
2579
+ #: admin/wp-security-firewall-menu.php:592
2580
+ #@ aiowpsecurity
2581
+ 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."
2582
+ msgstr ""
2583
+
2584
+ #: admin/wp-security-firewall-menu.php:593
2585
+ #@ aiowpsecurity
2586
+ 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)"
2587
+ msgstr ""
2588
+
2589
+ #: admin/wp-security-firewall-menu.php:594
2590
+ #@ aiowpsecurity
2591
+ 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."
2592
+ msgstr ""
2593
+
2594
+ #: admin/wp-security-firewall-menu.php:600
2595
+ #@ aiowpsecurity
2596
+ msgid "<strong>Attention</strong>: Sometimes non-malicious Internet organizations might have bots which impersonate as a \"Googlebot\"."
2597
+ msgstr ""
2598
+
2599
+ #: admin/wp-security-firewall-menu.php:601
2600
+ #@ aiowpsecurity
2601
+ 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)."
2602
+ msgstr ""
2603
+
2604
+ #: admin/wp-security-firewall-menu.php:602
2605
+ #@ aiowpsecurity
2606
+ msgid "All other bots from other organizations such as \"Yahoo\", \"Bing\" etc will not be affected by this feature."
2607
+ msgstr ""
2608
+
2609
+ #: admin/wp-security-firewall-menu.php:608
2610
+ #: admin/wp-security-firewall-menu.php:618
2611
+ #: classes/grade-system/wp-security-feature-item-manager.php:94
2612
+ #@ aiowpsecurity
2613
+ msgid "Block Fake Googlebots"
2614
+ msgstr ""
2615
+
2616
+ #: admin/wp-security-firewall-menu.php:621
2617
+ #@ aiowpsecurity
2618
+ msgid "Check this if you want to block all fake Googlebots."
2619
+ msgstr ""
2620
+
2621
+ #: admin/wp-security-firewall-menu.php:625
2622
+ #@ aiowpsecurity
2623
+ msgid "This feature will check if the User Agent information of a bot contains the string \"Googlebot\"."
2624
+ msgstr ""
2625
+
2626
+ #: admin/wp-security-firewall-menu.php:626
2627
+ #@ aiowpsecurity
2628
+ 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."
2629
+ msgstr ""
2630
+
2631
+ #: admin/wp-security-firewall-menu.php:627
2632
+ #@ aiowpsecurity
2633
+ msgid "If the bot fails the checks then the plugin will mark it as being a fake Googlebot and it will block it"
2634
+ msgstr ""
2635
+
2636
+ #: admin/wp-security-firewall-menu.php:634
2637
+ #@ aiowpsecurity
2638
+ msgid "Save Internet Bot Settings"
2639
+ msgstr ""
2640
+
2641
+ #: admin/wp-security-firewall-menu.php:671
2642
+ #: admin/wp-security-firewall-menu.php:693
2643
+ #: classes/grade-system/wp-security-feature-item-manager.php:32
2644
+ #@ aiowpsecurity
2645
+ msgid "Prevent Image Hotlinking"
2646
+ msgstr ""
2647
+
2648
+ #: admin/wp-security-firewall-menu.php:674
2649
+ #@ aiowpsecurity
2650
+ 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."
2651
+ msgstr ""
2652
+
2653
+ #: admin/wp-security-firewall-menu.php:675
2654
+ #@ aiowpsecurity
2655
+ 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."
2656
+ msgstr ""
2657
+
2658
+ #: admin/wp-security-firewall-menu.php:676
2659
+ #@ aiowpsecurity
2660
+ msgid "This feature will prevent people from directly hotlinking images from your site's pages by writing some directives in your .htaccess file."
2661
+ msgstr ""
2662
+
2663
+ #: admin/wp-security-firewall-menu.php:681
2664
+ #@ aiowpsecurity
2665
+ msgid "Prevent Hotlinking"
2666
+ msgstr ""
2667
+
2668
+ #: admin/wp-security-firewall-menu.php:696
2669
+ #@ aiowpsecurity
2670
+ msgid "Check this if you want to prevent hotlinking to images on your site."
2671
+ msgstr ""
2672
+
2673
+ #: admin/wp-security-firewall-menu.php:716
2674
+ #@ aiowpsecurity
2675
+ msgid "Nonce check failed for delete all 404 event logs operation!"
2676
+ msgstr ""
2677
+
2678
+ #: admin/wp-security-firewall-menu.php:727
2679
+ #@ aiowpsecurity
2680
+ msgid "404 Detection Feature - Delete all 404 event logs operation failed!"
2681
+ msgstr ""
2682
+
2683
+ #: admin/wp-security-firewall-menu.php:731
2684
+ #@ aiowpsecurity
2685
+ msgid "All 404 event logs were deleted from the DB successfully!"
2686
+ msgstr ""
2687
+
2688
+ #: admin/wp-security-firewall-menu.php:757
2689
+ #: admin/wp-security-user-login-menu.php:110
2690
+ #@ aiowpsecurity
2691
+ msgid "You entered a non numeric value for the lockout time length field. It has been set to the default value."
2692
+ msgstr ""
2693
+
2694
+ #: admin/wp-security-firewall-menu.php:763
2695
+ #@ aiowpsecurity
2696
+ msgid "You entered an incorrect format for the \"Redirect URL\" field. It has been set to the default value."
2697
+ msgstr ""
2698
+
2699
+ #: admin/wp-security-firewall-menu.php:795
2700
+ #@ aiowpsecurity
2701
+ msgid "404 Detection Configuration"
2702
+ msgstr ""
2703
+
2704
+ #: admin/wp-security-firewall-menu.php:798
2705
+ #@ aiowpsecurity
2706
+ msgid "A 404 or Not Found error occurs when somebody tries to access a non-existent page on your website."
2707
+ msgstr ""
2708
+
2709
+ #: admin/wp-security-firewall-menu.php:799
2710
+ #@ aiowpsecurity
2711
+ 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."
2712
+ msgstr ""
2713
+
2714
+ #: admin/wp-security-firewall-menu.php:800
2715
+ #@ aiowpsecurity
2716
+ 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."
2717
+ msgstr ""
2718
+
2719
+ #: admin/wp-security-firewall-menu.php:801
2720
+ #@ aiowpsecurity
2721
+ msgid "Such behaviour can mean that a hacker might be trying to find a particular page or URL for sinister reasons."
2722
+ msgstr ""
2723
+
2724
+ #: admin/wp-security-firewall-menu.php:802
2725
+ #@ aiowpsecurity
2726
+ 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."
2727
+ msgstr ""
2728
+
2729
+ #: admin/wp-security-firewall-menu.php:803
2730
+ #@ aiowpsecurity
2731
+ 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."
2732
+ msgstr ""
2733
+
2734
+ #: admin/wp-security-firewall-menu.php:808
2735
+ #@ aiowpsecurity
2736
+ msgid "404 Detection Options"
2737
+ msgstr ""
2738
+
2739
+ #: admin/wp-security-firewall-menu.php:820
2740
+ #@ aiowpsecurity
2741
+ msgid "Enable IP Lockout For 404 Events"
2742
+ msgstr ""
2743
+
2744
+ #: admin/wp-security-firewall-menu.php:823
2745
+ #@ aiowpsecurity
2746
+ msgid "Check this if you want to enable the lockout of selected IP addresses."
2747
+ msgstr ""
2748
+
2749
+ #: admin/wp-security-firewall-menu.php:828
2750
+ #@ aiowpsecurity
2751
+ 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 to be blocked in the table. All IP addresses you select to be blocked from the \"404 Event Logs\" table section will be unable to access your site."
2752
+ msgstr ""
2753
+
2754
+ #: admin/wp-security-firewall-menu.php:836
2755
+ #@ aiowpsecurity
2756
+ msgid "Enable 404 Event Logging"
2757
+ msgstr ""
2758
+
2759
+ #: admin/wp-security-firewall-menu.php:839
2760
+ #@ aiowpsecurity
2761
+ msgid "Check this if you want to enable the logging of 404 events"
2762
+ msgstr ""
2763
+
2764
+ #: admin/wp-security-firewall-menu.php:844
2765
+ #@ aiowpsecurity
2766
+ msgid "Time Length of 404 Lockout (min)"
2767
+ msgstr ""
2768
+
2769
+ #: admin/wp-security-firewall-menu.php:846
2770
+ #@ aiowpsecurity
2771
+ msgid "Set the length of time for which a blocked IP address will be prevented from visiting your site"
2772
+ msgstr ""
2773
+
2774
+ #: admin/wp-security-firewall-menu.php:851
2775
+ #@ aiowpsecurity
2776
+ msgid "You can lock any IP address which is recorded in the \"404 Event Logs\" table section below."
2777
+ msgstr ""
2778
+
2779
+ #: admin/wp-security-firewall-menu.php:853
2780
+ #@ aiowpsecurity
2781
+ msgid "To temporarily lock an IP address, hover over the ID column and click the \"Temp Block\" link for the applicable IP entry."
2782
+ msgstr ""
2783
+
2784
+ #: admin/wp-security-firewall-menu.php:860
2785
+ #@ aiowpsecurity
2786
+ msgid "404 Lockout Redirect URL"
2787
+ msgstr ""
2788
+
2789
+ #: admin/wp-security-firewall-menu.php:862
2790
+ #@ aiowpsecurity
2791
+ msgid "A blocked visitor will be automatically redirected to this URL."
2792
+ msgstr ""
2793
+
2794
+ #: admin/wp-security-firewall-menu.php:871
2795
+ #@ aiowpsecurity
2796
+ msgid "404 Event Logs"
2797
+ msgstr ""
2798
+
2799
+ #: admin/wp-security-firewall-menu.php:892
2800
+ #: admin/wp-security-firewall-menu.php:901
2801
+ #@ aiowpsecurity
2802
+ msgid "Delete All 404 Event Logs"
2803
+ msgstr ""
2804
+
2805
+ #: admin/wp-security-firewall-menu.php:898
2806
+ #@ aiowpsecurity
2807
+ msgid "Click this button if you wish to purge all 404 event logs from the DB."
2808
+ msgstr ""
2809
+
2810
+ #: admin/wp-security-list-404.php:108
2811
+ #: admin/wp-security-list-acct-activity.php:79
2812
+ #: admin/wp-security-list-comment-spammer-ip.php:86
2813
+ #: admin/wp-security-list-locked-ip.php:82
2814
+ #: admin/wp-security-list-locked-ip.php:93
2815
+ #: admin/wp-security-list-login-fails.php:78
2816
+ #: admin/wp-security-list-registered-users.php:82
2817
+ #: admin/wp-security-list-registered-users.php:93
2818
+ #@ aiowpsecurity
2819
+ msgid "Please select some records using the checkboxes"
2820
+ msgstr ""
2821
+
2822
+ #: admin/wp-security-list-acct-activity.php:107
2823
+ #: admin/wp-security-list-login-fails.php:107
2824
+ #@ aiowpsecurity
2825
+ msgid "The selected entries were deleted successfully!"
2826
+ msgstr ""
2827
+
2828
+ #: admin/wp-security-list-acct-activity.php:120
2829
+ #: admin/wp-security-list-login-fails.php:119
2830
+ #@ aiowpsecurity
2831
+ msgid "The selected entry was deleted successfully!"
2832
+ msgstr ""
2833
+
2834
+ #: admin/wp-security-list-comment-spammer-ip.php:139
2835
+ #@ aiowpsecurity
2836
+ msgid "The selected IP addresses were saved in the blacklist configuration settings."
2837
+ msgstr ""
2838
+
2839
+ #: admin/wp-security-list-comment-spammer-ip.php:153
2840
+ #@ aiowpsecurity
2841
+ msgid "The .htaccess file was successfully modified to include the selected IP addresses."
2842
+ msgstr ""
2843
+
2844
+ #: admin/wp-security-list-comment-spammer-ip.php:159
2845
+ #@ aiowpsecurity
2846
+ msgid "NOTE: The .htaccess file was not modified because you have disabled the \"Enable IP or User Agent Blacklisting\" check box."
2847
+ msgstr ""
2848
+
2849
+ #: admin/wp-security-list-comment-spammer-ip.php:160
2850
+ #, php-format
2851
+ #@ aiowpsecurity
2852
+ msgid "To block these IP addresses you will need to enable the above flag in the %s menu"
2853
+ msgstr ""
2854
+
2855
+ #: admin/wp-security-list-locked-ip.php:117
2856
+ #: admin/wp-security-user-login-menu.php:527
2857
+ #@ aiowpsecurity
2858
+ msgid "The selected IP entries were unlocked successfully!"
2859
+ msgstr ""
2860
+
2861
+ #: admin/wp-security-list-locked-ip.php:126
2862
+ #: admin/wp-security-user-login-menu.php:536
2863
+ #@ aiowpsecurity
2864
+ msgid "The selected IP entry was unlocked successfully!"
2865
+ msgstr ""
2866
+
2867
+ #: admin/wp-security-list-registered-users.php:127
2868
+ #: admin/wp-security-list-registered-users.php:151
2869
+ #@ aiowpsecurity
2870
+ msgid "Your account is now active"
2871
+ msgstr ""
2872
+
2873
+ #: admin/wp-security-list-registered-users.php:128
2874
+ #@ aiowpsecurity
2875
+ msgid "Your account with username:"
2876
+ msgstr ""
2877
+
2878
+ #: admin/wp-security-list-registered-users.php:135
2879
+ #@ aiowpsecurity
2880
+ msgid "The selected accounts were approved successfully!"
2881
+ msgstr ""
2882
+
2883
+ #: admin/wp-security-list-registered-users.php:139
2884
+ #@ aiowpsecurity
2885
+ msgid "The following accounts failed to update successfully: "
2886
+ msgstr ""
2887
+
2888
+ #: admin/wp-security-list-registered-users.php:147
2889
+ #@ aiowpsecurity
2890
+ msgid "The selected account was approved successfully!"
2891
+ msgstr ""
2892
+
2893
+ #: admin/wp-security-list-registered-users.php:152
2894
+ #@ aiowpsecurity
2895
+ msgid "Your account with username: "
2896
+ msgstr ""
2897
+
2898
+ #: admin/wp-security-list-registered-users.php:176
2899
+ #@ aiowpsecurity
2900
+ msgid "The selected accounts were deleted successfully!"
2901
+ msgstr ""
2902
+
2903
+ #: admin/wp-security-list-registered-users.php:184
2904
+ #@ aiowpsecurity
2905
+ msgid "The selected account was deleted successfully!"
2906
+ msgstr ""
2907
+
2908
+ #: admin/wp-security-maintenance-menu.php:22
2909
+ #@ aiowpsecurity
2910
+ msgid "Visitor Lockout"
2911
+ msgstr ""
2912
+
2913
+ #: admin/wp-security-maintenance-menu.php:88
2914
+ #@ aiowpsecurity
2915
+ msgid "Site lockout feature settings saved!"
2916
+ msgstr ""
2917
+
2918
+ #: admin/wp-security-maintenance-menu.php:93
2919
+ #@ aiowpsecurity
2920
+ msgid "General Visitor Lockout"
2921
+ msgstr ""
2922
+
2923
+ #: admin/wp-security-maintenance-menu.php:99
2924
+ #@ aiowpsecurity
2925
+ 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."
2926
+ msgstr ""
2927
+
2928
+ #: admin/wp-security-maintenance-menu.php:100
2929
+ #@ aiowpsecurity
2930
+ 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."
2931
+ msgstr ""
2932
+
2933
+ #: admin/wp-security-maintenance-menu.php:105
2934
+ #@ aiowpsecurity
2935
+ msgid "Enable Front-end Lockout"
2936
+ msgstr ""
2937
+
2938
+ #: admin/wp-security-maintenance-menu.php:108
2939
+ #@ aiowpsecurity
2940
+ 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."
2941
+ msgstr ""
2942
+
2943
+ #: admin/wp-security-maintenance-menu.php:112
2944
+ #@ aiowpsecurity
2945
+ msgid "Enter a Message:"
2946
+ msgstr ""
2947
+
2948
+ #: admin/wp-security-maintenance-menu.php:124
2949
+ #@ aiowpsecurity
2950
+ msgid "Enter a message you wish to display to visitors when your site is in maintenance mode."
2951
+ msgstr ""
2952
+
2953
+ #: admin/wp-security-maintenance-menu.php:131
2954
+ #@ default
2955
+ msgid "Save Site Lockout Settings"
2956
+ msgstr ""
2957
+
2958
+ #: admin/wp-security-settings-menu.php:25
2959
+ #@ aiowpsecurity
2960
+ msgid "General Settings"
2961
+ msgstr ""
2962
+
2963
+ #: admin/wp-security-settings-menu.php:28
2964
+ #@ aiowpsecurity
2965
+ msgid "WP Meta Info"
2966
+ msgstr ""
2967
+
2968
+ #: admin/wp-security-settings-menu.php:95
2969
+ #@ aiowpsecurity
2970
+ msgid "All the security features have been disabled successfully!"
2971
+ msgstr ""
2972
+
2973
+ #: admin/wp-security-settings-menu.php:99
2974
+ #: admin/wp-security-settings-menu.php:126
2975
+ #@ aiowpsecurity
2976
+ msgid "Could not write to the .htaccess file. Please restore your .htaccess file manually using the restore functionality in the \".htaccess File\"."
2977
+ msgstr ""
2978
+
2979
+ #: admin/wp-security-settings-menu.php:104
2980
+ #@ aiowpsecurity
2981
+ 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\"."
2982
+ msgstr ""
2983
+
2984
+ #: admin/wp-security-settings-menu.php:122
2985
+ #@ aiowpsecurity
2986
+ msgid "All firewall rules have been disabled successfully!"
2987
+ msgstr ""
2988
+
2989
+ #: admin/wp-security-settings-menu.php:136
2990
+ #@ aiowpsecurity
2991
+ msgid "WP Security Plugin"
2992
+ msgstr ""
2993
+
2994
+ #: admin/wp-security-settings-menu.php:138
2995
+ #@ aiowpsecurity
2996
+ msgid "Thank you for using our WordPress security plugin. There are a lot of security features in this plugin."
2997
+ msgstr ""
2998
+
2999
+ #: admin/wp-security-settings-menu.php:139
3000
+ #@ aiowpsecurity
3001
+ 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."
3002
+ msgstr ""
3003
+
3004
+ #: admin/wp-security-settings-menu.php:140
3005
+ #@ aiowpsecurity
3006
+ 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."
3007
+ msgstr ""
3008
+
3009
+ #: admin/wp-security-settings-menu.php:143
3010
+ #@ aiowpsecurity
3011
+ msgid "Backup your database"
3012
+ msgstr ""
3013
+
3014
+ #: admin/wp-security-settings-menu.php:144
3015
+ #@ aiowpsecurity
3016
+ msgid "Backup .htaccess file"
3017
+ msgstr ""
3018
+
3019
+ #: admin/wp-security-settings-menu.php:145
3020
+ #@ aiowpsecurity
3021
+ msgid "Backup wp-config.php file"
3022
+ msgstr ""
3023
+
3024
+ #: admin/wp-security-settings-menu.php:151
3025
+ #@ aiowpsecurity
3026
+ msgid "Disable Security Features"
3027
+ msgstr ""
3028
+
3029
+ #: admin/wp-security-settings-menu.php:157
3030
+ #@ aiowpsecurity
3031
+ 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."
3032
+ msgstr ""
3033
+
3034
+ #: admin/wp-security-settings-menu.php:161
3035
+ #@ default
3036
+ msgid "Disable All Security Features"
3037
+ msgstr ""
3038
+
3039
+ #: admin/wp-security-settings-menu.php:167
3040
+ #: admin/wp-security-settings-menu.php:177
3041
+ #@ aiowpsecurity
3042
+ #@ default
3043
+ msgid "Disable All Firewall Rules"
3044
+ msgstr ""
3045
+
3046
+ #: admin/wp-security-settings-menu.php:173
3047
+ #@ aiowpsecurity
3048
+ 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."
3049
+ msgstr ""
3050
+
3051
+ #: admin/wp-security-settings-menu.php:206
3052
+ #@ aiowpsecurity
3053
+ 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."
3054
+ msgstr ""
3055
+
3056
+ #: admin/wp-security-settings-menu.php:212
3057
+ #@ aiowpsecurity
3058
+ msgid "htaccess file rename failed during backup. Please check your root directory for the backup file using FTP."
3059
+ msgstr ""
3060
+
3061
+ #: admin/wp-security-settings-menu.php:218
3062
+ #@ aiowpsecurity
3063
+ msgid "htaccess backup failed."
3064
+ msgstr ""
3065
+
3066
+ #: admin/wp-security-settings-menu.php:233
3067
+ #@ aiowpsecurity
3068
+ msgid "Please choose a .htaccess to restore from."
3069
+ msgstr ""
3070
+
3071
+ #: admin/wp-security-settings-menu.php:249
3072
+ #@ aiowpsecurity
3073
+ msgid "htaccess file restore failed. Please attempt to restore the .htaccess manually using FTP."
3074
+ msgstr ""
3075
+
3076
+ #: admin/wp-security-settings-menu.php:253
3077
+ #@ aiowpsecurity
3078
+ msgid "Your .htaccess file has successfully been restored!"
3079
+ msgstr ""
3080
+
3081
+ #: admin/wp-security-settings-menu.php:259
3082
+ #@ aiowpsecurity
3083
+ msgid "htaccess Restore operation failed! Please check the contents of the file you are trying to restore from."
3084
+ msgstr ""
3085
+
3086
+ #: admin/wp-security-settings-menu.php:265
3087
+ #@ aiowpsecurity
3088
+ msgid ".htaccess File Operations"
3089
+ msgstr ""
3090
+
3091
+ #: admin/wp-security-settings-menu.php:268
3092
+ #@ aiowpsecurity
3093
+ 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."
3094
+ msgstr ""
3095
+
3096
+ #: admin/wp-security-settings-menu.php:269
3097
+ #@ aiowpsecurity
3098
+ 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."
3099
+ msgstr ""
3100
+
3101
+ #: admin/wp-security-settings-menu.php:270
3102
+ #@ aiowpsecurity
3103
+ msgid "You can also restore your site's .htaccess settings using a backed up .htaccess file."
3104
+ msgstr ""
3105
+
3106
+ #: admin/wp-security-settings-menu.php:284
3107
+ #@ aiowpsecurity
3108
+ msgid "Save the current .htaccess file"
3109
+ msgstr ""
3110
+
3111
+ #: admin/wp-security-settings-menu.php:288
3112
+ #@ aiowpsecurity
3113
+ msgid "Click the button below to backup and save the currently active .htaccess file."
3114
+ msgstr ""
3115
+
3116
+ #: admin/wp-security-settings-menu.php:289
3117
+ #@ aiowpsecurity
3118
+ msgid "Backup .htaccess File"
3119
+ msgstr ""
3120
+
3121
+ #: admin/wp-security-settings-menu.php:293
3122
+ #@ aiowpsecurity
3123
+ msgid "Restore from a backed up .htaccess file"
3124
+ msgstr ""
3125
+
3126
+ #: admin/wp-security-settings-menu.php:299
3127
+ #@ aiowpsecurity
3128
+ msgid ".htaccess file to restore from"
3129
+ msgstr ""
3130
+
3131
+ #: admin/wp-security-settings-menu.php:305
3132
+ #@ aiowpsecurity
3133
+ msgid "After selecting your file, click the button below to restore your site using the backed up htaccess file (htaccess_backup.txt)."
3134
+ msgstr ""
3135
+
3136
+ #: admin/wp-security-settings-menu.php:311
3137
+ #@ aiowpsecurity
3138
+ msgid "Restore .htaccess File"
3139
+ msgstr ""
3140
+
3141
+ #: admin/wp-security-settings-menu.php:315
3142
+ #@ aiowpsecurity
3143
+ msgid "View Contents of the currently active .htaccess file"
3144
+ msgstr ""
3145
+
3146
+ #: admin/wp-security-settings-menu.php:344
3147
+ #@ aiowpsecurity
3148
+ msgid "Please choose a wp-config.php file to restore from."
3149
+ msgstr ""
3150
+
3151
+ #: admin/wp-security-settings-menu.php:360
3152
+ #@ aiowpsecurity
3153
+ msgid "wp-config.php file restore failed. Please attempt to restore this file manually using FTP."
3154
+ msgstr ""
3155
+
3156
+ #: admin/wp-security-settings-menu.php:364
3157
+ #@ aiowpsecurity
3158
+ msgid "Your wp-config.php file has successfully been restored!"
3159
+ msgstr ""
3160
+
3161
+ #: admin/wp-security-settings-menu.php:370
3162
+ #@ aiowpsecurity
3163
+ msgid "wp-config.php Restore operation failed! Please check the contents of the file you are trying to restore from."
3164
+ msgstr ""
3165
+
3166
+ #: admin/wp-security-settings-menu.php:376
3167
+ #@ aiowpsecurity
3168
+ msgid "wp-config.php File Operations"
3169
+ msgstr ""
3170
+
3171
+ #: admin/wp-security-settings-menu.php:379
3172
+ #@ aiowpsecurity
3173
+ 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."
3174
+ msgstr ""
3175
+
3176
+ #: admin/wp-security-settings-menu.php:380
3177
+ #@ aiowpsecurity
3178
+ 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."
3179
+ msgstr ""
3180
+
3181
+ #: admin/wp-security-settings-menu.php:381
3182
+ #@ aiowpsecurity
3183
+ msgid "You can also restore your site's wp-config.php settings using a backed up wp-config.php file."
3184
+ msgstr ""
3185
+
3186
+ #: admin/wp-security-settings-menu.php:395
3187
+ #@ aiowpsecurity
3188
+ msgid "Save the current wp-config.php file"
3189
+ msgstr ""
3190
+
3191
+ #: admin/wp-security-settings-menu.php:399
3192
+ #@ aiowpsecurity
3193
+ msgid "Click the button below to backup and download the contents of the currently active wp-config.php file."
3194
+ msgstr ""
3195
+
3196
+ #: admin/wp-security-settings-menu.php:400
3197
+ #@ aiowpsecurity
3198
+ msgid "Backup wp-config.php File"
3199
+ msgstr ""
3200
+
3201
+ #: admin/wp-security-settings-menu.php:405
3202
+ #@ aiowpsecurity
3203
+ msgid "Restore from a backed up wp-config file"
3204
+ msgstr ""
3205
+
3206
+ #: admin/wp-security-settings-menu.php:411
3207
+ #@ aiowpsecurity
3208
+ msgid "wp-config file to restore from"
3209
+ msgstr ""
3210
+
3211
+ #: admin/wp-security-settings-menu.php:417
3212
+ #@ aiowpsecurity
3213
+ 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)."
3214
+ msgstr ""
3215
+
3216
+ #: admin/wp-security-settings-menu.php:423
3217
+ #@ aiowpsecurity
3218
+ msgid "Restore wp-config File"
3219
+ msgstr ""
3220
+
3221
+ #: admin/wp-security-settings-menu.php:427
3222
+ #@ aiowpsecurity
3223
+ msgid "View Contents of the currently active wp-config.php file"
3224
+ msgstr ""
3225
+
3226
+ #: admin/wp-security-settings-menu.php:462
3227
+ #@ aiowpsecurity
3228
+ msgid "WP Generator Meta Tag"
3229
+ msgstr ""
3230
+
3231
+ #: admin/wp-security-settings-menu.php:465
3232
+ #@ aiowpsecurity
3233
+ 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:"
3234
+ msgstr ""
3235
+
3236
+ #: admin/wp-security-settings-menu.php:467
3237
+ #@ aiowpsecurity
3238
+ 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."
3239
+ msgstr ""
3240
+
3241
+ #: admin/wp-security-settings-menu.php:468
3242
+ #@ aiowpsecurity
3243
+ msgid "This feature will allow you to remove the WP generator meta info from your site's pages."
3244
+ msgstr ""
3245
+
3246
+ #: admin/wp-security-settings-menu.php:474
3247
+ #@ aiowpsecurity
3248
+ msgid "WP Generator Meta Info"
3249
+ msgstr ""
3250
+
3251
+ #: admin/wp-security-settings-menu.php:486
3252
+ #@ aiowpsecurity
3253
+ msgid "Remove WP Generator Meta Info"
3254
+ msgstr ""
3255
+
3256
+ #: admin/wp-security-settings-menu.php:489
3257
+ #@ aiowpsecurity
3258
+ msgid "Check this if you want to remove the meta info produced by WP Generator from all pages"
3259
+ msgstr ""
3260
+
3261
+ #: admin/wp-security-spam-menu.php:23
3262
+ #@ aiowpsecurity
3263
+ msgid "Comment SPAM"
3264
+ msgstr ""
3265
+
3266
+ #: admin/wp-security-spam-menu.php:24
3267
+ #@ aiowpsecurity
3268
+ msgid "Comment SPAM IP Monitoring"
3269
+ msgstr ""
3270
+
3271
+ #: admin/wp-security-spam-menu.php:111
3272
+ #@ aiowpsecurity
3273
+ msgid "Comment SPAM Settings"
3274
+ msgstr ""
3275
+
3276
+ #: admin/wp-security-spam-menu.php:116
3277
+ #@ aiowpsecurity
3278
+ msgid "Add Captcha To Comments Form"
3279
+ msgstr ""
3280
+
3281
+ #: admin/wp-security-spam-menu.php:120
3282
+ #@ aiowpsecurity
3283
+ msgid "This feature will add a simple math captcha field in the WordPress comments form."
3284
+ msgstr ""
3285
+
3286
+ #: admin/wp-security-spam-menu.php:121
3287
+ #@ aiowpsecurity
3288
+ msgid "Adding a captcha field in the comment form is a simple way of greatly reducing SPAM comments from bots without using .htaccess rules."
3289
+ msgstr ""
3290
+
3291
+ #: admin/wp-security-spam-menu.php:137
3292
+ #@ aiowpsecurity
3293
+ msgid "Enable Captcha On Comment Forms"
3294
+ msgstr ""
3295
+
3296
+ #: admin/wp-security-spam-menu.php:140
3297
+ #@ aiowpsecurity
3298
+ msgid "Check this if you want to insert a captcha field on the comment forms"
3299
+ msgstr ""
3300
+
3301
+ #: admin/wp-security-spam-menu.php:148
3302
+ #@ aiowpsecurity
3303
+ msgid "Block Spambot Comments"
3304
+ msgstr ""
3305
+
3306
+ #: admin/wp-security-spam-menu.php:152
3307
+ #@ aiowpsecurity
3308
+ msgid "A large portion of WordPress blog comment SPAM is mainly produced by automated bots and not necessarily by humans. "
3309
+ msgstr ""
3310
+
3311
+ #: admin/wp-security-spam-menu.php:153
3312
+ #@ aiowpsecurity
3313
+ 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."
3314
+ msgstr ""
3315
+
3316
+ #: admin/wp-security-spam-menu.php:154
3317
+ #@ aiowpsecurity
3318
+ 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."
3319
+ msgstr ""
3320
+
3321
+ #: admin/wp-security-spam-menu.php:170
3322
+ #@ aiowpsecurity
3323
+ msgid "Block Spambots From Posting Comments"
3324
+ msgstr ""
3325
+
3326
+ #: admin/wp-security-spam-menu.php:173
3327
+ #@ aiowpsecurity
3328
+ msgid "Check this if you want to apply a firewall rule which will block comments originating from spambots."
3329
+ msgstr ""
3330
+
3331
+ #: admin/wp-security-spam-menu.php:177
3332
+ #@ aiowpsecurity
3333
+ msgid "This feature will implement a firewall rule to block all comment attempts which do not originate from your domain."
3334
+ msgstr ""
3335
+
3336
+ #: admin/wp-security-spam-menu.php:178
3337
+ #@ aiowpsecurity
3338
+ 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."
3339
+ msgstr ""
3340
+
3341
+ #: admin/wp-security-spam-menu.php:179
3342
+ #@ aiowpsecurity
3343
+ 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."
3344
+ msgstr ""
3345
+
3346
+ #: admin/wp-security-spam-menu.php:180
3347
+ #@ aiowpsecurity
3348
+ 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."
3349
+ msgstr ""
3350
+
3351
+ #: admin/wp-security-spam-menu.php:207
3352
+ #@ aiowpsecurity
3353
+ msgid "Nonce check failed for list SPAM comment IPs!"
3354
+ msgstr ""
3355
+
3356
+ #: admin/wp-security-spam-menu.php:213
3357
+ #@ aiowpsecurity
3358
+ msgid "You entered a non numeric value for the minimum SPAM comments per IP field. It has been set to the default value."
3359
+ msgstr ""
3360
+
3361
+ #: admin/wp-security-spam-menu.php:225
3362
+ #, php-format
3363
+ #@ aiowpsecurity
3364
+ msgid "Displaying results for IP addresses which have posted a minimum of %s SPAM comments"
3365
+ msgstr ""
3366
+
3367
+ #: admin/wp-security-spam-menu.php:241
3368
+ #@ aiowpsecurity
3369
+ msgid "This tab displays a list of the IP addresses of the people or bots who have left SPAM comments on your site."
3370
+ msgstr ""
3371
+
3372
+ #: admin/wp-security-spam-menu.php:242
3373
+ #@ aiowpsecurity
3374
+ msgid "This information can be handy for identifying the most persistent IP addresses or ranges used by spammers."
3375
+ msgstr ""
3376
+
3377
+ #: admin/wp-security-spam-menu.php:243
3378
+ #@ aiowpsecurity
3379
+ 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."
3380
+ msgstr ""
3381
+
3382
+ #: admin/wp-security-spam-menu.php:244
3383
+ #@ aiowpsecurity
3384
+ msgid ""
3385
+ "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"
3386
+ " using the checkboxes and then choose the \"block\" option from the Bulk Actions dropdown list and click the \"Apply\" button."
3387
+ msgstr ""
3388
+
3389
+ #: admin/wp-security-spam-menu.php:250
3390
+ #@ aiowpsecurity
3391
+ msgid "List SPAMMER IP Addresses"
3392
+ msgstr ""
3393
+
3394
+ #: admin/wp-security-spam-menu.php:256
3395
+ #@ aiowpsecurity
3396
+ msgid "Minimum number of SPAM comments per IP"
3397
+ msgstr ""
3398
+
3399
+ #: admin/wp-security-spam-menu.php:258
3400
+ #@ aiowpsecurity
3401
+ msgid "This field allows you to list only those IP addresses which have been used to post X or more SPAM comments."
3402
+ msgstr ""
3403
+
3404
+ #: admin/wp-security-spam-menu.php:262
3405
+ #@ aiowpsecurity
3406
+ msgid "Example 1: Setting this value to \"0\" or \"1\" will list ALL IP addresses which were used to submit SPAM comments."
3407
+ msgstr ""
3408
+
3409
+ #: admin/wp-security-spam-menu.php:263
3410
+ #@ aiowpsecurity
3411
+ 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."
3412
+ msgstr ""
3413
+
3414
+ #: admin/wp-security-spam-menu.php:270
3415
+ #@ aiowpsecurity
3416
+ msgid "Find IP Addresses"
3417
+ msgstr ""
3418
+
3419
+ #: admin/wp-security-spam-menu.php:274
3420
+ #@ aiowpsecurity
3421
+ msgid "SPAMMER IP Address Results"
3422
+ msgstr ""
3423
+
3424
+ #: admin/wp-security-spam-menu.php:280
3425
+ #: classes/wp-security-utility.php:150
3426
+ #@ aiowpsecurity
3427
+ msgid "The plugin has detected that you are using a Multi-Site WordPress installation."
3428
+ msgstr ""
3429
+
3430
+ #: admin/wp-security-spam-menu.php:281
3431
+ #@ aiowpsecurity
3432
+ msgid "Only the \"superadmin\" can block IP addresses from the main site."
3433
+ msgstr ""
3434
+
3435
+ #: admin/wp-security-spam-menu.php:282
3436
+ #@ aiowpsecurity
3437
+ 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."
3438
+ msgstr ""
3439
+
3440
+ #: admin/wp-security-user-accounts-menu.php:29
3441
+ #@ aiowpsecurity
3442
+ msgid "WP Username"
3443
+ msgstr ""
3444
+
3445
+ #: admin/wp-security-user-accounts-menu.php:30
3446
+ #@ aiowpsecurity
3447
+ msgid "Display Name"
3448
+ msgstr ""
3449
+
3450
+ #: admin/wp-security-user-accounts-menu.php:31
3451
+ #: other-includes/wp-security-rename-login-feature.php:845
3452
+ #@ aiowpsecurity
3453
+ #@ default
3454
+ msgid "Password"
3455
+ msgstr ""
3456
+
3457
+ #: admin/wp-security-user-accounts-menu.php:85
3458
+ #@ aiowpsecurity
3459
+ msgid "Admin User Security"
3460
+ msgstr ""
3461
+
3462
+ #: admin/wp-security-user-accounts-menu.php:88
3463
+ #@ aiowpsecurity
3464
+ msgid "By default, WordPress sets the administrator username to \"admin\" at installation time."
3465
+ msgstr ""
3466
+
3467
+ #: admin/wp-security-user-accounts-menu.php:89
3468
+ #@ aiowpsecurity
3469
+ 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."
3470
+ msgstr ""
3471
+
3472
+ #: admin/wp-security-user-accounts-menu.php:90
3473
+ #@ aiowpsecurity
3474
+ 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."
3475
+ msgstr ""
3476
+
3477
+ #: admin/wp-security-user-accounts-menu.php:91
3478
+ #@ aiowpsecurity
3479
+ msgid "This feature will allow you to change your default \"admin\" user name to a more secure name of your choosing."
3480
+ msgstr ""
3481
+
3482
+ #: admin/wp-security-user-accounts-menu.php:98
3483
+ #@ aiowpsecurity
3484
+ msgid "List of Administrator Accounts"
3485
+ msgstr ""
3486
+
3487
+ #: admin/wp-security-user-accounts-menu.php:107
3488
+ #: classes/grade-system/wp-security-feature-item-manager.php:36
3489
+ #@ aiowpsecurity
3490
+ msgid "Change Admin Username"
3491
+ msgstr ""
3492
+
3493
+ #: admin/wp-security-user-accounts-menu.php:115
3494
+ #@ aiowpsecurity
3495
+ msgid ""
3496
+ "Your site currently has an account which uses the default \"admin\" username. \n"
3497
+ " It is highly recommended that you change this name to something else. \n"
3498
+ " Use the following field to change the admin username."
3499
+ msgstr ""
3500
+
3501
+ #: admin/wp-security-user-accounts-menu.php:123
3502
+ #@ aiowpsecurity
3503
+ msgid "New Admin Username"
3504
+ msgstr ""
3505
+
3506
+ #: admin/wp-security-user-accounts-menu.php:125
3507
+ #@ aiowpsecurity
3508
+ msgid "Choose a new username for admin."
3509
+ msgstr ""
3510
+
3511
+ #: admin/wp-security-user-accounts-menu.php:129
3512
+ #@ aiowpsecurity
3513
+ msgid "Change Username"
3514
+ msgstr ""
3515
+
3516
+ #: admin/wp-security-user-accounts-menu.php:131
3517
+ #@ aiowpsecurity
3518
+ 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."
3519
+ msgstr ""
3520
+
3521
+ #: admin/wp-security-user-accounts-menu.php:138
3522
+ #@ aiowpsecurity
3523
+ msgid "No action required! "
3524
+ msgstr ""
3525
+
3526
+ #: admin/wp-security-user-accounts-menu.php:140
3527
+ #@ aiowpsecurity
3528
+ msgid "Your site does not have any account which uses the default \"admin\" username. "
3529
+ msgstr ""
3530
+
3531
+ #: admin/wp-security-user-accounts-menu.php:141
3532
+ #@ aiowpsecurity
3533
+ msgid "This is good security practice."
3534
+ msgstr ""
3535
+
3536
+ #: admin/wp-security-user-accounts-menu.php:153
3537
+ #@ aiowpsecurity
3538
+ msgid "Display Name Security"
3539
+ msgstr ""
3540
+
3541
+ #: admin/wp-security-user-accounts-menu.php:156
3542
+ #@ aiowpsecurity
3543
+ msgid "When you submit a post or answer a comment, WordPress will usually display your \"nickname\"."
3544
+ msgstr ""
3545
+
3546
+ #: admin/wp-security-user-accounts-menu.php:157
3547
+ #@ aiowpsecurity
3548
+ msgid "By default the nickname is set to the login (or user) name of your account."
3549
+ msgstr ""
3550
+
3551
+ #: admin/wp-security-user-accounts-menu.php:158
3552
+ #@ aiowpsecurity
3553
+ 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."
3554
+ msgstr ""
3555
+
3556
+ #: admin/wp-security-user-accounts-menu.php:159
3557
+ #@ aiowpsecurity
3558
+ 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>."
3559
+ msgstr ""
3560
+
3561
+ #: admin/wp-security-user-accounts-menu.php:165
3562
+ #@ aiowpsecurity
3563
+ msgid "Modify Accounts With Identical Login Name & Display Name"
3564
+ msgstr ""
3565
+
3566
+ #: admin/wp-security-user-accounts-menu.php:174
3567
+ #@ aiowpsecurity
3568
+ msgid "Your site currently has the following accounts which have an identical login name and display name."
3569
+ msgstr ""
3570
+
3571
+ #: admin/wp-security-user-accounts-menu.php:175
3572
+ #@ aiowpsecurity
3573
+ msgid "Click on the link to edit the settings of that particular user account"
3574
+ msgstr ""
3575
+
3576
+ #: admin/wp-security-user-accounts-menu.php:190
3577
+ #@ aiowpsecurity
3578
+ msgid "No action required."
3579
+ msgstr ""
3580
+
3581
+ #: admin/wp-security-user-accounts-menu.php:191
3582
+ #@ aiowpsecurity
3583
+ msgid "Your site does not have a user account where the display name is identical to the username."
3584
+ msgstr ""
3585
+
3586
+ #: admin/wp-security-user-accounts-menu.php:202
3587
+ #@ aiowpsecurity
3588
+ msgid "Password Tool"
3589
+ msgstr ""
3590
+
3591
+ #: admin/wp-security-user-accounts-menu.php:205
3592
+ #@ aiowpsecurity
3593
+ 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."
3594
+ msgstr ""
3595
+
3596
+ #: admin/wp-security-user-accounts-menu.php:206
3597
+ #@ aiowpsecurity
3598
+ 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."
3599
+ msgstr ""
3600
+
3601
+ #: admin/wp-security-user-accounts-menu.php:207
3602
+ #@ aiowpsecurity
3603
+ 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."
3604
+ msgstr ""
3605
+
3606
+ #: admin/wp-security-user-accounts-menu.php:208
3607
+ #@ aiowpsecurity
3608
+ msgid "This section contains a useful password strength tool which you can use to check whether your password is sufficiently strong enough."
3609
+ msgstr ""
3610
+
3611
+ #: admin/wp-security-user-accounts-menu.php:213
3612
+ #@ aiowpsecurity
3613
+ msgid "Password Strength Tool"
3614
+ msgstr ""
3615
+
3616
+ #: admin/wp-security-user-accounts-menu.php:218
3617
+ #@ aiowpsecurity
3618
+ msgid "Start typing a password."
3619
+ msgstr ""
3620
+
3621
+ #: admin/wp-security-user-accounts-menu.php:221
3622
+ #@ aiowpsecurity
3623
+ msgid "It would take a desktop PC approximately"
3624
+ msgstr ""
3625
+
3626
+ #: admin/wp-security-user-accounts-menu.php:222
3627
+ #@ aiowpsecurity
3628
+ msgid "1 sec"
3629
+ msgstr ""
3630
+
3631
+ #: admin/wp-security-user-accounts-menu.php:222
3632
+ #@ aiowpsecurity
3633
+ msgid "to crack your password!"
3634
+ msgstr ""
3635
+
3636
+ #: admin/wp-security-user-accounts-menu.php:227
3637
+ #@ aiowpsecurity
3638
+ msgid "Password Strength"
3639
+ msgstr ""
3640
+
3641
+ #: admin/wp-security-user-accounts-menu.php:243
3642
+ #@ aiowpsecurity
3643
+ msgid "Nonce check failed on admin username change operation!"
3644
+ msgstr ""
3645
+
3646
+ #: admin/wp-security-user-accounts-menu.php:250
3647
+ #@ aiowpsecurity
3648
+ msgid "Username "
3649
+ msgstr ""
3650
+
3651
+ #: admin/wp-security-user-accounts-menu.php:250
3652
+ #@ aiowpsecurity
3653
+ msgid " already exists. Please enter another value. "
3654
+ msgstr ""
3655
+
3656
+ #: admin/wp-security-user-accounts-menu.php:266
3657
+ #@ aiowpsecurity
3658
+ msgid "The database update operation of the user account failed!"
3659
+ msgstr ""
3660
+
3661
+ #: admin/wp-security-user-accounts-menu.php:293
3662
+ #@ aiowpsecurity
3663
+ msgid "You entered an invalid username. Please enter another value. "
3664
+ msgstr ""
3665
+
3666
+ #: admin/wp-security-user-accounts-menu.php:297
3667
+ #@ aiowpsecurity
3668
+ msgid "Please enter a value for your username. "
3669
+ msgstr ""
3670
+
3671
+ #: admin/wp-security-user-accounts-menu.php:304
3672
+ #@ aiowpsecurity
3673
+ msgid "Username Successfully Changed!"
3674
+ msgstr ""
3675
+
3676
+ #: admin/wp-security-user-accounts-menu.php:324
3677
+ #@ aiowpsecurity
3678
+ msgid "Account Login Name"
3679
+ msgstr ""
3680
+
3681
+ #: admin/wp-security-user-login-menu.php:26
3682
+ #: admin/wp-security-user-login-menu.php:298
3683
+ #@ aiowpsecurity
3684
+ msgid "Failed Login Records"
3685
+ msgstr ""
3686
+
3687
+ #: admin/wp-security-user-login-menu.php:27
3688
+ #: classes/grade-system/wp-security-feature-item-manager.php:50
3689
+ #@ aiowpsecurity
3690
+ msgid "Force Logout"
3691
+ msgstr ""
3692
+
3693
+ #: admin/wp-security-user-login-menu.php:28
3694
+ #: admin/wp-security-user-login-menu.php:432
3695
+ #@ aiowpsecurity
3696
+ msgid "Account Activity Logs"
3697
+ msgstr ""
3698
+
3699
+ #: admin/wp-security-user-login-menu.php:96
3700
+ #@ aiowpsecurity
3701
+ msgid "You entered a non numeric value for the max login attempts field. It has been set to the default value."
3702
+ msgstr ""
3703
+
3704
+ #: admin/wp-security-user-login-menu.php:103
3705
+ #@ aiowpsecurity
3706
+ msgid "You entered a non numeric value for the login retry time period field. It has been set to the default value."
3707
+ msgstr ""
3708
+
3709
+ #: admin/wp-security-user-login-menu.php:159
3710
+ #@ aiowpsecurity
3711
+ msgid "Login Lockdown Configuration"
3712
+ msgstr ""
3713
+
3714
+ #: admin/wp-security-user-login-menu.php:163
3715
+ #@ aiowpsecurity
3716
+ msgid "One of the ways hackers try to compromise sites is via a "
3717
+ msgstr ""
3718
+
3719
+ #: admin/wp-security-user-login-menu.php:163
3720
+ #@ aiowpsecurity
3721
+ msgid "Brute Force Login Attack"
3722
+ msgstr ""
3723
+
3724
+ #: admin/wp-security-user-login-menu.php:164
3725
+ #@ aiowpsecurity
3726
+ msgid "This is where attackers use repeated login attempts until they guess the password."
3727
+ msgstr ""
3728
+
3729
+ #: admin/wp-security-user-login-menu.php:165
3730
+ #@ aiowpsecurity
3731
+ 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."
3732
+ msgstr ""
3733
+
3734
+ #: admin/wp-security-user-login-menu.php:166
3735
+ #, php-format
3736
+ #@ aiowpsecurity
3737
+ msgid "You may also want to checkout our %s feature for another secure way to protect against these types of attacks."
3738
+ msgstr ""
3739
+
3740
+ #: admin/wp-security-user-login-menu.php:171
3741
+ #@ aiowpsecurity
3742
+ msgid "Login Lockdown Options"
3743
+ msgstr ""
3744
+
3745
+ #: admin/wp-security-user-login-menu.php:183
3746
+ #@ aiowpsecurity
3747
+ msgid "Enable Login Lockdown Feature"
3748
+ msgstr ""
3749
+
3750
+ #: admin/wp-security-user-login-menu.php:186
3751
+ #@ aiowpsecurity
3752
+ msgid "Check this if you want to enable the login lockdown feature and apply the settings below"
3753
+ msgstr ""
3754
+
3755
+ #: admin/wp-security-user-login-menu.php:190
3756
+ #@ aiowpsecurity
3757
+ msgid "Allow Unlock Requests"
3758
+ msgstr ""
3759
+
3760
+ #: admin/wp-security-user-login-menu.php:193
3761
+ #@ aiowpsecurity
3762
+ msgid "Check this if you want to allow users to generate an automated unlock request link which will unlock their account"
3763
+ msgstr ""
3764
+
3765
+ #: admin/wp-security-user-login-menu.php:197
3766
+ #@ aiowpsecurity
3767
+ msgid "Max Login Attempts"
3768
+ msgstr ""
3769
+
3770
+ #: admin/wp-security-user-login-menu.php:199
3771
+ #@ aiowpsecurity
3772
+ msgid "Set the value for the maximum login retries before IP address is locked out"
3773
+ msgstr ""
3774
+
3775
+ #: admin/wp-security-user-login-menu.php:203
3776
+ #@ aiowpsecurity
3777
+ msgid "Login Retry Time Period (min)"
3778
+ msgstr ""
3779
+
3780
+ #: admin/wp-security-user-login-menu.php:205
3781
+ #@ aiowpsecurity
3782
+ 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"
3783
+ msgstr ""
3784
+
3785
+ #: admin/wp-security-user-login-menu.php:209
3786
+ #@ aiowpsecurity
3787
+ msgid "Time Length of Lockout (min)"
3788
+ msgstr ""
3789
+
3790
+ #: admin/wp-security-user-login-menu.php:211
3791
+ #@ aiowpsecurity
3792
+ msgid "Set the length of time for which a particular IP address will be prevented from logging in"
3793
+ msgstr ""
3794
+
3795
+ #: admin/wp-security-user-login-menu.php:215
3796
+ #@ aiowpsecurity
3797
+ msgid "Display Generic Error Message"
3798
+ msgstr ""
3799
+
3800
+ #: admin/wp-security-user-login-menu.php:218
3801
+ #@ aiowpsecurity
3802
+ msgid "Check this if you want to show a generic error message when a login attempt fails"
3803
+ msgstr ""
3804
+
3805
+ #: admin/wp-security-user-login-menu.php:222
3806
+ #@ aiowpsecurity
3807
+ msgid "Instantly Lockout Invalid Usernames"
3808
+ msgstr ""
3809
+
3810
+ #: admin/wp-security-user-login-menu.php:225
3811
+ #@ aiowpsecurity
3812
+ msgid "Check this if you want to instantly lockout login attempts with usernames which do not exist on your system"
3813
+ msgstr ""
3814
+
3815
+ #: admin/wp-security-user-login-menu.php:230
3816
+ #@ aiowpsecurity
3817
+ msgid "Notify By Email"
3818
+ msgstr ""
3819
+
3820
+ #: admin/wp-security-user-login-menu.php:233
3821
+ #@ aiowpsecurity
3822
+ msgid "Check this if you want to receive an email when someone has been locked out due to maximum failed login attempts"
3823
+ msgstr ""
3824
+
3825
+ #: admin/wp-security-user-login-menu.php:243
3826
+ #@ aiowpsecurity
3827
+ msgid "Currently Locked Out IP Address Ranges"
3828
+ msgstr ""
3829
+
3830
+ #: admin/wp-security-user-login-menu.php:248
3831
+ #, php-format
3832
+ #@ aiowpsecurity
3833
+ msgid "To see a list of all locked IP addresses and ranges go to the %s tab in the dashboard menu."
3834
+ msgstr ""
3835
+
3836
+ #: admin/wp-security-user-login-menu.php:264
3837
+ #@ aiowpsecurity
3838
+ msgid "Nonce check failed for delete all failed login records operation!"
3839
+ msgstr ""
3840
+
3841
+ #: admin/wp-security-user-login-menu.php:273
3842
+ #@ aiowpsecurity
3843
+ msgid "User Login Feature - Delete all failed login records operation failed!"
3844
+ msgstr ""
3845
+
3846
+ #: admin/wp-security-user-login-menu.php:277
3847
+ #@ aiowpsecurity
3848
+ msgid "All records from the Failed Logins table were deleted successfully!"
3849
+ msgstr ""
3850
+
3851
+ #: admin/wp-security-user-login-menu.php:292
3852
+ #@ aiowpsecurity
3853
+ msgid "This tab displays the failed login attempts for your site."
3854
+ msgstr ""
3855
+
3856
+ #: admin/wp-security-user-login-menu.php:293
3857
+ #@ aiowpsecurity
3858
+ 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."
3859
+ msgstr ""
3860
+
3861
+ #: admin/wp-security-user-login-menu.php:314
3862
+ #: admin/wp-security-user-login-menu.php:323
3863
+ #@ aiowpsecurity
3864
+ msgid "Delete All Failed Login Records"
3865
+ msgstr ""
3866
+
3867
+ #: admin/wp-security-user-login-menu.php:320
3868
+ #@ aiowpsecurity
3869
+ msgid "Click this button if you wish to delete all failed login records in one go."
3870
+ msgstr ""
3871
+
3872
+ #: admin/wp-security-user-login-menu.php:348
3873
+ #@ aiowpsecurity
3874
+ msgid "You entered a non numeric value for the logout time period field. It has been set to the default value."
3875
+ msgstr ""
3876
+
3877
+ #: admin/wp-security-user-login-menu.php:376
3878
+ #@ aiowpsecurity
3879
+ 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."
3880
+ msgstr ""
3881
+
3882
+ #: admin/wp-security-user-login-menu.php:377
3883
+ #@ aiowpsecurity
3884
+ 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."
3885
+ msgstr ""
3886
+
3887
+ #: admin/wp-security-user-login-menu.php:382
3888
+ #@ aiowpsecurity
3889
+ msgid "Force User Logout Options"
3890
+ msgstr ""
3891
+
3892
+ #: admin/wp-security-user-login-menu.php:394
3893
+ #@ aiowpsecurity
3894
+ msgid "Enable Force WP User Logout"
3895
+ msgstr ""
3896
+
3897
+ #: admin/wp-security-user-login-menu.php:397
3898
+ #@ aiowpsecurity
3899
+ msgid "Check this if you want to force a wp user to be logged out after a configured amount of time"
3900
+ msgstr ""
3901
+
3902
+ #: admin/wp-security-user-login-menu.php:401
3903
+ #@ aiowpsecurity
3904
+ msgid "Logout the WP User After XX Minutes"
3905
+ msgstr ""
3906
+
3907
+ #: admin/wp-security-user-login-menu.php:403
3908
+ #@ aiowpsecurity
3909
+ msgid "(Minutes) The user will be forced to log back in after this time period has elapased."
3910
+ msgstr ""
3911
+
3912
+ #: admin/wp-security-user-login-menu.php:426
3913
+ #@ aiowpsecurity
3914
+ msgid "This tab displays the login activity for WordPress admin accounts registered with your site."
3915
+ msgstr ""
3916
+
3917
+ #: admin/wp-security-user-login-menu.php:427
3918
+ #@ aiowpsecurity
3919
+ 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."
3920
+ msgstr ""
3921
+
3922
+ #: admin/wp-security-user-login-menu.php:464
3923
+ #@ aiowpsecurity
3924
+ msgid "Nonce check failed for users logged in list!"
3925
+ msgstr ""
3926
+
3927
+ #: admin/wp-security-user-login-menu.php:477
3928
+ #@ aiowpsecurity
3929
+ msgid "Refresh Logged In User Data"
3930
+ msgstr ""
3931
+
3932
+ #: admin/wp-security-user-login-menu.php:481
3933
+ #@ aiowpsecurity
3934
+ msgid "Refresh Data"
3935
+ msgstr ""
3936
+
3937
+ #: admin/wp-security-user-login-menu.php:487
3938
+ #@ aiowpsecurity
3939
+ msgid "This tab displays all users who are currently logged into your site."
3940
+ msgstr ""
3941
+
3942
+ #: admin/wp-security-user-login-menu.php:488
3943
+ #@ aiowpsecurity
3944
+ 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."
3945
+ msgstr ""
3946
+
3947
+ #: admin/wp-security-user-login-menu.php:493
3948
+ #@ aiowpsecurity
3949
+ msgid "Currently Logged In Users"
3950
+ msgstr ""
3951
+
3952
+ #: admin/wp-security-user-login-menu.php:558
3953
+ #@ aiowpsecurity
3954
+ msgid "The selected records were deleted successfully!"
3955
+ msgstr ""
3956
+
3957
+ #: admin/wp-security-user-login-menu.php:567
3958
+ #@ aiowpsecurity
3959
+ msgid "The selected record was deleted successfully!"
3960
+ msgstr ""
3961
+
3962
+ #: admin/wp-security-user-registration-menu.php:23
3963
+ #@ aiowpsecurity
3964
+ msgid "Manual Approval"
3965
+ msgstr ""
3966
+
3967
+ #: admin/wp-security-user-registration-menu.php:24
3968
+ #: classes/grade-system/wp-security-feature-item-manager.php:56
3969
+ #@ aiowpsecurity
3970
+ msgid "Registration Captcha"
3971
+ msgstr ""
3972
+
3973
+ #: admin/wp-security-user-registration-menu.php:112
3974
+ #@ aiowpsecurity
3975
+ msgid "User Registration Settings"
3976
+ msgstr ""
3977
+
3978
+ #: admin/wp-security-user-registration-menu.php:116
3979
+ #@ aiowpsecurity
3980
+ msgid "Manually Approve New Registrations"
3981
+ msgstr ""
3982
+
3983
+ #: admin/wp-security-user-registration-menu.php:120
3984
+ #@ aiowpsecurity
3985
+ 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."
3986
+ msgstr ""
3987
+
3988
+ #: admin/wp-security-user-registration-menu.php:121
3989
+ #@ aiowpsecurity
3990
+ 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."
3991
+ msgstr ""
3992
+
3993
+ #: admin/wp-security-user-registration-menu.php:122
3994
+ #@ aiowpsecurity
3995
+ 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."
3996
+ msgstr ""
3997
+
3998
+ #: admin/wp-security-user-registration-menu.php:138
3999
+ #@ aiowpsecurity
4000
+ msgid "Enable manual approval of new registrations"
4001
+ msgstr ""
4002
+
4003
+ #: admin/wp-security-user-registration-menu.php:141
4004
+ #@ aiowpsecurity
4005
+ msgid "Check this if you want to automatically disable all newly registered accounts so that you can approve them manually."
4006
+ msgstr ""
4007
+
4008
+ #: admin/wp-security-user-registration-menu.php:150
4009
+ #@ aiowpsecurity
4010
+ msgid "Approve Registered Users"
4011
+ msgstr ""
4012
+
4013
+ #: admin/wp-security-user-registration-menu.php:195
4014
+ #@ aiowpsecurity
4015
+ msgid "This feature allows you to add a captcha form on the WordPress registration page."
4016
+ msgstr ""
4017
+
4018
+ #: admin/wp-security-user-registration-menu.php:196
4019
+ #@ aiowpsecurity
4020
+ 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."
4021
+ msgstr ""
4022
+
4023
+ #: admin/wp-security-user-registration-menu.php:197
4024
+ #@ aiowpsecurity
4025
+ msgid "Therefore, adding a captcha form on the registration page is another effective yet simple SPAM registration prevention technique."
4026
+ msgstr ""
4027
+
4028
+ #: admin/wp-security-user-registration-menu.php:202
4029
+ #@ aiowpsecurity
4030
+ msgid "Registration Page Captcha Settings"
4031
+ msgstr ""
4032
+
4033
+ #: admin/wp-security-user-registration-menu.php:214
4034
+ #@ aiowpsecurity
4035
+ msgid "Enable Captcha On Registration Page"
4036
+ msgstr ""
4037
+
4038
+ #: admin/wp-security-user-registration-menu.php:217
4039
+ #@ aiowpsecurity
4040
+ msgid "Check this if you want to insert a captcha form on the WordPress user registration page (if you allow user registration)."
4041
+ msgstr ""
4042
+
4043
+ #: admin/wp-security-whois-menu.php:22
4044
+ #@ aiowpsecurity
4045
+ msgid "WhoIS Lookup"
4046
+ msgstr ""
4047
+
4048
+ #: admin/wp-security-whois-menu.php:74
4049
+ #@ aiowpsecurity
4050
+ msgid "WHOIS Lookup Information"
4051
+ msgstr ""
4052
+
4053
+ #: admin/wp-security-whois-menu.php:77
4054
+ #@ aiowpsecurity
4055
+ msgid "This feature allows you to look up more detailed information about an IP address or domain name by querying the WHOIS API."
4056
+ msgstr ""
4057
+
4058
+ #: admin/wp-security-whois-menu.php:83
4059
+ #@ aiowpsecurity
4060
+ msgid "Perform a WHOIS Lookup for an IP or Domain Name"
4061
+ msgstr ""
4062
+
4063
+ #: admin/wp-security-whois-menu.php:89
4064
+ #@ aiowpsecurity
4065
+ msgid "Enter IP Address or Domain Name"
4066
+ msgstr ""
4067
+
4068
+ #: admin/wp-security-whois-menu.php:91
4069
+ #@ aiowpsecurity
4070
+ msgid "Enter an IP address or domain name. Example: 111.11.12.13 OR some-domain-name.com"
4071
+ msgstr ""
4072
+
4073
+ #: admin/wp-security-whois-menu.php:95
4074
+ #@ aiowpsecurity
4075
+ msgid "Perform IP or Domain Lookup"
4076
+ msgstr ""
4077
+
4078
+ #: admin/wp-security-whois-menu.php:115
4079
+ #@ aiowpsecurity
4080
+ msgid "WHOIS lookup successfully completed. Please see the results below:"
4081
+ msgstr ""
4082
+
4083
+ #: admin/wp-security-whois-menu.php:127
4084
+ #@ aiowpsecurity
4085
+ msgid "You have entered an incorrectly formatted IP address or domain name. Please try again."
4086
+ msgstr ""
4087
+
4088
+ #: classes/grade-system/wp-security-feature-item-manager.php:29
4089
+ #@ aiowpsecurity
4090
+ msgid "Remove WP Generatore Meta Tag"
4091
+ msgstr ""
4092
+
4093
+ #: classes/grade-system/wp-security-feature-item-manager.php:38
4094
+ #@ aiowpsecurity
4095
+ msgid "Change Display Name"
4096
+ msgstr ""
4097
+
4098
+ #: classes/grade-system/wp-security-feature-item-manager.php:46
4099
+ #@ aiowpsecurity
4100
+ msgid "Lost Password Captcha"
4101
+ msgstr ""
4102
+
4103
+ #: classes/grade-system/wp-security-feature-item-manager.php:48
4104
+ #@ aiowpsecurity
4105
+ msgid "Login IP Whitelisting"
4106
+ msgstr ""
4107
+
4108
+ #: classes/grade-system/wp-security-feature-item-manager.php:54
4109
+ #@ aiowpsecurity
4110
+ msgid "Registration Approval"
4111
+ msgstr ""
4112
+
4113
+ #: classes/grade-system/wp-security-feature-item-manager.php:70
4114
+ #@ aiowpsecurity
4115
+ msgid "WordPress Files Access"
4116
+ msgstr ""
4117
+
4118
+ #: classes/grade-system/wp-security-feature-item-manager.php:74
4119
+ #@ aiowpsecurity
4120
+ msgid "IP and User Agent Blacklisting"
4121
+ msgstr ""
4122
+
4123
+ #: classes/grade-system/wp-security-feature-item-manager.php:78
4124
+ #@ aiowpsecurity
4125
+ msgid "Enable Basic Firewall"
4126
+ msgstr ""
4127
+
4128
+ #: classes/grade-system/wp-security-feature-item-manager.php:79
4129
+ #@ aiowpsecurity
4130
+ msgid "Enable Pingback Vulnerability Protection"
4131
+ msgstr ""
4132
+
4133
+ #: classes/grade-system/wp-security-feature-item-manager.php:80
4134
+ #@ aiowpsecurity
4135
+ msgid "Enable IP blocking for 404 detection"
4136
+ msgstr ""
4137
+
4138
+ #: classes/grade-system/wp-security-feature-item-manager.php:84
4139
+ #@ aiowpsecurity
4140
+ msgid "Enable Rename Login Page"
4141
+ msgstr ""
4142
+
4143
+ #: classes/grade-system/wp-security-feature-item-manager.php:90
4144
+ #@ aiowpsecurity
4145
+ msgid "Forbid Proxy Comments"
4146
+ msgstr ""
4147
+
4148
+ #: classes/grade-system/wp-security-feature-item-manager.php:91
4149
+ #@ aiowpsecurity
4150
+ msgid "Deny Bad Queries"
4151
+ msgstr ""
4152
+
4153
+ #: classes/grade-system/wp-security-feature-item-manager.php:93
4154
+ #@ aiowpsecurity
4155
+ msgid "5G Blacklist"
4156
+ msgstr ""
4157
+
4158
+ #: classes/grade-system/wp-security-feature-item-manager.php:96
4159
+ #@ aiowpsecurity
4160
+ msgid "Block Spambots"
4161
+ msgstr ""
4162
+
4163
+ #: classes/grade-system/wp-security-feature-item-manager.php:98
4164
+ #@ aiowpsecurity
4165
+ msgid "Comment Captcha"
4166
+ msgstr ""
4167
+
4168
+ #: classes/grade-system/wp-security-feature-item.php:28
4169
+ #@ aiowpsecurity
4170
+ msgid "Basic"
4171
+ msgstr ""
4172
+
4173
+ #: classes/grade-system/wp-security-feature-item.php:31
4174
+ #@ aiowpsecurity
4175
+ msgid "Intermediate"
4176
+ msgstr ""
4177
+
4178
+ #: classes/grade-system/wp-security-feature-item.php:34
4179
+ #@ aiowpsecurity
4180
+ msgid "Advanced"
4181
+ msgstr ""
4182
+
4183
+ #: classes/wp-security-backup.php:177
4184
+ #@ aiowpsecurity
4185
+ msgid "All In One WP Security - Site Database Backup"
4186
+ msgstr ""
4187
+
4188
+ #: classes/wp-security-backup.php:179
4189
+ #@ aiowpsecurity
4190
+ msgid "Attached is your latest DB backup file for site URL"
4191
+ msgstr ""
4192
+
4193
+ #: classes/wp-security-backup.php:179
4194
+ #@ aiowpsecurity
4195
+ msgid " generated on"
4196
+ msgstr ""
4197
+
4198
+ #: classes/wp-security-captcha.php:12
4199
+ #@ aiowpsecurity
4200
+ msgid "Please enter an answer in digits:"
4201
+ msgstr "Bitte löse zur Spamvermeidung diese Rechenaufgabe (in Zahlen):"
4202
+
4203
+ #: classes/wp-security-captcha.php:91
4204
+ #@ aiowpsecurity
4205
+ msgid "one"
4206
+ msgstr "eins"
4207
+
4208
+ #: classes/wp-security-captcha.php:92
4209
+ #@ aiowpsecurity
4210
+ msgid "two"
4211
+ msgstr "zwei"
4212
+
4213
+ #: classes/wp-security-captcha.php:93
4214
+ #@ aiowpsecurity
4215
+ msgid "three"
4216
+ msgstr "drei"
4217
+
4218
+ #: classes/wp-security-captcha.php:94
4219
+ #@ aiowpsecurity
4220
+ msgid "four"
4221
+ msgstr "vier"
4222
+
4223
+ #: classes/wp-security-captcha.php:95
4224
+ #@ aiowpsecurity
4225
+ msgid "five"
4226
+ msgstr "fünf"
4227
+
4228
+ #: classes/wp-security-captcha.php:96
4229
+ #@ aiowpsecurity
4230
+ msgid "six"
4231
+ msgstr "sechs"
4232
+
4233
+ #: classes/wp-security-captcha.php:97
4234
+ #@ aiowpsecurity
4235
+ msgid "seven"
4236
+ msgstr "sieben"
4237
+
4238
+ #: classes/wp-security-captcha.php:98
4239
+ #@ aiowpsecurity
4240
+ msgid "eight"
4241
+ msgstr "acht"
4242
+
4243
+ #: classes/wp-security-captcha.php:99
4244
+ #@ aiowpsecurity
4245
+ msgid "nine"
4246
+ msgstr "neun"
4247
+
4248
+ #: classes/wp-security-captcha.php:100
4249
+ #@ aiowpsecurity
4250
+ msgid "ten"
4251
+ msgstr "zehn"
4252
+
4253
+ #: classes/wp-security-captcha.php:101
4254
+ #@ aiowpsecurity
4255
+ msgid "eleven"
4256
+ msgstr "elf"
4257
+
4258
+ #: classes/wp-security-captcha.php:102
4259
+ #@ aiowpsecurity
4260
+ msgid "twelve"
4261
+ msgstr "zwölf"
4262
+
4263
+ #: classes/wp-security-captcha.php:103
4264
+ #@ aiowpsecurity
4265
+ msgid "thirteen"
4266
+ msgstr "dreizehn"
4267
+
4268
+ #: classes/wp-security-captcha.php:104
4269
+ #@ aiowpsecurity
4270
+ msgid "fourteen"
4271
+ msgstr "vierzehn"
4272
+
4273
+ #: classes/wp-security-captcha.php:105
4274
+ #@ aiowpsecurity
4275
+ msgid "fifteen"
4276
+ msgstr "fünfzehn"
4277
+
4278
+ #: classes/wp-security-captcha.php:106
4279
+ #@ aiowpsecurity
4280
+ msgid "sixteen"
4281
+ msgstr "sechzehn"
4282
+
4283
+ #: classes/wp-security-captcha.php:107
4284
+ #@ aiowpsecurity
4285
+ msgid "seventeen"
4286
+ msgstr "siebzehn"
4287
+
4288
+ #: classes/wp-security-captcha.php:108
4289
+ #@ aiowpsecurity
4290
+ msgid "eighteen"
4291
+ msgstr "achtzehn"
4292
+
4293
+ #: classes/wp-security-captcha.php:109
4294
+ #@ aiowpsecurity
4295
+ msgid "nineteen"
4296
+ msgstr "neunzehn"
4297
+
4298
+ #: classes/wp-security-captcha.php:110
4299
+ #@ aiowpsecurity
4300
+ msgid "twenty"
4301
+ msgstr "zwanzig"
4302
+
4303
+ #: classes/wp-security-file-scan.php:62
4304
+ #@ aiowpsecurity
4305
+ msgid "All In One WP Security - File change detected!"
4306
+ msgstr ""
4307
+
4308
+ #: classes/wp-security-file-scan.php:64
4309
+ #@ aiowpsecurity
4310
+ msgid "A file change was detected on your system for site URL"
4311
+ msgstr ""
4312
+
4313
+ #: classes/wp-security-file-scan.php:64
4314
+ #@ aiowpsecurity
4315
+ msgid ". Scan was generated on"
4316
+ msgstr ""
4317
+
4318
+ #: classes/wp-security-file-scan.php:65
4319
+ #@ aiowpsecurity
4320
+ msgid "Login to your site to view the scan details."
4321
+ msgstr ""
4322
+
4323
+ #: classes/wp-security-general-init-tasks.php:214
4324
+ #@ aiowpsecurity
4325
+ msgid "Please enter an answer in the CAPTCHA field."
4326
+ msgstr ""
4327
+
4328
+ #: classes/wp-security-general-init-tasks.php:224
4329
+ #@ aiowpsecurity
4330
+ msgid "Error: You entered an incorrect CAPTCHA answer. Please go back and try again."
4331
+ msgstr ""
4332
+
4333
+ #: classes/wp-security-general-init-tasks.php:252
4334
+ #: classes/wp-security-user-login.php:70
4335
+ #: classes/wp-security-user-login.php:73
4336
+ #: classes/wp-security-user-registration.php:59
4337
+ #@ aiowpsecurity
4338
+ msgid "<strong>ERROR</strong>: Your answer was incorrect - please try again."
4339
+ msgstr ""
4340
+
4341
+ #: classes/wp-security-process-renamed-login-page.php:68
4342
+ #@ aiowpsecurity
4343
+ msgid "Please log in to access the WordPress admin area."
4344
+ msgstr ""
4345
+
4346
+ #: classes/wp-security-user-login.php:43
4347
+ #@ aiowpsecurity
4348
+ msgid ""
4349
+ "<strong>ERROR</strong>: Login failed because your IP address has been blocked.\n"
4350
+ " Please contact the administrator."
4351
+ msgstr ""
4352
+
4353
+ #: classes/wp-security-user-login.php:83
4354
+ #@ aiowpsecurity
4355
+ msgid "<strong>ERROR</strong>: The username field is empty."
4356
+ msgstr ""
4357
+
4358
+ #: classes/wp-security-user-login.php:87
4359
+ #@ aiowpsecurity
4360
+ msgid "<strong>ERROR</strong>: The password field is empty."
4361
+ msgstr ""
4362
+
4363
+ #: classes/wp-security-user-login.php:107
4364
+ #: classes/wp-security-user-login.php:133
4365
+ #@ aiowpsecurity
4366
+ msgid "<strong>ERROR</strong>: Invalid login credentials."
4367
+ msgstr ""
4368
+
4369
+ #: classes/wp-security-user-login.php:110
4370
+ #@ aiowpsecurity
4371
+ msgid "<strong>ERROR</strong>: Invalid username."
4372
+ msgstr ""
4373
+
4374
+ #: classes/wp-security-user-login.php:136
4375
+ #, php-format
4376
+ #@ aiowpsecurity
4377
+ msgid "<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password Lost and Found\">Lost your password</a>?"
4378
+ msgstr ""
4379
+
4380
+ #: classes/wp-security-user-login.php:147
4381
+ #@ aiowpsecurity
4382
+ msgid "<strong>ACCOUNT PENDING</strong>: Your account is currently not active. An administrator needs to activate your account before you can login."
4383
+ msgstr ""
4384
+
4385
+ #: classes/wp-security-user-login.php:270
4386
+ #@ aiowpsecurity
4387
+ msgid "Site Lockout Notification"
4388
+ msgstr ""
4389
+
4390
+ #: classes/wp-security-user-login.php:271
4391
+ #@ aiowpsecurity
4392
+ msgid "A lockdown event has occurred due to too many failed login attempts or invalid username:"
4393
+ msgstr ""
4394
+
4395
+ #: classes/wp-security-user-login.php:272
4396
+ #@ aiowpsecurity
4397
+ msgid "Username: Unknown"
4398
+ msgstr ""
4399
+
4400
+ #: classes/wp-security-user-login.php:273
4401
+ #@ aiowpsecurity
4402
+ msgid "IP Address: "
4403
+ msgstr ""
4404
+
4405
+ #: classes/wp-security-user-login.php:274
4406
+ #@ aiowpsecurity
4407
+ msgid "IP Range: .*"
4408
+ msgstr ""
4409
+
4410
+ #: classes/wp-security-user-login.php:275
4411
+ #@ aiowpsecurity
4412
+ msgid "Log into your site's WordPress administration panel to see the duration of the lockout or to unlock the user."
4413
+ msgstr ""
4414
+
4415
+ #: classes/wp-security-user-login.php:337
4416
+ #@ aiowpsecurity
4417
+ msgid "Unlock Request Notification"
4418
+ msgstr ""
4419
+
4420
+ #: classes/wp-security-user-login.php:338
4421
+ #@ aiowpsecurity
4422
+ msgid "You have requested for the account with email address to be unlocked. Please click the link below to unlock your account:"
4423
+ msgstr ""
4424
+
4425
+ #: classes/wp-security-user-login.php:339
4426
+ #@ aiowpsecurity
4427
+ msgid "Unlock link: "
4428
+ msgstr ""
4429
+
4430
+ #: classes/wp-security-user-login.php:340
4431
+ #@ aiowpsecurity
4432
+ msgid "After clicking the above link you will be able to login to the WordPress administration panel."
4433
+ msgstr ""
4434
+
4435
+ #: classes/wp-security-user-login.php:504
4436
+ #, php-format
4437
+ #@ aiowpsecurity
4438
+ msgid "Your session has expired because it has been over %d minutes since your last login."
4439
+ msgstr ""
4440
+
4441
+ #: classes/wp-security-user-login.php:505
4442
+ #: classes/wp-security-user-login.php:509
4443
+ #@ aiowpsecurity
4444
+ msgid "Please log back in to continue."
4445
+ msgstr ""
4446
+
4447
+ #: classes/wp-security-user-login.php:508
4448
+ #@ aiowpsecurity
4449
+ msgid "You were logged out because you just changed the \"admin\" username."
4450
+ msgstr ""
4451
+
4452
+ #: classes/wp-security-user-login.php:534
4453
+ #@ aiowpsecurity
4454
+ msgid "Request Unlock"
4455
+ msgstr ""
4456
+
4457
+ #: classes/wp-security-utility-ip-address.php:82
4458
+ #: classes/wp-security-utility-ip-address.php:101
4459
+ #: classes/wp-security-utility-ip-address.php:116
4460
+ #: classes/wp-security-utility-ip-address.php:131
4461
+ #@ aiowpsecurity
4462
+ msgid " is not a valid ip address format."
4463
+ msgstr ""
4464
+
4465
+ #: classes/wp-security-utility-ip-address.php:139
4466
+ #@ aiowpsecurity
4467
+ msgid "You cannot ban your own IP address: "
4468
+ msgstr ""
4469
+
4470
+ #: classes/wp-security-utility.php:151
4471
+ #@ aiowpsecurity
4472
+ msgid "This feature can only be configured by the \"superadmin\" on the main site."
4473
+ msgstr ""
4474
+
4475
+ #: other-includes/wp-security-rename-login-feature.php:98
4476
+ #: other-includes/wp-security-unlock-request.php:13
4477
+ #@ default
4478
+ msgid "http://wordpress.org/"
4479
+ msgstr ""
4480
+
4481
+ #: other-includes/wp-security-rename-login-feature.php:99
4482
+ #: other-includes/wp-security-unlock-request.php:14
4483
+ #@ default
4484
+ msgid "Powered by WordPress"
4485
+ msgstr ""
4486
+
4487
+ #: other-includes/wp-security-rename-login-feature.php:215
4488
+ #@ default
4489
+ msgid "Are you lost?"
4490
+ msgstr ""
4491
+
4492
+ #: other-includes/wp-security-rename-login-feature.php:215
4493
+ #, php-format
4494
+ #@ default
4495
+ msgid "&larr; Back to %s"
4496
+ msgstr ""
4497
+
4498
+ #: other-includes/wp-security-rename-login-feature.php:273
4499
+ #@ default
4500
+ msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
4501
+ msgstr ""
4502
+
4503
+ #: other-includes/wp-security-rename-login-feature.php:277
4504
+ #@ default
4505
+ msgid "<strong>ERROR</strong>: There is no user registered with that email address."
4506
+ msgstr ""
4507
+
4508
+ #: other-includes/wp-security-rename-login-feature.php:294
4509
+ #@ default
4510
+ msgid "<strong>ERROR</strong>: Invalid username or e-mail."
4511
+ msgstr ""
4512
+
4513
+ #: other-includes/wp-security-rename-login-feature.php:331
4514
+ #@ default
4515
+ msgid "Password reset is not allowed for this user"
4516
+ msgstr ""
4517
+
4518
+ #: other-includes/wp-security-rename-login-feature.php:356
4519
+ #@ default
4520
+ msgid "Someone requested that the password be reset for the following account:"
4521
+ msgstr ""
4522
+
4523
+ #: other-includes/wp-security-rename-login-feature.php:358
4524
+ #, php-format
4525
+ #@ default
4526
+ msgid "Username: %s"
4527
+ msgstr ""
4528
+
4529
+ #: other-includes/wp-security-rename-login-feature.php:359
4530
+ #@ default
4531
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
4532
+ msgstr ""
4533
+
4534
+ #: other-includes/wp-security-rename-login-feature.php:360
4535
+ #@ default
4536
+ msgid "To reset your password, visit the following address:"
4537
+ msgstr ""
4538
+
4539
+ #: other-includes/wp-security-rename-login-feature.php:370
4540
+ #, php-format
4541
+ #@ default
4542
+ msgid "[%s] Password Reset"
4543
+ msgstr ""
4544
+
4545
+ #: other-includes/wp-security-rename-login-feature.php:391
4546
+ #@ default
4547
+ msgid "The e-mail could not be sent."
4548
+ msgstr ""
4549
+
4550
+ #: other-includes/wp-security-rename-login-feature.php:391
4551
+ #@ default
4552
+ msgid "Possible reason: your host may have disabled the mail() function."
4553
+ msgstr ""
4554
+
4555
+ #: other-includes/wp-security-rename-login-feature.php:496
4556
+ #@ default
4557
+ msgid "Sorry, that key does not appear to be valid."
4558
+ msgstr ""
4559
+
4560
+ #: other-includes/wp-security-rename-login-feature.php:498
4561
+ #@ default
4562
+ msgid "Sorry, that key has expired. Please try again."
4563
+ msgstr ""
4564
+
4565
+ #: other-includes/wp-security-rename-login-feature.php:518
4566
+ #@ default
4567
+ msgid "Lost Password"
4568
+ msgstr ""
4569
+
4570
+ #: other-includes/wp-security-rename-login-feature.php:518
4571
+ #@ default
4572
+ msgid "Please enter your username or email address. You will receive a link to create a new password via email."
4573
+ msgstr ""
4574
+
4575
+ #: other-includes/wp-security-rename-login-feature.php:526
4576
+ #@ default
4577
+ msgid "Username or E-mail:"
4578
+ msgstr ""
4579
+
4580
+ #: other-includes/wp-security-rename-login-feature.php:537
4581
+ #@ default
4582
+ msgid "Get New Password"
4583
+ msgstr ""
4584
+
4585
+ #: other-includes/wp-security-rename-login-feature.php:541
4586
+ #: other-includes/wp-security-rename-login-feature.php:590
4587
+ #: other-includes/wp-security-rename-login-feature.php:621
4588
+ #: other-includes/wp-security-rename-login-feature.php:703
4589
+ #@ default
4590
+ msgid "Log in"
4591
+ msgstr ""
4592
+
4593
+ #: other-includes/wp-security-rename-login-feature.php:544
4594
+ #: other-includes/wp-security-rename-login-feature.php:624
4595
+ #: other-includes/wp-security-rename-login-feature.php:699
4596
+ #: other-includes/wp-security-rename-login-feature.php:875
4597
+ #@ default
4598
+ msgid "Register"
4599
+ msgstr ""
4600
+
4601
+ #: other-includes/wp-security-rename-login-feature.php:576
4602
+ #@ default
4603
+ msgid "The passwords do not match."
4604
+ msgstr ""
4605
+
4606
+ #: other-includes/wp-security-rename-login-feature.php:590
4607
+ #@ default
4608
+ msgid "Password Reset"
4609
+ msgstr ""
4610
+
4611
+ #: other-includes/wp-security-rename-login-feature.php:590
4612
+ #@ default
4613
+ msgid "Your password has been reset."
4614
+ msgstr ""
4615
+
4616
+ #: other-includes/wp-security-rename-login-feature.php:598
4617
+ #: other-includes/wp-security-rename-login-feature.php:617
4618
+ #@ default
4619
+ msgid "Reset Password"
4620
+ msgstr ""
4621
+
4622
+ #: other-includes/wp-security-rename-login-feature.php:598
4623
+ #@ default
4624
+ msgid "Enter your new password below."
4625
+ msgstr ""
4626
+
4627
+ #: other-includes/wp-security-rename-login-feature.php:605
4628
+ #@ default
4629
+ msgid "New password"
4630
+ msgstr ""
4631
+
4632
+ #: other-includes/wp-security-rename-login-feature.php:609
4633
+ #@ default
4634
+ msgid "Confirm new password"
4635
+ msgstr ""
4636
+
4637
+ #: other-includes/wp-security-rename-login-feature.php:613
4638
+ #@ default
4639
+ msgid "Strength indicator"
4640
+ msgstr ""
4641
+
4642
+ #: other-includes/wp-security-rename-login-feature.php:614
4643
+ #@ default
4644
+ msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
4645
+ msgstr ""
4646
+
4647
+ #: other-includes/wp-security-rename-login-feature.php:676
4648
+ #@ default
4649
+ msgid "Registration Form"
4650
+ msgstr ""
4651
+
4652
+ #: other-includes/wp-security-rename-login-feature.php:676
4653
+ #@ default
4654
+ msgid "Register For This Site"
4655
+ msgstr ""
4656
+
4657
+ #: other-includes/wp-security-rename-login-feature.php:681
4658
+ #: other-includes/wp-security-rename-login-feature.php:841
4659
+ #@ default
4660
+ msgid "Username"
4661
+ msgstr ""
4662
+
4663
+ #: other-includes/wp-security-rename-login-feature.php:685
4664
+ #@ default
4665
+ msgid "E-mail"
4666
+ msgstr ""
4667
+
4668
+ #: other-includes/wp-security-rename-login-feature.php:696
4669
+ #@ default
4670
+ msgid "A password will be e-mailed to you."
4671
+ msgstr ""
4672
+
4673
+ #: other-includes/wp-security-rename-login-feature.php:704
4674
+ #: other-includes/wp-security-rename-login-feature.php:880
4675
+ #@ default
4676
+ msgid "Password Lost and Found"
4677
+ msgstr ""
4678
+
4679
+ #: other-includes/wp-security-rename-login-feature.php:704
4680
+ #: other-includes/wp-security-rename-login-feature.php:880
4681
+ #@ default
4682
+ msgid "Lost your password?"
4683
+ msgstr ""
4684
+
4685
+ #: other-includes/wp-security-rename-login-feature.php:748
4686
+ #@ default
4687
+ msgid "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href='http://www.google.com/cookies.html'>enable cookies</a> to use WordPress."
4688
+ msgstr ""
4689
+
4690
+ #: other-includes/wp-security-rename-login-feature.php:766
4691
+ #@ default
4692
+ msgid "You have logged in successfully."
4693
+ msgstr ""
4694
+
4695
+ #: other-includes/wp-security-rename-login-feature.php:800
4696
+ #@ default
4697
+ msgid "Session expired. Please log in again. You will not move away from this page."
4698
+ msgstr ""
4699
+
4700
+ #: other-includes/wp-security-rename-login-feature.php:804
4701
+ #@ default
4702
+ msgid "You are now logged out."
4703
+ msgstr ""
4704
+
4705
+ #: other-includes/wp-security-rename-login-feature.php:806
4706
+ #@ default
4707
+ msgid "User registration is currently not allowed."
4708
+ msgstr ""
4709
+
4710
+ #: other-includes/wp-security-rename-login-feature.php:808
4711
+ #@ default
4712
+ msgid "Check your e-mail for the confirmation link."
4713
+ msgstr ""
4714
+
4715
+ #: other-includes/wp-security-rename-login-feature.php:810
4716
+ #@ default
4717
+ msgid "Check your e-mail for your new password."
4718
+ msgstr ""
4719
+
4720
+ #: other-includes/wp-security-rename-login-feature.php:812
4721
+ #@ default
4722
+ msgid "Registration complete. Please check your e-mail."
4723
+ msgstr ""
4724
+
4725
+ #: other-includes/wp-security-rename-login-feature.php:814
4726
+ #@ default
4727
+ msgid "<strong>You have successfully updated WordPress!</strong> Please log back in to experience the awesomeness."
4728
+ msgstr ""
4729
+
4730
+ #: other-includes/wp-security-rename-login-feature.php:831
4731
+ #: other-includes/wp-security-rename-login-feature.php:858
4732
+ #@ default
4733
+ msgid "Log In"
4734
+ msgstr ""
4735
+
4736
+ #: other-includes/wp-security-rename-login-feature.php:856
4737
+ #@ default
4738
+ msgid "Remember Me"
4739
+ msgstr ""
4740
+
4741
+ #: other-includes/wp-security-unlock-request.php:48
4742
+ #@ aiowpsecurity
4743
+ msgid "Please enter a valid email address"
4744
+ msgstr ""
4745
+
4746
+ #: other-includes/wp-security-unlock-request.php:59
4747
+ #@ aiowpsecurity
4748
+ msgid "User account not found!"
4749
+ msgstr ""
4750
+
4751
+ #: other-includes/wp-security-unlock-request.php:70
4752
+ #@ aiowpsecurity
4753
+ msgid "Error: No locked entry was found in the DB with your IP address range!"
4754
+ msgstr ""
4755
+
4756
+ #: other-includes/wp-security-unlock-request.php:98
4757
+ #@ aiowpsecurity
4758
+ msgid "Email Address"
4759
+ msgstr ""
4760
+
languages/aiowpsecurity-fa_IR.mo ADDED
Binary file
languages/aiowpsecurity-fa_IR.po ADDED
@@ -0,0 +1,4056 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: امنیت فراگیر وردپرس\n"
4
+ "POT-Creation-Date: 2013-12-03 12:53+1000\n"
5
+ "PO-Revision-Date: 2014-05-21 11:45+0330\n"
6
+ "Last-Translator: Amir Mousavi <xerxes1718@gmail.com>\n"
7
+ "Language-Team: Amir Mousavi <me@ameer.ir>\n"
8
+ "Language: fa_IR\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.5\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "Plural-Forms: nplurals=1; plural=0;\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:156
19
+ msgid "WP Security"
20
+ msgstr "امنیت فراگیر وردپرس"
21
+
22
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:157
23
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:22
24
+ msgid "Dashboard"
25
+ msgstr "پیشخوان امنیت"
26
+
27
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:158
28
+ msgid "Settings"
29
+ msgstr "تنظیمات"
30
+
31
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:159
32
+ msgid "User Accounts"
33
+ msgstr "حساب های کاربری"
34
+
35
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:160
36
+ msgid "User Login"
37
+ msgstr "ورود کاربران"
38
+
39
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:161
40
+ msgid "User Registration"
41
+ msgstr "نام‌نویسی کاربران"
42
+
43
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:162
44
+ msgid "Database Security"
45
+ msgstr "امنیت پایگاه داده"
46
+
47
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:166
48
+ msgid "Filesystem Security"
49
+ msgstr "امنیت فایل‌های سیستم"
50
+
51
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:168
52
+ msgid "WHOIS Lookup"
53
+ msgstr "مراجعه به WHOIS"
54
+
55
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:172
56
+ msgid "Blacklist Manager"
57
+ msgstr "مدیریت فهرست سیاه"
58
+
59
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:177
60
+ msgid "Firewall"
61
+ msgstr "دیوار آتش"
62
+
63
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:179
64
+ msgid "SPAM Prevention"
65
+ msgstr "جلوگیری از اسپم"
66
+
67
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:183
68
+ msgid "Scanner"
69
+ msgstr "اسکنر"
70
+
71
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:185
72
+ msgid "Maintenance"
73
+ msgstr "حالت تعمیر"
74
+
75
+ #: all-in-one-wp-security/admin/wp-security-admin-menu.php:43
76
+ msgid "Settings successfully updated."
77
+ msgstr "تنظیمات با موفقیت به روز رسانی شد!"
78
+
79
+ #: all-in-one-wp-security/admin/wp-security-admin-menu.php:50
80
+ msgid "The selected record(s) deleted successfully!"
81
+ msgstr "رکورد(های) انتخابی با موفقیت پاک شد(ند)!"
82
+
83
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:22
84
+ msgid "Ban Users"
85
+ msgstr "ممنوع کردن کاربران"
86
+
87
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:80
88
+ msgid "Nonce check failed for save blacklist settings!"
89
+ msgstr "بررسی Nonce برای ذخیره فهرست سیاه، ناموفق بود!"
90
+
91
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:132
92
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:147
93
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:400
94
+ msgid ""
95
+ "The plugin was unable to write to the .htaccess file. Please edit file "
96
+ "manually."
97
+ msgstr ""
98
+ "افزونه قادر به نوشتن در فایل htaccess. نیست. لطفا فایل را به صورت دستی "
99
+ "ویرایش کنید."
100
+
101
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:139
102
+ msgid "Ban IPs or User Agents"
103
+ msgstr "ممنوعیت IP یا نرم افزار نماینده کاربران (User Agents)"
104
+
105
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:142
106
+ msgid ""
107
+ "The All In One WP Security Blacklist feature gives you the option of banning "
108
+ "certain host IP addresses or ranges and also user agents."
109
+ msgstr ""
110
+ "فهرست سیاه AIOWP به شما این امکان را می دهد تا یک میزبان IP مشخص یا یک رنج "
111
+ "IP یا یک نرم افزار خاص را مسدود کنید."
112
+
113
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:143
114
+ msgid ""
115
+ "This feature will deny total site access for users which have IP addresses "
116
+ "or user agents matching those which you have configured in the settings "
117
+ "below."
118
+ msgstr ""
119
+ "این ویژگی دسترسی کامل به سایت را برای کاربرانی که IP یا نرم افزار مشخص شده "
120
+ "در پایین را دارند، قطع می کند."
121
+
122
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:144
123
+ msgid ""
124
+ "The plugin achieves this by making appropriate modifications to your ."
125
+ "htaccess file."
126
+ msgstr "افزونه برای رسیدن به این هدف تغییراتی در فایل .htaccess شما می دهد."
127
+
128
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:145
129
+ msgid ""
130
+ "By blocking people via the .htaccess file your are using the most secure "
131
+ "first line of defence which denies all access to blacklisted visitors as "
132
+ "soon as they hit your hosting server."
133
+ msgstr ""
134
+ "با مسدود کردن مردم از طریق فایل htaccess. شما از محکم ترین خط دفاعی اولیه "
135
+ "استفاده می کنید؛ این خط دفاعی دسترسی کامل بازدیدکنندگان ممنوعه را قطع می کند."
136
+
137
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:151
138
+ msgid "IP Hosts and User Agent Blacklist Settings"
139
+ msgstr "ساماندهی فهرست سیاه میزبان های IP و نرم افزارهای نماینده کاربر"
140
+
141
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:162
142
+ msgid "Enable IP or User Agent Blacklisting"
143
+ msgstr "فعال سازی فهرست سیاه برای IP یا نرم افزار نماینده کاربری"
144
+
145
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:165
146
+ msgid ""
147
+ "Check this if you want to enable the banning (or blacklisting) of selected "
148
+ "IP addresses and/or user agents specified in the settings below"
149
+ msgstr ""
150
+ "این گزینه برای را برای فعال‌سازی ممنوعیت IPها/نرم افزارهای نماینده کاربر تیک "
151
+ "بزنید."
152
+
153
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:169
154
+ msgid "Enter IP Addresses:"
155
+ msgstr "آدرس های IP را وارد کنید:"
156
+
157
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:173
158
+ msgid "Enter one or more IP addresses or IP ranges."
159
+ msgstr "یک یا چند IP یا رنج IP را وارد کنید."
160
+
161
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:174
162
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:194
163
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:271
164
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:288
165
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:147
166
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:177
167
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:308
168
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:338
169
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:369
170
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:397
171
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:426
172
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:514
173
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:669
174
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:703
175
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:726
176
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:747
177
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:174
178
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:259
179
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:456
180
+ msgid "More Info"
181
+ msgstr "اطلاعات بیشتر"
182
+
183
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:177
184
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:459
185
+ msgid "Each IP address must be on a new line."
186
+ msgstr "هر IP آدرس می بایست در یک خط جدید وارد شود."
187
+
188
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:178
189
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:460
190
+ msgid ""
191
+ "To specify an IP range use a wildcard \"*\" character. Acceptable ways to "
192
+ "use wildcards is shown in the examples below:"
193
+ msgstr ""
194
+ "برای مشخص کردن یک رنج IP از Wildcard \"*\" استفاده کنید. روش های درست "
195
+ "استفاده از Wildcardها در نمونه های زیر نشان داده شده است:"
196
+
197
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:179
198
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:461
199
+ msgid "Example 1: 195.47.89.*"
200
+ msgstr "نمونه یک : *.195.47.89"
201
+
202
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:180
203
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:462
204
+ msgid "Example 2: 195.47.*.*"
205
+ msgstr "نمونه دو : *.*.195.47"
206
+
207
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:181
208
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:463
209
+ msgid "Example 3: 195.*.*.*"
210
+ msgstr "نمونه سه : *.*.*.195"
211
+
212
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:188
213
+ msgid "Enter User Agents:"
214
+ msgstr "نرم افزارهای نماینده کاربر را وارد کنید:"
215
+
216
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:193
217
+ msgid "Enter one or more user agent strings."
218
+ msgstr "یک یا چند نرم افزار نماینده کاربری را وارد کنید."
219
+
220
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:197
221
+ msgid "Each user agent string must be on a new line."
222
+ msgstr "هر نرم افزار نماینده کاربری می بایست در یک خط جدید وارد شود."
223
+
224
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:198
225
+ msgid "Example 1 - A single user agent string to block:"
226
+ msgstr "نمونه یک : یک نرم افزار نماینده کاربری برای مسدود کردن"
227
+
228
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:200
229
+ msgid "Example 2 - A list of more than 1 user agent strings to block"
230
+ msgstr "نمونه دو: یک لیست از نرم افزارهای نماینده کاربری برای مسدود کردن"
231
+
232
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:208
233
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:347
234
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:309
235
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:231
236
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:497
237
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:189
238
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:232
239
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:336
240
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:470
241
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:628
242
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:146
243
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:221
244
+ msgid "Save Settings"
245
+ msgstr "ذخیره تنظیمات"
246
+
247
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:23
248
+ msgid "System Info"
249
+ msgstr "اطلاعات سیستم"
250
+
251
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:73
252
+ msgid "For information, updates and documentation, please visit the"
253
+ msgstr "برای اطلاعات، بروز رسانی ها و راهنمای استفاده، لطفا برگه"
254
+
255
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:73
256
+ msgid "AIO WP Security & Firewall Plugin"
257
+ msgstr "افزونه امنیت فراگیر و دیوار آتش وردپرس"
258
+
259
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:73
260
+ msgid "Page"
261
+ msgstr "را ببینید"
262
+
263
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:74
264
+ msgid "Follow us"
265
+ msgstr "ما را دنبال کنید"
266
+
267
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:74
268
+ msgid ""
269
+ "Twitter, Google+ or via Email to stay upto date about the new security "
270
+ "features of this plugin."
271
+ msgstr ""
272
+ "توییتر، گوگل پلاس و یا از طریق ایمیل تا از ویژگی‌های جدید امنیتی این افزونه "
273
+ "با خبر باشید."
274
+
275
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:88
276
+ msgid "Security Strength Meter"
277
+ msgstr "نشانگر میزان امنیت"
278
+
279
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:117
280
+ msgid "Total Achievable Points: "
281
+ msgstr "همه امتیازهای قابل کسب:"
282
+
283
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:119
284
+ msgid "Current Score of Your Site: "
285
+ msgstr "امتیاز کنونی سایت شما:"
286
+
287
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:129
288
+ msgid "Security Points Breakdown"
289
+ msgstr "تفکیک امتیازهای امنیتی"
290
+
291
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:170
292
+ msgid "Critical Feature Status"
293
+ msgstr "وضعیت ویژگی‌های مهم"
294
+
295
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:174
296
+ msgid ""
297
+ "Below is the current status of the critical features that you should "
298
+ "activate on your site to achieve a minimum level of recommended security"
299
+ msgstr ""
300
+ "در زیر وضعیت کنونی ویژگی‌های مهم را می بینید که برای رسیدن به سطح حداقل امنیت "
301
+ "باید آنها را فعال کنید."
302
+
303
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:178
304
+ msgid "Admin Username"
305
+ msgstr "نام کاربری سرپرست"
306
+
307
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:193
308
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:27
309
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:39
310
+ msgid "Login Lockdown"
311
+ msgstr "قفل ورود"
312
+
313
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:208
314
+ msgid "File Permission"
315
+ msgstr "اجازه دسترسی به فایل"
316
+
317
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:223
318
+ msgid "Basic Firewall"
319
+ msgstr "دیوار آتش آغازین"
320
+
321
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:241
322
+ msgid "Maintenance Mode Status"
323
+ msgstr "وضعیت حالت تعمیر"
324
+
325
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:245
326
+ msgid ""
327
+ "Maintenance mode is currently enabled. Remember to turn it off when you are "
328
+ "done"
329
+ msgstr ""
330
+ "حالت تعمیر فعال است. به یاد داشته باشید پس از اتمام کارتان آن را خاموش کنید."
331
+
332
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:248
333
+ msgid "Maintenance mode is currently off."
334
+ msgstr "حالت تعمیر خاموش است."
335
+
336
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:252
337
+ msgid "Maintenance Mode"
338
+ msgstr "حالت تعمیر"
339
+
340
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:291
341
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:33
342
+ msgid "Logged In Users"
343
+ msgstr "کاربران وارد شده"
344
+
345
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:301
346
+ msgid "Number of users currently logged in site-wide is:"
347
+ msgstr "تعداد کاربرانی که هم اکنون در سایت وارد شده اند:"
348
+
349
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:302
350
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:324
351
+ #, php-format
352
+ msgid "Go to the %s menu to see more details"
353
+ msgstr "برای مشاهده جزییات بیشتر به فهرست %s بروید"
354
+
355
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:307
356
+ msgid "There are no other site-wide users currently logged in."
357
+ msgstr "هم اکنون هیچ کاربر دیگری در سایت وارد نشده است."
358
+
359
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:323
360
+ msgid "Number of users currently logged into your site is:"
361
+ msgstr "تعداد کاربرانی که در حال حاضر در سایت هستند."
362
+
363
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:329
364
+ msgid "There are no other users currently logged in."
365
+ msgstr "هم اکنون هیچ کاربر دیگری در سایت حضور ندارد."
366
+
367
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:340
368
+ msgid "Spread the Word"
369
+ msgstr "گسترش این افزونه"
370
+
371
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:343
372
+ msgid ""
373
+ "We are working to make your WordPress site more secure. Please support us, "
374
+ "here is how:"
375
+ msgstr ""
376
+ "ما کار می کنیم تا سایت وردپرسی شما را امن‌تر کنیم. لطفا از اینجا ما را حمایت "
377
+ "کنید:"
378
+
379
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:367
380
+ msgid "Site Info"
381
+ msgstr "اطلاعات سایت"
382
+
383
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:369
384
+ msgid "Plugin Version"
385
+ msgstr "نسخه افزونه"
386
+
387
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:370
388
+ msgid "WP Version"
389
+ msgstr "نسخه وردپرس"
390
+
391
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:372
392
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:374
393
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:395
394
+ msgid "Version"
395
+ msgstr "نسخه"
396
+
397
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:373
398
+ msgid "Table Prefix"
399
+ msgstr "پیشوند جدول"
400
+
401
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:375
402
+ msgid "Session Save Path"
403
+ msgstr "محل ذخیره جلسه"
404
+
405
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:377
406
+ msgid "Server Name"
407
+ msgstr "نام سِرور"
408
+
409
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:378
410
+ msgid "Cookie Domain"
411
+ msgstr "دامنه کوکی"
412
+
413
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:379
414
+ msgid "Library Present"
415
+ msgstr "کتابخانه موجود"
416
+
417
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:380
418
+ msgid "Debug File Write Permissions"
419
+ msgstr "اشکال یابی مجوزهای نوشتن فایل"
420
+
421
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:384
422
+ msgid "Active Plugins"
423
+ msgstr "افزونه های فعال"
424
+
425
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:394
426
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:130
427
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:149
428
+ msgid "Name"
429
+ msgstr "نام"
430
+
431
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:396
432
+ msgid "Plugin URL"
433
+ msgstr "آدرس افزونه"
434
+
435
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:23
436
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:57
437
+ msgid "DB Prefix"
438
+ msgstr "پیشوند دیتابیس"
439
+
440
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:24
441
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:59
442
+ msgid "DB Backup"
443
+ msgstr "فایل پشتیبان دیتابیس"
444
+
445
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:84
446
+ msgid "Nonce check failed for DB prefix change operation!"
447
+ msgstr "بررسی Nonce برای تغییر پیشوند دیتابیس ناموفق بود!"
448
+
449
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:92
450
+ msgid ""
451
+ "The plugin has detected that it cannot write to the wp-config.php file. This "
452
+ "feature can only be used if the plugin can successfully write to the wp-"
453
+ "config.php file."
454
+ msgstr ""
455
+ "افزونه نمی تواند در فایل wp-config.php کدنویسی کند. این ویژگی تنها در صورتی "
456
+ "کار می کند که افزونه بتواند در فایل wp-config.php کدنویسی کند."
457
+
458
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:105
459
+ msgid "Please enter a value for the DB prefix."
460
+ msgstr "لطفا یک مقدار(Value) برای پیشوند دیتابیس وارد کنید."
461
+
462
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:114
463
+ msgid ""
464
+ "<strong>ERROR</strong>: The table prefix can only contain numbers, letters, "
465
+ "and underscores."
466
+ msgstr ""
467
+ "<strong>خطا</strong>: پیشوند جدول، فقط باید شامل حروف،عدد و یا Underline "
468
+ "باشد."
469
+
470
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:122
471
+ msgid "Change Database Prefix"
472
+ msgstr "تغییر پیشوند دیتابیس"
473
+
474
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:125
475
+ msgid ""
476
+ "Your WordPress DB is the most important asset of your website because it "
477
+ "contains a lot of your site's precious information."
478
+ msgstr ""
479
+ "دیتابیس وردپرس شما،مهم ترین قسمت سایت شماست؛ زیرا بخش ارزشمند اطلاعات سایت "
480
+ "شما در آن است."
481
+
482
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:126
483
+ msgid ""
484
+ "The DB is also a target for hackers via methods such as SQL injections and "
485
+ "malicious and automated code which targets certain tables."
486
+ msgstr ""
487
+ "دیتابیس همچنین هدفی برای هکرها می باشد که از طریق SQL Injections یا کدهای "
488
+ "خرابکارانه خودکار جدولهای خاصی را هدف می گیرند."
489
+
490
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:127
491
+ msgid ""
492
+ "One way to add a layer of protection for your DB is to change the default "
493
+ "WordPress table prefix from \"wp_\" to something else which will be "
494
+ "difficult for hackers to guess."
495
+ msgstr ""
496
+ "یک راه برای حفاظت از دیتابیس، تغییر پیشوند وردپرس برای جدول ها یعنی \"wp_"
497
+ "\" ، به چیز دیگری است که حدس زدن آن برای هکرها دشوار باشد."
498
+
499
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:128
500
+ msgid ""
501
+ "This feature allows you to easily change the prefix to a value of your "
502
+ "choice or to a random value set by this plugin."
503
+ msgstr ""
504
+ "این ویژگی به شما امکان تغییر آسان پیشوند دیتابیس را می دهد؛ شما می توانید از "
505
+ "پیشوند دلخواه خودتان یا از پیشوند تصادفی افزونه استفاده کنید."
506
+
507
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:134
508
+ msgid "DB Prefix Options"
509
+ msgstr "گزینه های تغییر پیشوند دیتابیس"
510
+
511
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:145
512
+ #, php-format
513
+ msgid "It is recommended that you perform a %s before using this feature"
514
+ msgstr "توصیه می شود قبل از استفاده از این ویژگی %s"
515
+
516
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:154
517
+ msgid "Current DB Table Prefix"
518
+ msgstr "پیشوند فعلی جدول های دیتابیس"
519
+
520
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:160
521
+ msgid ""
522
+ "Your site is currently using the default WordPress DB prefix value of \"wp_"
523
+ "\". \n"
524
+ " To increase your site's security you should "
525
+ "consider changing the DB prefix value to another value."
526
+ msgstr ""
527
+ "سایت شما هم اکنون از پیشوند وردپرس یعنی \"wp_\" برای دیتابیس استفاده می "
528
+ "کند.\n"
529
+ "برای افزایش امنیت سایت،بهتر است شما یک پیشوند دیگر انتخاب کنید"
530
+
531
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:167
532
+ msgid "Generate New DB Table Prefix"
533
+ msgstr "ساختن یک پیشوند تصادفی جدید برای دیتابیس"
534
+
535
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:170
536
+ msgid ""
537
+ "Check this if you want the plugin to generate a random 6 character string "
538
+ "for the table prefix"
539
+ msgstr ""
540
+ "اگر می خواهید افزونه یک پیشوند تصادفی 6 کاراکتری برای دیتابیس شما بسازد، این "
541
+ "گزینه را تیک بزنید."
542
+
543
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:171
544
+ msgid "OR"
545
+ msgstr "یا"
546
+
547
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:173
548
+ msgid ""
549
+ "Choose your own DB prefix by specifying a string which contains letters and/"
550
+ "or numbers and/or underscores. Example: xyz_"
551
+ msgstr ""
552
+ "خودتان یک پیشوند دلخواه به زبان انگلیسی برای دیتابیس بنویسید(پیشوند می تواند "
553
+ "شامل حروف،عدد و یا Underline باشد)"
554
+
555
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:177
556
+ msgid "Change DB Prefix"
557
+ msgstr "تغییر پیشوند دیتابیس"
558
+
559
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:198
560
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:86
561
+ msgid "Nonce check failed for manual DB backup operation!"
562
+ msgstr "بررسی Nonce برای پشتیبان گیری دستی از دیتابیس، ناموفق بود!"
563
+
564
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:215
565
+ msgid ""
566
+ "DB Backup was successfully completed! You will receive the backup file via "
567
+ "email if you have enabled \"Send Backup File Via Email\", otherwise you can "
568
+ "retrieve it via FTP from the following directory:"
569
+ msgstr ""
570
+ "فایل پشتیبان دیتابیس با موفقیت ایجاد شد. شما یک نسخه از فایل پشتیبان را از "
571
+ "طریق ایمیل دریافت می کنید به شرط اینکه گزینه \"ارسال فایل پشتیبان از طریق "
572
+ "ایمیل\" را فعال کرده باشید. در غیر این صورت شما می توانید فایل را در آدرس "
573
+ "زیر بیابید:"
574
+
575
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:217
576
+ msgid "Your DB Backup File location: "
577
+ msgstr "محل قرارگیری فایل پشتیبان دیتابیس:"
578
+
579
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:225
580
+ msgid "DB Backup failed. Please check the permissions of the backup directory."
581
+ msgstr ""
582
+ "پشتیبان گیری ناموفق بود! لطفا مجوزهای مسیر ذخیره فایل پشتیبان را بررسی کنید."
583
+
584
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:242
585
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:126
586
+ msgid ""
587
+ "You entered a non numeric value for the \"backup time interval\" field. It "
588
+ "has been set to the default value."
589
+ msgstr ""
590
+ "شما یک مقدار غیر عددی برای \"بازه زمانی پشتیبان گیری\" وارد کرده اید. بازه "
591
+ "زمانی روی مقدار پیش‌فرض تنظیم می شود."
592
+
593
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:249
594
+ msgid ""
595
+ "You entered a non numeric value for the \"number of backup files to keep\" "
596
+ "field. It has been set to the default value."
597
+ msgstr ""
598
+ "شما یک مقدار غیر عددی برای \"تعداد فایلهای پشتیبانی که باید نگه داشته شود\" "
599
+ "وارد کرده اید. تعداد فایل ها روی مقدار پیش‌فرض تنظیم می شود."
600
+
601
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:256
602
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:156
603
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:121
604
+ msgid ""
605
+ "You have entered an incorrect email address format. It has been set to your "
606
+ "WordPress admin email as default."
607
+ msgstr ""
608
+ "شما یک آدرس ایمیل نامعتبر وارد کرده اید. آدرس ایمیل طبق آدرس ایمیل پیش‌فرض "
609
+ "سایت تنظیم می شود."
610
+
611
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:262
612
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:162
613
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:219
614
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:127
615
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:581
616
+ msgid "Attention!"
617
+ msgstr "توجه!"
618
+
619
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:289
620
+ msgid "Manual Backup"
621
+ msgstr "پشتیبان گیری دستی"
622
+
623
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:295
624
+ msgid "To create a new DB backup just click on the button below."
625
+ msgstr "برای ایجاد یک پشتیبان دیتابیس روی کلید زیر کلیک کنید"
626
+
627
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:298
628
+ msgid "Create DB Backup Now"
629
+ msgstr "ایجاد فایل پشتیبان دیتابیس"
630
+
631
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:302
632
+ msgid "Automated Scheduled Backups"
633
+ msgstr "پشتیبان گیری خودکار"
634
+
635
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:314
636
+ msgid "Enable Automated Scheduled Backups"
637
+ msgstr "فعال‌سازی پشتیبان گیری خودکار"
638
+
639
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:317
640
+ msgid ""
641
+ "Check this if you want the system to automatically generate backups "
642
+ "periodically based on the settings below"
643
+ msgstr ""
644
+ "برای پشتیبان گیری خودکار در بازه های زمانی مختلف، گزینه زیر را تیک بزنید."
645
+
646
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:321
647
+ msgid "Backup Time Interval"
648
+ msgstr "بازه زمانی پشتیبان گیری"
649
+
650
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:324
651
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:259
652
+ msgid "Hours"
653
+ msgstr "ساعت"
654
+
655
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:325
656
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:260
657
+ msgid "Days"
658
+ msgstr "روز"
659
+
660
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:326
661
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:261
662
+ msgid "Weeks"
663
+ msgstr "هفته"
664
+
665
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:328
666
+ msgid "Set the value for how often you would like an automated backup to occur"
667
+ msgstr ""
668
+ "برای تعیین اینکه هرچند وقت یک بار پشتیبان گیری خودکار انجام شود،یک مقدار "
669
+ "وارد کنید"
670
+
671
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:332
672
+ msgid "Number of Backup Files To Keep"
673
+ msgstr "تعداد فایل های پشتیبان که باید نگه داشته شود"
674
+
675
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:334
676
+ msgid ""
677
+ "Thie field allows you to choose the number of backup files you would like to "
678
+ "keep in the backup directory"
679
+ msgstr ""
680
+ "این قسمت به شما اجازه می دهد تعیین کنید چه تعداد فایل پشتیبان روی هاست باقی "
681
+ "بمانند."
682
+
683
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:338
684
+ msgid "Send Backup File Via Email"
685
+ msgstr "فرستادن فایل پشتیبان از طریق ایمیل"
686
+
687
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:341
688
+ msgid ""
689
+ "Check this if you want the system to email you the backup file after a DB "
690
+ "backup has been performed"
691
+ msgstr ""
692
+ "برای اینکه سیستم پس از تهیه هر پشتیبان، یک نسخه برای شما ایمیل کند، این "
693
+ "گزینه را تیک بزنید"
694
+
695
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:343
696
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:305
697
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:228
698
+ msgid "Enter an email address"
699
+ msgstr "یک آدرس ایمیل وارد کنید"
700
+
701
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:373
702
+ msgid "Starting DB prefix change operations....."
703
+ msgstr "آغاز عملیات تغییر پیشوند دیتابیس"
704
+
705
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:375
706
+ #, php-format
707
+ msgid ""
708
+ "Your WordPress system has a total of %s tables and your new DB prefix will "
709
+ "be: %s"
710
+ msgstr ""
711
+ "سیستم وردپرس شما در کل %s جدول دارد و پیشوند جدید دیتابیس شما %s خواهد بود."
712
+
713
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:381
714
+ #: all-in-one-wp-security/classes/wp-security-utility.php:206
715
+ msgid ""
716
+ "Failed to make a backup of the wp-config.php file. This operation will not "
717
+ "go ahead."
718
+ msgstr "خطا در پشتیبان گیری از فایل wp-config.php. عملیات متوقف شد."
719
+
720
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:385
721
+ msgid "A backup copy of your wp-config.php file was created successfully!"
722
+ msgstr "یک پشتیبان از فایل wp-config.php شما با موفقیت ایجاد شد!"
723
+
724
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:408
725
+ #, php-format
726
+ msgid "%s table name update failed"
727
+ msgstr "بروزرسانی نام جدول %s ناموفق بود"
728
+
729
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:420
730
+ #, php-format
731
+ msgid "Please change the prefix manually for the above tables to: %s"
732
+ msgstr "لطفا پیشوند جدول(های) فوق را به صورت دستی به %s تغییر دهید."
733
+
734
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:423
735
+ #, php-format
736
+ msgid "%s tables had their prefix updated successfully!"
737
+ msgstr "%s جدول، پیشوندشان به خوبی بروز شد."
738
+
739
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:438
740
+ msgid "wp-config.php file was updated successfully!"
741
+ msgstr "فایل wp-config.php به خوبی بروز شد!"
742
+
743
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:441
744
+ #, php-format
745
+ msgid ""
746
+ "The \"wp-config.php\" file was not able to be modified. Please modify this "
747
+ "file manually using your favourite editor and search \n"
748
+ " for variable \"$table_prefix\" and assign the following "
749
+ "value to that variable: %s"
750
+ msgstr ""
751
+ "فایل wp-config.php قابل ویرایش نیست. لطفا به صورت دستی فایل را باز کرده \n"
752
+ " و متغیر \"$table_prefix\" را بیابید. سپس مقدار آن را به %s تغییر دهید."
753
+
754
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:462
755
+ msgid "There was an error when updating the options table."
756
+ msgstr "هنگام بروز کردن جدول Options خطایی رخ داد."
757
+
758
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:466
759
+ msgid ""
760
+ "The options table records which had references to the old DB prefix were "
761
+ "updated successfully!"
762
+ msgstr ""
763
+ "رکوردهای جدول Options که به پیشوند قبلی دیتابیس ارجاع داشتند، به خوبی بروز "
764
+ "شدند!"
765
+
766
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:491
767
+ #, php-format
768
+ msgid ""
769
+ "Error updating user_meta table where new meta_key = %s, old meta_key = %s "
770
+ "and user_id = %s."
771
+ msgstr ""
772
+ "خطا در بروز رسانی جدول user_meta در جایی که meta_key جدید = %s ، meta_key "
773
+ "قدیمی = %s و user_id = %s است."
774
+
775
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:497
776
+ msgid ""
777
+ "The usermeta table records which had references to the old DB prefix were "
778
+ "updated successfully!"
779
+ msgstr ""
780
+ "رکوردهای جدول Usermeta که به پیشوند قبلی دیتابیس ارجاع داشتند، به خوبی بروز "
781
+ "شدند!"
782
+
783
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:499
784
+ msgid "DB prefix change tasks have been completed."
785
+ msgstr "عملیات تغییر پیشوند دیتابیس با موفقیت به پایان رسید."
786
+
787
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:22
788
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:94
789
+ msgid "File Change Detection"
790
+ msgstr "شناسایی تغییر فایل"
791
+
792
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:93
793
+ msgid "Nonce check failed for manual file change detection scan operation!"
794
+ msgstr "بررسی Nonce برای شناسایی دستی تغییر فایل ناموفق بود!"
795
+
796
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:100
797
+ msgid ""
798
+ "The plugin has detected that this is your first file change detection scan. "
799
+ "The file details from this scan will be used to detect file changes for "
800
+ "future scans!"
801
+ msgstr ""
802
+ "این نخستین اسکن شما برای تغییر فایل است.برای شناسایی تغییر فایل در اسکن های "
803
+ "آینده از جزییات این اسکن استفاده می شود."
804
+
805
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:194
806
+ msgid ""
807
+ "NEW SCAN COMPLETED: The plugin has detected that you have made changes to "
808
+ "the \"File Types To Ignore\" or \"Files To Ignore\" fields.\n"
809
+ " In order to ensure that future scan results are "
810
+ "accurate, the old scan data has been refreshed."
811
+ msgstr ""
812
+ "اسکن جدید انجام شد. افزونه تشخیص داده که شما تغییراتی در \"فرمت هایی که باید "
813
+ "چشم پوشی شود\" یا \"فایل هایی که باید چشم پوشی شود\" ایجاد کرده اید.\n"
814
+ "برای اطمینان از اینکه نتایج اسکن های آینده دقیق خواهند بود، نتایج اسکن قدیمی "
815
+ "بروز شد."
816
+
817
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:204
818
+ msgid ""
819
+ "All In One WP Security & Firewall has detected that there was a change in "
820
+ "your host's files."
821
+ msgstr "امنیت فراگیر وردپرس یک تغییر در فایل‌های هاست شما شناسایی کرده است."
822
+
823
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:206
824
+ msgid "View Scan Details & Clear This Message"
825
+ msgstr "مشاهده نتایج اسکن و پاک کردن این پیغام"
826
+
827
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:215
828
+ msgid ""
829
+ "If given an opportunity hackers can insert their code or files into your "
830
+ "system which they can then use to carry out malicious acts on your site."
831
+ msgstr ""
832
+ "اگر به هکرها امکان داده شود آنها می توانند فایلها یا کدهای خود را وارد "
833
+ "سیستم شما کرده و از طریق آنها اعمال خرابکارانه روی سایت شما انجام دهند."
834
+
835
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:216
836
+ msgid ""
837
+ "Being informed of any changes in your files can be a good way to quickly "
838
+ "prevent a hacker from causing damage to your website."
839
+ msgstr ""
840
+ "آگاهی همیشگی از تغییر فایل‌ها راه بسیار خوبی برای جلوگیری از خرابکاری یک هکر "
841
+ "در سایت شماست."
842
+
843
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:217
844
+ msgid ""
845
+ "In general, WordPress core and plugin files and file types such as \".php\" "
846
+ "or \".js\" should not change often and when they do, it is important that "
847
+ "you are made aware when a change occurs and which file was affected."
848
+ msgstr ""
849
+ "معمولا فایل‌های هسته وردپرس،فایل های افزونه‌ها و همچنین فایلهایی مانند \".php"
850
+ "\" یا \".js\" خیلی کم تغییر می‌کنند و این مهم است که هرگاه این فایلها تغییر "
851
+ "کردند بلافاصله شما باخبر شوید."
852
+
853
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:218
854
+ msgid ""
855
+ "The \"File Change Detection Feature\" will notify you of any file change "
856
+ "which occurs on your system, including the addition and deletion of files by "
857
+ "performing a regular automated or manual scan of your system's files."
858
+ msgstr ""
859
+ " \"ویژگی تشخیص تغییر فایل‌ها\" با انجام یک اسکن خودکار یا دستی، هر گاه تغییری "
860
+ "شامل پاک شدن یا افزوده شدن در فایل های شما اتفاق بیفتد، شما را با خبر می "
861
+ "سازد."
862
+
863
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:219
864
+ msgid ""
865
+ "This feature also allows you to exclude certain files or folders from the "
866
+ "scan in cases where you know that they change often as part of their normal "
867
+ "operation. (For example log files and certain caching plugin files may "
868
+ "change often and hence you may choose to exclude such files from the file "
869
+ "change detection scan)"
870
+ msgstr ""
871
+ "این ویژگی همچنین به شما اجازه می دهد تا فایلها و پوشه های مشخصی را (که می "
872
+ "دانید اغلب تغییر می کنند) از لیست اسکن خارج کنید.(برای مثال فایلهای گزارش "
873
+ "(Log) )"
874
+
875
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:224
876
+ msgid "Manual File Change Detection Scan"
877
+ msgstr "اسکن شناسایی تغییر فایل به صورت دستی"
878
+
879
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:230
880
+ msgid ""
881
+ "To perform a manual file change detection scan click on the button below."
882
+ msgstr ""
883
+ "برای انجام یک اسکن شناسایی تغییر فایل به صورت دستی روی دکمه زیر کلیک کنید."
884
+
885
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:233
886
+ msgid "Perform Scan Now"
887
+ msgstr "انجام اسکن"
888
+
889
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:237
890
+ msgid "File Change Detection Settings"
891
+ msgstr "تنظیمات شناسایی تغییر فایل"
892
+
893
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:249
894
+ msgid "Enable Automated File Change Detection Scan"
895
+ msgstr "فعال کردن شناسایی تغییر فایل به طور خودکار"
896
+
897
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:252
898
+ msgid ""
899
+ "Check this if you want the system to automatically/periodically scan your "
900
+ "files to check for file changes based on the settings below"
901
+ msgstr ""
902
+ "برای اسکن خودکار/زمان‌بندی شده فایل ها بر اساس تنظیمات زیر، این گزینه را تیک "
903
+ "بزنید"
904
+
905
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:256
906
+ msgid "Scan Time Interval"
907
+ msgstr "بازه زمانی اسکن"
908
+
909
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:263
910
+ msgid "Set the value for how often you would like a scan to occur"
911
+ msgstr "تعیین کنید هر چند وقت یک بار اسکن انجام شود "
912
+
913
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:267
914
+ msgid "File Types To Ignore"
915
+ msgstr "فرمت هایی که باید چشم پوشی شود"
916
+
917
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:270
918
+ msgid ""
919
+ "Enter each file type or extension on a new line which you wish to exclude "
920
+ "from the file change detection scan."
921
+ msgstr "در هر خط فرمت هایی که می خواهید اسکن نشوند را وارد کنید"
922
+
923
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:274
924
+ msgid ""
925
+ "You can exclude file types from the scan which would not normally pose any "
926
+ "security threat if they were changed. These can include things such as image "
927
+ "files."
928
+ msgstr ""
929
+ "شما می توانید فرمت فایلهایی را که تغییر آنها به طور معمول خطری برای سیستم "
930
+ "ندارد، از اسکن شدن بازدارید. برای نمونه فرمت فایلهای تصویری."
931
+
932
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:275
933
+ msgid ""
934
+ "Example: If you want the scanner to ignore files of type jpg, png, and bmp, "
935
+ "then you would enter the following:"
936
+ msgstr ""
937
+ "نمونه: اگر شما می خواهید که اسکنر فایلهایی با پسوند jpg، png و bmp را اسکن "
938
+ "نکند آنها را به شکل زیر وارد کنید:"
939
+
940
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:276
941
+ msgid "jpg"
942
+ msgstr "jpg"
943
+
944
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:277
945
+ msgid "png"
946
+ msgstr "png"
947
+
948
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:278
949
+ msgid "bmp"
950
+ msgstr "bmp"
951
+
952
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:284
953
+ msgid "Files/Directories To Ignore"
954
+ msgstr "فایل‌ها/ مسیرهایی که باید چشم پوشی شود:"
955
+
956
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:287
957
+ msgid ""
958
+ "Enter each file or directory on a new line which you wish to exclude from "
959
+ "the file change detection scan."
960
+ msgstr "در هر خط فایل‌ها و مسیرهایی را که می خواهید اسکن نشوند وارد کنید."
961
+
962
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:291
963
+ msgid ""
964
+ "You can exclude specific files/directories from the scan which would not "
965
+ "normally pose any security threat if they were changed. These can include "
966
+ "things such as log files."
967
+ msgstr ""
968
+ "شما می توانید فایلها و مسیرهایی را که تغییر آنها به طور معمول خطری برای "
969
+ "سیستم ندارد، از اسکن شدن بازدارید. برای نمونه فایلهای گزارش (Log)"
970
+
971
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:292
972
+ msgid ""
973
+ "Example: If you want the scanner to ignore certain files in different "
974
+ "directories or whole directories, then you would enter the following:"
975
+ msgstr ""
976
+ "نمونه: اگر شما می‌خواهید که اسکنر فایل های خاصی را در مسیر های مختلف و یا کل "
977
+ "مسیرها اسکن نکند، آنها را به شکل زیر وارد کنید:"
978
+
979
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:293
980
+ msgid "cache/config/master.php"
981
+ msgstr "cache/config/master.php"
982
+
983
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:294
984
+ msgid "somedirectory"
985
+ msgstr "somedirectory"
986
+
987
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:300
988
+ msgid "Send Email When Change Detected"
989
+ msgstr "هنگامی که تغییر فایل شناسایی شد به من ایمیل بفرست"
990
+
991
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:303
992
+ msgid ""
993
+ "Check this if you want the system to email you if a file change was detected"
994
+ msgstr ""
995
+ "اگر می خواهید سیستم وقتی یک تغییر فایل را شناسایی کرد به شما ایمیل بفرستد "
996
+ "این گزینه را تیک بزنید"
997
+
998
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:335
999
+ msgid "Latest File Change Scan Results"
1000
+ msgstr "واپسین نتایج تغییرات فایل"
1001
+
1002
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:344
1003
+ msgid "The following files were added to your host."
1004
+ msgstr "فایلهای زیر به هاست شما اضافه شده اند."
1005
+
1006
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:347
1007
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:368
1008
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:392
1009
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:26
1010
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:27
1011
+ msgid "File"
1012
+ msgstr "فایل"
1013
+
1014
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:348
1015
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:369
1016
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:393
1017
+ msgid "File Size"
1018
+ msgstr "اندازه فایل"
1019
+
1020
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:349
1021
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:370
1022
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:394
1023
+ msgid "File Modified"
1024
+ msgstr "اصلاح شدن فایل"
1025
+
1026
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:365
1027
+ msgid "The following files were removed from your host."
1028
+ msgstr "فایل‌های زیر از هاست شما پاک شدند."
1029
+
1030
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:389
1031
+ msgid "The following files were changed on your host."
1032
+ msgstr "فایل‌های زیر در هاست شما تغییر کرده اند"
1033
+
1034
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:26
1035
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:63
1036
+ msgid "File Permissions"
1037
+ msgstr "مجوزهای فایل"
1038
+
1039
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:27
1040
+ msgid "PHP File Editing"
1041
+ msgstr "ویرایش فایل PHP"
1042
+
1043
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:28
1044
+ msgid "WP File Access"
1045
+ msgstr "دسترسی به فایلهای وردپرس"
1046
+
1047
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:29
1048
+ msgid "Host System Logs"
1049
+ msgstr "گزارش‌های سیستم هاست"
1050
+
1051
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:96
1052
+ #, php-format
1053
+ msgid "The permissions for %s were succesfully changed to %s"
1054
+ msgstr "مجوزها برای %s به خوبی به %s تغییر کردند."
1055
+
1056
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:100
1057
+ #, php-format
1058
+ msgid "Unable to change permissions for %s!"
1059
+ msgstr "ناتوانی در تغییر مجوزها برای %s !"
1060
+
1061
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:106
1062
+ msgid "File Permissions Scan"
1063
+ msgstr "اسکن مجوزهای فایل"
1064
+
1065
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:109
1066
+ msgid ""
1067
+ "Your WordPress file and folder permission settings govern the accessability "
1068
+ "and read/write privileges of the files and folders which make up your WP "
1069
+ "installation."
1070
+ msgstr ""
1071
+ "دسترسی و اجازه خواندن و نوشتن فایل ها و پوشه هایی که وردپرس را می سازند، "
1072
+ "توسط مجوزهای فایل کنترل می شود."
1073
+
1074
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:110
1075
+ msgid ""
1076
+ "Your WP installation already comes with reasonably secure file permission "
1077
+ "settings for the filesystem."
1078
+ msgstr "نسخه وردپرس شما به صورت پیش‌فرض با تنظیمات درست مجوزهای فایل عرضه می‌شود"
1079
+
1080
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:111
1081
+ msgid ""
1082
+ "However, sometimes people or other plugins modify the various permission "
1083
+ "settings of certain core WP folders or files such that they end up making "
1084
+ "their site less secure because they chose the wrong permission values."
1085
+ msgstr ""
1086
+ "با این حال،گاهی مردم یا سایر افزونه ها تنظیمات این مجوزها را برای فایلهای "
1087
+ "هسته وردپرس به شکل نادرستی تغییر می‌دهند و این در نهایت باعث ناامن شدن سایت "
1088
+ "می شود."
1089
+
1090
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:112
1091
+ msgid ""
1092
+ "This feature will scan the critical WP core folders and files and will "
1093
+ "highlight any permission settings which are insecure."
1094
+ msgstr ""
1095
+ "این ویژگی فایل‌ها و پوشه‌های مهم هسته وردپرس را اسکن می کند؛ سپس هر تنظیمات "
1096
+ "مجوزی را که ناامن باشد مشخص می کند."
1097
+
1098
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:118
1099
+ msgid "WP Directory and File Permissions Scan Results"
1100
+ msgstr "نتایج اسکن مسیر نصب وردپرس و مجوزهای فایل"
1101
+
1102
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:131
1103
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:150
1104
+ msgid "File/Folder"
1105
+ msgstr "فایل/پوشه"
1106
+
1107
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:132
1108
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:151
1109
+ msgid "Current Permissions"
1110
+ msgstr "مجوزهای فعلی"
1111
+
1112
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:133
1113
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:152
1114
+ msgid "Recommended Permissions"
1115
+ msgstr "مجوزهای پیشنهادی"
1116
+
1117
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:134
1118
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:153
1119
+ msgid "Recommended Action"
1120
+ msgstr "کار پیشنهادی"
1121
+
1122
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:191
1123
+ msgid "Your PHP file editing settings were saved successfully."
1124
+ msgstr "تنظیمات ویرایش فایل PHP با موفقیت ذخیره شد."
1125
+
1126
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:195
1127
+ msgid ""
1128
+ "Operation failed! Unable to modify or make a backup of wp-config.php file!"
1129
+ msgstr ""
1130
+ "عملیات ناموفق بود! ناتوانی در اصلاح یا تهیه فایل پشتیبان از فایل wp-config."
1131
+ "php !"
1132
+
1133
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:201
1134
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:65
1135
+ msgid "File Editing"
1136
+ msgstr "ویرایش فایل"
1137
+
1138
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:204
1139
+ msgid ""
1140
+ "The Wordpress Dashboard by default allows administrators to edit PHP files, "
1141
+ "such as plugin and theme files."
1142
+ msgstr ""
1143
+ "پیشخوان وردپرس به طور پیش‌فرض به مدیران سایت اجازه ویرایش فایل‌های PHP (مانند "
1144
+ "فایل‌های پوسته ها و افزونه ها) را می‌دهد."
1145
+
1146
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:205
1147
+ msgid ""
1148
+ "This is often the first tool an attacker will use if able to login, since it "
1149
+ "allows code execution."
1150
+ msgstr ""
1151
+ "معمولا این نخستین راهی است که یک هکر در صورت ورود به سایت از آن استفاده می "
1152
+ "کند؛ زیرا از این طریق می تواند کدهای خودش را اجرا کند.\v"
1153
+
1154
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:206
1155
+ msgid ""
1156
+ "This feature will disable the ability for people to edit PHP files via the "
1157
+ "dashboard."
1158
+ msgstr ""
1159
+ "این ویژگی امکان ویرایش فایل های PHP از طریق پیشخوان وردپرس را غیرفعال می کند."
1160
+
1161
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:212
1162
+ msgid "Disable PHP File Editing"
1163
+ msgstr "غیرفعال کردن ویرایش فایل PHP"
1164
+
1165
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:224
1166
+ msgid "Disable Ability To Edit PHP Files"
1167
+ msgstr "غیرفعال کردن ویرایش فایل‌های PHP"
1168
+
1169
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:227
1170
+ msgid ""
1171
+ "Check this if you want to remove the ability for people to edit PHP files "
1172
+ "via the WP dashboard"
1173
+ msgstr ""
1174
+ "اگر می خواهید اجازه ویرایش فایل‌های PHP از طریق پیشخوان وردپرس را غیرفعال "
1175
+ "کنید این گزینه را تیک بزنید."
1176
+
1177
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:271
1178
+ msgid ""
1179
+ "You have successfully saved the Prevent Access to Default WP Files "
1180
+ "configuration."
1181
+ msgstr ""
1182
+ "شما با موفقیت تنظیمات \"جلوگیری از دسترسی به فایل‌های وردپرس\" را ذخیره کردید."
1183
+
1184
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:275
1185
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:115
1186
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:269
1187
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:480
1188
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:619
1189
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:106
1190
+ msgid ""
1191
+ "Could not write to the .htaccess file. Please check the file permissions."
1192
+ msgstr ""
1193
+ "نمی توان در فایل .htaccess چیزی نوشت.لطفا مجوزهای این فایل را بررسی کنید."
1194
+
1195
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:280
1196
+ msgid "WordPress Files"
1197
+ msgstr "فایل‌های وردپرس"
1198
+
1199
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:283
1200
+ #, php-format
1201
+ msgid ""
1202
+ "This feature allows you to prevent access to files such as %s, %s and %s "
1203
+ "which are delivered with all WP installations."
1204
+ msgstr ""
1205
+ "این ویژگی امکان جلوگیری از دسترسی به فایل‌‎هایی مانند %s ، %s و %s را فراهم می "
1206
+ "کند. این فایل‌ها به همراه هر نگارش وردپرس عرضه می شوند."
1207
+
1208
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:284
1209
+ msgid ""
1210
+ "By preventing access to these files you are hiding some key pieces of "
1211
+ "information (such as WordPress version info) from potential hackers."
1212
+ msgstr ""
1213
+ "با جلوگیری از دسترسی به این فایل‌ها شما تعدادی از اطلاعات کلیدی (مانند نسخه "
1214
+ "وردپرس) را از چشم هکرها پنهان می کنید."
1215
+
1216
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:289
1217
+ msgid "Prevent Access to Default WP Files"
1218
+ msgstr "جلوگیری از دسترسی به فایل‌های پیش‌فرض وردپرس"
1219
+
1220
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:300
1221
+ msgid "Prevent Access to WP Default Install Files"
1222
+ msgstr "جلوگیری از دسترسی به فایل‌های نصب پیش‌فرض وردپرس"
1223
+
1224
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:303
1225
+ msgid ""
1226
+ "Check this if you want to prevent access to readme.html, license.txt and wp-"
1227
+ "config-sample.php."
1228
+ msgstr ""
1229
+ "اگر می خواهید جلو دسترسی به فایل‌های readme.html، license.txt و wp-config-"
1230
+ "sample.php را بگیرید، این گزینه را تیک بزنید."
1231
+
1232
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:307
1233
+ msgid "Save Setting"
1234
+ msgstr "ذخیره تنظیمات"
1235
+
1236
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:331
1237
+ msgid "System Logs"
1238
+ msgstr "گزارش‌های سیستم"
1239
+
1240
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:334
1241
+ msgid ""
1242
+ "Sometimes your hosting platform will produce error or warning logs in a file "
1243
+ "called \"error_log\"."
1244
+ msgstr ""
1245
+ "گاهی سیستم هاست شما گزارش‌های خطا یا هشدار در قالب فایل \"error_log\" تولید "
1246
+ "می کند."
1247
+
1248
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:335
1249
+ msgid ""
1250
+ "Depending on the nature and cause of the error or warning, your hosting "
1251
+ "server can create multiple instances of this file in numerous directory "
1252
+ "locations of your WordPress installation."
1253
+ msgstr ""
1254
+ "بسته به نوع و دلیل بروز خطا یا هشدار، سیستم هاست شما می‌تواند چندین نسخه از "
1255
+ "این فایل را در مسیرهای مختلف وردپرس ایجاد کند."
1256
+
1257
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:336
1258
+ msgid ""
1259
+ "By occassionally viewing the contents of these logs files you can keep "
1260
+ "informed of any underlying problems on your system which you might need to "
1261
+ "address."
1262
+ msgstr ""
1263
+ "با دیدن گاه به گاه درونمایه این فایل‌های گزارش شما می توانید از همه مشکلات "
1264
+ "پنهان سیستم آگاه شوید."
1265
+
1266
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:342
1267
+ msgid "View System Logs"
1268
+ msgstr "دیدن گزارش‌های سیستم"
1269
+
1270
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:347
1271
+ msgid "Enter System Log File Name"
1272
+ msgstr "ورود نام فایل گزارش"
1273
+
1274
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:349
1275
+ msgid "Enter your system log file name. (Defaults to error_log)"
1276
+ msgstr "نام فایل‌ گزارش سیستم خود را وارد کنید. (پیش‌فرض error_log است)"
1277
+
1278
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:352
1279
+ msgid "View Latest System Logs"
1280
+ msgstr "دیدن تازه‌ترین گزارش های سیستم"
1281
+
1282
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:354
1283
+ msgid "Loading..."
1284
+ msgstr "بارگذاری..."
1285
+
1286
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:371
1287
+ msgid "No system logs were found!"
1288
+ msgstr "هیچ گزارشی یافت نشد!"
1289
+
1290
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:424
1291
+ msgid "Set Recommended Permissions"
1292
+ msgstr "تنظیم مجوزهای پیشنهادی"
1293
+
1294
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:430
1295
+ msgid "No Action Required"
1296
+ msgstr "کاری نیاز نیست."
1297
+
1298
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:470
1299
+ #, php-format
1300
+ msgid "Showing latest entries of error_log file: %s"
1301
+ msgstr "نمایش تازه ترین نوشته‌های فایل error_log : %s"
1302
+
1303
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:25
1304
+ msgid "Basic Firewall Rules"
1305
+ msgstr "دستورهای پایه دیوارآتش"
1306
+
1307
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:26
1308
+ msgid "Additional Firewall Rules"
1309
+ msgstr "دستورهای اضافی دیوارآتش"
1310
+
1311
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:27
1312
+ msgid "5G Blacklist Firewall Rules"
1313
+ msgstr "دستورهای دیوارآتش لیست سیاه 5G"
1314
+
1315
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:28
1316
+ msgid "Brute Force Prevention"
1317
+ msgstr "جلوگیری از Brute Force"
1318
+
1319
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:111
1320
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:102
1321
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:96
1322
+ msgid "Settings were successfully saved"
1323
+ msgstr "تنظیمات به خوبی ذخیره شد."
1324
+
1325
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:120
1326
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:485
1327
+ msgid "Firewall Settings"
1328
+ msgstr "تنظیمات دیوارآتش"
1329
+
1330
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:127
1331
+ #, php-format
1332
+ msgid ""
1333
+ "This should not have any impact on your site's general functionality but if "
1334
+ "you wish you can take a %s of your .htaccess file before proceeding."
1335
+ msgstr ""
1336
+ "این کار نباید هیچ‌گونه آسیبی به کارایی سایت شما وارد کند اما شما اگر بخواهید "
1337
+ "می توانید یک %s از فایل .htaccess خود بگیرید."
1338
+
1339
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:128
1340
+ msgid ""
1341
+ "The features in this tab allow you to activate some basic firewall security "
1342
+ "protection rules for your site."
1343
+ msgstr "این ویژگی"
1344
+
1345
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:129
1346
+ msgid ""
1347
+ "The firewall functionality is achieved via the insertion of special code "
1348
+ "into your currently active .htaccess file."
1349
+ msgstr ""
1350
+ "کارایی دیوارآتش از راه وارد کردن کدهای ویژه در فایل .htaccess شما به دست می "
1351
+ "آید."
1352
+
1353
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:135
1354
+ msgid "Basic Firewall Settings"
1355
+ msgstr "تنظیمات پایه دیوارآتش"
1356
+
1357
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:143
1358
+ msgid "Enable Basic Firewall Protection"
1359
+ msgstr "به کار انداختن محافظت دیوارآتش پایه"
1360
+
1361
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:146
1362
+ msgid "Check this if you want to apply basic firewall protection to your site."
1363
+ msgstr ""
1364
+ "اگر می‌خواهید محافظت پایه دیوارآتش روی سایت شما به کار گرفته شود، این گزینه "
1365
+ "را تیک بزنید."
1366
+
1367
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:150
1368
+ msgid ""
1369
+ "This setting will implement the following basic firewall protection "
1370
+ "mechanisms on your site:"
1371
+ msgstr "این تنظیم ساز و کارهای محفاظت زیر را در سایت شما به کار می گیرد:"
1372
+
1373
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:151
1374
+ msgid "1) Protect your htaccess file by denying access to it."
1375
+ msgstr "1) حفاظت از فایل .htaccess به وسیله جلوگیری از دسترسی به آن"
1376
+
1377
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:152
1378
+ msgid "2) Disable the server signature."
1379
+ msgstr "2) از کار انداختن امضای سرور (server signature)"
1380
+
1381
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:153
1382
+ msgid "3) Limit file upload size (10MB)."
1383
+ msgstr "3) محدود کردن حجم قابل آپلود (10 مگابایت)"
1384
+
1385
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:154
1386
+ msgid "4) Protect your wp-config.php file by denying access to it."
1387
+ msgstr "4) حفاظت از فایل wp-config.php به وسیله جلوگیری از دسترسی به آن"
1388
+
1389
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:155
1390
+ msgid ""
1391
+ "The above firewall features will be applied via your .htaccess file and "
1392
+ "should not affect your site's overall functionality."
1393
+ msgstr ""
1394
+ "حفاظت های بالا از راه فایل .htaccess شما به کار گرفته می شود و نبایستی به "
1395
+ "کارایی سایت شما آسیب بزند."
1396
+
1397
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:156
1398
+ msgid ""
1399
+ "You are still advised to take a backup of your active .htaccess file just in "
1400
+ "case."
1401
+ msgstr "هنوز هم به شما سفارش می‌شود از فایل .htaccess خود پشتیبان بگیرید."
1402
+
1403
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:165
1404
+ msgid "WordPress Pingback Vulnerability Protection"
1405
+ msgstr "حفاظت آسیب‌پذیری Pingback وردپرس"
1406
+
1407
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:173
1408
+ msgid "Enable Pingback Protection"
1409
+ msgstr "فعال کردن حفاظت Pingback"
1410
+
1411
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:176
1412
+ msgid ""
1413
+ "Check this if you are not using the WP XML-RPC functionality and you want to "
1414
+ "enable protection against WordPress pingback vulnerabilities."
1415
+ msgstr ""
1416
+ "این گزینه را تیک بزنید اگر از کارایی WP XML-RPC استفاده نمی‌کنید و می‌خواهید "
1417
+ "از آسیب‌پذیری Pingback وردپرس حفاظت کنید."
1418
+
1419
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:180
1420
+ msgid ""
1421
+ "This setting will add a directive in your .htaccess to disable access to the "
1422
+ "WordPress xmlrpc.php file which is responsible for the XML-RPC functionality "
1423
+ "such as pingbacks in WordPress."
1424
+ msgstr ""
1425
+ "این تنظیم یک دستور‌دهنده (directive) در فایل .htaceess شما وارد می‌کند. این "
1426
+ "دستوردهنده دسترسی به فایل xmlrpc.php وردپرس را قطع می‌کند.این فایل مسئولیت "
1427
+ "کارایی‌های XML-RPC (مانند pingback) را برعهده دارد."
1428
+
1429
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:181
1430
+ msgid ""
1431
+ "Hackers can exploit various pingback vulnerabilities in the WordPress XML-"
1432
+ "RPC API in a number of ways such as:"
1433
+ msgstr ""
1434
+ "هکرها می‌توانند از آسیب‌پذیری های مختلف Pingback در XML-RPC API وردپرس "
1435
+ "استفاده کنند. تعدادی از این راه‌ها در زیر نوشته شده:"
1436
+
1437
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:182
1438
+ msgid "1) Denial of Service (DoS) attacks"
1439
+ msgstr "1) حمله‌های رد سرویس (DoS)"
1440
+
1441
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:183
1442
+ msgid "2) Hacking internal routers."
1443
+ msgstr "2) هک کردن مسیریاب های داخلی"
1444
+
1445
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:184
1446
+ msgid "3) Scanning ports in internal networks to get info from various hosts."
1447
+ msgstr ""
1448
+ "3) اسکن پورت‌ها در شبکه‌های داخلی؛برای بدست آوردن اطلاعات از هاست‌های مختلف"
1449
+
1450
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:185
1451
+ msgid ""
1452
+ "Apart from the security protection benefit, this feature may also help "
1453
+ "reduce load on your server, particularly if your site currently has a lot of "
1454
+ "unwanted traffic hitting the XML-RPC API on your installation."
1455
+ msgstr ""
1456
+ "جدا از مسئله امنیتی، این ویژگی فشار روی سِرور شما را کم می‌کند؛ چنانچه سایت "
1457
+ "شما در حال حاضر دارای حجم بزرگی از ترافیک‌ ناخواسته است (که بوسیله XML-RPC "
1458
+ "API بوجود می‎‌آید)."
1459
+
1460
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:186
1461
+ msgid ""
1462
+ "NOTE: You should only enable this feature if you are not currently using the "
1463
+ "XML-RPC functionality on your WordPress installation."
1464
+ msgstr ""
1465
+ "توجه: چنانچه شما از قابلیت XML-RPC استفاده می‌کنید، نباید این ویژگی را فعال "
1466
+ "کنید."
1467
+
1468
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:193
1469
+ msgid "Save Basic Firewall Settings"
1470
+ msgstr "ذخیره تنظیمات دیوارآتش پایه"
1471
+
1472
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:265
1473
+ msgid ""
1474
+ "You have successfully saved the Additional Firewall Protection configuration"
1475
+ msgstr "شما با موفقیت تنظیمات اضافی دیوار آتش را ذخیره کردید."
1476
+
1477
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:279
1478
+ msgid "Additional Firewall Protection"
1479
+ msgstr "موارد اضافی دیوار آتش"
1480
+
1481
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:283
1482
+ #, php-format
1483
+ msgid ""
1484
+ "Due to the nature of the code being inserted to the .htaccess file, this "
1485
+ "feature may break some functionality for certain plugins and you are "
1486
+ "therefore advised to take a %s of .htaccess before applying this "
1487
+ "configuration."
1488
+ msgstr ""
1489
+ "با توجه به ماهیت کدهایی که در فایل .htaccess وارد می‌شود، این ویژگی ممکن است "
1490
+ "کارکرد بعضی از افزونه‌ها را مختل کند. از این رو به شما سفارش می‌شود حتما قبل "
1491
+ "از به کارگیری این ویژگی، یک %s ."
1492
+
1493
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:285
1494
+ msgid ""
1495
+ "This feature allows you to activate more advanced firewall settings to your "
1496
+ "site."
1497
+ msgstr "این ویژگی به شما امکان فعال‌سازی تنظیمات پیشرفته دیوارآتش را می دهد."
1498
+
1499
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:286
1500
+ msgid ""
1501
+ "The advanced firewall rules are applied via the insertion of special code to "
1502
+ "your currently active .htaccess file."
1503
+ msgstr ""
1504
+ "ویژگی‌های پیشرفته دیوارآتش از راه وارد کردن کدهای مخصوص در فایل .htaccess "
1505
+ "شما، به کار گرفته می‌شود."
1506
+
1507
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:295
1508
+ msgid "Listing of Directory Contents"
1509
+ msgstr "فهرست کردن محتوای دایرکتوری"
1510
+
1511
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:304
1512
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:80
1513
+ msgid "Disable Index Views"
1514
+ msgstr "از کار انداختن مشاهده محتوا به صورت فهرست (Index Views)"
1515
+
1516
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:307
1517
+ msgid "Check this if you want to disable directory and file listing."
1518
+ msgstr ""
1519
+ "اگر می‌خواهید فهرست کردن دایرکتوری و فایل‌ها را از کار بندازید، این گزینه را "
1520
+ "تیک بزنید."
1521
+
1522
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:312
1523
+ msgid ""
1524
+ "By default, an Apache server will allow the listing of the contents of a "
1525
+ "directory if it doesn't contain an index.php file."
1526
+ msgstr ""
1527
+ "به صورت پیش‌فرض، سرور آپاچی اجازه فهرست کردن محتوای یک دایرکتوری را می‌دهد.(در "
1528
+ "صورت نبودن فایل index.php در آن دایرکتوری)"
1529
+
1530
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:314
1531
+ msgid "This feature will prevent the listing of contents for all directories."
1532
+ msgstr ""
1533
+ "این ویژگی امکان فهرست کردن محتوا را برای تمام دایرکتوری‌ها غیرفعال می‌کند."
1534
+
1535
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:316
1536
+ msgid ""
1537
+ "NOTE: In order for this feature to work \"AllowOverride\" must be enabled in "
1538
+ "your httpd.conf file. Ask your hosting provider to check this if you don't "
1539
+ "have access to httpd.conf"
1540
+ msgstr ""
1541
+ "توجه: برای به کارگیری این ویژگی باید \"AllowOverride\" در فایل httpd.conf "
1542
+ "فعال شده باشد. چنانچه به این فایل دسترسی ندارید از ارائه دهنده خدمات هاست "
1543
+ "خود بخواهید این مورد را بررسی کند."
1544
+
1545
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:325
1546
+ msgid "Trace and Track"
1547
+ msgstr "ردیابی و رهگیری"
1548
+
1549
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:334
1550
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:81
1551
+ msgid "Disable Trace and Track"
1552
+ msgstr "از کار انداختن ردیابی و رهگیری"
1553
+
1554
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:337
1555
+ msgid "Check this if you want to disable trace and track."
1556
+ msgstr "اگر می‌خواهید ردیابی و رهگیری را از کار بندازید این گزینه را تیک بزنید."
1557
+
1558
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:342
1559
+ msgid ""
1560
+ "HTTP Trace attack (XST) can be used to return header requests and grab "
1561
+ "cookies and other information."
1562
+ msgstr ""
1563
+ "حمله ردیابی HTTP یا XST می‌تواند برای بازگرداندن درخواست‌های Header و گرفتن "
1564
+ "کوکی ها و دیگر اطلاعات استفاده شود."
1565
+
1566
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:344
1567
+ msgid ""
1568
+ "This hacking technique is usually used together with cross site scripting "
1569
+ "attacks (XSS)."
1570
+ msgstr ""
1571
+ "این تکنیک هک کردن معمولا همراه با حمله‌های برنامه نویسی متقابل سایت (XSS) "
1572
+ "استفاده می‌شود."
1573
+
1574
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:346
1575
+ msgid ""
1576
+ "Disabling trace and track on your site will help prevent HTTP Trace attacks."
1577
+ msgstr ""
1578
+ "از کار انداختن ردیابی و رهگیری روی سایت شما از بروز حملات ردیابی HTTP "
1579
+ "جلوگیری می‌کند."
1580
+
1581
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:355
1582
+ msgid "Proxy Comment Posting"
1583
+ msgstr "فرستادن دیدگاه از راه پراکسی"
1584
+
1585
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:365
1586
+ msgid "Forbid Proxy Comment Posting"
1587
+ msgstr "ممنوع کردن فرستادن دیدگاه از راه پراکسی"
1588
+
1589
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:368
1590
+ msgid "Check this if you want to forbid proxy comment posting."
1591
+ msgstr ""
1592
+ "اگر می‌خواهید فرستادن دیدگاه از راه پراکسی را غیرفعال کنید، این گزینه را تیک "
1593
+ "بزنید."
1594
+
1595
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:373
1596
+ msgid ""
1597
+ "This setting will deny any requests that use a proxy server when posting "
1598
+ "comments."
1599
+ msgstr ""
1600
+ "همه درخواست‌های فرستادن دیدگاه که هنگام فرستادن از یک پراکسی سِرور استفاده "
1601
+ "می‌کنند، توسط این تنظیم رد می‌شوند."
1602
+
1603
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:374
1604
+ msgid ""
1605
+ "By forbidding proxy comments you are in effect eliminating some SPAM and "
1606
+ "other proxy requests."
1607
+ msgstr ""
1608
+ "با ممنوع کردن فرستادن دیدگاه از راه پراکسی، در عمل شما جلوی بسیاری از SPAMها "
1609
+ "و سایر درخواست‌های پراکسی را می‌گیرید."
1610
+
1611
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:383
1612
+ msgid "Bad Query Strings"
1613
+ msgstr "Bad Query Strings"
1614
+
1615
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:393
1616
+ msgid "Deny Bad Query Strings"
1617
+ msgstr "جلوگیری از Bad Query Strings"
1618
+
1619
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:396
1620
+ msgid "This will help protect you against malicious queries via XSS."
1621
+ msgstr "این ویژگی از شما در برابر کوئری‌های خراب‌کارانه XSS ، محافظت می‌کند."
1622
+
1623
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:401
1624
+ msgid ""
1625
+ "This feature will write rules in your .htaccess file to prevent malicious "
1626
+ "string attacks on your site using XSS."
1627
+ msgstr ""
1628
+ "این ویژگی دستورهایی در فایل .htaccess شما وارد می‌کند که جلوی حملات رشته‌های "
1629
+ "خراب‌کارانه XSS را می‌گیرد."
1630
+
1631
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:402
1632
+ msgid ""
1633
+ "NOTE: Some of these strings might be used for plugins or themes and hence "
1634
+ "this might break some functionality."
1635
+ msgstr ""
1636
+ "توجه: بعضی از این رشته‌ها ممکن است برای افزونه‌ها و پوسته‌ها استفاده شوند "
1637
+ "بنابراین این ویژگی ممکن است برخی از کارکردها را مختل کند."
1638
+
1639
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:403
1640
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:433
1641
+ msgid ""
1642
+ "You are therefore strongly advised to take a backup of your active .htaccess "
1643
+ "file before applying this feature."
1644
+ msgstr ""
1645
+ "پس به شما شدیدا سفارش می‌شود قبل از به‌کارگیری این قابلیت یک فایل پشتیبان از ."
1646
+ "htaccess فعلی خود بگیرید."
1647
+
1648
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:412
1649
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:84
1650
+ msgid "Advanced Character String Filter"
1651
+ msgstr "فیلتر پیشرفته برای رشته‌های کارکتری"
1652
+
1653
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:422
1654
+ msgid "Enable Advanced Character String Filter"
1655
+ msgstr "فعال کردن فیلتر پیشرفته رشته‌های کارکتری"
1656
+
1657
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:425
1658
+ msgid "This will block bad character matches from XSS."
1659
+ msgstr "این ویژگی مانع جور شدن کارکترهای بد از XSS می‌شود."
1660
+
1661
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:430
1662
+ msgid ""
1663
+ "This is an advanced character string filter to prevent malicious string "
1664
+ "attacks on your site coming from Cross Site Scripting (XSS)."
1665
+ msgstr ""
1666
+ "این یک فیلتر پیشرفته رشته‌های کارکتری است که برای جلوگیری از حملات خراب‌کارانه "
1667
+ "XSS به سایت شما، به کار می‌رود."
1668
+
1669
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:431
1670
+ msgid ""
1671
+ "This setting matches for common malicious string patterns and exploits and "
1672
+ "will produce a 403 error for the hacker attempting the query."
1673
+ msgstr ""
1674
+ "این تنظیم الگوهای رشته‌ای که معمولا برای حمله به کار می‌روند شناسایی می‌کند و "
1675
+ "در صورت تلاش هکر برای دستیابی به اطلاعات خطای 403 را به او نشان می‌دهد."
1676
+
1677
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:432
1678
+ msgid "NOTE: Some strings for this setting might break some functionality."
1679
+ msgstr ""
1680
+ "توجه: بعضی رشته‌ها برای این تنظیم ممکن است برخی از کارکردها را مختل کنند."
1681
+
1682
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:441
1683
+ msgid "Save Additional Firewall Settings"
1684
+ msgstr "ذخیره تنظیمات اضافی دیوارآتش"
1685
+
1686
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:476
1687
+ msgid "You have successfully saved the 5G Firewall Protection configuration"
1688
+ msgstr "شما با موفقیت پیکربندی دیوارآتش 5G را ذخیره کردید."
1689
+
1690
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:489
1691
+ #, php-format
1692
+ msgid ""
1693
+ "This feature allows you to activate the 5G firewall security protection "
1694
+ "rules designed and produced by %s."
1695
+ msgstr ""
1696
+ "این ویژگی به شما امکان به کارگیری لایه حفاظتی 5G را می‌دهد که توسط %s طراحی و "
1697
+ "توسعه داده شده است."
1698
+
1699
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:490
1700
+ msgid ""
1701
+ "The 5G Blacklist is a simple, flexible blacklist that helps reduce the "
1702
+ "number of malicious URL requests that hit your website."
1703
+ msgstr ""
1704
+ "لیست سیاه 5G یک لیست‌سیاه ساده و انعطاف‌پذیر است که تعداد درخواست‌های "
1705
+ "خرابکارانه URL به سایت شما را کاهش می‌دهد."
1706
+
1707
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:491
1708
+ msgid ""
1709
+ "The added advantage of applying the 5G firewall to your site is that it has "
1710
+ "been tested and confirmed by the people at PerishablePress.com to be an "
1711
+ "optimal and least disruptive set of .htaccess security rules for general WP "
1712
+ "sites running on an Apache server or similar."
1713
+ msgstr ""
1714
+ "مزیت استفاده از دیوارآتش 5G این است که این دیوار آتش توسط اعضای سایت "
1715
+ "PerishablePress.com آزمایش و تأیید شده که بهینه‌ترین تنظیمات امنیتی را به "
1716
+ "سایت‌های وردپرس روی سِرور Apache می‌دهد."
1717
+
1718
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:492
1719
+ #, php-format
1720
+ msgid ""
1721
+ "Therefore the 5G firewall rules should not have any impact on your site's "
1722
+ "general functionality but if you wish you can take a %s of your .htaccess "
1723
+ "file before proceeding."
1724
+ msgstr ""
1725
+ "بنابراین دستورهای 5G نبایستی روی کارکرد عمومی سایت شما تأثیر بگذارد. اما اگر "
1726
+ "شما بخواهید، پیش از ادامه دادن می‌توانید یک %s از فایل .htaccess فعلی خود "
1727
+ "بگیرید."
1728
+
1729
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:498
1730
+ msgid "5G Blacklist/Firewall Settings"
1731
+ msgstr "تنظیمات لیست‌سیاه/دیوارآتش 5G"
1732
+
1733
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:510
1734
+ msgid "Enable 5G Firewall Protection"
1735
+ msgstr "فعال کردن دیوارآتش 5G"
1736
+
1737
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:513
1738
+ msgid ""
1739
+ "Check this if you want to apply the 5G Blacklist firewall protection from "
1740
+ "perishablepress.com to your site."
1741
+ msgstr ""
1742
+ "اگر می خواهید دیوارآتش 5G ارائه شده توسط perishablepress.com را فعال کنید، "
1743
+ "این گزینه را تیک بزنید."
1744
+
1745
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:517
1746
+ msgid ""
1747
+ "This setting will implement the 5G security firewall protection mechanisms "
1748
+ "on your site which include the following things:"
1749
+ msgstr "این تنظیم ساز‌وکارهای حفاظتی 5G زیر را روی سایت شما اعمال می‌کند:"
1750
+
1751
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:518
1752
+ msgid "1) Block forbidden characters commonly used in exploitative attacks."
1753
+ msgstr ""
1754
+ "1) مسدودسازی کارکترهای غیرمجازی که معمولا در حملات سودجویانه استفاده می‌شوند."
1755
+
1756
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:519
1757
+ msgid "2) Block malicious encoded URL characters such as the \".css(\" string."
1758
+ msgstr "2) مسدود سازی کارکترهای URL رمزگذاری شده مانند رشته \".css(\" ."
1759
+
1760
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:520
1761
+ msgid ""
1762
+ "3) Guard against the common patterns and specific exploits in the root "
1763
+ "portion of targeted URLs."
1764
+ msgstr "3) حفاظت در برابر الگوهای معمول و سوء استفاده های خاص در ریشه URLها."
1765
+
1766
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:521
1767
+ msgid ""
1768
+ "4) Stop attackers from manipulating query strings by disallowing illicit "
1769
+ "characters."
1770
+ msgstr ""
1771
+ "4) متوقف کردن مهاجمان از دستکاری رشته‌های Query با ممانعت از کارکترهای غیرمجاز"
1772
+
1773
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:522
1774
+ msgid "....and much more."
1775
+ msgstr "و بسیاری دیگر..."
1776
+
1777
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:528
1778
+ msgid "Save 5G Firewall Settings"
1779
+ msgstr "ذخیره تنظیمات دیوارآتش 5G"
1780
+
1781
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:556
1782
+ msgid ""
1783
+ "Settings have not been saved - your secret word must consist only of "
1784
+ "alphanumeric characters, ie, letters and/or numbers only!"
1785
+ msgstr ""
1786
+ "تنظیمات ذخیره نشده است - واژه محرمانه شما باید فقط شامل حروف، اعداد و یا "
1787
+ "مخلوطی از حرف و عدد باشد."
1788
+
1789
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:574
1790
+ msgid ""
1791
+ "You have successfully enabled the cookie based brute force prevention feature"
1792
+ msgstr "ویژگی جلوگیری از brute force برپایه کوکی، با موفقیت فعال شد."
1793
+
1794
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:575
1795
+ msgid ""
1796
+ "From now on you will need to log into your WP Admin using the following URL:"
1797
+ msgstr "از هم‌اکنون شما باید از آدرس زیر وارد پیشخوان وردپرس شوید:"
1798
+
1799
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:577
1800
+ msgid ""
1801
+ "It is important that you save this URL value somewhere in case you forget "
1802
+ "it, OR,"
1803
+ msgstr ""
1804
+ "این مهم است که شما این آدرس را جایی ذخیره کنید؛ چون ممکن است آن را فراموش "
1805
+ "کنید. یا اینکه"
1806
+
1807
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:578
1808
+ #, php-format
1809
+ msgid "simply remember to add a \"?%s=1\" to your current site URL address."
1810
+ msgstr ""
1811
+ "به یاد داشته باشید که یک \"?%s=1\" به انتهای آدرس فعلی سایت خود اضافه کنید."
1812
+
1813
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:584
1814
+ msgid ""
1815
+ "You have successfully saved cookie based brute force prevention feature "
1816
+ "settings."
1817
+ msgstr "تنظیمات جلوگیری از brute force برپایه کوکی با موفقیت ذخیره شد."
1818
+
1819
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:629
1820
+ msgid "Brute Force Prevention Firewall Settings"
1821
+ msgstr "دیوارآتش جلوگیری از Brute Force"
1822
+
1823
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:634
1824
+ msgid ""
1825
+ "A Brute Force Attack is when a hacker tries many combinations of usernames "
1826
+ "and passwords until they succeed in guessing the right combination."
1827
+ msgstr ""
1828
+ "حمله بی‌رحمانه یا Brute Force Attack وقتی اتفاق می‌افتد که هکر ترکیب‌های مختلف "
1829
+ "زیادی از نام کاربری و رمزعبور را آزمایش می‌کند تا بالاخره موفق بشود ترکیب "
1830
+ "درست را حدس بزند."
1831
+
1832
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:635
1833
+ msgid ""
1834
+ "Due to the fact that at any one time there may be many concurrent login "
1835
+ "attempts occurring on your site via malicious automated robots, this also "
1836
+ "has a negative impact on your server's memory and performance."
1837
+ msgstr ""
1838
+ "با توجه به این واقعیت که در هر زمان ممکن است از طریق روبات های مخرب خودکار "
1839
+ "تلاش‌های زیادی برای ورود به سایت شما رخ دهد، در نتیجه Brute force تأثیر منفی "
1840
+ "روی عملکرد سِرور شما می‌گذارد/"
1841
+
1842
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:636
1843
+ msgid ""
1844
+ "The features in this tab will stop the majority of Brute Force Login Attacks "
1845
+ "at the .htaccess level thus providing even better protection for your WP "
1846
+ "login page and also reducing the load on your server because the system does "
1847
+ "not have to run PHP code to process the login attempts."
1848
+ msgstr ""
1849
+ "این ویژگی اکثریت حملات Brute Force را از طریق فایل .htaccess متوقف می‌کند. "
1850
+ "بنابراین از برگه ورود وردپرس شما محافظت بهتری به عمل می‌آید. همچنین این کار "
1851
+ "باعث کاهش فشار روی سِرور می‌شود؛زیرا سیستم مجبور نیست برای هر تلاش ورود تعداد "
1852
+ "زیادی کد php را اجرا کند."
1853
+
1854
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:643
1855
+ #, php-format
1856
+ msgid ""
1857
+ "Even though this feature should not have any impact on your site's general "
1858
+ "functionality <strong>you are strongly encouraged to take a %s of your ."
1859
+ "htaccess file before proceeding</strong>."
1860
+ msgstr ""
1861
+ "هرچند این ویژگی نباید هیچگونه تأثیری روی کارکرد سایت شما بگذارد اما "
1862
+ "<strong>شدیدا به شما سفارش می‌شود که قبل از انجام این کار یک %s از فایل ."
1863
+ "htaccess خود بگیرید.</strong>"
1864
+
1865
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:644
1866
+ msgid ""
1867
+ "If this feature is not used correctly, you can get locked out of your site. "
1868
+ "A backup file will come in handy if that happens."
1869
+ msgstr ""
1870
+ "اگر این ویژگی به درستی استفاده نشود ممکن است که امکان ورود به سایت برای خود "
1871
+ "شما هم قفل شود.در چنین حالتی یک فایل پشتیبان بسیار کارآمد است."
1872
+
1873
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:645
1874
+ #, php-format
1875
+ msgid ""
1876
+ "To learn more about how to use this feature please watch the following %s."
1877
+ msgstr "برای آموختن بیشتر درباره استفاده از این ویژگی لطفا این %s را ببینید."
1878
+
1879
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:654
1880
+ msgid "Cookie Based Brute Force Login Prevention"
1881
+ msgstr "جلوگیری از Brute Force بر پایه کوکی"
1882
+
1883
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:665
1884
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:79
1885
+ msgid "Enable Brute Force Attack Prevention"
1886
+ msgstr "فعال کردن جلوگیری از Brute Force"
1887
+
1888
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:668
1889
+ msgid ""
1890
+ "Check this if you want to protect your login page from Brute Force Attack."
1891
+ msgstr ""
1892
+ "اگر می‌خواهید برگه ورود خود را از حمله Brute Force حفظ کنید، این گزینه را تیک "
1893
+ "بزنید."
1894
+
1895
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:673
1896
+ msgid ""
1897
+ "This feature will deny access to your WordPress login page for all people "
1898
+ "except those who have a special cookie in their browser."
1899
+ msgstr ""
1900
+ "این گزینه دسترسی همه کاربران را به صفحه ورود وردپرس قطع می‌کند به جز کاربرانی "
1901
+ "که در مرورگر خود یک کوکی ویژه داشته باشند."
1902
+
1903
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:675
1904
+ msgid "To use this feature do the following:"
1905
+ msgstr "برای بهره‌گیری از این ویژگی به شکل زیر عمل کنید:"
1906
+
1907
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:677
1908
+ msgid "1) Enable the checkbox."
1909
+ msgstr "1) گزینه را تیک بزنید."
1910
+
1911
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:679
1912
+ msgid ""
1913
+ "2) Enter a secret word consisting of alphanumeric characters which will be "
1914
+ "difficult to guess. This secret word will be useful whenever you need to "
1915
+ "know the special URL which you will use to access the login page (see point "
1916
+ "below)."
1917
+ msgstr ""
1918
+ "2) یک واژه محرمانه(شامل حرف و عدد) که حدس زدن آن سخت باشد، وارد کنید. این "
1919
+ "واژه محرمانه وقتی به کار می‌آید که شما بخواهید بدانید از چه آدرس خاصی برای "
1920
+ "دسترسی به صفحه ورود باید استفاده کنید. (مورد پایینی را ببینید)"
1921
+
1922
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:681
1923
+ msgid ""
1924
+ "3) You will then be provided with a special login URL. You will need to use "
1925
+ "this URL to login to your WordPress site instead of the usual login URL. "
1926
+ "NOTE: The system will deposit a special cookie in your browser which will "
1927
+ "allow you access to the WordPress administration login page."
1928
+ msgstr ""
1929
+ "3) سپس یک URL ویژه به شما داده می‌شود. شما برای ورود به سایت باید از این URL "
1930
+ "استفاده کنید(به جای استفاده از آدرس معمولی ورود). توجه: سیستم یک کوکی خاص را "
1931
+ "در مرورگر شما ذخیره می‌کند که به شما اجازه دسترسی به صفحه ورود را خواهد داد."
1932
+
1933
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:683
1934
+ msgid ""
1935
+ "Any person trying to access your login page who does not have the special "
1936
+ "cookie in their browser will be automatically blocked."
1937
+ msgstr ""
1938
+ "هرکسی که تلاش کند به صفحه ورود شما دست یابد و این کوکی ویژه را در مرورگر "
1939
+ "خودش نداشته باشد به طور خودکار بلاک می‌شود."
1940
+
1941
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:690
1942
+ msgid "Secret Word"
1943
+ msgstr "واژه محرمانه"
1944
+
1945
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:692
1946
+ msgid ""
1947
+ "Choose a secret word consisting of alphanumeric characters which you can use "
1948
+ "to access your special URL. Your are highly encouraged to choose a word "
1949
+ "which will be difficult to guess."
1950
+ msgstr ""
1951
+ "یک واژه محرمانه شامل(حروف یا اعداد، یا هر دو) انتخاب کنید که بتوانید از آن "
1952
+ "برای دسترسی به URL ویژه استفاده کنید. به شما سفارش می‌کنیم واژه‌ای را انتخاب "
1953
+ "کنید که حدس زدن آن سخت باشد."
1954
+
1955
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:696
1956
+ msgid "Re-direct URL"
1957
+ msgstr "آدرس تغییر مسیر (Re-direct URL)"
1958
+
1959
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:700
1960
+ msgid ""
1961
+ "Specify a URL to redirect a hacker to when they try to access your WordPress "
1962
+ "login page."
1963
+ msgstr ""
1964
+ "یک آدرس مشخص کنید که وقتی یک هکر تلاش می‌کند به برگه ورود شما دست یابد به آن "
1965
+ "آدرس منتقل شود."
1966
+
1967
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:707
1968
+ msgid ""
1969
+ "The URL specified here can be any site's URL and does not have to be your "
1970
+ "own. For example you can be as creative as you like and send hackers to the "
1971
+ "CIA or NSA home page."
1972
+ msgstr ""
1973
+ "آدرسی که اینجا مشخص می‌کنید، می‌تواند متعلق به هر سایتی باشد و نیاز نیست حتما "
1974
+ "آدرسی در سایت خود شما باشد. برای نمونه شما می‌توانید خلاقیت به خرج دهید و "
1975
+ "هکرها را به سایت CIA یا NSA هدایت کنید!"
1976
+
1977
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:709
1978
+ msgid ""
1979
+ "This field will default to: http://127.0.0.1 if you do not enter a value."
1980
+ msgstr ""
1981
+ "اگر شما چیزی وارد نکنید مقدار پیش‌فرض به کار گرفته می‌شود: http://127.0.0.1"
1982
+
1983
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:711
1984
+ msgid "Useful Tip:"
1985
+ msgstr "راهنمایی کارآمد:"
1986
+
1987
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:713
1988
+ msgid ""
1989
+ "It's a good idea to not redirect attempted brute force login attempts to "
1990
+ "your site because it increases the load on your server."
1991
+ msgstr ""
1992
+ "این ایده خوبی هست که حملات Brute force را به یک آدرس در سایت خودتان منتقل "
1993
+ "نکنید؛ چون این کار باعث افزایش فشار روی سِرور شما می‌شود."
1994
+
1995
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:715
1996
+ msgid ""
1997
+ "Redirecting a hacker or malicious bot back to \"http://127.0.0.1\" is ideal "
1998
+ "because it deflects them back to their own local host and puts the load on "
1999
+ "their server instead of yours."
2000
+ msgstr ""
2001
+ "هدایت یک هکر یا یک ربات خرابکار به \"http://127.0.0.1\" ایده بسیار خوبی "
2002
+ "است. زیرا این کار آنها را به هاست خودشان بر می‌گرداند و از این طریق فشار روی "
2003
+ "سِرور آنها وارد می‌شود نه سِرور شما."
2004
+
2005
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:722
2006
+ msgid "My Site Has Posts Or Pages Which Are Password Protected"
2007
+ msgstr "سایت من نوشته‌ها یا برگه‌هایی دارد که با رمز محافظت می‌شوند."
2008
+
2009
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:725
2010
+ msgid ""
2011
+ "Check this if you are using the native WordPress password protection feature "
2012
+ "for some or all of your blog posts or pages."
2013
+ msgstr ""
2014
+ "اگر شما از قابلیت داخلی وردپرس برای رمزگذاری همه یا بعضی از نوشته‌ها و "
2015
+ "برگه‌های خود استفاده می‌کنید؛ این گزینه را تیک بزنید."
2016
+
2017
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:730
2018
+ msgid ""
2019
+ "In the cases where you are protecting some of your posts or pages using the "
2020
+ "in-built WordPress password protection feature, a few extra lines of "
2021
+ "directives and exceptions need to be added to your .htacces file so that "
2022
+ "people trying to access pages are not automatically blocked."
2023
+ msgstr ""
2024
+ "در موارد که در آن شما از برخی از نوشته ها و یا برگه‌های خود با استفاده از "
2025
+ "ویژگی درونی وردپرس(رمزگذاری نوشته‌ها) محافظت می‌کنید، نیاز است که چند خط کوتاه "
2026
+ "دستورهای اضافی به فایل .htaccess شما اضافه شود؛ بنابراین افرادی که می‌خواهد "
2027
+ "برگه‌ها را ببینند به طور خودکار بلاک نمی‌شوند."
2028
+
2029
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:732
2030
+ msgid ""
2031
+ "By enabling this checkbox the plugin will add the necessary rules and "
2032
+ "exceptions to your .htacces file so that people trying to access these pages "
2033
+ "are not automatically blocked."
2034
+ msgstr ""
2035
+ "با فعال کردن این گزینه، افزونه دستورها و استثنائات لازم را به فایل .htaccess "
2036
+ "شما اضافه می‌کند بنابراین کسانی که تلاش می‌کنند به برگه‌های محافظت شده برسند به "
2037
+ "صورت خودکار بلاک نمی‌شوند."
2038
+
2039
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:734
2040
+ msgid "Helpful Tip:"
2041
+ msgstr "راهنمایی کارآمد:"
2042
+
2043
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:736
2044
+ msgid ""
2045
+ "If you do not use the WordPress password protection feature for your posts "
2046
+ "or pages then it is highly recommended that you leave this checkbox disabled."
2047
+ msgstr ""
2048
+ "اگر شما از ویژگی رمزگذاری وردپرس برای برگه‌ها یا نوشته‌ها استفاده نمی‌کنید، "
2049
+ "شدیدا سفارش می‌شود این گزینه را غیرفعال بگذارید."
2050
+
2051
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:743
2052
+ msgid "My Site Has a Theme or Plugins Which Use AJAX"
2053
+ msgstr "سایت من پوسته یا افزونه‌ای دارد که از AJAX استفاده می‌کند"
2054
+
2055
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:746
2056
+ msgid "Check this if your site uses AJAX functionality."
2057
+ msgstr "اگر سایت شما از AJAX استفاده می‌کند این گزینه را تیک بزنید."
2058
+
2059
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:751
2060
+ msgid ""
2061
+ "In the cases where your WordPress installation has a theme or plugins which "
2062
+ "use AJAX, a few extra lines of directives and exceptions need to be added to "
2063
+ "your .htacces file to prevent AJAX requests from being automatically blocked "
2064
+ "by the brute force prevention feature."
2065
+ msgstr ""
2066
+ "در مواردی که سایت وردپرس شما پوسته یا افزونه‌ای دارد که از AJAX استفاده "
2067
+ "می‌کند، نیاز است که چند خط کوتاه دستورهای اضافی به فایل .htaccess شما اضافه "
2068
+ "شود؛ بنابراین درخواست‌های AJAX به صورت خودکار بلاک نمی‌شوند."
2069
+
2070
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:753
2071
+ msgid ""
2072
+ "By enabling this checkbox the plugin will add the necessary rules and "
2073
+ "exceptions to your .htacces file so that AJAX operations will work as "
2074
+ "expected."
2075
+ msgstr ""
2076
+ "با فعال کردن این گزینه، افزونه دستورها و استثنائات لازم را به فایل .htaccess "
2077
+ "شما اضافه می‌کند بنابراین کارکردهای AJAX مختل نمی‌شود."
2078
+
2079
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:768
2080
+ msgid "The cookie test was successful. You can now enable this feature."
2081
+ msgstr "آزمایش کوکی موفق بود. شما هم اکنون می‌توانید این ویژگی را فعال کنید."
2082
+
2083
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:771
2084
+ msgid "Save Feature Settings"
2085
+ msgstr "ذخیره تنظیمات ویژگی"
2086
+
2087
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:778
2088
+ msgid ""
2089
+ "The cookie test failed on this server. So this feature cannot be used on "
2090
+ "this site."
2091
+ msgstr ""
2092
+ "آزمایش کوکی ناموفق بود. پس نمی‌توان از این ویژگی روی این سایت استفاده کرد."
2093
+
2094
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:784
2095
+ msgid ""
2096
+ "Before using this feature you are required to perform a cookie test first. "
2097
+ "This is to make sure that your browser cookie is working correctly and that "
2098
+ "you won't lock yourself out."
2099
+ msgstr ""
2100
+ "پیش از استفاده از این ویژگی شما باید یک آزمایش کوکی انجام دهید. این کار برای "
2101
+ "اطمینان از کارکرد درست کوکی روی مرورگر شماست که باعث می‌شود دسترسی خودتان به "
2102
+ "سایت قطع نشود."
2103
+
2104
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:786
2105
+ msgid "Perform Cookie Test"
2106
+ msgstr "انجام آزمایش کوکی"
2107
+
2108
+ #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:79
2109
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:86
2110
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:80
2111
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:91
2112
+ #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:78
2113
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:82
2114
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:93
2115
+ msgid "Please select some records using the checkboxes"
2116
+ msgstr "لطفا تعدادی رکورد را با استفاده از جعبه‌تیک انتخاب کنید"
2117
+
2118
+ #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:107
2119
+ #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:107
2120
+ msgid "The selected entries were deleted successfully!"
2121
+ msgstr "رکوردهای انتخاب شده با موفقیت پاک شدند."
2122
+
2123
+ #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:120
2124
+ #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:119
2125
+ msgid "The selected entry was deleted successfully!"
2126
+ msgstr "رکورد انتخابی با موفقیت پاک شد."
2127
+
2128
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:139
2129
+ msgid ""
2130
+ "The selected IP addresses were saved in the blacklist configuration settings."
2131
+ msgstr "IP آدرس‌های انتخابی در پیکربندی لیست‌سیاه ذخیره می‌شوند."
2132
+
2133
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:153
2134
+ msgid ""
2135
+ "The .htaccess file was successfully modified to include the selected IP "
2136
+ "addresses."
2137
+ msgstr "IP آدرس‌های انتخابی با موفقیت به فایل .htaccess افزوده شدند."
2138
+
2139
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:159
2140
+ msgid ""
2141
+ "NOTE: The .htaccess file was not modified because you have disabled the "
2142
+ "\"Enable IP or User Agent Blacklisting\" check box."
2143
+ msgstr ""
2144
+ "توجه: فایل .htaccess ویرایش نشد؛ زیرا شما گزینه \"قرار دادن IP یا نماینده "
2145
+ "کاربری در لیست سیاه\" را فعال نکرده اید."
2146
+
2147
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:160
2148
+ #, php-format
2149
+ msgid ""
2150
+ "To block these IP addresses you will need to enable the above flag in the %s "
2151
+ "menu"
2152
+ msgstr ""
2153
+ "برای مسدود کردن این IP آدرس‌ها، شما باید flag بالا را در فهرست %s فعال کنید."
2154
+
2155
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:115
2156
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:748
2157
+ msgid "The selected IP ranges were unlocked successfully!"
2158
+ msgstr "محدوده IP های انتخابی آزاد شدند!"
2159
+
2160
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:124
2161
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:757
2162
+ msgid "The selected IP range was unlocked successfully!"
2163
+ msgstr "محدوده IP انتخاب‌شده آزاد شد!"
2164
+
2165
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:118
2166
+ msgid "The selected accounts were approved successfully!"
2167
+ msgstr "حساب‌های کاربری انتخاب‌شده تأیید شدند!"
2168
+
2169
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:125
2170
+ msgid "The selected account was approved successfully!"
2171
+ msgstr "حساب کاربری انتخاب‌شده آزاد شد!"
2172
+
2173
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:146
2174
+ msgid "The selected accounts were deleted successfully!"
2175
+ msgstr "حساب‌های کاربری انتخاب‌شده پاک شدند!"
2176
+
2177
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:154
2178
+ msgid "The selected account was deleted successfully!"
2179
+ msgstr "حساب کاربری انتخاب‌شده پاک شد!"
2180
+
2181
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:22
2182
+ msgid "Visitor Lockout"
2183
+ msgstr "قفل کردن بازدید"
2184
+
2185
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:88
2186
+ msgid "Site lockout feature settings saved!"
2187
+ msgstr "تنظیمات قفل کردن ذخیره شد!"
2188
+
2189
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:93
2190
+ msgid "General Visitor Lockout"
2191
+ msgstr "قفل کردن بازدید عمومی"
2192
+
2193
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:99
2194
+ msgid ""
2195
+ "This feature allows you to put your site into \"maintenance mode\" by "
2196
+ "locking down the front-end to all visitors except logged in users with super "
2197
+ "admin privileges."
2198
+ msgstr ""
2199
+ "این ویژگی به شما اجازه می دهد که با ممنوع کردن بازدیدکنندگان سایت خود را در "
2200
+ "\"حالت تعمیر\" قرار دهید. در این حالت تنها مدیران قادر به دیدن سایت هستند."
2201
+
2202
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:100
2203
+ msgid ""
2204
+ "Locking your site down to general visitors can be useful if you are "
2205
+ "investigating some issues on your site or perhaps you might be doing some "
2206
+ "maintenance and wish to keep out all traffic for security reasons."
2207
+ msgstr ""
2208
+ "قفل کردن سایت زمانی به کار می‌آید که شما بخواهید برخی مسائل را در سایت بررسی "
2209
+ "کنید یا تعمیراتی در سایت انجام دهید و نخواهید در این مدت کسی سایت را ببیند."
2210
+
2211
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:105
2212
+ msgid "Enable Front-end Lockout"
2213
+ msgstr "فعال سازی قفل کردن سایت"
2214
+
2215
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:108
2216
+ msgid ""
2217
+ "Check this if you want all visitors except those who are logged in as "
2218
+ "administrator to be locked out of the front-end of your site."
2219
+ msgstr ""
2220
+ "اگر می‌خواهید نمای سایت را برای همه (به جز مدیران) قفل کنید، این گزینه را تیک "
2221
+ "بزنید."
2222
+
2223
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:112
2224
+ msgid "Enter a Message:"
2225
+ msgstr "یک پیام وارد کنید:"
2226
+
2227
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:124
2228
+ msgid ""
2229
+ "Enter a message you wish to display to visitors when your site is in "
2230
+ "maintenance mode."
2231
+ msgstr ""
2232
+ "پیامی را که می‌خواهید بازدیدکنندگان هنگام مشاهده حالت تعمیر ببینند در این جا "
2233
+ "وارد کنید."
2234
+
2235
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:131
2236
+ msgid "Save Site Lockout Settings"
2237
+ msgstr "ذخیره تنظیمات قفل سایت"
2238
+
2239
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:25
2240
+ msgid "General Settings"
2241
+ msgstr "تنظیمات عمومی"
2242
+
2243
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:28
2244
+ msgid "WP Meta Info"
2245
+ msgstr "اطلاعات Metaی وردپرس"
2246
+
2247
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:95
2248
+ msgid "All the security features have been disabled successfully!"
2249
+ msgstr "همه ویژگی‌های امنیتی با موفقیت از کار انداخته شدند!"
2250
+
2251
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:99
2252
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:126
2253
+ msgid ""
2254
+ "Could not write to the .htaccess file. Please restore your .htaccess file "
2255
+ "manually using the restore functionality in the \".htaccess File\"."
2256
+ msgstr ""
2257
+ "نمی‌توان در فایل .htaccess نوشت. لطفا فایل .htaccess خود را با مراجه به قسمت "
2258
+ "\"فایل .htaccess\". بازگردانی کنید."
2259
+
2260
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:104
2261
+ msgid ""
2262
+ "Could not write to the wp-config.php. Please restore your wp-config.php file "
2263
+ "manually using the restore functionality in the \"wp-config.php File\"."
2264
+ msgstr ""
2265
+ "نمی‌توان در فایل wp-config.php نوشت. لطفا فایل wp-config.php خود را با مراجه "
2266
+ "به قسمت \"فایل wp-config.php\". بازگردانی کنید."
2267
+
2268
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:122
2269
+ msgid "All firewall rules have been disabled successfully!"
2270
+ msgstr "همه دستورهای دیوارآتش با موفقیت از کار انداخته شدند!"
2271
+
2272
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:136
2273
+ msgid "WP Security Plugin"
2274
+ msgstr "افزونه امنیت فراگیر وردپرس"
2275
+
2276
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:138
2277
+ msgid ""
2278
+ "Thank you for using our WordPress security plugin. There are a lot of "
2279
+ "security features in this plugin."
2280
+ msgstr ""
2281
+ "از شما سپاسگزاریم که از افزونه امنیت وردپرس ما استفاده می‌کنید. در این افزونه "
2282
+ "ویژگی‌های امنیتی بسیاری وجود دارد."
2283
+
2284
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:139
2285
+ msgid ""
2286
+ "Go through each menu items and enable the security options to add more "
2287
+ "security to your site. Start by activating the basic features first."
2288
+ msgstr ""
2289
+ "به هرکدام از گزینه‌های فهرست بروید و با فعال کردن ویژگی‌های امنیتی، سایت خود "
2290
+ "را امن‌تر کنید. با فعال کردن ویژگی‌های پایه شروع کنید."
2291
+
2292
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:140
2293
+ msgid ""
2294
+ "It is a good practice to take a backup of your .htaccess file, database and "
2295
+ "wp-config.php file before activating the security features. This plugin has "
2296
+ "options that you can use to backup those resources easily."
2297
+ msgstr ""
2298
+ "این یک تمرین خوب است که پیش از فعال‌کردن ویژگی امنیتی یک پشتیبان از فایل ."
2299
+ "htaccess ، پایگاه‌داده و فایل wp-config.php خودتان بگیرید. این افزونه "
2300
+ "گزینه‌هایی دارد که با آنها به آسانی می‌توانید از فایل‌های ذکر شده پشتیبان تهیه "
2301
+ "کنید."
2302
+
2303
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:143
2304
+ msgid "Backup your database"
2305
+ msgstr "پشتیبان‌گیری از پایگاه‌داده"
2306
+
2307
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:144
2308
+ msgid "Backup .htaccess file"
2309
+ msgstr "پشتیبان‌گیری از فایل .htaccess"
2310
+
2311
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:145
2312
+ msgid "Backup wp-config.php file"
2313
+ msgstr "پشتیبان‌گیری از فایل wp-config.php"
2314
+
2315
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:151
2316
+ msgid "Disable Security Features"
2317
+ msgstr "از کار انداختن ویژگی امنیتی"
2318
+
2319
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:157
2320
+ msgid ""
2321
+ "If you think that some plugin functionality on your site is broken due to a "
2322
+ "security feature you enabled in this plugin, then use the following option "
2323
+ "to turn off all the security features of this plugin."
2324
+ msgstr ""
2325
+ "اگر فکر می‌کنید که یکی از ویژگی‌های امنیتی این افزونه باعث اختلال در کارکرد "
2326
+ "سایت شما شده است با استفاده از گزینه زیر می‌توانید همه ویژگی‌های امنیتی این "
2327
+ "افزونه را از کار بیندازید."
2328
+
2329
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:161
2330
+ msgid "Disable All Security Features"
2331
+ msgstr "از کار انداختن همه ویژگی‌های امنیتی"
2332
+
2333
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:167
2334
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:177
2335
+ msgid "Disable All Firewall Rules"
2336
+ msgstr "از کار انداختن همه دستورهای دیوارآتش"
2337
+
2338
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:173
2339
+ msgid ""
2340
+ "This feature will disable all firewall rules which are currently active in "
2341
+ "this plugin and it will also delete these rules from your .htacess file. Use "
2342
+ "it if you think one of the firewall rules is causing an issue on your site."
2343
+ msgstr ""
2344
+ "این ویژگی همه دستورهای دیوارآتش را که هم اکنون فعال است، از کار می‌اندازد و "
2345
+ "همچنین این دستورها را از فایل .htaccess شما پاک می‌کند. اگر فکر می‌کنید یکی از "
2346
+ "دستورهای دیوارآتش باعث بروز مشکل در سایت شما شده، از این ویژگی استفاده کنید."
2347
+
2348
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:206
2349
+ msgid ""
2350
+ "Your .htaccess file was successfully backed up! Using an FTP program go to "
2351
+ "the \"backups\" directory of this plugin to save a copy of the file to your "
2352
+ "computer."
2353
+ msgstr ""
2354
+ "فایل .htaccess شما با موفقیت پشتیبان‌گیری شد. با یک نرم‌افزار FTP به پوشه "
2355
+ "\"backups\" در مسیر نصب این افزونه بروید تا یک نسخه از پشتیبان را در "
2356
+ "کامپیوتر خود ذخیره کنید."
2357
+
2358
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:216
2359
+ msgid ""
2360
+ "htaccess file rename failed during backup. Please check your root directory "
2361
+ "for the backup file using FTP."
2362
+ msgstr ""
2363
+ "تغییر نام فایل .htaccess در هنگام پشتیبان‌گیری ناموفق بود. لطفا مسیر root "
2364
+ "هاست خود را برای یافتن فایل پشتیبان چک کنید. (با نرم افزار FTP)"
2365
+
2366
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:222
2367
+ msgid "htaccess backup failed."
2368
+ msgstr "پشتیبان‌گیری از .htaccess ناموفق بود."
2369
+
2370
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:237
2371
+ msgid "Please choose a .htaccess to restore from."
2372
+ msgstr ""
2373
+ "لطفا یک فایل .htaccess را انتخاب کنید تا با استفاده از آن بازگردانی انجام "
2374
+ "شود."
2375
+
2376
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:253
2377
+ msgid ""
2378
+ "htaccess file restore failed. Please attempt to restore the .htaccess "
2379
+ "manually using FTP."
2380
+ msgstr ""
2381
+ "بازگردانی فایل htaccess. ناموفق بود. لطفا بازگردانی htaccess. را به صورت "
2382
+ "دستی بازگردانی کنید."
2383
+
2384
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:257
2385
+ msgid "Your .htaccess file has successfully been restored!"
2386
+ msgstr "فایل .htaccess شما با موفقیت بازگردانی شد!"
2387
+
2388
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:263
2389
+ msgid ""
2390
+ "htaccess Restore operation failed! Please check the contents of the file you "
2391
+ "are trying to restore from."
2392
+ msgstr ""
2393
+ "عملیات بازگردانی .htaccess ناموفق بود. لطفا محتویات فایلی که قصد بازگردانی "
2394
+ "از آن را داشتید، بررسی کنید."
2395
+
2396
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:269
2397
+ msgid ".htaccess File Operations"
2398
+ msgstr "عملیات فایل .htaccess"
2399
+
2400
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:272
2401
+ msgid ""
2402
+ "Your \".htaccess\" file is a key component of your website's security and it "
2403
+ "can be modified to implement various levels of protection mechanisms."
2404
+ msgstr ""
2405
+ "فایل \".htaccess\" شما یک جزء کلیدی در امنیت سایت شماست که می‌توان با ویرایش "
2406
+ "آن ساز‌و‌کار‌های مختلف امنیتی را به سایت اضافه کرد."
2407
+
2408
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:273
2409
+ msgid ""
2410
+ "This feature allows you to backup and save your currently active .htaccess "
2411
+ "file should you need to re-use the the backed up file in the future."
2412
+ msgstr ""
2413
+ "این ویژگی به شما امکان پشتیبان‌گیری و ذخیره فایل .htaccess فعلی را می‌دهد که "
2414
+ "اگر در آینده لازم شد بتوانید دوباره از این فایل استفاده کنید."
2415
+
2416
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:274
2417
+ msgid ""
2418
+ "You can also restore your site's .htaccess settings using a backed up ."
2419
+ "htaccess file."
2420
+ msgstr ""
2421
+ "شما همچنین می‌توانید تنظیمات .htaccess سایتتان را با استفاده از یک فایل "
2422
+ "پشتیبان بازگردانی کنید."
2423
+
2424
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:288
2425
+ msgid "Save the current .htaccess file"
2426
+ msgstr "ذخیره فایل .htaccess کنونی"
2427
+
2428
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:292
2429
+ msgid ""
2430
+ "Click the button below to backup and save the currently active .htaccess "
2431
+ "file."
2432
+ msgstr ""
2433
+ "روی دکمه زیر کلیک کنید تا از فایل .htaccess کنونی پشتیبان و ذخیره گرفته شود."
2434
+
2435
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:293
2436
+ msgid "Backup .htaccess File"
2437
+ msgstr "پشتیبان‌گیری از فایل .htaccess"
2438
+
2439
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:297
2440
+ msgid "Restore from a backed up .htaccess file"
2441
+ msgstr "بازگردانی از یک فایل پشتیبان .htaccess"
2442
+
2443
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:303
2444
+ msgid ".htaccess file to restore from"
2445
+ msgstr "فایل .htaccess که بایستی از آن برای بازگردانی استفاده شود"
2446
+
2447
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:309
2448
+ msgid ""
2449
+ "After selecting your file, click the button below to restore your site using "
2450
+ "the backed up htaccess file (htaccess_backup.txt)."
2451
+ msgstr ""
2452
+ "پس از انتخاب فایل، روی دکمه زیر کلیک کنید تا سایت شما از فایل پشتیبان ."
2453
+ "htaccess بازگردانی شود. (htaccess_backup.txt)"
2454
+
2455
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:315
2456
+ msgid "Restore .htaccess File"
2457
+ msgstr "بازگردانی فایل .htaccess"
2458
+
2459
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:319
2460
+ msgid "View Contents of the currently active .htaccess file"
2461
+ msgstr "مشاهده محتویات فایل .htaccess کنونی"
2462
+
2463
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:348
2464
+ msgid "Please choose a wp-config.php file to restore from."
2465
+ msgstr "لطفا یک فایل wp-config.php را برای بازگردانی انتخاب کنید."
2466
+
2467
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:364
2468
+ msgid ""
2469
+ "wp-config.php file restore failed. Please attempt to restore this file "
2470
+ "manually using FTP."
2471
+ msgstr ""
2472
+ "باز گردانی فایل wp-config.php ناموفق بود. لطفا به صورت دستی بازگردانی را "
2473
+ "انجام دهید."
2474
+
2475
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:368
2476
+ msgid "Your wp-config.php file has successfully been restored!"
2477
+ msgstr "فایل wp-config.php شما با موفقیت بازگردانی شد!"
2478
+
2479
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:374
2480
+ msgid ""
2481
+ "wp-config.php Restore operation failed! Please check the contents of the "
2482
+ "file you are trying to restore from."
2483
+ msgstr ""
2484
+ "عملیات بازگردانی wp-config.php ناموفق بود. لطفا محتویات فایلی را که "
2485
+ "می‌خواستید بازگردانی کنید بررسی کنید."
2486
+
2487
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:380
2488
+ msgid "wp-config.php File Operations"
2489
+ msgstr "عملیات فایل wp-config.php"
2490
+
2491
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:383
2492
+ msgid ""
2493
+ "Your \"wp-config.php\" file is one of the most important in your WordPress "
2494
+ "installation. It is a primary configuration file and contains crucial things "
2495
+ "such as details of your database and other critical components."
2496
+ msgstr ""
2497
+ "فایل \"wp-config.php\" یکی از مهم‌ترین فایل‌های وردپرس است. این فایل یک پرونده "
2498
+ "پیکربندی اصلی است که شامل جزییات مهمی درباره پایگاه‌داده شما و دیگر بخش‌های "
2499
+ "مهم وردپرس می‌باشد."
2500
+
2501
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:384
2502
+ msgid ""
2503
+ "This feature allows you to backup and save your currently active wp-config."
2504
+ "php file should you need to re-use the the backed up file in the future."
2505
+ msgstr ""
2506
+ "این ویژگی به شما اجازه می‌دهد که از فایل wp-config.php کنونی خود پشتیبان تهیه "
2507
+ "کنید تا در صورت نیاز در آینده بتوانید از آن استفاده کنید."
2508
+
2509
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:385
2510
+ msgid ""
2511
+ "You can also restore your site's wp-config.php settings using a backed up wp-"
2512
+ "config.php file."
2513
+ msgstr ""
2514
+ "همچنین شما می‌توانید با استفاده از یک پشتیبان که قبلا از این فایل تهیه کرده "
2515
+ "اید، تنظیمات wp-config.php سایت خود را بازگردانی کنید."
2516
+
2517
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:399
2518
+ msgid "Save the current wp-config.php file"
2519
+ msgstr "دخیره فایل wp-config.php کنونی"
2520
+
2521
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:403
2522
+ msgid ""
2523
+ "Click the button below to backup and download the contents of the currently "
2524
+ "active wp-config.php file."
2525
+ msgstr ""
2526
+ "روی دکمه زیر کلیک کنید تا از فایل wp-config.php کنونی پشتیبان تهیه کنید."
2527
+
2528
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:404
2529
+ msgid "Backup wp-config.php File"
2530
+ msgstr "پشتیبان‌گیری از فایل wp-config.php"
2531
+
2532
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:409
2533
+ msgid "Restore from a backed up wp-config file"
2534
+ msgstr "بازگردانی از یک فایل پشتیبان wp-config"
2535
+
2536
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:415
2537
+ msgid "wp-config file to restore from"
2538
+ msgstr "فایلی که باید از آن برای بازگردانی استفاده کرد"
2539
+
2540
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:421
2541
+ msgid ""
2542
+ "After selecting your file click the button below to restore your site using "
2543
+ "the backed up wp-config file (wp-config.php.backup.txt)."
2544
+ msgstr ""
2545
+ "بعد از آن که فایل پشتیبان را انتخاب کردید روی دکمه زیر کلیک کنید تا تنظیمات "
2546
+ "wp-config.php از فایل پشتیبان بازگردانی شود. (wp-config.php.backup.txt)"
2547
+
2548
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:427
2549
+ msgid "Restore wp-config File"
2550
+ msgstr "بازگردانی فایل wp-config"
2551
+
2552
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:431
2553
+ msgid "View Contents of the currently active wp-config.php file"
2554
+ msgstr "دیدن محتویات فایل wp-config.php کنونی"
2555
+
2556
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:466
2557
+ msgid "WP Generator Meta Tag"
2558
+ msgstr "سازنده تگ‌های Meta"
2559
+
2560
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:469
2561
+ msgid ""
2562
+ "Wordpress generator automatically adds some meta information inside the "
2563
+ "\"head\" tags of every page on your site's front end. Below is an example of "
2564
+ "this:"
2565
+ msgstr ""
2566
+ "وردپرس به طور خودکارتعدادی فراداده(Metadata) را در قسمت \"head\" هر صفحه از "
2567
+ "سایت شما وارد می‌کند. در زیر می‌توانید نمونه‌ای از این فراداده‌ها را ببینید:"
2568
+
2569
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:471
2570
+ msgid ""
2571
+ "The above meta information shows which version of WordPress your site is "
2572
+ "currently running and thus can help hackers or crawlers scan your site to "
2573
+ "see if you have an older version of WordPress or one with a known exploit."
2574
+ msgstr ""
2575
+ "فراداده‌های بالا نشان می‌دهند که شما از کدام نسخه وردپرس استفاده می‌کنید؛ در "
2576
+ "نتیجه هکرها یا Crawlerها می‌توانند بفهمند که آیا شما از نسخه‌های قدیمی وردپرس "
2577
+ "استفاده می‌کنید و یا حفره امنیتی شناخته شده‌ای دارید."
2578
+
2579
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:472
2580
+ msgid ""
2581
+ "This feature will allow you to remove the WP generator meta info from your "
2582
+ "site's pages."
2583
+ msgstr ""
2584
+ "این ویژگی به شما اجازه می‌دهد که این فراداده‌ها را از برگه‌های سایت خود پاک "
2585
+ "کنید."
2586
+
2587
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:478
2588
+ msgid "WP Generator Meta Info"
2589
+ msgstr "سازنده فراداده"
2590
+
2591
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:490
2592
+ msgid "Remove WP Generator Meta Info"
2593
+ msgstr "پاک کردن فراداده‌ها"
2594
+
2595
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:493
2596
+ msgid ""
2597
+ "Check this if you want to remove the meta info produced by WP Generator from "
2598
+ "all pages"
2599
+ msgstr ""
2600
+ "اگر می‌خواهید که فراداده‌هایی که بدست وردپرس ساخته شده از همه برگه‌ها پاک شود، "
2601
+ "این گزینه را تیک بزنید."
2602
+
2603
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:23
2604
+ msgid "Comment SPAM"
2605
+ msgstr "دیدگاه‌های جفنگ"
2606
+
2607
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:24
2608
+ msgid "Comment SPAM IP Monitoring"
2609
+ msgstr "نظارت بر IP دیدگاه‌های جفنگ"
2610
+
2611
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:111
2612
+ msgid "Comment SPAM Settings"
2613
+ msgstr "تنظیمات دیدگاه‌های جفنگ"
2614
+
2615
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:116
2616
+ msgid "Add Captcha To Comments Form"
2617
+ msgstr "افزودن فرم Captcha به فرم دیدگاه‌ها"
2618
+
2619
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:120
2620
+ msgid ""
2621
+ "This feature will add a simple math captcha field in the WordPress comments "
2622
+ "form."
2623
+ msgstr "این ویژگی یک زمینه Captcha ریاضی به فرم دیدگاه‌های وردپرس اضافه می‌کند."
2624
+
2625
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:137
2626
+ msgid "Enable Captcha On Comment Forms"
2627
+ msgstr "فعال کردن Captcha در فرم دیدگاه‌ها"
2628
+
2629
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:140
2630
+ msgid "Check this if you want to insert a captcha field on the comment forms"
2631
+ msgstr ""
2632
+ "اگر می‌خواهید یک زمینه Captcha در فرم دیدگاه‌ها وارد کنید، این گزینه را تیک "
2633
+ "بزنید."
2634
+
2635
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:148
2636
+ msgid "Block Spambot Comments"
2637
+ msgstr "بازداشتن ربات‌های جفنگ‌نویس"
2638
+
2639
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:152
2640
+ msgid ""
2641
+ "A large portion of WordPress blog comment SPAM is mainly produced by "
2642
+ "automated bots and not necessarily by humans. "
2643
+ msgstr ""
2644
+ "بخش بزرگی از دیدگاه‌های جفنگ یک سایت وردپرس،از سوی ربات‌های خودکار نوشته می‌شود."
2645
+
2646
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:153
2647
+ msgid ""
2648
+ "This feature will greatly minimize the useless and unecessary traffic and "
2649
+ "load on your server resulting from SPAM comments by blocking all comment "
2650
+ "requests which do not originate from your domain."
2651
+ msgstr ""
2652
+ "این ویژگی از راه بازداشتن درخواست‌های ثبت دیدگاه تا اندازه زیادی ترافیک "
2653
+ "بی‌استفاده و بی‌اهمیت و فشار روی سِرور شما را (که نتیجه دیدگاه‌های جفنگ است) "
2654
+ "کاهش می‌دهد."
2655
+
2656
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:170
2657
+ msgid "Block Spambots From Posting Comments"
2658
+ msgstr "بازداشتن ربات‌های جفنگ‌نویس از فرستادن دیدگاه"
2659
+
2660
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:173
2661
+ msgid ""
2662
+ "Check this if you want to apply a firewall rule which will block comments "
2663
+ "originating from spambots."
2664
+ msgstr ""
2665
+ "اگر می‌خواهید یک دستور دیوارآتش برای جلوگیری از ربات‌های جفنگ‌نویس به کار "
2666
+ "بگیرید این گزینه را تیک بزنید."
2667
+
2668
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:177
2669
+ msgid ""
2670
+ "This feature will implement a firewall rule to block all comment attempts "
2671
+ "which do not originate from your domain."
2672
+ msgstr ""
2673
+ "این ویژگی یک دستور دیوارآتش برای جلوگیری از تمام درخواست‌های ثبت دیدگاه که از "
2674
+ "دامنه شما سرچشمه نگرفته، پیاده سازی می‌کند."
2675
+
2676
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:178
2677
+ msgid ""
2678
+ "A legitimate comment is one which is submitted by a human who physically "
2679
+ "fills out the comment form and clicks the submit button. For such events, "
2680
+ "the HTTP_REFERRER is always set to your own domain."
2681
+ msgstr ""
2682
+ "یک دیدگاه واقعی، دیدگاهی است که توسط یک انسان پر می‌شود؛ یک انسان که فرم "
2683
+ "دیدگاه را پر می‌کند و سپس روی گزینه ثبت کلیک می‌کند. برای بعضی رخدادها مانند "
2684
+ "دیدگاه‌گذاری HTTP_REFERRER روی دامنه شما تنظیم می‌شود."
2685
+
2686
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:179
2687
+ msgid ""
2688
+ "A comment submitted by a spambot is done by directly calling the comments."
2689
+ "php file, which usually means that the HTTP_REFERRER value is not your "
2690
+ "domain and often times empty."
2691
+ msgstr ""
2692
+ "دیدگاهی که از سوی یک ربات جفنگ‌گذار تولید می‌شود، تنها با فراخوانی فایل "
2693
+ "comments.php به ثبت می‌رسد که معمولا در این فرآیند مقدار HTTP_REFERRER دامنه "
2694
+ "شما نیست و اغلب خالی است."
2695
+
2696
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:180
2697
+ msgid ""
2698
+ "This feature will check and block comment requests which are not referred by "
2699
+ "your domain thus greatly reducing your overall blog SPAM and PHP requests "
2700
+ "done by the server to process these comments."
2701
+ msgstr ""
2702
+ "این ویژگی درخواست‌های ثبت دیدگاه را بررسی می‌کند و آن‌هایی که از دامنه شما "
2703
+ "سرچشمه نمی‌گیرند، مسدود می‌کند. این کار باعث کاهش حجم عظیم جفنگ‌ها و پردازش‌هایی "
2704
+ "می‌شود که سِرور برای این جفنگ‌ها انجام می‌دهد."
2705
+
2706
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:207
2707
+ msgid "Nonce check failed for list SPAM comment IPs!"
2708
+ msgstr "بررسی Nonce برای لیست کردن IP دیدگاه‌های جفنگ ناموفق بود!"
2709
+
2710
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:213
2711
+ msgid ""
2712
+ "You entered a non numeric value for the minimum SPAM comments per IP field. "
2713
+ "It has been set to the default value."
2714
+ msgstr ""
2715
+ "شما یک مقدار غیرعددی برای کمترین تعداد جفنگ برای هر IP وارد کردید. مقدار "
2716
+ "پیش‌فرض استفاده می‌شود."
2717
+
2718
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:225
2719
+ #, php-format
2720
+ msgid ""
2721
+ "Displaying results for IP addresses which have posted a minimum of %s SPAM "
2722
+ "comments"
2723
+ msgstr "نمایش نتایج برای IP آدرس‌هایی که حداقل %s دیدگاه جفنگ فرستاده‌اند."
2724
+
2725
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:241
2726
+ msgid ""
2727
+ "This tab displays a list of the IP addresses of the people or bots who have "
2728
+ "left SPAM comments on your site."
2729
+ msgstr ""
2730
+ "این تَب فهرست IP آدرس‌ مردم یا ربات‌هایی که در سایت شما دیدگاه جفنگ نوشته‌اند، "
2731
+ "نشان می‌دهد."
2732
+
2733
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:242
2734
+ msgid ""
2735
+ "This information can be handy for identifying the most persistent IP "
2736
+ "addresses or ranges used by spammers."
2737
+ msgstr ""
2738
+ "برای شناسایی محدوده IPهایی که توسط جفنگ‌نویس‌ها استفاده می‌شود،این داده‌ها به "
2739
+ "کار می‌آیند."
2740
+
2741
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:243
2742
+ msgid ""
2743
+ "By inspecting the IP address data coming from spammers you will be in a "
2744
+ "better position to determine which addresses or address ranges you should "
2745
+ "block by adding them to your blacklist."
2746
+ msgstr ""
2747
+ "با شناسایی IP جفنگ‌نویس‌ها شما بهتر می‌توانید IPها یا محدوده IPهایی که باید در "
2748
+ "لیست سیاه قرار دهید، تشخیص بدهید."
2749
+
2750
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:244
2751
+ msgid ""
2752
+ "To add one or more of the IP addresses displayed in the table below to your "
2753
+ "blacklist, simply click the \"Block\" link for the individual row or select "
2754
+ "more than one address \n"
2755
+ " using the checkboxes and then choose the \"block"
2756
+ "\" option from the Bulk Actions dropdown list and click the \"Apply\" button."
2757
+ msgstr ""
2758
+ "برای افزودن هرکدام از IPهای زیر به لیست سیاه، روی لینک \"بازداشتن\" در ردیف "
2759
+ "هرکدام کلیک کنید یا برای افزودن چندتایی آدرس‌ها از جعبه‌تیک‌ها استفاده کنید، "
2760
+ "سپس گزینه \"بازداشتن\" را از فهرست کارهای دسته‌جمعی انتخاب و روی دکمه اجرا "
2761
+ "کلیک کنید."
2762
+
2763
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:250
2764
+ msgid "List SPAMMER IP Addresses"
2765
+ msgstr "فهرست IP آدرس‌های جفنگ‌نویس‌ها"
2766
+
2767
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:256
2768
+ msgid "Minimum number of SPAM comments per IP"
2769
+ msgstr "کمترین تعداد دیدگاه‌های جفنگ برای هر IP"
2770
+
2771
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:258
2772
+ msgid ""
2773
+ "This field allows you to list only those IP addresses which have been used "
2774
+ "to post X or more SPAM comments."
2775
+ msgstr ""
2776
+ "این زمینه به شما اجازه می‌دهد که تنها IP آدرس‌هایی را فهرست کنید که برای "
2777
+ "فرستادن X دیدگاه جفنگ یا بیشتر استفاده شده اند."
2778
+
2779
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:262
2780
+ msgid ""
2781
+ "Example 1: Setting this value to \"0\" or \"1\" will list ALL IP addresses "
2782
+ "which were used to submit SPAM comments."
2783
+ msgstr ""
2784
+ "نمونه یک: تنظیم این مقدار روی عدد 0 یا 1 باعث می‌شود که همه IP آدرس‌های "
2785
+ "استفاده شده برای دیدگاه‌های جفنگ، فهرست شوند."
2786
+
2787
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:263
2788
+ msgid ""
2789
+ "Example 2: Setting this value to \"5\" will list only those IP addresses "
2790
+ "which were used to submit 5 SPAM comments or more on your site."
2791
+ msgstr ""
2792
+ "نمونه دو: تنظیم این مقدار روی عدد 5 باعث می‌شود که همه IP آدرس‌هایی که برای "
2793
+ "ثبت 5 دیدگاه جفنگ یا بیشتر استفاده شده‌اند، فهرست شوند."
2794
+
2795
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:270
2796
+ msgid "Find IP Addresses"
2797
+ msgstr "یافتن IP آدرس‌ها"
2798
+
2799
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:274
2800
+ msgid "SPAMMER IP Address Results"
2801
+ msgstr "نتایج IP آدرس‌های جفنگ‌نویس"
2802
+
2803
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:280
2804
+ #: all-in-one-wp-security/classes/wp-security-utility.php:150
2805
+ msgid ""
2806
+ "The plugin has detected that you are using a Multi-Site WordPress "
2807
+ "installation."
2808
+ msgstr "افزونه تشخیص داده است که شما از نسخه چندین‌سایت وردپرس استفاده می‌کنید."
2809
+
2810
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:281
2811
+ msgid "Only the \"superadmin\" can block IP addresses from the main site."
2812
+ msgstr "تنها مدیر ارشد می‌تواند IP آدرس‌ها را از سایت اصلی مسدود کند."
2813
+
2814
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:282
2815
+ msgid ""
2816
+ "Take note of the IP addresses you want blocked and ask the superadmin to add "
2817
+ "these to the blacklist using the \"Blacklist Manager\" on the main site."
2818
+ msgstr ""
2819
+ "همه IP آدرس‌هایی را که می‌خواهید مسدود شوند یادداشت کرده و به از مدیر ارشد "
2820
+ "سایت بخواهید که آن‌ها را در لیست سیاه قرار دهد.(با استفاده از \"مدیریت لیست "
2821
+ "سیاه\")"
2822
+
2823
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:29
2824
+ msgid "WP Username"
2825
+ msgstr "نام کاربری وردپرس"
2826
+
2827
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:30
2828
+ msgid "Display Name"
2829
+ msgstr "نام نمایشی"
2830
+
2831
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:31
2832
+ msgid "Password"
2833
+ msgstr "گذرواژه"
2834
+
2835
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:85
2836
+ msgid "Admin User Security"
2837
+ msgstr "امنیت کاربر مدیر"
2838
+
2839
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:88
2840
+ msgid ""
2841
+ "By default, WordPress sets the administrator username to \"admin\" at "
2842
+ "installation time."
2843
+ msgstr ""
2844
+ "در هنگام نصب وردپرس، نام کاربری مدیر به طور پیش‌فرض روی \"admin\" تنظیم "
2845
+ "می‌شود."
2846
+
2847
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:89
2848
+ msgid ""
2849
+ "A lot of hackers try to take advantage of this information by attempting "
2850
+ "\"Brute Force Login Attacks\" where they repeatedly try to guess the "
2851
+ "password by using \"admin\" for username."
2852
+ msgstr ""
2853
+ "بسیاری از هکرها با دانستن این نام کاربری پیش‌فرض،دست به حملات Brute Force "
2854
+ "برای ورود به سایت می‌زنند. که این حملات ترکیبی از نام کاربری \"admin\" و "
2855
+ "گذرواژه‌های مختلف است."
2856
+
2857
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:90
2858
+ msgid ""
2859
+ "From a security perspective, changing the default \"admin\" user name is one "
2860
+ "of the first and smartest things you should do on your site."
2861
+ msgstr ""
2862
+ "از دیدگاه امنیتی، تغییر نام کاربری پیش‌فرض \"admin\"، یکی از اولین و "
2863
+ "هوشمندانه‌ترین کارهایی است که شما باید روی سایتتان انجام دهید."
2864
+
2865
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:91
2866
+ msgid ""
2867
+ "This feature will allow you to change your default \"admin\" user name to a "
2868
+ "more secure name of your choosing."
2869
+ msgstr ""
2870
+ "این ویژگی به شما امکان تغییر نام کاربری پیش‌فرض \"admin\" را به هر نام کاربری "
2871
+ "دیگری می‌دهد."
2872
+
2873
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:98
2874
+ msgid "List of Administrator Accounts"
2875
+ msgstr "فهرست حساب‌های کاربری مدیران"
2876
+
2877
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:107
2878
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:33
2879
+ msgid "Change Admin Username"
2880
+ msgstr "تغییر نام‌کاربری مدیر"
2881
+
2882
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:115
2883
+ msgid ""
2884
+ "Your site currently has an account which uses the default \"admin\" "
2885
+ "username. \n"
2886
+ " It is highly recommended that you change this name to "
2887
+ "something else. \n"
2888
+ " Use the following field to change the admin username."
2889
+ msgstr ""
2890
+ "سایت شما هم اکنون دارای حسابی با نام کاربری \"admin\" می‌باشد.\n"
2891
+ "به شما شدیداً توصیه می‌شود که این نام کاربری را با نام دیگری عوض کنید. \n"
2892
+ "از زمینه زیر برای تغییر نام کاربری مدیر استفاده کنید."
2893
+
2894
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:123
2895
+ msgid "New Admin Username"
2896
+ msgstr "نام‌کاربری تازه برای مدیر"
2897
+
2898
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:125
2899
+ msgid "Choose a new username for admin."
2900
+ msgstr "یک نام کاربری تازه برای مدیر انتخاب کنید."
2901
+
2902
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:129
2903
+ msgid "Change Username"
2904
+ msgstr "تغییر نام‌کاربری"
2905
+
2906
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:131
2907
+ msgid ""
2908
+ "NOTE: If you are currently logged in as \"admin\" you will be automatically "
2909
+ "logged out after changing your username and will be required to log back in."
2910
+ msgstr ""
2911
+ "توجه: چنانچه شما هم اکنون با نام کاربری \"admin\" وارد سایت شده‌اید، پس از "
2912
+ "تغییر نام‌کاربری به طور خودکار از سایت خارج می‌شود و بایستی دوباره وارد سایت "
2913
+ "شوید."
2914
+
2915
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:138
2916
+ msgid "No action required! "
2917
+ msgstr "هیچ اقدامی نیاز نیست!"
2918
+
2919
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:140
2920
+ msgid ""
2921
+ "Your site does not have any account which uses the default \"admin\" "
2922
+ "username. "
2923
+ msgstr "سایت شما هیچ حساب کاربری با نام پیش‌فرض \"admin\" ندارد."
2924
+
2925
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:141
2926
+ msgid "This is good security practice."
2927
+ msgstr "این یک آمادگی خوب امنیتی است."
2928
+
2929
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:153
2930
+ msgid "Display Name Security"
2931
+ msgstr "امنیت نام نمایشی"
2932
+
2933
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:156
2934
+ msgid ""
2935
+ "When you submit a post or answer a comment, WordPress will usually display "
2936
+ "your \"nickname\"."
2937
+ msgstr ""
2938
+ "هنگامی که شما یک نوشته را منتشر می‌کنید یا به یک دیدگاه پاسخ می‌دهید، وردپرس "
2939
+ "معمولا لقب شما را نمایش می‌دهد."
2940
+
2941
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:157
2942
+ msgid ""
2943
+ "By default the nickname is set to the login (or user) name of your account."
2944
+ msgstr ""
2945
+ "به طور پیش‌فرض لقب همان نام‌کاربری حساب شماست(یا نامی که برای ورود به سایت "
2946
+ "استفاده می‌کنید)."
2947
+
2948
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:158
2949
+ msgid ""
2950
+ "From a security perspective, leaving your nickname the same as your user "
2951
+ "name is bad practice because it gives a hacker at least half of your "
2952
+ "account's login credentials."
2953
+ msgstr ""
2954
+ "از دیدگاه امنیتی، نمایش نام‌کاربری به عنوان لقب یک کار خطرناک است زیرا در این "
2955
+ "صورت شما نیمی از اطلاعات لازم برای ورود به سایت را در اختیار هکرها می‌گذارید."
2956
+
2957
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:159
2958
+ msgid ""
2959
+ "Therefore to further tighten your site's security you are advised to change "
2960
+ "your <strong>nickname</strong> and <strong>Display name</strong> to be "
2961
+ "different from your <strong>Username</strong>."
2962
+ msgstr ""
2963
+ "پس به شما سفارش می‌شود برای امن‌تر کردن سایتتان، <strong>لقب</strong> و "
2964
+ "<strong>نمایش عمومی نام</strong> خود را، به چیزی متفاوت از <strong>نام "
2965
+ "کاربری</strong> تغییر دهید."
2966
+
2967
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:165
2968
+ msgid "Modify Accounts With Identical Login Name & Display Name"
2969
+ msgstr "ویرایش حساب‌هایی که نام نمایشی و نام‌ورود آن‌ها یکسان است"
2970
+
2971
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:174
2972
+ msgid ""
2973
+ "Your site currently has the following accounts which have an identical login "
2974
+ "name and display name."
2975
+ msgstr "حساب‌های زیر در سایت شما دارای نام نمایشی و نام‌ورود یکسان هستند."
2976
+
2977
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:175
2978
+ msgid "Click on the link to edit the settings of that particular user account"
2979
+ msgstr "برای ویرایش تنظیمات هر کاربر روی لینک مربوط به آن حساب کلیک کنید"
2980
+
2981
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:190
2982
+ msgid "No action required."
2983
+ msgstr "اقدامی نیاز نیست!"
2984
+
2985
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:191
2986
+ msgid ""
2987
+ "Your site does not have a user account where the display name is identical "
2988
+ "to the username."
2989
+ msgstr "هیچ حسابی در سایت شما دارای نام نمایشی و نام‌ورود یکسان نیست."
2990
+
2991
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:202
2992
+ msgid "Password Tool"
2993
+ msgstr "ابزار گذرواژه"
2994
+
2995
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:205
2996
+ msgid ""
2997
+ "Poor password selection is one of the most common weak points of many sites "
2998
+ "and is usually the first thing a hacker will try to exploit when attempting "
2999
+ "to break into your site."
3000
+ msgstr ""
3001
+ "انتخاب گذرواژه ضعیف یکی از آسیب‌پذیری‌های معمول در بسیاری از سایت‌هاست و معمولا "
3002
+ "اولین چیزی است که هکرها از آن برای ورود به سایت شما سوءاستفاده می‌کنند."
3003
+
3004
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:206
3005
+ msgid ""
3006
+ "Many people fall into the trap of using a simple word or series of numbers "
3007
+ "as their password. Such a predictable and simple password would take a "
3008
+ "competent hacker merely minutes to guess your password by using a simple "
3009
+ "script which cycles through the easy and most common combinations."
3010
+ msgstr ""
3011
+ "بسیاری از مردم با انتخاب یک واژه ساده یا دنباله‌ای از اعداد برای گذرواژه‌‌شان، "
3012
+ "در دام می‌افتند. یک گذرواژه ساده و قابل پیش‌بینی صرفا چند دقیقه از وقت یک هکر "
3013
+ "ماهر را می‌گیرد که با استفاده از یک اسکریپت ساده و چرخیدن در میان عبارت‌های "
3014
+ "رایج گذرواژه شما را پیدا کند."
3015
+
3016
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:207
3017
+ msgid ""
3018
+ "The longer and more complex your password is the harder it is for hackers to "
3019
+ "\"crack\" because more complex passwords require much greater computing "
3020
+ "power and time."
3021
+ msgstr ""
3022
+ "هرچه گذرواژه طولانی‌تر و پیچیده‌تر باشد، شکستن یا کرک کردن آن سخت‌تر می‌شود؛ "
3023
+ "زیرا گذرواژه پیچیده‌تر زمان و قدرت پردازشی بیشتری نیاز دارد."
3024
+
3025
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:208
3026
+ msgid ""
3027
+ "This section contains a useful password strength tool which you can use to "
3028
+ "check whether your password is sufficiently strong enough."
3029
+ msgstr ""
3030
+ "این بخش دارای یک ابزار کاربردی قدرت گذرواژه است که می‌توانید با استفاده از آن "
3031
+ "بفهمید که گذواژه‌تان چقدر قوی است."
3032
+
3033
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:213
3034
+ msgid "Password Strength Tool"
3035
+ msgstr "ابزار قدرت گذرواژه"
3036
+
3037
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:218
3038
+ msgid "Start typing a password."
3039
+ msgstr "یک گذرواژه تایپ کنید"
3040
+
3041
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:221
3042
+ msgid "It would take a desktop PC approximately"
3043
+ msgstr "باری یک رایانه رومیزی تقریباً"
3044
+
3045
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:222
3046
+ msgid "1 sec"
3047
+ msgstr "1 ثانیه"
3048
+
3049
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:222
3050
+ msgid "to crack your password!"
3051
+ msgstr "طول می‌کشد تا گذرواژه شما را بشکند."
3052
+
3053
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:227
3054
+ msgid "Password Strength"
3055
+ msgstr "قدرت گذرواژه"
3056
+
3057
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:243
3058
+ msgid "Nonce check failed on admin username change operation!"
3059
+ msgstr "بررسی Nonce برای عملیات تغییر نام مدیر ناموفق بود!"
3060
+
3061
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:250
3062
+ msgid "Username "
3063
+ msgstr "نام کاربری"
3064
+
3065
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:250
3066
+ msgid " already exists. Please enter another value. "
3067
+ msgstr "از قبل وجود دارد.لطفا مقدار دیگری وارد کنید."
3068
+
3069
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:266
3070
+ msgid "The database update operation of the user account failed!"
3071
+ msgstr "عملیات به روز‌رسانی پایگاه‌داده برای این نام‌کاربری ناموفق بود!"
3072
+
3073
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:293
3074
+ msgid "You entered an invalid username. Please enter another value. "
3075
+ msgstr "شما یک نام‌کاربری نامعتبر وارد کردید.یک نام دیگر را آزمایش کنید."
3076
+
3077
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:297
3078
+ msgid "Please enter a value for your username. "
3079
+ msgstr "لطفا یک نام کاربری وارد کنید."
3080
+
3081
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:304
3082
+ msgid "Username Successfully Changed!"
3083
+ msgstr "نام کاربری با موفقیت تغییر کرد!"
3084
+
3085
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:324
3086
+ msgid "Account Login Name"
3087
+ msgstr "نام ورود مورد استفاده حساب"
3088
+
3089
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:28
3090
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:41
3091
+ msgid "Login Captcha"
3092
+ msgstr "Captcha برای ورود"
3093
+
3094
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:29
3095
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:407
3096
+ msgid "Login Whitelist"
3097
+ msgstr "لیست سفید ورود"
3098
+
3099
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:30
3100
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:519
3101
+ msgid "Failed Login Records"
3102
+ msgstr "رکورد ورودهای ناموفق"
3103
+
3104
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:31
3105
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:47
3106
+ msgid "Force Logout"
3107
+ msgstr "خروج اجباری"
3108
+
3109
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:32
3110
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:653
3111
+ msgid "Account Activity Logs"
3112
+ msgstr "گزارش فعالیت‌های حساب"
3113
+
3114
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:100
3115
+ msgid ""
3116
+ "You entered a non numeric value for the max login attempts field. It has "
3117
+ "been set to the default value."
3118
+ msgstr ""
3119
+ "شما یک مقدار غیر عددی برای حداکثر تلاش‌های ورود وارد کردید. مقدار پیش‌فرض "
3120
+ "استفاده می‌شود."
3121
+
3122
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:107
3123
+ msgid ""
3124
+ "You entered a non numeric value for the login retry time period field. It "
3125
+ "has been set to the default value."
3126
+ msgstr ""
3127
+ "شما یک مقدار غیر عددی برای بازه‌زمانی تلاش‌دوباره ورود وارد کردید. مقدار "
3128
+ "پیش‌فرض استفاده می‌شود."
3129
+
3130
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:114
3131
+ msgid ""
3132
+ "You entered a non numeric value for the lockout time length field. It has "
3133
+ "been set to the default value."
3134
+ msgstr ""
3135
+ "شما یک مقدار غیر عددی برای زمان بازداشتن از ورود وارد کردید. مقدار پیش‌فرض "
3136
+ "استفاده می‌شود."
3137
+
3138
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:159
3139
+ msgid "Login Lockdown Configuration"
3140
+ msgstr "تنظیمات بازداری از ورود"
3141
+
3142
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:163
3143
+ msgid "One of the ways hackers try to compromise sites is via a "
3144
+ msgstr "یکی از راههایی که هکر‌ها در روش"
3145
+
3146
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:163
3147
+ msgid "Brute Force Login Attack"
3148
+ msgstr "حمله Brute Force"
3149
+
3150
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:164
3151
+ msgid ""
3152
+ "This is where attackers use repeated login attempts until they guess the "
3153
+ "password."
3154
+ msgstr ""
3155
+ "برای ورود استفاده می‌کنند این است که به صورت مداوم اقدام به ورود می‌کنند تا "
3156
+ "زمانی که رمز را حدس بزنند."
3157
+
3158
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:165
3159
+ msgid ""
3160
+ "Apart from choosing strong passwords, monitoring and blocking IP addresses "
3161
+ "which are involved in repeated login failures in a short period of time is a "
3162
+ "very effective way to stop these types of attacks."
3163
+ msgstr ""
3164
+ "جدا از انتخاب گذرواژه قدرتمند، نظارت و مسدود کردن IPهایی که در یک بازه کوتاه "
3165
+ "چندین‌بار ورود ناموفق داشته اند، یک روش کارآمد برای جلوگیری از بروز این نوع "
3166
+ "حملات است."
3167
+
3168
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:166
3169
+ #, php-format
3170
+ msgid ""
3171
+ "You may also want to checkout our %s feature for another secure way to "
3172
+ "protect against these types of attacks."
3173
+ msgstr ""
3174
+ "اگر بخواهید می‌توانید ویژگی دیگری که ما برای جلوگیری از این نوع حملات به کار "
3175
+ "می گیریم ببینید: %s"
3176
+
3177
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:171
3178
+ msgid "Login Lockdown Options"
3179
+ msgstr "گزینه‌های بازداری از ورود"
3180
+
3181
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:183
3182
+ msgid "Enable Login Lockdown Feature"
3183
+ msgstr "به‌کارگیری ویژگی بازداری از ورود"
3184
+
3185
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:186
3186
+ msgid ""
3187
+ "Check this if you want to enable the login lockdown feature and apply the "
3188
+ "settings below"
3189
+ msgstr ""
3190
+ "اگر می‌خواهید ویژگی بازداری از ورود و تنظیمات زیر را به کار بگیرید، این گزینه "
3191
+ "را تیک بزنید"
3192
+
3193
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:190
3194
+ msgid "Max Login Attempts"
3195
+ msgstr "حداکثر تعداد تلاش برای ورود"
3196
+
3197
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:192
3198
+ msgid ""
3199
+ "Set the value for the maximum login retries before IP address is locked out"
3200
+ msgstr ""
3201
+ "حداکثر دفعاتی را که یک IP قبل از قفل شدن می‌تواند اقدام به ورود کند، وارد کنید"
3202
+
3203
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:196
3204
+ msgid "Login Retry Time Period (min)"
3205
+ msgstr "بازه زمانی تلاش برای ورود دوباره (دقیقه)"
3206
+
3207
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:198
3208
+ msgid ""
3209
+ "If the maximum number of failed login attempts for a particular IP address "
3210
+ "occur within this time period the plugin will lock out that address"
3211
+ msgstr ""
3212
+ "اگر حداکثر دفعات ورود ناموفق برای یک IP رخ بدهد، افزونه به اندازه این بازه "
3213
+ "زمانی، آن IP را قفل می‌کند."
3214
+
3215
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:202
3216
+ msgid "Time Length of Lockout (min)"
3217
+ msgstr "بازه زمانی قفل کردن (دقیقه)"
3218
+
3219
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:204
3220
+ msgid ""
3221
+ "Set the length of time for which a particular IP address will be prevented "
3222
+ "from logging in"
3223
+ msgstr "بازه‎‌ای که باید از ورود یک IP خاص جلوگیری شود، در این جا وارد کنید"
3224
+
3225
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:208
3226
+ msgid "Display Generic Error Message"
3227
+ msgstr "نمایش پیام خطای عمومی"
3228
+
3229
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:211
3230
+ msgid ""
3231
+ "Check this if you want to show a generic error message when a login attempt "
3232
+ "fails"
3233
+ msgstr ""
3234
+ "اگر می‌خواهید بعد از یک ورود ناموفق، یک پیام خطای عمومی نمایش داده شود این "
3235
+ "گزینه را تیک بزنید."
3236
+
3237
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:215
3238
+ msgid "Instantly Lockout Invalid Usernames"
3239
+ msgstr "قفل کردن فوری نام‌های کاربری نامعتبر"
3240
+
3241
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:218
3242
+ msgid ""
3243
+ "Check this if you want to instantly lockout login attempts with usernames "
3244
+ "which do not exist on your system"
3245
+ msgstr ""
3246
+ "اگر می‌خواهید بلافاصله تلاش‌های ورود برای نام‌های کاربری که در سایتتان نیست قفل "
3247
+ "شود، این گزینه را تیک بزنید"
3248
+
3249
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:223
3250
+ msgid "Notify By Email"
3251
+ msgstr "آگاه کردن از راه ایمیل"
3252
+
3253
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:226
3254
+ msgid ""
3255
+ "Check this if you want to receive an email when someone has been locked out "
3256
+ "due to maximum failed login attempts"
3257
+ msgstr ""
3258
+ "اگر می‌خواهید وقتی IP یک نفر در اثر تلاش‌های ناموفق زیاد قفل شد، به شما ایمیل "
3259
+ "زده شود، این گزینه را تیک بزنید."
3260
+
3261
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:236
3262
+ msgid "Currently Locked Out IP Address Ranges"
3263
+ msgstr "محدوده IPهایی که هم اکنون قفل شده اند"
3264
+
3265
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:290
3266
+ msgid ""
3267
+ "This feature allows you to add a captcha form on the WordPress login page."
3268
+ msgstr ""
3269
+ "این ویژگی به شما امکان اضافه کردن یک فرم Captcha به صفحه ورود وردپرس را "
3270
+ "می‌دهد."
3271
+
3272
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:291
3273
+ msgid ""
3274
+ "Users who attempt to login will also need to enter the answer to a simple "
3275
+ "mathematical question - if they enter the wrong answer, the plugin will not "
3276
+ "allow them login even if they entered the correct username and password."
3277
+ msgstr ""
3278
+ "کاربرانی که قصد ورود دارند همچنین باید پاسخ یک سوال ساده ریاضی را وارد کنند. "
3279
+ "اگر پاسخ نادرست بدهند افزونه از ورود آن‌ها جلوگیری می‌کند؛ حتی اگر نام‌کاربری و "
3280
+ "گذرواژه صحیح را وارد کرده باشند."
3281
+
3282
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:292
3283
+ msgid ""
3284
+ "Therefore, adding a captcha form on the login page is another effective yet "
3285
+ "simple \"Brute Force\" prevention technique."
3286
+ msgstr ""
3287
+ "بنابراین افزودن یک فرم Captcha به برگه ورود، یک ترفند ساده دیگر برای جلوگیری "
3288
+ "از Brute Force است."
3289
+
3290
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:298
3291
+ msgid "Login Form Captcha Settings"
3292
+ msgstr "تنظیمات Captcha برای برگه ورود"
3293
+
3294
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:309
3295
+ msgid "Enable Captcha On Login Page"
3296
+ msgstr "فعال کردن Captcha در برگه ورود"
3297
+
3298
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:312
3299
+ msgid "Check this if you want to insert a captcha form on the login page"
3300
+ msgstr ""
3301
+ "اگر می خواهید یک فرم Captcha به برگه ورود شما اضافه شود، این گزینه را تیک "
3302
+ "بزنید."
3303
+
3304
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:318
3305
+ msgid "Lost Password Form Captcha Settings"
3306
+ msgstr "تنظیم Captcha برای فرم بازیابی گذرواژه"
3307
+
3308
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:328
3309
+ msgid "Enable Captcha On Lost Password Page"
3310
+ msgstr "فعال کردن Captcha برای برگه بازیابی گذرواژه"
3311
+
3312
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:331
3313
+ msgid ""
3314
+ "Check this if you want to insert a captcha form on the lost password page"
3315
+ msgstr ""
3316
+ "اگر می‌خواهید به برگه بازیابی گذرواژه یک فرم Captcha اضافه کنید، این گزینه را "
3317
+ "تیک بزنید."
3318
+
3319
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:353
3320
+ msgid "Nonce check failed for save whitelist settings!"
3321
+ msgstr "بررسی Nonce برای ذخیره لیست سفید ناموفق بود!"
3322
+
3323
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:410
3324
+ msgid ""
3325
+ "The All In One WP Security Whitelist feature gives you the option of only "
3326
+ "allowing certain IP addresses or ranges to have access to your WordPress "
3327
+ "login page."
3328
+ msgstr ""
3329
+ "لیست سفید افزونه امنیت فراگیر وردپرس به شما اجازه می‌دهد تا فقط به تعداد "
3330
+ "مشخصی آدرس/محدوده IP اجازه دسترسی به برگه ورود را بدهید."
3331
+
3332
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:411
3333
+ msgid ""
3334
+ "This feature will deny login access for all IP addresses which are not in "
3335
+ "your whitelist as configured in the settings below."
3336
+ msgstr ""
3337
+ "طبق تنظیمات زیر، هر IP آدرسی که در لیست سفید نباشد از دسترسی به برگه ورود "
3338
+ "باز می‌ماند."
3339
+
3340
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:412
3341
+ msgid ""
3342
+ "The plugin achieves this by writing the appropriate directives to your ."
3343
+ "htaccess file."
3344
+ msgstr "افزونه برای این کار، دستورهای مناسبی را در فایل htaccess. شما می‌نویسد."
3345
+
3346
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:413
3347
+ msgid ""
3348
+ "By allowing/blocking IP addresses via the .htaccess file your are using the "
3349
+ "most secure first line of defence because login access will only be granted "
3350
+ "to whitelisted IP addresses and other addresses will be blocked as soon as "
3351
+ "they try to access your login page."
3352
+ msgstr ""
3353
+ "با اجازه دادن یا ندادن به IP آدرس‌ها از طریق فایل htaccess. ، شما از امن‌ترین "
3354
+ "خط دفاعی اولیه استفاده می‌کنید؛ زیرا اجازه دسترسی به برگه ورود تنها برای IP "
3355
+ "آدرس‌های موجود در لیست سفید صادر می‌شود و بقیه آدرس‌ها به محض تلاش برای رسیدن "
3356
+ "به برگه ورود، مسدود خواهند شد."
3357
+
3358
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:420
3359
+ #, php-format
3360
+ msgid ""
3361
+ "Attention: If in addition to enabling the white list feature, you also have "
3362
+ "the %s feature enabled, <strong>you will still need to use your secret word "
3363
+ "in the URL when trying to access your WordPress login page</strong>."
3364
+ msgstr ""
3365
+ "توجه: اگر علاوه بر فعال کردن ویژگی لیست سفید، شما ویژگی %s را هم فعال "
3366
+ "کنید، <strong>شما همچنان برای دسترسی به برگه ورود وردپرس، نیاز به وارد کردن "
3367
+ "واژه محرمانه در آدرس اینترنتی دارید</strong>."
3368
+
3369
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:421
3370
+ msgid ""
3371
+ "These features are NOT functionally related. Having both of them enabled on "
3372
+ "your site means you are creating 2 layers of security."
3373
+ msgstr ""
3374
+ "این دو ویژگی کارکرد مشابهی ندارند. فعال کردن همزمان آنها روی سایت به این "
3375
+ "معنا است که شما دو لایه حفاظتی ایجاد کرده اید."
3376
+
3377
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:426
3378
+ msgid "Login IP Whitelist Settings"
3379
+ msgstr "تنظیمات لیست سفید IP"
3380
+
3381
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:437
3382
+ msgid "Enable IP Whitelisting"
3383
+ msgstr "فعال کردن تنظیمات لیست سفید IP"
3384
+
3385
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:440
3386
+ msgid ""
3387
+ "Check this if you want to enable the whitelisting of selected IP addresses "
3388
+ "specified in the settings below"
3389
+ msgstr ""
3390
+ "اگر می‌خواهید ویژگی لیست سفید را برای IP آدرس‌هایی که در زیر مشخص کرده اید، "
3391
+ "فعال شود، این گزینه را تیک بزنید."
3392
+
3393
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:444
3394
+ msgid "Your Current IP Address"
3395
+ msgstr "آدرس IP کنونی شما"
3396
+
3397
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:447
3398
+ msgid ""
3399
+ "You can copy and paste this address in the text box below if you want to "
3400
+ "include it in your login whitelist."
3401
+ msgstr ""
3402
+ "شما می‌توانید این آدرس را کپی و در جعبه متن پایین، Paste کنید.(اگر می‌خواهید "
3403
+ "IP کنونی شما در لیست سفید ثبت شود)"
3404
+
3405
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:451
3406
+ msgid "Enter Whitelisted IP Addresses:"
3407
+ msgstr "IP آدرس‌های لیست سفید را وارد کنید:"
3408
+
3409
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:455
3410
+ msgid ""
3411
+ "Enter one or more IP addresses or IP ranges you wish to include in your "
3412
+ "whitelist. Only the addresses specified here will have access to the "
3413
+ "WordPress login page."
3414
+ msgstr ""
3415
+ "یک یا چند IP آدرس یا محدوده IP وارد کنید. تنها آدرس‌هایی که در اینجا ذکر شوند "
3416
+ "اجازه دسترسی به برگه ورود وردپرس را خواهند داشت."
3417
+
3418
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:485
3419
+ msgid "Nonce check failed for delete all failed login records operation!"
3420
+ msgstr ""
3421
+ "بررسی Nonce برای پاک کردن همه گزارش‌های ورود ناموفق، با شکست رو به رو شد!"
3422
+
3423
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:494
3424
+ msgid "User Login Feature - Delete all failed login records operation failed!"
3425
+ msgstr ""
3426
+ "ویژگی ورود کاربر - عملیات پاک کردن همه گزارش‌های ورود ناموفق، با شکست رو به "
3427
+ "رو شد!"
3428
+
3429
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:498
3430
+ msgid "All records from the Failed Logins table were deleted successfully!"
3431
+ msgstr "همه گزارش‌ها از جدول ورودهای ناموفق پاک شدند!"
3432
+
3433
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:513
3434
+ msgid "This tab displays the failed login attempts for your site."
3435
+ msgstr "این تَب، همه تلاش‌های ناموفق برای ورود به سایت شما را نشان می‌دهد."
3436
+
3437
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:514
3438
+ msgid ""
3439
+ "The information below can be handy if you need to do security investigations "
3440
+ "because it will show you the IP range, username and ID (if applicable) and "
3441
+ "the time/date of the failed login attempt."
3442
+ msgstr ""
3443
+ "اگر شما نیاز به انجام بررسی‌های امنیتی دارید، اطلاعات زیر می تواند سودمند "
3444
+ "باشد. زیرا این اطلاعات به شما محدوده IP، نام کاربری و ID (در صورت وجود) و "
3445
+ "تاریخ / زمانهای ورود ناموفق را نشان می‌دهد."
3446
+
3447
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:535
3448
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:544
3449
+ msgid "Delete All Failed Login Records"
3450
+ msgstr "پاک کردن همه گزارش‌های ورود ناموفق"
3451
+
3452
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:541
3453
+ msgid ""
3454
+ "Click this button if you wish to delete all failed login records in one go."
3455
+ msgstr ""
3456
+ "اگر می‌خواهید در یک حرکت همه گزارش‌های ورود ناموفق را پاک کنید، روی دکمه کلیک "
3457
+ "کنید."
3458
+
3459
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:569
3460
+ msgid ""
3461
+ "You entered a non numeric value for the logout time period field. It has "
3462
+ "been set to the default value."
3463
+ msgstr ""
3464
+ "شما یک مقدار غیر عددی برای بازه زمانی خروج از سایت وارد کرده‌اید. مقدار "
3465
+ "پیش‌فرض استفاده می‌شود."
3466
+
3467
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:597
3468
+ msgid ""
3469
+ "Setting an expiry period for your WP administration session is a simple way "
3470
+ "to protect against unauthorized access to your site from your computer."
3471
+ msgstr ""
3472
+ "تنظیم یک بازه زمانی برای مدت زمان حضور مدیر در سایت، یک راه مفید برای "
3473
+ "جلوگیری از دسترسی غیرمجاز به سایت از راه کامپیوتر شماست."
3474
+
3475
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:598
3476
+ msgid ""
3477
+ "This feature allows you to specify a time period in minutes after which the "
3478
+ "admin session will expire and the user will be forced to log back in."
3479
+ msgstr ""
3480
+ "این ویژگی به شما اجازه می‌دهد تا یک بازه زمانی(به دقیقه) تعیین کنید؛ پس از "
3481
+ "این بازه زمانی مدیر به طور خودکار از سایت خارج می‌شود و برای وارد شدن دوباره "
3482
+ "باید گذرواژه را وارد کند."
3483
+
3484
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:603
3485
+ msgid "Force User Logout Options"
3486
+ msgstr "گزینه‌های بیرون‌کردن اجباری کاربر"
3487
+
3488
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:615
3489
+ msgid "Enable Force WP User Logout"
3490
+ msgstr "فعال‌سازی بیرون کردن اجباری کاربر"
3491
+
3492
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:618
3493
+ msgid ""
3494
+ "Check this if you want to force a wp user to be logged out after a "
3495
+ "configured amount of time"
3496
+ msgstr ""
3497
+ "اگر می‌خواهید یک کاربر بعد از بازه زمانی مشخصی از سایت بیرون شود، این گزینه "
3498
+ "را تیک بزنید."
3499
+
3500
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:622
3501
+ msgid "Logout the WP User After XX Minutes"
3502
+ msgstr "بیرون کردن کاربر پس از XX دقیقه"
3503
+
3504
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:624
3505
+ msgid ""
3506
+ "(Minutes) The user will be forced to log back in after this time period has "
3507
+ "elapased."
3508
+ msgstr "(دقیقه) بعد از گذشت این زمان کاربر دوباره باید وارد سایت شود."
3509
+
3510
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:647
3511
+ msgid ""
3512
+ "This tab displays the login activity for WordPress admin accounts registered "
3513
+ "with your site."
3514
+ msgstr "این تَب، فعالیت‌های ورود را برای حساب‌های مدیران سایت نشان می‌دهد."
3515
+
3516
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:648
3517
+ msgid ""
3518
+ "The information below can be handy if you need to do security investigations "
3519
+ "because it will show you the last 50 recent login events by username, IP "
3520
+ "address and time/date."
3521
+ msgstr ""
3522
+ "اگر شما نیاز به انجام بررسی‌های امنیتی دارید، اطلاعات زیر می تواند سودمند "
3523
+ "باشد. زیرا 50 ورود آخر را بر اساس نام کاربری، IP آدرس و زمان/تاریخ نشان "
3524
+ "می‌دهد."
3525
+
3526
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:685
3527
+ msgid "Nonce check failed for users logged in list!"
3528
+ msgstr "بررسی Nonce برای فهرست کاربران حاضر در سایت، ناموفق بود!"
3529
+
3530
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:698
3531
+ msgid "Refresh Logged In User Data"
3532
+ msgstr "تازه کردن اطلاعات کاربران حاضر در سایت"
3533
+
3534
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:702
3535
+ msgid "Refresh Data"
3536
+ msgstr "تازه‌سازی"
3537
+
3538
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:708
3539
+ msgid "This tab displays all users who are currently logged into your site."
3540
+ msgstr "این تَب همه کاربرانی را که هم اکنون در سایت شما حاضر هستند، نشان می‌دهد."
3541
+
3542
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:709
3543
+ msgid ""
3544
+ "If you suspect there is a user or users who are logged in which should not "
3545
+ "be, you can block them by inspecting the IP addresses from the data below "
3546
+ "and adding them to your blacklist."
3547
+ msgstr ""
3548
+ "اگر شما به یک یا چند نفر از کاربران حاضر، بدگمان هستید، می‌توانید IP آدرس "
3549
+ "آن‌ها را از جدول زیر برداشته و در لیست سیاه خود قرار دهید."
3550
+
3551
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:714
3552
+ msgid "Currently Logged In Users"
3553
+ msgstr "کاربران حاضر در سایت"
3554
+
3555
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:779
3556
+ msgid "The selected records were deleted successfully!"
3557
+ msgstr "گزارش‌های انتخاب شده با موفقیت پاک شدند!"
3558
+
3559
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:788
3560
+ msgid "The selected record was deleted successfully!"
3561
+ msgstr "گزارش انتخاب شده با موفقیت پاک شد!"
3562
+
3563
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:23
3564
+ msgid "Manual Approval"
3565
+ msgstr "تأیید دستی"
3566
+
3567
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:24
3568
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:53
3569
+ msgid "Registration Captcha"
3570
+ msgstr "Captcha برای نام‌نویسی"
3571
+
3572
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:112
3573
+ msgid "User Registration Settings"
3574
+ msgstr "تنظیمات نام‌نویسی کاربر"
3575
+
3576
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:116
3577
+ msgid "Manually Approve New Registrations"
3578
+ msgstr "تأیید دستی نام‌نویسی‌های تازه"
3579
+
3580
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:120
3581
+ msgid ""
3582
+ "If your site allows people to create their own accounts via the WordPress "
3583
+ "registration form, then you can minimize SPAM or bogus registrations by "
3584
+ "manually approving each registration."
3585
+ msgstr ""
3586
+ "اگر سایت شما به مردم اجازه می‌دهد که خودشان از طریق فرم نام‌نویسی وردپرس برای "
3587
+ "خودشان حساب کاربری بسازند، شما می‌توانید با تأیید دستی نام‌نویسی‌ها جلوی "
3588
+ "مزاحم‌ها و جفنگ‌نویس‌ها را بگیرید."
3589
+
3590
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:121
3591
+ msgid ""
3592
+ "This feature will automatically set a newly registered account to \"pending"
3593
+ "\" until the administrator activates it. Therefore undesirable registrants "
3594
+ "will be unable to log in without your express approval."
3595
+ msgstr ""
3596
+ "این ویژگی به طور خودکار، حساب‌های تازه را در لیست انتظار قرار می‌دهد تا زمانی "
3597
+ "که مدیر آن حساب را فعال کند. بنابراین حساب‌های ناخواسته بدون تأیید صریح شما "
3598
+ "نمی‌توانند وارد سایت شوند."
3599
+
3600
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:122
3601
+ msgid ""
3602
+ "You can view all accounts which have been newly registered via the handy "
3603
+ "table below and you can also perform bulk activation/deactivation/deletion "
3604
+ "tasks on each account."
3605
+ msgstr ""
3606
+ "شما می‌توانید همه حساب‌هایی را که به تازگی نام‌نویسی کرده اند در جدول زیر "
3607
+ "ببینید و کارهای دسته جمعی مانند فعال‌کردن/غیر فعال‌کردن/پاک کردن را روی آنها "
3608
+ "انجام دهید."
3609
+
3610
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:138
3611
+ msgid "Enable manual approval of new registrations"
3612
+ msgstr "فعال‌سازی تأیید دستی برای نام‌نویسی‌های تازه"
3613
+
3614
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:141
3615
+ msgid ""
3616
+ "Check this if you want to automatically disable all newly registered "
3617
+ "accounts so that you can approve them manually."
3618
+ msgstr ""
3619
+ "اگر می‌خواهید هر نام‌نویسی تازه‌ای که اتفاق می‌افتد به صورت دستی تأیید کنید، این "
3620
+ "گزینه را تیک بزنید."
3621
+
3622
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:150
3623
+ msgid "Approve Registered Users"
3624
+ msgstr "تأیید کاربران ثبت‌نام شده"
3625
+
3626
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:195
3627
+ msgid ""
3628
+ "This feature allows you to add a captcha form on the WordPress registration "
3629
+ "page."
3630
+ msgstr ""
3631
+ "این ویژگی به شما اجازه می‌دهد که یک فرم Captcha به برگه نام‌نویسی وردپرس اضافه "
3632
+ "کنید."
3633
+
3634
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:196
3635
+ msgid ""
3636
+ "Users who attempt to register will also need to enter the answer to a simple "
3637
+ "mathematical question - if they enter the wrong answer, the plugin will not "
3638
+ "allow them to register."
3639
+ msgstr ""
3640
+ "کسانی که می‌خواهند نام‌نویسی کنند بایستی به یک پرسش ساده ریاضی پاسخ بدهند. در "
3641
+ "صورت دادن پاسخ اشتباه آن‌ها نمی‌توانند نام نویسی کنند."
3642
+
3643
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:197
3644
+ msgid ""
3645
+ "Therefore, adding a captcha form on the registration page is another "
3646
+ "effective yet simple SPAM registration prevention technique."
3647
+ msgstr ""
3648
+ "بنابراین افزودن یک فرم Captcha به برگه نام‌نویسی یک ترفند ساده دیگر برای "
3649
+ "جلوگیری از نام‌نویسی جفنگ‌نویس‌هاست."
3650
+
3651
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:202
3652
+ msgid "Registration Page Captcha Settings"
3653
+ msgstr "تنظیمات Captcha برای نام‌نویسی"
3654
+
3655
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:214
3656
+ msgid "Enable Captcha On Registration Page"
3657
+ msgstr "فعال‌سازی Captcha در برگه نام‌نویسی"
3658
+
3659
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:217
3660
+ msgid ""
3661
+ "Check this if you want to insert a captcha form on the WordPress user "
3662
+ "registration page (if you allow user registration)."
3663
+ msgstr ""
3664
+ "اگر می‌خواهید یک فرم Captcha به برگه نام‌نویسی وردپرس اضافه کنید این گزینه را "
3665
+ "تیک بزنید. (در صورتی که نام‌نویسی را برای سایت آزاد کرده‌اید)"
3666
+
3667
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:22
3668
+ msgid "WhoIS Lookup"
3669
+ msgstr "جستجوی WhoIS"
3670
+
3671
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:74
3672
+ msgid "WHOIS Lookup Information"
3673
+ msgstr "اطلاعات جستجوی WHOIS"
3674
+
3675
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:77
3676
+ msgid ""
3677
+ "This feature allows you to look up more detailed information about an IP "
3678
+ "address or domain name by querying the WHOIS API."
3679
+ msgstr ""
3680
+ "این ویژگی به شما اجازه می‌دهد تا از راه جستجو در WHOIS اطلاعات دقیق‌تری درباره "
3681
+ "یک IP آدرس یا نام دامنه بدست آورید."
3682
+
3683
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:83
3684
+ msgid "Perform a WHOIS Lookup for an IP or Domain Name"
3685
+ msgstr "انجام جستجوی WHOIS برای یک IP و یا نام دامنه"
3686
+
3687
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:89
3688
+ msgid "Enter IP Address or Domain Name"
3689
+ msgstr "نام دامنه یا IP آدرس را وارد کنید"
3690
+
3691
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:91
3692
+ msgid ""
3693
+ "Enter an IP address or domain name. Example: 111.11.12.13 OR some-domain-"
3694
+ "name.com"
3695
+ msgstr ""
3696
+ "یک IP آدرس یا نام دامنه وارد کنید. نمونه: 13.12.11.111 یا some-domain-name."
3697
+ "com"
3698
+
3699
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:95
3700
+ msgid "Perform IP or Domain Lookup"
3701
+ msgstr "انجام جستجوی IP یا دامنه"
3702
+
3703
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:115
3704
+ msgid "WHOIS lookup successfully completed. Please see the results below:"
3705
+ msgstr "جستجوی WHOIS با موفقیت به پایان رسید. لطفا نتایج زیر را ببینید:"
3706
+
3707
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:127
3708
+ msgid ""
3709
+ "You have entered an incorrectly formatted IP address or domain name. Please "
3710
+ "try again."
3711
+ msgstr ""
3712
+ "شما آدرس IP یا نام دامنه را در قالب نادرستی وارد کرده‌اید. لطفا دوباره تلاش "
3713
+ "کنید."
3714
+
3715
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:178
3716
+ msgid "No items found."
3717
+ msgstr "موردی یافت نشد."
3718
+
3719
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:281
3720
+ msgid "Bulk Actions"
3721
+ msgstr "کارهای دسته‌جمعی"
3722
+
3723
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:291
3724
+ msgid "Apply"
3725
+ msgstr "به کار گرفتن"
3726
+
3727
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:365
3728
+ msgid "Show all dates"
3729
+ msgstr "نمایش همه تاریخ‌ها"
3730
+
3731
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:378
3732
+ #, php-format
3733
+ msgid "%1$s %2$d"
3734
+ msgstr "%1$s %2$d"
3735
+
3736
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:394
3737
+ msgid "List View"
3738
+ msgstr "نمایش فهرست‌وار"
3739
+
3740
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:395
3741
+ msgid "Excerpt View"
3742
+ msgstr "نمایش چکیده"
3743
+
3744
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:421
3745
+ #, php-format
3746
+ msgid "%s pending"
3747
+ msgstr "%s در انتظار"
3748
+
3749
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:653
3750
+ msgid "Select All"
3751
+ msgstr "انتخاب همه"
3752
+
3753
+ #: all-in-one-wp-security/classes/wp-security-backup.php:177
3754
+ msgid "All In One WP Security - Site Database Backup"
3755
+ msgstr "افزونه امنیت فراگیر وردپرس - پشتیبان پایگاه داده سایت"
3756
+
3757
+ #: all-in-one-wp-security/classes/wp-security-backup.php:179
3758
+ msgid "Attached is your latest DB backup file for site URL"
3759
+ msgstr ""
3760
+ "فایل پیوست‌شده تازه‌ترین نسخه پشتیبان از پایگاه داده برای این نشانی سایت است"
3761
+
3762
+ #: all-in-one-wp-security/classes/wp-security-backup.php:179
3763
+ msgid " generated on"
3764
+ msgstr "ساخته‌شده در"
3765
+
3766
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:12
3767
+ msgid "Please enter an answer in digits:"
3768
+ msgstr "لطفا پاسخ را به رقم وارد کنید:"
3769
+
3770
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:91
3771
+ msgid "one"
3772
+ msgstr "یک"
3773
+
3774
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:92
3775
+ msgid "two"
3776
+ msgstr "دو"
3777
+
3778
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:93
3779
+ msgid "three"
3780
+ msgstr "سه"
3781
+
3782
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:94
3783
+ msgid "four"
3784
+ msgstr "چهار"
3785
+
3786
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:95
3787
+ msgid "five"
3788
+ msgstr "پنج"
3789
+
3790
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:96
3791
+ msgid "six"
3792
+ msgstr "شش"
3793
+
3794
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:97
3795
+ msgid "seven"
3796
+ msgstr "هفت"
3797
+
3798
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:98
3799
+ msgid "eight"
3800
+ msgstr "هشت"
3801
+
3802
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:99
3803
+ msgid "nine"
3804
+ msgstr "نه"
3805
+
3806
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:100
3807
+ msgid "ten"
3808
+ msgstr "ده"
3809
+
3810
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:101
3811
+ msgid "eleven"
3812
+ msgstr "یازده"
3813
+
3814
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:102
3815
+ msgid "twelve"
3816
+ msgstr "دوازده"
3817
+
3818
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:103
3819
+ msgid "thirteen"
3820
+ msgstr "سیزده"
3821
+
3822
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:104
3823
+ msgid "fourteen"
3824
+ msgstr "چهارده"
3825
+
3826
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:105
3827
+ msgid "fifteen"
3828
+ msgstr "پانزده"
3829
+
3830
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:106
3831
+ msgid "sixteen"
3832
+ msgstr "شانزده"
3833
+
3834
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:107
3835
+ msgid "seventeen"
3836
+ msgstr "هفده"
3837
+
3838
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:108
3839
+ msgid "eighteen"
3840
+ msgstr "هجده"
3841
+
3842
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:109
3843
+ msgid "nineteen"
3844
+ msgstr "نوزده"
3845
+
3846
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:110
3847
+ msgid "twenty"
3848
+ msgstr "بیست"
3849
+
3850
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:58
3851
+ msgid "All In One WP Security - File change detected!"
3852
+ msgstr "امنیت فراگیر وردپرس - شناسایی تغییر فایل"
3853
+
3854
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:60
3855
+ msgid "A file change was detected on your system for site URL"
3856
+ msgstr "یک تغییر فایل روی سیستم شما برای این سایت شناسایی شده است"
3857
+
3858
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:60
3859
+ msgid ". Scan was generated on"
3860
+ msgstr ". بررسی در این تاریخ انجام شده است"
3861
+
3862
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:61
3863
+ msgid "Login to your site to view the scan details."
3864
+ msgstr "برای مشاهده جزییات بررسی، وارد پیشخوان سایت خود شوید."
3865
+
3866
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:158
3867
+ msgid "Please enter an answer in the CAPTCHA field."
3868
+ msgstr "لطفا یک پاسخ در زمینه Captcha وارد کنید."
3869
+
3870
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:168
3871
+ msgid ""
3872
+ "Error: You entered an incorrect CAPTCHA answer. Please go back and try again."
3873
+ msgstr "خطا: پاسخ شما به Captcha نادرست بود. برگردید و دوباره تلاش کنید."
3874
+
3875
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:196
3876
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:63
3877
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:66
3878
+ #: all-in-one-wp-security/classes/wp-security-user-registration.php:59
3879
+ msgid "<strong>ERROR</strong>: Your answer was incorrect - please try again."
3880
+ msgstr "<strong>خطا</strong>: پاسخ شما اشتباه بود - دوباره تلاش کنید."
3881
+
3882
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:39
3883
+ msgid ""
3884
+ "<strong>ERROR</strong>: Login failed because your IP address has been "
3885
+ "blocked.\n"
3886
+ " Please contact the administrator."
3887
+ msgstr ""
3888
+ "<strong>خطا</strong> ورود با شکست مواجه شد. زیرا IP شما مسدود شده است.\n"
3889
+ " لطفا با مدیر تماس بگیرید."
3890
+
3891
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:76
3892
+ msgid "<strong>ERROR</strong>: The username field is empty."
3893
+ msgstr "<strong>خطا</strong> : زمینه نام‌کاربری خالی است."
3894
+
3895
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:80
3896
+ msgid "<strong>ERROR</strong>: The password field is empty."
3897
+ msgstr "<strong>خطا</strong> : زمینه گذرواژه خالی است."
3898
+
3899
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:100
3900
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:126
3901
+ msgid "<strong>ERROR</strong>: Invalid login credentials."
3902
+ msgstr "<strong>خطا</strong> : اطلاعات ورود نادرست است."
3903
+
3904
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:103
3905
+ msgid "<strong>ERROR</strong>: Invalid username."
3906
+ msgstr "<strong>خطا</strong> :نام کاربری نادرست است."
3907
+
3908
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:129
3909
+ #, php-format
3910
+ msgid ""
3911
+ "<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password "
3912
+ "Lost and Found\">Lost your password</a>?"
3913
+ msgstr ""
3914
+ "<strong>خطا</strong> : گذرواژه نادرست است.<a href=\"%s\" title=\"گم کردن و "
3915
+ "بازیابی گذرواژه\">گذرواژه‌تان را گم کردید؟</a>"
3916
+
3917
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:140
3918
+ msgid ""
3919
+ "<strong>ACCOUNT PENDING</strong>: Your account is currently not active. An "
3920
+ "administrator needs to activate your account before you can login."
3921
+ msgstr ""
3922
+ "<strong>نام نویسی در انتظار</strong> : حساب شما هنوز فعال نشده است. قبل از "
3923
+ "اینکه بتوانید وارد شوید، یک مدیر باید حساب شما را فعال کند."
3924
+
3925
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:263
3926
+ msgid "Site Lockout Notification"
3927
+ msgstr "هشدار ورود ناموفق به سایت"
3928
+
3929
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:264
3930
+ msgid ""
3931
+ "A lockdown event has occurred due to too many failed login attempts or "
3932
+ "invalid username:"
3933
+ msgstr ""
3934
+ "در پی تلاش‌های ناموفق زیاد برای ورود یا وارد کردن نام کاربری نادرست، ورود به "
3935
+ "سایت برای یک IP یا نام کاربری قفل شده است:"
3936
+
3937
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:265
3938
+ msgid "Username: "
3939
+ msgstr "نام کاربری:"
3940
+
3941
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:266
3942
+ msgid "IP Address: "
3943
+ msgstr "آدرس IP:"
3944
+
3945
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:267
3946
+ msgid "IP Range: "
3947
+ msgstr "محدوده IP:"
3948
+
3949
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:268
3950
+ msgid ""
3951
+ "Log into your site's WordPress administration panel to see the duration of "
3952
+ "the lockout or to unlock the user."
3953
+ msgstr ""
3954
+ "برای مشاهده مدت زمان قفل شدن کاربر یا آزاد کردن آن به پیشخوان سایت وردپرس "
3955
+ "خود وارد شوید."
3956
+
3957
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:425
3958
+ #, php-format
3959
+ msgid ""
3960
+ "Your session has expired because it has been over %d minutes since your last "
3961
+ "login."
3962
+ msgstr ""
3963
+ "جلسه شما به پایان رسیده است زیرا بیش از %d دقیقه از آخرین ورود شما می‌گذرد."
3964
+
3965
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:426
3966
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:430
3967
+ msgid "Please log back in to continue."
3968
+ msgstr "برای ادامه، لطفا دوباره وارد شوید."
3969
+
3970
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:429
3971
+ msgid "You were logged out because you just changed the \"admin\" username."
3972
+ msgstr "شما از سایت بیرون شدید چون نام کاربری admin را تغییر دادید."
3973
+
3974
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:79
3975
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:98
3976
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:113
3977
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:128
3978
+ msgid " is not a valid ip address format."
3979
+ msgstr "یک قالب درستی IP آدرس نیست."
3980
+
3981
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:136
3982
+ msgid "You cannot ban your own IP address: "
3983
+ msgstr "شما نمی‌توانید آدرس IP خودتان را مسدود کنید:"
3984
+
3985
+ #: all-in-one-wp-security/classes/wp-security-utility.php:151
3986
+ msgid ""
3987
+ "This feature can only be configured by the \"superadmin\" on the main site."
3988
+ msgstr "این ویژگی تنها توسط مدیر ارشد سایت قابل تنظیم است."
3989
+
3990
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:29
3991
+ msgid "Remove WP Generatore Meta Tag"
3992
+ msgstr "حذف سازنده تگ‌های متا"
3993
+
3994
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:35
3995
+ msgid "Change Display Name"
3996
+ msgstr "تغییر نمایش عمومی نام"
3997
+
3998
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:43
3999
+ msgid "Lost Password Captcha"
4000
+ msgstr "Captcha برای گذرواژه گمشده"
4001
+
4002
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:45
4003
+ msgid "Login IP Whitelisting"
4004
+ msgstr "لیست سفید IPها برای ورود به سایت"
4005
+
4006
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:51
4007
+ msgid "Registration Approval"
4008
+ msgstr "تأیید نام‌نویسی"
4009
+
4010
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:67
4011
+ msgid "WordPress Files Access"
4012
+ msgstr "دسترسی به فایل‌های وردپرس"
4013
+
4014
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:71
4015
+ msgid "IP and User Agent Blacklisting"
4016
+ msgstr "لیست سیاه IP یا نماینده کاربری"
4017
+
4018
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:75
4019
+ msgid "Enable Basic Firewall"
4020
+ msgstr "فعال‌سازی دیوارآتش پایه"
4021
+
4022
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:76
4023
+ msgid "Enable Pingback Vulnerability Protection"
4024
+ msgstr "فعال‌سازی محافظت در برابر آسیب‌پذیری Pingback"
4025
+
4026
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:82
4027
+ msgid "Forbid Proxy Comments"
4028
+ msgstr "ممنوع کردن فرستادن دیدگاه از طریق پراکسی"
4029
+
4030
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:83
4031
+ msgid "Deny Bad Queries"
4032
+ msgstr "رد کردن جستجوهای خطرناک"
4033
+
4034
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:85
4035
+ msgid "5G Blacklist"
4036
+ msgstr "لیست سیاه 5G"
4037
+
4038
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:88
4039
+ msgid "Block Spambots"
4040
+ msgstr "مسدود کردن ربات‌های جفنگ‌نویس"
4041
+
4042
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:90
4043
+ msgid "Comment Captcha"
4044
+ msgstr "Captcha برای دیدگاه"
4045
+
4046
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:28
4047
+ msgid "Basic"
4048
+ msgstr "آسان"
4049
+
4050
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:31
4051
+ msgid "Intermediate"
4052
+ msgstr "میانه"
4053
+
4054
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:34
4055
+ msgid "Advanced"
4056
+ msgstr "پیشرفته"
languages/aiowpsecurity-hu_HU.mo ADDED
Binary file
languages/aiowpsecurity-hu_HU.po ADDED
@@ -0,0 +1,3544 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: AIOWPS\n"
4
+ "POT-Creation-Date: 2013-12-03 12:53+1000\n"
5
+ "PO-Revision-Date: 2014-04-17 20:34+0100\n"
6
+ "Last-Translator: I♥WP <info@ilovewp.net>\n"
7
+ "Language-Team: \n"
8
+ "Language: hu_HU\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.4\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:156
19
+ msgid "WP Security"
20
+ msgstr ""
21
+
22
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:157
23
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:22
24
+ msgid "Dashboard"
25
+ msgstr ""
26
+
27
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:158
28
+ msgid "Settings"
29
+ msgstr ""
30
+
31
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:159
32
+ msgid "User Accounts"
33
+ msgstr ""
34
+
35
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:160
36
+ msgid "User Login"
37
+ msgstr ""
38
+
39
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:161
40
+ msgid "User Registration"
41
+ msgstr ""
42
+
43
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:162
44
+ msgid "Database Security"
45
+ msgstr ""
46
+
47
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:166
48
+ msgid "Filesystem Security"
49
+ msgstr ""
50
+
51
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:168
52
+ msgid "WHOIS Lookup"
53
+ msgstr ""
54
+
55
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:172
56
+ msgid "Blacklist Manager"
57
+ msgstr ""
58
+
59
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:177
60
+ msgid "Firewall"
61
+ msgstr ""
62
+
63
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:179
64
+ msgid "SPAM Prevention"
65
+ msgstr ""
66
+
67
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:183
68
+ msgid "Scanner"
69
+ msgstr ""
70
+
71
+ #: all-in-one-wp-security/admin/wp-security-admin-init.php:185
72
+ msgid "Maintenance"
73
+ msgstr ""
74
+
75
+ #: all-in-one-wp-security/admin/wp-security-admin-menu.php:43
76
+ msgid "Settings successfully updated."
77
+ msgstr ""
78
+
79
+ #: all-in-one-wp-security/admin/wp-security-admin-menu.php:50
80
+ msgid "The selected record(s) deleted successfully!"
81
+ msgstr ""
82
+
83
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:22
84
+ msgid "Ban Users"
85
+ msgstr ""
86
+
87
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:80
88
+ msgid "Nonce check failed for save blacklist settings!"
89
+ msgstr ""
90
+
91
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:132
92
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:147
93
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:400
94
+ msgid ""
95
+ "The plugin was unable to write to the .htaccess file. Please edit file "
96
+ "manually."
97
+ msgstr ""
98
+
99
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:139
100
+ msgid "Ban IPs or User Agents"
101
+ msgstr ""
102
+
103
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:142
104
+ msgid ""
105
+ "The All In One WP Security Blacklist feature gives you the option of banning "
106
+ "certain host IP addresses or ranges and also user agents."
107
+ msgstr ""
108
+
109
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:143
110
+ msgid ""
111
+ "This feature will deny total site access for users which have IP addresses "
112
+ "or user agents matching those which you have configured in the settings "
113
+ "below."
114
+ msgstr ""
115
+
116
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:144
117
+ msgid ""
118
+ "The plugin achieves this by making appropriate modifications to your ."
119
+ "htaccess file."
120
+ msgstr ""
121
+
122
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:145
123
+ msgid ""
124
+ "By blocking people via the .htaccess file your are using the most secure "
125
+ "first line of defence which denies all access to blacklisted visitors as "
126
+ "soon as they hit your hosting server."
127
+ msgstr ""
128
+
129
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:151
130
+ msgid "IP Hosts and User Agent Blacklist Settings"
131
+ msgstr ""
132
+
133
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:162
134
+ msgid "Enable IP or User Agent Blacklisting"
135
+ msgstr ""
136
+
137
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:165
138
+ msgid ""
139
+ "Check this if you want to enable the banning (or blacklisting) of selected "
140
+ "IP addresses and/or user agents specified in the settings below"
141
+ msgstr ""
142
+
143
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:169
144
+ msgid "Enter IP Addresses:"
145
+ msgstr ""
146
+
147
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:173
148
+ msgid "Enter one or more IP addresses or IP ranges."
149
+ msgstr ""
150
+
151
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:174
152
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:194
153
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:271
154
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:288
155
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:147
156
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:177
157
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:308
158
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:338
159
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:369
160
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:397
161
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:426
162
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:514
163
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:669
164
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:703
165
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:726
166
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:747
167
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:174
168
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:259
169
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:456
170
+ msgid "More Info"
171
+ msgstr ""
172
+
173
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:177
174
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:459
175
+ msgid "Each IP address must be on a new line."
176
+ msgstr ""
177
+
178
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:178
179
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:460
180
+ msgid ""
181
+ "To specify an IP range use a wildcard \"*\" character. Acceptable ways to "
182
+ "use wildcards is shown in the examples below:"
183
+ msgstr ""
184
+
185
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:179
186
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:461
187
+ msgid "Example 1: 195.47.89.*"
188
+ msgstr ""
189
+
190
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:180
191
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:462
192
+ msgid "Example 2: 195.47.*.*"
193
+ msgstr ""
194
+
195
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:181
196
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:463
197
+ msgid "Example 3: 195.*.*.*"
198
+ msgstr ""
199
+
200
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:188
201
+ msgid "Enter User Agents:"
202
+ msgstr ""
203
+
204
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:193
205
+ msgid "Enter one or more user agent strings."
206
+ msgstr ""
207
+
208
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:197
209
+ msgid "Each user agent string must be on a new line."
210
+ msgstr ""
211
+
212
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:198
213
+ msgid "Example 1 - A single user agent string to block:"
214
+ msgstr ""
215
+
216
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:200
217
+ msgid "Example 2 - A list of more than 1 user agent strings to block"
218
+ msgstr ""
219
+
220
+ #: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:208
221
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:347
222
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:309
223
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:231
224
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:497
225
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:189
226
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:232
227
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:336
228
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:470
229
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:628
230
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:146
231
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:221
232
+ msgid "Save Settings"
233
+ msgstr ""
234
+
235
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:23
236
+ msgid "System Info"
237
+ msgstr ""
238
+
239
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:73
240
+ msgid "For information, updates and documentation, please visit the"
241
+ msgstr ""
242
+
243
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:73
244
+ msgid "AIO WP Security & Firewall Plugin"
245
+ msgstr ""
246
+
247
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:73
248
+ msgid "Page"
249
+ msgstr ""
250
+
251
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:74
252
+ msgid "Follow us"
253
+ msgstr ""
254
+
255
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:74
256
+ msgid ""
257
+ "Twitter, Google+ or via Email to stay upto date about the new security "
258
+ "features of this plugin."
259
+ msgstr ""
260
+
261
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:88
262
+ msgid "Security Strength Meter"
263
+ msgstr ""
264
+
265
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:117
266
+ msgid "Total Achievable Points: "
267
+ msgstr ""
268
+
269
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:119
270
+ msgid "Current Score of Your Site: "
271
+ msgstr ""
272
+
273
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:129
274
+ msgid "Security Points Breakdown"
275
+ msgstr ""
276
+
277
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:170
278
+ msgid "Critical Feature Status"
279
+ msgstr ""
280
+
281
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:174
282
+ msgid ""
283
+ "Below is the current status of the critical features that you should "
284
+ "activate on your site to achieve a minimum level of recommended security"
285
+ msgstr ""
286
+
287
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:178
288
+ msgid "Admin Username"
289
+ msgstr ""
290
+
291
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:193
292
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:27
293
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:39
294
+ msgid "Login Lockdown"
295
+ msgstr ""
296
+
297
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:208
298
+ msgid "File Permission"
299
+ msgstr ""
300
+
301
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:223
302
+ msgid "Basic Firewall"
303
+ msgstr ""
304
+
305
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:241
306
+ msgid "Maintenance Mode Status"
307
+ msgstr ""
308
+
309
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:245
310
+ msgid ""
311
+ "Maintenance mode is currently enabled. Remember to turn it off when you are "
312
+ "done"
313
+ msgstr ""
314
+
315
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:248
316
+ msgid "Maintenance mode is currently off."
317
+ msgstr ""
318
+
319
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:252
320
+ msgid "Maintenance Mode"
321
+ msgstr ""
322
+
323
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:291
324
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:33
325
+ msgid "Logged In Users"
326
+ msgstr ""
327
+
328
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:301
329
+ msgid "Number of users currently logged in site-wide is:"
330
+ msgstr ""
331
+
332
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:302
333
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:324
334
+ #, php-format
335
+ msgid "Go to the %s menu to see more details"
336
+ msgstr ""
337
+
338
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:307
339
+ msgid "There are no other site-wide users currently logged in."
340
+ msgstr ""
341
+
342
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:323
343
+ msgid "Number of users currently logged into your site is:"
344
+ msgstr ""
345
+
346
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:329
347
+ msgid "There are no other users currently logged in."
348
+ msgstr ""
349
+
350
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:340
351
+ msgid "Spread the Word"
352
+ msgstr ""
353
+
354
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:343
355
+ msgid ""
356
+ "We are working to make your WordPress site more secure. Please support us, "
357
+ "here is how:"
358
+ msgstr ""
359
+
360
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:367
361
+ msgid "Site Info"
362
+ msgstr ""
363
+
364
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:369
365
+ msgid "Plugin Version"
366
+ msgstr ""
367
+
368
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:370
369
+ msgid "WP Version"
370
+ msgstr ""
371
+
372
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:372
373
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:374
374
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:395
375
+ msgid "Version"
376
+ msgstr ""
377
+
378
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:373
379
+ msgid "Table Prefix"
380
+ msgstr ""
381
+
382
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:375
383
+ msgid "Session Save Path"
384
+ msgstr ""
385
+
386
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:377
387
+ msgid "Server Name"
388
+ msgstr ""
389
+
390
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:378
391
+ msgid "Cookie Domain"
392
+ msgstr ""
393
+
394
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:379
395
+ msgid "Library Present"
396
+ msgstr ""
397
+
398
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:380
399
+ msgid "Debug File Write Permissions"
400
+ msgstr ""
401
+
402
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:384
403
+ msgid "Active Plugins"
404
+ msgstr ""
405
+
406
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:394
407
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:130
408
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:149
409
+ msgid "Name"
410
+ msgstr ""
411
+
412
+ #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:396
413
+ msgid "Plugin URL"
414
+ msgstr ""
415
+
416
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:23
417
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:57
418
+ msgid "DB Prefix"
419
+ msgstr ""
420
+
421
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:24
422
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:59
423
+ msgid "DB Backup"
424
+ msgstr ""
425
+
426
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:84
427
+ msgid "Nonce check failed for DB prefix change operation!"
428
+ msgstr ""
429
+
430
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:92
431
+ msgid ""
432
+ "The plugin has detected that it cannot write to the wp-config.php file. This "
433
+ "feature can only be used if the plugin can successfully write to the wp-"
434
+ "config.php file."
435
+ msgstr ""
436
+
437
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:105
438
+ msgid "Please enter a value for the DB prefix."
439
+ msgstr ""
440
+
441
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:114
442
+ msgid ""
443
+ "<strong>ERROR</strong>: The table prefix can only contain numbers, letters, "
444
+ "and underscores."
445
+ msgstr ""
446
+
447
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:122
448
+ msgid "Change Database Prefix"
449
+ msgstr ""
450
+
451
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:125
452
+ msgid ""
453
+ "Your WordPress DB is the most important asset of your website because it "
454
+ "contains a lot of your site's precious information."
455
+ msgstr ""
456
+
457
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:126
458
+ msgid ""
459
+ "The DB is also a target for hackers via methods such as SQL injections and "
460
+ "malicious and automated code which targets certain tables."
461
+ msgstr ""
462
+
463
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:127
464
+ msgid ""
465
+ "One way to add a layer of protection for your DB is to change the default "
466
+ "WordPress table prefix from \"wp_\" to something else which will be "
467
+ "difficult for hackers to guess."
468
+ msgstr ""
469
+
470
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:128
471
+ msgid ""
472
+ "This feature allows you to easily change the prefix to a value of your "
473
+ "choice or to a random value set by this plugin."
474
+ msgstr ""
475
+
476
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:134
477
+ msgid "DB Prefix Options"
478
+ msgstr ""
479
+
480
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:145
481
+ #, php-format
482
+ msgid "It is recommended that you perform a %s before using this feature"
483
+ msgstr ""
484
+
485
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:154
486
+ msgid "Current DB Table Prefix"
487
+ msgstr ""
488
+
489
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:160
490
+ msgid ""
491
+ "Your site is currently using the default WordPress DB prefix value of \"wp_"
492
+ "\". \n"
493
+ " To increase your site's security you should "
494
+ "consider changing the DB prefix value to another value."
495
+ msgstr ""
496
+
497
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:167
498
+ msgid "Generate New DB Table Prefix"
499
+ msgstr ""
500
+
501
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:170
502
+ msgid ""
503
+ "Check this if you want the plugin to generate a random 6 character string "
504
+ "for the table prefix"
505
+ msgstr ""
506
+
507
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:171
508
+ msgid "OR"
509
+ msgstr ""
510
+
511
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:173
512
+ msgid ""
513
+ "Choose your own DB prefix by specifying a string which contains letters and/"
514
+ "or numbers and/or underscores. Example: xyz_"
515
+ msgstr ""
516
+
517
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:177
518
+ msgid "Change DB Prefix"
519
+ msgstr ""
520
+
521
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:198
522
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:86
523
+ msgid "Nonce check failed for manual DB backup operation!"
524
+ msgstr ""
525
+
526
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:215
527
+ msgid ""
528
+ "DB Backup was successfully completed! You will receive the backup file via "
529
+ "email if you have enabled \"Send Backup File Via Email\", otherwise you can "
530
+ "retrieve it via FTP from the following directory:"
531
+ msgstr ""
532
+
533
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:217
534
+ msgid "Your DB Backup File location: "
535
+ msgstr ""
536
+
537
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:225
538
+ msgid "DB Backup failed. Please check the permissions of the backup directory."
539
+ msgstr ""
540
+
541
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:242
542
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:126
543
+ msgid ""
544
+ "You entered a non numeric value for the \"backup time interval\" field. It "
545
+ "has been set to the default value."
546
+ msgstr ""
547
+
548
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:249
549
+ msgid ""
550
+ "You entered a non numeric value for the \"number of backup files to keep\" "
551
+ "field. It has been set to the default value."
552
+ msgstr ""
553
+
554
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:256
555
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:156
556
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:121
557
+ msgid ""
558
+ "You have entered an incorrect email address format. It has been set to your "
559
+ "WordPress admin email as default."
560
+ msgstr ""
561
+
562
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:262
563
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:162
564
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:219
565
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:127
566
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:581
567
+ msgid "Attention!"
568
+ msgstr ""
569
+
570
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:289
571
+ msgid "Manual Backup"
572
+ msgstr ""
573
+
574
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:295
575
+ msgid "To create a new DB backup just click on the button below."
576
+ msgstr ""
577
+
578
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:298
579
+ msgid "Create DB Backup Now"
580
+ msgstr ""
581
+
582
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:302
583
+ msgid "Automated Scheduled Backups"
584
+ msgstr ""
585
+
586
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:314
587
+ msgid "Enable Automated Scheduled Backups"
588
+ msgstr ""
589
+
590
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:317
591
+ msgid ""
592
+ "Check this if you want the system to automatically generate backups "
593
+ "periodically based on the settings below"
594
+ msgstr ""
595
+
596
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:321
597
+ msgid "Backup Time Interval"
598
+ msgstr ""
599
+
600
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:324
601
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:259
602
+ msgid "Hours"
603
+ msgstr ""
604
+
605
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:325
606
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:260
607
+ msgid "Days"
608
+ msgstr ""
609
+
610
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:326
611
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:261
612
+ msgid "Weeks"
613
+ msgstr ""
614
+
615
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:328
616
+ msgid "Set the value for how often you would like an automated backup to occur"
617
+ msgstr ""
618
+
619
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:332
620
+ msgid "Number of Backup Files To Keep"
621
+ msgstr ""
622
+
623
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:334
624
+ msgid ""
625
+ "Thie field allows you to choose the number of backup files you would like to "
626
+ "keep in the backup directory"
627
+ msgstr ""
628
+
629
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:338
630
+ msgid "Send Backup File Via Email"
631
+ msgstr ""
632
+
633
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:341
634
+ msgid ""
635
+ "Check this if you want the system to email you the backup file after a DB "
636
+ "backup has been performed"
637
+ msgstr ""
638
+
639
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:343
640
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:305
641
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:228
642
+ msgid "Enter an email address"
643
+ msgstr ""
644
+
645
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:373
646
+ msgid "Starting DB prefix change operations....."
647
+ msgstr ""
648
+
649
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:375
650
+ #, php-format
651
+ msgid ""
652
+ "Your WordPress system has a total of %s tables and your new DB prefix will "
653
+ "be: %s"
654
+ msgstr ""
655
+
656
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:381
657
+ #: all-in-one-wp-security/classes/wp-security-utility.php:206
658
+ msgid ""
659
+ "Failed to make a backup of the wp-config.php file. This operation will not "
660
+ "go ahead."
661
+ msgstr ""
662
+
663
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:385
664
+ msgid "A backup copy of your wp-config.php file was created successfully!"
665
+ msgstr ""
666
+
667
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:408
668
+ #, php-format
669
+ msgid "%s table name update failed"
670
+ msgstr ""
671
+
672
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:420
673
+ #, php-format
674
+ msgid "Please change the prefix manually for the above tables to: %s"
675
+ msgstr ""
676
+
677
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:423
678
+ #, php-format
679
+ msgid "%s tables had their prefix updated successfully!"
680
+ msgstr ""
681
+
682
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:438
683
+ msgid "wp-config.php file was updated successfully!"
684
+ msgstr ""
685
+
686
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:441
687
+ #, php-format
688
+ msgid ""
689
+ "The \"wp-config.php\" file was not able to be modified. Please modify this "
690
+ "file manually using your favourite editor and search \n"
691
+ " for variable \"$table_prefix\" and assign the following "
692
+ "value to that variable: %s"
693
+ msgstr ""
694
+
695
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:462
696
+ msgid "There was an error when updating the options table."
697
+ msgstr ""
698
+
699
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:466
700
+ msgid ""
701
+ "The options table records which had references to the old DB prefix were "
702
+ "updated successfully!"
703
+ msgstr ""
704
+
705
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:491
706
+ #, php-format
707
+ msgid ""
708
+ "Error updating user_meta table where new meta_key = %s, old meta_key = %s "
709
+ "and user_id = %s."
710
+ msgstr ""
711
+
712
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:497
713
+ msgid ""
714
+ "The usermeta table records which had references to the old DB prefix were "
715
+ "updated successfully!"
716
+ msgstr ""
717
+
718
+ #: all-in-one-wp-security/admin/wp-security-database-menu.php:499
719
+ msgid "DB prefix change tasks have been completed."
720
+ msgstr ""
721
+
722
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:22
723
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:94
724
+ msgid "File Change Detection"
725
+ msgstr ""
726
+
727
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:93
728
+ msgid "Nonce check failed for manual file change detection scan operation!"
729
+ msgstr ""
730
+
731
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:100
732
+ msgid ""
733
+ "The plugin has detected that this is your first file change detection scan. "
734
+ "The file details from this scan will be used to detect file changes for "
735
+ "future scans!"
736
+ msgstr ""
737
+
738
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:194
739
+ msgid ""
740
+ "NEW SCAN COMPLETED: The plugin has detected that you have made changes to "
741
+ "the \"File Types To Ignore\" or \"Files To Ignore\" fields.\n"
742
+ " In order to ensure that future scan results are "
743
+ "accurate, the old scan data has been refreshed."
744
+ msgstr ""
745
+
746
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:204
747
+ msgid ""
748
+ "All In One WP Security & Firewall has detected that there was a change in "
749
+ "your host's files."
750
+ msgstr ""
751
+
752
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:206
753
+ msgid "View Scan Details & Clear This Message"
754
+ msgstr ""
755
+
756
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:215
757
+ msgid ""
758
+ "If given an opportunity hackers can insert their code or files into your "
759
+ "system which they can then use to carry out malicious acts on your site."
760
+ msgstr ""
761
+
762
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:216
763
+ msgid ""
764
+ "Being informed of any changes in your files can be a good way to quickly "
765
+ "prevent a hacker from causing damage to your website."
766
+ msgstr ""
767
+
768
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:217
769
+ msgid ""
770
+ "In general, WordPress core and plugin files and file types such as \".php\" "
771
+ "or \".js\" should not change often and when they do, it is important that "
772
+ "you are made aware when a change occurs and which file was affected."
773
+ msgstr ""
774
+
775
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:218
776
+ msgid ""
777
+ "The \"File Change Detection Feature\" will notify you of any file change "
778
+ "which occurs on your system, including the addition and deletion of files by "
779
+ "performing a regular automated or manual scan of your system's files."
780
+ msgstr ""
781
+
782
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:219
783
+ msgid ""
784
+ "This feature also allows you to exclude certain files or folders from the "
785
+ "scan in cases where you know that they change often as part of their normal "
786
+ "operation. (For example log files and certain caching plugin files may "
787
+ "change often and hence you may choose to exclude such files from the file "
788
+ "change detection scan)"
789
+ msgstr ""
790
+
791
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:224
792
+ msgid "Manual File Change Detection Scan"
793
+ msgstr ""
794
+
795
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:230
796
+ msgid ""
797
+ "To perform a manual file change detection scan click on the button below."
798
+ msgstr ""
799
+
800
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:233
801
+ msgid "Perform Scan Now"
802
+ msgstr ""
803
+
804
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:237
805
+ msgid "File Change Detection Settings"
806
+ msgstr ""
807
+
808
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:249
809
+ msgid "Enable Automated File Change Detection Scan"
810
+ msgstr ""
811
+
812
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:252
813
+ msgid ""
814
+ "Check this if you want the system to automatically/periodically scan your "
815
+ "files to check for file changes based on the settings below"
816
+ msgstr ""
817
+
818
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:256
819
+ msgid "Scan Time Interval"
820
+ msgstr ""
821
+
822
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:263
823
+ msgid "Set the value for how often you would like a scan to occur"
824
+ msgstr ""
825
+
826
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:267
827
+ msgid "File Types To Ignore"
828
+ msgstr ""
829
+
830
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:270
831
+ msgid ""
832
+ "Enter each file type or extension on a new line which you wish to exclude "
833
+ "from the file change detection scan."
834
+ msgstr ""
835
+
836
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:274
837
+ msgid ""
838
+ "You can exclude file types from the scan which would not normally pose any "
839
+ "security threat if they were changed. These can include things such as image "
840
+ "files."
841
+ msgstr ""
842
+
843
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:275
844
+ msgid ""
845
+ "Example: If you want the scanner to ignore files of type jpg, png, and bmp, "
846
+ "then you would enter the following:"
847
+ msgstr ""
848
+
849
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:276
850
+ msgid "jpg"
851
+ msgstr ""
852
+
853
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:277
854
+ msgid "png"
855
+ msgstr ""
856
+
857
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:278
858
+ msgid "bmp"
859
+ msgstr ""
860
+
861
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:284
862
+ msgid "Files/Directories To Ignore"
863
+ msgstr ""
864
+
865
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:287
866
+ msgid ""
867
+ "Enter each file or directory on a new line which you wish to exclude from "
868
+ "the file change detection scan."
869
+ msgstr ""
870
+
871
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:291
872
+ msgid ""
873
+ "You can exclude specific files/directories from the scan which would not "
874
+ "normally pose any security threat if they were changed. These can include "
875
+ "things such as log files."
876
+ msgstr ""
877
+
878
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:292
879
+ msgid ""
880
+ "Example: If you want the scanner to ignore certain files in different "
881
+ "directories or whole directories, then you would enter the following:"
882
+ msgstr ""
883
+
884
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:293
885
+ msgid "cache/config/master.php"
886
+ msgstr ""
887
+
888
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:294
889
+ msgid "somedirectory"
890
+ msgstr ""
891
+
892
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:300
893
+ msgid "Send Email When Change Detected"
894
+ msgstr ""
895
+
896
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:303
897
+ msgid ""
898
+ "Check this if you want the system to email you if a file change was detected"
899
+ msgstr ""
900
+
901
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:335
902
+ msgid "Latest File Change Scan Results"
903
+ msgstr ""
904
+
905
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:344
906
+ msgid "The following files were added to your host."
907
+ msgstr ""
908
+
909
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:347
910
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:368
911
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:392
912
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:26
913
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:27
914
+ msgid "File"
915
+ msgstr ""
916
+
917
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:348
918
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:369
919
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:393
920
+ msgid "File Size"
921
+ msgstr ""
922
+
923
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:349
924
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:370
925
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:394
926
+ msgid "File Modified"
927
+ msgstr ""
928
+
929
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:365
930
+ msgid "The following files were removed from your host."
931
+ msgstr ""
932
+
933
+ #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:389
934
+ msgid "The following files were changed on your host."
935
+ msgstr ""
936
+
937
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:26
938
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:63
939
+ msgid "File Permissions"
940
+ msgstr ""
941
+
942
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:27
943
+ msgid "PHP File Editing"
944
+ msgstr ""
945
+
946
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:28
947
+ msgid "WP File Access"
948
+ msgstr ""
949
+
950
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:29
951
+ msgid "Host System Logs"
952
+ msgstr ""
953
+
954
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:96
955
+ #, php-format
956
+ msgid "The permissions for %s were succesfully changed to %s"
957
+ msgstr ""
958
+
959
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:100
960
+ #, php-format
961
+ msgid "Unable to change permissions for %s!"
962
+ msgstr ""
963
+
964
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:106
965
+ msgid "File Permissions Scan"
966
+ msgstr ""
967
+
968
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:109
969
+ msgid ""
970
+ "Your WordPress file and folder permission settings govern the accessability "
971
+ "and read/write privileges of the files and folders which make up your WP "
972
+ "installation."
973
+ msgstr ""
974
+
975
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:110
976
+ msgid ""
977
+ "Your WP installation already comes with reasonably secure file permission "
978
+ "settings for the filesystem."
979
+ msgstr ""
980
+
981
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:111
982
+ msgid ""
983
+ "However, sometimes people or other plugins modify the various permission "
984
+ "settings of certain core WP folders or files such that they end up making "
985
+ "their site less secure because they chose the wrong permission values."
986
+ msgstr ""
987
+
988
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:112
989
+ msgid ""
990
+ "This feature will scan the critical WP core folders and files and will "
991
+ "highlight any permission settings which are insecure."
992
+ msgstr ""
993
+
994
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:118
995
+ msgid "WP Directory and File Permissions Scan Results"
996
+ msgstr ""
997
+
998
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:131
999
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:150
1000
+ msgid "File/Folder"
1001
+ msgstr ""
1002
+
1003
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:132
1004
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:151
1005
+ msgid "Current Permissions"
1006
+ msgstr ""
1007
+
1008
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:133
1009
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:152
1010
+ msgid "Recommended Permissions"
1011
+ msgstr ""
1012
+
1013
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:134
1014
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:153
1015
+ msgid "Recommended Action"
1016
+ msgstr ""
1017
+
1018
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:191
1019
+ msgid "Your PHP file editing settings were saved successfully."
1020
+ msgstr ""
1021
+
1022
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:195
1023
+ msgid ""
1024
+ "Operation failed! Unable to modify or make a backup of wp-config.php file!"
1025
+ msgstr ""
1026
+
1027
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:201
1028
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:65
1029
+ msgid "File Editing"
1030
+ msgstr ""
1031
+
1032
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:204
1033
+ msgid ""
1034
+ "The Wordpress Dashboard by default allows administrators to edit PHP files, "
1035
+ "such as plugin and theme files."
1036
+ msgstr ""
1037
+
1038
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:205
1039
+ msgid ""
1040
+ "This is often the first tool an attacker will use if able to login, since it "
1041
+ "allows code execution."
1042
+ msgstr ""
1043
+
1044
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:206
1045
+ msgid ""
1046
+ "This feature will disable the ability for people to edit PHP files via the "
1047
+ "dashboard."
1048
+ msgstr ""
1049
+
1050
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:212
1051
+ msgid "Disable PHP File Editing"
1052
+ msgstr ""
1053
+
1054
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:224
1055
+ msgid "Disable Ability To Edit PHP Files"
1056
+ msgstr ""
1057
+
1058
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:227
1059
+ msgid ""
1060
+ "Check this if you want to remove the ability for people to edit PHP files "
1061
+ "via the WP dashboard"
1062
+ msgstr ""
1063
+
1064
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:271
1065
+ msgid ""
1066
+ "You have successfully saved the Prevent Access to Default WP Files "
1067
+ "configuration."
1068
+ msgstr ""
1069
+
1070
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:275
1071
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:115
1072
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:269
1073
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:480
1074
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:619
1075
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:106
1076
+ msgid ""
1077
+ "Could not write to the .htaccess file. Please check the file permissions."
1078
+ msgstr ""
1079
+
1080
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:280
1081
+ msgid "WordPress Files"
1082
+ msgstr ""
1083
+
1084
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:283
1085
+ #, php-format
1086
+ msgid ""
1087
+ "This feature allows you to prevent access to files such as %s, %s and %s "
1088
+ "which are delivered with all WP installations."
1089
+ msgstr ""
1090
+
1091
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:284
1092
+ msgid ""
1093
+ "By preventing access to these files you are hiding some key pieces of "
1094
+ "information (such as WordPress version info) from potential hackers."
1095
+ msgstr ""
1096
+
1097
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:289
1098
+ msgid "Prevent Access to Default WP Files"
1099
+ msgstr ""
1100
+
1101
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:300
1102
+ msgid "Prevent Access to WP Default Install Files"
1103
+ msgstr ""
1104
+
1105
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:303
1106
+ msgid ""
1107
+ "Check this if you want to prevent access to readme.html, license.txt and wp-"
1108
+ "config-sample.php."
1109
+ msgstr ""
1110
+
1111
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:307
1112
+ msgid "Save Setting"
1113
+ msgstr ""
1114
+
1115
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:331
1116
+ msgid "System Logs"
1117
+ msgstr ""
1118
+
1119
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:334
1120
+ msgid ""
1121
+ "Sometimes your hosting platform will produce error or warning logs in a file "
1122
+ "called \"error_log\"."
1123
+ msgstr ""
1124
+
1125
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:335
1126
+ msgid ""
1127
+ "Depending on the nature and cause of the error or warning, your hosting "
1128
+ "server can create multiple instances of this file in numerous directory "
1129
+ "locations of your WordPress installation."
1130
+ msgstr ""
1131
+
1132
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:336
1133
+ msgid ""
1134
+ "By occassionally viewing the contents of these logs files you can keep "
1135
+ "informed of any underlying problems on your system which you might need to "
1136
+ "address."
1137
+ msgstr ""
1138
+
1139
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:342
1140
+ msgid "View System Logs"
1141
+ msgstr ""
1142
+
1143
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:347
1144
+ msgid "Enter System Log File Name"
1145
+ msgstr ""
1146
+
1147
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:349
1148
+ msgid "Enter your system log file name. (Defaults to error_log)"
1149
+ msgstr ""
1150
+
1151
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:352
1152
+ msgid "View Latest System Logs"
1153
+ msgstr ""
1154
+
1155
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:354
1156
+ msgid "Loading..."
1157
+ msgstr ""
1158
+
1159
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:371
1160
+ msgid "No system logs were found!"
1161
+ msgstr ""
1162
+
1163
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:424
1164
+ msgid "Set Recommended Permissions"
1165
+ msgstr ""
1166
+
1167
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:430
1168
+ msgid "No Action Required"
1169
+ msgstr ""
1170
+
1171
+ #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:470
1172
+ #, php-format
1173
+ msgid "Showing latest entries of error_log file: %s"
1174
+ msgstr ""
1175
+
1176
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:25
1177
+ msgid "Basic Firewall Rules"
1178
+ msgstr ""
1179
+
1180
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:26
1181
+ msgid "Additional Firewall Rules"
1182
+ msgstr ""
1183
+
1184
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:27
1185
+ msgid "5G Blacklist Firewall Rules"
1186
+ msgstr ""
1187
+
1188
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:28
1189
+ msgid "Brute Force Prevention"
1190
+ msgstr ""
1191
+
1192
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:111
1193
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:102
1194
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:96
1195
+ msgid "Settings were successfully saved"
1196
+ msgstr ""
1197
+
1198
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:120
1199
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:485
1200
+ msgid "Firewall Settings"
1201
+ msgstr ""
1202
+
1203
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:127
1204
+ #, php-format
1205
+ msgid ""
1206
+ "This should not have any impact on your site's general functionality but if "
1207
+ "you wish you can take a %s of your .htaccess file before proceeding."
1208
+ msgstr ""
1209
+
1210
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:128
1211
+ msgid ""
1212
+ "The features in this tab allow you to activate some basic firewall security "
1213
+ "protection rules for your site."
1214
+ msgstr ""
1215
+
1216
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:129
1217
+ msgid ""
1218
+ "The firewall functionality is achieved via the insertion of special code "
1219
+ "into your currently active .htaccess file."
1220
+ msgstr ""
1221
+
1222
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:135
1223
+ msgid "Basic Firewall Settings"
1224
+ msgstr ""
1225
+
1226
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:143
1227
+ msgid "Enable Basic Firewall Protection"
1228
+ msgstr ""
1229
+
1230
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:146
1231
+ msgid "Check this if you want to apply basic firewall protection to your site."
1232
+ msgstr ""
1233
+
1234
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:150
1235
+ msgid ""
1236
+ "This setting will implement the following basic firewall protection "
1237
+ "mechanisms on your site:"
1238
+ msgstr ""
1239
+
1240
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:151
1241
+ msgid "1) Protect your htaccess file by denying access to it."
1242
+ msgstr ""
1243
+
1244
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:152
1245
+ msgid "2) Disable the server signature."
1246
+ msgstr ""
1247
+
1248
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:153
1249
+ msgid "3) Limit file upload size (10MB)."
1250
+ msgstr ""
1251
+
1252
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:154
1253
+ msgid "4) Protect your wp-config.php file by denying access to it."
1254
+ msgstr ""
1255
+
1256
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:155
1257
+ msgid ""
1258
+ "The above firewall features will be applied via your .htaccess file and "
1259
+ "should not affect your site's overall functionality."
1260
+ msgstr ""
1261
+
1262
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:156
1263
+ msgid ""
1264
+ "You are still advised to take a backup of your active .htaccess file just in "
1265
+ "case."
1266
+ msgstr ""
1267
+
1268
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:165
1269
+ msgid "WordPress Pingback Vulnerability Protection"
1270
+ msgstr ""
1271
+
1272
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:173
1273
+ msgid "Enable Pingback Protection"
1274
+ msgstr ""
1275
+
1276
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:176
1277
+ msgid ""
1278
+ "Check this if you are not using the WP XML-RPC functionality and you want to "
1279
+ "enable protection against WordPress pingback vulnerabilities."
1280
+ msgstr ""
1281
+
1282
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:180
1283
+ msgid ""
1284
+ "This setting will add a directive in your .htaccess to disable access to the "
1285
+ "WordPress xmlrpc.php file which is responsible for the XML-RPC functionality "
1286
+ "such as pingbacks in WordPress."
1287
+ msgstr ""
1288
+
1289
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:181
1290
+ msgid ""
1291
+ "Hackers can exploit various pingback vulnerabilities in the WordPress XML-"
1292
+ "RPC API in a number of ways such as:"
1293
+ msgstr ""
1294
+
1295
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:182
1296
+ msgid "1) Denial of Service (DoS) attacks"
1297
+ msgstr ""
1298
+
1299
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:183
1300
+ msgid "2) Hacking internal routers."
1301
+ msgstr ""
1302
+
1303
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:184
1304
+ msgid "3) Scanning ports in internal networks to get info from various hosts."
1305
+ msgstr ""
1306
+
1307
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:185
1308
+ msgid ""
1309
+ "Apart from the security protection benefit, this feature may also help "
1310
+ "reduce load on your server, particularly if your site currently has a lot of "
1311
+ "unwanted traffic hitting the XML-RPC API on your installation."
1312
+ msgstr ""
1313
+
1314
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:186
1315
+ msgid ""
1316
+ "NOTE: You should only enable this feature if you are not currently using the "
1317
+ "XML-RPC functionality on your WordPress installation."
1318
+ msgstr ""
1319
+
1320
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:193
1321
+ msgid "Save Basic Firewall Settings"
1322
+ msgstr ""
1323
+
1324
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:265
1325
+ msgid ""
1326
+ "You have successfully saved the Additional Firewall Protection configuration"
1327
+ msgstr ""
1328
+
1329
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:279
1330
+ msgid "Additional Firewall Protection"
1331
+ msgstr ""
1332
+
1333
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:283
1334
+ #, php-format
1335
+ msgid ""
1336
+ "Due to the nature of the code being inserted to the .htaccess file, this "
1337
+ "feature may break some functionality for certain plugins and you are "
1338
+ "therefore advised to take a %s of .htaccess before applying this "
1339
+ "configuration."
1340
+ msgstr ""
1341
+
1342
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:285
1343
+ msgid ""
1344
+ "This feature allows you to activate more advanced firewall settings to your "
1345
+ "site."
1346
+ msgstr ""
1347
+
1348
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:286
1349
+ msgid ""
1350
+ "The advanced firewall rules are applied via the insertion of special code to "
1351
+ "your currently active .htaccess file."
1352
+ msgstr ""
1353
+
1354
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:295
1355
+ msgid "Listing of Directory Contents"
1356
+ msgstr ""
1357
+
1358
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:304
1359
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:80
1360
+ msgid "Disable Index Views"
1361
+ msgstr ""
1362
+
1363
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:307
1364
+ msgid "Check this if you want to disable directory and file listing."
1365
+ msgstr ""
1366
+
1367
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:312
1368
+ msgid ""
1369
+ "By default, an Apache server will allow the listing of the contents of a "
1370
+ "directory if it doesn't contain an index.php file."
1371
+ msgstr ""
1372
+
1373
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:314
1374
+ msgid "This feature will prevent the listing of contents for all directories."
1375
+ msgstr ""
1376
+
1377
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:316
1378
+ msgid ""
1379
+ "NOTE: In order for this feature to work \"AllowOverride\" must be enabled in "
1380
+ "your httpd.conf file. Ask your hosting provider to check this if you don't "
1381
+ "have access to httpd.conf"
1382
+ msgstr ""
1383
+
1384
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:325
1385
+ msgid "Trace and Track"
1386
+ msgstr ""
1387
+
1388
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:334
1389
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:81
1390
+ msgid "Disable Trace and Track"
1391
+ msgstr ""
1392
+
1393
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:337
1394
+ msgid "Check this if you want to disable trace and track."
1395
+ msgstr ""
1396
+
1397
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:342
1398
+ msgid ""
1399
+ "HTTP Trace attack (XST) can be used to return header requests and grab "
1400
+ "cookies and other information."
1401
+ msgstr ""
1402
+
1403
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:344
1404
+ msgid ""
1405
+ "This hacking technique is usually used together with cross site scripting "
1406
+ "attacks (XSS)."
1407
+ msgstr ""
1408
+
1409
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:346
1410
+ msgid ""
1411
+ "Disabling trace and track on your site will help prevent HTTP Trace attacks."
1412
+ msgstr ""
1413
+
1414
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:355
1415
+ msgid "Proxy Comment Posting"
1416
+ msgstr ""
1417
+
1418
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:365
1419
+ msgid "Forbid Proxy Comment Posting"
1420
+ msgstr ""
1421
+
1422
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:368
1423
+ msgid "Check this if you want to forbid proxy comment posting."
1424
+ msgstr ""
1425
+
1426
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:373
1427
+ msgid ""
1428
+ "This setting will deny any requests that use a proxy server when posting "
1429
+ "comments."
1430
+ msgstr ""
1431
+
1432
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:374
1433
+ msgid ""
1434
+ "By forbidding proxy comments you are in effect eliminating some SPAM and "
1435
+ "other proxy requests."
1436
+ msgstr ""
1437
+
1438
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:383
1439
+ msgid "Bad Query Strings"
1440
+ msgstr ""
1441
+
1442
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:393
1443
+ msgid "Deny Bad Query Strings"
1444
+ msgstr ""
1445
+
1446
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:396
1447
+ msgid "This will help protect you against malicious queries via XSS."
1448
+ msgstr ""
1449
+
1450
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:401
1451
+ msgid ""
1452
+ "This feature will write rules in your .htaccess file to prevent malicious "
1453
+ "string attacks on your site using XSS."
1454
+ msgstr ""
1455
+
1456
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:402
1457
+ msgid ""
1458
+ "NOTE: Some of these strings might be used for plugins or themes and hence "
1459
+ "this might break some functionality."
1460
+ msgstr ""
1461
+
1462
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:403
1463
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:433
1464
+ msgid ""
1465
+ "You are therefore strongly advised to take a backup of your active .htaccess "
1466
+ "file before applying this feature."
1467
+ msgstr ""
1468
+
1469
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:412
1470
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:84
1471
+ msgid "Advanced Character String Filter"
1472
+ msgstr ""
1473
+
1474
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:422
1475
+ msgid "Enable Advanced Character String Filter"
1476
+ msgstr ""
1477
+
1478
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:425
1479
+ msgid "This will block bad character matches from XSS."
1480
+ msgstr ""
1481
+
1482
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:430
1483
+ msgid ""
1484
+ "This is an advanced character string filter to prevent malicious string "
1485
+ "attacks on your site coming from Cross Site Scripting (XSS)."
1486
+ msgstr ""
1487
+
1488
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:431
1489
+ msgid ""
1490
+ "This setting matches for common malicious string patterns and exploits and "
1491
+ "will produce a 403 error for the hacker attempting the query."
1492
+ msgstr ""
1493
+
1494
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:432
1495
+ msgid "NOTE: Some strings for this setting might break some functionality."
1496
+ msgstr ""
1497
+
1498
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:441
1499
+ msgid "Save Additional Firewall Settings"
1500
+ msgstr ""
1501
+
1502
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:476
1503
+ msgid "You have successfully saved the 5G Firewall Protection configuration"
1504
+ msgstr ""
1505
+
1506
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:489
1507
+ #, php-format
1508
+ msgid ""
1509
+ "This feature allows you to activate the 5G firewall security protection "
1510
+ "rules designed and produced by %s."
1511
+ msgstr ""
1512
+
1513
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:490
1514
+ msgid ""
1515
+ "The 5G Blacklist is a simple, flexible blacklist that helps reduce the "
1516
+ "number of malicious URL requests that hit your website."
1517
+ msgstr ""
1518
+
1519
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:491
1520
+ msgid ""
1521
+ "The added advantage of applying the 5G firewall to your site is that it has "
1522
+ "been tested and confirmed by the people at PerishablePress.com to be an "
1523
+ "optimal and least disruptive set of .htaccess security rules for general WP "
1524
+ "sites running on an Apache server or similar."
1525
+ msgstr ""
1526
+
1527
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:492
1528
+ #, php-format
1529
+ msgid ""
1530
+ "Therefore the 5G firewall rules should not have any impact on your site's "
1531
+ "general functionality but if you wish you can take a %s of your .htaccess "
1532
+ "file before proceeding."
1533
+ msgstr ""
1534
+
1535
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:498
1536
+ msgid "5G Blacklist/Firewall Settings"
1537
+ msgstr ""
1538
+
1539
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:510
1540
+ msgid "Enable 5G Firewall Protection"
1541
+ msgstr ""
1542
+
1543
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:513
1544
+ msgid ""
1545
+ "Check this if you want to apply the 5G Blacklist firewall protection from "
1546
+ "perishablepress.com to your site."
1547
+ msgstr ""
1548
+
1549
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:517
1550
+ msgid ""
1551
+ "This setting will implement the 5G security firewall protection mechanisms "
1552
+ "on your site which include the following things:"
1553
+ msgstr ""
1554
+
1555
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:518
1556
+ msgid "1) Block forbidden characters commonly used in exploitative attacks."
1557
+ msgstr ""
1558
+
1559
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:519
1560
+ msgid "2) Block malicious encoded URL characters such as the \".css(\" string."
1561
+ msgstr ""
1562
+
1563
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:520
1564
+ msgid ""
1565
+ "3) Guard against the common patterns and specific exploits in the root "
1566
+ "portion of targeted URLs."
1567
+ msgstr ""
1568
+
1569
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:521
1570
+ msgid ""
1571
+ "4) Stop attackers from manipulating query strings by disallowing illicit "
1572
+ "characters."
1573
+ msgstr ""
1574
+
1575
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:522
1576
+ msgid "....and much more."
1577
+ msgstr ""
1578
+
1579
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:528
1580
+ msgid "Save 5G Firewall Settings"
1581
+ msgstr ""
1582
+
1583
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:556
1584
+ msgid ""
1585
+ "Settings have not been saved - your secret word must consist only of "
1586
+ "alphanumeric characters, ie, letters and/or numbers only!"
1587
+ msgstr ""
1588
+
1589
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:574
1590
+ msgid ""
1591
+ "You have successfully enabled the cookie based brute force prevention feature"
1592
+ msgstr ""
1593
+
1594
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:575
1595
+ msgid ""
1596
+ "From now on you will need to log into your WP Admin using the following URL:"
1597
+ msgstr ""
1598
+
1599
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:577
1600
+ msgid ""
1601
+ "It is important that you save this URL value somewhere in case you forget "
1602
+ "it, OR,"
1603
+ msgstr ""
1604
+
1605
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:578
1606
+ #, php-format
1607
+ msgid "simply remember to add a \"?%s=1\" to your current site URL address."
1608
+ msgstr ""
1609
+
1610
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:584
1611
+ msgid ""
1612
+ "You have successfully saved cookie based brute force prevention feature "
1613
+ "settings."
1614
+ msgstr ""
1615
+
1616
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:629
1617
+ msgid "Brute Force Prevention Firewall Settings"
1618
+ msgstr ""
1619
+
1620
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:634
1621
+ msgid ""
1622
+ "A Brute Force Attack is when a hacker tries many combinations of usernames "
1623
+ "and passwords until they succeed in guessing the right combination."
1624
+ msgstr ""
1625
+
1626
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:635
1627
+ msgid ""
1628
+ "Due to the fact that at any one time there may be many concurrent login "
1629
+ "attempts occurring on your site via malicious automated robots, this also "
1630
+ "has a negative impact on your server's memory and performance."
1631
+ msgstr ""
1632
+
1633
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:636
1634
+ msgid ""
1635
+ "The features in this tab will stop the majority of Brute Force Login Attacks "
1636
+ "at the .htaccess level thus providing even better protection for your WP "
1637
+ "login page and also reducing the load on your server because the system does "
1638
+ "not have to run PHP code to process the login attempts."
1639
+ msgstr ""
1640
+
1641
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:643
1642
+ #, php-format
1643
+ msgid ""
1644
+ "Even though this feature should not have any impact on your site's general "
1645
+ "functionality <strong>you are strongly encouraged to take a %s of your ."
1646
+ "htaccess file before proceeding</strong>."
1647
+ msgstr ""
1648
+
1649
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:644
1650
+ msgid ""
1651
+ "If this feature is not used correctly, you can get locked out of your site. "
1652
+ "A backup file will come in handy if that happens."
1653
+ msgstr ""
1654
+
1655
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:645
1656
+ #, php-format
1657
+ msgid ""
1658
+ "To learn more about how to use this feature please watch the following %s."
1659
+ msgstr ""
1660
+
1661
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:654
1662
+ msgid "Cookie Based Brute Force Login Prevention"
1663
+ msgstr ""
1664
+
1665
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:665
1666
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:79
1667
+ msgid "Enable Brute Force Attack Prevention"
1668
+ msgstr ""
1669
+
1670
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:668
1671
+ msgid ""
1672
+ "Check this if you want to protect your login page from Brute Force Attack."
1673
+ msgstr ""
1674
+
1675
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:673
1676
+ msgid ""
1677
+ "This feature will deny access to your WordPress login page for all people "
1678
+ "except those who have a special cookie in their browser."
1679
+ msgstr ""
1680
+
1681
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:675
1682
+ msgid "To use this feature do the following:"
1683
+ msgstr ""
1684
+
1685
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:677
1686
+ msgid "1) Enable the checkbox."
1687
+ msgstr ""
1688
+
1689
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:679
1690
+ msgid ""
1691
+ "2) Enter a secret word consisting of alphanumeric characters which will be "
1692
+ "difficult to guess. This secret word will be useful whenever you need to "
1693
+ "know the special URL which you will use to access the login page (see point "
1694
+ "below)."
1695
+ msgstr ""
1696
+
1697
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:681
1698
+ msgid ""
1699
+ "3) You will then be provided with a special login URL. You will need to use "
1700
+ "this URL to login to your WordPress site instead of the usual login URL. "
1701
+ "NOTE: The system will deposit a special cookie in your browser which will "
1702
+ "allow you access to the WordPress administration login page."
1703
+ msgstr ""
1704
+
1705
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:683
1706
+ msgid ""
1707
+ "Any person trying to access your login page who does not have the special "
1708
+ "cookie in their browser will be automatically blocked."
1709
+ msgstr ""
1710
+
1711
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:690
1712
+ msgid "Secret Word"
1713
+ msgstr ""
1714
+
1715
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:692
1716
+ msgid ""
1717
+ "Choose a secret word consisting of alphanumeric characters which you can use "
1718
+ "to access your special URL. Your are highly encouraged to choose a word "
1719
+ "which will be difficult to guess."
1720
+ msgstr ""
1721
+
1722
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:696
1723
+ msgid "Re-direct URL"
1724
+ msgstr ""
1725
+
1726
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:700
1727
+ msgid ""
1728
+ "Specify a URL to redirect a hacker to when they try to access your WordPress "
1729
+ "login page."
1730
+ msgstr ""
1731
+
1732
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:707
1733
+ msgid ""
1734
+ "The URL specified here can be any site's URL and does not have to be your "
1735
+ "own. For example you can be as creative as you like and send hackers to the "
1736
+ "CIA or NSA home page."
1737
+ msgstr ""
1738
+
1739
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:709
1740
+ msgid ""
1741
+ "This field will default to: http://127.0.0.1 if you do not enter a value."
1742
+ msgstr ""
1743
+
1744
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:711
1745
+ msgid "Useful Tip:"
1746
+ msgstr ""
1747
+
1748
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:713
1749
+ msgid ""
1750
+ "It's a good idea to not redirect attempted brute force login attempts to "
1751
+ "your site because it increases the load on your server."
1752
+ msgstr ""
1753
+
1754
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:715
1755
+ msgid ""
1756
+ "Redirecting a hacker or malicious bot back to \"http://127.0.0.1\" is ideal "
1757
+ "because it deflects them back to their own local host and puts the load on "
1758
+ "their server instead of yours."
1759
+ msgstr ""
1760
+
1761
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:722
1762
+ msgid "My Site Has Posts Or Pages Which Are Password Protected"
1763
+ msgstr ""
1764
+
1765
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:725
1766
+ msgid ""
1767
+ "Check this if you are using the native WordPress password protection feature "
1768
+ "for some or all of your blog posts or pages."
1769
+ msgstr ""
1770
+
1771
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:730
1772
+ msgid ""
1773
+ "In the cases where you are protecting some of your posts or pages using the "
1774
+ "in-built WordPress password protection feature, a few extra lines of "
1775
+ "directives and exceptions need to be added to your .htacces file so that "
1776
+ "people trying to access pages are not automatically blocked."
1777
+ msgstr ""
1778
+
1779
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:732
1780
+ msgid ""
1781
+ "By enabling this checkbox the plugin will add the necessary rules and "
1782
+ "exceptions to your .htacces file so that people trying to access these pages "
1783
+ "are not automatically blocked."
1784
+ msgstr ""
1785
+
1786
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:734
1787
+ msgid "Helpful Tip:"
1788
+ msgstr ""
1789
+
1790
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:736
1791
+ msgid ""
1792
+ "If you do not use the WordPress password protection feature for your posts "
1793
+ "or pages then it is highly recommended that you leave this checkbox disabled."
1794
+ msgstr ""
1795
+
1796
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:743
1797
+ msgid "My Site Has a Theme or Plugins Which Use AJAX"
1798
+ msgstr ""
1799
+
1800
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:746
1801
+ msgid "Check this if your site uses AJAX functionality."
1802
+ msgstr ""
1803
+
1804
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:751
1805
+ msgid ""
1806
+ "In the cases where your WordPress installation has a theme or plugins which "
1807
+ "use AJAX, a few extra lines of directives and exceptions need to be added to "
1808
+ "your .htacces file to prevent AJAX requests from being automatically blocked "
1809
+ "by the brute force prevention feature."
1810
+ msgstr ""
1811
+
1812
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:753
1813
+ msgid ""
1814
+ "By enabling this checkbox the plugin will add the necessary rules and "
1815
+ "exceptions to your .htacces file so that AJAX operations will work as "
1816
+ "expected."
1817
+ msgstr ""
1818
+
1819
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:768
1820
+ msgid "The cookie test was successful. You can now enable this feature."
1821
+ msgstr ""
1822
+
1823
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:771
1824
+ msgid "Save Feature Settings"
1825
+ msgstr ""
1826
+
1827
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:778
1828
+ msgid ""
1829
+ "The cookie test failed on this server. So this feature cannot be used on "
1830
+ "this site."
1831
+ msgstr ""
1832
+
1833
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:784
1834
+ msgid ""
1835
+ "Before using this feature you are required to perform a cookie test first. "
1836
+ "This is to make sure that your browser cookie is working correctly and that "
1837
+ "you won't lock yourself out."
1838
+ msgstr ""
1839
+
1840
+ #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:786
1841
+ msgid "Perform Cookie Test"
1842
+ msgstr ""
1843
+
1844
+ #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:79
1845
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:86
1846
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:80
1847
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:91
1848
+ #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:78
1849
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:82
1850
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:93
1851
+ msgid "Please select some records using the checkboxes"
1852
+ msgstr ""
1853
+
1854
+ #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:107
1855
+ #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:107
1856
+ msgid "The selected entries were deleted successfully!"
1857
+ msgstr ""
1858
+
1859
+ #: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:120
1860
+ #: all-in-one-wp-security/admin/wp-security-list-login-fails.php:119
1861
+ msgid "The selected entry was deleted successfully!"
1862
+ msgstr ""
1863
+
1864
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:139
1865
+ msgid ""
1866
+ "The selected IP addresses were saved in the blacklist configuration settings."
1867
+ msgstr ""
1868
+
1869
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:153
1870
+ msgid ""
1871
+ "The .htaccess file was successfully modified to include the selected IP "
1872
+ "addresses."
1873
+ msgstr ""
1874
+
1875
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:159
1876
+ msgid ""
1877
+ "NOTE: The .htaccess file was not modified because you have disabled the "
1878
+ "\"Enable IP or User Agent Blacklisting\" check box."
1879
+ msgstr ""
1880
+
1881
+ #: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:160
1882
+ #, php-format
1883
+ msgid ""
1884
+ "To block these IP addresses you will need to enable the above flag in the %s "
1885
+ "menu"
1886
+ msgstr ""
1887
+
1888
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:115
1889
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:748
1890
+ msgid "The selected IP ranges were unlocked successfully!"
1891
+ msgstr ""
1892
+
1893
+ #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:124
1894
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:757
1895
+ msgid "The selected IP range was unlocked successfully!"
1896
+ msgstr ""
1897
+
1898
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:118
1899
+ msgid "The selected accounts were approved successfully!"
1900
+ msgstr ""
1901
+
1902
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:125
1903
+ msgid "The selected account was approved successfully!"
1904
+ msgstr ""
1905
+
1906
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:146
1907
+ msgid "The selected accounts were deleted successfully!"
1908
+ msgstr ""
1909
+
1910
+ #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:154
1911
+ msgid "The selected account was deleted successfully!"
1912
+ msgstr ""
1913
+
1914
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:22
1915
+ msgid "Visitor Lockout"
1916
+ msgstr ""
1917
+
1918
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:88
1919
+ msgid "Site lockout feature settings saved!"
1920
+ msgstr ""
1921
+
1922
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:93
1923
+ msgid "General Visitor Lockout"
1924
+ msgstr ""
1925
+
1926
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:99
1927
+ msgid ""
1928
+ "This feature allows you to put your site into \"maintenance mode\" by "
1929
+ "locking down the front-end to all visitors except logged in users with super "
1930
+ "admin privileges."
1931
+ msgstr ""
1932
+
1933
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:100
1934
+ msgid ""
1935
+ "Locking your site down to general visitors can be useful if you are "
1936
+ "investigating some issues on your site or perhaps you might be doing some "
1937
+ "maintenance and wish to keep out all traffic for security reasons."
1938
+ msgstr ""
1939
+
1940
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:105
1941
+ msgid "Enable Front-end Lockout"
1942
+ msgstr ""
1943
+
1944
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:108
1945
+ msgid ""
1946
+ "Check this if you want all visitors except those who are logged in as "
1947
+ "administrator to be locked out of the front-end of your site."
1948
+ msgstr ""
1949
+
1950
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:112
1951
+ msgid "Enter a Message:"
1952
+ msgstr ""
1953
+
1954
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:124
1955
+ msgid ""
1956
+ "Enter a message you wish to display to visitors when your site is in "
1957
+ "maintenance mode."
1958
+ msgstr ""
1959
+
1960
+ #: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:131
1961
+ msgid "Save Site Lockout Settings"
1962
+ msgstr ""
1963
+
1964
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:25
1965
+ msgid "General Settings"
1966
+ msgstr ""
1967
+
1968
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:28
1969
+ msgid "WP Meta Info"
1970
+ msgstr ""
1971
+
1972
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:95
1973
+ msgid "All the security features have been disabled successfully!"
1974
+ msgstr ""
1975
+
1976
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:99
1977
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:126
1978
+ msgid ""
1979
+ "Could not write to the .htaccess file. Please restore your .htaccess file "
1980
+ "manually using the restore functionality in the \".htaccess File\"."
1981
+ msgstr ""
1982
+
1983
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:104
1984
+ msgid ""
1985
+ "Could not write to the wp-config.php. Please restore your wp-config.php file "
1986
+ "manually using the restore functionality in the \"wp-config.php File\"."
1987
+ msgstr ""
1988
+
1989
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:122
1990
+ msgid "All firewall rules have been disabled successfully!"
1991
+ msgstr ""
1992
+
1993
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:136
1994
+ msgid "WP Security Plugin"
1995
+ msgstr ""
1996
+
1997
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:138
1998
+ msgid ""
1999
+ "Thank you for using our WordPress security plugin. There are a lot of "
2000
+ "security features in this plugin."
2001
+ msgstr ""
2002
+
2003
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:139
2004
+ msgid ""
2005
+ "Go through each menu items and enable the security options to add more "
2006
+ "security to your site. Start by activating the basic features first."
2007
+ msgstr ""
2008
+
2009
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:140
2010
+ msgid ""
2011
+ "It is a good practice to take a backup of your .htaccess file, database and "
2012
+ "wp-config.php file before activating the security features. This plugin has "
2013
+ "options that you can use to backup those resources easily."
2014
+ msgstr ""
2015
+
2016
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:143
2017
+ msgid "Backup your database"
2018
+ msgstr ""
2019
+
2020
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:144
2021
+ msgid "Backup .htaccess file"
2022
+ msgstr ""
2023
+
2024
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:145
2025
+ msgid "Backup wp-config.php file"
2026
+ msgstr ""
2027
+
2028
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:151
2029
+ msgid "Disable Security Features"
2030
+ msgstr ""
2031
+
2032
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:157
2033
+ msgid ""
2034
+ "If you think that some plugin functionality on your site is broken due to a "
2035
+ "security feature you enabled in this plugin, then use the following option "
2036
+ "to turn off all the security features of this plugin."
2037
+ msgstr ""
2038
+
2039
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:161
2040
+ msgid "Disable All Security Features"
2041
+ msgstr ""
2042
+
2043
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:167
2044
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:177
2045
+ msgid "Disable All Firewall Rules"
2046
+ msgstr ""
2047
+
2048
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:173
2049
+ msgid ""
2050
+ "This feature will disable all firewall rules which are currently active in "
2051
+ "this plugin and it will also delete these rules from your .htacess file. Use "
2052
+ "it if you think one of the firewall rules is causing an issue on your site."
2053
+ msgstr ""
2054
+
2055
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:206
2056
+ msgid ""
2057
+ "Your .htaccess file was successfully backed up! Using an FTP program go to "
2058
+ "the \"backups\" directory of this plugin to save a copy of the file to your "
2059
+ "computer."
2060
+ msgstr ""
2061
+
2062
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:216
2063
+ msgid ""
2064
+ "htaccess file rename failed during backup. Please check your root directory "
2065
+ "for the backup file using FTP."
2066
+ msgstr ""
2067
+
2068
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:222
2069
+ msgid "htaccess backup failed."
2070
+ msgstr ""
2071
+
2072
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:237
2073
+ msgid "Please choose a .htaccess to restore from."
2074
+ msgstr ""
2075
+
2076
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:253
2077
+ msgid ""
2078
+ "htaccess file restore failed. Please attempt to restore the .htaccess "
2079
+ "manually using FTP."
2080
+ msgstr ""
2081
+
2082
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:257
2083
+ msgid "Your .htaccess file has successfully been restored!"
2084
+ msgstr ""
2085
+
2086
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:263
2087
+ msgid ""
2088
+ "htaccess Restore operation failed! Please check the contents of the file you "
2089
+ "are trying to restore from."
2090
+ msgstr ""
2091
+
2092
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:269
2093
+ msgid ".htaccess File Operations"
2094
+ msgstr ""
2095
+
2096
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:272
2097
+ msgid ""
2098
+ "Your \".htaccess\" file is a key component of your website's security and it "
2099
+ "can be modified to implement various levels of protection mechanisms."
2100
+ msgstr ""
2101
+
2102
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:273
2103
+ msgid ""
2104
+ "This feature allows you to backup and save your currently active .htaccess "
2105
+ "file should you need to re-use the the backed up file in the future."
2106
+ msgstr ""
2107
+
2108
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:274
2109
+ msgid ""
2110
+ "You can also restore your site's .htaccess settings using a backed up ."
2111
+ "htaccess file."
2112
+ msgstr ""
2113
+
2114
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:288
2115
+ msgid "Save the current .htaccess file"
2116
+ msgstr ""
2117
+
2118
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:292
2119
+ msgid ""
2120
+ "Click the button below to backup and save the currently active .htaccess "
2121
+ "file."
2122
+ msgstr ""
2123
+
2124
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:293
2125
+ msgid "Backup .htaccess File"
2126
+ msgstr ""
2127
+
2128
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:297
2129
+ msgid "Restore from a backed up .htaccess file"
2130
+ msgstr ""
2131
+
2132
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:303
2133
+ msgid ".htaccess file to restore from"
2134
+ msgstr ""
2135
+
2136
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:309
2137
+ msgid ""
2138
+ "After selecting your file, click the button below to restore your site using "
2139
+ "the backed up htaccess file (htaccess_backup.txt)."
2140
+ msgstr ""
2141
+
2142
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:315
2143
+ msgid "Restore .htaccess File"
2144
+ msgstr ""
2145
+
2146
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:319
2147
+ msgid "View Contents of the currently active .htaccess file"
2148
+ msgstr ""
2149
+
2150
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:348
2151
+ msgid "Please choose a wp-config.php file to restore from."
2152
+ msgstr ""
2153
+
2154
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:364
2155
+ msgid ""
2156
+ "wp-config.php file restore failed. Please attempt to restore this file "
2157
+ "manually using FTP."
2158
+ msgstr ""
2159
+
2160
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:368
2161
+ msgid "Your wp-config.php file has successfully been restored!"
2162
+ msgstr ""
2163
+
2164
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:374
2165
+ msgid ""
2166
+ "wp-config.php Restore operation failed! Please check the contents of the "
2167
+ "file you are trying to restore from."
2168
+ msgstr ""
2169
+
2170
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:380
2171
+ msgid "wp-config.php File Operations"
2172
+ msgstr ""
2173
+
2174
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:383
2175
+ msgid ""
2176
+ "Your \"wp-config.php\" file is one of the most important in your WordPress "
2177
+ "installation. It is a primary configuration file and contains crucial things "
2178
+ "such as details of your database and other critical components."
2179
+ msgstr ""
2180
+
2181
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:384
2182
+ msgid ""
2183
+ "This feature allows you to backup and save your currently active wp-config."
2184
+ "php file should you need to re-use the the backed up file in the future."
2185
+ msgstr ""
2186
+
2187
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:385
2188
+ msgid ""
2189
+ "You can also restore your site's wp-config.php settings using a backed up wp-"
2190
+ "config.php file."
2191
+ msgstr ""
2192
+
2193
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:399
2194
+ msgid "Save the current wp-config.php file"
2195
+ msgstr ""
2196
+
2197
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:403
2198
+ msgid ""
2199
+ "Click the button below to backup and download the contents of the currently "
2200
+ "active wp-config.php file."
2201
+ msgstr ""
2202
+
2203
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:404
2204
+ msgid "Backup wp-config.php File"
2205
+ msgstr ""
2206
+
2207
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:409
2208
+ msgid "Restore from a backed up wp-config file"
2209
+ msgstr ""
2210
+
2211
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:415
2212
+ msgid "wp-config file to restore from"
2213
+ msgstr ""
2214
+
2215
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:421
2216
+ msgid ""
2217
+ "After selecting your file click the button below to restore your site using "
2218
+ "the backed up wp-config file (wp-config.php.backup.txt)."
2219
+ msgstr ""
2220
+
2221
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:427
2222
+ msgid "Restore wp-config File"
2223
+ msgstr ""
2224
+
2225
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:431
2226
+ msgid "View Contents of the currently active wp-config.php file"
2227
+ msgstr ""
2228
+
2229
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:466
2230
+ msgid "WP Generator Meta Tag"
2231
+ msgstr ""
2232
+
2233
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:469
2234
+ msgid ""
2235
+ "Wordpress generator automatically adds some meta information inside the "
2236
+ "\"head\" tags of every page on your site's front end. Below is an example of "
2237
+ "this:"
2238
+ msgstr ""
2239
+
2240
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:471
2241
+ msgid ""
2242
+ "The above meta information shows which version of WordPress your site is "
2243
+ "currently running and thus can help hackers or crawlers scan your site to "
2244
+ "see if you have an older version of WordPress or one with a known exploit."
2245
+ msgstr ""
2246
+
2247
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:472
2248
+ msgid ""
2249
+ "This feature will allow you to remove the WP generator meta info from your "
2250
+ "site's pages."
2251
+ msgstr ""
2252
+
2253
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:478
2254
+ msgid "WP Generator Meta Info"
2255
+ msgstr ""
2256
+
2257
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:490
2258
+ msgid "Remove WP Generator Meta Info"
2259
+ msgstr ""
2260
+
2261
+ #: all-in-one-wp-security/admin/wp-security-settings-menu.php:493
2262
+ msgid ""
2263
+ "Check this if you want to remove the meta info produced by WP Generator from "
2264
+ "all pages"
2265
+ msgstr ""
2266
+
2267
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:23
2268
+ msgid "Comment SPAM"
2269
+ msgstr ""
2270
+
2271
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:24
2272
+ msgid "Comment SPAM IP Monitoring"
2273
+ msgstr ""
2274
+
2275
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:111
2276
+ msgid "Comment SPAM Settings"
2277
+ msgstr ""
2278
+
2279
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:116
2280
+ msgid "Add Captcha To Comments Form"
2281
+ msgstr ""
2282
+
2283
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:120
2284
+ msgid ""
2285
+ "This feature will add a simple math captcha field in the WordPress comments "
2286
+ "form."
2287
+ msgstr ""
2288
+
2289
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:137
2290
+ msgid "Enable Captcha On Comment Forms"
2291
+ msgstr ""
2292
+
2293
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:140
2294
+ msgid "Check this if you want to insert a captcha field on the comment forms"
2295
+ msgstr ""
2296
+
2297
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:148
2298
+ msgid "Block Spambot Comments"
2299
+ msgstr ""
2300
+
2301
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:152
2302
+ msgid ""
2303
+ "A large portion of WordPress blog comment SPAM is mainly produced by "
2304
+ "automated bots and not necessarily by humans. "
2305
+ msgstr ""
2306
+
2307
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:153
2308
+ msgid ""
2309
+ "This feature will greatly minimize the useless and unecessary traffic and "
2310
+ "load on your server resulting from SPAM comments by blocking all comment "
2311
+ "requests which do not originate from your domain."
2312
+ msgstr ""
2313
+
2314
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:170
2315
+ msgid "Block Spambots From Posting Comments"
2316
+ msgstr ""
2317
+
2318
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:173
2319
+ msgid ""
2320
+ "Check this if you want to apply a firewall rule which will block comments "
2321
+ "originating from spambots."
2322
+ msgstr ""
2323
+
2324
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:177
2325
+ msgid ""
2326
+ "This feature will implement a firewall rule to block all comment attempts "
2327
+ "which do not originate from your domain."
2328
+ msgstr ""
2329
+
2330
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:178
2331
+ msgid ""
2332
+ "A legitimate comment is one which is submitted by a human who physically "
2333
+ "fills out the comment form and clicks the submit button. For such events, "
2334
+ "the HTTP_REFERRER is always set to your own domain."
2335
+ msgstr ""
2336
+
2337
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:179
2338
+ msgid ""
2339
+ "A comment submitted by a spambot is done by directly calling the comments."
2340
+ "php file, which usually means that the HTTP_REFERRER value is not your "
2341
+ "domain and often times empty."
2342
+ msgstr ""
2343
+
2344
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:180
2345
+ msgid ""
2346
+ "This feature will check and block comment requests which are not referred by "
2347
+ "your domain thus greatly reducing your overall blog SPAM and PHP requests "
2348
+ "done by the server to process these comments."
2349
+ msgstr ""
2350
+
2351
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:207
2352
+ msgid "Nonce check failed for list SPAM comment IPs!"
2353
+ msgstr ""
2354
+
2355
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:213
2356
+ msgid ""
2357
+ "You entered a non numeric value for the minimum SPAM comments per IP field. "
2358
+ "It has been set to the default value."
2359
+ msgstr ""
2360
+
2361
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:225
2362
+ #, php-format
2363
+ msgid ""
2364
+ "Displaying results for IP addresses which have posted a minimum of %s SPAM "
2365
+ "comments"
2366
+ msgstr ""
2367
+
2368
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:241
2369
+ msgid ""
2370
+ "This tab displays a list of the IP addresses of the people or bots who have "
2371
+ "left SPAM comments on your site."
2372
+ msgstr ""
2373
+
2374
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:242
2375
+ msgid ""
2376
+ "This information can be handy for identifying the most persistent IP "
2377
+ "addresses or ranges used by spammers."
2378
+ msgstr ""
2379
+
2380
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:243
2381
+ msgid ""
2382
+ "By inspecting the IP address data coming from spammers you will be in a "
2383
+ "better position to determine which addresses or address ranges you should "
2384
+ "block by adding them to your blacklist."
2385
+ msgstr ""
2386
+
2387
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:244
2388
+ msgid ""
2389
+ "To add one or more of the IP addresses displayed in the table below to your "
2390
+ "blacklist, simply click the \"Block\" link for the individual row or select "
2391
+ "more than one address \n"
2392
+ " using the checkboxes and then choose the \"block"
2393
+ "\" option from the Bulk Actions dropdown list and click the \"Apply\" button."
2394
+ msgstr ""
2395
+
2396
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:250
2397
+ msgid "List SPAMMER IP Addresses"
2398
+ msgstr ""
2399
+
2400
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:256
2401
+ msgid "Minimum number of SPAM comments per IP"
2402
+ msgstr ""
2403
+
2404
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:258
2405
+ msgid ""
2406
+ "This field allows you to list only those IP addresses which have been used "
2407
+ "to post X or more SPAM comments."
2408
+ msgstr ""
2409
+
2410
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:262
2411
+ msgid ""
2412
+ "Example 1: Setting this value to \"0\" or \"1\" will list ALL IP addresses "
2413
+ "which were used to submit SPAM comments."
2414
+ msgstr ""
2415
+
2416
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:263
2417
+ msgid ""
2418
+ "Example 2: Setting this value to \"5\" will list only those IP addresses "
2419
+ "which were used to submit 5 SPAM comments or more on your site."
2420
+ msgstr ""
2421
+
2422
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:270
2423
+ msgid "Find IP Addresses"
2424
+ msgstr ""
2425
+
2426
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:274
2427
+ msgid "SPAMMER IP Address Results"
2428
+ msgstr ""
2429
+
2430
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:280
2431
+ #: all-in-one-wp-security/classes/wp-security-utility.php:150
2432
+ msgid ""
2433
+ "The plugin has detected that you are using a Multi-Site WordPress "
2434
+ "installation."
2435
+ msgstr ""
2436
+
2437
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:281
2438
+ msgid "Only the \"superadmin\" can block IP addresses from the main site."
2439
+ msgstr ""
2440
+
2441
+ #: all-in-one-wp-security/admin/wp-security-spam-menu.php:282
2442
+ msgid ""
2443
+ "Take note of the IP addresses you want blocked and ask the superadmin to add "
2444
+ "these to the blacklist using the \"Blacklist Manager\" on the main site."
2445
+ msgstr ""
2446
+
2447
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:29
2448
+ msgid "WP Username"
2449
+ msgstr ""
2450
+
2451
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:30
2452
+ msgid "Display Name"
2453
+ msgstr ""
2454
+
2455
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:31
2456
+ msgid "Password"
2457
+ msgstr ""
2458
+
2459
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:85
2460
+ msgid "Admin User Security"
2461
+ msgstr ""
2462
+
2463
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:88
2464
+ msgid ""
2465
+ "By default, WordPress sets the administrator username to \"admin\" at "
2466
+ "installation time."
2467
+ msgstr ""
2468
+
2469
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:89
2470
+ msgid ""
2471
+ "A lot of hackers try to take advantage of this information by attempting "
2472
+ "\"Brute Force Login Attacks\" where they repeatedly try to guess the "
2473
+ "password by using \"admin\" for username."
2474
+ msgstr ""
2475
+
2476
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:90
2477
+ msgid ""
2478
+ "From a security perspective, changing the default \"admin\" user name is one "
2479
+ "of the first and smartest things you should do on your site."
2480
+ msgstr ""
2481
+
2482
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:91
2483
+ msgid ""
2484
+ "This feature will allow you to change your default \"admin\" user name to a "
2485
+ "more secure name of your choosing."
2486
+ msgstr ""
2487
+
2488
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:98
2489
+ msgid "List of Administrator Accounts"
2490
+ msgstr ""
2491
+
2492
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:107
2493
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:33
2494
+ msgid "Change Admin Username"
2495
+ msgstr ""
2496
+
2497
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:115
2498
+ msgid ""
2499
+ "Your site currently has an account which uses the default \"admin\" "
2500
+ "username. \n"
2501
+ " It is highly recommended that you change this name to "
2502
+ "something else. \n"
2503
+ " Use the following field to change the admin username."
2504
+ msgstr ""
2505
+
2506
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:123
2507
+ msgid "New Admin Username"
2508
+ msgstr ""
2509
+
2510
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:125
2511
+ msgid "Choose a new username for admin."
2512
+ msgstr ""
2513
+
2514
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:129
2515
+ msgid "Change Username"
2516
+ msgstr ""
2517
+
2518
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:131
2519
+ msgid ""
2520
+ "NOTE: If you are currently logged in as \"admin\" you will be automatically "
2521
+ "logged out after changing your username and will be required to log back in."
2522
+ msgstr ""
2523
+
2524
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:138
2525
+ msgid "No action required! "
2526
+ msgstr ""
2527
+
2528
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:140
2529
+ msgid ""
2530
+ "Your site does not have any account which uses the default \"admin\" "
2531
+ "username. "
2532
+ msgstr ""
2533
+
2534
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:141
2535
+ msgid "This is good security practice."
2536
+ msgstr ""
2537
+
2538
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:153
2539
+ msgid "Display Name Security"
2540
+ msgstr ""
2541
+
2542
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:156
2543
+ msgid ""
2544
+ "When you submit a post or answer a comment, WordPress will usually display "
2545
+ "your \"nickname\"."
2546
+ msgstr ""
2547
+
2548
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:157
2549
+ msgid ""
2550
+ "By default the nickname is set to the login (or user) name of your account."
2551
+ msgstr ""
2552
+
2553
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:158
2554
+ msgid ""
2555
+ "From a security perspective, leaving your nickname the same as your user "
2556
+ "name is bad practice because it gives a hacker at least half of your "
2557
+ "account's login credentials."
2558
+ msgstr ""
2559
+
2560
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:159
2561
+ msgid ""
2562
+ "Therefore to further tighten your site's security you are advised to change "
2563
+ "your <strong>nickname</strong> and <strong>Display name</strong> to be "
2564
+ "different from your <strong>Username</strong>."
2565
+ msgstr ""
2566
+
2567
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:165
2568
+ msgid "Modify Accounts With Identical Login Name & Display Name"
2569
+ msgstr ""
2570
+
2571
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:174
2572
+ msgid ""
2573
+ "Your site currently has the following accounts which have an identical login "
2574
+ "name and display name."
2575
+ msgstr ""
2576
+
2577
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:175
2578
+ msgid "Click on the link to edit the settings of that particular user account"
2579
+ msgstr ""
2580
+
2581
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:190
2582
+ msgid "No action required."
2583
+ msgstr ""
2584
+
2585
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:191
2586
+ msgid ""
2587
+ "Your site does not have a user account where the display name is identical "
2588
+ "to the username."
2589
+ msgstr ""
2590
+
2591
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:202
2592
+ msgid "Password Tool"
2593
+ msgstr ""
2594
+
2595
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:205
2596
+ msgid ""
2597
+ "Poor password selection is one of the most common weak points of many sites "
2598
+ "and is usually the first thing a hacker will try to exploit when attempting "
2599
+ "to break into your site."
2600
+ msgstr ""
2601
+
2602
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:206
2603
+ msgid ""
2604
+ "Many people fall into the trap of using a simple word or series of numbers "
2605
+ "as their password. Such a predictable and simple password would take a "
2606
+ "competent hacker merely minutes to guess your password by using a simple "
2607
+ "script which cycles through the easy and most common combinations."
2608
+ msgstr ""
2609
+
2610
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:207
2611
+ msgid ""
2612
+ "The longer and more complex your password is the harder it is for hackers to "
2613
+ "\"crack\" because more complex passwords require much greater computing "
2614
+ "power and time."
2615
+ msgstr ""
2616
+
2617
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:208
2618
+ msgid ""
2619
+ "This section contains a useful password strength tool which you can use to "
2620
+ "check whether your password is sufficiently strong enough."
2621
+ msgstr ""
2622
+
2623
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:213
2624
+ msgid "Password Strength Tool"
2625
+ msgstr ""
2626
+
2627
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:218
2628
+ msgid "Start typing a password."
2629
+ msgstr ""
2630
+
2631
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:221
2632
+ msgid "It would take a desktop PC approximately"
2633
+ msgstr ""
2634
+
2635
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:222
2636
+ msgid "1 sec"
2637
+ msgstr ""
2638
+
2639
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:222
2640
+ msgid "to crack your password!"
2641
+ msgstr ""
2642
+
2643
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:227
2644
+ msgid "Password Strength"
2645
+ msgstr ""
2646
+
2647
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:243
2648
+ msgid "Nonce check failed on admin username change operation!"
2649
+ msgstr ""
2650
+
2651
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:250
2652
+ msgid "Username "
2653
+ msgstr ""
2654
+
2655
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:250
2656
+ msgid " already exists. Please enter another value. "
2657
+ msgstr ""
2658
+
2659
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:266
2660
+ msgid "The database update operation of the user account failed!"
2661
+ msgstr ""
2662
+
2663
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:293
2664
+ msgid "You entered an invalid username. Please enter another value. "
2665
+ msgstr ""
2666
+
2667
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:297
2668
+ msgid "Please enter a value for your username. "
2669
+ msgstr ""
2670
+
2671
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:304
2672
+ msgid "Username Successfully Changed!"
2673
+ msgstr ""
2674
+
2675
+ #: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:324
2676
+ msgid "Account Login Name"
2677
+ msgstr ""
2678
+
2679
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:28
2680
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:41
2681
+ msgid "Login Captcha"
2682
+ msgstr ""
2683
+
2684
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:29
2685
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:407
2686
+ msgid "Login Whitelist"
2687
+ msgstr ""
2688
+
2689
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:30
2690
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:519
2691
+ msgid "Failed Login Records"
2692
+ msgstr ""
2693
+
2694
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:31
2695
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:47
2696
+ msgid "Force Logout"
2697
+ msgstr ""
2698
+
2699
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:32
2700
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:653
2701
+ msgid "Account Activity Logs"
2702
+ msgstr ""
2703
+
2704
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:100
2705
+ msgid ""
2706
+ "You entered a non numeric value for the max login attempts field. It has "
2707
+ "been set to the default value."
2708
+ msgstr ""
2709
+
2710
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:107
2711
+ msgid ""
2712
+ "You entered a non numeric value for the login retry time period field. It "
2713
+ "has been set to the default value."
2714
+ msgstr ""
2715
+
2716
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:114
2717
+ msgid ""
2718
+ "You entered a non numeric value for the lockout time length field. It has "
2719
+ "been set to the default value."
2720
+ msgstr ""
2721
+
2722
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:159
2723
+ msgid "Login Lockdown Configuration"
2724
+ msgstr ""
2725
+
2726
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:163
2727
+ msgid "One of the ways hackers try to compromise sites is via a "
2728
+ msgstr ""
2729
+
2730
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:163
2731
+ msgid "Brute Force Login Attack"
2732
+ msgstr ""
2733
+
2734
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:164
2735
+ msgid ""
2736
+ "This is where attackers use repeated login attempts until they guess the "
2737
+ "password."
2738
+ msgstr ""
2739
+
2740
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:165
2741
+ msgid ""
2742
+ "Apart from choosing strong passwords, monitoring and blocking IP addresses "
2743
+ "which are involved in repeated login failures in a short period of time is a "
2744
+ "very effective way to stop these types of attacks."
2745
+ msgstr ""
2746
+
2747
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:166
2748
+ #, php-format
2749
+ msgid ""
2750
+ "You may also want to checkout our %s feature for another secure way to "
2751
+ "protect against these types of attacks."
2752
+ msgstr ""
2753
+
2754
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:171
2755
+ msgid "Login Lockdown Options"
2756
+ msgstr ""
2757
+
2758
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:183
2759
+ msgid "Enable Login Lockdown Feature"
2760
+ msgstr ""
2761
+
2762
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:186
2763
+ msgid ""
2764
+ "Check this if you want to enable the login lockdown feature and apply the "
2765
+ "settings below"
2766
+ msgstr ""
2767
+
2768
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:190
2769
+ msgid "Max Login Attempts"
2770
+ msgstr ""
2771
+
2772
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:192
2773
+ msgid ""
2774
+ "Set the value for the maximum login retries before IP address is locked out"
2775
+ msgstr ""
2776
+
2777
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:196
2778
+ msgid "Login Retry Time Period (min)"
2779
+ msgstr ""
2780
+
2781
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:198
2782
+ msgid ""
2783
+ "If the maximum number of failed login attempts for a particular IP address "
2784
+ "occur within this time period the plugin will lock out that address"
2785
+ msgstr ""
2786
+
2787
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:202
2788
+ msgid "Time Length of Lockout (min)"
2789
+ msgstr ""
2790
+
2791
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:204
2792
+ msgid ""
2793
+ "Set the length of time for which a particular IP address will be prevented "
2794
+ "from logging in"
2795
+ msgstr ""
2796
+
2797
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:208
2798
+ msgid "Display Generic Error Message"
2799
+ msgstr ""
2800
+
2801
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:211
2802
+ msgid ""
2803
+ "Check this if you want to show a generic error message when a login attempt "
2804
+ "fails"
2805
+ msgstr ""
2806
+
2807
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:215
2808
+ msgid "Instantly Lockout Invalid Usernames"
2809
+ msgstr ""
2810
+
2811
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:218
2812
+ msgid ""
2813
+ "Check this if you want to instantly lockout login attempts with usernames "
2814
+ "which do not exist on your system"
2815
+ msgstr ""
2816
+
2817
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:223
2818
+ msgid "Notify By Email"
2819
+ msgstr ""
2820
+
2821
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:226
2822
+ msgid ""
2823
+ "Check this if you want to receive an email when someone has been locked out "
2824
+ "due to maximum failed login attempts"
2825
+ msgstr ""
2826
+
2827
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:236
2828
+ msgid "Currently Locked Out IP Address Ranges"
2829
+ msgstr ""
2830
+
2831
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:290
2832
+ msgid ""
2833
+ "This feature allows you to add a captcha form on the WordPress login page."
2834
+ msgstr ""
2835
+
2836
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:291
2837
+ msgid ""
2838
+ "Users who attempt to login will also need to enter the answer to a simple "
2839
+ "mathematical question - if they enter the wrong answer, the plugin will not "
2840
+ "allow them login even if they entered the correct username and password."
2841
+ msgstr ""
2842
+
2843
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:292
2844
+ msgid ""
2845
+ "Therefore, adding a captcha form on the login page is another effective yet "
2846
+ "simple \"Brute Force\" prevention technique."
2847
+ msgstr ""
2848
+
2849
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:298
2850
+ msgid "Login Form Captcha Settings"
2851
+ msgstr ""
2852
+
2853
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:309
2854
+ msgid "Enable Captcha On Login Page"
2855
+ msgstr ""
2856
+
2857
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:312
2858
+ msgid "Check this if you want to insert a captcha form on the login page"
2859
+ msgstr ""
2860
+
2861
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:318
2862
+ msgid "Lost Password Form Captcha Settings"
2863
+ msgstr ""
2864
+
2865
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:328
2866
+ msgid "Enable Captcha On Lost Password Page"
2867
+ msgstr ""
2868
+
2869
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:331
2870
+ msgid ""
2871
+ "Check this if you want to insert a captcha form on the lost password page"
2872
+ msgstr ""
2873
+
2874
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:353
2875
+ msgid "Nonce check failed for save whitelist settings!"
2876
+ msgstr ""
2877
+
2878
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:410
2879
+ msgid ""
2880
+ "The All In One WP Security Whitelist feature gives you the option of only "
2881
+ "allowing certain IP addresses or ranges to have access to your WordPress "
2882
+ "login page."
2883
+ msgstr ""
2884
+
2885
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:411
2886
+ msgid ""
2887
+ "This feature will deny login access for all IP addresses which are not in "
2888
+ "your whitelist as configured in the settings below."
2889
+ msgstr ""
2890
+
2891
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:412
2892
+ msgid ""
2893
+ "The plugin achieves this by writing the appropriate directives to your ."
2894
+ "htaccess file."
2895
+ msgstr ""
2896
+
2897
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:413
2898
+ msgid ""
2899
+ "By allowing/blocking IP addresses via the .htaccess file your are using the "
2900
+ "most secure first line of defence because login access will only be granted "
2901
+ "to whitelisted IP addresses and other addresses will be blocked as soon as "
2902
+ "they try to access your login page."
2903
+ msgstr ""
2904
+
2905
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:420
2906
+ #, php-format
2907
+ msgid ""
2908
+ "Attention: If in addition to enabling the white list feature, you also have "
2909
+ "the %s feature enabled, <strong>you will still need to use your secret word "
2910
+ "in the URL when trying to access your WordPress login page</strong>."
2911
+ msgstr ""
2912
+
2913
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:421
2914
+ msgid ""
2915
+ "These features are NOT functionally related. Having both of them enabled on "
2916
+ "your site means you are creating 2 layers of security."
2917
+ msgstr ""
2918
+
2919
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:426
2920
+ msgid "Login IP Whitelist Settings"
2921
+ msgstr ""
2922
+
2923
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:437
2924
+ msgid "Enable IP Whitelisting"
2925
+ msgstr ""
2926
+
2927
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:440
2928
+ msgid ""
2929
+ "Check this if you want to enable the whitelisting of selected IP addresses "
2930
+ "specified in the settings below"
2931
+ msgstr ""
2932
+
2933
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:444
2934
+ msgid "Your Current IP Address"
2935
+ msgstr ""
2936
+
2937
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:447
2938
+ msgid ""
2939
+ "You can copy and paste this address in the text box below if you want to "
2940
+ "include it in your login whitelist."
2941
+ msgstr ""
2942
+
2943
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:451
2944
+ msgid "Enter Whitelisted IP Addresses:"
2945
+ msgstr ""
2946
+
2947
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:455
2948
+ msgid ""
2949
+ "Enter one or more IP addresses or IP ranges you wish to include in your "
2950
+ "whitelist. Only the addresses specified here will have access to the "
2951
+ "WordPress login page."
2952
+ msgstr ""
2953
+
2954
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:485
2955
+ msgid "Nonce check failed for delete all failed login records operation!"
2956
+ msgstr ""
2957
+
2958
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:494
2959
+ msgid "User Login Feature - Delete all failed login records operation failed!"
2960
+ msgstr ""
2961
+
2962
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:498
2963
+ msgid "All records from the Failed Logins table were deleted successfully!"
2964
+ msgstr ""
2965
+
2966
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:513
2967
+ msgid "This tab displays the failed login attempts for your site."
2968
+ msgstr ""
2969
+
2970
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:514
2971
+ msgid ""
2972
+ "The information below can be handy if you need to do security investigations "
2973
+ "because it will show you the IP range, username and ID (if applicable) and "
2974
+ "the time/date of the failed login attempt."
2975
+ msgstr ""
2976
+
2977
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:535
2978
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:544
2979
+ msgid "Delete All Failed Login Records"
2980
+ msgstr ""
2981
+
2982
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:541
2983
+ msgid ""
2984
+ "Click this button if you wish to delete all failed login records in one go."
2985
+ msgstr ""
2986
+
2987
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:569
2988
+ msgid ""
2989
+ "You entered a non numeric value for the logout time period field. It has "
2990
+ "been set to the default value."
2991
+ msgstr ""
2992
+
2993
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:597
2994
+ msgid ""
2995
+ "Setting an expiry period for your WP administration session is a simple way "
2996
+ "to protect against unauthorized access to your site from your computer."
2997
+ msgstr ""
2998
+
2999
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:598
3000
+ msgid ""
3001
+ "This feature allows you to specify a time period in minutes after which the "
3002
+ "admin session will expire and the user will be forced to log back in."
3003
+ msgstr ""
3004
+
3005
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:603
3006
+ msgid "Force User Logout Options"
3007
+ msgstr ""
3008
+
3009
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:615
3010
+ msgid "Enable Force WP User Logout"
3011
+ msgstr ""
3012
+
3013
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:618
3014
+ msgid ""
3015
+ "Check this if you want to force a wp user to be logged out after a "
3016
+ "configured amount of time"
3017
+ msgstr ""
3018
+
3019
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:622
3020
+ msgid "Logout the WP User After XX Minutes"
3021
+ msgstr ""
3022
+
3023
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:624
3024
+ msgid ""
3025
+ "(Minutes) The user will be forced to log back in after this time period has "
3026
+ "elapased."
3027
+ msgstr ""
3028
+
3029
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:647
3030
+ msgid ""
3031
+ "This tab displays the login activity for WordPress admin accounts registered "
3032
+ "with your site."
3033
+ msgstr ""
3034
+
3035
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:648
3036
+ msgid ""
3037
+ "The information below can be handy if you need to do security investigations "
3038
+ "because it will show you the last 50 recent login events by username, IP "
3039
+ "address and time/date."
3040
+ msgstr ""
3041
+
3042
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:685
3043
+ msgid "Nonce check failed for users logged in list!"
3044
+ msgstr ""
3045
+
3046
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:698
3047
+ msgid "Refresh Logged In User Data"
3048
+ msgstr ""
3049
+
3050
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:702
3051
+ msgid "Refresh Data"
3052
+ msgstr ""
3053
+
3054
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:708
3055
+ msgid "This tab displays all users who are currently logged into your site."
3056
+ msgstr ""
3057
+
3058
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:709
3059
+ msgid ""
3060
+ "If you suspect there is a user or users who are logged in which should not "
3061
+ "be, you can block them by inspecting the IP addresses from the data below "
3062
+ "and adding them to your blacklist."
3063
+ msgstr ""
3064
+
3065
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:714
3066
+ msgid "Currently Logged In Users"
3067
+ msgstr ""
3068
+
3069
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:779
3070
+ msgid "The selected records were deleted successfully!"
3071
+ msgstr ""
3072
+
3073
+ #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:788
3074
+ msgid "The selected record was deleted successfully!"
3075
+ msgstr ""
3076
+
3077
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:23
3078
+ msgid "Manual Approval"
3079
+ msgstr ""
3080
+
3081
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:24
3082
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:53
3083
+ msgid "Registration Captcha"
3084
+ msgstr ""
3085
+
3086
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:112
3087
+ msgid "User Registration Settings"
3088
+ msgstr ""
3089
+
3090
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:116
3091
+ msgid "Manually Approve New Registrations"
3092
+ msgstr ""
3093
+
3094
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:120
3095
+ msgid ""
3096
+ "If your site allows people to create their own accounts via the WordPress "
3097
+ "registration form, then you can minimize SPAM or bogus registrations by "
3098
+ "manually approving each registration."
3099
+ msgstr ""
3100
+
3101
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:121
3102
+ msgid ""
3103
+ "This feature will automatically set a newly registered account to \"pending"
3104
+ "\" until the administrator activates it. Therefore undesirable registrants "
3105
+ "will be unable to log in without your express approval."
3106
+ msgstr ""
3107
+
3108
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:122
3109
+ msgid ""
3110
+ "You can view all accounts which have been newly registered via the handy "
3111
+ "table below and you can also perform bulk activation/deactivation/deletion "
3112
+ "tasks on each account."
3113
+ msgstr ""
3114
+
3115
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:138
3116
+ msgid "Enable manual approval of new registrations"
3117
+ msgstr ""
3118
+
3119
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:141
3120
+ msgid ""
3121
+ "Check this if you want to automatically disable all newly registered "
3122
+ "accounts so that you can approve them manually."
3123
+ msgstr ""
3124
+
3125
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:150
3126
+ msgid "Approve Registered Users"
3127
+ msgstr ""
3128
+
3129
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:195
3130
+ msgid ""
3131
+ "This feature allows you to add a captcha form on the WordPress registration "
3132
+ "page."
3133
+ msgstr ""
3134
+
3135
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:196
3136
+ msgid ""
3137
+ "Users who attempt to register will also need to enter the answer to a simple "
3138
+ "mathematical question - if they enter the wrong answer, the plugin will not "
3139
+ "allow them to register."
3140
+ msgstr ""
3141
+
3142
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:197
3143
+ msgid ""
3144
+ "Therefore, adding a captcha form on the registration page is another "
3145
+ "effective yet simple SPAM registration prevention technique."
3146
+ msgstr ""
3147
+
3148
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:202
3149
+ msgid "Registration Page Captcha Settings"
3150
+ msgstr ""
3151
+
3152
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:214
3153
+ msgid "Enable Captcha On Registration Page"
3154
+ msgstr ""
3155
+
3156
+ #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:217
3157
+ msgid ""
3158
+ "Check this if you want to insert a captcha form on the WordPress user "
3159
+ "registration page (if you allow user registration)."
3160
+ msgstr ""
3161
+
3162
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:22
3163
+ msgid "WhoIS Lookup"
3164
+ msgstr ""
3165
+
3166
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:74
3167
+ msgid "WHOIS Lookup Information"
3168
+ msgstr ""
3169
+
3170
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:77
3171
+ msgid ""
3172
+ "This feature allows you to look up more detailed information about an IP "
3173
+ "address or domain name by querying the WHOIS API."
3174
+ msgstr ""
3175
+
3176
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:83
3177
+ msgid "Perform a WHOIS Lookup for an IP or Domain Name"
3178
+ msgstr ""
3179
+
3180
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:89
3181
+ msgid "Enter IP Address or Domain Name"
3182
+ msgstr ""
3183
+
3184
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:91
3185
+ msgid ""
3186
+ "Enter an IP address or domain name. Example: 111.11.12.13 OR some-domain-"
3187
+ "name.com"
3188
+ msgstr ""
3189
+
3190
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:95
3191
+ msgid "Perform IP or Domain Lookup"
3192
+ msgstr ""
3193
+
3194
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:115
3195
+ msgid "WHOIS lookup successfully completed. Please see the results below:"
3196
+ msgstr ""
3197
+
3198
+ #: all-in-one-wp-security/admin/wp-security-whois-menu.php:127
3199
+ msgid ""
3200
+ "You have entered an incorrectly formatted IP address or domain name. Please "
3201
+ "try again."
3202
+ msgstr ""
3203
+
3204
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:178
3205
+ msgid "No items found."
3206
+ msgstr ""
3207
+
3208
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:281
3209
+ msgid "Bulk Actions"
3210
+ msgstr ""
3211
+
3212
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:291
3213
+ msgid "Apply"
3214
+ msgstr ""
3215
+
3216
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:365
3217
+ msgid "Show all dates"
3218
+ msgstr ""
3219
+
3220
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:378
3221
+ #, php-format
3222
+ msgid "%1$s %2$d"
3223
+ msgstr ""
3224
+
3225
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:394
3226
+ msgid "List View"
3227
+ msgstr ""
3228
+
3229
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:395
3230
+ msgid "Excerpt View"
3231
+ msgstr ""
3232
+
3233
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:421
3234
+ #, php-format
3235
+ msgid "%s pending"
3236
+ msgstr ""
3237
+
3238
+ #: all-in-one-wp-security/admin/general/wp-security-list-table.php:653
3239
+ msgid "Select All"
3240
+ msgstr ""
3241
+
3242
+ #: all-in-one-wp-security/classes/wp-security-backup.php:177
3243
+ msgid "All In One WP Security - Site Database Backup"
3244
+ msgstr ""
3245
+
3246
+ #: all-in-one-wp-security/classes/wp-security-backup.php:179
3247
+ msgid "Attached is your latest DB backup file for site URL"
3248
+ msgstr ""
3249
+
3250
+ #: all-in-one-wp-security/classes/wp-security-backup.php:179
3251
+ msgid " generated on"
3252
+ msgstr ""
3253
+
3254
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:12
3255
+ msgid "Please enter an answer in digits:"
3256
+ msgstr "Kérjük, adja meg a választ számjegyekkel:"
3257
+
3258
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:91
3259
+ msgid "one"
3260
+ msgstr "egy"
3261
+
3262
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:92
3263
+ msgid "two"
3264
+ msgstr "kettő"
3265
+
3266
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:93
3267
+ msgid "three"
3268
+ msgstr "három"
3269
+
3270
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:94
3271
+ msgid "four"
3272
+ msgstr "négy"
3273
+
3274
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:95
3275
+ msgid "five"
3276
+ msgstr "öt"
3277
+
3278
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:96
3279
+ msgid "six"
3280
+ msgstr "hat"
3281
+
3282
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:97
3283
+ msgid "seven"
3284
+ msgstr "hét"
3285
+
3286
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:98
3287
+ msgid "eight"
3288
+ msgstr "nyolc"
3289
+
3290
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:99
3291
+ msgid "nine"
3292
+ msgstr "kilenc"
3293
+
3294
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:100
3295
+ msgid "ten"
3296
+ msgstr "tíz"
3297
+
3298
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:101
3299
+ msgid "eleven"
3300
+ msgstr "tizenegy"
3301
+
3302
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:102
3303
+ msgid "twelve"
3304
+ msgstr "tizenkettő"
3305
+
3306
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:103
3307
+ msgid "thirteen"
3308
+ msgstr "tizenhárom"
3309
+
3310
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:104
3311
+ msgid "fourteen"
3312
+ msgstr "tizennégy"
3313
+
3314
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:105
3315
+ msgid "fifteen"
3316
+ msgstr "tizenöt"
3317
+
3318
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:106
3319
+ msgid "sixteen"
3320
+ msgstr "tizenhat"
3321
+
3322
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:107
3323
+ msgid "seventeen"
3324
+ msgstr "tizenhét"
3325
+
3326
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:108
3327
+ msgid "eighteen"
3328
+ msgstr "tizennyolc"
3329
+
3330
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:109
3331
+ msgid "nineteen"
3332
+ msgstr "tizenkilenc"
3333
+
3334
+ #: all-in-one-wp-security/classes/wp-security-captcha.php:110
3335
+ msgid "twenty"
3336
+ msgstr "húsz"
3337
+
3338
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:58
3339
+ msgid "All In One WP Security - File change detected!"
3340
+ msgstr ""
3341
+
3342
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:60
3343
+ msgid "A file change was detected on your system for site URL"
3344
+ msgstr ""
3345
+
3346
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:60
3347
+ msgid ". Scan was generated on"
3348
+ msgstr ""
3349
+
3350
+ #: all-in-one-wp-security/classes/wp-security-file-scan.php:61
3351
+ msgid "Login to your site to view the scan details."
3352
+ msgstr ""
3353
+
3354
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:158
3355
+ msgid "Please enter an answer in the CAPTCHA field."
3356
+ msgstr "Kérjük adja meg a választ a CAPTCHA mezőben."
3357
+
3358
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:168
3359
+ msgid ""
3360
+ "Error: You entered an incorrect CAPTCHA answer. Please go back and try again."
3361
+ msgstr ""
3362
+ "Hiba: Helytelen CAPTCHA választ adott meg. Kérjük menjen vissza és próbálja "
3363
+ "meg újból."
3364
+
3365
+ #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:196
3366
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:63
3367
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:66
3368
+ #: all-in-one-wp-security/classes/wp-security-user-registration.php:59
3369
+ msgid "<strong>ERROR</strong>: Your answer was incorrect - please try again."
3370
+ msgstr ""
3371
+ "<strong>HIBA</strong>: A válasz helytelen - kérjük, próbálja meg újból."
3372
+
3373
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:39
3374
+ msgid ""
3375
+ "<strong>ERROR</strong>: Login failed because your IP address has been "
3376
+ "blocked.\n"
3377
+ " Please contact the administrator."
3378
+ msgstr ""
3379
+ "<strong>HIBA</strong>: A bejelentkezés sikertelen, mert az IP címe blokkolva "
3380
+ "van.\n"
3381
+ " Kérjük lépjen kapcsolatba az "
3382
+ "adminisztrátorral."
3383
+
3384
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:76
3385
+ msgid "<strong>ERROR</strong>: The username field is empty."
3386
+ msgstr "<strong>HIBA</strong>: A felhasználó mező üres."
3387
+
3388
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:80
3389
+ msgid "<strong>ERROR</strong>: The password field is empty."
3390
+ msgstr "<strong>HIBA</strong>: A jelszó mező üres."
3391
+
3392
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:100
3393
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:126
3394
+ msgid "<strong>ERROR</strong>: Invalid login credentials."
3395
+ msgstr "<strong>HIBA</strong>: Érvénytelen bejelentkezési adatok."
3396
+
3397
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:103
3398
+ msgid "<strong>ERROR</strong>: Invalid username."
3399
+ msgstr "<strong>HIBA</strong>: Érvénytelen felhasználónév."
3400
+
3401
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:129
3402
+ #, php-format
3403
+ msgid ""
3404
+ "<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password "
3405
+ "Lost and Found\">Lost your password</a>?"
3406
+ msgstr ""
3407
+ "<strong>HIBA</strong>: Érvénytelen jelszó. <a href=\"%s\" title=\"Password "
3408
+ "Lost and Found\">Elfelejtett jelszó</a>?"
3409
+
3410
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:140
3411
+ msgid ""
3412
+ "<strong>ACCOUNT PENDING</strong>: Your account is currently not active. An "
3413
+ "administrator needs to activate your account before you can login."
3414
+ msgstr ""
3415
+ "<strong>FIÓK FÜGGŐBEN</strong>: A fiókja jelenleg nem aktív. Egy "
3416
+ "adminisztrátornak kell aktiválnia, mielőtt belépne."
3417
+
3418
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:263
3419
+ msgid "Site Lockout Notification"
3420
+ msgstr ""
3421
+
3422
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:264
3423
+ msgid ""
3424
+ "A lockdown event has occurred due to too many failed login attempts or "
3425
+ "invalid username:"
3426
+ msgstr ""
3427
+
3428
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:265
3429
+ msgid "Username: "
3430
+ msgstr ""
3431
+
3432
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:266
3433
+ msgid "IP Address: "
3434
+ msgstr ""
3435
+
3436
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:267
3437
+ msgid "IP Range: "
3438
+ msgstr ""
3439
+
3440
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:268
3441
+ msgid ""
3442
+ "Log into your site's WordPress administration panel to see the duration of "
3443
+ "the lockout or to unlock the user."
3444
+ msgstr ""
3445
+
3446
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:425
3447
+ #, php-format
3448
+ msgid ""
3449
+ "Your session has expired because it has been over %d minutes since your last "
3450
+ "login."
3451
+ msgstr ""
3452
+
3453
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:426
3454
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:430
3455
+ msgid "Please log back in to continue."
3456
+ msgstr ""
3457
+
3458
+ #: all-in-one-wp-security/classes/wp-security-user-login.php:429
3459
+ msgid "You were logged out because you just changed the \"admin\" username."
3460
+ msgstr ""
3461
+
3462
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:79
3463
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:98
3464
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:113
3465
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:128
3466
+ msgid " is not a valid ip address format."
3467
+ msgstr ""
3468
+
3469
+ #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:136
3470
+ msgid "You cannot ban your own IP address: "
3471
+ msgstr ""
3472
+
3473
+ #: all-in-one-wp-security/classes/wp-security-utility.php:151
3474
+ msgid ""
3475
+ "This feature can only be configured by the \"superadmin\" on the main site."
3476
+ msgstr ""
3477
+
3478
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:29
3479
+ msgid "Remove WP Generatore Meta Tag"
3480
+ msgstr ""
3481
+
3482
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:35
3483
+ msgid "Change Display Name"
3484
+ msgstr ""
3485
+
3486
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:43
3487
+ msgid "Lost Password Captcha"
3488
+ msgstr ""
3489
+
3490
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:45
3491
+ msgid "Login IP Whitelisting"
3492
+ msgstr ""
3493
+
3494
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:51
3495
+ msgid "Registration Approval"
3496
+ msgstr ""
3497
+
3498
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:67
3499
+ msgid "WordPress Files Access"
3500
+ msgstr ""
3501
+
3502
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:71
3503
+ msgid "IP and User Agent Blacklisting"
3504
+ msgstr ""
3505
+
3506
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:75
3507
+ msgid "Enable Basic Firewall"
3508
+ msgstr ""
3509
+
3510
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:76
3511
+ msgid "Enable Pingback Vulnerability Protection"
3512
+ msgstr ""
3513
+
3514
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:82
3515
+ msgid "Forbid Proxy Comments"
3516
+ msgstr ""
3517
+
3518
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:83
3519
+ msgid "Deny Bad Queries"
3520
+ msgstr ""
3521
+
3522
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:85
3523
+ msgid "5G Blacklist"
3524
+ msgstr ""
3525
+
3526
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:88
3527
+ msgid "Block Spambots"
3528
+ msgstr ""
3529
+
3530
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:90
3531
+ msgid "Comment Captcha"
3532
+ msgstr ""
3533
+
3534
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:28
3535
+ msgid "Basic"
3536
+ msgstr ""
3537
+
3538
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:31
3539
+ msgid "Intermediate"
3540
+ msgstr ""
3541
+
3542
+ #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:34
3543
+ msgid "Advanced"
3544
+ msgstr ""
languages/aiowpsecurity-it_IT.mo ADDED
Binary file
languages/aiowpsecurity-it_IT.po ADDED
@@ -0,0 +1,6216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: All In One WP Security vv3.7.4\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-12-03 12:53+1000\n"
6
+ "PO-Revision-Date: 2014-06-01 11:04+0100\n"
7
+ "Last-Translator: Marco <marco.gmetti@alice.it>\n"
8
+ "Language-Team: Marco Guglielmetti <mg@marcoguglielmetti.it>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: Poedit 1.6.5\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: .\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "Language: it_IT\n"
20
+ "X-Poedit-SearchPath-0: ..\n"
21
+
22
+ # @ aiowpsecurity
23
+ #: admin/wp-security-admin-init.php:158
24
+ msgid "WP Security"
25
+ msgstr "Sicurezza WP"
26
+
27
+ # @ aiowpsecurity
28
+ #: admin/wp-security-admin-init.php:159
29
+ #: admin/wp-security-dashboard-menu.php:23
30
+ msgid "Dashboard"
31
+ msgstr "Bacheca"
32
+
33
+ # @ aiowpsecurity
34
+ #: admin/wp-security-admin-init.php:160
35
+ msgid "Settings"
36
+ msgstr "Impostazioni"
37
+
38
+ # @ aiowpsecurity
39
+ #: admin/wp-security-admin-init.php:161
40
+ msgid "User Accounts"
41
+ msgstr "Account Utente"
42
+
43
+ # @ aiowpsecurity
44
+ #: admin/wp-security-admin-init.php:162
45
+ msgid "User Login"
46
+ msgstr "Login Utente"
47
+
48
+ # @ aiowpsecurity
49
+ #: admin/wp-security-admin-init.php:163
50
+ msgid "User Registration"
51
+ msgstr "Registrazione Utenti"
52
+
53
+ # @ aiowpsecurity
54
+ #: admin/wp-security-admin-init.php:164
55
+ msgid "Database Security"
56
+ msgstr "Sicurezza Database"
57
+
58
+ # @ aiowpsecurity
59
+ #: admin/wp-security-admin-init.php:168
60
+ msgid "Filesystem Security"
61
+ msgstr "Sicurezza File Sistema"
62
+
63
+ # @ aiowpsecurity
64
+ #: admin/wp-security-admin-init.php:170
65
+ msgid "WHOIS Lookup"
66
+ msgstr "Ricerca WHOIS"
67
+
68
+ # @ aiowpsecurity
69
+ #: admin/wp-security-admin-init.php:174
70
+ msgid "Blacklist Manager"
71
+ msgstr "Gestione Blacklist"
72
+
73
+ # @ aiowpsecurity
74
+ #: admin/wp-security-admin-init.php:179
75
+ msgid "Firewall"
76
+ msgstr "Firewall"
77
+
78
+ # @ aiowpsecurity
79
+ #: admin/wp-security-admin-init.php:186
80
+ msgid "SPAM Prevention"
81
+ msgstr "Prevenzione SPAM"
82
+
83
+ # @ aiowpsecurity
84
+ #: admin/wp-security-admin-init.php:190
85
+ msgid "Scanner"
86
+ msgstr "Scanner"
87
+
88
+ # @ aiowpsecurity
89
+ #: admin/wp-security-admin-init.php:192
90
+ msgid "Maintenance"
91
+ msgstr "Manutenzione"
92
+
93
+ # @ aiowpsecurity
94
+ #: admin/wp-security-admin-menu.php:43
95
+ msgid "Settings successfully updated."
96
+ msgstr "Le Impostazioni sono state salvate con successo"
97
+
98
+ # @ aiowpsecurity
99
+ #: admin/wp-security-admin-menu.php:50
100
+ msgid "The selected record(s) deleted successfully!"
101
+ msgstr "Record selezionato (i) cancellato con successo!"
102
+
103
+ # @ aiowpsecurity
104
+ #: admin/wp-security-blacklist-menu.php:22
105
+ msgid "Ban Users"
106
+ msgstr "Utenti Bannati"
107
+
108
+ # @ aiowpsecurity
109
+ #: admin/wp-security-blacklist-menu.php:80
110
+ msgid "Nonce check failed for save blacklist settings!"
111
+ msgstr "Salvataggio impostazioni blacklist fallito!"
112
+
113
+ # @ aiowpsecurity
114
+ #: admin/wp-security-blacklist-menu.php:132
115
+ #: admin/wp-security-brute-force-menu.php:608
116
+ #: admin/wp-security-list-comment-spammer-ip.php:147
117
+ msgid ""
118
+ "The plugin was unable to write to the .htaccess file. Please edit file "
119
+ "manually."
120
+ msgstr ""
121
+ "Il plugin non è stato in grado di scrivere nel file .htaccess. Si prega di "
122
+ "modificare il file manualmente."
123
+
124
+ # @ aiowpsecurity
125
+ #: admin/wp-security-blacklist-menu.php:139
126
+ msgid "Ban IPs or User Agents"
127
+ msgstr "IP o User Agent Bannati"
128
+
129
+ # @ aiowpsecurity
130
+ #: admin/wp-security-blacklist-menu.php:142
131
+ msgid ""
132
+ "The All In One WP Security Blacklist feature gives you the option of banning "
133
+ "certain host IP addresses or ranges and also user agents."
134
+ msgstr ""
135
+ "L'All In One caratteristica Blacklist WP Security offre la possibilità di "
136
+ "vietare determinati indirizzi IP o intervalli di accesso e anche user agent."
137
+
138
+ # @ aiowpsecurity
139
+ #: admin/wp-security-blacklist-menu.php:143
140
+ msgid ""
141
+ "This feature will deny total site access for users which have IP addresses "
142
+ "or user agents matching those which you have configured in the settings "
143
+ "below."
144
+ msgstr ""
145
+ "Questa funzione potrà negare l'accesso totale del sito per gli utenti che "
146
+ "dispongono di indirizzi IP o gli agenti utente che corrispondono a quelli "
147
+ "che si è configurato nelle impostazioni di seguito."
148
+
149
+ # @ aiowpsecurity
150
+ #: admin/wp-security-blacklist-menu.php:144
151
+ msgid ""
152
+ "The plugin achieves this by making appropriate modifications to your ."
153
+ "htaccess file."
154
+ msgstr ""
155
+ "Il plugin realizza questo, facendo le opportune modifiche al file .htaccess."
156
+
157
+ # @ aiowpsecurity
158
+ #: admin/wp-security-blacklist-menu.php:145
159
+ msgid ""
160
+ "By blocking people via the .htaccess file your are using the most secure "
161
+ "first line of defence which denies all access to blacklisted visitors as "
162
+ "soon as they hit your hosting server."
163
+ msgstr ""
164
+ "Bloccando le persone tramite il file .htaccess si sta usando la prima linea "
165
+ "di difesa più sicura che nega tutti gli accessi ai visitatori nella lista "
166
+ "nera non appena provano a collegarsi al vostro server di hosting."
167
+
168
+ # @ aiowpsecurity
169
+ #: admin/wp-security-blacklist-menu.php:151
170
+ msgid "IP Hosts and User Agent Blacklist Settings"
171
+ msgstr "Impostazioni Blacklist IP Host e User Agent"
172
+
173
+ # @ aiowpsecurity
174
+ #: admin/wp-security-blacklist-menu.php:162
175
+ msgid "Enable IP or User Agent Blacklisting"
176
+ msgstr "Attiva IP o User Agent Blacklist"
177
+
178
+ # @ aiowpsecurity
179
+ #: admin/wp-security-blacklist-menu.php:165
180
+ msgid ""
181
+ "Check this if you want to enable the banning (or blacklisting) of selected "
182
+ "IP addresses and/or user agents specified in the settings below"
183
+ msgstr ""
184
+ "Selezionare questa se si desidera attivare la messa al bando (o lista nera) "
185
+ "di indirizzi IP selezionati e / o user agents specificati nelle impostazioni "
186
+ "di seguito"
187
+
188
+ # @ aiowpsecurity
189
+ #: admin/wp-security-blacklist-menu.php:169
190
+ msgid "Enter IP Addresses:"
191
+ msgstr "Inserisci Indirizzo IP:"
192
+
193
+ # @ aiowpsecurity
194
+ #: admin/wp-security-blacklist-menu.php:173
195
+ msgid "Enter one or more IP addresses or IP ranges."
196
+ msgstr "Immettere uno o più indirizzi IP o intervalli IP."
197
+
198
+ # @ aiowpsecurity
199
+ #: admin/wp-security-blacklist-menu.php:174
200
+ #: admin/wp-security-blacklist-menu.php:194
201
+ #: admin/wp-security-brute-force-menu.php:343
202
+ #: admin/wp-security-brute-force-menu.php:377
203
+ #: admin/wp-security-brute-force-menu.php:400
204
+ #: admin/wp-security-brute-force-menu.php:421
205
+ #: admin/wp-security-brute-force-menu.php:664
206
+ #: admin/wp-security-filescan-menu.php:291
207
+ #: admin/wp-security-filescan-menu.php:308
208
+ #: admin/wp-security-firewall-menu.php:165
209
+ #: admin/wp-security-firewall-menu.php:195
210
+ #: admin/wp-security-firewall-menu.php:326
211
+ #: admin/wp-security-firewall-menu.php:356
212
+ #: admin/wp-security-firewall-menu.php:387
213
+ #: admin/wp-security-firewall-menu.php:415
214
+ #: admin/wp-security-firewall-menu.php:444
215
+ #: admin/wp-security-firewall-menu.php:532
216
+ #: admin/wp-security-firewall-menu.php:622
217
+ #: admin/wp-security-firewall-menu.php:824
218
+ #: admin/wp-security-firewall-menu.php:847 admin/wp-security-spam-menu.php:166
219
+ #: admin/wp-security-spam-menu.php:251
220
+ msgid "More Info"
221
+ msgstr "Altre Info"
222
+
223
+ # @ aiowpsecurity
224
+ #: admin/wp-security-blacklist-menu.php:177
225
+ #: admin/wp-security-brute-force-menu.php:667
226
+ msgid "Each IP address must be on a new line."
227
+ msgstr "Ogni indirizzo IP deve essere su una nuova linea."
228
+
229
+ # @ aiowpsecurity
230
+ #: admin/wp-security-blacklist-menu.php:178
231
+ #: admin/wp-security-brute-force-menu.php:668
232
+ msgid ""
233
+ "To specify an IP range use a wildcard \"*\" character. Acceptable ways to "
234
+ "use wildcards is shown in the examples below:"
235
+ msgstr ""
236
+ "Per specificare un intervallo di indirizzi IP utilizzare un carattere jolly/"
237
+ "asterisco \"*\". Il modo corretto per utilizzare i caratteri jolly è "
238
+ "mostrato negli esempi qui sotto:"
239
+
240
+ # @ aiowpsecurity
241
+ #: admin/wp-security-blacklist-menu.php:179
242
+ #: admin/wp-security-brute-force-menu.php:669
243
+ msgid "Example 1: 195.47.89.*"
244
+ msgstr "Esempio 1: 195.47.89.*"
245
+
246
+ # @ aiowpsecurity
247
+ #: admin/wp-security-blacklist-menu.php:180
248
+ #: admin/wp-security-brute-force-menu.php:670
249
+ msgid "Example 2: 195.47.*.*"
250
+ msgstr "Esempio 2: 195.47.*.*"
251
+
252
+ # @ aiowpsecurity
253
+ #: admin/wp-security-blacklist-menu.php:181
254
+ #: admin/wp-security-brute-force-menu.php:671
255
+ msgid "Example 3: 195.*.*.*"
256
+ msgstr "Esempio 3: 195.*.*.*"
257
+
258
+ # @ aiowpsecurity
259
+ #: admin/wp-security-blacklist-menu.php:188
260
+ msgid "Enter User Agents:"
261
+ msgstr "Inserisci User Agents:"
262
+
263
+ # @ aiowpsecurity
264
+ #: admin/wp-security-blacklist-menu.php:193
265
+ msgid "Enter one or more user agent strings."
266
+ msgstr "Inserisci una o più stringhe user agent."
267
+
268
+ # @ aiowpsecurity
269
+ #: admin/wp-security-blacklist-menu.php:197
270
+ msgid "Each user agent string must be on a new line."
271
+ msgstr "Ogni stringa user agent deve essere su una nuova linea."
272
+
273
+ # @ aiowpsecurity
274
+ #: admin/wp-security-blacklist-menu.php:198
275
+ msgid "Example 1 - A single user agent string to block:"
276
+ msgstr "Esempio 1 - Una singola stringa user agent per bloccare:"
277
+
278
+ # @ aiowpsecurity
279
+ #: admin/wp-security-blacklist-menu.php:200
280
+ msgid "Example 2 - A list of more than 1 user agent strings to block"
281
+ msgstr "Esempio 2 - Un elenco di più stringhe di agent per bloccare"
282
+
283
+ # @ aiowpsecurity
284
+ #: admin/wp-security-blacklist-menu.php:208
285
+ #: admin/wp-security-brute-force-menu.php:188
286
+ #: admin/wp-security-brute-force-menu.php:544
287
+ #: admin/wp-security-brute-force-menu.php:678
288
+ #: admin/wp-security-database-menu.php:356
289
+ #: admin/wp-security-filescan-menu.php:329
290
+ #: admin/wp-security-filesystem-menu.php:231
291
+ #: admin/wp-security-firewall-menu.php:700
292
+ #: admin/wp-security-firewall-menu.php:866
293
+ #: admin/wp-security-settings-menu.php:493 admin/wp-security-spam-menu.php:181
294
+ #: admin/wp-security-user-login-menu.php:239
295
+ #: admin/wp-security-user-login-menu.php:407
296
+ #: admin/wp-security-user-registration-menu.php:146
297
+ #: admin/wp-security-user-registration-menu.php:221
298
+ msgid "Save Settings"
299
+ msgstr "Salva Impostazioni"
300
+
301
+ # @ aiowpsecurity
302
+ #: admin/wp-security-dashboard-menu.php:24
303
+ msgid "System Info"
304
+ msgstr "Info Sistema"
305
+
306
+ # @ aiowpsecurity
307
+ #: admin/wp-security-dashboard-menu.php:75
308
+ msgid "For information, updates and documentation, please visit the"
309
+ msgstr ""
310
+ "Per informazioni, aggiornamenti e documentazione, si prega di visitare la"
311
+
312
+ # @ aiowpsecurity
313
+ #: admin/wp-security-dashboard-menu.php:75
314
+ msgid "AIO WP Security & Firewall Plugin"
315
+ msgstr "AIO WP Security & Firewall Plugin"
316
+
317
+ # @ aiowpsecurity
318
+ #: admin/wp-security-dashboard-menu.php:75
319
+ msgid "Page"
320
+ msgstr "Pagina"
321
+
322
+ # @ aiowpsecurity
323
+ #: admin/wp-security-dashboard-menu.php:76
324
+ msgid "Follow us"
325
+ msgstr "Seguici su"
326
+
327
+ # @ aiowpsecurity
328
+ #: admin/wp-security-dashboard-menu.php:92
329
+ msgid "Security Strength Meter"
330
+ msgstr "Indicatore Stato Sicurezza"
331
+
332
+ # @ aiowpsecurity
333
+ #: admin/wp-security-dashboard-menu.php:121
334
+ msgid "Total Achievable Points: "
335
+ msgstr "Totale punti realizzabili:"
336
+
337
+ # @ aiowpsecurity
338
+ #: admin/wp-security-dashboard-menu.php:123
339
+ msgid "Current Score of Your Site: "
340
+ msgstr "Punteggio attuale del tuo sito:"
341
+
342
+ # @ aiowpsecurity
343
+ #: admin/wp-security-dashboard-menu.php:133
344
+ msgid "Security Points Breakdown"
345
+ msgstr "Scomposizione Punti Sicurezza"
346
+
347
+ # @ aiowpsecurity
348
+ #: admin/wp-security-dashboard-menu.php:193
349
+ msgid "Critical Feature Status"
350
+ msgstr "Stato Caratteristiche Critiche"
351
+
352
+ # @ aiowpsecurity
353
+ #: admin/wp-security-dashboard-menu.php:197
354
+ msgid ""
355
+ "Below is the current status of the critical features that you should "
356
+ "activate on your site to achieve a minimum level of recommended security"
357
+ msgstr ""
358
+ "Di seguito è riportato lo stato attuale delle caratteristiche fondamentali "
359
+ "che si dovrebbe attivare sul tuo sito per ottenere un livello minimo di "
360
+ "sicurezza raccomandata"
361
+
362
+ # @ aiowpsecurity
363
+ #: admin/wp-security-dashboard-menu.php:201
364
+ msgid "Admin Username"
365
+ msgstr "Nome Utente Admin"
366
+
367
+ # @ aiowpsecurity
368
+ #: admin/wp-security-dashboard-menu.php:216
369
+ #: admin/wp-security-user-login-menu.php:25
370
+ #: classes/grade-system/wp-security-feature-item-manager.php:42
371
+ msgid "Login Lockdown"
372
+ msgstr "Blocco Login"
373
+
374
+ # @ aiowpsecurity
375
+ #: admin/wp-security-dashboard-menu.php:231
376
+ msgid "File Permission"
377
+ msgstr "Permessi File"
378
+
379
+ # @ aiowpsecurity
380
+ #: admin/wp-security-dashboard-menu.php:246
381
+ msgid "Basic Firewall"
382
+ msgstr "Firewall Base"
383
+
384
+ # @ aiowpsecurity
385
+ #: admin/wp-security-dashboard-menu.php:309
386
+ msgid "Maintenance Mode Status"
387
+ msgstr "Modo Stato Manutenzione"
388
+
389
+ # @ aiowpsecurity
390
+ #: admin/wp-security-dashboard-menu.php:313
391
+ msgid ""
392
+ "Maintenance mode is currently enabled. Remember to turn it off when you are "
393
+ "done"
394
+ msgstr ""
395
+ "Modalità manutenzione è attualmente abilitata. Ricordati di disattivarla "
396
+ "quando hai fatto."
397
+
398
+ # @ aiowpsecurity
399
+ #: admin/wp-security-dashboard-menu.php:316
400
+ msgid "Maintenance mode is currently off."
401
+ msgstr "Modalità Manutenzione è attualmente disattivata"
402
+
403
+ # @ aiowpsecurity
404
+ #: admin/wp-security-dashboard-menu.php:320
405
+ msgid "Maintenance Mode"
406
+ msgstr "Modo Manutenzione"
407
+
408
+ # @ aiowpsecurity
409
+ #: admin/wp-security-dashboard-menu.php:410
410
+ #: admin/wp-security-user-login-menu.php:29
411
+ msgid "Logged In Users"
412
+ msgstr "Utenti attualmente loggati."
413
+
414
+ # @ aiowpsecurity
415
+ #: admin/wp-security-dashboard-menu.php:420
416
+ msgid "Number of users currently logged in site-wide is:"
417
+ msgstr "NIl numero di utenti attualmente collegati a livello di sito è:"
418
+
419
+ # @ aiowpsecurity
420
+ #: admin/wp-security-dashboard-menu.php:421
421
+ #: admin/wp-security-dashboard-menu.php:443
422
+ #: admin/wp-security-dashboard-menu.php:471
423
+ #, php-format
424
+ msgid "Go to the %s menu to see more details"
425
+ msgstr "Vai al menu %s per vedere più dettagli"
426
+
427
+ # @ aiowpsecurity
428
+ #: admin/wp-security-dashboard-menu.php:426
429
+ msgid "There are no other site-wide users currently logged in."
430
+ msgstr "Non ci sono altri utenti a livello di sito attualmente loggati"
431
+
432
+ # @ aiowpsecurity
433
+ #: admin/wp-security-dashboard-menu.php:448
434
+ msgid "There are no other users currently logged in."
435
+ msgstr "Non ci sono altri utenti attualmente loggati."
436
+
437
+ # @ aiowpsecurity
438
+ #: admin/wp-security-dashboard-menu.php:174
439
+ msgid "Spread the Word"
440
+ msgstr "Diffondi la Parola"
441
+
442
+ # @ aiowpsecurity
443
+ #: admin/wp-security-dashboard-menu.php:513
444
+ msgid "Site Info"
445
+ msgstr "Info Sito"
446
+
447
+ # @ aiowpsecurity
448
+ #: admin/wp-security-dashboard-menu.php:515
449
+ msgid "Plugin Version"
450
+ msgstr "Versione Plugin"
451
+
452
+ # @ aiowpsecurity
453
+ #: admin/wp-security-dashboard-menu.php:516
454
+ msgid "WP Version"
455
+ msgstr "Versione WP:"
456
+
457
+ # @ aiowpsecurity
458
+ #: admin/wp-security-dashboard-menu.php:518
459
+ #: admin/wp-security-dashboard-menu.php:520
460
+ #: admin/wp-security-dashboard-menu.php:616
461
+ msgid "Version"
462
+ msgstr "Versione"
463
+
464
+ # @ aiowpsecurity
465
+ #: admin/wp-security-dashboard-menu.php:519
466
+ msgid "Table Prefix"
467
+ msgstr "Prefisso Tabelle"
468
+
469
+ # @ aiowpsecurity
470
+ #: admin/wp-security-dashboard-menu.php:521
471
+ msgid "Session Save Path"
472
+ msgstr "Salva Sessione Percorso"
473
+
474
+ # @ aiowpsecurity
475
+ #: admin/wp-security-dashboard-menu.php:523
476
+ msgid "Server Name"
477
+ msgstr "Nome Server:"
478
+
479
+ # @ aiowpsecurity
480
+ #: admin/wp-security-dashboard-menu.php:524
481
+ msgid "Cookie Domain"
482
+ msgstr "Cookie Dominio"
483
+
484
+ # @ aiowpsecurity
485
+ #: admin/wp-security-dashboard-menu.php:525
486
+ msgid "Library Present"
487
+ msgstr "Libreria Presente"
488
+
489
+ # @ aiowpsecurity
490
+ #: admin/wp-security-dashboard-menu.php:526
491
+ msgid "Debug File Write Permissions"
492
+ msgstr "Debug File Permessi di scrittura"
493
+
494
+ # @ aiowpsecurity
495
+ #: admin/wp-security-dashboard-menu.php:605
496
+ msgid "Active Plugins"
497
+ msgstr "Plugin Attivo"
498
+
499
+ # @ aiowpsecurity
500
+ #: admin/wp-security-dashboard-menu.php:615
501
+ #: admin/wp-security-filesystem-menu.php:130
502
+ #: admin/wp-security-filesystem-menu.php:149
503
+ msgid "Name"
504
+ msgstr "Nome"
505
+
506
+ # @ aiowpsecurity
507
+ #: admin/wp-security-dashboard-menu.php:617
508
+ msgid "Plugin URL"
509
+ msgstr "URL Plugin"
510
+
511
+ # @ aiowpsecurity
512
+ #: admin/wp-security-database-menu.php:30
513
+ #: classes/grade-system/wp-security-feature-item-manager.php:60
514
+ msgid "DB Prefix"
515
+ msgstr "Prefisso DB"
516
+
517
+ # @ aiowpsecurity
518
+ #: admin/wp-security-database-menu.php:26
519
+ #: admin/wp-security-database-menu.php:31
520
+ #: classes/grade-system/wp-security-feature-item-manager.php:62
521
+ msgid "DB Backup"
522
+ msgstr "Backup DB"
523
+
524
+ # @ aiowpsecurity
525
+ #: admin/wp-security-database-menu.php:93
526
+ msgid "Nonce check failed for DB prefix change operation!"
527
+ msgstr "Check non riuscito per operazione di cambiamento prefisso tabelle DB!"
528
+
529
+ # @ aiowpsecurity
530
+ #: admin/wp-security-database-menu.php:101
531
+ msgid ""
532
+ "The plugin has detected that it cannot write to the wp-config.php file. This "
533
+ "feature can only be used if the plugin can successfully write to the wp-"
534
+ "config.php file."
535
+ msgstr ""
536
+ "Il plugin ha rilevato che non si può scrivere nel file wp-config.php. Questa "
537
+ "funzione può essere utilizzata solo se il plug-in è in grado di scrivere "
538
+ "correttamente il file wp-config.php."
539
+
540
+ # @ aiowpsecurity
541
+ #: admin/wp-security-database-menu.php:114
542
+ msgid "Please enter a value for the DB prefix."
543
+ msgstr "Prego inserisci un valore per il prefisso DB."
544
+
545
+ # @ aiowpsecurity
546
+ #: admin/wp-security-database-menu.php:123
547
+ msgid ""
548
+ "<strong>ERROR</strong>: The table prefix can only contain numbers, letters, "
549
+ "and underscores."
550
+ msgstr ""
551
+ "<strong>ERRORE</strong>: Il prefisso della tabella può contenere solo "
552
+ "numeri, lettere e caratteri di sottolineatura."
553
+
554
+ # @ aiowpsecurity
555
+ #: admin/wp-security-database-menu.php:131
556
+ msgid "Change Database Prefix"
557
+ msgstr "Cambia Prefisso Database"
558
+
559
+ # @ aiowpsecurity
560
+ #: admin/wp-security-database-menu.php:134
561
+ msgid ""
562
+ "Your WordPress DB is the most important asset of your website because it "
563
+ "contains a lot of your site's precious information."
564
+ msgstr ""
565
+ "Il tuo DB WordPress è la risorsa più importante del tuo sito web perché "
566
+ "contiene un sacco di informazioni preziose del tuo sito."
567
+
568
+ # @ aiowpsecurity
569
+ #: admin/wp-security-database-menu.php:135
570
+ msgid ""
571
+ "The DB is also a target for hackers via methods such as SQL injections and "
572
+ "malicious and automated code which targets certain tables."
573
+ msgstr ""
574
+ "Anche Il DB è un bersaglio per gli hacker tramite metodi come injections SQL "
575
+ "e codice dannoso e automatizzato che può danneggiare le tabelle."
576
+
577
+ # @ aiowpsecurity
578
+ #: admin/wp-security-database-menu.php:136
579
+ msgid ""
580
+ "One way to add a layer of protection for your DB is to change the default "
581
+ "WordPress table prefix from \"wp_\" to something else which will be "
582
+ "difficult for hackers to guess."
583
+ msgstr ""
584
+ "Un modo per aggiungere un livello di protezione per il vostro DB è quello di "
585
+ "cambiare il prefisso delle tabelle di WordPress di default da \"wp_\" a "
586
+ "qualcos'altro che sarà difficile per gli hacker individuare."
587
+
588
+ # @ aiowpsecurity
589
+ #: admin/wp-security-database-menu.php:137
590
+ msgid ""
591
+ "This feature allows you to easily change the prefix to a value of your "
592
+ "choice or to a random value set by this plugin."
593
+ msgstr ""
594
+ "Questa funzione consente di modificare facilmente il prefisso per un valore "
595
+ "di tua scelta o su un valore casuale impostato dal plugin."
596
+
597
+ # @ aiowpsecurity
598
+ #: admin/wp-security-database-menu.php:143
599
+ msgid "DB Prefix Options"
600
+ msgstr "Opzioni Prefisso DB"
601
+
602
+ # @ aiowpsecurity
603
+ #: admin/wp-security-database-menu.php:154
604
+ #, php-format
605
+ msgid "It is recommended that you perform a %s before using this feature"
606
+ msgstr "Si consiglia di eseguire un %s prima di usare questa funzione."
607
+
608
+ # @ aiowpsecurity
609
+ #: admin/wp-security-database-menu.php:163
610
+ msgid "Current DB Table Prefix"
611
+ msgstr "Prefisso Tabelle DB Attuale"
612
+
613
+ # @ aiowpsecurity
614
+ #: admin/wp-security-database-menu.php:169
615
+ msgid ""
616
+ "Your site is currently using the default WordPress DB prefix value of \"wp_"
617
+ "\". \n"
618
+ " To increase your site's security you should "
619
+ "consider changing the DB prefix value to another value."
620
+ msgstr ""
621
+ "Il tuo sito sta usando il valore predefinito \"wp_\". \n"
622
+ " Per aumentare la sicurezza dovresti cambiare il "
623
+ "valore del prefisso DB a un altro valore."
624
+
625
+ # @ aiowpsecurity
626
+ #: admin/wp-security-database-menu.php:176
627
+ msgid "Generate New DB Table Prefix"
628
+ msgstr "Genera un Nuovo Prefisso Tabelle DB"
629
+
630
+ # @ aiowpsecurity
631
+ #: admin/wp-security-database-menu.php:179
632
+ msgid ""
633
+ "Check this if you want the plugin to generate a random 6 character string "
634
+ "for the table prefix"
635
+ msgstr ""
636
+ "Seleziona questo se vuoi che il plugin generi una stringa casuale di 6 "
637
+ "caratteri per il prefisso tabella"
638
+
639
+ # @ aiowpsecurity
640
+ #: admin/wp-security-database-menu.php:180
641
+ msgid "OR"
642
+ msgstr "O"
643
+
644
+ # @ aiowpsecurity
645
+ #: admin/wp-security-database-menu.php:182
646
+ msgid ""
647
+ "Choose your own DB prefix by specifying a string which contains letters and/"
648
+ "or numbers and/or underscores. Example: xyz_"
649
+ msgstr ""
650
+ "Scegli il prefisso DB specificando una stringa che contiene lettere e/o "
651
+ "numeri e/o trattino basso. esempio: xyz_"
652
+
653
+ # @ aiowpsecurity
654
+ #: admin/wp-security-database-menu.php:186
655
+ msgid "Change DB Prefix"
656
+ msgstr "Cambia Prefisso DB"
657
+
658
+ # @ aiowpsecurity
659
+ #: admin/wp-security-database-menu.php:207
660
+ #: admin/wp-security-filesystem-menu.php:86
661
+ msgid "Nonce check failed for manual DB backup operation!"
662
+ msgstr "Check non riuscito per l'operazione di backup DB manuale!"
663
+
664
+ # @ aiowpsecurity
665
+ #: admin/wp-security-database-menu.php:224
666
+ msgid ""
667
+ "DB Backup was successfully completed! You will receive the backup file via "
668
+ "email if you have enabled \"Send Backup File Via Email\", otherwise you can "
669
+ "retrieve it via FTP from the following directory:"
670
+ msgstr ""
671
+ "DB backup è stato completato con successo! Riceverai il file di backup "
672
+ "tramite e-mail se hai attivato \"Invia file di Backup Via Email\", "
673
+ "altrimenti è possibile recuperarlo tramite FTP dalla seguente directory:"
674
+
675
+ # @ default
676
+ #: admin/wp-security-database-menu.php:226
677
+ msgid "Your DB Backup File location: "
678
+ msgstr "La posizione del tuo File di Backup DB"
679
+
680
+ # @ aiowpsecurity
681
+ #: admin/wp-security-database-menu.php:234
682
+ msgid "DB Backup failed. Please check the permissions of the backup directory."
683
+ msgstr ""
684
+ "DB Backup non riuscito. Si prega di controllare i permessi della directory "
685
+ "di backup."
686
+
687
+ # @ aiowpsecurity
688
+ #: admin/wp-security-database-menu.php:251
689
+ #: admin/wp-security-filescan-menu.php:133
690
+ msgid ""
691
+ "You entered a non numeric value for the \"backup time interval\" field. It "
692
+ "has been set to the default value."
693
+ msgstr ""
694
+ "È stato immesso un valore non numerico per il campo \"intervallo di tempo di "
695
+ "backup\". È stato impostato il valore di default."
696
+
697
+ # @ aiowpsecurity
698
+ #: admin/wp-security-database-menu.php:258
699
+ msgid ""
700
+ "You entered a non numeric value for the \"number of backup files to keep\" "
701
+ "field. It has been set to the default value."
702
+ msgstr ""
703
+ "È stato immesso un valore non numerico per il campo \"numero file di backup "
704
+ "da conservare \". E 'stato impostato il valore di default."
705
+
706
+ # @ aiowpsecurity
707
+ #: admin/wp-security-database-menu.php:265
708
+ #: admin/wp-security-filescan-menu.php:163
709
+ #: admin/wp-security-user-login-menu.php:117
710
+ msgid ""
711
+ "You have entered an incorrect email address format. It has been set to your "
712
+ "WordPress admin email as default."
713
+ msgstr ""
714
+ "È stato immesso un formato di indirizzo email errato. E 'stato impostato la "
715
+ "tua email amministratore WordPress predefinita."
716
+
717
+ # @ aiowpsecurity
718
+ #: admin/wp-security-brute-force-menu.php:108
719
+ #: admin/wp-security-database-menu.php:271
720
+ #: admin/wp-security-filescan-menu.php:169
721
+ #: admin/wp-security-firewall-menu.php:769 admin/wp-security-spam-menu.php:211
722
+ #: admin/wp-security-user-login-menu.php:123
723
+ #: admin/wp-security-user-login-menu.php:360
724
+ msgid "Attention!"
725
+ msgstr "Attenzione!"
726
+
727
+ # @ aiowpsecurity
728
+ #: admin/wp-security-database-menu.php:298
729
+ msgid "Manual Backup"
730
+ msgstr "Backup Manuale"
731
+
732
+ # @ aiowpsecurity
733
+ #: admin/wp-security-database-menu.php:304
734
+ msgid "To create a new DB backup just click on the button below."
735
+ msgstr ""
736
+ "Per creare un nuovo backup DB è sufficiente fare clic sul pulsante qui sotto."
737
+
738
+ # @ aiowpsecurity
739
+ #: admin/wp-security-database-menu.php:307
740
+ msgid "Create DB Backup Now"
741
+ msgstr "Crea nuovo Backup DB"
742
+
743
+ # @ aiowpsecurity
744
+ #: admin/wp-security-database-menu.php:311
745
+ msgid "Automated Scheduled Backups"
746
+ msgstr "Programma Automazione Backup"
747
+
748
+ # @ aiowpsecurity
749
+ #: admin/wp-security-database-menu.php:323
750
+ msgid "Enable Automated Scheduled Backups"
751
+ msgstr "Attiva Programmazione Automatica Backup"
752
+
753
+ # @ aiowpsecurity
754
+ #: admin/wp-security-database-menu.php:326
755
+ msgid ""
756
+ "Check this if you want the system to automatically generate backups "
757
+ "periodically based on the settings below"
758
+ msgstr ""
759
+ "Selezionare questa se si desidera che il sistema generari automaticamente i "
760
+ "backup periodicamente in base alle impostazioni di seguito"
761
+
762
+ # @ aiowpsecurity
763
+ #: admin/wp-security-database-menu.php:330
764
+ msgid "Backup Time Interval"
765
+ msgstr "Intervallo di Tempo Backup"
766
+
767
+ # @ aiowpsecurity
768
+ #: admin/wp-security-database-menu.php:333
769
+ #: admin/wp-security-filescan-menu.php:279
770
+ msgid "Hours"
771
+ msgstr "Ore"
772
+
773
+ # @ aiowpsecurity
774
+ #: admin/wp-security-database-menu.php:334
775
+ #: admin/wp-security-filescan-menu.php:280
776
+ msgid "Days"
777
+ msgstr "Giorni"
778
+
779
+ # @ aiowpsecurity
780
+ #: admin/wp-security-database-menu.php:335
781
+ #: admin/wp-security-filescan-menu.php:281
782
+ msgid "Weeks"
783
+ msgstr "Settimane"
784
+
785
+ # @ aiowpsecurity
786
+ #: admin/wp-security-database-menu.php:337
787
+ msgid "Set the value for how often you would like an automated backup to occur"
788
+ msgstr ""
789
+ "Impostare il valore per quanto spesso si desidera creare un backup automatico"
790
+
791
+ # @ aiowpsecurity
792
+ #: admin/wp-security-database-menu.php:341
793
+ msgid "Number of Backup Files To Keep"
794
+ msgstr "Numero di file di backup da conservare"
795
+
796
+ # @ aiowpsecurity
797
+ #: admin/wp-security-database-menu.php:343
798
+ msgid ""
799
+ "Thie field allows you to choose the number of backup files you would like to "
800
+ "keep in the backup directory"
801
+ msgstr ""
802
+ "Il campo consente di scegliere il numero di file di backup che si desidera "
803
+ "mantenere nella directory di backup"
804
+
805
+ # @ aiowpsecurity
806
+ #: admin/wp-security-database-menu.php:347
807
+ msgid "Send Backup File Via Email"
808
+ msgstr "Invia File di Backup via Email"
809
+
810
+ # @ aiowpsecurity
811
+ #: admin/wp-security-database-menu.php:350
812
+ msgid ""
813
+ "Check this if you want the system to email you the backup file after a DB "
814
+ "backup has been performed"
815
+ msgstr ""
816
+ "Seleziona questa casella se vuoi che il File di backup venga inviato tramite "
817
+ "email quando viene eseguita una copia di backup DB"
818
+
819
+ # @ aiowpsecurity
820
+ #: admin/wp-security-database-menu.php:352
821
+ #: admin/wp-security-filescan-menu.php:325
822
+ #: admin/wp-security-user-login-menu.php:235
823
+ msgid "Enter an email address"
824
+ msgstr "Inserisci Indirizzo Email"
825
+
826
+ # @ aiowpsecurity
827
+ #: admin/wp-security-database-menu.php:388
828
+ msgid "Starting DB prefix change operations....."
829
+ msgstr "Operazioni Cambio Impostazioni Prefisso DB..."
830
+
831
+ # @ aiowpsecurity
832
+ #: admin/wp-security-database-menu.php:390
833
+ #, php-format
834
+ msgid ""
835
+ "Your WordPress system has a total of %s tables and your new DB prefix will "
836
+ "be: %s"
837
+ msgstr ""
838
+ "Il tuo sito WordPress ha un totale di%s tabelle ed il nuovo prefisso DB sarà:"
839
+ "%s"
840
+
841
+ # @ aiowpsecurity
842
+ #: admin/wp-security-database-menu.php:396 classes/wp-security-utility.php:206
843
+ msgid ""
844
+ "Failed to make a backup of the wp-config.php file. This operation will not "
845
+ "go ahead."
846
+ msgstr ""
847
+ "Impossibile effettuare un backup del file wp-config.php. Questa operazione "
848
+ "non andrà avanti."
849
+
850
+ # @ aiowpsecurity
851
+ #: admin/wp-security-database-menu.php:400
852
+ msgid "A backup copy of your wp-config.php file was created successfully!"
853
+ msgstr ""
854
+ "Una copia di backup del file wp-config.php è stato creato con successo!"
855
+
856
+ # @ aiowpsecurity
857
+ #: admin/wp-security-database-menu.php:422
858
+ #, php-format
859
+ msgid "%s table name update failed"
860
+ msgstr "%s aggiornamento nome tabelle fallito"
861
+
862
+ # @ aiowpsecurity
863
+ #: admin/wp-security-database-menu.php:434
864
+ #, php-format
865
+ msgid "Please change the prefix manually for the above tables to: %s"
866
+ msgstr ""
867
+ "Si prega di cambiare il prefisso manualmente per le tabelle di cui sopra a:%s"
868
+
869
+ # @ aiowpsecurity
870
+ #: admin/wp-security-database-menu.php:437
871
+ #, php-format
872
+ msgid "%s tables had their prefix updated successfully!"
873
+ msgstr "%s tabelle hanno il loro prefisso aggiornato con successo!"
874
+
875
+ # @ aiowpsecurity
876
+ #: admin/wp-security-database-menu.php:452
877
+ msgid "wp-config.php file was updated successfully!"
878
+ msgstr "wp-config.php file è stato aggiornato con successo!"
879
+
880
+ # @ aiowpsecurity
881
+ #: admin/wp-security-database-menu.php:455
882
+ #, php-format
883
+ msgid ""
884
+ "The \"wp-config.php\" file was not able to be modified. Please modify this "
885
+ "file manually using your favourite editor and search \n"
886
+ " for variable \"$table_prefix\" and assign the following "
887
+ "value to that variable: %s"
888
+ msgstr ""
889
+ "Non è stato possibile modificare il file \"wp-config.php\". Modifica il file "
890
+ "manualmente usando il tuo editor preferito, cerca \n"
891
+ " la variabile \"$table_prefix\" e assegna il seguente "
892
+ "valore a tale variabile: %s"
893
+
894
+ # @ aiowpsecurity
895
+ #: admin/wp-security-database-menu.php:476
896
+ msgid "There was an error when updating the options table."
897
+ msgstr ""
898
+ "Si è verificato un errore durante l'aggiornamento delle opzioni tabella."
899
+
900
+ # @ aiowpsecurity
901
+ #: admin/wp-security-database-menu.php:480
902
+ msgid ""
903
+ "The options table records which had references to the old DB prefix were "
904
+ "updated successfully!"
905
+ msgstr ""
906
+ "Le opzioni dei record della tabella che avevano i riferimenti al vecchio "
907
+ "prefisso DB sono state aggiornate con successo!"
908
+
909
+ # @ aiowpsecurity
910
+ #: admin/wp-security-database-menu.php:505
911
+ #, php-format
912
+ msgid ""
913
+ "Error updating user_meta table where new meta_key = %s, old meta_key = %s "
914
+ "and user_id = %s."
915
+ msgstr ""
916
+ "Errore di aggiornamento della tabella user_meta dove nuovo meta_key = %s, "
917
+ "vecchio meta_key = %s e user_id = %s."
918
+
919
+ # @ aiowpsecurity
920
+ #: admin/wp-security-database-menu.php:511
921
+ msgid ""
922
+ "The usermeta table records which had references to the old DB prefix were "
923
+ "updated successfully!"
924
+ msgstr ""
925
+ "I record della tabella usermeta che avevano riferimenti al vecchio prefisso "
926
+ "DB sono state aggiornate con successo!"
927
+
928
+ # @ aiowpsecurity
929
+ #: admin/wp-security-database-menu.php:513
930
+ msgid "DB prefix change tasks have been completed."
931
+ msgstr "Sono state completate le attività di DB del cambiamento di prefisso."
932
+
933
+ # @ aiowpsecurity
934
+ #: admin/wp-security-filescan-menu.php:23
935
+ #: classes/grade-system/wp-security-feature-item-manager.php:102
936
+ msgid "File Change Detection"
937
+ msgstr "Rilevamento Modifiche File"
938
+
939
+ # @ aiowpsecurity
940
+ #: admin/wp-security-filescan-menu.php:103
941
+ msgid "Nonce check failed for manual file change detection scan operation!"
942
+ msgstr ""
943
+ "Check non riuscito per la scansione manulale di rilevamento modifica dei "
944
+ "file!"
945
+
946
+ # @ aiowpsecurity
947
+ #: admin/wp-security-filescan-menu.php:110
948
+ msgid ""
949
+ "The plugin has detected that this is your first file change detection scan. "
950
+ "The file details from this scan will be used to detect file changes for "
951
+ "future scans!"
952
+ msgstr ""
953
+ "Il plugin ha rilevato che questa è la tua prima scansione di rilevamento "
954
+ "delle modifiche dei file. I dettagli dei file da questa scansione verranno "
955
+ "utilizzati per rilevare i cambiamenti dei file per le scansioni future!"
956
+
957
+ # @ aiowpsecurity
958
+ #: admin/wp-security-filescan-menu.php:201
959
+ msgid ""
960
+ "NEW SCAN COMPLETED: The plugin has detected that you have made changes to "
961
+ "the \"File Types To Ignore\" or \"Files To Ignore\" fields.\n"
962
+ " In order to ensure that future scan results are "
963
+ "accurate, the old scan data has been refreshed."
964
+ msgstr ""
965
+ "NUOVA SCANSIONE COMPLETATA: Il plugin ha rilevato che sono state apportate "
966
+ "modifiche alla cartella \"Tipi di file da ignorare\" o\"File da ignorare "
967
+ "\"campi. \n"
968
+ " Al fine di garantire che i risultati delle scansioni "
969
+ "future siano precisi, i dati della scansione vecchia sono stati aggiornati."
970
+
971
+ # @ aiowpsecurity
972
+ #: admin/wp-security-filescan-menu.php:211
973
+ msgid ""
974
+ "All In One WP Security & Firewall has detected that there was a change in "
975
+ "your host's files."
976
+ msgstr ""
977
+ "All In One WP Security & firewall ha rilevato che c'è stato un cambiamento "
978
+ "nei file del proprio host."
979
+
980
+ # @ aiowpsecurity
981
+ #: admin/wp-security-filescan-menu.php:213
982
+ msgid "View Scan Details & Clear This Message"
983
+ msgstr "Visualizza i dettagli di scansione e cancella il messaggio"
984
+
985
+ # @ aiowpsecurity
986
+ #: admin/wp-security-filescan-menu.php:222
987
+ msgid ""
988
+ "If given an opportunity hackers can insert their code or files into your "
989
+ "system which they can then use to carry out malicious acts on your site."
990
+ msgstr ""
991
+ "Esiste la possibilità che hacker possono inserire il loro codice nei file o "
992
+ "nel vostro sistema, che possono poi utilizzare per eseguire operazioni "
993
+ "dannose sul tuo sito."
994
+
995
+ # @ aiowpsecurity
996
+ #: admin/wp-security-filescan-menu.php:223
997
+ msgid ""
998
+ "Being informed of any changes in your files can be a good way to quickly "
999
+ "prevent a hacker from causing damage to your website."
1000
+ msgstr ""
1001
+ "Essere informati di eventuali cambiamenti nei file può essere un buon modo "
1002
+ "per evitare rapidamente che un hacker possa causare danni al vostro sito web."
1003
+
1004
+ # @ aiowpsecurity
1005
+ #: admin/wp-security-filescan-menu.php:224
1006
+ msgid ""
1007
+ "In general, WordPress core and plugin files and file types such as \".php\" "
1008
+ "or \".js\" should not change often and when they do, it is important that "
1009
+ "you are made aware when a change occurs and which file was affected."
1010
+ msgstr ""
1011
+ "In generale, i file del cuore di WordPress dei plugin e tipi di file come ad "
1012
+ "esempio \".php\" o \".js\" non dovrebbero cambiare spesso e, quando succede, "
1013
+ "è importante sapere quando si verifica un cambiamento e quale file è stata "
1014
+ "influenzato."
1015
+
1016
+ # @ aiowpsecurity
1017
+ #: admin/wp-security-filescan-menu.php:225
1018
+ msgid ""
1019
+ "The \"File Change Detection Feature\" will notify you of any file change "
1020
+ "which occurs on your system, including the addition and deletion of files by "
1021
+ "performing a regular automated or manual scan of your system's files."
1022
+ msgstr ""
1023
+ "Il \"File Rilevamento Modifiche Funzioni\" comunicherà qualsiasi modifica di "
1024
+ "file che si verifica sul sistema, tra cui l'aggiunta e la cancellazione dei "
1025
+ "file per effettuare una normale scansione automatica o manuale dei file del "
1026
+ "proprio sistema."
1027
+
1028
+ # @ aiowpsecurity
1029
+ #: admin/wp-security-filescan-menu.php:226
1030
+ msgid ""
1031
+ "This feature also allows you to exclude certain files or folders from the "
1032
+ "scan in cases where you know that they change often as part of their normal "
1033
+ "operation. (For example log files and certain caching plugin files may "
1034
+ "change often and hence you may choose to exclude such files from the file "
1035
+ "change detection scan)"
1036
+ msgstr ""
1037
+ "Questa funzione consente inoltre di escludere determinati file o cartelle "
1038
+ "dalla scansione se si sa che cambiano spesso come parte del loro normale "
1039
+ "funzionamento. (Ad esempio i file di log e di alcuni file dei plugin di "
1040
+ "caching possono cambiare spesso e quindi si può scegliere di escludere tali "
1041
+ "file dalla scansione di rilevamento di modifica)"
1042
+
1043
+ # @ aiowpsecurity
1044
+ #: admin/wp-security-filescan-menu.php:231
1045
+ msgid "Manual File Change Detection Scan"
1046
+ msgstr "Scansione Rilevamento Modifiche File Manuale"
1047
+
1048
+ # @ aiowpsecurity
1049
+ #: admin/wp-security-filescan-menu.php:237
1050
+ msgid ""
1051
+ "To perform a manual file change detection scan click on the button below."
1052
+ msgstr ""
1053
+ "Per eseguire una scansione manuale di rilevamento modifica file clicca sul "
1054
+ "pulsante qui sotto."
1055
+
1056
+ # @ aiowpsecurity
1057
+ #: admin/wp-security-filescan-menu.php:240
1058
+ msgid "Perform Scan Now"
1059
+ msgstr "Esegui scansione Ora"
1060
+
1061
+ # @ aiowpsecurity
1062
+ #: admin/wp-security-filescan-menu.php:257
1063
+ msgid "File Change Detection Settings"
1064
+ msgstr "Impostazioni Rilevamento Modifiche File"
1065
+
1066
+ # @ aiowpsecurity
1067
+ #: admin/wp-security-filescan-menu.php:269
1068
+ msgid "Enable Automated File Change Detection Scan"
1069
+ msgstr "Attiva Scansione Automatica Rilevamento Modifiche File"
1070
+
1071
+ # @ aiowpsecurity
1072
+ #: admin/wp-security-filescan-menu.php:272
1073
+ msgid ""
1074
+ "Check this if you want the system to automatically/periodically scan your "
1075
+ "files to check for file changes based on the settings below"
1076
+ msgstr ""
1077
+ "Selezionare questa casella se vuoi che il sistema esegua in automatico/"
1078
+ "periodicamente la scansione dei file per verificare eventuali modifiche in "
1079
+ "base alle impostazioni di seguito"
1080
+
1081
+ # @ aiowpsecurity
1082
+ #: admin/wp-security-filescan-menu.php:276
1083
+ msgid "Scan Time Interval"
1084
+ msgstr "Intervallo Tempo Scansione"
1085
+
1086
+ # @ aiowpsecurity
1087
+ #: admin/wp-security-filescan-menu.php:283
1088
+ msgid "Set the value for how often you would like a scan to occur"
1089
+ msgstr ""
1090
+ "Impostare il valore per quanto spesso si desidera creare una scansione di "
1091
+ "verifica"
1092
+
1093
+ # @ aiowpsecurity
1094
+ #: admin/wp-security-filescan-menu.php:287
1095
+ msgid "File Types To Ignore"
1096
+ msgstr "Tipi di file da ignorare"
1097
+
1098
+ # @ aiowpsecurity
1099
+ #: admin/wp-security-filescan-menu.php:290
1100
+ msgid ""
1101
+ "Enter each file type or extension on a new line which you wish to exclude "
1102
+ "from the file change detection scan."
1103
+ msgstr ""
1104
+ "Immettere ogni tipo di file o estensione su una nuova linea che si desidera "
1105
+ "escludere dalla scansione di rilevamento delle modifiche dei file."
1106
+
1107
+ # @ aiowpsecurity
1108
+ #: admin/wp-security-filescan-menu.php:294
1109
+ msgid ""
1110
+ "You can exclude file types from the scan which would not normally pose any "
1111
+ "security threat if they were changed. These can include things such as image "
1112
+ "files."
1113
+ msgstr ""
1114
+ "È possibile escludere tipi di file dalla scansione, che normalmente non "
1115
+ "pongono alcuna minaccia per la sicurezza se sono stati modificati. Questi "
1116
+ "possono includere cose come file di immagine."
1117
+
1118
+ # @ aiowpsecurity
1119
+ #: admin/wp-security-filescan-menu.php:295
1120
+ msgid ""
1121
+ "Example: If you want the scanner to ignore files of type jpg, png, and bmp, "
1122
+ "then you would enter the following:"
1123
+ msgstr ""
1124
+ "Esempio: Se si desidera che lo scanner ignori i file di tipo jpg, png, bmp, "
1125
+ "immettere il seguente:"
1126
+
1127
+ # @ aiowpsecurity
1128
+ #: admin/wp-security-filescan-menu.php:296
1129
+ msgid "jpg"
1130
+ msgstr "jpg"
1131
+
1132
+ # @ aiowpsecurity
1133
+ #: admin/wp-security-filescan-menu.php:297
1134
+ msgid "png"
1135
+ msgstr "png"
1136
+
1137
+ # @ aiowpsecurity
1138
+ #: admin/wp-security-filescan-menu.php:298
1139
+ msgid "bmp"
1140
+ msgstr "bmp"
1141
+
1142
+ # @ aiowpsecurity
1143
+ #: admin/wp-security-filescan-menu.php:304
1144
+ msgid "Files/Directories To Ignore"
1145
+ msgstr "File/Directory Da Ignorare"
1146
+
1147
+ # @ aiowpsecurity
1148
+ #: admin/wp-security-filescan-menu.php:307
1149
+ msgid ""
1150
+ "Enter each file or directory on a new line which you wish to exclude from "
1151
+ "the file change detection scan."
1152
+ msgstr ""
1153
+ "Inserisci ogni file o directory, che si desidera escludere dalla scansione "
1154
+ "di rilevamento delle modifiche dei file, su una nuova linea."
1155
+
1156
+ # @ aiowpsecurity
1157
+ #: admin/wp-security-filescan-menu.php:311
1158
+ msgid ""
1159
+ "You can exclude specific files/directories from the scan which would not "
1160
+ "normally pose any security threat if they were changed. These can include "
1161
+ "things such as log files."
1162
+ msgstr ""
1163
+ "È possibile escludere file/directory specifici dalla scansione, che "
1164
+ "normalmente non pongono alcuna minaccia per la sicurezza se sono stati "
1165
+ "modificati. Questi possono includere cose come i file di log."
1166
+
1167
+ # @ aiowpsecurity
1168
+ #: admin/wp-security-filescan-menu.php:312
1169
+ msgid ""
1170
+ "Example: If you want the scanner to ignore certain files in different "
1171
+ "directories or whole directories, then you would enter the following:"
1172
+ msgstr ""
1173
+ "Esempio: Se si desidera che lo scanner ignori determinati file in diverse "
1174
+ "directory o intere directory, immettere il seguente:"
1175
+
1176
+ # @ aiowpsecurity
1177
+ #: admin/wp-security-filescan-menu.php:313
1178
+ msgid "cache/config/master.php"
1179
+ msgstr "cache/config/master.php"
1180
+
1181
+ # @ aiowpsecurity
1182
+ #: admin/wp-security-filescan-menu.php:314
1183
+ msgid "somedirectory"
1184
+ msgstr "nomedirectory"
1185
+
1186
+ # @ aiowpsecurity
1187
+ #: admin/wp-security-filescan-menu.php:320
1188
+ msgid "Send Email When Change Detected"
1189
+ msgstr "Invia e-mail quando viene rilevata una modifica"
1190
+
1191
+ # @ aiowpsecurity
1192
+ #: admin/wp-security-filescan-menu.php:323
1193
+ msgid ""
1194
+ "Check this if you want the system to email you if a file change was detected"
1195
+ msgstr ""
1196
+ "Seleziona questa casella se vuoi ricevere un'email ogni volta che viene "
1197
+ "rilevata una modifica"
1198
+
1199
+ # @ aiowpsecurity
1200
+ #: admin/wp-security-filescan-menu.php:391
1201
+ msgid "Latest File Change Scan Results"
1202
+ msgstr "Ultimi Risultati scansione di modifica file"
1203
+
1204
+ # @ aiowpsecurity
1205
+ #: admin/wp-security-filescan-menu.php:400
1206
+ msgid "The following files were added to your host."
1207
+ msgstr "I seguenti file sono stati aggiunti al tu Host."
1208
+
1209
+ # @ aiowpsecurity
1210
+ #: admin/wp-security-filescan-menu.php:403
1211
+ #: admin/wp-security-filescan-menu.php:424
1212
+ #: admin/wp-security-filescan-menu.php:448
1213
+ #: admin/wp-security-settings-menu.php:26
1214
+ #: admin/wp-security-settings-menu.php:27
1215
+ msgid "File"
1216
+ msgstr "File"
1217
+
1218
+ # @ aiowpsecurity
1219
+ #: admin/wp-security-filescan-menu.php:404
1220
+ #: admin/wp-security-filescan-menu.php:425
1221
+ #: admin/wp-security-filescan-menu.php:449
1222
+ msgid "File Size"
1223
+ msgstr "Dimensione File"
1224
+
1225
+ # @ aiowpsecurity
1226
+ #: admin/wp-security-filescan-menu.php:405
1227
+ #: admin/wp-security-filescan-menu.php:426
1228
+ #: admin/wp-security-filescan-menu.php:450
1229
+ msgid "File Modified"
1230
+ msgstr "Modifica File"
1231
+
1232
+ # @ aiowpsecurity
1233
+ #: admin/wp-security-filescan-menu.php:421
1234
+ msgid "The following files were removed from your host."
1235
+ msgstr "I seguenti file sono stati rimossi dal tuo host."
1236
+
1237
+ # @ aiowpsecurity
1238
+ #: admin/wp-security-filescan-menu.php:445
1239
+ msgid "The following files were changed on your host."
1240
+ msgstr "I seguenti file sono stati modificati nel tuo host."
1241
+
1242
+ # @ aiowpsecurity
1243
+ #: admin/wp-security-filesystem-menu.php:26
1244
+ #: classes/grade-system/wp-security-feature-item-manager.php:66
1245
+ msgid "File Permissions"
1246
+ msgstr "Permessi File"
1247
+
1248
+ # @ aiowpsecurity
1249
+ #: admin/wp-security-filesystem-menu.php:27
1250
+ msgid "PHP File Editing"
1251
+ msgstr "Modifica File PHP"
1252
+
1253
+ # @ aiowpsecurity
1254
+ #: admin/wp-security-filesystem-menu.php:28
1255
+ msgid "WP File Access"
1256
+ msgstr "Accesso File WP"
1257
+
1258
+ # @ aiowpsecurity
1259
+ #: admin/wp-security-filesystem-menu.php:29
1260
+ msgid "Host System Logs"
1261
+ msgstr "Registro Sistema Host"
1262
+
1263
+ # @ aiowpsecurity
1264
+ #: admin/wp-security-filesystem-menu.php:96
1265
+ #, php-format
1266
+ msgid "The permissions for %s were succesfully changed to %s"
1267
+ msgstr "I permessi perr %s sono stati modificati con successo a %s"
1268
+
1269
+ # @ aiowpsecurity
1270
+ #: admin/wp-security-filesystem-menu.php:100
1271
+ #, php-format
1272
+ msgid "Unable to change permissions for %s!"
1273
+ msgstr "Impossibile modificare i permessi per %s!"
1274
+
1275
+ # @ aiowpsecurity
1276
+ #: admin/wp-security-filesystem-menu.php:106
1277
+ msgid "File Permissions Scan"
1278
+ msgstr "Permessi Scansione File"
1279
+
1280
+ # @ aiowpsecurity
1281
+ #: admin/wp-security-filesystem-menu.php:109
1282
+ msgid ""
1283
+ "Your WordPress file and folder permission settings govern the accessability "
1284
+ "and read/write privileges of the files and folders which make up your WP "
1285
+ "installation."
1286
+ msgstr ""
1287
+ "Il tuo file di WordPress e le impostazioni delle autorizzazioni delle "
1288
+ "cartelle regolano i privilegi di accesso e lettura/scrittura dei file e "
1289
+ "delle cartelle che compongono l'installazione WP."
1290
+
1291
+ # @ aiowpsecurity
1292
+ #: admin/wp-security-filesystem-menu.php:110
1293
+ msgid ""
1294
+ "Your WP installation already comes with reasonably secure file permission "
1295
+ "settings for the filesystem."
1296
+ msgstr ""
1297
+ "La tua installazione di WP viene fornito già con le impostazioni di "
1298
+ "autorizzazione di file ragionevolmente sicuri per il filesystem."
1299
+
1300
+ # @ aiowpsecurity
1301
+ #: admin/wp-security-filesystem-menu.php:111
1302
+ msgid ""
1303
+ "However, sometimes people or other plugins modify the various permission "
1304
+ "settings of certain core WP folders or files such that they end up making "
1305
+ "their site less secure because they chose the wrong permission values."
1306
+ msgstr ""
1307
+ "Tuttavia, a volte la gente o altri plugin, modificano le varie impostazioni "
1308
+ "dei permessi di alcune cartelle o file WP fondamentali e lo rendono meno "
1309
+ "sicuro perché hanno scelto i valori dei permessi sbagliati."
1310
+
1311
+ # @ aiowpsecurity
1312
+ #: admin/wp-security-filesystem-menu.php:112
1313
+ msgid ""
1314
+ "This feature will scan the critical WP core folders and files and will "
1315
+ "highlight any permission settings which are insecure."
1316
+ msgstr ""
1317
+ "Questa funzione consente di eseguire la scansione delle cartelle di base WP "
1318
+ "e file critici e metterà in evidenza le impostazioni di autorizzazione che "
1319
+ "sono insicure."
1320
+
1321
+ # @ aiowpsecurity
1322
+ #: admin/wp-security-filesystem-menu.php:118
1323
+ msgid "WP Directory and File Permissions Scan Results"
1324
+ msgstr "Risultati scansione Directory WP e permessi dei file"
1325
+
1326
+ # @ aiowpsecurity
1327
+ #: admin/wp-security-filesystem-menu.php:131
1328
+ #: admin/wp-security-filesystem-menu.php:150
1329
+ msgid "File/Folder"
1330
+ msgstr "File/Cartelle"
1331
+
1332
+ # @ aiowpsecurity
1333
+ #: admin/wp-security-filesystem-menu.php:132
1334
+ #: admin/wp-security-filesystem-menu.php:151
1335
+ msgid "Current Permissions"
1336
+ msgstr "Permessi Attuali"
1337
+
1338
+ # @ aiowpsecurity
1339
+ #: admin/wp-security-filesystem-menu.php:133
1340
+ #: admin/wp-security-filesystem-menu.php:152
1341
+ msgid "Recommended Permissions"
1342
+ msgstr "Permessi Raccomandati"
1343
+
1344
+ # @ aiowpsecurity
1345
+ #: admin/wp-security-filesystem-menu.php:134
1346
+ #: admin/wp-security-filesystem-menu.php:153
1347
+ msgid "Recommended Action"
1348
+ msgstr "Azione Raccomandata"
1349
+
1350
+ # @ aiowpsecurity
1351
+ #: admin/wp-security-filesystem-menu.php:191
1352
+ msgid "Your PHP file editing settings were saved successfully."
1353
+ msgstr ""
1354
+ "Le impostazioni di editing dei file PHP sono state salvate con successo."
1355
+
1356
+ # @ aiowpsecurity
1357
+ #: admin/wp-security-filesystem-menu.php:195
1358
+ msgid ""
1359
+ "Operation failed! Unable to modify or make a backup of wp-config.php file!"
1360
+ msgstr ""
1361
+ "Operazione non riuscita! Impossibile modificare o fare un backup del file wp-"
1362
+ "config.php!"
1363
+
1364
+ # @ aiowpsecurity
1365
+ #: admin/wp-security-filesystem-menu.php:201
1366
+ #: classes/grade-system/wp-security-feature-item-manager.php:68
1367
+ msgid "File Editing"
1368
+ msgstr "Modifica File"
1369
+
1370
+ # @ aiowpsecurity
1371
+ #: admin/wp-security-filesystem-menu.php:204
1372
+ msgid ""
1373
+ "The Wordpress Dashboard by default allows administrators to edit PHP files, "
1374
+ "such as plugin and theme files."
1375
+ msgstr ""
1376
+ "La Bacheca Wordpress di default consente agli amministratori di modificare i "
1377
+ "file PHP, come plugin e file dei temi."
1378
+
1379
+ # @ aiowpsecurity
1380
+ #: admin/wp-security-filesystem-menu.php:205
1381
+ msgid ""
1382
+ "This is often the first tool an attacker will use if able to login, since it "
1383
+ "allows code execution."
1384
+ msgstr ""
1385
+ "Questo è spesso il primo strumento che chi attacca il sito utilizzerà, se in "
1386
+ "grado di accedere, in quanto permette l'esecuzione di codice."
1387
+
1388
+ # @ aiowpsecurity
1389
+ #: admin/wp-security-filesystem-menu.php:206
1390
+ msgid ""
1391
+ "This feature will disable the ability for people to edit PHP files via the "
1392
+ "dashboard."
1393
+ msgstr ""
1394
+ "Questa funzione consente di disattivare la possibilità per le persone di "
1395
+ "modificare i file PHP tramite la bacheca."
1396
+
1397
+ # @ aiowpsecurity
1398
+ #: admin/wp-security-filesystem-menu.php:212
1399
+ msgid "Disable PHP File Editing"
1400
+ msgstr "Disabilità Modifica File PHP"
1401
+
1402
+ # @ aiowpsecurity
1403
+ #: admin/wp-security-filesystem-menu.php:224
1404
+ msgid "Disable Ability To Edit PHP Files"
1405
+ msgstr "Disattivare la possibilità di modificare i file PHP"
1406
+
1407
+ # @ aiowpsecurity
1408
+ #: admin/wp-security-filesystem-menu.php:227
1409
+ msgid ""
1410
+ "Check this if you want to remove the ability for people to edit PHP files "
1411
+ "via the WP dashboard"
1412
+ msgstr ""
1413
+ "Selezionare questa casella se vuoi rimuovere la possibilità per le persone "
1414
+ "di modificare i file PHP tramite la bacheca WP"
1415
+
1416
+ # @ aiowpsecurity
1417
+ #: admin/wp-security-filesystem-menu.php:271
1418
+ msgid ""
1419
+ "You have successfully saved the Prevent Access to Default WP Files "
1420
+ "configuration."
1421
+ msgstr ""
1422
+ "Hai salvato con successo di impedire l'accesso al file di configurazione di "
1423
+ "default WP."
1424
+
1425
+ # @ aiowpsecurity
1426
+ #: admin/wp-security-brute-force-menu.php:281
1427
+ #: admin/wp-security-filesystem-menu.php:275
1428
+ #: admin/wp-security-firewall-menu.php:119
1429
+ #: admin/wp-security-firewall-menu.php:287
1430
+ #: admin/wp-security-firewall-menu.php:498
1431
+ #: admin/wp-security-firewall-menu.php:667 admin/wp-security-spam-menu.php:106
1432
+ msgid ""
1433
+ "Could not write to the .htaccess file. Please check the file permissions."
1434
+ msgstr ""
1435
+ "Impossibile scrivere nel file .htaccess. Controlla i permessi dei file."
1436
+
1437
+ # @ aiowpsecurity
1438
+ #: admin/wp-security-filesystem-menu.php:280
1439
+ msgid "WordPress Files"
1440
+ msgstr "File WordPress"
1441
+
1442
+ # @ aiowpsecurity
1443
+ #: admin/wp-security-filesystem-menu.php:283
1444
+ #, php-format
1445
+ msgid ""
1446
+ "This feature allows you to prevent access to files such as %s, %s and %s "
1447
+ "which are delivered with all WP installations."
1448
+ msgstr ""
1449
+ "Questa funzione consente di impedire l'accesso ai file come %s, %s e %s che "
1450
+ "vengono inseriti in tutte le installazioni WP.."
1451
+
1452
+ # @ aiowpsecurity
1453
+ #: admin/wp-security-filesystem-menu.php:284
1454
+ msgid ""
1455
+ "By preventing access to these files you are hiding some key pieces of "
1456
+ "information (such as WordPress version info) from potential hackers."
1457
+ msgstr ""
1458
+ "Impedendo l'accesso a questi file si nascondono alcune informazioni "
1459
+ "fondamentali (come info sulla versione WordPress) da potenziali hacker."
1460
+
1461
+ # @ aiowpsecurity
1462
+ #: admin/wp-security-filesystem-menu.php:289
1463
+ msgid "Prevent Access to Default WP Files"
1464
+ msgstr "Impedire l'accesso ai file di WP di default"
1465
+
1466
+ # @ aiowpsecurity
1467
+ #: admin/wp-security-filesystem-menu.php:300
1468
+ msgid "Prevent Access to WP Default Install Files"
1469
+ msgstr "Impedire l'accesso ai file di installazione WP di default"
1470
+
1471
+ # @ aiowpsecurity
1472
+ #: admin/wp-security-filesystem-menu.php:303
1473
+ msgid ""
1474
+ "Check this if you want to prevent access to readme.html, license.txt and wp-"
1475
+ "config-sample.php."
1476
+ msgstr ""
1477
+ "Selezionare questa casella per impedire l'accesso a readme.html, license.txt "
1478
+ "e wp-config-sample.php."
1479
+
1480
+ # @ aiowpsecurity
1481
+ #: admin/wp-security-filesystem-menu.php:307
1482
+ msgid "Save Setting"
1483
+ msgstr "Salva Impostazioni"
1484
+
1485
+ # @ aiowpsecurity
1486
+ #: admin/wp-security-filesystem-menu.php:331
1487
+ msgid "System Logs"
1488
+ msgstr "Registro Sistema"
1489
+
1490
+ # @ aiowpsecurity
1491
+ #: admin/wp-security-filesystem-menu.php:334
1492
+ msgid ""
1493
+ "Sometimes your hosting platform will produce error or warning logs in a file "
1494
+ "called \"error_log\"."
1495
+ msgstr ""
1496
+ "A volte la vostra piattaforma di hosting produrrà errore o log di avviso in "
1497
+ "un file chiamato \"error_log\"."
1498
+
1499
+ # @ aiowpsecurity
1500
+ #: admin/wp-security-filesystem-menu.php:335
1501
+ msgid ""
1502
+ "Depending on the nature and cause of the error or warning, your hosting "
1503
+ "server can create multiple instances of this file in numerous directory "
1504
+ "locations of your WordPress installation."
1505
+ msgstr ""
1506
+ "A seconda della natura e la causa di errore o di avvertimento, il server "
1507
+ "dell'hosting è in grado di creare più istanze di questo file in numerose "
1508
+ "posizioni di directory della vostra installazione WordPress."
1509
+
1510
+ # @ aiowpsecurity
1511
+ #: admin/wp-security-filesystem-menu.php:336
1512
+ msgid ""
1513
+ "By occassionally viewing the contents of these logs files you can keep "
1514
+ "informed of any underlying problems on your system which you might need to "
1515
+ "address."
1516
+ msgstr ""
1517
+ "Di tanto in tanto la visualizzazione del contenuto di questi file di log può "
1518
+ "darci informazioni di eventuali problemi di fondo sul sistema che si "
1519
+ "potrebbe aver bisogno di affrontare."
1520
+
1521
+ # @ aiowpsecurity
1522
+ #: admin/wp-security-filesystem-menu.php:342
1523
+ msgid "View System Logs"
1524
+ msgstr "Visualizza registri di sistema"
1525
+
1526
+ # @ aiowpsecurity
1527
+ #: admin/wp-security-filesystem-menu.php:347
1528
+ msgid "Enter System Log File Name"
1529
+ msgstr "Inserisci il Nome File Registro Sistema"
1530
+
1531
+ # @ aiowpsecurity
1532
+ #: admin/wp-security-filesystem-menu.php:349
1533
+ msgid "Enter your system log file name. (Defaults to error_log)"
1534
+ msgstr ""
1535
+ "Immettere il nome del file di log di sistema. (Predefinito è error_log)"
1536
+
1537
+ # @ aiowpsecurity
1538
+ #: admin/wp-security-filesystem-menu.php:352
1539
+ msgid "View Latest System Logs"
1540
+ msgstr "Visualizza ultimi registri di sistema"
1541
+
1542
+ # @ aiowpsecurity
1543
+ #: admin/wp-security-filesystem-menu.php:354
1544
+ msgid "Loading..."
1545
+ msgstr "Caricamento..."
1546
+
1547
+ # @ aiowpsecurity
1548
+ #: admin/wp-security-filesystem-menu.php:371
1549
+ msgid "No system logs were found!"
1550
+ msgstr "Nessun log di sistema sono stato trovato!"
1551
+
1552
+ # @ aiowpsecurity
1553
+ #: admin/wp-security-filesystem-menu.php:424
1554
+ msgid "Set Recommended Permissions"
1555
+ msgstr "Imposta Permessi Consigliati"
1556
+
1557
+ # @ aiowpsecurity
1558
+ #: admin/wp-security-filesystem-menu.php:430
1559
+ msgid "No Action Required"
1560
+ msgstr "Nessuna Azione Richiesta"
1561
+
1562
+ # @ aiowpsecurity
1563
+ #: admin/wp-security-filesystem-menu.php:470
1564
+ #, php-format
1565
+ msgid "Showing latest entries of error_log file: %s"
1566
+ msgstr "Risultati delle ultime voci di error_log file: %s"
1567
+
1568
+ # @ aiowpsecurity
1569
+ #: admin/wp-security-firewall-menu.php:27
1570
+ msgid "Basic Firewall Rules"
1571
+ msgstr "Regole Firewall Base"
1572
+
1573
+ # @ aiowpsecurity
1574
+ #: admin/wp-security-firewall-menu.php:28
1575
+ msgid "Additional Firewall Rules"
1576
+ msgstr "Regole Firewall Aggiuntive"
1577
+
1578
+ # @ aiowpsecurity
1579
+ #: admin/wp-security-firewall-menu.php:29
1580
+ msgid "5G Blacklist Firewall Rules"
1581
+ msgstr "Regole Blacklist Firewall 5G"
1582
+
1583
+ # @ aiowpsecurity
1584
+ #: admin/wp-security-firewall-menu.php:115
1585
+ #: admin/wp-security-firewall-menu.php:663 admin/wp-security-spam-menu.php:102
1586
+ #: admin/wp-security-user-registration-menu.php:96
1587
+ msgid "Settings were successfully saved"
1588
+ msgstr "Impostazioni salvate con successo"
1589
+
1590
+ # @ aiowpsecurity
1591
+ #: admin/wp-security-firewall-menu.php:124
1592
+ #: admin/wp-security-firewall-menu.php:503
1593
+ msgid "Firewall Settings"
1594
+ msgstr "Impostazioni Firewall"
1595
+
1596
+ # @ aiowpsecurity
1597
+ #: admin/wp-security-firewall-menu.php:131
1598
+ #, php-format
1599
+ msgid ""
1600
+ "This should not have any impact on your site's general functionality but if "
1601
+ "you wish you can take a %s of your .htaccess file before proceeding."
1602
+ msgstr ""
1603
+ "Questo non dovrebbe avere alcun impatto sulla funzionalità generale del tuo "
1604
+ "sito, ma se vuoi puoi creare un %s del file .htaccess prima di procedere."
1605
+
1606
+ # @ aiowpsecurity
1607
+ #: admin/wp-security-firewall-menu.php:132
1608
+ msgid ""
1609
+ "The features in this tab allow you to activate some basic firewall security "
1610
+ "protection rules for your site."
1611
+ msgstr ""
1612
+ "Le funzionalità di questa scheda consentono di attivare alcune regole di "
1613
+ "protezione di sicurezza del firewall di base per il sito."
1614
+
1615
+ # @ aiowpsecurity
1616
+ #: admin/wp-security-firewall-menu.php:133
1617
+ msgid ""
1618
+ "The firewall functionality is achieved via the insertion of special code "
1619
+ "into your currently active .htaccess file."
1620
+ msgstr ""
1621
+ "La funzionalità firewall è ottenuta tramite l'inserimento di codice speciale "
1622
+ "nel file correntemente attivo. Htaccess."
1623
+
1624
+ # @ aiowpsecurity
1625
+ #: admin/wp-security-firewall-menu.php:153
1626
+ msgid "Basic Firewall Settings"
1627
+ msgstr "Impostazioni Firewall Base"
1628
+
1629
+ # @ aiowpsecurity
1630
+ #: admin/wp-security-firewall-menu.php:161
1631
+ msgid "Enable Basic Firewall Protection"
1632
+ msgstr "Attiva Protezione Firewall Base"
1633
+
1634
+ # @ aiowpsecurity
1635
+ #: admin/wp-security-firewall-menu.php:164
1636
+ msgid "Check this if you want to apply basic firewall protection to your site."
1637
+ msgstr ""
1638
+ "Seleziona questa casella se vuoi applicare la protezione di base del "
1639
+ "firewall per il sito."
1640
+
1641
+ # @ aiowpsecurity
1642
+ #: admin/wp-security-firewall-menu.php:168
1643
+ msgid ""
1644
+ "This setting will implement the following basic firewall protection "
1645
+ "mechanisms on your site:"
1646
+ msgstr ""
1647
+ "Questa impostazione applicherà i seguenti meccanismi di base di protezione "
1648
+ "firewall sul tuo sito:"
1649
+
1650
+ # @ aiowpsecurity
1651
+ #: admin/wp-security-firewall-menu.php:169
1652
+ msgid "1) Protect your htaccess file by denying access to it."
1653
+ msgstr "1) Proteggi il tuo .htaccess negando l'accesso ad esso."
1654
+
1655
+ # @ aiowpsecurity
1656
+ #: admin/wp-security-firewall-menu.php:170
1657
+ msgid "2) Disable the server signature."
1658
+ msgstr "2) Disabilitare la firma del server."
1659
+
1660
+ # @ aiowpsecurity
1661
+ #: admin/wp-security-firewall-menu.php:171
1662
+ msgid "3) Limit file upload size (10MB)."
1663
+ msgstr "3) Limite dimensione file di upload (10 MB)."
1664
+
1665
+ # @ aiowpsecurity
1666
+ #: admin/wp-security-firewall-menu.php:172
1667
+ msgid "4) Protect your wp-config.php file by denying access to it."
1668
+ msgstr "4) Proteggere il file wp-config.php negando l'accesso ad esso."
1669
+
1670
+ # @ aiowpsecurity
1671
+ #: admin/wp-security-firewall-menu.php:173
1672
+ msgid ""
1673
+ "The above firewall features will be applied via your .htaccess file and "
1674
+ "should not affect your site's overall functionality."
1675
+ msgstr ""
1676
+ "Le funzioni di firewall di cui sopra verranno applicate tramite il file ."
1677
+ "htaccess e non dovrebbe pregiudicare la funzionalità complessiva del tuo "
1678
+ "sito."
1679
+
1680
+ # @ aiowpsecurity
1681
+ #: admin/wp-security-firewall-menu.php:174
1682
+ msgid ""
1683
+ "You are still advised to take a backup of your active .htaccess file just in "
1684
+ "case."
1685
+ msgstr ""
1686
+ "sei invitato ancora ad eseguire una copia di backup dell'attuale file ."
1687
+ "htaccess per ogni evenienza."
1688
+
1689
+ # @ aiowpsecurity
1690
+ #: admin/wp-security-firewall-menu.php:183
1691
+ msgid "WordPress Pingback Vulnerability Protection"
1692
+ msgstr "Protezione Vulnerabilità WordPress Pingback"
1693
+
1694
+ # @ aiowpsecurity
1695
+ #: admin/wp-security-firewall-menu.php:144
1696
+ #: admin/wp-security-firewall-menu.php:191
1697
+ msgid "Enable Pingback Protection"
1698
+ msgstr "Attiva Protezione Pingback"
1699
+
1700
+ # @ aiowpsecurity
1701
+ #: admin/wp-security-firewall-menu.php:194
1702
+ msgid ""
1703
+ "Check this if you are not using the WP XML-RPC functionality and you want to "
1704
+ "enable protection against WordPress pingback vulnerabilities."
1705
+ msgstr ""
1706
+ "Seleziona questo se non utilizzi le funzioni WP XML-RPC e vuoi attivare la "
1707
+ "protezione contro WordPress pingback vulnerabilità."
1708
+
1709
+ # @ aiowpsecurity
1710
+ #: admin/wp-security-firewall-menu.php:198
1711
+ msgid ""
1712
+ "This setting will add a directive in your .htaccess to disable access to the "
1713
+ "WordPress xmlrpc.php file which is responsible for the XML-RPC functionality "
1714
+ "such as pingbacks in WordPress."
1715
+ msgstr ""
1716
+ "Questa impostazione aggiunge una direttiva nel file .htaccess per "
1717
+ "disabilitare l'accesso al file xmlrpc.php WordPress che serve per la "
1718
+ "funzionalità di XML-RPC come pingbacks in WordPress."
1719
+
1720
+ # @ aiowpsecurity
1721
+ #: admin/wp-security-firewall-menu.php:199
1722
+ msgid ""
1723
+ "Hackers can exploit various pingback vulnerabilities in the WordPress XML-"
1724
+ "RPC API in a number of ways such as:"
1725
+ msgstr ""
1726
+ "Gli hacker possono sfruttare le varie vulnerabilità pingback in WordPress "
1727
+ "API XML-RPC in vari modi, ad esempio:"
1728
+
1729
+ # @ aiowpsecurity
1730
+ #: admin/wp-security-firewall-menu.php:200
1731
+ msgid "1) Denial of Service (DoS) attacks"
1732
+ msgstr "1) Attacchi Denial di Service (DoS)"
1733
+
1734
+ # @ aiowpsecurity
1735
+ #: admin/wp-security-firewall-menu.php:201
1736
+ msgid "2) Hacking internal routers."
1737
+ msgstr "2) Hacking router interni."
1738
+
1739
+ # @ aiowpsecurity
1740
+ #: admin/wp-security-firewall-menu.php:202
1741
+ msgid "3) Scanning ports in internal networks to get info from various hosts."
1742
+ msgstr ""
1743
+ "3) Scansione porte in reti interne per ottenere informazioni da vari host."
1744
+
1745
+ # @ aiowpsecurity
1746
+ #: admin/wp-security-firewall-menu.php:203
1747
+ msgid ""
1748
+ "Apart from the security protection benefit, this feature may also help "
1749
+ "reduce load on your server, particularly if your site currently has a lot of "
1750
+ "unwanted traffic hitting the XML-RPC API on your installation."
1751
+ msgstr ""
1752
+ "Oltre al beneficio di protezione di sicurezza, questa funzione può anche "
1753
+ "contribuire a ridurre il carico sul server, in particolare se il vostro sito "
1754
+ "ha attualmente un sacco di traffico indesiderato che colpisce l'API XML-RPC "
1755
+ "sulla tua installazione."
1756
+
1757
+ # @ aiowpsecurity
1758
+ #: admin/wp-security-firewall-menu.php:204
1759
+ msgid ""
1760
+ "NOTE: You should only enable this feature if you are not currently using the "
1761
+ "XML-RPC functionality on your WordPress installation."
1762
+ msgstr ""
1763
+ "NOTA: Si deve attivare questa funzione solo se non si sta utilizzando la "
1764
+ "funzionalità XML-RPC di WordPress."
1765
+
1766
+ # @ aiowpsecurity
1767
+ #: admin/wp-security-firewall-menu.php:211
1768
+ msgid "Save Basic Firewall Settings"
1769
+ msgstr "Salva Impostazioni Base Firewall"
1770
+
1771
+ # @ aiowpsecurity
1772
+ #: admin/wp-security-firewall-menu.php:283
1773
+ msgid ""
1774
+ "You have successfully saved the Additional Firewall Protection configuration"
1775
+ msgstr ""
1776
+ "Hai salvato con successo la configurazione Aggiuntiva di protezione firewall"
1777
+
1778
+ # @ aiowpsecurity
1779
+ #: admin/wp-security-firewall-menu.php:297
1780
+ msgid "Additional Firewall Protection"
1781
+ msgstr "Protezione Firewall Aggiuntiva"
1782
+
1783
+ # @ aiowpsecurity
1784
+ #: admin/wp-security-firewall-menu.php:301
1785
+ #, php-format
1786
+ msgid ""
1787
+ "Due to the nature of the code being inserted to the .htaccess file, this "
1788
+ "feature may break some functionality for certain plugins and you are "
1789
+ "therefore advised to take a %s of .htaccess before applying this "
1790
+ "configuration."
1791
+ msgstr ""
1792
+ "A causa della natura del codice che viene inserito nel file .htaccess, "
1793
+ "questa funzione potrebbe bloccare la funzionalità di alcuni plugin e si "
1794
+ "consiglia pertanto di salvare un %s di .htaccess prima di applicare questa "
1795
+ "configurazione."
1796
+
1797
+ # @ aiowpsecurity
1798
+ #: admin/wp-security-firewall-menu.php:303
1799
+ msgid ""
1800
+ "This feature allows you to activate more advanced firewall settings to your "
1801
+ "site."
1802
+ msgstr ""
1803
+ "Questa funzione consente di attivare le impostazioni del firewall più "
1804
+ "avanzate al tuo sito."
1805
+
1806
+ # @ aiowpsecurity
1807
+ #: admin/wp-security-firewall-menu.php:304
1808
+ msgid ""
1809
+ "The advanced firewall rules are applied via the insertion of special code to "
1810
+ "your currently active .htaccess file."
1811
+ msgstr ""
1812
+ "Le regole del firewall avanzate vengono applicate tramite l'inserimento di "
1813
+ "codice speciale per l'attuale file .htaccess attivo."
1814
+
1815
+ # @ aiowpsecurity
1816
+ #: admin/wp-security-firewall-menu.php:313
1817
+ msgid "Listing of Directory Contents"
1818
+ msgstr "Elenco Contenuti Directory"
1819
+
1820
+ # @ aiowpsecurity
1821
+ #: admin/wp-security-firewall-menu.php:322
1822
+ #: classes/grade-system/wp-security-feature-item-manager.php:88
1823
+ msgid "Disable Index Views"
1824
+ msgstr "Disabilita Vista Index"
1825
+
1826
+ # @ aiowpsecurity
1827
+ #: admin/wp-security-firewall-menu.php:325
1828
+ msgid "Check this if you want to disable directory and file listing."
1829
+ msgstr ""
1830
+ "Selezionare questa se si desidera disabilitare directory e elenco file."
1831
+
1832
+ # @ aiowpsecurity
1833
+ #: admin/wp-security-firewall-menu.php:330
1834
+ msgid ""
1835
+ "By default, an Apache server will allow the listing of the contents of a "
1836
+ "directory if it doesn't contain an index.php file."
1837
+ msgstr ""
1838
+ "Per impostazione predefinita, un server Apache, può elencare il contenuto di "
1839
+ "una directory se non contiene un file index.php."
1840
+
1841
+ # @ aiowpsecurity
1842
+ #: admin/wp-security-firewall-menu.php:332
1843
+ msgid "This feature will prevent the listing of contents for all directories."
1844
+ msgstr ""
1845
+ "Questa funzione impedisce di vedere l'elenco di contenuti per tutte le "
1846
+ "directory."
1847
+
1848
+ # @ aiowpsecurity
1849
+ #: admin/wp-security-firewall-menu.php:343
1850
+ msgid "Trace and Track"
1851
+ msgstr "Tracciamento e Monitoraggio"
1852
+
1853
+ # @ aiowpsecurity
1854
+ #: admin/wp-security-firewall-menu.php:352
1855
+ #: classes/grade-system/wp-security-feature-item-manager.php:89
1856
+ msgid "Disable Trace and Track"
1857
+ msgstr "Disattiva Tracciamento e Monitoraggio"
1858
+
1859
+ # @ aiowpsecurity
1860
+ #: admin/wp-security-firewall-menu.php:355
1861
+ msgid "Check this if you want to disable trace and track."
1862
+ msgstr "Seleziona questa per disabilitare tracciamento e monitoraraggio."
1863
+
1864
+ # @ aiowpsecurity
1865
+ #: admin/wp-security-firewall-menu.php:360
1866
+ msgid ""
1867
+ "HTTP Trace attack (XST) can be used to return header requests and grab "
1868
+ "cookies and other information."
1869
+ msgstr ""
1870
+ "Attacco Trace HTTP (XST) può essere utilizzato per trovare le richieste di "
1871
+ "intestazione, catturare cookie e e altre informazioni."
1872
+
1873
+ # @ aiowpsecurity
1874
+ #: admin/wp-security-firewall-menu.php:362
1875
+ msgid ""
1876
+ "This hacking technique is usually used together with cross site scripting "
1877
+ "attacks (XSS)."
1878
+ msgstr ""
1879
+ "Questa tecnica di hacking è di solito usato con attacchi cross site "
1880
+ "scripting (XSS)."
1881
+
1882
+ # @ aiowpsecurity
1883
+ #: admin/wp-security-firewall-menu.php:364
1884
+ msgid ""
1885
+ "Disabling trace and track on your site will help prevent HTTP Trace attacks."
1886
+ msgstr ""
1887
+ "Disabilitare il tracciamento e monitoraggio sul tuo sito aiuterà a prevenire "
1888
+ "gli attacchi di Trace HTTP."
1889
+
1890
+ # @ aiowpsecurity
1891
+ #: admin/wp-security-firewall-menu.php:373
1892
+ msgid "Proxy Comment Posting"
1893
+ msgstr "Proxy Pubblicazione Commenti"
1894
+
1895
+ # @ aiowpsecurity
1896
+ #: admin/wp-security-firewall-menu.php:383
1897
+ msgid "Forbid Proxy Comment Posting"
1898
+ msgstr "Vieta pubblicazione dei commenti via Proxy"
1899
+
1900
+ # @ aiowpsecurity
1901
+ #: admin/wp-security-firewall-menu.php:386
1902
+ msgid "Check this if you want to forbid proxy comment posting."
1903
+ msgstr ""
1904
+ "Seleziona questa casella se vuoi proibire pubblicazione commenti da proxy."
1905
+
1906
+ # @ aiowpsecurity
1907
+ #: admin/wp-security-firewall-menu.php:391
1908
+ msgid ""
1909
+ "This setting will deny any requests that use a proxy server when posting "
1910
+ "comments."
1911
+ msgstr ""
1912
+ "Con questa impostazione verrà rifiutata qualsiasi richiesta che utilizza un "
1913
+ "server proxy durante la pubblicazione di commenti."
1914
+
1915
+ # @ aiowpsecurity
1916
+ #: admin/wp-security-firewall-menu.php:392
1917
+ msgid ""
1918
+ "By forbidding proxy comments you are in effect eliminating some SPAM and "
1919
+ "other proxy requests."
1920
+ msgstr ""
1921
+ "Vietando commenti proxy si eliminano in effetti molti commenti spam e altre "
1922
+ "richieste proxy."
1923
+
1924
+ # @ aiowpsecurity
1925
+ #: admin/wp-security-firewall-menu.php:401
1926
+ msgid "Bad Query Strings"
1927
+ msgstr "Stringhe Query Dannose"
1928
+
1929
+ # @ aiowpsecurity
1930
+ #: admin/wp-security-firewall-menu.php:411
1931
+ msgid "Deny Bad Query Strings"
1932
+ msgstr "Nega Stringhe Query Dannose"
1933
+
1934
+ # @ aiowpsecurity
1935
+ #: admin/wp-security-firewall-menu.php:414
1936
+ msgid "This will help protect you against malicious queries via XSS."
1937
+ msgstr "Questo aiuterà a proteggere contro query maligne fatte tramite XSS."
1938
+
1939
+ # @ aiowpsecurity
1940
+ #: admin/wp-security-firewall-menu.php:419
1941
+ msgid ""
1942
+ "This feature will write rules in your .htaccess file to prevent malicious "
1943
+ "string attacks on your site using XSS."
1944
+ msgstr ""
1945
+ "Questa funzione scriverà regole nel tuo file .htaccess per prevenire "
1946
+ "attacchi dannosi sul tuo sito utilizzando query XSS."
1947
+
1948
+ # @ aiowpsecurity
1949
+ #: admin/wp-security-firewall-menu.php:420
1950
+ msgid ""
1951
+ "NOTE: Some of these strings might be used for plugins or themes and hence "
1952
+ "this might break some functionality."
1953
+ msgstr ""
1954
+ "NOTA: Alcune di queste stringhe potrebbero essere usate per i plugin o temi "
1955
+ "e quindi questo potrebbe rompere alcune funzionalità."
1956
+
1957
+ # @ aiowpsecurity
1958
+ #: admin/wp-security-firewall-menu.php:421
1959
+ #: admin/wp-security-firewall-menu.php:451
1960
+ msgid ""
1961
+ "You are therefore strongly advised to take a backup of your active .htaccess "
1962
+ "file before applying this feature."
1963
+ msgstr ""
1964
+ "Si raccomanda pertanto di fare un backup del file .htaccess prima di "
1965
+ "applicare questa funzione."
1966
+
1967
+ # @ aiowpsecurity
1968
+ #: admin/wp-security-firewall-menu.php:430
1969
+ #: classes/grade-system/wp-security-feature-item-manager.php:92
1970
+ msgid "Advanced Character String Filter"
1971
+ msgstr "Filtro Avanzato Stringa Caratteri "
1972
+
1973
+ # @ aiowpsecurity
1974
+ #: admin/wp-security-firewall-menu.php:440
1975
+ msgid "Enable Advanced Character String Filter"
1976
+ msgstr "Attiva Filtro Avanzato Stringa Caratteri"
1977
+
1978
+ # @ aiowpsecurity
1979
+ #: admin/wp-security-firewall-menu.php:443
1980
+ msgid "This will block bad character matches from XSS."
1981
+ msgstr "Questo bloccherà partite di caratteri dannosi da XSS."
1982
+
1983
+ # @ aiowpsecurity
1984
+ #: admin/wp-security-firewall-menu.php:448
1985
+ msgid ""
1986
+ "This is an advanced character string filter to prevent malicious string "
1987
+ "attacks on your site coming from Cross Site Scripting (XSS)."
1988
+ msgstr ""
1989
+ "Si tratta di un filtro stringa di caratteri avanzato per prevenire attacchi "
1990
+ "di stringhe dannose sul tuo sito provenienti da Cross Site Scripting (XSS)."
1991
+
1992
+ # @ aiowpsecurity
1993
+ #: admin/wp-security-firewall-menu.php:449
1994
+ msgid ""
1995
+ "This setting matches for common malicious string patterns and exploits and "
1996
+ "will produce a 403 error for the hacker attempting the query."
1997
+ msgstr ""
1998
+ "Questa impostazione produrrà un errore 403 per l'hacker che tenta la query."
1999
+
2000
+ # @ aiowpsecurity
2001
+ #: admin/wp-security-firewall-menu.php:450
2002
+ msgid "NOTE: Some strings for this setting might break some functionality."
2003
+ msgstr ""
2004
+ "NOTA: Alcune stringhe con questa impostazione potrebbero rompere alcune "
2005
+ "funzionalità."
2006
+
2007
+ # @ aiowpsecurity
2008
+ #: admin/wp-security-firewall-menu.php:459
2009
+ msgid "Save Additional Firewall Settings"
2010
+ msgstr "Salva Impostazioni Aggiuntive Firewall"
2011
+
2012
+ # @ aiowpsecurity
2013
+ #: admin/wp-security-firewall-menu.php:494
2014
+ msgid "You have successfully saved the 5G Firewall Protection configuration"
2015
+ msgstr ""
2016
+ "Hai salvato con successo la configurazione della protezione firewall 5G"
2017
+
2018
+ # @ aiowpsecurity
2019
+ #: admin/wp-security-firewall-menu.php:507
2020
+ #, php-format
2021
+ msgid ""
2022
+ "This feature allows you to activate the 5G firewall security protection "
2023
+ "rules designed and produced by %s."
2024
+ msgstr ""
2025
+ "Questa funzione consente di attivare le regole di tutela della sicurezza del "
2026
+ "firewall 5G progettato e prodotto da %s."
2027
+
2028
+ # @ aiowpsecurity
2029
+ #: admin/wp-security-firewall-menu.php:508
2030
+ msgid ""
2031
+ "The 5G Blacklist is a simple, flexible blacklist that helps reduce the "
2032
+ "number of malicious URL requests that hit your website."
2033
+ msgstr ""
2034
+ "Il 5G Blacklist è una semplice lista nera, flessibile, che aiuta a ridurre "
2035
+ "il numero di richieste da URL malevoli che ha colpito il vostro sito web."
2036
+
2037
+ # @ aiowpsecurity
2038
+ #: admin/wp-security-firewall-menu.php:509
2039
+ msgid ""
2040
+ "The added advantage of applying the 5G firewall to your site is that it has "
2041
+ "been tested and confirmed by the people at PerishablePress.com to be an "
2042
+ "optimal and least disruptive set of .htaccess security rules for general WP "
2043
+ "sites running on an Apache server or similar."
2044
+ msgstr ""
2045
+ "Il vantaggio di applicare il firewall 5G al tuo sito è che esso è stato "
2046
+ "testato e confermato dal popolo PerishablePress.com come un insieme ottimale "
2047
+ "e meno dirompente di regole di sicurezza .htaccess per siti WP generali in "
2048
+ "esecuzione su server Apache o simili ."
2049
+
2050
+ # @ aiowpsecurity
2051
+ #: admin/wp-security-firewall-menu.php:510
2052
+ #, php-format
2053
+ msgid ""
2054
+ "Therefore the 5G firewall rules should not have any impact on your site's "
2055
+ "general functionality but if you wish you can take a %s of your .htaccess "
2056
+ "file before proceeding."
2057
+ msgstr ""
2058
+ "Pertanto le regole del firewall 5G non dovrebbero avere alcun impatto sulla "
2059
+ "funzionalità generale del tuo sito, ma sempre meglio salvare un %s del file ."
2060
+ "htaccess prima di procedere."
2061
+
2062
+ # @ aiowpsecurity
2063
+ #: admin/wp-security-firewall-menu.php:516
2064
+ msgid "5G Blacklist/Firewall Settings"
2065
+ msgstr "Impostazioni Blacklist/Firewall 5G"
2066
+
2067
+ # @ aiowpsecurity
2068
+ #: admin/wp-security-firewall-menu.php:528
2069
+ msgid "Enable 5G Firewall Protection"
2070
+ msgstr "Abilita Protezione Firewall 5G"
2071
+
2072
+ # @ aiowpsecurity
2073
+ #: admin/wp-security-firewall-menu.php:531
2074
+ msgid ""
2075
+ "Check this if you want to apply the 5G Blacklist firewall protection from "
2076
+ "perishablepress.com to your site."
2077
+ msgstr ""
2078
+ "Seleziona questa casella se si vuoi applicare la protezione del firewall 5G "
2079
+ "Blacklist di perishablepress.com al tuo sito."
2080
+
2081
+ # @ aiowpsecurity
2082
+ #: admin/wp-security-firewall-menu.php:535
2083
+ msgid ""
2084
+ "This setting will implement the 5G security firewall protection mechanisms "
2085
+ "on your site which include the following things:"
2086
+ msgstr ""
2087
+ "Questa impostazione darà esecuzione ai meccanismi di protezione 5G di "
2088
+ "sicurezza del firewall sul vostro sito, che comprendono le seguenti cose:"
2089
+
2090
+ # @ aiowpsecurity
2091
+ #: admin/wp-security-firewall-menu.php:536
2092
+ msgid "1) Block forbidden characters commonly used in exploitative attacks."
2093
+ msgstr ""
2094
+ "1) Bloccare i caratteri proibiti comunemente utilizzati in attacchi "
2095
+ "esplorativi."
2096
+
2097
+ # @ aiowpsecurity
2098
+ #: admin/wp-security-firewall-menu.php:537
2099
+ msgid "2) Block malicious encoded URL characters such as the \".css(\" string."
2100
+ msgstr ""
2101
+ "2) Bloccare URL codificati con caratteri maligni come stringa \".css (\" ."
2102
+
2103
+ # @ aiowpsecurity
2104
+ #: admin/wp-security-firewall-menu.php:538
2105
+ msgid ""
2106
+ "3) Guard against the common patterns and specific exploits in the root "
2107
+ "portion of targeted URLs."
2108
+ msgstr ""
2109
+ "3) Protezione contro i modelli comuni e specifici exploit nella root "
2110
+ "principale di URL mirati."
2111
+
2112
+ # @ aiowpsecurity
2113
+ #: admin/wp-security-firewall-menu.php:539
2114
+ msgid ""
2115
+ "4) Stop attackers from manipulating query strings by disallowing illicit "
2116
+ "characters."
2117
+ msgstr ""
2118
+ "4) Arrestare tentativi di manipolazione stringhe di query vietando caratteri "
2119
+ "illeciti."
2120
+
2121
+ # @ aiowpsecurity
2122
+ #: admin/wp-security-firewall-menu.php:540
2123
+ msgid "....and much more."
2124
+ msgstr "...e molto altro."
2125
+
2126
+ # @ aiowpsecurity
2127
+ #: admin/wp-security-firewall-menu.php:546
2128
+ msgid "Save 5G Firewall Settings"
2129
+ msgstr "Salva Impostazioni 5G Firewall"
2130
+
2131
+ # @ aiowpsecurity
2132
+ #: admin/wp-security-brute-force-menu.php:217
2133
+ msgid ""
2134
+ "Settings have not been saved - your secret word must consist only of "
2135
+ "alphanumeric characters, ie, letters and/or numbers only!"
2136
+ msgstr ""
2137
+ "Le impostazioni non sono state salvate - la tua parola segreta deve essere "
2138
+ "composta solo da caratteri alfanumerici, cioè lettere e/o solo numeri!"
2139
+
2140
+ # @ aiowpsecurity
2141
+ #: admin/wp-security-brute-force-menu.php:236
2142
+ msgid ""
2143
+ "You have successfully enabled the cookie based brute force prevention feature"
2144
+ msgstr ""
2145
+ "È stata attivata con successo la funzione di prevenzione base brute force"
2146
+
2147
+ # @ aiowpsecurity
2148
+ #: admin/wp-security-brute-force-menu.php:237
2149
+ msgid ""
2150
+ "From now on you will need to log into your WP Admin using the following URL:"
2151
+ msgstr ""
2152
+ "Da ora in poi per accedere al pannello Admin WP dovrai usare il seguente URL:"
2153
+
2154
+ # @ aiowpsecurity
2155
+ #: admin/wp-security-brute-force-menu.php:239
2156
+ msgid ""
2157
+ "It is important that you save this URL value somewhere in case you forget "
2158
+ "it, OR,"
2159
+ msgstr ""
2160
+ "Consiglio di salvare il nuovo URL di accesso nel caso dovessi dimenticarlo, "
2161
+ "O,"
2162
+
2163
+ # @ aiowpsecurity
2164
+ #: admin/wp-security-brute-force-menu.php:240
2165
+ #, php-format
2166
+ msgid "simply remember to add a \"?%s=1\" to your current site URL address."
2167
+ msgstr ""
2168
+ "basta ti ricordi di aggiungere \"?%s=1\" al tuo attuale indirizzo URL del "
2169
+ "sito."
2170
+
2171
+ # @ aiowpsecurity
2172
+ #: admin/wp-security-brute-force-menu.php:246
2173
+ msgid ""
2174
+ "You have successfully saved cookie based brute force prevention feature "
2175
+ "settings."
2176
+ msgstr ""
2177
+ "Hai salvato con successo il cookie per le impostazioni base di prevenzione "
2178
+ "brute force."
2179
+
2180
+ # @ aiowpsecurity
2181
+ #: admin/wp-security-brute-force-menu.php:291
2182
+ msgid "Brute Force Prevention Firewall Settings"
2183
+ msgstr "Impostazioni Prevenzione Brute Force Firewall"
2184
+
2185
+ # @ aiowpsecurity
2186
+ #: admin/wp-security-brute-force-menu.php:296
2187
+ msgid ""
2188
+ "A Brute Force Attack is when a hacker tries many combinations of usernames "
2189
+ "and passwords until they succeed in guessing the right combination."
2190
+ msgstr ""
2191
+ "Un attacco brute force è quando un hacker tenta molte combinazioni di nomi "
2192
+ "utente e password fino a quando non riescono a indovinare quella giusta."
2193
+
2194
+ # @ aiowpsecurity
2195
+ #: admin/wp-security-brute-force-menu.php:297
2196
+ msgid ""
2197
+ "Due to the fact that at any one time there may be many concurrent login "
2198
+ "attempts occurring on your site via malicious automated robots, this also "
2199
+ "has a negative impact on your server's memory and performance."
2200
+ msgstr ""
2201
+ "A causa del fatto che in qualsiasi momento ci possono essere molti tentativi "
2202
+ "di accesso simultanei che si verificano sul tuo sito tramite robot "
2203
+ "automatizzati maligni, anche questo ha un impatto negativo sulla memoria e "
2204
+ "le prestazioni del server."
2205
+
2206
+ # @ aiowpsecurity
2207
+ #: admin/wp-security-brute-force-menu.php:298
2208
+ msgid ""
2209
+ "The features in this tab will stop the majority of Brute Force Login Attacks "
2210
+ "at the .htaccess level thus providing even better protection for your WP "
2211
+ "login page and also reducing the load on your server because the system does "
2212
+ "not have to run PHP code to process the login attempts."
2213
+ msgstr ""
2214
+ "Le funzionalità di questa scheda ferma la maggior parte degli attacchi di "
2215
+ "brute force di login a livello .htaccess fornendo così una protezione ancora "
2216
+ "migliore per la pagina di login WP e riducendo anche il carico sul server, "
2217
+ "perché il sistema non ha bisogno di eseguire codice PHP per elaborare "
2218
+ "tentativi di accesso."
2219
+
2220
+ # @ aiowpsecurity
2221
+ #: admin/wp-security-brute-force-menu.php:305
2222
+ #, php-format
2223
+ msgid ""
2224
+ "Even though this feature should not have any impact on your site's general "
2225
+ "functionality <strong>you are strongly encouraged to take a %s of your ."
2226
+ "htaccess file before proceeding</strong>."
2227
+ msgstr ""
2228
+ "Anche se questa caratteristica non dovrebbe avere alcun impatto sulla "
2229
+ "funzionalità generale del tuo sito <strong> è vivamente consigliato fare una "
2230
+ "%s del file .htaccess prima di procedere</strong>."
2231
+
2232
+ # @ aiowpsecurity
2233
+ #: admin/wp-security-brute-force-menu.php:307
2234
+ #, php-format
2235
+ msgid ""
2236
+ "To learn more about how to use this feature please watch the following %s."
2237
+ msgstr ""
2238
+ "Per ulteriori informazioni su come utilizzare questa funzionalità si prega "
2239
+ "di guardare il seguente %s."
2240
+
2241
+ # @ aiowpsecurity
2242
+ #: admin/wp-security-brute-force-menu.php:328
2243
+ msgid "Cookie Based Brute Force Login Prevention"
2244
+ msgstr "Cookie Brute Force Prevenzione Base Accesso."
2245
+
2246
+ # @ aiowpsecurity
2247
+ #: admin/wp-security-brute-force-menu.php:339
2248
+ #: classes/grade-system/wp-security-feature-item-manager.php:87
2249
+ msgid "Enable Brute Force Attack Prevention"
2250
+ msgstr "Abilita Prevenzione Attacchi Brute Force"
2251
+
2252
+ # @ aiowpsecurity
2253
+ #: admin/wp-security-brute-force-menu.php:342
2254
+ msgid ""
2255
+ "Check this if you want to protect your login page from Brute Force Attack."
2256
+ msgstr ""
2257
+ "Seleziona questa casella per proteggere la pagina di login da attacchi brute "
2258
+ "force."
2259
+
2260
+ # @ aiowpsecurity
2261
+ #: admin/wp-security-brute-force-menu.php:347
2262
+ msgid ""
2263
+ "This feature will deny access to your WordPress login page for all people "
2264
+ "except those who have a special cookie in their browser."
2265
+ msgstr ""
2266
+ "Questa funzione nega l'accesso alla pagina di login di WordPress per tutte "
2267
+ "le persone, tranne coloro che hanno un cookie speciale nel proprio browser."
2268
+
2269
+ # @ aiowpsecurity
2270
+ #: admin/wp-security-brute-force-menu.php:349
2271
+ msgid "To use this feature do the following:"
2272
+ msgstr "Per utilizzare questa funzione, attenersi alla seguente procedura:"
2273
+
2274
+ # @ aiowpsecurity
2275
+ #: admin/wp-security-brute-force-menu.php:351
2276
+ msgid "1) Enable the checkbox."
2277
+ msgstr "1) Attivare la casella di controllo."
2278
+
2279
+ # @ aiowpsecurity
2280
+ #: admin/wp-security-brute-force-menu.php:353
2281
+ msgid ""
2282
+ "2) Enter a secret word consisting of alphanumeric characters which will be "
2283
+ "difficult to guess. This secret word will be useful whenever you need to "
2284
+ "know the special URL which you will use to access the login page (see point "
2285
+ "below)."
2286
+ msgstr ""
2287
+ "2) Inserire una parola segreta composta da caratteri alfanumerici difficile "
2288
+ "da indovinare. Questa parola segreta sarà utile ogni volta che è necessario "
2289
+ "conoscere l'URL speciale che verrà utilizzato per accedere alla pagina di "
2290
+ "login (vedi punto seguente)."
2291
+
2292
+ # @ aiowpsecurity
2293
+ #: admin/wp-security-brute-force-menu.php:355
2294
+ msgid ""
2295
+ "3) You will then be provided with a special login URL. You will need to use "
2296
+ "this URL to login to your WordPress site instead of the usual login URL. "
2297
+ "NOTE: The system will deposit a special cookie in your browser which will "
2298
+ "allow you access to the WordPress administration login page."
2299
+ msgstr ""
2300
+ "3) Ti verrà fornito un URL di accesso speciale. È necessario utilizzare "
2301
+ "questo URL per accedere al sito WordPress invece del solito URL di login. "
2302
+ "NOTA: Il sistema deposita un cookie speciale nel browser che permetterà di "
2303
+ "accedere alla pagina di login di amministrazione WordPress."
2304
+
2305
+ # @ aiowpsecurity
2306
+ #: admin/wp-security-brute-force-menu.php:357
2307
+ msgid ""
2308
+ "Any person trying to access your login page who does not have the special "
2309
+ "cookie in their browser will be automatically blocked."
2310
+ msgstr ""
2311
+ "Qualsiasi persona che tenta di accedere alla pagina di login che non ha il "
2312
+ "cookie speciale nel browser viene bloccato automaticamente."
2313
+
2314
+ # @ aiowpsecurity
2315
+ #: admin/wp-security-brute-force-menu.php:364
2316
+ msgid "Secret Word"
2317
+ msgstr "Parola Segreta"
2318
+
2319
+ # @ aiowpsecurity
2320
+ #: admin/wp-security-brute-force-menu.php:366
2321
+ msgid ""
2322
+ "Choose a secret word consisting of alphanumeric characters which you can use "
2323
+ "to access your special URL. Your are highly encouraged to choose a word "
2324
+ "which will be difficult to guess."
2325
+ msgstr ""
2326
+ "Scegli una parola segreta composta da caratteri alfanumerici che è possibile "
2327
+ "utilizzare per accedere al tuo URL speciale. Mi raccomando di scegliere una "
2328
+ "parola molto difficile da indovinare."
2329
+
2330
+ # @ aiowpsecurity
2331
+ #: admin/wp-security-brute-force-menu.php:370
2332
+ msgid "Re-direct URL"
2333
+ msgstr "URL Re-direct"
2334
+
2335
+ # @ aiowpsecurity
2336
+ #: admin/wp-security-brute-force-menu.php:374
2337
+ msgid ""
2338
+ "Specify a URL to redirect a hacker to when they try to access your WordPress "
2339
+ "login page."
2340
+ msgstr ""
2341
+ "Specificare un URL per reindirizzare un hacker quando cerca di accedere alla "
2342
+ "pagina di login di WordPress"
2343
+
2344
+ # @ aiowpsecurity
2345
+ #: admin/wp-security-brute-force-menu.php:381
2346
+ msgid ""
2347
+ "The URL specified here can be any site's URL and does not have to be your "
2348
+ "own. For example you can be as creative as you like and send hackers to the "
2349
+ "CIA or NSA home page."
2350
+ msgstr ""
2351
+ "L'URL specificato qui può essere un URL di qualsiasi sito e non deve essere "
2352
+ "per forza il tuo. Ad esempio puoi usare la fantasia e inviare l'hacker al "
2353
+ "sito della polizia postale alla CIA o quello che preferisci."
2354
+
2355
+ # @ aiowpsecurity
2356
+ #: admin/wp-security-brute-force-menu.php:383
2357
+ msgid ""
2358
+ "This field will default to: http://127.0.0.1 if you do not enter a value."
2359
+ msgstr ""
2360
+ "Se non inserisci un valore questo campo sarà di default impostato a: "
2361
+ "http://127.0.0.1"
2362
+
2363
+ # @ aiowpsecurity
2364
+ #: admin/wp-security-brute-force-menu.php:385
2365
+ msgid "Useful Tip:"
2366
+ msgstr "Suggerimento utile:"
2367
+
2368
+ # @ aiowpsecurity
2369
+ #: admin/wp-security-brute-force-menu.php:387
2370
+ msgid ""
2371
+ "It's a good idea to not redirect attempted brute force login attempts to "
2372
+ "your site because it increases the load on your server."
2373
+ msgstr ""
2374
+ "Una buona idea è di non reindirizzare i tentativi di attacco brute force al "
2375
+ "tuo sito, perché il carico sul server aumenta."
2376
+
2377
+ # @ aiowpsecurity
2378
+ #: admin/wp-security-brute-force-menu.php:389
2379
+ msgid ""
2380
+ "Redirecting a hacker or malicious bot back to \"http://127.0.0.1\" is ideal "
2381
+ "because it deflects them back to their own local host and puts the load on "
2382
+ "their server instead of yours."
2383
+ msgstr ""
2384
+ "Reindirizzare un hacker o bot maligni a \"http://127.0.0.1\" è l'ideale "
2385
+ "perché li devia indietro al proprio host locale e mette il carico sui loro "
2386
+ "server al posto del tuo."
2387
+
2388
+ # @ aiowpsecurity
2389
+ #: admin/wp-security-brute-force-menu.php:396
2390
+ msgid "My Site Has Posts Or Pages Which Are Password Protected"
2391
+ msgstr "Il mio sito ha post o pagine che sono protetti da password"
2392
+
2393
+ # @ aiowpsecurity
2394
+ #: admin/wp-security-brute-force-menu.php:399
2395
+ msgid ""
2396
+ "Check this if you are using the native WordPress password protection feature "
2397
+ "for some or all of your blog posts or pages."
2398
+ msgstr ""
2399
+ "Seleziona questa casella se si utilizza la funzione di protezione con "
2400
+ "password nativa di WordPress per alcuni o tutti i post/pagine del tuo blog."
2401
+
2402
+ # @ aiowpsecurity
2403
+ #: admin/wp-security-brute-force-menu.php:404
2404
+ msgid ""
2405
+ "In the cases where you are protecting some of your posts or pages using the "
2406
+ "in-built WordPress password protection feature, a few extra lines of "
2407
+ "directives and exceptions need to be added to your .htacces file so that "
2408
+ "people trying to access pages are not automatically blocked."
2409
+ msgstr ""
2410
+ "Nei casi in cui si stanno proteggendo alcuni post o pagine tramite la "
2411
+ "funzione di protezione con password di WordPress, poche linee in più di "
2412
+ "direttive e eccezioni devono essere aggiunte al file .htacces in modo che le "
2413
+ "persone che cercano di accedere alle pagine non siano automaticamente "
2414
+ "bloccate."
2415
+
2416
+ # @ aiowpsecurity
2417
+ #: admin/wp-security-brute-force-menu.php:406
2418
+ msgid ""
2419
+ "By enabling this checkbox the plugin will add the necessary rules and "
2420
+ "exceptions to your .htacces file so that people trying to access these pages "
2421
+ "are not automatically blocked."
2422
+ msgstr ""
2423
+ "Abilitando questa casella il plugin aggiungerà le regole e le eccezioni "
2424
+ "necessarie per il file .htacces in modo che le persone che cercano di "
2425
+ "accedere a queste pagine non vengano automaticamente bloccate."
2426
+
2427
+ # @ aiowpsecurity
2428
+ #: admin/wp-security-brute-force-menu.php:408
2429
+ msgid "Helpful Tip:"
2430
+ msgstr "Suggerimento utile:"
2431
+
2432
+ # @ aiowpsecurity
2433
+ #: admin/wp-security-brute-force-menu.php:410
2434
+ msgid ""
2435
+ "If you do not use the WordPress password protection feature for your posts "
2436
+ "or pages then it is highly recommended that you leave this checkbox disabled."
2437
+ msgstr ""
2438
+ "Se non si utilizza la funzione di protezione con password di WordPress per i "
2439
+ "tuoi post o le pagine, allora si consiglia vivamente di lasciare questa "
2440
+ "casella di controllo disattivata."
2441
+
2442
+ # @ aiowpsecurity
2443
+ #: admin/wp-security-brute-force-menu.php:417
2444
+ msgid "My Site Has a Theme or Plugins Which Use AJAX"
2445
+ msgstr "Il mio sito ha un tema o plugin che utilizzano AJAX"
2446
+
2447
+ # @ aiowpsecurity
2448
+ #: admin/wp-security-brute-force-menu.php:420
2449
+ msgid "Check this if your site uses AJAX functionality."
2450
+ msgstr "Seleziona questa casella se il sito utilizza funzionalità AJAX."
2451
+
2452
+ # @ aiowpsecurity
2453
+ #: admin/wp-security-brute-force-menu.php:425
2454
+ msgid ""
2455
+ "In the cases where your WordPress installation has a theme or plugins which "
2456
+ "use AJAX, a few extra lines of directives and exceptions need to be added to "
2457
+ "your .htacces file to prevent AJAX requests from being automatically blocked "
2458
+ "by the brute force prevention feature."
2459
+ msgstr ""
2460
+ "Nei casi in cui l'installazione di WordPress ha un tema o plugin che usano "
2461
+ "AJAX, poche linee in più di direttive e eccezioni devono essere aggiunte al "
2462
+ "file .htacces per evitare che le richieste AJAX vengano bloccate "
2463
+ "automaticamente dalla funzione di prevenzione brute force."
2464
+
2465
+ # @ aiowpsecurity
2466
+ #: admin/wp-security-brute-force-menu.php:427
2467
+ msgid ""
2468
+ "By enabling this checkbox the plugin will add the necessary rules and "
2469
+ "exceptions to your .htacces file so that AJAX operations will work as "
2470
+ "expected."
2471
+ msgstr ""
2472
+ "Abilitando questa casella il plugin aggiungerà le regole e le eccezioni "
2473
+ "necessarie nel file .htacces in modo che le operazioni AJAX funzioneranno "
2474
+ "come previsto."
2475
+
2476
+ # @ aiowpsecurity
2477
+ #: admin/wp-security-brute-force-menu.php:442
2478
+ msgid "The cookie test was successful. You can now enable this feature."
2479
+ msgstr ""
2480
+ "Il Test cookie ha avuto successo. Ora è possibile attivare questa funzione."
2481
+
2482
+ # @ aiowpsecurity
2483
+ #: admin/wp-security-brute-force-menu.php:445
2484
+ msgid "Save Feature Settings"
2485
+ msgstr "Sala Impostazioni Caratteristiche"
2486
+
2487
+ # @ aiowpsecurity
2488
+ #: admin/wp-security-brute-force-menu.php:452
2489
+ msgid ""
2490
+ "The cookie test failed on this server. So this feature cannot be used on "
2491
+ "this site."
2492
+ msgstr ""
2493
+ "La provacookie non è riuscita su questo server. Quindi, questa funzione non "
2494
+ "può essere utilizzata in questo sito."
2495
+
2496
+ # @ aiowpsecurity
2497
+ #: admin/wp-security-brute-force-menu.php:457
2498
+ msgid ""
2499
+ "Before using this feature you are required to perform a cookie test first. "
2500
+ "This is to make sure that your browser cookie is working correctly and that "
2501
+ "you won't lock yourself out."
2502
+ msgstr ""
2503
+ "Prima di utilizzare questa funzione viene richiesto di eseguire un test "
2504
+ "cookie. Questo per fare verificare che il cookie del browser funziona "
2505
+ "correttamente e non rischi di rimanere fuori."
2506
+
2507
+ # @ aiowpsecurity
2508
+ #: admin/wp-security-brute-force-menu.php:459
2509
+ msgid "Perform Cookie Test"
2510
+ msgstr "Esegui Test Cookie"
2511
+
2512
+ # @ aiowpsecurity
2513
+ #: admin/wp-security-list-404.php:108
2514
+ #: admin/wp-security-list-acct-activity.php:79
2515
+ #: admin/wp-security-list-comment-spammer-ip.php:86
2516
+ #: admin/wp-security-list-locked-ip.php:82
2517
+ #: admin/wp-security-list-locked-ip.php:93
2518
+ #: admin/wp-security-list-login-fails.php:78
2519
+ #: admin/wp-security-list-registered-users.php:82
2520
+ #: admin/wp-security-list-registered-users.php:93
2521
+ msgid "Please select some records using the checkboxes"
2522
+ msgstr ""
2523
+ "Si prega di selezionare alcuni record utilizzando le caselle di controllo"
2524
+
2525
+ # @ aiowpsecurity
2526
+ #: admin/wp-security-list-acct-activity.php:107
2527
+ #: admin/wp-security-list-login-fails.php:107
2528
+ msgid "The selected entries were deleted successfully!"
2529
+ msgstr "Le voci selezionate sono state cancellate con successo!"
2530
+
2531
+ # @ aiowpsecurity
2532
+ #: admin/wp-security-list-acct-activity.php:120
2533
+ #: admin/wp-security-list-login-fails.php:119
2534
+ msgid "The selected entry was deleted successfully!"
2535
+ msgstr "La voce selezionata è stata eliminata con successo!"
2536
+
2537
+ # @ aiowpsecurity
2538
+ #: admin/wp-security-list-comment-spammer-ip.php:139
2539
+ msgid ""
2540
+ "The selected IP addresses were saved in the blacklist configuration settings."
2541
+ msgstr ""
2542
+ "Gli indirizzi IP selezionati sono stati salvati nelle impostazioni di "
2543
+ "configurazione blacklist."
2544
+
2545
+ # @ aiowpsecurity
2546
+ #: admin/wp-security-list-comment-spammer-ip.php:153
2547
+ msgid ""
2548
+ "The .htaccess file was successfully modified to include the selected IP "
2549
+ "addresses."
2550
+ msgstr ""
2551
+ "Il file .htaccess è stato modificato correttamente per includere gli "
2552
+ "indirizzi IP selezionati."
2553
+
2554
+ # @ aiowpsecurity
2555
+ #: admin/wp-security-list-comment-spammer-ip.php:159
2556
+ msgid ""
2557
+ "NOTE: The .htaccess file was not modified because you have disabled the "
2558
+ "\"Enable IP or User Agent Blacklisting\" check box."
2559
+ msgstr ""
2560
+ "NOTE: Il file .htaccess non è stata modificato perché è stata disattivata la "
2561
+ "casella \"Abilita IP o User Agent Blacklisting\"."
2562
+
2563
+ # @ aiowpsecurity
2564
+ #: admin/wp-security-list-comment-spammer-ip.php:160
2565
+ #, php-format
2566
+ msgid ""
2567
+ "To block these IP addresses you will need to enable the above flag in the %s "
2568
+ "menu"
2569
+ msgstr ""
2570
+ "Per bloccare questi indirizzi IP è necessario attivare il flag sopra nel "
2571
+ "menù %s"
2572
+
2573
+ # @ aiowpsecurity
2574
+ #: admin/wp-security-list-registered-users.php:135
2575
+ msgid "The selected accounts were approved successfully!"
2576
+ msgstr "Gli account selezionati sono stati approvati con successo!"
2577
+
2578
+ # @ aiowpsecurity
2579
+ #: admin/wp-security-list-registered-users.php:147
2580
+ msgid "The selected account was approved successfully!"
2581
+ msgstr "Gli account selezionati sono stati approvati con successo!"
2582
+
2583
+ # @ aiowpsecurity
2584
+ #: admin/wp-security-list-registered-users.php:176
2585
+ msgid "The selected accounts were deleted successfully!"
2586
+ msgstr "Gli account selezionati sono stati approvati con successo!"
2587
+
2588
+ # @ aiowpsecurity
2589
+ #: admin/wp-security-list-registered-users.php:184
2590
+ msgid "The selected account was deleted successfully!"
2591
+ msgstr "Gli account selezionati sono stati approvati con successo!"
2592
+
2593
+ # @ aiowpsecurity
2594
+ #: admin/wp-security-maintenance-menu.php:22
2595
+ msgid "Visitor Lockout"
2596
+ msgstr "Visitatori Bloccati"
2597
+
2598
+ # @ aiowpsecurity
2599
+ #: admin/wp-security-maintenance-menu.php:88
2600
+ msgid "Site lockout feature settings saved!"
2601
+ msgstr "Impostazioni funzioni blocco sito salvate con successo!"
2602
+
2603
+ # @ aiowpsecurity
2604
+ #: admin/wp-security-maintenance-menu.php:93
2605
+ msgid "General Visitor Lockout"
2606
+ msgstr "Visitatori Bloccati Generale"
2607
+
2608
+ # @ aiowpsecurity
2609
+ #: admin/wp-security-maintenance-menu.php:99
2610
+ msgid ""
2611
+ "This feature allows you to put your site into \"maintenance mode\" by "
2612
+ "locking down the front-end to all visitors except logged in users with super "
2613
+ "admin privileges."
2614
+ msgstr ""
2615
+ "Questa funzione consente di mettere il sito in \"modalità manutenzione\" "
2616
+ "bloccando il front-end a tutti i visitatori, tranne gli utenti registrati "
2617
+ "con privilegi di super amministratore."
2618
+
2619
+ # @ aiowpsecurity
2620
+ #: admin/wp-security-maintenance-menu.php:100
2621
+ msgid ""
2622
+ "Locking your site down to general visitors can be useful if you are "
2623
+ "investigating some issues on your site or perhaps you might be doing some "
2624
+ "maintenance and wish to keep out all traffic for security reasons."
2625
+ msgstr ""
2626
+ "Bloccare il sito per i visitatori generali può essere utile se si stanno "
2627
+ "indagando alcuni problemi sul sito o forse si vuole fare un po' di "
2628
+ "manutenzione e voler tenere fuori tutto il traffico per motivi di sicurezza."
2629
+
2630
+ # @ aiowpsecurity
2631
+ #: admin/wp-security-maintenance-menu.php:105
2632
+ msgid "Enable Front-end Lockout"
2633
+ msgstr "Attiva Blocco Front-end"
2634
+
2635
+ # @ aiowpsecurity
2636
+ #: admin/wp-security-maintenance-menu.php:108
2637
+ msgid ""
2638
+ "Check this if you want all visitors except those who are logged in as "
2639
+ "administrator to be locked out of the front-end of your site."
2640
+ msgstr ""
2641
+ "Seleziona questa casella se desideri che tutti i visitatori, ad eccezione di "
2642
+ "chi ha effettuato l'accesso come amministratore, siano bloccati fuori dal "
2643
+ "front-end del tuo sito."
2644
+
2645
+ # @ aiowpsecurity
2646
+ #: admin/wp-security-maintenance-menu.php:112
2647
+ msgid "Enter a Message:"
2648
+ msgstr "Inserisci Messaggio:"
2649
+
2650
+ # @ aiowpsecurity
2651
+ #: admin/wp-security-maintenance-menu.php:124
2652
+ msgid ""
2653
+ "Enter a message you wish to display to visitors when your site is in "
2654
+ "maintenance mode."
2655
+ msgstr ""
2656
+ "Immettere un messaggio che si desidera mostrare ai visitatori quando il sito "
2657
+ "è in modalità manutenzione."
2658
+
2659
+ # @ default
2660
+ #: admin/wp-security-maintenance-menu.php:131
2661
+ msgid "Save Site Lockout Settings"
2662
+ msgstr "Salva Impostazioni Blocco Sito"
2663
+
2664
+ # @ aiowpsecurity
2665
+ #: admin/wp-security-settings-menu.php:25
2666
+ msgid "General Settings"
2667
+ msgstr "Impostazioni Generali"
2668
+
2669
+ # @ aiowpsecurity
2670
+ #: admin/wp-security-settings-menu.php:28
2671
+ msgid "WP Meta Info"
2672
+ msgstr "Meta Info WP"
2673
+
2674
+ # @ aiowpsecurity
2675
+ #: admin/wp-security-settings-menu.php:95
2676
+ msgid "All the security features have been disabled successfully!"
2677
+ msgstr ""
2678
+ "Tutte le caratteristiche di sicurezza sono state disabilitate con successo!"
2679
+
2680
+ # @ aiowpsecurity
2681
+ #: admin/wp-security-settings-menu.php:99
2682
+ #: admin/wp-security-settings-menu.php:126
2683
+ msgid ""
2684
+ "Could not write to the .htaccess file. Please restore your .htaccess file "
2685
+ "manually using the restore functionality in the \".htaccess File\"."
2686
+ msgstr ""
2687
+ "Impossibile scrivere nel file .htaccess. Si prega di ripristinare il file "
2688
+ "manualmente utilizzando la funzione di ripristino del \"File .htaccess\"."
2689
+
2690
+ # @ aiowpsecurity
2691
+ #: admin/wp-security-settings-menu.php:104
2692
+ msgid ""
2693
+ "Could not write to the wp-config.php. Please restore your wp-config.php file "
2694
+ "manually using the restore functionality in the \"wp-config.php File\"."
2695
+ msgstr ""
2696
+ "Impossibile scrivere il wp-config.php. Si prega di ripristinare il file wp-"
2697
+ "config.php manualmente utilizzando la funzione di ripristino del \"File wp-"
2698
+ "config.php\"."
2699
+
2700
+ # @ aiowpsecurity
2701
+ #: admin/wp-security-settings-menu.php:122
2702
+ msgid "All firewall rules have been disabled successfully!"
2703
+ msgstr "Tutte le regole del firewall sono state disabilitate con successo!"
2704
+
2705
+ # @ aiowpsecurity
2706
+ #: admin/wp-security-settings-menu.php:136
2707
+ msgid "WP Security Plugin"
2708
+ msgstr "WP Plugin Sicurezza"
2709
+
2710
+ # @ aiowpsecurity
2711
+ #: admin/wp-security-settings-menu.php:138
2712
+ msgid ""
2713
+ "Thank you for using our WordPress security plugin. There are a lot of "
2714
+ "security features in this plugin."
2715
+ msgstr ""
2716
+ "Grazie per aver scelto il nostro plugin di sicurezza WordPress. Ci sono un "
2717
+ "sacco di funzioni di sicurezza in questo plugin."
2718
+
2719
+ # @ aiowpsecurity
2720
+ #: admin/wp-security-settings-menu.php:139
2721
+ msgid ""
2722
+ "Go through each menu items and enable the security options to add more "
2723
+ "security to your site. Start by activating the basic features first."
2724
+ msgstr ""
2725
+ "Passa attraverso ogni voce di menù e attiva le opzioni di sicurezza per "
2726
+ "rendere più sicuro il tuo sito. Inizia attivando le funzionalità di Base."
2727
+
2728
+ # @ aiowpsecurity
2729
+ #: admin/wp-security-settings-menu.php:140
2730
+ msgid ""
2731
+ "It is a good practice to take a backup of your .htaccess file, database and "
2732
+ "wp-config.php file before activating the security features. This plugin has "
2733
+ "options that you can use to backup those resources easily."
2734
+ msgstr ""
2735
+ "Sempre consigliato fare un backup dei file del database, wp-config.php e ."
2736
+ "htaccess prima di attivare le funzioni di protezione. Questo plugin ha "
2737
+ "opzioni che è possibile utilizzare per eseguire il backup di tali risorse "
2738
+ "facilmente."
2739
+
2740
+ # @ aiowpsecurity
2741
+ #: admin/wp-security-settings-menu.php:143
2742
+ msgid "Backup your database"
2743
+ msgstr "Backup tuo database"
2744
+
2745
+ # @ aiowpsecurity
2746
+ #: admin/wp-security-settings-menu.php:144
2747
+ msgid "Backup .htaccess file"
2748
+ msgstr "Backup file .htaccess"
2749
+
2750
+ # @ aiowpsecurity
2751
+ #: admin/wp-security-settings-menu.php:145
2752
+ msgid "Backup wp-config.php file"
2753
+ msgstr "Backup file wp-config.php"
2754
+
2755
+ # @ aiowpsecurity
2756
+ #: admin/wp-security-settings-menu.php:151
2757
+ msgid "Disable Security Features"
2758
+ msgstr "Disabilita Funzioni Sicurezza"
2759
+
2760
+ # @ aiowpsecurity
2761
+ #: admin/wp-security-settings-menu.php:157
2762
+ msgid ""
2763
+ "If you think that some plugin functionality on your site is broken due to a "
2764
+ "security feature you enabled in this plugin, then use the following option "
2765
+ "to turn off all the security features of this plugin."
2766
+ msgstr ""
2767
+ "Se pensi che alcune funzionalità del plugin sul ​​tuo sito non vanno più bene "
2768
+ "a causa di una funzione di sicurezza attivata in questo plugin, utilizza la "
2769
+ "seguente opzione per disattivare tutte le funzioni di sicurezza del plugin."
2770
+
2771
+ # @ default
2772
+ #: admin/wp-security-settings-menu.php:161
2773
+ msgid "Disable All Security Features"
2774
+ msgstr "Disabilita Tutte le Funzioni di Sicurezza"
2775
+
2776
+ # @ aiowpsecurity
2777
+ # @ default
2778
+ #: admin/wp-security-settings-menu.php:167
2779
+ #: admin/wp-security-settings-menu.php:177
2780
+ msgid "Disable All Firewall Rules"
2781
+ msgstr "Disabilita Tutte le Regole del Firewall"
2782
+
2783
+ # @ aiowpsecurity
2784
+ #: admin/wp-security-settings-menu.php:173
2785
+ msgid ""
2786
+ "This feature will disable all firewall rules which are currently active in "
2787
+ "this plugin and it will also delete these rules from your .htacess file. Use "
2788
+ "it if you think one of the firewall rules is causing an issue on your site."
2789
+ msgstr ""
2790
+ "Questa funzione consente di disattivare tutte le regole del firewall che "
2791
+ "sono attualmente attive in questo plugin e saranno cancellate le regole dal "
2792
+ "file .htacess. Usalo se pensi che una delle regole del firewall sta causando "
2793
+ "un problema sul tuo sito."
2794
+
2795
+ # @ aiowpsecurity
2796
+ #: admin/wp-security-settings-menu.php:212
2797
+ msgid ""
2798
+ "htaccess file rename failed during backup. Please check your root directory "
2799
+ "for the backup file using FTP."
2800
+ msgstr ""
2801
+ "tentativo di rinominare il file .htaccess fallito durante il backup. "
2802
+ "Verifica la tua root directory per il file di backup tramite FTP."
2803
+
2804
+ # @ aiowpsecurity
2805
+ #: admin/wp-security-settings-menu.php:218
2806
+ msgid "htaccess backup failed."
2807
+ msgstr "backup .htaccess fallito"
2808
+
2809
+ # @ aiowpsecurity
2810
+ #: admin/wp-security-settings-menu.php:233
2811
+ msgid "Please choose a .htaccess to restore from."
2812
+ msgstr "Seleziona un file .htaccess per il ripristino."
2813
+
2814
+ # @ aiowpsecurity
2815
+ #: admin/wp-security-settings-menu.php:249
2816
+ msgid ""
2817
+ "htaccess file restore failed. Please attempt to restore the .htaccess "
2818
+ "manually using FTP."
2819
+ msgstr ""
2820
+ "htaccess file di ripristino non riuscito. Si prega di provare a ripristinare "
2821
+ "l'.htaccess manualmente tramite FTP."
2822
+
2823
+ # @ aiowpsecurity
2824
+ #: admin/wp-security-settings-menu.php:253
2825
+ msgid "Your .htaccess file has successfully been restored!"
2826
+ msgstr "Il tuo file .htaccess è stato ripristinato con successo!"
2827
+
2828
+ # @ aiowpsecurity
2829
+ #: admin/wp-security-settings-menu.php:259
2830
+ msgid ""
2831
+ "htaccess Restore operation failed! Please check the contents of the file you "
2832
+ "are trying to restore from."
2833
+ msgstr ""
2834
+ "operazione di ripristino htaccess non riuscita! Si prega di verificare il "
2835
+ "contenuto del file che si sta tentando di ripristinare da"
2836
+
2837
+ # @ aiowpsecurity
2838
+ #: admin/wp-security-settings-menu.php:265
2839
+ msgid ".htaccess File Operations"
2840
+ msgstr "Operazioni File .htaccess"
2841
+
2842
+ # @ aiowpsecurity
2843
+ #: admin/wp-security-settings-menu.php:268
2844
+ msgid ""
2845
+ "Your \".htaccess\" file is a key component of your website's security and it "
2846
+ "can be modified to implement various levels of protection mechanisms."
2847
+ msgstr ""
2848
+ "Il file \".htaccess\" è un componente chiave della sicurezza del tuo sito "
2849
+ "web e può essere modificato per implementare diversi livelli di meccanismi "
2850
+ "di protezione."
2851
+
2852
+ # @ aiowpsecurity
2853
+ #: admin/wp-security-settings-menu.php:269
2854
+ msgid ""
2855
+ "This feature allows you to backup and save your currently active .htaccess "
2856
+ "file should you need to re-use the the backed up file in the future."
2857
+ msgstr ""
2858
+ "Questa funzione consente di eseguire il backup e salvare il file .htaccess "
2859
+ "attualmente attivo e in caso di necessità ri-utilizzare il file di backup in "
2860
+ "futuro."
2861
+
2862
+ # @ aiowpsecurity
2863
+ #: admin/wp-security-settings-menu.php:270
2864
+ msgid ""
2865
+ "You can also restore your site's .htaccess settings using a backed up ."
2866
+ "htaccess file."
2867
+ msgstr ""
2868
+ "È inoltre possibile ripristinare le impostazioni .htaccess del tuo sito "
2869
+ "utilizzando un file .htaccess di cui eseguito il backup."
2870
+
2871
+ # @ aiowpsecurity
2872
+ #: admin/wp-security-settings-menu.php:284
2873
+ msgid "Save the current .htaccess file"
2874
+ msgstr "Salva il file .htaccess attuale"
2875
+
2876
+ # @ aiowpsecurity
2877
+ #: admin/wp-security-settings-menu.php:288
2878
+ msgid ""
2879
+ "Click the button below to backup and save the currently active .htaccess "
2880
+ "file."
2881
+ msgstr ""
2882
+ "Fare clic sul bottone qui sotto per eseguire il backup e salvare il file ."
2883
+ "htaccess attualmente attivo."
2884
+
2885
+ # @ aiowpsecurity
2886
+ #: admin/wp-security-settings-menu.php:289
2887
+ msgid "Backup .htaccess File"
2888
+ msgstr "Backup File .htaccess"
2889
+
2890
+ # @ aiowpsecurity
2891
+ #: admin/wp-security-settings-menu.php:293
2892
+ msgid "Restore from a backed up .htaccess file"
2893
+ msgstr "Ripristina da un file di backup .htaccess"
2894
+
2895
+ # @ aiowpsecurity
2896
+ #: admin/wp-security-settings-menu.php:299
2897
+ msgid ".htaccess file to restore from"
2898
+ msgstr "ripristina file .htaccess da"
2899
+
2900
+ # @ aiowpsecurity
2901
+ #: admin/wp-security-settings-menu.php:305
2902
+ msgid ""
2903
+ "After selecting your file, click the button below to restore your site using "
2904
+ "the backed up htaccess file (htaccess_backup.txt)."
2905
+ msgstr ""
2906
+ "Dopo aver selezionato il file, fare clic sul pulsante qui sotto per "
2907
+ "ripristinare il sito utilizzando il backup del file htaccess "
2908
+ "(htaccess_backup.txt)."
2909
+
2910
+ # @ aiowpsecurity
2911
+ #: admin/wp-security-settings-menu.php:311
2912
+ msgid "Restore .htaccess File"
2913
+ msgstr "Ripristina File .htaccess"
2914
+
2915
+ # @ aiowpsecurity
2916
+ #: admin/wp-security-settings-menu.php:315
2917
+ msgid "View Contents of the currently active .htaccess file"
2918
+ msgstr "Vedi il contenuto del file .htaccess attualmente attivo"
2919
+
2920
+ # @ aiowpsecurity
2921
+ #: admin/wp-security-settings-menu.php:344
2922
+ msgid "Please choose a wp-config.php file to restore from."
2923
+ msgstr "Prego scegli il file wp-config.php da ripristinare"
2924
+
2925
+ # @ aiowpsecurity
2926
+ #: admin/wp-security-settings-menu.php:360
2927
+ msgid ""
2928
+ "wp-config.php file restore failed. Please attempt to restore this file "
2929
+ "manually using FTP."
2930
+ msgstr ""
2931
+ "ripristino file wp-config.php non riuscito. Cerca di ripristinare questo "
2932
+ "file manualmente tramite FTP."
2933
+
2934
+ # @ aiowpsecurity
2935
+ #: admin/wp-security-settings-menu.php:364
2936
+ msgid "Your wp-config.php file has successfully been restored!"
2937
+ msgstr "Il tuo file wp-config.php è stato ripristinato con successo!"
2938
+
2939
+ # @ aiowpsecurity
2940
+ #: admin/wp-security-settings-menu.php:370
2941
+ msgid ""
2942
+ "wp-config.php Restore operation failed! Please check the contents of the "
2943
+ "file you are trying to restore from."
2944
+ msgstr ""
2945
+ "operazione ripristino wp-config.php fallita! Verifica il contenuto del file "
2946
+ "che stai tentando di ripristinare da."
2947
+
2948
+ # @ aiowpsecurity
2949
+ #: admin/wp-security-settings-menu.php:376
2950
+ msgid "wp-config.php File Operations"
2951
+ msgstr "Operazioni File wp-config.php"
2952
+
2953
+ # @ aiowpsecurity
2954
+ #: admin/wp-security-settings-menu.php:379
2955
+ msgid ""
2956
+ "Your \"wp-config.php\" file is one of the most important in your WordPress "
2957
+ "installation. It is a primary configuration file and contains crucial things "
2958
+ "such as details of your database and other critical components."
2959
+ msgstr ""
2960
+ "Il file è \"wp-config.php\" uno dei più importanti dell'installazione di "
2961
+ "WordPress. Si tratta di un file di configurazione principale e contiene cose "
2962
+ "fondamentali come i dettagli del database e altri componenti critici."
2963
+
2964
+ # @ aiowpsecurity
2965
+ #: admin/wp-security-settings-menu.php:380
2966
+ msgid ""
2967
+ "This feature allows you to backup and save your currently active wp-config."
2968
+ "php file should you need to re-use the the backed up file in the future."
2969
+ msgstr ""
2970
+ "Questa funzione consente di eseguire il backup e salvare il file wp-config."
2971
+ "php attualmente attivo e in caso di necessità ri-utilizzare il file di "
2972
+ "backup in futuro."
2973
+
2974
+ # @ aiowpsecurity
2975
+ #: admin/wp-security-settings-menu.php:381
2976
+ msgid ""
2977
+ "You can also restore your site's wp-config.php settings using a backed up wp-"
2978
+ "config.php file."
2979
+ msgstr ""
2980
+ "È inoltre possibile ripristinare le impostazioni di wp-config.php del tuo "
2981
+ "sito utilizzando un file wp-config.php di cui hai fatto il backup."
2982
+
2983
+ # @ aiowpsecurity
2984
+ #: admin/wp-security-settings-menu.php:395
2985
+ msgid "Save the current wp-config.php file"
2986
+ msgstr "Salva il file wp-config.php corrente"
2987
+
2988
+ # @ aiowpsecurity
2989
+ #: admin/wp-security-settings-menu.php:399
2990
+ msgid ""
2991
+ "Click the button below to backup and download the contents of the currently "
2992
+ "active wp-config.php file."
2993
+ msgstr ""
2994
+ "Clicca sul bottone qui sotto per eseguire il backup e salvare il file wp-"
2995
+ "config.php attualmente attivo."
2996
+
2997
+ # @ aiowpsecurity
2998
+ #: admin/wp-security-settings-menu.php:400
2999
+ msgid "Backup wp-config.php File"
3000
+ msgstr "Backup File wp-config.php"
3001
+
3002
+ # @ aiowpsecurity
3003
+ #: admin/wp-security-settings-menu.php:405
3004
+ msgid "Restore from a backed up wp-config file"
3005
+ msgstr "Ripristina file wp-config.php da un backup"
3006
+
3007
+ # @ aiowpsecurity
3008
+ #: admin/wp-security-settings-menu.php:411
3009
+ msgid "wp-config file to restore from"
3010
+ msgstr "ripristino file wp-config.php da"
3011
+
3012
+ # @ aiowpsecurity
3013
+ #: admin/wp-security-settings-menu.php:417
3014
+ msgid ""
3015
+ "After selecting your file click the button below to restore your site using "
3016
+ "the backed up wp-config file (wp-config.php.backup.txt)."
3017
+ msgstr ""
3018
+ "Dopo aver selezionato il file fare clic sul pulsante qui sotto per "
3019
+ "ripristinare il sito utilizzando il backup di file wp-config (wp-config.php."
3020
+ "backup.txt)."
3021
+
3022
+ # @ aiowpsecurity
3023
+ #: admin/wp-security-settings-menu.php:423
3024
+ msgid "Restore wp-config File"
3025
+ msgstr "Ripristina File wp-config.php"
3026
+
3027
+ # @ aiowpsecurity
3028
+ #: admin/wp-security-settings-menu.php:427
3029
+ msgid "View Contents of the currently active wp-config.php file"
3030
+ msgstr "Vedi il contenuto dell'attuale file wp-config.php"
3031
+
3032
+ # @ aiowpsecurity
3033
+ #: admin/wp-security-settings-menu.php:462
3034
+ msgid "WP Generator Meta Tag"
3035
+ msgstr "Generatore WP Meta Tag"
3036
+
3037
+ # @ aiowpsecurity
3038
+ #: admin/wp-security-settings-menu.php:465
3039
+ msgid ""
3040
+ "Wordpress generator automatically adds some meta information inside the "
3041
+ "\"head\" tags of every page on your site's front end. Below is an example of "
3042
+ "this:"
3043
+ msgstr ""
3044
+ "Wordpress generatore aggiunge automaticamente alcune informazioni meta "
3045
+ "dentro i tag della \"head\" di ogni pagina del front-end del tuo sito. Di "
3046
+ "seguito è riportato un esempio di questo:"
3047
+
3048
+ # @ aiowpsecurity
3049
+ #: admin/wp-security-settings-menu.php:467
3050
+ msgid ""
3051
+ "The above meta information shows which version of WordPress your site is "
3052
+ "currently running and thus can help hackers or crawlers scan your site to "
3053
+ "see if you have an older version of WordPress or one with a known exploit."
3054
+ msgstr ""
3055
+ "La meta informazioni di cui sopra mostra la versione di WordPress "
3056
+ "attualmente in esecuzione e quindi può aiutare gli hacker o crawler nella "
3057
+ "scansione del sito che potrebbero sfruttare bug noti di tale versione "
3058
+ "WordPress."
3059
+
3060
+ # @ aiowpsecurity
3061
+ #: admin/wp-security-settings-menu.php:468
3062
+ msgid ""
3063
+ "This feature will allow you to remove the WP generator meta info from your "
3064
+ "site's pages."
3065
+ msgstr ""
3066
+ "Questa funzione permette di rimuovere il generatore di meta informazioni WP "
3067
+ "dalle pagine del tuo sito."
3068
+
3069
+ # @ aiowpsecurity
3070
+ #: admin/wp-security-settings-menu.php:474
3071
+ msgid "WP Generator Meta Info"
3072
+ msgstr "Generatore Meta Info WP"
3073
+
3074
+ # @ aiowpsecurity
3075
+ #: admin/wp-security-settings-menu.php:486
3076
+ msgid "Remove WP Generator Meta Info"
3077
+ msgstr "Rimuovi Generatore Meta Info WP"
3078
+
3079
+ # @ aiowpsecurity
3080
+ #: admin/wp-security-settings-menu.php:489
3081
+ msgid ""
3082
+ "Check this if you want to remove the meta info produced by WP Generator from "
3083
+ "all pages"
3084
+ msgstr ""
3085
+ "Seleziona questa casella se per rimuovere le informazioni meta prodotte dal "
3086
+ "generatore WP su tutte le pagine"
3087
+
3088
+ # @ aiowpsecurity
3089
+ #: admin/wp-security-spam-menu.php:23
3090
+ msgid "Comment SPAM"
3091
+ msgstr "Commenti SPAM"
3092
+
3093
+ # @ aiowpsecurity
3094
+ #: admin/wp-security-spam-menu.php:24
3095
+ msgid "Comment SPAM IP Monitoring"
3096
+ msgstr "Monitoraggio IP Commenti SPAM"
3097
+
3098
+ # @ aiowpsecurity
3099
+ #: admin/wp-security-spam-menu.php:111
3100
+ msgid "Comment SPAM Settings"
3101
+ msgstr "Impostazione Commenti SPAM"
3102
+
3103
+ # @ aiowpsecurity
3104
+ #: admin/wp-security-spam-menu.php:116
3105
+ msgid "Add Captcha To Comments Form"
3106
+ msgstr "Aggiungi Captcha al Modulo Commenti"
3107
+
3108
+ # @ aiowpsecurity
3109
+ #: admin/wp-security-spam-menu.php:120
3110
+ msgid ""
3111
+ "This feature will add a simple math captcha field in the WordPress comments "
3112
+ "form."
3113
+ msgstr ""
3114
+ "Questa funzione aggiungerà un semplice campo captcha matematico al modulo "
3115
+ "commenti WordPress."
3116
+
3117
+ # @ aiowpsecurity
3118
+ #: admin/wp-security-spam-menu.php:130
3119
+ msgid "Enable Captcha On Comment Forms"
3120
+ msgstr "Attiva Captcha nel Modulo Commenti"
3121
+
3122
+ # @ aiowpsecurity
3123
+ #: admin/wp-security-spam-menu.php:133
3124
+ msgid "Check this if you want to insert a captcha field on the comment forms"
3125
+ msgstr ""
3126
+ "Seleziona questo se desideri inserire un campo captcha nel modulo commenti"
3127
+
3128
+ # @ aiowpsecurity
3129
+ #: admin/wp-security-spam-menu.php:140
3130
+ msgid "Block Spambot Comments"
3131
+ msgstr "Blocca Commenti Spambot"
3132
+
3133
+ # @ aiowpsecurity
3134
+ #: admin/wp-security-spam-menu.php:144
3135
+ msgid ""
3136
+ "A large portion of WordPress blog comment SPAM is mainly produced by "
3137
+ "automated bots and not necessarily by humans. "
3138
+ msgstr ""
3139
+ "Una gran parte dei commenti SPAM nei blog WordPress è prodotto "
3140
+ "principalmente da bot automatici e non necessariamente da esseri umani."
3141
+
3142
+ # @ aiowpsecurity
3143
+ #: admin/wp-security-spam-menu.php:145
3144
+ msgid ""
3145
+ "This feature will greatly minimize the useless and unecessary traffic and "
3146
+ "load on your server resulting from SPAM comments by blocking all comment "
3147
+ "requests which do not originate from your domain."
3148
+ msgstr ""
3149
+ "Questa caratteristica ridurrà al minimo il traffico inutile è buona regola "
3150
+ "non caricare sul server commenti spam, bloccando tutte le richieste di "
3151
+ "commento che non hanno origine dal proprio dominio."
3152
+
3153
+ # @ aiowpsecurity
3154
+ #: admin/wp-security-spam-menu.php:162
3155
+ msgid "Block Spambots From Posting Comments"
3156
+ msgstr "Impedisci che Spambots possano pubblicare commenti"
3157
+
3158
+ # @ aiowpsecurity
3159
+ #: admin/wp-security-spam-menu.php:165
3160
+ msgid ""
3161
+ "Check this if you want to apply a firewall rule which will block comments "
3162
+ "originating from spambots."
3163
+ msgstr ""
3164
+ "Seleziona questa casella se vuoi applicare una regola firewall che blocca i "
3165
+ "commenti provenienti da spambot."
3166
+
3167
+ # @ aiowpsecurity
3168
+ #: admin/wp-security-spam-menu.php:169
3169
+ msgid ""
3170
+ "This feature will implement a firewall rule to block all comment attempts "
3171
+ "which do not originate from your domain."
3172
+ msgstr ""
3173
+ "Questa funzione consente di applicare una regola firewall per bloccare tutti "
3174
+ "i tentativi di commento che non hanno origine dal proprio dominio."
3175
+
3176
+ # @ aiowpsecurity
3177
+ #: admin/wp-security-spam-menu.php:170
3178
+ msgid ""
3179
+ "A legitimate comment is one which is submitted by a human who physically "
3180
+ "fills out the comment form and clicks the submit button. For such events, "
3181
+ "the HTTP_REFERRER is always set to your own domain."
3182
+ msgstr ""
3183
+ "Un commento legittimo è quello che viene presentato da un umano che riempie "
3184
+ "fisicamente il modulo commenti e fa clic sul pulsante di invio. Per tali "
3185
+ "eventi, il HTTP_REFERRER è sempre impostato per il proprio dominio."
3186
+
3187
+ # @ aiowpsecurity
3188
+ #: admin/wp-security-spam-menu.php:171
3189
+ msgid ""
3190
+ "A comment submitted by a spambot is done by directly calling the comments."
3191
+ "php file, which usually means that the HTTP_REFERRER value is not your "
3192
+ "domain and often times empty."
3193
+ msgstr ""
3194
+ "Un commento lasciato da uno spambot viene fatto chiamando direttamente il "
3195
+ "file comments.php, che di solito significa che il valore HTTP_REFERRER non è "
3196
+ "il vostro dominio e spesso vuoto."
3197
+
3198
+ # @ aiowpsecurity
3199
+ #: admin/wp-security-spam-menu.php:172
3200
+ msgid ""
3201
+ "This feature will check and block comment requests which are not referred by "
3202
+ "your domain thus greatly reducing your overall blog SPAM and PHP requests "
3203
+ "done by the server to process these comments."
3204
+ msgstr ""
3205
+ "Questa funzione controlla e blocca commenti e richieste non contemplate dal "
3206
+ "tuo dominio, riducendo notevolmente lo SPAM nel blog in generale e le "
3207
+ "richieste PHP fatte dal server per elaborare questi commenti."
3208
+
3209
+ # @ aiowpsecurity
3210
+ #: admin/wp-security-spam-menu.php:199
3211
+ msgid "Nonce check failed for list SPAM comment IPs!"
3212
+ msgstr "Check non riuscito per la lista IP spam Commenti!"
3213
+
3214
+ # @ aiowpsecurity
3215
+ #: admin/wp-security-spam-menu.php:205
3216
+ msgid ""
3217
+ "You entered a non numeric value for the minimum SPAM comments per IP field. "
3218
+ "It has been set to the default value."
3219
+ msgstr ""
3220
+ "È stato immesso un valore non numerico per i commenti di spam minimi per "
3221
+ "campo IP. E 'stato impostato il valore di default."
3222
+
3223
+ # @ aiowpsecurity
3224
+ #: admin/wp-security-spam-menu.php:217
3225
+ #, php-format
3226
+ msgid ""
3227
+ "Displaying results for IP addresses which have posted a minimum of %s SPAM "
3228
+ "comments"
3229
+ msgstr ""
3230
+ "Visualizzazione dei risultati per gli indirizzi IP che hanno inviato un "
3231
+ "minimo di %s commenti spam"
3232
+
3233
+ # @ aiowpsecurity
3234
+ #: admin/wp-security-spam-menu.php:233
3235
+ msgid ""
3236
+ "This tab displays a list of the IP addresses of the people or bots who have "
3237
+ "left SPAM comments on your site."
3238
+ msgstr ""
3239
+ "Questa scheda visualizza un elenco degli indirizzi IP delle persone o bot "
3240
+ "che hanno lasciato commenti di spam sul tuo sito."
3241
+
3242
+ # @ aiowpsecurity
3243
+ #: admin/wp-security-spam-menu.php:234
3244
+ msgid ""
3245
+ "This information can be handy for identifying the most persistent IP "
3246
+ "addresses or ranges used by spammers."
3247
+ msgstr ""
3248
+ "Questa informazione può essere utile per identificare gli indirizzi IP, o "
3249
+ "intervalli IP, più persistenti dagli spammer."
3250
+
3251
+ # @ aiowpsecurity
3252
+ #: admin/wp-security-spam-menu.php:235
3253
+ msgid ""
3254
+ "By inspecting the IP address data coming from spammers you will be in a "
3255
+ "better position to determine which addresses or address ranges you should "
3256
+ "block by adding them to your blacklist."
3257
+ msgstr ""
3258
+ "Osservando i dati degli indirizzi IP provenienti da spammer vi troverete in "
3259
+ "una posizione migliore per determinare quali indirizzi o intervalli di "
3260
+ "indirizzi si dovrebbe bloccare aggiungendoli alla lista nera."
3261
+
3262
+ # @ aiowpsecurity
3263
+ #: admin/wp-security-spam-menu.php:236
3264
+ msgid ""
3265
+ "To add one or more of the IP addresses displayed in the table below to your "
3266
+ "blacklist, simply click the \"Block\" link for the individual row or select "
3267
+ "more than one address \n"
3268
+ " using the checkboxes and then choose the \"block"
3269
+ "\" option from the Bulk Actions dropdown list and click the \"Apply\" button."
3270
+ msgstr ""
3271
+ "Per aggiungere uno o più indirizzi IP visualizzato nella tabella di seguito "
3272
+ "per la vostra lista nera, è sufficiente fare clic sul collegamento \"Block\" "
3273
+ "per la singola riga o selezionare più di un indirizzo \n"
3274
+ " utilizzando le caselle di controllo e quindi "
3275
+ "scegliere l'opzione dal menu a discesa Azioni in blocco \"block\" e fare "
3276
+ "clic sul pulsante \"Applica\"."
3277
+
3278
+ # @ aiowpsecurity
3279
+ #: admin/wp-security-spam-menu.php:242
3280
+ msgid "List SPAMMER IP Addresses"
3281
+ msgstr "Lista indirizzi IP SPAMMER"
3282
+
3283
+ # @ aiowpsecurity
3284
+ #: admin/wp-security-spam-menu.php:248
3285
+ msgid "Minimum number of SPAM comments per IP"
3286
+ msgstr "Numero minimo di commenti spam per IP"
3287
+
3288
+ # @ aiowpsecurity
3289
+ #: admin/wp-security-spam-menu.php:250
3290
+ msgid ""
3291
+ "This field allows you to list only those IP addresses which have been used "
3292
+ "to post X or more SPAM comments."
3293
+ msgstr ""
3294
+ "Questo campo consente di elencare solo gli indirizzi IP che sono stati "
3295
+ "utilizzati per pubblicare X o più commenti spam."
3296
+
3297
+ # @ aiowpsecurity
3298
+ #: admin/wp-security-spam-menu.php:254
3299
+ msgid ""
3300
+ "Example 1: Setting this value to \"0\" or \"1\" will list ALL IP addresses "
3301
+ "which were used to submit SPAM comments."
3302
+ msgstr ""
3303
+ "Esempio 1: Impostando questo valore a \"0\" o \"1\" verranno elencati tutti "
3304
+ "gli indirizzi IP che sono stati utilizzati per inviare commenti spam."
3305
+
3306
+ # @ aiowpsecurity
3307
+ #: admin/wp-security-spam-menu.php:255
3308
+ msgid ""
3309
+ "Example 2: Setting this value to \"5\" will list only those IP addresses "
3310
+ "which were used to submit 5 SPAM comments or more on your site."
3311
+ msgstr ""
3312
+ "Esempio 2: Impostando questo valore a \"5\" elencherà solo gli indirizzi IP "
3313
+ "usati per creare almeno 5 commenti SPAM o più sul tuo sito."
3314
+
3315
+ # @ aiowpsecurity
3316
+ #: admin/wp-security-spam-menu.php:262
3317
+ msgid "Find IP Addresses"
3318
+ msgstr "Trova Indirizzo IP"
3319
+
3320
+ # @ aiowpsecurity
3321
+ #: admin/wp-security-spam-menu.php:266
3322
+ msgid "SPAMMER IP Address Results"
3323
+ msgstr "Risultato Indirizzi IP SPAMMER"
3324
+
3325
+ # @ aiowpsecurity
3326
+ #: admin/wp-security-spam-menu.php:272 classes/wp-security-utility.php:150
3327
+ msgid ""
3328
+ "The plugin has detected that you are using a Multi-Site WordPress "
3329
+ "installation."
3330
+ msgstr ""
3331
+ "Il plugin ha rilevato che si sta usando una installazione di WordPress Multi-"
3332
+ "Site."
3333
+
3334
+ # @ aiowpsecurity
3335
+ #: admin/wp-security-spam-menu.php:273
3336
+ msgid "Only the \"superadmin\" can block IP addresses from the main site."
3337
+ msgstr ""
3338
+ "Solo il \"superadmin\" può bloccare gli indirizzi IP dal sito principale."
3339
+
3340
+ # @ aiowpsecurity
3341
+ #: admin/wp-security-spam-menu.php:274
3342
+ msgid ""
3343
+ "Take note of the IP addresses you want blocked and ask the superadmin to add "
3344
+ "these to the blacklist using the \"Blacklist Manager\" on the main site."
3345
+ msgstr ""
3346
+ "Prendere nota degli indirizzi IP da bloccare e chiedere al superadmin di "
3347
+ "aggiungere questi per la lista nera con \"Gestione Blacklist\" sul sito "
3348
+ "principale."
3349
+
3350
+ # @ aiowpsecurity
3351
+ #: admin/wp-security-user-accounts-menu.php:29
3352
+ msgid "WP Username"
3353
+ msgstr "Nome utente WP"
3354
+
3355
+ # @ aiowpsecurity
3356
+ #: admin/wp-security-user-accounts-menu.php:30
3357
+ msgid "Display Name"
3358
+ msgstr "Nome Visualizzato"
3359
+
3360
+ # @ aiowpsecurity
3361
+ # @ default
3362
+ #: admin/wp-security-user-accounts-menu.php:31
3363
+ #: other-includes/wp-security-rename-login-feature.php:862
3364
+ msgid "Password"
3365
+ msgstr "Password"
3366
+
3367
+ # @ aiowpsecurity
3368
+ #: admin/wp-security-user-accounts-menu.php:85
3369
+ msgid "Admin User Security"
3370
+ msgstr "Sicurezza Utente Admin"
3371
+
3372
+ # @ aiowpsecurity
3373
+ #: admin/wp-security-user-accounts-menu.php:88
3374
+ msgid ""
3375
+ "By default, WordPress sets the administrator username to \"admin\" at "
3376
+ "installation time."
3377
+ msgstr ""
3378
+ "Per impostazione predefinita, WordPress imposta il nome utente "
3379
+ "amministratore come \"admin\" al momento dell'installazione."
3380
+
3381
+ # @ aiowpsecurity
3382
+ #: admin/wp-security-user-accounts-menu.php:89
3383
+ msgid ""
3384
+ "A lot of hackers try to take advantage of this information by attempting "
3385
+ "\"Brute Force Login Attacks\" where they repeatedly try to guess the "
3386
+ "password by using \"admin\" for username."
3387
+ msgstr ""
3388
+ "Un sacco di hacker cercano di approfittare di queste informazioni, tentando "
3389
+ "\"Attacchi Brute Force Login\" dove hanno più possibilità di indovinare la "
3390
+ "password utilizzando \"admin \" per il nome utente."
3391
+
3392
+ # @ aiowpsecurity
3393
+ #: admin/wp-security-user-accounts-menu.php:90
3394
+ msgid ""
3395
+ "From a security perspective, changing the default \"admin\" user name is one "
3396
+ "of the first and smartest things you should do on your site."
3397
+ msgstr ""
3398
+ "Dal punto di vista della sicurezza, la modifica del valore predefinito nome "
3399
+ "utente \"admin\" è una delle prime e più intelligenti cose che dovresti fare "
3400
+ "sul tuo sito."
3401
+
3402
+ # @ aiowpsecurity
3403
+ #: admin/wp-security-user-accounts-menu.php:91
3404
+ msgid ""
3405
+ "This feature will allow you to change your default \"admin\" user name to a "
3406
+ "more secure name of your choosing."
3407
+ msgstr ""
3408
+ "Questa funzione permette di cambiare il nome utente predefinito \"admin \" "
3409
+ "in un nome più sicuro a tua scelta."
3410
+
3411
+ # @ aiowpsecurity
3412
+ #: admin/wp-security-user-accounts-menu.php:98
3413
+ msgid "List of Administrator Accounts"
3414
+ msgstr "Lista Account di Amministrazione"
3415
+
3416
+ # @ aiowpsecurity
3417
+ #: admin/wp-security-user-accounts-menu.php:107
3418
+ #: classes/grade-system/wp-security-feature-item-manager.php:36
3419
+ msgid "Change Admin Username"
3420
+ msgstr "Cambia Nome Utente Admin"
3421
+
3422
+ # @ aiowpsecurity
3423
+ #: admin/wp-security-user-accounts-menu.php:115
3424
+ msgid ""
3425
+ "Your site currently has an account which uses the default \"admin\" "
3426
+ "username. \n"
3427
+ " It is highly recommended that you change this name to "
3428
+ "something else. \n"
3429
+ " Use the following field to change the admin username."
3430
+ msgstr ""
3431
+ "Il sito attualmente ha un account che usa il nome utente predefinito \"admin"
3432
+ "\" . \n"
3433
+ " È altamente consigliato modificare questo nome in qualcosa "
3434
+ "d'altro. \n"
3435
+ " Utilizzare il seguente campo per modificare il nome utente "
3436
+ "admin."
3437
+
3438
+ # @ aiowpsecurity
3439
+ #: admin/wp-security-user-accounts-menu.php:123
3440
+ msgid "New Admin Username"
3441
+ msgstr "Nuovo Nome Utente Admin"
3442
+
3443
+ # @ aiowpsecurity
3444
+ #: admin/wp-security-user-accounts-menu.php:125
3445
+ msgid "Choose a new username for admin."
3446
+ msgstr "Scegli nuovo nome utente per admin"
3447
+
3448
+ # @ aiowpsecurity
3449
+ #: admin/wp-security-user-accounts-menu.php:129
3450
+ msgid "Change Username"
3451
+ msgstr "Cambia Nome Utente"
3452
+
3453
+ # @ aiowpsecurity
3454
+ #: admin/wp-security-user-accounts-menu.php:131
3455
+ msgid ""
3456
+ "NOTE: If you are currently logged in as \"admin\" you will be automatically "
3457
+ "logged out after changing your username and will be required to log back in."
3458
+ msgstr ""
3459
+ "NOTA: Se si è effettuato l'accesso come \"admin\" si viene automaticamente "
3460
+ "disconnessi dopo aver cambiato il nome utente e sarà richiesto di effettuare "
3461
+ "il login per rientrare."
3462
+
3463
+ # @ aiowpsecurity
3464
+ #: admin/wp-security-user-accounts-menu.php:138
3465
+ msgid "No action required! "
3466
+ msgstr "Nessuna azione richiesta!"
3467
+
3468
+ # @ aiowpsecurity
3469
+ #: admin/wp-security-user-accounts-menu.php:140
3470
+ msgid ""
3471
+ "Your site does not have any account which uses the default \"admin\" "
3472
+ "username. "
3473
+ msgstr ""
3474
+ "Il tuo sito non ha nessun account che usa il nome utente predefinito \"admin"
3475
+ "\"."
3476
+
3477
+ # @ aiowpsecurity
3478
+ #: admin/wp-security-user-accounts-menu.php:141
3479
+ msgid "This is good security practice."
3480
+ msgstr "Questa è una buona pratica di sicurezza."
3481
+
3482
+ # @ aiowpsecurity
3483
+ #: admin/wp-security-user-accounts-menu.php:153
3484
+ msgid "Display Name Security"
3485
+ msgstr "Nome Sicurezza Visualizzato"
3486
+
3487
+ # @ aiowpsecurity
3488
+ #: admin/wp-security-user-accounts-menu.php:156
3489
+ msgid ""
3490
+ "When you submit a post or answer a comment, WordPress will usually display "
3491
+ "your \"nickname\"."
3492
+ msgstr ""
3493
+ "Quando si pubblica un articolo o si risponde a un commento, WordPress farà "
3494
+ "comparire il tuo \"nickname\"."
3495
+
3496
+ # @ aiowpsecurity
3497
+ #: admin/wp-security-user-accounts-menu.php:157
3498
+ msgid ""
3499
+ "By default the nickname is set to the login (or user) name of your account."
3500
+ msgstr ""
3501
+ "Per impostazione predefinita, il nickname impostato per il login (o utente) "
3502
+ "è il nome del tuo account."
3503
+
3504
+ # @ aiowpsecurity
3505
+ #: admin/wp-security-user-accounts-menu.php:158
3506
+ msgid ""
3507
+ "From a security perspective, leaving your nickname the same as your user "
3508
+ "name is bad practice because it gives a hacker at least half of your "
3509
+ "account's login credentials."
3510
+ msgstr ""
3511
+ "Dal punto di vista della sicurezza, lasciando il tuo nickname uguale al tuo "
3512
+ "nome utente, è sbagliato e pericoloso, perché offre su un piatto a un hacker "
3513
+ "almeno la metà delle credenziali di accesso del tuo account."
3514
+
3515
+ # @ aiowpsecurity
3516
+ #: admin/wp-security-user-accounts-menu.php:159
3517
+ msgid ""
3518
+ "Therefore to further tighten your site's security you are advised to change "
3519
+ "your <strong>nickname</strong> and <strong>Display name</strong> to be "
3520
+ "different from your <strong>Username</strong>."
3521
+ msgstr ""
3522
+ "Quindi per stringere ulteriormente la sicurezza del tuo sito si consiglia di "
3523
+ "cambiare il tuo <strong>nickname</strong> e <strong>Nome Visualizzato</"
3524
+ "strong> in modo che siano diverso da <strong>Nome Utente</strong>."
3525
+
3526
+ # @ aiowpsecurity
3527
+ #: admin/wp-security-user-accounts-menu.php:165
3528
+ msgid "Modify Accounts With Identical Login Name & Display Name"
3529
+ msgstr "Modifica Account con Identico Nome Login & Nome Visualizzato"
3530
+
3531
+ # @ aiowpsecurity
3532
+ #: admin/wp-security-user-accounts-menu.php:174
3533
+ msgid ""
3534
+ "Your site currently has the following accounts which have an identical login "
3535
+ "name and display name."
3536
+ msgstr ""
3537
+ "Il sito ha attualmente i seguenti account che hanno un nome di login "
3538
+ "identico al nome visualizzato."
3539
+
3540
+ # @ aiowpsecurity
3541
+ #: admin/wp-security-user-accounts-menu.php:175
3542
+ msgid "Click on the link to edit the settings of that particular user account"
3543
+ msgstr ""
3544
+ "Clicca sul collegamento per modificare le impostazioni di quel particolare "
3545
+ "account utente"
3546
+
3547
+ # @ aiowpsecurity
3548
+ #: admin/wp-security-user-accounts-menu.php:190
3549
+ msgid "No action required."
3550
+ msgstr "Nessuna azione richiesta"
3551
+
3552
+ # @ aiowpsecurity
3553
+ #: admin/wp-security-user-accounts-menu.php:191
3554
+ msgid ""
3555
+ "Your site does not have a user account where the display name is identical "
3556
+ "to the username."
3557
+ msgstr ""
3558
+ "Il sito non dispone di un account utente in cui il nome di visualizzazione è "
3559
+ "identica al nome utente."
3560
+
3561
+ # @ aiowpsecurity
3562
+ #: admin/wp-security-user-accounts-menu.php:202
3563
+ msgid "Password Tool"
3564
+ msgstr "Strumento Password"
3565
+
3566
+ # @ aiowpsecurity
3567
+ #: admin/wp-security-user-accounts-menu.php:205
3568
+ msgid ""
3569
+ "Poor password selection is one of the most common weak points of many sites "
3570
+ "and is usually the first thing a hacker will try to exploit when attempting "
3571
+ "to break into your site."
3572
+ msgstr ""
3573
+ "Scelta di password brevi o facili è uno dei punti deboli più comuni di molti "
3574
+ "siti e di solito è la prima cosa che un hacker cercherà di sfruttare quando "
3575
+ "tenta di violare il sito."
3576
+
3577
+ # @ aiowpsecurity
3578
+ #: admin/wp-security-user-accounts-menu.php:206
3579
+ msgid ""
3580
+ "Many people fall into the trap of using a simple word or series of numbers "
3581
+ "as their password. Such a predictable and simple password would take a "
3582
+ "competent hacker merely minutes to guess your password by using a simple "
3583
+ "script which cycles through the easy and most common combinations."
3584
+ msgstr ""
3585
+ "Molte persone cadono nella trappola di usare una semplice parola o una serie "
3586
+ "di numeri come password. Tale parola, prevedibile e semplice, permette a un "
3587
+ "hacker competente di indovinare la password in pochi minuti, utilizzando un "
3588
+ "semplice script che crea cicli di combinazioni semplici e più comuni."
3589
+
3590
+ # @ aiowpsecurity
3591
+ #: admin/wp-security-user-accounts-menu.php:207
3592
+ msgid ""
3593
+ "The longer and more complex your password is the harder it is for hackers to "
3594
+ "\"crack\" because more complex passwords require much greater computing "
3595
+ "power and time."
3596
+ msgstr ""
3597
+ "Una password più lunga e complessa è più difficile per gli hacker da "
3598
+ "\"crackare \", perché richiede maggiore tempo e potenza di calcolo."
3599
+
3600
+ # @ aiowpsecurity
3601
+ #: admin/wp-security-user-accounts-menu.php:208
3602
+ msgid ""
3603
+ "This section contains a useful password strength tool which you can use to "
3604
+ "check whether your password is sufficiently strong enough."
3605
+ msgstr ""
3606
+ "Questa sezione contiene un utile strumento password che è possibile "
3607
+ "utilizzare per controllare se la password è sufficientemente forte."
3608
+
3609
+ # @ aiowpsecurity
3610
+ #: admin/wp-security-user-accounts-menu.php:213
3611
+ msgid "Password Strength Tool"
3612
+ msgstr "Strumento Forza Password"
3613
+
3614
+ # @ aiowpsecurity
3615
+ #: admin/wp-security-user-accounts-menu.php:218
3616
+ msgid "Start typing a password."
3617
+ msgstr "Iniziare a digitare una password."
3618
+
3619
+ # @ aiowpsecurity
3620
+ #: admin/wp-security-user-accounts-menu.php:221
3621
+ msgid "It would take a desktop PC approximately"
3622
+ msgstr "Con un PC desktop ci vorrebbe circa"
3623
+
3624
+ # @ aiowpsecurity
3625
+ #: admin/wp-security-user-accounts-menu.php:222
3626
+ msgid "1 sec"
3627
+ msgstr "1 sec"
3628
+
3629
+ # @ aiowpsecurity
3630
+ #: admin/wp-security-user-accounts-menu.php:222
3631
+ msgid "to crack your password!"
3632
+ msgstr "per crackare la tua password!"
3633
+
3634
+ # @ aiowpsecurity
3635
+ #: admin/wp-security-user-accounts-menu.php:227
3636
+ msgid "Password Strength"
3637
+ msgstr "Forza Password"
3638
+
3639
+ # @ aiowpsecurity
3640
+ #: admin/wp-security-user-accounts-menu.php:243
3641
+ msgid "Nonce check failed on admin username change operation!"
3642
+ msgstr ""
3643
+ "Check controllo fallito nell'operazione di cambiamento del nome utente "
3644
+ "admin!"
3645
+
3646
+ # @ aiowpsecurity
3647
+ #: admin/wp-security-user-accounts-menu.php:250
3648
+ msgid "Username "
3649
+ msgstr "Nome Utente"
3650
+
3651
+ # @ aiowpsecurity
3652
+ #: admin/wp-security-user-accounts-menu.php:250
3653
+ msgid " already exists. Please enter another value. "
3654
+ msgstr "già esistente. Inserisci un altro valore."
3655
+
3656
+ # @ aiowpsecurity
3657
+ #: admin/wp-security-user-accounts-menu.php:266
3658
+ msgid "The database update operation of the user account failed!"
3659
+ msgstr ""
3660
+ "L'operazione di aggiornamento database dell'account utente non è riuscita!"
3661
+
3662
+ # @ aiowpsecurity
3663
+ #: admin/wp-security-user-accounts-menu.php:293
3664
+ msgid "You entered an invalid username. Please enter another value. "
3665
+ msgstr ""
3666
+ "Hai inserito un nome utente non valido. Si prega di inserire un altro valore."
3667
+
3668
+ # @ aiowpsecurity
3669
+ #: admin/wp-security-user-accounts-menu.php:297
3670
+ msgid "Please enter a value for your username. "
3671
+ msgstr "Prego inserisci un valore per il nome utente."
3672
+
3673
+ # @ aiowpsecurity
3674
+ #: admin/wp-security-user-accounts-menu.php:304
3675
+ msgid "Username Successfully Changed!"
3676
+ msgstr "Nome Utente Cambiato con Successo!"
3677
+
3678
+ # @ aiowpsecurity
3679
+ #: admin/wp-security-user-accounts-menu.php:324
3680
+ msgid "Account Login Name"
3681
+ msgstr "Nome Login Account"
3682
+
3683
+ # @ aiowpsecurity
3684
+ #: admin/wp-security-brute-force-menu.php:27
3685
+ #: classes/grade-system/wp-security-feature-item-manager.php:44
3686
+ msgid "Login Captcha"
3687
+ msgstr "Captcha Pagina Login"
3688
+
3689
+ # @ aiowpsecurity
3690
+ #: admin/wp-security-brute-force-menu.php:28
3691
+ #: admin/wp-security-brute-force-menu.php:615
3692
+ msgid "Login Whitelist"
3693
+ msgstr "Lista Bianca Login"
3694
+
3695
+ # @ aiowpsecurity
3696
+ #: admin/wp-security-user-login-menu.php:26
3697
+ #: admin/wp-security-user-login-menu.php:298
3698
+ msgid "Failed Login Records"
3699
+ msgstr "Record Login Falliti"
3700
+
3701
+ # @ aiowpsecurity
3702
+ #: admin/wp-security-user-login-menu.php:27
3703
+ #: classes/grade-system/wp-security-feature-item-manager.php:50
3704
+ msgid "Force Logout"
3705
+ msgstr "Forza Logout Utente"
3706
+
3707
+ # @ aiowpsecurity
3708
+ #: admin/wp-security-user-login-menu.php:28
3709
+ #: admin/wp-security-user-login-menu.php:432
3710
+ msgid "Account Activity Logs"
3711
+ msgstr "Account Attività Logs"
3712
+
3713
+ # @ aiowpsecurity
3714
+ #: admin/wp-security-user-login-menu.php:96
3715
+ msgid ""
3716
+ "You entered a non numeric value for the max login attempts field. It has "
3717
+ "been set to the default value."
3718
+ msgstr ""
3719
+ "È stato immesso un valore non numerico per il campo max tentativi di login. "
3720
+ "È stato impostato il valore di default."
3721
+
3722
+ # @ aiowpsecurity
3723
+ #: admin/wp-security-user-login-menu.php:103
3724
+ msgid ""
3725
+ "You entered a non numeric value for the login retry time period field. It "
3726
+ "has been set to the default value."
3727
+ msgstr ""
3728
+ "È stato immesso un valore non numerico per il campo periodo di tempo login "
3729
+ "riprovare. E' stato impostato il valore di default."
3730
+
3731
+ # @ aiowpsecurity
3732
+ #: admin/wp-security-firewall-menu.php:757
3733
+ #: admin/wp-security-user-login-menu.php:110
3734
+ msgid ""
3735
+ "You entered a non numeric value for the lockout time length field. It has "
3736
+ "been set to the default value."
3737
+ msgstr ""
3738
+ "È stato immesso un valore non numerico per il campo lunghezza tempo di "
3739
+ "blocco. Reimpostato il valore di default."
3740
+
3741
+ # @ aiowpsecurity
3742
+ #: admin/wp-security-user-login-menu.php:159
3743
+ msgid "Login Lockdown Configuration"
3744
+ msgstr "Configurazione Blocco Login"
3745
+
3746
+ # @ aiowpsecurity
3747
+ #: admin/wp-security-user-login-menu.php:163
3748
+ msgid "One of the ways hackers try to compromise sites is via a "
3749
+ msgstr ""
3750
+ "Uno dei modi con cui gli hacker tentano di compromettere siti è tramite un"
3751
+
3752
+ # @ aiowpsecurity
3753
+ #: admin/wp-security-user-login-menu.php:163
3754
+ msgid "Brute Force Login Attack"
3755
+ msgstr "Attacco Brute Force Login"
3756
+
3757
+ # @ aiowpsecurity
3758
+ #: admin/wp-security-user-login-menu.php:164
3759
+ msgid ""
3760
+ "This is where attackers use repeated login attempts until they guess the "
3761
+ "password."
3762
+ msgstr ""
3763
+ "Questo è dove gli aggressori usano i tentativi di accesso ripetuti fino a "
3764
+ "quando non indovinano la password."
3765
+
3766
+ # @ aiowpsecurity
3767
+ #: admin/wp-security-user-login-menu.php:165
3768
+ msgid ""
3769
+ "Apart from choosing strong passwords, monitoring and blocking IP addresses "
3770
+ "which are involved in repeated login failures in a short period of time is a "
3771
+ "very effective way to stop these types of attacks."
3772
+ msgstr ""
3773
+ "Oltre alla scelta di password, il monitoraggio e il blocco degli indirizzi "
3774
+ "IP che sono coinvolti in errori di login ripetuti in un breve periodo di "
3775
+ "tempo è un modo molto efficace per fermare questi tipi di attacchi."
3776
+
3777
+ # @ aiowpsecurity
3778
+ #: admin/wp-security-user-login-menu.php:166
3779
+ #, php-format
3780
+ msgid ""
3781
+ "You may also want to checkout our %s feature for another secure way to "
3782
+ "protect against these types of attacks."
3783
+ msgstr ""
3784
+ "Si consiglia inoltre di vedere %s un altro modo sicuro per proteggere contro "
3785
+ "questi tipi di attacchi."
3786
+
3787
+ # @ aiowpsecurity
3788
+ #: admin/wp-security-user-login-menu.php:171
3789
+ msgid "Login Lockdown Options"
3790
+ msgstr "Opzioni Blocco Login"
3791
+
3792
+ # @ aiowpsecurity
3793
+ #: admin/wp-security-user-login-menu.php:183
3794
+ msgid "Enable Login Lockdown Feature"
3795
+ msgstr "Attiva Funzioni Blocco Login"
3796
+
3797
+ # @ aiowpsecurity
3798
+ #: admin/wp-security-user-login-menu.php:186
3799
+ msgid ""
3800
+ "Check this if you want to enable the login lockdown feature and apply the "
3801
+ "settings below"
3802
+ msgstr ""
3803
+ "Selezionare questa casella per attivare la funzione di blocco accesso e "
3804
+ "applicare le seguenti impostazioni"
3805
+
3806
+ # @ aiowpsecurity
3807
+ #: admin/wp-security-user-login-menu.php:197
3808
+ msgid "Max Login Attempts"
3809
+ msgstr "Max Tentativi Login"
3810
+
3811
+ # @ aiowpsecurity
3812
+ #: admin/wp-security-user-login-menu.php:199
3813
+ msgid ""
3814
+ "Set the value for the maximum login retries before IP address is locked out"
3815
+ msgstr ""
3816
+ "Impostare il valore per il numero massimo di tentativi d'accesso prima che "
3817
+ "l'indirizzo IP venga bloccato"
3818
+
3819
+ # @ aiowpsecurity
3820
+ #: admin/wp-security-user-login-menu.php:203
3821
+ msgid "Login Retry Time Period (min)"
3822
+ msgstr "Tempo Tentativi Riprova Login (min)"
3823
+
3824
+ # @ aiowpsecurity
3825
+ #: admin/wp-security-user-login-menu.php:205
3826
+ msgid ""
3827
+ "If the maximum number of failed login attempts for a particular IP address "
3828
+ "occur within this time period the plugin will lock out that address"
3829
+ msgstr ""
3830
+ "Se il numero massimo di tentativi di accesso non riusciti per un particolare "
3831
+ "indirizzo IP avviene entro questo periodo di tempo il plugin blocca "
3832
+ "quell'indirizzo"
3833
+
3834
+ # @ aiowpsecurity
3835
+ #: admin/wp-security-user-login-menu.php:209
3836
+ msgid "Time Length of Lockout (min)"
3837
+ msgstr "Tempo Durata Blocco (min)"
3838
+
3839
+ # @ aiowpsecurity
3840
+ #: admin/wp-security-user-login-menu.php:211
3841
+ msgid ""
3842
+ "Set the length of time for which a particular IP address will be prevented "
3843
+ "from logging in"
3844
+ msgstr ""
3845
+ "Impostare il periodo di tempo per il quale sarà impedito il login a un "
3846
+ "particolare indirizzo IP"
3847
+
3848
+ # @ aiowpsecurity
3849
+ #: admin/wp-security-user-login-menu.php:215
3850
+ msgid "Display Generic Error Message"
3851
+ msgstr "Mostra Messaggio Errore Generico"
3852
+
3853
+ # @ aiowpsecurity
3854
+ #: admin/wp-security-user-login-menu.php:218
3855
+ msgid ""
3856
+ "Check this if you want to show a generic error message when a login attempt "
3857
+ "fails"
3858
+ msgstr ""
3859
+ "Seleziona questa casella per mostrare un messaggio di errore generico quando "
3860
+ "fallsce il login nel tempo"
3861
+
3862
+ # @ aiowpsecurity
3863
+ #: admin/wp-security-user-login-menu.php:222
3864
+ msgid "Instantly Lockout Invalid Usernames"
3865
+ msgstr "Blocca immediatamente Nomi Utenti non validi"
3866
+
3867
+ # @ aiowpsecurity
3868
+ #: admin/wp-security-user-login-menu.php:225
3869
+ msgid ""
3870
+ "Check this if you want to instantly lockout login attempts with usernames "
3871
+ "which do not exist on your system"
3872
+ msgstr ""
3873
+ "Selezionare questa casella vuoi bloccare istantaneamente i tentativi di "
3874
+ "accesso con nomi utente che non esistono sul tuo sistema"
3875
+
3876
+ # @ aiowpsecurity
3877
+ #: admin/wp-security-user-login-menu.php:230
3878
+ msgid "Notify By Email"
3879
+ msgstr "Notifica via Email"
3880
+
3881
+ # @ aiowpsecurity
3882
+ #: admin/wp-security-user-login-menu.php:233
3883
+ msgid ""
3884
+ "Check this if you want to receive an email when someone has been locked out "
3885
+ "due to maximum failed login attempts"
3886
+ msgstr ""
3887
+ "Seleziona questa casella se vuoi ricevere una e-mail quando qualcuno è stato "
3888
+ "bloccato a causa di massimi tentativi falliti d'accesso"
3889
+
3890
+ # @ aiowpsecurity
3891
+ #: admin/wp-security-user-login-menu.php:243
3892
+ msgid "Currently Locked Out IP Address Ranges"
3893
+ msgstr " Intervalli di indirizzi IP attualmente bloccati"
3894
+
3895
+ # @ aiowpsecurity
3896
+ #: admin/wp-security-brute-force-menu.php:498
3897
+ msgid ""
3898
+ "This feature allows you to add a captcha form on the WordPress login page."
3899
+ msgstr ""
3900
+ "Seleziona questo se desidere inserire un campo captcha nella pagina di Login "
3901
+ "WordPress"
3902
+
3903
+ # @ aiowpsecurity
3904
+ #: admin/wp-security-brute-force-menu.php:499
3905
+ msgid ""
3906
+ "Users who attempt to login will also need to enter the answer to a simple "
3907
+ "mathematical question - if they enter the wrong answer, the plugin will not "
3908
+ "allow them login even if they entered the correct username and password."
3909
+ msgstr ""
3910
+ "Gli utenti che tentano di accedere devono inserire la risposta ad una "
3911
+ "semplice domanda matematica - se viene data la risposta sbagliata il plugin "
3912
+ "non permetterà l'accesso anche se il nome utente e la password sono corretti."
3913
+
3914
+ # @ aiowpsecurity
3915
+ #: admin/wp-security-brute-force-menu.php:500
3916
+ msgid ""
3917
+ "Therefore, adding a captcha form on the login page is another effective yet "
3918
+ "simple \"Brute Force\" prevention technique."
3919
+ msgstr ""
3920
+ "Pertanto, l'aggiunta di un modulo captcha sulla pagina di login è un altro "
3921
+ "efficace ma semplice metodo di prevenzione \"Brute Force\"."
3922
+
3923
+ # @ aiowpsecurity
3924
+ #: admin/wp-security-brute-force-menu.php:506
3925
+ msgid "Login Form Captcha Settings"
3926
+ msgstr "Impostazioni Modulo Captcha pagina di Login"
3927
+
3928
+ # @ aiowpsecurity
3929
+ #: admin/wp-security-brute-force-menu.php:517
3930
+ msgid "Enable Captcha On Login Page"
3931
+ msgstr "Attiva Captcha sulla Pagina di Login"
3932
+
3933
+ # @ aiowpsecurity
3934
+ #: admin/wp-security-brute-force-menu.php:520
3935
+ msgid "Check this if you want to insert a captcha form on the login page"
3936
+ msgstr ""
3937
+ "Seleziona quest se desideri inserire un campo captcha nel modulo della "
3938
+ "pagina di login"
3939
+
3940
+ # @ aiowpsecurity
3941
+ #: admin/wp-security-brute-force-menu.php:526
3942
+ msgid "Lost Password Form Captcha Settings"
3943
+ msgstr "Impostazioni Modulo Captcha Password persa "
3944
+
3945
+ # @ aiowpsecurity
3946
+ #: admin/wp-security-brute-force-menu.php:536
3947
+ msgid "Enable Captcha On Lost Password Page"
3948
+ msgstr "Attiva Captcha nella Pagina Password Persa"
3949
+
3950
+ # @ aiowpsecurity
3951
+ #: admin/wp-security-brute-force-menu.php:539
3952
+ msgid ""
3953
+ "Check this if you want to insert a captcha form on the lost password page"
3954
+ msgstr ""
3955
+ "Seleziona quest se desideri inserire un campo captcha nel modulo della "
3956
+ "password persa"
3957
+
3958
+ # @ aiowpsecurity
3959
+ #: admin/wp-security-brute-force-menu.php:561
3960
+ msgid "Nonce check failed for save whitelist settings!"
3961
+ msgstr "Verifica fallita per salvare le impostazioni whitelist!"
3962
+
3963
+ # @ aiowpsecurity
3964
+ #: admin/wp-security-brute-force-menu.php:618
3965
+ msgid ""
3966
+ "The All In One WP Security Whitelist feature gives you the option of only "
3967
+ "allowing certain IP addresses or ranges to have access to your WordPress "
3968
+ "login page."
3969
+ msgstr ""
3970
+ "L'All In One caratteristica Whitelist Security WP ti dà la possibilità di "
3971
+ "autorizzare solo determinati indirizzi IP, o intervalli, ad accedere alla "
3972
+ "pagina login di WordPress."
3973
+
3974
+ # @ aiowpsecurity
3975
+ #: admin/wp-security-brute-force-menu.php:619
3976
+ msgid ""
3977
+ "This feature will deny login access for all IP addresses which are not in "
3978
+ "your whitelist as configured in the settings below."
3979
+ msgstr ""
3980
+ "Questa funzione nega l'accesso da login per tutti gli indirizzi IP che non "
3981
+ "sono nella tua lista bianca come configurato nelle impostazioni di seguito."
3982
+
3983
+ # @ aiowpsecurity
3984
+ #: admin/wp-security-brute-force-menu.php:620
3985
+ msgid ""
3986
+ "The plugin achieves this by writing the appropriate directives to your ."
3987
+ "htaccess file."
3988
+ msgstr ""
3989
+ "Il plugin realizza questo, facendo le opportune modifiche al file .htaccess."
3990
+
3991
+ # @ aiowpsecurity
3992
+ #: admin/wp-security-brute-force-menu.php:621
3993
+ msgid ""
3994
+ "By allowing/blocking IP addresses via the .htaccess file your are using the "
3995
+ "most secure first line of defence because login access will only be granted "
3996
+ "to whitelisted IP addresses and other addresses will be blocked as soon as "
3997
+ "they try to access your login page."
3998
+ msgstr ""
3999
+ "Consentendo/bloccando gli indirizzi IP tramite il file .htaccess si sta "
4000
+ "usando la linea di difesa più sicura, perché l'accesso di login sarà "
4001
+ "concesso solo agli indirizzi IP nella whitelist e gli altri indirizzi "
4002
+ "verranno bloccati non appena tentano di accedere alla pagina di login."
4003
+
4004
+ # @ aiowpsecurity
4005
+ #: admin/wp-security-brute-force-menu.php:628
4006
+ #, php-format
4007
+ msgid ""
4008
+ "Attention: If in addition to enabling the white list feature, you also have "
4009
+ "the %s feature enabled, <strong>you will still need to use your secret word "
4010
+ "in the URL when trying to access your WordPress login page</strong>."
4011
+ msgstr ""
4012
+ "Attenzione: Se oltre ad abilitare la funzione lista bianca, si ha anche la "
4013
+ "%s funzione attivata,<strong>sarà comunque necessario utilizzare la tua "
4014
+ "parola segreta nell'URL quando si cerca di accedere alla pagina di login di "
4015
+ "WordPress</strong>."
4016
+
4017
+ # @ aiowpsecurity
4018
+ #: admin/wp-security-brute-force-menu.php:629
4019
+ msgid ""
4020
+ "These features are NOT functionally related. Having both of them enabled on "
4021
+ "your site means you are creating 2 layers of security."
4022
+ msgstr ""
4023
+ "Queste caratteristiche NON sono funzionalmente correlate. Se si abilitano "
4024
+ "entrambe sul sito si creano due livelli di sicurezza."
4025
+
4026
+ # @ aiowpsecurity
4027
+ #: admin/wp-security-brute-force-menu.php:634
4028
+ msgid "Login IP Whitelist Settings"
4029
+ msgstr "Login Configurazione Whitelist IP"
4030
+
4031
+ # @ aiowpsecurity
4032
+ #: admin/wp-security-brute-force-menu.php:645
4033
+ msgid "Enable IP Whitelisting"
4034
+ msgstr "Attiva IP Whitelisting"
4035
+
4036
+ # @ aiowpsecurity
4037
+ #: admin/wp-security-brute-force-menu.php:648
4038
+ msgid ""
4039
+ "Check this if you want to enable the whitelisting of selected IP addresses "
4040
+ "specified in the settings below"
4041
+ msgstr ""
4042
+ "Selezionare questa se vuoi attivare la whitelist di indirizzi IP selezionati "
4043
+ "specificati nelle impostazioni di seguito"
4044
+
4045
+ # @ aiowpsecurity
4046
+ #: admin/wp-security-brute-force-menu.php:652
4047
+ msgid "Your Current IP Address"
4048
+ msgstr "Il Tuo Indirizzo IP Attuale"
4049
+
4050
+ # @ aiowpsecurity
4051
+ #: admin/wp-security-brute-force-menu.php:655
4052
+ msgid ""
4053
+ "You can copy and paste this address in the text box below if you want to "
4054
+ "include it in your login whitelist."
4055
+ msgstr ""
4056
+ "È possibile copiare e incollare questo indirizzo nella casella di testo "
4057
+ "sottostante, se desideri includerlo nella tua lista bianca login."
4058
+
4059
+ # @ aiowpsecurity
4060
+ #: admin/wp-security-brute-force-menu.php:659
4061
+ msgid "Enter Whitelisted IP Addresses:"
4062
+ msgstr "Inserisci Indirizzi IP Whitelisted:"
4063
+
4064
+ # @ aiowpsecurity
4065
+ #: admin/wp-security-brute-force-menu.php:663
4066
+ msgid ""
4067
+ "Enter one or more IP addresses or IP ranges you wish to include in your "
4068
+ "whitelist. Only the addresses specified here will have access to the "
4069
+ "WordPress login page."
4070
+ msgstr ""
4071
+ "Immettere uno o più indirizzi IP o intervalli IP che vuoi includere nella "
4072
+ "tua lista bianca. Solo gli indirizzi specificati qui potranno accedere alla "
4073
+ "pagina di login di WordPress."
4074
+
4075
+ # @ aiowpsecurity
4076
+ #: admin/wp-security-user-login-menu.php:264
4077
+ msgid "Nonce check failed for delete all failed login records operation!"
4078
+ msgstr "Tentativo non riuscito di eliminare tutti i record di login falliti!"
4079
+
4080
+ # @ aiowpsecurity
4081
+ #: admin/wp-security-user-login-menu.php:273
4082
+ msgid "User Login Feature - Delete all failed login records operation failed!"
4083
+ msgstr ""
4084
+ "Funzioni Login Utente - Operazione per eliminirare i record login falliti "
4085
+ "non riuscita!"
4086
+
4087
+ # @ aiowpsecurity
4088
+ #: admin/wp-security-user-login-menu.php:277
4089
+ msgid "All records from the Failed Logins table were deleted successfully!"
4090
+ msgstr ""
4091
+ "Tutti i record della tabella accessi non riusciti sono stati cancellati con "
4092
+ "successo!"
4093
+
4094
+ # @ aiowpsecurity
4095
+ #: admin/wp-security-user-login-menu.php:292
4096
+ msgid "This tab displays the failed login attempts for your site."
4097
+ msgstr ""
4098
+ "Questa scheda visualizza i tentativi di accesso non riusciti per il tuo sito."
4099
+
4100
+ # @ aiowpsecurity
4101
+ #: admin/wp-security-user-login-menu.php:293
4102
+ msgid ""
4103
+ "The information below can be handy if you need to do security investigations "
4104
+ "because it will show you the IP range, username and ID (if applicable) and "
4105
+ "the time/date of the failed login attempt."
4106
+ msgstr ""
4107
+ "Le informazioni qui di seguito possono essere utili se hai bisogno di fare "
4108
+ "indagini sulla sicurezza, perché mostreranno l'intervallo IP, nome utente e "
4109
+ "ID (se applicabile) e la data/ora del tentativo di accesso non riuscito."
4110
+
4111
+ # @ aiowpsecurity
4112
+ #: admin/wp-security-user-login-menu.php:314
4113
+ #: admin/wp-security-user-login-menu.php:323
4114
+ msgid "Delete All Failed Login Records"
4115
+ msgstr "Elimina tutti i record Login Falliti"
4116
+
4117
+ # @ aiowpsecurity
4118
+ #: admin/wp-security-user-login-menu.php:320
4119
+ msgid ""
4120
+ "Click this button if you wish to delete all failed login records in one go."
4121
+ msgstr ""
4122
+ "Clicca su questo pulsante se vuoi eliminare tutti i record di accesso non "
4123
+ "riusciti in un colpo solo."
4124
+
4125
+ # @ aiowpsecurity
4126
+ #: admin/wp-security-user-login-menu.php:348
4127
+ msgid ""
4128
+ "You entered a non numeric value for the logout time period field. It has "
4129
+ "been set to the default value."
4130
+ msgstr ""
4131
+ "È stato immesso un valore non numerico per il campo periodo di tempo "
4132
+ "disconnessione. Reimpostato il valore di default."
4133
+
4134
+ # @ aiowpsecurity
4135
+ #: admin/wp-security-user-login-menu.php:376
4136
+ msgid ""
4137
+ "Setting an expiry period for your WP administration session is a simple way "
4138
+ "to protect against unauthorized access to your site from your computer."
4139
+ msgstr ""
4140
+ "Impostare un periodo di scadenza per la sessione di amministrazione WP è un "
4141
+ "modo semplice per proteggere il sito dall'accesso non autorizzato da "
4142
+ "computer."
4143
+
4144
+ # @ aiowpsecurity
4145
+ #: admin/wp-security-user-login-menu.php:377
4146
+ msgid ""
4147
+ "This feature allows you to specify a time period in minutes after which the "
4148
+ "admin session will expire and the user will be forced to log back in."
4149
+ msgstr ""
4150
+ "Questa funzione consente di specificare un periodo di tempo in minuti dopo "
4151
+ "il quale la sessione di amministrazione scadrà e l'utente sarà costretto ad "
4152
+ "accedere di nuovo."
4153
+
4154
+ # @ aiowpsecurity
4155
+ #: admin/wp-security-user-login-menu.php:382
4156
+ msgid "Force User Logout Options"
4157
+ msgstr "Opzioni Forza Logout Utente"
4158
+
4159
+ # @ aiowpsecurity
4160
+ #: admin/wp-security-user-login-menu.php:394
4161
+ msgid "Enable Force WP User Logout"
4162
+ msgstr "Attiva Logout WP Utente Forzato"
4163
+
4164
+ # @ aiowpsecurity
4165
+ #: admin/wp-security-user-login-menu.php:397
4166
+ msgid ""
4167
+ "Check this if you want to force a wp user to be logged out after a "
4168
+ "configured amount of time"
4169
+ msgstr ""
4170
+ "Seleziona questa casella se vuoi forzare un utente wp di ri-autenticarsi "
4171
+ "dopo un periodo di tempo scelto"
4172
+
4173
+ # @ aiowpsecurity
4174
+ #: admin/wp-security-user-login-menu.php:401
4175
+ msgid "Logout the WP User After XX Minutes"
4176
+ msgstr "Disconnetti l'Utente WP Dopo XX Minuti"
4177
+
4178
+ # @ aiowpsecurity
4179
+ #: admin/wp-security-user-login-menu.php:403
4180
+ msgid ""
4181
+ "(Minutes) The user will be forced to log back in after this time period has "
4182
+ "elapased."
4183
+ msgstr ""
4184
+ "(Minuti), l'utente sarà costretto a ricollegarsi dopo che è trascorso questo "
4185
+ "periodo di tempo."
4186
+
4187
+ # @ aiowpsecurity
4188
+ #: admin/wp-security-user-login-menu.php:426
4189
+ msgid ""
4190
+ "This tab displays the login activity for WordPress admin accounts registered "
4191
+ "with your site."
4192
+ msgstr ""
4193
+ "Questa scheda visualizza l'attività di accesso per gli account WordPress di "
4194
+ "amministrazione registrati nel tuo sito."
4195
+
4196
+ # @ aiowpsecurity
4197
+ #: admin/wp-security-user-login-menu.php:427
4198
+ msgid ""
4199
+ "The information below can be handy if you need to do security investigations "
4200
+ "because it will show you the last 50 recent login events by username, IP "
4201
+ "address and time/date."
4202
+ msgstr ""
4203
+ "Le informazioni di seguito possono essere utili per fare indagini sulla "
4204
+ "sicurezza, perché mostrano gli ultimi 50 eventi Recenti di Login per nome "
4205
+ "utente, indirizzo IP e la data/ora."
4206
+
4207
+ # @ aiowpsecurity
4208
+ #: admin/wp-security-user-login-menu.php:464
4209
+ msgid "Nonce check failed for users logged in list!"
4210
+ msgstr "Verifica fallita di utenti in lista connessi!"
4211
+
4212
+ # @ aiowpsecurity
4213
+ #: admin/wp-security-user-login-menu.php:477
4214
+ msgid "Refresh Logged In User Data"
4215
+ msgstr "Riacricamento Dati Login Utente"
4216
+
4217
+ # @ aiowpsecurity
4218
+ #: admin/wp-security-user-login-menu.php:481
4219
+ msgid "Refresh Data"
4220
+ msgstr "Ricarica Dati"
4221
+
4222
+ # @ aiowpsecurity
4223
+ #: admin/wp-security-user-login-menu.php:487
4224
+ msgid "This tab displays all users who are currently logged into your site."
4225
+ msgstr ""
4226
+ "Questa scheda consente di visualizzare tutti gli utenti che sono connessi "
4227
+ "nel tuo sito."
4228
+
4229
+ # @ aiowpsecurity
4230
+ #: admin/wp-security-user-login-menu.php:488
4231
+ msgid ""
4232
+ "If you suspect there is a user or users who are logged in which should not "
4233
+ "be, you can block them by inspecting the IP addresses from the data below "
4234
+ "and adding them to your blacklist."
4235
+ msgstr ""
4236
+ "Se si sospetta ci sia uno o più utenti registrati, che non dovrebbero "
4237
+ "esserci, è possibile bloccarli ispezionando gli indirizzi IP dai dati qui "
4238
+ "sotto e aggiungendoli alla tua lista nera."
4239
+
4240
+ # @ aiowpsecurity
4241
+ #: admin/wp-security-user-login-menu.php:493
4242
+ msgid "Currently Logged In Users"
4243
+ msgstr "Utenti Connessi Ora"
4244
+
4245
+ # @ aiowpsecurity
4246
+ #: admin/wp-security-user-login-menu.php:558
4247
+ msgid "The selected records were deleted successfully!"
4248
+ msgstr "I record selezionati sono stati cancellati con successo!"
4249
+
4250
+ # @ aiowpsecurity
4251
+ #: admin/wp-security-user-login-menu.php:567
4252
+ msgid "The selected record was deleted successfully!"
4253
+ msgstr "Il record selezionato è stato cancellato con successo!"
4254
+
4255
+ # @ aiowpsecurity
4256
+ #: admin/wp-security-user-registration-menu.php:23
4257
+ msgid "Manual Approval"
4258
+ msgstr "Approvazione manuale"
4259
+
4260
+ # @ aiowpsecurity
4261
+ #: admin/wp-security-user-registration-menu.php:24
4262
+ #: classes/grade-system/wp-security-feature-item-manager.php:56
4263
+ msgid "Registration Captcha"
4264
+ msgstr "Impostazioni Captcha Registrazione"
4265
+
4266
+ # @ aiowpsecurity
4267
+ #: admin/wp-security-user-registration-menu.php:112
4268
+ msgid "User Registration Settings"
4269
+ msgstr "Impostazioni Registrazione Utenti"
4270
+
4271
+ # @ aiowpsecurity
4272
+ #: admin/wp-security-user-registration-menu.php:116
4273
+ msgid "Manually Approve New Registrations"
4274
+ msgstr "Approvazione Manuale Nuove Registrazioni"
4275
+
4276
+ # @ aiowpsecurity
4277
+ #: admin/wp-security-user-registration-menu.php:120
4278
+ msgid ""
4279
+ "If your site allows people to create their own accounts via the WordPress "
4280
+ "registration form, then you can minimize SPAM or bogus registrations by "
4281
+ "manually approving each registration."
4282
+ msgstr ""
4283
+ "Se il sito consente agli utenti di creare i propri account tramite il modulo "
4284
+ "di registrazione WordPress, allora è possibile ridurre SPAM o registrazioni "
4285
+ "fasulle approvando manualmente ogni registrazione."
4286
+
4287
+ # @ aiowpsecurity
4288
+ #: admin/wp-security-user-registration-menu.php:121
4289
+ msgid ""
4290
+ "This feature will automatically set a newly registered account to \"pending"
4291
+ "\" until the administrator activates it. Therefore undesirable registrants "
4292
+ "will be unable to log in without your express approval."
4293
+ msgstr ""
4294
+ "Questa funzione consente di impostare automaticamente un account appena "
4295
+ "registrato \"in attesa\" fino a quando l'amministratore lo attiva. "
4296
+ "Pertanto, gli iscritti indesiderati non saranno in grado di accedere senza "
4297
+ "la vostra approvazione esplicita."
4298
+
4299
+ # @ aiowpsecurity
4300
+ #: admin/wp-security-user-registration-menu.php:122
4301
+ msgid ""
4302
+ "You can view all accounts which have been newly registered via the handy "
4303
+ "table below and you can also perform bulk activation/deactivation/deletion "
4304
+ "tasks on each account."
4305
+ msgstr ""
4306
+ "È possibile visualizzare tutti gli account che sono stati recentemente "
4307
+ "registrati tramite la tabella qui sotto e si possono anche effettuare "
4308
+ "operazioni di attivazione/disattivazione/eliminazione di massa su ogni "
4309
+ "account."
4310
+
4311
+ # @ aiowpsecurity
4312
+ #: admin/wp-security-user-registration-menu.php:138
4313
+ msgid "Enable manual approval of new registrations"
4314
+ msgstr "Attiva approvazione manuale di nuove registrazioni"
4315
+
4316
+ # @ aiowpsecurity
4317
+ #: admin/wp-security-user-registration-menu.php:141
4318
+ msgid ""
4319
+ "Check this if you want to automatically disable all newly registered "
4320
+ "accounts so that you can approve them manually."
4321
+ msgstr ""
4322
+ "Seleziona questa casella se desideri disattivare automaticamente tutti gli "
4323
+ "account di nuova registrazione in modo da approvarli manualmente."
4324
+
4325
+ # @ aiowpsecurity
4326
+ #: admin/wp-security-user-registration-menu.php:150
4327
+ msgid "Approve Registered Users"
4328
+ msgstr "Approva Utenti registrati "
4329
+
4330
+ # @ aiowpsecurity
4331
+ #: admin/wp-security-user-registration-menu.php:195
4332
+ msgid ""
4333
+ "This feature allows you to add a captcha form on the WordPress registration "
4334
+ "page."
4335
+ msgstr ""
4336
+ "Questa funzione consente di aggiungere un modulo captcha nella pagina di "
4337
+ "registrazione di WordPress."
4338
+
4339
+ # @ aiowpsecurity
4340
+ #: admin/wp-security-user-registration-menu.php:196
4341
+ msgid ""
4342
+ "Users who attempt to register will also need to enter the answer to a simple "
4343
+ "mathematical question - if they enter the wrong answer, the plugin will not "
4344
+ "allow them to register."
4345
+ msgstr ""
4346
+ "Gli utenti che tentano di registrarsi devono inserire la risposta ad una "
4347
+ "semplice domanda matematica - se inseriscono la risposta sbagliata il plugin "
4348
+ "non permetterà loro di registrarsi."
4349
+
4350
+ # @ aiowpsecurity
4351
+ #: admin/wp-security-user-registration-menu.php:197
4352
+ msgid ""
4353
+ "Therefore, adding a captcha form on the registration page is another "
4354
+ "effective yet simple SPAM registration prevention technique."
4355
+ msgstr ""
4356
+ "Pertanto, l'aggiunta di un modulo captcha nella pagina di registrazione, è "
4357
+ "un'altra tecnica semplice ma efficace per prevenire registrazioni SPAM."
4358
+
4359
+ # @ aiowpsecurity
4360
+ #: admin/wp-security-user-registration-menu.php:202
4361
+ msgid "Registration Page Captcha Settings"
4362
+ msgstr "Impostazioni Captcha Pagina Registrazione"
4363
+
4364
+ # @ aiowpsecurity
4365
+ #: admin/wp-security-user-registration-menu.php:214
4366
+ msgid "Enable Captcha On Registration Page"
4367
+ msgstr "Attiva Captcha nella Pagina di Registrazione"
4368
+
4369
+ # @ aiowpsecurity
4370
+ #: admin/wp-security-user-registration-menu.php:217
4371
+ msgid ""
4372
+ "Check this if you want to insert a captcha form on the WordPress user "
4373
+ "registration page (if you allow user registration)."
4374
+ msgstr ""
4375
+ "Seleziona questo se desideri inserire un modulo captcha nella pagina di "
4376
+ "registrazione utente WordPress (se si consente la registrazione dell'utente)."
4377
+
4378
+ # @ aiowpsecurity
4379
+ #: admin/wp-security-whois-menu.php:22
4380
+ msgid "WhoIS Lookup"
4381
+ msgstr "Ricerca WHOIS"
4382
+
4383
+ # @ aiowpsecurity
4384
+ #: admin/wp-security-whois-menu.php:74
4385
+ msgid "WHOIS Lookup Information"
4386
+ msgstr "Cerca Informazioni WHOIS"
4387
+
4388
+ # @ aiowpsecurity
4389
+ #: admin/wp-security-whois-menu.php:77
4390
+ msgid ""
4391
+ "This feature allows you to look up more detailed information about an IP "
4392
+ "address or domain name by querying the WHOIS API."
4393
+ msgstr ""
4394
+ "Questa funzione consente di cercare informazioni più dettagliate su un "
4395
+ "indirizzo IP o nome di dominio tramite l'API WHOIS."
4396
+
4397
+ # @ aiowpsecurity
4398
+ #: admin/wp-security-whois-menu.php:83
4399
+ msgid "Perform a WHOIS Lookup for an IP or Domain Name"
4400
+ msgstr "Eseguire una ricerca con whois per un IP o nome di dominio"
4401
+
4402
+ # @ aiowpsecurity
4403
+ #: admin/wp-security-whois-menu.php:89
4404
+ msgid "Enter IP Address or Domain Name"
4405
+ msgstr "Inserisci l'indirizzo IP o il Nome Dominio"
4406
+
4407
+ # @ aiowpsecurity
4408
+ #: admin/wp-security-whois-menu.php:91
4409
+ msgid ""
4410
+ "Enter an IP address or domain name. Example: 111.11.12.13 OR some-domain-"
4411
+ "name.com"
4412
+ msgstr ""
4413
+ "Inserire un indirizzo IP o il nome del dominio. Esempio: 111.11.12.13 O nome-"
4414
+ "dominio-chevuoi.com"
4415
+
4416
+ # @ aiowpsecurity
4417
+ #: admin/wp-security-whois-menu.php:95
4418
+ msgid "Perform IP or Domain Lookup"
4419
+ msgstr "Eseguire ricerca IP o di dominio"
4420
+
4421
+ # @ aiowpsecurity
4422
+ #: admin/wp-security-whois-menu.php:115
4423
+ msgid "WHOIS lookup successfully completed. Please see the results below:"
4424
+ msgstr ""
4425
+ "WHOIS completato con successo. Si prega di vedere i risultati di seguito:"
4426
+
4427
+ # @ aiowpsecurity
4428
+ #: admin/wp-security-whois-menu.php:127
4429
+ msgid ""
4430
+ "You have entered an incorrectly formatted IP address or domain name. Please "
4431
+ "try again."
4432
+ msgstr ""
4433
+ "È stato immesso un indirizzo IP, o il nome dominio, non correttamente "
4434
+ "formattato. Riprova."
4435
+
4436
+ # @ default
4437
+ #: admin/general/wp-security-list-table.php:178
4438
+ msgid "No items found."
4439
+ msgstr "Nessun articolo trovato."
4440
+
4441
+ # @ default
4442
+ #: admin/general/wp-security-list-table.php:281
4443
+ msgid "Bulk Actions"
4444
+ msgstr "Azioni in blocco"
4445
+
4446
+ # @ default
4447
+ #: admin/general/wp-security-list-table.php:291
4448
+ msgid "Apply"
4449
+ msgstr "Applica"
4450
+
4451
+ # @ default
4452
+ #: admin/general/wp-security-list-table.php:365
4453
+ msgid "Show all dates"
4454
+ msgstr "Mostra tutte le date"
4455
+
4456
+ # @ default
4457
+ #. translators: 1: month name, 2: 4-digit year
4458
+ #: admin/general/wp-security-list-table.php:378
4459
+ #, php-format
4460
+ msgid "%1$s %2$d"
4461
+ msgstr "%1$s %2$d"
4462
+
4463
+ # @ default
4464
+ #: admin/general/wp-security-list-table.php:394
4465
+ msgid "List View"
4466
+ msgstr "Vedi Lista"
4467
+
4468
+ # @ default
4469
+ #: admin/general/wp-security-list-table.php:395
4470
+ msgid "Excerpt View"
4471
+ msgstr "Vedi Estratto"
4472
+
4473
+ # @ default
4474
+ #: admin/general/wp-security-list-table.php:421
4475
+ #, php-format
4476
+ msgid "%s pending"
4477
+ msgstr "%s pendenti"
4478
+
4479
+ # @ default
4480
+ #: admin/general/wp-security-list-table.php:653
4481
+ msgid "Select All"
4482
+ msgstr "Seleziona Tutti"
4483
+
4484
+ # @ aiowpsecurity
4485
+ #: classes/wp-security-backup.php:177
4486
+ msgid "All In One WP Security - Site Database Backup"
4487
+ msgstr "All In One WP Security - Backup Database Sito"
4488
+
4489
+ # @ aiowpsecurity
4490
+ #: classes/wp-security-backup.php:179
4491
+ msgid "Attached is your latest DB backup file for site URL"
4492
+ msgstr "In allegato è il file di backup DB più recente per l'URL del sito"
4493
+
4494
+ # @ aiowpsecurity
4495
+ #: classes/wp-security-backup.php:179
4496
+ msgid " generated on"
4497
+ msgstr "generati su"
4498
+
4499
+ # @ aiowpsecurity
4500
+ #: classes/wp-security-captcha.php:12
4501
+ msgid "Please enter an answer in digits:"
4502
+ msgstr "Inserisci una risposta in cifre:"
4503
+
4504
+ # @ aiowpsecurity
4505
+ #: classes/wp-security-captcha.php:91
4506
+ msgid "one"
4507
+ msgstr "uno"
4508
+
4509
+ # @ aiowpsecurity
4510
+ #: classes/wp-security-captcha.php:92
4511
+ msgid "two"
4512
+ msgstr "due"
4513
+
4514
+ # @ aiowpsecurity
4515
+ #: classes/wp-security-captcha.php:93
4516
+ msgid "three"
4517
+ msgstr "tre"
4518
+
4519
+ # @ aiowpsecurity
4520
+ #: classes/wp-security-captcha.php:94
4521
+ msgid "four"
4522
+ msgstr "quattro"
4523
+
4524
+ # @ aiowpsecurity
4525
+ #: classes/wp-security-captcha.php:95
4526
+ msgid "five"
4527
+ msgstr "cinque"
4528
+
4529
+ # @ aiowpsecurity
4530
+ #: classes/wp-security-captcha.php:96
4531
+ msgid "six"
4532
+ msgstr "sei"
4533
+
4534
+ # @ aiowpsecurity
4535
+ #: classes/wp-security-captcha.php:97
4536
+ msgid "seven"
4537
+ msgstr "sette"
4538
+
4539
+ # @ aiowpsecurity
4540
+ #: classes/wp-security-captcha.php:98
4541
+ msgid "eight"
4542
+ msgstr "otto"
4543
+
4544
+ # @ aiowpsecurity
4545
+ #: classes/wp-security-captcha.php:99
4546
+ msgid "nine"
4547
+ msgstr "nove"
4548
+
4549
+ # @ aiowpsecurity
4550
+ #: classes/wp-security-captcha.php:100
4551
+ msgid "ten"
4552
+ msgstr "dieci"
4553
+
4554
+ # @ aiowpsecurity
4555
+ #: classes/wp-security-captcha.php:101
4556
+ msgid "eleven"
4557
+ msgstr "undici"
4558
+
4559
+ # @ aiowpsecurity
4560
+ #: classes/wp-security-captcha.php:102
4561
+ msgid "twelve"
4562
+ msgstr "dodici"
4563
+
4564
+ # @ aiowpsecurity
4565
+ #: classes/wp-security-captcha.php:103
4566
+ msgid "thirteen"
4567
+ msgstr "tredici"
4568
+
4569
+ # @ aiowpsecurity
4570
+ #: classes/wp-security-captcha.php:104
4571
+ msgid "fourteen"
4572
+ msgstr "quattordici"
4573
+
4574
+ # @ aiowpsecurity
4575
+ #: classes/wp-security-captcha.php:105
4576
+ msgid "fifteen"
4577
+ msgstr "quindici"
4578
+
4579
+ # @ aiowpsecurity
4580
+ #: classes/wp-security-captcha.php:106
4581
+ msgid "sixteen"
4582
+ msgstr "sedici"
4583
+
4584
+ # @ aiowpsecurity
4585
+ #: classes/wp-security-captcha.php:107
4586
+ msgid "seventeen"
4587
+ msgstr "diciassette"
4588
+
4589
+ # @ aiowpsecurity
4590
+ #: classes/wp-security-captcha.php:108
4591
+ msgid "eighteen"
4592
+ msgstr "diciotto"
4593
+
4594
+ # @ aiowpsecurity
4595
+ #: classes/wp-security-captcha.php:109
4596
+ msgid "nineteen"
4597
+ msgstr "diciannove"
4598
+
4599
+ # @ aiowpsecurity
4600
+ #: classes/wp-security-captcha.php:110
4601
+ msgid "twenty"
4602
+ msgstr "venti"
4603
+
4604
+ # @ aiowpsecurity
4605
+ #: classes/wp-security-file-scan.php:62
4606
+ msgid "All In One WP Security - File change detected!"
4607
+ msgstr "All In One WP Security - Rilevata Modifica File!"
4608
+
4609
+ # @ aiowpsecurity
4610
+ #: classes/wp-security-file-scan.php:64
4611
+ msgid "A file change was detected on your system for site URL"
4612
+ msgstr "Un cambiamento file è stato rilevato sul sistema del sito con URL"
4613
+
4614
+ # @ aiowpsecurity
4615
+ #: classes/wp-security-file-scan.php:64
4616
+ msgid ". Scan was generated on"
4617
+ msgstr ".Scansione è stata generata su"
4618
+
4619
+ # @ aiowpsecurity
4620
+ #: classes/wp-security-file-scan.php:65
4621
+ msgid "Login to your site to view the scan details."
4622
+ msgstr "Accedi al sito per visualizzare i dettagli di scansione."
4623
+
4624
+ # @ aiowpsecurity
4625
+ #: classes/wp-security-general-init-tasks.php:203
4626
+ msgid "Please enter an answer in the CAPTCHA field."
4627
+ msgstr "Inserisci una risposta nel campo CAPTCHA."
4628
+
4629
+ # @ aiowpsecurity
4630
+ #: classes/wp-security-general-init-tasks.php:213
4631
+ msgid ""
4632
+ "Error: You entered an incorrect CAPTCHA answer. Please go back and try again."
4633
+ msgstr "Errore: Hai inserito una risposta CAPTCHA sbagliata. Prova di nuovo."
4634
+
4635
+ # @ aiowpsecurity
4636
+ #: classes/wp-security-general-init-tasks.php:241
4637
+ #: classes/wp-security-user-login.php:70 classes/wp-security-user-login.php:73
4638
+ #: classes/wp-security-user-registration.php:59
4639
+ msgid "<strong>ERROR</strong>: Your answer was incorrect - please try again."
4640
+ msgstr ""
4641
+ "<strong>ERRORE</strong>: La risposta è sbagliata - si prega di riprovare."
4642
+
4643
+ # @ aiowpsecurity
4644
+ #: classes/wp-security-user-login.php:43
4645
+ msgid ""
4646
+ "<strong>ERROR</strong>: Login failed because your IP address has been "
4647
+ "blocked.\n"
4648
+ " Please contact the administrator."
4649
+ msgstr ""
4650
+ "<strong>ERRORE</strong>: Accesso non riuscito perché il vostro indirizzo IP "
4651
+ "è stato bloccato a causa di un numero eccessivo di tentativi di login "
4652
+ "falliti.\n"
4653
+ " Si prega di contattare l'amministratore."
4654
+
4655
+ # @ aiowpsecurity
4656
+ #: classes/wp-security-user-login.php:83
4657
+ msgid "<strong>ERROR</strong>: The username field is empty."
4658
+ msgstr "<strong>ERRORE</strong>: Il campo Nome Utente è vuoto."
4659
+
4660
+ # @ aiowpsecurity
4661
+ #: classes/wp-security-user-login.php:87
4662
+ msgid "<strong>ERROR</strong>: The password field is empty."
4663
+ msgstr "<strong>ERRORE</strong>: Il campo password è vuoto."
4664
+
4665
+ # @ aiowpsecurity
4666
+ #: classes/wp-security-user-login.php:107
4667
+ #: classes/wp-security-user-login.php:133
4668
+ msgid "<strong>ERROR</strong>: Invalid login credentials."
4669
+ msgstr "<strong>ERRORE</strong>: credenziali login non valide."
4670
+
4671
+ # @ aiowpsecurity
4672
+ #: classes/wp-security-user-login.php:110
4673
+ msgid "<strong>ERROR</strong>: Invalid username."
4674
+ msgstr "<strong>ERRORE</strong>: Nome Utente non valido."
4675
+
4676
+ # @ aiowpsecurity
4677
+ #: classes/wp-security-user-login.php:136
4678
+ #, php-format
4679
+ msgid ""
4680
+ "<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password "
4681
+ "Lost and Found\">Lost your password</a>?"
4682
+ msgstr ""
4683
+ "<strong>ERRORE</strong>: Password non corretta. <a href=\"%s\" title="
4684
+ "\"Password smarrita\">Hai perso la tua password</a>?"
4685
+
4686
+ # @ aiowpsecurity
4687
+ #: classes/wp-security-user-login.php:147
4688
+ msgid ""
4689
+ "<strong>ACCOUNT PENDING</strong>: Your account is currently not active. An "
4690
+ "administrator needs to activate your account before you can login."
4691
+ msgstr ""
4692
+ "<strong>ACCOUNT IN SOSPESO </strong>: Il tuo account non è attivo. Un "
4693
+ "amministratore deve attivare il tuo account prima di poter accedere."
4694
+
4695
+ # @ aiowpsecurity
4696
+ #: classes/wp-security-user-login.php:270
4697
+ msgid "Site Lockout Notification"
4698
+ msgstr "Avviso Blocco Sito"
4699
+
4700
+ # @ aiowpsecurity
4701
+ #: classes/wp-security-user-login.php:271
4702
+ msgid ""
4703
+ "A lockdown event has occurred due to too many failed login attempts or "
4704
+ "invalid username:"
4705
+ msgstr ""
4706
+ "Un'azione di blocco si è verificata a causa di un numero eccessivo di "
4707
+ "tentativi di accesso non riusciti, con i seguenti dati utente"
4708
+
4709
+ # @ aiowpsecurity
4710
+ #: classes/wp-security-user-login.php:273
4711
+ msgid "IP Address: "
4712
+ msgstr "Indirizzo IP:"
4713
+
4714
+ # @ aiowpsecurity
4715
+ #: classes/wp-security-user-login.php:275
4716
+ msgid ""
4717
+ "Log into your site's WordPress administration panel to see the duration of "
4718
+ "the lockout or to unlock the user."
4719
+ msgstr ""
4720
+ "Accedi al pannello di amministrazione di WordPress del tuo sito per vedere "
4721
+ "la durata del blocco o per sbloccare l'utente."
4722
+
4723
+ # @ aiowpsecurity
4724
+ #: classes/wp-security-user-login.php:504
4725
+ #, php-format
4726
+ msgid ""
4727
+ "Your session has expired because it has been over %d minutes since your last "
4728
+ "login."
4729
+ msgstr ""
4730
+ "La sessione è scaduta perché è passato più di %d minuti dal tuo ultimo "
4731
+ "accesso."
4732
+
4733
+ # @ aiowpsecurity
4734
+ #: classes/wp-security-user-login.php:505
4735
+ #: classes/wp-security-user-login.php:509
4736
+ msgid "Please log back in to continue."
4737
+ msgstr "Accedi nuovamente per continuare."
4738
+
4739
+ # @ aiowpsecurity
4740
+ #: classes/wp-security-user-login.php:508
4741
+ msgid "You were logged out because you just changed the \"admin\" username."
4742
+ msgstr ""
4743
+ "Sei stato disconnesso perché hai appena cambiato il nome utente \"admin\"."
4744
+
4745
+ # @ aiowpsecurity
4746
+ #: classes/wp-security-utility-ip-address.php:75
4747
+ #: classes/wp-security-utility-ip-address.php:94
4748
+ #: classes/wp-security-utility-ip-address.php:109
4749
+ #: classes/wp-security-utility-ip-address.php:124
4750
+ msgid " is not a valid ip address format."
4751
+ msgstr "formato indirizzo ip non valido."
4752
+
4753
+ # @ aiowpsecurity
4754
+ #: classes/wp-security-utility-ip-address.php:132
4755
+ msgid "You cannot ban your own IP address: "
4756
+ msgstr "Non spuoi vietare il tuo indirizzo IP:"
4757
+
4758
+ # @ aiowpsecurity
4759
+ #: classes/wp-security-utility.php:151
4760
+ msgid ""
4761
+ "This feature can only be configured by the \"superadmin\" on the main site."
4762
+ msgstr ""
4763
+ "Questa funzione può essere configurata solo dal \"superadmin\" sul sito "
4764
+ "principale."
4765
+
4766
+ # @ aiowpsecurity
4767
+ #: classes/grade-system/wp-security-feature-item-manager.php:29
4768
+ msgid "Remove WP Generatore Meta Tag"
4769
+ msgstr "Rimuovi Generatore WP Meta Tag"
4770
+
4771
+ # @ aiowpsecurity
4772
+ #: classes/grade-system/wp-security-feature-item-manager.php:38
4773
+ msgid "Change Display Name"
4774
+ msgstr "Cambia Nome Visualizzato"
4775
+
4776
+ # @ aiowpsecurity
4777
+ #: classes/grade-system/wp-security-feature-item-manager.php:46
4778
+ msgid "Lost Password Captcha"
4779
+ msgstr "Password persa Captcha"
4780
+
4781
+ # @ aiowpsecurity
4782
+ #: classes/grade-system/wp-security-feature-item-manager.php:48
4783
+ msgid "Login IP Whitelisting"
4784
+ msgstr "Lista Bianca IP Login"
4785
+
4786
+ # @ aiowpsecurity
4787
+ #: classes/grade-system/wp-security-feature-item-manager.php:54
4788
+ msgid "Registration Approval"
4789
+ msgstr "Approvazione registrazione"
4790
+
4791
+ # @ aiowpsecurity
4792
+ #: classes/grade-system/wp-security-feature-item-manager.php:70
4793
+ msgid "WordPress Files Access"
4794
+ msgstr "Accesso File WordPress"
4795
+
4796
+ # @ aiowpsecurity
4797
+ #: classes/grade-system/wp-security-feature-item-manager.php:74
4798
+ msgid "IP and User Agent Blacklisting"
4799
+ msgstr "IP o User Agent Blacklist"
4800
+
4801
+ # @ aiowpsecurity
4802
+ #: classes/grade-system/wp-security-feature-item-manager.php:78
4803
+ msgid "Enable Basic Firewall"
4804
+ msgstr "Attiva Firewall Base"
4805
+
4806
+ # @ aiowpsecurity
4807
+ #: classes/grade-system/wp-security-feature-item-manager.php:79
4808
+ msgid "Enable Pingback Vulnerability Protection"
4809
+ msgstr "Attiva Protezione Vulnerabilità Pingback"
4810
+
4811
+ # @ aiowpsecurity
4812
+ #: classes/grade-system/wp-security-feature-item-manager.php:90
4813
+ msgid "Forbid Proxy Comments"
4814
+ msgstr "Vieta commenti via Proxy"
4815
+
4816
+ # @ aiowpsecurity
4817
+ #: classes/grade-system/wp-security-feature-item-manager.php:91
4818
+ msgid "Deny Bad Queries"
4819
+ msgstr "Nega Stringhe Dannose"
4820
+
4821
+ # @ aiowpsecurity
4822
+ #: classes/grade-system/wp-security-feature-item-manager.php:93
4823
+ msgid "5G Blacklist"
4824
+ msgstr "Blacklist 5G"
4825
+
4826
+ # @ aiowpsecurity
4827
+ #: classes/grade-system/wp-security-feature-item-manager.php:96
4828
+ msgid "Block Spambots"
4829
+ msgstr "Blocca Spambots"
4830
+
4831
+ # @ aiowpsecurity
4832
+ #: classes/grade-system/wp-security-feature-item-manager.php:98
4833
+ msgid "Comment Captcha"
4834
+ msgstr "Captcha Commenti"
4835
+
4836
+ # @ aiowpsecurity
4837
+ #: classes/grade-system/wp-security-feature-item.php:28
4838
+ msgid "Basic"
4839
+ msgstr "Base"
4840
+
4841
+ # @ aiowpsecurity
4842
+ #: classes/grade-system/wp-security-feature-item.php:31
4843
+ msgid "Intermediate"
4844
+ msgstr "Intermedio"
4845
+
4846
+ # @ aiowpsecurity
4847
+ #: classes/grade-system/wp-security-feature-item.php:34
4848
+ msgid "Advanced"
4849
+ msgstr "Avanzate"
4850
+
4851
+ # @ default
4852
+ #: admin/general/wp-security-list-table.php:477
4853
+ #: admin/general/wp-security-list-table.php:881
4854
+ #, php-format
4855
+ msgid "1 item"
4856
+ msgid_plural "%s items"
4857
+ msgstr[0] ""
4858
+ msgstr[1] ""
4859
+
4860
+ # @ default
4861
+ #: admin/general/wp-security-list-table.php:495
4862
+ msgid "Go to the first page"
4863
+ msgstr "Vai alla prima pagina"
4864
+
4865
+ # @ default
4866
+ #: admin/general/wp-security-list-table.php:502
4867
+ msgid "Go to the previous page"
4868
+ msgstr "Torna alla pagina precedente."
4869
+
4870
+ # @ default
4871
+ #: admin/general/wp-security-list-table.php:511
4872
+ msgid "Current page"
4873
+ msgstr "Pagina corrente."
4874
+
4875
+ # @ default
4876
+ #: admin/general/wp-security-list-table.php:517
4877
+ #, php-format
4878
+ msgctxt "paging"
4879
+ msgid "%1$s of %2$s"
4880
+ msgstr ""
4881
+
4882
+ # @ default
4883
+ #: admin/general/wp-security-list-table.php:521
4884
+ msgid "Go to the next page"
4885
+ msgstr "Vai alla pagina successiva"
4886
+
4887
+ # @ default
4888
+ #: admin/general/wp-security-list-table.php:528
4889
+ msgid "Go to the last page"
4890
+ msgstr "Vai all'ultima pagina"
4891
+
4892
+ # @ aiowpsecurity
4893
+ #: admin/wp-security-admin-init.php:184
4894
+ msgid "Brute Force"
4895
+ msgstr ""
4896
+
4897
+ # @ aiowpsecurity
4898
+ #: admin/wp-security-admin-init.php:193
4899
+ msgid "Miscellaneous"
4900
+ msgstr ""
4901
+
4902
+ # @ aiowpsecurity
4903
+ #: admin/wp-security-brute-force-menu.php:25
4904
+ #: admin/wp-security-dashboard-menu.php:365
4905
+ #: admin/wp-security-dashboard-menu.php:374
4906
+ msgid "Rename Login Page"
4907
+ msgstr "Rinomina Pagina Login"
4908
+
4909
+ # @ aiowpsecurity
4910
+ #: admin/wp-security-brute-force-menu.php:26
4911
+ msgid "Cookie Based Brute Force Prevention"
4912
+ msgstr "Prevenzione Brute Force basata su Cookie"
4913
+
4914
+ # @ aiowpsecurity
4915
+ #: admin/wp-security-brute-force-menu.php:99
4916
+ msgid "Please enter a value for your login page slug."
4917
+ msgstr "Inserisci un valore per la tua pagina di login"
4918
+
4919
+ # @ aiowpsecurity
4920
+ #: admin/wp-security-brute-force-menu.php:103
4921
+ msgid "You cannot use the value \"wp-admin\" for your login page slug."
4922
+ msgstr ""
4923
+ "Non è possibile utilizzare il valore \"wp-admin \" per la tua pagina di "
4924
+ "login."
4925
+
4926
+ # @ aiowpsecurity
4927
+ #: admin/wp-security-brute-force-menu.php:127
4928
+ msgid ""
4929
+ "Could not delete the Cookie-based directives from the .htaccess file. Please "
4930
+ "check the file permissions."
4931
+ msgstr ""
4932
+ "Impossibile eliminare le direttive basate su Cookie dal file htaccess.. Si "
4933
+ "prega di controllare i permessi dei file."
4934
+
4935
+ # @ aiowpsecurity
4936
+ #: admin/wp-security-brute-force-menu.php:137
4937
+ msgid ""
4938
+ "An effective Brute Force prevention technique is to change the default "
4939
+ "WordPress login page URL."
4940
+ msgstr ""
4941
+ "Un efficace tecnica di prevenzione Brute Force è quella di cambiare "
4942
+ "l'impostazione predefinita dell'URL della pagina di login di WordPress."
4943
+
4944
+ # @ aiowpsecurity
4945
+ #: admin/wp-security-brute-force-menu.php:138
4946
+ msgid ""
4947
+ "Normally if you wanted to login to WordPress you would type your site's home "
4948
+ "URL followed by wp-login.php."
4949
+ msgstr ""
4950
+ "Normalmente, se si vuole accedere a WordPress è necessario digitare l'URL "
4951
+ "del tuo sito seguito da wp-login.php."
4952
+
4953
+ # @ aiowpsecurity
4954
+ #: admin/wp-security-brute-force-menu.php:139
4955
+ msgid ""
4956
+ "This feature allows you to change the login URL by setting your own slug and "
4957
+ "renaming the last portion of the login URL which contains the <strong>wp-"
4958
+ "login.php</strong> to any string that you like."
4959
+ msgstr ""
4960
+ "Questa funzione consente di modificare l'URL di accesso impostando il "
4961
+ "proprio slug e rinominare l'ultima parte dell'URL di accesso che contiene il "
4962
+ "<strong> wp-login.php </strong> con qualsiasi stringa che ti piace."
4963
+
4964
+ # @ aiowpsecurity
4965
+ #: admin/wp-security-brute-force-menu.php:140
4966
+ msgid ""
4967
+ "By doing this, malicious bots and hackers will not be able to access your "
4968
+ "login page because they will not know the correct login page URL."
4969
+ msgstr ""
4970
+ "In questo modo, bot maligni e hacker non saranno in grado di accedere alla "
4971
+ "pagina di login perché non conoscono il corretto URL della pagina di login."
4972
+
4973
+ # @ aiowpsecurity
4974
+ #: admin/wp-security-brute-force-menu.php:142
4975
+ msgid ""
4976
+ "You may also be interested in the following alternative brute force "
4977
+ "prevention features:"
4978
+ msgstr ""
4979
+ "Potresti anche essere interessato alle seguenti caratteristiche di "
4980
+ "prevenzione brute force alternative:"
4981
+
4982
+ # @ aiowpsecurity
4983
+ #: admin/wp-security-brute-force-menu.php:153
4984
+ msgid "Your WordPress login page URL has been renamed."
4985
+ msgstr "L'URL della tua pagina di login WordPress è stato rinominato."
4986
+
4987
+ # @ aiowpsecurity
4988
+ #: admin/wp-security-brute-force-menu.php:154
4989
+ msgid "Your current login URL is:"
4990
+ msgstr "Il tuo attuale indirizzo di login (URL)"
4991
+
4992
+ # @ aiowpsecurity
4993
+ #: admin/wp-security-brute-force-menu.php:156
4994
+ msgid ""
4995
+ "NOTE: If you already had the Cookie-Based Brute Force Prevention feature "
4996
+ "active, the plugin has automatically deactivated it because only one of "
4997
+ "these features can be active at any one time."
4998
+ msgstr ""
4999
+
5000
+ # @ aiowpsecurity
5001
+ #: admin/wp-security-brute-force-menu.php:163
5002
+ msgid "Rename Login Page Settings"
5003
+ msgstr "Impostazioni Rinomina Pagina Login"
5004
+
5005
+ # @ aiowpsecurity
5006
+ #: admin/wp-security-brute-force-menu.php:175
5007
+ msgid "Enable Rename Login Page Feature"
5008
+ msgstr ""
5009
+
5010
+ # @ aiowpsecurity
5011
+ #: admin/wp-security-brute-force-menu.php:178
5012
+ msgid "Check this if you want to enable the rename login page feature"
5013
+ msgstr ""
5014
+ "Selezionare questa casella per attivare la funzione di rinmomina login e "
5015
+ "applicare le seguenti impostazioni"
5016
+
5017
+ # @ aiowpsecurity
5018
+ #: admin/wp-security-brute-force-menu.php:182
5019
+ msgid "Login Page URL"
5020
+ msgstr "Indirizzo di login (URL)"
5021
+
5022
+ # @ aiowpsecurity
5023
+ #: admin/wp-security-brute-force-menu.php:184
5024
+ msgid ""
5025
+ "Enter a string which will represent your secure login page slug. You are "
5026
+ "enouraged to choose something which is hard to guess and only you will "
5027
+ "remember."
5028
+ msgstr ""
5029
+ "Immettere una stringa che rappresenterà lo slug della tua pagina di login "
5030
+ "sicura (lo slug è la parte finale dell'indirizzo pagina). Oportuno scegliere "
5031
+ "qualcosa che è difficile indovinare."
5032
+
5033
+ # @ aiowpsecurity
5034
+ #: admin/wp-security-brute-force-menu.php:306
5035
+ msgid ""
5036
+ "If this feature is not used correctly, you can get locked out of your site. "
5037
+ "A backed up .htaccess file will come in handy if that happens."
5038
+ msgstr ""
5039
+
5040
+ # @ aiowpsecurity
5041
+ #: admin/wp-security-brute-force-menu.php:320
5042
+ msgid ""
5043
+ "NOTE: If you already had the Rename Login Page feature active, the plugin "
5044
+ "has automatically deactivated it because only one of these features can be "
5045
+ "active at any one time."
5046
+ msgstr ""
5047
+
5048
+ # @ aiowpsecurity
5049
+ #: admin/wp-security-dashboard-menu.php:25
5050
+ #: admin/wp-security-dashboard-menu.php:457
5051
+ msgid "Locked IP Addresses"
5052
+ msgstr ""
5053
+
5054
+ # @ aiowpsecurity
5055
+ #: admin/wp-security-dashboard-menu.php:76
5056
+ msgid ""
5057
+ "Twitter, Google+ or via Email to stay up to date about the new security "
5058
+ "features of this plugin."
5059
+ msgstr ""
5060
+
5061
+ # @ aiowpsecurity
5062
+ #: admin/wp-security-dashboard-menu.php:177
5063
+ msgid ""
5064
+ "We are working hard to make your WordPress site more secure. Please support "
5065
+ "us, here is how:"
5066
+ msgstr ""
5067
+
5068
+ # @ aiowpsecurity
5069
+ #: admin/wp-security-dashboard-menu.php:264
5070
+ msgid "Last 5 Logins"
5071
+ msgstr "Ultimi 5 Login"
5072
+
5073
+ # @ aiowpsecurity
5074
+ #: admin/wp-security-dashboard-menu.php:278
5075
+ msgid "No data found!"
5076
+ msgstr "Nessun dato|"
5077
+
5078
+ # @ aiowpsecurity
5079
+ #: admin/wp-security-dashboard-menu.php:282
5080
+ msgid "Last 5 logins summary:"
5081
+ msgstr "Ultimi 5 accessi:"
5082
+
5083
+ # @ aiowpsecurity
5084
+ #: admin/wp-security-dashboard-menu.php:286
5085
+ msgid "User"
5086
+ msgstr "Utente"
5087
+
5088
+ # @ aiowpsecurity
5089
+ #: admin/wp-security-dashboard-menu.php:287
5090
+ msgid "Date"
5091
+ msgstr "Data"
5092
+
5093
+ # @ aiowpsecurity
5094
+ #: admin/wp-security-dashboard-menu.php:288
5095
+ msgid "IP"
5096
+ msgstr ""
5097
+
5098
+ # @ aiowpsecurity
5099
+ #: admin/wp-security-dashboard-menu.php:342
5100
+ msgid "Cookie Based Brute Prevention"
5101
+ msgstr ""
5102
+
5103
+ # @ aiowpsecurity
5104
+ #: admin/wp-security-dashboard-menu.php:345
5105
+ msgid "Cookie-Based Brute Force"
5106
+ msgstr "Cookie Brute Force Base."
5107
+
5108
+ # @ aiowpsecurity
5109
+ #: admin/wp-security-dashboard-menu.php:349
5110
+ #: admin/wp-security-dashboard-menu.php:377
5111
+ #, php-format
5112
+ msgid "The %s feature is currently active."
5113
+ msgstr ""
5114
+
5115
+ # @ aiowpsecurity
5116
+ #: admin/wp-security-dashboard-menu.php:350
5117
+ #: admin/wp-security-dashboard-menu.php:378
5118
+ msgid "Your new WordPress login URL is now:"
5119
+ msgstr "Il tuo nuovo URL di logi WordPress:"
5120
+
5121
+ # @ aiowpsecurity
5122
+ #: admin/wp-security-dashboard-menu.php:442
5123
+ msgid "Number of users currently logged into your site (including you) is:"
5124
+ msgstr "Il numero di utenti attualmente loggati nel sito (incluso tu) è:"
5125
+
5126
+ # @ aiowpsecurity
5127
+ #: admin/wp-security-dashboard-menu.php:465
5128
+ msgid "There are no IP addresses currently locked out."
5129
+ msgstr "Non ci sono indirizzi IP attualmente bloccati"
5130
+
5131
+ # @ aiowpsecurity
5132
+ #: admin/wp-security-dashboard-menu.php:470
5133
+ msgid "Number of temporarily locked out IP addresses: "
5134
+ msgstr ""
5135
+
5136
+ # @ aiowpsecurity
5137
+ #: admin/wp-security-dashboard-menu.php:530
5138
+ msgid "PHP Info"
5139
+ msgstr ""
5140
+
5141
+ # @ aiowpsecurity
5142
+ #: admin/wp-security-dashboard-menu.php:532
5143
+ msgid "PHP Version"
5144
+ msgstr ""
5145
+
5146
+ # @ aiowpsecurity
5147
+ #: admin/wp-security-dashboard-menu.php:533
5148
+ msgid "PHP Memory Usage"
5149
+ msgstr ""
5150
+
5151
+ # @ aiowpsecurity
5152
+ #: admin/wp-security-dashboard-menu.php:534
5153
+ msgid " MB"
5154
+ msgstr ""
5155
+
5156
+ # @ aiowpsecurity
5157
+ #: admin/wp-security-dashboard-menu.php:540
5158
+ #: admin/wp-security-dashboard-menu.php:548
5159
+ #: admin/wp-security-dashboard-menu.php:556
5160
+ #: admin/wp-security-dashboard-menu.php:598
5161
+ msgid "N/A"
5162
+ msgstr ""
5163
+
5164
+ # @ aiowpsecurity
5165
+ #: admin/wp-security-dashboard-menu.php:543
5166
+ msgid "PHP Memory Limit"
5167
+ msgstr ""
5168
+
5169
+ # @ aiowpsecurity
5170
+ #: admin/wp-security-dashboard-menu.php:551
5171
+ msgid "PHP Max Upload Size"
5172
+ msgstr ""
5173
+
5174
+ # @ aiowpsecurity
5175
+ #: admin/wp-security-dashboard-menu.php:559
5176
+ msgid "PHP Max Post Size"
5177
+ msgstr ""
5178
+
5179
+ # @ aiowpsecurity
5180
+ #: admin/wp-security-dashboard-menu.php:562
5181
+ #: admin/wp-security-dashboard-menu.php:570
5182
+ #: admin/wp-security-dashboard-menu.php:579
5183
+ #: admin/wp-security-dashboard-menu.php:587
5184
+ msgid "On"
5185
+ msgstr ""
5186
+
5187
+ # @ aiowpsecurity
5188
+ #: admin/wp-security-dashboard-menu.php:564
5189
+ #: admin/wp-security-dashboard-menu.php:572
5190
+ #: admin/wp-security-dashboard-menu.php:581
5191
+ #: admin/wp-security-dashboard-menu.php:589
5192
+ msgid "Off"
5193
+ msgstr ""
5194
+
5195
+ # @ aiowpsecurity
5196
+ #: admin/wp-security-dashboard-menu.php:567
5197
+ msgid "PHP Safe Mode"
5198
+ msgstr ""
5199
+
5200
+ # @ aiowpsecurity
5201
+ #: admin/wp-security-dashboard-menu.php:575
5202
+ msgid "PHP Allow URL fopen"
5203
+ msgstr ""
5204
+
5205
+ # @ default
5206
+ #: admin/wp-security-dashboard-menu.php:584
5207
+ msgid "PHP Allow URL Include"
5208
+ msgstr ""
5209
+
5210
+ # @ aiowpsecurity
5211
+ #: admin/wp-security-dashboard-menu.php:592
5212
+ msgid "PHP Display Errors"
5213
+ msgstr ""
5214
+
5215
+ # @ aiowpsecurity
5216
+ #: admin/wp-security-dashboard-menu.php:601
5217
+ msgid "PHP Max Script Execution Time"
5218
+ msgstr ""
5219
+
5220
+ # @ default
5221
+ #: admin/wp-security-dashboard-menu.php:601
5222
+ msgid "Seconds"
5223
+ msgstr ""
5224
+
5225
+ # @ aiowpsecurity
5226
+ #: admin/wp-security-dashboard-menu.php:653
5227
+ msgid "Currently Locked Out IP Addresses and Ranges"
5228
+ msgstr ""
5229
+
5230
+ # @ aiowpsecurity
5231
+ #: admin/wp-security-database-menu.php:383
5232
+ msgid "Error - Could not get tables or no tables found!"
5233
+ msgstr ""
5234
+
5235
+ # @ aiowpsecurity
5236
+ #: admin/wp-security-filescan-menu.php:24
5237
+ msgid "Malware Scan"
5238
+ msgstr ""
5239
+
5240
+ # @ aiowpsecurity
5241
+ #: admin/wp-security-filescan-menu.php:93
5242
+ msgid "There have been no file changes since the last scan."
5243
+ msgstr ""
5244
+
5245
+ # @ aiowpsecurity
5246
+ #: admin/wp-security-filescan-menu.php:112
5247
+ msgid "Scan Complete - There were no file changes detected!"
5248
+ msgstr ""
5249
+
5250
+ # @ aiowpsecurity
5251
+ #: admin/wp-security-filescan-menu.php:244
5252
+ msgid "View Last Saved File Change Results"
5253
+ msgstr ""
5254
+
5255
+ # @ aiowpsecurity
5256
+ #: admin/wp-security-filescan-menu.php:250
5257
+ msgid ""
5258
+ "Click the button below to view the saved file change results from the last "
5259
+ "scan."
5260
+ msgstr ""
5261
+
5262
+ # @ aiowpsecurity
5263
+ #: admin/wp-security-filescan-menu.php:253
5264
+ msgid "View Last File Change"
5265
+ msgstr ""
5266
+
5267
+ # @ aiowpsecurity
5268
+ #: admin/wp-security-filescan-menu.php:341
5269
+ msgid "What is Malware?"
5270
+ msgstr ""
5271
+
5272
+ # @ aiowpsecurity
5273
+ #: admin/wp-security-filescan-menu.php:342
5274
+ msgid ""
5275
+ "The word Malware stands for Malicious Software. It can consist of things "
5276
+ "like trojan horses, adware, worms, spyware and any other undesirable code "
5277
+ "which a hacker will try to inject into your website."
5278
+ msgstr ""
5279
+
5280
+ # @ aiowpsecurity
5281
+ #: admin/wp-security-filescan-menu.php:343
5282
+ msgid ""
5283
+ "Often when malware code has been inserted into your site you will normally "
5284
+ "not notice anything out of the ordinary based on appearances, but it can "
5285
+ "have a dramatic effect on your site’s search ranking."
5286
+ msgstr ""
5287
+
5288
+ # @ aiowpsecurity
5289
+ #: admin/wp-security-filescan-menu.php:344
5290
+ msgid ""
5291
+ "This is because the bots and spiders from search engines such as Google have "
5292
+ "the capability to detect malware when they are indexing the pages on your "
5293
+ "site, and consequently they can blacklist your website which will in turn "
5294
+ "affect your search rankings."
5295
+ msgstr ""
5296
+
5297
+ # @ aiowpsecurity
5298
+ #: admin/wp-security-filescan-menu.php:348
5299
+ msgid "Scanning For Malware"
5300
+ msgstr ""
5301
+
5302
+ # @ aiowpsecurity
5303
+ #: admin/wp-security-filescan-menu.php:349
5304
+ msgid ""
5305
+ "Due to the constantly changing and complex nature of Malware, scanning for "
5306
+ "such things using a standalone plugin will not work reliably. This is "
5307
+ "something best done via an external scan of your site regularly."
5308
+ msgstr ""
5309
+
5310
+ # @ aiowpsecurity
5311
+ #: admin/wp-security-filescan-menu.php:350
5312
+ msgid ""
5313
+ "This is why we have created an easy-to-use scanning service which is hosted "
5314
+ "off our own server which will scan your site for malware once every day and "
5315
+ "notify you if it finds anything."
5316
+ msgstr ""
5317
+
5318
+ # @ aiowpsecurity
5319
+ #: admin/wp-security-filescan-menu.php:351
5320
+ msgid "When you sign up for this service you will get the following:"
5321
+ msgstr ""
5322
+
5323
+ # @ aiowpsecurity
5324
+ #: admin/wp-security-filescan-menu.php:353
5325
+ msgid "Automatic Daily Scan of 1 Website"
5326
+ msgstr ""
5327
+
5328
+ # @ aiowpsecurity
5329
+ #: admin/wp-security-filescan-menu.php:354
5330
+ msgid "Automatic Malware & Blacklist Monitoring"
5331
+ msgstr ""
5332
+
5333
+ # @ aiowpsecurity
5334
+ #: admin/wp-security-filescan-menu.php:355
5335
+ msgid "Automatic Email Alerting"
5336
+ msgstr ""
5337
+
5338
+ # @ aiowpsecurity
5339
+ #: admin/wp-security-filescan-menu.php:356
5340
+ msgid "Site uptime monitoring"
5341
+ msgstr ""
5342
+
5343
+ # @ aiowpsecurity
5344
+ #: admin/wp-security-filescan-menu.php:357
5345
+ msgid "Site response time monitoring"
5346
+ msgstr ""
5347
+
5348
+ # @ aiowpsecurity
5349
+ #: admin/wp-security-filescan-menu.php:358
5350
+ msgid "Malware Cleanup"
5351
+ msgstr ""
5352
+
5353
+ # @ aiowpsecurity
5354
+ #: admin/wp-security-filescan-menu.php:359
5355
+ msgid "Blacklist Removal"
5356
+ msgstr ""
5357
+
5358
+ # @ aiowpsecurity
5359
+ #: admin/wp-security-filescan-menu.php:360
5360
+ msgid "No Contract (Cancel Anytime)"
5361
+ msgstr ""
5362
+
5363
+ # @ aiowpsecurity
5364
+ #: admin/wp-security-filescan-menu.php:362
5365
+ #, php-format
5366
+ msgid "To learn more please %s."
5367
+ msgstr ""
5368
+
5369
+ # @ aiowpsecurity
5370
+ #: admin/wp-security-firewall-menu.php:30
5371
+ msgid "Internet Bots"
5372
+ msgstr ""
5373
+
5374
+ # @ aiowpsecurity
5375
+ #: admin/wp-security-firewall-menu.php:31
5376
+ msgid "Prevent Hotlinks"
5377
+ msgstr ""
5378
+
5379
+ # @ aiowpsecurity
5380
+ #: admin/wp-security-firewall-menu.php:32
5381
+ msgid "404 Detection"
5382
+ msgstr ""
5383
+
5384
+ # @ aiowpsecurity
5385
+ #: admin/wp-security-firewall-menu.php:143
5386
+ msgid "Attention:"
5387
+ msgstr ""
5388
+
5389
+ # @ aiowpsecurity
5390
+ #: admin/wp-security-firewall-menu.php:144
5391
+ msgid "Currently the "
5392
+ msgstr ""
5393
+
5394
+ # @ aiowpsecurity
5395
+ #: admin/wp-security-firewall-menu.php:144
5396
+ msgid " is active."
5397
+ msgstr ""
5398
+
5399
+ # @ aiowpsecurity
5400
+ #: admin/wp-security-firewall-menu.php:145
5401
+ msgid ""
5402
+ "Please beware that if you are using the WordPress iOS App, then you will "
5403
+ "need to deactivate this feature in order for the app to work properly."
5404
+ msgstr ""
5405
+
5406
+ # @ aiowpsecurity
5407
+ #: admin/wp-security-firewall-menu.php:334
5408
+ msgid ""
5409
+ "NOTE: In order for this feature to work \"AllowOverride\" of the Indexes "
5410
+ "directive must be enabled in your httpd.conf file. Ask your hosting provider "
5411
+ "to check this if you don't have access to httpd.conf"
5412
+ msgstr ""
5413
+
5414
+ # @ aiowpsecurity
5415
+ #: admin/wp-security-firewall-menu.php:577
5416
+ msgid "The Internet bot settings were successfully saved"
5417
+ msgstr ""
5418
+
5419
+ # @ aiowpsecurity
5420
+ #: admin/wp-security-firewall-menu.php:581
5421
+ msgid "Internet Bot Settings"
5422
+ msgstr ""
5423
+
5424
+ # @ aiowpsecurity
5425
+ #: admin/wp-security-firewall-menu.php:588
5426
+ #, php-format
5427
+ msgid "%s?"
5428
+ msgstr ""
5429
+
5430
+ # @ aiowpsecurity
5431
+ #: admin/wp-security-firewall-menu.php:590
5432
+ msgid ""
5433
+ "A bot is a piece of software which runs on the Internet and performs "
5434
+ "automatic tasks. For example when Google indexes your pages it uses "
5435
+ "automatic bots to achieve this task."
5436
+ msgstr ""
5437
+
5438
+ # @ aiowpsecurity
5439
+ #: admin/wp-security-firewall-menu.php:591
5440
+ msgid ""
5441
+ "A lot of bots are legitimate and non-malicous but not all bots are good and "
5442
+ "often you will find some which try to impersonate legitimate bots such as "
5443
+ "\"Googlebot\" but in reality they have nohing to do with Google at all."
5444
+ msgstr ""
5445
+
5446
+ # @ aiowpsecurity
5447
+ #: admin/wp-security-firewall-menu.php:592
5448
+ msgid ""
5449
+ "Although most of the bots out there are relatively harmless sometimes "
5450
+ "website owners want to have more control over which bots they allow into "
5451
+ "their site."
5452
+ msgstr ""
5453
+
5454
+ # @ aiowpsecurity
5455
+ #: admin/wp-security-firewall-menu.php:593
5456
+ msgid ""
5457
+ "This feature allows you to block bots which are impersonating as a Googlebot "
5458
+ "but actually aren't. (In other words they are fake Google bots)"
5459
+ msgstr ""
5460
+
5461
+ # @ aiowpsecurity
5462
+ #: admin/wp-security-firewall-menu.php:594
5463
+ msgid ""
5464
+ "Googlebots have a unique indentity which cannot easily be forged and this "
5465
+ "feature will indentify any fake Google bots and block them from reading your "
5466
+ "site's pages."
5467
+ msgstr ""
5468
+
5469
+ # @ aiowpsecurity
5470
+ #: admin/wp-security-firewall-menu.php:600
5471
+ msgid ""
5472
+ "<strong>Attention</strong>: Sometimes non-malicious Internet organizations "
5473
+ "might have bots which impersonate as a \"Googlebot\"."
5474
+ msgstr ""
5475
+
5476
+ # @ aiowpsecurity
5477
+ #: admin/wp-security-firewall-menu.php:601
5478
+ msgid ""
5479
+ "Just be aware that if you activate this feature the plugin will block all "
5480
+ "bots which use the \"Googlebot\" string in their User Agent information but "
5481
+ "are NOT officially from Google (irrespective whether they are malicious or "
5482
+ "not)."
5483
+ msgstr ""
5484
+
5485
+ # @ aiowpsecurity
5486
+ #: admin/wp-security-firewall-menu.php:602
5487
+ msgid ""
5488
+ "All other bots from other organizations such as \"Yahoo\", \"Bing\" etc will "
5489
+ "not be affected by this feature."
5490
+ msgstr ""
5491
+
5492
+ # @ aiowpsecurity
5493
+ #: admin/wp-security-firewall-menu.php:608
5494
+ #: admin/wp-security-firewall-menu.php:618
5495
+ #: classes/grade-system/wp-security-feature-item-manager.php:94
5496
+ msgid "Block Fake Googlebots"
5497
+ msgstr ""
5498
+
5499
+ # @ aiowpsecurity
5500
+ #: admin/wp-security-firewall-menu.php:621
5501
+ msgid "Check this if you want to block all fake Googlebots."
5502
+ msgstr ""
5503
+
5504
+ # @ aiowpsecurity
5505
+ #: admin/wp-security-firewall-menu.php:625
5506
+ msgid ""
5507
+ "This feature will check if the User Agent information of a bot contains the "
5508
+ "string \"Googlebot\"."
5509
+ msgstr ""
5510
+
5511
+ # @ aiowpsecurity
5512
+ #: admin/wp-security-firewall-menu.php:626
5513
+ msgid ""
5514
+ "It will then perform a few tests to verify if the bot is legitimately from "
5515
+ "Google and if so it will allow the bot to proceed."
5516
+ msgstr ""
5517
+
5518
+ # @ aiowpsecurity
5519
+ #: admin/wp-security-firewall-menu.php:627
5520
+ msgid ""
5521
+ "If the bot fails the checks then the plugin will mark it as being a fake "
5522
+ "Googlebot and it will block it"
5523
+ msgstr ""
5524
+
5525
+ # @ aiowpsecurity
5526
+ #: admin/wp-security-firewall-menu.php:634
5527
+ msgid "Save Internet Bot Settings"
5528
+ msgstr ""
5529
+
5530
+ # @ aiowpsecurity
5531
+ #: admin/wp-security-firewall-menu.php:671
5532
+ #: admin/wp-security-firewall-menu.php:693
5533
+ #: classes/grade-system/wp-security-feature-item-manager.php:32
5534
+ msgid "Prevent Image Hotlinking"
5535
+ msgstr ""
5536
+
5537
+ # @ aiowpsecurity
5538
+ #: admin/wp-security-firewall-menu.php:674
5539
+ msgid ""
5540
+ "A Hotlink is where someone displays an image on their site which is actually "
5541
+ "located on your site by using a direct link to the source of the image on "
5542
+ "your server."
5543
+ msgstr ""
5544
+
5545
+ # @ aiowpsecurity
5546
+ #: admin/wp-security-firewall-menu.php:675
5547
+ msgid ""
5548
+ "Due to the fact that the image being displayed on the other person's site is "
5549
+ "coming from your server, this can cause leaking of bandwidth and resources "
5550
+ "for you because your server has to present this image for the people viewing "
5551
+ "it on someone elses's site."
5552
+ msgstr ""
5553
+
5554
+ # @ aiowpsecurity
5555
+ #: admin/wp-security-firewall-menu.php:676
5556
+ msgid ""
5557
+ "This feature will prevent people from directly hotlinking images from your "
5558
+ "site's pages by writing some directives in your .htaccess file."
5559
+ msgstr ""
5560
+
5561
+ # @ aiowpsecurity
5562
+ #: admin/wp-security-firewall-menu.php:681
5563
+ msgid "Prevent Hotlinking"
5564
+ msgstr ""
5565
+
5566
+ # @ aiowpsecurity
5567
+ #: admin/wp-security-firewall-menu.php:696
5568
+ msgid "Check this if you want to prevent hotlinking to images on your site."
5569
+ msgstr ""
5570
+
5571
+ # @ aiowpsecurity
5572
+ #: admin/wp-security-firewall-menu.php:716
5573
+ msgid "Nonce check failed for delete all 404 event logs operation!"
5574
+ msgstr ""
5575
+
5576
+ # @ aiowpsecurity
5577
+ #: admin/wp-security-firewall-menu.php:727
5578
+ msgid "404 Detection Feature - Delete all 404 event logs operation failed!"
5579
+ msgstr ""
5580
+
5581
+ # @ aiowpsecurity
5582
+ #: admin/wp-security-firewall-menu.php:731
5583
+ msgid "All 404 event logs were deleted from the DB successfully!"
5584
+ msgstr ""
5585
+
5586
+ # @ aiowpsecurity
5587
+ #: admin/wp-security-firewall-menu.php:763
5588
+ msgid ""
5589
+ "You entered an incorrect format for the \"Redirect URL\" field. It has been "
5590
+ "set to the default value."
5591
+ msgstr ""
5592
+
5593
+ # @ aiowpsecurity
5594
+ #: admin/wp-security-firewall-menu.php:795
5595
+ msgid "404 Detection Configuration"
5596
+ msgstr ""
5597
+
5598
+ # @ aiowpsecurity
5599
+ #: admin/wp-security-firewall-menu.php:798
5600
+ msgid ""
5601
+ "A 404 or Not Found error occurs when somebody tries to access a non-existent "
5602
+ "page on your website."
5603
+ msgstr ""
5604
+
5605
+ # @ aiowpsecurity
5606
+ #: admin/wp-security-firewall-menu.php:799
5607
+ msgid ""
5608
+ "Typically, most 404 errors happen quite innocently when people have mis-"
5609
+ "typed a URL or used an old link to page which doesn't exist anymore."
5610
+ msgstr ""
5611
+
5612
+ # @ aiowpsecurity
5613
+ #: admin/wp-security-firewall-menu.php:800
5614
+ msgid ""
5615
+ "However, in some cases you may find many repeated 404 errors which occur in "
5616
+ "a relatively short space of time and from the same IP address which are all "
5617
+ "attempting to access a variety of non-existent page URLs."
5618
+ msgstr ""
5619
+
5620
+ # @ aiowpsecurity
5621
+ #: admin/wp-security-firewall-menu.php:801
5622
+ msgid ""
5623
+ "Such behaviour can mean that a hacker might be trying to find a particular "
5624
+ "page or URL for sinister reasons."
5625
+ msgstr ""
5626
+
5627
+ # @ aiowpsecurity
5628
+ #: admin/wp-security-firewall-menu.php:802
5629
+ msgid ""
5630
+ "This feature allows you to monitor all 404 events which occur on your site, "
5631
+ "and it also gives you the option of blocking IP addresses for a configured "
5632
+ "length of time."
5633
+ msgstr ""
5634
+
5635
+ # @ aiowpsecurity
5636
+ #: admin/wp-security-firewall-menu.php:803
5637
+ msgid ""
5638
+ "If you want to temporarily block an IP address, simply click the \"Temp Block"
5639
+ "\" link for the applicable IP entry in the \"404 Event Logs\" table below."
5640
+ msgstr ""
5641
+
5642
+ # @ aiowpsecurity
5643
+ #: admin/wp-security-firewall-menu.php:808
5644
+ msgid "404 Detection Options"
5645
+ msgstr ""
5646
+
5647
+ # @ aiowpsecurity
5648
+ #: admin/wp-security-firewall-menu.php:820
5649
+ msgid "Enable IP Lockout For 404 Events"
5650
+ msgstr ""
5651
+
5652
+ # @ aiowpsecurity
5653
+ #: admin/wp-security-firewall-menu.php:823
5654
+ msgid "Check this if you want to enable the lockout of selected IP addresses."
5655
+ msgstr ""
5656
+
5657
+ # @ aiowpsecurity
5658
+ #: admin/wp-security-firewall-menu.php:828
5659
+ msgid ""
5660
+ "When you enable this checkbox, all 404 events on your site will be logged in "
5661
+ "the table below. You can monitor these events and select some IP addresses "
5662
+ "to be blocked in the table. All IP addresses you select to be blocked from "
5663
+ "the \"404 Event Logs\" table section will be unable to access your site."
5664
+ msgstr ""
5665
+
5666
+ # @ aiowpsecurity
5667
+ #: admin/wp-security-firewall-menu.php:836
5668
+ msgid "Enable 404 Event Logging"
5669
+ msgstr ""
5670
+
5671
+ # @ aiowpsecurity
5672
+ #: admin/wp-security-firewall-menu.php:839
5673
+ msgid "Check this if you want to enable the logging of 404 events"
5674
+ msgstr ""
5675
+
5676
+ # @ aiowpsecurity
5677
+ #: admin/wp-security-firewall-menu.php:844
5678
+ msgid "Time Length of 404 Lockout (min)"
5679
+ msgstr ""
5680
+
5681
+ # @ aiowpsecurity
5682
+ #: admin/wp-security-firewall-menu.php:846
5683
+ msgid ""
5684
+ "Set the length of time for which a blocked IP address will be prevented from "
5685
+ "visiting your site"
5686
+ msgstr ""
5687
+
5688
+ # @ aiowpsecurity
5689
+ #: admin/wp-security-firewall-menu.php:851
5690
+ msgid ""
5691
+ "You can lock any IP address which is recorded in the \"404 Event Logs\" "
5692
+ "table section below."
5693
+ msgstr ""
5694
+
5695
+ # @ aiowpsecurity
5696
+ #: admin/wp-security-firewall-menu.php:853
5697
+ msgid ""
5698
+ "To temporarily lock an IP address, hover over the ID column and click the "
5699
+ "\"Temp Block\" link for the applicable IP entry."
5700
+ msgstr ""
5701
+
5702
+ # @ aiowpsecurity
5703
+ #: admin/wp-security-firewall-menu.php:860
5704
+ msgid "404 Lockout Redirect URL"
5705
+ msgstr ""
5706
+
5707
+ # @ aiowpsecurity
5708
+ #: admin/wp-security-firewall-menu.php:862
5709
+ msgid "A blocked visitor will be automatically redirected to this URL."
5710
+ msgstr ""
5711
+
5712
+ # @ aiowpsecurity
5713
+ #: admin/wp-security-firewall-menu.php:871
5714
+ msgid "404 Event Logs"
5715
+ msgstr ""
5716
+
5717
+ # @ aiowpsecurity
5718
+ #: admin/wp-security-firewall-menu.php:892
5719
+ #: admin/wp-security-firewall-menu.php:901
5720
+ msgid "Delete All 404 Event Logs"
5721
+ msgstr ""
5722
+
5723
+ # @ aiowpsecurity
5724
+ #: admin/wp-security-firewall-menu.php:898
5725
+ msgid "Click this button if you wish to purge all 404 event logs from the DB."
5726
+ msgstr ""
5727
+
5728
+ # @ aiowpsecurity
5729
+ #: admin/wp-security-list-locked-ip.php:117
5730
+ #: admin/wp-security-user-login-menu.php:527
5731
+ msgid "The selected IP entries were unlocked successfully!"
5732
+ msgstr ""
5733
+
5734
+ # @ aiowpsecurity
5735
+ #: admin/wp-security-list-locked-ip.php:126
5736
+ #: admin/wp-security-user-login-menu.php:536
5737
+ msgid "The selected IP entry was unlocked successfully!"
5738
+ msgstr ""
5739
+
5740
+ # @ aiowpsecurity
5741
+ #: admin/wp-security-list-registered-users.php:127
5742
+ #: admin/wp-security-list-registered-users.php:151
5743
+ msgid "Your account is now active"
5744
+ msgstr ""
5745
+
5746
+ # @ aiowpsecurity
5747
+ #: admin/wp-security-list-registered-users.php:128
5748
+ msgid "Your account with username:"
5749
+ msgstr ""
5750
+
5751
+ # @ aiowpsecurity
5752
+ #: admin/wp-security-list-registered-users.php:139
5753
+ msgid "The following accounts failed to update successfully: "
5754
+ msgstr ""
5755
+
5756
+ # @ aiowpsecurity
5757
+ #: admin/wp-security-list-registered-users.php:152
5758
+ msgid "Your account with username: "
5759
+ msgstr ""
5760
+
5761
+ # @ aiowpsecurity
5762
+ #: admin/wp-security-misc-options-menu.php:22
5763
+ msgid "Copy Protection"
5764
+ msgstr ""
5765
+
5766
+ # @ aiowpsecurity
5767
+ #: admin/wp-security-misc-options-menu.php:86
5768
+ msgid "Copy Protection feature settings saved!"
5769
+ msgstr ""
5770
+
5771
+ # @ aiowpsecurity
5772
+ #: admin/wp-security-misc-options-menu.php:91
5773
+ msgid "Disable The Ability To Copy Text"
5774
+ msgstr ""
5775
+
5776
+ # @ aiowpsecurity
5777
+ #: admin/wp-security-misc-options-menu.php:97
5778
+ msgid ""
5779
+ "This feature allows you to disable the ability to select and copy text from "
5780
+ "your front end."
5781
+ msgstr ""
5782
+
5783
+ # @ aiowpsecurity
5784
+ #: admin/wp-security-misc-options-menu.php:102
5785
+ msgid "Enable Copy Protection"
5786
+ msgstr ""
5787
+
5788
+ # @ aiowpsecurity
5789
+ #: admin/wp-security-misc-options-menu.php:105
5790
+ msgid ""
5791
+ "Check this if you want to disable the \"Right Click\", \"Text Selection\" "
5792
+ "and \"Copy\" option on the front end of your site."
5793
+ msgstr ""
5794
+
5795
+ # @ default
5796
+ #: admin/wp-security-misc-options-menu.php:112
5797
+ msgid "Save Copy Protection Settings"
5798
+ msgstr ""
5799
+
5800
+ # @ aiowpsecurity
5801
+ #: admin/wp-security-settings-menu.php:206
5802
+ msgid ""
5803
+ "Your .htaccess file was successfully backed up! Using an FTP program go to "
5804
+ "the \"/wp-content/aiowps_backups\" directory to save a copy of the file to "
5805
+ "your computer."
5806
+ msgstr ""
5807
+
5808
+ # @ aiowpsecurity
5809
+ #: admin/wp-security-spam-menu.php:121
5810
+ msgid ""
5811
+ "Adding a captcha field in the comment form is a simple way of greatly "
5812
+ "reducing SPAM comments from bots without using .htaccess rules."
5813
+ msgstr ""
5814
+
5815
+ # @ aiowpsecurity
5816
+ #: admin/wp-security-spam-menu.php:146
5817
+ msgid ""
5818
+ "In other words, if the comment was not submitted by a human who physically "
5819
+ "submitted the comment on your site, the request will be blocked."
5820
+ msgstr ""
5821
+
5822
+ # @ aiowpsecurity
5823
+ #: admin/wp-security-user-login-menu.php:190
5824
+ msgid "Allow Unlock Requests"
5825
+ msgstr ""
5826
+
5827
+ # @ aiowpsecurity
5828
+ #: admin/wp-security-user-login-menu.php:193
5829
+ msgid ""
5830
+ "Check this if you want to allow users to generate an automated unlock "
5831
+ "request link which will unlock their account"
5832
+ msgstr ""
5833
+
5834
+ # @ aiowpsecurity
5835
+ #: admin/wp-security-user-login-menu.php:248
5836
+ #, php-format
5837
+ msgid ""
5838
+ "To see a list of all locked IP addresses and ranges go to the %s tab in the "
5839
+ "dashboard menu."
5840
+ msgstr ""
5841
+
5842
+ # @ aiowpsecurity
5843
+ #: classes/grade-system/wp-security-feature-item-manager.php:80
5844
+ msgid "Enable IP blocking for 404 detection"
5845
+ msgstr ""
5846
+
5847
+ # @ aiowpsecurity
5848
+ #: classes/grade-system/wp-security-feature-item-manager.php:84
5849
+ msgid "Enable Rename Login Page"
5850
+ msgstr ""
5851
+
5852
+ # @ aiowpsecurity
5853
+ #: classes/wp-security-process-renamed-login-page.php:68
5854
+ msgid "Please log in to access the WordPress admin area."
5855
+ msgstr ""
5856
+
5857
+ # @ aiowpsecurity
5858
+ #: classes/wp-security-user-login.php:272
5859
+ msgid "Username: Unknown"
5860
+ msgstr ""
5861
+
5862
+ # @ aiowpsecurity
5863
+ #: classes/wp-security-user-login.php:274
5864
+ msgid "IP Range: .*"
5865
+ msgstr ""
5866
+
5867
+ # @ aiowpsecurity
5868
+ #: classes/wp-security-user-login.php:337
5869
+ msgid "Unlock Request Notification"
5870
+ msgstr ""
5871
+
5872
+ # @ aiowpsecurity
5873
+ #: classes/wp-security-user-login.php:338
5874
+ msgid ""
5875
+ "You have requested for the account with email address to be unlocked. "
5876
+ "Please click the link below to unlock your account:"
5877
+ msgstr ""
5878
+
5879
+ # @ aiowpsecurity
5880
+ #: classes/wp-security-user-login.php:339
5881
+ msgid "Unlock link: "
5882
+ msgstr ""
5883
+
5884
+ # @ aiowpsecurity
5885
+ #: classes/wp-security-user-login.php:340
5886
+ msgid ""
5887
+ "After clicking the above link you will be able to login to the WordPress "
5888
+ "administration panel."
5889
+ msgstr ""
5890
+
5891
+ # @ aiowpsecurity
5892
+ #: classes/wp-security-user-login.php:534
5893
+ msgid "Request Unlock"
5894
+ msgstr ""
5895
+
5896
+ # @ default
5897
+ #: other-includes/wp-security-rename-login-feature.php:96
5898
+ msgid "https://wordpress.org/"
5899
+ msgstr ""
5900
+
5901
+ # @ default
5902
+ #: other-includes/wp-security-rename-login-feature.php:97
5903
+ #: other-includes/wp-security-unlock-request.php:14
5904
+ msgid "Powered by WordPress"
5905
+ msgstr ""
5906
+
5907
+ # @ default
5908
+ #: other-includes/wp-security-rename-login-feature.php:214
5909
+ msgid "Are you lost?"
5910
+ msgstr ""
5911
+
5912
+ # @ default
5913
+ #: other-includes/wp-security-rename-login-feature.php:214
5914
+ #, php-format
5915
+ msgid "&larr; Back to %s"
5916
+ msgstr ""
5917
+
5918
+ # @ default
5919
+ #: other-includes/wp-security-rename-login-feature.php:272
5920
+ msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
5921
+ msgstr ""
5922
+
5923
+ # @ default
5924
+ #: other-includes/wp-security-rename-login-feature.php:276
5925
+ msgid ""
5926
+ "<strong>ERROR</strong>: There is no user registered with that email address."
5927
+ msgstr ""
5928
+
5929
+ # @ default
5930
+ #: other-includes/wp-security-rename-login-feature.php:293
5931
+ msgid "<strong>ERROR</strong>: Invalid username or e-mail."
5932
+ msgstr ""
5933
+
5934
+ # @ default
5935
+ #: other-includes/wp-security-rename-login-feature.php:330
5936
+ msgid "Password reset is not allowed for this user"
5937
+ msgstr ""
5938
+
5939
+ # @ default
5940
+ #: other-includes/wp-security-rename-login-feature.php:355
5941
+ msgid "Someone requested that the password be reset for the following account:"
5942
+ msgstr ""
5943
+
5944
+ # @ default
5945
+ #: other-includes/wp-security-rename-login-feature.php:357
5946
+ #, php-format
5947
+ msgid "Username: %s"
5948
+ msgstr ""
5949
+
5950
+ # @ default
5951
+ #: other-includes/wp-security-rename-login-feature.php:358
5952
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
5953
+ msgstr ""
5954
+
5955
+ # @ default
5956
+ #: other-includes/wp-security-rename-login-feature.php:359
5957
+ msgid "To reset your password, visit the following address:"
5958
+ msgstr ""
5959
+
5960
+ # @ default
5961
+ #: other-includes/wp-security-rename-login-feature.php:369
5962
+ #, php-format
5963
+ msgid "[%s] Password Reset"
5964
+ msgstr ""
5965
+
5966
+ # @ default
5967
+ #: other-includes/wp-security-rename-login-feature.php:390
5968
+ msgid "The e-mail could not be sent."
5969
+ msgstr ""
5970
+
5971
+ # @ default
5972
+ #: other-includes/wp-security-rename-login-feature.php:390
5973
+ msgid "Possible reason: your host may have disabled the mail() function."
5974
+ msgstr ""
5975
+
5976
+ # @ default
5977
+ #: other-includes/wp-security-rename-login-feature.php:495
5978
+ msgid "Sorry, that key does not appear to be valid."
5979
+ msgstr ""
5980
+
5981
+ # @ default
5982
+ #: other-includes/wp-security-rename-login-feature.php:497
5983
+ msgid "Sorry, that key has expired. Please try again."
5984
+ msgstr ""
5985
+
5986
+ # @ default
5987
+ #: other-includes/wp-security-rename-login-feature.php:517
5988
+ msgid "Lost Password"
5989
+ msgstr ""
5990
+
5991
+ # @ default
5992
+ #: other-includes/wp-security-rename-login-feature.php:517
5993
+ msgid ""
5994
+ "Please enter your username or email address. You will receive a link to "
5995
+ "create a new password via email."
5996
+ msgstr ""
5997
+
5998
+ # @ default
5999
+ #: other-includes/wp-security-rename-login-feature.php:525
6000
+ msgid "Username or E-mail:"
6001
+ msgstr ""
6002
+
6003
+ # @ default
6004
+ #: other-includes/wp-security-rename-login-feature.php:536
6005
+ msgid "Get New Password"
6006
+ msgstr ""
6007
+
6008
+ # @ default
6009
+ #: other-includes/wp-security-rename-login-feature.php:540
6010
+ #: other-includes/wp-security-rename-login-feature.php:589
6011
+ #: other-includes/wp-security-rename-login-feature.php:631
6012
+ #: other-includes/wp-security-rename-login-feature.php:713
6013
+ msgid "Log in"
6014
+ msgstr ""
6015
+
6016
+ # @ default
6017
+ #: other-includes/wp-security-rename-login-feature.php:543
6018
+ #: other-includes/wp-security-rename-login-feature.php:634
6019
+ #: other-includes/wp-security-rename-login-feature.php:709
6020
+ #: other-includes/wp-security-rename-login-feature.php:892
6021
+ msgid "Register"
6022
+ msgstr ""
6023
+
6024
+ # @ default
6025
+ #: other-includes/wp-security-rename-login-feature.php:575
6026
+ msgid "The passwords do not match."
6027
+ msgstr ""
6028
+
6029
+ # @ default
6030
+ #: other-includes/wp-security-rename-login-feature.php:589
6031
+ msgid "Password Reset"
6032
+ msgstr ""
6033
+
6034
+ # @ default
6035
+ #: other-includes/wp-security-rename-login-feature.php:589
6036
+ msgid "Your password has been reset."
6037
+ msgstr ""
6038
+
6039
+ # @ default
6040
+ #: other-includes/wp-security-rename-login-feature.php:597
6041
+ #: other-includes/wp-security-rename-login-feature.php:627
6042
+ msgid "Reset Password"
6043
+ msgstr ""
6044
+
6045
+ # @ default
6046
+ #: other-includes/wp-security-rename-login-feature.php:597
6047
+ msgid "Enter your new password below."
6048
+ msgstr ""
6049
+
6050
+ # @ default
6051
+ #: other-includes/wp-security-rename-login-feature.php:604
6052
+ msgid "New password"
6053
+ msgstr ""
6054
+
6055
+ # @ default
6056
+ #: other-includes/wp-security-rename-login-feature.php:608
6057
+ msgid "Confirm new password"
6058
+ msgstr ""
6059
+
6060
+ # @ default
6061
+ #: other-includes/wp-security-rename-login-feature.php:612
6062
+ msgid "Strength indicator"
6063
+ msgstr ""
6064
+
6065
+ # @ default
6066
+ #: other-includes/wp-security-rename-login-feature.php:613
6067
+ msgid ""
6068
+ "Hint: The password should be at least seven characters long. To make it "
6069
+ "stronger, use upper and lower case letters, numbers, and symbols like ! \" ? "
6070
+ "$ % ^ &amp; )."
6071
+ msgstr ""
6072
+
6073
+ # @ default
6074
+ #: other-includes/wp-security-rename-login-feature.php:686
6075
+ msgid "Registration Form"
6076
+ msgstr ""
6077
+
6078
+ # @ default
6079
+ #: other-includes/wp-security-rename-login-feature.php:686
6080
+ msgid "Register For This Site"
6081
+ msgstr ""
6082
+
6083
+ # @ default
6084
+ #: other-includes/wp-security-rename-login-feature.php:691
6085
+ #: other-includes/wp-security-rename-login-feature.php:858
6086
+ msgid "Username"
6087
+ msgstr ""
6088
+
6089
+ # @ default
6090
+ #: other-includes/wp-security-rename-login-feature.php:695
6091
+ msgid "E-mail"
6092
+ msgstr ""
6093
+
6094
+ # @ default
6095
+ #: other-includes/wp-security-rename-login-feature.php:706
6096
+ msgid "A password will be e-mailed to you."
6097
+ msgstr ""
6098
+
6099
+ # @ default
6100
+ #: other-includes/wp-security-rename-login-feature.php:714
6101
+ #: other-includes/wp-security-rename-login-feature.php:897
6102
+ msgid "Password Lost and Found"
6103
+ msgstr ""
6104
+
6105
+ # @ default
6106
+ #: other-includes/wp-security-rename-login-feature.php:714
6107
+ #: other-includes/wp-security-rename-login-feature.php:897
6108
+ msgid "Lost your password?"
6109
+ msgstr ""
6110
+
6111
+ # @ default
6112
+ #: other-includes/wp-security-rename-login-feature.php:760
6113
+ #, php-format
6114
+ msgid ""
6115
+ "<strong>ERROR</strong>: Cookies are blocked due to unexpected output. For "
6116
+ "help, please see <a href=\"%1$s\">this documentation</a> or try the <a href="
6117
+ "\"%2$s\">support forums</a>."
6118
+ msgstr ""
6119
+
6120
+ # @ default
6121
+ #: other-includes/wp-security-rename-login-feature.php:761
6122
+ #: other-includes/wp-security-rename-login-feature.php:765
6123
+ msgid "http://codex.wordpress.org/Cookies"
6124
+ msgstr ""
6125
+
6126
+ # @ default
6127
+ #: other-includes/wp-security-rename-login-feature.php:761
6128
+ msgid "https://wordpress.org/support/"
6129
+ msgstr ""
6130
+
6131
+ # @ default
6132
+ #: other-includes/wp-security-rename-login-feature.php:764
6133
+ #, php-format
6134
+ msgid ""
6135
+ "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
6136
+ "browser. You must <a href=\"%s\">enable cookies</a> to use WordPress."
6137
+ msgstr ""
6138
+
6139
+ # @ default
6140
+ #: other-includes/wp-security-rename-login-feature.php:783
6141
+ msgid "You have logged in successfully."
6142
+ msgstr ""
6143
+
6144
+ # @ default
6145
+ #: other-includes/wp-security-rename-login-feature.php:817
6146
+ msgid ""
6147
+ "Session expired. Please log in again. You will not move away from this page."
6148
+ msgstr ""
6149
+
6150
+ # @ default
6151
+ #: other-includes/wp-security-rename-login-feature.php:821
6152
+ msgid "You are now logged out."
6153
+ msgstr ""
6154
+
6155
+ # @ default
6156
+ #: other-includes/wp-security-rename-login-feature.php:823
6157
+ msgid "User registration is currently not allowed."
6158
+ msgstr ""
6159
+
6160
+ # @ default
6161
+ #: other-includes/wp-security-rename-login-feature.php:825
6162
+ msgid "Check your e-mail for the confirmation link."
6163
+ msgstr ""
6164
+
6165
+ # @ default
6166
+ #: other-includes/wp-security-rename-login-feature.php:827
6167
+ msgid "Check your e-mail for your new password."
6168
+ msgstr ""
6169
+
6170
+ # @ default
6171
+ #: other-includes/wp-security-rename-login-feature.php:829
6172
+ msgid "Registration complete. Please check your e-mail."
6173
+ msgstr ""
6174
+
6175
+ # @ default
6176
+ #: other-includes/wp-security-rename-login-feature.php:831
6177
+ msgid ""
6178
+ "<strong>You have successfully updated WordPress!</strong> Please log back in "
6179
+ "to experience the awesomeness."
6180
+ msgstr ""
6181
+
6182
+ # @ default
6183
+ #: other-includes/wp-security-rename-login-feature.php:848
6184
+ #: other-includes/wp-security-rename-login-feature.php:875
6185
+ msgid "Log In"
6186
+ msgstr ""
6187
+
6188
+ # @ default
6189
+ #: other-includes/wp-security-rename-login-feature.php:873
6190
+ msgid "Remember Me"
6191
+ msgstr ""
6192
+
6193
+ # @ default
6194
+ #: other-includes/wp-security-unlock-request.php:13
6195
+ msgid "http://wordpress.org/"
6196
+ msgstr ""
6197
+
6198
+ # @ aiowpsecurity
6199
+ #: other-includes/wp-security-unlock-request.php:48
6200
+ msgid "Please enter a valid email address"
6201
+ msgstr ""
6202
+
6203
+ # @ aiowpsecurity
6204
+ #: other-includes/wp-security-unlock-request.php:59
6205
+ msgid "User account not found!"
6206
+ msgstr ""
6207
+
6208
+ # @ aiowpsecurity
6209
+ #: other-includes/wp-security-unlock-request.php:70
6210
+ msgid "Error: No locked entry was found in the DB with your IP address range!"
6211
+ msgstr ""
6212
+
6213
+ # @ aiowpsecurity
6214
+ #: other-includes/wp-security-unlock-request.php:98
6215
+ msgid "Email Address"
6216
+ msgstr ""
languages/aiowpsecurity-pt_BR.mo CHANGED
Binary file
languages/aiowpsecurity-pt_BR.po CHANGED
@@ -2,13 +2,13 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AIOWPS\n"
4
  "POT-Creation-Date: 2013-12-03 12:53+1000\n"
5
- "PO-Revision-Date: 2014-04-06 17:19-0300\n"
6
- "Last-Translator: Sergio Siqueira <sergiosiqueira@li9.com.br>\n"
7
  "Language-Team: Li9 <suporte@li9.com.br>\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 1.6.4\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -43,11 +43,11 @@ msgstr "Registro de Usuário"
43
 
44
  #: all-in-one-wp-security/admin/wp-security-admin-init.php:162
45
  msgid "Database Security"
46
- msgstr "Segurança da Base de Dados"
47
 
48
  #: all-in-one-wp-security/admin/wp-security-admin-init.php:166
49
  msgid "Filesystem Security"
50
- msgstr "Segurança do Sistema de Arquivos"
51
 
52
  #: all-in-one-wp-security/admin/wp-security-admin-init.php:168
53
  msgid "WHOIS Lookup"
@@ -55,7 +55,7 @@ msgstr ""
55
 
56
  #: all-in-one-wp-security/admin/wp-security-admin-init.php:172
57
  msgid "Blacklist Manager"
58
- msgstr "Gerenciador da Lista Negra"
59
 
60
  #: all-in-one-wp-security/admin/wp-security-admin-init.php:177
61
  msgid "Firewall"
@@ -231,11 +231,11 @@ msgstr ""
231
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:146
232
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:221
233
  msgid "Save Settings"
234
- msgstr ""
235
 
236
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:23
237
  msgid "System Info"
238
- msgstr ""
239
 
240
  #: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:73
241
  msgid "For information, updates and documentation, please visit the"
@@ -566,11 +566,11 @@ msgstr ""
566
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:127
567
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:581
568
  msgid "Attention!"
569
- msgstr ""
570
 
571
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:289
572
  msgid "Manual Backup"
573
- msgstr ""
574
 
575
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:295
576
  msgid "To create a new DB backup just click on the button below."
@@ -601,17 +601,17 @@ msgstr ""
601
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:324
602
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:259
603
  msgid "Hours"
604
- msgstr ""
605
 
606
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:325
607
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:260
608
  msgid "Days"
609
- msgstr ""
610
 
611
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:326
612
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:261
613
  msgid "Weeks"
614
- msgstr ""
615
 
616
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:328
617
  msgid "Set the value for how often you would like an automated backup to occur"
@@ -641,7 +641,7 @@ msgstr ""
641
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:305
642
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:228
643
  msgid "Enter an email address"
644
- msgstr ""
645
 
646
  #: all-in-one-wp-security/admin/wp-security-database-menu.php:373
647
  msgid "Starting DB prefix change operations....."
@@ -723,7 +723,7 @@ msgstr ""
723
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:22
724
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:94
725
  msgid "File Change Detection"
726
- msgstr ""
727
 
728
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:93
729
  msgid "Nonce check failed for manual file change detection scan operation!"
@@ -905,7 +905,7 @@ msgstr ""
905
 
906
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:344
907
  msgid "The following files were added to your host."
908
- msgstr ""
909
 
910
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:347
911
  #: all-in-one-wp-security/admin/wp-security-filescan-menu.php:368
@@ -938,7 +938,7 @@ msgstr ""
938
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:26
939
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:63
940
  msgid "File Permissions"
941
- msgstr ""
942
 
943
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:27
944
  msgid "PHP File Editing"
@@ -1004,17 +1004,17 @@ msgstr ""
1004
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:132
1005
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:151
1006
  msgid "Current Permissions"
1007
- msgstr ""
1008
 
1009
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:133
1010
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:152
1011
  msgid "Recommended Permissions"
1012
- msgstr ""
1013
 
1014
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:134
1015
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:153
1016
  msgid "Recommended Action"
1017
- msgstr ""
1018
 
1019
  #: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:191
1020
  msgid "Your PHP file editing settings were saved successfully."
@@ -1320,7 +1320,7 @@ msgstr ""
1320
 
1321
  #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:193
1322
  msgid "Save Basic Firewall Settings"
1323
- msgstr ""
1324
 
1325
  #: all-in-one-wp-security/admin/wp-security-firewall-menu.php:265
1326
  msgid ""
@@ -1889,12 +1889,12 @@ msgstr ""
1889
  #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:115
1890
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:748
1891
  msgid "The selected IP ranges were unlocked successfully!"
1892
- msgstr ""
1893
 
1894
  #: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:124
1895
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:757
1896
  msgid "The selected IP range was unlocked successfully!"
1897
- msgstr ""
1898
 
1899
  #: all-in-one-wp-security/admin/wp-security-list-registered-users.php:118
1900
  msgid "The selected accounts were approved successfully!"
@@ -3065,7 +3065,7 @@ msgstr ""
3065
 
3066
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:714
3067
  msgid "Currently Logged In Users"
3068
- msgstr ""
3069
 
3070
  #: all-in-one-wp-security/admin/wp-security-user-login-menu.php:779
3071
  msgid "The selected records were deleted successfully!"
@@ -3077,20 +3077,20 @@ msgstr ""
3077
 
3078
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:23
3079
  msgid "Manual Approval"
3080
- msgstr ""
3081
 
3082
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:24
3083
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:53
3084
  msgid "Registration Captcha"
3085
- msgstr ""
3086
 
3087
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:112
3088
  msgid "User Registration Settings"
3089
- msgstr ""
3090
 
3091
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:116
3092
  msgid "Manually Approve New Registrations"
3093
- msgstr ""
3094
 
3095
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:120
3096
  msgid ""
@@ -3098,6 +3098,9 @@ msgid ""
3098
  "registration form, then you can minimize SPAM or bogus registrations by "
3099
  "manually approving each registration."
3100
  msgstr ""
 
 
 
3101
 
3102
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:121
3103
  msgid ""
@@ -3105,6 +3108,9 @@ msgid ""
3105
  "\" until the administrator activates it. Therefore undesirable registrants "
3106
  "will be unable to log in without your express approval."
3107
  msgstr ""
 
 
 
3108
 
3109
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:122
3110
  msgid ""
@@ -3112,10 +3118,13 @@ msgid ""
3112
  "table below and you can also perform bulk activation/deactivation/deletion "
3113
  "tasks on each account."
3114
  msgstr ""
 
 
 
3115
 
3116
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:138
3117
  msgid "Enable manual approval of new registrations"
3118
- msgstr ""
3119
 
3120
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:141
3121
  msgid ""
@@ -3125,7 +3134,7 @@ msgstr ""
3125
 
3126
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:150
3127
  msgid "Approve Registered Users"
3128
- msgstr ""
3129
 
3130
  #: all-in-one-wp-security/admin/wp-security-user-registration-menu.php:195
3131
  msgid ""
@@ -3250,7 +3259,7 @@ msgstr ""
3250
 
3251
  #: all-in-one-wp-security/classes/wp-security-backup.php:179
3252
  msgid " generated on"
3253
- msgstr ""
3254
 
3255
  #: all-in-one-wp-security/classes/wp-security-captcha.php:12
3256
  msgid "Please enter an answer in digits:"
@@ -3342,11 +3351,11 @@ msgstr "All In One WP Security - Alteração de Arquivo detectada!"
3342
 
3343
  #: all-in-one-wp-security/classes/wp-security-file-scan.php:60
3344
  msgid "A file change was detected on your system for site URL"
3345
- msgstr ""
3346
 
3347
  #: all-in-one-wp-security/classes/wp-security-file-scan.php:60
3348
  msgid ". Scan was generated on"
3349
- msgstr ""
3350
 
3351
  #: all-in-one-wp-security/classes/wp-security-file-scan.php:61
3352
  msgid "Login to your site to view the scan details."
@@ -3354,12 +3363,14 @@ msgstr ""
3354
 
3355
  #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:158
3356
  msgid "Please enter an answer in the CAPTCHA field."
3357
- msgstr ""
3358
 
3359
  #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:168
3360
  msgid ""
3361
  "Error: You entered an incorrect CAPTCHA answer. Please go back and try again."
3362
  msgstr ""
 
 
3363
 
3364
  #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:196
3365
  #: all-in-one-wp-security/classes/wp-security-user-login.php:63
@@ -3367,6 +3378,8 @@ msgstr ""
3367
  #: all-in-one-wp-security/classes/wp-security-user-registration.php:59
3368
  msgid "<strong>ERROR</strong>: Your answer was incorrect - please try again."
3369
  msgstr ""
 
 
3370
 
3371
  #: all-in-one-wp-security/classes/wp-security-user-login.php:39
3372
  msgid ""
@@ -3374,23 +3387,27 @@ msgid ""
3374
  "blocked.\n"
3375
  " Please contact the administrator."
3376
  msgstr ""
 
 
 
 
3377
 
3378
  #: all-in-one-wp-security/classes/wp-security-user-login.php:76
3379
  msgid "<strong>ERROR</strong>: The username field is empty."
3380
- msgstr ""
3381
 
3382
  #: all-in-one-wp-security/classes/wp-security-user-login.php:80
3383
  msgid "<strong>ERROR</strong>: The password field is empty."
3384
- msgstr ""
3385
 
3386
  #: all-in-one-wp-security/classes/wp-security-user-login.php:100
3387
  #: all-in-one-wp-security/classes/wp-security-user-login.php:126
3388
  msgid "<strong>ERROR</strong>: Invalid login credentials."
3389
- msgstr ""
3390
 
3391
  #: all-in-one-wp-security/classes/wp-security-user-login.php:103
3392
  msgid "<strong>ERROR</strong>: Invalid username."
3393
- msgstr ""
3394
 
3395
  #: all-in-one-wp-security/classes/wp-security-user-login.php:129
3396
  #, php-format
@@ -3398,34 +3415,40 @@ msgid ""
3398
  "<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password "
3399
  "Lost and Found\">Lost your password</a>?"
3400
  msgstr ""
 
 
3401
 
3402
  #: all-in-one-wp-security/classes/wp-security-user-login.php:140
3403
  msgid ""
3404
  "<strong>ACCOUNT PENDING</strong>: Your account is currently not active. An "
3405
  "administrator needs to activate your account before you can login."
3406
  msgstr ""
 
 
3407
 
3408
  #: all-in-one-wp-security/classes/wp-security-user-login.php:263
3409
  msgid "Site Lockout Notification"
3410
- msgstr ""
3411
 
3412
  #: all-in-one-wp-security/classes/wp-security-user-login.php:264
3413
  msgid ""
3414
  "A lockdown event has occurred due to too many failed login attempts or "
3415
  "invalid username:"
3416
  msgstr ""
 
 
3417
 
3418
  #: all-in-one-wp-security/classes/wp-security-user-login.php:265
3419
  msgid "Username: "
3420
- msgstr ""
3421
 
3422
  #: all-in-one-wp-security/classes/wp-security-user-login.php:266
3423
  msgid "IP Address: "
3424
- msgstr ""
3425
 
3426
  #: all-in-one-wp-security/classes/wp-security-user-login.php:267
3427
  msgid "IP Range: "
3428
- msgstr ""
3429
 
3430
  #: all-in-one-wp-security/classes/wp-security-user-login.php:268
3431
  msgid ""
@@ -3439,6 +3462,8 @@ msgid ""
3439
  "Your session has expired because it has been over %d minutes since your last "
3440
  "login."
3441
  msgstr ""
 
 
3442
 
3443
  #: all-in-one-wp-security/classes/wp-security-user-login.php:426
3444
  #: all-in-one-wp-security/classes/wp-security-user-login.php:430
@@ -3454,11 +3479,11 @@ msgstr ""
3454
  #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:113
3455
  #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:128
3456
  msgid " is not a valid ip address format."
3457
- msgstr ""
3458
 
3459
  #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:136
3460
  msgid "You cannot ban your own IP address: "
3461
- msgstr ""
3462
 
3463
  #: all-in-one-wp-security/classes/wp-security-utility.php:151
3464
  msgid ""
@@ -3507,7 +3532,7 @@ msgstr ""
3507
 
3508
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:83
3509
  msgid "Deny Bad Queries"
3510
- msgstr ""
3511
 
3512
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:85
3513
  msgid "5G Blacklist"
@@ -3515,11 +3540,11 @@ msgstr ""
3515
 
3516
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:88
3517
  msgid "Block Spambots"
3518
- msgstr ""
3519
 
3520
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:90
3521
  msgid "Comment Captcha"
3522
- msgstr ""
3523
 
3524
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:28
3525
  msgid "Basic"
2
  msgstr ""
3
  "Project-Id-Version: AIOWPS\n"
4
  "POT-Creation-Date: 2013-12-03 12:53+1000\n"
5
+ "PO-Revision-Date: 2014-05-07 11:28-0300\n"
6
+ "Last-Translator: Sms Lbr <smslbr@gmail.com>\n"
7
  "Language-Team: Li9 <suporte@li9.com.br>\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.6.5\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
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"
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"
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"
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."
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"
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....."
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!"
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
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"
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."
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 ""
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!"
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!"
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 ""
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 ""
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 ""
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 ""
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 ""
3259
 
3260
  #: all-in-one-wp-security/classes/wp-security-backup.php:179
3261
  msgid " generated on"
3262
+ msgstr "gerado em"
3263
 
3264
  #: all-in-one-wp-security/classes/wp-security-captcha.php:12
3265
  msgid "Please enter an answer in digits:"
3351
 
3352
  #: all-in-one-wp-security/classes/wp-security-file-scan.php:60
3353
  msgid "A file change was detected on your system for site URL"
3354
+ msgstr "Um arquivo substituido foi detectado em seu sistema do website URL "
3355
 
3356
  #: all-in-one-wp-security/classes/wp-security-file-scan.php:60
3357
  msgid ". Scan was generated on"
3358
+ msgstr ".Scan foi gerado em"
3359
 
3360
  #: all-in-one-wp-security/classes/wp-security-file-scan.php:61
3361
  msgid "Login to your site to view the scan details."
3363
 
3364
  #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:158
3365
  msgid "Please enter an answer in the CAPTCHA field."
3366
+ msgstr "Por favor, digite uma resposta no campo CAPTCHA."
3367
 
3368
  #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:168
3369
  msgid ""
3370
  "Error: You entered an incorrect CAPTCHA answer. Please go back and try again."
3371
  msgstr ""
3372
+ "Erro: Você digitou a resposta CAPTCHA, de forma incorreta. Por favor, volte "
3373
+ "e tente NOVAMENTE."
3374
 
3375
  #: all-in-one-wp-security/classes/wp-security-general-init-tasks.php:196
3376
  #: all-in-one-wp-security/classes/wp-security-user-login.php:63
3378
  #: all-in-one-wp-security/classes/wp-security-user-registration.php:59
3379
  msgid "<strong>ERROR</strong>: Your answer was incorrect - please try again."
3380
  msgstr ""
3381
+ "<strong>ERRO</strong>: A sua resposta está INCORRETA - por favor, tente "
3382
+ "novamente."
3383
 
3384
  #: all-in-one-wp-security/classes/wp-security-user-login.php:39
3385
  msgid ""
3387
  "blocked.\n"
3388
  " Please contact the administrator."
3389
  msgstr ""
3390
+ "<strong>ERRO</strong>: O seu LOGIN falhou porque o seu endereço IP foi "
3391
+ "bloqueado.\n"
3392
+ " Por favor, contate o administrador do "
3393
+ "Website."
3394
 
3395
  #: all-in-one-wp-security/classes/wp-security-user-login.php:76
3396
  msgid "<strong>ERROR</strong>: The username field is empty."
3397
+ msgstr "<strong>ERRO</strong>: O campo nome de USUÁRIO está vazio."
3398
 
3399
  #: all-in-one-wp-security/classes/wp-security-user-login.php:80
3400
  msgid "<strong>ERROR</strong>: The password field is empty."
3401
+ msgstr "<strong>ERRO</strong>: O campo da SENHA está vazio."
3402
 
3403
  #: all-in-one-wp-security/classes/wp-security-user-login.php:100
3404
  #: all-in-one-wp-security/classes/wp-security-user-login.php:126
3405
  msgid "<strong>ERROR</strong>: Invalid login credentials."
3406
+ msgstr "<strong>ERRO</strong>: As suas informações de login são INVÁLIDAS."
3407
 
3408
  #: all-in-one-wp-security/classes/wp-security-user-login.php:103
3409
  msgid "<strong>ERROR</strong>: Invalid username."
3410
+ msgstr "<strong>ERRO</strong>: NOME DE USUÁRIO Inválido."
3411
 
3412
  #: all-in-one-wp-security/classes/wp-security-user-login.php:129
3413
  #, php-format
3415
  "<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password "
3416
  "Lost and Found\">Lost your password</a>?"
3417
  msgstr ""
3418
+ "<strong>ERRO</strong>: SENHA INCORRETA. <a href=\"%s\" title=\"Senha Perdida "
3419
+ "e Encontrada\">Perdeu a sua SENHA</a>?"
3420
 
3421
  #: all-in-one-wp-security/classes/wp-security-user-login.php:140
3422
  msgid ""
3423
  "<strong>ACCOUNT PENDING</strong>: Your account is currently not active. An "
3424
  "administrator needs to activate your account before you can login."
3425
  msgstr ""
3426
+ "<strong>CONTA PENDENTE</strong>: A sua CONTA não está ativa. Um "
3427
+ "Administrador precisa ativar a sua conta ante e você efetuar o LOGIN."
3428
 
3429
  #: all-in-one-wp-security/classes/wp-security-user-login.php:263
3430
  msgid "Site Lockout Notification"
3431
+ msgstr "Notificação de Bloqueio do Website"
3432
 
3433
  #: all-in-one-wp-security/classes/wp-security-user-login.php:264
3434
  msgid ""
3435
  "A lockdown event has occurred due to too many failed login attempts or "
3436
  "invalid username:"
3437
  msgstr ""
3438
+ "Um evento de bloqueio ocorreu devido a muitas tentativas de login ou nome de "
3439
+ "usuário inválido:"
3440
 
3441
  #: all-in-one-wp-security/classes/wp-security-user-login.php:265
3442
  msgid "Username: "
3443
+ msgstr "Usuário:"
3444
 
3445
  #: all-in-one-wp-security/classes/wp-security-user-login.php:266
3446
  msgid "IP Address: "
3447
+ msgstr "Endereço IP:"
3448
 
3449
  #: all-in-one-wp-security/classes/wp-security-user-login.php:267
3450
  msgid "IP Range: "
3451
+ msgstr "Faixa IP:"
3452
 
3453
  #: all-in-one-wp-security/classes/wp-security-user-login.php:268
3454
  msgid ""
3462
  "Your session has expired because it has been over %d minutes since your last "
3463
  "login."
3464
  msgstr ""
3465
+ "A sua sessão foi encerrada porque já se passaram %d minutos do seu último "
3466
+ "login."
3467
 
3468
  #: all-in-one-wp-security/classes/wp-security-user-login.php:426
3469
  #: all-in-one-wp-security/classes/wp-security-user-login.php:430
3479
  #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:113
3480
  #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:128
3481
  msgid " is not a valid ip address format."
3482
+ msgstr "esse formato de endereço de IP não é válido."
3483
 
3484
  #: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:136
3485
  msgid "You cannot ban your own IP address: "
3486
+ msgstr "Você não pode banir o seu próprio endereço IP"
3487
 
3488
  #: all-in-one-wp-security/classes/wp-security-utility.php:151
3489
  msgid ""
3532
 
3533
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:83
3534
  msgid "Deny Bad Queries"
3535
+ msgstr "Impedir Consultas Duvidosas"
3536
 
3537
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:85
3538
  msgid "5G Blacklist"
3540
 
3541
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:88
3542
  msgid "Block Spambots"
3543
+ msgstr "Bloquear Spambots"
3544
 
3545
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item-manager.php:90
3546
  msgid "Comment Captcha"
3547
+ msgstr "Captcha Comentário"
3548
 
3549
  #: all-in-one-wp-security/classes/grade-system/wp-security-feature-item.php:28
3550
  msgid "Basic"
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
3
  Donate link: http://www.tipsandtricks-hq.com
4
- Tags: security, secure, Anti Virus, antivirus, ban, ban hacker, virus, firewall, firewall security, login, lockdown, htaccess, hack, malware, vulnerability, protect, protection, phishing, database, backup, plugin, sql injection, ssl, restrict, login captcha, bot, hotlink, 404 detection, admin, rename,
5
  Requires at least: 3.5
6
- Tested up to: 3.9
7
- Stable tag: 3.7.3
8
  License: GPLv3
9
 
10
  A comprehensive, user-friendly, all in one WordPress security and firewall plugin for your site.
@@ -101,12 +101,16 @@ or malicious bots who do not have a special cookie in their browser. You (the si
101
 
102
  = Security Scanner =
103
  * The file change detection scanner can alert you if any files have changed in your WordPress system. You can then investigate and see if that was a legitimate change or some bad code was injected.
 
104
 
105
  = Comment SPAM Security =
106
  * Monitor the most active IP addresses which persistently produce the most SPAM comments and instantly block them with the click of a button.
107
  * Prevent comments from being submitted if it doesn't originate from your domain (this should reduce some SPAM bot comment posting on your site).
108
  * Add a captcha to your wordpress comment form to add security against comment spam.
109
 
 
 
 
110
  = Regular updates and additions of new security features =
111
  * WordPress Security is something that evolves over time. We will be updating the All In One WP Security plugin with new security features (and fixes if required) on a regular basis so you can rest assured that your site will be on the cutting edge of security protection techniques.
112
 
@@ -117,10 +121,14 @@ or malicious bots who do not have a special cookie in their browser. You (the si
117
  * Ability to remove the WordPress Generator Meta information from the HTML source of your site.
118
  * Ability to prevent people from accessing the readme.html, license.txt and wp-config-sample.php files
119
  * Ability to temporarily lock down the front end of your site from general visitors while you do various backend tasks (investigate security attacks, perform site upgrades, do maintenance work etc.)
 
120
 
121
  = Plugin Support =
122
  * If you have a question or problem with the All In One Security plugin, post it on the support forum and we will help you.
123
 
 
 
 
124
  = Translations =
125
  * All In One WP Security plugin can be translated to any language.
126
 
@@ -151,6 +159,23 @@ None
151
 
152
  == Changelog ==
153
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
154
  = 3.7.3 =
155
  - Added Brazilian language translation. The translation was submitted by Sergio Siqueira.
156
  - Added two new action hooks for plugin activation and deactivation time.
1
  === All In One WP Security & Firewall ===
2
  Contributors: Tips and Tricks HQ, wpsolutions, Peter Petreski, Ruhul Amin
3
  Donate link: http://www.tipsandtricks-hq.com
4
+ Tags: security, secure, Anti Virus, antivirus, ban, ban hacker, virus, firewall, firewall security, login, lockdown, htaccess, hack, malware, vulnerability, protect, protection, phishing, database, backup, plugin, sql injection, ssl, restrict, login captcha, bot, hotlink, 404 detection, admin, rename, all in one, scan, scanner
5
  Requires at least: 3.5
6
+ Tested up to: 3.9.1
7
+ Stable tag: 3.7.5
8
  License: GPLv3
9
 
10
  A comprehensive, user-friendly, all in one WordPress security and firewall plugin for your site.
101
 
102
  = Security Scanner =
103
  * The file change detection scanner can alert you if any files have changed in your WordPress system. You can then investigate and see if that was a legitimate change or some bad code was injected.
104
+ * Database scanner feature can be used to scan your database tables. It will look for any common suspicious-looking strings, javascript and html code in some of the WordPress core tables.
105
 
106
  = Comment SPAM Security =
107
  * Monitor the most active IP addresses which persistently produce the most SPAM comments and instantly block them with the click of a button.
108
  * Prevent comments from being submitted if it doesn't originate from your domain (this should reduce some SPAM bot comment posting on your site).
109
  * Add a captcha to your wordpress comment form to add security against comment spam.
110
 
111
+ = Front-end Text Copy Protection =
112
+ * Ability to disable the right click, text selection and copy option for your front-end.
113
+
114
  = Regular updates and additions of new security features =
115
  * WordPress Security is something that evolves over time. We will be updating the All In One WP Security plugin with new security features (and fixes if required) on a regular basis so you can rest assured that your site will be on the cutting edge of security protection techniques.
116
 
121
  * Ability to remove the WordPress Generator Meta information from the HTML source of your site.
122
  * Ability to prevent people from accessing the readme.html, license.txt and wp-config-sample.php files
123
  * Ability to temporarily lock down the front end of your site from general visitors while you do various backend tasks (investigate security attacks, perform site upgrades, do maintenance work etc.)
124
+ * Ability to export/import the security settings.
125
 
126
  = Plugin Support =
127
  * If you have a question or problem with the All In One Security plugin, post it on the support forum and we will help you.
128
 
129
+ = Developers =
130
+ * If you are a developer and you need some extra hooks or filters for this plugin then let us know.
131
+
132
  = Translations =
133
  * All In One WP Security plugin can be translated to any language.
134
 
159
 
160
  == Changelog ==
161
 
162
+ = 3.7.5 =
163
+ - Added a new DB scan feature. Go to the "Scanner" menu to use this new feature.
164
+ - Added new settings import/export feature.
165
+ - Modified user accounts feature to alert administrator if one or both "admin" or "Admin" usernames are being used.
166
+ - Added Persian language translation. The translation was submitted by Amir Mousavi Pour (me@ameer.ir).
167
+ - Small change to get_mysql_tables function to prevent fatal error when mysqli query is unsuccessful.
168
+ - Added Italian language translation. The translation was submitted by Marco Guglielmetti.
169
+
170
+ = 3.7.4 =
171
+ - Added a new feature to add copy protection for your front-end. You can find this feature under the "Miscellaneous" menu.
172
+ - Fixed comment captcha bug for multi-site. Now this feature can be activated/deactivated for subsites of a multisite installation.
173
+ - Added Hungarian language translation. The translation was submitted by Daniel Kocsis.
174
+ - Moved the custom login page feature's handling code to wp-loaded hook so other plugins that modify the login page can do their task before our one is triggered. This change was suggested by Mark Hudnall.
175
+ - Added German language translation. The translation was submitted by Manuel Fritsch.
176
+ - Updated the Brazilian language translation file.
177
+
178
+
179
  = 3.7.3 =
180
  - Added Brazilian language translation. The translation was submitted by Sergio Siqueira.
181
  - Added two new action hooks for plugin activation and deactivation time.
wp-security-core.php CHANGED
@@ -3,7 +3,7 @@
3
  if (!class_exists('AIO_WP_Security')){
4
 
5
  class AIO_WP_Security{
6
- var $version = '3.7.3';
7
  var $db_version = '1.6';
8
  var $plugin_url;
9
  var $plugin_path;
@@ -14,7 +14,7 @@ class AIO_WP_Security{
14
  var $user_login_obj;
15
  var $user_registration_obj;
16
  var $backup_obj;
17
- var $filescan_obj;
18
  var $captcha_obj;
19
 
20
  function __construct()
@@ -25,6 +25,7 @@ class AIO_WP_Security{
25
  $this->loader_operations();
26
 
27
  add_action('init', array(&$this, 'wp_security_plugin_init'), 0);
 
28
  do_action('aiowpsecurity_loaded');
29
  }
30
 
@@ -72,6 +73,7 @@ class AIO_WP_Security{
72
  define('AIOWPSEC_SPAM_MENU_SLUG', 'aiowpsec_spam');
73
  define('AIOWPSEC_FILESCAN_MENU_SLUG', 'aiowpsec_filescan');
74
  define('AIOWPSEC_BRUTE_FORCE_MENU_SLUG', 'aiowpsec_brute_force');
 
75
 
76
  global $wpdb;
77
  define('AIOWPSEC_TBL_LOGIN_LOCKDOWN', $wpdb->prefix . 'aiowps_login_lockdown');
@@ -91,6 +93,7 @@ class AIO_WP_Security{
91
  include_once('classes/wp-security-utility-ip-address.php');
92
  include_once('classes/wp-security-utility-file.php');
93
  include_once('classes/wp-security-general-init-tasks.php');
 
94
 
95
  include_once('classes/wp-security-user-login.php');
96
  include_once('classes/wp-security-user-registration.php');
@@ -100,6 +103,7 @@ class AIO_WP_Security{
100
  include_once('classes/wp-security-cronjob-handler.php');
101
  include_once('classes/grade-system/wp-security-feature-item.php');
102
  include_once('classes/grade-system/wp-security-feature-item-manager.php');
 
103
 
104
  if (is_admin()){ //Load admin side only files
105
  include_once('classes/wp-security-configure-settings.php');
@@ -180,21 +184,32 @@ class AIO_WP_Security{
180
  $this->user_registration_obj = new AIOWPSecurity_User_Registration();//Do the user login operation tasks
181
  $this->captcha_obj = new AIOWPSecurity_Captcha();//Do the captcha tasks
182
  $this->backup_obj = new AIOWPSecurity_Backup();//Object to handle backup tasks
183
- $this->filescan_obj = new AIOWPSecurity_Filescan();//Object to handle backup tasks
184
  $this->cron_handler = new AIOWPSecurity_Cronjob_Handler();
185
 
186
  add_action('wp_head',array(&$this, 'aiowps_header_content'));
187
-
 
188
  add_action('wp_login', array('AIOWPSecurity_User_Login', 'wp_login_action_handler'), 10, 2);
189
  do_action('aiowps_force_logout_check');
190
  new AIOWPSecurity_General_Init_Tasks();
191
  }
 
 
 
 
 
192
 
193
  function aiowps_header_content()
194
  {
195
  //NOP
196
  }
197
 
 
 
 
 
 
198
  function do_additional_plugins_loaded_tasks()
199
  {
200
  if(isset($_GET['aiowpsec_do_log_out']))
@@ -221,7 +236,32 @@ class AIO_WP_Security{
221
  }
222
  }
223
  }
224
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
225
 
226
  }//End of class
227
 
3
  if (!class_exists('AIO_WP_Security')){
4
 
5
  class AIO_WP_Security{
6
+ var $version = '3.7.5';
7
  var $db_version = '1.6';
8
  var $plugin_url;
9
  var $plugin_path;
14
  var $user_login_obj;
15
  var $user_registration_obj;
16
  var $backup_obj;
17
+ var $scan_obj;
18
  var $captcha_obj;
19
 
20
  function __construct()
25
  $this->loader_operations();
26
 
27
  add_action('init', array(&$this, 'wp_security_plugin_init'), 0);
28
+ add_action('wp_loaded',array(&$this, 'aiowps_wp_loaded_handler'));
29
  do_action('aiowpsecurity_loaded');
30
  }
31
 
73
  define('AIOWPSEC_SPAM_MENU_SLUG', 'aiowpsec_spam');
74
  define('AIOWPSEC_FILESCAN_MENU_SLUG', 'aiowpsec_filescan');
75
  define('AIOWPSEC_BRUTE_FORCE_MENU_SLUG', 'aiowpsec_brute_force');
76
+ define('AIOWPSEC_MISC_MENU_SLUG', 'aiowpsec_misc');
77
 
78
  global $wpdb;
79
  define('AIOWPSEC_TBL_LOGIN_LOCKDOWN', $wpdb->prefix . 'aiowps_login_lockdown');
93
  include_once('classes/wp-security-utility-ip-address.php');
94
  include_once('classes/wp-security-utility-file.php');
95
  include_once('classes/wp-security-general-init-tasks.php');
96
+ include_once('classes/wp-security-wp-loaded-tasks.php');
97
 
98
  include_once('classes/wp-security-user-login.php');
99
  include_once('classes/wp-security-user-registration.php');
103
  include_once('classes/wp-security-cronjob-handler.php');
104
  include_once('classes/grade-system/wp-security-feature-item.php');
105
  include_once('classes/grade-system/wp-security-feature-item-manager.php');
106
+ include_once('classes/wp-security-wp-footer-content.php');
107
 
108
  if (is_admin()){ //Load admin side only files
109
  include_once('classes/wp-security-configure-settings.php');
184
  $this->user_registration_obj = new AIOWPSecurity_User_Registration();//Do the user login operation tasks
185
  $this->captcha_obj = new AIOWPSecurity_Captcha();//Do the captcha tasks
186
  $this->backup_obj = new AIOWPSecurity_Backup();//Object to handle backup tasks
187
+ $this->scan_obj = new AIOWPSecurity_Scan();//Object to handle backup tasks
188
  $this->cron_handler = new AIOWPSecurity_Cronjob_Handler();
189
 
190
  add_action('wp_head',array(&$this, 'aiowps_header_content'));
191
+ add_action('wp_footer',array(&$this, 'aiowps_footer_content'));
192
+
193
  add_action('wp_login', array('AIOWPSecurity_User_Login', 'wp_login_action_handler'), 10, 2);
194
  do_action('aiowps_force_logout_check');
195
  new AIOWPSecurity_General_Init_Tasks();
196
  }
197
+
198
+ function aiowps_wp_loaded_handler()
199
+ {
200
+ new AIOWPSecurity_WP_Loaded_Tasks();
201
+ }
202
 
203
  function aiowps_header_content()
204
  {
205
  //NOP
206
  }
207
 
208
+ function aiowps_footer_content()
209
+ {
210
+ new AIOWPSecurity_WP_Footer_Content();
211
+ }
212
+
213
  function do_additional_plugins_loaded_tasks()
214
  {
215
  if(isset($_GET['aiowpsec_do_log_out']))
236
  }
237
  }
238
  }
239
+ }
240
+
241
+ //This function will dynamically change the upload directory if the user is uploading a file from an aiowps page
242
+ function aiowps_set_upload_dir($path_data)
243
+ {
244
+ $output = array();
245
+ $originating_url_parsed = parse_url($_SERVER['HTTP_REFERER']);
246
+ if(isset($originating_url_parsed['query'])){
247
+ parse_str($originating_url_parsed['query'], $output);
248
+
249
+ if (isset($output['referer'])){
250
+ if ($output['referer'] == 'aiowpsec') {
251
+ $path_data['path'] = WP_CONTENT_DIR . "/" . AIO_WP_SECURITY_BACKUPS_DIR_NAME;
252
+ $path_data['url'] = content_url() . "/" . AIO_WP_SECURITY_BACKUPS_DIR_NAME;
253
+ }
254
+ }
255
+ }
256
+ return $path_data;
257
+ }
258
+
259
+ function handle_upload( $fileinfo )
260
+ {
261
+ remove_filter('upload_dir', array( &$this, 'aiowps_set_upload_dir' ) );
262
+ return $fileinfo;
263
+ }
264
+
265
 
266
  }//End of class
267
 
wp-security.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: All In One WP Security
4
- Version: v3.7.3
5
  Plugin URI: http://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin
6
  Author: Tips and Tricks HQ, Peter, Ruhul, Ivy
7
  Author URI: http://www.tipsandtricks-hq.com/
1
  <?php
2
  /*
3
  Plugin Name: All In One WP Security
4
+ Version: v3.7.5
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/