Version Description
- Added a simple math captcha functionality for the WP login page. This is another easy yet effective way to combat Brute Force Login Attacks. You can enable this new feature from the user login security menu.
Download this release
Release Info
Developer | mra13 |
Plugin | All In One WP Security & Firewall |
Version | 2.7 |
Comparing to | |
See all releases |
Code changes from version 2.6 to 2.7
- admin/wp-security-user-login-menu.php +73 -11
- classes/grade-system/wp-security-feature-item-manager.php +18 -0
- classes/wp-security-captcha.php +103 -0
- classes/wp-security-configure-settings.php +6 -0
- classes/wp-security-general-init-tasks.php +13 -2
- classes/wp-security-user-login.php +24 -0
- languages/aiowpsecurity-ru_RU.mo +0 -0
- languages/aiowpsecurity-ru_RU.po +2879 -0
- languages/aiowpsecurity.pot +1132 -661
- readme.txt +6 -1
- wp-security-core.php +4 -1
- wp-security.php +1 -1
admin/wp-security-user-login-menu.php
CHANGED
@@ -6,12 +6,13 @@ class AIOWPSecurity_User_Login_Menu extends AIOWPSecurity_Admin_Menu
|
|
6 |
|
7 |
/* Specify all the tabs of this menu in the following array */
|
8 |
var $menu_tabs = array(
|
9 |
-
'tab1' => 'Login Lockdown',
|
10 |
-
'tab2' => 'Login
|
11 |
-
'tab3' => '
|
12 |
-
'tab4' => '
|
13 |
-
'tab5' => '
|
14 |
-
'tab6' => '
|
|
|
15 |
|
16 |
);
|
17 |
var $menu_tabs_handler = array(
|
@@ -21,6 +22,7 @@ class AIOWPSecurity_User_Login_Menu extends AIOWPSecurity_Admin_Menu
|
|
21 |
'tab4' => 'render_tab4',
|
22 |
'tab5' => 'render_tab5',
|
23 |
'tab6' => 'render_tab6',
|
|
|
24 |
);
|
25 |
|
26 |
function __construct()
|
@@ -243,8 +245,68 @@ class AIOWPSecurity_User_Login_Menu extends AIOWPSecurity_Admin_Menu
|
|
243 |
</div></div>
|
244 |
<?php
|
245 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
|
247 |
-
function
|
248 |
{
|
249 |
global $aio_wp_security;
|
250 |
global $aiowps_feature_mgr;
|
@@ -372,7 +434,7 @@ class AIOWPSecurity_User_Login_Menu extends AIOWPSecurity_Admin_Menu
|
|
372 |
<?php
|
373 |
}
|
374 |
|
375 |
-
function
|
376 |
{
|
377 |
global $aio_wp_security, $wpdb;
|
378 |
if (isset($_POST['aiowps_delete_failed_login_records']))
|
@@ -447,7 +509,7 @@ class AIOWPSecurity_User_Login_Menu extends AIOWPSecurity_Admin_Menu
|
|
447 |
<?php
|
448 |
}
|
449 |
|
450 |
-
function
|
451 |
{
|
452 |
global $aio_wp_security;
|
453 |
global $aiowps_feature_mgr;
|
@@ -524,7 +586,7 @@ class AIOWPSecurity_User_Login_Menu extends AIOWPSecurity_Admin_Menu
|
|
524 |
<?php
|
525 |
}
|
526 |
|
527 |
-
function
|
528 |
{
|
529 |
include_once 'wp-security-list-acct-activity.php'; //For rendering the AIOWPSecurity_List_Table in tab4
|
530 |
$acct_activity_list = new AIOWPSecurity_List_Account_Activity(); //For rendering the AIOWPSecurity_List_Table in tab2
|
@@ -561,7 +623,7 @@ class AIOWPSecurity_User_Login_Menu extends AIOWPSecurity_Admin_Menu
|
|
561 |
<?php
|
562 |
}
|
563 |
|
564 |
-
function
|
565 |
{
|
566 |
$logged_in_users = (AIOWPSecurity_Utility::is_multisite_install() ? get_site_transient('users_online') : get_transient('users_online'));
|
567 |
|
6 |
|
7 |
/* Specify all the tabs of this menu in the following array */
|
8 |
var $menu_tabs = array(
|
9 |
+
'tab1' => 'Login Lockdown',
|
10 |
+
'tab2' => 'Login Captcha',
|
11 |
+
'tab3' => 'Login Whitelist',
|
12 |
+
'tab4' => 'Failed Login Records',
|
13 |
+
'tab5' => 'Force Logout',
|
14 |
+
'tab6' => 'Account Activity Logs',
|
15 |
+
'tab7' => 'Logged In Users',
|
16 |
|
17 |
);
|
18 |
var $menu_tabs_handler = array(
|
22 |
'tab4' => 'render_tab4',
|
23 |
'tab5' => 'render_tab5',
|
24 |
'tab6' => 'render_tab6',
|
25 |
+
'tab7' => 'render_tab7',
|
26 |
);
|
27 |
|
28 |
function __construct()
|
245 |
</div></div>
|
246 |
<?php
|
247 |
}
|
248 |
+
|
249 |
+
function render_tab2()
|
250 |
+
{
|
251 |
+
global $aio_wp_security;
|
252 |
+
global $aiowps_feature_mgr;
|
253 |
+
|
254 |
+
if(isset($_POST['aiowpsec_save_captcha_settings']))//Do form submission tasks
|
255 |
+
{
|
256 |
+
$error = '';
|
257 |
+
$nonce=$_REQUEST['_wpnonce'];
|
258 |
+
if (!wp_verify_nonce($nonce, 'aiowpsec-captcha-settings-nonce'))
|
259 |
+
{
|
260 |
+
$aio_wp_security->debug_logger->log_debug("Nonce check failed on captcha settings save!",4);
|
261 |
+
die("Nonce check failed on captcha settings save!");
|
262 |
+
}
|
263 |
+
|
264 |
+
|
265 |
+
//Save all the form values to the options
|
266 |
+
$aio_wp_security->configs->set_value('aiowps_enable_login_captcha',isset($_POST["aiowps_enable_login_captcha"])?'1':'');
|
267 |
+
$aio_wp_security->configs->save_config();
|
268 |
+
|
269 |
+
//Recalculate points after the feature status/options have been altered
|
270 |
+
$aiowps_feature_mgr->check_feature_status_and_recalculate_points();
|
271 |
+
|
272 |
+
$this->show_msg_settings_updated();
|
273 |
+
}
|
274 |
+
?>
|
275 |
+
<div class="aio_blue_box">
|
276 |
+
<?php
|
277 |
+
echo '<p>'.__('This feature allows you to add a captcha form on the WordPress login page.', 'aiowpsecurity').'
|
278 |
+
<br />'.__('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.', 'aiowpsecurity').'
|
279 |
+
<br />'.__('Therefore, adding a captcha form on the login page is another effective yet simple "Brute Force" prevention technique.', 'aiowpsecurity').'
|
280 |
+
</p>';
|
281 |
+
?>
|
282 |
+
</div>
|
283 |
+
<div class="postbox">
|
284 |
+
<h3><label for="title"><?php _e('Captcha Settings', 'aiowpsecurity'); ?></label></h3>
|
285 |
+
<div class="inside">
|
286 |
+
<?php
|
287 |
+
//Display security info badge
|
288 |
+
global $aiowps_feature_mgr;
|
289 |
+
$aiowps_feature_mgr->output_feature_details_badge("user-login-captcha");
|
290 |
+
?>
|
291 |
+
|
292 |
+
<form action="" method="POST">
|
293 |
+
<?php wp_nonce_field('aiowpsec-captcha-settings-nonce'); ?>
|
294 |
+
<table class="form-table">
|
295 |
+
<tr valign="top">
|
296 |
+
<th scope="row"><?php _e('Enable Captcha On Login Page', 'aiowpsecurity')?>:</th>
|
297 |
+
<td>
|
298 |
+
<input name="aiowps_enable_login_captcha" type="checkbox"<?php if($aio_wp_security->configs->get_value('aiowps_enable_login_captcha')=='1') echo ' checked="checked"'; ?> value="1"/>
|
299 |
+
<span class="description"><?php _e('Check this if you want to insert a captcha form on the login page', 'aiowpsecurity'); ?></span>
|
300 |
+
</td>
|
301 |
+
</tr>
|
302 |
+
</table>
|
303 |
+
<input type="submit" name="aiowpsec_save_captcha_settings" value="<?php _e('Save Settings', 'aiowpsecurity')?>" class="button-primary" />
|
304 |
+
</form>
|
305 |
+
</div></div>
|
306 |
+
<?php
|
307 |
+
}
|
308 |
|
309 |
+
function render_tab3()
|
310 |
{
|
311 |
global $aio_wp_security;
|
312 |
global $aiowps_feature_mgr;
|
434 |
<?php
|
435 |
}
|
436 |
|
437 |
+
function render_tab4()
|
438 |
{
|
439 |
global $aio_wp_security, $wpdb;
|
440 |
if (isset($_POST['aiowps_delete_failed_login_records']))
|
509 |
<?php
|
510 |
}
|
511 |
|
512 |
+
function render_tab5()
|
513 |
{
|
514 |
global $aio_wp_security;
|
515 |
global $aiowps_feature_mgr;
|
586 |
<?php
|
587 |
}
|
588 |
|
589 |
+
function render_tab6()
|
590 |
{
|
591 |
include_once 'wp-security-list-acct-activity.php'; //For rendering the AIOWPSecurity_List_Table in tab4
|
592 |
$acct_activity_list = new AIOWPSecurity_List_Account_Activity(); //For rendering the AIOWPSecurity_List_Table in tab2
|
623 |
<?php
|
624 |
}
|
625 |
|
626 |
+
function render_tab7()
|
627 |
{
|
628 |
$logged_in_users = (AIOWPSecurity_Utility::is_multisite_install() ? get_site_transient('users_online') : get_transient('users_online'));
|
629 |
|
classes/grade-system/wp-security-feature-item-manager.php
CHANGED
@@ -37,6 +37,8 @@ class AIOWPSecurity_Feature_Item_Manager
|
|
37 |
//User Login Menu Features
|
38 |
//Locking Lockdown
|
39 |
$this->feature_items[] = new AIOWPSecurity_Feature_Item("user-login-login-lockdown", "Login Lockdown", $this->feature_point_4, $this->sec_level_basic);
|
|
|
|
|
40 |
//Login whitelisting
|
41 |
$this->feature_items[] = new AIOWPSecurity_Feature_Item("whitelist-manager-ip-login-whitelisting", "Login IP Whitelisting", $this->feature_point_3, $this->sec_level_inter);
|
42 |
//Force Logout
|
@@ -154,6 +156,10 @@ class AIOWPSecurity_Feature_Item_Manager
|
|
154 |
{
|
155 |
$this->check_login_lockdown_feature($item);
|
156 |
}
|
|
|
|
|
|
|
|
|
157 |
if($item->feature_id == "whitelist-manager-ip-login-whitelisting")
|
158 |
{
|
159 |
$this->check_login_whitelist_feature($item);
|
@@ -305,6 +311,18 @@ class AIOWPSecurity_Feature_Item_Manager
|
|
305 |
}
|
306 |
}
|
307 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
function check_login_whitelist_feature($item)
|
309 |
{
|
310 |
global $aio_wp_security;
|
37 |
//User Login Menu Features
|
38 |
//Locking Lockdown
|
39 |
$this->feature_items[] = new AIOWPSecurity_Feature_Item("user-login-login-lockdown", "Login Lockdown", $this->feature_point_4, $this->sec_level_basic);
|
40 |
+
//Login Captcha
|
41 |
+
$this->feature_items[] = new AIOWPSecurity_Feature_Item("user-login-captcha", "Login Captcha", $this->feature_point_4, $this->sec_level_basic);
|
42 |
//Login whitelisting
|
43 |
$this->feature_items[] = new AIOWPSecurity_Feature_Item("whitelist-manager-ip-login-whitelisting", "Login IP Whitelisting", $this->feature_point_3, $this->sec_level_inter);
|
44 |
//Force Logout
|
156 |
{
|
157 |
$this->check_login_lockdown_feature($item);
|
158 |
}
|
159 |
+
if($item->feature_id == "user-login-captcha")
|
160 |
+
{
|
161 |
+
$this->check_login_captcha_feature($item);
|
162 |
+
}
|
163 |
if($item->feature_id == "whitelist-manager-ip-login-whitelisting")
|
164 |
{
|
165 |
$this->check_login_whitelist_feature($item);
|
311 |
}
|
312 |
}
|
313 |
|
314 |
+
function check_login_captcha_feature($item)
|
315 |
+
{
|
316 |
+
global $aio_wp_security;
|
317 |
+
if ($aio_wp_security->configs->get_value('aiowps_enable_login_captcha') == '1') {
|
318 |
+
$item->set_feature_status($this->feature_active);
|
319 |
+
}
|
320 |
+
else
|
321 |
+
{
|
322 |
+
$item->set_feature_status($this->feature_inactive);
|
323 |
+
}
|
324 |
+
}
|
325 |
+
|
326 |
function check_login_whitelist_feature($item)
|
327 |
{
|
328 |
global $aio_wp_security;
|
classes/wp-security-captcha.php
ADDED
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class AIOWPSecurity_Captcha
|
3 |
+
{
|
4 |
+
|
5 |
+
function __construct()
|
6 |
+
{
|
7 |
+
//NOP
|
8 |
+
}
|
9 |
+
|
10 |
+
function display_captcha_form()
|
11 |
+
{
|
12 |
+
$cap_form = '<p class="aiowps-captcha"><label>'.__('Please enter an answer in digits:','aiowpsecurity').'</label>';
|
13 |
+
$cap_form .= '<div class="aiowps-captcha-equation"><strong>';
|
14 |
+
$maths_question_output = $this->generate_maths_question();
|
15 |
+
$cap_form .= $maths_question_output . '</strong></div></p>';
|
16 |
+
echo $cap_form;
|
17 |
+
}
|
18 |
+
|
19 |
+
function generate_maths_question()
|
20 |
+
{
|
21 |
+
//For now we will only do plus, minus, multiplication
|
22 |
+
$equation_string = '';
|
23 |
+
$operator_type = array('+', '−', '×');
|
24 |
+
|
25 |
+
$operand_display = array('word', 'number');
|
26 |
+
|
27 |
+
//let's now generate an equation
|
28 |
+
$first_digit = rand(1,20);
|
29 |
+
if($operand_display[rand(0,1)] == 'word'){
|
30 |
+
$first_operand = $this->number_word_mapping($first_digit);
|
31 |
+
}else{
|
32 |
+
$first_operand = $first_digit;
|
33 |
+
}
|
34 |
+
|
35 |
+
$operator = $operator_type[rand(0,2)];
|
36 |
+
|
37 |
+
$second_digit = rand(1,20);
|
38 |
+
if($operand_display[rand(0,1)] == 'word'){
|
39 |
+
$second_operand = $this->number_word_mapping($second_digit);
|
40 |
+
}else{
|
41 |
+
$second_operand = $second_digit;
|
42 |
+
}
|
43 |
+
|
44 |
+
//Let's caluclate the result and construct the equation string
|
45 |
+
if($operator === '+')
|
46 |
+
{
|
47 |
+
//Addition
|
48 |
+
$result = $first_digit+$second_digit;
|
49 |
+
$equation_string = $first_operand . ' ' . $operator . ' ' . $second_operand . ' = ';
|
50 |
+
}
|
51 |
+
else if($operator === '−')
|
52 |
+
{
|
53 |
+
//Subtraction
|
54 |
+
//If we are going to be negative let's swap operands around
|
55 |
+
if($first_digit < $second_digit){
|
56 |
+
$equation_string = $second_operand . ' ' . $operator . ' ' . $first_operand . ' = ';
|
57 |
+
$result = $second_digit-$first_digit;
|
58 |
+
}else{
|
59 |
+
$equation_string = $first_operand . ' ' . $operator . ' ' . $second_operand . ' = ';
|
60 |
+
$result = $first_digit-$second_digit;
|
61 |
+
}
|
62 |
+
}
|
63 |
+
elseif($operator === '×')
|
64 |
+
{
|
65 |
+
//Multiplication
|
66 |
+
$equation_string = $first_operand . ' ' . $operator . ' ' . $second_operand . ' = ';
|
67 |
+
$result = $first_digit*$second_digit;
|
68 |
+
}
|
69 |
+
|
70 |
+
$equation_string .= '<input type="text" size="2" length="2" id="aiowps-captcha-answer" name="aiowps-captcha-answer" value="" />';
|
71 |
+
//Save the result in a transient
|
72 |
+
AIOWPSecurity_Utility::is_multisite_install() ? set_site_transient('aiowps_captcha', $result, 120) : set_transient('aiowps_captcha', $result, 120);
|
73 |
+
return $equation_string;
|
74 |
+
}
|
75 |
+
|
76 |
+
function number_word_mapping($num)
|
77 |
+
{
|
78 |
+
$number_map = array(
|
79 |
+
1 => __('one', 'aiowpsecurity'),
|
80 |
+
2 => __('two', 'aiowpsecurity'),
|
81 |
+
3 => __('three', 'aiowpsecurity'),
|
82 |
+
4 => __('four', 'aiowpsecurity'),
|
83 |
+
5 => __('five', 'aiowpsecurity'),
|
84 |
+
6 => __('six', 'aiowpsecurity'),
|
85 |
+
7 => __('seven', 'aiowpsecurity'),
|
86 |
+
8 => __('eight', 'aiowpsecurity'),
|
87 |
+
9 => __('nine', 'aiowpsecurity'),
|
88 |
+
10 => __('ten', 'aiowpsecurity'),
|
89 |
+
11 => __('eleven', 'aiowpsecurity'),
|
90 |
+
12 => __('twelve', 'aiowpsecurity'),
|
91 |
+
13 => __('thirteen', 'aiowpsecurity'),
|
92 |
+
14 => __('fourteen', 'aiowpsecurity'),
|
93 |
+
15 => __('fifteen', 'aiowpsecurity'),
|
94 |
+
16 => __('sixteen', 'aiowpsecurity'),
|
95 |
+
17 => __('seventeen', 'aiowpsecurity'),
|
96 |
+
18 => __('eighteen', 'aiowpsecurity'),
|
97 |
+
19 => __('nineteen', 'aiowpsecurity'),
|
98 |
+
20 => __('twenty', 'aiowpsecurity'),
|
99 |
+
);
|
100 |
+
return $number_map[$num];
|
101 |
+
}
|
102 |
+
|
103 |
+
}
|
classes/wp-security-configure-settings.php
CHANGED
@@ -29,6 +29,9 @@ class AIOWPSecurity_Configure_Settings
|
|
29 |
$aio_wp_security->configs->set_value('aiowps_enable_forced_logout','');//Checkbox
|
30 |
$aio_wp_security->configs->set_value('aiowps_logout_time_period','60');
|
31 |
$aio_wp_security->configs->set_value('aiowps_enable_invalid_username_lockdown','');//Checkbox
|
|
|
|
|
|
|
32 |
|
33 |
//Login Whitelist feature
|
34 |
$aio_wp_security->configs->set_value('aiowps_enable_whitelisting','');//Checkbox
|
@@ -116,6 +119,9 @@ class AIOWPSecurity_Configure_Settings
|
|
116 |
$aio_wp_security->configs->add_value('aiowps_logout_time_period','60');
|
117 |
$aio_wp_security->configs->add_value('aiowps_enable_invalid_username_lockdown','');//Checkbox
|
118 |
|
|
|
|
|
|
|
119 |
//Login Whitelist feature
|
120 |
$aio_wp_security->configs->add_value('aiowps_enable_whitelisting','');//Checkbox
|
121 |
$aio_wp_security->configs->add_value('aiowps_allowed_ip_addresses','');
|
29 |
$aio_wp_security->configs->set_value('aiowps_enable_forced_logout','');//Checkbox
|
30 |
$aio_wp_security->configs->set_value('aiowps_logout_time_period','60');
|
31 |
$aio_wp_security->configs->set_value('aiowps_enable_invalid_username_lockdown','');//Checkbox
|
32 |
+
|
33 |
+
//Captcha feature
|
34 |
+
$aio_wp_security->configs->set_value('aiowps_enable_login_captcha','');//Checkbox
|
35 |
|
36 |
//Login Whitelist feature
|
37 |
$aio_wp_security->configs->set_value('aiowps_enable_whitelisting','');//Checkbox
|
119 |
$aio_wp_security->configs->add_value('aiowps_logout_time_period','60');
|
120 |
$aio_wp_security->configs->add_value('aiowps_enable_invalid_username_lockdown','');//Checkbox
|
121 |
|
122 |
+
//Captcha feature
|
123 |
+
$aio_wp_security->configs->add_value('aiowps_enable_login_captcha','');//Checkbox
|
124 |
+
|
125 |
//Login Whitelist feature
|
126 |
$aio_wp_security->configs->add_value('aiowps_enable_whitelisting','');//Checkbox
|
127 |
$aio_wp_security->configs->add_value('aiowps_allowed_ip_addresses','');
|
classes/wp-security-general-init-tasks.php
CHANGED
@@ -24,6 +24,13 @@ class AIOWPSecurity_General_Init_Tasks
|
|
24 |
}
|
25 |
}
|
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
//For feature which displays logged in users
|
28 |
$this->update_logged_in_user_transient();
|
29 |
|
@@ -89,15 +96,19 @@ class AIOWPSecurity_General_Init_Tasks
|
|
89 |
//Update transient if the last activity was less than 15 min ago for this user
|
90 |
$logged_in_users[$item_index] = $current_user_info;
|
91 |
AIOWPSecurity_Utility::is_multisite_install() ? set_site_transient('users_online', $logged_in_users, 30 * 60) : set_transient('users_online', $logged_in_users, 30 * 60);
|
92 |
-
//set_transient('users_online', $logged_in_users, 30 * 60); //Set transient with the data obtained above and also set the expire to 30min
|
93 |
}else if($do_nothing){
|
94 |
//Do nothing
|
95 |
}else{
|
96 |
$logged_in_users[] = $current_user_info;
|
97 |
AIOWPSecurity_Utility::is_multisite_install() ? set_site_transient('users_online', $logged_in_users, 30 * 60) : set_transient('users_online', $logged_in_users, 30 * 60);
|
98 |
-
//set_transient('users_online', $logged_in_users, 30 * 60); //Set transient with the data obtained above and also set the expire to 30min
|
99 |
}
|
100 |
}
|
101 |
}
|
102 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
}
|
24 |
}
|
25 |
}
|
26 |
|
27 |
+
//For login captcha feature
|
28 |
+
if($aio_wp_security->configs->get_value('aiowps_enable_login_captcha') == '1'){
|
29 |
+
if (!is_user_logged_in() && !current_user_can('administrator') && !is_admin() && in_array( $GLOBALS['pagenow'], array( 'wp-login.php'))) {
|
30 |
+
add_action('login_form', array(&$this, 'insert_captcha_form_login_page'));
|
31 |
+
}
|
32 |
+
}
|
33 |
+
|
34 |
//For feature which displays logged in users
|
35 |
$this->update_logged_in_user_transient();
|
36 |
|
96 |
//Update transient if the last activity was less than 15 min ago for this user
|
97 |
$logged_in_users[$item_index] = $current_user_info;
|
98 |
AIOWPSecurity_Utility::is_multisite_install() ? set_site_transient('users_online', $logged_in_users, 30 * 60) : set_transient('users_online', $logged_in_users, 30 * 60);
|
|
|
99 |
}else if($do_nothing){
|
100 |
//Do nothing
|
101 |
}else{
|
102 |
$logged_in_users[] = $current_user_info;
|
103 |
AIOWPSecurity_Utility::is_multisite_install() ? set_site_transient('users_online', $logged_in_users, 30 * 60) : set_transient('users_online', $logged_in_users, 30 * 60);
|
|
|
104 |
}
|
105 |
}
|
106 |
}
|
107 |
}
|
108 |
+
|
109 |
+
function insert_captcha_form_login_page(){
|
110 |
+
if(is_admin()) return;
|
111 |
+
global $aio_wp_security;
|
112 |
+
$aio_wp_security->captcha_obj->display_captcha_form();
|
113 |
+
}
|
114 |
}
|
classes/wp-security-user-login.php
CHANGED
@@ -40,6 +40,30 @@ class AIOWPSecurity_User_Login
|
|
40 |
Please contact the administrator.', 'aiowpsecurity'));
|
41 |
}
|
42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
if ( is_a($user, 'WP_User') ) { return $user; } //Existing WP core code
|
44 |
|
45 |
if ( empty($username) || empty($password) ) { //Existing WP core code
|
40 |
Please contact the administrator.', 'aiowpsecurity'));
|
41 |
}
|
42 |
|
43 |
+
//Check if captcha enabled
|
44 |
+
if ($aio_wp_security->configs->get_value('aiowps_enable_login_captcha') == '1')
|
45 |
+
{
|
46 |
+
if(isset($_POST['aiowps-captcha-answer']) && $_POST['aiowps-captcha-answer'] !== ''){
|
47 |
+
if(strip_tags(trim($_POST['aiowps-captcha-answer'])) !== get_transient('aiowps_captcha'))
|
48 |
+
{
|
49 |
+
//This means a wrong answer was entered
|
50 |
+
$this->increment_failed_logins($username);
|
51 |
+
if($aio_wp_security->configs->get_value('aiowps_enable_login_lockdown')=='1')
|
52 |
+
{
|
53 |
+
if($login_attempts_permitted <= $this->get_login_fail_count() || $aio_wp_security->configs->get_value('aiowps_enable_invalid_username_lockdown')=='1')
|
54 |
+
{
|
55 |
+
$this->lock_the_user($username);
|
56 |
+
}
|
57 |
+
else
|
58 |
+
{
|
59 |
+
return new WP_Error('authentication_failed', __('<strong>ERROR</strong>: Your answer was incorrect - please try again.', 'aiowpsecurity'));
|
60 |
+
}
|
61 |
+
}
|
62 |
+
return new WP_Error('authentication_failed', __('<strong>ERROR</strong>: Your answer was incorrect - please try again.', 'aiowpsecurity'));
|
63 |
+
}
|
64 |
+
}
|
65 |
+
}
|
66 |
+
|
67 |
if ( is_a($user, 'WP_User') ) { return $user; } //Existing WP core code
|
68 |
|
69 |
if ( empty($username) || empty($password) ) { //Existing WP core code
|
languages/aiowpsecurity-ru_RU.mo
ADDED
Binary file
|
languages/aiowpsecurity-ru_RU.po
ADDED
@@ -0,0 +1,2879 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: All In One WP Security & Firewall\n"
|
4 |
+
"POT-Creation-Date: 2013-07-22 17:50+1000\n"
|
5 |
+
"PO-Revision-Date: 2013-09-29 16:28+0200\n"
|
6 |
+
"Last-Translator: Игорь Очеретный <znamensky98@gmail.com>\n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"X-Generator: Poedit 1.5.7\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-SearchPath-0: ..\n"
|
15 |
+
|
16 |
+
#: ../admin/wp-security-admin-init.php:140
|
17 |
+
msgid "WP Security"
|
18 |
+
msgstr "WP Security"
|
19 |
+
|
20 |
+
#: ../admin/wp-security-admin-init.php:141
|
21 |
+
msgid "Dashboard"
|
22 |
+
msgstr "Панель управления"
|
23 |
+
|
24 |
+
#: ../admin/wp-security-admin-init.php:142
|
25 |
+
msgid "Settings"
|
26 |
+
msgstr "Настройки"
|
27 |
+
|
28 |
+
#: ../admin/wp-security-admin-init.php:143
|
29 |
+
msgid "User Accounts"
|
30 |
+
msgstr "Администраторы"
|
31 |
+
|
32 |
+
#: ../admin/wp-security-admin-init.php:144
|
33 |
+
msgid "User Login"
|
34 |
+
msgstr "Авторизация"
|
35 |
+
|
36 |
+
#: ../admin/wp-security-admin-init.php:145
|
37 |
+
msgid "Database Security"
|
38 |
+
msgstr "База данных"
|
39 |
+
|
40 |
+
#: ../admin/wp-security-admin-init.php:146
|
41 |
+
msgid "Filesystem Security"
|
42 |
+
msgstr "Файловая система"
|
43 |
+
|
44 |
+
#: ../admin/wp-security-admin-init.php:147
|
45 |
+
msgid "WHOIS Lookup"
|
46 |
+
msgstr "WHOIS-поиск"
|
47 |
+
|
48 |
+
#: ../admin/wp-security-admin-init.php:148
|
49 |
+
msgid "Blacklist Manager"
|
50 |
+
msgstr "Черный список"
|
51 |
+
|
52 |
+
#: ../admin/wp-security-admin-init.php:149
|
53 |
+
msgid "Firewall"
|
54 |
+
msgstr "Файерволл"
|
55 |
+
|
56 |
+
#: ../admin/wp-security-admin-init.php:150
|
57 |
+
msgid "Maintenance"
|
58 |
+
msgstr "Режим обслуживания"
|
59 |
+
|
60 |
+
#: ../admin/wp-security-admin-menu.php:43
|
61 |
+
msgid "Settings successfully updated."
|
62 |
+
msgstr "Настройки успешно сохранены!"
|
63 |
+
|
64 |
+
#: ../admin/wp-security-admin-menu.php:50
|
65 |
+
msgid "The selected record(s) deleted successfully!"
|
66 |
+
msgstr "Выбранные записи удалены!"
|
67 |
+
|
68 |
+
#: ../admin/wp-security-blacklist-menu.php:77
|
69 |
+
msgid "Nonce check failed for save blacklist settings!"
|
70 |
+
msgstr "Настройки черного списка сохранить не удалось!"
|
71 |
+
|
72 |
+
#: ../admin/wp-security-blacklist-menu.php:129
|
73 |
+
#: ../admin/wp-security-list-comment-spammer-ip.php:137
|
74 |
+
msgid ""
|
75 |
+
"The plugin was unable to write to the .htaccess file. Please edit file "
|
76 |
+
"manually."
|
77 |
+
msgstr ""
|
78 |
+
"Не удалось сделать записи в файле .htaccess file. Пожалуйста, отредактируйте "
|
79 |
+
"файл вручную."
|
80 |
+
|
81 |
+
#: ../admin/wp-security-blacklist-menu.php:136
|
82 |
+
msgid "Ban IPs or User Agents"
|
83 |
+
msgstr "Бан по IP-адресам или юзер-агентам"
|
84 |
+
|
85 |
+
#: ../admin/wp-security-blacklist-menu.php:139
|
86 |
+
msgid ""
|
87 |
+
"The All In One WP Security Blacklist feature gives you the option of banning "
|
88 |
+
"certain host IP addresses or ranges and also user agents."
|
89 |
+
msgstr ""
|
90 |
+
"Функция «Черный список» позволяет блокировать определенные IP-адреса, "
|
91 |
+
"диапазоны и юзер-агенты,"
|
92 |
+
|
93 |
+
#: ../admin/wp-security-blacklist-menu.php:140
|
94 |
+
msgid ""
|
95 |
+
"This feature will deny total site access for users which have IP addresses "
|
96 |
+
"or user agents matching those which you have configured in the settings "
|
97 |
+
"below."
|
98 |
+
msgstr ""
|
99 |
+
"отказывая в доступе к сайту тем пользователям и ботам, которые использовали "
|
100 |
+
"эти IP-адреса для спама или по другим причинам."
|
101 |
+
|
102 |
+
#: ../admin/wp-security-blacklist-menu.php:141
|
103 |
+
msgid ""
|
104 |
+
"The plugin achieves this by making appropriate modifications to your ."
|
105 |
+
"htaccess file."
|
106 |
+
msgstr ""
|
107 |
+
"Данная функция реализуется добавлением в файл .htaccess определенных правил."
|
108 |
+
|
109 |
+
#: ../admin/wp-security-blacklist-menu.php:142
|
110 |
+
msgid ""
|
111 |
+
"By blocking people via the .htaccess file your are using the most secure "
|
112 |
+
"first line of defence which denies all access to blacklisted visitors as "
|
113 |
+
"soon as they hit your hosting server."
|
114 |
+
msgstr ""
|
115 |
+
"Блокируя пользователей с помощью директив файла .htaccess Вы получаете "
|
116 |
+
"первую линию обороны, которая отбросит нежелательных посетителей сразу же, "
|
117 |
+
"как только они попытаются создать запрос к Вашему серверу."
|
118 |
+
|
119 |
+
#: ../admin/wp-security-blacklist-menu.php:148
|
120 |
+
msgid "IP Hosts and User Agent Blacklist Settings"
|
121 |
+
msgstr "Настройки черного списка для блокировки IP-адресов и юзер-агентов"
|
122 |
+
|
123 |
+
#: ../admin/wp-security-blacklist-menu.php:159
|
124 |
+
msgid "Enable IP or User Agent Blacklisting"
|
125 |
+
msgstr "Вести Черный список"
|
126 |
+
|
127 |
+
#: ../admin/wp-security-blacklist-menu.php:162
|
128 |
+
msgid ""
|
129 |
+
"Check this if you want to enable the banning (or blacklisting) of selected "
|
130 |
+
"IP addresses and/or user agents specified in the settings below"
|
131 |
+
msgstr ""
|
132 |
+
"Отметьте этот чекбокс, если Вы хотите иметь возможнось банить указанные IP-"
|
133 |
+
"адреса или юзер-агенты"
|
134 |
+
|
135 |
+
#: ../admin/wp-security-blacklist-menu.php:166
|
136 |
+
msgid "Enter IP Addresses:"
|
137 |
+
msgstr "Введите IP-адреса:"
|
138 |
+
|
139 |
+
#: ../admin/wp-security-blacklist-menu.php:170
|
140 |
+
msgid "Enter one or more IP addresses or IP ranges."
|
141 |
+
msgstr "Введите один или более IP-адрес или диапазон адресов."
|
142 |
+
|
143 |
+
#: ../admin/wp-security-blacklist-menu.php:171
|
144 |
+
#: ../admin/wp-security-blacklist-menu.php:191
|
145 |
+
#: ../admin/wp-security-blacklist-menu.php:276
|
146 |
+
#: ../admin/wp-security-firewall-menu.php:148
|
147 |
+
#: ../admin/wp-security-firewall-menu.php:178
|
148 |
+
#: ../admin/wp-security-firewall-menu.php:309
|
149 |
+
#: ../admin/wp-security-firewall-menu.php:339
|
150 |
+
#: ../admin/wp-security-firewall-menu.php:370
|
151 |
+
#: ../admin/wp-security-firewall-menu.php:398
|
152 |
+
#: ../admin/wp-security-firewall-menu.php:427
|
153 |
+
#: ../admin/wp-security-firewall-menu.php:515
|
154 |
+
#: ../admin/wp-security-firewall-menu.php:651
|
155 |
+
#: ../admin/wp-security-firewall-menu.php:685
|
156 |
+
#: ../admin/wp-security-firewall-menu.php:708
|
157 |
+
msgid "More Info"
|
158 |
+
msgstr "Подробнее"
|
159 |
+
|
160 |
+
#: ../admin/wp-security-blacklist-menu.php:174
|
161 |
+
msgid "Each IP address must be on a new line."
|
162 |
+
msgstr "Каждый IP-адрес должен находиться в отдельной строке."
|
163 |
+
|
164 |
+
#: ../admin/wp-security-blacklist-menu.php:175
|
165 |
+
msgid ""
|
166 |
+
"To specify an IP range use a wildcard \"*\" character. Acceptable ways to "
|
167 |
+
"use wildcards is shown in the examples below:"
|
168 |
+
msgstr ""
|
169 |
+
"Чтобы указать диапазон IP-адресов, используйте маску «*». Примеры приведены "
|
170 |
+
"ниже:"
|
171 |
+
|
172 |
+
#: ../admin/wp-security-blacklist-menu.php:176
|
173 |
+
msgid "Example 1: 195.47.89.*"
|
174 |
+
msgstr "Пример 1: 195.47.89.*"
|
175 |
+
|
176 |
+
#: ../admin/wp-security-blacklist-menu.php:177
|
177 |
+
msgid "Example 2: 195.47.*.*"
|
178 |
+
msgstr "Пример 2: 195.47.*.*"
|
179 |
+
|
180 |
+
#: ../admin/wp-security-blacklist-menu.php:178
|
181 |
+
msgid "Example 3: 195.*.*.*"
|
182 |
+
msgstr "Пример 3: 195.*.*.*"
|
183 |
+
|
184 |
+
#: ../admin/wp-security-blacklist-menu.php:185
|
185 |
+
msgid "Enter User Agents:"
|
186 |
+
msgstr "Введите названия юзер-агентов:"
|
187 |
+
|
188 |
+
#: ../admin/wp-security-blacklist-menu.php:190
|
189 |
+
msgid "Enter one or more user agent strings."
|
190 |
+
msgstr "Введите одну или более строк с названиями юзер-агентов."
|
191 |
+
|
192 |
+
#: ../admin/wp-security-blacklist-menu.php:194
|
193 |
+
msgid "Each user agent string must be on a new line."
|
194 |
+
msgstr "Каждый юзер-агент прописывайте в отдельной строке."
|
195 |
+
|
196 |
+
#: ../admin/wp-security-blacklist-menu.php:195
|
197 |
+
msgid "Example 1 - A single user agent string to block:"
|
198 |
+
msgstr "Пример 1: Одиночная строка с названием юзер-агента для блокировки:"
|
199 |
+
|
200 |
+
#: ../admin/wp-security-blacklist-menu.php:197
|
201 |
+
msgid "Example 2 - A list of more than 1 user agent strings to block"
|
202 |
+
msgstr "Пример 2: Список нескольких юзер-агентов для блокировки"
|
203 |
+
|
204 |
+
#: ../admin/wp-security-blacklist-menu.php:205
|
205 |
+
#: ../admin/wp-security-database-menu.php:333
|
206 |
+
#: ../admin/wp-security-filesystem-menu.php:220
|
207 |
+
#: ../admin/wp-security-settings-menu.php:452
|
208 |
+
#: ../admin/wp-security-user-login-menu.php:211
|
209 |
+
#: ../admin/wp-security-user-login-menu.php:379
|
210 |
+
msgid "Save Settings"
|
211 |
+
msgstr "Сохранить настройки"
|
212 |
+
|
213 |
+
#: ../admin/wp-security-blacklist-menu.php:224
|
214 |
+
msgid "Nonce check failed for list SPAM comment IPs!"
|
215 |
+
msgstr "Не удалось установить параметры для отображения списка IP-адресов!"
|
216 |
+
|
217 |
+
#: ../admin/wp-security-blacklist-menu.php:230
|
218 |
+
msgid ""
|
219 |
+
"You entered a non numeric value for the minimum SPAM comments per IP field. "
|
220 |
+
"It has been set to the default value."
|
221 |
+
msgstr ""
|
222 |
+
"Вы ввели нечисловое значение для указания минимального количества спам-"
|
223 |
+
"комментариев. Принято значение по умолчанию."
|
224 |
+
|
225 |
+
#: ../admin/wp-security-blacklist-menu.php:236
|
226 |
+
#: ../admin/wp-security-database-menu.php:248
|
227 |
+
#: ../admin/wp-security-user-login-menu.php:115
|
228 |
+
#: ../admin/wp-security-user-login-menu.php:332
|
229 |
+
msgid "Attention!"
|
230 |
+
msgstr "Внимание!"
|
231 |
+
|
232 |
+
#: ../admin/wp-security-blacklist-menu.php:242
|
233 |
+
#, php-format
|
234 |
+
msgid ""
|
235 |
+
"Displaying results for IP addresses which have posted a minimum of %s SPAM "
|
236 |
+
"comments"
|
237 |
+
msgstr ""
|
238 |
+
"Список IP-адресов, с которых было отправлено минимум %s спам-комментариев"
|
239 |
+
|
240 |
+
#: ../admin/wp-security-blacklist-menu.php:258
|
241 |
+
msgid ""
|
242 |
+
"This tab displays a list of the IP addresses of the people or bots who have "
|
243 |
+
"left SPAM comments on your site."
|
244 |
+
msgstr ""
|
245 |
+
"В этой вкладке отображается список IP-адресов тех пользователей или ботов, "
|
246 |
+
"которые оставили спам-комментарии на Вашем сайте."
|
247 |
+
|
248 |
+
#: ../admin/wp-security-blacklist-menu.php:259
|
249 |
+
msgid ""
|
250 |
+
"This information can be handy for identifying the most persistent IP "
|
251 |
+
"addresses or ranges used by spammers."
|
252 |
+
msgstr ""
|
253 |
+
"Эта информация может быть полезна для определения наиболее стабильно "
|
254 |
+
"использующихся спаммерами IP-адресов или их диапазонов. "
|
255 |
+
|
256 |
+
#: ../admin/wp-security-blacklist-menu.php:260
|
257 |
+
msgid ""
|
258 |
+
"By inspecting the IP address data coming from spammers you will be in a "
|
259 |
+
"better position to determine which addresses or address ranges you should "
|
260 |
+
"block by adding them to your blacklist."
|
261 |
+
msgstr ""
|
262 |
+
"Анализ этой информации позволит Вам быстро определить, какие адреса или "
|
263 |
+
"диапазоны следует заблокировать, добавив их в черный список."
|
264 |
+
|
265 |
+
#: ../admin/wp-security-blacklist-menu.php:261
|
266 |
+
msgid ""
|
267 |
+
"To add one or more of the IP addresses displayed in the table below to your "
|
268 |
+
"blacklist, simply click the \"Block\" link for the individual row or select "
|
269 |
+
"more than one address \n"
|
270 |
+
" using the checkboxes and then choose the \"block"
|
271 |
+
"\" option from the Bulk Actions dropdown list and click the \"Apply\" button."
|
272 |
+
msgstr ""
|
273 |
+
"Для добавления одного или сразу нескольких адресов в черный список, кликните "
|
274 |
+
"по ссылке «Block» в строке с выбранным адресом, или выберите несколько "
|
275 |
+
"адресов, используя чекбоксы и установите вариант «Block» в выпадающем списке "
|
276 |
+
"«Действия», после чего нажмите кнопку «Применить»."
|
277 |
+
|
278 |
+
#: ../admin/wp-security-blacklist-menu.php:267
|
279 |
+
msgid "List SPAMMER IP Addresses"
|
280 |
+
msgstr "Список IP-адресов спаммеров"
|
281 |
+
|
282 |
+
#: ../admin/wp-security-blacklist-menu.php:273
|
283 |
+
msgid "Minimum number of SPAM comments per IP"
|
284 |
+
msgstr "Минимальное количество спам-комментариев на каждый IP"
|
285 |
+
|
286 |
+
#: ../admin/wp-security-blacklist-menu.php:275
|
287 |
+
msgid ""
|
288 |
+
"This field allows you to list only those IP addresses which have been used "
|
289 |
+
"to post X or more SPAM comments."
|
290 |
+
msgstr ""
|
291 |
+
"Это поле позволяет фиксировать только те IP-адреса, с которых было загружено "
|
292 |
+
"Х или более спам-комментариев."
|
293 |
+
|
294 |
+
#: ../admin/wp-security-blacklist-menu.php:279
|
295 |
+
msgid ""
|
296 |
+
"Example 1: Setting this value to \"0\" or \"1\" will list ALL IP addresses "
|
297 |
+
"which were used to submit SPAM comments."
|
298 |
+
msgstr ""
|
299 |
+
"Пример 1: Установка этого значения в «0» или «1» выведет список всех IP-"
|
300 |
+
"адресов, уличенных в спаме хотя бы 1 раз."
|
301 |
+
|
302 |
+
#: ../admin/wp-security-blacklist-menu.php:280
|
303 |
+
msgid ""
|
304 |
+
"Example 2: Setting this value to \"5\" will list only those IP addresses "
|
305 |
+
"which were used to submit 5 SPAM comments or more on your site."
|
306 |
+
msgstr ""
|
307 |
+
"Пример 2: Установка значения в «5» выведет список IP-адресов, которые "
|
308 |
+
"разместили на Вашем сайте 5 и более спам-комментариев."
|
309 |
+
|
310 |
+
#: ../admin/wp-security-blacklist-menu.php:287
|
311 |
+
msgid "Find IP Addresses"
|
312 |
+
msgstr "Найти IP-адреса"
|
313 |
+
|
314 |
+
#: ../admin/wp-security-blacklist-menu.php:291
|
315 |
+
msgid "SPAMMER IP Address Results"
|
316 |
+
msgstr "IP-адреса спаммеров"
|
317 |
+
|
318 |
+
#: ../admin/wp-security-dashboard-menu.php:111
|
319 |
+
msgid "Total Achievable Points: "
|
320 |
+
msgstr "Максимально возможный балл:"
|
321 |
+
|
322 |
+
#: ../admin/wp-security-dashboard-menu.php:113
|
323 |
+
msgid "Current Score of Your Site: "
|
324 |
+
msgstr "Текущий балл Вашего сайта:"
|
325 |
+
|
326 |
+
#: ../admin/wp-security-dashboard-menu.php:168
|
327 |
+
msgid ""
|
328 |
+
"Below is the current status of the critical features that you should "
|
329 |
+
"activate on your site to achieve a minimum level of recommended security"
|
330 |
+
msgstr ""
|
331 |
+
"Здесь показан текущий статус критически важных параметров, которые должны "
|
332 |
+
"быть активированы для достижения минимального уровня рекомендуемой "
|
333 |
+
"безопасности:"
|
334 |
+
|
335 |
+
#: ../admin/wp-security-dashboard-menu.php:172
|
336 |
+
msgid "Admin Username"
|
337 |
+
msgstr "Логин Администратора"
|
338 |
+
|
339 |
+
#: ../admin/wp-security-dashboard-menu.php:187
|
340 |
+
msgid "Login Lockdown"
|
341 |
+
msgstr "Блокировка авторизаций"
|
342 |
+
|
343 |
+
#: ../admin/wp-security-dashboard-menu.php:202
|
344 |
+
msgid "File Permission"
|
345 |
+
msgstr "Права на файлы"
|
346 |
+
|
347 |
+
#: ../admin/wp-security-dashboard-menu.php:217
|
348 |
+
msgid "Basic Firewall"
|
349 |
+
msgstr "Базовый файерволл"
|
350 |
+
|
351 |
+
#: ../admin/wp-security-dashboard-menu.php:239
|
352 |
+
msgid ""
|
353 |
+
"Maintenance mode is currently enabled. Remember to turn it off when you are "
|
354 |
+
"done"
|
355 |
+
msgstr ""
|
356 |
+
"Режим обслуживания включен. Не забудьте отключить его, когда захотите "
|
357 |
+
"открыть его для посетителей."
|
358 |
+
|
359 |
+
#: ../admin/wp-security-dashboard-menu.php:242
|
360 |
+
msgid "Maintenance mode is currently off."
|
361 |
+
msgstr "Режим обслуживания отключен."
|
362 |
+
|
363 |
+
#: ../admin/wp-security-dashboard-menu.php:246
|
364 |
+
msgid "Maintenance Mode"
|
365 |
+
msgstr "Режим обслуживания"
|
366 |
+
|
367 |
+
#: ../admin/wp-security-dashboard-menu.php:316
|
368 |
+
#: ../admin/wp-security-filesystem-menu.php:124
|
369 |
+
#: ../admin/wp-security-filesystem-menu.php:143
|
370 |
+
msgid "Name"
|
371 |
+
msgstr "Название"
|
372 |
+
|
373 |
+
#: ../admin/wp-security-dashboard-menu.php:317
|
374 |
+
msgid "Version"
|
375 |
+
msgstr "Версия"
|
376 |
+
|
377 |
+
#: ../admin/wp-security-dashboard-menu.php:318
|
378 |
+
msgid "Plugin URL"
|
379 |
+
msgstr "URL плагина"
|
380 |
+
|
381 |
+
#: ../admin/wp-security-database-menu.php:78
|
382 |
+
msgid "Nonce check failed for DB prefix change operation!"
|
383 |
+
msgstr "Не удалось изменить префикс таблиц БД."
|
384 |
+
|
385 |
+
#: ../admin/wp-security-database-menu.php:86
|
386 |
+
msgid ""
|
387 |
+
"The plugin has detected that it cannot write to the wp-config.php file. This "
|
388 |
+
"feature can only be used if the plugin can successfully write to the wp-"
|
389 |
+
"config.php file."
|
390 |
+
msgstr ""
|
391 |
+
"Плагину не удалось внести изменения в файл wp-config.php. Эта опция может "
|
392 |
+
"быть использована только если на файл wp-config будут установлены права на "
|
393 |
+
"запись."
|
394 |
+
|
395 |
+
#: ../admin/wp-security-database-menu.php:99
|
396 |
+
msgid "Please enter a value for the DB prefix."
|
397 |
+
msgstr "Пожалуйста, введите значение для нового префикса."
|
398 |
+
|
399 |
+
#: ../admin/wp-security-database-menu.php:108
|
400 |
+
msgid ""
|
401 |
+
"<strong>ERROR</strong>: The table prefix can only contain numbers, letters, "
|
402 |
+
"and underscores."
|
403 |
+
msgstr ""
|
404 |
+
"<strong>ОШИБКА</strong>: Префикс может содержать только латинские буквы, "
|
405 |
+
"цифры и символ подчеркивания."
|
406 |
+
|
407 |
+
#: ../admin/wp-security-database-menu.php:116
|
408 |
+
msgid "Change Database Prefix"
|
409 |
+
msgstr "Изменение префикса таблиц базы данных"
|
410 |
+
|
411 |
+
#: ../admin/wp-security-database-menu.php:119
|
412 |
+
msgid ""
|
413 |
+
"Your WordPress DB is the most important asset of your website because it "
|
414 |
+
"contains a lot of your site's precious information."
|
415 |
+
msgstr ""
|
416 |
+
"Ваша база данных - это наиболее ценный актив, так как в ней находится весь "
|
417 |
+
"контент и настройки."
|
418 |
+
|
419 |
+
#: ../admin/wp-security-database-menu.php:120
|
420 |
+
msgid ""
|
421 |
+
"The DB is also a target for hackers via methods such as SQL injections and "
|
422 |
+
"malicious and automated code which targets certain tables."
|
423 |
+
msgstr ""
|
424 |
+
"База данных также является мишенью для хакеров, пытающихся получить контроль "
|
425 |
+
"над определенными таблицами методом SQL-инъекций и внедрением другого "
|
426 |
+
"вредоносного кода."
|
427 |
+
|
428 |
+
#: ../admin/wp-security-database-menu.php:121
|
429 |
+
msgid ""
|
430 |
+
"One way to add a layer of protection for your DB is to change the default "
|
431 |
+
"WordPress table prefix from \"wp_\" to something else which will be "
|
432 |
+
"difficult for hackers to guess."
|
433 |
+
msgstr ""
|
434 |
+
"Одним из способов усилить защиту от таких атак является изменение префикса "
|
435 |
+
"таблиц базы данных с устанавливаемого по умолчанию («wp_») на какой-нибудь "
|
436 |
+
"другой, который было бы тяжело угадать."
|
437 |
+
|
438 |
+
#: ../admin/wp-security-database-menu.php:122
|
439 |
+
msgid ""
|
440 |
+
"This feature allows you to easily change the prefix to a value of your "
|
441 |
+
"choice or to a random value set by this plugin."
|
442 |
+
msgstr ""
|
443 |
+
"Эти опции позволяют легко изменить префикс БД на любое введенное Вами "
|
444 |
+
"значение или на сгенерированное плагином."
|
445 |
+
|
446 |
+
#: ../admin/wp-security-database-menu.php:128
|
447 |
+
msgid "DB Prefix Options"
|
448 |
+
msgstr "Опции изменения префикса таблиц БД"
|
449 |
+
|
450 |
+
#: ../admin/wp-security-database-menu.php:139
|
451 |
+
#, php-format
|
452 |
+
msgid "It is recommended that you perform a %s before using this feature"
|
453 |
+
msgstr "Рекомендуется перед изменением префикса создать %s базы данных"
|
454 |
+
|
455 |
+
#: ../admin/wp-security-database-menu.php:148
|
456 |
+
msgid "Current DB Table Prefix"
|
457 |
+
msgstr "Текущий префикс таблиц БД"
|
458 |
+
|
459 |
+
#: ../admin/wp-security-database-menu.php:154
|
460 |
+
msgid ""
|
461 |
+
"Your site is currently using the default WordPress DB prefix value of \"wp_"
|
462 |
+
"\". \n"
|
463 |
+
" To increase your site's security you should "
|
464 |
+
"consider changing the DB prefix value to another value."
|
465 |
+
msgstr ""
|
466 |
+
"На Вашем сайте используется префикс таблиц базы данных по умолчанию: «wp_».\n"
|
467 |
+
"Для усиления безопасности, измените его на любое другое значение."
|
468 |
+
|
469 |
+
#: ../admin/wp-security-database-menu.php:161
|
470 |
+
msgid "Generate New DB Table Prefix"
|
471 |
+
msgstr "Сгенерировать новый префикс таблиц БД"
|
472 |
+
|
473 |
+
#: ../admin/wp-security-database-menu.php:164
|
474 |
+
msgid ""
|
475 |
+
"Check this if you want the plugin to generate a random 6 character string "
|
476 |
+
"for the table prefix"
|
477 |
+
msgstr ""
|
478 |
+
"Отметьте, чтобы плагин сам сгенерировал префикс длиной в 6 случайных символов"
|
479 |
+
|
480 |
+
#: ../admin/wp-security-database-menu.php:165
|
481 |
+
msgid "OR"
|
482 |
+
msgstr "ИЛИ"
|
483 |
+
|
484 |
+
#: ../admin/wp-security-database-menu.php:167
|
485 |
+
msgid ""
|
486 |
+
"Choose your own DB prefix by specifying a string which contains letters and/"
|
487 |
+
"or numbers and/or underscores. Example: xyz_"
|
488 |
+
msgstr ""
|
489 |
+
"Введите собственный вариант префикса, используя латинские буквы, цифры и "
|
490 |
+
"символ подчеркивания. Например: xyz_"
|
491 |
+
|
492 |
+
#: ../admin/wp-security-database-menu.php:171
|
493 |
+
msgid "Change DB Prefix"
|
494 |
+
msgstr "Изменить префикс таблиц"
|
495 |
+
|
496 |
+
#: ../admin/wp-security-database-menu.php:192
|
497 |
+
#: ../admin/wp-security-filesystem-menu.php:80
|
498 |
+
msgid "Nonce check failed for manual DB backup operation!"
|
499 |
+
msgstr "Создать бэкап базы данных не удалось!"
|
500 |
+
|
501 |
+
#: ../admin/wp-security-database-menu.php:201
|
502 |
+
msgid ""
|
503 |
+
"DB Backup was successfully completed! Right click on the following file name "
|
504 |
+
"and save the backup to your computer."
|
505 |
+
msgstr ""
|
506 |
+
"Резервная копия БД успешно создана! Кликните правой кнопкой мыши по имени "
|
507 |
+
"файла, чтобы скачать его на компьютер."
|
508 |
+
|
509 |
+
#: ../admin/wp-security-database-menu.php:203
|
510 |
+
msgid "Your DB Backup File: "
|
511 |
+
msgstr "Резервная копия базы данных:"
|
512 |
+
|
513 |
+
#: ../admin/wp-security-database-menu.php:211
|
514 |
+
msgid "DB Backup failed. Please check the permissions of the backup directory."
|
515 |
+
msgstr ""
|
516 |
+
"Создать резервную копию БД не удалось. Проверьте права на запись для бэкап-"
|
517 |
+
"директории плагина."
|
518 |
+
|
519 |
+
#: ../admin/wp-security-database-menu.php:228
|
520 |
+
msgid ""
|
521 |
+
"You entered a non numeric value for the \"backup time interval\" field. It "
|
522 |
+
"has been set to the default value."
|
523 |
+
msgstr ""
|
524 |
+
"Вы ввели нечисловое значение в поле «Частота создания бэкапов». Сохранено "
|
525 |
+
"значение по умолчанию."
|
526 |
+
|
527 |
+
#: ../admin/wp-security-database-menu.php:235
|
528 |
+
msgid ""
|
529 |
+
"You entered a non numeric value for the \"number of backup files to keep\" "
|
530 |
+
"field. It has been set to the default value."
|
531 |
+
msgstr ""
|
532 |
+
"Вы ввели нечисловое значение в поле «Количество бэкапов для хранения». "
|
533 |
+
"Сохранено значение по умолчанию."
|
534 |
+
|
535 |
+
#: ../admin/wp-security-database-menu.php:242
|
536 |
+
#: ../admin/wp-security-user-login-menu.php:109
|
537 |
+
msgid ""
|
538 |
+
"You have entered an incorrect email address format. It has been set to your "
|
539 |
+
"WordPress admin email as default."
|
540 |
+
msgstr ""
|
541 |
+
"Email-адрес введен неправильно. По умолчанию установлен Email администратора "
|
542 |
+
"блога."
|
543 |
+
|
544 |
+
#: ../admin/wp-security-database-menu.php:275
|
545 |
+
msgid "Manual Backup"
|
546 |
+
msgstr "Создание резервной копии базы данных вручную"
|
547 |
+
|
548 |
+
#: ../admin/wp-security-database-menu.php:281
|
549 |
+
msgid "To create a new DB backup just click on the button below."
|
550 |
+
msgstr "Для немедленного создания резервной копии нажмите эту кнопку:"
|
551 |
+
|
552 |
+
#: ../admin/wp-security-database-menu.php:284
|
553 |
+
msgid "Create DB Backup Now"
|
554 |
+
msgstr "Создать бэкап базы данных сейчас"
|
555 |
+
|
556 |
+
#: ../admin/wp-security-database-menu.php:288
|
557 |
+
msgid "Automated Scheduled Backups"
|
558 |
+
msgstr "Автоматическое создание резервных копий"
|
559 |
+
|
560 |
+
#: ../admin/wp-security-database-menu.php:300
|
561 |
+
msgid "Enable Automated Scheduled Backups"
|
562 |
+
msgstr "Включить автоматическое создание бэкапов"
|
563 |
+
|
564 |
+
#: ../admin/wp-security-database-menu.php:303
|
565 |
+
msgid ""
|
566 |
+
"Check this if you want the system to automatically generate backups "
|
567 |
+
"periodically based on the settings below"
|
568 |
+
msgstr ""
|
569 |
+
"Включите этот чекбокс, чтобы система автоматически создавала резервные копии "
|
570 |
+
"базы данных по расписанию"
|
571 |
+
|
572 |
+
#: ../admin/wp-security-database-menu.php:307
|
573 |
+
msgid "Backup Time Interval"
|
574 |
+
msgstr "Частота создания бэкапов"
|
575 |
+
|
576 |
+
#: ../admin/wp-security-database-menu.php:310
|
577 |
+
msgid "Hours"
|
578 |
+
msgstr "Часов"
|
579 |
+
|
580 |
+
#: ../admin/wp-security-database-menu.php:311
|
581 |
+
msgid "Days"
|
582 |
+
msgstr "Дней"
|
583 |
+
|
584 |
+
#: ../admin/wp-security-database-menu.php:312
|
585 |
+
msgid "Weeks"
|
586 |
+
msgstr "Недель"
|
587 |
+
|
588 |
+
#: ../admin/wp-security-database-menu.php:314
|
589 |
+
msgid "Set the value for how often you would like an automated backup to occur"
|
590 |
+
msgstr "Укажите периодичность создания резервных копий"
|
591 |
+
|
592 |
+
#: ../admin/wp-security-database-menu.php:318
|
593 |
+
msgid "Number of Backup Files To Keep"
|
594 |
+
msgstr "Количество бэкапов для хранения"
|
595 |
+
|
596 |
+
#: ../admin/wp-security-database-menu.php:320
|
597 |
+
msgid ""
|
598 |
+
"Thie field allows you to choose the number of backup files you would like to "
|
599 |
+
"keep in the backup directory"
|
600 |
+
msgstr ""
|
601 |
+
"Укажите в этом поле количество резервных копий, которые должны храниться в "
|
602 |
+
"бэкап-директории плагина"
|
603 |
+
|
604 |
+
#: ../admin/wp-security-database-menu.php:324
|
605 |
+
msgid "Send Backup File Via Email"
|
606 |
+
msgstr "Пересылать бэкап на Email"
|
607 |
+
|
608 |
+
#: ../admin/wp-security-database-menu.php:327
|
609 |
+
msgid ""
|
610 |
+
"Check this if you want the system to email you the backup file after a DB "
|
611 |
+
"backup has been performed"
|
612 |
+
msgstr ""
|
613 |
+
"Включите этот чекбокс, если хотите получать бэкап базы данных на свой email"
|
614 |
+
|
615 |
+
#: ../admin/wp-security-database-menu.php:329
|
616 |
+
#: ../admin/wp-security-user-login-menu.php:207
|
617 |
+
msgid "Enter an email address"
|
618 |
+
msgstr "Введите Email-адрес"
|
619 |
+
|
620 |
+
#: ../admin/wp-security-database-menu.php:359
|
621 |
+
msgid "Starting DB prefix change operations....."
|
622 |
+
msgstr "Начинаю процесс изменения префикса таблиц базы данных..."
|
623 |
+
|
624 |
+
#: ../admin/wp-security-database-menu.php:361
|
625 |
+
#, php-format
|
626 |
+
msgid ""
|
627 |
+
"Your WordPress system has a total of %s tables and your new DB prefix will "
|
628 |
+
"be: %s"
|
629 |
+
msgstr ""
|
630 |
+
"Общее количество таблиц в базе данных WordPress %s и новый префикс таблиц "
|
631 |
+
"будет установлен как: %s"
|
632 |
+
|
633 |
+
#: ../admin/wp-security-database-menu.php:367
|
634 |
+
#: ../admin/wp-security-filesystem-menu.php:458
|
635 |
+
msgid ""
|
636 |
+
"Failed to make a backup of the wp-config.php file. This operation will not "
|
637 |
+
"go ahead."
|
638 |
+
msgstr ""
|
639 |
+
"Не удалось создать резервную копию файла wp-config.php. Операция прервана."
|
640 |
+
|
641 |
+
#: ../admin/wp-security-database-menu.php:371
|
642 |
+
msgid "A backup copy of your wp-config.php file was created successfully!"
|
643 |
+
msgstr "Резервная копия Вашего файла wp-config.php успешно создана!"
|
644 |
+
|
645 |
+
#: ../admin/wp-security-database-menu.php:394
|
646 |
+
#, php-format
|
647 |
+
msgid "%s table name update failed"
|
648 |
+
msgstr "Не удалось переименовать таблицу %s"
|
649 |
+
|
650 |
+
#: ../admin/wp-security-database-menu.php:406
|
651 |
+
#, php-format
|
652 |
+
msgid "Please change the prefix manually for the above tables to: %s"
|
653 |
+
msgstr ""
|
654 |
+
"Пожалуйста, измените префикс для вышеперечисленных таблиц на «%s» вручную"
|
655 |
+
|
656 |
+
#: ../admin/wp-security-database-menu.php:409
|
657 |
+
#, php-format
|
658 |
+
msgid "%s tables had their prefix updated successfully!"
|
659 |
+
msgstr "Префикс таблиц %s успешно изменен!"
|
660 |
+
|
661 |
+
#: ../admin/wp-security-database-menu.php:424
|
662 |
+
msgid "wp-config.php file was updated successfully!"
|
663 |
+
msgstr "Файл wp-config.php успешно обновлен!"
|
664 |
+
|
665 |
+
#: ../admin/wp-security-database-menu.php:427
|
666 |
+
#, php-format
|
667 |
+
msgid ""
|
668 |
+
"The \"wp-config.php\" file was not able to be modified. Please modify this "
|
669 |
+
"file manually using your favourite editor and search \n"
|
670 |
+
" for variable \"$table_prefix\" and assign the following "
|
671 |
+
"value to that variable: %s"
|
672 |
+
msgstr ""
|
673 |
+
"Не удалось внести корректировки в файл wp-config.php. Пожалуйста, "
|
674 |
+
"отредактируйте его вручную, заменив значение переменной «$table_prefix» на "
|
675 |
+
"значение %s"
|
676 |
+
|
677 |
+
#: ../admin/wp-security-database-menu.php:448
|
678 |
+
msgid "There was an error when updating the options table."
|
679 |
+
msgstr "Не удалось скорректировать записи в таблице опций."
|
680 |
+
|
681 |
+
#: ../admin/wp-security-database-menu.php:452
|
682 |
+
msgid ""
|
683 |
+
"The options table records which had references to the old DB prefix were "
|
684 |
+
"updated successfully!"
|
685 |
+
msgstr ""
|
686 |
+
"Записи в таблице опций блога, имеющие ссылки на старый префикс таблиц базы "
|
687 |
+
"данных успешно скорректированы!"
|
688 |
+
|
689 |
+
#: ../admin/wp-security-database-menu.php:477
|
690 |
+
#, php-format
|
691 |
+
msgid ""
|
692 |
+
"Error updating user_meta table where new meta_key = %s, old meta_key = %s "
|
693 |
+
"and user_id = %s."
|
694 |
+
msgstr ""
|
695 |
+
"Не удалось скорректировать записи в таблице «user_meta», где новый meta_key "
|
696 |
+
"= %s, old meta_key = %s и user_id = %s."
|
697 |
+
|
698 |
+
#: ../admin/wp-security-database-menu.php:483
|
699 |
+
msgid ""
|
700 |
+
"The usermeta table records which had references to the old DB prefix were "
|
701 |
+
"updated successfully!"
|
702 |
+
msgstr ""
|
703 |
+
"Записи в таблице «user_meta», имеющие ссылки на старый префикс таблиц базы "
|
704 |
+
"данных успешно скорректированы!"
|
705 |
+
|
706 |
+
#: ../admin/wp-security-database-menu.php:485
|
707 |
+
msgid "DB prefix change tasks have been completed."
|
708 |
+
msgstr "Префикс таблиц базы данных успешно изменен."
|
709 |
+
|
710 |
+
#: ../admin/wp-security-filesystem-menu.php:90
|
711 |
+
#, php-format
|
712 |
+
msgid "The permissions for %s were succesfully changed to %s"
|
713 |
+
msgstr "Разрешения для %s успешно изменены на %s"
|
714 |
+
|
715 |
+
#: ../admin/wp-security-filesystem-menu.php:94
|
716 |
+
#, php-format
|
717 |
+
msgid "Unable to change permissions for %s!"
|
718 |
+
msgstr "Невозможно изменить разрешения для %s!"
|
719 |
+
|
720 |
+
#: ../admin/wp-security-filesystem-menu.php:100
|
721 |
+
msgid "File Permissions Scan"
|
722 |
+
msgstr "Сканирование разрешений на файлы и директории WordPress"
|
723 |
+
|
724 |
+
#: ../admin/wp-security-filesystem-menu.php:103
|
725 |
+
msgid ""
|
726 |
+
"Your WordPress file and folder permission settings govern the accessability "
|
727 |
+
"and read/write privileges of the files and folders which make up your WP "
|
728 |
+
"installation."
|
729 |
+
msgstr ""
|
730 |
+
"Установки разрешений на файлы и папки WordPress, позволяющие управлять "
|
731 |
+
"доступом к этим файлам."
|
732 |
+
|
733 |
+
#: ../admin/wp-security-filesystem-menu.php:104
|
734 |
+
msgid ""
|
735 |
+
"Your WP installation already comes with reasonably secure file permission "
|
736 |
+
"settings for the filesystem."
|
737 |
+
msgstr ""
|
738 |
+
"При первоначальной установке WordPress автоматически присваивает разумные "
|
739 |
+
"права доступа к своей файловой системе."
|
740 |
+
|
741 |
+
#: ../admin/wp-security-filesystem-menu.php:105
|
742 |
+
msgid ""
|
743 |
+
"However, sometimes people or other plugins modify the various permission "
|
744 |
+
"settings of certain core WP folders or files such that they end up making "
|
745 |
+
"their site less secure because they chose the wrong permission values."
|
746 |
+
msgstr ""
|
747 |
+
"Однако, иногда люди или плагины изменяют разрешения на определенные "
|
748 |
+
"директории и файлы, снижая таким образом уровень безопасности своего сайта, "
|
749 |
+
"установив неверные права доступа."
|
750 |
+
|
751 |
+
#: ../admin/wp-security-filesystem-menu.php:106
|
752 |
+
msgid ""
|
753 |
+
"This feature will scan the critical WP core folders and files and will "
|
754 |
+
"highlight any permission settings which are insecure."
|
755 |
+
msgstr ""
|
756 |
+
"Эта опция сканирует все важные директории и файлы ядра WordPress и "
|
757 |
+
"подсвечивает все небезопасные настройки."
|
758 |
+
|
759 |
+
#: ../admin/wp-security-filesystem-menu.php:112
|
760 |
+
msgid "WP Directory and File Permissions Scan Results"
|
761 |
+
msgstr "Результат сканирования разрешений на директории и файлы WordPress"
|
762 |
+
|
763 |
+
#: ../admin/wp-security-filesystem-menu.php:125
|
764 |
+
#: ../admin/wp-security-filesystem-menu.php:144
|
765 |
+
msgid "File/Folder"
|
766 |
+
msgstr "Файл/Папка"
|
767 |
+
|
768 |
+
#: ../admin/wp-security-filesystem-menu.php:126
|
769 |
+
#: ../admin/wp-security-filesystem-menu.php:145
|
770 |
+
msgid "Current Permissions"
|
771 |
+
msgstr "Текущие разрешения"
|
772 |
+
|
773 |
+
#: ../admin/wp-security-filesystem-menu.php:127
|
774 |
+
#: ../admin/wp-security-filesystem-menu.php:146
|
775 |
+
msgid "Recommended Permissions"
|
776 |
+
msgstr "Рекомендуемые разрешения"
|
777 |
+
|
778 |
+
#: ../admin/wp-security-filesystem-menu.php:128
|
779 |
+
#: ../admin/wp-security-filesystem-menu.php:147
|
780 |
+
msgid "Recommended Action"
|
781 |
+
msgstr "Рекомендуемое действие"
|
782 |
+
|
783 |
+
#: ../admin/wp-security-filesystem-menu.php:190
|
784 |
+
msgid "File Editing"
|
785 |
+
msgstr "Редактирование файлов"
|
786 |
+
|
787 |
+
#: ../admin/wp-security-filesystem-menu.php:193
|
788 |
+
msgid ""
|
789 |
+
"The Wordpress Dashboard by default allows administrators to edit PHP files, "
|
790 |
+
"such as plugin and theme files."
|
791 |
+
msgstr ""
|
792 |
+
"По умолчанию из панели администрирования WordPress позволяется редактировать "
|
793 |
+
"PHP-файлы плагинов и тем."
|
794 |
+
|
795 |
+
#: ../admin/wp-security-filesystem-menu.php:194
|
796 |
+
msgid ""
|
797 |
+
"This is often the first tool an attacker will use if able to login, since it "
|
798 |
+
"allows code execution."
|
799 |
+
msgstr ""
|
800 |
+
"Это первейшее подспорье хакеру, получившему доступ в консоль администратора, "
|
801 |
+
"предоставляющее ему возможность выполнить любой код на Вашем сервере."
|
802 |
+
|
803 |
+
#: ../admin/wp-security-filesystem-menu.php:195
|
804 |
+
msgid ""
|
805 |
+
"This feature will disable the ability for people to edit PHP files via the "
|
806 |
+
"dashboard."
|
807 |
+
msgstr ""
|
808 |
+
"Данная опция отключает возможность редактирования файлов из панели "
|
809 |
+
"администратора."
|
810 |
+
|
811 |
+
#: ../admin/wp-security-filesystem-menu.php:201
|
812 |
+
msgid "Disable PHP File Editing"
|
813 |
+
msgstr "Отключение редактирования PHP-файлов"
|
814 |
+
|
815 |
+
#: ../admin/wp-security-filesystem-menu.php:213
|
816 |
+
msgid "Disable Ability To Edit PHP Files"
|
817 |
+
msgstr "Отключить возможность редактирования PHP-файлов"
|
818 |
+
|
819 |
+
#: ../admin/wp-security-filesystem-menu.php:216
|
820 |
+
msgid ""
|
821 |
+
"Check this if you want to remove the ability for people to edit PHP files "
|
822 |
+
"via the WP dashboard"
|
823 |
+
msgstr ""
|
824 |
+
"Отметьте этот чекбокс, чтобы запретить редактирование PHP-файлов из админ-"
|
825 |
+
"панели WordPress"
|
826 |
+
|
827 |
+
#: ../admin/wp-security-filesystem-menu.php:260
|
828 |
+
msgid ""
|
829 |
+
"You have successfully saved the Prevent Access to Default WP Files "
|
830 |
+
"configuration."
|
831 |
+
msgstr "Запрет к информационным файлам WordPress установлен."
|
832 |
+
|
833 |
+
#: ../admin/wp-security-filesystem-menu.php:264
|
834 |
+
#: ../admin/wp-security-firewall-menu.php:116
|
835 |
+
#: ../admin/wp-security-firewall-menu.php:270
|
836 |
+
#: ../admin/wp-security-firewall-menu.php:481
|
837 |
+
#: ../admin/wp-security-firewall-menu.php:611
|
838 |
+
msgid ""
|
839 |
+
"Could not write to the .htaccess file. Please check the file permissions."
|
840 |
+
msgstr ""
|
841 |
+
"Файл .htaccess недоступен для записи. Пожалуйста, проверьте разрешения на "
|
842 |
+
"запись для этого файла. "
|
843 |
+
|
844 |
+
#: ../admin/wp-security-filesystem-menu.php:269
|
845 |
+
msgid "WordPress Files"
|
846 |
+
msgstr "Информационные файлы WordPress"
|
847 |
+
|
848 |
+
#: ../admin/wp-security-filesystem-menu.php:272
|
849 |
+
#, php-format
|
850 |
+
msgid ""
|
851 |
+
"This feature allows you to prevent access to files such as %s, %s and %s "
|
852 |
+
"which are delivered with all WP installations."
|
853 |
+
msgstr ""
|
854 |
+
"Данная опция запретит доступ к таким файлам как %s, %s и %s, которые "
|
855 |
+
"создаются во время установки WordPress и не несут в себе системной нагрузки,"
|
856 |
+
|
857 |
+
#: ../admin/wp-security-filesystem-menu.php:273
|
858 |
+
msgid ""
|
859 |
+
"By preventing access to these files you are hiding some key pieces of "
|
860 |
+
"information (such as WordPress version info) from potential hackers."
|
861 |
+
msgstr ""
|
862 |
+
"но ограничение доступа к этим файлам позволит Вам скрыть от хакеров важную "
|
863 |
+
"информацию (такую как версия WordPress)."
|
864 |
+
|
865 |
+
#: ../admin/wp-security-filesystem-menu.php:278
|
866 |
+
msgid "Prevent Access to Default WP Files"
|
867 |
+
msgstr "Запрет доступа к информационным файлам WordPress"
|
868 |
+
|
869 |
+
#: ../admin/wp-security-filesystem-menu.php:289
|
870 |
+
msgid "Prevent Access to WP Default Install Files"
|
871 |
+
msgstr ""
|
872 |
+
"Запретить доступ к информационным файлам, создаваемых по умолчанию при "
|
873 |
+
"установке WordPress."
|
874 |
+
|
875 |
+
#: ../admin/wp-security-filesystem-menu.php:292
|
876 |
+
msgid ""
|
877 |
+
"Check this if you want to prevent access to readme.html, license.txt and wp-"
|
878 |
+
"config-sample.php."
|
879 |
+
msgstr ""
|
880 |
+
"Отметьте этот чекбокс, чтобы запретить доступ к файлам readme.html, license."
|
881 |
+
"txt и wp-config-sample.php."
|
882 |
+
|
883 |
+
#: ../admin/wp-security-filesystem-menu.php:296
|
884 |
+
msgid "Save Setting"
|
885 |
+
msgstr "Сохранить настройки"
|
886 |
+
|
887 |
+
#: ../admin/wp-security-filesystem-menu.php:307
|
888 |
+
msgid "System Logs"
|
889 |
+
msgstr "Системные журналы"
|
890 |
+
|
891 |
+
#: ../admin/wp-security-filesystem-menu.php:310
|
892 |
+
msgid ""
|
893 |
+
"Sometimes your hosting platform will produce error or warning logs in a file "
|
894 |
+
"called \"error_log\"."
|
895 |
+
msgstr ""
|
896 |
+
"Периодически Ваш сервер может публиковать отчеты об ошибках в специальных "
|
897 |
+
"файлах, которые называются «error_log»."
|
898 |
+
|
899 |
+
#: ../admin/wp-security-filesystem-menu.php:311
|
900 |
+
msgid ""
|
901 |
+
"Depending on the nature and cause of the error or warning, your hosting "
|
902 |
+
"server can create multiple instances of this file in numerous directory "
|
903 |
+
"locations of your WordPress installation."
|
904 |
+
msgstr ""
|
905 |
+
"В зависимости от характера и причин ошибки, Ваш сервер может создать "
|
906 |
+
"несколько файлов журналов в различных каталогах Вашей установки WordPress."
|
907 |
+
|
908 |
+
#: ../admin/wp-security-filesystem-menu.php:312
|
909 |
+
msgid ""
|
910 |
+
"By occassionally viewing the contents of these logs files you can keep "
|
911 |
+
"informed of any underlying problems on your system which you might need to "
|
912 |
+
"address."
|
913 |
+
msgstr ""
|
914 |
+
"Просматривая время от времени эти журналы Вы будете в курсе любых основных "
|
915 |
+
"проблем на Вашем сайте и сможете воспользоваться этой информацией для их "
|
916 |
+
"решения."
|
917 |
+
|
918 |
+
#: ../admin/wp-security-filesystem-menu.php:318
|
919 |
+
msgid "View System Logs"
|
920 |
+
msgstr "Просмотр системных журналов"
|
921 |
+
|
922 |
+
#: ../admin/wp-security-filesystem-menu.php:323
|
923 |
+
msgid "View Latest System Logs"
|
924 |
+
msgstr "Просмотр последних записей в системных журналах"
|
925 |
+
|
926 |
+
#: ../admin/wp-security-filesystem-menu.php:325
|
927 |
+
msgid "Loading..."
|
928 |
+
msgstr "Загрузка..."
|
929 |
+
|
930 |
+
#: ../admin/wp-security-filesystem-menu.php:342
|
931 |
+
msgid "No system logs were found!"
|
932 |
+
msgstr "Записей в системных журналах не найдено!"
|
933 |
+
|
934 |
+
#: ../admin/wp-security-filesystem-menu.php:395
|
935 |
+
msgid "Set Recommended Permissions"
|
936 |
+
msgstr "Установить рекомендуемые разрешения"
|
937 |
+
|
938 |
+
#: ../admin/wp-security-filesystem-menu.php:401
|
939 |
+
msgid "No Action Required"
|
940 |
+
msgstr "Действие не требуется"
|
941 |
+
|
942 |
+
#: ../admin/wp-security-filesystem-menu.php:434
|
943 |
+
msgid ""
|
944 |
+
"Your system config file is already configured to disallow PHP file editing."
|
945 |
+
msgstr ""
|
946 |
+
"Ваша система уже сконфигурирована с запретом на редактирование PHP-файлов."
|
947 |
+
|
948 |
+
#: ../admin/wp-security-filesystem-menu.php:445
|
949 |
+
#: ../admin/wp-security-filesystem-menu.php:472
|
950 |
+
msgid ""
|
951 |
+
"Settings Saved - Your system is now configured to not allow PHP file editing."
|
952 |
+
msgstr ""
|
953 |
+
"Настройки сохранены - Ваша система сконфигурирована с запретом на "
|
954 |
+
"редактирование PHP-файлов."
|
955 |
+
|
956 |
+
#: ../admin/wp-security-filesystem-menu.php:449
|
957 |
+
#: ../admin/wp-security-filesystem-menu.php:475
|
958 |
+
#: ../admin/wp-security-filesystem-menu.php:525
|
959 |
+
msgid "Operation failed! Unable to modify wp-config.php file!"
|
960 |
+
msgstr "Операция не удалась! Невозможно изменить файл wp-config.php!"
|
961 |
+
|
962 |
+
#: ../admin/wp-security-filesystem-menu.php:463
|
963 |
+
msgid "A backup copy of your wp-config.php file was created successfully...."
|
964 |
+
msgstr "Резервная копия Вашего файла wp-config.php успешно создана..."
|
965 |
+
|
966 |
+
#: ../admin/wp-security-filesystem-menu.php:506
|
967 |
+
#: ../admin/wp-security-filesystem-menu.php:514
|
968 |
+
msgid ""
|
969 |
+
"Your system config file is already configured to allow PHP file editing."
|
970 |
+
msgstr ""
|
971 |
+
"В Вашем файле wp-config.php уже прописана константа, разрешающая "
|
972 |
+
"редактирование PHP-файлов."
|
973 |
+
|
974 |
+
#: ../admin/wp-security-filesystem-menu.php:521
|
975 |
+
msgid ""
|
976 |
+
"Settings Saved - Your system is now configured to allow PHP file editing."
|
977 |
+
msgstr ""
|
978 |
+
"Настройки сохранены - Ваша система сконфигурирована с разрешением "
|
979 |
+
"редактировать PHP-файлы."
|
980 |
+
|
981 |
+
#: ../admin/wp-security-filesystem-menu.php:565
|
982 |
+
#, php-format
|
983 |
+
msgid "Showing latest entries of error_log file: %s"
|
984 |
+
msgstr "Последние записи об ошибках в журнале: %s"
|
985 |
+
|
986 |
+
#: ../admin/wp-security-firewall-menu.php:112
|
987 |
+
msgid "Settings were successfully saved"
|
988 |
+
msgstr "Настройки успешно сохранены"
|
989 |
+
|
990 |
+
#: ../admin/wp-security-firewall-menu.php:121
|
991 |
+
#: ../admin/wp-security-firewall-menu.php:486
|
992 |
+
msgid "Firewall Settings"
|
993 |
+
msgstr "Настройки файерволл (брандмауэра)"
|
994 |
+
|
995 |
+
#: ../admin/wp-security-firewall-menu.php:128
|
996 |
+
#: ../admin/wp-security-firewall-menu.php:627
|
997 |
+
#, php-format
|
998 |
+
msgid ""
|
999 |
+
"This should not have any impact on your site's general functionality but if "
|
1000 |
+
"you wish you can take a %s of your .htaccess file before proceeding."
|
1001 |
+
msgstr ""
|
1002 |
+
"Активация этих опций не должна иметь никакого влияния на общую "
|
1003 |
+
"функциональность Вашего сайта, но при желании Вы можете создать %s Вашего ."
|
1004 |
+
"htaccess-файла, перед тем, как включите эти настройки."
|
1005 |
+
|
1006 |
+
#: ../admin/wp-security-firewall-menu.php:129
|
1007 |
+
msgid ""
|
1008 |
+
"The features in this tab allow you to activate some basic firewall security "
|
1009 |
+
"protection rules for your site."
|
1010 |
+
msgstr ""
|
1011 |
+
"Опции в этой вкладке позволяют применить некоторые базовые правила защиты "
|
1012 |
+
"для Вашего сайта."
|
1013 |
+
|
1014 |
+
#: ../admin/wp-security-firewall-menu.php:130
|
1015 |
+
msgid ""
|
1016 |
+
"The firewall functionality is achieved via the insertion of special code "
|
1017 |
+
"into your currently active .htaccess file."
|
1018 |
+
msgstr ""
|
1019 |
+
"Данная функциональность брандмауэра достигается методом добавления в Ваш "
|
1020 |
+
"файл .htaccess некоторых специальных директив."
|
1021 |
+
|
1022 |
+
#: ../admin/wp-security-firewall-menu.php:136
|
1023 |
+
msgid "Basic Firewall Settings"
|
1024 |
+
msgstr "Основные функции брандмауэра"
|
1025 |
+
|
1026 |
+
#: ../admin/wp-security-firewall-menu.php:144
|
1027 |
+
msgid "Enable Basic Firewall Protection"
|
1028 |
+
msgstr "Активировать основные функции брандмауэра"
|
1029 |
+
|
1030 |
+
#: ../admin/wp-security-firewall-menu.php:147
|
1031 |
+
msgid "Check this if you want to apply basic firewall protection to your site."
|
1032 |
+
msgstr ""
|
1033 |
+
"Отметьте этот чекбокс, чтобы активировать основные функции файерволл на "
|
1034 |
+
"Вашем сайте."
|
1035 |
+
|
1036 |
+
#: ../admin/wp-security-firewall-menu.php:151
|
1037 |
+
msgid ""
|
1038 |
+
"This setting will implement the following basic firewall protection "
|
1039 |
+
"mechanisms on your site:"
|
1040 |
+
msgstr "Эта опция запустит следующий базовый механизм защиты на Вашем сайте:"
|
1041 |
+
|
1042 |
+
#: ../admin/wp-security-firewall-menu.php:152
|
1043 |
+
msgid "1) Protect your htaccess file by denying access to it."
|
1044 |
+
msgstr "1) Защитит файл htaccess от несанкционированного доступа."
|
1045 |
+
|
1046 |
+
#: ../admin/wp-security-firewall-menu.php:153
|
1047 |
+
msgid "2) Disable the server signature."
|
1048 |
+
msgstr "2) Отключит сигнатуру сервера в ответах на запросы."
|
1049 |
+
|
1050 |
+
#: ../admin/wp-security-firewall-menu.php:154
|
1051 |
+
msgid "3) Limit file upload size (10MB)."
|
1052 |
+
msgstr "3) Ограничит лимит на размер загружаемых файлов до 10Мб."
|
1053 |
+
|
1054 |
+
#: ../admin/wp-security-firewall-menu.php:155
|
1055 |
+
msgid "4) Protect your wp-config.php file by denying access to it."
|
1056 |
+
msgstr "4) Защитит Ваш файл wp-config.php от несанкционированного доступа."
|
1057 |
+
|
1058 |
+
#: ../admin/wp-security-firewall-menu.php:156
|
1059 |
+
msgid ""
|
1060 |
+
"The above firewall features will be applied via your .htaccess file and "
|
1061 |
+
"should not affect your site's overall functionality."
|
1062 |
+
msgstr ""
|
1063 |
+
"Вышеперечисленная функциональность будет достигнута методом добавления в "
|
1064 |
+
"файл .htaccess определенных директив и не должна повлиять на общую "
|
1065 |
+
"работоспособность Вашего сайта."
|
1066 |
+
|
1067 |
+
#: ../admin/wp-security-firewall-menu.php:157
|
1068 |
+
msgid ""
|
1069 |
+
"You are still advised to take a backup of your active .htaccess file just in "
|
1070 |
+
"case."
|
1071 |
+
msgstr ""
|
1072 |
+
"Однако, просто на всякий случай, рекомендуется предварительно сделать "
|
1073 |
+
"резервную копию файла .htaccess."
|
1074 |
+
|
1075 |
+
#: ../admin/wp-security-firewall-menu.php:166
|
1076 |
+
msgid "WordPress Pingback Vulnerability Protection"
|
1077 |
+
msgstr "Защита от Пингбэк-уязвимостей"
|
1078 |
+
|
1079 |
+
#: ../admin/wp-security-firewall-menu.php:174
|
1080 |
+
msgid "Enable Pingback Protection"
|
1081 |
+
msgstr "Активировать Пингбэк-защиту"
|
1082 |
+
|
1083 |
+
#: ../admin/wp-security-firewall-menu.php:177
|
1084 |
+
msgid ""
|
1085 |
+
"Check this if you are not using the WP XML-RPC functionality and you want to "
|
1086 |
+
"enable protection against WordPress pingback vulnerabilities."
|
1087 |
+
msgstr ""
|
1088 |
+
"Включите этот чекбокс, если Вы хотите активировать защиту от пингбэк-"
|
1089 |
+
"уязвимостей и не используете в своем WordPress функциональность XML-RPC."
|
1090 |
+
|
1091 |
+
#: ../admin/wp-security-firewall-menu.php:181
|
1092 |
+
msgid ""
|
1093 |
+
"This setting will add a directive in your .htaccess to disable access to the "
|
1094 |
+
"WordPress xmlrpc.php file which is responsible for the XML-RPC functionality "
|
1095 |
+
"such as pingbacks in WordPress."
|
1096 |
+
msgstr ""
|
1097 |
+
"Эта настройка добавит в файл .htaccess директиву, запрещающую доступ к файлу "
|
1098 |
+
"xmlrpc.php, который отвечает за функциональность XML-RPC и за пингбэки в "
|
1099 |
+
"Вашем WordPress."
|
1100 |
+
|
1101 |
+
#: ../admin/wp-security-firewall-menu.php:182
|
1102 |
+
msgid ""
|
1103 |
+
"Hackers can exploit various pingback vulnerabilities in the WordPress XML-"
|
1104 |
+
"RPC API in a number of ways such as:"
|
1105 |
+
msgstr ""
|
1106 |
+
"Хакеры часто пользуются уязвимостями в этой функциональности, чтобы достичь "
|
1107 |
+
"следующих целей:"
|
1108 |
+
|
1109 |
+
#: ../admin/wp-security-firewall-menu.php:183
|
1110 |
+
msgid "1) Denial of Service (DoS) attacks"
|
1111 |
+
msgstr ""
|
1112 |
+
"1) Перегрузить сервер запросами и вывести тем самым его из строя (DoS-атака)"
|
1113 |
+
|
1114 |
+
#: ../admin/wp-security-firewall-menu.php:184
|
1115 |
+
msgid "2) Hacking internal routers."
|
1116 |
+
msgstr "2) Взломать внутренние маршрутизаторы"
|
1117 |
+
|
1118 |
+
#: ../admin/wp-security-firewall-menu.php:185
|
1119 |
+
msgid "3) Scanning ports in internal networks to get info from various hosts."
|
1120 |
+
msgstr ""
|
1121 |
+
"3) Просканировать порты внутренней сети, чтобы получить информацию от "
|
1122 |
+
"различных хостов на сервере."
|
1123 |
+
|
1124 |
+
#: ../admin/wp-security-firewall-menu.php:186
|
1125 |
+
msgid ""
|
1126 |
+
"Apart from the security protection benefit, this feature may also help "
|
1127 |
+
"reduce load on your server, particularly if your site currently has a lot of "
|
1128 |
+
"unwanted traffic hitting the XML-RPC API on your installation."
|
1129 |
+
msgstr ""
|
1130 |
+
"Помимо усиления защиты сайта, эта опция поможет значительно снизить нагрузку "
|
1131 |
+
"на Ваш сервер, особенно если Ваш сайт получает много нежелательного трафика, "
|
1132 |
+
"нацеленного на XML-RPC API."
|
1133 |
+
|
1134 |
+
#: ../admin/wp-security-firewall-menu.php:187
|
1135 |
+
msgid ""
|
1136 |
+
"NOTE: You should only enable this feature if you are not currently using the "
|
1137 |
+
"XML-RPC functionality on your WordPress installation."
|
1138 |
+
msgstr ""
|
1139 |
+
"ВНИМАНИЕ: Эту опцию можно активировать только в том случае, если Вы в своей "
|
1140 |
+
"WordPress-установке не используете функциональность XML-RPC."
|
1141 |
+
|
1142 |
+
#: ../admin/wp-security-firewall-menu.php:194
|
1143 |
+
msgid "Save Basic Firewall Settings"
|
1144 |
+
msgstr "Сохранить основные настройки брандмауэра"
|
1145 |
+
|
1146 |
+
#: ../admin/wp-security-firewall-menu.php:266
|
1147 |
+
msgid ""
|
1148 |
+
"You have successfully saved the Additional Firewall Protection configuration"
|
1149 |
+
msgstr "Дополнительные настройки конфигурации брандмауэра успешно сохранены!"
|
1150 |
+
|
1151 |
+
#: ../admin/wp-security-firewall-menu.php:280
|
1152 |
+
msgid "Additional Firewall Protection"
|
1153 |
+
msgstr "Дополнительные функции брандмауэра"
|
1154 |
+
|
1155 |
+
#: ../admin/wp-security-firewall-menu.php:284
|
1156 |
+
#, php-format
|
1157 |
+
msgid ""
|
1158 |
+
"Due to the nature of the code being inserted to the .htaccess file, this "
|
1159 |
+
"feature may break some functionality for certain plugins and you are "
|
1160 |
+
"therefore advised to take a %s of .htaccess before applying this "
|
1161 |
+
"configuration."
|
1162 |
+
msgstr ""
|
1163 |
+
"В силу определенных особенностей, эти правила могут нарушить "
|
1164 |
+
"функциональность некоторых плагинов, поэтому рекомендуется до их включения "
|
1165 |
+
"сделать %s файла .htaccess."
|
1166 |
+
|
1167 |
+
#: ../admin/wp-security-firewall-menu.php:286
|
1168 |
+
msgid ""
|
1169 |
+
"This feature allows you to activate more advanced firewall settings to your "
|
1170 |
+
"site."
|
1171 |
+
msgstr ""
|
1172 |
+
"В этой вкладке Вы можете активировать дополнительные настройки файерволл для "
|
1173 |
+
"защиты Вашего сайта."
|
1174 |
+
|
1175 |
+
#: ../admin/wp-security-firewall-menu.php:287
|
1176 |
+
msgid ""
|
1177 |
+
"The advanced firewall rules are applied via the insertion of special code to "
|
1178 |
+
"your currently active .htaccess file."
|
1179 |
+
msgstr ""
|
1180 |
+
"Эти опции реализуются методом добавления определенных правил в Ваш файл ."
|
1181 |
+
"htaccess."
|
1182 |
+
|
1183 |
+
#: ../admin/wp-security-firewall-menu.php:296
|
1184 |
+
msgid "Listing of Directory Contents"
|
1185 |
+
msgstr "Просмотр содержимого директорий"
|
1186 |
+
|
1187 |
+
#: ../admin/wp-security-firewall-menu.php:305
|
1188 |
+
msgid "Disable Index Views"
|
1189 |
+
msgstr "Отключить возможность просмотра директорий"
|
1190 |
+
|
1191 |
+
#: ../admin/wp-security-firewall-menu.php:308
|
1192 |
+
msgid "Check this if you want to disable directory and file listing."
|
1193 |
+
msgstr ""
|
1194 |
+
"Включите этот чекбокс, чтобы предотвратить свободный просмотр директорий на "
|
1195 |
+
"Вашем сайте"
|
1196 |
+
|
1197 |
+
#: ../admin/wp-security-firewall-menu.php:313
|
1198 |
+
msgid ""
|
1199 |
+
"By default, an Apache server will allow the listing of the contents of a "
|
1200 |
+
"directory if it doesn't contain an index.php file."
|
1201 |
+
msgstr ""
|
1202 |
+
"По умолчанию сервер Apache позволяет видет содержимое директорий, если в них "
|
1203 |
+
"нет файла index.php или index.html."
|
1204 |
+
|
1205 |
+
#: ../admin/wp-security-firewall-menu.php:315
|
1206 |
+
msgid "This feature will prevent the listing of contents for all directories."
|
1207 |
+
msgstr "Эта функция запрещает такую возможность."
|
1208 |
+
|
1209 |
+
#: ../admin/wp-security-firewall-menu.php:317
|
1210 |
+
msgid ""
|
1211 |
+
"NOTE: In order for this feature to work \"AllowOverride\" must be enabled in "
|
1212 |
+
"your httpd.conf file. Ask your hosting provider to check this if you don't "
|
1213 |
+
"have access to httpd.conf"
|
1214 |
+
msgstr ""
|
1215 |
+
"ВНИМАНИЕ: Для того, чтобы эта функция работала, в Вашем файле httpd.conf "
|
1216 |
+
"должна быть включена директива «AllowOverride». Если у Вас нет доступа к "
|
1217 |
+
"файлу httpd.conf, обратитесь к своему хостинг-провайдеру."
|
1218 |
+
|
1219 |
+
#: ../admin/wp-security-firewall-menu.php:326
|
1220 |
+
msgid "Trace and Track"
|
1221 |
+
msgstr "HTTP-трассировка"
|
1222 |
+
|
1223 |
+
#: ../admin/wp-security-firewall-menu.php:335
|
1224 |
+
msgid "Disable Trace and Track"
|
1225 |
+
msgstr "Отключить http-трассировку"
|
1226 |
+
|
1227 |
+
#: ../admin/wp-security-firewall-menu.php:338
|
1228 |
+
msgid "Check this if you want to disable trace and track."
|
1229 |
+
msgstr "Отметьте этот чекбокс, чтобы защититься от http-трассировки."
|
1230 |
+
|
1231 |
+
#: ../admin/wp-security-firewall-menu.php:343
|
1232 |
+
msgid ""
|
1233 |
+
"HTTP Trace attack (XST) can be used to return header requests and grab "
|
1234 |
+
"cookies and other information."
|
1235 |
+
msgstr ""
|
1236 |
+
"Атаки на основе HTTP-трассировки (межсайтовой трассировки, или XST), "
|
1237 |
+
"применяются, чтобы получить информацию из возвращаемых сервером http-"
|
1238 |
+
"заголовков и похитить куки и другую информацию."
|
1239 |
+
|
1240 |
+
#: ../admin/wp-security-firewall-menu.php:345
|
1241 |
+
msgid ""
|
1242 |
+
"This hacking technique is usually used together with cross site scripting "
|
1243 |
+
"attacks (XSS)."
|
1244 |
+
msgstr ""
|
1245 |
+
"Эта хакерская технология обычно применяется в сочетании с межсайтовым "
|
1246 |
+
"скриптингом (XSS)."
|
1247 |
+
|
1248 |
+
#: ../admin/wp-security-firewall-menu.php:347
|
1249 |
+
msgid ""
|
1250 |
+
"Disabling trace and track on your site will help prevent HTTP Trace attacks."
|
1251 |
+
msgstr "Данная опция предназначена как раз для защиты от этого типа атак."
|
1252 |
+
|
1253 |
+
#: ../admin/wp-security-firewall-menu.php:356
|
1254 |
+
msgid "Proxy Comment Posting"
|
1255 |
+
msgstr "Комментарии через Прокси-серверы"
|
1256 |
+
|
1257 |
+
#: ../admin/wp-security-firewall-menu.php:366
|
1258 |
+
msgid "Forbid Proxy Comment Posting"
|
1259 |
+
msgstr "Запретить комментарии через прокси"
|
1260 |
+
|
1261 |
+
#: ../admin/wp-security-firewall-menu.php:369
|
1262 |
+
msgid "Check this if you want to forbid proxy comment posting."
|
1263 |
+
msgstr "Отметьте этот чекбокс, чтобы запретить комментирование через прокси."
|
1264 |
+
|
1265 |
+
#: ../admin/wp-security-firewall-menu.php:374
|
1266 |
+
msgid ""
|
1267 |
+
"This setting will deny any requests that use a proxy server when posting "
|
1268 |
+
"comments."
|
1269 |
+
msgstr ""
|
1270 |
+
"Эта опция отклонит любые запросы, использующие прокси-сервер при отправке "
|
1271 |
+
"комментариев."
|
1272 |
+
|
1273 |
+
#: ../admin/wp-security-firewall-menu.php:375
|
1274 |
+
msgid ""
|
1275 |
+
"By forbidding proxy comments you are in effect eliminating some SPAM and "
|
1276 |
+
"other proxy requests."
|
1277 |
+
msgstr ""
|
1278 |
+
"Это усилит защиту от спама в комментариях и от других нежелательных прокси-"
|
1279 |
+
"запросов."
|
1280 |
+
|
1281 |
+
#: ../admin/wp-security-firewall-menu.php:384
|
1282 |
+
msgid "Bad Query Strings"
|
1283 |
+
msgstr "Нежелательные строки в запросах"
|
1284 |
+
|
1285 |
+
#: ../admin/wp-security-firewall-menu.php:394
|
1286 |
+
msgid "Deny Bad Query Strings"
|
1287 |
+
msgstr "Запретить вредоносные строки в запросах"
|
1288 |
+
|
1289 |
+
#: ../admin/wp-security-firewall-menu.php:397
|
1290 |
+
msgid "This will help protect you against malicious queries via XSS."
|
1291 |
+
msgstr "Включите этот чекбокс, чтобы активировать защиту от XSS-атак."
|
1292 |
+
|
1293 |
+
#: ../admin/wp-security-firewall-menu.php:402
|
1294 |
+
msgid ""
|
1295 |
+
"This feature will write rules in your .htaccess file to prevent malicious "
|
1296 |
+
"string attacks on your site using XSS."
|
1297 |
+
msgstr ""
|
1298 |
+
"Эта опция предназначена для защиты от ввода вредоносного кода при XSS-атаках."
|
1299 |
+
|
1300 |
+
#: ../admin/wp-security-firewall-menu.php:403
|
1301 |
+
msgid ""
|
1302 |
+
"NOTE: Some of these strings might be used for plugins or themes and hence "
|
1303 |
+
"this might break some functionality."
|
1304 |
+
msgstr ""
|
1305 |
+
"ВНИМАНИЕ: Некоторые из блокируемых строк могут использоваться в каких-то "
|
1306 |
+
"плагинах или Вашей теме, и, следовательно, данная опция может нарушить их "
|
1307 |
+
"функциональность."
|
1308 |
+
|
1309 |
+
#: ../admin/wp-security-firewall-menu.php:404
|
1310 |
+
#: ../admin/wp-security-firewall-menu.php:434
|
1311 |
+
msgid ""
|
1312 |
+
"You are therefore strongly advised to take a backup of your active .htaccess "
|
1313 |
+
"file before applying this feature."
|
1314 |
+
msgstr ""
|
1315 |
+
"ОБЯЗАТЕЛЬНО СДЕЛАЙТЕ РЕЗЕРВНУЮ КОПИЮ ВАШЕГО .HTACCESS-ФАЙЛА, ДО ТОГО, КАК ВЫ "
|
1316 |
+
"АКТИВИРУЕТЕ ЭТУ ФУНКЦИЮ! "
|
1317 |
+
|
1318 |
+
#: ../admin/wp-security-firewall-menu.php:413
|
1319 |
+
msgid "Advanced Character String Filter"
|
1320 |
+
msgstr "Дополнительная фильтрация символов"
|
1321 |
+
|
1322 |
+
#: ../admin/wp-security-firewall-menu.php:423
|
1323 |
+
msgid "Enable Advanced Character String Filter"
|
1324 |
+
msgstr "Активировать дополнительную фильтрацию символов"
|
1325 |
+
|
1326 |
+
#: ../admin/wp-security-firewall-menu.php:426
|
1327 |
+
msgid "This will block bad character matches from XSS."
|
1328 |
+
msgstr "Включите этот чекбокс, чтобы защитить сайт от XSS-атак."
|
1329 |
+
|
1330 |
+
#: ../admin/wp-security-firewall-menu.php:431
|
1331 |
+
msgid ""
|
1332 |
+
"This is an advanced character string filter to prevent malicious string "
|
1333 |
+
"attacks on your site coming from Cross Site Scripting (XSS)."
|
1334 |
+
msgstr ""
|
1335 |
+
"Это дополнительная фильтрация символов для блокировки вредоносных команд, "
|
1336 |
+
"используемых в XSS-атаках (межсайтовый скриптинг)."
|
1337 |
+
|
1338 |
+
#: ../admin/wp-security-firewall-menu.php:432
|
1339 |
+
msgid ""
|
1340 |
+
"This setting matches for common malicious string patterns and exploits and "
|
1341 |
+
"will produce a 403 error for the hacker attempting the query."
|
1342 |
+
msgstr ""
|
1343 |
+
"Данная опция фиксирует распространенные образцы вредоносного кода и "
|
1344 |
+
"эксплойты и вернет хакеру сообщение об ошибке 403 (доступ запрещен)."
|
1345 |
+
|
1346 |
+
#: ../admin/wp-security-firewall-menu.php:433
|
1347 |
+
msgid "NOTE: Some strings for this setting might break some functionality."
|
1348 |
+
msgstr ""
|
1349 |
+
"ВНИМАНИЕ: Некоторые директивы в этих установках могут нарушить "
|
1350 |
+
"функциональность сайта (это зависит от хостинг-провайдера)."
|
1351 |
+
|
1352 |
+
#: ../admin/wp-security-firewall-menu.php:442
|
1353 |
+
msgid "Save Additional Firewall Settings"
|
1354 |
+
msgstr "Сохранить дополнительные настройки брандмауэра"
|
1355 |
+
|
1356 |
+
#: ../admin/wp-security-firewall-menu.php:477
|
1357 |
+
msgid "You have successfully saved the 5G Firewall Protection configuration"
|
1358 |
+
msgstr "Вы успешно сохранили настройки 5G-защиты"
|
1359 |
+
|
1360 |
+
#: ../admin/wp-security-firewall-menu.php:490
|
1361 |
+
#, php-format
|
1362 |
+
msgid ""
|
1363 |
+
"This feature allows you to activate the 5G firewall security protection "
|
1364 |
+
"rules designed and produced by %s."
|
1365 |
+
msgstr ""
|
1366 |
+
"Эта опция позволяет включить функции защиты «5G», разработанные и "
|
1367 |
+
"произведенные %s."
|
1368 |
+
|
1369 |
+
#: ../admin/wp-security-firewall-menu.php:491
|
1370 |
+
msgid ""
|
1371 |
+
"The 5G Blacklist is a simple, flexible blacklist that helps reduce the "
|
1372 |
+
"number of malicious URL requests that hit your website."
|
1373 |
+
msgstr ""
|
1374 |
+
"5G-брандмауэр (файерволл) - это простая и гибкая защита, помогающая "
|
1375 |
+
"уменьшить количество вредоносных запросов, добавляемых в URL Вашего сайта."
|
1376 |
+
|
1377 |
+
#: ../admin/wp-security-firewall-menu.php:492
|
1378 |
+
msgid ""
|
1379 |
+
"The added advantage of applying the 5G firewall to your site is that it has "
|
1380 |
+
"been tested and confirmed by the people at PerishablePress.com to be an "
|
1381 |
+
"optimal and least disruptive set of .htaccess security rules for general WP "
|
1382 |
+
"sites running on an Apache server or similar."
|
1383 |
+
msgstr ""
|
1384 |
+
"Дополнительным преимуществом 5G-защиты является тот факт, что она была "
|
1385 |
+
"тщательно протестирована и подтверждена профессионалами из PerishablePress."
|
1386 |
+
"com, как наименее разрушительный набор директив безопасности для файла ."
|
1387 |
+
"htaccess, на сайтах, работающих на сервере Apache или аналогичных."
|
1388 |
+
|
1389 |
+
#: ../admin/wp-security-firewall-menu.php:493
|
1390 |
+
#, php-format
|
1391 |
+
msgid ""
|
1392 |
+
"Therefore the 5G firewall rules should not have any impact on your site's "
|
1393 |
+
"general functionality but if you wish you can take a %s of your .htaccess "
|
1394 |
+
"file before proceeding."
|
1395 |
+
msgstr ""
|
1396 |
+
"Следовательно, данная защита не должна иметь никакого влияния на общую "
|
1397 |
+
"функциональность Вашего сайта, но, тем не менее, при желании Вы можете "
|
1398 |
+
"создать %s Вашего .htaccess-файла, до того, как активируете эту защиту."
|
1399 |
+
|
1400 |
+
#: ../admin/wp-security-firewall-menu.php:499
|
1401 |
+
msgid "5G Blacklist/Firewall Settings"
|
1402 |
+
msgstr "Настройки 5G Файерволл"
|
1403 |
+
|
1404 |
+
#: ../admin/wp-security-firewall-menu.php:511
|
1405 |
+
msgid "Enable 5G Firewall Protection"
|
1406 |
+
msgstr "Включить 5G Файерволл"
|
1407 |
+
|
1408 |
+
#: ../admin/wp-security-firewall-menu.php:514
|
1409 |
+
msgid ""
|
1410 |
+
"Check this if you want to apply the 5G Blacklist firewall protection from "
|
1411 |
+
"perishablepress.com to your site."
|
1412 |
+
msgstr "Включите этот чекбокс, чтобы активировать 5G-защиту на Вашем сайте."
|
1413 |
+
|
1414 |
+
#: ../admin/wp-security-firewall-menu.php:518
|
1415 |
+
msgid ""
|
1416 |
+
"This setting will implement the 5G security firewall protection mechanisms "
|
1417 |
+
"on your site which include the following things:"
|
1418 |
+
msgstr ""
|
1419 |
+
"Эта опция активирует 5G-защиту на Вашем сайте, которая включает следующее:"
|
1420 |
+
|
1421 |
+
#: ../admin/wp-security-firewall-menu.php:519
|
1422 |
+
msgid "1) Block forbidden characters commonly used in exploitative attacks."
|
1423 |
+
msgstr ""
|
1424 |
+
"1) Блокировку запрещенных символов, обычно используемых в хакерских атаках."
|
1425 |
+
|
1426 |
+
#: ../admin/wp-security-firewall-menu.php:520
|
1427 |
+
msgid "2) Block malicious encoded URL characters such as the \".css(\" string."
|
1428 |
+
msgstr ""
|
1429 |
+
"2) Блокировку вредоносных закодированных строк в URL, таких как «.css(» и т."
|
1430 |
+
"п."
|
1431 |
+
|
1432 |
+
#: ../admin/wp-security-firewall-menu.php:521
|
1433 |
+
msgid ""
|
1434 |
+
"3) Guard against the common patterns and specific exploits in the root "
|
1435 |
+
"portion of targeted URLs."
|
1436 |
+
msgstr ""
|
1437 |
+
"3) Защиту от распространенных шаблонов вредоносного кода и специфических "
|
1438 |
+
"эксплойтов (последовательностей команд, использующих известные уязвимости) в "
|
1439 |
+
"URL."
|
1440 |
+
|
1441 |
+
#: ../admin/wp-security-firewall-menu.php:522
|
1442 |
+
msgid ""
|
1443 |
+
"4) Stop attackers from manipulating query strings by disallowing illicit "
|
1444 |
+
"characters."
|
1445 |
+
msgstr "4) Блокировку запрещенных символов в параметрах запросов."
|
1446 |
+
|
1447 |
+
#: ../admin/wp-security-firewall-menu.php:523
|
1448 |
+
msgid "....and much more."
|
1449 |
+
msgstr "...и многое другое."
|
1450 |
+
|
1451 |
+
#: ../admin/wp-security-firewall-menu.php:529
|
1452 |
+
msgid "Save 5G Firewall Settings"
|
1453 |
+
msgstr "Сохранить настройки 5G Файерволл"
|
1454 |
+
|
1455 |
+
#: ../admin/wp-security-firewall-menu.php:557
|
1456 |
+
msgid ""
|
1457 |
+
"Settings have not been saved - your secret word must consist only of "
|
1458 |
+
"alphanumeric characters, ie, letters and/or numbers only!"
|
1459 |
+
msgstr ""
|
1460 |
+
"Настройки не сохранились - секретное слово должно состоять только из "
|
1461 |
+
"латинских букв и/или цифр!"
|
1462 |
+
|
1463 |
+
#: ../admin/wp-security-firewall-menu.php:575
|
1464 |
+
msgid ""
|
1465 |
+
"You have successfully enabled the cookie based brute force prevention feature"
|
1466 |
+
msgstr "Вы успешно активировали защиту от брутфорс-атак"
|
1467 |
+
|
1468 |
+
#: ../admin/wp-security-firewall-menu.php:576
|
1469 |
+
msgid ""
|
1470 |
+
"From now on you will need to log into your WP Admin using the following URL:"
|
1471 |
+
msgstr "С этого момента заходите на Вашу страницу авторизации по этому адресу:"
|
1472 |
+
|
1473 |
+
#: ../admin/wp-security-firewall-menu.php:578
|
1474 |
+
msgid ""
|
1475 |
+
"It is important that you save this URL value somewhere in case you forget "
|
1476 |
+
"it, OR,"
|
1477 |
+
msgstr ""
|
1478 |
+
"Очень важно, чтобы Вы сохранили этот URL где-нибудь в надежном месте, на "
|
1479 |
+
"случай, если Вы его забудете, или"
|
1480 |
+
|
1481 |
+
#: ../admin/wp-security-firewall-menu.php:579
|
1482 |
+
#, php-format
|
1483 |
+
msgid "simply remember to add a \"?%s=1\" to your current site URL address."
|
1484 |
+
msgstr "просто запомните, что к адресу Вашего сайта надо добавить «?%s=1»."
|
1485 |
+
|
1486 |
+
#: ../admin/wp-security-firewall-menu.php:585
|
1487 |
+
msgid ""
|
1488 |
+
"You have successfully saved cookie based brute force prevention feature "
|
1489 |
+
"settings."
|
1490 |
+
msgstr "Настройки сохранены!"
|
1491 |
+
|
1492 |
+
#: ../admin/wp-security-firewall-menu.php:621
|
1493 |
+
msgid "Brute Force Prevention Firewall Settings"
|
1494 |
+
msgstr "Настройки Файерволла для защиты от Брутфорс-атак"
|
1495 |
+
|
1496 |
+
#: ../admin/wp-security-firewall-menu.php:628
|
1497 |
+
msgid ""
|
1498 |
+
"A Brute Force Attack is when a hacker tries many combinations of usernames "
|
1499 |
+
"and passwords until they succeed in guessing the right combination."
|
1500 |
+
msgstr ""
|
1501 |
+
"Брутфорс-атакой называется многократный перебор различных сочетаний имен "
|
1502 |
+
"пользователей и паролей, до тех пор, пока не будет найдена их правильная "
|
1503 |
+
"комбинация."
|
1504 |
+
|
1505 |
+
#: ../admin/wp-security-firewall-menu.php:629
|
1506 |
+
msgid ""
|
1507 |
+
"Due to the fact that at any one time there may be many concurrent login "
|
1508 |
+
"attempts occurring on your site via malicious automated robots, this also "
|
1509 |
+
"has a negative impact on your server's memory and performance."
|
1510 |
+
msgstr ""
|
1511 |
+
"В связи с тем, что в любой момент времени может происходить большое "
|
1512 |
+
"количество попыток входа на Ваш сайт, осуществляемых с помощью вредоносных "
|
1513 |
+
"программ-роботов, это также оказывает негативное влияние на Ваш сервер, так "
|
1514 |
+
"как отнимает ресурсы памяти и снижает его производительность."
|
1515 |
+
|
1516 |
+
#: ../admin/wp-security-firewall-menu.php:630
|
1517 |
+
msgid ""
|
1518 |
+
"The features in this tab will stop the majority of Brute Force Login Attacks "
|
1519 |
+
"at the .htaccess level thus providing even better protection for your WP "
|
1520 |
+
"login page and also reducing the load on your server because the system does "
|
1521 |
+
"not have to run PHP code to process the login attempts."
|
1522 |
+
msgstr ""
|
1523 |
+
"Функции в этой вкладке остановят большинство брутфорс-атак на уровне файла ."
|
1524 |
+
"htaccess, обеспечивая тем самым усиленную защиту Вашей страницы авторизации "
|
1525 |
+
"и снижая нагрузку на сервер, так как система при этом не запускает PHP код "
|
1526 |
+
"для обработки попыток входа в систему."
|
1527 |
+
|
1528 |
+
#: ../admin/wp-security-firewall-menu.php:636
|
1529 |
+
msgid "Cookie Based Brute Force Login Prevention"
|
1530 |
+
msgstr "Защита от брутфорс-атак, основанная на использовании куки"
|
1531 |
+
|
1532 |
+
#: ../admin/wp-security-firewall-menu.php:647
|
1533 |
+
msgid "Enable Brute Force Attack Prevention"
|
1534 |
+
msgstr "Активировать защиту от брутфорс-атак"
|
1535 |
+
|
1536 |
+
#: ../admin/wp-security-firewall-menu.php:650
|
1537 |
+
msgid ""
|
1538 |
+
"Check this if you want to protect your login page from Brute Force Attack."
|
1539 |
+
msgstr ""
|
1540 |
+
"Отметьте, если Вы хотите защитить Вашу форму авторизации от брутфорс-атак."
|
1541 |
+
|
1542 |
+
#: ../admin/wp-security-firewall-menu.php:655
|
1543 |
+
msgid ""
|
1544 |
+
"This feature will deny access to your WordPress login page for all people "
|
1545 |
+
"except those who have a special cookie in their browser."
|
1546 |
+
msgstr ""
|
1547 |
+
"Эта функция запретит доступ к Вашей странице авторизации любому "
|
1548 |
+
"пользователю, у которого в браузере нет специального куки-файла."
|
1549 |
+
|
1550 |
+
#: ../admin/wp-security-firewall-menu.php:657
|
1551 |
+
msgid "To use this feature do the following:"
|
1552 |
+
msgstr "Для активации этой опции сделайте следующее:"
|
1553 |
+
|
1554 |
+
#: ../admin/wp-security-firewall-menu.php:659
|
1555 |
+
msgid "1) Enable the checkbox."
|
1556 |
+
msgstr "1) Включите этот чекбокс."
|
1557 |
+
|
1558 |
+
#: ../admin/wp-security-firewall-menu.php:661
|
1559 |
+
msgid ""
|
1560 |
+
"2) Enter a secret word consisting of alphanumeric characters which will be "
|
1561 |
+
"difficult to guess. This secret word will be useful whenever you need to "
|
1562 |
+
"know the special URL which you will use to access the login page (see point "
|
1563 |
+
"below)."
|
1564 |
+
msgstr ""
|
1565 |
+
"2) Введите секретное слово, состоящее из буквенно-цифровых символов (буквы "
|
1566 |
+
"латинские), которое будет трудно разгадать. Это слово будет использовано, "
|
1567 |
+
"чтобы создать для Вас специальный URL для доступа к странице авторизации "
|
1568 |
+
"(смотрите следующий пункт)."
|
1569 |
+
|
1570 |
+
#: ../admin/wp-security-firewall-menu.php:663
|
1571 |
+
msgid ""
|
1572 |
+
"3) You will then be provided with a special login URL. You will need to use "
|
1573 |
+
"this URL to login to your WordPress site instead of the usual login URL. "
|
1574 |
+
"NOTE: The system will deposit a special cookie in your browser which will "
|
1575 |
+
"allow you access to the WordPress administration login page."
|
1576 |
+
msgstr ""
|
1577 |
+
"3) После сохранения этих настроек Вы получите специальный URL для "
|
1578 |
+
"авторизации, о котором больше никто не будет знать. Этот URL Вы должны "
|
1579 |
+
"будете использовать вместо стандартного URL к странице авторизации. "
|
1580 |
+
"ВНИМАНИЕ: Плагин поместит в Ваш браузер специальный куки-файл, который будет "
|
1581 |
+
"служить Вашим персональным пропуском в админ-панель блога."
|
1582 |
+
|
1583 |
+
#: ../admin/wp-security-firewall-menu.php:665
|
1584 |
+
msgid ""
|
1585 |
+
"Any person trying to access your login page who does not have the special "
|
1586 |
+
"cookie in their browser will be automatically blocked."
|
1587 |
+
msgstr ""
|
1588 |
+
"Любой, кто попытается попасть на Вашу страницу авторизации, не имея "
|
1589 |
+
"специального куки-файла в своем браузере, будет автоматически заблокирован."
|
1590 |
+
|
1591 |
+
#: ../admin/wp-security-firewall-menu.php:672
|
1592 |
+
msgid "Secret Word"
|
1593 |
+
msgstr "Секретное слово"
|
1594 |
+
|
1595 |
+
#: ../admin/wp-security-firewall-menu.php:674
|
1596 |
+
msgid ""
|
1597 |
+
"Choose a secret word consisting of alphanumeric characters which you can use "
|
1598 |
+
"to access your special URL. Your are highly encouraged to choose a word "
|
1599 |
+
"which will be difficult to guess."
|
1600 |
+
msgstr ""
|
1601 |
+
"Введите секретное слово (только латинские буквы и цифры). Подберите такое "
|
1602 |
+
"слово, чтобы его было трудно угадать."
|
1603 |
+
|
1604 |
+
#: ../admin/wp-security-firewall-menu.php:678
|
1605 |
+
msgid "Re-direct URL"
|
1606 |
+
msgstr "URL перенаправления"
|
1607 |
+
|
1608 |
+
#: ../admin/wp-security-firewall-menu.php:682
|
1609 |
+
msgid ""
|
1610 |
+
"Specify a URL to redirect a hacker to when they try to access your WordPress "
|
1611 |
+
"login page."
|
1612 |
+
msgstr ""
|
1613 |
+
"Введите URL, на который будет перенаправляться хакер при попытках получить "
|
1614 |
+
"доступ к Вашей форме авторизации."
|
1615 |
+
|
1616 |
+
#: ../admin/wp-security-firewall-menu.php:689
|
1617 |
+
msgid ""
|
1618 |
+
"The URL specified here can be any site's URL and does not have to be your "
|
1619 |
+
"own. For example you can be as creative as you like and send hackers to the "
|
1620 |
+
"CIA or NSA home page."
|
1621 |
+
msgstr ""
|
1622 |
+
"URL, который должен быть в этом поле, может быть адресом любого сайта или "
|
1623 |
+
"страницы - не обязательно Вашего. Вы можете проявить фантазию и "
|
1624 |
+
"перенаправлять хакеров, например, на сайт ЦРУ или ФСБ."
|
1625 |
+
|
1626 |
+
#: ../admin/wp-security-firewall-menu.php:691
|
1627 |
+
msgid ""
|
1628 |
+
"This field will default to: http://127.0.0.1 if you do not enter a value."
|
1629 |
+
msgstr ""
|
1630 |
+
"Если Вы ничего не будете вводить в это поле, будет использовано значение по "
|
1631 |
+
"умолчанию, т.е. «http://127.0.0.1»."
|
1632 |
+
|
1633 |
+
#: ../admin/wp-security-firewall-menu.php:693
|
1634 |
+
msgid "Useful Tip:"
|
1635 |
+
msgstr "Полезная подсказка:"
|
1636 |
+
|
1637 |
+
#: ../admin/wp-security-firewall-menu.php:695
|
1638 |
+
msgid ""
|
1639 |
+
"It's a good idea to not redirect attempted brute force login attempts to "
|
1640 |
+
"your site because it increases the load on your server."
|
1641 |
+
msgstr ""
|
1642 |
+
"Правильно будет не перенаправлять хакера при неудачных попытках брутфорс-"
|
1643 |
+
"атак на другие страницы Вашего сайта, так как это только увеличит нагрузку "
|
1644 |
+
"на Ваш сервер."
|
1645 |
+
|
1646 |
+
#: ../admin/wp-security-firewall-menu.php:697
|
1647 |
+
msgid ""
|
1648 |
+
"Redirecting a hacker or malicious bot back to \"http://127.0.0.1\" is ideal "
|
1649 |
+
"because it deflects them back to their own local host and puts the load on "
|
1650 |
+
"their server instead of yours."
|
1651 |
+
msgstr ""
|
1652 |
+
"Переадресация хакера или вредоносного бота на «http://127.0.0.1» - идеальный "
|
1653 |
+
"вариант, т.к. возвращает его обратно на его собственный локальный хост и "
|
1654 |
+
"нагружает его сервер вместо Вашего."
|
1655 |
+
|
1656 |
+
#: ../admin/wp-security-firewall-menu.php:704
|
1657 |
+
msgid "My Site Has Posts Or Pages Which Are Password Protected"
|
1658 |
+
msgstr ""
|
1659 |
+
"На моем сайте есть посты или страницы, закрытые встроенной функцией "
|
1660 |
+
"Wordpress для защиты контента паролем "
|
1661 |
+
|
1662 |
+
#: ../admin/wp-security-firewall-menu.php:707
|
1663 |
+
msgid ""
|
1664 |
+
"Check this if you are using the native WordPress password protection feature "
|
1665 |
+
"for some or all of your blog posts or pages."
|
1666 |
+
msgstr ""
|
1667 |
+
"Включите эту опцию, если Вы используете встроенную функцию WordPress для "
|
1668 |
+
"защиты постов или страниц паролями."
|
1669 |
+
|
1670 |
+
#: ../admin/wp-security-firewall-menu.php:712
|
1671 |
+
msgid ""
|
1672 |
+
"In the cases where you are protecting some of your posts or pages using the "
|
1673 |
+
"in-built WordPress password protection feature, a few extra lines of "
|
1674 |
+
"directives and exceptions need to be added to your .htacces file so that "
|
1675 |
+
"people trying to access pages are not automatically blocked."
|
1676 |
+
msgstr ""
|
1677 |
+
"В случае, если Вы защищаете свои посты и страницы паролями, используя "
|
1678 |
+
"соответствующую встроенную функцию WordPress, в файл .htacces необходимо "
|
1679 |
+
"добавить некоторые дополнительные директивы."
|
1680 |
+
|
1681 |
+
#: ../admin/wp-security-firewall-menu.php:714
|
1682 |
+
msgid ""
|
1683 |
+
"By enabling this checkbox the plugin will add the necessary rules and "
|
1684 |
+
"exceptions to your .htacces file so that people trying to access these pages "
|
1685 |
+
"are not automatically blocked."
|
1686 |
+
msgstr ""
|
1687 |
+
"Включение этой опции добавит в файл .htacces необходимые правила, чтобы "
|
1688 |
+
"люди, пытающиеся получить доступ к этим страницам, не были автоматически "
|
1689 |
+
"заблокированы. "
|
1690 |
+
|
1691 |
+
#: ../admin/wp-security-firewall-menu.php:716
|
1692 |
+
msgid "Helpful Tip:"
|
1693 |
+
msgstr "Полезная подсказка:"
|
1694 |
+
|
1695 |
+
#: ../admin/wp-security-firewall-menu.php:718
|
1696 |
+
msgid ""
|
1697 |
+
"If you do not use the WordPress password protection feature for your posts "
|
1698 |
+
"or pages then it is highly recommended that you leave this checkbox disabled."
|
1699 |
+
msgstr ""
|
1700 |
+
"Если Вы не используете встроенную функцию WordPress для защиты постов или "
|
1701 |
+
"страниц паролями, крайне рекомендуется оставить этот чекбокс неотмеченным."
|
1702 |
+
|
1703 |
+
#: ../admin/wp-security-firewall-menu.php:733
|
1704 |
+
msgid "The cookie test was successful. You can now enable this feature."
|
1705 |
+
msgstr "Куки-тест прошел успешно - можете активировать эту опцию."
|
1706 |
+
|
1707 |
+
#: ../admin/wp-security-firewall-menu.php:736
|
1708 |
+
msgid "Save Feature Settings"
|
1709 |
+
msgstr "Сохранить настройки"
|
1710 |
+
|
1711 |
+
#: ../admin/wp-security-firewall-menu.php:743
|
1712 |
+
msgid ""
|
1713 |
+
"The cookie test failed on this server. So this feature cannot be used on "
|
1714 |
+
"this site."
|
1715 |
+
msgstr "Куки-тест негативный - использование этой функции невозможно."
|
1716 |
+
|
1717 |
+
#: ../admin/wp-security-firewall-menu.php:749
|
1718 |
+
msgid ""
|
1719 |
+
"Before using this feature you are required to perform a cookie test first. "
|
1720 |
+
"This is to make sure that your browser cookie is working correctly and that "
|
1721 |
+
"you won't lock yourself out."
|
1722 |
+
msgstr ""
|
1723 |
+
"Перед включением этой опции необходимо протестировать куки, чтобы убедиться "
|
1724 |
+
"в корректной обработке куки-файлов Вашим браузером и, тем самым, избежать "
|
1725 |
+
"блокировки Вашего собственного аккаунта."
|
1726 |
+
|
1727 |
+
#: ../admin/wp-security-firewall-menu.php:751
|
1728 |
+
msgid "Perform Cookie Test"
|
1729 |
+
msgstr "Протестировать Куки"
|
1730 |
+
|
1731 |
+
#: ../admin/wp-security-list-acct-activity.php:79
|
1732 |
+
#: ../admin/wp-security-list-comment-spammer-ip.php:76
|
1733 |
+
#: ../admin/wp-security-list-locked-ip.php:80
|
1734 |
+
#: ../admin/wp-security-list-locked-ip.php:91
|
1735 |
+
#: ../admin/wp-security-list-login-fails.php:78
|
1736 |
+
msgid "Please select some records using the checkboxes"
|
1737 |
+
msgstr "Пожалуйста, выберите записи, отметив соответствующие чекбоксы"
|
1738 |
+
|
1739 |
+
#: ../admin/wp-security-list-acct-activity.php:107
|
1740 |
+
#: ../admin/wp-security-list-login-fails.php:107
|
1741 |
+
msgid "The selected entries were deleted successfully!"
|
1742 |
+
msgstr "Выбранные записи удалены!"
|
1743 |
+
|
1744 |
+
#: ../admin/wp-security-list-acct-activity.php:120
|
1745 |
+
#: ../admin/wp-security-list-login-fails.php:119
|
1746 |
+
msgid "The selected entry was deleted successfully!"
|
1747 |
+
msgstr "Выбранная запись удалена!"
|
1748 |
+
|
1749 |
+
#: ../admin/wp-security-list-comment-spammer-ip.php:129
|
1750 |
+
msgid ""
|
1751 |
+
"The selected IP addresses were saved in the blacklist configuration settings."
|
1752 |
+
msgstr "Указанные IP-адреса внесены в черный список."
|
1753 |
+
|
1754 |
+
#: ../admin/wp-security-list-comment-spammer-ip.php:143
|
1755 |
+
msgid ""
|
1756 |
+
"The .htaccess file was successfully modified to include the selected IP "
|
1757 |
+
"addresses."
|
1758 |
+
msgstr "Файл .htaccess успешно изменен - в него внесены указанные IP-адреса."
|
1759 |
+
|
1760 |
+
#: ../admin/wp-security-list-comment-spammer-ip.php:149
|
1761 |
+
msgid ""
|
1762 |
+
"NOTE: The .htaccess file was not modified because you have disabled the "
|
1763 |
+
"\"Enable IP or User Agent Blacklisting\" check box."
|
1764 |
+
msgstr ""
|
1765 |
+
"ВНИМАНИЕ: файл .htaccess не был изменен, так как опция «Вести Черный список» "
|
1766 |
+
"неактивна."
|
1767 |
+
|
1768 |
+
#: ../admin/wp-security-list-comment-spammer-ip.php:150
|
1769 |
+
#, php-format
|
1770 |
+
msgid ""
|
1771 |
+
"To block these IP addresses you will need to enable the above flag in the %s "
|
1772 |
+
"menu"
|
1773 |
+
msgstr ""
|
1774 |
+
"Чтобы заблокировать эти IP-адреса, необходимо установить соответствующий "
|
1775 |
+
"флаг в %s меню"
|
1776 |
+
|
1777 |
+
#: ../admin/wp-security-list-locked-ip.php:115
|
1778 |
+
#: ../admin/wp-security-user-login-menu.php:439
|
1779 |
+
msgid "The selected IP ranges were unlocked successfully!"
|
1780 |
+
msgstr "Указанный диапазон IP-адресов разблокирован!"
|
1781 |
+
|
1782 |
+
#: ../admin/wp-security-list-locked-ip.php:124
|
1783 |
+
#: ../admin/wp-security-user-login-menu.php:448
|
1784 |
+
msgid "The selected IP range was unlocked successfully!"
|
1785 |
+
msgstr "Указанный диапазон IP-адресов разблокирован!"
|
1786 |
+
|
1787 |
+
#: ../admin/wp-security-maintenance-menu.php:82
|
1788 |
+
msgid "Site lockout feature settings saved!"
|
1789 |
+
msgstr "Сайт переведен в режим обслуживания!"
|
1790 |
+
|
1791 |
+
#: ../admin/wp-security-maintenance-menu.php:87
|
1792 |
+
msgid "General Visitor Lockout"
|
1793 |
+
msgstr "Блокирование доступа посетителей к сайту"
|
1794 |
+
|
1795 |
+
#: ../admin/wp-security-maintenance-menu.php:93
|
1796 |
+
msgid ""
|
1797 |
+
"This feature allows you to put your site into \"maintenance mode\" by "
|
1798 |
+
"locking down the front-end to all visitors except logged in users with super "
|
1799 |
+
"admin privileges."
|
1800 |
+
msgstr ""
|
1801 |
+
"Эта опция позволяет перевести Ваш сайт в режим обслуживания, сделав "
|
1802 |
+
"невозможным просмотр сайта посетителями, за исключением администраторов."
|
1803 |
+
|
1804 |
+
#: ../admin/wp-security-maintenance-menu.php:94
|
1805 |
+
msgid ""
|
1806 |
+
"Locking your site down to general visitors can be useful if you are "
|
1807 |
+
"investigating some issues on your site or perhaps you might be doing some "
|
1808 |
+
"maintenance and wish to keep out all traffic for security reasons."
|
1809 |
+
msgstr ""
|
1810 |
+
"Это может быть очень полезным, если Вы что-то настраиваете, меняете дизайн, "
|
1811 |
+
"проверяете работу плагинов и т.д. и т.п."
|
1812 |
+
|
1813 |
+
#: ../admin/wp-security-maintenance-menu.php:99
|
1814 |
+
msgid "Enable Front-end Lockout"
|
1815 |
+
msgstr "Включить режим обслуживания"
|
1816 |
+
|
1817 |
+
#: ../admin/wp-security-maintenance-menu.php:102
|
1818 |
+
msgid ""
|
1819 |
+
"Check this if you want all visitors except those who are logged in as "
|
1820 |
+
"administrator to be locked out of the front-end of your site."
|
1821 |
+
msgstr ""
|
1822 |
+
"Включите эту опцию, если Вы хотите, чтобы обычные посетители не могли "
|
1823 |
+
"просматривать Ваш сайт - это смогут делать только администраторы."
|
1824 |
+
|
1825 |
+
#: ../admin/wp-security-maintenance-menu.php:106
|
1826 |
+
msgid "Enter a Message:"
|
1827 |
+
msgstr "Введите сообщение:"
|
1828 |
+
|
1829 |
+
#: ../admin/wp-security-maintenance-menu.php:118
|
1830 |
+
msgid ""
|
1831 |
+
"Enter a message you wish to display to visitors when your site is in "
|
1832 |
+
"maintenance mode."
|
1833 |
+
msgstr "Введите сообщение"
|
1834 |
+
|
1835 |
+
#: ../admin/wp-security-maintenance-menu.php:125
|
1836 |
+
msgid "Save Site Lockout Settings"
|
1837 |
+
msgstr "Сохранить настройки блокировки сайта"
|
1838 |
+
|
1839 |
+
#: ../admin/wp-security-settings-menu.php:81
|
1840 |
+
msgid "All the security features have been disabled successfully!"
|
1841 |
+
msgstr "Все функции безопасности успешно деактивированы!"
|
1842 |
+
|
1843 |
+
#: ../admin/wp-security-settings-menu.php:90
|
1844 |
+
msgid "WP Security Plugin"
|
1845 |
+
msgstr "Плагин WP Security"
|
1846 |
+
|
1847 |
+
#: ../admin/wp-security-settings-menu.php:92
|
1848 |
+
msgid ""
|
1849 |
+
"Thank you for using our WordPress security plugin. There are a lot of "
|
1850 |
+
"security features in this plugin."
|
1851 |
+
msgstr "Спасибо, что используете плагин WordPress security!"
|
1852 |
+
|
1853 |
+
#: ../admin/wp-security-settings-menu.php:93
|
1854 |
+
msgid ""
|
1855 |
+
"Go through each menu items and enable the security options to add more "
|
1856 |
+
"security to your site."
|
1857 |
+
msgstr ""
|
1858 |
+
"Воспользуйтесь меню плагина, чтобы активировать функции безопасности и "
|
1859 |
+
"защитить свой сайт."
|
1860 |
+
|
1861 |
+
#: ../admin/wp-security-settings-menu.php:94
|
1862 |
+
msgid ""
|
1863 |
+
"It is a good practice to take a backup of your .htaccess file, database and "
|
1864 |
+
"wp-config.php file before activating the security features. This plugin has "
|
1865 |
+
"options that you can use to backup those resources easily."
|
1866 |
+
msgstr ""
|
1867 |
+
"Перед тем, как Вы активируете функции безопасности, будет разумно создать "
|
1868 |
+
"резервные копии важных файлов и базы данных. Вы легко можете это сделать, "
|
1869 |
+
"воспользовавшись соответствующими опциями данного плагина."
|
1870 |
+
|
1871 |
+
#: ../admin/wp-security-settings-menu.php:97
|
1872 |
+
msgid "Backup your database"
|
1873 |
+
msgstr "Создать резервную копию базы данных"
|
1874 |
+
|
1875 |
+
#: ../admin/wp-security-settings-menu.php:98
|
1876 |
+
msgid "Backup .htaccess file"
|
1877 |
+
msgstr "Создать резервную копию файла .htaccess"
|
1878 |
+
|
1879 |
+
#: ../admin/wp-security-settings-menu.php:99
|
1880 |
+
msgid "Backup wp-config.php file"
|
1881 |
+
msgstr "Создать резервную копию файла wp-config.php"
|
1882 |
+
|
1883 |
+
#: ../admin/wp-security-settings-menu.php:105
|
1884 |
+
msgid "Disable Security Features"
|
1885 |
+
msgstr "Отключение функции безопасности"
|
1886 |
+
|
1887 |
+
#: ../admin/wp-security-settings-menu.php:111
|
1888 |
+
msgid ""
|
1889 |
+
"If you think that some plugin functionality on your site is broken due to a "
|
1890 |
+
"security feature you enabled in this plugin, then use the following option "
|
1891 |
+
"to turn off all the security features of this plugin."
|
1892 |
+
msgstr ""
|
1893 |
+
"Если Вы думаете, что какие-либо плагины перестали работать из-за "
|
1894 |
+
"активирования функций безопасности, воспользуйтесь этой кнопкой, чтобы все "
|
1895 |
+
"эти функции отключить."
|
1896 |
+
|
1897 |
+
#: ../admin/wp-security-settings-menu.php:115
|
1898 |
+
msgid "Disable All Security Features"
|
1899 |
+
msgstr "Отключить все функции безопасности"
|
1900 |
+
|
1901 |
+
#: ../admin/wp-security-settings-menu.php:143
|
1902 |
+
msgid ""
|
1903 |
+
"Your .htaccess file was successfully backed up! Right click on the following "
|
1904 |
+
"file name and save the backup to your computer."
|
1905 |
+
msgstr "Резервная копия файла .htaccess успшно создана!"
|
1906 |
+
|
1907 |
+
#: ../admin/wp-security-settings-menu.php:145
|
1908 |
+
msgid "Your .htaccess File: "
|
1909 |
+
msgstr "Ваш файл .htaccess:"
|
1910 |
+
|
1911 |
+
#: ../admin/wp-security-settings-menu.php:153
|
1912 |
+
msgid ""
|
1913 |
+
"htaccess file rename failed during backup. Please check your root directory "
|
1914 |
+
"for the backup file using FTP."
|
1915 |
+
msgstr ""
|
1916 |
+
"Не удалось переименовать файл .htaccess для создания резервной копии. "
|
1917 |
+
"Воспользуйтесь FTP, чтобы вручную просмотреть корневую директорию сайта на "
|
1918 |
+
"предмет наличия созданной резервной копии."
|
1919 |
+
|
1920 |
+
#: ../admin/wp-security-settings-menu.php:159
|
1921 |
+
msgid "htaccess backup failed."
|
1922 |
+
msgstr "Создать резервную копию файла .htaccess не удалось."
|
1923 |
+
|
1924 |
+
#: ../admin/wp-security-settings-menu.php:174
|
1925 |
+
msgid "Please choose a .htaccess to restore from."
|
1926 |
+
msgstr "Выберите резервную копию файла .htaccess"
|
1927 |
+
|
1928 |
+
#: ../admin/wp-security-settings-menu.php:190
|
1929 |
+
msgid ""
|
1930 |
+
"htaccess file restore failed. Please attempt to restore the .htaccess "
|
1931 |
+
"manually using FTP."
|
1932 |
+
msgstr ""
|
1933 |
+
"Восстановить файл .htaccess не удалось. Попробуйте сделать это вручную, "
|
1934 |
+
"используя FTP."
|
1935 |
+
|
1936 |
+
#: ../admin/wp-security-settings-menu.php:194
|
1937 |
+
msgid "Your .htaccess file has successfully been restored!"
|
1938 |
+
msgstr "Файл .htaccess успешно восстановлен!"
|
1939 |
+
|
1940 |
+
#: ../admin/wp-security-settings-menu.php:200
|
1941 |
+
msgid ""
|
1942 |
+
"htaccess Restore operation failed! Please check the contents of the file you "
|
1943 |
+
"are trying to restore from."
|
1944 |
+
msgstr ""
|
1945 |
+
"Операция восстановления файла .htaccess не удалась. Убедитесь, что с "
|
1946 |
+
"содержимым резервной копии все в порядке."
|
1947 |
+
|
1948 |
+
#: ../admin/wp-security-settings-menu.php:206
|
1949 |
+
msgid ".htaccess File Operations"
|
1950 |
+
msgstr "Операции с файлом .htaccess"
|
1951 |
+
|
1952 |
+
#: ../admin/wp-security-settings-menu.php:209
|
1953 |
+
msgid ""
|
1954 |
+
"Your \".htaccess\" file is a key component of your website's security and it "
|
1955 |
+
"can be modified to implement various levels of protection mechanisms."
|
1956 |
+
msgstr ""
|
1957 |
+
"Файл «.htaccess» - это ключевой компонент обеспечения безопасности сайта, "
|
1958 |
+
"который позволяет в значительной степени варьировать механизмы его защиты."
|
1959 |
+
|
1960 |
+
#: ../admin/wp-security-settings-menu.php:210
|
1961 |
+
msgid ""
|
1962 |
+
"This feature allows you to backup and save your currently active .htaccess "
|
1963 |
+
"file should you need to re-use the the backed up file in the future."
|
1964 |
+
msgstr ""
|
1965 |
+
"В этом разделе Вы можете создать резервную копию файла .htaccess и, при "
|
1966 |
+
"необходимости,"
|
1967 |
+
|
1968 |
+
#: ../admin/wp-security-settings-menu.php:211
|
1969 |
+
msgid ""
|
1970 |
+
"You can also restore your site's .htaccess settings using a backed up ."
|
1971 |
+
"htaccess file."
|
1972 |
+
msgstr "восстановить его из резервной копии в будущем."
|
1973 |
+
|
1974 |
+
#: ../admin/wp-security-settings-menu.php:217
|
1975 |
+
msgid "Save the current .htaccess file"
|
1976 |
+
msgstr "Создание резервной копии файла .htaccess"
|
1977 |
+
|
1978 |
+
#: ../admin/wp-security-settings-menu.php:221
|
1979 |
+
msgid ""
|
1980 |
+
"Click the button below to backup and save the currently active .htaccess "
|
1981 |
+
"file."
|
1982 |
+
msgstr "Для создания резервной копии файла .htaccess нажмите эту кнопку:"
|
1983 |
+
|
1984 |
+
#: ../admin/wp-security-settings-menu.php:222
|
1985 |
+
msgid "Backup .htaccess File"
|
1986 |
+
msgstr "Создать и скачать резервную копию файла .htaccess"
|
1987 |
+
|
1988 |
+
#: ../admin/wp-security-settings-menu.php:226
|
1989 |
+
msgid "Restore from a backed up .htaccess file"
|
1990 |
+
msgstr "Восстановление файл .htaccess из резервной копии"
|
1991 |
+
|
1992 |
+
#: ../admin/wp-security-settings-menu.php:232
|
1993 |
+
msgid ".htaccess file to restore from"
|
1994 |
+
msgstr "Выберите файл резервной копии"
|
1995 |
+
|
1996 |
+
#: ../admin/wp-security-settings-menu.php:238
|
1997 |
+
msgid ""
|
1998 |
+
"After selecting your file, click the button below to restore your site using "
|
1999 |
+
"the backed up htaccess file (htaccess_backup.txt)."
|
2000 |
+
msgstr ""
|
2001 |
+
"После того, как Вы выберите файл резервной копии (с именем htaccess_backup."
|
2002 |
+
"txt) на своем компьютере, чтобы заменить им текущий активный файл .htaccess, "
|
2003 |
+
"нажмите эту кнопку:"
|
2004 |
+
|
2005 |
+
#: ../admin/wp-security-settings-menu.php:244
|
2006 |
+
msgid "Restore .htaccess File"
|
2007 |
+
msgstr "Восстановить файл .htaccess"
|
2008 |
+
|
2009 |
+
#: ../admin/wp-security-settings-menu.php:248
|
2010 |
+
msgid "View Contents of the currently active .htaccess file"
|
2011 |
+
msgstr "Просмотр содержимого активного файла .htaccess"
|
2012 |
+
|
2013 |
+
#: ../admin/wp-security-settings-menu.php:282
|
2014 |
+
msgid ""
|
2015 |
+
"Your wp-config.php file was successfully backed up! Right click on the "
|
2016 |
+
"following file name and save the backup to your computer."
|
2017 |
+
msgstr "Резервная копия файла wp-config.php успешно создана!"
|
2018 |
+
|
2019 |
+
#: ../admin/wp-security-settings-menu.php:284
|
2020 |
+
msgid "Your wp-config.php File: "
|
2021 |
+
msgstr "Ваш файл wp-config.php:"
|
2022 |
+
|
2023 |
+
#: ../admin/wp-security-settings-menu.php:292
|
2024 |
+
msgid ""
|
2025 |
+
"wp-config.php file rename failed during backup. Please check your root "
|
2026 |
+
"directory for the backup file using FTP."
|
2027 |
+
msgstr ""
|
2028 |
+
"Во время резервного копирования файла wp-config.php не удалось его "
|
2029 |
+
"переименовать. Воспользуйтесь FTP, чтобы проверить наличие созданной "
|
2030 |
+
"резервной копии в корневой директории Вашего сайта."
|
2031 |
+
|
2032 |
+
#: ../admin/wp-security-settings-menu.php:298
|
2033 |
+
msgid "wp-config.php backup failed."
|
2034 |
+
msgstr "Создать резервную копию файла wp-config.php не удалось."
|
2035 |
+
|
2036 |
+
#: ../admin/wp-security-settings-menu.php:313
|
2037 |
+
msgid "Please choose a wp-config.php file to restore from."
|
2038 |
+
msgstr "Выберите файл резервной копии."
|
2039 |
+
|
2040 |
+
#: ../admin/wp-security-settings-menu.php:329
|
2041 |
+
msgid ""
|
2042 |
+
"wp-config.php file restore failed. Please attempt to restore this file "
|
2043 |
+
"manually using FTP."
|
2044 |
+
msgstr ""
|
2045 |
+
"Операция по восстановлению файла wp-config.php не удалась! Попытайтесь "
|
2046 |
+
"сделать это вручную, используя FTP."
|
2047 |
+
|
2048 |
+
#: ../admin/wp-security-settings-menu.php:333
|
2049 |
+
msgid "Your wp-config.php file has successfully been restored!"
|
2050 |
+
msgstr "Файл wp-config.php успешно восстановлен!"
|
2051 |
+
|
2052 |
+
#: ../admin/wp-security-settings-menu.php:339
|
2053 |
+
msgid ""
|
2054 |
+
"wp-config.php Restore operation failed! Please check the contents of the "
|
2055 |
+
"file you are trying to restore from."
|
2056 |
+
msgstr ""
|
2057 |
+
"Операция по восстановлению файла wp-config.php не удалась! Проверьте "
|
2058 |
+
"содержимое файла резервной копии."
|
2059 |
+
|
2060 |
+
#: ../admin/wp-security-settings-menu.php:345
|
2061 |
+
msgid "wp-config.php File Operations"
|
2062 |
+
msgstr "Операции с файлом wp-config.php"
|
2063 |
+
|
2064 |
+
#: ../admin/wp-security-settings-menu.php:348
|
2065 |
+
msgid ""
|
2066 |
+
"Your \"wp-config.php\" file is one of the most important in your WordPress "
|
2067 |
+
"installation. It is a primary configuration file and contains crucial things "
|
2068 |
+
"such as details of your database and other critical components."
|
2069 |
+
msgstr ""
|
2070 |
+
"Файл wp-config.php - это один из наиболее важных файлов WordPress, "
|
2071 |
+
"содержащий данные доступа к Вашей базе данных и другие очень ценные "
|
2072 |
+
"настройки."
|
2073 |
+
|
2074 |
+
#: ../admin/wp-security-settings-menu.php:349
|
2075 |
+
msgid ""
|
2076 |
+
"This feature allows you to backup and save your currently active wp-config."
|
2077 |
+
"php file should you need to re-use the the backed up file in the future."
|
2078 |
+
msgstr ""
|
2079 |
+
"В этом разделе Вы можете создать резервную копию этого файла и, при "
|
2080 |
+
"необходимости,"
|
2081 |
+
|
2082 |
+
#: ../admin/wp-security-settings-menu.php:350
|
2083 |
+
msgid ""
|
2084 |
+
"You can also restore your site's wp-config.php settings using a backed up wp-"
|
2085 |
+
"config.php file."
|
2086 |
+
msgstr "восстановить его в будущем, используя эту резервную копию."
|
2087 |
+
|
2088 |
+
#: ../admin/wp-security-settings-menu.php:356
|
2089 |
+
msgid "Save the current wp-config.php file"
|
2090 |
+
msgstr "Создание резервной копии файла wp-config.php"
|
2091 |
+
|
2092 |
+
#: ../admin/wp-security-settings-menu.php:360
|
2093 |
+
msgid ""
|
2094 |
+
"Click the button below to backup and save the currently active wp-config.php "
|
2095 |
+
"file."
|
2096 |
+
msgstr "Для создания резервной копии файла wp-config.php нажмите эту кнопку:"
|
2097 |
+
|
2098 |
+
#: ../admin/wp-security-settings-menu.php:361
|
2099 |
+
msgid "Backup wp-config.php File"
|
2100 |
+
msgstr "Создать и скачать резервную копию файла wp-config"
|
2101 |
+
|
2102 |
+
#: ../admin/wp-security-settings-menu.php:365
|
2103 |
+
msgid "Restore from a backed up wp-config file"
|
2104 |
+
msgstr "Восстановление файла wp-config из резервной копии"
|
2105 |
+
|
2106 |
+
#: ../admin/wp-security-settings-menu.php:371
|
2107 |
+
msgid "wp-config file to restore from"
|
2108 |
+
msgstr "Выберите резервную копию файла wp-config"
|
2109 |
+
|
2110 |
+
#: ../admin/wp-security-settings-menu.php:377
|
2111 |
+
msgid ""
|
2112 |
+
"After selecting your file click the button below to restore your site using "
|
2113 |
+
"the backed up wp-config file (wp-config.php.backup.txt)."
|
2114 |
+
msgstr ""
|
2115 |
+
"После того, как Вы выберите файл резервной копии (с именем wp-config.php."
|
2116 |
+
"backup.txt) на своем компьютере, чтобы заменить им текущий активный файл wp-"
|
2117 |
+
"config, нажмите эту кнопку:"
|
2118 |
+
|
2119 |
+
#: ../admin/wp-security-settings-menu.php:383
|
2120 |
+
msgid "Restore wp-config File"
|
2121 |
+
msgstr "Восстановить файл wp-config"
|
2122 |
+
|
2123 |
+
#: ../admin/wp-security-settings-menu.php:387
|
2124 |
+
msgid "View Contents of the currently active wp-config.php file"
|
2125 |
+
msgstr "Просмотр содержимого файла wp-config.php"
|
2126 |
+
|
2127 |
+
#: ../admin/wp-security-settings-menu.php:421
|
2128 |
+
msgid "WP Generator Meta Tag"
|
2129 |
+
msgstr "Мета-тег WP Generator"
|
2130 |
+
|
2131 |
+
#: ../admin/wp-security-settings-menu.php:424
|
2132 |
+
msgid ""
|
2133 |
+
"Wordpress generator automatically adds some meta information inside the "
|
2134 |
+
"\"head\" tags of every page on your site's front end. Below is an example of "
|
2135 |
+
"this:"
|
2136 |
+
msgstr ""
|
2137 |
+
"WP Generator автоматически выводит информацию о текущей весии Wordpress в "
|
2138 |
+
"специальном мета-теге в секции «head» на всех страницах сайта. Вот пример "
|
2139 |
+
"такого вывода:"
|
2140 |
+
|
2141 |
+
#: ../admin/wp-security-settings-menu.php:426
|
2142 |
+
msgid ""
|
2143 |
+
"The above meta information shows which version of WordPress your site is "
|
2144 |
+
"currently running and thus can help hackers or crawlers scan your site to "
|
2145 |
+
"see if you have an older version of WordPress or one with a known exploit."
|
2146 |
+
msgstr ""
|
2147 |
+
"Эта информация существенно помогает хакерам и их роботам-паукам определять, "
|
2148 |
+
"не используете ли Вы какую-нибудь устаревшую версию WordPress с уже "
|
2149 |
+
"известными уязвимостями."
|
2150 |
+
|
2151 |
+
#: ../admin/wp-security-settings-menu.php:427
|
2152 |
+
msgid ""
|
2153 |
+
"This feature will allow you to remove the WP generator meta info from your "
|
2154 |
+
"site's pages."
|
2155 |
+
msgstr ""
|
2156 |
+
"Данная опция позволит Вам удалить этот мета-тег со всех страниц Вашего сайта."
|
2157 |
+
|
2158 |
+
#: ../admin/wp-security-settings-menu.php:433
|
2159 |
+
msgid "WP Generator Meta Info"
|
2160 |
+
msgstr "Мета-данные WP Generator"
|
2161 |
+
|
2162 |
+
#: ../admin/wp-security-settings-menu.php:445
|
2163 |
+
msgid "Remove WP Generator Meta Info"
|
2164 |
+
msgstr "Удаление мета-данных WP Generator"
|
2165 |
+
|
2166 |
+
#: ../admin/wp-security-settings-menu.php:448
|
2167 |
+
msgid ""
|
2168 |
+
"Check this if you want to remove the meta info produced by WP Generator from "
|
2169 |
+
"all pages"
|
2170 |
+
msgstr "Включите эту опцию, чтобы удалить мета-тег WP Generator"
|
2171 |
+
|
2172 |
+
#: ../admin/wp-security-user-accounts-menu.php:79
|
2173 |
+
msgid "Admin User Security"
|
2174 |
+
msgstr "Безопасность аккаунта Администратора"
|
2175 |
+
|
2176 |
+
#: ../admin/wp-security-user-accounts-menu.php:82
|
2177 |
+
msgid ""
|
2178 |
+
"By default, WordPress sets the administrator username to \"admin\" at "
|
2179 |
+
"installation time."
|
2180 |
+
msgstr ""
|
2181 |
+
"При установке WordPress автоматически присваивает администратору имя "
|
2182 |
+
"пользователя «admin» (если Вы вручную не измените его)."
|
2183 |
+
|
2184 |
+
#: ../admin/wp-security-user-accounts-menu.php:83
|
2185 |
+
msgid ""
|
2186 |
+
"A lot of hackers try to take advantage of this information by attempting "
|
2187 |
+
"\"Brute Force Login Attacks\" where they repeatedly try to guess the "
|
2188 |
+
"password by using \"admin\" for username."
|
2189 |
+
msgstr ""
|
2190 |
+
"Многие хакеры пытаются воспользоваться этой информацией, применяя для "
|
2191 |
+
"нападения «Брутфорс-атаку», когда они систематично подбирают пароль, "
|
2192 |
+
"используя слово «admin» в качестве имени пользователя."
|
2193 |
+
|
2194 |
+
#: ../admin/wp-security-user-accounts-menu.php:84
|
2195 |
+
msgid ""
|
2196 |
+
"From a security perspective, changing the default \"admin\" user name is one "
|
2197 |
+
"of the first and smartest things you should do on your site."
|
2198 |
+
msgstr ""
|
2199 |
+
"По соображениям безопасности, одна из первых и наиболее разумных вещей, "
|
2200 |
+
"которую Вы должны сделать на своем сайте, это изменить имя пользователя по "
|
2201 |
+
"умолчанию, т.е. «admin»."
|
2202 |
+
|
2203 |
+
#: ../admin/wp-security-user-accounts-menu.php:85
|
2204 |
+
msgid ""
|
2205 |
+
"This feature will allow you to change your default \"admin\" user name to a "
|
2206 |
+
"more secure name of your choosing."
|
2207 |
+
msgstr ""
|
2208 |
+
"Этот раздел как раз и предназначен для изменения имени пользователя «admin» "
|
2209 |
+
"на более безопасное, по Вашему выбору."
|
2210 |
+
|
2211 |
+
#: ../admin/wp-security-user-accounts-menu.php:92
|
2212 |
+
msgid "List of Administrator Accounts"
|
2213 |
+
msgstr "Список Администраторов"
|
2214 |
+
|
2215 |
+
#: ../admin/wp-security-user-accounts-menu.php:102
|
2216 |
+
msgid "Change Admin Username"
|
2217 |
+
msgstr "Изменение имени пользователя Админстратора"
|
2218 |
+
|
2219 |
+
#: ../admin/wp-security-user-accounts-menu.php:110
|
2220 |
+
msgid ""
|
2221 |
+
"Your site currently has an account which uses the default \"admin\" "
|
2222 |
+
"username. \n"
|
2223 |
+
" It is highly recommended that you change this name to "
|
2224 |
+
"something else. \n"
|
2225 |
+
" Use the following field to change the admin username."
|
2226 |
+
msgstr ""
|
2227 |
+
"На Вашем сайте имеется аккаунт, в котором в качестве имени пользователя "
|
2228 |
+
"используется слово «admin».\n"
|
2229 |
+
"Крайне рекомендуется изменить его на какое-нибудь другое.\n"
|
2230 |
+
"Для этого воспользуйтесь следующим полем."
|
2231 |
+
|
2232 |
+
#: ../admin/wp-security-user-accounts-menu.php:118
|
2233 |
+
msgid "New Admin Username"
|
2234 |
+
msgstr "Новое имя пользователя для администратора"
|
2235 |
+
|
2236 |
+
#: ../admin/wp-security-user-accounts-menu.php:120
|
2237 |
+
msgid "Choose a new username for admin."
|
2238 |
+
msgstr "Выберите новое имя пользователя для администратора."
|
2239 |
+
|
2240 |
+
#: ../admin/wp-security-user-accounts-menu.php:124
|
2241 |
+
msgid "Change Username"
|
2242 |
+
msgstr "Изменить имя пользователя"
|
2243 |
+
|
2244 |
+
#: ../admin/wp-security-user-accounts-menu.php:126
|
2245 |
+
msgid ""
|
2246 |
+
"NOTE: If you are currently logged in as \"admin\" you will be automatically "
|
2247 |
+
"logged out after changing your username and will be required to log back in."
|
2248 |
+
msgstr ""
|
2249 |
+
"ВНИМАНИЕ: если сейчас Вы авторизованы как «admin», Ваша авторизационная "
|
2250 |
+
"сессия будет автоматически прекращена, после того, как Вы измените имя "
|
2251 |
+
"пользователя - надо будет снова авторизоваться, используя уже новый логин."
|
2252 |
+
|
2253 |
+
#: ../admin/wp-security-user-accounts-menu.php:133
|
2254 |
+
msgid "No action required! "
|
2255 |
+
msgstr "Действие не требуется!"
|
2256 |
+
|
2257 |
+
#: ../admin/wp-security-user-accounts-menu.php:135
|
2258 |
+
msgid ""
|
2259 |
+
"Your site does not have any account which uses the default \"admin\" "
|
2260 |
+
"username. "
|
2261 |
+
msgstr ""
|
2262 |
+
"На Вашем сайте нет аккаунтов, использующих в качестве имени пользователя имя "
|
2263 |
+
"пользователя по умолчанию, т.е. «admin» - "
|
2264 |
+
|
2265 |
+
#: ../admin/wp-security-user-accounts-menu.php:136
|
2266 |
+
msgid "This is good security practice."
|
2267 |
+
msgstr "и это очень хорошо."
|
2268 |
+
|
2269 |
+
#: ../admin/wp-security-user-accounts-menu.php:148
|
2270 |
+
msgid "Display Name Security"
|
2271 |
+
msgstr "Защита отображаемого имени"
|
2272 |
+
|
2273 |
+
#: ../admin/wp-security-user-accounts-menu.php:151
|
2274 |
+
msgid ""
|
2275 |
+
"When you submit a post or answer a comment, WordPress will usually display "
|
2276 |
+
"your \"nickname\"."
|
2277 |
+
msgstr ""
|
2278 |
+
"Когда Вы публикуете пост или отвечаете на комментарий, WordPress обычно "
|
2279 |
+
"отображает Ваш «никнейм»."
|
2280 |
+
|
2281 |
+
#: ../admin/wp-security-user-accounts-menu.php:152
|
2282 |
+
msgid ""
|
2283 |
+
"By default the nickname is set to the login (or user) name of your account."
|
2284 |
+
msgstr "По умолчанию отображаемое имя пользователя идентично логину аккаунта."
|
2285 |
+
|
2286 |
+
#: ../admin/wp-security-user-accounts-menu.php:153
|
2287 |
+
msgid ""
|
2288 |
+
"From a security perspective, leaving your nickname the same as your user "
|
2289 |
+
"name is bad practice because it gives a hacker at least half of your "
|
2290 |
+
"account's login credentials."
|
2291 |
+
msgstr ""
|
2292 |
+
"Из соображений безопасности, этого допускать нельзя, так как это уже на "
|
2293 |
+
"половину облегчает хакеру работу - фактически, Вы сами сообщаете ему логин "
|
2294 |
+
"своего аккаунта."
|
2295 |
+
|
2296 |
+
#: ../admin/wp-security-user-accounts-menu.php:154
|
2297 |
+
msgid ""
|
2298 |
+
"Therefore to further tighten your site's security you are advised to change "
|
2299 |
+
"your <strong>nickname</strong> and <strong>Display name</strong> to be "
|
2300 |
+
"different from your <strong>Username</strong>."
|
2301 |
+
msgstr ""
|
2302 |
+
"Поэтому, чтобы ужесточить безопасность сайта, мы рекомендуем вам изменить "
|
2303 |
+
"свой <strong>никнейм</strong> и <strong>отображаемое имя</strong>, чтобы они "
|
2304 |
+
"отличались от Вашего <strong>имени пользователя</strong>."
|
2305 |
+
|
2306 |
+
#: ../admin/wp-security-user-accounts-menu.php:160
|
2307 |
+
msgid "Modify Accounts With Identical Login Name & Display Name"
|
2308 |
+
msgstr ""
|
2309 |
+
"Редактирование аккаунтов с совпадающими именем пользователя и отображаемым "
|
2310 |
+
"именем."
|
2311 |
+
|
2312 |
+
#: ../admin/wp-security-user-accounts-menu.php:169
|
2313 |
+
msgid ""
|
2314 |
+
"Your site currently has the following accounts which have an identical login "
|
2315 |
+
"name and display name."
|
2316 |
+
msgstr ""
|
2317 |
+
"Следующие аккаунты на Вашем сайте имеют имя пользователя, совпадающее с "
|
2318 |
+
"отображаемым именем."
|
2319 |
+
|
2320 |
+
#: ../admin/wp-security-user-accounts-menu.php:170
|
2321 |
+
msgid "Click on the link to edit the settings of that particular user account"
|
2322 |
+
msgstr "Перейдите по ссылке, чтобы внести изменения в соответствующий аккаунт"
|
2323 |
+
|
2324 |
+
#: ../admin/wp-security-user-accounts-menu.php:185
|
2325 |
+
msgid "No action required."
|
2326 |
+
msgstr "Действие не требуется."
|
2327 |
+
|
2328 |
+
#: ../admin/wp-security-user-accounts-menu.php:186
|
2329 |
+
msgid ""
|
2330 |
+
"Your site does not have a user account where the display name is identical "
|
2331 |
+
"to the username."
|
2332 |
+
msgstr ""
|
2333 |
+
"На Вашем сайте нет аккаунтов, в которых имя пользователя совпадает с "
|
2334 |
+
"отображаемым именем."
|
2335 |
+
|
2336 |
+
#: ../admin/wp-security-user-accounts-menu.php:197
|
2337 |
+
msgid "Password Tool"
|
2338 |
+
msgstr "Проверка пароля"
|
2339 |
+
|
2340 |
+
#: ../admin/wp-security-user-accounts-menu.php:200
|
2341 |
+
msgid ""
|
2342 |
+
"Poor password selection is one of the most common weak points of many sites "
|
2343 |
+
"and is usually the first thing a hacker will try to exploit when attempting "
|
2344 |
+
"to break into your site."
|
2345 |
+
msgstr ""
|
2346 |
+
"Плохой пароль - это наиболее распространенная уязвимость на большинстве "
|
2347 |
+
"сайтов, и, как правило, первое, что будет делать хакер, чтобы проникнуть на "
|
2348 |
+
"сайт - попытается подобрать пароль."
|
2349 |
+
|
2350 |
+
#: ../admin/wp-security-user-accounts-menu.php:201
|
2351 |
+
msgid ""
|
2352 |
+
"Many people fall into the trap of using a simple word or series of numbers "
|
2353 |
+
"as their password. Such a predictable and simple password would take a "
|
2354 |
+
"competent hacker merely minutes to guess your password by using a simple "
|
2355 |
+
"script which cycles through the easy and most common combinations."
|
2356 |
+
msgstr ""
|
2357 |
+
"Многие люди сами себе ставят ловушку, используя в качестве пароля простое "
|
2358 |
+
"слово или ряд цифр. На подбор такого предсказуемого пароля у опытного хакера "
|
2359 |
+
"уйдет всего несколько минут, так как для этого используются специальные "
|
2360 |
+
"программы с большими базами наиболее распространенных сочетаний букв, слов и "
|
2361 |
+
"цифр."
|
2362 |
+
|
2363 |
+
#: ../admin/wp-security-user-accounts-menu.php:202
|
2364 |
+
msgid ""
|
2365 |
+
"The longer and more complex your password is the harder it is for hackers to "
|
2366 |
+
"\"crack\" because more complex passwords require much greater computing "
|
2367 |
+
"power and time."
|
2368 |
+
msgstr ""
|
2369 |
+
"Чем длиннее и сложнее пароль, тем тяжелее будет хакеру его подобрать, потому "
|
2370 |
+
"что это требует гораздо больше вычислительных мощностей и времени."
|
2371 |
+
|
2372 |
+
#: ../admin/wp-security-user-accounts-menu.php:203
|
2373 |
+
msgid ""
|
2374 |
+
"This section contains a useful password strength tool which you can use to "
|
2375 |
+
"check whether your password is sufficiently strong enough."
|
2376 |
+
msgstr "Здесь Вы можете проверить свой пароль на надежность."
|
2377 |
+
|
2378 |
+
#: ../admin/wp-security-user-accounts-menu.php:208
|
2379 |
+
msgid "Password Strength Tool"
|
2380 |
+
msgstr "Проверка надежности пароля"
|
2381 |
+
|
2382 |
+
#: ../admin/wp-security-user-accounts-menu.php:213
|
2383 |
+
msgid "Start typing a password."
|
2384 |
+
msgstr "Введите пароль."
|
2385 |
+
|
2386 |
+
#: ../admin/wp-security-user-accounts-menu.php:238
|
2387 |
+
msgid "Nonce check failed on admin username change operation!"
|
2388 |
+
msgstr "Не удалось изменить имя пользователя!"
|
2389 |
+
|
2390 |
+
#: ../admin/wp-security-user-accounts-menu.php:245
|
2391 |
+
msgid "Username "
|
2392 |
+
msgstr "Такое имя пользователя"
|
2393 |
+
|
2394 |
+
#: ../admin/wp-security-user-accounts-menu.php:245
|
2395 |
+
msgid " already exists. Please enter another value. "
|
2396 |
+
msgstr "уже существует. Пожалуйста, введите другое значение."
|
2397 |
+
|
2398 |
+
#: ../admin/wp-security-user-accounts-menu.php:261
|
2399 |
+
msgid "The database update operation of the user account failed!"
|
2400 |
+
msgstr "Обновление учетной записи не удалось!"
|
2401 |
+
|
2402 |
+
#: ../admin/wp-security-user-accounts-menu.php:288
|
2403 |
+
msgid "You entered an invalid username. Please enter another value. "
|
2404 |
+
msgstr ""
|
2405 |
+
"Вы ввели неверное имя пользователя. Пожалуйста, введите другое значение."
|
2406 |
+
|
2407 |
+
#: ../admin/wp-security-user-accounts-menu.php:292
|
2408 |
+
msgid "Please enter a value for your username. "
|
2409 |
+
msgstr "Пожалуйста, введите имя пользователя."
|
2410 |
+
|
2411 |
+
#: ../admin/wp-security-user-accounts-menu.php:299
|
2412 |
+
msgid "Username Successfully Changed!"
|
2413 |
+
msgstr "Имя пользователя изменено!"
|
2414 |
+
|
2415 |
+
#: ../admin/wp-security-user-accounts-menu.php:319
|
2416 |
+
msgid "Account Login Name"
|
2417 |
+
msgstr "Имя пользователя"
|
2418 |
+
|
2419 |
+
#: ../admin/wp-security-user-login-menu.php:88
|
2420 |
+
msgid ""
|
2421 |
+
"You entered a non numeric value for the max login attempts field. It has "
|
2422 |
+
"been set to the default value."
|
2423 |
+
msgstr ""
|
2424 |
+
"Вы ввели нечисловое значение для максимального количества попыток "
|
2425 |
+
"авторизации. Установлено значение по умолчанию."
|
2426 |
+
|
2427 |
+
#: ../admin/wp-security-user-login-menu.php:95
|
2428 |
+
msgid ""
|
2429 |
+
"You entered a non numeric value for the login retry time period field. It "
|
2430 |
+
"has been set to the default value."
|
2431 |
+
msgstr ""
|
2432 |
+
"Вы ввели нечисловое значение для ограничения времени попыток авторизации. "
|
2433 |
+
"Установлено значение по умолчанию."
|
2434 |
+
|
2435 |
+
#: ../admin/wp-security-user-login-menu.php:102
|
2436 |
+
msgid ""
|
2437 |
+
"You entered a non numeric value for the lockout time length field. It has "
|
2438 |
+
"been set to the default value."
|
2439 |
+
msgstr ""
|
2440 |
+
"Вы ввели нечисловое значение для периода блокирования. Установлено значение "
|
2441 |
+
"по умолчанию."
|
2442 |
+
|
2443 |
+
#: ../admin/wp-security-user-login-menu.php:146
|
2444 |
+
msgid "Login Lockdown Configuration"
|
2445 |
+
msgstr "Настройки опций блокировки процесса авторизации"
|
2446 |
+
|
2447 |
+
#: ../admin/wp-security-user-login-menu.php:150
|
2448 |
+
msgid "One of the ways hackers try to compromise sites is via a "
|
2449 |
+
msgstr ""
|
2450 |
+
"Один из распространенных способов, используемых хакерами для проникновения "
|
2451 |
+
"на сайт, является "
|
2452 |
+
|
2453 |
+
#: ../admin/wp-security-user-login-menu.php:150
|
2454 |
+
msgid "Brute Force Login Attack"
|
2455 |
+
msgstr "Брутфорс-атака"
|
2456 |
+
|
2457 |
+
#: ../admin/wp-security-user-login-menu.php:151
|
2458 |
+
msgid ""
|
2459 |
+
"This is where attackers use repeated login attempts until they guess the "
|
2460 |
+
"password."
|
2461 |
+
msgstr "Так называются многократные попытки входа методом подбора паролей."
|
2462 |
+
|
2463 |
+
#: ../admin/wp-security-user-login-menu.php:152
|
2464 |
+
msgid ""
|
2465 |
+
"Apart from choosing strong passwords, monitoring and blocking IP addresses "
|
2466 |
+
"which are involved in repeated login failures in a short period of time is a "
|
2467 |
+
"very effective way to stop these types of attacks."
|
2468 |
+
msgstr ""
|
2469 |
+
"Помимо выбора надежных паролей, мониторинга и блокирования IP-адресов, "
|
2470 |
+
"участвующих в повторных неудачных попытках входа в течение короткого периода "
|
2471 |
+
"времени, блокировка количества попыток авторизации и ограничение периода "
|
2472 |
+
"времени для таких попыток, является очень эффективным способом "
|
2473 |
+
"противодействия этим типам атак."
|
2474 |
+
|
2475 |
+
#: ../admin/wp-security-user-login-menu.php:153
|
2476 |
+
#, php-format
|
2477 |
+
msgid ""
|
2478 |
+
"You may also want to checkout our %s feature for another secure way to "
|
2479 |
+
"protect against these types of attacks."
|
2480 |
+
msgstr ""
|
2481 |
+
"Вы также можете ознакомиться с другими %s опциями безопасности для защиты от "
|
2482 |
+
"такого типа атак."
|
2483 |
+
|
2484 |
+
#: ../admin/wp-security-user-login-menu.php:158
|
2485 |
+
msgid "Login Lockdown Options"
|
2486 |
+
msgstr "Опции блокировки авторизации"
|
2487 |
+
|
2488 |
+
#: ../admin/wp-security-user-login-menu.php:170
|
2489 |
+
msgid "Enable Login Lockdown Feature"
|
2490 |
+
msgstr "Включить опции блокировки попыток авторизации"
|
2491 |
+
|
2492 |
+
#: ../admin/wp-security-user-login-menu.php:173
|
2493 |
+
msgid ""
|
2494 |
+
"Check this if you want to enable the login lockdown feature and apply the "
|
2495 |
+
"settings below"
|
2496 |
+
msgstr ""
|
2497 |
+
"Отметьте эту опцию, если Вы хотите включить функции контроля за процессом "
|
2498 |
+
"авторизации, установите необходимые параметры и сохраните настройки"
|
2499 |
+
|
2500 |
+
#: ../admin/wp-security-user-login-menu.php:177
|
2501 |
+
msgid "Max Login Attempts"
|
2502 |
+
msgstr "Максимальное количество попыток входа"
|
2503 |
+
|
2504 |
+
#: ../admin/wp-security-user-login-menu.php:179
|
2505 |
+
msgid ""
|
2506 |
+
"Set the value for the maximum login retries before IP address is locked out"
|
2507 |
+
msgstr ""
|
2508 |
+
"Установите значение для максимального количества попыток входа, после чего "
|
2509 |
+
"IP-адрес будет заблокирован"
|
2510 |
+
|
2511 |
+
#: ../admin/wp-security-user-login-menu.php:183
|
2512 |
+
msgid "Login Retry Time Period (min)"
|
2513 |
+
msgstr "Ограничение времени попыток авторизации (минуты)"
|
2514 |
+
|
2515 |
+
#: ../admin/wp-security-user-login-menu.php:185
|
2516 |
+
msgid ""
|
2517 |
+
"If the maximum number of failed login attempts for a particular IP address "
|
2518 |
+
"occur within this time period the plugin will lock out that address"
|
2519 |
+
msgstr ""
|
2520 |
+
"Если максимальное число неудачных попыток входа в систему для конкретного "
|
2521 |
+
"адреса IP произойдет в течение этого периода времени, плагин заблокирует "
|
2522 |
+
"этот адрес"
|
2523 |
+
|
2524 |
+
#: ../admin/wp-security-user-login-menu.php:189
|
2525 |
+
msgid "Time Length of Lockout (min)"
|
2526 |
+
msgstr "Период блокирования (минуты)"
|
2527 |
+
|
2528 |
+
#: ../admin/wp-security-user-login-menu.php:191
|
2529 |
+
msgid ""
|
2530 |
+
"Set the length of time for which a particular IP address will be prevented "
|
2531 |
+
"from logging in"
|
2532 |
+
msgstr "Укажите период времени, на который будут блокироваться IP-адреса"
|
2533 |
+
|
2534 |
+
#: ../admin/wp-security-user-login-menu.php:195
|
2535 |
+
msgid "Display Generic Error Message"
|
2536 |
+
msgstr "Выводить сообщения об ошибках авторизации"
|
2537 |
+
|
2538 |
+
#: ../admin/wp-security-user-login-menu.php:198
|
2539 |
+
msgid ""
|
2540 |
+
"Check this if you want to show a generic error message when a login attempt "
|
2541 |
+
"fails"
|
2542 |
+
msgstr ""
|
2543 |
+
"Отметьте эту опцию, если Вы хотите, чтобы при неудачных попытках авторизации "
|
2544 |
+
"отображалось сообщение об ошибке"
|
2545 |
+
|
2546 |
+
#: ../admin/wp-security-user-login-menu.php:202
|
2547 |
+
msgid "Notify By Email"
|
2548 |
+
msgstr "Уведомлять по Email"
|
2549 |
+
|
2550 |
+
#: ../admin/wp-security-user-login-menu.php:205
|
2551 |
+
msgid ""
|
2552 |
+
"Check this if you want to receive an email when someone has been locked out "
|
2553 |
+
"due to maximum failed login attempts"
|
2554 |
+
msgstr ""
|
2555 |
+
"Отметьте эту опцию, если Вы хотите получать отчет о неудачных попытках "
|
2556 |
+
"авторизации на свой почтовый ящик"
|
2557 |
+
|
2558 |
+
#: ../admin/wp-security-user-login-menu.php:215
|
2559 |
+
msgid "Currently Locked Out IP Address Ranges"
|
2560 |
+
msgstr "Диапазон временно заблокированных IP-адресов"
|
2561 |
+
|
2562 |
+
#: ../admin/wp-security-user-login-menu.php:242
|
2563 |
+
msgid "Nonce check failed for delete all failed login records operation!"
|
2564 |
+
msgstr "Записи об ошибочных попытках авторизации удалить не удалось!"
|
2565 |
+
|
2566 |
+
#: ../admin/wp-security-user-login-menu.php:251
|
2567 |
+
msgid "User Login Feature - Delete all failed login records operation failed!"
|
2568 |
+
msgstr "Записи об ошибочных попытках авторизации удалить не удалось!"
|
2569 |
+
|
2570 |
+
#: ../admin/wp-security-user-login-menu.php:255
|
2571 |
+
msgid "All records from the Failed Logins table were deleted successfully!"
|
2572 |
+
msgstr "Все записи об ошибочных попытках авторизации удалены!"
|
2573 |
+
|
2574 |
+
#: ../admin/wp-security-user-login-menu.php:270
|
2575 |
+
msgid "This tab displays the failed login attempts for your site."
|
2576 |
+
msgstr "Здесь отображаются записи о безуспешных попытках входа на Ваш сайт."
|
2577 |
+
|
2578 |
+
#: ../admin/wp-security-user-login-menu.php:271
|
2579 |
+
msgid ""
|
2580 |
+
"The information below can be handy if you need to do security investigations "
|
2581 |
+
"because it will show you the IP range, username and ID (if applicable) and "
|
2582 |
+
"the time/date of the failed login attempt."
|
2583 |
+
msgstr ""
|
2584 |
+
"Приведенная ниже информация может пригодиться, если вам нужно провести "
|
2585 |
+
"исследование попыток авторизации - здесь отображается диапазон IP, имя "
|
2586 |
+
"пользователя и ID (если возможно) и время / дата неуспешной попытки входа на "
|
2587 |
+
"сайт."
|
2588 |
+
|
2589 |
+
#: ../admin/wp-security-user-login-menu.php:276
|
2590 |
+
msgid "Failed Login Records"
|
2591 |
+
msgstr "Ошибочные попытки авторизации"
|
2592 |
+
|
2593 |
+
#: ../admin/wp-security-user-login-menu.php:292
|
2594 |
+
#: ../admin/wp-security-user-login-menu.php:301
|
2595 |
+
msgid "Delete All Failed Login Records"
|
2596 |
+
msgstr "Удалить записи"
|
2597 |
+
|
2598 |
+
#: ../admin/wp-security-user-login-menu.php:298
|
2599 |
+
msgid ""
|
2600 |
+
"Click this button if you wish to delete all failed login records in one go."
|
2601 |
+
msgstr ""
|
2602 |
+
"Нажмите эту кнопку, если Вы хотите удалить все записи об ошибочных попытках "
|
2603 |
+
"авторизации."
|
2604 |
+
|
2605 |
+
#: ../admin/wp-security-user-login-menu.php:326
|
2606 |
+
msgid ""
|
2607 |
+
"You entered a non numeric value for the logout time period field. It has "
|
2608 |
+
"been set to the default value."
|
2609 |
+
msgstr ""
|
2610 |
+
"Вы ввели нечисловое значение периода времени. Установка сброшена к значению "
|
2611 |
+
"по умолчанию."
|
2612 |
+
|
2613 |
+
#: ../admin/wp-security-user-login-menu.php:348
|
2614 |
+
msgid ""
|
2615 |
+
"Setting an expiry period for your WP administration session is a simple way "
|
2616 |
+
"to protect against unauthorized access to your site from your computer."
|
2617 |
+
msgstr ""
|
2618 |
+
"Установка ограничения срока действия сессии администрирования - это простой "
|
2619 |
+
"способ защиты от несанкционированного доступа к вашему сайту с вашего "
|
2620 |
+
"компьютера."
|
2621 |
+
|
2622 |
+
#: ../admin/wp-security-user-login-menu.php:349
|
2623 |
+
msgid ""
|
2624 |
+
"This feature allows you to specify a time period in minutes after which the "
|
2625 |
+
"admin session will expire and the user will be forced to log back in."
|
2626 |
+
msgstr ""
|
2627 |
+
"Эта опция позволяет установить временной период, после истечения которого "
|
2628 |
+
"сессия администратора истекает и пользователю надо будет авторизоваться "
|
2629 |
+
"заново."
|
2630 |
+
|
2631 |
+
#: ../admin/wp-security-user-login-menu.php:354
|
2632 |
+
msgid "Force User Logout Options"
|
2633 |
+
msgstr "Опции автоматического разлогинивания пользователей"
|
2634 |
+
|
2635 |
+
#: ../admin/wp-security-user-login-menu.php:366
|
2636 |
+
msgid "Enable Force WP User Logout"
|
2637 |
+
msgstr "Включить авторазлогинивание"
|
2638 |
+
|
2639 |
+
#: ../admin/wp-security-user-login-menu.php:369
|
2640 |
+
msgid ""
|
2641 |
+
"Check this if you want to force a wp user to be logged out after a "
|
2642 |
+
"configured amount of time"
|
2643 |
+
msgstr ""
|
2644 |
+
"Отметьте эту опцию, чтобы автоматически прекращать авторизационную сессию "
|
2645 |
+
"пользователей по истечении определенного периода времени"
|
2646 |
+
|
2647 |
+
#: ../admin/wp-security-user-login-menu.php:373
|
2648 |
+
msgid "Logout the WP User After XX Minutes"
|
2649 |
+
msgstr "Разлогинить пользователя через"
|
2650 |
+
|
2651 |
+
#: ../admin/wp-security-user-login-menu.php:375
|
2652 |
+
msgid ""
|
2653 |
+
"(Minutes) The user will be forced to log back in after this time period has "
|
2654 |
+
"elapased."
|
2655 |
+
msgstr ""
|
2656 |
+
"(Минуты) Пользователь автоматически будет разлогинен по истечении этого "
|
2657 |
+
"периода времени."
|
2658 |
+
|
2659 |
+
#: ../admin/wp-security-user-login-menu.php:399
|
2660 |
+
msgid ""
|
2661 |
+
"This tab displays the login activity for WordPress admin accounts registered "
|
2662 |
+
"with your site."
|
2663 |
+
msgstr "Здесь отображается активность администраторов на Вашем сайте."
|
2664 |
+
|
2665 |
+
#: ../admin/wp-security-user-login-menu.php:400
|
2666 |
+
msgid ""
|
2667 |
+
"The information below can be handy if you need to do security investigations "
|
2668 |
+
"because it will show you the last 50 recent login events by username, IP "
|
2669 |
+
"address and time/date."
|
2670 |
+
msgstr ""
|
2671 |
+
"Приведенная ниже информация может пригодиться, если Вы будете проводить "
|
2672 |
+
"исследование пользовательской активности, так как здесь будут показаны "
|
2673 |
+
"последние 50 событий авторизации с данными имени пользователя, IP-адресом и "
|
2674 |
+
"временем входа."
|
2675 |
+
|
2676 |
+
#: ../admin/wp-security-user-login-menu.php:405
|
2677 |
+
msgid "Account Activity Logs"
|
2678 |
+
msgstr "Журнал активности аккаунта"
|
2679 |
+
|
2680 |
+
#: ../admin/wp-security-user-login-menu.php:470
|
2681 |
+
msgid "The selected records were deleted successfully!"
|
2682 |
+
msgstr "Выбранные записи успешно удалены!"
|
2683 |
+
|
2684 |
+
#: ../admin/wp-security-user-login-menu.php:479
|
2685 |
+
msgid "The selected record was deleted successfully!"
|
2686 |
+
msgstr "Выбранная запись успешно удалена!"
|
2687 |
+
|
2688 |
+
#: ../admin/wp-security-whois-menu.php:68
|
2689 |
+
msgid "WHOIS Lookup Information"
|
2690 |
+
msgstr "Результаты WHOIS-поиска"
|
2691 |
+
|
2692 |
+
#: ../admin/wp-security-whois-menu.php:71
|
2693 |
+
msgid ""
|
2694 |
+
"This feature allows you to look up more detailed information about an IP "
|
2695 |
+
"address or domain name by querying the WHOIS API."
|
2696 |
+
msgstr ""
|
2697 |
+
"Эта функция позволяет получить детальную информацию об IP-адресе или домену."
|
2698 |
+
|
2699 |
+
#: ../admin/wp-security-whois-menu.php:77
|
2700 |
+
msgid "Perform a WHOIS Lookup for an IP or Domain Name"
|
2701 |
+
msgstr "Выполнить WHOIS-поиск по IP или домену"
|
2702 |
+
|
2703 |
+
#: ../admin/wp-security-whois-menu.php:84
|
2704 |
+
msgid "Enter IP Address or Domain Name"
|
2705 |
+
msgstr "Введите IP-адрес или доменное имя"
|
2706 |
+
|
2707 |
+
#: ../admin/wp-security-whois-menu.php:86
|
2708 |
+
msgid ""
|
2709 |
+
"Enter an IP address or domain name. Example: 111.11.12.13 OR some-domain-"
|
2710 |
+
"name.com"
|
2711 |
+
msgstr ""
|
2712 |
+
"Введите IP-адрес или доменное имя. Пример: 111.11.12.13 или some-domain-name."
|
2713 |
+
"com"
|
2714 |
+
|
2715 |
+
#: ../admin/wp-security-whois-menu.php:90
|
2716 |
+
msgid "Perform IP or Domain Lookup"
|
2717 |
+
msgstr "Выполнить поиск по IP или домену"
|
2718 |
+
|
2719 |
+
#: ../admin/wp-security-whois-menu.php:110
|
2720 |
+
msgid "WHOIS lookup successfully completed. Please see the results below:"
|
2721 |
+
msgstr "WHOIS-поиск закончен. Результаты Вы можете видеть ниже:"
|
2722 |
+
|
2723 |
+
#: ../admin/wp-security-whois-menu.php:122
|
2724 |
+
msgid ""
|
2725 |
+
"You have entered an incorrectly formatted IP address or domain name. Please "
|
2726 |
+
"try again."
|
2727 |
+
msgstr ""
|
2728 |
+
"Вы ввели некорректный IP-адрес или доменное имя. Пожалуйста, попробуйте еще "
|
2729 |
+
"раз."
|
2730 |
+
|
2731 |
+
#: ../admin/general/wp-security-list-table.php:178
|
2732 |
+
msgid "No items found."
|
2733 |
+
msgstr "Ничего не найдено."
|
2734 |
+
|
2735 |
+
#: ../admin/general/wp-security-list-table.php:281
|
2736 |
+
msgid "Bulk Actions"
|
2737 |
+
msgstr "Комплексные действия"
|
2738 |
+
|
2739 |
+
#: ../admin/general/wp-security-list-table.php:291
|
2740 |
+
msgid "Apply"
|
2741 |
+
msgstr "Применить"
|
2742 |
+
|
2743 |
+
#: ../admin/general/wp-security-list-table.php:365
|
2744 |
+
msgid "Show all dates"
|
2745 |
+
msgstr "Отобразить все даты"
|
2746 |
+
|
2747 |
+
#: ../admin/general/wp-security-list-table.php:378
|
2748 |
+
#, php-format
|
2749 |
+
msgid "%1$s %2$d"
|
2750 |
+
msgstr "%1$s %2$d"
|
2751 |
+
|
2752 |
+
#: ../admin/general/wp-security-list-table.php:394
|
2753 |
+
msgid "List View"
|
2754 |
+
msgstr "Список"
|
2755 |
+
|
2756 |
+
#: ../admin/general/wp-security-list-table.php:395
|
2757 |
+
msgid "Excerpt View"
|
2758 |
+
msgstr "Краткий обзор"
|
2759 |
+
|
2760 |
+
#: ../admin/general/wp-security-list-table.php:421
|
2761 |
+
#, php-format
|
2762 |
+
msgid "%s pending"
|
2763 |
+
msgstr "%s в ожидании"
|
2764 |
+
|
2765 |
+
#: ../admin/general/wp-security-list-table.php:653
|
2766 |
+
msgid "Select All"
|
2767 |
+
msgstr "Выбрать все"
|
2768 |
+
|
2769 |
+
#: ../classes/wp-security-backup.php:110
|
2770 |
+
msgid "All In One WP Security - Site Database Backup"
|
2771 |
+
msgstr "BAll In One WP Security - Резервное копирование базы данных"
|
2772 |
+
|
2773 |
+
#: ../classes/wp-security-backup.php:112
|
2774 |
+
msgid "Attached is your latest DB backup file for site URL"
|
2775 |
+
msgstr "Прикреплена последняя резервная копия базы данных Вашего сайта"
|
2776 |
+
|
2777 |
+
#: ../classes/wp-security-backup.php:112
|
2778 |
+
msgid " generated on"
|
2779 |
+
msgstr "создано по"
|
2780 |
+
|
2781 |
+
#: ../classes/wp-security-user-login.php:39
|
2782 |
+
msgid ""
|
2783 |
+
"<strong>ERROR</strong>: Login failed because your IP address has been "
|
2784 |
+
"blocked due to too many failed login attempts.\n"
|
2785 |
+
" Please contact the administrator."
|
2786 |
+
msgstr ""
|
2787 |
+
"<strong>ОШИБКА</strong>: Авторизация не удалась, так как Ваш IP-адрес был "
|
2788 |
+
"заблокирован по причине слишком большого количества попыток авторизации.\n"
|
2789 |
+
"Пожалуйста, свяжитесь с администратором."
|
2790 |
+
|
2791 |
+
#: ../classes/wp-security-user-login.php:48
|
2792 |
+
msgid "<strong>ERROR</strong>: The username field is empty."
|
2793 |
+
msgstr ""
|
2794 |
+
"<strong>ОШИБКА</strong>: Поле для указания имени пользователя незаполнено."
|
2795 |
+
|
2796 |
+
#: ../classes/wp-security-user-login.php:52
|
2797 |
+
msgid "<strong>ERROR</strong>: The password field is empty."
|
2798 |
+
msgstr "<strong>ERROR</strong>: Поле для указания пароля незаполнено."
|
2799 |
+
|
2800 |
+
#: ../classes/wp-security-user-login.php:64
|
2801 |
+
msgid "unknown"
|
2802 |
+
msgstr "неизвестно"
|
2803 |
+
|
2804 |
+
#: ../classes/wp-security-user-login.php:69
|
2805 |
+
#: ../classes/wp-security-user-login.php:92
|
2806 |
+
msgid "<strong>ERROR</strong>: Invalid login credentials."
|
2807 |
+
msgstr "<strong>ОШИБКА</strong>: Неверные логин или пароль"
|
2808 |
+
|
2809 |
+
#: ../classes/wp-security-user-login.php:72
|
2810 |
+
msgid "<strong>ERROR</strong>: Invalid username."
|
2811 |
+
msgstr "<strong>ОШИБКА</strong>: Неверное имя пользователя."
|
2812 |
+
|
2813 |
+
#: ../classes/wp-security-user-login.php:95
|
2814 |
+
#, php-format
|
2815 |
+
msgid ""
|
2816 |
+
"<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password "
|
2817 |
+
"Lost and Found\">Lost your password</a>?"
|
2818 |
+
msgstr ""
|
2819 |
+
"<strong>ОШИБКА</strong>: Неверный пароль. <a href=\"%s\" title="
|
2820 |
+
"\"Восстановление пароля\">Забыли свой пароль</a>?"
|
2821 |
+
|
2822 |
+
#: ../classes/wp-security-user-login.php:217
|
2823 |
+
msgid "Site Lockout Notification"
|
2824 |
+
msgstr "Уведомления блокировки"
|
2825 |
+
|
2826 |
+
#: ../classes/wp-security-user-login.php:218
|
2827 |
+
msgid ""
|
2828 |
+
"A lockdown event has occurred due to too many failed login attempts with the "
|
2829 |
+
"following user details"
|
2830 |
+
msgstr ""
|
2831 |
+
"Пользователь был заблокирован из-за слишком большого количества попыток "
|
2832 |
+
"неудачного входа со следующими данными"
|
2833 |
+
|
2834 |
+
#: ../classes/wp-security-user-login.php:219
|
2835 |
+
msgid "Username: "
|
2836 |
+
msgstr "Имя пользователя:"
|
2837 |
+
|
2838 |
+
#: ../classes/wp-security-user-login.php:220
|
2839 |
+
msgid "IP Range: "
|
2840 |
+
msgstr "Диапазон IP-адресов:"
|
2841 |
+
|
2842 |
+
#: ../classes/wp-security-user-login.php:221
|
2843 |
+
msgid ""
|
2844 |
+
"Log into your site's WordPress administration panel to see the duration of "
|
2845 |
+
"the lockout or to unlock the user."
|
2846 |
+
msgstr ""
|
2847 |
+
"Авторизуйтесь в админ-панели блога, чтобы видеть продолжительность "
|
2848 |
+
"блокировки или чтобы разблокировать пользователя."
|
2849 |
+
|
2850 |
+
#: ../classes/wp-security-user-login.php:336
|
2851 |
+
#, php-format
|
2852 |
+
msgid ""
|
2853 |
+
"Your session has expired because it has been over %d minutes since your last "
|
2854 |
+
"login."
|
2855 |
+
msgstr ""
|
2856 |
+
"Ваша сессия была прекращена, поскольку прошло уже более %d минут с тех пор, "
|
2857 |
+
"как Вы авторизовались последний раз."
|
2858 |
+
|
2859 |
+
#: ../classes/wp-security-user-login.php:337
|
2860 |
+
#: ../classes/wp-security-user-login.php:341
|
2861 |
+
msgid "Please log back in to continue."
|
2862 |
+
msgstr "Для продолжения авторизуйтесь снова."
|
2863 |
+
|
2864 |
+
#: ../classes/wp-security-user-login.php:340
|
2865 |
+
msgid "You were logged out because you just changed the \"admin\" username."
|
2866 |
+
msgstr ""
|
2867 |
+
"Ваша авторизационная сессия была прекращена, так как Вы только что изменили "
|
2868 |
+
"имя пользователя «admin»."
|
2869 |
+
|
2870 |
+
#: ../classes/wp-security-utility-ip-address.php:79
|
2871 |
+
#: ../classes/wp-security-utility-ip-address.php:98
|
2872 |
+
#: ../classes/wp-security-utility-ip-address.php:113
|
2873 |
+
#: ../classes/wp-security-utility-ip-address.php:128
|
2874 |
+
msgid " is not a valid ip address format."
|
2875 |
+
msgstr "не является правильным форматом IP-адреса."
|
2876 |
+
|
2877 |
+
#: ../classes/wp-security-utility-ip-address.php:136
|
2878 |
+
msgid "You cannot ban your own IP address: "
|
2879 |
+
msgstr "Свой собственный IP-адрес забанить нельзя:"
|
languages/aiowpsecurity.pot
CHANGED
@@ -1,409 +1,367 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
-
"POT-Creation-Date: 2013-
|
5 |
-
"PO-Revision-Date: 2013-
|
6 |
-
"Last-Translator:
|
7 |
"Language-Team: \n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
"X-Generator: Poedit 1.5.7\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
-
"X-Poedit-Basepath:
|
14 |
-
"X-Poedit-SearchPath-0:
|
15 |
|
16 |
-
#:
|
17 |
msgid "WP Security"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#:
|
21 |
msgid "Dashboard"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#:
|
25 |
msgid "Settings"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#:
|
29 |
msgid "User Accounts"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#:
|
33 |
msgid "User Login"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#:
|
37 |
msgid "Database Security"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#:
|
41 |
msgid "Filesystem Security"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#:
|
45 |
msgid "WHOIS Lookup"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#:
|
49 |
msgid "Blacklist Manager"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#:
|
53 |
msgid "Firewall"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
msgid "Maintenance"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#:
|
61 |
msgid "Settings successfully updated."
|
62 |
msgstr ""
|
63 |
|
64 |
-
#:
|
65 |
msgid "The selected record(s) deleted successfully!"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#:
|
69 |
msgid "Nonce check failed for save blacklist settings!"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#:
|
73 |
-
#:
|
|
|
74 |
msgid ""
|
75 |
"The plugin was unable to write to the .htaccess file. Please edit file "
|
76 |
"manually."
|
77 |
msgstr ""
|
78 |
|
79 |
-
#:
|
80 |
msgid "Ban IPs or User Agents"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#:
|
84 |
msgid ""
|
85 |
"The All In One WP Security Blacklist feature gives you the option of banning "
|
86 |
"certain host IP addresses or ranges and also user agents."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#:
|
90 |
msgid ""
|
91 |
"This feature will deny total site access for users which have IP addresses "
|
92 |
"or user agents matching those which you have configured in the settings "
|
93 |
"below."
|
94 |
msgstr ""
|
95 |
|
96 |
-
#:
|
97 |
msgid ""
|
98 |
"The plugin achieves this by making appropriate modifications to your ."
|
99 |
"htaccess file."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#:
|
103 |
msgid ""
|
104 |
"By blocking people via the .htaccess file your are using the most secure "
|
105 |
"first line of defence which denies all access to blacklisted visitors as "
|
106 |
"soon as they hit your hosting server."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#:
|
110 |
msgid "IP Hosts and User Agent Blacklist Settings"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#:
|
114 |
msgid "Enable IP or User Agent Blacklisting"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#:
|
118 |
msgid ""
|
119 |
"Check this if you want to enable the banning (or blacklisting) of selected "
|
120 |
"IP addresses and/or user agents specified in the settings below"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#:
|
124 |
msgid "Enter IP Addresses:"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#:
|
128 |
msgid "Enter one or more IP addresses or IP ranges."
|
129 |
msgstr ""
|
130 |
|
131 |
-
#:
|
132 |
-
#:
|
133 |
-
#:
|
134 |
-
#:
|
135 |
-
#:
|
136 |
-
#:
|
137 |
-
#:
|
138 |
-
#:
|
139 |
-
#:
|
140 |
-
#:
|
141 |
-
#:
|
142 |
-
#:
|
143 |
-
#:
|
144 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
145 |
msgid "More Info"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#:
|
|
|
149 |
msgid "Each IP address must be on a new line."
|
150 |
msgstr ""
|
151 |
|
152 |
-
#:
|
|
|
153 |
msgid ""
|
154 |
"To specify an IP range use a wildcard \"*\" character. Acceptable ways to "
|
155 |
"use wildcards is shown in the examples below:"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#:
|
|
|
159 |
msgid "Example 1: 195.47.89.*"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#:
|
|
|
163 |
msgid "Example 2: 195.47.*.*"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#:
|
|
|
167 |
msgid "Example 3: 195.*.*.*"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#:
|
171 |
msgid "Enter User Agents:"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#:
|
175 |
msgid "Enter one or more user agent strings."
|
176 |
msgstr ""
|
177 |
|
178 |
-
#:
|
179 |
msgid "Each user agent string must be on a new line."
|
180 |
msgstr ""
|
181 |
|
182 |
-
#:
|
183 |
msgid "Example 1 - A single user agent string to block:"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#:
|
187 |
msgid "Example 2 - A list of more than 1 user agent strings to block"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#:
|
191 |
-
#:
|
192 |
-
#:
|
193 |
-
#:
|
194 |
-
#:
|
195 |
-
#:
|
|
|
|
|
|
|
196 |
msgid "Save Settings"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#:
|
200 |
-
msgid "Nonce check failed for list SPAM comment IPs!"
|
201 |
-
msgstr ""
|
202 |
-
|
203 |
-
#: ../admin/wp-security-blacklist-menu.php:230
|
204 |
-
msgid ""
|
205 |
-
"You entered a non numeric value for the minimum SPAM comments per IP field. "
|
206 |
-
"It has been set to the default value."
|
207 |
-
msgstr ""
|
208 |
-
|
209 |
-
#: ../admin/wp-security-blacklist-menu.php:236
|
210 |
-
#: ../admin/wp-security-database-menu.php:248
|
211 |
-
#: ../admin/wp-security-user-login-menu.php:115
|
212 |
-
#: ../admin/wp-security-user-login-menu.php:332
|
213 |
-
msgid "Attention!"
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
#: ../admin/wp-security-blacklist-menu.php:242
|
217 |
-
#, php-format
|
218 |
-
msgid ""
|
219 |
-
"Displaying results for IP addresses which have posted a minimum of %s SPAM "
|
220 |
-
"comments"
|
221 |
-
msgstr ""
|
222 |
-
|
223 |
-
#: ../admin/wp-security-blacklist-menu.php:258
|
224 |
-
msgid ""
|
225 |
-
"This tab displays a list of the IP addresses of the people or bots who have "
|
226 |
-
"left SPAM comments on your site."
|
227 |
-
msgstr ""
|
228 |
-
|
229 |
-
#: ../admin/wp-security-blacklist-menu.php:259
|
230 |
-
msgid ""
|
231 |
-
"This information can be handy for identifying the most persistent IP "
|
232 |
-
"addresses or ranges used by spammers."
|
233 |
-
msgstr ""
|
234 |
-
|
235 |
-
#: ../admin/wp-security-blacklist-menu.php:260
|
236 |
-
msgid ""
|
237 |
-
"By inspecting the IP address data coming from spammers you will be in a "
|
238 |
-
"better position to determine which addresses or address ranges you should "
|
239 |
-
"block by adding them to your blacklist."
|
240 |
-
msgstr ""
|
241 |
-
|
242 |
-
#: ../admin/wp-security-blacklist-menu.php:261
|
243 |
-
msgid ""
|
244 |
-
"To add one or more of the IP addresses displayed in the table below to your "
|
245 |
-
"blacklist, simply click the \"Block\" link for the individual row or select "
|
246 |
-
"more than one address \n"
|
247 |
-
" using the checkboxes and then choose the \"block"
|
248 |
-
"\" option from the Bulk Actions dropdown list and click the \"Apply\" button."
|
249 |
-
msgstr ""
|
250 |
-
|
251 |
-
#: ../admin/wp-security-blacklist-menu.php:267
|
252 |
-
msgid "List SPAMMER IP Addresses"
|
253 |
-
msgstr ""
|
254 |
-
|
255 |
-
#: ../admin/wp-security-blacklist-menu.php:273
|
256 |
-
msgid "Minimum number of SPAM comments per IP"
|
257 |
-
msgstr ""
|
258 |
-
|
259 |
-
#: ../admin/wp-security-blacklist-menu.php:275
|
260 |
-
msgid ""
|
261 |
-
"This field allows you to list only those IP addresses which have been used "
|
262 |
-
"to post X or more SPAM comments."
|
263 |
-
msgstr ""
|
264 |
-
|
265 |
-
#: ../admin/wp-security-blacklist-menu.php:279
|
266 |
-
msgid ""
|
267 |
-
"Example 1: Setting this value to \"0\" or \"1\" will list ALL IP addresses "
|
268 |
-
"which were used to submit SPAM comments."
|
269 |
-
msgstr ""
|
270 |
-
|
271 |
-
#: ../admin/wp-security-blacklist-menu.php:280
|
272 |
-
msgid ""
|
273 |
-
"Example 2: Setting this value to \"5\" will list only those IP addresses "
|
274 |
-
"which were used to submit 5 SPAM comments or more on your site."
|
275 |
-
msgstr ""
|
276 |
-
|
277 |
-
#: ../admin/wp-security-blacklist-menu.php:287
|
278 |
-
msgid "Find IP Addresses"
|
279 |
-
msgstr ""
|
280 |
-
|
281 |
-
#: ../admin/wp-security-blacklist-menu.php:291
|
282 |
-
msgid "SPAMMER IP Address Results"
|
283 |
-
msgstr ""
|
284 |
-
|
285 |
-
#: ../admin/wp-security-dashboard-menu.php:111
|
286 |
msgid "Total Achievable Points: "
|
287 |
msgstr ""
|
288 |
|
289 |
-
#:
|
290 |
msgid "Current Score of Your Site: "
|
291 |
msgstr ""
|
292 |
|
293 |
-
#:
|
294 |
msgid ""
|
295 |
"Below is the current status of the critical features that you should "
|
296 |
"activate on your site to achieve a minimum level of recommended security"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#:
|
300 |
msgid "Admin Username"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#:
|
304 |
msgid "Login Lockdown"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#:
|
308 |
msgid "File Permission"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#:
|
312 |
msgid "Basic Firewall"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#:
|
316 |
msgid ""
|
317 |
"Maintenance mode is currently enabled. Remember to turn it off when you are "
|
318 |
"done"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#:
|
322 |
msgid "Maintenance mode is currently off."
|
323 |
msgstr ""
|
324 |
|
325 |
-
#:
|
326 |
msgid "Maintenance Mode"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#:
|
330 |
-
|
331 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
332 |
msgid "Name"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#:
|
336 |
msgid "Version"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#:
|
340 |
msgid "Plugin URL"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#:
|
344 |
msgid "Nonce check failed for DB prefix change operation!"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#:
|
348 |
msgid ""
|
349 |
"The plugin has detected that it cannot write to the wp-config.php file. This "
|
350 |
"feature can only be used if the plugin can successfully write to the wp-"
|
351 |
"config.php file."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#:
|
355 |
msgid "Please enter a value for the DB prefix."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#:
|
359 |
msgid ""
|
360 |
"<strong>ERROR</strong>: The table prefix can only contain numbers, letters, "
|
361 |
"and underscores."
|
362 |
msgstr ""
|
363 |
|
364 |
-
#:
|
365 |
msgid "Change Database Prefix"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#:
|
369 |
msgid ""
|
370 |
"Your WordPress DB is the most important asset of your website because it "
|
371 |
"contains a lot of your site's precious information."
|
372 |
msgstr ""
|
373 |
|
374 |
-
#:
|
375 |
msgid ""
|
376 |
"The DB is also a target for hackers via methods such as SQL injections and "
|
377 |
"malicious and automated code which targets certain tables."
|
378 |
msgstr ""
|
379 |
|
380 |
-
#:
|
381 |
msgid ""
|
382 |
"One way to add a layer of protection for your DB is to change the default "
|
383 |
"WordPress table prefix from \"wp_\" to something else which will be "
|
384 |
"difficult for hackers to guess."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#:
|
388 |
msgid ""
|
389 |
"This feature allows you to easily change the prefix to a value of your "
|
390 |
"choice or to a random value set by this plugin."
|
391 |
msgstr ""
|
392 |
|
393 |
-
#:
|
394 |
msgid "DB Prefix Options"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#:
|
398 |
#, php-format
|
399 |
msgid "It is recommended that you perform a %s before using this feature"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#:
|
403 |
msgid "Current DB Table Prefix"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#:
|
407 |
msgid ""
|
408 |
"Your site is currently using the default WordPress DB prefix value of \"wp_"
|
409 |
"\". \n"
|
@@ -411,181 +369,196 @@ msgid ""
|
|
411 |
"consider changing the DB prefix value to another value."
|
412 |
msgstr ""
|
413 |
|
414 |
-
#:
|
415 |
msgid "Generate New DB Table Prefix"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#:
|
419 |
msgid ""
|
420 |
"Check this if you want the plugin to generate a random 6 character string "
|
421 |
"for the table prefix"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#:
|
425 |
msgid "OR"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#:
|
429 |
msgid ""
|
430 |
"Choose your own DB prefix by specifying a string which contains letters and/"
|
431 |
"or numbers and/or underscores. Example: xyz_"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#:
|
435 |
msgid "Change DB Prefix"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#:
|
439 |
-
#:
|
440 |
msgid "Nonce check failed for manual DB backup operation!"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#:
|
444 |
msgid ""
|
445 |
-
"DB Backup was successfully completed!
|
446 |
-
"
|
|
|
447 |
msgstr ""
|
448 |
|
449 |
-
#:
|
450 |
-
msgid "Your DB Backup File: "
|
451 |
msgstr ""
|
452 |
|
453 |
-
#:
|
454 |
msgid "DB Backup failed. Please check the permissions of the backup directory."
|
455 |
msgstr ""
|
456 |
|
457 |
-
#:
|
|
|
458 |
msgid ""
|
459 |
"You entered a non numeric value for the \"backup time interval\" field. It "
|
460 |
"has been set to the default value."
|
461 |
msgstr ""
|
462 |
|
463 |
-
#:
|
464 |
msgid ""
|
465 |
"You entered a non numeric value for the \"number of backup files to keep\" "
|
466 |
"field. It has been set to the default value."
|
467 |
msgstr ""
|
468 |
|
469 |
-
#:
|
470 |
-
#:
|
|
|
471 |
msgid ""
|
472 |
"You have entered an incorrect email address format. It has been set to your "
|
473 |
"WordPress admin email as default."
|
474 |
msgstr ""
|
475 |
|
476 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
msgid "Manual Backup"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#:
|
481 |
msgid "To create a new DB backup just click on the button below."
|
482 |
msgstr ""
|
483 |
|
484 |
-
#:
|
485 |
msgid "Create DB Backup Now"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#:
|
489 |
msgid "Automated Scheduled Backups"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#:
|
493 |
msgid "Enable Automated Scheduled Backups"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#:
|
497 |
msgid ""
|
498 |
"Check this if you want the system to automatically generate backups "
|
499 |
"periodically based on the settings below"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#:
|
503 |
msgid "Backup Time Interval"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#:
|
|
|
507 |
msgid "Hours"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#:
|
|
|
511 |
msgid "Days"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#:
|
|
|
515 |
msgid "Weeks"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#:
|
519 |
msgid "Set the value for how often you would like an automated backup to occur"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#:
|
523 |
msgid "Number of Backup Files To Keep"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#:
|
527 |
msgid ""
|
528 |
"Thie field allows you to choose the number of backup files you would like to "
|
529 |
"keep in the backup directory"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#:
|
533 |
msgid "Send Backup File Via Email"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#:
|
537 |
msgid ""
|
538 |
"Check this if you want the system to email you the backup file after a DB "
|
539 |
"backup has been performed"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#:
|
543 |
-
#:
|
|
|
544 |
msgid "Enter an email address"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#:
|
548 |
msgid "Starting DB prefix change operations....."
|
549 |
msgstr ""
|
550 |
|
551 |
-
#:
|
552 |
#, php-format
|
553 |
msgid ""
|
554 |
"Your WordPress system has a total of %s tables and your new DB prefix will "
|
555 |
"be: %s"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#:
|
559 |
-
#:
|
560 |
msgid ""
|
561 |
"Failed to make a backup of the wp-config.php file. This operation will not "
|
562 |
"go ahead."
|
563 |
msgstr ""
|
564 |
|
565 |
-
#:
|
566 |
msgid "A backup copy of your wp-config.php file was created successfully!"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#:
|
570 |
#, php-format
|
571 |
msgid "%s table name update failed"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#:
|
575 |
#, php-format
|
576 |
msgid "Please change the prefix manually for the above tables to: %s"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#:
|
580 |
#, php-format
|
581 |
msgid "%s tables had their prefix updated successfully!"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#:
|
585 |
msgid "wp-config.php file was updated successfully!"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#:
|
589 |
#, php-format
|
590 |
msgid ""
|
591 |
"The \"wp-config.php\" file was not able to be modified. Please modify this "
|
@@ -594,409 +567,596 @@ msgid ""
|
|
594 |
"value to that variable: %s"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#:
|
598 |
msgid "There was an error when updating the options table."
|
599 |
msgstr ""
|
600 |
|
601 |
-
#:
|
602 |
msgid ""
|
603 |
"The options table records which had references to the old DB prefix were "
|
604 |
"updated successfully!"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#:
|
608 |
#, php-format
|
609 |
msgid ""
|
610 |
"Error updating user_meta table where new meta_key = %s, old meta_key = %s "
|
611 |
"and user_id = %s."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#:
|
615 |
msgid ""
|
616 |
"The usermeta table records which had references to the old DB prefix were "
|
617 |
"updated successfully!"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#:
|
621 |
msgid "DB prefix change tasks have been completed."
|
622 |
msgstr ""
|
623 |
|
624 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
625 |
#, php-format
|
626 |
msgid "The permissions for %s were succesfully changed to %s"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#:
|
630 |
#, php-format
|
631 |
msgid "Unable to change permissions for %s!"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#:
|
635 |
msgid "File Permissions Scan"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#:
|
639 |
msgid ""
|
640 |
"Your WordPress file and folder permission settings govern the accessability "
|
641 |
"and read/write privileges of the files and folders which make up your WP "
|
642 |
"installation."
|
643 |
msgstr ""
|
644 |
|
645 |
-
#:
|
646 |
msgid ""
|
647 |
"Your WP installation already comes with reasonably secure file permission "
|
648 |
"settings for the filesystem."
|
649 |
msgstr ""
|
650 |
|
651 |
-
#:
|
652 |
msgid ""
|
653 |
"However, sometimes people or other plugins modify the various permission "
|
654 |
"settings of certain core WP folders or files such that they end up making "
|
655 |
"their site less secure because they chose the wrong permission values."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#:
|
659 |
msgid ""
|
660 |
"This feature will scan the critical WP core folders and files and will "
|
661 |
"highlight any permission settings which are insecure."
|
662 |
msgstr ""
|
663 |
|
664 |
-
#:
|
665 |
msgid "WP Directory and File Permissions Scan Results"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#:
|
669 |
-
#:
|
670 |
msgid "File/Folder"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#:
|
674 |
-
#:
|
675 |
msgid "Current Permissions"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#:
|
679 |
-
#:
|
680 |
msgid "Recommended Permissions"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#:
|
684 |
-
#:
|
685 |
msgid "Recommended Action"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
689 |
msgid "File Editing"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#:
|
693 |
msgid ""
|
694 |
"The Wordpress Dashboard by default allows administrators to edit PHP files, "
|
695 |
"such as plugin and theme files."
|
696 |
msgstr ""
|
697 |
|
698 |
-
#:
|
699 |
msgid ""
|
700 |
"This is often the first tool an attacker will use if able to login, since it "
|
701 |
"allows code execution."
|
702 |
msgstr ""
|
703 |
|
704 |
-
#:
|
705 |
msgid ""
|
706 |
"This feature will disable the ability for people to edit PHP files via the "
|
707 |
"dashboard."
|
708 |
msgstr ""
|
709 |
|
710 |
-
#:
|
711 |
msgid "Disable PHP File Editing"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#:
|
715 |
msgid "Disable Ability To Edit PHP Files"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#:
|
719 |
msgid ""
|
720 |
"Check this if you want to remove the ability for people to edit PHP files "
|
721 |
"via the WP dashboard"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#:
|
725 |
msgid ""
|
726 |
"You have successfully saved the Prevent Access to Default WP Files "
|
727 |
"configuration."
|
728 |
msgstr ""
|
729 |
|
730 |
-
#:
|
731 |
-
#:
|
732 |
-
#:
|
733 |
-
#:
|
734 |
-
#:
|
|
|
735 |
msgid ""
|
736 |
"Could not write to the .htaccess file. Please check the file permissions."
|
737 |
msgstr ""
|
738 |
|
739 |
-
#:
|
740 |
msgid "WordPress Files"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#:
|
744 |
#, php-format
|
745 |
msgid ""
|
746 |
"This feature allows you to prevent access to files such as %s, %s and %s "
|
747 |
"which are delivered with all WP installations."
|
748 |
msgstr ""
|
749 |
|
750 |
-
#:
|
751 |
msgid ""
|
752 |
"By preventing access to these files you are hiding some key pieces of "
|
753 |
"information (such as WordPress version info) from potential hackers."
|
754 |
msgstr ""
|
755 |
|
756 |
-
#:
|
757 |
msgid "Prevent Access to Default WP Files"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#:
|
761 |
msgid "Prevent Access to WP Default Install Files"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#:
|
765 |
msgid ""
|
766 |
"Check this if you want to prevent access to readme.html, license.txt and wp-"
|
767 |
"config-sample.php."
|
768 |
msgstr ""
|
769 |
|
770 |
-
#:
|
771 |
msgid "Save Setting"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#:
|
775 |
msgid "System Logs"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#:
|
779 |
msgid ""
|
780 |
"Sometimes your hosting platform will produce error or warning logs in a file "
|
781 |
"called \"error_log\"."
|
782 |
msgstr ""
|
783 |
|
784 |
-
#:
|
785 |
msgid ""
|
786 |
"Depending on the nature and cause of the error or warning, your hosting "
|
787 |
"server can create multiple instances of this file in numerous directory "
|
788 |
"locations of your WordPress installation."
|
789 |
msgstr ""
|
790 |
|
791 |
-
#:
|
792 |
msgid ""
|
793 |
"By occassionally viewing the contents of these logs files you can keep "
|
794 |
"informed of any underlying problems on your system which you might need to "
|
795 |
"address."
|
796 |
msgstr ""
|
797 |
|
798 |
-
#:
|
799 |
msgid "View System Logs"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#:
|
803 |
msgid "View Latest System Logs"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#:
|
807 |
msgid "Loading..."
|
808 |
msgstr ""
|
809 |
|
810 |
-
#:
|
811 |
msgid "No system logs were found!"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#:
|
815 |
msgid "Set Recommended Permissions"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#:
|
819 |
msgid "No Action Required"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#:
|
823 |
-
msgid ""
|
824 |
-
"Your system config file is already configured to disallow PHP file editing."
|
825 |
-
msgstr ""
|
826 |
-
|
827 |
-
#: ../admin/wp-security-filesystem-menu.php:445
|
828 |
-
#: ../admin/wp-security-filesystem-menu.php:472
|
829 |
-
msgid ""
|
830 |
-
"Settings Saved - Your system is now configured to not allow PHP file editing."
|
831 |
-
msgstr ""
|
832 |
-
|
833 |
-
#: ../admin/wp-security-filesystem-menu.php:449
|
834 |
-
#: ../admin/wp-security-filesystem-menu.php:475
|
835 |
-
#: ../admin/wp-security-filesystem-menu.php:525
|
836 |
-
msgid "Operation failed! Unable to modify wp-config.php file!"
|
837 |
-
msgstr ""
|
838 |
-
|
839 |
-
#: ../admin/wp-security-filesystem-menu.php:463
|
840 |
-
msgid "A backup copy of your wp-config.php file was created successfully...."
|
841 |
-
msgstr ""
|
842 |
-
|
843 |
-
#: ../admin/wp-security-filesystem-menu.php:506
|
844 |
-
#: ../admin/wp-security-filesystem-menu.php:514
|
845 |
-
msgid ""
|
846 |
-
"Your system config file is already configured to allow PHP file editing."
|
847 |
-
msgstr ""
|
848 |
-
|
849 |
-
#: ../admin/wp-security-filesystem-menu.php:521
|
850 |
-
msgid ""
|
851 |
-
"Settings Saved - Your system is now configured to allow PHP file editing."
|
852 |
-
msgstr ""
|
853 |
-
|
854 |
-
#: ../admin/wp-security-filesystem-menu.php:565
|
855 |
#, php-format
|
856 |
msgid "Showing latest entries of error_log file: %s"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#:
|
|
|
860 |
msgid "Settings were successfully saved"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#:
|
864 |
-
#:
|
865 |
msgid "Firewall Settings"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#:
|
869 |
-
#:
|
870 |
#, php-format
|
871 |
msgid ""
|
872 |
"This should not have any impact on your site's general functionality but if "
|
873 |
"you wish you can take a %s of your .htaccess file before proceeding."
|
874 |
msgstr ""
|
875 |
|
876 |
-
#:
|
877 |
msgid ""
|
878 |
"The features in this tab allow you to activate some basic firewall security "
|
879 |
"protection rules for your site."
|
880 |
msgstr ""
|
881 |
|
882 |
-
#:
|
883 |
msgid ""
|
884 |
"The firewall functionality is achieved via the insertion of special code "
|
885 |
"into your currently active .htaccess file."
|
886 |
msgstr ""
|
887 |
|
888 |
-
#:
|
889 |
msgid "Basic Firewall Settings"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#:
|
893 |
msgid "Enable Basic Firewall Protection"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#:
|
897 |
msgid "Check this if you want to apply basic firewall protection to your site."
|
898 |
msgstr ""
|
899 |
|
900 |
-
#:
|
901 |
msgid ""
|
902 |
"This setting will implement the following basic firewall protection "
|
903 |
"mechanisms on your site:"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#:
|
907 |
msgid "1) Protect your htaccess file by denying access to it."
|
908 |
msgstr ""
|
909 |
|
910 |
-
#:
|
911 |
msgid "2) Disable the server signature."
|
912 |
msgstr ""
|
913 |
|
914 |
-
#:
|
915 |
msgid "3) Limit file upload size (10MB)."
|
916 |
msgstr ""
|
917 |
|
918 |
-
#:
|
919 |
msgid "4) Protect your wp-config.php file by denying access to it."
|
920 |
msgstr ""
|
921 |
|
922 |
-
#:
|
923 |
msgid ""
|
924 |
"The above firewall features will be applied via your .htaccess file and "
|
925 |
"should not affect your site's overall functionality."
|
926 |
msgstr ""
|
927 |
|
928 |
-
#:
|
929 |
msgid ""
|
930 |
"You are still advised to take a backup of your active .htaccess file just in "
|
931 |
"case."
|
932 |
msgstr ""
|
933 |
|
934 |
-
#:
|
935 |
msgid "WordPress Pingback Vulnerability Protection"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#:
|
939 |
msgid "Enable Pingback Protection"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#:
|
943 |
msgid ""
|
944 |
"Check this if you are not using the WP XML-RPC functionality and you want to "
|
945 |
"enable protection against WordPress pingback vulnerabilities."
|
946 |
msgstr ""
|
947 |
|
948 |
-
#:
|
949 |
msgid ""
|
950 |
"This setting will add a directive in your .htaccess to disable access to the "
|
951 |
"WordPress xmlrpc.php file which is responsible for the XML-RPC functionality "
|
952 |
"such as pingbacks in WordPress."
|
953 |
msgstr ""
|
954 |
|
955 |
-
#:
|
956 |
msgid ""
|
957 |
"Hackers can exploit various pingback vulnerabilities in the WordPress XML-"
|
958 |
"RPC API in a number of ways such as:"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#:
|
962 |
msgid "1) Denial of Service (DoS) attacks"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#:
|
966 |
msgid "2) Hacking internal routers."
|
967 |
msgstr ""
|
968 |
|
969 |
-
#:
|
970 |
msgid "3) Scanning ports in internal networks to get info from various hosts."
|
971 |
msgstr ""
|
972 |
|
973 |
-
#:
|
974 |
msgid ""
|
975 |
"Apart from the security protection benefit, this feature may also help "
|
976 |
"reduce load on your server, particularly if your site currently has a lot of "
|
977 |
"unwanted traffic hitting the XML-RPC API on your installation."
|
978 |
msgstr ""
|
979 |
|
980 |
-
#:
|
981 |
msgid ""
|
982 |
"NOTE: You should only enable this feature if you are not currently using the "
|
983 |
"XML-RPC functionality on your WordPress installation."
|
984 |
msgstr ""
|
985 |
|
986 |
-
#:
|
987 |
msgid "Save Basic Firewall Settings"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#:
|
991 |
msgid ""
|
992 |
"You have successfully saved the Additional Firewall Protection configuration"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#:
|
996 |
msgid "Additional Firewall Protection"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#:
|
1000 |
#, php-format
|
1001 |
msgid ""
|
1002 |
"Due to the nature of the code being inserted to the .htaccess file, this "
|
@@ -1005,181 +1165,181 @@ msgid ""
|
|
1005 |
"configuration."
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#:
|
1009 |
msgid ""
|
1010 |
"This feature allows you to activate more advanced firewall settings to your "
|
1011 |
"site."
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#:
|
1015 |
msgid ""
|
1016 |
"The advanced firewall rules are applied via the insertion of special code to "
|
1017 |
"your currently active .htaccess file."
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#:
|
1021 |
msgid "Listing of Directory Contents"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#:
|
1025 |
msgid "Disable Index Views"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#:
|
1029 |
msgid "Check this if you want to disable directory and file listing."
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#:
|
1033 |
msgid ""
|
1034 |
"By default, an Apache server will allow the listing of the contents of a "
|
1035 |
"directory if it doesn't contain an index.php file."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#:
|
1039 |
msgid "This feature will prevent the listing of contents for all directories."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#:
|
1043 |
msgid ""
|
1044 |
"NOTE: In order for this feature to work \"AllowOverride\" must be enabled in "
|
1045 |
"your httpd.conf file. Ask your hosting provider to check this if you don't "
|
1046 |
"have access to httpd.conf"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#:
|
1050 |
msgid "Trace and Track"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#:
|
1054 |
msgid "Disable Trace and Track"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#:
|
1058 |
msgid "Check this if you want to disable trace and track."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#:
|
1062 |
msgid ""
|
1063 |
"HTTP Trace attack (XST) can be used to return header requests and grab "
|
1064 |
"cookies and other information."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#:
|
1068 |
msgid ""
|
1069 |
"This hacking technique is usually used together with cross site scripting "
|
1070 |
"attacks (XSS)."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#:
|
1074 |
msgid ""
|
1075 |
"Disabling trace and track on your site will help prevent HTTP Trace attacks."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#:
|
1079 |
msgid "Proxy Comment Posting"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#:
|
1083 |
msgid "Forbid Proxy Comment Posting"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#:
|
1087 |
msgid "Check this if you want to forbid proxy comment posting."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#:
|
1091 |
msgid ""
|
1092 |
"This setting will deny any requests that use a proxy server when posting "
|
1093 |
"comments."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#:
|
1097 |
msgid ""
|
1098 |
"By forbidding proxy comments you are in effect eliminating some SPAM and "
|
1099 |
"other proxy requests."
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#:
|
1103 |
msgid "Bad Query Strings"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#:
|
1107 |
msgid "Deny Bad Query Strings"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#:
|
1111 |
msgid "This will help protect you against malicious queries via XSS."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#:
|
1115 |
msgid ""
|
1116 |
"This feature will write rules in your .htaccess file to prevent malicious "
|
1117 |
"string attacks on your site using XSS."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#:
|
1121 |
msgid ""
|
1122 |
"NOTE: Some of these strings might be used for plugins or themes and hence "
|
1123 |
"this might break some functionality."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#:
|
1127 |
-
#:
|
1128 |
msgid ""
|
1129 |
"You are therefore strongly advised to take a backup of your active .htaccess "
|
1130 |
"file before applying this feature."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#:
|
1134 |
msgid "Advanced Character String Filter"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#:
|
1138 |
msgid "Enable Advanced Character String Filter"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#:
|
1142 |
msgid "This will block bad character matches from XSS."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#:
|
1146 |
msgid ""
|
1147 |
"This is an advanced character string filter to prevent malicious string "
|
1148 |
"attacks on your site coming from Cross Site Scripting (XSS)."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#:
|
1152 |
msgid ""
|
1153 |
"This setting matches for common malicious string patterns and exploits and "
|
1154 |
"will produce a 403 error for the hacker attempting the query."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#:
|
1158 |
msgid "NOTE: Some strings for this setting might break some functionality."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#:
|
1162 |
msgid "Save Additional Firewall Settings"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#:
|
1166 |
msgid "You have successfully saved the 5G Firewall Protection configuration"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#:
|
1170 |
#, php-format
|
1171 |
msgid ""
|
1172 |
"This feature allows you to activate the 5G firewall security protection "
|
1173 |
"rules designed and produced by %s."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#:
|
1177 |
msgid ""
|
1178 |
"The 5G Blacklist is a simple, flexible blacklist that helps reduce the "
|
1179 |
"number of malicious URL requests that hit your website."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#:
|
1183 |
msgid ""
|
1184 |
"The added advantage of applying the 5G firewall to your site is that it has "
|
1185 |
"been tested and confirmed by the people at PerishablePress.com to be an "
|
@@ -1187,7 +1347,7 @@ msgid ""
|
|
1187 |
"sites running on an Apache server or similar."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#:
|
1191 |
#, php-format
|
1192 |
msgid ""
|
1193 |
"Therefore the 5G firewall rules should not have any impact on your site's "
|
@@ -1195,105 +1355,105 @@ msgid ""
|
|
1195 |
"file before proceeding."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#:
|
1199 |
msgid "5G Blacklist/Firewall Settings"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#:
|
1203 |
msgid "Enable 5G Firewall Protection"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#:
|
1207 |
msgid ""
|
1208 |
"Check this if you want to apply the 5G Blacklist firewall protection from "
|
1209 |
"perishablepress.com to your site."
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#:
|
1213 |
msgid ""
|
1214 |
"This setting will implement the 5G security firewall protection mechanisms "
|
1215 |
"on your site which include the following things:"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#:
|
1219 |
msgid "1) Block forbidden characters commonly used in exploitative attacks."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#:
|
1223 |
msgid "2) Block malicious encoded URL characters such as the \".css(\" string."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#:
|
1227 |
msgid ""
|
1228 |
"3) Guard against the common patterns and specific exploits in the root "
|
1229 |
"portion of targeted URLs."
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#:
|
1233 |
msgid ""
|
1234 |
"4) Stop attackers from manipulating query strings by disallowing illicit "
|
1235 |
"characters."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#:
|
1239 |
msgid "....and much more."
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#:
|
1243 |
msgid "Save 5G Firewall Settings"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#:
|
1247 |
msgid ""
|
1248 |
"Settings have not been saved - your secret word must consist only of "
|
1249 |
"alphanumeric characters, ie, letters and/or numbers only!"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#:
|
1253 |
msgid ""
|
1254 |
"You have successfully enabled the cookie based brute force prevention feature"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#:
|
1258 |
msgid ""
|
1259 |
"From now on you will need to log into your WP Admin using the following URL:"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#:
|
1263 |
msgid ""
|
1264 |
"It is important that you save this URL value somewhere in case you forget "
|
1265 |
"it, OR,"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#:
|
1269 |
#, php-format
|
1270 |
msgid "simply remember to add a \"?%s=1\" to your current site URL address."
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#:
|
1274 |
msgid ""
|
1275 |
"You have successfully saved cookie based brute force prevention feature "
|
1276 |
"settings."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#:
|
1280 |
msgid "Brute Force Prevention Firewall Settings"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#:
|
1284 |
msgid ""
|
1285 |
"A Brute Force Attack is when a hacker tries many combinations of usernames "
|
1286 |
"and passwords until they succeed in guessing the right combination."
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#:
|
1290 |
msgid ""
|
1291 |
"Due to the fact that at any one time there may be many concurrent login "
|
1292 |
"attempts occurring on your site via malicious automated robots, this also "
|
1293 |
"has a negative impact on your server's memory and performance."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#:
|
1297 |
msgid ""
|
1298 |
"The features in this tab will stop the majority of Brute Force Login Attacks "
|
1299 |
"at the .htaccess level thus providing even better protection for your WP "
|
@@ -1301,34 +1461,34 @@ msgid ""
|
|
1301 |
"not have to run PHP code to process the login attempts."
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#:
|
1305 |
msgid "Cookie Based Brute Force Login Prevention"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#:
|
1309 |
msgid "Enable Brute Force Attack Prevention"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#:
|
1313 |
msgid ""
|
1314 |
"Check this if you want to protect your login page from Brute Force Attack."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#:
|
1318 |
msgid ""
|
1319 |
"This feature will deny access to your WordPress login page for all people "
|
1320 |
"except those who have a special cookie in their browser."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#:
|
1324 |
msgid "To use this feature do the following:"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#:
|
1328 |
msgid "1) Enable the checkbox."
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#:
|
1332 |
msgid ""
|
1333 |
"2) Enter a secret word consisting of alphanumeric characters which will be "
|
1334 |
"difficult to guess. This secret word will be useful whenever you need to "
|
@@ -1336,7 +1496,7 @@ msgid ""
|
|
1336 |
"below)."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#:
|
1340 |
msgid ""
|
1341 |
"3) You will then be provided with a special login URL. You will need to use "
|
1342 |
"this URL to login to your WordPress site instead of the usual login URL. "
|
@@ -1344,73 +1504,73 @@ msgid ""
|
|
1344 |
"allow you access to the WordPress administration login page."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#:
|
1348 |
msgid ""
|
1349 |
"Any person trying to access your login page who does not have the special "
|
1350 |
"cookie in their browser will be automatically blocked."
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#:
|
1354 |
msgid "Secret Word"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#:
|
1358 |
msgid ""
|
1359 |
"Choose a secret word consisting of alphanumeric characters which you can use "
|
1360 |
"to access your special URL. Your are highly encouraged to choose a word "
|
1361 |
"which will be difficult to guess."
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#:
|
1365 |
msgid "Re-direct URL"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#:
|
1369 |
msgid ""
|
1370 |
"Specify a URL to redirect a hacker to when they try to access your WordPress "
|
1371 |
"login page."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#:
|
1375 |
msgid ""
|
1376 |
"The URL specified here can be any site's URL and does not have to be your "
|
1377 |
"own. For example you can be as creative as you like and send hackers to the "
|
1378 |
"CIA or NSA home page."
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#:
|
1382 |
msgid ""
|
1383 |
"This field will default to: http://127.0.0.1 if you do not enter a value."
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#:
|
1387 |
msgid "Useful Tip:"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#:
|
1391 |
msgid ""
|
1392 |
"It's a good idea to not redirect attempted brute force login attempts to "
|
1393 |
"your site because it increases the load on your server."
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#:
|
1397 |
msgid ""
|
1398 |
"Redirecting a hacker or malicious bot back to \"http://127.0.0.1\" is ideal "
|
1399 |
"because it deflects them back to their own local host and puts the load on "
|
1400 |
"their server instead of yours."
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#:
|
1404 |
msgid "My Site Has Posts Or Pages Which Are Password Protected"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#:
|
1408 |
msgid ""
|
1409 |
"Check this if you are using the native WordPress password protection feature "
|
1410 |
"for some or all of your blog posts or pages."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#:
|
1414 |
msgid ""
|
1415 |
"In the cases where you are protecting some of your posts or pages using the "
|
1416 |
"in-built WordPress password protection feature, a few extra lines of "
|
@@ -1418,473 +1578,656 @@ msgid ""
|
|
1418 |
"people trying to access pages are not automatically blocked."
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#:
|
1422 |
msgid ""
|
1423 |
"By enabling this checkbox the plugin will add the necessary rules and "
|
1424 |
"exceptions to your .htacces file so that people trying to access these pages "
|
1425 |
"are not automatically blocked."
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#:
|
1429 |
msgid "Helpful Tip:"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#:
|
1433 |
msgid ""
|
1434 |
"If you do not use the WordPress password protection feature for your posts "
|
1435 |
"or pages then it is highly recommended that you leave this checkbox disabled."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1439 |
msgid "The cookie test was successful. You can now enable this feature."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#:
|
1443 |
msgid "Save Feature Settings"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#:
|
1447 |
msgid ""
|
1448 |
"The cookie test failed on this server. So this feature cannot be used on "
|
1449 |
"this site."
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#:
|
1453 |
msgid ""
|
1454 |
"Before using this feature you are required to perform a cookie test first. "
|
1455 |
"This is to make sure that your browser cookie is working correctly and that "
|
1456 |
"you won't lock yourself out."
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#:
|
1460 |
msgid "Perform Cookie Test"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#:
|
1464 |
-
#:
|
1465 |
-
#:
|
1466 |
-
#:
|
1467 |
-
#:
|
1468 |
msgid "Please select some records using the checkboxes"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#:
|
1472 |
-
#:
|
1473 |
msgid "The selected entries were deleted successfully!"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#:
|
1477 |
-
#:
|
1478 |
msgid "The selected entry was deleted successfully!"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#:
|
1482 |
msgid ""
|
1483 |
"The selected IP addresses were saved in the blacklist configuration settings."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#:
|
1487 |
msgid ""
|
1488 |
"The .htaccess file was successfully modified to include the selected IP "
|
1489 |
"addresses."
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#:
|
1493 |
msgid ""
|
1494 |
"NOTE: The .htaccess file was not modified because you have disabled the "
|
1495 |
"\"Enable IP or User Agent Blacklisting\" check box."
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#:
|
1499 |
#, php-format
|
1500 |
msgid ""
|
1501 |
"To block these IP addresses you will need to enable the above flag in the %s "
|
1502 |
"menu"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#:
|
1506 |
-
#:
|
1507 |
msgid "The selected IP ranges were unlocked successfully!"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#:
|
1511 |
-
#:
|
1512 |
msgid "The selected IP range was unlocked successfully!"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#:
|
1516 |
msgid "Site lockout feature settings saved!"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#:
|
1520 |
msgid "General Visitor Lockout"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#:
|
1524 |
msgid ""
|
1525 |
"This feature allows you to put your site into \"maintenance mode\" by "
|
1526 |
"locking down the front-end to all visitors except logged in users with super "
|
1527 |
"admin privileges."
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#:
|
1531 |
msgid ""
|
1532 |
"Locking your site down to general visitors can be useful if you are "
|
1533 |
"investigating some issues on your site or perhaps you might be doing some "
|
1534 |
"maintenance and wish to keep out all traffic for security reasons."
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#:
|
1538 |
msgid "Enable Front-end Lockout"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#:
|
1542 |
msgid ""
|
1543 |
"Check this if you want all visitors except those who are logged in as "
|
1544 |
"administrator to be locked out of the front-end of your site."
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#:
|
1548 |
msgid "Enter a Message:"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#:
|
1552 |
msgid ""
|
1553 |
"Enter a message you wish to display to visitors when your site is in "
|
1554 |
"maintenance mode."
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#:
|
1558 |
msgid "Save Site Lockout Settings"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#:
|
1562 |
msgid "All the security features have been disabled successfully!"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1566 |
msgid "WP Security Plugin"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#:
|
1570 |
msgid ""
|
1571 |
"Thank you for using our WordPress security plugin. There are a lot of "
|
1572 |
"security features in this plugin."
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#:
|
1576 |
msgid ""
|
1577 |
"Go through each menu items and enable the security options to add more "
|
1578 |
-
"security to your site."
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#:
|
1582 |
msgid ""
|
1583 |
"It is a good practice to take a backup of your .htaccess file, database and "
|
1584 |
"wp-config.php file before activating the security features. This plugin has "
|
1585 |
"options that you can use to backup those resources easily."
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#:
|
1589 |
msgid "Backup your database"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#:
|
1593 |
msgid "Backup .htaccess file"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#:
|
1597 |
msgid "Backup wp-config.php file"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#:
|
1601 |
msgid "Disable Security Features"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#:
|
1605 |
msgid ""
|
1606 |
"If you think that some plugin functionality on your site is broken due to a "
|
1607 |
"security feature you enabled in this plugin, then use the following option "
|
1608 |
"to turn off all the security features of this plugin."
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#:
|
1612 |
msgid "Disable All Security Features"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1616 |
msgid ""
|
1617 |
-
"
|
1618 |
-
"
|
|
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#:
|
1622 |
-
msgid "
|
|
|
|
|
|
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#:
|
1626 |
msgid ""
|
1627 |
"htaccess file rename failed during backup. Please check your root directory "
|
1628 |
"for the backup file using FTP."
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#:
|
1632 |
msgid "htaccess backup failed."
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#:
|
1636 |
msgid "Please choose a .htaccess to restore from."
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#:
|
1640 |
msgid ""
|
1641 |
"htaccess file restore failed. Please attempt to restore the .htaccess "
|
1642 |
"manually using FTP."
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#:
|
1646 |
msgid "Your .htaccess file has successfully been restored!"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#:
|
1650 |
msgid ""
|
1651 |
"htaccess Restore operation failed! Please check the contents of the file you "
|
1652 |
"are trying to restore from."
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#:
|
1656 |
msgid ".htaccess File Operations"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#:
|
1660 |
msgid ""
|
1661 |
"Your \".htaccess\" file is a key component of your website's security and it "
|
1662 |
"can be modified to implement various levels of protection mechanisms."
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#:
|
1666 |
msgid ""
|
1667 |
"This feature allows you to backup and save your currently active .htaccess "
|
1668 |
"file should you need to re-use the the backed up file in the future."
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#:
|
1672 |
msgid ""
|
1673 |
"You can also restore your site's .htaccess settings using a backed up ."
|
1674 |
"htaccess file."
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#:
|
1678 |
msgid "Save the current .htaccess file"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#:
|
1682 |
msgid ""
|
1683 |
"Click the button below to backup and save the currently active .htaccess "
|
1684 |
"file."
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#:
|
1688 |
msgid "Backup .htaccess File"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#:
|
1692 |
msgid "Restore from a backed up .htaccess file"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#:
|
1696 |
msgid ".htaccess file to restore from"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#:
|
1700 |
msgid ""
|
1701 |
"After selecting your file, click the button below to restore your site using "
|
1702 |
"the backed up htaccess file (htaccess_backup.txt)."
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#:
|
1706 |
msgid "Restore .htaccess File"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#:
|
1710 |
msgid "View Contents of the currently active .htaccess file"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#:
|
1714 |
-
msgid ""
|
1715 |
-
"Your wp-config.php file was successfully backed up! Right click on the "
|
1716 |
-
"following file name and save the backup to your computer."
|
1717 |
-
msgstr ""
|
1718 |
-
|
1719 |
-
#: ../admin/wp-security-settings-menu.php:284
|
1720 |
-
msgid "Your wp-config.php File: "
|
1721 |
-
msgstr ""
|
1722 |
-
|
1723 |
-
#: ../admin/wp-security-settings-menu.php:292
|
1724 |
-
msgid ""
|
1725 |
-
"wp-config.php file rename failed during backup. Please check your root "
|
1726 |
-
"directory for the backup file using FTP."
|
1727 |
-
msgstr ""
|
1728 |
-
|
1729 |
-
#: ../admin/wp-security-settings-menu.php:298
|
1730 |
-
msgid "wp-config.php backup failed."
|
1731 |
-
msgstr ""
|
1732 |
-
|
1733 |
-
#: ../admin/wp-security-settings-menu.php:313
|
1734 |
msgid "Please choose a wp-config.php file to restore from."
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#:
|
1738 |
msgid ""
|
1739 |
"wp-config.php file restore failed. Please attempt to restore this file "
|
1740 |
"manually using FTP."
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#:
|
1744 |
msgid "Your wp-config.php file has successfully been restored!"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#:
|
1748 |
msgid ""
|
1749 |
"wp-config.php Restore operation failed! Please check the contents of the "
|
1750 |
"file you are trying to restore from."
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#:
|
1754 |
msgid "wp-config.php File Operations"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#:
|
1758 |
msgid ""
|
1759 |
"Your \"wp-config.php\" file is one of the most important in your WordPress "
|
1760 |
"installation. It is a primary configuration file and contains crucial things "
|
1761 |
"such as details of your database and other critical components."
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#:
|
1765 |
msgid ""
|
1766 |
"This feature allows you to backup and save your currently active wp-config."
|
1767 |
"php file should you need to re-use the the backed up file in the future."
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#:
|
1771 |
msgid ""
|
1772 |
"You can also restore your site's wp-config.php settings using a backed up wp-"
|
1773 |
"config.php file."
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#:
|
1777 |
msgid "Save the current wp-config.php file"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#:
|
1781 |
msgid ""
|
1782 |
-
"Click the button below to backup and
|
1783 |
-
"file."
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#:
|
1787 |
msgid "Backup wp-config.php File"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#:
|
1791 |
msgid "Restore from a backed up wp-config file"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#:
|
1795 |
msgid "wp-config file to restore from"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#:
|
1799 |
msgid ""
|
1800 |
"After selecting your file click the button below to restore your site using "
|
1801 |
"the backed up wp-config file (wp-config.php.backup.txt)."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#:
|
1805 |
msgid "Restore wp-config File"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#:
|
1809 |
msgid "View Contents of the currently active wp-config.php file"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#:
|
1813 |
msgid "WP Generator Meta Tag"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#:
|
1817 |
msgid ""
|
1818 |
"Wordpress generator automatically adds some meta information inside the "
|
1819 |
"\"head\" tags of every page on your site's front end. Below is an example of "
|
1820 |
"this:"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#:
|
1824 |
msgid ""
|
1825 |
"The above meta information shows which version of WordPress your site is "
|
1826 |
"currently running and thus can help hackers or crawlers scan your site to "
|
1827 |
"see if you have an older version of WordPress or one with a known exploit."
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#:
|
1831 |
msgid ""
|
1832 |
"This feature will allow you to remove the WP generator meta info from your "
|
1833 |
"site's pages."
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#:
|
1837 |
msgid "WP Generator Meta Info"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#:
|
1841 |
msgid "Remove WP Generator Meta Info"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
-
#:
|
1845 |
msgid ""
|
1846 |
"Check this if you want to remove the meta info produced by WP Generator from "
|
1847 |
"all pages"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1851 |
msgid "Admin User Security"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#:
|
1855 |
msgid ""
|
1856 |
"By default, WordPress sets the administrator username to \"admin\" at "
|
1857 |
"installation time."
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#:
|
1861 |
msgid ""
|
1862 |
"A lot of hackers try to take advantage of this information by attempting "
|
1863 |
"\"Brute Force Login Attacks\" where they repeatedly try to guess the "
|
1864 |
"password by using \"admin\" for username."
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#:
|
1868 |
msgid ""
|
1869 |
"From a security perspective, changing the default \"admin\" user name is one "
|
1870 |
"of the first and smartest things you should do on your site."
|
1871 |
msgstr ""
|
1872 |
|
1873 |
-
#:
|
1874 |
msgid ""
|
1875 |
"This feature will allow you to change your default \"admin\" user name to a "
|
1876 |
"more secure name of your choosing."
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#:
|
1880 |
msgid "List of Administrator Accounts"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#:
|
1884 |
msgid "Change Admin Username"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#:
|
1888 |
msgid ""
|
1889 |
"Your site currently has an account which uses the default \"admin\" "
|
1890 |
"username. \n"
|
@@ -1893,103 +2236,103 @@ msgid ""
|
|
1893 |
" Use the following field to change the admin username."
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#:
|
1897 |
msgid "New Admin Username"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
-
#:
|
1901 |
msgid "Choose a new username for admin."
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#:
|
1905 |
msgid "Change Username"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#:
|
1909 |
msgid ""
|
1910 |
"NOTE: If you are currently logged in as \"admin\" you will be automatically "
|
1911 |
"logged out after changing your username and will be required to log back in."
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#:
|
1915 |
msgid "No action required! "
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#:
|
1919 |
msgid ""
|
1920 |
"Your site does not have any account which uses the default \"admin\" "
|
1921 |
"username. "
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#:
|
1925 |
msgid "This is good security practice."
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#:
|
1929 |
msgid "Display Name Security"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#:
|
1933 |
msgid ""
|
1934 |
"When you submit a post or answer a comment, WordPress will usually display "
|
1935 |
"your \"nickname\"."
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#:
|
1939 |
msgid ""
|
1940 |
"By default the nickname is set to the login (or user) name of your account."
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#:
|
1944 |
msgid ""
|
1945 |
"From a security perspective, leaving your nickname the same as your user "
|
1946 |
"name is bad practice because it gives a hacker at least half of your "
|
1947 |
"account's login credentials."
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#:
|
1951 |
msgid ""
|
1952 |
"Therefore to further tighten your site's security you are advised to change "
|
1953 |
"your <strong>nickname</strong> and <strong>Display name</strong> to be "
|
1954 |
"different from your <strong>Username</strong>."
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#:
|
1958 |
msgid "Modify Accounts With Identical Login Name & Display Name"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#:
|
1962 |
msgid ""
|
1963 |
"Your site currently has the following accounts which have an identical login "
|
1964 |
"name and display name."
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#:
|
1968 |
msgid "Click on the link to edit the settings of that particular user account"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#:
|
1972 |
msgid "No action required."
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#:
|
1976 |
msgid ""
|
1977 |
"Your site does not have a user account where the display name is identical "
|
1978 |
"to the username."
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#:
|
1982 |
msgid "Password Tool"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#:
|
1986 |
msgid ""
|
1987 |
"Poor password selection is one of the most common weak points of many sites "
|
1988 |
"and is usually the first thing a hacker will try to exploit when attempting "
|
1989 |
"to break into your site."
|
1990 |
msgstr ""
|
1991 |
|
1992 |
-
#:
|
1993 |
msgid ""
|
1994 |
"Many people fall into the trap of using a simple word or series of numbers "
|
1995 |
"as their password. Such a predictable and simple password would take a "
|
@@ -1997,450 +2340,578 @@ msgid ""
|
|
1997 |
"script which cycles through the easy and most common combinations."
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#:
|
2001 |
msgid ""
|
2002 |
"The longer and more complex your password is the harder it is for hackers to "
|
2003 |
"\"crack\" because more complex passwords require much greater computing "
|
2004 |
"power and time."
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#:
|
2008 |
msgid ""
|
2009 |
"This section contains a useful password strength tool which you can use to "
|
2010 |
"check whether your password is sufficiently strong enough."
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#:
|
2014 |
msgid "Password Strength Tool"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
-
#:
|
2018 |
msgid "Start typing a password."
|
2019 |
msgstr ""
|
2020 |
|
2021 |
-
#:
|
2022 |
msgid "Nonce check failed on admin username change operation!"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
-
#:
|
2026 |
msgid "Username "
|
2027 |
msgstr ""
|
2028 |
|
2029 |
-
#:
|
2030 |
msgid " already exists. Please enter another value. "
|
2031 |
msgstr ""
|
2032 |
|
2033 |
-
#:
|
2034 |
msgid "The database update operation of the user account failed!"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#:
|
2038 |
msgid "You entered an invalid username. Please enter another value. "
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#:
|
2042 |
msgid "Please enter a value for your username. "
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#:
|
2046 |
msgid "Username Successfully Changed!"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#:
|
2050 |
msgid "Account Login Name"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#:
|
2054 |
msgid ""
|
2055 |
"You entered a non numeric value for the max login attempts field. It has "
|
2056 |
"been set to the default value."
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#:
|
2060 |
msgid ""
|
2061 |
"You entered a non numeric value for the login retry time period field. It "
|
2062 |
"has been set to the default value."
|
2063 |
msgstr ""
|
2064 |
|
2065 |
-
#:
|
2066 |
msgid ""
|
2067 |
"You entered a non numeric value for the lockout time length field. It has "
|
2068 |
"been set to the default value."
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#:
|
2072 |
msgid "Login Lockdown Configuration"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#:
|
2076 |
msgid "One of the ways hackers try to compromise sites is via a "
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#:
|
2080 |
msgid "Brute Force Login Attack"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#:
|
2084 |
msgid ""
|
2085 |
"This is where attackers use repeated login attempts until they guess the "
|
2086 |
"password."
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#:
|
2090 |
msgid ""
|
2091 |
"Apart from choosing strong passwords, monitoring and blocking IP addresses "
|
2092 |
"which are involved in repeated login failures in a short period of time is a "
|
2093 |
"very effective way to stop these types of attacks."
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#:
|
2097 |
#, php-format
|
2098 |
msgid ""
|
2099 |
"You may also want to checkout our %s feature for another secure way to "
|
2100 |
"protect against these types of attacks."
|
2101 |
msgstr ""
|
2102 |
|
2103 |
-
#:
|
2104 |
msgid "Login Lockdown Options"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#:
|
2108 |
msgid "Enable Login Lockdown Feature"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#:
|
2112 |
msgid ""
|
2113 |
"Check this if you want to enable the login lockdown feature and apply the "
|
2114 |
"settings below"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#:
|
2118 |
msgid "Max Login Attempts"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
-
#:
|
2122 |
msgid ""
|
2123 |
"Set the value for the maximum login retries before IP address is locked out"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
-
#:
|
2127 |
msgid "Login Retry Time Period (min)"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#:
|
2131 |
msgid ""
|
2132 |
"If the maximum number of failed login attempts for a particular IP address "
|
2133 |
"occur within this time period the plugin will lock out that address"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#:
|
2137 |
msgid "Time Length of Lockout (min)"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#:
|
2141 |
msgid ""
|
2142 |
"Set the length of time for which a particular IP address will be prevented "
|
2143 |
"from logging in"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#:
|
2147 |
msgid "Display Generic Error Message"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#:
|
2151 |
msgid ""
|
2152 |
"Check this if you want to show a generic error message when a login attempt "
|
2153 |
"fails"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2157 |
msgid "Notify By Email"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#:
|
2161 |
msgid ""
|
2162 |
"Check this if you want to receive an email when someone has been locked out "
|
2163 |
"due to maximum failed login attempts"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#:
|
2167 |
msgid "Currently Locked Out IP Address Ranges"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2171 |
msgid "Nonce check failed for delete all failed login records operation!"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#:
|
2175 |
msgid "User Login Feature - Delete all failed login records operation failed!"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
-
#:
|
2179 |
msgid "All records from the Failed Logins table were deleted successfully!"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#:
|
2183 |
msgid "This tab displays the failed login attempts for your site."
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#:
|
2187 |
msgid ""
|
2188 |
"The information below can be handy if you need to do security investigations "
|
2189 |
"because it will show you the IP range, username and ID (if applicable) and "
|
2190 |
"the time/date of the failed login attempt."
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#:
|
2194 |
msgid "Failed Login Records"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#:
|
2198 |
-
#:
|
2199 |
msgid "Delete All Failed Login Records"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#:
|
2203 |
msgid ""
|
2204 |
"Click this button if you wish to delete all failed login records in one go."
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#:
|
2208 |
msgid ""
|
2209 |
"You entered a non numeric value for the logout time period field. It has "
|
2210 |
"been set to the default value."
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#:
|
2214 |
msgid ""
|
2215 |
"Setting an expiry period for your WP administration session is a simple way "
|
2216 |
"to protect against unauthorized access to your site from your computer."
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#:
|
2220 |
msgid ""
|
2221 |
"This feature allows you to specify a time period in minutes after which the "
|
2222 |
"admin session will expire and the user will be forced to log back in."
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#:
|
2226 |
msgid "Force User Logout Options"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
-
#:
|
2230 |
msgid "Enable Force WP User Logout"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#:
|
2234 |
msgid ""
|
2235 |
"Check this if you want to force a wp user to be logged out after a "
|
2236 |
"configured amount of time"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#:
|
2240 |
msgid "Logout the WP User After XX Minutes"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#:
|
2244 |
msgid ""
|
2245 |
"(Minutes) The user will be forced to log back in after this time period has "
|
2246 |
"elapased."
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#:
|
2250 |
msgid ""
|
2251 |
"This tab displays the login activity for WordPress admin accounts registered "
|
2252 |
"with your site."
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#:
|
2256 |
msgid ""
|
2257 |
"The information below can be handy if you need to do security investigations "
|
2258 |
"because it will show you the last 50 recent login events by username, IP "
|
2259 |
"address and time/date."
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#:
|
2263 |
msgid "Account Activity Logs"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2267 |
msgid "The selected records were deleted successfully!"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#:
|
2271 |
msgid "The selected record was deleted successfully!"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#:
|
2275 |
msgid "WHOIS Lookup Information"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#:
|
2279 |
msgid ""
|
2280 |
"This feature allows you to look up more detailed information about an IP "
|
2281 |
"address or domain name by querying the WHOIS API."
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#:
|
2285 |
msgid "Perform a WHOIS Lookup for an IP or Domain Name"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#:
|
2289 |
msgid "Enter IP Address or Domain Name"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#:
|
2293 |
msgid ""
|
2294 |
"Enter an IP address or domain name. Example: 111.11.12.13 OR some-domain-"
|
2295 |
"name.com"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#:
|
2299 |
msgid "Perform IP or Domain Lookup"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
-
#:
|
2303 |
msgid "WHOIS lookup successfully completed. Please see the results below:"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#:
|
2307 |
msgid ""
|
2308 |
"You have entered an incorrectly formatted IP address or domain name. Please "
|
2309 |
"try again."
|
2310 |
msgstr ""
|
2311 |
|
2312 |
-
#:
|
2313 |
msgid "No items found."
|
2314 |
msgstr ""
|
2315 |
|
2316 |
-
#:
|
2317 |
msgid "Bulk Actions"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#:
|
2321 |
msgid "Apply"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
-
#:
|
2325 |
msgid "Show all dates"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#:
|
2329 |
#, php-format
|
2330 |
msgid "%1$s %2$d"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#:
|
2334 |
msgid "List View"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
-
#:
|
2338 |
msgid "Excerpt View"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#:
|
2342 |
#, php-format
|
2343 |
msgid "%s pending"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#:
|
2347 |
msgid "Select All"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#:
|
2351 |
msgid "All In One WP Security - Site Database Backup"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#:
|
2355 |
msgid "Attached is your latest DB backup file for site URL"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#:
|
2359 |
msgid " generated on"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2363 |
msgid ""
|
2364 |
"<strong>ERROR</strong>: Login failed because your IP address has been "
|
2365 |
-
"blocked
|
2366 |
" Please contact the administrator."
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#:
|
2370 |
msgid "<strong>ERROR</strong>: The username field is empty."
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#:
|
2374 |
msgid "<strong>ERROR</strong>: The password field is empty."
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#:
|
2378 |
-
|
2379 |
-
msgstr ""
|
2380 |
-
|
2381 |
-
#: ../classes/wp-security-user-login.php:69
|
2382 |
-
#: ../classes/wp-security-user-login.php:92
|
2383 |
msgid "<strong>ERROR</strong>: Invalid login credentials."
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#:
|
2387 |
msgid "<strong>ERROR</strong>: Invalid username."
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#:
|
2391 |
#, php-format
|
2392 |
msgid ""
|
2393 |
"<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password "
|
2394 |
"Lost and Found\">Lost your password</a>?"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
-
#:
|
2398 |
msgid "Site Lockout Notification"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
-
#:
|
2402 |
msgid ""
|
2403 |
-
"A lockdown event has occurred due to too many failed login attempts
|
2404 |
-
"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#:
|
2408 |
msgid "Username: "
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#:
|
|
|
|
|
|
|
|
|
2412 |
msgid "IP Range: "
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#:
|
2416 |
msgid ""
|
2417 |
"Log into your site's WordPress administration panel to see the duration of "
|
2418 |
"the lockout or to unlock the user."
|
2419 |
msgstr ""
|
2420 |
|
2421 |
-
#:
|
2422 |
#, php-format
|
2423 |
msgid ""
|
2424 |
"Your session has expired because it has been over %d minutes since your last "
|
2425 |
"login."
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#:
|
2429 |
-
#:
|
2430 |
msgid "Please log back in to continue."
|
2431 |
msgstr ""
|
2432 |
|
2433 |
-
#:
|
2434 |
msgid "You were logged out because you just changed the \"admin\" username."
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#:
|
2438 |
-
#:
|
2439 |
-
#:
|
2440 |
-
#:
|
2441 |
msgid " is not a valid ip address format."
|
2442 |
msgstr ""
|
2443 |
|
2444 |
-
#:
|
2445 |
msgid "You cannot ban your own IP address: "
|
2446 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: AIOWPS\n"
|
4 |
+
"POT-Creation-Date: 2013-10-03 18:18+1000\n"
|
5 |
+
"PO-Revision-Date: 2013-10-03 18:18+1000\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
"X-Generator: Poedit 1.5.7\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: ./\n"
|
14 |
+
"X-Poedit-SearchPath-0: all-in-one-wp-security\n"
|
15 |
|
16 |
+
#: all-in-one-wp-security/admin/wp-security-admin-init.php:155
|
17 |
msgid "WP Security"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: all-in-one-wp-security/admin/wp-security-admin-init.php:156
|
21 |
msgid "Dashboard"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: all-in-one-wp-security/admin/wp-security-admin-init.php:157
|
25 |
msgid "Settings"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: all-in-one-wp-security/admin/wp-security-admin-init.php:158
|
29 |
msgid "User Accounts"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: all-in-one-wp-security/admin/wp-security-admin-init.php:159
|
33 |
msgid "User Login"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: all-in-one-wp-security/admin/wp-security-admin-init.php:160
|
37 |
msgid "Database Security"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: all-in-one-wp-security/admin/wp-security-admin-init.php:164
|
41 |
msgid "Filesystem Security"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: all-in-one-wp-security/admin/wp-security-admin-init.php:166
|
45 |
msgid "WHOIS Lookup"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: all-in-one-wp-security/admin/wp-security-admin-init.php:170
|
49 |
msgid "Blacklist Manager"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: all-in-one-wp-security/admin/wp-security-admin-init.php:175
|
53 |
msgid "Firewall"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: all-in-one-wp-security/admin/wp-security-admin-init.php:177
|
57 |
+
msgid "SPAM Prevention"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: all-in-one-wp-security/admin/wp-security-admin-init.php:181
|
61 |
+
msgid "Scanner"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: all-in-one-wp-security/admin/wp-security-admin-init.php:183
|
65 |
msgid "Maintenance"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: all-in-one-wp-security/admin/wp-security-admin-menu.php:43
|
69 |
msgid "Settings successfully updated."
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: all-in-one-wp-security/admin/wp-security-admin-menu.php:50
|
73 |
msgid "The selected record(s) deleted successfully!"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:74
|
77 |
msgid "Nonce check failed for save blacklist settings!"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:126
|
81 |
+
#: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:147
|
82 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:306
|
83 |
msgid ""
|
84 |
"The plugin was unable to write to the .htaccess file. Please edit file "
|
85 |
"manually."
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:133
|
89 |
msgid "Ban IPs or User Agents"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:136
|
93 |
msgid ""
|
94 |
"The All In One WP Security Blacklist feature gives you the option of banning "
|
95 |
"certain host IP addresses or ranges and also user agents."
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:137
|
99 |
msgid ""
|
100 |
"This feature will deny total site access for users which have IP addresses "
|
101 |
"or user agents matching those which you have configured in the settings "
|
102 |
"below."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:138
|
106 |
msgid ""
|
107 |
"The plugin achieves this by making appropriate modifications to your ."
|
108 |
"htaccess file."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:139
|
112 |
msgid ""
|
113 |
"By blocking people via the .htaccess file your are using the most secure "
|
114 |
"first line of defence which denies all access to blacklisted visitors as "
|
115 |
"soon as they hit your hosting server."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:145
|
119 |
msgid "IP Hosts and User Agent Blacklist Settings"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:156
|
123 |
msgid "Enable IP or User Agent Blacklisting"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:159
|
127 |
msgid ""
|
128 |
"Check this if you want to enable the banning (or blacklisting) of selected "
|
129 |
"IP addresses and/or user agents specified in the settings below"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:163
|
133 |
msgid "Enter IP Addresses:"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:167
|
137 |
msgid "Enter one or more IP addresses or IP ranges."
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:168
|
141 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:188
|
142 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:265
|
143 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:282
|
144 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:141
|
145 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:171
|
146 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:302
|
147 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:332
|
148 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:363
|
149 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:391
|
150 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:420
|
151 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:508
|
152 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:653
|
153 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:687
|
154 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:710
|
155 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:731
|
156 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:133
|
157 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:218
|
158 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:355
|
159 |
msgid "More Info"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:171
|
163 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:358
|
164 |
msgid "Each IP address must be on a new line."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:172
|
168 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:359
|
169 |
msgid ""
|
170 |
"To specify an IP range use a wildcard \"*\" character. Acceptable ways to "
|
171 |
"use wildcards is shown in the examples below:"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:173
|
175 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:360
|
176 |
msgid "Example 1: 195.47.89.*"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:174
|
180 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:361
|
181 |
msgid "Example 2: 195.47.*.*"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:175
|
185 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:362
|
186 |
msgid "Example 3: 195.*.*.*"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:182
|
190 |
msgid "Enter User Agents:"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:187
|
194 |
msgid "Enter one or more user agent strings."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:191
|
198 |
msgid "Each user agent string must be on a new line."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:192
|
202 |
msgid "Example 1 - A single user agent string to block:"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:194
|
206 |
msgid "Example 2 - A list of more than 1 user agent strings to block"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: all-in-one-wp-security/admin/wp-security-blacklist-menu.php:202
|
210 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:341
|
211 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:303
|
212 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:225
|
213 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:491
|
214 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:148
|
215 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:225
|
216 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:369
|
217 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:521
|
218 |
msgid "Save Settings"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:111
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
222 |
msgid "Total Achievable Points: "
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:113
|
226 |
msgid "Current Score of Your Site: "
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:168
|
230 |
msgid ""
|
231 |
"Below is the current status of the critical features that you should "
|
232 |
"activate on your site to achieve a minimum level of recommended security"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:172
|
236 |
msgid "Admin Username"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:187
|
240 |
msgid "Login Lockdown"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:202
|
244 |
msgid "File Permission"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:217
|
248 |
msgid "Basic Firewall"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:239
|
252 |
msgid ""
|
253 |
"Maintenance mode is currently enabled. Remember to turn it off when you are "
|
254 |
"done"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:242
|
258 |
msgid "Maintenance mode is currently off."
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:246
|
262 |
msgid "Maintenance Mode"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:295
|
266 |
+
msgid "Number of users currently logged in site-wide is:"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:296
|
270 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:318
|
271 |
+
#, php-format
|
272 |
+
msgid "Go to the %s menu to see more details"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:301
|
276 |
+
msgid "There are no other site-wide users currently logged in."
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:317
|
280 |
+
msgid "Number of users currently logged into your site is:"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:323
|
284 |
+
msgid "There are no other users currently logged in."
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:388
|
288 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:124
|
289 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:143
|
290 |
msgid "Name"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:389
|
294 |
msgid "Version"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: all-in-one-wp-security/admin/wp-security-dashboard-menu.php:390
|
298 |
msgid "Plugin URL"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:78
|
302 |
msgid "Nonce check failed for DB prefix change operation!"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:86
|
306 |
msgid ""
|
307 |
"The plugin has detected that it cannot write to the wp-config.php file. This "
|
308 |
"feature can only be used if the plugin can successfully write to the wp-"
|
309 |
"config.php file."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:99
|
313 |
msgid "Please enter a value for the DB prefix."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:108
|
317 |
msgid ""
|
318 |
"<strong>ERROR</strong>: The table prefix can only contain numbers, letters, "
|
319 |
"and underscores."
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:116
|
323 |
msgid "Change Database Prefix"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:119
|
327 |
msgid ""
|
328 |
"Your WordPress DB is the most important asset of your website because it "
|
329 |
"contains a lot of your site's precious information."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:120
|
333 |
msgid ""
|
334 |
"The DB is also a target for hackers via methods such as SQL injections and "
|
335 |
"malicious and automated code which targets certain tables."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:121
|
339 |
msgid ""
|
340 |
"One way to add a layer of protection for your DB is to change the default "
|
341 |
"WordPress table prefix from \"wp_\" to something else which will be "
|
342 |
"difficult for hackers to guess."
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:122
|
346 |
msgid ""
|
347 |
"This feature allows you to easily change the prefix to a value of your "
|
348 |
"choice or to a random value set by this plugin."
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:128
|
352 |
msgid "DB Prefix Options"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:139
|
356 |
#, php-format
|
357 |
msgid "It is recommended that you perform a %s before using this feature"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:148
|
361 |
msgid "Current DB Table Prefix"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:154
|
365 |
msgid ""
|
366 |
"Your site is currently using the default WordPress DB prefix value of \"wp_"
|
367 |
"\". \n"
|
369 |
"consider changing the DB prefix value to another value."
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:161
|
373 |
msgid "Generate New DB Table Prefix"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:164
|
377 |
msgid ""
|
378 |
"Check this if you want the plugin to generate a random 6 character string "
|
379 |
"for the table prefix"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:165
|
383 |
msgid "OR"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:167
|
387 |
msgid ""
|
388 |
"Choose your own DB prefix by specifying a string which contains letters and/"
|
389 |
"or numbers and/or underscores. Example: xyz_"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:171
|
393 |
msgid "Change DB Prefix"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:192
|
397 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:80
|
398 |
msgid "Nonce check failed for manual DB backup operation!"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:209
|
402 |
msgid ""
|
403 |
+
"DB Backup was successfully completed! You will receive the backup file via "
|
404 |
+
"email if you have enabled \"Send Backup File Via Email\", otherwise you can "
|
405 |
+
"retrieve it via FTP from the following directory:"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:211
|
409 |
+
msgid "Your DB Backup File location: "
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:219
|
413 |
msgid "DB Backup failed. Please check the permissions of the backup directory."
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:236
|
417 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:120
|
418 |
msgid ""
|
419 |
"You entered a non numeric value for the \"backup time interval\" field. It "
|
420 |
"has been set to the default value."
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:243
|
424 |
msgid ""
|
425 |
"You entered a non numeric value for the \"number of backup files to keep\" "
|
426 |
"field. It has been set to the default value."
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:250
|
430 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:150
|
431 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:114
|
432 |
msgid ""
|
433 |
"You have entered an incorrect email address format. It has been set to your "
|
434 |
"WordPress admin email as default."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:256
|
438 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:156
|
439 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:178
|
440 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:120
|
441 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:474
|
442 |
+
msgid "Attention!"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:283
|
446 |
msgid "Manual Backup"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:289
|
450 |
msgid "To create a new DB backup just click on the button below."
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:292
|
454 |
msgid "Create DB Backup Now"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:296
|
458 |
msgid "Automated Scheduled Backups"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:308
|
462 |
msgid "Enable Automated Scheduled Backups"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:311
|
466 |
msgid ""
|
467 |
"Check this if you want the system to automatically generate backups "
|
468 |
"periodically based on the settings below"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:315
|
472 |
msgid "Backup Time Interval"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:318
|
476 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:253
|
477 |
msgid "Hours"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:319
|
481 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:254
|
482 |
msgid "Days"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:320
|
486 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:255
|
487 |
msgid "Weeks"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:322
|
491 |
msgid "Set the value for how often you would like an automated backup to occur"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:326
|
495 |
msgid "Number of Backup Files To Keep"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:328
|
499 |
msgid ""
|
500 |
"Thie field allows you to choose the number of backup files you would like to "
|
501 |
"keep in the backup directory"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:332
|
505 |
msgid "Send Backup File Via Email"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:335
|
509 |
msgid ""
|
510 |
"Check this if you want the system to email you the backup file after a DB "
|
511 |
"backup has been performed"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:337
|
515 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:299
|
516 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:221
|
517 |
msgid "Enter an email address"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:367
|
521 |
msgid "Starting DB prefix change operations....."
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:369
|
525 |
#, php-format
|
526 |
msgid ""
|
527 |
"Your WordPress system has a total of %s tables and your new DB prefix will "
|
528 |
"be: %s"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:375
|
532 |
+
#: all-in-one-wp-security/classes/wp-security-utility.php:206
|
533 |
msgid ""
|
534 |
"Failed to make a backup of the wp-config.php file. This operation will not "
|
535 |
"go ahead."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:379
|
539 |
msgid "A backup copy of your wp-config.php file was created successfully!"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:402
|
543 |
#, php-format
|
544 |
msgid "%s table name update failed"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:414
|
548 |
#, php-format
|
549 |
msgid "Please change the prefix manually for the above tables to: %s"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:417
|
553 |
#, php-format
|
554 |
msgid "%s tables had their prefix updated successfully!"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:432
|
558 |
msgid "wp-config.php file was updated successfully!"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:435
|
562 |
#, php-format
|
563 |
msgid ""
|
564 |
"The \"wp-config.php\" file was not able to be modified. Please modify this "
|
567 |
"value to that variable: %s"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:456
|
571 |
msgid "There was an error when updating the options table."
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:460
|
575 |
msgid ""
|
576 |
"The options table records which had references to the old DB prefix were "
|
577 |
"updated successfully!"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:485
|
581 |
#, php-format
|
582 |
msgid ""
|
583 |
"Error updating user_meta table where new meta_key = %s, old meta_key = %s "
|
584 |
"and user_id = %s."
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:491
|
588 |
msgid ""
|
589 |
"The usermeta table records which had references to the old DB prefix were "
|
590 |
"updated successfully!"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: all-in-one-wp-security/admin/wp-security-database-menu.php:493
|
594 |
msgid "DB prefix change tasks have been completed."
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:87
|
598 |
+
msgid "Nonce check failed for manual file change detection scan operation!"
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:94
|
602 |
+
msgid ""
|
603 |
+
"The plugin has detected that this is your first file change detection scan. "
|
604 |
+
"The file details from this scan will be used to detect file changes for "
|
605 |
+
"future scans!"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:188
|
609 |
+
msgid ""
|
610 |
+
"NEW SCAN COMPLETED: The plugin has detected that you have made changes to "
|
611 |
+
"the \"File Types To Ignore\" or \"Files To Ignore\" fields.\n"
|
612 |
+
" In order to ensure that future scan results are "
|
613 |
+
"accurate, the old scan data has been refreshed."
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:198
|
617 |
+
msgid ""
|
618 |
+
"All In One WP Security & Firewall has detected that there was a change in "
|
619 |
+
"your host's files."
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:200
|
623 |
+
msgid "View Scan Details & Clear This Message"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:209
|
627 |
+
msgid ""
|
628 |
+
"If given an opportunity hackers can insert their code or files into your "
|
629 |
+
"system which they can then use to carry out malicious acts on your site."
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:210
|
633 |
+
msgid ""
|
634 |
+
"Being informed of any changes in your files can be a good way to quickly "
|
635 |
+
"prevent a hacker from causing damage to your website."
|
636 |
+
msgstr ""
|
637 |
+
|
638 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:211
|
639 |
+
msgid ""
|
640 |
+
"In general, WordPress core and plugin files and file types such as \".php\" "
|
641 |
+
"or \".js\" should not change often and when they do, it is important that "
|
642 |
+
"you are made aware when a change occurs and which file was affected."
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:212
|
646 |
+
msgid ""
|
647 |
+
"The \"File Change Detection Feature\" will notify you of any file change "
|
648 |
+
"which occurs on your system, including the addition and deletion of files by "
|
649 |
+
"performing a regular automated or manual scan of your system's files."
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:213
|
653 |
+
msgid ""
|
654 |
+
"This feature also allows you to exclude certain files or folders from the "
|
655 |
+
"scan in cases where you know that they change often as part of their normal "
|
656 |
+
"operation. (For example log files and certain caching plugin files may "
|
657 |
+
"change often and hence you may choose to exclude such files from the file "
|
658 |
+
"change detection scan)"
|
659 |
+
msgstr ""
|
660 |
+
|
661 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:218
|
662 |
+
msgid "Manual File Change Detection Scan"
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:224
|
666 |
+
msgid ""
|
667 |
+
"To perform a manual file change detection scan click on the button below."
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:227
|
671 |
+
msgid "Perform Scan Now"
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:231
|
675 |
+
msgid "Automated File Change Detection"
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:243
|
679 |
+
msgid "Enable Automated File Change Detection Scan"
|
680 |
+
msgstr ""
|
681 |
+
|
682 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:246
|
683 |
+
msgid ""
|
684 |
+
"Check this if you want the system to automatically/periodically scan your "
|
685 |
+
"files to check for file changes based on the settings below"
|
686 |
+
msgstr ""
|
687 |
+
|
688 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:250
|
689 |
+
msgid "Scan Time Interval"
|
690 |
+
msgstr ""
|
691 |
+
|
692 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:257
|
693 |
+
msgid "Set the value for how often you would like a scan to occur"
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:261
|
697 |
+
msgid "File Types To Ignore"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:264
|
701 |
+
msgid ""
|
702 |
+
"Enter each file type or extension on a new line which you wish to exclude "
|
703 |
+
"from the file change detection scan."
|
704 |
+
msgstr ""
|
705 |
+
|
706 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:268
|
707 |
+
msgid ""
|
708 |
+
"You can exclude file types from the scan which would not normally pose any "
|
709 |
+
"security threat if they were changed. These can include things such as image "
|
710 |
+
"files."
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:269
|
714 |
+
msgid ""
|
715 |
+
"Example: If you want the scanner to ignore files of type jpg, png, and bmp, "
|
716 |
+
"then you would enter the following:"
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:270
|
720 |
+
msgid "jpg"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:271
|
724 |
+
msgid "png"
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:272
|
728 |
+
msgid "bmp"
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:278
|
732 |
+
msgid "Files/Directories To Ignore"
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:281
|
736 |
+
msgid ""
|
737 |
+
"Enter each file or directory on a new line which you wish to exclude from "
|
738 |
+
"the file change detection scan."
|
739 |
+
msgstr ""
|
740 |
+
|
741 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:285
|
742 |
+
msgid ""
|
743 |
+
"You can exclude specific files/directories from the scan which would not "
|
744 |
+
"normally pose any security threat if they were changed. These can include "
|
745 |
+
"things such as log files."
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:286
|
749 |
+
msgid ""
|
750 |
+
"Example: If you want the scanner to ignore certain files in different "
|
751 |
+
"directories or whole directories, then you would enter the following:"
|
752 |
+
msgstr ""
|
753 |
+
|
754 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:287
|
755 |
+
msgid "cache/config/master.php"
|
756 |
+
msgstr ""
|
757 |
+
|
758 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:288
|
759 |
+
msgid "somedirectory"
|
760 |
+
msgstr ""
|
761 |
+
|
762 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:294
|
763 |
+
msgid "Send Email When Change Detected"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:297
|
767 |
+
msgid ""
|
768 |
+
"Check this if you want the system to email you if a file change was detected"
|
769 |
+
msgstr ""
|
770 |
+
|
771 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:329
|
772 |
+
msgid "Latest File Change Scan Results"
|
773 |
+
msgstr ""
|
774 |
+
|
775 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:338
|
776 |
+
msgid "The following files were added to your host."
|
777 |
+
msgstr ""
|
778 |
+
|
779 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:341
|
780 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:362
|
781 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:386
|
782 |
+
msgid "File"
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:342
|
786 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:363
|
787 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:387
|
788 |
+
msgid "File Size"
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:343
|
792 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:364
|
793 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:388
|
794 |
+
msgid "File Modified"
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:359
|
798 |
+
msgid "The following files were removed from your host."
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: all-in-one-wp-security/admin/wp-security-filescan-menu.php:383
|
802 |
+
msgid "The following files were changed on your host."
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:90
|
806 |
#, php-format
|
807 |
msgid "The permissions for %s were succesfully changed to %s"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:94
|
811 |
#, php-format
|
812 |
msgid "Unable to change permissions for %s!"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:100
|
816 |
msgid "File Permissions Scan"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:103
|
820 |
msgid ""
|
821 |
"Your WordPress file and folder permission settings govern the accessability "
|
822 |
"and read/write privileges of the files and folders which make up your WP "
|
823 |
"installation."
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:104
|
827 |
msgid ""
|
828 |
"Your WP installation already comes with reasonably secure file permission "
|
829 |
"settings for the filesystem."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:105
|
833 |
msgid ""
|
834 |
"However, sometimes people or other plugins modify the various permission "
|
835 |
"settings of certain core WP folders or files such that they end up making "
|
836 |
"their site less secure because they chose the wrong permission values."
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:106
|
840 |
msgid ""
|
841 |
"This feature will scan the critical WP core folders and files and will "
|
842 |
"highlight any permission settings which are insecure."
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:112
|
846 |
msgid "WP Directory and File Permissions Scan Results"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:125
|
850 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:144
|
851 |
msgid "File/Folder"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:126
|
855 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:145
|
856 |
msgid "Current Permissions"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:127
|
860 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:146
|
861 |
msgid "Recommended Permissions"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:128
|
865 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:147
|
866 |
msgid "Recommended Action"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:185
|
870 |
+
msgid "Your PHP file editing settings were saved successfully."
|
871 |
+
msgstr ""
|
872 |
+
|
873 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:189
|
874 |
+
msgid ""
|
875 |
+
"Operation failed! Unable to modify or make a backup of wp-config.php file!"
|
876 |
+
msgstr ""
|
877 |
+
|
878 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:195
|
879 |
msgid "File Editing"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:198
|
883 |
msgid ""
|
884 |
"The Wordpress Dashboard by default allows administrators to edit PHP files, "
|
885 |
"such as plugin and theme files."
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:199
|
889 |
msgid ""
|
890 |
"This is often the first tool an attacker will use if able to login, since it "
|
891 |
"allows code execution."
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:200
|
895 |
msgid ""
|
896 |
"This feature will disable the ability for people to edit PHP files via the "
|
897 |
"dashboard."
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:206
|
901 |
msgid "Disable PHP File Editing"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:218
|
905 |
msgid "Disable Ability To Edit PHP Files"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:221
|
909 |
msgid ""
|
910 |
"Check this if you want to remove the ability for people to edit PHP files "
|
911 |
"via the WP dashboard"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:265
|
915 |
msgid ""
|
916 |
"You have successfully saved the Prevent Access to Default WP Files "
|
917 |
"configuration."
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:269
|
921 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:109
|
922 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:263
|
923 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:474
|
924 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:613
|
925 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:96
|
926 |
msgid ""
|
927 |
"Could not write to the .htaccess file. Please check the file permissions."
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:274
|
931 |
msgid "WordPress Files"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:277
|
935 |
#, php-format
|
936 |
msgid ""
|
937 |
"This feature allows you to prevent access to files such as %s, %s and %s "
|
938 |
"which are delivered with all WP installations."
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:278
|
942 |
msgid ""
|
943 |
"By preventing access to these files you are hiding some key pieces of "
|
944 |
"information (such as WordPress version info) from potential hackers."
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:283
|
948 |
msgid "Prevent Access to Default WP Files"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:294
|
952 |
msgid "Prevent Access to WP Default Install Files"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:297
|
956 |
msgid ""
|
957 |
"Check this if you want to prevent access to readme.html, license.txt and wp-"
|
958 |
"config-sample.php."
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:301
|
962 |
msgid "Save Setting"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:312
|
966 |
msgid "System Logs"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:315
|
970 |
msgid ""
|
971 |
"Sometimes your hosting platform will produce error or warning logs in a file "
|
972 |
"called \"error_log\"."
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:316
|
976 |
msgid ""
|
977 |
"Depending on the nature and cause of the error or warning, your hosting "
|
978 |
"server can create multiple instances of this file in numerous directory "
|
979 |
"locations of your WordPress installation."
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:317
|
983 |
msgid ""
|
984 |
"By occassionally viewing the contents of these logs files you can keep "
|
985 |
"informed of any underlying problems on your system which you might need to "
|
986 |
"address."
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:323
|
990 |
msgid "View System Logs"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:328
|
994 |
msgid "View Latest System Logs"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:330
|
998 |
msgid "Loading..."
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:347
|
1002 |
msgid "No system logs were found!"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:400
|
1006 |
msgid "Set Recommended Permissions"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:406
|
1010 |
msgid "No Action Required"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: all-in-one-wp-security/admin/wp-security-filesystem-menu.php:446
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1014 |
#, php-format
|
1015 |
msgid "Showing latest entries of error_log file: %s"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:105
|
1019 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:92
|
1020 |
msgid "Settings were successfully saved"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:114
|
1024 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:479
|
1025 |
msgid "Firewall Settings"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:121
|
1029 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:629
|
1030 |
#, php-format
|
1031 |
msgid ""
|
1032 |
"This should not have any impact on your site's general functionality but if "
|
1033 |
"you wish you can take a %s of your .htaccess file before proceeding."
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:122
|
1037 |
msgid ""
|
1038 |
"The features in this tab allow you to activate some basic firewall security "
|
1039 |
"protection rules for your site."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:123
|
1043 |
msgid ""
|
1044 |
"The firewall functionality is achieved via the insertion of special code "
|
1045 |
"into your currently active .htaccess file."
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:129
|
1049 |
msgid "Basic Firewall Settings"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:137
|
1053 |
msgid "Enable Basic Firewall Protection"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:140
|
1057 |
msgid "Check this if you want to apply basic firewall protection to your site."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:144
|
1061 |
msgid ""
|
1062 |
"This setting will implement the following basic firewall protection "
|
1063 |
"mechanisms on your site:"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:145
|
1067 |
msgid "1) Protect your htaccess file by denying access to it."
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:146
|
1071 |
msgid "2) Disable the server signature."
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:147
|
1075 |
msgid "3) Limit file upload size (10MB)."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:148
|
1079 |
msgid "4) Protect your wp-config.php file by denying access to it."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:149
|
1083 |
msgid ""
|
1084 |
"The above firewall features will be applied via your .htaccess file and "
|
1085 |
"should not affect your site's overall functionality."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:150
|
1089 |
msgid ""
|
1090 |
"You are still advised to take a backup of your active .htaccess file just in "
|
1091 |
"case."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:159
|
1095 |
msgid "WordPress Pingback Vulnerability Protection"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:167
|
1099 |
msgid "Enable Pingback Protection"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:170
|
1103 |
msgid ""
|
1104 |
"Check this if you are not using the WP XML-RPC functionality and you want to "
|
1105 |
"enable protection against WordPress pingback vulnerabilities."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:174
|
1109 |
msgid ""
|
1110 |
"This setting will add a directive in your .htaccess to disable access to the "
|
1111 |
"WordPress xmlrpc.php file which is responsible for the XML-RPC functionality "
|
1112 |
"such as pingbacks in WordPress."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:175
|
1116 |
msgid ""
|
1117 |
"Hackers can exploit various pingback vulnerabilities in the WordPress XML-"
|
1118 |
"RPC API in a number of ways such as:"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:176
|
1122 |
msgid "1) Denial of Service (DoS) attacks"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:177
|
1126 |
msgid "2) Hacking internal routers."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:178
|
1130 |
msgid "3) Scanning ports in internal networks to get info from various hosts."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:179
|
1134 |
msgid ""
|
1135 |
"Apart from the security protection benefit, this feature may also help "
|
1136 |
"reduce load on your server, particularly if your site currently has a lot of "
|
1137 |
"unwanted traffic hitting the XML-RPC API on your installation."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:180
|
1141 |
msgid ""
|
1142 |
"NOTE: You should only enable this feature if you are not currently using the "
|
1143 |
"XML-RPC functionality on your WordPress installation."
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:187
|
1147 |
msgid "Save Basic Firewall Settings"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:259
|
1151 |
msgid ""
|
1152 |
"You have successfully saved the Additional Firewall Protection configuration"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:273
|
1156 |
msgid "Additional Firewall Protection"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:277
|
1160 |
#, php-format
|
1161 |
msgid ""
|
1162 |
"Due to the nature of the code being inserted to the .htaccess file, this "
|
1165 |
"configuration."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:279
|
1169 |
msgid ""
|
1170 |
"This feature allows you to activate more advanced firewall settings to your "
|
1171 |
"site."
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:280
|
1175 |
msgid ""
|
1176 |
"The advanced firewall rules are applied via the insertion of special code to "
|
1177 |
"your currently active .htaccess file."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:289
|
1181 |
msgid "Listing of Directory Contents"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:298
|
1185 |
msgid "Disable Index Views"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:301
|
1189 |
msgid "Check this if you want to disable directory and file listing."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:306
|
1193 |
msgid ""
|
1194 |
"By default, an Apache server will allow the listing of the contents of a "
|
1195 |
"directory if it doesn't contain an index.php file."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:308
|
1199 |
msgid "This feature will prevent the listing of contents for all directories."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:310
|
1203 |
msgid ""
|
1204 |
"NOTE: In order for this feature to work \"AllowOverride\" must be enabled in "
|
1205 |
"your httpd.conf file. Ask your hosting provider to check this if you don't "
|
1206 |
"have access to httpd.conf"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:319
|
1210 |
msgid "Trace and Track"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:328
|
1214 |
msgid "Disable Trace and Track"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:331
|
1218 |
msgid "Check this if you want to disable trace and track."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:336
|
1222 |
msgid ""
|
1223 |
"HTTP Trace attack (XST) can be used to return header requests and grab "
|
1224 |
"cookies and other information."
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:338
|
1228 |
msgid ""
|
1229 |
"This hacking technique is usually used together with cross site scripting "
|
1230 |
"attacks (XSS)."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:340
|
1234 |
msgid ""
|
1235 |
"Disabling trace and track on your site will help prevent HTTP Trace attacks."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:349
|
1239 |
msgid "Proxy Comment Posting"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:359
|
1243 |
msgid "Forbid Proxy Comment Posting"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:362
|
1247 |
msgid "Check this if you want to forbid proxy comment posting."
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:367
|
1251 |
msgid ""
|
1252 |
"This setting will deny any requests that use a proxy server when posting "
|
1253 |
"comments."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:368
|
1257 |
msgid ""
|
1258 |
"By forbidding proxy comments you are in effect eliminating some SPAM and "
|
1259 |
"other proxy requests."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:377
|
1263 |
msgid "Bad Query Strings"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:387
|
1267 |
msgid "Deny Bad Query Strings"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:390
|
1271 |
msgid "This will help protect you against malicious queries via XSS."
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:395
|
1275 |
msgid ""
|
1276 |
"This feature will write rules in your .htaccess file to prevent malicious "
|
1277 |
"string attacks on your site using XSS."
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:396
|
1281 |
msgid ""
|
1282 |
"NOTE: Some of these strings might be used for plugins or themes and hence "
|
1283 |
"this might break some functionality."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:397
|
1287 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:427
|
1288 |
msgid ""
|
1289 |
"You are therefore strongly advised to take a backup of your active .htaccess "
|
1290 |
"file before applying this feature."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:406
|
1294 |
msgid "Advanced Character String Filter"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:416
|
1298 |
msgid "Enable Advanced Character String Filter"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:419
|
1302 |
msgid "This will block bad character matches from XSS."
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:424
|
1306 |
msgid ""
|
1307 |
"This is an advanced character string filter to prevent malicious string "
|
1308 |
"attacks on your site coming from Cross Site Scripting (XSS)."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:425
|
1312 |
msgid ""
|
1313 |
"This setting matches for common malicious string patterns and exploits and "
|
1314 |
"will produce a 403 error for the hacker attempting the query."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:426
|
1318 |
msgid "NOTE: Some strings for this setting might break some functionality."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:435
|
1322 |
msgid "Save Additional Firewall Settings"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:470
|
1326 |
msgid "You have successfully saved the 5G Firewall Protection configuration"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:483
|
1330 |
#, php-format
|
1331 |
msgid ""
|
1332 |
"This feature allows you to activate the 5G firewall security protection "
|
1333 |
"rules designed and produced by %s."
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:484
|
1337 |
msgid ""
|
1338 |
"The 5G Blacklist is a simple, flexible blacklist that helps reduce the "
|
1339 |
"number of malicious URL requests that hit your website."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:485
|
1343 |
msgid ""
|
1344 |
"The added advantage of applying the 5G firewall to your site is that it has "
|
1345 |
"been tested and confirmed by the people at PerishablePress.com to be an "
|
1347 |
"sites running on an Apache server or similar."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:486
|
1351 |
#, php-format
|
1352 |
msgid ""
|
1353 |
"Therefore the 5G firewall rules should not have any impact on your site's "
|
1355 |
"file before proceeding."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:492
|
1359 |
msgid "5G Blacklist/Firewall Settings"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:504
|
1363 |
msgid "Enable 5G Firewall Protection"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:507
|
1367 |
msgid ""
|
1368 |
"Check this if you want to apply the 5G Blacklist firewall protection from "
|
1369 |
"perishablepress.com to your site."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:511
|
1373 |
msgid ""
|
1374 |
"This setting will implement the 5G security firewall protection mechanisms "
|
1375 |
"on your site which include the following things:"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:512
|
1379 |
msgid "1) Block forbidden characters commonly used in exploitative attacks."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:513
|
1383 |
msgid "2) Block malicious encoded URL characters such as the \".css(\" string."
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:514
|
1387 |
msgid ""
|
1388 |
"3) Guard against the common patterns and specific exploits in the root "
|
1389 |
"portion of targeted URLs."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:515
|
1393 |
msgid ""
|
1394 |
"4) Stop attackers from manipulating query strings by disallowing illicit "
|
1395 |
"characters."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:516
|
1399 |
msgid "....and much more."
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:522
|
1403 |
msgid "Save 5G Firewall Settings"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:550
|
1407 |
msgid ""
|
1408 |
"Settings have not been saved - your secret word must consist only of "
|
1409 |
"alphanumeric characters, ie, letters and/or numbers only!"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:568
|
1413 |
msgid ""
|
1414 |
"You have successfully enabled the cookie based brute force prevention feature"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:569
|
1418 |
msgid ""
|
1419 |
"From now on you will need to log into your WP Admin using the following URL:"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:571
|
1423 |
msgid ""
|
1424 |
"It is important that you save this URL value somewhere in case you forget "
|
1425 |
"it, OR,"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:572
|
1429 |
#, php-format
|
1430 |
msgid "simply remember to add a \"?%s=1\" to your current site URL address."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:578
|
1434 |
msgid ""
|
1435 |
"You have successfully saved cookie based brute force prevention feature "
|
1436 |
"settings."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:623
|
1440 |
msgid "Brute Force Prevention Firewall Settings"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:630
|
1444 |
msgid ""
|
1445 |
"A Brute Force Attack is when a hacker tries many combinations of usernames "
|
1446 |
"and passwords until they succeed in guessing the right combination."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:631
|
1450 |
msgid ""
|
1451 |
"Due to the fact that at any one time there may be many concurrent login "
|
1452 |
"attempts occurring on your site via malicious automated robots, this also "
|
1453 |
"has a negative impact on your server's memory and performance."
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:632
|
1457 |
msgid ""
|
1458 |
"The features in this tab will stop the majority of Brute Force Login Attacks "
|
1459 |
"at the .htaccess level thus providing even better protection for your WP "
|
1461 |
"not have to run PHP code to process the login attempts."
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:638
|
1465 |
msgid "Cookie Based Brute Force Login Prevention"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:649
|
1469 |
msgid "Enable Brute Force Attack Prevention"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:652
|
1473 |
msgid ""
|
1474 |
"Check this if you want to protect your login page from Brute Force Attack."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:657
|
1478 |
msgid ""
|
1479 |
"This feature will deny access to your WordPress login page for all people "
|
1480 |
"except those who have a special cookie in their browser."
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:659
|
1484 |
msgid "To use this feature do the following:"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:661
|
1488 |
msgid "1) Enable the checkbox."
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:663
|
1492 |
msgid ""
|
1493 |
"2) Enter a secret word consisting of alphanumeric characters which will be "
|
1494 |
"difficult to guess. This secret word will be useful whenever you need to "
|
1496 |
"below)."
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:665
|
1500 |
msgid ""
|
1501 |
"3) You will then be provided with a special login URL. You will need to use "
|
1502 |
"this URL to login to your WordPress site instead of the usual login URL. "
|
1504 |
"allow you access to the WordPress administration login page."
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:667
|
1508 |
msgid ""
|
1509 |
"Any person trying to access your login page who does not have the special "
|
1510 |
"cookie in their browser will be automatically blocked."
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:674
|
1514 |
msgid "Secret Word"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:676
|
1518 |
msgid ""
|
1519 |
"Choose a secret word consisting of alphanumeric characters which you can use "
|
1520 |
"to access your special URL. Your are highly encouraged to choose a word "
|
1521 |
"which will be difficult to guess."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:680
|
1525 |
msgid "Re-direct URL"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:684
|
1529 |
msgid ""
|
1530 |
"Specify a URL to redirect a hacker to when they try to access your WordPress "
|
1531 |
"login page."
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:691
|
1535 |
msgid ""
|
1536 |
"The URL specified here can be any site's URL and does not have to be your "
|
1537 |
"own. For example you can be as creative as you like and send hackers to the "
|
1538 |
"CIA or NSA home page."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:693
|
1542 |
msgid ""
|
1543 |
"This field will default to: http://127.0.0.1 if you do not enter a value."
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:695
|
1547 |
msgid "Useful Tip:"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:697
|
1551 |
msgid ""
|
1552 |
"It's a good idea to not redirect attempted brute force login attempts to "
|
1553 |
"your site because it increases the load on your server."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:699
|
1557 |
msgid ""
|
1558 |
"Redirecting a hacker or malicious bot back to \"http://127.0.0.1\" is ideal "
|
1559 |
"because it deflects them back to their own local host and puts the load on "
|
1560 |
"their server instead of yours."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:706
|
1564 |
msgid "My Site Has Posts Or Pages Which Are Password Protected"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:709
|
1568 |
msgid ""
|
1569 |
"Check this if you are using the native WordPress password protection feature "
|
1570 |
"for some or all of your blog posts or pages."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:714
|
1574 |
msgid ""
|
1575 |
"In the cases where you are protecting some of your posts or pages using the "
|
1576 |
"in-built WordPress password protection feature, a few extra lines of "
|
1578 |
"people trying to access pages are not automatically blocked."
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:716
|
1582 |
msgid ""
|
1583 |
"By enabling this checkbox the plugin will add the necessary rules and "
|
1584 |
"exceptions to your .htacces file so that people trying to access these pages "
|
1585 |
"are not automatically blocked."
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:718
|
1589 |
msgid "Helpful Tip:"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:720
|
1593 |
msgid ""
|
1594 |
"If you do not use the WordPress password protection feature for your posts "
|
1595 |
"or pages then it is highly recommended that you leave this checkbox disabled."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:727
|
1599 |
+
msgid "My Site Has a Theme or Plugins Which Use AJAX"
|
1600 |
+
msgstr ""
|
1601 |
+
|
1602 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:730
|
1603 |
+
msgid "Check this if your site uses AJAX functionality."
|
1604 |
+
msgstr ""
|
1605 |
+
|
1606 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:735
|
1607 |
+
msgid ""
|
1608 |
+
"In the cases where your WordPress installation has a theme or plugins which "
|
1609 |
+
"use AJAX, a few extra lines of directives and exceptions need to be added to "
|
1610 |
+
"your .htacces file to prevent AJAX requests from being automatically blocked "
|
1611 |
+
"by the brute force prevention feature."
|
1612 |
+
msgstr ""
|
1613 |
+
|
1614 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:737
|
1615 |
+
msgid ""
|
1616 |
+
"By enabling this checkbox the plugin will add the necessary rules and "
|
1617 |
+
"exceptions to your .htacces file so that AJAX operations will work as "
|
1618 |
+
"expected."
|
1619 |
+
msgstr ""
|
1620 |
+
|
1621 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:752
|
1622 |
msgid "The cookie test was successful. You can now enable this feature."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:755
|
1626 |
msgid "Save Feature Settings"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:762
|
1630 |
msgid ""
|
1631 |
"The cookie test failed on this server. So this feature cannot be used on "
|
1632 |
"this site."
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:768
|
1636 |
msgid ""
|
1637 |
"Before using this feature you are required to perform a cookie test first. "
|
1638 |
"This is to make sure that your browser cookie is working correctly and that "
|
1639 |
"you won't lock yourself out."
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: all-in-one-wp-security/admin/wp-security-firewall-menu.php:770
|
1643 |
msgid "Perform Cookie Test"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:79
|
1647 |
+
#: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:86
|
1648 |
+
#: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:80
|
1649 |
+
#: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:91
|
1650 |
+
#: all-in-one-wp-security/admin/wp-security-list-login-fails.php:78
|
1651 |
msgid "Please select some records using the checkboxes"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:107
|
1655 |
+
#: all-in-one-wp-security/admin/wp-security-list-login-fails.php:107
|
1656 |
msgid "The selected entries were deleted successfully!"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
+
#: all-in-one-wp-security/admin/wp-security-list-acct-activity.php:120
|
1660 |
+
#: all-in-one-wp-security/admin/wp-security-list-login-fails.php:119
|
1661 |
msgid "The selected entry was deleted successfully!"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:139
|
1665 |
msgid ""
|
1666 |
"The selected IP addresses were saved in the blacklist configuration settings."
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:153
|
1670 |
msgid ""
|
1671 |
"The .htaccess file was successfully modified to include the selected IP "
|
1672 |
"addresses."
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:159
|
1676 |
msgid ""
|
1677 |
"NOTE: The .htaccess file was not modified because you have disabled the "
|
1678 |
"\"Enable IP or User Agent Blacklisting\" check box."
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: all-in-one-wp-security/admin/wp-security-list-comment-spammer-ip.php:160
|
1682 |
#, php-format
|
1683 |
msgid ""
|
1684 |
"To block these IP addresses you will need to enable the above flag in the %s "
|
1685 |
"menu"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:115
|
1689 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:641
|
1690 |
msgid "The selected IP ranges were unlocked successfully!"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: all-in-one-wp-security/admin/wp-security-list-locked-ip.php:124
|
1694 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:650
|
1695 |
msgid "The selected IP range was unlocked successfully!"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:82
|
1699 |
msgid "Site lockout feature settings saved!"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:87
|
1703 |
msgid "General Visitor Lockout"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:93
|
1707 |
msgid ""
|
1708 |
"This feature allows you to put your site into \"maintenance mode\" by "
|
1709 |
"locking down the front-end to all visitors except logged in users with super "
|
1710 |
"admin privileges."
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:94
|
1714 |
msgid ""
|
1715 |
"Locking your site down to general visitors can be useful if you are "
|
1716 |
"investigating some issues on your site or perhaps you might be doing some "
|
1717 |
"maintenance and wish to keep out all traffic for security reasons."
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:99
|
1721 |
msgid "Enable Front-end Lockout"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:102
|
1725 |
msgid ""
|
1726 |
"Check this if you want all visitors except those who are logged in as "
|
1727 |
"administrator to be locked out of the front-end of your site."
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:106
|
1731 |
msgid "Enter a Message:"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:118
|
1735 |
msgid ""
|
1736 |
"Enter a message you wish to display to visitors when your site is in "
|
1737 |
"maintenance mode."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: all-in-one-wp-security/admin/wp-security-maintenance-menu.php:125
|
1741 |
msgid "Save Site Lockout Settings"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:89
|
1745 |
msgid "All the security features have been disabled successfully!"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:93
|
1749 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:120
|
1750 |
+
msgid ""
|
1751 |
+
"Could not write to the .htaccess file. Please restore your .htaccess file "
|
1752 |
+
"manually using the restore functionality in the \".htaccess File\"."
|
1753 |
+
msgstr ""
|
1754 |
+
|
1755 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:98
|
1756 |
+
msgid ""
|
1757 |
+
"Could not write to the wp-config.php. Please restore your wp-config.php file "
|
1758 |
+
"manually using the restore functionality in the \"wp-config.php File\"."
|
1759 |
+
msgstr ""
|
1760 |
+
|
1761 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:116
|
1762 |
+
msgid "All firewall rules have been disabled successfully!"
|
1763 |
+
msgstr ""
|
1764 |
+
|
1765 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:130
|
1766 |
msgid "WP Security Plugin"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:132
|
1770 |
msgid ""
|
1771 |
"Thank you for using our WordPress security plugin. There are a lot of "
|
1772 |
"security features in this plugin."
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:133
|
1776 |
msgid ""
|
1777 |
"Go through each menu items and enable the security options to add more "
|
1778 |
+
"security to your site. Start by activating the basic features first."
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:134
|
1782 |
msgid ""
|
1783 |
"It is a good practice to take a backup of your .htaccess file, database and "
|
1784 |
"wp-config.php file before activating the security features. This plugin has "
|
1785 |
"options that you can use to backup those resources easily."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:137
|
1789 |
msgid "Backup your database"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:138
|
1793 |
msgid "Backup .htaccess file"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:139
|
1797 |
msgid "Backup wp-config.php file"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:145
|
1801 |
msgid "Disable Security Features"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:151
|
1805 |
msgid ""
|
1806 |
"If you think that some plugin functionality on your site is broken due to a "
|
1807 |
"security feature you enabled in this plugin, then use the following option "
|
1808 |
"to turn off all the security features of this plugin."
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:155
|
1812 |
msgid "Disable All Security Features"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:161
|
1816 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:171
|
1817 |
+
msgid "Disable All Firewall Rules"
|
1818 |
+
msgstr ""
|
1819 |
+
|
1820 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:167
|
1821 |
msgid ""
|
1822 |
+
"This feature will disable all firewall rules which are currently active in "
|
1823 |
+
"this plugin and it will also delete these rules from your .htacess file. Use "
|
1824 |
+
"it if you think one of the firewall rules is causing an issue on your site."
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:200
|
1828 |
+
msgid ""
|
1829 |
+
"Your .htaccess file was successfully backed up! Using an FTP program go to "
|
1830 |
+
"the \"backups\" directory of this plugin to save a copy of the file to your "
|
1831 |
+
"computer."
|
1832 |
msgstr ""
|
1833 |
|
1834 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:210
|
1835 |
msgid ""
|
1836 |
"htaccess file rename failed during backup. Please check your root directory "
|
1837 |
"for the backup file using FTP."
|
1838 |
msgstr ""
|
1839 |
|
1840 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:216
|
1841 |
msgid "htaccess backup failed."
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:231
|
1845 |
msgid "Please choose a .htaccess to restore from."
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:247
|
1849 |
msgid ""
|
1850 |
"htaccess file restore failed. Please attempt to restore the .htaccess "
|
1851 |
"manually using FTP."
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:251
|
1855 |
msgid "Your .htaccess file has successfully been restored!"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:257
|
1859 |
msgid ""
|
1860 |
"htaccess Restore operation failed! Please check the contents of the file you "
|
1861 |
"are trying to restore from."
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:263
|
1865 |
msgid ".htaccess File Operations"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:266
|
1869 |
msgid ""
|
1870 |
"Your \".htaccess\" file is a key component of your website's security and it "
|
1871 |
"can be modified to implement various levels of protection mechanisms."
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:267
|
1875 |
msgid ""
|
1876 |
"This feature allows you to backup and save your currently active .htaccess "
|
1877 |
"file should you need to re-use the the backed up file in the future."
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:268
|
1881 |
msgid ""
|
1882 |
"You can also restore your site's .htaccess settings using a backed up ."
|
1883 |
"htaccess file."
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:282
|
1887 |
msgid "Save the current .htaccess file"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:286
|
1891 |
msgid ""
|
1892 |
"Click the button below to backup and save the currently active .htaccess "
|
1893 |
"file."
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:287
|
1897 |
msgid "Backup .htaccess File"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:291
|
1901 |
msgid "Restore from a backed up .htaccess file"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:297
|
1905 |
msgid ".htaccess file to restore from"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:303
|
1909 |
msgid ""
|
1910 |
"After selecting your file, click the button below to restore your site using "
|
1911 |
"the backed up htaccess file (htaccess_backup.txt)."
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:309
|
1915 |
msgid "Restore .htaccess File"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:313
|
1919 |
msgid "View Contents of the currently active .htaccess file"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:342
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1923 |
msgid "Please choose a wp-config.php file to restore from."
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:358
|
1927 |
msgid ""
|
1928 |
"wp-config.php file restore failed. Please attempt to restore this file "
|
1929 |
"manually using FTP."
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:362
|
1933 |
msgid "Your wp-config.php file has successfully been restored!"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:368
|
1937 |
msgid ""
|
1938 |
"wp-config.php Restore operation failed! Please check the contents of the "
|
1939 |
"file you are trying to restore from."
|
1940 |
msgstr ""
|
1941 |
|
1942 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:374
|
1943 |
msgid "wp-config.php File Operations"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:377
|
1947 |
msgid ""
|
1948 |
"Your \"wp-config.php\" file is one of the most important in your WordPress "
|
1949 |
"installation. It is a primary configuration file and contains crucial things "
|
1950 |
"such as details of your database and other critical components."
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:378
|
1954 |
msgid ""
|
1955 |
"This feature allows you to backup and save your currently active wp-config."
|
1956 |
"php file should you need to re-use the the backed up file in the future."
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:379
|
1960 |
msgid ""
|
1961 |
"You can also restore your site's wp-config.php settings using a backed up wp-"
|
1962 |
"config.php file."
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:393
|
1966 |
msgid "Save the current wp-config.php file"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:397
|
1970 |
msgid ""
|
1971 |
+
"Click the button below to backup and download the contents of the currently "
|
1972 |
+
"active wp-config.php file."
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:398
|
1976 |
msgid "Backup wp-config.php File"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:403
|
1980 |
msgid "Restore from a backed up wp-config file"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:409
|
1984 |
msgid "wp-config file to restore from"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:415
|
1988 |
msgid ""
|
1989 |
"After selecting your file click the button below to restore your site using "
|
1990 |
"the backed up wp-config file (wp-config.php.backup.txt)."
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:421
|
1994 |
msgid "Restore wp-config File"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:425
|
1998 |
msgid "View Contents of the currently active wp-config.php file"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:460
|
2002 |
msgid "WP Generator Meta Tag"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:463
|
2006 |
msgid ""
|
2007 |
"Wordpress generator automatically adds some meta information inside the "
|
2008 |
"\"head\" tags of every page on your site's front end. Below is an example of "
|
2009 |
"this:"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:465
|
2013 |
msgid ""
|
2014 |
"The above meta information shows which version of WordPress your site is "
|
2015 |
"currently running and thus can help hackers or crawlers scan your site to "
|
2016 |
"see if you have an older version of WordPress or one with a known exploit."
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:466
|
2020 |
msgid ""
|
2021 |
"This feature will allow you to remove the WP generator meta info from your "
|
2022 |
"site's pages."
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:472
|
2026 |
msgid "WP Generator Meta Info"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:484
|
2030 |
msgid "Remove WP Generator Meta Info"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: all-in-one-wp-security/admin/wp-security-settings-menu.php:487
|
2034 |
msgid ""
|
2035 |
"Check this if you want to remove the meta info produced by WP Generator from "
|
2036 |
"all pages"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:101
|
2040 |
+
msgid "Comment SPAM Settings"
|
2041 |
+
msgstr ""
|
2042 |
+
|
2043 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:107
|
2044 |
+
msgid ""
|
2045 |
+
"A large portion of WordPress blog comment SPAM is mainly produced by "
|
2046 |
+
"automated bots and not necessarily by humans. "
|
2047 |
+
msgstr ""
|
2048 |
+
|
2049 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:108
|
2050 |
+
msgid ""
|
2051 |
+
"This feature will greatly minimize the useless and unecessary traffic and "
|
2052 |
+
"load on your server resulting from SPAM comments by blocking all comment "
|
2053 |
+
"requests which do not originate from your domain."
|
2054 |
+
msgstr ""
|
2055 |
+
|
2056 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:114
|
2057 |
+
msgid "Block Spambot Comments"
|
2058 |
+
msgstr ""
|
2059 |
+
|
2060 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:129
|
2061 |
+
msgid "Block Spambots From Posting Comments"
|
2062 |
+
msgstr ""
|
2063 |
+
|
2064 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:132
|
2065 |
+
msgid ""
|
2066 |
+
"Check this if you want to apply a firewall rule which will block comments "
|
2067 |
+
"originating from spambots."
|
2068 |
+
msgstr ""
|
2069 |
+
|
2070 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:136
|
2071 |
+
msgid ""
|
2072 |
+
"This feature will implement a firewall rule to block all comment attempts "
|
2073 |
+
"which do not originate from your domain."
|
2074 |
+
msgstr ""
|
2075 |
+
|
2076 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:137
|
2077 |
+
msgid ""
|
2078 |
+
"A legitimate comment is one which is submitted by a human who physically "
|
2079 |
+
"fills out the comment form and clicks the submit button. For such events, "
|
2080 |
+
"the HTTP_REFERRER is always set to your own domain."
|
2081 |
+
msgstr ""
|
2082 |
+
|
2083 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:138
|
2084 |
+
msgid ""
|
2085 |
+
"A comment submitted by a spambot is done by directly calling the comments."
|
2086 |
+
"php file, which usually means that the HTTP_REFERRER value is not your "
|
2087 |
+
"domain and often times empty."
|
2088 |
+
msgstr ""
|
2089 |
+
|
2090 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:139
|
2091 |
+
msgid ""
|
2092 |
+
"This feature will check and block comment requests which are not referred by "
|
2093 |
+
"your domain thus greatly reducing your overall blog SPAM and PHP requests "
|
2094 |
+
"done by the server to process these comments."
|
2095 |
+
msgstr ""
|
2096 |
+
|
2097 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:166
|
2098 |
+
msgid "Nonce check failed for list SPAM comment IPs!"
|
2099 |
+
msgstr ""
|
2100 |
+
|
2101 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:172
|
2102 |
+
msgid ""
|
2103 |
+
"You entered a non numeric value for the minimum SPAM comments per IP field. "
|
2104 |
+
"It has been set to the default value."
|
2105 |
+
msgstr ""
|
2106 |
+
|
2107 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:184
|
2108 |
+
#, php-format
|
2109 |
+
msgid ""
|
2110 |
+
"Displaying results for IP addresses which have posted a minimum of %s SPAM "
|
2111 |
+
"comments"
|
2112 |
+
msgstr ""
|
2113 |
+
|
2114 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:200
|
2115 |
+
msgid ""
|
2116 |
+
"This tab displays a list of the IP addresses of the people or bots who have "
|
2117 |
+
"left SPAM comments on your site."
|
2118 |
+
msgstr ""
|
2119 |
+
|
2120 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:201
|
2121 |
+
msgid ""
|
2122 |
+
"This information can be handy for identifying the most persistent IP "
|
2123 |
+
"addresses or ranges used by spammers."
|
2124 |
+
msgstr ""
|
2125 |
+
|
2126 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:202
|
2127 |
+
msgid ""
|
2128 |
+
"By inspecting the IP address data coming from spammers you will be in a "
|
2129 |
+
"better position to determine which addresses or address ranges you should "
|
2130 |
+
"block by adding them to your blacklist."
|
2131 |
+
msgstr ""
|
2132 |
+
|
2133 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:203
|
2134 |
+
msgid ""
|
2135 |
+
"To add one or more of the IP addresses displayed in the table below to your "
|
2136 |
+
"blacklist, simply click the \"Block\" link for the individual row or select "
|
2137 |
+
"more than one address \n"
|
2138 |
+
" using the checkboxes and then choose the \"block"
|
2139 |
+
"\" option from the Bulk Actions dropdown list and click the \"Apply\" button."
|
2140 |
+
msgstr ""
|
2141 |
+
|
2142 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:209
|
2143 |
+
msgid "List SPAMMER IP Addresses"
|
2144 |
+
msgstr ""
|
2145 |
+
|
2146 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:215
|
2147 |
+
msgid "Minimum number of SPAM comments per IP"
|
2148 |
+
msgstr ""
|
2149 |
+
|
2150 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:217
|
2151 |
+
msgid ""
|
2152 |
+
"This field allows you to list only those IP addresses which have been used "
|
2153 |
+
"to post X or more SPAM comments."
|
2154 |
+
msgstr ""
|
2155 |
+
|
2156 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:221
|
2157 |
+
msgid ""
|
2158 |
+
"Example 1: Setting this value to \"0\" or \"1\" will list ALL IP addresses "
|
2159 |
+
"which were used to submit SPAM comments."
|
2160 |
+
msgstr ""
|
2161 |
+
|
2162 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:222
|
2163 |
+
msgid ""
|
2164 |
+
"Example 2: Setting this value to \"5\" will list only those IP addresses "
|
2165 |
+
"which were used to submit 5 SPAM comments or more on your site."
|
2166 |
+
msgstr ""
|
2167 |
+
|
2168 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:229
|
2169 |
+
msgid "Find IP Addresses"
|
2170 |
+
msgstr ""
|
2171 |
+
|
2172 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:233
|
2173 |
+
msgid "SPAMMER IP Address Results"
|
2174 |
+
msgstr ""
|
2175 |
+
|
2176 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:239
|
2177 |
+
#: all-in-one-wp-security/classes/wp-security-utility.php:150
|
2178 |
+
msgid ""
|
2179 |
+
"The plugin has detected that you are using a Multi-Site WordPress "
|
2180 |
+
"installation."
|
2181 |
+
msgstr ""
|
2182 |
+
|
2183 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:240
|
2184 |
+
msgid "Only the \"superadmin\" can block IP addresses from the main site."
|
2185 |
+
msgstr ""
|
2186 |
+
|
2187 |
+
#: all-in-one-wp-security/admin/wp-security-spam-menu.php:241
|
2188 |
+
msgid ""
|
2189 |
+
"Take note of the IP addresses you want blocked and ask the superadmin to add "
|
2190 |
+
"these to the blacklist using the \"Blacklist Manager\" on the main site."
|
2191 |
+
msgstr ""
|
2192 |
+
|
2193 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:79
|
2194 |
msgid "Admin User Security"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:82
|
2198 |
msgid ""
|
2199 |
"By default, WordPress sets the administrator username to \"admin\" at "
|
2200 |
"installation time."
|
2201 |
msgstr ""
|
2202 |
|
2203 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:83
|
2204 |
msgid ""
|
2205 |
"A lot of hackers try to take advantage of this information by attempting "
|
2206 |
"\"Brute Force Login Attacks\" where they repeatedly try to guess the "
|
2207 |
"password by using \"admin\" for username."
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:84
|
2211 |
msgid ""
|
2212 |
"From a security perspective, changing the default \"admin\" user name is one "
|
2213 |
"of the first and smartest things you should do on your site."
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:85
|
2217 |
msgid ""
|
2218 |
"This feature will allow you to change your default \"admin\" user name to a "
|
2219 |
"more secure name of your choosing."
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:92
|
2223 |
msgid "List of Administrator Accounts"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:101
|
2227 |
msgid "Change Admin Username"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:109
|
2231 |
msgid ""
|
2232 |
"Your site currently has an account which uses the default \"admin\" "
|
2233 |
"username. \n"
|
2236 |
" Use the following field to change the admin username."
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:117
|
2240 |
msgid "New Admin Username"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:119
|
2244 |
msgid "Choose a new username for admin."
|
2245 |
msgstr ""
|
2246 |
|
2247 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:123
|
2248 |
msgid "Change Username"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:125
|
2252 |
msgid ""
|
2253 |
"NOTE: If you are currently logged in as \"admin\" you will be automatically "
|
2254 |
"logged out after changing your username and will be required to log back in."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:132
|
2258 |
msgid "No action required! "
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:134
|
2262 |
msgid ""
|
2263 |
"Your site does not have any account which uses the default \"admin\" "
|
2264 |
"username. "
|
2265 |
msgstr ""
|
2266 |
|
2267 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:135
|
2268 |
msgid "This is good security practice."
|
2269 |
msgstr ""
|
2270 |
|
2271 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:147
|
2272 |
msgid "Display Name Security"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:150
|
2276 |
msgid ""
|
2277 |
"When you submit a post or answer a comment, WordPress will usually display "
|
2278 |
"your \"nickname\"."
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:151
|
2282 |
msgid ""
|
2283 |
"By default the nickname is set to the login (or user) name of your account."
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:152
|
2287 |
msgid ""
|
2288 |
"From a security perspective, leaving your nickname the same as your user "
|
2289 |
"name is bad practice because it gives a hacker at least half of your "
|
2290 |
"account's login credentials."
|
2291 |
msgstr ""
|
2292 |
|
2293 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:153
|
2294 |
msgid ""
|
2295 |
"Therefore to further tighten your site's security you are advised to change "
|
2296 |
"your <strong>nickname</strong> and <strong>Display name</strong> to be "
|
2297 |
"different from your <strong>Username</strong>."
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:159
|
2301 |
msgid "Modify Accounts With Identical Login Name & Display Name"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:168
|
2305 |
msgid ""
|
2306 |
"Your site currently has the following accounts which have an identical login "
|
2307 |
"name and display name."
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:169
|
2311 |
msgid "Click on the link to edit the settings of that particular user account"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:184
|
2315 |
msgid "No action required."
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:185
|
2319 |
msgid ""
|
2320 |
"Your site does not have a user account where the display name is identical "
|
2321 |
"to the username."
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:196
|
2325 |
msgid "Password Tool"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:199
|
2329 |
msgid ""
|
2330 |
"Poor password selection is one of the most common weak points of many sites "
|
2331 |
"and is usually the first thing a hacker will try to exploit when attempting "
|
2332 |
"to break into your site."
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:200
|
2336 |
msgid ""
|
2337 |
"Many people fall into the trap of using a simple word or series of numbers "
|
2338 |
"as their password. Such a predictable and simple password would take a "
|
2340 |
"script which cycles through the easy and most common combinations."
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:201
|
2344 |
msgid ""
|
2345 |
"The longer and more complex your password is the harder it is for hackers to "
|
2346 |
"\"crack\" because more complex passwords require much greater computing "
|
2347 |
"power and time."
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:202
|
2351 |
msgid ""
|
2352 |
"This section contains a useful password strength tool which you can use to "
|
2353 |
"check whether your password is sufficiently strong enough."
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:207
|
2357 |
msgid "Password Strength Tool"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:212
|
2361 |
msgid "Start typing a password."
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:237
|
2365 |
msgid "Nonce check failed on admin username change operation!"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:244
|
2369 |
msgid "Username "
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:244
|
2373 |
msgid " already exists. Please enter another value. "
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:260
|
2377 |
msgid "The database update operation of the user account failed!"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:287
|
2381 |
msgid "You entered an invalid username. Please enter another value. "
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:291
|
2385 |
msgid "Please enter a value for your username. "
|
2386 |
msgstr ""
|
2387 |
|
2388 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:298
|
2389 |
msgid "Username Successfully Changed!"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: all-in-one-wp-security/admin/wp-security-user-accounts-menu.php:318
|
2393 |
msgid "Account Login Name"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:93
|
2397 |
msgid ""
|
2398 |
"You entered a non numeric value for the max login attempts field. It has "
|
2399 |
"been set to the default value."
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:100
|
2403 |
msgid ""
|
2404 |
"You entered a non numeric value for the login retry time period field. It "
|
2405 |
"has been set to the default value."
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:107
|
2409 |
msgid ""
|
2410 |
"You entered a non numeric value for the lockout time length field. It has "
|
2411 |
"been set to the default value."
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:152
|
2415 |
msgid "Login Lockdown Configuration"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:156
|
2419 |
msgid "One of the ways hackers try to compromise sites is via a "
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:156
|
2423 |
msgid "Brute Force Login Attack"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:157
|
2427 |
msgid ""
|
2428 |
"This is where attackers use repeated login attempts until they guess the "
|
2429 |
"password."
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:158
|
2433 |
msgid ""
|
2434 |
"Apart from choosing strong passwords, monitoring and blocking IP addresses "
|
2435 |
"which are involved in repeated login failures in a short period of time is a "
|
2436 |
"very effective way to stop these types of attacks."
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:159
|
2440 |
#, php-format
|
2441 |
msgid ""
|
2442 |
"You may also want to checkout our %s feature for another secure way to "
|
2443 |
"protect against these types of attacks."
|
2444 |
msgstr ""
|
2445 |
|
2446 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:164
|
2447 |
msgid "Login Lockdown Options"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:176
|
2451 |
msgid "Enable Login Lockdown Feature"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:179
|
2455 |
msgid ""
|
2456 |
"Check this if you want to enable the login lockdown feature and apply the "
|
2457 |
"settings below"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:183
|
2461 |
msgid "Max Login Attempts"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:185
|
2465 |
msgid ""
|
2466 |
"Set the value for the maximum login retries before IP address is locked out"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:189
|
2470 |
msgid "Login Retry Time Period (min)"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:191
|
2474 |
msgid ""
|
2475 |
"If the maximum number of failed login attempts for a particular IP address "
|
2476 |
"occur within this time period the plugin will lock out that address"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:195
|
2480 |
msgid "Time Length of Lockout (min)"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:197
|
2484 |
msgid ""
|
2485 |
"Set the length of time for which a particular IP address will be prevented "
|
2486 |
"from logging in"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:201
|
2490 |
msgid "Display Generic Error Message"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:204
|
2494 |
msgid ""
|
2495 |
"Check this if you want to show a generic error message when a login attempt "
|
2496 |
"fails"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:208
|
2500 |
+
msgid "Instantly Lockout Invalid Usernames"
|
2501 |
+
msgstr ""
|
2502 |
+
|
2503 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:211
|
2504 |
+
msgid ""
|
2505 |
+
"Check this if you want to instantly lockout login attempts with usernames "
|
2506 |
+
"which do not exist on your system"
|
2507 |
+
msgstr ""
|
2508 |
+
|
2509 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:216
|
2510 |
msgid "Notify By Email"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:219
|
2514 |
msgid ""
|
2515 |
"Check this if you want to receive an email when someone has been locked out "
|
2516 |
"due to maximum failed login attempts"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:229
|
2520 |
msgid "Currently Locked Out IP Address Ranges"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:259
|
2524 |
+
msgid "Nonce check failed for save whitelist settings!"
|
2525 |
+
msgstr ""
|
2526 |
+
|
2527 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:313
|
2528 |
+
msgid "Login Whitelist"
|
2529 |
+
msgstr ""
|
2530 |
+
|
2531 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:316
|
2532 |
+
msgid ""
|
2533 |
+
"The All In One WP Security Whitelist feature gives you the option of only "
|
2534 |
+
"allowing certain IP addresses or ranges to have access to your WordPress "
|
2535 |
+
"login page."
|
2536 |
+
msgstr ""
|
2537 |
+
|
2538 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:317
|
2539 |
+
msgid ""
|
2540 |
+
"This feature will deny login access for all IP addresses which are not in "
|
2541 |
+
"your whitelist as configured in the settings below."
|
2542 |
+
msgstr ""
|
2543 |
+
|
2544 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:318
|
2545 |
+
msgid ""
|
2546 |
+
"The plugin achieves this by writing the appropriate directives to your ."
|
2547 |
+
"htaccess file."
|
2548 |
+
msgstr ""
|
2549 |
+
|
2550 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:319
|
2551 |
+
msgid ""
|
2552 |
+
"By allowing/blocking IP addresses via the .htaccess file your are using the "
|
2553 |
+
"most secure first line of defence because login access will only be granted "
|
2554 |
+
"to whitelisted IP addresses and other addresses will be blocked as soon as "
|
2555 |
+
"they try to access your login page."
|
2556 |
+
msgstr ""
|
2557 |
+
|
2558 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:325
|
2559 |
+
msgid "Login IP Whitelist Settings"
|
2560 |
+
msgstr ""
|
2561 |
+
|
2562 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:336
|
2563 |
+
msgid "Enable IP Whitelisting"
|
2564 |
+
msgstr ""
|
2565 |
+
|
2566 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:339
|
2567 |
+
msgid ""
|
2568 |
+
"Check this if you want to enable the whitelisting of selected IP addresses "
|
2569 |
+
"specified in the settings below"
|
2570 |
+
msgstr ""
|
2571 |
+
|
2572 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:343
|
2573 |
+
msgid "Your Current IP Address"
|
2574 |
+
msgstr ""
|
2575 |
+
|
2576 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:346
|
2577 |
+
msgid ""
|
2578 |
+
"You can copy and paste this address in the text box below if you want to "
|
2579 |
+
"include it in your login whitelist."
|
2580 |
+
msgstr ""
|
2581 |
+
|
2582 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:350
|
2583 |
+
msgid "Enter Whitelisted IP Addresses:"
|
2584 |
+
msgstr ""
|
2585 |
+
|
2586 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:354
|
2587 |
+
msgid ""
|
2588 |
+
"Enter one or more IP addresses or IP ranges you wish to include in your "
|
2589 |
+
"whitelist. Only the addresses specified here will have access to the "
|
2590 |
+
"WordPress login page."
|
2591 |
+
msgstr ""
|
2592 |
+
|
2593 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:384
|
2594 |
msgid "Nonce check failed for delete all failed login records operation!"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:393
|
2598 |
msgid "User Login Feature - Delete all failed login records operation failed!"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:397
|
2602 |
msgid "All records from the Failed Logins table were deleted successfully!"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:412
|
2606 |
msgid "This tab displays the failed login attempts for your site."
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:413
|
2610 |
msgid ""
|
2611 |
"The information below can be handy if you need to do security investigations "
|
2612 |
"because it will show you the IP range, username and ID (if applicable) and "
|
2613 |
"the time/date of the failed login attempt."
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:418
|
2617 |
msgid "Failed Login Records"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:434
|
2621 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:443
|
2622 |
msgid "Delete All Failed Login Records"
|
2623 |
msgstr ""
|
2624 |
|
2625 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:440
|
2626 |
msgid ""
|
2627 |
"Click this button if you wish to delete all failed login records in one go."
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:468
|
2631 |
msgid ""
|
2632 |
"You entered a non numeric value for the logout time period field. It has "
|
2633 |
"been set to the default value."
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:490
|
2637 |
msgid ""
|
2638 |
"Setting an expiry period for your WP administration session is a simple way "
|
2639 |
"to protect against unauthorized access to your site from your computer."
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:491
|
2643 |
msgid ""
|
2644 |
"This feature allows you to specify a time period in minutes after which the "
|
2645 |
"admin session will expire and the user will be forced to log back in."
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:496
|
2649 |
msgid "Force User Logout Options"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:508
|
2653 |
msgid "Enable Force WP User Logout"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:511
|
2657 |
msgid ""
|
2658 |
"Check this if you want to force a wp user to be logged out after a "
|
2659 |
"configured amount of time"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:515
|
2663 |
msgid "Logout the WP User After XX Minutes"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:517
|
2667 |
msgid ""
|
2668 |
"(Minutes) The user will be forced to log back in after this time period has "
|
2669 |
"elapased."
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:540
|
2673 |
msgid ""
|
2674 |
"This tab displays the login activity for WordPress admin accounts registered "
|
2675 |
"with your site."
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:541
|
2679 |
msgid ""
|
2680 |
"The information below can be handy if you need to do security investigations "
|
2681 |
"because it will show you the last 50 recent login events by username, IP "
|
2682 |
"address and time/date."
|
2683 |
msgstr ""
|
2684 |
|
2685 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:546
|
2686 |
msgid "Account Activity Logs"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:578
|
2690 |
+
msgid "Nonce check failed for users logged in list!"
|
2691 |
+
msgstr ""
|
2692 |
+
|
2693 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:591
|
2694 |
+
msgid "Refresh Logged In User Data"
|
2695 |
+
msgstr ""
|
2696 |
+
|
2697 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:595
|
2698 |
+
msgid "Refresh Data"
|
2699 |
+
msgstr ""
|
2700 |
+
|
2701 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:601
|
2702 |
+
msgid "This tab displays all users who are currently logged into your site."
|
2703 |
+
msgstr ""
|
2704 |
+
|
2705 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:602
|
2706 |
+
msgid ""
|
2707 |
+
"If you suspect there is a user or users who are logged in which should not "
|
2708 |
+
"be, you can block them by inspecting the IP addresses from the data below "
|
2709 |
+
"and adding them to your whitelist."
|
2710 |
+
msgstr ""
|
2711 |
+
|
2712 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:607
|
2713 |
+
msgid "Currently Logged In Users"
|
2714 |
+
msgstr ""
|
2715 |
+
|
2716 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:672
|
2717 |
msgid "The selected records were deleted successfully!"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: all-in-one-wp-security/admin/wp-security-user-login-menu.php:681
|
2721 |
msgid "The selected record was deleted successfully!"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: all-in-one-wp-security/admin/wp-security-whois-menu.php:68
|
2725 |
msgid "WHOIS Lookup Information"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: all-in-one-wp-security/admin/wp-security-whois-menu.php:71
|
2729 |
msgid ""
|
2730 |
"This feature allows you to look up more detailed information about an IP "
|
2731 |
"address or domain name by querying the WHOIS API."
|
2732 |
msgstr ""
|
2733 |
|
2734 |
+
#: all-in-one-wp-security/admin/wp-security-whois-menu.php:77
|
2735 |
msgid "Perform a WHOIS Lookup for an IP or Domain Name"
|
2736 |
msgstr ""
|
2737 |
|
2738 |
+
#: all-in-one-wp-security/admin/wp-security-whois-menu.php:83
|
2739 |
msgid "Enter IP Address or Domain Name"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: all-in-one-wp-security/admin/wp-security-whois-menu.php:85
|
2743 |
msgid ""
|
2744 |
"Enter an IP address or domain name. Example: 111.11.12.13 OR some-domain-"
|
2745 |
"name.com"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
+
#: all-in-one-wp-security/admin/wp-security-whois-menu.php:89
|
2749 |
msgid "Perform IP or Domain Lookup"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: all-in-one-wp-security/admin/wp-security-whois-menu.php:109
|
2753 |
msgid "WHOIS lookup successfully completed. Please see the results below:"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
#: all-in-one-wp-security/admin/wp-security-whois-menu.php:121
|
2757 |
msgid ""
|
2758 |
"You have entered an incorrectly formatted IP address or domain name. Please "
|
2759 |
"try again."
|
2760 |
msgstr ""
|
2761 |
|
2762 |
+
#: all-in-one-wp-security/admin/general/wp-security-list-table.php:178
|
2763 |
msgid "No items found."
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: all-in-one-wp-security/admin/general/wp-security-list-table.php:281
|
2767 |
msgid "Bulk Actions"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
+
#: all-in-one-wp-security/admin/general/wp-security-list-table.php:291
|
2771 |
msgid "Apply"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
+
#: all-in-one-wp-security/admin/general/wp-security-list-table.php:365
|
2775 |
msgid "Show all dates"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: all-in-one-wp-security/admin/general/wp-security-list-table.php:378
|
2779 |
#, php-format
|
2780 |
msgid "%1$s %2$d"
|
2781 |
msgstr ""
|
2782 |
|
2783 |
+
#: all-in-one-wp-security/admin/general/wp-security-list-table.php:394
|
2784 |
msgid "List View"
|
2785 |
msgstr ""
|
2786 |
|
2787 |
+
#: all-in-one-wp-security/admin/general/wp-security-list-table.php:395
|
2788 |
msgid "Excerpt View"
|
2789 |
msgstr ""
|
2790 |
|
2791 |
+
#: all-in-one-wp-security/admin/general/wp-security-list-table.php:421
|
2792 |
#, php-format
|
2793 |
msgid "%s pending"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: all-in-one-wp-security/admin/general/wp-security-list-table.php:653
|
2797 |
msgid "Select All"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
+
#: all-in-one-wp-security/classes/wp-security-backup.php:177
|
2801 |
msgid "All In One WP Security - Site Database Backup"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
+
#: all-in-one-wp-security/classes/wp-security-backup.php:179
|
2805 |
msgid "Attached is your latest DB backup file for site URL"
|
2806 |
msgstr ""
|
2807 |
|
2808 |
+
#: all-in-one-wp-security/classes/wp-security-backup.php:179
|
2809 |
msgid " generated on"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: all-in-one-wp-security/classes/wp-security-file-scan.php:58
|
2813 |
+
msgid "All In One WP Security - File change detected!"
|
2814 |
+
msgstr ""
|
2815 |
+
|
2816 |
+
#: all-in-one-wp-security/classes/wp-security-file-scan.php:60
|
2817 |
+
msgid "A file change was detected on your system for site URL"
|
2818 |
+
msgstr ""
|
2819 |
+
|
2820 |
+
#: all-in-one-wp-security/classes/wp-security-file-scan.php:60
|
2821 |
+
msgid ". Scan was generated on"
|
2822 |
+
msgstr ""
|
2823 |
+
|
2824 |
+
#: all-in-one-wp-security/classes/wp-security-file-scan.php:61
|
2825 |
+
msgid "Login to your site to view the scan details."
|
2826 |
+
msgstr ""
|
2827 |
+
|
2828 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:39
|
2829 |
msgid ""
|
2830 |
"<strong>ERROR</strong>: Login failed because your IP address has been "
|
2831 |
+
"blocked.\n"
|
2832 |
" Please contact the administrator."
|
2833 |
msgstr ""
|
2834 |
|
2835 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:48
|
2836 |
msgid "<strong>ERROR</strong>: The username field is empty."
|
2837 |
msgstr ""
|
2838 |
|
2839 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:52
|
2840 |
msgid "<strong>ERROR</strong>: The password field is empty."
|
2841 |
msgstr ""
|
2842 |
|
2843 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:72
|
2844 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:98
|
|
|
|
|
|
|
|
|
2845 |
msgid "<strong>ERROR</strong>: Invalid login credentials."
|
2846 |
msgstr ""
|
2847 |
|
2848 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:75
|
2849 |
msgid "<strong>ERROR</strong>: Invalid username."
|
2850 |
msgstr ""
|
2851 |
|
2852 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:101
|
2853 |
#, php-format
|
2854 |
msgid ""
|
2855 |
"<strong>ERROR</strong>: Incorrect password. <a href=\"%s\" title=\"Password "
|
2856 |
"Lost and Found\">Lost your password</a>?"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:224
|
2860 |
msgid "Site Lockout Notification"
|
2861 |
msgstr ""
|
2862 |
|
2863 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:225
|
2864 |
msgid ""
|
2865 |
+
"A lockdown event has occurred due to too many failed login attempts or "
|
2866 |
+
"invalid username:"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:226
|
2870 |
msgid "Username: "
|
2871 |
msgstr ""
|
2872 |
|
2873 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:227
|
2874 |
+
msgid "IP Address: "
|
2875 |
+
msgstr ""
|
2876 |
+
|
2877 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:228
|
2878 |
msgid "IP Range: "
|
2879 |
msgstr ""
|
2880 |
|
2881 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:229
|
2882 |
msgid ""
|
2883 |
"Log into your site's WordPress administration panel to see the duration of "
|
2884 |
"the lockout or to unlock the user."
|
2885 |
msgstr ""
|
2886 |
|
2887 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:386
|
2888 |
#, php-format
|
2889 |
msgid ""
|
2890 |
"Your session has expired because it has been over %d minutes since your last "
|
2891 |
"login."
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:387
|
2895 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:391
|
2896 |
msgid "Please log back in to continue."
|
2897 |
msgstr ""
|
2898 |
|
2899 |
+
#: all-in-one-wp-security/classes/wp-security-user-login.php:390
|
2900 |
msgid "You were logged out because you just changed the \"admin\" username."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
+
#: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:79
|
2904 |
+
#: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:98
|
2905 |
+
#: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:113
|
2906 |
+
#: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:128
|
2907 |
msgid " is not a valid ip address format."
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: all-in-one-wp-security/classes/wp-security-utility-ip-address.php:136
|
2911 |
msgid "You cannot ban your own IP address: "
|
2912 |
msgstr ""
|
2913 |
+
|
2914 |
+
#: all-in-one-wp-security/classes/wp-security-utility.php:151
|
2915 |
+
msgid ""
|
2916 |
+
"This feature can only be configured by the \"superadmin\" on the main site."
|
2917 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.tipsandtricks-hq.com
|
|
4 |
Tags: security, secure, Anti Virus, antivirus, ban, ban hacker, virus, firewall, login, lockdown, htaccess, hack, malware, vulnerability, protect, protection, phishing, database, backup, plugin, sql injection, ssl, restrict
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 3.6.1
|
7 |
-
Stable tag: 2.
|
8 |
License: GPLv3
|
9 |
|
10 |
A comprehensive, user-friendly, all in one WordPress security and firewall plugin for your site.
|
@@ -47,6 +47,7 @@ via email whenever somebody gets locked out due to too many login attempts.
|
|
47 |
* Monitor/View the account activity of all user accounts on your system by keeping track of the username, IP address, login date/time, and logout date/time.
|
48 |
* Ability to automatically lockout IP address ranges which attempt to login with an invalid username.
|
49 |
* Ability to see a list of all the users who are currently logged into your site.
|
|
|
50 |
|
51 |
= Database Security =
|
52 |
* Easily the default WP prefix to a value of your choice with the click of a button.
|
@@ -83,6 +84,7 @@ or malicious bots who do not have a special cookie in their browser. You (the si
|
|
83 |
|
84 |
= Brute force login attack prevention =
|
85 |
* Instantly block Brute Force Login Attacks via our special Cookie-Based Brute Force Login Prevention feature. This firewall functionality will block all login attempts from people and bots.
|
|
|
86 |
|
87 |
= WhoIs Lookup =
|
88 |
* Perform a WhoIs lookup of a suspicious host or IP address and get full details.
|
@@ -138,6 +140,9 @@ None
|
|
138 |
|
139 |
== Changelog ==
|
140 |
|
|
|
|
|
|
|
141 |
= 2.6 =
|
142 |
- Added a new Login Whitelist feature. This feature enables you to specify one or more IP addresses in a special whitelist which will have access to your WP login page.
|
143 |
All other IP addresses trying to access your WP login page which are not in the whitelist will be automatically blocked.
|
4 |
Tags: security, secure, Anti Virus, antivirus, ban, ban hacker, virus, firewall, login, lockdown, htaccess, hack, malware, vulnerability, protect, protection, phishing, database, backup, plugin, sql injection, ssl, restrict
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 3.6.1
|
7 |
+
Stable tag: 2.7
|
8 |
License: GPLv3
|
9 |
|
10 |
A comprehensive, user-friendly, all in one WordPress security and firewall plugin for your site.
|
47 |
* Monitor/View the account activity of all user accounts on your system by keeping track of the username, IP address, login date/time, and logout date/time.
|
48 |
* Ability to automatically lockout IP address ranges which attempt to login with an invalid username.
|
49 |
* Ability to see a list of all the users who are currently logged into your site.
|
50 |
+
* Allows you to specify one or more IP addresses in a special whitelist. The whitelisted IP addresses will have access to your WP login page.
|
51 |
|
52 |
= Database Security =
|
53 |
* Easily the default WP prefix to a value of your choice with the click of a button.
|
84 |
|
85 |
= Brute force login attack prevention =
|
86 |
* Instantly block Brute Force Login Attacks via our special Cookie-Based Brute Force Login Prevention feature. This firewall functionality will block all login attempts from people and bots.
|
87 |
+
* Ability to add a simple math captcha to the WordPress login form to fight against brute force login attacks.
|
88 |
|
89 |
= WhoIs Lookup =
|
90 |
* Perform a WhoIs lookup of a suspicious host or IP address and get full details.
|
140 |
|
141 |
== Changelog ==
|
142 |
|
143 |
+
= 2.7 =
|
144 |
+
- Added a simple math captcha functionality for the WP login page. This is another easy yet effective way to combat Brute Force Login Attacks. You can enable this new feature from the user login security menu.
|
145 |
+
|
146 |
= 2.6 =
|
147 |
- Added a new Login Whitelist feature. This feature enables you to specify one or more IP addresses in a special whitelist which will have access to your WP login page.
|
148 |
All other IP addresses trying to access your WP login page which are not in the whitelist will be automatically blocked.
|
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 = '2.
|
7 |
var $db_version = '1.3';
|
8 |
var $plugin_url;
|
9 |
var $plugin_path;
|
@@ -14,6 +14,7 @@ class AIO_WP_Security{
|
|
14 |
var $user_login_obj;
|
15 |
var $backup_obj;
|
16 |
var $filescan_obj;
|
|
|
17 |
|
18 |
function __construct()
|
19 |
{
|
@@ -88,6 +89,7 @@ class AIO_WP_Security{
|
|
88 |
include_once('classes/wp-security-general-init-tasks.php');
|
89 |
|
90 |
include_once('classes/wp-security-user-login.php');
|
|
|
91 |
include_once('classes/wp-security-backup.php');
|
92 |
include_once('classes/wp-security-file-scan.php');
|
93 |
include_once('classes/wp-security-cronjob-handler.php');
|
@@ -166,6 +168,7 @@ class AIO_WP_Security{
|
|
166 |
|
167 |
//Actions, filters, shortcodes goes here
|
168 |
$this->user_login_obj = new AIOWPSecurity_User_Login();//Do the user login operation tasks
|
|
|
169 |
$this->backup_obj = new AIOWPSecurity_Backup();//Object to handle backup tasks
|
170 |
$this->filescan_obj = new AIOWPSecurity_Filescan();//Object to handle backup tasks
|
171 |
$this->cron_handler = new AIOWPSecurity_Cronjob_Handler();
|
3 |
if (!class_exists('AIO_WP_Security')){
|
4 |
|
5 |
class AIO_WP_Security{
|
6 |
+
var $version = '2.7';
|
7 |
var $db_version = '1.3';
|
8 |
var $plugin_url;
|
9 |
var $plugin_path;
|
14 |
var $user_login_obj;
|
15 |
var $backup_obj;
|
16 |
var $filescan_obj;
|
17 |
+
var $captcha_obj;
|
18 |
|
19 |
function __construct()
|
20 |
{
|
89 |
include_once('classes/wp-security-general-init-tasks.php');
|
90 |
|
91 |
include_once('classes/wp-security-user-login.php');
|
92 |
+
include_once('classes/wp-security-captcha.php');
|
93 |
include_once('classes/wp-security-backup.php');
|
94 |
include_once('classes/wp-security-file-scan.php');
|
95 |
include_once('classes/wp-security-cronjob-handler.php');
|
168 |
|
169 |
//Actions, filters, shortcodes goes here
|
170 |
$this->user_login_obj = new AIOWPSecurity_User_Login();//Do the user login operation tasks
|
171 |
+
$this->captcha_obj = new AIOWPSecurity_Captcha();//Do the captcha tasks
|
172 |
$this->backup_obj = new AIOWPSecurity_Backup();//Object to handle backup tasks
|
173 |
$this->filescan_obj = new AIOWPSecurity_Filescan();//Object to handle backup tasks
|
174 |
$this->cron_handler = new AIOWPSecurity_Cronjob_Handler();
|
wp-security.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: All In One WP Security
|
4 |
-
Version: v2.
|
5 |
Plugin URI: http://www.tipsandtricks-hq.com/
|
6 |
Author: Tips and Tricks HQ, Peter, Ruhul Amin
|
7 |
Author URI: http://www.tipsandtricks-hq.com/
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: All In One WP Security
|
4 |
+
Version: v2.7
|
5 |
Plugin URI: http://www.tipsandtricks-hq.com/
|
6 |
Author: Tips and Tricks HQ, Peter, Ruhul Amin
|
7 |
Author URI: http://www.tipsandtricks-hq.com/
|